diff --git a/build/Three.js b/build/Three.js index 8388ad0dca34a27ede63862094315bfc3b853eb1..66d59badb9d479b5a0e5262e25d2130585c56e7c 100644 --- a/build/Three.js +++ b/build/Three.js @@ -1,2 +1,2 @@ -// Three.js r27 - http://github.com/mrdoob/three.js -var THREE=THREE||{};THREE.Color=function(a){this.autoUpdate=true;this.setHex(a)};THREE.Color.prototype={setRGBA:function(f,e,c,d){this.r=f;this.g=e;this.b=c;this.a=d;if(this.autoUpdate){this.updateHex();this.updateStyleString()}},setHex:function(a){this.hex=a;if(this.autoUpdate){this.updateRGBA();this.updateStyleString()}},copyRGB:function(a){this.r=a.r;this.g=a.g;this.b=a.b},copyRGBA:function(a){this.r=a.r;this.g=a.g;this.b=a.b;this.a=a.a},multiplySelfRGB:function(a){this.r*=a.r;this.g*=a.g;this.b*=a.b},updateHex:function(){this.hex=Math.floor(this.a*255)<<24|Math.floor(this.r*255)<<16|Math.floor(this.g*255)<<8|Math.floor(this.b*255)},updateRGBA:function(){this.a=(this.hex>>24&255)/255;this.r=(this.hex>>16&255)/255;this.g=(this.hex>>8&255)/255;this.b=(this.hex&255)/255},updateStyleString:function(){this.__styleString="rgba("+Math.floor(this.r*255)+","+Math.floor(this.g*255)+","+Math.floor(this.b*255)+","+this.a+")"},toString:function(){return"THREE.Color ( r: "+this.r+", g: "+this.g+", b: "+this.b+", a: "+this.a+", hex: "+this.hex+" )"}};THREE.Vector2=function(a,b){this.x=a||0;this.y=b||0};THREE.Vector2.prototype={set:function(a,b){this.x=a;this.y=b;return this},copy:function(a){this.x=a.x;this.y=a.y;return this},addSelf:function(a){this.x+=a.x;this.y+=a.y;return this},add:function(b,a){this.x=b.x+a.x;this.y=b.y+a.y;return this},subSelf:function(a){this.x-=a.x;this.y-=a.y;return this},sub:function(b,a){this.x=b.x-a.x;this.y=b.y-a.y;return this},multiplyScalar:function(a){this.x*=a;this.y*=a;return this},unit:function(){this.multiplyScalar(1/this.length());return this},length:function(){return Math.sqrt(this.x*this.x+this.y*this.y)},lengthSq:function(){return this.x*this.x+this.y*this.y},negate:function(){this.x=-this.x;this.y=-this.y;return this},clone:function(){return new THREE.Vector2(this.x,this.y)},toString:function(){return"THREE.Vector2 ("+this.x+", "+this.y+")"}};THREE.Vector3=function(a,c,b){this.x=a||0;this.y=c||0;this.z=b||0};THREE.Vector3.prototype={set:function(a,c,b){this.x=a;this.y=c;this.z=b;return this},copy:function(a){this.x=a.x;this.y=a.y;this.z=a.z;return this},add:function(b,a){this.x=b.x+a.x;this.y=b.y+a.y;this.z=b.z+a.z;return this},addSelf:function(a){this.x+=a.x;this.y+=a.y;this.z+=a.z;return this},addScalar:function(a){this.x+=a;this.y+=a;this.z+=a;return this},sub:function(b,a){this.x=b.x-a.x;this.y=b.y-a.y;this.z=b.z-a.z;return this},subSelf:function(a){this.x-=a.x;this.y-=a.y;this.z-=a.z;return this},cross:function(b,a){this.x=b.y*a.z-b.z*a.y;this.y=b.z*a.x-b.x*a.z;this.z=b.x*a.y-b.y*a.x;return this},crossSelf:function(c){var b=this.x,a=this.y,d=this.z;this.x=a*c.z-d*c.y;this.y=d*c.x-b*c.z;this.z=b*c.y-a*c.x;return this},multiplySelf:function(a){this.x*=a.x;this.y*=a.y;this.z*=a.z;return this},multiplyScalar:function(a){this.x*=a;this.y*=a;this.z*=a;return this},divideScalar:function(a){this.x/=a;this.y/=a;this.z/=a;return this},dot:function(a){return this.x*a.x+this.y*a.y+this.z*a.z},distanceTo:function(a){return Math.sqrt(this.distanceToSquared(a))},distanceToSquared:function(d){var c=this.x-d.x,b=this.y-d.y,a=this.z-d.z;return c*c+b*b+a*a},length:function(){return Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z)},lengthSq:function(){return this.x*this.x+this.y*this.y+this.z*this.z},negate:function(){this.x=-this.x;this.y=-this.y;this.z=-this.z;return this},normalize:function(){if(this.length()>0){this.multiplyScalar(1/this.length())}else{this.multiplyScalar(0)}return this},setLength:function(a){return this.normalize().multiplyScalar(a)},isZero:function(){var a=0.0001;return(Math.abs(this.x)=0&&Math.min(g,i.getY2())-Math.max(h,i.getY1())>=0};this.empty=function(){e=true;f=0;h=0;d=0;g=0;b()};this.isEmpty=function(){return e};this.toString=function(){return"THREE.Rectangle (x1: "+f+", y1: "+g+", x2: "+d+", y1: "+h+", width: "+a+", height: "+c+")"}};THREE.Matrix3=function(){this.m=[]};THREE.Matrix3.prototype={transpose:function(){var a;a=this.m[1];this.m[1]=this.m[3];this.m[3]=a;a=this.m[2];this.m[2]=this.m[6];this.m[6]=a;a=this.m[5];this.m[5]=this.m[7];this.m[7]=a;return this}};THREE.Matrix4=function(){this._x=new THREE.Vector3();this._y=new THREE.Vector3();this._z=new THREE.Vector3()};THREE.Matrix4.prototype={n11:1,n12:0,n13:0,n14:0,n21:0,n22:1,n23:0,n24:0,n31:0,n32:0,n33:1,n34:0,n41:0,n42:0,n43:0,n44:1,identity:function(){this.n11=1;this.n12=0;this.n13=0;this.n14=0;this.n21=0;this.n22=1;this.n23=0;this.n24=0;this.n31=0;this.n32=0;this.n33=1;this.n34=0;this.n41=0;this.n42=0;this.n43=0;this.n44=1},copy:function(a){this.n11=a.n11;this.n12=a.n12;this.n13=a.n13;this.n14=a.n14;this.n21=a.n21;this.n22=a.n22;this.n23=a.n23;this.n24=a.n24;this.n31=a.n31;this.n32=a.n32;this.n33=a.n33;this.n34=a.n34;this.n41=a.n41;this.n42=a.n42;this.n43=a.n43;this.n44=a.n44},lookAt:function(d,c,b){var a=this._x,f=this._y,e=this._z;e.sub(d,c);e.normalize();a.cross(b,e);a.normalize();f.cross(e,a);f.normalize();this.n11=a.x;this.n12=a.y;this.n13=a.z;this.n14=-a.dot(d);this.n21=f.x;this.n22=f.y;this.n23=f.z;this.n24=-f.dot(d);this.n31=e.x;this.n32=e.y;this.n33=e.z;this.n34=-e.dot(d);this.n41=0;this.n42=0;this.n43=0;this.n44=1},transform:function(a){var d=a.x,c=a.y,b=a.z,e=a.w?a.w:1;a.x=this.n11*d+this.n12*c+this.n13*b+this.n14*e;a.y=this.n21*d+this.n22*c+this.n23*b+this.n24*e;a.z=this.n31*d+this.n32*c+this.n33*b+this.n34*e;e=this.n41*d+this.n42*c+this.n43*b+this.n44*e;if(a.w){a.w=e}else{a.x=a.x/e;a.y=a.y/e;a.z=a.z/e}return a},crossVector:function(b){var c=new THREE.Vector4();c.x=this.n11*b.x+this.n12*b.y+this.n13*b.z+this.n14*b.w;c.y=this.n21*b.x+this.n22*b.y+this.n23*b.z+this.n24*b.w;c.z=this.n31*b.x+this.n32*b.y+this.n33*b.z+this.n34*b.w;c.w=(b.w)?this.n41*b.x+this.n42*b.y+this.n43*b.z+this.n44*b.w:1;return c},multiply:function(d,c){this.n11=d.n11*c.n11+d.n12*c.n21+d.n13*c.n31+d.n14*c.n41;this.n12=d.n11*c.n12+d.n12*c.n22+d.n13*c.n32+d.n14*c.n42;this.n13=d.n11*c.n13+d.n12*c.n23+d.n13*c.n33+d.n14*c.n43;this.n14=d.n11*c.n14+d.n12*c.n24+d.n13*c.n34+d.n14*c.n44;this.n21=d.n21*c.n11+d.n22*c.n21+d.n23*c.n31+d.n24*c.n41;this.n22=d.n21*c.n12+d.n22*c.n22+d.n23*c.n32+d.n24*c.n42;this.n23=d.n21*c.n13+d.n22*c.n23+d.n23*c.n33+d.n24*c.n43;this.n24=d.n21*c.n14+d.n22*c.n24+d.n23*c.n34+d.n24*c.n44;this.n31=d.n31*c.n11+d.n32*c.n21+d.n33*c.n31+d.n34*c.n41;this.n32=d.n31*c.n12+d.n32*c.n22+d.n33*c.n32+d.n34*c.n42;this.n33=d.n31*c.n13+d.n32*c.n23+d.n33*c.n33+d.n34*c.n43;this.n34=d.n31*c.n14+d.n32*c.n24+d.n33*c.n34+d.n34*c.n44;this.n41=d.n41*c.n11+d.n42*c.n21+d.n43*c.n31+d.n44*c.n41;this.n42=d.n41*c.n12+d.n42*c.n22+d.n43*c.n32+d.n44*c.n42;this.n43=d.n41*c.n13+d.n42*c.n23+d.n43*c.n33+d.n44*c.n43;this.n44=d.n41*c.n14+d.n42*c.n24+d.n43*c.n34+d.n44*c.n44},multiplySelf:function(c){var o=this.n11,n=this.n12,k=this.n13,i=this.n14,f=this.n21,e=this.n22,d=this.n23,b=this.n24,a=this.n31,r=this.n32,q=this.n33,p=this.n34,l=this.n41,j=this.n42,h=this.n43,g=this.n44;this.n11=o*c.n11+n*c.n21+k*c.n31+i*c.n41;this.n12=o*c.n12+n*c.n22+k*c.n32+i*c.n42;this.n13=o*c.n13+n*c.n23+k*c.n33+i*c.n43;this.n14=o*c.n14+n*c.n24+k*c.n34+i*c.n44;this.n21=f*c.n11+e*c.n21+d*c.n31+b*c.n41;this.n22=f*c.n12+e*c.n22+d*c.n32+b*c.n42;this.n23=f*c.n13+e*c.n23+d*c.n33+b*c.n43;this.n24=f*c.n14+e*c.n24+d*c.n34+b*c.n44;this.n31=a*c.n11+r*c.n21+q*c.n31+p*c.n41;this.n32=a*c.n12+r*c.n22+q*c.n32+p*c.n42;this.n33=a*c.n13+r*c.n23+q*c.n33+p*c.n43;this.n34=a*c.n14+r*c.n24+q*c.n34+p*c.n44;this.n41=l*c.n11+j*c.n21+h*c.n31+g*c.n41;this.n42=l*c.n12+j*c.n22+h*c.n32+g*c.n42;this.n43=l*c.n13+j*c.n23+h*c.n33+g*c.n43;this.n44=l*c.n14+j*c.n24+h*c.n34+g*c.n44},multiplyScalar:function(a){this.n11*=a;this.n12*=a;this.n13*=a;this.n14*=a;this.n21*=a;this.n22*=a;this.n23*=a;this.n24*=a;this.n31*=a;this.n32*=a;this.n33*=a;this.n34*=a;this.n41*=a;this.n42*=a;this.n43*=a;this.n44*=a},determinant:function(){return(this.n14*this.n23*this.n32*this.n41-this.n13*this.n24*this.n32*this.n41-this.n14*this.n22*this.n33*this.n41+this.n12*this.n24*this.n33*this.n41+this.n13*this.n22*this.n34*this.n41-this.n12*this.n23*this.n34*this.n41-this.n14*this.n23*this.n31*this.n42+this.n13*this.n24*this.n31*this.n42+this.n14*this.n21*this.n33*this.n42-this.n11*this.n24*this.n33*this.n42-this.n13*this.n21*this.n34*this.n42+this.n11*this.n23*this.n34*this.n42+this.n14*this.n22*this.n31*this.n43-this.n12*this.n24*this.n31*this.n43-this.n14*this.n21*this.n32*this.n43+this.n11*this.n24*this.n32*this.n43+this.n12*this.n21*this.n34*this.n43-this.n11*this.n22*this.n34*this.n43-this.n13*this.n22*this.n31*this.n44+this.n12*this.n23*this.n31*this.n44+this.n13*this.n21*this.n32*this.n44-this.n11*this.n23*this.n32*this.n44-this.n12*this.n21*this.n33*this.n44+this.n11*this.n22*this.n33*this.n44)},transpose:function(){function a(d,e,c){var b=d[e];d[e]=d[c];d[c]=b}a(this,"n21","n12");a(this,"n31","n13");a(this,"n32","n23");a(this,"n41","n14");a(this,"n42","n24");a(this,"n43","n34");return this},clone:function(){var a=new THREE.Matrix4();a.n11=this.n11;a.n12=this.n12;a.n13=this.n13;a.n14=this.n14;a.n21=this.n21;a.n22=this.n22;a.n23=this.n23;a.n24=this.n24;a.n31=this.n31;a.n32=this.n32;a.n33=this.n33;a.n34=this.n34;a.n41=this.n41;a.n42=this.n42;a.n43=this.n43;a.n44=this.n44;return a},flatten:function(){return[this.n11,this.n21,this.n31,this.n41,this.n12,this.n22,this.n32,this.n42,this.n13,this.n23,this.n33,this.n43,this.n14,this.n24,this.n34,this.n44]},toString:function(){return"| "+this.n11+" "+this.n12+" "+this.n13+" "+this.n14+" |\n| "+this.n21+" "+this.n22+" "+this.n23+" "+this.n24+" |\n| "+this.n31+" "+this.n32+" "+this.n33+" "+this.n34+" |\n| "+this.n41+" "+this.n42+" "+this.n43+" "+this.n44+" |"}};THREE.Matrix4.translationMatrix=function(b,d,c){var a=new THREE.Matrix4();a.n14=b;a.n24=d;a.n34=c;return a};THREE.Matrix4.scaleMatrix=function(b,d,c){var a=new THREE.Matrix4();a.n11=b;a.n22=d;a.n33=c;return a};THREE.Matrix4.rotationXMatrix=function(b){var a=new THREE.Matrix4();a.n22=a.n33=Math.cos(b);a.n32=Math.sin(b);a.n23=-a.n32;return a};THREE.Matrix4.rotationYMatrix=function(b){var a=new THREE.Matrix4();a.n11=a.n33=Math.cos(b);a.n13=Math.sin(b);a.n31=-a.n13;return a};THREE.Matrix4.rotationZMatrix=function(b){var a=new THREE.Matrix4();a.n11=a.n22=Math.cos(b);a.n21=Math.sin(b);a.n12=-a.n21;return a};THREE.Matrix4.rotationAxisAngleMatrix=function(b,d){var a=new THREE.Matrix4(),f=Math.cos(d),j=Math.sin(d),i=1-f,h=b.x,g=b.y,e=b.z;a.n11=i*h*h+f;a.n12=i*h*g-j*e;a.n13=i*h*e+j*g;a.n21=i*h*g+j*e;a.n22=i*g*g+f;a.n23=i*g*e-j*h;a.n31=i*h*e-j*g;a.n32=i*g*e+j*h;a.n33=i*e*e+f;return a};THREE.Matrix4.makeInvert=function(b){var a=new THREE.Matrix4();a.n11=b.n23*b.n34*b.n42-b.n24*b.n33*b.n42+b.n24*b.n32*b.n43-b.n22*b.n34*b.n43-b.n23*b.n32*b.n44+b.n22*b.n33*b.n44;a.n12=b.n14*b.n33*b.n42-b.n13*b.n34*b.n42-b.n14*b.n32*b.n43+b.n12*b.n34*b.n43+b.n13*b.n32*b.n44-b.n12*b.n33*b.n44;a.n13=b.n13*b.n24*b.n42-b.n14*b.n23*b.n42+b.n14*b.n22*b.n43-b.n12*b.n24*b.n43-b.n13*b.n22*b.n44+b.n12*b.n23*b.n44;a.n14=b.n14*b.n23*b.n32-b.n13*b.n24*b.n32-b.n14*b.n22*b.n33+b.n12*b.n24*b.n33+b.n13*b.n22*b.n34-b.n12*b.n23*b.n34;a.n21=b.n24*b.n33*b.n41-b.n23*b.n34*b.n41-b.n24*b.n31*b.n43+b.n21*b.n34*b.n43+b.n23*b.n31*b.n44-b.n21*b.n33*b.n44;a.n22=b.n13*b.n34*b.n41-b.n14*b.n33*b.n41+b.n14*b.n31*b.n43-b.n11*b.n34*b.n43-b.n13*b.n31*b.n44+b.n11*b.n33*b.n44;a.n23=b.n14*b.n23*b.n41-b.n13*b.n24*b.n41-b.n14*b.n21*b.n43+b.n11*b.n24*b.n43+b.n13*b.n21*b.n44-b.n11*b.n23*b.n44;a.n24=b.n13*b.n24*b.n31-b.n14*b.n23*b.n31+b.n14*b.n21*b.n33-b.n11*b.n24*b.n33-b.n13*b.n21*b.n34+b.n11*b.n23*b.n34;a.n31=b.n22*b.n34*b.n41-b.n24*b.n32*b.n41+b.n24*b.n31*b.n42-b.n21*b.n34*b.n42-b.n22*b.n31*b.n44+b.n21*b.n32*b.n44;a.n32=b.n14*b.n32*b.n41-b.n12*b.n34*b.n41-b.n14*b.n31*b.n42+b.n11*b.n34*b.n42+b.n12*b.n31*b.n44-b.n11*b.n32*b.n44;a.n33=b.n13*b.n24*b.n41-b.n14*b.n22*b.n41+b.n14*b.n21*b.n42-b.n11*b.n24*b.n42-b.n12*b.n21*b.n44+b.n11*b.n22*b.n44;a.n34=b.n14*b.n22*b.n31-b.n12*b.n24*b.n31-b.n14*b.n21*b.n32+b.n11*b.n24*b.n32+b.n12*b.n21*b.n34-b.n11*b.n22*b.n34;a.n41=b.n23*b.n32*b.n41-b.n22*b.n33*b.n41-b.n23*b.n31*b.n42+b.n21*b.n33*b.n42+b.n22*b.n31*b.n43-b.n21*b.n32*b.n43;a.n42=b.n12*b.n33*b.n41-b.n13*b.n32*b.n41+b.n13*b.n31*b.n42-b.n11*b.n33*b.n42-b.n12*b.n31*b.n43+b.n11*b.n32*b.n43;a.n43=b.n13*b.n22*b.n41-b.n12*b.n23*b.n41-b.n13*b.n21*b.n42+b.n11*b.n23*b.n42+b.n12*b.n21*b.n43-b.n11*b.n22*b.n43;a.n44=b.n12*b.n23*b.n31-b.n13*b.n22*b.n31+b.n13*b.n21*b.n32-b.n11*b.n23*b.n32-b.n12*b.n21*b.n33+b.n11*b.n22*b.n33;a.multiplyScalar(1/b.determinant());return a};THREE.Matrix4.makeInvert3x3=function(o){var e=o.flatten(),l=new THREE.Matrix3(),n=e[10]*e[5]-e[6]*e[9],i=-e[10]*e[1]+e[2]*e[9],d=e[6]*e[1]-e[2]*e[5],k=-e[10]*e[4]+e[6]*e[8],g=e[10]*e[0]-e[2]*e[8],c=-e[6]*e[0]+e[2]*e[4],j=e[9]*e[4]-e[5]*e[8],f=-e[9]*e[0]+e[1]*e[8],a=e[5]*e[0]-e[1]*e[4],h=e[0]*(n)+e[1]*(k)+e[2]*(j),b;if(h==0){throw"matrix not invertible"}b=1/h;l.m[0]=b*n;l.m[1]=b*i;l.m[2]=b*d;l.m[3]=b*k;l.m[4]=b*g;l.m[5]=b*c;l.m[6]=b*j;l.m[7]=b*f;l.m[8]=b*a;return l};THREE.Matrix4.makeFrustum=function(f,r,e,o,i,h){var g,q,n,p,l,k,j;g=new THREE.Matrix4();q=2*i/(r-f);n=2*i/(o-e);p=(r+f)/(r-f);l=(o+e)/(o-e);k=-(h+i)/(h-i);j=-2*h*i/(h-i);g.n11=q;g.n12=0;g.n13=p;g.n14=0;g.n21=0;g.n22=n;g.n23=l;g.n24=0;g.n31=0;g.n32=0;g.n33=k;g.n34=j;g.n41=0;g.n42=0;g.n43=-1;g.n44=0;return g};THREE.Matrix4.makePerspective=function(e,c,g,b){var a,f,h,d;a=g*Math.tan(e*Math.PI/360);f=-a;h=f*c;d=a*c;return THREE.Matrix4.makeFrustum(h,d,f,a,g,b)};THREE.Matrix4.makeOrtho=function(c,o,k,a,g,f){var d,l,j,i,n,e,b;d=new THREE.Matrix4();n=o-c;e=k-a;b=f-g;l=(o+c)/n;j=(k+a)/e;i=(f+g)/b;d.n11=2/n;d.n12=0;d.n13=0;d.n14=-l;d.n21=0;d.n22=2/e;d.n23=0;d.n24=-j;d.n31=0;d.n32=0;d.n33=-2/b;d.n34=-i;d.n41=0;d.n42=0;d.n43=0;d.n44=1;return d};THREE.Vertex=function(a,b){this.position=a||new THREE.Vector3();this.positionWorld=new THREE.Vector3();this.positionScreen=new THREE.Vector3();this.normal=b||new THREE.Vector3();this.normalWorld=new THREE.Vector3();this.normalScreen=new THREE.Vector3();this.__visible=true};THREE.Vertex.prototype={toString:function(){return"THREE.Vertex ( position: "+this.position+", normal: "+this.normal+" )"}};THREE.Face3=function(e,d,h,g,f){this.a=e;this.b=d;this.c=h;this.centroid=new THREE.Vector3();this.normal=g instanceof THREE.Vector3?g:new THREE.Vector3();this.vertexNormals=g instanceof Array?g:[];this.material=f instanceof Array?f:[f]};THREE.Face3.prototype={toString:function(){return"THREE.Face3 ( "+this.a+", "+this.b+", "+this.c+" )"}};THREE.Face4=function(f,e,j,i,h,g){this.a=f;this.b=e;this.c=j;this.d=i;this.centroid=new THREE.Vector3();this.normal=h instanceof THREE.Vector3?h:new THREE.Vector3();this.vertexNormals=h instanceof Array?h:[];this.material=g instanceof Array?g:[g]};THREE.Face4.prototype={toString:function(){return"THREE.Face4 ( "+this.a+", "+this.b+", "+this.c+" "+this.d+" )"}};THREE.UV=function(b,a){this.u=b||0;this.v=a||0};THREE.UV.prototype={copy:function(a){this.u=a.u;this.v=a.v},toString:function(){return"THREE.UV ("+this.u+", "+this.v+")"}};THREE.Geometry=function(){this.vertices=[];this.faces=[];this.uvs=[]};THREE.Geometry.prototype={computeCentroids:function(){var c,b,a;for(c=0,b=this.faces.length;c0){this.bbox={x:[this.vertices[0].position.x,this.vertices[0].position.x],y:[this.vertices[0].position.y,this.vertices[0].position.y],z:[this.vertices[0].position.z,this.vertices[0].position.z]};for(var a=1,b=this.vertices.length;athis.bbox.x[1]){this.bbox.x[1]=vertex.position.x}}if(vertex.position.ythis.bbox.y[1]){this.bbox.y[1]=vertex.position.y}}if(vertex.position.zthis.bbox.z[1]){this.bbox.z[1]=vertex.position.z}}}}},toString:function(){return"THREE.Geometry ( vertices: "+this.vertices+", faces: "+this.faces+" )"}};THREE.Camera=function(c,b,d,a){this.fov=c;this.aspect=b;this.position=new THREE.Vector3(0,0,0);this.target={position:new THREE.Vector3(0,0,0)};this.projectionMatrix=THREE.Matrix4.makePerspective(c,b,d,a);this.up=new THREE.Vector3(0,1,0);this.matrix=new THREE.Matrix4();this.autoUpdateMatrix=true;this.updateMatrix=function(){this.matrix.lookAt(this.position,this.target.position,this.up)};this.toString=function(){return"THREE.Camera ( "+this.position+", "+this.target.position+" )"}};THREE.Light=function(a){this.color=new THREE.Color(255<<24|a)};THREE.AmbientLight=function(a){THREE.Light.call(this,a)};THREE.AmbientLight.prototype=new THREE.Light();THREE.AmbientLight.prototype.constructor=THREE.AmbientLight;THREE.DirectionalLight=function(b,a){THREE.Light.call(this,b);this.position=new THREE.Vector3(0,1,0);this.intensity=a||1};THREE.DirectionalLight.prototype=new THREE.Light();THREE.DirectionalLight.prototype.constructor=THREE.DirectionalLight;THREE.PointLight=function(b,a){THREE.Light.call(this,b);this.position=new THREE.Vector3(0,0,0);this.intensity=a||1};THREE.DirectionalLight.prototype=new THREE.Light();THREE.DirectionalLight.prototype.constructor=THREE.PointLight;THREE.Object3D=function(a){this.position=new THREE.Vector3();this.rotation=new THREE.Vector3();this.scale=new THREE.Vector3(1,1,1);this.matrix=new THREE.Matrix4();this.matrixTranslation=new THREE.Matrix4();this.matrixRotation=new THREE.Matrix4();this.matrixScale=new THREE.Matrix4();this.screen=new THREE.Vector3();this.autoUpdateMatrix=true;this.updateMatrix=function(){this.matrixPosition=THREE.Matrix4.translationMatrix(this.position.x,this.position.y,this.position.z);this.matrixRotation=THREE.Matrix4.rotationXMatrix(this.rotation.x);this.matrixRotation.multiplySelf(THREE.Matrix4.rotationYMatrix(this.rotation.y));this.matrixRotation.multiplySelf(THREE.Matrix4.rotationZMatrix(this.rotation.z));this.matrixScale=THREE.Matrix4.scaleMatrix(this.scale.x,this.scale.y,this.scale.z);this.matrix.copy(this.matrixPosition);this.matrix.multiplySelf(this.matrixRotation);this.matrix.multiplySelf(this.matrixScale)}};THREE.Particle=function(a){THREE.Object3D.call(this);this.material=a instanceof Array?a:[a];this.autoUpdateMatrix=false};THREE.Particle.prototype=new THREE.Object3D();THREE.Particle.prototype.constructor=THREE.Particle;THREE.Line=function(b,a){THREE.Object3D.call(this);this.geometry=b;this.material=a instanceof Array?a:[a]};THREE.Line.prototype=new THREE.Object3D();THREE.Line.prototype.constructor=THREE.Line;THREE.Mesh=function(b,a,c){THREE.Object3D.call(this);this.geometry=b;this.material=a instanceof Array?a:[a];this.flipSided=false;this.doubleSided=false;this.overdraw=false;this.materialFaceGroup={};this.sortFacesByMaterial();if(c){this.normalizeUVs()}this.geometry.computeBoundingBox()};THREE.Mesh.prototype=new THREE.Object3D();THREE.Mesh.prototype.constructor=THREE.Mesh;THREE.Mesh.prototype.sortFacesByMaterial=function(){var c,b,e,m,k,h,j,n,d,g={};function a(f){var i=[];for(c=0,b=f.length;c65535){g[n].counter+=1;d=g[n].hash+"_"+g[n].counter;if(this.materialFaceGroup[d]==undefined){this.materialFaceGroup[d]={faces:[],material:h,vertices:0}}}this.materialFaceGroup[d].faces.push(e);this.materialFaceGroup[d].vertices+=j}};THREE.Mesh.prototype.normalizeUVs=function(){var e,a,b,d,c;for(e=0,a=this.geometry.uvs.length;e=0?(b*255)<<24:4278190080)|c)};THREE.LineColorMaterial.prototype={toString:function(){return"THREE.LineColorMaterial ( color: "+this.color+", lineWidth: "+this.lineWidth+" )"}};THREE.MeshPhongMaterial=function(d,a,e,c,b){this.ambient=new THREE.Color((b>=0?(b*255)<<24:4278190080)|d);this.diffuse=new THREE.Color((b>=0?(b*255)<<24:4278190080)|a);this.specular=new THREE.Color((b>=0?(b*255)<<24:4278190080)|e);this.shininess=c;this.opacity=b;this.toString=function(){return"THREE.MeshPhongMaterial (
ambient: "+this.ambient+",
diffuse: "+this.diffuse+",
specular: "+this.specular+",
shininess: "+this.shininess+",
opacity: "+this.opacity+")"}};THREE.MeshBitmapMaterial=function(a,b){this.bitmap=a;this.mode=b||THREE.MeshBitmapMaterialMode.UVMAPPING;this.id=THREE.MeshBitmapMaterialCounter.value++;this.toString=function(){return"THREE.MeshBitmapMaterial ( bitmap: "+this.bitmap+", mode: "+this.mode+", id: "+this.id+" )"}};THREE.MeshBitmapMaterialCounter={value:0};THREE.MeshBitmapMaterialMode={UVMAPPING:0};THREE.MeshColorFillMaterial=function(b,a){this.color=new THREE.Color((a>=0?(a*255)<<24:4278190080)|b);this.toString=function(){return"THREE.MeshColorFillMaterial ( color: "+this.color+" )"}};THREE.MeshColorStrokeMaterial=function(c,b,a){this.lineWidth=a||1;this.color=new THREE.Color((b>=0?(b*255)<<24:4278190080)|c);this.toString=function(){return"THREE.MeshColorStrokeMaterial ( lineWidth: "+this.lineWidth+", color: "+this.color+" )"}};THREE.MeshFaceMaterial=function(){this.toString=function(){return"THREE.MeshFaceMaterial"}};THREE.ParticleBitmapMaterial=function(a){this.bitmap=a;this.offset=new THREE.Vector2();this.toString=function(){return"THREE.ParticleBitmapMaterial ( bitmap: "+this.bitmap+" )"}};THREE.ParticleCircleMaterial=function(b,a){this.color=new THREE.Color((a>=0?(a*255)<<24:4278190080)|b);this.toString=function(){return"THREE.ParticleCircleMaterial ( color: "+this.color+" )"}};THREE.ParticleDOMMaterial=function(a){this.domElement=a;this.toString=function(){return"THREE.ParticleDOMMaterial ( domElement: "+this.domElement+" )"}};THREE.Scene=function(){this.objects=[];this.lights=[];this.addObject=function(a){this.objects.push(a)};this.removeObject=function(b){for(var c=0,a=this.objects.length;c0&&u.z<1}w=L.geometry.faces;for(I=0,B=w.length;I0&&u.z<1;if(D>0){C=L.geometry.vertices[D-1];if(H.__visible&&C.__visible){k=i[m]=i[m]||new THREE.RenderableLine();k.v1.copy(H.positionScreen);k.v2.copy(C.positionScreen);k.z=Math.max(H.positionScreen.z,C.positionScreen.z);k.material=L.material;e.push(k);m++}}}}else{if(L instanceof THREE.Particle){g.set(L.position.x,L.position.y,L.position.z,1);G.matrix.transform(g);G.projectionMatrix.transform(g);L.screen.set(g.x/g.w,g.y/g.w,g.z/g.w);if(L.screen.z>0&&L.screen.z<1){j=a[h]=a[h]||new THREE.RenderableParticle();j.x=L.screen.x;j.y=L.screen.y;j.z=L.screen.z;j.rotation=L.rotation.z;j.scale.x=L.scale.x*Math.abs(g.x/g.w-(g.x+G.projectionMatrix.n11)/(g.w+G.projectionMatrix.n14));j.scale.y=L.scale.y*Math.abs(g.y/g.w-(g.y+G.projectionMatrix.n22)/(g.w+G.projectionMatrix.n24));j.material=L.material;j.color=L.color;e.push(j);h++}}}}}e.sort(function(M,v){return v.z-M.z});return e}};THREE.DOMRenderer=function(){THREE.Renderer.call(this);var e=null,g=new THREE.Projector(),b=document.createElement("div"),a,c,f,d;this.domElement=b;this.setSize=function(i,h){a=i;c=h;f=a/2;d=c/2};this.render=function(p,r){var q,h,i,n,o,s,l,k,j;e=g.projectScene(p,r);for(q=0,h=e.length;q0;if(l){B(ac,f)}for(ab=0,K=A.length;ab0){J.r+=H.color.r*K;J.g+=H.color.g*K;J.b+=H.color.b*K}}else{if(H instanceof THREE.PointLight){h.sub(H.position,L.centroidWorld);h.normalize();K=L.normalWorld.dot(h)*H.intensity;if(K>0){J.r+=H.color.r*K;J.g+=H.color.g*K;J.b+=H.color.b*K}}}}}function m(J,I,M,P,O){var H,U,S,R,N,L,Q,T,K;if(P instanceof THREE.ParticleCircleMaterial){if(l){x.copyRGB(f);u(O,M,x);o.copyRGBA(P.color);o.multiplySelfRGB(x);o.updateStyleString()}else{o=P.color}H=M.scale.x*k;U=M.scale.y*p;z.set(J-H,I-U,J+H,I+U);if(!D.instersects(z)){return}t.save();t.translate(J,I);t.rotate(-M.rotation);t.scale(H,U);t.beginPath();t.arc(0,0,1,0,y,true);t.closePath();t.fillStyle=o.__styleString;t.fill();t.restore()}else{if(P instanceof THREE.ParticleBitmapMaterial){Q=P.bitmap;T=Q.width/2;K=Q.height/2;S=M.scale.x*k;R=M.scale.y*p;H=S*T;U=R*K;N=P.offset.x*S;L=P.offset.y*R;z.set(J+N-H,I+L-U,J+N+H,I+L+U);if(!D.instersects(z)){return}t.save();t.translate(J,I);t.rotate(-M.rotation);t.scale(S,-R);t.translate(-T+P.offset.x,-K-P.offset.y);t.drawImage(Q,0,0);t.restore()}}}function e(H,N,J,I,K,L,M){if(L instanceof THREE.LineColorMaterial){if(l){x.copyRGB(f);u(M,K,x);o.copyRGBA(L.color);o.multiplySelfRGB(x);o.updateStyleString()}else{o=L.color}t.lineWidth=L.lineWidth;t.lineJoin="round";t.lineCap="round";t.strokeStyle=o.__styleString;t.stroke();z.inflate(t.lineWidth)}}function i(J,I,H,S,P,O,L,N,M){var Q,R,K;if(N instanceof THREE.MeshColorFillMaterial){if(l){x.copyRGB(f);a(M,L,x);o.copyRGBA(N.color);o.multiplySelfRGB(x);o.updateStyleString()}else{o=N.color}t.beginPath();t.moveTo(J,I);t.lineTo(H,S);t.lineTo(P,O);t.lineTo(J,I);t.closePath();t.fillStyle=o.__styleString;t.fill()}else{if(N instanceof THREE.MeshColorStrokeMaterial){if(l){x.copyRGB(f);a(M,L,x);o.copyRGBA(N.color);o.multiplySelfRGB(x);o.updateStyleString()}else{o=N.color}t.beginPath();t.moveTo(J,I);t.lineTo(H,S);t.lineTo(P,O);t.lineTo(J,I);t.closePath();t.lineWidth=N.lineWidth;t.lineJoin="round";t.lineCap="round";t.strokeStyle=o.__styleString;t.stroke();z.inflate(t.lineWidth)}else{if(N instanceof THREE.MeshBitmapMaterial){Q=N.bitmap;R=Q.width-1;K=Q.height-1;G.copy(L.uvs[0]);F.copy(L.uvs[1]);E.copy(L.uvs[2]);G.u*=R;G.v*=K;F.u*=R;F.v*=K;E.u*=R;E.v*=K;w(Q,J,I,H,S,P,O,G.u,G.v,F.u,F.v,E.u,E.v)}}}}function g(N,M,V,T,I,H,P,O,W,U,K,J,L,R,X){var Y,Q,S;if(R instanceof THREE.MeshColorFillMaterial){if(l){x.copyRGB(f);a(X,L,x);o.copyRGBA(R.color);o.multiplySelfRGB(x);o.updateStyleString()}else{o=R.color}t.beginPath();t.moveTo(N,M);t.lineTo(V,T);t.lineTo(I,H);t.lineTo(P,O);t.lineTo(N,M);t.closePath();t.fillStyle=o.__styleString;t.fill()}else{if(R instanceof THREE.MeshColorStrokeMaterial){if(l){x.copyRGB(f);a(X,L,x);o.copyRGBA(R.color);o.multiplySelfRGB(x);o.updateStyleString()}else{o=R.color}t.beginPath();t.moveTo(N,M);t.lineTo(V,T);t.lineTo(I,H);t.lineTo(P,O);t.lineTo(N,M);t.closePath();t.lineWidth=R.lineWidth;t.lineJoin="round";t.lineCap="round";t.strokeStyle=o.__styleString;t.stroke();z.inflate(t.lineWidth)}else{if(R instanceof THREE.MeshBitmapMaterial){Y=R.bitmap;Q=Y.width-1;S=Y.height-1;G.copy(L.uvs[0]);F.copy(L.uvs[1]);E.copy(L.uvs[2]);C.copy(L.uvs[3]);G.u*=Q;G.v*=S;F.u*=Q;F.v*=S;E.u*=Q;E.v*=S;C.u*=Q;C.v*=S;w(Y,N,M,V,T,P,O,G.u,G.v,F.u,F.v,C.u,C.v);w(Y,W,U,I,H,K,J,F.u,F.v,E.u,E.v,C.u,C.v)}}}}function w(aa,P,O,V,U,J,H,T,S,X,W,L,K){var I,Z,Y,N,M,R,Q;t.beginPath();t.moveTo(P,O);t.lineTo(V,U);t.lineTo(J,H);t.lineTo(P,O);t.closePath();t.save();t.clip();I=T*(K-W)-X*K+L*W+(X-L)*S;Z=-(S*(J-V)-W*J+K*V+(W-K)*P)/I;Y=(W*H+S*(U-H)-K*U+(K-W)*O)/I;N=(T*(J-V)-X*J+L*V+(X-L)*P)/I;M=-(X*H+T*(U-H)-L*U+(L-X)*O)/I;R=(T*(K*V-W*J)+S*(X*J-L*V)+(L*W-X*K)*P)/I;Q=(T*(K*U-W*H)+S*(X*H-L*U)+(L*W-X*K)*O)/I;t.transform(Z,Y,N,M,R,Q);t.drawImage(aa,0,0);t.restore()}function c(I,H){j.sub(H,I);j.unit();j.multiplyScalar(0.75);H.addSelf(j);I.subSelf(j)}};THREE.SVGRenderer=function(){var x=null,r=new THREE.Projector(),t=document.createElementNS("http://www.w3.org/2000/svg","svg"),b,o,p,s,z=new THREE.Rectangle(),w=new THREE.Rectangle(),i=false,k=new THREE.Color(4294967295),v=new THREE.Color(4294967295),c=new THREE.Color(4294967295),g=new THREE.Vector3(),d=[],l=[],B,n,f,A=1;this.domElement=t;this.autoClear=true;this.setQuality=function(C){switch(C){case"high":A=1;break;case"low":A=0;break}};this.setSize=function(D,C){b=D;o=C;p=b/2;s=o/2;t.setAttribute("viewBox",(-p)+" "+(-s)+" "+b+" "+o);t.setAttribute("width",b);t.setAttribute("height",o);z.set(-p,-s,p,s)};this.clear=function(){while(t.childNodes.length>0){t.removeChild(t.childNodes[0])}};this.render=function(T,Q){var S,E,N,R,J,G,F,M,K,H,P,O,D,C,L,I;if(this.autoClear){this.clear()}x=r.projectScene(T,Q);n=0;f=0;i=T.lights.length>0;if(i){y(T,c)}for(S=0,E=x.length;S0){E.r+=C.color.r*F;E.g+=C.color.g*F;E.b+=C.color.b*F}}else{if(C instanceof THREE.PointLight){g.sub(C.position,G.centroidWorld);g.normalize();F=G.normalWorld.dot(g)*C.intensity;if(F>0){E.r+=C.color.r*F;E.g+=C.color.g*F;E.b+=C.color.b*F}}}}}function j(C,G,D,E,F){B=u(f++);B.setAttribute("cx",C);B.setAttribute("cy",G);B.setAttribute("r",D.scale.x*p);if(E instanceof THREE.ParticleCircleMaterial){if(i){v.copyRGB(c);q(F,D,v);k.copyRGBA(E.color);k.multiplySelfRGB(v);k.updateStyleString()}else{k=E.color}B.setAttribute("style","fill: "+k.__styleString)}t.appendChild(B)}function h(E,D,C,K,J,I,F,H,G){B=m(n++);B.setAttribute("d","M "+E+" "+D+" L "+C+" "+K+" L "+J+","+I+"z");if(H instanceof THREE.MeshColorFillMaterial){if(i){v.copyRGB(c);a(G,F,v);k.copyRGBA(H.color);k.multiplySelfRGB(v);k.updateStyleString()}else{k=H.color}B.setAttribute("style","fill: "+k.__styleString)}else{if(H instanceof THREE.MeshColorStrokeMaterial){if(i){v.copyRGB(c);a(G,F,v);k.copyRGBA(H.color);k.multiplySelfRGB(v);k.updateStyleString()}else{k=H.color}B.setAttribute("style","fill: none; stroke: "+k.__styleString+"; stroke-width: "+H.lineWidth+"; stroke-linecap: round; stroke-linejoin: round")}}t.appendChild(B)}function e(G,E,C,M,L,K,F,D,H,J,I){B=m(n++);B.setAttribute("d","M "+G+" "+E+" L "+C+" "+M+" L "+L+","+K+" L "+F+","+D+"z");if(J instanceof THREE.MeshColorFillMaterial){if(i){v.copyRGB(c);a(I,H,v);k.copyRGBA(J.color);k.multiplySelfRGB(v);k.updateStyleString()}else{k=J.color}B.setAttribute("style","fill: "+k.__styleString)}else{if(J instanceof THREE.MeshColorStrokeMaterial){if(i){v.copyRGB(c);a(I,H,v);k.copyRGBA(J.color);k.multiplySelfRGB(v);k.updateStyleString()}else{k=J.color}B.setAttribute("style","fill: none; stroke: "+k.__styleString+"; stroke-width: "+J.lineWidth+"; stroke-linecap: round; stroke-linejoin: round")}}t.appendChild(B)}function m(C){if(d[C]==null){d[C]=document.createElementNS("http://www.w3.org/2000/svg","path");if(A==0){d[C].setAttribute("shape-rendering","crispEdges")}return d[C]}return d[C]}function u(C){if(l[C]==null){l[C]=document.createElementNS("http://www.w3.org/2000/svg","circle");if(A==0){l[C].setAttribute("shape-rendering","crispEdges")}return l[C]}return l[C]}};THREE.WebGLRenderer=function(q){var h=document.createElement("canvas"),f,n,k=new THREE.Matrix4(),d,g=0,c=1,s=2,o=3,l=b(q,5);this.domElement=h;this.autoClear=true;a();i(l.directional,l.point);function b(x,y){if(x){var u,w,t,v=pointLights=maxDirLights=maxPointLights=0;for(u=0,w=x.lights.length;u= 0.0 )":"",u?"pointSpecularWeight = pow( pointDotNormalHalf, mShininess );":"",u?"pointDiffuse += mDiffuse * pointDiffuseWeight;":"",u?"pointSpecular += mSpecular * pointSpecularWeight;":"",u?"}":"",t?"vec4 dirDiffuse = vec4( 0.0, 0.0, 0.0, 0.0 );":"",t?"vec4 dirSpecular = vec4( 0.0, 0.0, 0.0, 0.0 );":"",t?"for( int i = 0; i < directionalLightNumber; i++ ) {":"",t?"vec4 lDirection = viewMatrix * vec4( directionalLightDirection[ i ], 0.0 );":"",t?"vec3 dirVector = normalize( lDirection.xyz );":"",t?"vec3 dirHalfVector = normalize( lDirection.xyz + vViewPosition );":"",t?"float dirDotNormalHalf = dot( normal, dirHalfVector );":"",t?"float dirDiffuseWeight = max( dot( normal, dirVector ), 0.0 );":"",t?"float dirSpecularWeight = 0.0;":"",t?"if ( dirDotNormalHalf >= 0.0 )":"",t?"dirSpecularWeight = pow( dirDotNormalHalf, mShininess );":"",t?"dirDiffuse += mDiffuse * dirDiffuseWeight;":"",t?"dirSpecular += mSpecular * dirSpecularWeight;":"",t?"}":"","vec4 totalLight = mAmbient;",t?"totalLight += dirDiffuse + dirSpecular;":"",u?"totalLight += pointDiffuse + pointSpecular;":"","gl_FragColor = vec4( totalLight.xyz * vLightWeighting, 1.0 );","} else if ( material == 2 ) {","vec4 texelColor = texture2D( tDiffuse, vUv );","gl_FragColor = vec4( texelColor.rgb * vLightWeighting, texelColor.a );","} else if ( material == 1 ) {","gl_FragColor = vec4( mColor.rgb * vLightWeighting, mColor.a );","} else {","gl_FragColor = vec4( mColor.rgb * vLightWeighting, mColor.a );","}","}"];return v.join("\n")}function j(t,u){var v=[t?"#define MAX_DIR_LIGHTS "+t:"",u?"#define MAX_POINT_LIGHTS "+u:"","attribute vec3 position;","attribute vec3 normal;","attribute vec2 uv;","uniform vec3 cameraPosition;","uniform bool enableLighting;","uniform int pointLightNumber;","uniform int directionalLightNumber;","uniform vec3 ambientLightColor;",t?"uniform vec3 directionalLightColor[ MAX_DIR_LIGHTS ];":"",t?"uniform vec3 directionalLightDirection[ MAX_DIR_LIGHTS ];":"",u?"uniform vec3 pointLightColor[ MAX_POINT_LIGHTS ];":"",u?"uniform vec3 pointLightPosition[ MAX_POINT_LIGHTS ];":"","uniform mat4 objMatrix;","uniform mat4 viewMatrix;","uniform mat4 modelViewMatrix;","uniform mat4 projectionMatrix;","uniform mat3 normalMatrix;","varying vec3 vNormal;","varying vec2 vUv;","varying vec3 vLightWeighting;",u?"varying vec3 vPointLightVector[ MAX_POINT_LIGHTS ];":"","varying vec3 vViewPosition;","void main(void) {","vec4 mPosition = objMatrix * vec4( position, 1.0 );","vViewPosition = cameraPosition - mPosition.xyz;","vec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );","vec3 transformedNormal = normalize( normalMatrix * normal );","if ( !enableLighting ) {","vLightWeighting = vec3( 1.0, 1.0, 1.0 );","} else {","vLightWeighting = ambientLightColor;",t?"for( int i = 0; i < directionalLightNumber; i++ ) {":"",t?"vec4 lDirection = viewMatrix * vec4( directionalLightDirection[ i ], 0.0 );":"",t?"float directionalLightWeighting = max( dot( transformedNormal, normalize(lDirection.xyz ) ), 0.0 );":"",t?"vLightWeighting += directionalLightColor[ i ] * directionalLightWeighting;":"",t?"}":"",u?"for( int i = 0; i < pointLightNumber; i++ ) {":"",u?"vec4 lPosition = viewMatrix * vec4( pointLightPosition[ i ], 1.0 );":"",u?"vPointLightVector[ i ] = normalize( lPosition.xyz - mvPosition.xyz );":"",u?"float pointLightWeighting = max( dot( transformedNormal, vPointLightVector[ i ] ), 0.0 );":"",u?"vLightWeighting += pointLightColor[ i ] * pointLightWeighting;":"",u?"}":"","}","vNormal = transformedNormal;","vUv = uv;","gl_Position = projectionMatrix * mvPosition;","}"];return v.join("\n")}function i(t,u){n=f.createProgram();f.attachShader(n,r("fragment",p(t,u)));f.attachShader(n,r("vertex",j(t,u)));f.linkProgram(n);if(!f.getProgramParameter(n,f.LINK_STATUS)){alert("Could not initialise shaders")}f.useProgram(n);n.viewMatrix=f.getUniformLocation(n,"viewMatrix");n.modelViewMatrix=f.getUniformLocation(n,"modelViewMatrix");n.projectionMatrix=f.getUniformLocation(n,"projectionMatrix");n.normalMatrix=f.getUniformLocation(n,"normalMatrix");n.objMatrix=f.getUniformLocation(n,"objMatrix");n.cameraPosition=f.getUniformLocation(n,"cameraPosition");n.enableLighting=f.getUniformLocation(n,"enableLighting");n.ambientLightColor=f.getUniformLocation(n,"ambientLightColor");if(t){n.directionalLightNumber=f.getUniformLocation(n,"directionalLightNumber");n.directionalLightColor=f.getUniformLocation(n,"directionalLightColor");n.directionalLightDirection=f.getUniformLocation(n,"directionalLightDirection")}if(u){n.pointLightNumber=f.getUniformLocation(n,"pointLightNumber");n.pointLightColor=f.getUniformLocation(n,"pointLightColor");n.pointLightPosition=f.getUniformLocation(n,"pointLightPosition")}n.material=f.getUniformLocation(n,"material");n.mColor=f.getUniformLocation(n,"mColor");n.mAmbient=f.getUniformLocation(n,"mAmbient");n.mDiffuse=f.getUniformLocation(n,"mDiffuse");n.mSpecular=f.getUniformLocation(n,"mSpecular");n.mShininess=f.getUniformLocation(n,"mShininess");n.tDiffuse=f.getUniformLocation(n,"tDiffuse");f.uniform1i(n.tDiffuse,0);n.position=f.getAttribLocation(n,"position");f.enableVertexAttribArray(n.position);n.normal=f.getAttribLocation(n,"normal");f.enableVertexAttribArray(n.normal);n.uv=f.getAttribLocation(n,"uv");f.enableVertexAttribArray(n.uv);n.viewMatrixArray=new Float32Array(16);n.modelViewMatrixArray=new Float32Array(16);n.projectionMatrixArray=new Float32Array(16)}function r(u,t){var v;if(u=="fragment"){v=f.createShader(f.FRAGMENT_SHADER)}else{if(u=="vertex"){v=f.createShader(f.VERTEX_SHADER)}}f.shaderSource(v,t);f.compileShader(v);if(!f.getShaderParameter(v,f.COMPILE_STATUS)){alert(f.getShaderInfoLog(v));return null}return v}function e(){var t={MAX_VARYING_VECTORS:f.getParameter(f.MAX_VARYING_VECTORS),MAX_VERTEX_ATTRIBS:f.getParameter(f.MAX_VERTEX_ATTRIBS),MAX_TEXTURE_IMAGE_UNITS:f.getParameter(f.MAX_TEXTURE_IMAGE_UNITS),MAX_VERTEX_TEXTURE_IMAGE_UNITS:f.getParameter(f.MAX_VERTEX_TEXTURE_IMAGE_UNITS),MAX_COMBINED_TEXTURE_IMAGE_UNITS:f.getParameter(f.MAX_COMBINED_TEXTURE_IMAGE_UNITS),MAX_VERTEX_UNIFORM_VECTORS:f.getParameter(f.MAX_VERTEX_UNIFORM_VECTORS),MAX_FRAGMENT_UNIFORM_VECTORS:f.getParameter(f.MAX_FRAGMENT_UNIFORM_VECTORS)};return t}function m(u){var t,v="";for(t in u){v+=t+": "+u[t]+"\n"}return v}};THREE.RenderableFace3=function(){this.v1=new THREE.Vector2();this.v2=new THREE.Vector2();this.v3=new THREE.Vector2();this.centroidWorld=new THREE.Vector3();this.centroidScreen=new THREE.Vector3();this.normalWorld=new THREE.Vector3();this.z=null;this.color=null;this.material=null};THREE.RenderableFace4=function(){this.v1=new THREE.Vector2();this.v2=new THREE.Vector2();this.v3=new THREE.Vector2();this.v4=new THREE.Vector2();this.centroidWorld=new THREE.Vector3();this.centroidScreen=new THREE.Vector3();this.normalWorld=new THREE.Vector3();this.z=null;this.color=null;this.material=null};THREE.RenderableParticle=function(){this.x=null;this.y=null;this.z=null;this.rotation=null;this.scale=new THREE.Vector2();this.color=null;this.material=null};THREE.RenderableLine=function(){this.v1=new THREE.Vector2();this.v2=new THREE.Vector2();this.z=null;this.color=null;this.material=null}; \ No newline at end of file +// Three.js r28 - http://github.com/mrdoob/three.js +var THREE=THREE||{};THREE.Color=function(a){this.autoUpdate=true;this.setHex(a)};THREE.Color.prototype={setRGBA:function(f,e,c,d){this.r=f;this.g=e;this.b=c;this.a=d;if(this.autoUpdate){this.updateHex();this.updateStyleString()}},setHex:function(a){this.hex=a;if(this.autoUpdate){this.updateRGBA();this.updateStyleString()}},copyRGB:function(a){this.r=a.r;this.g=a.g;this.b=a.b},copyRGBA:function(a){this.r=a.r;this.g=a.g;this.b=a.b;this.a=a.a},multiplySelfRGB:function(a){this.r*=a.r;this.g*=a.g;this.b*=a.b},updateHex:function(){this.hex=Math.floor(this.a*255)<<24|Math.floor(this.r*255)<<16|Math.floor(this.g*255)<<8|Math.floor(this.b*255)},updateRGBA:function(){this.a=(this.hex>>24&255)/255;this.r=(this.hex>>16&255)/255;this.g=(this.hex>>8&255)/255;this.b=(this.hex&255)/255},updateStyleString:function(){this.__styleString="rgba("+Math.floor(this.r*255)+","+Math.floor(this.g*255)+","+Math.floor(this.b*255)+","+this.a+")"},toString:function(){return"THREE.Color ( r: "+this.r+", g: "+this.g+", b: "+this.b+", a: "+this.a+", hex: "+this.hex+" )"}};THREE.Vector2=function(a,b){this.x=a||0;this.y=b||0};THREE.Vector2.prototype={set:function(a,b){this.x=a;this.y=b;return this},copy:function(a){this.x=a.x;this.y=a.y;return this},addSelf:function(a){this.x+=a.x;this.y+=a.y;return this},add:function(b,a){this.x=b.x+a.x;this.y=b.y+a.y;return this},subSelf:function(a){this.x-=a.x;this.y-=a.y;return this},sub:function(b,a){this.x=b.x-a.x;this.y=b.y-a.y;return this},multiplyScalar:function(a){this.x*=a;this.y*=a;return this},unit:function(){this.multiplyScalar(1/this.length());return this},length:function(){return Math.sqrt(this.x*this.x+this.y*this.y)},lengthSq:function(){return this.x*this.x+this.y*this.y},negate:function(){this.x=-this.x;this.y=-this.y;return this},clone:function(){return new THREE.Vector2(this.x,this.y)},toString:function(){return"THREE.Vector2 ("+this.x+", "+this.y+")"}};THREE.Vector3=function(a,c,b){this.x=a||0;this.y=c||0;this.z=b||0};THREE.Vector3.prototype={set:function(a,c,b){this.x=a;this.y=c;this.z=b;return this},copy:function(a){this.x=a.x;this.y=a.y;this.z=a.z;return this},add:function(b,a){this.x=b.x+a.x;this.y=b.y+a.y;this.z=b.z+a.z;return this},addSelf:function(a){this.x+=a.x;this.y+=a.y;this.z+=a.z;return this},addScalar:function(a){this.x+=a;this.y+=a;this.z+=a;return this},sub:function(b,a){this.x=b.x-a.x;this.y=b.y-a.y;this.z=b.z-a.z;return this},subSelf:function(a){this.x-=a.x;this.y-=a.y;this.z-=a.z;return this},cross:function(b,a){this.x=b.y*a.z-b.z*a.y;this.y=b.z*a.x-b.x*a.z;this.z=b.x*a.y-b.y*a.x;return this},crossSelf:function(c){var b=this.x,a=this.y,d=this.z;this.x=a*c.z-d*c.y;this.y=d*c.x-b*c.z;this.z=b*c.y-a*c.x;return this},multiplySelf:function(a){this.x*=a.x;this.y*=a.y;this.z*=a.z;return this},multiplyScalar:function(a){this.x*=a;this.y*=a;this.z*=a;return this},divideScalar:function(a){this.x/=a;this.y/=a;this.z/=a;return this},dot:function(a){return this.x*a.x+this.y*a.y+this.z*a.z},distanceTo:function(a){return Math.sqrt(this.distanceToSquared(a))},distanceToSquared:function(d){var c=this.x-d.x,b=this.y-d.y,a=this.z-d.z;return c*c+b*b+a*a},length:function(){return Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z)},lengthSq:function(){return this.x*this.x+this.y*this.y+this.z*this.z},negate:function(){this.x=-this.x;this.y=-this.y;this.z=-this.z;return this},normalize:function(){if(this.length()>0){this.multiplyScalar(1/this.length())}else{this.multiplyScalar(0)}return this},setLength:function(a){return this.normalize().multiplyScalar(a)},isZero:function(){var a=0.0001;return(Math.abs(this.x)=0&&Math.min(g,i.getY2())-Math.max(h,i.getY1())>=0};this.empty=function(){e=true;f=0;h=0;d=0;g=0;b()};this.isEmpty=function(){return e};this.toString=function(){return"THREE.Rectangle (x1: "+f+", y1: "+g+", x2: "+d+", y1: "+h+", width: "+a+", height: "+c+")"}};THREE.Matrix3=function(){this.m=[]};THREE.Matrix3.prototype={transpose:function(){var a;a=this.m[1];this.m[1]=this.m[3];this.m[3]=a;a=this.m[2];this.m[2]=this.m[6];this.m[6]=a;a=this.m[5];this.m[5]=this.m[7];this.m[7]=a;return this}};THREE.Matrix4=function(){this._x=new THREE.Vector3();this._y=new THREE.Vector3();this._z=new THREE.Vector3()};THREE.Matrix4.prototype={n11:1,n12:0,n13:0,n14:0,n21:0,n22:1,n23:0,n24:0,n31:0,n32:0,n33:1,n34:0,n41:0,n42:0,n43:0,n44:1,identity:function(){this.n11=1;this.n12=0;this.n13=0;this.n14=0;this.n21=0;this.n22=1;this.n23=0;this.n24=0;this.n31=0;this.n32=0;this.n33=1;this.n34=0;this.n41=0;this.n42=0;this.n43=0;this.n44=1},copy:function(a){this.n11=a.n11;this.n12=a.n12;this.n13=a.n13;this.n14=a.n14;this.n21=a.n21;this.n22=a.n22;this.n23=a.n23;this.n24=a.n24;this.n31=a.n31;this.n32=a.n32;this.n33=a.n33;this.n34=a.n34;this.n41=a.n41;this.n42=a.n42;this.n43=a.n43;this.n44=a.n44},lookAt:function(d,c,b){var a=this._x,f=this._y,e=this._z;e.sub(d,c);e.normalize();a.cross(b,e);a.normalize();f.cross(e,a);f.normalize();this.n11=a.x;this.n12=a.y;this.n13=a.z;this.n14=-a.dot(d);this.n21=f.x;this.n22=f.y;this.n23=f.z;this.n24=-f.dot(d);this.n31=e.x;this.n32=e.y;this.n33=e.z;this.n34=-e.dot(d);this.n41=0;this.n42=0;this.n43=0;this.n44=1},transform:function(a){var d=a.x,c=a.y,b=a.z,e=a.w?a.w:1;a.x=this.n11*d+this.n12*c+this.n13*b+this.n14*e;a.y=this.n21*d+this.n22*c+this.n23*b+this.n24*e;a.z=this.n31*d+this.n32*c+this.n33*b+this.n34*e;e=this.n41*d+this.n42*c+this.n43*b+this.n44*e;if(a.w){a.w=e}else{a.x=a.x/e;a.y=a.y/e;a.z=a.z/e}return a},crossVector:function(b){var c=new THREE.Vector4();c.x=this.n11*b.x+this.n12*b.y+this.n13*b.z+this.n14*b.w;c.y=this.n21*b.x+this.n22*b.y+this.n23*b.z+this.n24*b.w;c.z=this.n31*b.x+this.n32*b.y+this.n33*b.z+this.n34*b.w;c.w=(b.w)?this.n41*b.x+this.n42*b.y+this.n43*b.z+this.n44*b.w:1;return c},multiply:function(d,c){this.n11=d.n11*c.n11+d.n12*c.n21+d.n13*c.n31+d.n14*c.n41;this.n12=d.n11*c.n12+d.n12*c.n22+d.n13*c.n32+d.n14*c.n42;this.n13=d.n11*c.n13+d.n12*c.n23+d.n13*c.n33+d.n14*c.n43;this.n14=d.n11*c.n14+d.n12*c.n24+d.n13*c.n34+d.n14*c.n44;this.n21=d.n21*c.n11+d.n22*c.n21+d.n23*c.n31+d.n24*c.n41;this.n22=d.n21*c.n12+d.n22*c.n22+d.n23*c.n32+d.n24*c.n42;this.n23=d.n21*c.n13+d.n22*c.n23+d.n23*c.n33+d.n24*c.n43;this.n24=d.n21*c.n14+d.n22*c.n24+d.n23*c.n34+d.n24*c.n44;this.n31=d.n31*c.n11+d.n32*c.n21+d.n33*c.n31+d.n34*c.n41;this.n32=d.n31*c.n12+d.n32*c.n22+d.n33*c.n32+d.n34*c.n42;this.n33=d.n31*c.n13+d.n32*c.n23+d.n33*c.n33+d.n34*c.n43;this.n34=d.n31*c.n14+d.n32*c.n24+d.n33*c.n34+d.n34*c.n44;this.n41=d.n41*c.n11+d.n42*c.n21+d.n43*c.n31+d.n44*c.n41;this.n42=d.n41*c.n12+d.n42*c.n22+d.n43*c.n32+d.n44*c.n42;this.n43=d.n41*c.n13+d.n42*c.n23+d.n43*c.n33+d.n44*c.n43;this.n44=d.n41*c.n14+d.n42*c.n24+d.n43*c.n34+d.n44*c.n44},multiplySelf:function(c){var o=this.n11,n=this.n12,k=this.n13,i=this.n14,f=this.n21,e=this.n22,d=this.n23,b=this.n24,a=this.n31,r=this.n32,q=this.n33,p=this.n34,l=this.n41,j=this.n42,h=this.n43,g=this.n44;this.n11=o*c.n11+n*c.n21+k*c.n31+i*c.n41;this.n12=o*c.n12+n*c.n22+k*c.n32+i*c.n42;this.n13=o*c.n13+n*c.n23+k*c.n33+i*c.n43;this.n14=o*c.n14+n*c.n24+k*c.n34+i*c.n44;this.n21=f*c.n11+e*c.n21+d*c.n31+b*c.n41;this.n22=f*c.n12+e*c.n22+d*c.n32+b*c.n42;this.n23=f*c.n13+e*c.n23+d*c.n33+b*c.n43;this.n24=f*c.n14+e*c.n24+d*c.n34+b*c.n44;this.n31=a*c.n11+r*c.n21+q*c.n31+p*c.n41;this.n32=a*c.n12+r*c.n22+q*c.n32+p*c.n42;this.n33=a*c.n13+r*c.n23+q*c.n33+p*c.n43;this.n34=a*c.n14+r*c.n24+q*c.n34+p*c.n44;this.n41=l*c.n11+j*c.n21+h*c.n31+g*c.n41;this.n42=l*c.n12+j*c.n22+h*c.n32+g*c.n42;this.n43=l*c.n13+j*c.n23+h*c.n33+g*c.n43;this.n44=l*c.n14+j*c.n24+h*c.n34+g*c.n44},multiplyScalar:function(a){this.n11*=a;this.n12*=a;this.n13*=a;this.n14*=a;this.n21*=a;this.n22*=a;this.n23*=a;this.n24*=a;this.n31*=a;this.n32*=a;this.n33*=a;this.n34*=a;this.n41*=a;this.n42*=a;this.n43*=a;this.n44*=a},determinant:function(){return(this.n14*this.n23*this.n32*this.n41-this.n13*this.n24*this.n32*this.n41-this.n14*this.n22*this.n33*this.n41+this.n12*this.n24*this.n33*this.n41+this.n13*this.n22*this.n34*this.n41-this.n12*this.n23*this.n34*this.n41-this.n14*this.n23*this.n31*this.n42+this.n13*this.n24*this.n31*this.n42+this.n14*this.n21*this.n33*this.n42-this.n11*this.n24*this.n33*this.n42-this.n13*this.n21*this.n34*this.n42+this.n11*this.n23*this.n34*this.n42+this.n14*this.n22*this.n31*this.n43-this.n12*this.n24*this.n31*this.n43-this.n14*this.n21*this.n32*this.n43+this.n11*this.n24*this.n32*this.n43+this.n12*this.n21*this.n34*this.n43-this.n11*this.n22*this.n34*this.n43-this.n13*this.n22*this.n31*this.n44+this.n12*this.n23*this.n31*this.n44+this.n13*this.n21*this.n32*this.n44-this.n11*this.n23*this.n32*this.n44-this.n12*this.n21*this.n33*this.n44+this.n11*this.n22*this.n33*this.n44)},transpose:function(){function a(d,e,c){var b=d[e];d[e]=d[c];d[c]=b}a(this,"n21","n12");a(this,"n31","n13");a(this,"n32","n23");a(this,"n41","n14");a(this,"n42","n24");a(this,"n43","n34");return this},clone:function(){var a=new THREE.Matrix4();a.n11=this.n11;a.n12=this.n12;a.n13=this.n13;a.n14=this.n14;a.n21=this.n21;a.n22=this.n22;a.n23=this.n23;a.n24=this.n24;a.n31=this.n31;a.n32=this.n32;a.n33=this.n33;a.n34=this.n34;a.n41=this.n41;a.n42=this.n42;a.n43=this.n43;a.n44=this.n44;return a},flatten:function(){return[this.n11,this.n21,this.n31,this.n41,this.n12,this.n22,this.n32,this.n42,this.n13,this.n23,this.n33,this.n43,this.n14,this.n24,this.n34,this.n44]},toString:function(){return"| "+this.n11+" "+this.n12+" "+this.n13+" "+this.n14+" |\n| "+this.n21+" "+this.n22+" "+this.n23+" "+this.n24+" |\n| "+this.n31+" "+this.n32+" "+this.n33+" "+this.n34+" |\n| "+this.n41+" "+this.n42+" "+this.n43+" "+this.n44+" |"}};THREE.Matrix4.translationMatrix=function(b,d,c){var a=new THREE.Matrix4();a.n14=b;a.n24=d;a.n34=c;return a};THREE.Matrix4.scaleMatrix=function(b,d,c){var a=new THREE.Matrix4();a.n11=b;a.n22=d;a.n33=c;return a};THREE.Matrix4.rotationXMatrix=function(b){var a=new THREE.Matrix4();a.n22=a.n33=Math.cos(b);a.n32=Math.sin(b);a.n23=-a.n32;return a};THREE.Matrix4.rotationYMatrix=function(b){var a=new THREE.Matrix4();a.n11=a.n33=Math.cos(b);a.n13=Math.sin(b);a.n31=-a.n13;return a};THREE.Matrix4.rotationZMatrix=function(b){var a=new THREE.Matrix4();a.n11=a.n22=Math.cos(b);a.n21=Math.sin(b);a.n12=-a.n21;return a};THREE.Matrix4.rotationAxisAngleMatrix=function(b,d){var a=new THREE.Matrix4(),f=Math.cos(d),j=Math.sin(d),i=1-f,h=b.x,g=b.y,e=b.z;a.n11=i*h*h+f;a.n12=i*h*g-j*e;a.n13=i*h*e+j*g;a.n21=i*h*g+j*e;a.n22=i*g*g+f;a.n23=i*g*e-j*h;a.n31=i*h*e-j*g;a.n32=i*g*e+j*h;a.n33=i*e*e+f;return a};THREE.Matrix4.makeInvert=function(b){var a=new THREE.Matrix4();a.n11=b.n23*b.n34*b.n42-b.n24*b.n33*b.n42+b.n24*b.n32*b.n43-b.n22*b.n34*b.n43-b.n23*b.n32*b.n44+b.n22*b.n33*b.n44;a.n12=b.n14*b.n33*b.n42-b.n13*b.n34*b.n42-b.n14*b.n32*b.n43+b.n12*b.n34*b.n43+b.n13*b.n32*b.n44-b.n12*b.n33*b.n44;a.n13=b.n13*b.n24*b.n42-b.n14*b.n23*b.n42+b.n14*b.n22*b.n43-b.n12*b.n24*b.n43-b.n13*b.n22*b.n44+b.n12*b.n23*b.n44;a.n14=b.n14*b.n23*b.n32-b.n13*b.n24*b.n32-b.n14*b.n22*b.n33+b.n12*b.n24*b.n33+b.n13*b.n22*b.n34-b.n12*b.n23*b.n34;a.n21=b.n24*b.n33*b.n41-b.n23*b.n34*b.n41-b.n24*b.n31*b.n43+b.n21*b.n34*b.n43+b.n23*b.n31*b.n44-b.n21*b.n33*b.n44;a.n22=b.n13*b.n34*b.n41-b.n14*b.n33*b.n41+b.n14*b.n31*b.n43-b.n11*b.n34*b.n43-b.n13*b.n31*b.n44+b.n11*b.n33*b.n44;a.n23=b.n14*b.n23*b.n41-b.n13*b.n24*b.n41-b.n14*b.n21*b.n43+b.n11*b.n24*b.n43+b.n13*b.n21*b.n44-b.n11*b.n23*b.n44;a.n24=b.n13*b.n24*b.n31-b.n14*b.n23*b.n31+b.n14*b.n21*b.n33-b.n11*b.n24*b.n33-b.n13*b.n21*b.n34+b.n11*b.n23*b.n34;a.n31=b.n22*b.n34*b.n41-b.n24*b.n32*b.n41+b.n24*b.n31*b.n42-b.n21*b.n34*b.n42-b.n22*b.n31*b.n44+b.n21*b.n32*b.n44;a.n32=b.n14*b.n32*b.n41-b.n12*b.n34*b.n41-b.n14*b.n31*b.n42+b.n11*b.n34*b.n42+b.n12*b.n31*b.n44-b.n11*b.n32*b.n44;a.n33=b.n13*b.n24*b.n41-b.n14*b.n22*b.n41+b.n14*b.n21*b.n42-b.n11*b.n24*b.n42-b.n12*b.n21*b.n44+b.n11*b.n22*b.n44;a.n34=b.n14*b.n22*b.n31-b.n12*b.n24*b.n31-b.n14*b.n21*b.n32+b.n11*b.n24*b.n32+b.n12*b.n21*b.n34-b.n11*b.n22*b.n34;a.n41=b.n23*b.n32*b.n41-b.n22*b.n33*b.n41-b.n23*b.n31*b.n42+b.n21*b.n33*b.n42+b.n22*b.n31*b.n43-b.n21*b.n32*b.n43;a.n42=b.n12*b.n33*b.n41-b.n13*b.n32*b.n41+b.n13*b.n31*b.n42-b.n11*b.n33*b.n42-b.n12*b.n31*b.n43+b.n11*b.n32*b.n43;a.n43=b.n13*b.n22*b.n41-b.n12*b.n23*b.n41-b.n13*b.n21*b.n42+b.n11*b.n23*b.n42+b.n12*b.n21*b.n43-b.n11*b.n22*b.n43;a.n44=b.n12*b.n23*b.n31-b.n13*b.n22*b.n31+b.n13*b.n21*b.n32-b.n11*b.n23*b.n32-b.n12*b.n21*b.n33+b.n11*b.n22*b.n33;a.multiplyScalar(1/b.determinant());return a};THREE.Matrix4.makeInvert3x3=function(o){var e=o.flatten(),l=new THREE.Matrix3(),n=e[10]*e[5]-e[6]*e[9],i=-e[10]*e[1]+e[2]*e[9],d=e[6]*e[1]-e[2]*e[5],k=-e[10]*e[4]+e[6]*e[8],g=e[10]*e[0]-e[2]*e[8],c=-e[6]*e[0]+e[2]*e[4],j=e[9]*e[4]-e[5]*e[8],f=-e[9]*e[0]+e[1]*e[8],a=e[5]*e[0]-e[1]*e[4],h=e[0]*(n)+e[1]*(k)+e[2]*(j),b;if(h==0){throw"matrix not invertible"}b=1/h;l.m[0]=b*n;l.m[1]=b*i;l.m[2]=b*d;l.m[3]=b*k;l.m[4]=b*g;l.m[5]=b*c;l.m[6]=b*j;l.m[7]=b*f;l.m[8]=b*a;return l};THREE.Matrix4.makeFrustum=function(f,r,e,o,i,h){var g,q,n,p,l,k,j;g=new THREE.Matrix4();q=2*i/(r-f);n=2*i/(o-e);p=(r+f)/(r-f);l=(o+e)/(o-e);k=-(h+i)/(h-i);j=-2*h*i/(h-i);g.n11=q;g.n12=0;g.n13=p;g.n14=0;g.n21=0;g.n22=n;g.n23=l;g.n24=0;g.n31=0;g.n32=0;g.n33=k;g.n34=j;g.n41=0;g.n42=0;g.n43=-1;g.n44=0;return g};THREE.Matrix4.makePerspective=function(e,c,g,b){var a,f,h,d;a=g*Math.tan(e*Math.PI/360);f=-a;h=f*c;d=a*c;return THREE.Matrix4.makeFrustum(h,d,f,a,g,b)};THREE.Matrix4.makeOrtho=function(c,o,k,a,g,f){var d,l,j,i,n,e,b;d=new THREE.Matrix4();n=o-c;e=k-a;b=f-g;l=(o+c)/n;j=(k+a)/e;i=(f+g)/b;d.n11=2/n;d.n12=0;d.n13=0;d.n14=-l;d.n21=0;d.n22=2/e;d.n23=0;d.n24=-j;d.n31=0;d.n32=0;d.n33=-2/b;d.n34=-i;d.n41=0;d.n42=0;d.n43=0;d.n44=1;return d};THREE.Vertex=function(a,b){this.position=a||new THREE.Vector3();this.positionWorld=new THREE.Vector3();this.positionScreen=new THREE.Vector3();this.normal=b||new THREE.Vector3();this.normalWorld=new THREE.Vector3();this.normalScreen=new THREE.Vector3();this.__visible=true};THREE.Vertex.prototype={toString:function(){return"THREE.Vertex ( position: "+this.position+", normal: "+this.normal+" )"}};THREE.Face3=function(e,d,h,g,f){this.a=e;this.b=d;this.c=h;this.centroid=new THREE.Vector3();this.normal=g instanceof THREE.Vector3?g:new THREE.Vector3();this.vertexNormals=g instanceof Array?g:[];this.material=f instanceof Array?f:[f]};THREE.Face3.prototype={toString:function(){return"THREE.Face3 ( "+this.a+", "+this.b+", "+this.c+" )"}};THREE.Face4=function(f,e,j,i,h,g){this.a=f;this.b=e;this.c=j;this.d=i;this.centroid=new THREE.Vector3();this.normal=h instanceof THREE.Vector3?h:new THREE.Vector3();this.vertexNormals=h instanceof Array?h:[];this.material=g instanceof Array?g:[g]};THREE.Face4.prototype={toString:function(){return"THREE.Face4 ( "+this.a+", "+this.b+", "+this.c+" "+this.d+" )"}};THREE.UV=function(b,a){this.u=b||0;this.v=a||0};THREE.UV.prototype={copy:function(a){this.u=a.u;this.v=a.v},toString:function(){return"THREE.UV ("+this.u+", "+this.v+")"}};THREE.Geometry=function(){this.vertices=[];this.faces=[];this.uvs=[]};THREE.Geometry.prototype={computeCentroids:function(){var c,b,a;for(c=0,b=this.faces.length;c0){this.bbox={x:[this.vertices[0].position.x,this.vertices[0].position.x],y:[this.vertices[0].position.y,this.vertices[0].position.y],z:[this.vertices[0].position.z,this.vertices[0].position.z]};for(var a=1,b=this.vertices.length;athis.bbox.x[1]){this.bbox.x[1]=vertex.position.x}}if(vertex.position.ythis.bbox.y[1]){this.bbox.y[1]=vertex.position.y}}if(vertex.position.zthis.bbox.z[1]){this.bbox.z[1]=vertex.position.z}}}}},toString:function(){return"THREE.Geometry ( vertices: "+this.vertices+", faces: "+this.faces+" )"}};THREE.Camera=function(c,b,d,a){this.fov=c;this.aspect=b;this.position=new THREE.Vector3(0,0,0);this.target={position:new THREE.Vector3(0,0,0)};this.projectionMatrix=THREE.Matrix4.makePerspective(c,b,d,a);this.up=new THREE.Vector3(0,1,0);this.matrix=new THREE.Matrix4();this.autoUpdateMatrix=true;this.updateMatrix=function(){this.matrix.lookAt(this.position,this.target.position,this.up)};this.toString=function(){return"THREE.Camera ( "+this.position+", "+this.target.position+" )"}};THREE.Loader=function(){};THREE.Loader.prototype={loadAsync:function(a,c){var b=document.createElement("script");b.type="text/javascript";b.onload=c;b.src=a;document.getElementsByTagName("head")[0].appendChild(b)},loadWorker:function(a,e,b){var c=(new Date).getTime(),d=new Worker(a);d.onmessage=function(f){THREE.Loader.prototype.createModel(f.data,e,b)};d.postMessage(c)},createModel:function(b,d,a){var c=function(f){var r=this;THREE.Geometry.call(this);s();m();o();i();this.computeCentroids();this.computeNormals();function m(){var u,t,v;for(u=0,t=b.vertices.length;u65535){g[n].counter+=1;d=g[n].hash+"_"+g[n].counter;if(this.materialFaceGroup[d]==undefined){this.materialFaceGroup[d]={faces:[],material:h,vertices:0}}}this.materialFaceGroup[d].faces.push(e);this.materialFaceGroup[d].vertices+=j}};THREE.Mesh.prototype.normalizeUVs=function(){var e,a,b,d,c;for(e=0,a=this.geometry.uvs.length;e=0?(b*255)<<24:4278190080)|c)};THREE.LineColorMaterial.prototype={toString:function(){return"THREE.LineColorMaterial ( color: "+this.color+", lineWidth: "+this.lineWidth+" )"}};THREE.MeshPhongMaterial=function(d,a,e,c,b){this.ambient=new THREE.Color((b>=0?(b*255)<<24:4278190080)|d);this.diffuse=new THREE.Color((b>=0?(b*255)<<24:4278190080)|a);this.specular=new THREE.Color((b>=0?(b*255)<<24:4278190080)|e);this.shininess=c;this.opacity=b;this.toString=function(){return"THREE.MeshPhongMaterial (
ambient: "+this.ambient+",
diffuse: "+this.diffuse+",
specular: "+this.specular+",
shininess: "+this.shininess+",
opacity: "+this.opacity+")"}};THREE.MeshBitmapMaterial=function(a,b){this.bitmap=a;this.mode=b||THREE.MeshBitmapMaterialMode.UVMAPPING;this.id=THREE.MeshBitmapMaterialCounter.value++;this.toString=function(){return"THREE.MeshBitmapMaterial ( bitmap: "+this.bitmap+", mode: "+this.mode+", id: "+this.id+" )"}};THREE.MeshBitmapMaterialCounter={value:0};THREE.MeshBitmapMaterialMode={UVMAPPING:0};THREE.MeshColorFillMaterial=function(b,a){this.color=new THREE.Color((a>=0?(a*255)<<24:4278190080)|b);this.toString=function(){return"THREE.MeshColorFillMaterial ( color: "+this.color+" )"}};THREE.MeshColorStrokeMaterial=function(c,b,a){this.lineWidth=a||1;this.color=new THREE.Color((b>=0?(b*255)<<24:4278190080)|c);this.toString=function(){return"THREE.MeshColorStrokeMaterial ( lineWidth: "+this.lineWidth+", color: "+this.color+" )"}};THREE.MeshFaceMaterial=function(){this.toString=function(){return"THREE.MeshFaceMaterial"}};THREE.ParticleBitmapMaterial=function(a){this.bitmap=a;this.offset=new THREE.Vector2();this.toString=function(){return"THREE.ParticleBitmapMaterial ( bitmap: "+this.bitmap+" )"}};THREE.ParticleCircleMaterial=function(b,a){this.color=new THREE.Color((a>=0?(a*255)<<24:4278190080)|b);this.toString=function(){return"THREE.ParticleCircleMaterial ( color: "+this.color+" )"}};THREE.ParticleDOMMaterial=function(a){this.domElement=a;this.toString=function(){return"THREE.ParticleDOMMaterial ( domElement: "+this.domElement+" )"}};THREE.Scene=function(){this.objects=[];this.lights=[];this.addObject=function(a){this.objects.push(a)};this.removeObject=function(b){for(var c=0,a=this.objects.length;c0&&u.z<1}w=L.geometry.faces;for(I=0,B=w.length;I0&&u.z<1;if(D>0){C=L.geometry.vertices[D-1];if(H.__visible&&C.__visible){k=i[m]=i[m]||new THREE.RenderableLine();k.v1.copy(H.positionScreen);k.v2.copy(C.positionScreen);k.z=Math.max(H.positionScreen.z,C.positionScreen.z);k.material=L.material;e.push(k);m++}}}}else{if(L instanceof THREE.Particle){g.set(L.position.x,L.position.y,L.position.z,1);G.matrix.transform(g);G.projectionMatrix.transform(g);L.screen.set(g.x/g.w,g.y/g.w,g.z/g.w);if(L.screen.z>0&&L.screen.z<1){j=a[h]=a[h]||new THREE.RenderableParticle();j.x=L.screen.x;j.y=L.screen.y;j.z=L.screen.z;j.rotation=L.rotation.z;j.scale.x=L.scale.x*Math.abs(g.x/g.w-(g.x+G.projectionMatrix.n11)/(g.w+G.projectionMatrix.n14));j.scale.y=L.scale.y*Math.abs(g.y/g.w-(g.y+G.projectionMatrix.n22)/(g.w+G.projectionMatrix.n24));j.material=L.material;j.color=L.color;e.push(j);h++}}}}}e.sort(function(M,v){return v.z-M.z});return e};this.unprojectVector=function(q,t){var s=q.clone(),r=new THREE.Matrix4();r.multiply(THREE.Matrix4.makeInvert(t.matrix),THREE.Matrix4.makeInvert(t.projectionMatrix));r.transform(s);return s}};THREE.DOMRenderer=function(){THREE.Renderer.call(this);var e=null,g=new THREE.Projector(),b=document.createElement("div"),a,c,f,d;this.domElement=b;this.setSize=function(i,h){a=i;c=h;f=a/2;d=c/2};this.render=function(p,r){var q,h,i,n,o,s,l,k,j;e=g.projectScene(p,r);for(q=0,h=e.length;q0;if(l){B(ac,f)}for(ab=0,K=A.length;ab0){J.r+=H.color.r*K;J.g+=H.color.g*K;J.b+=H.color.b*K}}else{if(H instanceof THREE.PointLight){h.sub(H.position,L.centroidWorld);h.normalize();K=L.normalWorld.dot(h)*H.intensity;if(K>0){J.r+=H.color.r*K;J.g+=H.color.g*K;J.b+=H.color.b*K}}}}}function m(J,I,M,P,O){var H,U,S,R,N,L,Q,T,K;if(P instanceof THREE.ParticleCircleMaterial){if(l){x.copyRGB(f);u(O,M,x);o.copyRGBA(P.color);o.multiplySelfRGB(x);o.updateStyleString()}else{o=P.color}H=M.scale.x*k;U=M.scale.y*p;z.set(J-H,I-U,J+H,I+U);if(!D.instersects(z)){return}t.save();t.translate(J,I);t.rotate(-M.rotation);t.scale(H,U);t.beginPath();t.arc(0,0,1,0,y,true);t.closePath();t.fillStyle=o.__styleString;t.fill();t.restore()}else{if(P instanceof THREE.ParticleBitmapMaterial){Q=P.bitmap;T=Q.width/2;K=Q.height/2;S=M.scale.x*k;R=M.scale.y*p;H=S*T;U=R*K;N=P.offset.x*S;L=P.offset.y*R;z.set(J+N-H,I+L-U,J+N+H,I+L+U);if(!D.instersects(z)){return}t.save();t.translate(J,I);t.rotate(-M.rotation);t.scale(S,-R);t.translate(-T+P.offset.x,-K-P.offset.y);t.drawImage(Q,0,0);t.restore()}}}function e(H,N,J,I,K,L,M){if(L instanceof THREE.LineColorMaterial){if(l){x.copyRGB(f);u(M,K,x);o.copyRGBA(L.color);o.multiplySelfRGB(x);o.updateStyleString()}else{o=L.color}t.lineWidth=L.lineWidth;t.lineJoin="round";t.lineCap="round";t.strokeStyle=o.__styleString;t.stroke();z.inflate(t.lineWidth)}}function i(J,I,H,S,P,O,L,N,M){var Q,R,K;if(N instanceof THREE.MeshColorFillMaterial){if(l){x.copyRGB(f);a(M,L,x);o.copyRGBA(N.color);o.multiplySelfRGB(x);o.updateStyleString()}else{o=N.color}t.beginPath();t.moveTo(J,I);t.lineTo(H,S);t.lineTo(P,O);t.lineTo(J,I);t.closePath();t.fillStyle=o.__styleString;t.fill()}else{if(N instanceof THREE.MeshColorStrokeMaterial){if(l){x.copyRGB(f);a(M,L,x);o.copyRGBA(N.color);o.multiplySelfRGB(x);o.updateStyleString()}else{o=N.color}t.beginPath();t.moveTo(J,I);t.lineTo(H,S);t.lineTo(P,O);t.lineTo(J,I);t.closePath();t.lineWidth=N.lineWidth;t.lineJoin="round";t.lineCap="round";t.strokeStyle=o.__styleString;t.stroke();z.inflate(t.lineWidth)}else{if(N instanceof THREE.MeshBitmapMaterial){Q=N.bitmap;R=Q.width-1;K=Q.height-1;G.copy(L.uvs[0]);F.copy(L.uvs[1]);E.copy(L.uvs[2]);G.u*=R;G.v*=K;F.u*=R;F.v*=K;E.u*=R;E.v*=K;w(Q,J,I,H,S,P,O,G.u,G.v,F.u,F.v,E.u,E.v)}}}}function g(N,M,V,T,I,H,P,O,W,U,K,J,L,R,X){var Y,Q,S;if(R instanceof THREE.MeshColorFillMaterial){if(l){x.copyRGB(f);a(X,L,x);o.copyRGBA(R.color);o.multiplySelfRGB(x);o.updateStyleString()}else{o=R.color}t.beginPath();t.moveTo(N,M);t.lineTo(V,T);t.lineTo(I,H);t.lineTo(P,O);t.lineTo(N,M);t.closePath();t.fillStyle=o.__styleString;t.fill()}else{if(R instanceof THREE.MeshColorStrokeMaterial){if(l){x.copyRGB(f);a(X,L,x);o.copyRGBA(R.color);o.multiplySelfRGB(x);o.updateStyleString()}else{o=R.color}t.beginPath();t.moveTo(N,M);t.lineTo(V,T);t.lineTo(I,H);t.lineTo(P,O);t.lineTo(N,M);t.closePath();t.lineWidth=R.lineWidth;t.lineJoin="round";t.lineCap="round";t.strokeStyle=o.__styleString;t.stroke();z.inflate(t.lineWidth)}else{if(R instanceof THREE.MeshBitmapMaterial){Y=R.bitmap;Q=Y.width-1;S=Y.height-1;G.copy(L.uvs[0]);F.copy(L.uvs[1]);E.copy(L.uvs[2]);C.copy(L.uvs[3]);G.u*=Q;G.v*=S;F.u*=Q;F.v*=S;E.u*=Q;E.v*=S;C.u*=Q;C.v*=S;w(Y,N,M,V,T,P,O,G.u,G.v,F.u,F.v,C.u,C.v);w(Y,W,U,I,H,K,J,F.u,F.v,E.u,E.v,C.u,C.v)}}}}function w(aa,P,O,V,U,J,H,T,S,X,W,L,K){var I,Z,Y,N,M,R,Q;t.beginPath();t.moveTo(P,O);t.lineTo(V,U);t.lineTo(J,H);t.lineTo(P,O);t.closePath();t.save();t.clip();I=T*(K-W)-X*K+L*W+(X-L)*S;Z=-(S*(J-V)-W*J+K*V+(W-K)*P)/I;Y=(W*H+S*(U-H)-K*U+(K-W)*O)/I;N=(T*(J-V)-X*J+L*V+(X-L)*P)/I;M=-(X*H+T*(U-H)-L*U+(L-X)*O)/I;R=(T*(K*V-W*J)+S*(X*J-L*V)+(L*W-X*K)*P)/I;Q=(T*(K*U-W*H)+S*(X*H-L*U)+(L*W-X*K)*O)/I;t.transform(Z,Y,N,M,R,Q);t.drawImage(aa,0,0);t.restore()}function c(I,H){j.sub(H,I);j.unit();j.multiplyScalar(0.75);H.addSelf(j);I.subSelf(j)}};THREE.SVGRenderer=function(){var x=null,r=new THREE.Projector(),t=document.createElementNS("http://www.w3.org/2000/svg","svg"),b,o,p,s,z=new THREE.Rectangle(),w=new THREE.Rectangle(),i=false,k=new THREE.Color(4294967295),v=new THREE.Color(4294967295),c=new THREE.Color(4294967295),g=new THREE.Vector3(),d=[],l=[],B,n,f,A=1;this.domElement=t;this.autoClear=true;this.setQuality=function(C){switch(C){case"high":A=1;break;case"low":A=0;break}};this.setSize=function(D,C){b=D;o=C;p=b/2;s=o/2;t.setAttribute("viewBox",(-p)+" "+(-s)+" "+b+" "+o);t.setAttribute("width",b);t.setAttribute("height",o);z.set(-p,-s,p,s)};this.clear=function(){while(t.childNodes.length>0){t.removeChild(t.childNodes[0])}};this.render=function(T,Q){var S,E,N,R,J,G,F,M,K,H,P,O,D,C,L,I;if(this.autoClear){this.clear()}x=r.projectScene(T,Q);n=0;f=0;i=T.lights.length>0;if(i){y(T,c)}for(S=0,E=x.length;S0){E.r+=C.color.r*F;E.g+=C.color.g*F;E.b+=C.color.b*F}}else{if(C instanceof THREE.PointLight){g.sub(C.position,G.centroidWorld);g.normalize();F=G.normalWorld.dot(g)*C.intensity;if(F>0){E.r+=C.color.r*F;E.g+=C.color.g*F;E.b+=C.color.b*F}}}}}function j(C,G,D,E,F){B=u(f++);B.setAttribute("cx",C);B.setAttribute("cy",G);B.setAttribute("r",D.scale.x*p);if(E instanceof THREE.ParticleCircleMaterial){if(i){v.copyRGB(c);q(F,D,v);k.copyRGBA(E.color);k.multiplySelfRGB(v);k.updateStyleString()}else{k=E.color}B.setAttribute("style","fill: "+k.__styleString)}t.appendChild(B)}function h(E,D,C,K,J,I,F,H,G){B=m(n++);B.setAttribute("d","M "+E+" "+D+" L "+C+" "+K+" L "+J+","+I+"z");if(H instanceof THREE.MeshColorFillMaterial){if(i){v.copyRGB(c);a(G,F,v);k.copyRGBA(H.color);k.multiplySelfRGB(v);k.updateStyleString()}else{k=H.color}B.setAttribute("style","fill: "+k.__styleString)}else{if(H instanceof THREE.MeshColorStrokeMaterial){if(i){v.copyRGB(c);a(G,F,v);k.copyRGBA(H.color);k.multiplySelfRGB(v);k.updateStyleString()}else{k=H.color}B.setAttribute("style","fill: none; stroke: "+k.__styleString+"; stroke-width: "+H.lineWidth+"; stroke-linecap: round; stroke-linejoin: round")}}t.appendChild(B)}function e(G,E,C,M,L,K,F,D,H,J,I){B=m(n++);B.setAttribute("d","M "+G+" "+E+" L "+C+" "+M+" L "+L+","+K+" L "+F+","+D+"z");if(J instanceof THREE.MeshColorFillMaterial){if(i){v.copyRGB(c);a(I,H,v);k.copyRGBA(J.color);k.multiplySelfRGB(v);k.updateStyleString()}else{k=J.color}B.setAttribute("style","fill: "+k.__styleString)}else{if(J instanceof THREE.MeshColorStrokeMaterial){if(i){v.copyRGB(c);a(I,H,v);k.copyRGBA(J.color);k.multiplySelfRGB(v);k.updateStyleString()}else{k=J.color}B.setAttribute("style","fill: none; stroke: "+k.__styleString+"; stroke-width: "+J.lineWidth+"; stroke-linecap: round; stroke-linejoin: round")}}t.appendChild(B)}function m(C){if(d[C]==null){d[C]=document.createElementNS("http://www.w3.org/2000/svg","path");if(A==0){d[C].setAttribute("shape-rendering","crispEdges")}return d[C]}return d[C]}function u(C){if(l[C]==null){l[C]=document.createElementNS("http://www.w3.org/2000/svg","circle");if(A==0){l[C].setAttribute("shape-rendering","crispEdges")}return l[C]}return l[C]}};THREE.WebGLRenderer=function(q){var h=document.createElement("canvas"),f,n,k=new THREE.Matrix4(),d,g=0,c=1,s=2,o=3,l=b(q,5);this.domElement=h;this.autoClear=true;a();i(l.directional,l.point);function b(x,y){if(x){var u,w,t,v=pointLights=maxDirLights=maxPointLights=0;for(u=0,w=x.lights.length;u= 0.0 )":"",u?"pointSpecularWeight = pow( pointDotNormalHalf, mShininess );":"",u?"pointDiffuse += mDiffuse * pointDiffuseWeight;":"",u?"pointSpecular += mSpecular * pointSpecularWeight;":"",u?"}":"",t?"vec4 dirDiffuse = vec4( 0.0, 0.0, 0.0, 0.0 );":"",t?"vec4 dirSpecular = vec4( 0.0, 0.0, 0.0, 0.0 );":"",t?"for( int i = 0; i < directionalLightNumber; i++ ) {":"",t?"vec4 lDirection = viewMatrix * vec4( directionalLightDirection[ i ], 0.0 );":"",t?"vec3 dirVector = normalize( lDirection.xyz );":"",t?"vec3 dirHalfVector = normalize( lDirection.xyz + vViewPosition );":"",t?"float dirDotNormalHalf = dot( normal, dirHalfVector );":"",t?"float dirDiffuseWeight = max( dot( normal, dirVector ), 0.0 );":"",t?"float dirSpecularWeight = 0.0;":"",t?"if ( dirDotNormalHalf >= 0.0 )":"",t?"dirSpecularWeight = pow( dirDotNormalHalf, mShininess );":"",t?"dirDiffuse += mDiffuse * dirDiffuseWeight;":"",t?"dirSpecular += mSpecular * dirSpecularWeight;":"",t?"}":"","vec4 totalLight = mAmbient;",t?"totalLight += dirDiffuse + dirSpecular;":"",u?"totalLight += pointDiffuse + pointSpecular;":"","gl_FragColor = vec4( totalLight.xyz * vLightWeighting, 1.0 );","} else if ( material == 2 ) {","vec4 texelColor = texture2D( tDiffuse, vUv );","gl_FragColor = vec4( texelColor.rgb * vLightWeighting, texelColor.a );","} else if ( material == 1 ) {","gl_FragColor = vec4( mColor.rgb * vLightWeighting, mColor.a );","} else {","gl_FragColor = vec4( mColor.rgb * vLightWeighting, mColor.a );","}","}"];return v.join("\n")}function j(t,u){var v=[t?"#define MAX_DIR_LIGHTS "+t:"",u?"#define MAX_POINT_LIGHTS "+u:"","attribute vec3 position;","attribute vec3 normal;","attribute vec2 uv;","uniform vec3 cameraPosition;","uniform bool enableLighting;","uniform int pointLightNumber;","uniform int directionalLightNumber;","uniform vec3 ambientLightColor;",t?"uniform vec3 directionalLightColor[ MAX_DIR_LIGHTS ];":"",t?"uniform vec3 directionalLightDirection[ MAX_DIR_LIGHTS ];":"",u?"uniform vec3 pointLightColor[ MAX_POINT_LIGHTS ];":"",u?"uniform vec3 pointLightPosition[ MAX_POINT_LIGHTS ];":"","uniform mat4 objMatrix;","uniform mat4 viewMatrix;","uniform mat4 modelViewMatrix;","uniform mat4 projectionMatrix;","uniform mat3 normalMatrix;","varying vec3 vNormal;","varying vec2 vUv;","varying vec3 vLightWeighting;",u?"varying vec3 vPointLightVector[ MAX_POINT_LIGHTS ];":"","varying vec3 vViewPosition;","void main(void) {","vec4 mPosition = objMatrix * vec4( position, 1.0 );","vViewPosition = cameraPosition - mPosition.xyz;","vec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );","vec3 transformedNormal = normalize( normalMatrix * normal );","if ( !enableLighting ) {","vLightWeighting = vec3( 1.0, 1.0, 1.0 );","} else {","vLightWeighting = ambientLightColor;",t?"for( int i = 0; i < directionalLightNumber; i++ ) {":"",t?"vec4 lDirection = viewMatrix * vec4( directionalLightDirection[ i ], 0.0 );":"",t?"float directionalLightWeighting = max( dot( transformedNormal, normalize(lDirection.xyz ) ), 0.0 );":"",t?"vLightWeighting += directionalLightColor[ i ] * directionalLightWeighting;":"",t?"}":"",u?"for( int i = 0; i < pointLightNumber; i++ ) {":"",u?"vec4 lPosition = viewMatrix * vec4( pointLightPosition[ i ], 1.0 );":"",u?"vPointLightVector[ i ] = normalize( lPosition.xyz - mvPosition.xyz );":"",u?"float pointLightWeighting = max( dot( transformedNormal, vPointLightVector[ i ] ), 0.0 );":"",u?"vLightWeighting += pointLightColor[ i ] * pointLightWeighting;":"",u?"}":"","}","vNormal = transformedNormal;","vUv = uv;","gl_Position = projectionMatrix * mvPosition;","}"];return v.join("\n")}function i(t,u){n=f.createProgram();f.attachShader(n,r("fragment",p(t,u)));f.attachShader(n,r("vertex",j(t,u)));f.linkProgram(n);if(!f.getProgramParameter(n,f.LINK_STATUS)){alert("Could not initialise shaders")}f.useProgram(n);n.viewMatrix=f.getUniformLocation(n,"viewMatrix");n.modelViewMatrix=f.getUniformLocation(n,"modelViewMatrix");n.projectionMatrix=f.getUniformLocation(n,"projectionMatrix");n.normalMatrix=f.getUniformLocation(n,"normalMatrix");n.objMatrix=f.getUniformLocation(n,"objMatrix");n.cameraPosition=f.getUniformLocation(n,"cameraPosition");n.enableLighting=f.getUniformLocation(n,"enableLighting");n.ambientLightColor=f.getUniformLocation(n,"ambientLightColor");if(t){n.directionalLightNumber=f.getUniformLocation(n,"directionalLightNumber");n.directionalLightColor=f.getUniformLocation(n,"directionalLightColor");n.directionalLightDirection=f.getUniformLocation(n,"directionalLightDirection")}if(u){n.pointLightNumber=f.getUniformLocation(n,"pointLightNumber");n.pointLightColor=f.getUniformLocation(n,"pointLightColor");n.pointLightPosition=f.getUniformLocation(n,"pointLightPosition")}n.material=f.getUniformLocation(n,"material");n.mColor=f.getUniformLocation(n,"mColor");n.mAmbient=f.getUniformLocation(n,"mAmbient");n.mDiffuse=f.getUniformLocation(n,"mDiffuse");n.mSpecular=f.getUniformLocation(n,"mSpecular");n.mShininess=f.getUniformLocation(n,"mShininess");n.tDiffuse=f.getUniformLocation(n,"tDiffuse");f.uniform1i(n.tDiffuse,0);n.position=f.getAttribLocation(n,"position");f.enableVertexAttribArray(n.position);n.normal=f.getAttribLocation(n,"normal");f.enableVertexAttribArray(n.normal);n.uv=f.getAttribLocation(n,"uv");f.enableVertexAttribArray(n.uv);n.viewMatrixArray=new Float32Array(16);n.modelViewMatrixArray=new Float32Array(16);n.projectionMatrixArray=new Float32Array(16)}function r(u,t){var v;if(u=="fragment"){v=f.createShader(f.FRAGMENT_SHADER)}else{if(u=="vertex"){v=f.createShader(f.VERTEX_SHADER)}}f.shaderSource(v,t);f.compileShader(v);if(!f.getShaderParameter(v,f.COMPILE_STATUS)){alert(f.getShaderInfoLog(v));return null}return v}function e(){var t={MAX_VARYING_VECTORS:f.getParameter(f.MAX_VARYING_VECTORS),MAX_VERTEX_ATTRIBS:f.getParameter(f.MAX_VERTEX_ATTRIBS),MAX_TEXTURE_IMAGE_UNITS:f.getParameter(f.MAX_TEXTURE_IMAGE_UNITS),MAX_VERTEX_TEXTURE_IMAGE_UNITS:f.getParameter(f.MAX_VERTEX_TEXTURE_IMAGE_UNITS),MAX_COMBINED_TEXTURE_IMAGE_UNITS:f.getParameter(f.MAX_COMBINED_TEXTURE_IMAGE_UNITS),MAX_VERTEX_UNIFORM_VECTORS:f.getParameter(f.MAX_VERTEX_UNIFORM_VECTORS),MAX_FRAGMENT_UNIFORM_VECTORS:f.getParameter(f.MAX_FRAGMENT_UNIFORM_VECTORS)};return t}function m(u){var t,v="";for(t in u){v+=t+": "+u[t]+"\n"}return v}};THREE.RenderableFace3=function(){this.v1=new THREE.Vector2();this.v2=new THREE.Vector2();this.v3=new THREE.Vector2();this.centroidWorld=new THREE.Vector3();this.centroidScreen=new THREE.Vector3();this.normalWorld=new THREE.Vector3();this.z=null;this.color=null;this.material=null};THREE.RenderableFace4=function(){this.v1=new THREE.Vector2();this.v2=new THREE.Vector2();this.v3=new THREE.Vector2();this.v4=new THREE.Vector2();this.centroidWorld=new THREE.Vector3();this.centroidScreen=new THREE.Vector3();this.normalWorld=new THREE.Vector3();this.z=null;this.color=null;this.material=null};THREE.RenderableParticle=function(){this.x=null;this.y=null;this.z=null;this.rotation=null;this.scale=new THREE.Vector2();this.color=null;this.material=null};THREE.RenderableLine=function(){this.v1=new THREE.Vector2();this.v2=new THREE.Vector2();this.z=null;this.color=null;this.material=null}; \ No newline at end of file diff --git a/build/ThreeDebug.js b/build/ThreeDebug.js index fdd82ece00672a9d22274ab275c8425a98b22add..31b3b73cdd465a03ab9059691c9d60169e171914 100644 --- a/build/ThreeDebug.js +++ b/build/ThreeDebug.js @@ -1,2 +1,2 @@ -// ThreeDebug.js r27 - http://github.com/mrdoob/three.js -var THREE=THREE||{};THREE.Color=function(a){this.autoUpdate=true;this.setHex(a)};THREE.Color.prototype={setRGBA:function(f,e,c,d){this.r=f;this.g=e;this.b=c;this.a=d;if(this.autoUpdate){this.updateHex();this.updateStyleString()}},setHex:function(a){this.hex=a;if(this.autoUpdate){this.updateRGBA();this.updateStyleString()}},copyRGB:function(a){this.r=a.r;this.g=a.g;this.b=a.b},copyRGBA:function(a){this.r=a.r;this.g=a.g;this.b=a.b;this.a=a.a},multiplySelfRGB:function(a){this.r*=a.r;this.g*=a.g;this.b*=a.b},updateHex:function(){this.hex=Math.floor(this.a*255)<<24|Math.floor(this.r*255)<<16|Math.floor(this.g*255)<<8|Math.floor(this.b*255)},updateRGBA:function(){this.a=(this.hex>>24&255)/255;this.r=(this.hex>>16&255)/255;this.g=(this.hex>>8&255)/255;this.b=(this.hex&255)/255},updateStyleString:function(){this.__styleString="rgba("+Math.floor(this.r*255)+","+Math.floor(this.g*255)+","+Math.floor(this.b*255)+","+this.a+")"},toString:function(){return"THREE.Color ( r: "+this.r+", g: "+this.g+", b: "+this.b+", a: "+this.a+", hex: "+this.hex+" )"}};THREE.Vector2=function(a,b){this.x=a||0;this.y=b||0};THREE.Vector2.prototype={set:function(a,b){this.x=a;this.y=b;return this},copy:function(a){this.x=a.x;this.y=a.y;return this},addSelf:function(a){this.x+=a.x;this.y+=a.y;return this},add:function(b,a){this.x=b.x+a.x;this.y=b.y+a.y;return this},subSelf:function(a){this.x-=a.x;this.y-=a.y;return this},sub:function(b,a){this.x=b.x-a.x;this.y=b.y-a.y;return this},multiplyScalar:function(a){this.x*=a;this.y*=a;return this},unit:function(){this.multiplyScalar(1/this.length());return this},length:function(){return Math.sqrt(this.x*this.x+this.y*this.y)},lengthSq:function(){return this.x*this.x+this.y*this.y},negate:function(){this.x=-this.x;this.y=-this.y;return this},clone:function(){return new THREE.Vector2(this.x,this.y)},toString:function(){return"THREE.Vector2 ("+this.x+", "+this.y+")"}};THREE.Vector3=function(a,c,b){this.x=a||0;this.y=c||0;this.z=b||0};THREE.Vector3.prototype={set:function(a,c,b){this.x=a;this.y=c;this.z=b;return this},copy:function(a){this.x=a.x;this.y=a.y;this.z=a.z;return this},add:function(b,a){this.x=b.x+a.x;this.y=b.y+a.y;this.z=b.z+a.z;return this},addSelf:function(a){this.x+=a.x;this.y+=a.y;this.z+=a.z;return this},addScalar:function(a){this.x+=a;this.y+=a;this.z+=a;return this},sub:function(b,a){this.x=b.x-a.x;this.y=b.y-a.y;this.z=b.z-a.z;return this},subSelf:function(a){this.x-=a.x;this.y-=a.y;this.z-=a.z;return this},cross:function(b,a){this.x=b.y*a.z-b.z*a.y;this.y=b.z*a.x-b.x*a.z;this.z=b.x*a.y-b.y*a.x;return this},crossSelf:function(c){var b=this.x,a=this.y,d=this.z;this.x=a*c.z-d*c.y;this.y=d*c.x-b*c.z;this.z=b*c.y-a*c.x;return this},multiplySelf:function(a){this.x*=a.x;this.y*=a.y;this.z*=a.z;return this},multiplyScalar:function(a){this.x*=a;this.y*=a;this.z*=a;return this},divideScalar:function(a){this.x/=a;this.y/=a;this.z/=a;return this},dot:function(a){return this.x*a.x+this.y*a.y+this.z*a.z},distanceTo:function(a){return Math.sqrt(this.distanceToSquared(a))},distanceToSquared:function(d){var c=this.x-d.x,b=this.y-d.y,a=this.z-d.z;return c*c+b*b+a*a},length:function(){return Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z)},lengthSq:function(){return this.x*this.x+this.y*this.y+this.z*this.z},negate:function(){this.x=-this.x;this.y=-this.y;this.z=-this.z;return this},normalize:function(){if(this.length()>0){this.multiplyScalar(1/this.length())}else{this.multiplyScalar(0)}return this},setLength:function(a){return this.normalize().multiplyScalar(a)},isZero:function(){var a=0.0001;return(Math.abs(this.x)=0&&Math.min(g,i.getY2())-Math.max(h,i.getY1())>=0};this.empty=function(){e=true;f=0;h=0;d=0;g=0;b()};this.isEmpty=function(){return e};this.toString=function(){return"THREE.Rectangle (x1: "+f+", y1: "+g+", x2: "+d+", y1: "+h+", width: "+a+", height: "+c+")"}};THREE.Matrix3=function(){this.m=[]};THREE.Matrix3.prototype={transpose:function(){var a;a=this.m[1];this.m[1]=this.m[3];this.m[3]=a;a=this.m[2];this.m[2]=this.m[6];this.m[6]=a;a=this.m[5];this.m[5]=this.m[7];this.m[7]=a;return this}};THREE.Matrix4=function(){this._x=new THREE.Vector3();this._y=new THREE.Vector3();this._z=new THREE.Vector3()};THREE.Matrix4.prototype={n11:1,n12:0,n13:0,n14:0,n21:0,n22:1,n23:0,n24:0,n31:0,n32:0,n33:1,n34:0,n41:0,n42:0,n43:0,n44:1,identity:function(){this.n11=1;this.n12=0;this.n13=0;this.n14=0;this.n21=0;this.n22=1;this.n23=0;this.n24=0;this.n31=0;this.n32=0;this.n33=1;this.n34=0;this.n41=0;this.n42=0;this.n43=0;this.n44=1},copy:function(a){this.n11=a.n11;this.n12=a.n12;this.n13=a.n13;this.n14=a.n14;this.n21=a.n21;this.n22=a.n22;this.n23=a.n23;this.n24=a.n24;this.n31=a.n31;this.n32=a.n32;this.n33=a.n33;this.n34=a.n34;this.n41=a.n41;this.n42=a.n42;this.n43=a.n43;this.n44=a.n44},lookAt:function(d,c,b){var a=this._x,f=this._y,e=this._z;e.sub(d,c);e.normalize();a.cross(b,e);a.normalize();f.cross(e,a);f.normalize();this.n11=a.x;this.n12=a.y;this.n13=a.z;this.n14=-a.dot(d);this.n21=f.x;this.n22=f.y;this.n23=f.z;this.n24=-f.dot(d);this.n31=e.x;this.n32=e.y;this.n33=e.z;this.n34=-e.dot(d);this.n41=0;this.n42=0;this.n43=0;this.n44=1},transform:function(a){var d=a.x,c=a.y,b=a.z,e=a.w?a.w:1;a.x=this.n11*d+this.n12*c+this.n13*b+this.n14*e;a.y=this.n21*d+this.n22*c+this.n23*b+this.n24*e;a.z=this.n31*d+this.n32*c+this.n33*b+this.n34*e;e=this.n41*d+this.n42*c+this.n43*b+this.n44*e;if(a.w){a.w=e}else{a.x=a.x/e;a.y=a.y/e;a.z=a.z/e}return a},crossVector:function(b){var c=new THREE.Vector4();c.x=this.n11*b.x+this.n12*b.y+this.n13*b.z+this.n14*b.w;c.y=this.n21*b.x+this.n22*b.y+this.n23*b.z+this.n24*b.w;c.z=this.n31*b.x+this.n32*b.y+this.n33*b.z+this.n34*b.w;c.w=(b.w)?this.n41*b.x+this.n42*b.y+this.n43*b.z+this.n44*b.w:1;return c},multiply:function(d,c){this.n11=d.n11*c.n11+d.n12*c.n21+d.n13*c.n31+d.n14*c.n41;this.n12=d.n11*c.n12+d.n12*c.n22+d.n13*c.n32+d.n14*c.n42;this.n13=d.n11*c.n13+d.n12*c.n23+d.n13*c.n33+d.n14*c.n43;this.n14=d.n11*c.n14+d.n12*c.n24+d.n13*c.n34+d.n14*c.n44;this.n21=d.n21*c.n11+d.n22*c.n21+d.n23*c.n31+d.n24*c.n41;this.n22=d.n21*c.n12+d.n22*c.n22+d.n23*c.n32+d.n24*c.n42;this.n23=d.n21*c.n13+d.n22*c.n23+d.n23*c.n33+d.n24*c.n43;this.n24=d.n21*c.n14+d.n22*c.n24+d.n23*c.n34+d.n24*c.n44;this.n31=d.n31*c.n11+d.n32*c.n21+d.n33*c.n31+d.n34*c.n41;this.n32=d.n31*c.n12+d.n32*c.n22+d.n33*c.n32+d.n34*c.n42;this.n33=d.n31*c.n13+d.n32*c.n23+d.n33*c.n33+d.n34*c.n43;this.n34=d.n31*c.n14+d.n32*c.n24+d.n33*c.n34+d.n34*c.n44;this.n41=d.n41*c.n11+d.n42*c.n21+d.n43*c.n31+d.n44*c.n41;this.n42=d.n41*c.n12+d.n42*c.n22+d.n43*c.n32+d.n44*c.n42;this.n43=d.n41*c.n13+d.n42*c.n23+d.n43*c.n33+d.n44*c.n43;this.n44=d.n41*c.n14+d.n42*c.n24+d.n43*c.n34+d.n44*c.n44},multiplySelf:function(c){var o=this.n11,n=this.n12,k=this.n13,i=this.n14,f=this.n21,e=this.n22,d=this.n23,b=this.n24,a=this.n31,r=this.n32,q=this.n33,p=this.n34,l=this.n41,j=this.n42,h=this.n43,g=this.n44;this.n11=o*c.n11+n*c.n21+k*c.n31+i*c.n41;this.n12=o*c.n12+n*c.n22+k*c.n32+i*c.n42;this.n13=o*c.n13+n*c.n23+k*c.n33+i*c.n43;this.n14=o*c.n14+n*c.n24+k*c.n34+i*c.n44;this.n21=f*c.n11+e*c.n21+d*c.n31+b*c.n41;this.n22=f*c.n12+e*c.n22+d*c.n32+b*c.n42;this.n23=f*c.n13+e*c.n23+d*c.n33+b*c.n43;this.n24=f*c.n14+e*c.n24+d*c.n34+b*c.n44;this.n31=a*c.n11+r*c.n21+q*c.n31+p*c.n41;this.n32=a*c.n12+r*c.n22+q*c.n32+p*c.n42;this.n33=a*c.n13+r*c.n23+q*c.n33+p*c.n43;this.n34=a*c.n14+r*c.n24+q*c.n34+p*c.n44;this.n41=l*c.n11+j*c.n21+h*c.n31+g*c.n41;this.n42=l*c.n12+j*c.n22+h*c.n32+g*c.n42;this.n43=l*c.n13+j*c.n23+h*c.n33+g*c.n43;this.n44=l*c.n14+j*c.n24+h*c.n34+g*c.n44},multiplyScalar:function(a){this.n11*=a;this.n12*=a;this.n13*=a;this.n14*=a;this.n21*=a;this.n22*=a;this.n23*=a;this.n24*=a;this.n31*=a;this.n32*=a;this.n33*=a;this.n34*=a;this.n41*=a;this.n42*=a;this.n43*=a;this.n44*=a},determinant:function(){return(this.n14*this.n23*this.n32*this.n41-this.n13*this.n24*this.n32*this.n41-this.n14*this.n22*this.n33*this.n41+this.n12*this.n24*this.n33*this.n41+this.n13*this.n22*this.n34*this.n41-this.n12*this.n23*this.n34*this.n41-this.n14*this.n23*this.n31*this.n42+this.n13*this.n24*this.n31*this.n42+this.n14*this.n21*this.n33*this.n42-this.n11*this.n24*this.n33*this.n42-this.n13*this.n21*this.n34*this.n42+this.n11*this.n23*this.n34*this.n42+this.n14*this.n22*this.n31*this.n43-this.n12*this.n24*this.n31*this.n43-this.n14*this.n21*this.n32*this.n43+this.n11*this.n24*this.n32*this.n43+this.n12*this.n21*this.n34*this.n43-this.n11*this.n22*this.n34*this.n43-this.n13*this.n22*this.n31*this.n44+this.n12*this.n23*this.n31*this.n44+this.n13*this.n21*this.n32*this.n44-this.n11*this.n23*this.n32*this.n44-this.n12*this.n21*this.n33*this.n44+this.n11*this.n22*this.n33*this.n44)},transpose:function(){function a(d,e,c){var b=d[e];d[e]=d[c];d[c]=b}a(this,"n21","n12");a(this,"n31","n13");a(this,"n32","n23");a(this,"n41","n14");a(this,"n42","n24");a(this,"n43","n34");return this},clone:function(){var a=new THREE.Matrix4();a.n11=this.n11;a.n12=this.n12;a.n13=this.n13;a.n14=this.n14;a.n21=this.n21;a.n22=this.n22;a.n23=this.n23;a.n24=this.n24;a.n31=this.n31;a.n32=this.n32;a.n33=this.n33;a.n34=this.n34;a.n41=this.n41;a.n42=this.n42;a.n43=this.n43;a.n44=this.n44;return a},flatten:function(){return[this.n11,this.n21,this.n31,this.n41,this.n12,this.n22,this.n32,this.n42,this.n13,this.n23,this.n33,this.n43,this.n14,this.n24,this.n34,this.n44]},toString:function(){return"| "+this.n11+" "+this.n12+" "+this.n13+" "+this.n14+" |\n| "+this.n21+" "+this.n22+" "+this.n23+" "+this.n24+" |\n| "+this.n31+" "+this.n32+" "+this.n33+" "+this.n34+" |\n| "+this.n41+" "+this.n42+" "+this.n43+" "+this.n44+" |"}};THREE.Matrix4.translationMatrix=function(b,d,c){var a=new THREE.Matrix4();a.n14=b;a.n24=d;a.n34=c;return a};THREE.Matrix4.scaleMatrix=function(b,d,c){var a=new THREE.Matrix4();a.n11=b;a.n22=d;a.n33=c;return a};THREE.Matrix4.rotationXMatrix=function(b){var a=new THREE.Matrix4();a.n22=a.n33=Math.cos(b);a.n32=Math.sin(b);a.n23=-a.n32;return a};THREE.Matrix4.rotationYMatrix=function(b){var a=new THREE.Matrix4();a.n11=a.n33=Math.cos(b);a.n13=Math.sin(b);a.n31=-a.n13;return a};THREE.Matrix4.rotationZMatrix=function(b){var a=new THREE.Matrix4();a.n11=a.n22=Math.cos(b);a.n21=Math.sin(b);a.n12=-a.n21;return a};THREE.Matrix4.rotationAxisAngleMatrix=function(b,d){var a=new THREE.Matrix4(),f=Math.cos(d),j=Math.sin(d),i=1-f,h=b.x,g=b.y,e=b.z;a.n11=i*h*h+f;a.n12=i*h*g-j*e;a.n13=i*h*e+j*g;a.n21=i*h*g+j*e;a.n22=i*g*g+f;a.n23=i*g*e-j*h;a.n31=i*h*e-j*g;a.n32=i*g*e+j*h;a.n33=i*e*e+f;return a};THREE.Matrix4.makeInvert=function(b){var a=new THREE.Matrix4();a.n11=b.n23*b.n34*b.n42-b.n24*b.n33*b.n42+b.n24*b.n32*b.n43-b.n22*b.n34*b.n43-b.n23*b.n32*b.n44+b.n22*b.n33*b.n44;a.n12=b.n14*b.n33*b.n42-b.n13*b.n34*b.n42-b.n14*b.n32*b.n43+b.n12*b.n34*b.n43+b.n13*b.n32*b.n44-b.n12*b.n33*b.n44;a.n13=b.n13*b.n24*b.n42-b.n14*b.n23*b.n42+b.n14*b.n22*b.n43-b.n12*b.n24*b.n43-b.n13*b.n22*b.n44+b.n12*b.n23*b.n44;a.n14=b.n14*b.n23*b.n32-b.n13*b.n24*b.n32-b.n14*b.n22*b.n33+b.n12*b.n24*b.n33+b.n13*b.n22*b.n34-b.n12*b.n23*b.n34;a.n21=b.n24*b.n33*b.n41-b.n23*b.n34*b.n41-b.n24*b.n31*b.n43+b.n21*b.n34*b.n43+b.n23*b.n31*b.n44-b.n21*b.n33*b.n44;a.n22=b.n13*b.n34*b.n41-b.n14*b.n33*b.n41+b.n14*b.n31*b.n43-b.n11*b.n34*b.n43-b.n13*b.n31*b.n44+b.n11*b.n33*b.n44;a.n23=b.n14*b.n23*b.n41-b.n13*b.n24*b.n41-b.n14*b.n21*b.n43+b.n11*b.n24*b.n43+b.n13*b.n21*b.n44-b.n11*b.n23*b.n44;a.n24=b.n13*b.n24*b.n31-b.n14*b.n23*b.n31+b.n14*b.n21*b.n33-b.n11*b.n24*b.n33-b.n13*b.n21*b.n34+b.n11*b.n23*b.n34;a.n31=b.n22*b.n34*b.n41-b.n24*b.n32*b.n41+b.n24*b.n31*b.n42-b.n21*b.n34*b.n42-b.n22*b.n31*b.n44+b.n21*b.n32*b.n44;a.n32=b.n14*b.n32*b.n41-b.n12*b.n34*b.n41-b.n14*b.n31*b.n42+b.n11*b.n34*b.n42+b.n12*b.n31*b.n44-b.n11*b.n32*b.n44;a.n33=b.n13*b.n24*b.n41-b.n14*b.n22*b.n41+b.n14*b.n21*b.n42-b.n11*b.n24*b.n42-b.n12*b.n21*b.n44+b.n11*b.n22*b.n44;a.n34=b.n14*b.n22*b.n31-b.n12*b.n24*b.n31-b.n14*b.n21*b.n32+b.n11*b.n24*b.n32+b.n12*b.n21*b.n34-b.n11*b.n22*b.n34;a.n41=b.n23*b.n32*b.n41-b.n22*b.n33*b.n41-b.n23*b.n31*b.n42+b.n21*b.n33*b.n42+b.n22*b.n31*b.n43-b.n21*b.n32*b.n43;a.n42=b.n12*b.n33*b.n41-b.n13*b.n32*b.n41+b.n13*b.n31*b.n42-b.n11*b.n33*b.n42-b.n12*b.n31*b.n43+b.n11*b.n32*b.n43;a.n43=b.n13*b.n22*b.n41-b.n12*b.n23*b.n41-b.n13*b.n21*b.n42+b.n11*b.n23*b.n42+b.n12*b.n21*b.n43-b.n11*b.n22*b.n43;a.n44=b.n12*b.n23*b.n31-b.n13*b.n22*b.n31+b.n13*b.n21*b.n32-b.n11*b.n23*b.n32-b.n12*b.n21*b.n33+b.n11*b.n22*b.n33;a.multiplyScalar(1/b.determinant());return a};THREE.Matrix4.makeInvert3x3=function(o){var e=o.flatten(),l=new THREE.Matrix3(),n=e[10]*e[5]-e[6]*e[9],i=-e[10]*e[1]+e[2]*e[9],d=e[6]*e[1]-e[2]*e[5],k=-e[10]*e[4]+e[6]*e[8],g=e[10]*e[0]-e[2]*e[8],c=-e[6]*e[0]+e[2]*e[4],j=e[9]*e[4]-e[5]*e[8],f=-e[9]*e[0]+e[1]*e[8],a=e[5]*e[0]-e[1]*e[4],h=e[0]*(n)+e[1]*(k)+e[2]*(j),b;if(h==0){throw"matrix not invertible"}b=1/h;l.m[0]=b*n;l.m[1]=b*i;l.m[2]=b*d;l.m[3]=b*k;l.m[4]=b*g;l.m[5]=b*c;l.m[6]=b*j;l.m[7]=b*f;l.m[8]=b*a;return l};THREE.Matrix4.makeFrustum=function(f,r,e,o,i,h){var g,q,n,p,l,k,j;g=new THREE.Matrix4();q=2*i/(r-f);n=2*i/(o-e);p=(r+f)/(r-f);l=(o+e)/(o-e);k=-(h+i)/(h-i);j=-2*h*i/(h-i);g.n11=q;g.n12=0;g.n13=p;g.n14=0;g.n21=0;g.n22=n;g.n23=l;g.n24=0;g.n31=0;g.n32=0;g.n33=k;g.n34=j;g.n41=0;g.n42=0;g.n43=-1;g.n44=0;return g};THREE.Matrix4.makePerspective=function(e,c,g,b){var a,f,h,d;a=g*Math.tan(e*Math.PI/360);f=-a;h=f*c;d=a*c;return THREE.Matrix4.makeFrustum(h,d,f,a,g,b)};THREE.Matrix4.makeOrtho=function(c,o,k,a,g,f){var d,l,j,i,n,e,b;d=new THREE.Matrix4();n=o-c;e=k-a;b=f-g;l=(o+c)/n;j=(k+a)/e;i=(f+g)/b;d.n11=2/n;d.n12=0;d.n13=0;d.n14=-l;d.n21=0;d.n22=2/e;d.n23=0;d.n24=-j;d.n31=0;d.n32=0;d.n33=-2/b;d.n34=-i;d.n41=0;d.n42=0;d.n43=0;d.n44=1;return d};THREE.Vertex=function(a,b){this.position=a||new THREE.Vector3();this.positionWorld=new THREE.Vector3();this.positionScreen=new THREE.Vector3();this.normal=b||new THREE.Vector3();this.normalWorld=new THREE.Vector3();this.normalScreen=new THREE.Vector3();this.__visible=true};THREE.Vertex.prototype={toString:function(){return"THREE.Vertex ( position: "+this.position+", normal: "+this.normal+" )"}};THREE.Face3=function(e,d,h,g,f){this.a=e;this.b=d;this.c=h;this.centroid=new THREE.Vector3();this.normal=g instanceof THREE.Vector3?g:new THREE.Vector3();this.vertexNormals=g instanceof Array?g:[];this.material=f instanceof Array?f:[f]};THREE.Face3.prototype={toString:function(){return"THREE.Face3 ( "+this.a+", "+this.b+", "+this.c+" )"}};THREE.Face4=function(f,e,j,i,h,g){this.a=f;this.b=e;this.c=j;this.d=i;this.centroid=new THREE.Vector3();this.normal=h instanceof THREE.Vector3?h:new THREE.Vector3();this.vertexNormals=h instanceof Array?h:[];this.material=g instanceof Array?g:[g]};THREE.Face4.prototype={toString:function(){return"THREE.Face4 ( "+this.a+", "+this.b+", "+this.c+" "+this.d+" )"}};THREE.UV=function(b,a){this.u=b||0;this.v=a||0};THREE.UV.prototype={copy:function(a){this.u=a.u;this.v=a.v},toString:function(){return"THREE.UV ("+this.u+", "+this.v+")"}};THREE.Geometry=function(){this.vertices=[];this.faces=[];this.uvs=[]};THREE.Geometry.prototype={computeCentroids:function(){var c,b,a;for(c=0,b=this.faces.length;c0){this.bbox={x:[this.vertices[0].position.x,this.vertices[0].position.x],y:[this.vertices[0].position.y,this.vertices[0].position.y],z:[this.vertices[0].position.z,this.vertices[0].position.z]};for(var a=1,b=this.vertices.length;athis.bbox.x[1]){this.bbox.x[1]=vertex.position.x}}if(vertex.position.ythis.bbox.y[1]){this.bbox.y[1]=vertex.position.y}}if(vertex.position.zthis.bbox.z[1]){this.bbox.z[1]=vertex.position.z}}}}},toString:function(){return"THREE.Geometry ( vertices: "+this.vertices+", faces: "+this.faces+" )"}};THREE.Camera=function(c,b,d,a){this.fov=c;this.aspect=b;this.position=new THREE.Vector3(0,0,0);this.target={position:new THREE.Vector3(0,0,0)};this.projectionMatrix=THREE.Matrix4.makePerspective(c,b,d,a);this.up=new THREE.Vector3(0,1,0);this.matrix=new THREE.Matrix4();this.autoUpdateMatrix=true;this.updateMatrix=function(){this.matrix.lookAt(this.position,this.target.position,this.up)};this.toString=function(){return"THREE.Camera ( "+this.position+", "+this.target.position+" )"}};THREE.Light=function(a){this.color=new THREE.Color(255<<24|a)};THREE.AmbientLight=function(a){THREE.Light.call(this,a)};THREE.AmbientLight.prototype=new THREE.Light();THREE.AmbientLight.prototype.constructor=THREE.AmbientLight;THREE.DirectionalLight=function(b,a){THREE.Light.call(this,b);this.position=new THREE.Vector3(0,1,0);this.intensity=a||1};THREE.DirectionalLight.prototype=new THREE.Light();THREE.DirectionalLight.prototype.constructor=THREE.DirectionalLight;THREE.PointLight=function(b,a){THREE.Light.call(this,b);this.position=new THREE.Vector3(0,0,0);this.intensity=a||1};THREE.DirectionalLight.prototype=new THREE.Light();THREE.DirectionalLight.prototype.constructor=THREE.PointLight;THREE.Object3D=function(a){this.position=new THREE.Vector3();this.rotation=new THREE.Vector3();this.scale=new THREE.Vector3(1,1,1);this.matrix=new THREE.Matrix4();this.matrixTranslation=new THREE.Matrix4();this.matrixRotation=new THREE.Matrix4();this.matrixScale=new THREE.Matrix4();this.screen=new THREE.Vector3();this.autoUpdateMatrix=true;this.updateMatrix=function(){this.matrixPosition=THREE.Matrix4.translationMatrix(this.position.x,this.position.y,this.position.z);this.matrixRotation=THREE.Matrix4.rotationXMatrix(this.rotation.x);this.matrixRotation.multiplySelf(THREE.Matrix4.rotationYMatrix(this.rotation.y));this.matrixRotation.multiplySelf(THREE.Matrix4.rotationZMatrix(this.rotation.z));this.matrixScale=THREE.Matrix4.scaleMatrix(this.scale.x,this.scale.y,this.scale.z);this.matrix.copy(this.matrixPosition);this.matrix.multiplySelf(this.matrixRotation);this.matrix.multiplySelf(this.matrixScale)}};THREE.Particle=function(a){THREE.Object3D.call(this);this.material=a instanceof Array?a:[a];this.autoUpdateMatrix=false};THREE.Particle.prototype=new THREE.Object3D();THREE.Particle.prototype.constructor=THREE.Particle;THREE.Line=function(b,a){THREE.Object3D.call(this);this.geometry=b;this.material=a instanceof Array?a:[a]};THREE.Line.prototype=new THREE.Object3D();THREE.Line.prototype.constructor=THREE.Line;THREE.Mesh=function(b,a,c){THREE.Object3D.call(this);this.geometry=b;this.material=a instanceof Array?a:[a];this.flipSided=false;this.doubleSided=false;this.overdraw=false;this.materialFaceGroup={};this.sortFacesByMaterial();if(c){this.normalizeUVs()}this.geometry.computeBoundingBox()};THREE.Mesh.prototype=new THREE.Object3D();THREE.Mesh.prototype.constructor=THREE.Mesh;THREE.Mesh.prototype.sortFacesByMaterial=function(){var c,b,e,m,k,h,j,n,d,g={};function a(f){var i=[];for(c=0,b=f.length;c65535){g[n].counter+=1;d=g[n].hash+"_"+g[n].counter;if(this.materialFaceGroup[d]==undefined){this.materialFaceGroup[d]={faces:[],material:h,vertices:0}}}this.materialFaceGroup[d].faces.push(e);this.materialFaceGroup[d].vertices+=j}};THREE.Mesh.prototype.normalizeUVs=function(){var e,a,b,d,c;for(e=0,a=this.geometry.uvs.length;e=0?(b*255)<<24:4278190080)|c)};THREE.LineColorMaterial.prototype={toString:function(){return"THREE.LineColorMaterial ( color: "+this.color+", lineWidth: "+this.lineWidth+" )"}};THREE.MeshPhongMaterial=function(d,a,e,c,b){this.ambient=new THREE.Color((b>=0?(b*255)<<24:4278190080)|d);this.diffuse=new THREE.Color((b>=0?(b*255)<<24:4278190080)|a);this.specular=new THREE.Color((b>=0?(b*255)<<24:4278190080)|e);this.shininess=c;this.opacity=b;this.toString=function(){return"THREE.MeshPhongMaterial (
ambient: "+this.ambient+",
diffuse: "+this.diffuse+",
specular: "+this.specular+",
shininess: "+this.shininess+",
opacity: "+this.opacity+")"}};THREE.MeshBitmapMaterial=function(a,b){this.bitmap=a;this.mode=b||THREE.MeshBitmapMaterialMode.UVMAPPING;this.id=THREE.MeshBitmapMaterialCounter.value++;this.toString=function(){return"THREE.MeshBitmapMaterial ( bitmap: "+this.bitmap+", mode: "+this.mode+", id: "+this.id+" )"}};THREE.MeshBitmapMaterialCounter={value:0};THREE.MeshBitmapMaterialMode={UVMAPPING:0};THREE.MeshColorFillMaterial=function(b,a){this.color=new THREE.Color((a>=0?(a*255)<<24:4278190080)|b);this.toString=function(){return"THREE.MeshColorFillMaterial ( color: "+this.color+" )"}};THREE.MeshColorStrokeMaterial=function(c,b,a){this.lineWidth=a||1;this.color=new THREE.Color((b>=0?(b*255)<<24:4278190080)|c);this.toString=function(){return"THREE.MeshColorStrokeMaterial ( lineWidth: "+this.lineWidth+", color: "+this.color+" )"}};THREE.MeshFaceMaterial=function(){this.toString=function(){return"THREE.MeshFaceMaterial"}};THREE.ParticleBitmapMaterial=function(a){this.bitmap=a;this.offset=new THREE.Vector2();this.toString=function(){return"THREE.ParticleBitmapMaterial ( bitmap: "+this.bitmap+" )"}};THREE.ParticleCircleMaterial=function(b,a){this.color=new THREE.Color((a>=0?(a*255)<<24:4278190080)|b);this.toString=function(){return"THREE.ParticleCircleMaterial ( color: "+this.color+" )"}};THREE.ParticleDOMMaterial=function(a){this.domElement=a;this.toString=function(){return"THREE.ParticleDOMMaterial ( domElement: "+this.domElement+" )"}};THREE.Scene=function(){this.objects=[];this.lights=[];this.addObject=function(a){this.objects.push(a)};this.removeObject=function(b){for(var c=0,a=this.objects.length;c0&&u.z<1}w=L.geometry.faces;for(I=0,B=w.length;I0&&u.z<1;if(D>0){C=L.geometry.vertices[D-1];if(H.__visible&&C.__visible){k=i[m]=i[m]||new THREE.RenderableLine();k.v1.copy(H.positionScreen);k.v2.copy(C.positionScreen);k.z=Math.max(H.positionScreen.z,C.positionScreen.z);k.material=L.material;e.push(k);m++}}}}else{if(L instanceof THREE.Particle){g.set(L.position.x,L.position.y,L.position.z,1);G.matrix.transform(g);G.projectionMatrix.transform(g);L.screen.set(g.x/g.w,g.y/g.w,g.z/g.w);if(L.screen.z>0&&L.screen.z<1){j=a[h]=a[h]||new THREE.RenderableParticle();j.x=L.screen.x;j.y=L.screen.y;j.z=L.screen.z;j.rotation=L.rotation.z;j.scale.x=L.scale.x*Math.abs(g.x/g.w-(g.x+G.projectionMatrix.n11)/(g.w+G.projectionMatrix.n14));j.scale.y=L.scale.y*Math.abs(g.y/g.w-(g.y+G.projectionMatrix.n22)/(g.w+G.projectionMatrix.n24));j.material=L.material;j.color=L.color;e.push(j);h++}}}}}e.sort(function(M,v){return v.z-M.z});return e}};THREE.DOMRenderer=function(){THREE.Renderer.call(this);var e=null,g=new THREE.Projector(),b=document.createElement("div"),a,c,f,d;this.domElement=b;this.setSize=function(i,h){a=i;c=h;f=a/2;d=c/2};this.render=function(p,r){var q,h,i,n,o,s,l,k,j;e=g.projectScene(p,r);for(q=0,h=e.length;q0;if(l){B(ac,f)}for(ab=0,K=A.length;ab0){J.r+=H.color.r*K;J.g+=H.color.g*K;J.b+=H.color.b*K}}else{if(H instanceof THREE.PointLight){h.sub(H.position,L.centroidWorld);h.normalize();K=L.normalWorld.dot(h)*H.intensity;if(K>0){J.r+=H.color.r*K;J.g+=H.color.g*K;J.b+=H.color.b*K}}}}}function m(J,I,M,P,O){var H,U,S,R,N,L,Q,T,K;if(P instanceof THREE.ParticleCircleMaterial){if(l){x.copyRGB(f);u(O,M,x);o.copyRGBA(P.color);o.multiplySelfRGB(x);o.updateStyleString()}else{o=P.color}H=M.scale.x*k;U=M.scale.y*p;z.set(J-H,I-U,J+H,I+U);if(!D.instersects(z)){return}t.save();t.translate(J,I);t.rotate(-M.rotation);t.scale(H,U);t.beginPath();t.arc(0,0,1,0,y,true);t.closePath();t.fillStyle=o.__styleString;t.fill();t.restore()}else{if(P instanceof THREE.ParticleBitmapMaterial){Q=P.bitmap;T=Q.width/2;K=Q.height/2;S=M.scale.x*k;R=M.scale.y*p;H=S*T;U=R*K;N=P.offset.x*S;L=P.offset.y*R;z.set(J+N-H,I+L-U,J+N+H,I+L+U);if(!D.instersects(z)){return}t.save();t.translate(J,I);t.rotate(-M.rotation);t.scale(S,-R);t.translate(-T+P.offset.x,-K-P.offset.y);t.drawImage(Q,0,0);t.restore();t.beginPath();t.moveTo(J-10,I);t.lineTo(J+10,I);t.moveTo(J,I-10);t.lineTo(J,I+10);t.closePath();t.strokeStyle="rgb(255,255,0)";t.stroke()}}}function e(H,N,J,I,K,L,M){if(L instanceof THREE.LineColorMaterial){if(l){x.copyRGB(f);u(M,K,x);o.copyRGBA(L.color);o.multiplySelfRGB(x);o.updateStyleString()}else{o=L.color}t.lineWidth=L.lineWidth;t.lineJoin="round";t.lineCap="round";t.strokeStyle=o.__styleString;t.stroke();z.inflate(t.lineWidth)}}function i(J,I,H,S,P,O,L,N,M){var Q,R,K;if(N instanceof THREE.MeshColorFillMaterial){if(l){x.copyRGB(f);a(M,L,x);o.copyRGBA(N.color);o.multiplySelfRGB(x);o.updateStyleString()}else{o=N.color}t.beginPath();t.moveTo(J,I);t.lineTo(H,S);t.lineTo(P,O);t.lineTo(J,I);t.closePath();t.fillStyle=o.__styleString;t.fill()}else{if(N instanceof THREE.MeshColorStrokeMaterial){if(l){x.copyRGB(f);a(M,L,x);o.copyRGBA(N.color);o.multiplySelfRGB(x);o.updateStyleString()}else{o=N.color}t.beginPath();t.moveTo(J,I);t.lineTo(H,S);t.lineTo(P,O);t.lineTo(J,I);t.closePath();t.lineWidth=N.lineWidth;t.lineJoin="round";t.lineCap="round";t.strokeStyle=o.__styleString;t.stroke();z.inflate(t.lineWidth)}else{if(N instanceof THREE.MeshBitmapMaterial){Q=N.bitmap;R=Q.width-1;K=Q.height-1;if(!L.uvs[0]||!L.uvs[1]||!L.uvs[2]){t.beginPath();t.moveTo(J,I);t.lineTo(H,S);t.lineTo(P,O);t.lineTo(J,I);t.closePath();t.fillStyle="rgb(0, 255, 0)";t.fill();return}G.copy(L.uvs[0]);F.copy(L.uvs[1]);E.copy(L.uvs[2]);G.u*=R;G.v*=K;F.u*=R;F.v*=K;E.u*=R;E.v*=K;w(Q,J,I,H,S,P,O,G.u,G.v,F.u,F.v,E.u,E.v)}}}}function g(N,M,V,T,I,H,P,O,W,U,K,J,L,R,X){var Y,Q,S;if(R instanceof THREE.MeshColorFillMaterial){if(l){x.copyRGB(f);a(X,L,x);o.copyRGBA(R.color);o.multiplySelfRGB(x);o.updateStyleString()}else{o=R.color}t.beginPath();t.moveTo(N,M);t.lineTo(V,T);t.lineTo(I,H);t.lineTo(P,O);t.lineTo(N,M);t.closePath();t.fillStyle=o.__styleString;t.fill()}else{if(R instanceof THREE.MeshColorStrokeMaterial){if(l){x.copyRGB(f);a(X,L,x);o.copyRGBA(R.color);o.multiplySelfRGB(x);o.updateStyleString()}else{o=R.color}t.beginPath();t.moveTo(N,M);t.lineTo(V,T);t.lineTo(I,H);t.lineTo(P,O);t.lineTo(N,M);t.closePath();t.lineWidth=R.lineWidth;t.lineJoin="round";t.lineCap="round";t.strokeStyle=o.__styleString;t.stroke();z.inflate(t.lineWidth)}else{if(R instanceof THREE.MeshBitmapMaterial){Y=R.bitmap;Q=Y.width-1;S=Y.height-1;if(!L.uvs[0]||!L.uvs[1]||!L.uvs[2]||!L.uvs[3]||!L.uvs[4]){t.beginPath();t.moveTo(N,M);t.lineTo(V,T);t.lineTo(I,H);t.lineTo(P,O);t.lineTo(N,M);t.closePath();t.fillStyle="rgb(255, 0, 255)";t.fill();return}G.copy(L.uvs[0]);F.copy(L.uvs[1]);E.copy(L.uvs[2]);C.copy(L.uvs[3]);G.u*=Q;G.v*=S;F.u*=Q;F.v*=S;E.u*=Q;E.v*=S;C.u*=Q;C.v*=S;w(Y,N,M,V,T,P,O,G.u,G.v,F.u,F.v,C.u,C.v);w(Y,W,U,I,H,K,J,F.u,F.v,E.u,E.v,C.u,C.v)}}}}function w(aa,P,O,V,U,J,H,T,S,X,W,L,K){var I,Z,Y,N,M,R,Q;t.beginPath();t.moveTo(P,O);t.lineTo(V,U);t.lineTo(J,H);t.lineTo(P,O);t.closePath();t.save();t.clip();I=T*(K-W)-X*K+L*W+(X-L)*S;Z=-(S*(J-V)-W*J+K*V+(W-K)*P)/I;Y=(W*H+S*(U-H)-K*U+(K-W)*O)/I;N=(T*(J-V)-X*J+L*V+(X-L)*P)/I;M=-(X*H+T*(U-H)-L*U+(L-X)*O)/I;R=(T*(K*V-W*J)+S*(X*J-L*V)+(L*W-X*K)*P)/I;Q=(T*(K*U-W*H)+S*(X*H-L*U)+(L*W-X*K)*O)/I;t.transform(Z,Y,N,M,R,Q);t.drawImage(aa,0,0);t.restore()}function c(I,H){j.sub(H,I);j.unit();j.multiplyScalar(0.75);H.addSelf(j);I.subSelf(j)}};THREE.SVGRenderer=function(){var x=null,r=new THREE.Projector(),t=document.createElementNS("http://www.w3.org/2000/svg","svg"),b,o,p,s,z=new THREE.Rectangle(),w=new THREE.Rectangle(),i=false,k=new THREE.Color(4294967295),v=new THREE.Color(4294967295),c=new THREE.Color(4294967295),g=new THREE.Vector3(),d=[],l=[],B,n,f,A=1;this.domElement=t;this.autoClear=true;this.setQuality=function(C){switch(C){case"high":A=1;break;case"low":A=0;break}};this.setSize=function(D,C){b=D;o=C;p=b/2;s=o/2;t.setAttribute("viewBox",(-p)+" "+(-s)+" "+b+" "+o);t.setAttribute("width",b);t.setAttribute("height",o);z.set(-p,-s,p,s)};this.clear=function(){while(t.childNodes.length>0){t.removeChild(t.childNodes[0])}};this.render=function(T,Q){var S,E,N,R,J,G,F,M,K,H,P,O,D,C,L,I;if(this.autoClear){this.clear()}x=r.projectScene(T,Q);n=0;f=0;i=T.lights.length>0;if(i){y(T,c)}for(S=0,E=x.length;S0){E.r+=C.color.r*F;E.g+=C.color.g*F;E.b+=C.color.b*F}}else{if(C instanceof THREE.PointLight){g.sub(C.position,G.centroidWorld);g.normalize();F=G.normalWorld.dot(g)*C.intensity;if(F>0){E.r+=C.color.r*F;E.g+=C.color.g*F;E.b+=C.color.b*F}}}}}function j(C,G,D,E,F){B=u(f++);B.setAttribute("cx",C);B.setAttribute("cy",G);B.setAttribute("r",D.scale.x*p);if(E instanceof THREE.ParticleCircleMaterial){if(i){v.copyRGB(c);q(F,D,v);k.copyRGBA(E.color);k.multiplySelfRGB(v);k.updateStyleString()}else{k=E.color}B.setAttribute("style","fill: "+k.__styleString)}t.appendChild(B)}function h(E,D,C,K,J,I,F,H,G){B=m(n++);B.setAttribute("d","M "+E+" "+D+" L "+C+" "+K+" L "+J+","+I+"z");if(H instanceof THREE.MeshColorFillMaterial){if(i){v.copyRGB(c);a(G,F,v);k.copyRGBA(H.color);k.multiplySelfRGB(v);k.updateStyleString()}else{k=H.color}B.setAttribute("style","fill: "+k.__styleString)}else{if(H instanceof THREE.MeshColorStrokeMaterial){if(i){v.copyRGB(c);a(G,F,v);k.copyRGBA(H.color);k.multiplySelfRGB(v);k.updateStyleString()}else{k=H.color}B.setAttribute("style","fill: none; stroke: "+k.__styleString+"; stroke-width: "+H.lineWidth+"; stroke-linecap: round; stroke-linejoin: round")}}t.appendChild(B)}function e(G,E,C,M,L,K,F,D,H,J,I){B=m(n++);B.setAttribute("d","M "+G+" "+E+" L "+C+" "+M+" L "+L+","+K+" L "+F+","+D+"z");if(J instanceof THREE.MeshColorFillMaterial){if(i){v.copyRGB(c);a(I,H,v);k.copyRGBA(J.color);k.multiplySelfRGB(v);k.updateStyleString()}else{k=J.color}B.setAttribute("style","fill: "+k.__styleString)}else{if(J instanceof THREE.MeshColorStrokeMaterial){if(i){v.copyRGB(c);a(I,H,v);k.copyRGBA(J.color);k.multiplySelfRGB(v);k.updateStyleString()}else{k=J.color}B.setAttribute("style","fill: none; stroke: "+k.__styleString+"; stroke-width: "+J.lineWidth+"; stroke-linecap: round; stroke-linejoin: round")}}t.appendChild(B)}function m(C){if(d[C]==null){d[C]=document.createElementNS("http://www.w3.org/2000/svg","path");if(A==0){d[C].setAttribute("shape-rendering","crispEdges")}return d[C]}return d[C]}function u(C){if(l[C]==null){l[C]=document.createElementNS("http://www.w3.org/2000/svg","circle");if(A==0){l[C].setAttribute("shape-rendering","crispEdges")}return l[C]}return l[C]}};THREE.WebGLRenderer=function(q){var h=document.createElement("canvas"),f,n,k=new THREE.Matrix4(),d,g=0,c=1,s=2,o=3,l=b(q,5);this.domElement=h;this.autoClear=true;a();i(l.directional,l.point);function b(x,y){if(x){var u,w,t,v=pointLights=maxDirLights=maxPointLights=0;for(u=0,w=x.lights.length;u= 0.0 )":"",u?"pointSpecularWeight = pow( pointDotNormalHalf, mShininess );":"",u?"pointDiffuse += mDiffuse * pointDiffuseWeight;":"",u?"pointSpecular += mSpecular * pointSpecularWeight;":"",u?"}":"",t?"vec4 dirDiffuse = vec4( 0.0, 0.0, 0.0, 0.0 );":"",t?"vec4 dirSpecular = vec4( 0.0, 0.0, 0.0, 0.0 );":"",t?"for( int i = 0; i < directionalLightNumber; i++ ) {":"",t?"vec4 lDirection = viewMatrix * vec4( directionalLightDirection[ i ], 0.0 );":"",t?"vec3 dirVector = normalize( lDirection.xyz );":"",t?"vec3 dirHalfVector = normalize( lDirection.xyz + vViewPosition );":"",t?"float dirDotNormalHalf = dot( normal, dirHalfVector );":"",t?"float dirDiffuseWeight = max( dot( normal, dirVector ), 0.0 );":"",t?"float dirSpecularWeight = 0.0;":"",t?"if ( dirDotNormalHalf >= 0.0 )":"",t?"dirSpecularWeight = pow( dirDotNormalHalf, mShininess );":"",t?"dirDiffuse += mDiffuse * dirDiffuseWeight;":"",t?"dirSpecular += mSpecular * dirSpecularWeight;":"",t?"}":"","vec4 totalLight = mAmbient;",t?"totalLight += dirDiffuse + dirSpecular;":"",u?"totalLight += pointDiffuse + pointSpecular;":"","gl_FragColor = vec4( totalLight.xyz * vLightWeighting, 1.0 );","} else if ( material == 2 ) {","vec4 texelColor = texture2D( tDiffuse, vUv );","gl_FragColor = vec4( texelColor.rgb * vLightWeighting, texelColor.a );","} else if ( material == 1 ) {","gl_FragColor = vec4( mColor.rgb * vLightWeighting, mColor.a );","} else {","gl_FragColor = vec4( mColor.rgb * vLightWeighting, mColor.a );","}","}"];return v.join("\n")}function j(t,u){var v=[t?"#define MAX_DIR_LIGHTS "+t:"",u?"#define MAX_POINT_LIGHTS "+u:"","attribute vec3 position;","attribute vec3 normal;","attribute vec2 uv;","uniform vec3 cameraPosition;","uniform bool enableLighting;","uniform int pointLightNumber;","uniform int directionalLightNumber;","uniform vec3 ambientLightColor;",t?"uniform vec3 directionalLightColor[ MAX_DIR_LIGHTS ];":"",t?"uniform vec3 directionalLightDirection[ MAX_DIR_LIGHTS ];":"",u?"uniform vec3 pointLightColor[ MAX_POINT_LIGHTS ];":"",u?"uniform vec3 pointLightPosition[ MAX_POINT_LIGHTS ];":"","uniform mat4 objMatrix;","uniform mat4 viewMatrix;","uniform mat4 modelViewMatrix;","uniform mat4 projectionMatrix;","uniform mat3 normalMatrix;","varying vec3 vNormal;","varying vec2 vUv;","varying vec3 vLightWeighting;",u?"varying vec3 vPointLightVector[ MAX_POINT_LIGHTS ];":"","varying vec3 vViewPosition;","void main(void) {","vec4 mPosition = objMatrix * vec4( position, 1.0 );","vViewPosition = cameraPosition - mPosition.xyz;","vec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );","vec3 transformedNormal = normalize( normalMatrix * normal );","if ( !enableLighting ) {","vLightWeighting = vec3( 1.0, 1.0, 1.0 );","} else {","vLightWeighting = ambientLightColor;",t?"for( int i = 0; i < directionalLightNumber; i++ ) {":"",t?"vec4 lDirection = viewMatrix * vec4( directionalLightDirection[ i ], 0.0 );":"",t?"float directionalLightWeighting = max( dot( transformedNormal, normalize(lDirection.xyz ) ), 0.0 );":"",t?"vLightWeighting += directionalLightColor[ i ] * directionalLightWeighting;":"",t?"}":"",u?"for( int i = 0; i < pointLightNumber; i++ ) {":"",u?"vec4 lPosition = viewMatrix * vec4( pointLightPosition[ i ], 1.0 );":"",u?"vPointLightVector[ i ] = normalize( lPosition.xyz - mvPosition.xyz );":"",u?"float pointLightWeighting = max( dot( transformedNormal, vPointLightVector[ i ] ), 0.0 );":"",u?"vLightWeighting += pointLightColor[ i ] * pointLightWeighting;":"",u?"}":"","}","vNormal = transformedNormal;","vUv = uv;","gl_Position = projectionMatrix * mvPosition;","}"];return v.join("\n")}function i(t,u){n=f.createProgram();f.attachShader(n,r("fragment",p(t,u)));f.attachShader(n,r("vertex",j(t,u)));f.linkProgram(n);if(!f.getProgramParameter(n,f.LINK_STATUS)){alert("Could not initialise shaders")}f.useProgram(n);n.viewMatrix=f.getUniformLocation(n,"viewMatrix");n.modelViewMatrix=f.getUniformLocation(n,"modelViewMatrix");n.projectionMatrix=f.getUniformLocation(n,"projectionMatrix");n.normalMatrix=f.getUniformLocation(n,"normalMatrix");n.objMatrix=f.getUniformLocation(n,"objMatrix");n.cameraPosition=f.getUniformLocation(n,"cameraPosition");n.enableLighting=f.getUniformLocation(n,"enableLighting");n.ambientLightColor=f.getUniformLocation(n,"ambientLightColor");if(t){n.directionalLightNumber=f.getUniformLocation(n,"directionalLightNumber");n.directionalLightColor=f.getUniformLocation(n,"directionalLightColor");n.directionalLightDirection=f.getUniformLocation(n,"directionalLightDirection")}if(u){n.pointLightNumber=f.getUniformLocation(n,"pointLightNumber");n.pointLightColor=f.getUniformLocation(n,"pointLightColor");n.pointLightPosition=f.getUniformLocation(n,"pointLightPosition")}n.material=f.getUniformLocation(n,"material");n.mColor=f.getUniformLocation(n,"mColor");n.mAmbient=f.getUniformLocation(n,"mAmbient");n.mDiffuse=f.getUniformLocation(n,"mDiffuse");n.mSpecular=f.getUniformLocation(n,"mSpecular");n.mShininess=f.getUniformLocation(n,"mShininess");n.tDiffuse=f.getUniformLocation(n,"tDiffuse");f.uniform1i(n.tDiffuse,0);n.position=f.getAttribLocation(n,"position");f.enableVertexAttribArray(n.position);n.normal=f.getAttribLocation(n,"normal");f.enableVertexAttribArray(n.normal);n.uv=f.getAttribLocation(n,"uv");f.enableVertexAttribArray(n.uv);n.viewMatrixArray=new Float32Array(16);n.modelViewMatrixArray=new Float32Array(16);n.projectionMatrixArray=new Float32Array(16)}function r(u,t){var v;if(u=="fragment"){v=f.createShader(f.FRAGMENT_SHADER)}else{if(u=="vertex"){v=f.createShader(f.VERTEX_SHADER)}}f.shaderSource(v,t);f.compileShader(v);if(!f.getShaderParameter(v,f.COMPILE_STATUS)){alert(f.getShaderInfoLog(v));return null}return v}function e(){var t={MAX_VARYING_VECTORS:f.getParameter(f.MAX_VARYING_VECTORS),MAX_VERTEX_ATTRIBS:f.getParameter(f.MAX_VERTEX_ATTRIBS),MAX_TEXTURE_IMAGE_UNITS:f.getParameter(f.MAX_TEXTURE_IMAGE_UNITS),MAX_VERTEX_TEXTURE_IMAGE_UNITS:f.getParameter(f.MAX_VERTEX_TEXTURE_IMAGE_UNITS),MAX_COMBINED_TEXTURE_IMAGE_UNITS:f.getParameter(f.MAX_COMBINED_TEXTURE_IMAGE_UNITS),MAX_VERTEX_UNIFORM_VECTORS:f.getParameter(f.MAX_VERTEX_UNIFORM_VECTORS),MAX_FRAGMENT_UNIFORM_VECTORS:f.getParameter(f.MAX_FRAGMENT_UNIFORM_VECTORS)};return t}function m(u){var t,v="";for(t in u){v+=t+": "+u[t]+"\n"}return v}};THREE.RenderableFace3=function(){this.v1=new THREE.Vector2();this.v2=new THREE.Vector2();this.v3=new THREE.Vector2();this.centroidWorld=new THREE.Vector3();this.centroidScreen=new THREE.Vector3();this.normalWorld=new THREE.Vector3();this.z=null;this.color=null;this.material=null};THREE.RenderableFace4=function(){this.v1=new THREE.Vector2();this.v2=new THREE.Vector2();this.v3=new THREE.Vector2();this.v4=new THREE.Vector2();this.centroidWorld=new THREE.Vector3();this.centroidScreen=new THREE.Vector3();this.normalWorld=new THREE.Vector3();this.z=null;this.color=null;this.material=null};THREE.RenderableParticle=function(){this.x=null;this.y=null;this.z=null;this.rotation=null;this.scale=new THREE.Vector2();this.color=null;this.material=null};THREE.RenderableLine=function(){this.v1=new THREE.Vector2();this.v2=new THREE.Vector2();this.z=null;this.color=null;this.material=null}; \ No newline at end of file +// ThreeDebug.js r28 - http://github.com/mrdoob/three.js +var THREE=THREE||{};THREE.Color=function(a){this.autoUpdate=true;this.setHex(a)};THREE.Color.prototype={setRGBA:function(f,e,c,d){this.r=f;this.g=e;this.b=c;this.a=d;if(this.autoUpdate){this.updateHex();this.updateStyleString()}},setHex:function(a){this.hex=a;if(this.autoUpdate){this.updateRGBA();this.updateStyleString()}},copyRGB:function(a){this.r=a.r;this.g=a.g;this.b=a.b},copyRGBA:function(a){this.r=a.r;this.g=a.g;this.b=a.b;this.a=a.a},multiplySelfRGB:function(a){this.r*=a.r;this.g*=a.g;this.b*=a.b},updateHex:function(){this.hex=Math.floor(this.a*255)<<24|Math.floor(this.r*255)<<16|Math.floor(this.g*255)<<8|Math.floor(this.b*255)},updateRGBA:function(){this.a=(this.hex>>24&255)/255;this.r=(this.hex>>16&255)/255;this.g=(this.hex>>8&255)/255;this.b=(this.hex&255)/255},updateStyleString:function(){this.__styleString="rgba("+Math.floor(this.r*255)+","+Math.floor(this.g*255)+","+Math.floor(this.b*255)+","+this.a+")"},toString:function(){return"THREE.Color ( r: "+this.r+", g: "+this.g+", b: "+this.b+", a: "+this.a+", hex: "+this.hex+" )"}};THREE.Vector2=function(a,b){this.x=a||0;this.y=b||0};THREE.Vector2.prototype={set:function(a,b){this.x=a;this.y=b;return this},copy:function(a){this.x=a.x;this.y=a.y;return this},addSelf:function(a){this.x+=a.x;this.y+=a.y;return this},add:function(b,a){this.x=b.x+a.x;this.y=b.y+a.y;return this},subSelf:function(a){this.x-=a.x;this.y-=a.y;return this},sub:function(b,a){this.x=b.x-a.x;this.y=b.y-a.y;return this},multiplyScalar:function(a){this.x*=a;this.y*=a;return this},unit:function(){this.multiplyScalar(1/this.length());return this},length:function(){return Math.sqrt(this.x*this.x+this.y*this.y)},lengthSq:function(){return this.x*this.x+this.y*this.y},negate:function(){this.x=-this.x;this.y=-this.y;return this},clone:function(){return new THREE.Vector2(this.x,this.y)},toString:function(){return"THREE.Vector2 ("+this.x+", "+this.y+")"}};THREE.Vector3=function(a,c,b){this.x=a||0;this.y=c||0;this.z=b||0};THREE.Vector3.prototype={set:function(a,c,b){this.x=a;this.y=c;this.z=b;return this},copy:function(a){this.x=a.x;this.y=a.y;this.z=a.z;return this},add:function(b,a){this.x=b.x+a.x;this.y=b.y+a.y;this.z=b.z+a.z;return this},addSelf:function(a){this.x+=a.x;this.y+=a.y;this.z+=a.z;return this},addScalar:function(a){this.x+=a;this.y+=a;this.z+=a;return this},sub:function(b,a){this.x=b.x-a.x;this.y=b.y-a.y;this.z=b.z-a.z;return this},subSelf:function(a){this.x-=a.x;this.y-=a.y;this.z-=a.z;return this},cross:function(b,a){this.x=b.y*a.z-b.z*a.y;this.y=b.z*a.x-b.x*a.z;this.z=b.x*a.y-b.y*a.x;return this},crossSelf:function(c){var b=this.x,a=this.y,d=this.z;this.x=a*c.z-d*c.y;this.y=d*c.x-b*c.z;this.z=b*c.y-a*c.x;return this},multiplySelf:function(a){this.x*=a.x;this.y*=a.y;this.z*=a.z;return this},multiplyScalar:function(a){this.x*=a;this.y*=a;this.z*=a;return this},divideScalar:function(a){this.x/=a;this.y/=a;this.z/=a;return this},dot:function(a){return this.x*a.x+this.y*a.y+this.z*a.z},distanceTo:function(a){return Math.sqrt(this.distanceToSquared(a))},distanceToSquared:function(d){var c=this.x-d.x,b=this.y-d.y,a=this.z-d.z;return c*c+b*b+a*a},length:function(){return Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z)},lengthSq:function(){return this.x*this.x+this.y*this.y+this.z*this.z},negate:function(){this.x=-this.x;this.y=-this.y;this.z=-this.z;return this},normalize:function(){if(this.length()>0){this.multiplyScalar(1/this.length())}else{this.multiplyScalar(0)}return this},setLength:function(a){return this.normalize().multiplyScalar(a)},isZero:function(){var a=0.0001;return(Math.abs(this.x)=0&&Math.min(g,i.getY2())-Math.max(h,i.getY1())>=0};this.empty=function(){e=true;f=0;h=0;d=0;g=0;b()};this.isEmpty=function(){return e};this.toString=function(){return"THREE.Rectangle (x1: "+f+", y1: "+g+", x2: "+d+", y1: "+h+", width: "+a+", height: "+c+")"}};THREE.Matrix3=function(){this.m=[]};THREE.Matrix3.prototype={transpose:function(){var a;a=this.m[1];this.m[1]=this.m[3];this.m[3]=a;a=this.m[2];this.m[2]=this.m[6];this.m[6]=a;a=this.m[5];this.m[5]=this.m[7];this.m[7]=a;return this}};THREE.Matrix4=function(){this._x=new THREE.Vector3();this._y=new THREE.Vector3();this._z=new THREE.Vector3()};THREE.Matrix4.prototype={n11:1,n12:0,n13:0,n14:0,n21:0,n22:1,n23:0,n24:0,n31:0,n32:0,n33:1,n34:0,n41:0,n42:0,n43:0,n44:1,identity:function(){this.n11=1;this.n12=0;this.n13=0;this.n14=0;this.n21=0;this.n22=1;this.n23=0;this.n24=0;this.n31=0;this.n32=0;this.n33=1;this.n34=0;this.n41=0;this.n42=0;this.n43=0;this.n44=1},copy:function(a){this.n11=a.n11;this.n12=a.n12;this.n13=a.n13;this.n14=a.n14;this.n21=a.n21;this.n22=a.n22;this.n23=a.n23;this.n24=a.n24;this.n31=a.n31;this.n32=a.n32;this.n33=a.n33;this.n34=a.n34;this.n41=a.n41;this.n42=a.n42;this.n43=a.n43;this.n44=a.n44},lookAt:function(d,c,b){var a=this._x,f=this._y,e=this._z;e.sub(d,c);e.normalize();a.cross(b,e);a.normalize();f.cross(e,a);f.normalize();this.n11=a.x;this.n12=a.y;this.n13=a.z;this.n14=-a.dot(d);this.n21=f.x;this.n22=f.y;this.n23=f.z;this.n24=-f.dot(d);this.n31=e.x;this.n32=e.y;this.n33=e.z;this.n34=-e.dot(d);this.n41=0;this.n42=0;this.n43=0;this.n44=1},transform:function(a){var d=a.x,c=a.y,b=a.z,e=a.w?a.w:1;a.x=this.n11*d+this.n12*c+this.n13*b+this.n14*e;a.y=this.n21*d+this.n22*c+this.n23*b+this.n24*e;a.z=this.n31*d+this.n32*c+this.n33*b+this.n34*e;e=this.n41*d+this.n42*c+this.n43*b+this.n44*e;if(a.w){a.w=e}else{a.x=a.x/e;a.y=a.y/e;a.z=a.z/e}return a},crossVector:function(b){var c=new THREE.Vector4();c.x=this.n11*b.x+this.n12*b.y+this.n13*b.z+this.n14*b.w;c.y=this.n21*b.x+this.n22*b.y+this.n23*b.z+this.n24*b.w;c.z=this.n31*b.x+this.n32*b.y+this.n33*b.z+this.n34*b.w;c.w=(b.w)?this.n41*b.x+this.n42*b.y+this.n43*b.z+this.n44*b.w:1;return c},multiply:function(d,c){this.n11=d.n11*c.n11+d.n12*c.n21+d.n13*c.n31+d.n14*c.n41;this.n12=d.n11*c.n12+d.n12*c.n22+d.n13*c.n32+d.n14*c.n42;this.n13=d.n11*c.n13+d.n12*c.n23+d.n13*c.n33+d.n14*c.n43;this.n14=d.n11*c.n14+d.n12*c.n24+d.n13*c.n34+d.n14*c.n44;this.n21=d.n21*c.n11+d.n22*c.n21+d.n23*c.n31+d.n24*c.n41;this.n22=d.n21*c.n12+d.n22*c.n22+d.n23*c.n32+d.n24*c.n42;this.n23=d.n21*c.n13+d.n22*c.n23+d.n23*c.n33+d.n24*c.n43;this.n24=d.n21*c.n14+d.n22*c.n24+d.n23*c.n34+d.n24*c.n44;this.n31=d.n31*c.n11+d.n32*c.n21+d.n33*c.n31+d.n34*c.n41;this.n32=d.n31*c.n12+d.n32*c.n22+d.n33*c.n32+d.n34*c.n42;this.n33=d.n31*c.n13+d.n32*c.n23+d.n33*c.n33+d.n34*c.n43;this.n34=d.n31*c.n14+d.n32*c.n24+d.n33*c.n34+d.n34*c.n44;this.n41=d.n41*c.n11+d.n42*c.n21+d.n43*c.n31+d.n44*c.n41;this.n42=d.n41*c.n12+d.n42*c.n22+d.n43*c.n32+d.n44*c.n42;this.n43=d.n41*c.n13+d.n42*c.n23+d.n43*c.n33+d.n44*c.n43;this.n44=d.n41*c.n14+d.n42*c.n24+d.n43*c.n34+d.n44*c.n44},multiplySelf:function(c){var o=this.n11,n=this.n12,k=this.n13,i=this.n14,f=this.n21,e=this.n22,d=this.n23,b=this.n24,a=this.n31,r=this.n32,q=this.n33,p=this.n34,l=this.n41,j=this.n42,h=this.n43,g=this.n44;this.n11=o*c.n11+n*c.n21+k*c.n31+i*c.n41;this.n12=o*c.n12+n*c.n22+k*c.n32+i*c.n42;this.n13=o*c.n13+n*c.n23+k*c.n33+i*c.n43;this.n14=o*c.n14+n*c.n24+k*c.n34+i*c.n44;this.n21=f*c.n11+e*c.n21+d*c.n31+b*c.n41;this.n22=f*c.n12+e*c.n22+d*c.n32+b*c.n42;this.n23=f*c.n13+e*c.n23+d*c.n33+b*c.n43;this.n24=f*c.n14+e*c.n24+d*c.n34+b*c.n44;this.n31=a*c.n11+r*c.n21+q*c.n31+p*c.n41;this.n32=a*c.n12+r*c.n22+q*c.n32+p*c.n42;this.n33=a*c.n13+r*c.n23+q*c.n33+p*c.n43;this.n34=a*c.n14+r*c.n24+q*c.n34+p*c.n44;this.n41=l*c.n11+j*c.n21+h*c.n31+g*c.n41;this.n42=l*c.n12+j*c.n22+h*c.n32+g*c.n42;this.n43=l*c.n13+j*c.n23+h*c.n33+g*c.n43;this.n44=l*c.n14+j*c.n24+h*c.n34+g*c.n44},multiplyScalar:function(a){this.n11*=a;this.n12*=a;this.n13*=a;this.n14*=a;this.n21*=a;this.n22*=a;this.n23*=a;this.n24*=a;this.n31*=a;this.n32*=a;this.n33*=a;this.n34*=a;this.n41*=a;this.n42*=a;this.n43*=a;this.n44*=a},determinant:function(){return(this.n14*this.n23*this.n32*this.n41-this.n13*this.n24*this.n32*this.n41-this.n14*this.n22*this.n33*this.n41+this.n12*this.n24*this.n33*this.n41+this.n13*this.n22*this.n34*this.n41-this.n12*this.n23*this.n34*this.n41-this.n14*this.n23*this.n31*this.n42+this.n13*this.n24*this.n31*this.n42+this.n14*this.n21*this.n33*this.n42-this.n11*this.n24*this.n33*this.n42-this.n13*this.n21*this.n34*this.n42+this.n11*this.n23*this.n34*this.n42+this.n14*this.n22*this.n31*this.n43-this.n12*this.n24*this.n31*this.n43-this.n14*this.n21*this.n32*this.n43+this.n11*this.n24*this.n32*this.n43+this.n12*this.n21*this.n34*this.n43-this.n11*this.n22*this.n34*this.n43-this.n13*this.n22*this.n31*this.n44+this.n12*this.n23*this.n31*this.n44+this.n13*this.n21*this.n32*this.n44-this.n11*this.n23*this.n32*this.n44-this.n12*this.n21*this.n33*this.n44+this.n11*this.n22*this.n33*this.n44)},transpose:function(){function a(d,e,c){var b=d[e];d[e]=d[c];d[c]=b}a(this,"n21","n12");a(this,"n31","n13");a(this,"n32","n23");a(this,"n41","n14");a(this,"n42","n24");a(this,"n43","n34");return this},clone:function(){var a=new THREE.Matrix4();a.n11=this.n11;a.n12=this.n12;a.n13=this.n13;a.n14=this.n14;a.n21=this.n21;a.n22=this.n22;a.n23=this.n23;a.n24=this.n24;a.n31=this.n31;a.n32=this.n32;a.n33=this.n33;a.n34=this.n34;a.n41=this.n41;a.n42=this.n42;a.n43=this.n43;a.n44=this.n44;return a},flatten:function(){return[this.n11,this.n21,this.n31,this.n41,this.n12,this.n22,this.n32,this.n42,this.n13,this.n23,this.n33,this.n43,this.n14,this.n24,this.n34,this.n44]},toString:function(){return"| "+this.n11+" "+this.n12+" "+this.n13+" "+this.n14+" |\n| "+this.n21+" "+this.n22+" "+this.n23+" "+this.n24+" |\n| "+this.n31+" "+this.n32+" "+this.n33+" "+this.n34+" |\n| "+this.n41+" "+this.n42+" "+this.n43+" "+this.n44+" |"}};THREE.Matrix4.translationMatrix=function(b,d,c){var a=new THREE.Matrix4();a.n14=b;a.n24=d;a.n34=c;return a};THREE.Matrix4.scaleMatrix=function(b,d,c){var a=new THREE.Matrix4();a.n11=b;a.n22=d;a.n33=c;return a};THREE.Matrix4.rotationXMatrix=function(b){var a=new THREE.Matrix4();a.n22=a.n33=Math.cos(b);a.n32=Math.sin(b);a.n23=-a.n32;return a};THREE.Matrix4.rotationYMatrix=function(b){var a=new THREE.Matrix4();a.n11=a.n33=Math.cos(b);a.n13=Math.sin(b);a.n31=-a.n13;return a};THREE.Matrix4.rotationZMatrix=function(b){var a=new THREE.Matrix4();a.n11=a.n22=Math.cos(b);a.n21=Math.sin(b);a.n12=-a.n21;return a};THREE.Matrix4.rotationAxisAngleMatrix=function(b,d){var a=new THREE.Matrix4(),f=Math.cos(d),j=Math.sin(d),i=1-f,h=b.x,g=b.y,e=b.z;a.n11=i*h*h+f;a.n12=i*h*g-j*e;a.n13=i*h*e+j*g;a.n21=i*h*g+j*e;a.n22=i*g*g+f;a.n23=i*g*e-j*h;a.n31=i*h*e-j*g;a.n32=i*g*e+j*h;a.n33=i*e*e+f;return a};THREE.Matrix4.makeInvert=function(b){var a=new THREE.Matrix4();a.n11=b.n23*b.n34*b.n42-b.n24*b.n33*b.n42+b.n24*b.n32*b.n43-b.n22*b.n34*b.n43-b.n23*b.n32*b.n44+b.n22*b.n33*b.n44;a.n12=b.n14*b.n33*b.n42-b.n13*b.n34*b.n42-b.n14*b.n32*b.n43+b.n12*b.n34*b.n43+b.n13*b.n32*b.n44-b.n12*b.n33*b.n44;a.n13=b.n13*b.n24*b.n42-b.n14*b.n23*b.n42+b.n14*b.n22*b.n43-b.n12*b.n24*b.n43-b.n13*b.n22*b.n44+b.n12*b.n23*b.n44;a.n14=b.n14*b.n23*b.n32-b.n13*b.n24*b.n32-b.n14*b.n22*b.n33+b.n12*b.n24*b.n33+b.n13*b.n22*b.n34-b.n12*b.n23*b.n34;a.n21=b.n24*b.n33*b.n41-b.n23*b.n34*b.n41-b.n24*b.n31*b.n43+b.n21*b.n34*b.n43+b.n23*b.n31*b.n44-b.n21*b.n33*b.n44;a.n22=b.n13*b.n34*b.n41-b.n14*b.n33*b.n41+b.n14*b.n31*b.n43-b.n11*b.n34*b.n43-b.n13*b.n31*b.n44+b.n11*b.n33*b.n44;a.n23=b.n14*b.n23*b.n41-b.n13*b.n24*b.n41-b.n14*b.n21*b.n43+b.n11*b.n24*b.n43+b.n13*b.n21*b.n44-b.n11*b.n23*b.n44;a.n24=b.n13*b.n24*b.n31-b.n14*b.n23*b.n31+b.n14*b.n21*b.n33-b.n11*b.n24*b.n33-b.n13*b.n21*b.n34+b.n11*b.n23*b.n34;a.n31=b.n22*b.n34*b.n41-b.n24*b.n32*b.n41+b.n24*b.n31*b.n42-b.n21*b.n34*b.n42-b.n22*b.n31*b.n44+b.n21*b.n32*b.n44;a.n32=b.n14*b.n32*b.n41-b.n12*b.n34*b.n41-b.n14*b.n31*b.n42+b.n11*b.n34*b.n42+b.n12*b.n31*b.n44-b.n11*b.n32*b.n44;a.n33=b.n13*b.n24*b.n41-b.n14*b.n22*b.n41+b.n14*b.n21*b.n42-b.n11*b.n24*b.n42-b.n12*b.n21*b.n44+b.n11*b.n22*b.n44;a.n34=b.n14*b.n22*b.n31-b.n12*b.n24*b.n31-b.n14*b.n21*b.n32+b.n11*b.n24*b.n32+b.n12*b.n21*b.n34-b.n11*b.n22*b.n34;a.n41=b.n23*b.n32*b.n41-b.n22*b.n33*b.n41-b.n23*b.n31*b.n42+b.n21*b.n33*b.n42+b.n22*b.n31*b.n43-b.n21*b.n32*b.n43;a.n42=b.n12*b.n33*b.n41-b.n13*b.n32*b.n41+b.n13*b.n31*b.n42-b.n11*b.n33*b.n42-b.n12*b.n31*b.n43+b.n11*b.n32*b.n43;a.n43=b.n13*b.n22*b.n41-b.n12*b.n23*b.n41-b.n13*b.n21*b.n42+b.n11*b.n23*b.n42+b.n12*b.n21*b.n43-b.n11*b.n22*b.n43;a.n44=b.n12*b.n23*b.n31-b.n13*b.n22*b.n31+b.n13*b.n21*b.n32-b.n11*b.n23*b.n32-b.n12*b.n21*b.n33+b.n11*b.n22*b.n33;a.multiplyScalar(1/b.determinant());return a};THREE.Matrix4.makeInvert3x3=function(o){var e=o.flatten(),l=new THREE.Matrix3(),n=e[10]*e[5]-e[6]*e[9],i=-e[10]*e[1]+e[2]*e[9],d=e[6]*e[1]-e[2]*e[5],k=-e[10]*e[4]+e[6]*e[8],g=e[10]*e[0]-e[2]*e[8],c=-e[6]*e[0]+e[2]*e[4],j=e[9]*e[4]-e[5]*e[8],f=-e[9]*e[0]+e[1]*e[8],a=e[5]*e[0]-e[1]*e[4],h=e[0]*(n)+e[1]*(k)+e[2]*(j),b;if(h==0){throw"matrix not invertible"}b=1/h;l.m[0]=b*n;l.m[1]=b*i;l.m[2]=b*d;l.m[3]=b*k;l.m[4]=b*g;l.m[5]=b*c;l.m[6]=b*j;l.m[7]=b*f;l.m[8]=b*a;return l};THREE.Matrix4.makeFrustum=function(f,r,e,o,i,h){var g,q,n,p,l,k,j;g=new THREE.Matrix4();q=2*i/(r-f);n=2*i/(o-e);p=(r+f)/(r-f);l=(o+e)/(o-e);k=-(h+i)/(h-i);j=-2*h*i/(h-i);g.n11=q;g.n12=0;g.n13=p;g.n14=0;g.n21=0;g.n22=n;g.n23=l;g.n24=0;g.n31=0;g.n32=0;g.n33=k;g.n34=j;g.n41=0;g.n42=0;g.n43=-1;g.n44=0;return g};THREE.Matrix4.makePerspective=function(e,c,g,b){var a,f,h,d;a=g*Math.tan(e*Math.PI/360);f=-a;h=f*c;d=a*c;return THREE.Matrix4.makeFrustum(h,d,f,a,g,b)};THREE.Matrix4.makeOrtho=function(c,o,k,a,g,f){var d,l,j,i,n,e,b;d=new THREE.Matrix4();n=o-c;e=k-a;b=f-g;l=(o+c)/n;j=(k+a)/e;i=(f+g)/b;d.n11=2/n;d.n12=0;d.n13=0;d.n14=-l;d.n21=0;d.n22=2/e;d.n23=0;d.n24=-j;d.n31=0;d.n32=0;d.n33=-2/b;d.n34=-i;d.n41=0;d.n42=0;d.n43=0;d.n44=1;return d};THREE.Vertex=function(a,b){this.position=a||new THREE.Vector3();this.positionWorld=new THREE.Vector3();this.positionScreen=new THREE.Vector3();this.normal=b||new THREE.Vector3();this.normalWorld=new THREE.Vector3();this.normalScreen=new THREE.Vector3();this.__visible=true};THREE.Vertex.prototype={toString:function(){return"THREE.Vertex ( position: "+this.position+", normal: "+this.normal+" )"}};THREE.Face3=function(e,d,h,g,f){this.a=e;this.b=d;this.c=h;this.centroid=new THREE.Vector3();this.normal=g instanceof THREE.Vector3?g:new THREE.Vector3();this.vertexNormals=g instanceof Array?g:[];this.material=f instanceof Array?f:[f]};THREE.Face3.prototype={toString:function(){return"THREE.Face3 ( "+this.a+", "+this.b+", "+this.c+" )"}};THREE.Face4=function(f,e,j,i,h,g){this.a=f;this.b=e;this.c=j;this.d=i;this.centroid=new THREE.Vector3();this.normal=h instanceof THREE.Vector3?h:new THREE.Vector3();this.vertexNormals=h instanceof Array?h:[];this.material=g instanceof Array?g:[g]};THREE.Face4.prototype={toString:function(){return"THREE.Face4 ( "+this.a+", "+this.b+", "+this.c+" "+this.d+" )"}};THREE.UV=function(b,a){this.u=b||0;this.v=a||0};THREE.UV.prototype={copy:function(a){this.u=a.u;this.v=a.v},toString:function(){return"THREE.UV ("+this.u+", "+this.v+")"}};THREE.Geometry=function(){this.vertices=[];this.faces=[];this.uvs=[]};THREE.Geometry.prototype={computeCentroids:function(){var c,b,a;for(c=0,b=this.faces.length;c0){this.bbox={x:[this.vertices[0].position.x,this.vertices[0].position.x],y:[this.vertices[0].position.y,this.vertices[0].position.y],z:[this.vertices[0].position.z,this.vertices[0].position.z]};for(var a=1,b=this.vertices.length;athis.bbox.x[1]){this.bbox.x[1]=vertex.position.x}}if(vertex.position.ythis.bbox.y[1]){this.bbox.y[1]=vertex.position.y}}if(vertex.position.zthis.bbox.z[1]){this.bbox.z[1]=vertex.position.z}}}}},toString:function(){return"THREE.Geometry ( vertices: "+this.vertices+", faces: "+this.faces+" )"}};THREE.Camera=function(c,b,d,a){this.fov=c;this.aspect=b;this.position=new THREE.Vector3(0,0,0);this.target={position:new THREE.Vector3(0,0,0)};this.projectionMatrix=THREE.Matrix4.makePerspective(c,b,d,a);this.up=new THREE.Vector3(0,1,0);this.matrix=new THREE.Matrix4();this.autoUpdateMatrix=true;this.updateMatrix=function(){this.matrix.lookAt(this.position,this.target.position,this.up)};this.toString=function(){return"THREE.Camera ( "+this.position+", "+this.target.position+" )"}};THREE.Loader=function(){};THREE.Loader.prototype={loadAsync:function(a,c){var b=document.createElement("script");b.type="text/javascript";b.onload=c;b.src=a;document.getElementsByTagName("head")[0].appendChild(b)},loadWorker:function(a,e,b){var c=(new Date).getTime(),d=new Worker(a);d.onmessage=function(f){THREE.Loader.prototype.createModel(f.data,e,b)};d.postMessage(c)},createModel:function(b,d,a){var c=function(f){var r=this;THREE.Geometry.call(this);s();m();o();i();this.computeCentroids();this.computeNormals();function m(){var u,t,v;for(u=0,t=b.vertices.length;u65535){g[n].counter+=1;d=g[n].hash+"_"+g[n].counter;if(this.materialFaceGroup[d]==undefined){this.materialFaceGroup[d]={faces:[],material:h,vertices:0}}}this.materialFaceGroup[d].faces.push(e);this.materialFaceGroup[d].vertices+=j}};THREE.Mesh.prototype.normalizeUVs=function(){var e,a,b,d,c;for(e=0,a=this.geometry.uvs.length;e=0?(b*255)<<24:4278190080)|c)};THREE.LineColorMaterial.prototype={toString:function(){return"THREE.LineColorMaterial ( color: "+this.color+", lineWidth: "+this.lineWidth+" )"}};THREE.MeshPhongMaterial=function(d,a,e,c,b){this.ambient=new THREE.Color((b>=0?(b*255)<<24:4278190080)|d);this.diffuse=new THREE.Color((b>=0?(b*255)<<24:4278190080)|a);this.specular=new THREE.Color((b>=0?(b*255)<<24:4278190080)|e);this.shininess=c;this.opacity=b;this.toString=function(){return"THREE.MeshPhongMaterial (
ambient: "+this.ambient+",
diffuse: "+this.diffuse+",
specular: "+this.specular+",
shininess: "+this.shininess+",
opacity: "+this.opacity+")"}};THREE.MeshBitmapMaterial=function(a,b){this.bitmap=a;this.mode=b||THREE.MeshBitmapMaterialMode.UVMAPPING;this.id=THREE.MeshBitmapMaterialCounter.value++;this.toString=function(){return"THREE.MeshBitmapMaterial ( bitmap: "+this.bitmap+", mode: "+this.mode+", id: "+this.id+" )"}};THREE.MeshBitmapMaterialCounter={value:0};THREE.MeshBitmapMaterialMode={UVMAPPING:0};THREE.MeshColorFillMaterial=function(b,a){this.color=new THREE.Color((a>=0?(a*255)<<24:4278190080)|b);this.toString=function(){return"THREE.MeshColorFillMaterial ( color: "+this.color+" )"}};THREE.MeshColorStrokeMaterial=function(c,b,a){this.lineWidth=a||1;this.color=new THREE.Color((b>=0?(b*255)<<24:4278190080)|c);this.toString=function(){return"THREE.MeshColorStrokeMaterial ( lineWidth: "+this.lineWidth+", color: "+this.color+" )"}};THREE.MeshFaceMaterial=function(){this.toString=function(){return"THREE.MeshFaceMaterial"}};THREE.ParticleBitmapMaterial=function(a){this.bitmap=a;this.offset=new THREE.Vector2();this.toString=function(){return"THREE.ParticleBitmapMaterial ( bitmap: "+this.bitmap+" )"}};THREE.ParticleCircleMaterial=function(b,a){this.color=new THREE.Color((a>=0?(a*255)<<24:4278190080)|b);this.toString=function(){return"THREE.ParticleCircleMaterial ( color: "+this.color+" )"}};THREE.ParticleDOMMaterial=function(a){this.domElement=a;this.toString=function(){return"THREE.ParticleDOMMaterial ( domElement: "+this.domElement+" )"}};THREE.Scene=function(){this.objects=[];this.lights=[];this.addObject=function(a){this.objects.push(a)};this.removeObject=function(b){for(var c=0,a=this.objects.length;c0&&u.z<1}w=L.geometry.faces;for(I=0,B=w.length;I0&&u.z<1;if(D>0){C=L.geometry.vertices[D-1];if(H.__visible&&C.__visible){k=i[m]=i[m]||new THREE.RenderableLine();k.v1.copy(H.positionScreen);k.v2.copy(C.positionScreen);k.z=Math.max(H.positionScreen.z,C.positionScreen.z);k.material=L.material;e.push(k);m++}}}}else{if(L instanceof THREE.Particle){g.set(L.position.x,L.position.y,L.position.z,1);G.matrix.transform(g);G.projectionMatrix.transform(g);L.screen.set(g.x/g.w,g.y/g.w,g.z/g.w);if(L.screen.z>0&&L.screen.z<1){j=a[h]=a[h]||new THREE.RenderableParticle();j.x=L.screen.x;j.y=L.screen.y;j.z=L.screen.z;j.rotation=L.rotation.z;j.scale.x=L.scale.x*Math.abs(g.x/g.w-(g.x+G.projectionMatrix.n11)/(g.w+G.projectionMatrix.n14));j.scale.y=L.scale.y*Math.abs(g.y/g.w-(g.y+G.projectionMatrix.n22)/(g.w+G.projectionMatrix.n24));j.material=L.material;j.color=L.color;e.push(j);h++}}}}}e.sort(function(M,v){return v.z-M.z});return e};this.unprojectVector=function(q,t){var s=q.clone(),r=new THREE.Matrix4();r.multiply(THREE.Matrix4.makeInvert(t.matrix),THREE.Matrix4.makeInvert(t.projectionMatrix));r.transform(s);return s}};THREE.DOMRenderer=function(){THREE.Renderer.call(this);var e=null,g=new THREE.Projector(),b=document.createElement("div"),a,c,f,d;this.domElement=b;this.setSize=function(i,h){a=i;c=h;f=a/2;d=c/2};this.render=function(p,r){var q,h,i,n,o,s,l,k,j;e=g.projectScene(p,r);for(q=0,h=e.length;q0;if(l){B(ac,f)}for(ab=0,K=A.length;ab0){J.r+=H.color.r*K;J.g+=H.color.g*K;J.b+=H.color.b*K}}else{if(H instanceof THREE.PointLight){h.sub(H.position,L.centroidWorld);h.normalize();K=L.normalWorld.dot(h)*H.intensity;if(K>0){J.r+=H.color.r*K;J.g+=H.color.g*K;J.b+=H.color.b*K}}}}}function m(J,I,M,P,O){var H,U,S,R,N,L,Q,T,K;if(P instanceof THREE.ParticleCircleMaterial){if(l){x.copyRGB(f);u(O,M,x);o.copyRGBA(P.color);o.multiplySelfRGB(x);o.updateStyleString()}else{o=P.color}H=M.scale.x*k;U=M.scale.y*p;z.set(J-H,I-U,J+H,I+U);if(!D.instersects(z)){return}t.save();t.translate(J,I);t.rotate(-M.rotation);t.scale(H,U);t.beginPath();t.arc(0,0,1,0,y,true);t.closePath();t.fillStyle=o.__styleString;t.fill();t.restore()}else{if(P instanceof THREE.ParticleBitmapMaterial){Q=P.bitmap;T=Q.width/2;K=Q.height/2;S=M.scale.x*k;R=M.scale.y*p;H=S*T;U=R*K;N=P.offset.x*S;L=P.offset.y*R;z.set(J+N-H,I+L-U,J+N+H,I+L+U);if(!D.instersects(z)){return}t.save();t.translate(J,I);t.rotate(-M.rotation);t.scale(S,-R);t.translate(-T+P.offset.x,-K-P.offset.y);t.drawImage(Q,0,0);t.restore();t.beginPath();t.moveTo(J-10,I);t.lineTo(J+10,I);t.moveTo(J,I-10);t.lineTo(J,I+10);t.closePath();t.strokeStyle="rgb(255,255,0)";t.stroke()}}}function e(H,N,J,I,K,L,M){if(L instanceof THREE.LineColorMaterial){if(l){x.copyRGB(f);u(M,K,x);o.copyRGBA(L.color);o.multiplySelfRGB(x);o.updateStyleString()}else{o=L.color}t.lineWidth=L.lineWidth;t.lineJoin="round";t.lineCap="round";t.strokeStyle=o.__styleString;t.stroke();z.inflate(t.lineWidth)}}function i(J,I,H,S,P,O,L,N,M){var Q,R,K;if(N instanceof THREE.MeshColorFillMaterial){if(l){x.copyRGB(f);a(M,L,x);o.copyRGBA(N.color);o.multiplySelfRGB(x);o.updateStyleString()}else{o=N.color}t.beginPath();t.moveTo(J,I);t.lineTo(H,S);t.lineTo(P,O);t.lineTo(J,I);t.closePath();t.fillStyle=o.__styleString;t.fill()}else{if(N instanceof THREE.MeshColorStrokeMaterial){if(l){x.copyRGB(f);a(M,L,x);o.copyRGBA(N.color);o.multiplySelfRGB(x);o.updateStyleString()}else{o=N.color}t.beginPath();t.moveTo(J,I);t.lineTo(H,S);t.lineTo(P,O);t.lineTo(J,I);t.closePath();t.lineWidth=N.lineWidth;t.lineJoin="round";t.lineCap="round";t.strokeStyle=o.__styleString;t.stroke();z.inflate(t.lineWidth)}else{if(N instanceof THREE.MeshBitmapMaterial){Q=N.bitmap;R=Q.width-1;K=Q.height-1;if(!L.uvs[0]||!L.uvs[1]||!L.uvs[2]){t.beginPath();t.moveTo(J,I);t.lineTo(H,S);t.lineTo(P,O);t.lineTo(J,I);t.closePath();t.fillStyle="rgb(0, 255, 0)";t.fill();return}G.copy(L.uvs[0]);F.copy(L.uvs[1]);E.copy(L.uvs[2]);G.u*=R;G.v*=K;F.u*=R;F.v*=K;E.u*=R;E.v*=K;w(Q,J,I,H,S,P,O,G.u,G.v,F.u,F.v,E.u,E.v)}}}}function g(N,M,V,T,I,H,P,O,W,U,K,J,L,R,X){var Y,Q,S;if(R instanceof THREE.MeshColorFillMaterial){if(l){x.copyRGB(f);a(X,L,x);o.copyRGBA(R.color);o.multiplySelfRGB(x);o.updateStyleString()}else{o=R.color}t.beginPath();t.moveTo(N,M);t.lineTo(V,T);t.lineTo(I,H);t.lineTo(P,O);t.lineTo(N,M);t.closePath();t.fillStyle=o.__styleString;t.fill()}else{if(R instanceof THREE.MeshColorStrokeMaterial){if(l){x.copyRGB(f);a(X,L,x);o.copyRGBA(R.color);o.multiplySelfRGB(x);o.updateStyleString()}else{o=R.color}t.beginPath();t.moveTo(N,M);t.lineTo(V,T);t.lineTo(I,H);t.lineTo(P,O);t.lineTo(N,M);t.closePath();t.lineWidth=R.lineWidth;t.lineJoin="round";t.lineCap="round";t.strokeStyle=o.__styleString;t.stroke();z.inflate(t.lineWidth)}else{if(R instanceof THREE.MeshBitmapMaterial){Y=R.bitmap;Q=Y.width-1;S=Y.height-1;if(!L.uvs[0]||!L.uvs[1]||!L.uvs[2]||!L.uvs[3]||!L.uvs[4]){t.beginPath();t.moveTo(N,M);t.lineTo(V,T);t.lineTo(I,H);t.lineTo(P,O);t.lineTo(N,M);t.closePath();t.fillStyle="rgb(255, 0, 255)";t.fill();return}G.copy(L.uvs[0]);F.copy(L.uvs[1]);E.copy(L.uvs[2]);C.copy(L.uvs[3]);G.u*=Q;G.v*=S;F.u*=Q;F.v*=S;E.u*=Q;E.v*=S;C.u*=Q;C.v*=S;w(Y,N,M,V,T,P,O,G.u,G.v,F.u,F.v,C.u,C.v);w(Y,W,U,I,H,K,J,F.u,F.v,E.u,E.v,C.u,C.v)}}}}function w(aa,P,O,V,U,J,H,T,S,X,W,L,K){var I,Z,Y,N,M,R,Q;t.beginPath();t.moveTo(P,O);t.lineTo(V,U);t.lineTo(J,H);t.lineTo(P,O);t.closePath();t.save();t.clip();I=T*(K-W)-X*K+L*W+(X-L)*S;Z=-(S*(J-V)-W*J+K*V+(W-K)*P)/I;Y=(W*H+S*(U-H)-K*U+(K-W)*O)/I;N=(T*(J-V)-X*J+L*V+(X-L)*P)/I;M=-(X*H+T*(U-H)-L*U+(L-X)*O)/I;R=(T*(K*V-W*J)+S*(X*J-L*V)+(L*W-X*K)*P)/I;Q=(T*(K*U-W*H)+S*(X*H-L*U)+(L*W-X*K)*O)/I;t.transform(Z,Y,N,M,R,Q);t.drawImage(aa,0,0);t.restore()}function c(I,H){j.sub(H,I);j.unit();j.multiplyScalar(0.75);H.addSelf(j);I.subSelf(j)}};THREE.SVGRenderer=function(){var x=null,r=new THREE.Projector(),t=document.createElementNS("http://www.w3.org/2000/svg","svg"),b,o,p,s,z=new THREE.Rectangle(),w=new THREE.Rectangle(),i=false,k=new THREE.Color(4294967295),v=new THREE.Color(4294967295),c=new THREE.Color(4294967295),g=new THREE.Vector3(),d=[],l=[],B,n,f,A=1;this.domElement=t;this.autoClear=true;this.setQuality=function(C){switch(C){case"high":A=1;break;case"low":A=0;break}};this.setSize=function(D,C){b=D;o=C;p=b/2;s=o/2;t.setAttribute("viewBox",(-p)+" "+(-s)+" "+b+" "+o);t.setAttribute("width",b);t.setAttribute("height",o);z.set(-p,-s,p,s)};this.clear=function(){while(t.childNodes.length>0){t.removeChild(t.childNodes[0])}};this.render=function(T,Q){var S,E,N,R,J,G,F,M,K,H,P,O,D,C,L,I;if(this.autoClear){this.clear()}x=r.projectScene(T,Q);n=0;f=0;i=T.lights.length>0;if(i){y(T,c)}for(S=0,E=x.length;S0){E.r+=C.color.r*F;E.g+=C.color.g*F;E.b+=C.color.b*F}}else{if(C instanceof THREE.PointLight){g.sub(C.position,G.centroidWorld);g.normalize();F=G.normalWorld.dot(g)*C.intensity;if(F>0){E.r+=C.color.r*F;E.g+=C.color.g*F;E.b+=C.color.b*F}}}}}function j(C,G,D,E,F){B=u(f++);B.setAttribute("cx",C);B.setAttribute("cy",G);B.setAttribute("r",D.scale.x*p);if(E instanceof THREE.ParticleCircleMaterial){if(i){v.copyRGB(c);q(F,D,v);k.copyRGBA(E.color);k.multiplySelfRGB(v);k.updateStyleString()}else{k=E.color}B.setAttribute("style","fill: "+k.__styleString)}t.appendChild(B)}function h(E,D,C,K,J,I,F,H,G){B=m(n++);B.setAttribute("d","M "+E+" "+D+" L "+C+" "+K+" L "+J+","+I+"z");if(H instanceof THREE.MeshColorFillMaterial){if(i){v.copyRGB(c);a(G,F,v);k.copyRGBA(H.color);k.multiplySelfRGB(v);k.updateStyleString()}else{k=H.color}B.setAttribute("style","fill: "+k.__styleString)}else{if(H instanceof THREE.MeshColorStrokeMaterial){if(i){v.copyRGB(c);a(G,F,v);k.copyRGBA(H.color);k.multiplySelfRGB(v);k.updateStyleString()}else{k=H.color}B.setAttribute("style","fill: none; stroke: "+k.__styleString+"; stroke-width: "+H.lineWidth+"; stroke-linecap: round; stroke-linejoin: round")}}t.appendChild(B)}function e(G,E,C,M,L,K,F,D,H,J,I){B=m(n++);B.setAttribute("d","M "+G+" "+E+" L "+C+" "+M+" L "+L+","+K+" L "+F+","+D+"z");if(J instanceof THREE.MeshColorFillMaterial){if(i){v.copyRGB(c);a(I,H,v);k.copyRGBA(J.color);k.multiplySelfRGB(v);k.updateStyleString()}else{k=J.color}B.setAttribute("style","fill: "+k.__styleString)}else{if(J instanceof THREE.MeshColorStrokeMaterial){if(i){v.copyRGB(c);a(I,H,v);k.copyRGBA(J.color);k.multiplySelfRGB(v);k.updateStyleString()}else{k=J.color}B.setAttribute("style","fill: none; stroke: "+k.__styleString+"; stroke-width: "+J.lineWidth+"; stroke-linecap: round; stroke-linejoin: round")}}t.appendChild(B)}function m(C){if(d[C]==null){d[C]=document.createElementNS("http://www.w3.org/2000/svg","path");if(A==0){d[C].setAttribute("shape-rendering","crispEdges")}return d[C]}return d[C]}function u(C){if(l[C]==null){l[C]=document.createElementNS("http://www.w3.org/2000/svg","circle");if(A==0){l[C].setAttribute("shape-rendering","crispEdges")}return l[C]}return l[C]}};THREE.WebGLRenderer=function(q){var h=document.createElement("canvas"),f,n,k=new THREE.Matrix4(),d,g=0,c=1,s=2,o=3,l=b(q,5);this.domElement=h;this.autoClear=true;a();i(l.directional,l.point);function b(x,y){if(x){var u,w,t,v=pointLights=maxDirLights=maxPointLights=0;for(u=0,w=x.lights.length;u= 0.0 )":"",u?"pointSpecularWeight = pow( pointDotNormalHalf, mShininess );":"",u?"pointDiffuse += mDiffuse * pointDiffuseWeight;":"",u?"pointSpecular += mSpecular * pointSpecularWeight;":"",u?"}":"",t?"vec4 dirDiffuse = vec4( 0.0, 0.0, 0.0, 0.0 );":"",t?"vec4 dirSpecular = vec4( 0.0, 0.0, 0.0, 0.0 );":"",t?"for( int i = 0; i < directionalLightNumber; i++ ) {":"",t?"vec4 lDirection = viewMatrix * vec4( directionalLightDirection[ i ], 0.0 );":"",t?"vec3 dirVector = normalize( lDirection.xyz );":"",t?"vec3 dirHalfVector = normalize( lDirection.xyz + vViewPosition );":"",t?"float dirDotNormalHalf = dot( normal, dirHalfVector );":"",t?"float dirDiffuseWeight = max( dot( normal, dirVector ), 0.0 );":"",t?"float dirSpecularWeight = 0.0;":"",t?"if ( dirDotNormalHalf >= 0.0 )":"",t?"dirSpecularWeight = pow( dirDotNormalHalf, mShininess );":"",t?"dirDiffuse += mDiffuse * dirDiffuseWeight;":"",t?"dirSpecular += mSpecular * dirSpecularWeight;":"",t?"}":"","vec4 totalLight = mAmbient;",t?"totalLight += dirDiffuse + dirSpecular;":"",u?"totalLight += pointDiffuse + pointSpecular;":"","gl_FragColor = vec4( totalLight.xyz * vLightWeighting, 1.0 );","} else if ( material == 2 ) {","vec4 texelColor = texture2D( tDiffuse, vUv );","gl_FragColor = vec4( texelColor.rgb * vLightWeighting, texelColor.a );","} else if ( material == 1 ) {","gl_FragColor = vec4( mColor.rgb * vLightWeighting, mColor.a );","} else {","gl_FragColor = vec4( mColor.rgb * vLightWeighting, mColor.a );","}","}"];return v.join("\n")}function j(t,u){var v=[t?"#define MAX_DIR_LIGHTS "+t:"",u?"#define MAX_POINT_LIGHTS "+u:"","attribute vec3 position;","attribute vec3 normal;","attribute vec2 uv;","uniform vec3 cameraPosition;","uniform bool enableLighting;","uniform int pointLightNumber;","uniform int directionalLightNumber;","uniform vec3 ambientLightColor;",t?"uniform vec3 directionalLightColor[ MAX_DIR_LIGHTS ];":"",t?"uniform vec3 directionalLightDirection[ MAX_DIR_LIGHTS ];":"",u?"uniform vec3 pointLightColor[ MAX_POINT_LIGHTS ];":"",u?"uniform vec3 pointLightPosition[ MAX_POINT_LIGHTS ];":"","uniform mat4 objMatrix;","uniform mat4 viewMatrix;","uniform mat4 modelViewMatrix;","uniform mat4 projectionMatrix;","uniform mat3 normalMatrix;","varying vec3 vNormal;","varying vec2 vUv;","varying vec3 vLightWeighting;",u?"varying vec3 vPointLightVector[ MAX_POINT_LIGHTS ];":"","varying vec3 vViewPosition;","void main(void) {","vec4 mPosition = objMatrix * vec4( position, 1.0 );","vViewPosition = cameraPosition - mPosition.xyz;","vec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );","vec3 transformedNormal = normalize( normalMatrix * normal );","if ( !enableLighting ) {","vLightWeighting = vec3( 1.0, 1.0, 1.0 );","} else {","vLightWeighting = ambientLightColor;",t?"for( int i = 0; i < directionalLightNumber; i++ ) {":"",t?"vec4 lDirection = viewMatrix * vec4( directionalLightDirection[ i ], 0.0 );":"",t?"float directionalLightWeighting = max( dot( transformedNormal, normalize(lDirection.xyz ) ), 0.0 );":"",t?"vLightWeighting += directionalLightColor[ i ] * directionalLightWeighting;":"",t?"}":"",u?"for( int i = 0; i < pointLightNumber; i++ ) {":"",u?"vec4 lPosition = viewMatrix * vec4( pointLightPosition[ i ], 1.0 );":"",u?"vPointLightVector[ i ] = normalize( lPosition.xyz - mvPosition.xyz );":"",u?"float pointLightWeighting = max( dot( transformedNormal, vPointLightVector[ i ] ), 0.0 );":"",u?"vLightWeighting += pointLightColor[ i ] * pointLightWeighting;":"",u?"}":"","}","vNormal = transformedNormal;","vUv = uv;","gl_Position = projectionMatrix * mvPosition;","}"];return v.join("\n")}function i(t,u){n=f.createProgram();f.attachShader(n,r("fragment",p(t,u)));f.attachShader(n,r("vertex",j(t,u)));f.linkProgram(n);if(!f.getProgramParameter(n,f.LINK_STATUS)){alert("Could not initialise shaders")}f.useProgram(n);n.viewMatrix=f.getUniformLocation(n,"viewMatrix");n.modelViewMatrix=f.getUniformLocation(n,"modelViewMatrix");n.projectionMatrix=f.getUniformLocation(n,"projectionMatrix");n.normalMatrix=f.getUniformLocation(n,"normalMatrix");n.objMatrix=f.getUniformLocation(n,"objMatrix");n.cameraPosition=f.getUniformLocation(n,"cameraPosition");n.enableLighting=f.getUniformLocation(n,"enableLighting");n.ambientLightColor=f.getUniformLocation(n,"ambientLightColor");if(t){n.directionalLightNumber=f.getUniformLocation(n,"directionalLightNumber");n.directionalLightColor=f.getUniformLocation(n,"directionalLightColor");n.directionalLightDirection=f.getUniformLocation(n,"directionalLightDirection")}if(u){n.pointLightNumber=f.getUniformLocation(n,"pointLightNumber");n.pointLightColor=f.getUniformLocation(n,"pointLightColor");n.pointLightPosition=f.getUniformLocation(n,"pointLightPosition")}n.material=f.getUniformLocation(n,"material");n.mColor=f.getUniformLocation(n,"mColor");n.mAmbient=f.getUniformLocation(n,"mAmbient");n.mDiffuse=f.getUniformLocation(n,"mDiffuse");n.mSpecular=f.getUniformLocation(n,"mSpecular");n.mShininess=f.getUniformLocation(n,"mShininess");n.tDiffuse=f.getUniformLocation(n,"tDiffuse");f.uniform1i(n.tDiffuse,0);n.position=f.getAttribLocation(n,"position");f.enableVertexAttribArray(n.position);n.normal=f.getAttribLocation(n,"normal");f.enableVertexAttribArray(n.normal);n.uv=f.getAttribLocation(n,"uv");f.enableVertexAttribArray(n.uv);n.viewMatrixArray=new Float32Array(16);n.modelViewMatrixArray=new Float32Array(16);n.projectionMatrixArray=new Float32Array(16)}function r(u,t){var v;if(u=="fragment"){v=f.createShader(f.FRAGMENT_SHADER)}else{if(u=="vertex"){v=f.createShader(f.VERTEX_SHADER)}}f.shaderSource(v,t);f.compileShader(v);if(!f.getShaderParameter(v,f.COMPILE_STATUS)){alert(f.getShaderInfoLog(v));return null}return v}function e(){var t={MAX_VARYING_VECTORS:f.getParameter(f.MAX_VARYING_VECTORS),MAX_VERTEX_ATTRIBS:f.getParameter(f.MAX_VERTEX_ATTRIBS),MAX_TEXTURE_IMAGE_UNITS:f.getParameter(f.MAX_TEXTURE_IMAGE_UNITS),MAX_VERTEX_TEXTURE_IMAGE_UNITS:f.getParameter(f.MAX_VERTEX_TEXTURE_IMAGE_UNITS),MAX_COMBINED_TEXTURE_IMAGE_UNITS:f.getParameter(f.MAX_COMBINED_TEXTURE_IMAGE_UNITS),MAX_VERTEX_UNIFORM_VECTORS:f.getParameter(f.MAX_VERTEX_UNIFORM_VECTORS),MAX_FRAGMENT_UNIFORM_VECTORS:f.getParameter(f.MAX_FRAGMENT_UNIFORM_VECTORS)};return t}function m(u){var t,v="";for(t in u){v+=t+": "+u[t]+"\n"}return v}};THREE.RenderableFace3=function(){this.v1=new THREE.Vector2();this.v2=new THREE.Vector2();this.v3=new THREE.Vector2();this.centroidWorld=new THREE.Vector3();this.centroidScreen=new THREE.Vector3();this.normalWorld=new THREE.Vector3();this.z=null;this.color=null;this.material=null};THREE.RenderableFace4=function(){this.v1=new THREE.Vector2();this.v2=new THREE.Vector2();this.v3=new THREE.Vector2();this.v4=new THREE.Vector2();this.centroidWorld=new THREE.Vector3();this.centroidScreen=new THREE.Vector3();this.normalWorld=new THREE.Vector3();this.z=null;this.color=null;this.material=null};THREE.RenderableParticle=function(){this.x=null;this.y=null;this.z=null;this.rotation=null;this.scale=new THREE.Vector2();this.color=null;this.material=null};THREE.RenderableLine=function(){this.v1=new THREE.Vector2();this.v2=new THREE.Vector2();this.z=null;this.color=null;this.material=null}; \ No newline at end of file diff --git a/examples/large_mesh_test.html b/examples/large_mesh_test.html index 806f59258a7e7f54b91a1b500f7bf850d7edfb3b..0f26b29e401abf2d6539df514cc25623e17c3089 100644 --- a/examples/large_mesh_test.html +++ b/examples/large_mesh_test.html @@ -63,6 +63,7 @@ + @@ -88,6 +89,7 @@ + --> @@ -107,7 +109,7 @@ var scene; var canvasRenderer, webglRenderer; - var mesh, zmesh, lightMesh, geometry; + var mesh, zmesh, lightMesh; var directionalLight, pointLight; @@ -217,36 +219,28 @@ bcanvas.addEventListener("click", toggleCanvas, false); bwebgl.addEventListener("click", toggleWebGL, false); - function createModel() { - - geometry = new Lucy100k( ); - - addMesh( geometry, 0.75, 900, 0, 0, 0,0,0, new THREE.MeshPhongMaterial( 0x030303, 0x030303, 0x990000, 30, 1.0 ) ); - addMesh( geometry, 0.75, 300, 0, 0, 0,0,0, new THREE.MeshFaceMaterial( ) ); - addMesh( geometry, 0.75, -300, 0, 0, 0,0,0, new THREE.MeshPhongMaterial( 0x030303, 0x111111, 0xffaa00, 10, 1.0 ) ); - addMesh( geometry, 0.75, -900, 0, 0, 0,0,0, new THREE.MeshPhongMaterial( 0x030303, 0x555555, 0x666666, 10, 1.0 ) ); - - /* - log( "geometry.vertices: " + geometry.vertices.length ); - log( "geometry.faces: " + geometry.faces.length ); - */ - - } - - loadAsync( "obj/lucy/Lucy100k.js", createModel ); + var s = (new Date).getTime(); + + var loader = new THREE.Loader(); + //loader.loadAsync( "obj/lucy/Lucy100k.js", function() { createScene( new Lucy100k(), s ) } ); + loader.loadWorker( 'obj/lucy/Lucy100k_slim.js', function( geometry ) { createScene( geometry, s ) } ); + } - - function loadAsync( url, callback ) { + + function createScene( geometry, start ) { - var el = document.createElement( 'script' ); - el.type = 'text/javascript'; - el.onload = callback; - el.src = url; - document.getElementsByTagName("head")[0].appendChild(el); + addMesh( geometry, 0.75, 900, 0, 0, 0,0,0, new THREE.MeshPhongMaterial( 0x030303, 0x030303, 0x990000, 30, 1.0 ) ); + addMesh( geometry, 0.75, 300, 0, 0, 0,0,0, new THREE.MeshFaceMaterial( ) ); + addMesh( geometry, 0.75, -300, 0, 0, 0,0,0, new THREE.MeshPhongMaterial( 0x030303, 0x111111, 0xffaa00, 10, 1.0 ) ); + addMesh( geometry, 0.75, -900, 0, 0, 0,0,0, new THREE.MeshPhongMaterial( 0x030303, 0x555555, 0x666666, 10, 1.0 ) ); + + log( "geometry.vertices: " + geometry.vertices.length ); + log( "geometry.faces: " + geometry.faces.length ); + log( "model loaded and created in " + ((new Date).getTime() - start) + " ms" ); + } - function onDocumentMouseMove(event) { diff --git a/examples/lights_pointlights_gl.html b/examples/lights_pointlights_gl.html index 5221aacb400fe9cd15e95aeaab1cbfa874d629d4..10e117f2902c5050b40424ce062d41604c9c6678 100644 --- a/examples/lights_pointlights_gl.html +++ b/examples/lights_pointlights_gl.html @@ -38,10 +38,10 @@ Walt Disney head by David OReilly - - + --> + @@ -56,6 +56,7 @@ + @@ -81,12 +82,11 @@ - - + --> - + + @@ -211,34 +212,24 @@ bcanvas.addEventListener("click", toggleCanvas, false); bwebgl.addEventListener("click", toggleWebGL, false); - function createModel() { - - // MESH - - geometry = new Torus( ); - zmesh = new THREE.Mesh( geometry, new THREE.MeshColorFillMaterial( 0xffffff ) ); - zmesh.position.x = 0; - zmesh.position.z = 0; - zmesh.position.y = 0; - zmesh.scale.x = zmesh.scale.y = zmesh.scale.z = 100; - zmesh.overdraw = true; - zmesh.updateMatrix(); - scene.addObject(zmesh); - - } - loadAsync( "obj/torus/Torus.js", createModel); + var loader = new THREE.Loader(); + loader.loadAsync( "obj/torus/Torus.js", function() { createScene( new Torus() ) } ); + //loader.loadWorker( "obj/torus/Torus_slim.js", function( geometry ) { createScene( geometry ) } ); } - function loadAsync( url, callback ) { + function createScene( geometry ) { + + zmesh = new THREE.Mesh( geometry, new THREE.MeshColorFillMaterial( 0xffffff ) ); + zmesh.position.x = 0; + zmesh.position.z = 0; + zmesh.position.y = 0; + zmesh.scale.x = zmesh.scale.y = zmesh.scale.z = 100; + zmesh.overdraw = true; + zmesh.updateMatrix(); + scene.addObject(zmesh); - var el = document.createElement( 'script' ); - el.type = 'text/javascript'; - el.onload = callback; - el.src = url; - document.getElementsByTagName("head")[0].appendChild(el); - } diff --git a/examples/materials_test.html b/examples/materials_test.html index 0fb12cdfe053f69ee6434d145dc7e68186a7c5bb..7e76e93f6baa19313a11069b8b862785ec2bae1f 100644 --- a/examples/materials_test.html +++ b/examples/materials_test.html @@ -6,46 +6,47 @@ - -
-

Multi-materials test

- - 2d canvas renderer - WebGL renderer -
- -

Model by Reallusion iClone - -

Using a modified version of Three.js by mrdoob. - -
-

Best viewed in Chrome 7/8 or Firefox 4 using WebGL renderer. -

Canvas renderer is very slow on anything other than Chrome. -

Line width is not set properly on Chrome in Windows. -

- -
+ +
+

Multi-materials test

+ + 2d canvas renderer + WebGL renderer +
+ +

Model by Reallusion iClone + +

Using a modified version of Three.js by mrdoob. + +
+

Best viewed in Chrome 8/9 or Firefox 4 using WebGL renderer. +

Canvas renderer is very slow on anything other than Chrome. +

Line width is not set properly on Chrome in Windows. +

+ +
+ + --> + + --> @@ -107,248 +108,234 @@ var canvasRenderer, webglRenderer; var mesh, zmesh, geometry; - - var directionalLight, pointLight; - + + var directionalLight, pointLight; + var mouseX = 0; var mouseY = 0; var windowHalfX = window.innerWidth >> 1; var windowHalfY = window.innerHeight >> 1; - var render_canvas = 1, render_gl = 1; - var has_gl = 0; - - var bcanvas = document.getElementById("rcanvas"); - var bwebgl = document.getElementById("rwebgl"); - + var render_canvas = 1, render_gl = 1; + var has_gl = 0; + + var bcanvas = document.getElementById("rcanvas"); + var bwebgl = document.getElementById("rwebgl"); + document.addEventListener('mousemove', onDocumentMouseMove, false); init(); - + loop(); - - //render_canvas = !has_gl; - bwebgl.style.display = has_gl ? "inline" : "none"; - bcanvas.className = render_canvas ? "button" : "button inactive"; - + + //render_canvas = !has_gl; + bwebgl.style.display = has_gl ? "inline" : "none"; + bcanvas.className = render_canvas ? "button" : "button inactive"; + setInterval(loop, 1000/60); - + function init() { container = document.createElement('div'); document.body.appendChild(container); camera = new THREE.Camera( 75, SCREEN_WIDTH / SCREEN_HEIGHT, 1, 100000 ); - camera.position.z = 500; - camera.updateMatrix(); + camera.position.z = 500; + camera.updateMatrix(); scene = new THREE.Scene(); - - // SPHERES - - sphere = new Sphere( 100, 16, 8, 1 ); - for (var i=0; i<10; i++) { - //mesh = new THREE.Mesh( sphere, new THREE.MeshColorFillMaterial( 0xffffff ) ); - mesh = new THREE.Mesh( sphere, [ new THREE.MeshColorFillMaterial( 0xffffff ), new THREE.MeshColorStrokeMaterial( 0x000000, 1, 1.5 ) ] ); - //mesh = new THREE.Mesh( sphere, new THREE.MeshColorStrokeMaterial( 0x00aa00, 1, 1.5 ) ); - //mesh = new THREE.Mesh( sphere, new THREE.MeshFaceColorStrokeMaterial( 2.5 ) ); - mesh.position.x = 500 * (Math.random() - 0.5); - mesh.position.y = 500 * (Math.random() - 0.5); - mesh.position.z = 500 * (Math.random() - 0.5); - mesh.scale.x = mesh.scale.y = mesh.scale.z = 0.25 * (Math.random() + 0.5); - //mesh.doubleSided = true; - mesh.overdraw = true; - mesh.updateMatrix(); - scene.addObject(mesh); - } - + + // SPHERES + + sphere = new Sphere( 100, 16, 8, 1 ); + for (var i=0; i<10; i++) { + //mesh = new THREE.Mesh( sphere, new THREE.MeshColorFillMaterial( 0xffffff ) ); + mesh = new THREE.Mesh( sphere, [ new THREE.MeshColorFillMaterial( 0xffffff ), new THREE.MeshColorStrokeMaterial( 0x000000, 1, 1.5 ) ] ); + //mesh = new THREE.Mesh( sphere, new THREE.MeshColorStrokeMaterial( 0x00aa00, 1, 1.5 ) ); + //mesh = new THREE.Mesh( sphere, new THREE.MeshFaceColorStrokeMaterial( 2.5 ) ); + mesh.position.x = 500 * (Math.random() - 0.5); + mesh.position.y = 500 * (Math.random() - 0.5); + mesh.position.z = 500 * (Math.random() - 0.5); + mesh.scale.x = mesh.scale.y = mesh.scale.z = 0.25 * (Math.random() + 0.5); + //mesh.doubleSided = true; + mesh.overdraw = true; + mesh.updateMatrix(); + scene.addObject(mesh); + } + // LIGHTS - var ambient = new THREE.AmbientLight( 0x101010 ); + var ambient = new THREE.AmbientLight( 0x101010 ); scene.addLight( ambient ); - directionalLight = new THREE.DirectionalLight( 0xffffff ); - directionalLight.position.y = -70; - directionalLight.position.z = 100; + directionalLight = new THREE.DirectionalLight( 0xffffff ); + directionalLight.position.y = -70; + directionalLight.position.z = 100; directionalLight.position.normalize(); scene.addLight( directionalLight ); pointLight = new THREE.PointLight( 0xffaa00 ); - pointLight.position.x = 0; - pointLight.position.y = 0; - pointLight.position.z = 120; + pointLight.position.x = 0; + pointLight.position.y = 0; + pointLight.position.z = 120; //scene.addLight( pointLight ); - - mesh = new THREE.Mesh( sphere, new THREE.MeshColorFillMaterial( 0xff0000 ) ); - mesh.scale.x = mesh.scale.y = mesh.scale.z = 0.1; - mesh.position = pointLight.position; - mesh.updateMatrix(); - scene.addObject(mesh); - - - if( render_canvas ) { - canvasRenderer = new THREE.CanvasRenderer(); - canvasRenderer.setSize( SCREEN_WIDTH, SCREEN_HEIGHT ); - container.appendChild( canvasRenderer.domElement ); - } - - if ( render_gl ) { - try { - webglRenderer = new THREE.WebGLRenderer(); - webglRenderer.setSize( SCREEN_WIDTH, SCREEN_HEIGHT ); - container.appendChild( webglRenderer.domElement ); - has_gl = 1; - } - catch (e) { - } - } + mesh = new THREE.Mesh( sphere, new THREE.MeshColorFillMaterial( 0xff0000 ) ); + mesh.scale.x = mesh.scale.y = mesh.scale.z = 0.1; + mesh.position = pointLight.position; + mesh.updateMatrix(); + scene.addObject(mesh); + + if( render_canvas ) { + canvasRenderer = new THREE.CanvasRenderer(); + canvasRenderer.setSize( SCREEN_WIDTH, SCREEN_HEIGHT ); + container.appendChild( canvasRenderer.domElement ); + } + + if ( render_gl ) { + try { + webglRenderer = new THREE.WebGLRenderer(); + webglRenderer.setSize( SCREEN_WIDTH, SCREEN_HEIGHT ); + container.appendChild( webglRenderer.domElement ); + has_gl = 1; + } + catch (e) { + } + } stats = new Stats(); stats.domElement.style.position = 'absolute'; stats.domElement.style.top = '0px'; - stats.domElement.style.zIndex = 100; + stats.domElement.style.zIndex = 100; container.appendChild( stats.domElement ); - - bcanvas.addEventListener("click", toggleCanvas, false); - bwebgl.addEventListener("click", toggleWebGL, false); - - function createModel2() { - - // MESH - - geometry = new Female02( "obj/female02" ); - - // PROCEDURAL TEXTURES (decals) - - var x1 = document.createElement( "canvas" ); - var xc1 = x1.getContext("2d"); - x1.width = x1.height = 256; - - xc1.shadowBlur = 3; - xc1.shadowColor = "#000"; - xc1.font = "7pt arial"; - xc1.fillStyle = "hsla("+0+",90%,50%,1);" - xc1.fillText("Three", 57, 29); - - xc1.fillStyle = "hsla("+0+",90%,50%,0.15);" - xc1.fillRect(40, 70, 60, 50); - - for(var i=0;i<500;i++) { - xc1.fillStyle = "hsla("+60*Math.random()+",90%,50%,0.5);" - xc1.fillRect(40+60*Math.random(), 118+10*Math.random(), 2, 10); - } - - var x2 = document.createElement( "canvas" ); - var xc2 = x2.getContext("2d"); - x2.width = x2.height = 128; - xc2.fillStyle = "rgba(0,0,0,0.5)"; - for(var i=0;i<14;i++) { - xc2.fillRect(0, 5+i*4, 54, 2); - xc2.fillRect(i*4, 5, 2, 54); - } - - var xm1 = new THREE.MeshBitmapMaterial( x1 ); - xm1.loaded = 1; // this is procedurally generated texture - - var xm2 = new THREE.MeshBitmapMaterial( x2 ); - xm2.loaded = 1; // this is procedurally generated texture - - geometry.materials[0].push ( xm1 ); // goes to faces with material 0 - geometry.materials[1].push ( xm2 ); // goes to faces with material 1 - - geometry.materials[4].push ( new THREE.MeshColorFillMaterial(0xff0000, 0.5) ); - - var materials = [ new THREE.MeshFaceMaterial() ]; - - // full-mesh wireframe overlay - //materials.push( new THREE.MeshColorStrokeMaterial(0xff0000, 1, 1.5) ); - - // full-mesh color overlay - //materials.push( new THREE.MeshColorFillMaterial(0xff0000, 0.5) ); - - zmesh = new THREE.Mesh( geometry, materials, 1 ); - zmesh.position.x = -80; - zmesh.position.z = 50; - zmesh.position.y = FLOOR; - zmesh.scale.x = zmesh.scale.y = zmesh.scale.z = 3; - zmesh.overdraw = true; - zmesh.updateMatrix(); - scene.addObject(zmesh); - - // PLANES with all materials from the model - - createMaterialsPalette( geometry.materials, 100, 0 ); - } - - loadAsync( "obj/female02/female02.js", createModel2); + + bcanvas.addEventListener("click", toggleCanvas, false); + bwebgl.addEventListener("click", toggleWebGL, false); + + var loader = new THREE.Loader(); + loader.loadAsync( "obj/female02/female02.js", function() { createScene( new Female02( "obj/female02" ) ) } ); + //loader.loadWorker( "obj/female02/Female02_slim.js", function( geometry ) { createScene( geometry) }, "obj/female02" ); } - function loadAsync( url, callback ) { - - var el = document.createElement( 'script' ); - el.type = 'text/javascript'; - el.onload = callback; - el.src = url; - document.getElementsByTagName("head")[0].appendChild(el); - - } - - function createMaterialsPalette( materials, size, bottom ) { - - for ( var i=0; i" + e.innerHTML; - - } - - function toggleCanvas() { - - render_canvas = !render_canvas; - bcanvas.className = render_canvas ? "button" : "button inactive"; - - render_gl = !render_canvas; - bwebgl.className = render_gl ? "button" : "button inactive"; - - if( has_gl ) - webglRenderer.domElement.style.display = render_gl ? "block" : "none"; - - canvasRenderer.domElement.style.display = render_canvas ? "block" : "none"; - - } - - function toggleWebGL() { - - render_gl = !render_gl; - bwebgl.className = render_gl ? "button" : "button inactive"; - - render_canvas = !render_gl; - bcanvas.className = render_canvas ? "button" : "button inactive"; - - if( has_gl ) - webglRenderer.domElement.style.display = render_gl ? "block" : "none"; - - canvasRenderer.domElement.style.display = render_canvas ? "block" : "none"; - - } + function log(text) { + + var e = document.getElementById("log"); + e.innerHTML = text + "
" + e.innerHTML; + + } + + function toggleCanvas() { + + render_canvas = !render_canvas; + bcanvas.className = render_canvas ? "button" : "button inactive"; + + render_gl = !render_canvas; + bwebgl.className = render_gl ? "button" : "button inactive"; + + if( has_gl ) + webglRenderer.domElement.style.display = render_gl ? "block" : "none"; + + canvasRenderer.domElement.style.display = render_canvas ? "block" : "none"; + + } + + function toggleWebGL() { + + render_gl = !render_gl; + bwebgl.className = render_gl ? "button" : "button inactive"; + + render_canvas = !render_gl; + bcanvas.className = render_canvas ? "button" : "button inactive"; + + if( has_gl ) + webglRenderer.domElement.style.display = render_gl ? "block" : "none"; + + canvasRenderer.domElement.style.display = render_canvas ? "block" : "none"; + + } diff --git a/examples/obj/female02/Female02_slim.js b/examples/obj/female02/Female02_slim.js new file mode 100644 index 0000000000000000000000000000000000000000..d23c98f36cce626ea83b57ed7c23ebf503c1fe4e --- /dev/null +++ b/examples/obj/female02/Female02_slim.js @@ -0,0 +1,106 @@ +// Converted from: ../../examples/obj/female02/female02.obj +// vertices: 3274 +// faces: 6233 +// materials: 6 +// +// Generated with OBJ -> Three.js converter +// http://github.com/alteredq/three.js/blob/master/utils/exporters/convert_obj_threejs_slim.py + + +var model = { + 'materials': [ { + "a_dbg_color" : 0xffeeeeee, + "a_dbg_index" : 0, + "a_dbg_name" : "_03_-_Default1noCulli__03_-_Default1noCulli", + "col_ambient" : [0.0, 0.0, 0.0], + "col_diffuse" : [0.64000000000000001, 0.64000000000000001, 0.64000000000000001], + "col_specular" : [0.16500000000000001, 0.16500000000000001, 0.16500000000000001], + "illumination" : 2, + "map_diffuse" : "_03_-_Default1noCulling.JPG", + "optical_density" : 1.0, + "specular_coef" : 154.901961, + "transparency" : 1.0 + }, + + { + "a_dbg_color" : 0xffee0000, + "a_dbg_index" : 1, + "a_dbg_name" : "_02_-_Default1noCulli__02_-_Default1noCulli", + "col_ambient" : [0.0, 0.0, 0.0], + "col_diffuse" : [0.64000000000000001, 0.64000000000000001, 0.64000000000000001], + "col_specular" : [0.16500000000000001, 0.16500000000000001, 0.16500000000000001], + "illumination" : 2, + "map_diffuse" : "_02_-_Default1noCulling.JPG", + "optical_density" : 1.0, + "specular_coef" : 154.901961, + "transparency" : 1.0 + }, + + { + "a_dbg_color" : 0xff00ee00, + "a_dbg_index" : 2, + "a_dbg_name" : "FrontColorNoCullingID__02_-_Default1noCulli", + "col_ambient" : [0.0, 0.0, 0.0], + "col_diffuse" : [0.80000000000000004, 0.80000000000000004, 0.80000000000000004], + "col_specular" : [0.16500000000000001, 0.16500000000000001, 0.16500000000000001], + "illumination" : 2, + "map_diffuse" : "_02_-_Default1noCulling.JPG", + "optical_density" : 1.0, + "specular_coef" : 154.901961, + "transparency" : 1.0 + }, + + { + "a_dbg_color" : 0xff0000ee, + "a_dbg_index" : 3, + "a_dbg_name" : "FrontColorNoCullingID__03_-_Default1noCulli", + "col_ambient" : [0.0, 0.0, 0.0], + "col_diffuse" : [0.80000000000000004, 0.80000000000000004, 0.80000000000000004], + "col_specular" : [0.16500000000000001, 0.16500000000000001, 0.16500000000000001], + "illumination" : 2, + "map_diffuse" : "_03_-_Default1noCulling.JPG", + "optical_density" : 1.0, + "specular_coef" : 154.901961, + "transparency" : 1.0 + }, + + { + "a_dbg_color" : 0xffeeee00, + "a_dbg_index" : 4, + "a_dbg_name" : "_01_-_Default1noCulli__01_-_Default1noCulli", + "col_ambient" : [0.0, 0.0, 0.0], + "col_diffuse" : [0.64000000000000001, 0.64000000000000001, 0.64000000000000001], + "col_specular" : [0.16500000000000001, 0.16500000000000001, 0.16500000000000001], + "illumination" : 2, + "map_diffuse" : "_01_-_Default1noCulling.JPG", + "optical_density" : 1.0, + "specular_coef" : 154.901961, + "transparency" : 1.0 + }, + + { + "a_dbg_color" : 0xff00eeee, + "a_dbg_index" : 5, + "a_dbg_name" : "FrontColorNoCullingID__01_-_Default1noCulli", + "col_ambient" : [0.0, 0.0, 0.0], + "col_diffuse" : [0.80000000000000004, 0.80000000000000004, 0.80000000000000004], + "col_specular" : [0.16500000000000001, 0.16500000000000001, 0.16500000000000001], + "illumination" : 2, + "map_diffuse" : "_01_-_Default1noCulling.JPG", + "optical_density" : 1.0, + "specular_coef" : 154.901961, + "transparency" : 1.0 + }], + + 'normals': [[0.945372,0.300211,0.126926],[0.794275,0.212683,0.569079],[0.792047,0.184729,0.581805],[0.951781,0.291086,0.096561],[0.863002,0.371380,-0.342418],[0.838313,0.329997,-0.433943],[0.638417,0.432508,-0.636647],[0.540574,0.354747,-0.762810],[0.326823,0.450911,-0.830561],[0.677389,0.266579,-0.685598],[0.927885,0.240638,-0.284768],[0.967528,0.191107,0.165349],[0.838099,0.132511,0.529130],[0.522813,0.159307,0.837397],[0.465560,0.142491,0.873440],[0.497147,0.127506,0.858211],[0.145054,0.104831,0.983825],[0.178381,0.070467,0.981414],[-0.100925,0.009674,0.994842],[0.167150,-0.021027,0.985687],[-0.038057,-0.060884,0.997406],[-0.297037,-0.083651,0.951170],[-0.296487,-0.036103,0.954344],[-0.573412,-0.019776,0.818995],[-0.641072,0.042177,0.766289],[-0.586840,0.018952,0.809442],[-0.905637,-0.044160,0.421705],[-0.887265,0.081393,0.453993],[-0.996979,0.042146,0.064852],[-0.891903,0.089084,0.443342],[-0.991882,0.126560,0.009980],[-0.932035,-0.031190,-0.360942],[-0.897183,0.072420,-0.435652],[-0.617725,-0.160161,-0.769860],[-0.533006,-0.018647,-0.845882],[-0.108921,-0.217566,-0.969939],[-0.525864,-0.190191,-0.829005],[-0.097476,-0.252571,-0.962645],[-0.558733,-0.166387,-0.812464],[-0.154546,-0.243721,-0.957427],[-0.531083,-0.200629,-0.823206],[-0.197821,-0.159368,-0.967162],[-0.252388,-0.130589,-0.958739],[-0.006287,-0.000519,-0.999969],[0.001007,0.299539,-0.954070],[0.051149,0.367077,-0.928770],[-0.097964,0.791833,-0.602802],[-0.207801,0.817560,-0.537004],[0.034394,0.470565,-0.881649],[0.113132,0.373272,-0.920774],[0.138890,0.430372,-0.891873],[0.138127,0.415845,-0.898862],[0.183599,0.466659,-0.865139],[0.368542,0.495163,-0.786737],[0.117985,0.315104,-0.941679],[0.567888,0.330546,-0.753777],[0.456252,0.033723,-0.889187],[0.887082,0.121952,-0.445174],[0.109409,-0.080966,-0.990661],[-0.242409,-0.073000,-0.967406],[-0.369243,0.388104,-0.844386],[-0.121158,0.545762,-0.829096],[-0.514573,0.764122,-0.388928],[-0.343760,0.934965,0.087313],[-0.278237,0.959899,0.033662],[-0.194769,0.815210,-0.545396],[-0.132511,0.271279,-0.953307],[-0.349834,-0.266274,-0.898160],[-0.846767,0.058992,-0.528672],[-0.925596,-0.056063,-0.374310],[-0.910154,-0.102420,-0.401379],[-0.914548,-0.099429,-0.392041],[-0.996582,-0.077212,0.029237],[-0.960601,-0.162267,0.225532],[-0.788751,-0.268990,0.552721],[-0.514603,-0.467055,0.719016],[-0.326853,-0.007477,0.945006],[-0.038759,-0.065920,0.997040],[0.208075,-0.046480,0.976989],[0.446822,0.038728,0.893765],[0.490829,0.076449,0.867855],[0.825556,0.186468,0.532579],[0.808588,0.124790,0.574938],[0.784845,0.091586,0.612842],[0.513688,0.047334,0.856655],[0.466536,-0.062532,0.882260],[0.223060,-0.041932,0.973876],[-0.056429,-0.009888,0.998352],[-0.268746,-0.376965,0.886349],[-0.144902,-0.606952,0.781396],[-0.064119,-0.583697,0.809412],[-0.076754,-0.046327,0.995941],[-0.059145,-0.145695,0.987548],[-0.384350,-0.106174,0.917051],[-0.498672,-0.602008,0.623585],[-0.768059,-0.151677,0.622120],[-0.794916,-0.468673,0.385235],[-0.986908,-0.117618,0.110294],[-0.999603,-0.001099,-0.027802],[-0.994598,-0.089297,-0.052736],[-0.864681,0.460280,-0.201056],[-0.920804,0.146062,-0.361614],[-0.990417,0.078066,0.113742],[-0.936491,0.109104,0.333232],[-0.933531,-0.208716,0.291391],[-0.623280,0.287240,0.727287],[-0.331156,0.303781,0.893307],[0.003113,0.303171,0.952910],[0.177007,0.334697,0.925535],[-0.052736,0.413923,0.908780],[-0.284555,0.379254,0.880428],[-0.127903,0.287179,0.949278],[-0.136204,-0.211768,0.967772],[-0.037690,-0.655080,0.754570],[0.125034,-0.385876,0.913999],[0.303415,-0.539354,0.785485],[0.230140,-0.726768,0.647145],[0.523606,-0.660909,0.537584],[0.543229,-0.370464,0.753410],[0.168218,-0.248512,0.953887],[0.189673,0.206000,0.959990],[0.497055,0.132878,0.857448],[0.848476,-0.097995,0.520035],[0.754997,-0.442854,0.483505],[0.888760,-0.324870,0.323283],[0.954344,-0.140110,0.263771],[0.776360,0.212439,0.593371],[0.822993,0.186468,0.536515],[0.837886,-0.486373,0.247627],[0.888089,-0.141057,0.437452],[0.563402,-0.596515,0.571581],[0.772271,-0.127506,0.622333],[0.666524,-0.038453,0.744469],[0.633320,-0.329417,0.700247],[0.116855,-0.730277,0.673025],[0.650105,-0.722373,0.235511],[0.961638,-0.259499,0.088778],[0.965453,-0.176458,0.191565],[0.809259,-0.371685,0.454848],[0.549669,-0.443922,0.707633],[-0.057588,-0.271554,0.960662],[0.776116,-0.126835,0.617664],[0.974029,-0.006745,0.226203],[0.942503,-0.258644,0.211585],[0.947172,-0.272744,0.168706],[0.945647,-0.261483,-0.193213],[0.985748,-0.060701,0.156774],[0.903623,-0.149754,-0.401257],[-0.051576,0.098575,-0.993774],[-0.945708,-0.255837,-0.200323],[-0.653493,0.034639,-0.756127],[-0.721549,0.101657,-0.684835],[-0.921201,-0.334605,-0.198401],[-0.532395,-0.574908,-0.621265],[-0.435804,-0.880154,-0.187964],[0.400861,-0.753044,-0.521683],[0.134190,-0.913633,0.383679],[0.688009,-0.678915,0.256264],[0.522233,-0.467696,0.713065],[0.909391,0.029786,0.414808],[0.914945,0.224219,0.335551],[0.823908,0.523240,-0.217627],[0.613727,0.773003,-0.160588],[0.263955,0.620136,-0.738731],[0.379955,0.595080,-0.708121],[0.847438,0.469344,-0.247993],[0.938353,-0.339000,-0.067263],[0.855403,-0.242531,-0.457625],[0.658467,0.048921,-0.750999],[0.138859,0.019868,-0.990112],[-0.249794,-0.225745,-0.941588],[-0.190344,0.477554,-0.857692],[0.344493,0.617206,-0.707358],[-0.214667,0.412793,-0.885128],[-0.099887,0.407025,-0.907926],[0.120518,0.683309,-0.720084],[0.297617,0.944639,-0.137944],[0.067171,0.554613,-0.829371],[-0.080630,0.302316,-0.949767],[0.116794,0.032289,-0.992615],[0.268990,-0.202094,-0.941679],[0.593463,-0.308176,-0.743461],[0.647725,-0.304117,-0.698508],[0.917051,-0.335215,-0.215888],[0.940306,-0.258675,-0.221137],[0.972411,-0.091037,-0.214698],[0.977325,0.145482,0.153722],[0.944487,0.087008,-0.316813],[0.746055,-0.232704,-0.623859],[0.657186,-0.322184,-0.681356],[0.240486,-0.283059,-0.928434],[0.262917,-0.249977,-0.931852],[0.641407,-0.024049,-0.766808],[0.312784,0.007721,-0.949767],[0.201117,0.387158,-0.899777],[0.010498,0.411176,-0.911466],[0.298196,0.244087,-0.922758],[0.684286,0.103732,-0.721763],[0.919462,0.107517,-0.378185],[0.986541,0.124393,0.106052],[0.846004,0.127659,0.517624],[0.543443,0.130741,0.829157],[0.152684,0.137577,0.978637],[0.149449,0.136509,0.979278],[0.134281,0.093234,0.986541],[-0.129490,0.064638,0.989441],[-0.130161,0.061617,0.989563],[-0.323222,0.066744,0.943937],[-0.351604,0.009919,0.936064],[-0.601459,-0.018647,0.798669],[-0.904935,0.062227,0.420911],[-0.889981,0.072970,0.450087],[-0.622272,0.077151,0.778954],[-0.886746,0.109317,0.449110],[-0.567156,0.077425,0.819941],[-0.644765,0.046937,0.762902],[-0.915891,0.084078,0.392499],[-0.682485,0.028291,0.730308],[-0.926695,0.061678,0.370647],[-0.776330,0.036073,0.629261],[-0.955504,0.055239,0.289651],[-0.965972,0.090762,0.242164],[-0.721519,0.087069,0.686850],[-0.820887,0.103916,0.561510],[-0.972961,0.122288,0.195929],[-0.979888,0.113620,-0.163945],[-0.982879,0.087497,-0.161992],[-0.992309,0.073763,-0.099338],[-0.993469,0.107273,-0.038087],[-0.991760,0.127262,-0.013184],[-0.989868,0.135594,0.041688],[-0.991089,0.129490,0.030793],[-0.991852,0.126652,-0.011383],[-0.835963,0.195227,-0.512833],[-0.889065,0.212531,-0.405377],[-0.923368,0.186285,-0.335673],[-0.882046,0.177465,-0.436415],[-0.873806,0.129093,-0.468764],[-0.840877,0.104282,-0.531053],[-0.875576,0.123142,-0.467086],[-0.788324,0.134831,-0.600269],[-0.473403,0.163305,-0.865566],[-0.462966,0.185339,-0.866756],[-0.017884,0.226875,-0.973754],[0.090701,0.170049,-0.981231],[0.357006,0.172674,-0.917966],[0.316904,0.124027,-0.940275],[0.350108,0.094577,-0.931913],[0.232887,0.008576,-0.972442],[0.209998,-0.031495,-0.977172],[0.198798,-0.035554,-0.979369],[0.195532,-0.038179,-0.979919],[0.124454,0.079836,-0.988983],[0.281045,-0.044008,-0.958678],[0.324198,0.088565,-0.941801],[0.051424,0.239631,-0.969481],[0.644002,-0.019776,-0.764763],[0.922086,0.032716,-0.385571],[0.994324,0.085177,0.063631],[0.887600,0.105960,0.448195],[0.602405,0.113834,0.790002],[0.210700,0.120640,0.970061],[-0.144780,0.131260,0.980712],[-0.116825,0.131230,0.984436],[-0.164281,0.073794,0.983642],[-0.306681,0.060610,0.949858],[-0.346843,0.038453,0.937101],[-0.400189,0.038392,0.915616],[-0.489181,0.054323,0.870479],[-0.515549,0.098209,0.851192],[-0.591571,0.093051,0.800836],[-0.481613,0.170354,0.859645],[-0.400128,0.112033,0.909574],[-0.336924,0.090365,0.937162],[-0.286019,0.066836,0.955870],[-0.263741,0.099033,0.959471],[-0.316202,0.117649,0.941343],[-0.386364,0.167119,0.907041],[-0.407361,0.234779,0.882534],[-0.209174,0.191107,0.959014],[-0.143040,0.158361,0.976959],[0.196570,0.153050,0.968444],[0.188482,0.170293,0.967193],[0.484787,0.138554,0.863582],[0.614277,0.138859,0.776757],[0.872646,0.096255,0.478713],[0.998321,0.054140,0.019684],[0.900601,0.010010,-0.434523],[0.998169,0.050996,-0.032350],[0.998596,0.049074,0.019196],[0.883511,0.083926,0.460799],[0.928434,0.038697,-0.369427],[0.662282,0.046052,-0.747795],[0.652882,-0.025849,-0.756981],[0.349406,-0.025941,-0.936583],[0.316233,0.091067,-0.944273],[0.424055,0.112857,-0.898556],[0.679525,0.082736,-0.728935],[0.882931,0.055300,-0.466201],[0.245582,0.156987,-0.956542],[0.264077,0.091342,-0.960143],[0.218909,-0.029420,-0.975280],[0.364025,0.164556,-0.916715],[-0.221717,0.266732,-0.937895],[-0.187628,0.167058,-0.967895],[-0.050111,0.040071,-0.997925],[0.130955,-0.014893,-0.991272],[-0.057283,0.095492,-0.993774],[-0.501144,0.129154,-0.855647],[-0.514939,0.107089,-0.850490],[-0.587817,0.192511,-0.785730],[-0.628864,0.246742,-0.737297],[-0.639607,0.308115,-0.704215],[-0.506088,0.261940,-0.821711],[-0.188726,-0.002350,-0.981994],[-0.156621,0.347179,-0.924589],[0.067995,-0.003540,-0.997650],[0.024415,0.352336,-0.935514],[0.081149,-0.204657,-0.975433],[0.077364,-0.245308,-0.966338],[0.072970,-0.276864,-0.958098],[0.270089,-0.290109,-0.918058],[0.079470,-0.175024,-0.981323],[0.088839,0.055330,-0.994476],[0.148350,0.437696,-0.886776],[0.293100,0.900540,-0.321055],[0.436964,0.856166,0.275674],[0.446638,0.784082,-0.430891],[0.728111,0.622974,-0.285836],[0.919401,0.287912,-0.267830],[0.999603,0.015656,0.022340],[-0.764611,-0.074953,-0.640095],[-0.814478,0.403760,-0.416639],[-0.658742,0.744957,0.105228],[-0.306742,0.781213,0.543687],[-0.285592,0.830195,0.478713],[-0.361095,0.932340,-0.018006],[-0.498489,0.563189,-0.658986],[-0.063173,0.137883,-0.988403],[0.160894,-0.314737,-0.935423],[0.481338,0.756096,-0.443373],[0.647328,-0.053133,-0.760338],[0.999786,-0.003052,-0.019105],[0.689352,0.559130,0.460555],[-0.433241,0.901242,-0.002686],[0.375927,0.119419,0.918882],[0.413709,-0.117466,0.902768],[-0.501053,-0.211005,0.839259],[-0.659505,0.001679,0.751671],[-0.910184,-0.014588,0.413923],[-0.879421,-0.063417,0.471786],[-0.441664,-0.563158,0.698386],[-0.806207,-0.567186,0.168126],[-0.157659,-0.979736,-0.123508],[0.334330,-0.724815,0.602344],[0.859523,0.071139,0.506088],[0.992492,-0.021821,-0.120182],[0.651784,-0.035737,-0.757530],[0.697562,-0.633778,-0.334208],[0.685446,-0.701315,0.195624],[0.435835,-0.543596,-0.717277],[-0.116337,-0.500595,-0.857814],[-0.470260,-0.625507,-0.622517],[-0.778802,-0.516465,-0.355907],[-0.983764,0.031495,-0.176580],[-0.951201,0.212439,-0.223670],[-0.847255,0.294198,0.442244],[-0.695822,0.189947,0.692587],[-0.749535,-0.101871,0.654042],[-0.832179,0.141331,0.536149],[-0.815516,0.308054,0.489883],[-0.816889,0.367351,0.444624],[-0.548051,0.551256,0.629078],[-0.458357,0.621509,0.635273],[-0.272896,0.574145,0.771905],[0.054323,0.577258,0.814722],[0.158238,0.542589,0.824915],[-0.025788,0.575030,0.817682],[-0.211982,0.579241,0.787072],[-0.109897,0.588336,0.801080],[0.219642,0.515610,0.828181],[0.514267,0.452345,0.728599],[0.482955,0.532884,0.694784],[0.543107,0.522660,0.657125],[0.246223,0.641377,0.726615],[0.207953,0.648061,0.732627],[0.005799,0.664388,0.747337],[0.109043,0.630024,0.768853],[0.401837,0.685812,0.606739],[0.085330,0.607105,0.790002],[0.301187,0.401563,0.864864],[-0.035005,0.578082,0.815210],[0.051973,0.349864,0.935331],[0.290902,0.015870,0.956603],[0.114170,-0.008850,0.993408],[0.295297,-0.518082,0.802728],[-0.071535,-0.457625,0.886227],[0.467238,-0.262459,0.844234],[0.771844,0.100711,0.627735],[0.669485,0.447371,0.592944],[0.828974,0.514817,0.218451],[0.541307,0.825739,0.158391],[0.487197,0.617115,0.617847],[0.742790,0.253578,0.619587],[0.564470,0.389111,0.727958],[0.731803,0.533891,0.423505],[0.435224,0.812830,0.387097],[0.966002,0.186865,0.178564],[0.859859,-0.132939,0.492874],[-0.955260,-0.206885,-0.211310],[-0.956877,0.290139,0.011719],[-0.837764,0.254524,0.483047],[-0.605518,0.649342,0.460036],[-0.357646,0.502670,0.787011],[-0.463149,0.067324,0.883694],[-0.171789,0.390393,0.904447],[-0.018647,0.576403,0.816919],[-0.111728,0.626026,0.771722],[-0.132847,0.651631,0.746788],[-0.211035,0.680837,0.701346],[-0.376751,0.628895,0.680074],[-0.533860,0.457411,0.711112],[-0.483108,0.738639,0.470046],[-0.720115,0.689077,-0.081149],[-0.592639,0.165990,-0.788171],[-0.521897,0.060427,-0.850856],[0.162633,0.043703,-0.985687],[0.019349,0.028260,-0.999390],[-0.201941,0.693167,0.691885],[-0.027680,0.667196,0.744346],[0.042787,0.618397,0.784661],[0.051668,0.611347,0.789666],[-0.029298,0.563250,0.825739],[-0.023072,0.598254,0.800928],[-0.089175,0.625965,0.774712],[-0.078677,0.630940,0.771813],[-0.074526,0.281747,0.956572],[-0.305368,0.011475,0.952147],[-0.370342,-0.601489,0.707816],[-0.601428,-0.371868,0.707053],[-0.907285,-0.321818,0.270547],[-0.101566,-0.033082,0.994263],[-0.311899,0.387799,-0.867336],[-0.550798,-0.763329,0.337474],[0.738182,-0.323069,-0.592151],[0.319590,-0.324961,-0.890072],[0.939940,-0.267403,-0.212012],[0.870724,-0.448805,-0.200964],[0.887204,-0.352306,-0.297769],[0.623127,-0.411451,-0.665120],[0.704001,-0.262185,-0.660024],[0.942625,-0.197851,-0.268777],[0.850459,0.009705,-0.525925],[0.382763,-0.027833,-0.923399],[0.336558,-0.307962,-0.889859],[0.403211,-0.406995,-0.819605],[0.134556,-0.426923,-0.894192],[0.129612,-0.348064,-0.928434],[-0.065279,-0.389111,-0.918851],[-0.509415,-0.493179,-0.705130],[0.053774,-0.954711,0.292581],[0.425306,-0.892300,0.151189],[0.108188,-0.991974,-0.065157],[0.564226,-0.822810,0.067782],[0.359355,-0.913236,0.191931],[0.599475,-0.629139,0.494736],[0.737297,-0.570147,0.362377],[0.743309,-0.591083,0.313150],[0.709189,-0.700919,0.075594],[0.816919,-0.450942,0.359478],[0.848201,-0.521958,0.089785],[0.854885,-0.401288,0.328745],[0.894498,-0.439100,0.083895],[0.926176,-0.267251,0.265999],[0.957091,-0.279641,0.075594],[0.953734,-0.231941,0.191260],[0.943999,-0.136845,0.300150],[0.902676,-0.162450,0.398450],[0.735221,-0.438215,0.517075],[0.792993,-0.173528,0.583941],[0.742607,-0.101474,0.661946],[0.953093,-0.100009,0.285653],[0.654530,-0.093051,0.750237],[0.743675,-0.274422,0.609577],[0.687490,-0.333934,0.644795],[-0.002350,-0.910947,0.412427],[0.009919,-0.980041,-0.198401],[-0.187933,-0.818110,-0.543443],[0.638142,-0.759117,0.128300],[0.825495,-0.564379,-0.001495],[0.901151,-0.383740,0.201575],[0.717978,-0.079440,0.691488],[0.804712,-0.019288,0.593310],[0.659993,-0.087588,0.746117],[0.770135,-0.194189,0.607532],[0.865963,-0.187445,0.463607],[0.810205,-0.357158,0.464736],[0.856960,-0.227119,0.462600],[0.790796,-0.180029,0.584979],[0.932035,0.358684,0.051210],[0.782037,0.584796,0.215400],[0.108463,0.749260,-0.653310],[0.292215,0.362316,-0.885037],[0.195227,0.484878,-0.852504],[0.387829,-0.078372,-0.918363],[0.989410,0.144261,0.014649],[0.761467,0.022065,0.647786],[0.985961,-0.111515,-0.124088],[0.858425,-0.454207,-0.238289],[0.391949,-0.524949,-0.755486],[0.285440,-0.597339,-0.749443],[0.729392,-0.640187,-0.241066],[0.928404,-0.357006,0.102756],[0.900845,-0.432905,0.032502],[0.825861,-0.561663,-0.049654],[0.754082,-0.652608,-0.073519],[0.648030,-0.706992,0.283151],[0.937101,-0.294992,0.186468],[0.969207,-0.245399,-0.020081],[0.923826,-0.380963,-0.036805],[0.880032,-0.457106,-0.128605],[0.568255,-0.412458,-0.711966],[0.634968,-0.212348,-0.742759],[0.998596,0.052614,0.004700],[0.928068,0.112156,-0.355083],[0.511856,0.081057,-0.855220],[0.095523,0.053316,-0.993988],[0.108737,-0.078982,-0.990905],[0.124088,-0.262520,-0.956877],[-0.083956,-0.351024,-0.932585],[-0.141972,-0.462813,-0.874996],[-0.382794,-0.514420,-0.767327],[-0.491317,-0.384564,-0.781457],[-0.721091,-0.516984,-0.461196],[-0.705191,-0.610157,-0.361095],[-0.777459,-0.493362,-0.390027],[-0.522111,-0.845180,0.114017],[-0.248268,-0.966918,0.058321],[-0.389660,-0.920469,-0.029115],[-0.199713,-0.970489,0.135105],[0.080996,-0.978637,0.188910],[0.282449,-0.748070,0.600482],[0.476089,-0.248268,0.843593],[0.230354,-0.305063,0.924009],[0.194281,0.008789,0.980895],[-0.093387,-0.072878,0.992950],[-0.067232,-0.290384,0.954527],[-0.383374,-0.050325,0.922208],[-0.271920,-0.536851,0.798608],[0.045656,-0.892117,0.449446],[0.209571,-0.487564,0.847530],[0.267708,-0.842769,0.466903],[0.426618,-0.391430,0.815332],[0.572039,-0.619465,0.537553],[0.467696,-0.426008,0.774438],[0.687216,-0.137516,0.713309],[0.596728,-0.214789,0.773125],[0.698996,0.060396,0.712546],[0.427534,0.258309,0.866268],[0.586535,0.397626,0.705557],[0.565905,0.087039,0.819819],[0.401898,0.360912,0.841517],[0.379254,0.488052,0.786065],[0.067507,-0.402783,0.912778],[0.253761,-0.080905,0.963866],[0.353465,-0.221015,0.908933],[0.409497,-0.230598,0.882656],[0.483077,-0.133946,0.865230],[0.403821,-0.008850,0.914762],[0.678274,-0.240089,0.694418],[0.747368,-0.299753,0.592914],[0.778680,-0.340251,0.527116],[0.799829,-0.397351,0.449782],[0.832545,-0.248970,0.494797],[0.847285,-0.181555,0.499069],[0.931333,-0.113590,0.345958],[0.754540,-0.143071,0.640431],[0.801843,-0.027345,0.596881],[0.800684,0.109684,0.588916],[0.935087,-0.005463,0.354350],[0.840175,0.178228,0.512162],[0.896176,0.064028,0.438978],[0.863399,0.011811,0.504349],[0.902005,0.003754,0.431654],[0.924131,0.016816,0.381634],[0.915494,0.043794,0.399884],[0.945921,0.046968,0.320902],[0.941618,0.118809,0.315012],[0.983490,0.150517,0.100284],[-0.261940,0.902615,-0.341502],[0.202429,0.746788,0.633473],[0.764580,-0.013184,0.644368],[0.891354,-0.115848,0.438185],[0.798486,-0.048372,0.600024],[0.006623,0.258370,0.966002],[0.614582,0.193609,0.764702],[0.649129,0.548967,0.526505],[0.011963,0.989654,-0.142827],[0.290536,-0.512680,-0.807886],[0.899564,-0.435286,0.035371],[0.849666,-0.479904,0.218390],[-0.178442,0.901273,0.394757],[-0.548845,0.713401,0.435591],[0.993255,-0.108066,0.041566],[0.894406,-0.399030,0.201972],[0.918424,-0.293283,0.265450],[0.888607,0.115177,0.443892],[0.876400,0.112094,0.468307],[0.752678,0.330241,0.569536],[0.714408,0.387799,0.582385],[0.469039,0.614307,0.634480],[0.296945,0.600238,0.742637],[0.184027,0.753868,0.630696],[0.182257,0.778436,0.600665],[0.484390,0.648946,0.586657],[-0.142491,0.743950,0.652852],[-0.140843,0.807794,0.572375],[-0.450545,0.713614,0.536363],[-0.453291,0.688589,0.565966],[-0.699454,0.494675,0.515763],[-0.711600,0.526505,0.465163],[-0.878994,0.224647,0.420515],[-0.901608,0.160863,0.401440],[-0.963866,-0.074465,0.255715],[-0.956389,-0.075533,0.282113],[-0.966582,-0.148869,0.208655],[-0.951933,-0.186041,0.243294],[-0.965819,-0.176641,0.189642],[-0.959899,-0.125980,0.250404],[-0.966399,-0.200140,0.161168],[-0.919004,-0.301187,0.254250],[-0.912595,-0.348308,0.214026],[-0.875668,-0.219764,0.429914],[-0.842097,-0.340953,0.417829],[-0.939360,-0.305918,-0.154759],[-0.818110,-0.574358,0.028016],[-0.951048,-0.294931,0.092196],[-0.874966,-0.476913,0.083254],[-0.885342,-0.366741,0.285684],[-0.764031,-0.233375,0.601428],[-0.810419,-0.235908,0.536210],[-0.886135,-0.192419,0.421522],[-0.827570,-0.560717,0.025941],[-0.684866,-0.612232,-0.395123],[-0.120273,-0.577380,-0.807520],[-0.678335,-0.718345,-0.154241],[-0.004791,-0.627064,-0.778924],[-0.320627,-0.503464,-0.802301],[-0.523240,-0.768456,-0.368358],[-0.726859,-0.621632,-0.291879],[-0.802423,-0.557726,-0.212165],[-0.851924,-0.477798,-0.214179],[-0.848964,-0.527879,-0.024171],[-0.744102,-0.667257,0.032411],[-0.577776,-0.788995,-0.208838],[-0.554735,-0.830317,-0.052797],[-0.656789,-0.734428,0.170904],[-0.664998,-0.713706,0.219886],[-0.547319,-0.746544,0.378216],[-0.740715,-0.385388,0.550249],[-0.574786,-0.355876,0.736839],[-0.240394,-0.801599,0.547380],[0.036988,-0.862362,0.504929],[-0.037141,-0.497269,0.866787],[-0.343699,-0.363842,0.865688],[-0.567675,-0.108310,0.816065],[-0.608753,-0.245735,0.754326],[-0.774804,-0.455611,0.438246],[-0.764733,-0.612903,0.198767],[-0.726829,-0.683218,-0.070193],[-0.804987,-0.571245,0.160100],[-0.783593,-0.500198,0.368389],[-0.630268,-0.350383,0.692770],[-0.522263,-0.325968,0.787988],[-0.475661,-0.305918,0.824702],[-0.515549,-0.359966,0.777551],[-0.711722,-0.457503,0.533006],[-0.707083,-0.374004,0.600085],[-0.847163,-0.420942,0.324137],[-0.777062,-0.558824,0.289590],[-0.887753,-0.452956,0.081698],[-0.786645,-0.611225,-0.086856],[-0.669637,-0.714774,-0.201605],[-0.783746,-0.605365,-0.138615],[-0.877041,-0.467422,-0.110721],[-0.906400,-0.422376,0.002289],[-0.839412,-0.538011,-0.076815],[-0.782617,-0.607532,-0.135502],[0.226539,-0.957884,-0.176397],[-0.720267,-0.587237,0.369213],[-0.937834,-0.329508,0.108951],[-0.875698,-0.357952,0.324015],[-0.670827,-0.333384,0.662404],[-0.422254,-0.409680,0.808588],[-0.258248,-0.299722,0.918393],[-0.419050,-0.149815,0.895505],[-0.683218,-0.345866,0.643086],[-0.492996,-0.485549,0.721885],[-0.180670,-0.888699,0.421339],[-0.531480,-0.732444,0.425459],[-0.517319,-0.526872,0.674337],[-0.259743,-0.591571,0.763237],[-0.024445,-0.573565,0.818781],[-0.340007,0.212165,0.916166],[-0.642048,0.307199,0.702384],[-0.773583,-0.287088,0.564867],[-0.782830,0.257393,0.566454],[-0.824458,-0.095584,0.557756],[-0.634358,0.149602,0.758385],[-0.165624,-0.426649,0.889096],[-0.190222,-0.831690,0.521592],[-0.512833,-0.437056,0.738884],[-0.659108,-0.310221,0.685049],[-0.617542,-0.153539,0.771386],[-0.647633,0.064119,0.759209],[-0.512070,-0.080599,0.855129],[-0.469863,-0.208167,0.857814],[-0.640645,-0.213324,0.737571],[-0.447432,-0.129795,0.884823],[-0.480178,-0.081362,0.873379],[-0.463942,-0.013672,0.885739],[-0.533403,-0.183142,0.825770],[-0.538285,-0.072237,0.839625],[-0.488815,0.087588,0.867946],[-0.544725,0.012085,0.838496],[-0.407819,0.113742,0.905911],[-0.557146,-0.074587,0.827021],[-0.358104,-0.035066,0.933012],[-0.508133,0.011505,0.861171],[-0.661031,0.066805,0.747337],[-0.715659,-0.008515,0.698386],[-0.709525,-0.101382,0.697317],[-0.804559,-0.036287,0.592730],[-0.907285,-0.065157,0.415387],[-0.727439,-0.008240,0.686117],[-0.882473,-0.199805,0.425764],[-0.939451,-0.305124,0.155889],[-0.822565,-0.304544,0.480209],[-0.943632,-0.004364,0.330943],[-0.906949,-0.086428,0.412244],[-0.786767,-0.265908,0.556993],[-0.624500,-0.603626,0.495560],[-0.575884,-0.338023,0.744346],[-0.624470,0.059236,0.778771],[-0.542772,0.149968,0.826350],[-0.359294,-0.088351,0.929014],[-0.166875,-0.087680,0.982055],[-0.204077,0.170476,0.963988],[-0.308115,0.342479,0.887539],[-0.193732,0.187078,0.963042],[-0.277749,0.248939,0.927824],[-0.198981,-0.489547,0.848933],[-0.218726,-0.606525,0.764367],[-0.063387,-0.719352,0.691733],[-0.077303,-0.712638,0.697256],[-0.033448,-0.769799,0.637379],[-0.012085,-0.830042,0.557512],[-0.151891,-0.753960,0.639088],[-0.095157,-0.940886,0.325053],[-0.330943,-0.805872,0.490921],[-0.178991,-0.732749,0.656514],[-0.224525,-0.676992,0.700888],[-0.163274,-0.439436,0.883297],[-0.350688,-0.414686,0.839656],[-0.338420,-0.361705,0.868679],[-0.460891,-0.292550,0.837825],[-0.615711,0.008057,0.787896],[-0.676534,-0.279336,0.681356],[-0.867183,-0.016968,0.497665],[-0.913236,-0.139531,0.382733],[-0.791070,-0.400464,0.462386],[-0.876156,-0.275613,0.395398],[-0.772668,-0.364971,0.519364],[-0.885830,-0.301492,0.352641],[-0.930967,-0.171850,0.322062],[-0.932951,-0.133824,0.334147],[-0.924986,-0.034242,0.378399],[-0.847194,0.080691,0.525101],[-0.602435,0.087710,0.793298],[-0.405835,-0.000671,0.913938],[-0.261361,-0.078066,0.962066],[-0.262795,-0.299142,0.917295],[-0.254097,-0.694754,0.672811],[-0.177557,-0.601062,0.779199],[-0.206305,-0.709677,0.673605],[-0.192785,-0.591235,0.783105],[-0.165014,-0.282022,0.945097],[-0.314493,-0.590320,0.743339],[-0.351238,-0.640339,0.683035],[-0.128758,-0.623218,0.771325],[-0.271828,-0.626301,0.730644],[-0.513016,-0.732780,0.447005],[-0.368297,-0.759301,0.536454],[-0.348674,-0.709861,0.611927],[-0.634144,-0.642659,0.429914],[-0.390210,-0.605029,0.693991],[-0.210700,-0.480911,0.851039],[-0.581317,-0.188513,0.791498],[-0.593127,-0.048311,0.803644],[-0.636067,0.007538,0.771569],[-0.455000,0.444441,0.771630],[-0.307474,0.126438,0.943083],[-0.139348,-0.099246,0.985229],[-0.048463,-0.037233,0.998108],[-0.054109,-0.000824,0.998505],[-0.402448,0.155126,0.902188],[-0.256142,0.225318,0.940001],[-0.292550,0.310800,0.904294],[-0.481979,0.291910,0.826106],[-0.499405,0.070528,0.863460],[-0.661184,0.058809,0.747887],[-0.630757,0.335002,0.699911],[-0.503708,0.376537,0.777459],[-0.215827,0.423597,0.879727],[-0.668264,0.249245,0.700919],[-0.718406,0.301004,0.627094],[-0.828059,0.228004,0.512131],[-0.889615,0.079562,0.449690],[-0.671407,-0.133213,0.728996],[-0.818110,-0.016877,0.574786],[-0.953124,0.159581,0.257027],[-0.943663,-0.055330,0.326151],[-0.729789,-0.050661,0.681783],[-0.708762,-0.613514,0.348155],[-0.442335,-0.513993,0.734916],[-0.039430,-0.950530,0.308023],[-0.280862,-0.918699,0.277627],[-0.257668,-0.955870,0.140996],[-0.327219,-0.941496,0.080325],[-0.429395,-0.828394,0.359600],[-0.739769,-0.463424,0.487777],[-0.446699,-0.484542,0.752098],[-0.577441,-0.028748,0.815882],[-0.044618,-0.449446,0.892178],[0.022919,-0.808130,0.588519],[0.025056,-0.816858,0.576281],[0.506516,-0.732566,0.454695],[0.375988,-0.400281,0.835688],[0.705496,-0.315470,0.634602],[0.397290,0.071017,0.914914],[-0.108005,0.071139,0.991577],[-0.134587,0.427839,0.893765],[-0.676473,0.280313,0.681021],[-0.566271,0.468856,0.677816],[-0.881832,0.221473,0.416242],[-0.941679,0.154241,0.299020],[-0.937773,-0.053499,0.343028],[-0.620411,-0.714133,0.324137],[-0.902127,0.052919,0.428175],[-0.671407,0.335185,0.660939],[-0.736290,0.081027,0.671773],[-0.587512,-0.395764,0.705802],[-0.466567,-0.334330,0.818842],[-0.505173,0.195532,0.840541],[-0.137852,0.495529,0.857570],[-0.139988,0.550798,0.822779],[0.314219,0.559008,0.767296],[0.445235,0.449507,0.774377],[0.646626,0.378979,0.661977],[0.718619,0.385357,0.578845],[0.457106,0.396344,0.796167],[0.769494,0.224067,0.598010],[0.812830,0.333872,0.477279],[0.747887,0.247200,0.616047],[0.473556,0.174963,0.863186],[0.525651,-0.010651,0.850612],[0.673757,0.135838,0.726341],[0.831080,0.342265,0.438276],[0.842006,0.128697,0.523850],[0.673849,-0.581622,0.455611],[0.733665,-0.465804,0.494675],[0.851405,0.128422,0.508530],[0.510514,-0.095462,0.854518],[0.574480,0.082827,0.814264],[0.303079,-0.001160,0.952940],[0.293008,0.151646,0.943968],[0.239326,0.365764,0.899380],[0.398511,0.440382,0.804498],[0.503891,0.426130,0.751305],[0.556291,0.213385,0.803095],[0.278054,0.275735,0.920133],[-0.127049,0.303995,0.944151],[-0.081057,-0.180670,0.980193],[-0.218421,-0.443403,0.869289],[-0.196570,-0.125462,0.972411],[-0.267312,0.087374,0.959624],[-0.406446,0.135868,0.903470],[-0.437574,0.120518,0.891049],[-0.712485,0.084964,0.696493],[-0.432417,0.278207,0.857662],[-0.795068,0.161626,0.584582],[-0.553056,0.513199,0.656270],[-0.908231,-0.037629,0.416700],[-0.908963,-0.033937,0.415448],[-0.860561,0.006226,0.509293],[-0.138310,0.506485,0.851039],[-0.128178,0.320719,0.938444],[-0.120304,0.213080,0.969573],[-0.111301,0.106815,0.988006],[-0.094333,-0.064364,0.993439],[-0.065798,-0.301065,0.951323],[0.125431,-0.408185,0.904202],[0.020173,-0.103275,0.994446],[0.047884,0.119633,0.991638],[0.182775,0.196204,0.963347],[0.207495,0.062075,0.976257],[0.074892,-0.043641,0.996216],[0.026734,-0.262398,0.964568],[0.272134,-0.530259,0.802942],[0.351634,-0.250557,0.901944],[0.502487,-0.284158,0.816523],[0.437910,-0.084170,0.895047],[0.451491,0.363872,0.814661],[0.252907,0.453993,0.854335],[0.038301,0.344676,0.937925],[0.188055,0.174749,0.966460],[0.278542,0.166173,0.945921],[0.271462,0.061586,0.960448],[0.279122,-0.055422,0.958647],[0.321726,-0.127110,0.938231],[0.337168,0.006317,0.941404],[0.381146,-0.429701,0.818567],[0.167180,-0.929380,0.329020],[0.410810,-0.887417,0.208930],[0.486801,-0.858150,0.162999],[0.398450,-0.849147,0.346629],[0.755638,-0.241615,0.608753],[0.455947,-0.270730,0.847804],[-0.028748,-0.548326,0.835749],[-0.551805,-0.373913,0.745415],[-0.797540,-0.400647,0.450972],[-0.698721,-0.039674,0.714255],[-0.551866,0.031007,0.833338],[-0.523179,0.022095,0.851894],[-0.402448,-0.561205,0.723197],[-0.439802,-0.699545,0.563189],[-0.180761,-0.909085,0.375286],[-0.723502,-0.044923,0.688803],[-0.094150,-0.935942,0.339305],[-0.261116,-0.839534,0.476394],[-0.040895,-0.900662,0.432539],[-0.191992,-0.529893,0.826014],[-0.230171,0.032807,0.972564],[-0.233375,-0.049989,0.971099],[-0.105960,0.049623,0.993103],[-0.102908,0.018220,0.994507],[-0.022309,-0.585772,0.810144],[-0.123508,-0.906705,0.403241],[0.049806,-0.958190,0.281747],[0.077425,-0.972839,0.218116],[0.047914,-0.899411,0.434462],[0.220099,-0.871517,0.438154],[0.126072,-0.497330,0.858333],[0.133824,-0.882748,0.450301],[0.354656,-0.483688,0.800134],[0.324107,-0.779626,0.535844],[0.450087,-0.608448,0.653584],[0.558123,-0.185614,0.808710],[0.327860,0.109226,0.938383],[0.020600,0.058473,0.998047],[0.040590,-0.021943,0.998932],[0.357280,0.124088,0.925687],[0.536027,0.086734,0.839686],[0.457259,0.177252,0.871456],[0.469619,-0.042238,0.881832],[0.432539,-0.340251,0.834925],[0.245491,-0.787072,0.565874],[0.281075,-0.861782,0.422224],[0.210547,-0.904721,0.370281],[0.009827,-0.958129,0.286142],[0.088321,-0.954222,0.285653],[0.044252,-0.983428,-0.175695],[0.326273,-0.333048,0.884640],[0.436201,-0.192206,0.879055],[0.392865,-0.190741,0.899564],[0.500351,-0.183355,0.846156],[0.384014,-0.089206,0.918973],[0.363720,0.020081,0.931272],[0.353191,0.104007,0.929746],[0.384808,0.021821,0.922727],[0.164830,0.018433,0.986145],[0.013398,0.252907,0.967376],[-0.017792,-0.072390,0.997192],[-0.144719,-0.047090,0.988342],[-0.053041,0.440230,0.896298],[0.081851,0.166356,0.982635],[0.193670,0.510910,0.837519],[0.455031,0.119327,0.882412],[0.418653,0.055300,0.906430],[0.651631,-0.511002,0.560533],[0.357555,-0.528520,0.769921],[0.550127,-0.623951,0.554949],[0.240944,-0.573779,0.782739],[0.129185,-0.446120,0.885556],[0.329417,-0.570666,0.752159],[0.147679,-0.556352,0.817682],[0.129490,-0.258980,0.957152],[0.224250,-0.304086,0.925840],[0.432142,0.115360,0.894375],[0.402387,0.190588,0.895383],[0.218207,0.187658,0.957671],[0.188238,0.341746,0.920713],[0.613849,0.305856,0.727714],[0.527757,0.211921,0.822504],[0.691946,0.238289,0.681478],[0.736167,0.147160,0.660573],[0.569384,-0.151769,0.807917],[0.334025,-0.211158,0.918577],[0.252449,-0.352916,0.900937],[0.068941,-0.415662,0.906888],[0.135807,-0.568987,0.811029],[0.249184,-0.643239,0.723960],[0.206183,-0.667440,0.715506],[0.094974,-0.600330,0.794061],[0.211676,-0.632313,0.745201],[0.381420,-0.732933,0.563280],[0.187994,-0.695120,0.693838],[0.193213,-0.706687,0.680593],[0.215308,-0.909055,0.356700],[0.169744,-0.721030,0.671743],[0.398846,-0.680776,0.614338],[0.355052,-0.637806,0.683432],[0.120090,-0.456893,0.881344],[-0.043367,0.202490,0.978301],[0.175329,0.214331,0.960875],[-0.042512,-0.089267,0.995086],[-0.146672,-0.010285,0.989105],[-0.030274,0.188299,0.981628],[0.177435,-0.033357,0.983551],[0.313669,0.095645,0.944670],[0.471938,0.182806,0.862453],[0.326060,0.238929,0.914640],[0.432112,0.167394,0.886105],[0.191778,0.337504,0.921537],[0.149937,0.334605,0.930326],[0.031800,0.280648,0.959258],[0.245460,-0.447493,0.859890],[0.179327,-0.565783,0.804804],[0.050172,0.379223,0.923917],[0.067415,-0.705954,0.705008],[0.078310,-0.696707,0.713034],[0.067141,-0.821925,0.565600],[0.243751,-0.592090,0.768090],[0.432783,-0.248939,0.866421],[0.747124,-0.242988,0.618641],[0.559984,-0.489761,0.668203],[0.352733,-0.690512,0.631458],[0.059603,-0.760277,0.646809],[0.151280,-0.819422,0.552843],[0.475631,-0.704123,0.527207],[0.621509,-0.476058,0.622150],[0.817042,-0.102268,0.567400],[0.827815,0.038697,0.559618],[0.818842,0.144261,0.555559],[0.796045,0.140599,0.588672],[0.722831,0.168340,0.670156],[0.795831,0.136814,0.589831],[0.855251,0.049226,0.515824],[0.840022,-0.124790,0.528001],[0.710990,-0.213050,0.670095],[0.697165,-0.113956,0.707755],[0.562151,0.028779,0.826502],[0.472060,-0.230689,0.850826],[0.323466,-0.814783,0.481094],[0.549181,0.120945,0.826868],[0.562853,0.123844,0.817194],[0.553911,-0.051973,0.830927],[0.439802,-0.085849,0.893948],[0.578539,-0.205481,0.789331],[0.633839,-0.236702,0.736320],[0.411969,-0.264992,0.871792],[0.125065,-0.260475,0.957335],[0.536973,-0.230903,0.811365],[0.668386,-0.316202,0.673208],[0.661061,0.113712,0.741630],[0.805261,0.088839,0.586200],[0.080305,-0.196581,-0.977193],[0.125797,-0.946257,0.297891],[0.189795,-0.968535,-0.160924],[0.156915,-0.188725,-0.969412],[-0.618152,0.385968,0.684713],[-0.625416,0.255806,0.737144],[-0.526048,0.644398,0.554949],[-0.311502,0.703635,0.638600],[-0.352702,0.791406,0.499222],[-0.137700,0.863277,0.485519],[-0.142735,0.713706,0.685720],[-0.127049,0.304361,0.944029],[0.101199,0.257332,0.960997],[0.030519,0.738639,0.673360],[0.080172,0.835749,0.543199],[0.264870,0.725394,0.635304],[0.414441,0.415387,0.809717],[0.215918,-0.542863,0.811548],[-0.571917,-0.605640,0.553209],[-0.325541,-0.759911,0.562578],[-0.419935,-0.795801,0.436232],[-0.267953,-0.644490,0.716086],[-0.537675,-0.348308,0.767815],[-0.179022,-0.744896,0.642689],[-0.090793,-0.844203,0.528245],[-0.242561,-0.872768,0.423536],[-0.316843,-0.505112,0.802759],[-0.435102,0.273324,0.857845],[-0.396161,0.278664,0.874844],[-0.611621,-0.297189,0.733177],[-0.554826,-0.293680,0.778375],[-0.517655,-0.283944,0.807062],[-0.582598,-0.190497,0.790094],[-0.686300,-0.178930,0.704917],[-0.823756,-0.261849,0.502823],[-0.720847,-0.478133,0.501724],[0.102908,-0.900174,0.423139],[-0.485397,-0.874142,0.014191],[0.452559,-0.752556,-0.478347],[-0.779656,-0.430372,0.454817],[-0.758538,-0.237739,0.606677],[-0.418653,-0.320231,-0.849788],[-0.014985,-0.543962,-0.838954],[-0.173498,-0.135838,-0.975402],[-0.114841,0.453108,-0.883999],[-0.969390,-0.148839,-0.195227],[-0.811029,-0.377392,-0.446944],[-0.713065,-0.150334,-0.684774],[-0.842067,-0.069063,-0.534928],[-0.993561,-0.051881,-0.100558],[-0.980682,-0.150243,0.125187],[0.138188,0.943602,-0.300821],[-0.124302,0.725425,-0.676962],[-0.176824,0.314280,-0.932707],[-0.980956,-0.057466,-0.185492],[-0.898709,-0.304483,-0.315561],[-0.863796,-0.144292,0.482681],[-0.820734,-0.357067,0.445906],[-0.798029,-0.521805,0.301340],[-0.859035,-0.179418,0.479415],[-0.470077,0.677938,0.565111],[-0.250465,0.232063,0.939879],[0.296670,0.799982,0.521500],[-0.989746,-0.078921,0.118778],[-0.088198,0.910520,0.403912],[-0.181585,0.969848,-0.162481],[-0.837611,0.396741,0.375439],[-0.910337,0.411512,0.043458],[-0.976196,0.163305,-0.142613],[-0.838893,-0.346873,0.419416],[-0.868557,-0.403790,0.287301],[-0.780572,0.050783,0.622944],[-0.337016,-0.005829,-0.941465],[-0.177770,-0.085238,-0.980346],[-0.323954,0.904324,0.277871],[-0.709891,0.639912,0.294137],[-0.341350,0.876003,0.340648],[-0.747917,0.658376,0.084323],[-0.243171,0.969695,0.022126],[-0.673025,0.718589,-0.175024],[-0.406659,0.561418,0.720695],[-0.631123,0.700400,0.333262],[-0.371258,0.900754,0.225288],[-0.284371,0.947172,0.148137],[-0.880551,0.460433,-0.112217],[-0.316752,0.911435,0.262551],[-0.312265,0.927610,0.204901],[-0.932340,0.298990,-0.203284],[-0.665700,0.629536,-0.400616],[-0.174688,0.971068,-0.162694],[-0.593554,0.719443,-0.360637],[-0.168340,0.971801,-0.164983],[-0.634388,0.654561,-0.411176],[-0.928831,-0.118412,-0.350993],[-0.927213,-0.090365,-0.363445],[-0.681204,0.576220,-0.451521],[-0.972808,-0.040040,-0.228034],[-0.645741,0.652852,-0.395917],[-0.959014,-0.125004,-0.254158],[-0.583026,0.685629,-0.435804],[-0.849361,-0.021210,-0.527329],[-0.713950,-0.460402,-0.527512],[-0.735771,-0.455763,-0.500900],[-0.634724,-0.714530,-0.294107],[-0.732231,-0.662679,-0.156987],[-0.584307,-0.811243,0.021302],[-0.759087,-0.650044,0.034455],[-0.675832,-0.702933,0.221564],[-0.807276,-0.560198,0.185614],[-0.846400,-0.388714,0.363964],[-0.855800,-0.491226,0.162053],[-0.855525,-0.482620,-0.187414],[-0.892331,-0.443678,-0.082888],[-0.698569,-0.449904,-0.556383],[0.228767,-0.907956,-0.351085],[0.831782,0.227149,0.506455],[0.905393,-0.343486,0.249519],[0.756401,0.436384,0.487228],[0.868557,0.400433,0.291910],[0.741050,0.586352,0.327097],[0.842250,0.497391,0.207739],[0.822657,0.474715,0.312815],[0.767724,0.545061,0.336894],[0.739158,0.611652,0.281930],[0.648488,0.665059,0.370312],[0.746117,0.634114,0.202826],[0.660543,0.732841,0.163091],[0.789270,0.574023,0.217933],[0.391797,0.807459,0.440992],[0.194128,0.980682,-0.023133],[-0.562487,0.790429,0.242439],[0.113376,0.756737,0.643788],[-0.618000,0.739921,0.265572],[0.021455,0.860256,0.509354],[-0.661641,0.727653,0.180914],[-0.537767,0.735069,0.412793],[0.239937,0.666494,0.705802],[-0.418378,0.760155,0.497055],[-0.922788,0.381542,0.053377],[-0.836421,0.507859,0.206030],[-0.985046,-0.019410,-0.171117],[-0.919767,-0.257118,-0.296426],[-0.773156,-0.482315,-0.411756],[-0.792047,-0.457198,-0.404431],[-0.420698,-0.747795,-0.513565],[-0.231971,-0.829371,-0.508225],[0.414960,-0.852351,-0.318217],[0.469710,-0.827570,-0.307321],[0.903287,-0.404218,0.143651],[0.904386,-0.417341,0.088595],[0.872890,-0.483627,0.064150],[0.842586,0.155065,0.515702],[0.898404,0.028840,0.438185],[0.820185,-0.567827,-0.069430],[0.914701,0.030030,0.402936],[0.979034,-0.004669,0.203558],[0.551775,0.571337,0.607501],[0.711447,0.434980,0.551897],[0.849269,0.117771,0.514634],[0.999176,0.031739,0.025025],[0.919889,0.275979,-0.278542],[0.959258,-0.079348,0.271065],[0.958708,0.231147,0.165532],[0.693197,0.555193,-0.459578],[0.282998,0.554552,-0.782495],[0.502792,0.343608,-0.793146],[-0.195746,0.114719,-0.973907],[0.681143,-0.167516,-0.712668],[0.749992,-0.504257,-0.428022],[0.196509,-0.613880,-0.764519],[0.235206,-0.822565,-0.517685],[0.281961,-0.885708,-0.368694],[-0.449202,-0.724235,-0.523087],[-0.841823,-0.340159,-0.419019],[-0.974731,0.200262,-0.098849],[-0.760125,0.593585,0.264199],[-0.212775,0.797327,0.564776],[-0.661214,0.696554,0.278481],[-0.145207,0.803919,0.576678],[0.074068,0.848720,0.523576],[-0.590045,0.784539,0.190497],[0.036714,0.585894,-0.809534],[0.282388,0.887783,-0.363353],[0.723258,-0.634877,0.271584],[-0.624306,-0.774637,-0.100895],[0.679006,-0.244118,0.692312],[0.774132,-0.154912,0.613727],[0.911649,0.406842,-0.057863],[0.539171,0.626240,-0.563097],[-0.082369,0.555071,-0.827693],[-0.526231,0.226966,-0.819453],[-0.819300,-0.088412,-0.566485],[-0.799036,-0.060183,-0.598224],[-0.589557,-0.153142,-0.793054],[-0.046632,-0.259926,-0.964476],[-0.582232,-0.237342,-0.777581],[-0.525346,-0.566851,-0.634541],[-0.843715,-0.172246,-0.508347],[-0.941771,0.295999,-0.159398],[-0.881771,0.363628,-0.300363],[-0.774194,-0.081851,-0.627583],[-0.758904,0.075045,-0.646840],[0.471114,0.721610,-0.507248],[-0.029054,-0.996460,0.078677],[0.352458,-0.932676,-0.076357],[0.098178,-0.618519,0.779565],[-0.554521,-0.703238,0.444868],[-0.525803,-0.665242,0.530015],[0.295419,-0.516404,0.803735],[0.137577,-0.579455,0.803278],[-0.455000,-0.647420,0.611377],[-0.914212,-0.399670,0.066744],[-0.916318,-0.399792,-0.022523],[-0.886258,-0.451247,-0.104465],[-0.878048,0.042238,-0.476699],[-0.903104,-0.096957,-0.418317],[-0.938078,-0.108798,-0.328806],[-0.810450,0.176641,-0.558489],[-0.670614,0.246040,-0.699789],[-0.206336,0.581378,-0.787011],[0.565477,0.631855,-0.530015],[0.946348,0.276009,0.167913],[0.724021,-0.206275,0.658193],[0.407147,0.638020,0.653523],[0.339457,0.635456,0.693472],[0.775231,0.271981,0.570055],[0.699728,0.468429,0.539384],[0.720420,0.306650,0.621998],[0.837245,0.334574,0.432508],[0.939573,0.311624,0.141636],[0.868007,0.421979,0.261666],[0.938963,0.263527,0.221076],[0.914121,0.343516,0.215217],[0.850368,0.426710,0.307840],[0.859676,0.384228,0.336589],[0.929380,0.254830,0.266915],[0.907590,0.162633,0.387036],[0.713828,0.358318,0.601642],[-0.329661,0.799127,0.502670],[-0.965514,0.188421,-0.179571],[-0.879879,-0.473708,-0.037324],[-0.756310,-0.440565,-0.483566],[-0.821894,-0.560350,0.102268],[-0.004364,-0.852596,-0.522477],[0.899106,0.009064,0.437574],[0.868679,-0.493179,0.046175],[0.872890,0.252205,0.417615],[0.754570,0.238807,0.611194],[-0.160405,0.652943,0.740196],[-0.991546,0.119755,-0.049379],[-0.744163,-0.666738,0.040437],[-0.757714,-0.411542,-0.506424],[-0.120640,-0.955321,-0.269784],[-0.008820,-0.771325,-0.636341],[0.857662,-0.510575,-0.060701],[0.921964,-0.380963,0.069491],[0.941221,0.245216,0.232307],[0.971709,0.187048,0.144078],[0.967345,0.164769,0.192450],[0.944090,0.277993,0.177129],[0.996033,0.034150,-0.082003],[0.950316,-0.296030,0.096042],[0.931730,-0.296823,0.209082],[0.970763,-0.121433,0.206946],[0.655202,-0.669393,-0.350108],[0.552049,-0.773705,-0.310770],[0.526231,-0.788781,-0.317545],[0.712272,-0.519730,-0.471694],[0.738701,-0.545213,-0.396252],[0.999725,-0.021363,0.007935],[0.869198,-0.487136,-0.084506],[0.920743,-0.387402,-0.046175],[-0.023560,-0.999207,0.031770],[-0.753288,-0.609760,0.246376],[-0.801904,-0.596912,-0.024628],[0.043794,-0.968841,-0.243660],[-0.074892,-0.836543,-0.542711],[-0.784234,-0.547258,-0.292306],[-0.737236,-0.424940,-0.525224],[-0.093844,-0.722495,-0.684927],[-0.294290,-0.794946,-0.530503],[-0.712241,-0.469314,-0.521928],[-0.745842,-0.446883,-0.493942],[-0.850124,-0.266518,-0.454085],[-0.824610,-0.296823,-0.481491],[-0.947295,0.104434,-0.302805],[-0.880306,-0.027314,-0.473586],[-0.739708,0.649373,-0.176275],[-0.941008,0.148167,-0.304147],[-0.958922,0.067568,-0.275399],[-0.867611,-0.281442,-0.409864],[-0.692862,-0.485794,-0.532823],[-0.245460,-0.821497,-0.514634],[-0.039430,-0.783288,-0.620380],[0.030793,0.979492,-0.199072],[-0.080050,0.982055,-0.170598],[-0.187414,0.956206,-0.224769],[-0.113590,0.988647,-0.098148],[0.388592,0.874935,0.288858],[0.234199,0.915830,0.326151],[0.396374,0.900693,0.177770],[0.673696,0.718253,0.173742],[0.737144,0.496628,0.458205],[0.566942,0.601459,0.562822],[0.324992,0.575976,0.750053],[0.574328,0.284768,0.767479],[0.776452,0.318033,0.543962],[0.297098,0.951567,0.078768],[0.421827,0.903226,0.078738],[0.613453,0.698630,0.368114],[0.462020,0.795831,0.391339],[-0.065493,0.835231,0.545946],[-0.255379,0.928831,0.268349],[0.273476,0.944945,0.179571],[0.185919,0.880978,0.435072],[0.032105,0.817133,0.575488],[-0.376415,0.783563,0.494247],[-0.708457,0.557207,0.433088],[-0.855098,0.320444,0.407514],[-0.825709,0.306681,0.473403],[-0.655019,0.744987,0.126072],[-0.639576,0.735038,0.224982],[-0.990783,0.111484,-0.076632],[-0.934141,-0.334941,-0.123081],[-0.897183,-0.376049,-0.231452],[-0.776391,-0.429792,-0.460921],[-0.421461,-0.903897,-0.072665],[-0.176672,-0.623585,-0.761498],[0.376782,-0.809931,-0.449416],[0.177099,-0.966002,0.188299],[0.703543,-0.616749,0.352947],[0.844264,-0.276070,-0.459334],[0.992309,0.068636,0.102725],[0.689810,-0.121494,0.713706],[0.831263,0.261025,0.490738],[0.270516,-0.463698,0.843654],[-0.326548,-0.409528,0.851833],[0.365520,-0.259163,-0.893948],[-0.749077,-0.661275,0.039430],[-0.617847,-0.736839,0.274331],[-0.929502,-0.258065,-0.263405],[-0.725120,-0.687185,0.043733],[-0.108127,-0.858791,0.500717],[-0.007660,-0.430158,0.902707],[-0.448714,0.172185,0.876888],[-0.968505,-0.200049,0.148015],[-0.990966,-0.133885,-0.004242],[-0.905942,-0.414350,-0.086825],[-0.917447,-0.385693,0.097415],[-0.944273,0.309793,-0.111209],[-0.962920,0.259194,-0.074557],[-0.801111,-0.557237,-0.218299],[-0.026429,-0.915311,-0.401837],[0.886990,-0.439039,0.143010],[0.660298,0.424818,0.619251],[0.769860,0.292764,0.567064],[0.816858,0.504776,0.279122],[0.763451,0.594256,0.252907],[0.245125,0.922452,0.298257],[0.375958,0.620746,0.687979],[-0.820978,0.550401,0.151646],[-0.964446,0.063997,-0.256325],[-0.772881,-0.577013,-0.263985],[-0.002533,-0.986633,-0.162847],[-0.670553,-0.529466,-0.519608],[0.150304,-0.955412,-0.254067],[0.875851,-0.356578,0.325083],[0.897824,-0.076968,0.433485],[0.589068,0.549547,0.592395],[0.717490,0.558763,0.415815],[0.027070,0.948759,0.314798],[-0.267251,0.817927,0.509445],[-0.133641,0.863002,0.487167],[-0.224738,0.786645,0.574999],[-0.972106,0.231941,-0.033937],[-0.786676,-0.300729,-0.539109],[-0.146336,-0.884640,-0.442701],[0.816309,-0.530869,0.227515],[0.718680,-0.532884,0.446638],[0.549181,0.227851,0.804010],[0.393323,0.074160,0.916379],[-0.195410,0.630421,0.751213],[0.385815,0.067934,0.920042],[-0.350841,0.762383,0.543718],[-0.729911,0.580035,-0.361553],[0.697836,0.399060,0.594745],[-0.392895,-0.121342,-0.911527],[0.332316,-0.726829,-0.601032],[0.759423,-0.627857,0.170293],[0.611438,-0.724204,0.318796],[0.065737,-0.210028,0.975463],[-0.429487,0.603229,0.672018],[-0.592181,0.495956,0.635060],[-0.808252,0.513871,-0.287423],[-0.358623,0.757744,-0.545122],[-0.143254,0.148778,-0.978423],[-0.603839,-0.293405,-0.741111],[0.180517,-0.758568,-0.626057],[0.459090,-0.296457,-0.837428],[0.428541,-0.830409,0.355968],[-0.136509,-0.259590,0.955992],[-0.465926,0.488998,0.737388],[-0.619282,0.680532,-0.391552],[-0.149998,0.146153,-0.977813],[0.053865,0.304025,-0.951109],[0.378155,-0.558702,-0.738090],[0.577349,-0.757408,0.304880],[0.065554,-0.289224,0.954985],[0.078402,-0.204321,0.975738],[-0.365459,-0.059358,0.928892],[-0.734306,0.556352,0.388867],[-0.792779,0.504044,-0.342631],[-0.308786,0.009705,-0.951079],[0.187597,-0.707968,-0.680837],[0.436293,-0.899503,-0.022340],[0.094119,-0.631092,0.769951],[-0.297769,-0.470077,0.830836],[-0.133030,-0.139378,0.981231],[-0.350780,-0.013550,0.936338],[-0.954253,0.187719,0.232704],[-0.510788,-0.143773,0.847560],[-0.985809,-0.089084,-0.142247],[-0.775536,0.067476,0.627644],[-0.937010,0.193304,-0.290841],[-0.675100,-0.375744,-0.634816],[-0.410871,-0.086795,-0.907529],[-0.355480,-0.862026,-0.361187],[-0.120731,-0.811457,-0.571764],[0.001953,-0.994720,-0.102573],[0.141484,-0.627918,0.765282],[0.124424,-0.166784,0.978088],[0.337107,-0.720908,0.605487],[0.492813,-0.604816,0.625538],[-0.043428,-0.296854,0.953917],[-0.430525,0.235755,0.871212],[-0.280374,0.356365,0.891263],[-0.495743,-0.005860,0.868404],[-0.805750,-0.094943,0.584582],[-0.585864,-0.205695,0.783837],[-0.515122,-0.589984,0.621723],[-0.134800,-0.768059,0.625965],[-0.135746,-0.927366,0.348582],[0.094455,-0.742302,0.663350],[0.033998,-0.938627,0.343181],[-0.042238,-0.727836,0.684439],[0.226325,-0.588916,0.775842],[-0.126530,-0.356548,0.925657],[-0.274422,-0.455489,0.846858],[0.089236,-0.415265,0.905271],[0.228278,-0.708243,-0.667989],[-0.767296,0.547288,-0.334147],[-0.372417,0.870357,0.322092],[-0.955168,0.274483,-0.110721],[-0.585406,-0.458785,-0.668416],[0.204413,-0.694113,-0.690207],[0.757408,-0.620228,0.203986],[0.358287,-0.660726,-0.659536],[0.663289,-0.461806,0.588855],[0.448897,0.315806,0.835902],[0.285775,0.240852,0.927519],[-0.407239,0.643849,0.647755],[-0.102786,0.690146,0.716300],[-0.857082,0.418867,-0.299844],[-0.686636,0.497177,-0.530351],[-0.505783,0.777551,0.373577],[0.065584,0.841914,0.535569],[0.591662,0.465224,0.658376],[-0.744224,0.349467,-0.569170],[-0.180944,-0.057405,-0.981811],[-0.466781,-0.342906,-0.815149],[0.293985,-0.844997,-0.446638],[0.787713,-0.300272,0.537858],[0.418500,0.203528,0.885098],[0.250710,0.122013,0.960326],[-0.566759,0.712729,0.413221],[-0.628620,0.490219,-0.603687],[-0.413312,-0.284371,-0.865017],[0.345988,-0.588549,-0.730644],[0.693319,-0.678121,0.243812],[0.399640,-0.653127,-0.643178],[-0.083834,0.040407,-0.995636],[-0.680563,0.540147,-0.494980],[-0.359050,-0.213141,-0.908628],[0.307199,-0.752342,-0.582720],[0.528611,-0.616169,0.583819],[0.732170,-0.553819,0.396435],[0.294626,0.059755,0.953734],[0.073183,0.079073,0.994171],[-0.391186,0.677145,0.623218],[-0.544694,0.524583,0.654286],[-0.784936,0.451003,-0.424757],[-0.893368,0.314463,-0.320872],[-0.468764,-0.317179,-0.824396],[0.172246,-0.862209,-0.476302],[0.553758,-0.816919,0.160985],[0.303781,-0.345134,0.888028],[0.255074,0.131016,0.957976],[-0.209265,0.215094,0.953887],[-0.726035,0.598315,0.338908],[-0.987701,0.015625,-0.155400],[-0.717307,-0.596667,-0.359752],[-0.112613,-0.952849,-0.281747],[0.102573,-0.972930,0.207068],[0.340983,-0.340251,0.876309],[-0.111362,-0.209479,0.971435],[0.290017,-0.101199,0.951628],[-0.193732,0.251808,0.948180],[0.031343,0.177282,0.983642],[-0.923093,0.156865,0.351054],[-0.970794,-0.221351,0.092410],[-0.531419,-0.410779,-0.740806],[-0.306986,-0.951689,-0.002228],[0.195868,-0.773339,0.602954],[0.023011,-0.775780,0.630543],[0.282785,-0.478286,0.831416],[-0.357555,0.223884,0.906644],[-0.666951,0.180975,0.722770],[-0.688498,0.022950,0.724845],[-0.310495,0.468795,0.826899],[-0.346629,0.084811,0.934141],[-0.167547,0.609790,0.774621],[0.296060,0.176702,0.938658],[0.137822,0.027619,0.990051],[0.055696,-0.046663,0.997345],[0.523331,-0.450117,0.723502],[0.675863,-0.310099,0.668569],[0.158300,-0.474410,0.865932],[-0.613544,-0.471023,0.633747],[-0.555132,-0.628132,0.545183],[-0.870754,-0.444563,0.210089],[-0.806177,-0.537309,0.247597],[-0.720359,-0.528398,0.449232],[0.894375,0.083926,0.439344],[0.825312,0.124393,0.550737],[0.656606,0.518387,0.547807],[-0.005005,0.885952,0.463729],[0.060976,0.916684,0.394848],[0.190191,0.565508,0.802484],[0.131932,0.530747,0.837153],[-0.407483,0.554796,0.725333],[-0.024598,0.719657,0.693869],[0.297739,-0.168432,0.939634],[0.050264,-0.893521,0.446150],[0.365734,0.023743,0.930387],[-0.087344,-0.702475,0.706290],[-0.834742,-0.271615,0.478927],[-0.722922,-0.404584,0.560045],[-0.679800,0.583850,0.443800],[-0.670034,-0.708945,0.219977],[0.600299,-0.383374,0.701865],[-0.058168,0.731559,0.679281],[0.757805,0.240181,0.606616],[-0.089846,0.692465,0.715812],[-0.897000,0.052980,0.438765],[-0.825922,-0.508774,-0.242775],[-0.083834,-0.984405,-0.154546],[0.857845,-0.513596,0.016938],[0.683554,0.118564,0.720176],[-0.218329,0.757073,0.615741],[-0.766564,0.642048,-0.010620],[-0.785241,-0.619160,0.000671],[-0.267129,0.335368,-0.903409],[0.243660,-0.601520,-0.760765],[0.832698,-0.527879,-0.167089],[0.202551,-0.465957,-0.861293],[-0.734275,-0.222205,-0.641438],[0.082247,-0.813685,-0.575427],[0.727470,-0.664205,0.172002],[0.893185,-0.343394,0.290231],[0.569536,-0.026246,0.821528],[-0.201422,0.473983,0.857173],[0.145970,0.542955,0.826960],[-0.908231,0.395917,0.135380],[-0.734581,0.657735,-0.166570],[-0.764763,-0.297067,-0.571703],[0.069735,-0.490249,-0.868770],[0.692343,-0.713309,-0.108676],[0.300607,-0.366131,-0.880642],[-0.204627,0.383831,-0.900418],[-0.796319,0.554613,-0.241310],[-0.408673,0.601215,0.686636],[-0.656667,0.727012,-0.200415],[-0.355358,0.244606,-0.902127],[0.227210,-0.454970,-0.861019],[0.513962,-0.802759,0.302316],[0.707297,-0.699240,0.103671],[0.357494,-0.315256,0.879055],[0.149113,-0.340159,0.928465],[-0.294351,0.377606,0.877895],[0.327799,-0.272530,0.904569],[-0.186804,-0.220893,0.957213],[-0.679342,0.445906,0.582781],[-0.795770,0.565935,-0.215430],[-0.752647,0.633015,-0.181005],[-0.459426,0.133702,-0.878079],[-0.412702,0.255684,0.874233],[0.486984,-0.114536,0.865841],[0.613269,0.040590,0.788781],[0.141240,-0.486312,-0.862270],[0.479873,-0.847133,-0.228126],[0.266030,-0.721946,0.638722],[-0.133915,-0.616352,0.775964],[0.050478,-0.283670,0.957579],[-0.179113,-0.184851,0.966277],[-0.908200,0.027833,0.417554],[-0.966552,0.197516,-0.163518],[-0.707633,-0.229896,-0.668081],[-0.978942,-0.203040,0.019959],[-0.588824,-0.112094,-0.800409],[-0.458235,-0.726402,-0.512131],[-0.172887,-0.682363,-0.710227],[0.005066,-0.973998,-0.226478],[0.110385,-0.970641,0.213599],[0.317270,-0.281808,0.905484],[0.474136,-0.757714,0.448347],[0.645131,-0.613056,0.455947],[0.142003,-0.433576,0.889828],[-0.258980,0.056490,0.964202],[-0.095523,0.207343,0.973571],[-0.340465,-0.320170,0.884030],[-0.647114,-0.134800,0.750328],[-0.325144,-0.204840,0.923185],[0.051088,-0.500870,0.863979],[0.223914,-0.814539,0.535112],[0.300302,-0.717734,0.628193],[0.107883,-0.815943,0.567919],[0.275796,-0.532517,0.800195],[0.997497,-0.064486,-0.028687],[0.724723,0.332041,0.603717],[0.218970,0.899136,0.378857],[-0.666128,0.220588,0.712424],[-0.814020,-0.569872,-0.112125],[0.230598,-0.927549,0.294015],[0.551103,0.819849,0.155248],[0.543657,0.124485,0.830012],[0.483047,0.073244,0.872494],[0.823511,-0.408032,0.394055],[0.347575,-0.078555,0.934324],[0.055025,0.658406,0.750633],[0.416333,-0.309275,-0.854976],[0.455519,-0.794763,0.401013],[0.265572,-0.051210,0.962706],[-0.547594,0.323588,0.771599],[-0.072848,0.554796,0.828761],[-0.880642,0.461592,-0.106510],[-0.521836,0.724967,-0.449538],[0.786370,0.614612,0.061892],[-0.569628,-0.151677,-0.807733],[0.144536,-0.766320,-0.625965],[0.808435,-0.487930,0.329112],[0.453139,-0.089175,0.886929],[0.370708,-0.063540,0.926542],[-0.437422,0.698721,0.566057],[-0.687277,0.570849,-0.449141],[-0.638203,-0.153630,-0.754357],[0.108554,-0.377148,-0.919767],[0.705466,-0.708701,0.004425],[0.335917,-0.434065,-0.835871],[-0.203711,0.308542,-0.929106],[-0.584948,0.742454,-0.326365],[-0.231300,0.226295,-0.946165],[0.339732,-0.501846,-0.795404],[0.525498,-0.765435,0.371349],[0.665944,-0.713401,0.218024],[0.257332,-0.281747,0.924314],[0.093600,-0.190100,0.977264],[-0.358745,0.491165,0.793725],[0.161351,-0.255104,0.953337],[-0.315500,-0.125217,0.940611],[-0.713187,0.519822,0.470199],[-0.788446,0.530808,-0.310770],[-0.630940,0.712394,-0.307199],[-0.456374,0.421247,0.783715],[-0.332194,0.102237,-0.937620],[0.164129,-0.606403,-0.778008],[0.458724,-0.881130,-0.114689],[0.157353,-0.689779,0.706687],[-0.264412,-0.550920,0.791528],[-0.079409,-0.204840,0.975555],[-0.304941,-0.091800,0.947905],[-0.948576,0.117954,0.293741],[-0.946226,0.158574,-0.281899],[-0.980682,-0.154027,-0.120487],[-0.682028,-0.310099,-0.662282],[-0.462233,-0.031129,-0.886196],[-0.414289,-0.817866,-0.399274],[-0.189123,-0.734764,-0.651387],[-0.017335,-0.985351,-0.169469],[0.190954,-0.686331,0.701743],[-0.461837,-0.224464,0.858058],[-0.740501,-0.029817,0.671377],[-0.775140,-0.200262,0.599170],[0.116245,-0.782495,0.611652],[-0.147038,-0.947325,0.284433],[0.039186,-0.958708,0.281625],[0.290414,-0.630818,0.719504],[0.384625,-0.743797,0.546587],[0.568194,-0.601520,0.561480],[0.200568,-0.221198,0.954375],[0.012665,-0.370739,0.928648],[-0.365459,0.154790,0.917844],[-0.189734,0.304086,0.933531],[-0.442366,-0.113224,0.889615],[-0.539567,-0.319315,0.779015],[-0.493210,-0.655690,0.571612],[-0.083132,-0.438398,0.894894],[0.001801,-0.778344,0.627796],[0.156285,-0.485702,0.860012],[-0.291574,0.056734,0.954833],[-0.785516,-0.606128,-0.124485],[-0.408246,-0.566210,-0.716025],[-0.813990,-0.072359,-0.576312],[-0.129612,0.335856,0.932920],[-0.444105,-0.795343,-0.412488],[0.049593,-0.536119,0.842647],[-0.097995,-0.178869,0.978973],[-0.352062,-0.395611,0.848231],[-0.443770,0.008057,0.896084],[-0.876370,-0.324534,-0.355815],[-0.718497,-0.665822,0.201025],[0.428510,-0.280801,0.858760],[-0.297647,-0.212989,0.930601],[-0.429731,-0.751640,0.500351],[0.278909,-0.583789,0.762474],[0.395703,-0.659047,0.639546],[-0.101566,-0.106693,0.989074],[-0.679861,-0.289315,0.673818],[-0.899777,-0.090548,-0.426801],[-0.818751,-0.490188,-0.298837],[-0.379589,-0.719657,0.581378],[-0.062075,-0.969970,0.235084],[-0.014008,-0.853725,0.520493],[-0.107944,-0.601764,0.791314],[-0.425428,-0.397992,0.812738],[-0.376568,-0.850612,-0.366894],[-0.225043,-0.013245,0.974242],[-0.848567,-0.077181,-0.523362],[-0.781579,-0.605182,-0.151158],[-0.130528,-0.808161,0.574297],[-0.233863,-0.533372,0.812891],[-0.461135,-0.528214,-0.712943],[-0.789697,-0.248268,0.560961],[-0.134617,-0.298624,0.944823],[-0.030488,-0.260292,0.965026],[-0.810999,-0.168523,0.560198],[-0.999939,0.002441,0.009033],[-0.737602,-0.053163,0.673116],[-0.997314,0.044618,0.057619],[-0.820704,-0.057070,0.568468],[-0.999268,-0.023103,-0.029908],[-0.792566,-0.031983,0.608936],[-0.997528,-0.009949,0.069460],[-0.863155,0.059114,0.501419],[-0.977599,0.082858,-0.193365],[-0.969695,0.243416,-0.020112],[-0.822077,0.174444,0.541948],[-0.964293,0.262764,0.032929],[-0.765526,0.162114,0.622608],[-0.811365,0.221351,0.540971],[-0.996826,-0.064699,0.045961],[-0.984436,0.104831,0.140904],[-0.892727,-0.448958,-0.037965],[-0.691580,-0.617725,-0.374279],[0.752037,-0.589312,-0.295083],[0.424268,-0.586963,-0.689505],[-0.663564,-0.740593,-0.105686],[0.774590,-0.520249,-0.359600],[0.673910,-0.718528,0.171758],[-0.022884,-0.999736,0.001915],[-0.022885,-0.999736,0.001912],[0.673330,0.197851,0.712333],[0.427534,-0.609668,0.667409],[0.970611,0.165685,0.174413],[0.970885,0.085177,-0.223823],[0.929075,0.077486,-0.361583],[0.914212,-0.114933,-0.388501],[0.468093,-0.063417,-0.881375],[0.972503,0.135899,-0.189001],[0.439497,0.378643,-0.814508],[-0.397076,0.473190,-0.786370],[-0.020753,0.432691,-0.901273],[0.455611,0.283944,-0.843654],[0.012818,0.148564,-0.988800],[0.643117,-0.001831,-0.765740],[-0.045198,-0.104923,-0.993439],[0.759697,-0.171209,-0.627308],[0.013611,-0.085879,-0.996185],[0.704489,-0.132145,-0.697256],[0.986694,-0.149876,-0.062624],[0.800439,0.045656,-0.597644],[0.987426,-0.066591,0.143315],[0.998810,0.037660,0.030183],[0.643300,0.227119,-0.731132],[-0.019684,0.287484,-0.957579],[0.009980,0.087069,-0.996124],[-0.792749,0.089297,-0.602954],[-0.672353,0.231391,-0.703116],[-0.618580,0.223518,-0.753227],[0.016968,0.357158,-0.933866],[-0.643178,0.081790,-0.761315],[0.079165,0.219398,-0.972411],[-0.673574,-0.028382,-0.738548],[0.104587,0.022645,-0.994232],[0.081149,-0.128941,-0.988311],[0.734489,-0.036531,-0.677602],[0.700125,-0.275307,-0.658773],[0.003601,-0.248909,-0.968505],[0.619892,-0.348155,-0.703207],[0.035157,-0.241646,-0.969695],[0.716056,-0.258827,-0.648244],[0.040712,-0.132878,-0.990265],[0.734153,-0.147435,-0.662740],[0.039521,-0.054262,-0.997742],[0.740104,-0.061220,-0.669668],[0.151463,-0.022828,-0.988189],[0.849574,0.013398,-0.527268],[0.998627,-0.022004,0.047304],[0.988159,0.052065,0.144139],[0.716483,0.033418,0.696768],[0.597461,0.079836,0.797876],[-0.039125,0.071993,0.996612],[-0.180242,0.093326,0.979156],[-0.781701,0.081820,0.618213],[-0.874538,0.103427,0.473769],[-0.997589,0.058748,-0.036348],[-0.999451,0.016205,-0.028138],[-0.698508,-0.068941,-0.712241],[-0.701132,-0.139561,-0.699179],[-0.693258,0.004303,-0.720664],[-0.543474,0.018860,-0.839167],[-0.987976,0.078372,-0.133183],[-0.761834,-0.114628,-0.637532],[-0.673086,-0.119510,-0.729789],[-0.987915,-0.045351,-0.148045],[-0.995972,-0.087771,0.017243],[-0.978607,-0.067598,-0.194220],[-0.703360,-0.040956,-0.709647],[-0.829341,-0.040681,-0.557207],[-0.578112,0.078127,-0.812189],[-0.602893,0.378002,-0.702536],[-0.753960,-0.104984,-0.648427],[-0.650899,-0.329814,-0.683737],[0.165471,-0.301004,-0.939146],[0.560625,-0.241951,-0.791925],[0.860591,-0.139042,0.489914],[0.189835,-0.010230,0.981763],[0.190086,-0.010590,0.981710],[-0.646870,-0.226508,-0.728141],[-0.621601,-0.150914,0.768639],[-0.667714,-0.684011,-0.293680],[0.438368,-0.407361,-0.801172],[0.444105,-0.856960,0.261483],[0.189445,-0.012767,0.981808],[0.189768,-0.012976,0.981743],[-0.271859,-0.474349,0.837275],[-0.022885,-0.999736,0.001919],[-0.022884,-0.999736,0.001919],[-0.738517,-0.155004,0.656117],[-0.004089,-0.152104,0.988342],[0.709006,-0.154241,0.688070],[0.733268,-0.177435,0.656331],[0.624287,-0.175512,0.761193],[0.007935,-0.165502,0.986175],[-0.084689,-0.098575,0.991485],[-0.072237,-0.036256,0.996704],[-0.167882,0.065828,0.983581],[0.172216,0.154271,0.972900],[0.096438,0.274514,0.956725],[0.113071,0.577105,0.808771],[-0.668661,0.496536,0.553453],[-0.642140,0.620106,0.450636],[-0.959044,0.169897,0.226508],[-0.831446,0.125645,0.541185],[-0.578356,-0.707877,0.405408],[-0.266182,0.107028,0.957945],[-0.233009,-0.533494,0.813044],[-0.022882,-0.999736,0.001906],[-0.213507,0.630818,0.745933],[-0.657308,0.602069,0.453230],[0.113926,0.913846,0.389691],[0.132908,0.744346,0.654408],[0.852962,0.504501,0.133732],[0.817743,0.529252,0.226051],[0.920743,0.322092,0.220069],[0.860805,0.206946,0.464888],[0.908750,0.035096,0.415845],[0.958922,0.069918,-0.274850],[0.993133,-0.098605,-0.062807],[0.974578,-0.173772,0.141179],[0.765526,-0.156102,0.624134],[0.669118,-0.109165,0.735069],[0.990570,0.096072,-0.097629],[0.743522,0.307505,-0.593768],[0.630360,0.317423,-0.708396],[0.991150,-0.130558,0.022950],[0.966552,-0.255440,-0.021912],[0.965972,-0.258339,-0.010437],[0.982757,-0.175207,0.058992],[0.992798,-0.105747,0.055910],[0.720969,-0.045503,0.691427],[-0.034333,0.029511,0.998962],[-0.782342,0.046571,0.621082],[-0.999146,0.015259,-0.038118],[-0.999695,0.010437,-0.022217],[-0.812098,-0.048708,0.581469],[-0.703177,-0.097507,0.704276],[-0.004517,-0.130833,0.991363],[-0.007752,-0.082308,0.996551],[0.037416,-0.056154,0.997711],[-0.706076,0.028291,0.707541],[-0.783166,0.051912,0.619617],[-0.024873,0.003052,0.999664],[0.711264,-0.088290,0.697348],[0.760247,-0.167241,0.627705],[0.703452,-0.196600,0.682943],[0.715629,-0.217200,0.663808],[0.633625,-0.137455,0.761315],[0.768731,-0.061342,0.636616],[0.815119,0.553575,0.170629],[0.606739,0.630848,0.483596],[-0.581469,-0.077731,0.809809],[-0.191382,-0.274178,0.942412],[-0.101627,-0.094821,0.990265],[-0.577929,-0.146458,0.802789],[-0.842830,-0.271798,0.464461],[-0.789758,-0.423322,0.443892],[-0.556963,-0.320353,0.766228],[-0.801660,-0.566759,0.189917],[-0.473739,-0.604938,0.639973],[-0.189642,-0.421247,0.886868],[0.033662,-0.564440,0.824763],[0.065462,-0.510971,0.857082],[0.457930,-0.836726,0.300211],[-0.428724,-0.813074,-0.393780],[-0.844844,-0.509262,0.163823],[-0.597247,-0.731468,-0.328929],[-0.918668,-0.082675,0.386212],[-0.568499,0.191504,0.800073],[-0.082064,0.171300,0.981780],[-0.231239,-0.081149,0.969481],[-0.275582,-0.165868,0.946837],[-0.228187,-0.417707,0.879452],[0.454299,-0.753960,0.474410],[-0.859340,-0.070620,0.506455],[-0.908994,0.192694,0.369518],[-0.793023,-0.265603,0.548173],[-0.831538,-0.162023,0.531266],[-0.636860,-0.043245,0.769738],[-0.960540,-0.155431,-0.230598],[-0.759514,-0.221534,-0.611560],[-0.329569,-0.567431,-0.754570],[-0.720969,-0.110324,-0.684072],[-0.078219,-0.290536,-0.953642],[-0.627308,0.141881,-0.765709],[-0.057527,0.332194,-0.941435],[0.571337,0.119083,-0.812006],[0.518998,-0.397595,-0.756645],[0.918302,-0.321726,-0.230628],[0.931730,0.255684,-0.257820],[0.530412,0.343028,-0.775201],[-0.143071,0.122105,-0.982147],[-0.742973,0.064791,-0.666158],[-0.114353,-0.412793,-0.903592],[0.522263,-0.431989,-0.735252],[0.547777,-0.587970,-0.595141],[0.911893,-0.393262,-0.117374],[0.895016,-0.445326,0.023896],[0.614277,-0.762810,-0.201819],[0.785852,-0.602527,0.139073],[0.676229,-0.074862,0.732841],[0.836848,-0.081179,0.541337],[0.158849,0.524918,0.836177],[0.124607,0.381787,0.915799],[-0.545122,0.465194,0.697409],[-0.528459,0.617634,0.582415],[-0.870724,0.244514,0.426618],[-0.879086,0.369518,0.301004],[-0.861904,0.092959,0.498398],[-0.939024,0.265481,0.218360],[-0.800989,0.146825,0.580340],[-0.933012,0.354320,-0.062441],[-0.871822,0.392438,0.293069],[-0.853938,0.432813,-0.288827],[-0.859920,0.289834,-0.420118],[-0.882778,0.296487,-0.364391],[-0.843043,-0.035585,-0.536637],[-0.900204,0.032411,-0.434248],[-0.940397,-0.090670,-0.327738],[-0.303659,-0.248543,-0.919767],[-0.177007,-0.240944,-0.954222],[0.707877,-0.278664,-0.649007],[0.856563,-0.292093,-0.425367],[0.931272,0.008728,0.364147],[0.761498,-0.370952,0.531480],[0.792016,-0.321512,0.518937],[0.594653,-0.691519,0.410047],[0.684927,-0.528123,0.501907],[0.410627,0.115604,0.904416],[-0.683889,0.142766,0.715445],[-0.816431,-0.008393,-0.577349],[-0.917600,-0.155431,-0.365825],[-0.945433,-0.017731,0.325236],[-0.880184,-0.313578,-0.356243],[-0.362835,-0.288003,-0.886227],[-0.076876,-0.244087,-0.966674],[-0.740959,0.058504,-0.668966],[-0.640980,-0.043184,-0.766320],[-0.682913,0.232917,-0.692343],[-0.755303,0.061861,-0.652425],[-0.876797,-0.174230,-0.448134],[-0.232948,-0.314615,-0.920164],[-0.874996,-0.354320,-0.329814],[-0.162755,-0.610492,-0.775079],[0.652516,-0.745384,-0.136296],[0.881436,-0.171911,-0.439833],[0.814112,-0.270608,0.513749],[0.919340,-0.041017,0.391308],[0.846583,-0.382427,-0.370098],[0.744072,-0.554460,0.372692],[0.710746,-0.504501,-0.490158],[0.554582,-0.732231,0.395245],[0.741997,-0.529435,0.411237],[0.792627,-0.304605,-0.528123],[0.040193,0.064486,-0.997101],[0.233680,0.030091,-0.971831],[0.906339,-0.171209,-0.386242],[0.217933,0.004028,-0.975951],[0.899167,-0.117008,-0.421644],[0.273659,-0.301401,-0.913358],[0.846736,-0.378857,-0.373424],[0.760369,-0.471816,-0.446303],[0.934812,-0.324595,0.144047],[0.937254,-0.345408,0.046663],[0.673574,-0.397168,-0.623310],[0.722221,-0.516984,-0.459426],[0.895810,-0.411573,0.167638],[0.819117,-0.514206,-0.254189],[0.884793,-0.411908,0.217750],[0.836421,-0.499741,-0.224982],[0.897031,-0.326975,0.297250],[0.921110,-0.371044,-0.117801],[0.916623,-0.152379,0.369518],[0.930906,-0.103763,0.350169],[0.981140,-0.190924,0.029054],[0.895596,-0.133457,0.424329],[0.963713,-0.263253,0.043825],[0.942961,-0.287179,0.168187],[0.833308,-0.215125,-0.509201],[0.958403,-0.228645,0.170812],[0.931944,-0.133671,-0.337046],[0.320292,0.026551,-0.946928],[0.632557,0.015381,-0.774346],[0.979522,-0.043245,-0.196478],[0.713675,0.082430,-0.695578],[-0.005341,0.087924,-0.996094],[-0.190954,0.097415,-0.976745],[-0.494797,0.109653,-0.862026],[0.176092,0.051607,-0.983001],[0.034455,-0.109653,-0.993347],[0.829279,-0.268990,-0.489822],[0.588214,-0.364696,-0.721763],[0.426099,-0.469192,-0.773461],[0.323008,-0.512680,-0.795465],[0.190252,-0.460799,-0.866848],[0.143132,-0.421552,-0.895413],[0.024079,-0.252449,-0.967284],[0.128574,-0.335093,-0.933348],[-0.488907,-0.029145,-0.871822],[-0.599719,0.098148,-0.794122],[-0.471999,0.099979,-0.875881],[-0.644917,0.229926,-0.728813],[-0.591815,0.265877,-0.760918],[-0.066012,0.099216,-0.992859],[0.004120,-0.046754,-0.998871],[-0.668416,0.228889,-0.707663],[-0.688162,0.287637,-0.666066],[-0.699911,0.338237,-0.629017],[-0.813837,0.214606,-0.539964],[-0.800623,0.253517,-0.542833],[-0.793664,0.224311,-0.565477],[-0.771203,0.394116,-0.499863],[-0.812891,0.321543,-0.485580],[-0.824488,0.182012,-0.535783],[-0.903989,0.250343,-0.346538],[-0.866421,0.350902,-0.355144],[-0.935301,0.343669,-0.084109],[-0.634053,0.629505,0.449049],[0.066500,0.610340,0.789300],[0.094943,0.455794,0.884976],[-0.239509,0.401440,0.883999],[-0.828730,0.543382,0.133763],[-0.769097,0.465957,0.437422],[-0.937590,0.262917,-0.227454],[-0.890744,0.251167,-0.378765],[-0.605701,-0.042085,-0.794549],[-0.719291,0.041597,-0.693442],[-0.559832,-0.156407,-0.813685],[-0.511887,-0.133732,-0.848567],[-0.455641,-0.204718,-0.866268],[-0.328837,-0.249825,-0.910733],[-0.142369,-0.218970,-0.965270],[-0.765709,0.165227,-0.621570],[-0.842463,0.125950,-0.523789],[-0.874172,0.066622,-0.480972],[-0.926481,0.153935,-0.343394],[-0.966063,0.165929,-0.197882],[-0.949065,0.298746,-0.099979],[-0.643269,0.467025,0.606647],[-0.076571,0.373028,0.924650],[0.627613,-0.003632,0.778497],[0.787042,0.201819,0.582904],[0.769127,0.303018,0.562639],[0.989654,-0.134312,0.049928],[0.955535,-0.146855,0.255593],[0.876522,-0.220405,0.427900],[0.685873,-0.035554,0.726829],[0.895962,-0.255898,0.362896],[0.761742,-0.087344,0.641926],[0.896664,-0.283914,0.339610],[0.846797,-0.308847,0.432997],[0.428297,0.066805,0.901120],[0.721183,-0.193152,0.665242],[0.217689,0.132023,0.967040],[-0.296762,0.329020,0.896451],[-0.154271,0.305490,0.939604],[-0.836909,0.332987,0.434370],[-0.867794,0.352855,0.349834],[0.075594,0.336528,0.938627],[-0.889645,0.360179,0.280679],[-0.495163,0.369060,0.786493],[0.106632,0.189032,0.976135],[0.604327,-0.041231,0.795648],[0.610309,0.076662,0.788415],[0.600269,0.198309,0.774773],[0.549181,-0.013367,0.835566],[0.825831,-0.272866,0.493454],[0.699789,-0.238258,0.673391],[0.947264,-0.118229,0.297739],[0.999939,0.004761,0.006684],[0.922575,-0.073183,0.378796],[0.628193,-0.097629,0.771874],[0.680685,-0.144597,0.718131],[0.006806,-0.138859,0.990265],[-0.093356,-0.095798,0.990997],[-0.667226,-0.058565,0.742515],[-0.783563,-0.040040,0.619983],[-0.991974,0.041932,0.119053],[-0.998169,0.048891,0.035127],[-0.628742,-0.094119,0.771844],[-0.981719,0.039125,0.186132],[-0.919797,0.147557,0.363567],[-0.467147,0.043794,0.883084],[-0.154942,0.381787,0.911161],[-0.737907,0.474075,0.480300],[-0.944578,0.275613,-0.178259],[-0.620808,0.527299,0.580065],[-0.911008,0.401379,-0.094485],[-0.919218,0.376141,0.116184],[-0.546648,0.384289,0.743950],[0.016968,0.291757,0.956328],[0.034913,0.422895,0.905484],[0.184393,-0.150670,0.971221],[0.071871,-0.208258,0.975402],[-0.711570,0.138890,-0.688711],[-0.944578,0.081240,-0.318033],[-0.831782,0.101108,-0.545793],[-0.629933,0.108463,-0.769005],[-0.044374,0.104617,-0.993500],[-0.808832,0.118076,-0.576037],[0.964690,-0.212928,0.154820],[0.941740,-0.123814,0.312662],[0.868954,-0.289499,0.401318],[0.843043,-0.469741,0.261818],[0.906461,-0.406964,-0.112522],[0.744316,-0.661458,0.091586],[0.496200,-0.865474,0.068606],[0.336100,-0.920408,-0.199622],[-0.189428,-0.862178,-0.469832],[-0.863826,-0.120243,-0.489181],[-0.930265,0.220832,0.292947],[-0.998901,0.035524,-0.029847],[-0.992492,0.034181,0.117191],[-0.582141,0.057466,0.811029],[-0.585315,-0.009827,0.810724],[0.179022,0.003021,0.983825],[-0.300455,-0.273690,0.913663],[-0.473281,-0.601215,0.643818],[0.479354,-0.178808,0.859188],[0.798059,-0.255226,0.545824],[0.853755,-0.158208,0.495987],[0.793237,-0.603534,0.080477],[0.925413,0.029847,0.377758],[0.985321,-0.037477,-0.166448],[0.839229,-0.026612,0.543107],[0.718650,-0.027863,0.694784],[0.657796,-0.021271,0.752861],[0.027650,0.294992,0.955077],[-0.482650,0.376049,0.790948],[-0.869747,0.112918,0.480331],[-0.741234,-0.242775,0.625751],[-0.049165,-0.061251,0.996887],[-0.869106,0.255013,0.423780],[-0.928129,0.138524,-0.345470],[-0.951262,-0.045534,-0.304910],[-0.242836,-0.228614,-0.942717],[-0.493118,-0.130314,-0.860103],[0.786401,-0.295480,-0.542405],[0.842555,-0.312510,-0.438612],[0.916959,-0.040468,0.396863],[0.874813,-0.237190,0.422376],[0.634175,-0.438917,0.636494],[0.701407,-0.396863,0.591998],[0.560442,-0.657796,0.503159],[0.277749,-0.867275,0.413099],[0.289865,-0.941954,0.169347],[0.162420,-0.969604,-0.182836],[0.616840,-0.782647,0.083071],[0.259316,0.110782,0.959380],[-0.737571,0.062410,0.672353],[-0.817957,0.158544,0.552965],[-0.921110,-0.092410,-0.378155],[-0.134526,-0.392987,-0.909635],[0.904904,-0.152532,-0.397259],[0.820978,-0.321757,0.471603],[0.263283,0.048219,0.963500],[-0.781823,-0.001373,0.623463],[-0.869167,-0.416913,-0.265816],[-0.221351,-0.557939,-0.799768],[0.693533,0.090243,-0.714713],[0.772729,0.622974,0.121494],[0.826289,0.311960,0.468947],[0.229469,0.064730,0.971129],[-0.801569,-0.200293,0.563341],[-0.789056,-0.586383,-0.183081],[-0.789300,-0.584216,-0.188818],[-0.701590,0.000793,0.712546],[-0.666402,-0.190344,0.720847],[-0.551561,-0.833979,-0.014374],[-0.007416,-0.588946,-0.808100],[0.121586,-0.724113,-0.678854],[-0.417768,-0.894314,0.160100],[-0.463912,-0.884976,-0.039277],[-0.619465,-0.298105,0.726188],[-0.509537,-0.239418,0.826441],[0.053896,0.623585,0.779870],[0.025910,0.825129,0.564318],[0.144536,0.461348,0.875332],[0.167364,0.458296,0.872860],[0.089663,0.603870,0.791986],[0.890072,0.340587,0.302835],[0.798029,0.081210,-0.597064],[-0.007019,-0.420545,-0.907224],[0.792718,0.073977,-0.605029],[0.571062,0.820429,0.027528],[0.420911,0.904935,-0.062044],[0.571520,0.491104,-0.657369],[0.698630,0.240150,-0.673940],[0.608539,0.791375,0.057955],[0.738426,0.655690,0.157323],[0.833461,0.070376,-0.548021],[0.911954,0.110050,0.395184],[0.194922,0.444014,0.874538],[-0.333079,-0.039399,0.942045],[-0.435652,-0.778710,0.451369],[-0.542436,-0.839991,-0.011689],[-0.133122,-0.967101,0.216712],[-0.508103,-0.834925,0.211310],[-0.475204,-0.755760,0.450514],[0.079562,-0.195471,0.977447],[-0.276681,-0.797967,0.535386],[-0.561113,-0.551042,0.617603],[-0.710166,-0.464400,0.529099],[-0.585589,-0.809503,-0.041688],[-0.381146,-0.715476,0.585467],[-0.422193,-0.904386,0.061800],[-0.060121,-0.856807,-0.512070],[0.006897,-0.957976,-0.286660],[-0.333506,-0.935942,0.112827],[0.134861,-0.987091,-0.086215],[-0.161718,-0.965972,0.201727],[0.163915,-0.925077,0.342540],[-0.022950,-0.609455,0.792474],[-0.164373,-0.796808,0.581408],[0.510941,-0.105838,0.853053],[-0.166723,-0.531785,0.830287],[0.407636,0.183325,0.894528],[0.808222,0.545213,0.222449],[0.421613,-0.886990,-0.188208],[0.368419,-0.860317,-0.352214],[-0.218329,-0.918302,-0.330180],[-0.204352,-0.767449,-0.607654],[0.710654,-0.574541,-0.406018],[0.932401,-0.356883,-0.056581],[0.949248,-0.129887,-0.286325],[0.426008,-0.492752,-0.758721],[-0.155156,-0.950896,-0.267678],[0.032929,-0.988891,-0.144841],[-0.134434,-0.965148,-0.224372],[0.067202,-0.615162,-0.785485],[-0.362774,-0.924589,-0.116123],[0.727409,-0.592883,0.345470],[0.638050,-0.514847,0.572527],[0.902799,-0.078829,0.422712],[0.856624,-0.203497,0.474044],[0.113834,-0.199683,0.973205],[-0.680105,-0.033937,0.732292],[-0.791284,-0.557054,-0.252022],[-0.628101,-0.327586,0.705771],[-0.106143,0.776452,0.621143],[-0.255074,0.772515,0.581469],[-0.030824,0.967650,-0.250374],[0.394971,-0.830409,0.392895],[0.376598,0.457411,-0.805567],[0.505814,0.469253,-0.723808],[0.079470,-0.405499,-0.910611],[-0.039796,-0.690420,-0.722282],[0.920957,-0.222755,-0.319620],[0.866939,0.379498,0.323038],[0.302591,0.055757,0.951476],[-0.684011,-0.343699,0.643391],[-0.671804,-0.739860,-0.035524],[-0.592273,-0.784539,-0.183447],[0.763390,-0.520157,-0.382916],[0.877010,-0.179052,-0.445784],[-0.802210,0.041108,0.595599],[-0.772912,-0.209693,0.598804],[-0.699057,-0.707327,-0.104678],[-0.168218,-0.353801,-0.920042],[-0.254280,-0.009278,-0.967071],[0.263833,0.457747,-0.848994],[0.041078,-0.736015,-0.675680],[0.953795,-0.281167,-0.105808],[0.873775,0.448347,0.188330],[-0.320078,0.865963,-0.384167],[-0.221351,-0.951109,0.215339],[0.140141,-0.369427,0.918607],[0.387524,0.139622,0.911191],[-0.522355,0.368542,0.768944],[-0.660451,0.012513,0.750755],[-0.491470,-0.326426,0.807367],[-0.151097,0.764122,0.627064],[0.563097,0.005921,0.826350],[-0.515763,-0.486587,0.705100],[-0.497909,-0.864345,0.070589],[-0.288888,-0.836360,-0.465835],[-0.526200,-0.846095,0.084719],[-0.239051,-0.943449,0.229621],[0.045808,-0.659413,-0.750359],[-0.639424,-0.712516,-0.288858],[0.317942,-0.842860,-0.434126],[-0.525864,0.337260,-0.780816],[0.251473,0.293924,-0.922117],[0.210120,-0.754173,-0.622120],[0.325144,0.335215,-0.884243],[0.140172,0.942717,-0.302622],[-0.008698,0.940153,-0.340556],[-0.936521,0.154790,-0.314524],[0.377514,-0.837703,0.394574],[0.073977,-0.082675,0.993805],[-0.345622,-0.210761,0.914365],[0.170141,-0.160405,0.972259],[-0.283090,0.834162,0.473251],[-0.116489,0.814753,0.567949],[-0.108463,-0.282632,0.953063],[0.318918,-0.839320,0.440230],[0.182897,-0.939817,0.288522],[0.047121,-0.936033,0.348643],[0.279885,-0.645070,0.710990],[0.583178,-0.704031,0.405194],[0.205847,-0.810602,0.548173],[-0.009247,0.155187,0.987823],[0.245643,-0.647267,0.721549],[-0.040864,0.836573,0.546281],[0.580584,0.802026,-0.140080],[0.661000,0.340190,-0.668813],[0.856044,0.353862,-0.376751],[0.418500,0.868984,-0.263924],[0.695059,0.484115,0.531480],[0.358074,0.756096,0.547746],[0.458022,0.246406,0.854091],[0.441359,-0.545030,0.712821],[0.448592,-0.197943,0.871517],[0.085940,-0.496902,0.863521],[-0.124485,-0.541765,0.831233],[0.060183,-0.934080,0.351909],[0.281564,-0.877255,0.388714],[0.335490,-0.530076,0.778710],[0.386486,-0.830927,0.400159],[0.560015,-0.825617,-0.068422],[0.375774,-0.888424,-0.263588],[0.161321,-0.937895,-0.307077],[0.459120,-0.888211,0.015564],[0.293069,-0.934446,0.202185],[0.436720,-0.899503,-0.010498],[0.810022,-0.214057,-0.545885],[0.752922,-0.588031,-0.295450],[0.442061,-0.440138,-0.781549],[0.625507,-0.779656,0.029054],[-0.162572,-0.599414,-0.783715],[-0.358043,-0.932951,0.037446],[0.444258,-0.681356,-0.581683],[-0.369243,-0.593799,-0.714835],[0.460646,-0.805200,0.373333],[-0.890011,0.069979,0.450484],[-0.763207,-0.205237,0.612659],[-0.230384,-0.393139,0.890133],[-0.658834,0.669912,0.342174],[-0.824824,0.362011,-0.434217],[-0.339824,0.517869,-0.785028],[0.266060,-0.746178,-0.610218],[0.361644,0.428846,-0.827815],[0.010956,0.986877,-0.161046],[-0.296579,0.705954,0.643117],[-0.318064,-0.415571,0.852107],[0.066775,-0.944365,0.322001],[0.108371,-0.985778,0.128269],[0.044923,-0.976074,0.212683],[0.151128,-0.748894,0.645192],[0.516434,-0.766015,0.382733],[0.457961,-0.886593,-0.064394],[0.261208,-0.961486,0.085330],[0.438551,-0.893918,-0.092563],[0.794610,-0.546312,-0.264748],[0.415723,-0.839808,-0.349071],[0.341990,-0.928281,-0.145909],[0.568072,-0.815760,-0.108585],[0.870693,-0.480911,-0.102756],[0.954253,0.259804,-0.147801],[0.659169,0.737266,0.147893],[0.337321,0.940672,-0.036439],[0.801904,0.426374,-0.418439],[0.534135,0.447462,-0.717246],[0.565905,-0.318461,-0.760460],[0.890988,-0.134465,-0.433607],[0.615772,-0.787896,0.000183],[0.302683,-0.636189,-0.709647],[0.165899,0.978912,-0.118931],[-0.066713,0.707266,0.703757],[-0.176336,-0.006714,0.984283],[0.118931,-0.753624,0.646413],[0.109684,-0.891110,0.440321],[-0.067751,-0.624287,0.778222],[-0.279183,-0.658650,0.698691],[-0.002350,-0.981262,0.192572],[0.291726,0.111942,0.949889],[0.310007,-0.657125,0.687063],[0.323496,0.624775,0.710593],[0.589923,0.409619,0.695791],[0.283578,-0.331400,0.899838],[0.200232,-0.651357,0.731834],[0.217994,-0.934385,0.281716],[0.324534,-0.889615,0.321268],[0.736137,-0.521378,0.431532],[0.708426,-0.702078,0.071902],[0.454543,-0.305246,0.836756],[0.204474,-0.873379,-0.442000],[0.775414,-0.622150,-0.107730],[-0.278481,-0.761895,0.584765],[-0.844569,-0.530168,-0.074587],[-0.944365,0.053529,0.324503],[-0.896390,0.216254,0.386853],[-0.558702,0.204230,0.803797],[-0.572863,-0.071780,0.816492],[0.323862,-0.028230,0.945647],[0.005097,0.200842,0.979583],[-0.086245,0.246010,0.965392],[-0.552202,0.281899,0.784570],[-0.617756,0.275521,0.736473],[0.450453,0.005219,0.892758],[-0.690146,0.117344,0.714072],[-0.955657,0.104770,0.275124],[-0.926908,-0.083834,-0.365764],[-0.905576,-0.284616,-0.314463],[0.061495,-0.295236,-0.953429],[0.891507,0.114017,-0.438337],[0.927091,0.075137,0.367199],[0.166723,0.027070,0.985626],[-0.628956,0.048952,0.775872],[-0.765435,-0.193365,0.613758],[-0.897183,-0.383282,-0.219337],[-0.285134,-0.477432,-0.831080],[-0.876675,-0.319437,-0.359630],[-0.384686,-0.290902,-0.875973],[0.791101,-0.126011,-0.598529],[0.814631,0.129246,-0.565355],[0.922849,0.174474,0.343303],[0.812952,0.538347,0.221961],[0.371624,0.370800,0.851100],[0.235969,0.414045,0.879116],[0.156743,0.184149,0.970306],[-0.938780,-0.086398,0.333445],[-0.825556,-0.511765,-0.237709],[0.085177,-0.365093,-0.927061],[0.796136,0.278268,-0.537309],[0.897122,0.319010,0.305551],[0.251289,0.541642,0.802149],[-0.608631,-0.029878,0.792871],[-0.663411,-0.306711,0.682455],[0.168859,0.455672,0.873959],[0.683981,0.715842,0.140294],[0.774682,0.172948,-0.608203],[-0.147954,-0.613910,-0.775353],[0.827174,0.024903,-0.561357],[0.881436,0.360790,0.304697],[0.207068,0.303018,0.930204],[-0.783105,-0.133030,0.607471],[-0.775506,-0.624592,-0.091647],[-0.791223,-0.527940,-0.308481],[-0.107822,-0.367809,-0.923612],[-0.839595,-0.485427,-0.243690],[-0.493698,-0.722678,-0.483718],[0.267159,-0.432905,-0.860897],[0.855068,-0.165502,-0.491348],[0.912992,0.199011,0.356120],[0.242744,0.112644,0.963500],[-0.442427,-0.093936,0.891842],[-0.777917,-0.586718,0.224891],[-0.542619,-0.838527,-0.049196],[-0.835597,-0.548997,-0.018525],[-0.801843,-0.554735,0.221900],[-0.125919,-0.443617,0.887295],[-0.647633,-0.703238,0.293191],[-0.865017,-0.427015,-0.263375],[-0.821314,-0.369793,0.434339],[-0.910123,-0.195410,0.365337],[-0.769066,-0.612384,-0.182958],[-0.357830,-0.593982,-0.720481],[-0.361431,-0.772179,-0.522538],[-0.706839,-0.693625,-0.138737],[0.814295,-0.380596,0.438215],[0.926298,0.061739,0.371654],[0.689383,-0.714652,-0.118137],[0.308542,-0.522629,0.794733],[0.334758,-0.215583,0.917295],[0.844020,-0.457228,-0.280221],[0.448134,-0.726951,-0.520249],[-0.502457,-0.695059,-0.514176],[-0.363506,-0.839442,-0.403912],[0.012177,-0.835078,-0.549974],[0.035707,-0.917997,-0.394940],[-0.693350,-0.615802,-0.374157],[-0.441054,-0.415693,-0.795373],[-0.472304,-0.597949,0.647572],[-0.368084,-0.708304,0.602313],[-0.711722,-0.596942,0.370220],[0.267983,-0.870907,-0.411878],[0.431898,-0.650166,-0.625080],[-0.813715,0.170751,-0.555559],[-0.788903,0.128849,-0.600848],[-0.844997,0.333048,-0.418378],[-0.857082,0.458327,-0.235206],[-0.775658,-0.420667,0.470443],[-0.071078,-0.995361,0.064455],[0.575091,-0.804132,-0.150334],[-0.052797,-0.777642,-0.626453],[-0.534898,-0.047548,0.843562],[-0.555010,-0.712516,0.429243],[0.765435,-0.427198,0.481216],[0.728629,0.254524,0.635823],[0.993896,0.091586,0.061068],[0.139714,-0.674886,0.724540],[0.595019,-0.183630,0.782403],[0.556749,-0.725028,0.405316],[0.550340,-0.469466,0.690420],[0.803430,-0.463179,0.374035],[0.856777,0.506943,0.094333],[0.563646,0.801508,0.199530],[0.915830,0.156896,-0.369610],[0.846614,-0.503403,-0.172552],[0.722068,-0.689810,0.052248],[0.335765,-0.941191,-0.037202],[0.753197,0.641713,-0.144353],[0.010804,-0.779443,0.626362],[0.485092,-0.790857,0.373058],[0.904355,0.234809,0.356334],[0.509507,0.748100,0.425092],[0.434462,-0.581439,0.687826],[-0.860347,-0.468368,0.200934],[-0.571368,-0.819178,-0.049684],[-0.277078,-0.901273,-0.332957],[-0.274911,-0.955718,0.104801],[0.455367,-0.807550,0.374737],[0.918210,-0.381359,0.106967],[-0.545824,-0.614887,-0.569140],[-0.544877,-0.756737,0.361126],[0.677511,-0.251686,0.691061],[0.651265,-0.417127,0.633869],[0.636769,-0.482681,0.601215],[-0.093142,-0.667531,0.738701],[0.960021,-0.042848,0.276498],[0.997833,-0.014130,0.063997],[0.802942,0.489731,-0.339702],[0.762505,0.505814,-0.403333],[0.219337,0.667409,-0.711600],[0.230018,0.495865,-0.837367],[0.916288,0.296457,-0.269234],[0.942473,-0.031343,0.332743],[0.554949,-0.356700,0.751488],[-0.244575,-0.559679,0.791772],[-0.779870,-0.437391,0.447707],[-0.817774,-0.385876,0.426954],[-0.974700,0.073305,-0.211127],[-0.982482,-0.089267,-0.163518],[-0.882138,-0.377117,0.282052],[-0.157384,-0.505142,0.848537],[-0.790185,-0.421308,0.445021],[-0.961028,-0.184362,-0.205817],[-0.893246,-0.262062,0.365246],[-0.164708,-0.451064,0.877132],[-0.048891,-0.301096,0.952330],[-0.381756,-0.207221,0.900693],[-0.979034,-0.043733,0.198828],[-0.938261,0.047426,0.342601],[-0.326060,-0.222327,0.918821],[-0.956755,0.230720,0.177038],[-0.317972,0.023347,0.947783],[-0.875790,0.363262,0.317789],[-0.310953,0.234901,0.920896],[-0.881741,0.420911,0.212928],[-0.201025,0.664357,0.719840],[-0.836360,0.500626,0.223212],[-0.897488,0.296915,-0.326029],[-0.983215,0.181860,0.013123],[-0.662221,-0.153935,-0.733299],[-0.701804,-0.633900,-0.324931],[0.699362,-0.629048,-0.339305],[0.452498,-0.873714,0.178411],[0.699057,-0.216041,0.681600],[0.884457,-0.063387,0.462233],[0.786035,-0.344340,-0.513352],[0.919675,-0.097537,0.380322],[0.899472,-0.422742,-0.110477],[0.962371,-0.174627,0.208167],[0.884213,0.221809,-0.410993],[0.911710,0.126774,0.390728],[0.547838,0.780297,-0.301645],[-0.247383,0.503159,-0.827998],[0.067843,0.335368,-0.939634],[0.805139,0.080447,-0.587573],[0.806116,0.189642,-0.560503],[-0.352855,0.333476,-0.874203],[-0.223518,0.195105,-0.954955],[0.750664,-0.435896,-0.496414],[0.437300,-0.638874,0.632923],[-0.407582,-0.574419,0.709873],[-0.407368,-0.574186,0.710184],[-0.941313,-0.318400,0.111911],[-0.634449,-0.220588,-0.740776],[-0.448042,-0.795587,-0.407697],[0.072323,-0.800574,-0.594854],[0.072323,-0.800574,-0.594853],[0.097903,-0.903439,0.417371],[-0.407159,-0.576372,0.708531],[-0.406870,-0.576275,0.708776],[-0.793695,0.222999,-0.565905],[-0.827265,0.362835,-0.428877],[-0.231544,-0.035340,-0.972167],[-0.906095,0.308969,-0.288919],[-0.865230,0.231269,-0.444807],[-0.936399,-0.010132,-0.350719],[-0.554888,0.131535,-0.821436],[-0.922117,-0.076235,-0.379254],[-0.622059,0.330241,-0.709891],[-0.486770,0.195044,-0.851436],[0.244697,0.334819,-0.909940],[0.304239,0.308878,-0.901089],[0.865169,0.225684,-0.447768],[0.967528,-0.048250,0.248054],[0.656606,-0.315348,0.685110],[0.607715,-0.312449,0.730094],[0.708396,-0.184027,0.681387],[0.650075,-0.091647,0.754295],[0.569262,-0.217811,0.792749],[0.642659,-0.193335,0.741325],[0.499252,0.000916,0.866421],[0.513474,0.222968,0.828608],[0.553697,0.298776,0.777245],[0.070925,0.267830,0.960845],[-0.691366,0.484298,0.536119],[-0.825373,-0.012421,0.564409],[-0.598834,-0.757164,0.260903],[0.016999,-0.836299,0.547990],[0.048891,-0.315195,0.947752],[0.929838,0.153630,0.334269],[0.768426,0.551042,-0.325358],[0.991363,0.078890,0.104617],[0.765862,0.330973,-0.551256],[0.242683,0.463118,-0.852412],[0.945585,0.153569,-0.286782],[0.944823,-0.085116,0.316233],[-0.417402,0.307199,-0.855190],[-0.242500,0.593341,-0.767541],[0.233253,0.755730,-0.611866],[-0.254372,0.770959,-0.583819],[-0.466536,0.540513,-0.700095],[-0.600513,0.533525,-0.595538],[-0.947295,0.154057,-0.280801],[-0.859035,-0.389691,0.331919],[-0.217078,-0.618915,0.754845],[0.545640,-0.391186,0.741081],[-0.269295,-0.459151,0.846522],[-0.282174,-0.361370,0.888668],[-0.854579,-0.348949,0.384564],[-0.962004,-0.095584,-0.255715],[-0.863826,-0.339366,0.372295],[-0.291116,-0.223212,0.930265],[-0.865108,-0.266427,0.424940],[-0.906949,-0.302805,-0.292734],[-0.542680,0.095614,-0.834468],[-0.467360,0.584704,-0.663045],[0.171026,0.708884,-0.684225],[0.804559,0.374615,-0.460738],[0.153386,0.607044,-0.779687],[0.180822,0.198370,-0.963286],[0.861080,0.090091,-0.500412],[0.213691,-0.138615,-0.966979],[0.857509,-0.132420,-0.497085],[0.982543,-0.098758,0.157445],[0.961058,-0.013459,0.275979],[0.914243,-0.051180,-0.401898],[0.967772,-0.002167,0.251686],[0.874142,-0.066927,-0.480972],[0.965209,-0.002472,0.261391],[0.874355,0.004791,-0.485244],[0.973022,0.031159,0.228492],[0.854488,0.080782,-0.513108],[0.246864,-0.007691,-0.968993],[0.247902,-0.118259,-0.961516],[0.277871,-0.126316,-0.952239],[-0.473525,-0.295419,-0.829737],[-0.919218,-0.259285,-0.296213],[-0.901944,-0.220374,0.371319],[-0.330821,-0.150273,0.931639],[-0.880367,-0.161901,0.445723],[-0.957976,-0.156682,-0.240211],[-0.493149,-0.157994,-0.855464],[-0.379101,-0.243110,-0.892819],[-0.511063,-0.047548,-0.858211],[-0.965484,-0.089938,-0.244362],[-0.888211,-0.115268,0.444685],[-0.262856,-0.121891,0.957091],[0.472579,-0.059542,0.879238],[0.616749,-0.135685,0.775353],[0.489059,-0.264412,0.831202],[0.959777,-0.115696,0.255684],[0.571734,-0.042879,0.819269],[0.570635,-0.048341,0.819758],[0.595813,-0.023316,0.802759],[0.777978,0.032228,0.627400],[0.992431,0.112247,0.049623],[0.678579,0.131657,-0.722587],[0.220130,0.057466,-0.973754],[-0.542375,0.021729,-0.839839],[-0.976287,-0.023072,-0.215094],[-0.872097,-0.036500,0.487930],[-0.253975,-0.095798,0.962432],[-0.219581,-0.053713,0.974090],[-0.727012,0.028779,0.685995],[-0.997131,0.071688,-0.023133],[-0.744987,0.084994,-0.661611],[0.021302,0.111332,-0.993530],[0.006104,-0.003388,0.999969],[-0.221137,0.817499,-0.531754],[-0.109897,0.498795,-0.859706],[-0.404584,0.752556,-0.519547],[-0.004669,0.555406,-0.831538],[0.068361,0.937010,-0.342509],[-0.345683,0.924497,-0.160558],[-0.523850,0.840114,-0.140416],[-0.393323,0.892972,0.218787],[-0.392071,0.917020,0.072878],[-0.622822,0.676168,-0.393475],[-0.568529,0.435804,-0.697684],[-0.352702,0.400403,-0.845698],[-0.352763,0.115177,-0.928587],[0.013520,0.161992,-0.986694],[0.200049,0.211554,-0.956664],[0.363933,0.681845,-0.634510],[0.605762,0.392346,-0.692129],[0.554765,0.736808,-0.386395],[0.537797,0.839503,-0.077151],[0.856655,0.472701,-0.206610],[0.907651,0.380840,0.176305],[0.510147,0.788781,0.342845],[0.183935,0.964507,0.189337],[0.062349,0.997253,-0.039521],[-0.307871,0.949889,-0.053591],[-0.753594,0.620533,-0.216803],[-0.824549,0.442701,-0.352275],[-0.561083,0.808069,0.179418],[-0.512467,0.850917,-0.115207],[-0.557665,0.829249,0.036103],[-0.756890,0.636525,-0.148015],[-0.871426,0.480270,-0.099521],[-0.832026,0.363353,-0.419141],[-0.938383,0.276101,-0.207770],[-0.807306,0.087985,-0.583483],[-0.916288,0.114383,-0.383770],[-0.917844,-0.079043,-0.388958],[-0.647267,-0.124119,-0.752068],[-0.861446,-0.169897,-0.478530],[-0.579363,-0.189550,-0.792688],[-0.416181,-0.160863,-0.894894],[-0.432936,-0.063417,-0.899167],[-0.101199,-0.068972,-0.992462],[0.060945,-0.131108,-0.989471],[-0.328288,-0.138218,-0.934385],[-0.250191,-0.169866,-0.953154],[-0.316202,-0.171117,-0.933103],[-0.186224,-0.076876,-0.979461],[0.051759,-0.078372,-0.995575],[0.269723,-0.116184,-0.955870],[0.153478,-0.114048,-0.981536],[0.232276,-0.047578,-0.971465],[0.609485,0.079287,-0.788781],[0.458632,-0.020875,-0.888363],[0.814722,0.163182,-0.556383],[0.768395,0.377819,-0.516465],[0.890896,0.230689,-0.391217],[0.986145,0.165471,-0.010895],[0.795556,-0.076479,0.601001],[0.307413,-0.168615,0.936491],[0.612476,-0.037385,0.789575],[0.894467,0.028901,0.446150],[0.946379,0.147496,0.287393],[0.956359,0.109348,-0.270821],[0.887234,0.107242,-0.448592],[0.746055,0.046663,-0.664205],[0.264229,0.043428,-0.963469],[0.700980,0.144688,-0.698325],[0.891354,0.164495,-0.422376],[0.908322,0.185888,-0.374645],[0.977416,0.099155,0.186468],[0.576586,-0.060488,0.814783],[0.133763,-0.217200,0.966887],[0.107852,-0.408124,0.906522],[0.410627,-0.319346,0.854030],[0.046571,-0.503922,0.862453],[0.245979,-0.407971,0.879208],[0.027894,-0.548173,0.835871],[0.249031,-0.364605,0.897214],[0.910977,0.371838,0.178381],[0.964629,0.081576,0.250587],[0.862300,0.315531,-0.396008],[0.857509,0.333872,-0.391369],[0.564348,0.360637,-0.742576],[0.888150,0.435072,-0.147862],[0.430189,0.573504,-0.697104],[0.757500,0.557451,-0.339702],[0.347148,0.621967,-0.701865],[-0.011505,0.485214,-0.874294],[-0.123936,0.468947,-0.874477],[-0.381207,0.339702,-0.859798],[-0.145054,0.500290,-0.853603],[0.106357,0.264595,-0.958464],[0.101444,0.305979,-0.946593],[-0.043245,0.001068,-0.999054],[0.173864,-0.020051,-0.984558],[0.148442,0.252327,-0.956175],[0.396405,0.495987,-0.772515],[0.003357,0.507431,-0.861660],[0.361400,0.625538,-0.691397],[-0.107364,0.569536,-0.814905],[-0.414502,0.443739,-0.794519],[-0.285379,0.387402,-0.876614],[0.193487,0.244118,-0.950224],[0.179418,-0.010529,-0.983703],[0.446394,0.046236,-0.893613],[0.272500,0.209998,-0.938932],[0.595233,0.361797,-0.717460],[0.380718,0.471999,-0.795129],[-0.299905,0.191748,-0.934477],[-0.289102,0.452162,-0.843745],[0.240669,0.552507,-0.797967],[0.670217,0.457259,-0.584521],[-0.564318,0.423200,-0.708792],[-0.160253,0.447584,-0.879727],[-0.115848,0.216285,-0.969420],[-0.274819,-0.097507,-0.956511],[-0.124607,-0.059786,-0.990387],[-0.058565,-0.021577,-0.998047],[0.141240,0.285562,-0.947874],[0.011902,0.517716,-0.855434],[0.458571,0.539018,-0.706473],[-0.121403,0.680532,-0.722556],[-0.037812,0.505936,-0.861721],[-0.324686,0.700980,-0.634938],[-0.226753,0.218940,-0.949004],[-0.401624,-0.041169,-0.914853],[-0.144047,0.270821,-0.951781],[0.037355,0.503769,-0.863002],[0.486373,0.426344,-0.762627],[-0.099094,0.675283,-0.730827],[-0.404096,0.563677,-0.720359],[-0.393445,0.678945,-0.619800],[-0.770775,0.445357,-0.455550],[-0.855373,0.453658,-0.249977],[-0.980255,0.180944,-0.079592],[-0.674245,0.466384,-0.572558],[-0.799890,0.277108,-0.532304],[-0.993530,0.109409,-0.029420],[-0.943754,0.330576,0.005005],[-0.420667,0.604846,-0.676138],[-0.887631,-0.106540,0.448042],[-0.317362,-0.511948,0.798212],[-0.167699,-0.658956,0.733238],[-0.033601,-0.726341,0.686483],[-0.101169,-0.620045,0.777978],[-0.154210,-0.462325,0.873165],[-0.484115,-0.353771,0.800287],[-0.654805,-0.220527,0.722892],[-0.309488,-0.348491,0.884732],[-0.660543,-0.224128,0.716544],[-0.829737,-0.182195,0.527543],[-0.992340,-0.119602,0.030305],[-0.934111,-0.030488,-0.355632],[-0.954711,-0.152440,-0.255470],[-0.935087,-0.036561,-0.352489],[-0.924009,-0.036897,-0.380535],[-0.801874,0.239174,-0.547502],[-0.496445,0.283486,-0.820460],[-0.572771,-0.012207,-0.819605],[-0.993316,-0.076510,-0.086337],[-0.930815,-0.189978,0.312174],[-0.900052,-0.201086,0.386608],[-0.980651,-0.030732,0.193213],[-0.924039,-0.119358,0.363109],[-0.981475,0.134434,-0.136357],[-0.966887,0.251228,-0.044282],[-0.987426,0.109653,-0.113681],[-0.859615,0.510666,-0.015412],[-0.981506,0.167211,0.093142],[-0.804773,-0.095035,-0.585864],[-0.390179,-0.194678,-0.899899],[-0.178289,-0.141026,-0.973785],[-0.862941,-0.171087,-0.475387],[-0.720145,-0.168493,-0.673025],[-0.336283,-0.066317,-0.939390],[-0.801935,-0.154790,-0.576983],[-0.412427,-0.082217,-0.907254],[-0.793786,-0.155950,-0.587848],[-0.252144,-0.103427,-0.962127],[-0.621143,-0.114994,-0.775170],[-0.169164,-0.131962,-0.976684],[-0.984466,-0.175512,0.000244],[-0.976562,-0.207831,-0.055422],[-0.975677,-0.180090,0.124912],[-0.969848,-0.196875,-0.143559],[-0.949553,-0.193365,-0.246864],[-0.975494,-0.216132,-0.041017],[-0.926420,-0.189795,0.325053],[-0.929106,-0.110935,0.352763],[-0.923887,-0.048647,0.379528],[-0.897488,-0.058779,0.437086],[-0.824122,-0.092502,0.558763],[-0.758690,-0.119541,0.640370],[-0.486984,-0.078188,0.869869],[-0.642537,-0.098849,0.759819],[-0.767815,-0.154668,0.621693],[-0.936155,-0.191015,0.295083],[-0.981903,-0.170965,-0.081362],[-0.995422,-0.089480,-0.033143],[-0.966186,-0.094699,0.239723],[-0.788141,-0.167852,0.592120],[-0.678610,-0.159978,0.716819],[-0.756432,-0.152104,0.636097],[-0.757378,-0.108829,0.643818],[-0.753075,-0.092044,0.651448],[-0.735618,-0.097232,0.670339],[-0.702109,-0.156407,0.694632],[-0.655934,-0.108432,0.746971],[-0.818690,-0.074435,0.569353],[-0.966704,0.017792,0.255257],[-0.838038,0.016114,0.545335],[-0.668599,-0.045167,0.742210],[-0.672109,0.056887,0.738243],[-0.805872,0.105075,0.582629],[-0.958831,0.110569,0.261513],[-0.995849,0.006439,0.090609],[-0.894345,0.420850,0.151708],[-0.862148,0.322489,0.390698],[-0.716788,0.168279,0.676656],[-0.643483,0.114048,0.756890],[-0.587695,0.198340,0.784387],[-0.515519,0.497940,0.697317],[-0.427595,0.745933,0.510605],[-0.719626,0.558245,0.412854],[-0.671285,0.710410,0.211249],[-0.779077,0.607410,0.155034],[-0.698630,0.569353,0.433210],[-0.731864,0.309854,0.606891],[-0.648305,0.436720,0.623646],[-0.420911,0.265816,0.867244],[-0.372509,0.180517,0.910276],[-0.082247,0.301950,0.949736],[-0.330363,0.532792,0.779077],[-0.267953,0.784692,0.558916],[-0.327006,0.893399,0.308023],[-0.232307,0.962371,0.140812],[-0.767327,0.637532,-0.068545],[-0.627888,0.778283,-0.003235],[-0.436140,0.892300,0.116428],[-0.510422,0.818628,0.263131],[0.159276,0.925199,0.344371],[0.141179,0.921445,0.361888],[0.081576,0.743187,0.664052],[0.020081,0.587390,0.809015],[0.418226,0.473373,0.775201],[0.396954,0.186377,0.898679],[-0.011078,0.111332,0.993713],[0.247475,0.083743,0.965239],[0.453352,0.019013,0.891110],[0.528764,0.020325,0.848506],[0.582110,-0.027863,0.812616],[0.583483,-0.051637,0.810450],[0.555956,-0.084902,0.826838],[0.519517,-0.088046,0.849879],[0.519913,-0.089236,0.849513],[0.692923,0.277505,0.665426],[0.667959,0.183325,0.721244],[0.703330,0.142827,0.696341],[0.644490,-0.044130,0.763329],[0.528550,-0.140934,0.837092],[0.827448,-0.084841,0.555040],[0.950804,0.155187,0.268075],[0.932310,-0.187841,0.309000],[0.737754,-0.258522,0.623554],[0.926023,0.181341,0.331004],[0.965056,0.047639,0.257576],[0.534043,0.041871,0.844386],[0.102878,-0.013337,0.994598],[0.417096,0.017060,0.908689],[0.090762,0.021210,0.995636],[0.410474,0.059023,0.909940],[0.216132,0.044923,0.975311],[0.269509,0.043519,0.962004],[0.407971,0.098331,0.907651],[0.990509,0.074068,0.115513],[0.918302,0.143406,0.368908],[0.640034,0.094333,0.762505],[0.818567,0.066164,-0.570544],[0.999908,-0.007721,0.008820],[0.994171,0.021119,0.105655],[0.969817,-0.060701,0.236030],[0.853542,-0.020264,0.520615],[0.482681,-0.015870,0.875637],[0.928739,0.025391,0.369793],[0.869747,0.026887,-0.492691],[0.934202,-0.027802,-0.355602],[0.595599,-0.005554,-0.803217],[0.469253,0.093875,-0.878048],[0.732139,0.122440,-0.670003],[0.441755,0.139134,-0.886258],[0.796777,0.010010,-0.604175],[0.949797,-0.011414,-0.312632],[0.703726,-0.008789,-0.710379],[0.919706,0.024903,-0.391736],[0.989349,0.022309,0.143773],[0.965392,0.143468,0.217780],[0.966887,0.124332,-0.222785],[0.873592,0.347270,0.340861],[0.880886,0.449446,0.148198],[0.595782,0.721427,0.352855],[0.555437,0.743248,0.372845],[0.686666,-0.027863,-0.726402],[0.507462,0.601856,0.616627],[0.982086,0.140904,0.124973],[0.989349,-0.012391,0.144932],[0.946135,-0.060945,0.317911],[-0.961364,0.021699,-0.274392],[0.926633,0.077120,0.367931],[0.956542,0.253883,0.143254],[0.649709,0.546525,-0.528336],[0.509323,0.696432,-0.505509],[0.812159,0.463332,0.354534],[-0.386639,0.033113,-0.921598],[-0.513321,0.144597,-0.845912],[-0.988342,-0.152104,-0.000519],[-0.992981,-0.115879,-0.023072],[-0.995300,-0.067446,-0.069277],[-0.974944,-0.211158,0.069582],[-0.996734,-0.043123,-0.067904],[0.644398,-0.213630,-0.734184],[0.848415,-0.143040,-0.509598],[0.582537,-0.301614,-0.754723],[0.869503,-0.094272,-0.484817],[0.629109,-0.024110,-0.776940],[0.850307,-0.012238,-0.526109],[0.706168,0.024628,-0.707572],[0.179632,0.002503,-0.983703],[0.151677,-0.051332,-0.987091],[0.180059,-0.351726,-0.918607],[0.173315,-0.436933,-0.882626],[0.430128,0.049471,-0.901395],[0.706870,0.112430,-0.698325],[0.404981,0.414624,-0.814875],[0.139470,0.349712,-0.926389],[0.290567,0.560350,-0.775597],[-0.217170,0.540147,-0.813044],[0.214026,0.798730,-0.562304],[-0.264901,0.684988,-0.678640],[-0.239113,0.768059,-0.594043],[0.241432,0.853816,-0.461165],[-0.629078,0.435255,-0.644002],[-0.551897,0.577349,-0.601672],[-0.646352,0.279458,-0.709983],[0.147557,-0.067843,-0.986694],[0.149388,0.304025,-0.940855],[0.146794,0.518632,-0.842280],[0.096957,0.642720,-0.759911],[0.091525,0.783441,-0.614673],[-0.080355,0.803888,-0.589282],[0.099246,0.863155,-0.495010],[-0.165136,0.848262,-0.503128],[-0.330393,0.765801,-0.551653],[-0.026673,0.803735,-0.594348],[0.085360,0.586657,-0.805292],[-0.283517,0.777581,-0.561174],[-0.087924,0.887692,-0.451949],[0.150456,0.871944,-0.465865],[-0.565020,0.727134,-0.389813],[-0.167913,0.756920,-0.631519],[-0.251625,0.592730,-0.765069],[-0.142644,0.370678,-0.917722],[-0.135105,-0.082339,-0.987396],[-0.215003,-0.421827,-0.880795],[-0.338786,-0.424451,-0.839656],[-0.390667,-0.145207,-0.908994],[-0.300821,-0.007935,-0.953642],[-0.728050,-0.117527,-0.675344],[-0.698904,-0.240852,-0.673391],[-0.580584,-0.330424,-0.744102],[-0.358531,-0.298929,-0.884335],[-0.242378,0.113071,-0.963561],[-0.247414,0.427686,-0.869381],[-0.071108,0.423200,-0.903226],[-0.258370,0.565172,-0.783441],[0.076785,0.803186,-0.590747],[0.398328,0.777154,-0.487136],[0.164098,0.851772,-0.497513],[-0.024079,0.851405,-0.523942],[-0.020478,0.796960,-0.603656],[0.087680,0.559771,-0.823969],[-0.004517,0.620899,-0.783837],[0.569048,0.594836,-0.567705],[0.179510,0.814570,-0.551561],[-0.245705,0.853908,-0.458724],[-0.228309,0.856075,-0.463637],[0.055483,0.830439,-0.554308],[0.508835,0.673025,-0.536699],[-0.416364,0.578906,-0.701041],[0.847804,0.024842,-0.529710],[-0.406598,0.352886,-0.842677],[-0.416852,0.413068,-0.809656],[-0.233833,0.481033,-0.844905],[-0.362987,0.574206,-0.733818],[-0.394452,0.594409,-0.700736],[-0.321757,0.647542,-0.690725],[-0.221198,0.655049,-0.722434],[-0.067476,0.469924,-0.880093],[0.116276,0.550615,-0.826594],[0.034181,0.788049,-0.614643],[0.079257,0.794305,-0.602283],[-0.035585,0.903073,-0.427961],[-0.096957,0.912748,-0.396802],[0.123325,0.519944,-0.845210],[0.098148,0.506455,-0.856624],[0.056520,0.595782,-0.801111],[0.101840,0.780114,-0.617237],[0.072726,0.844081,-0.531205],[0.040712,0.896023,-0.442091],[0.013398,0.875851,-0.482315],[-0.015625,0.470382,-0.882321],[0.000427,0.582476,-0.812830],[0.005371,0.770837,-0.636982],[0.010041,0.842311,-0.538865],[0.009186,0.902982,-0.429548],[0.003113,0.905698,-0.423841],[0.362163,0.443709,-0.819697],[0.447615,0.503098,-0.739219],[0.024384,0.767785,-0.640217],[0.028565,0.840999,-0.540239],[0.038270,0.896695,-0.440962],[0.034211,0.899777,-0.434950],[0.614246,0.358013,-0.703177],[0.558000,0.487869,-0.671255],[0.686666,0.407483,-0.601978],[0.675375,0.461837,-0.574908],[0.639912,0.537797,-0.548845],[0.509751,0.739708,-0.439253],[0.738456,0.229041,-0.634144],[0.439619,0.354289,-0.825343],[0.934538,0.253670,-0.249458],[0.593616,0.265328,-0.759728],[0.917936,0.368633,0.146519],[0.224006,-0.043947,-0.973571],[-0.085696,-0.120212,-0.989013],[-0.068667,-0.245949,-0.966826],[0.135380,-0.077029,-0.987762],[0.171331,-0.144475,-0.974548],[0.238868,-0.081729,-0.967589],[0.303720,-0.199530,-0.931608],[-0.267617,-0.016907,-0.963347],[-0.740745,0.144475,-0.656026],[-0.951262,0.022797,-0.307505],[-0.652852,0.026368,-0.757012],[-0.167821,0.238533,-0.956511],[0.143834,0.264962,-0.953459],[0.117008,0.288949,-0.950133],[-0.051759,0.277169,-0.959410],[-0.997131,0.055452,-0.050874],[0.974670,0.057039,0.216193],[0.982879,0.043336,0.178991],[0.971374,0.005768,0.237465],[0.972259,0.158574,0.171880],[0.953612,0.084017,0.289041]], + + 'vertices': [[14.005002,104.391901,8.960189],[12.791429,104.195147,11.998874],[14.510646,98.706713,11.809745],[12.316894,109.020296,9.742873],[13.504993,104.526201,5.251583],[11.889869,108.923067,6.548301],[10.554521,104.594141,1.129738],[9.253242,108.721926,3.313418],[6.340536,104.517275,-1.662608],[11.916278,98.707727,-0.535458],[15.206977,98.851961,3.834927],[15.733432,98.825785,8.354862],[15.039339,92.347597,12.323263],[11.683778,92.736002,15.728130],[10.902778,98.476328,14.949117],[9.598123,103.730440,14.978616],[4.771118,102.867044,16.928798],[3.928720,107.823679,16.355247],[-0.248765,107.407740,16.464532],[3.319459,113.122400,16.319078],[-0.355934,113.141314,16.913766],[-4.012169,113.095942,15.979099],[-3.591891,117.585703,16.470464],[-7.816399,112.712168,14.628895],[-7.013301,117.277826,15.213716],[-6.772378,120.615831,15.103850],[-9.491713,121.112299,11.484671],[-9.453896,117.153978,11.973241],[-10.211213,116.787416,8.082490],[-10.180359,112.447756,11.881362],[-10.842337,112.551874,8.507169],[-9.782904,116.415987,4.811289],[-10.246523,112.404070,5.556207],[-7.075714,116.119883,1.628592],[-7.592244,112.411654,2.403223],[-2.955632,115.890177,0.480196],[-7.061672,120.737818,0.212292],[-3.219188,120.149447,-0.587119],[-7.229014,123.869524,-0.382341],[-3.369448,122.713839,-1.320534],[-6.774055,129.835665,-1.283868],[-3.515898,127.379290,-2.462356],[-6.265375,135.586733,-2.723465],[-3.364001,134.882357,-2.967696],[-6.624670,139.517565,-2.538729],[-2.051682,138.811724,-2.614705],[-7.393437,141.970247,-0.710720],[-2.509509,143.696016,0.582232],[0.870836,143.744783,0.483790],[3.326007,138.610308,-2.032319],[3.561730,143.583117,0.589562],[3.646251,145.117830,1.287602],[6.191988,143.195375,1.047416],[5.887772,144.788698,1.748790],[3.691577,146.574648,1.939894],[5.731676,146.305040,2.371226],[5.212265,148.134768,2.641688],[6.488157,147.913820,4.018921],[5.996456,150.050509,2.834850],[4.849290,149.817156,2.199193],[3.408459,148.086947,2.237896],[1.563143,147.948656,2.267008],[1.588114,146.605013,1.935023],[1.338598,145.258394,1.266933],[-0.387787,145.065538,2.151355],[-3.261233,144.013948,4.086433],[-7.685821,142.642687,3.373399],[-9.845093,141.232180,-1.190470],[-8.683674,139.412828,-2.741735],[-8.077477,135.864122,-2.499141],[-9.104642,131.137453,0.016408],[-10.596901,128.648699,3.130781],[-10.037764,125.266954,3.260743],[-10.142701,121.485682,3.426919],[-10.421549,121.548220,7.332779],[-10.287459,124.291651,10.684718],[-8.950544,123.294420,12.855485],[-6.404089,122.744898,15.129255],[-3.557029,120.285723,16.547145],[-0.532044,117.495409,17.083595],[3.053992,117.446604,16.548503],[7.140190,113.272936,15.527182],[8.380081,108.308275,15.194506],[11.150032,108.790270,12.647836],[9.891891,113.517794,13.166235],[9.547054,116.740641,13.033673],[6.538821,117.036272,15.690587],[6.252158,119.915346,15.735936],[2.972175,119.997026,16.852355],[-0.569002,120.115175,17.312785],[-3.631701,122.559206,16.483034],[-3.741533,123.810328,18.183900],[-0.407801,123.711756,18.070392],[-0.174013,126.315966,19.026729],[-3.815626,126.485521,19.334297],[-6.329781,126.774790,18.874473],[-6.557199,123.907068,17.173936],[-8.556194,127.217981,17.299066],[-8.779674,124.675371,15.119171],[-10.832034,127.450876,10.157961],[-10.840828,128.061556,6.979067],[-10.760747,124.679056,6.913345],[-9.925658,131.547747,3.407850],[-10.922705,131.349047,6.971955],[-10.710608,130.864428,9.772766],[-10.328791,130.125658,13.935123],[-10.289086,127.207590,13.889963],[-8.275883,129.776735,17.086761],[-6.057838,129.400225,18.561162],[-3.704106,129.172503,19.030334],[-1.091509,128.922869,18.646606],[0.146781,128.816820,18.435895],[1.309792,128.674944,18.900955],[3.712943,128.468828,19.710582],[3.201416,125.890558,19.828985],[2.926318,123.428034,18.433988],[3.093382,122.236078,16.743898],[6.202273,122.151369,15.805940],[5.893830,123.244722,17.857675],[8.463989,123.297800,16.425340],[8.319086,125.704424,18.805532],[5.767042,125.736452,19.847875],[6.112719,128.240923,19.721708],[8.630182,128.135195,18.769796],[11.336708,127.972292,16.169469],[10.696777,125.254801,15.910289],[12.050027,125.115686,12.402150],[12.624532,128.149843,11.904066],[10.944522,129.946978,16.563653],[12.383735,131.517458,13.439472],[13.823919,129.559603,8.994335],[14.555788,131.941057,9.164549],[15.353425,129.420107,5.510942],[15.434018,132.744600,7.613045],[17.355253,135.462496,7.063089],[18.376621,131.534624,5.248849],[16.144004,127.817110,3.220988],[13.536575,129.190386,5.457510],[13.277008,128.563555,8.920355],[12.812053,125.278841,8.998003],[10.834304,122.413866,12.704498],[8.868654,121.943796,14.192325],[-0.431853,122.460276,17.254281],[9.464036,119.700464,12.730826],[10.865146,116.964312,9.678882],[11.330936,119.700396,9.200498],[12.170587,122.412912,9.097951],[13.533927,125.782488,5.092768],[13.519405,128.501238,5.379289],[13.201772,128.675661,1.865575],[11.451316,135.172579,-1.759618],[11.482650,130.820940,0.026255],[12.655406,133.197954,-2.466130],[13.486783,131.515398,-3.654498],[12.477907,129.290834,-0.919483],[13.684089,127.158915,-3.717648],[14.189754,125.471804,-0.992882],[17.795869,128.216249,-2.101907],[16.763259,125.209482,1.199749],[19.566891,126.829737,1.221147],[19.011886,129.502092,3.322498],[20.907035,131.853304,1.802714],[19.794551,134.040545,3.246491],[19.605369,135.767244,0.013379],[17.793741,139.184740,1.429308],[15.867506,138.434511,-0.850658],[17.767614,135.809130,-2.319258],[20.594142,133.455523,-1.056157],[21.769670,128.951479,-0.123373],[21.495206,130.763857,-2.884013],[19.815654,131.206163,-5.165291],[17.215503,130.598452,-6.073816],[15.065398,129.153383,-5.558402],[15.922845,132.847399,-4.299899],[18.791673,133.632479,-3.519379],[14.986927,134.758303,-3.141364],[13.949295,136.647234,-1.869846],[13.815052,139.233690,-0.686086],[15.244222,140.170443,2.043562],[11.652153,139.277544,-0.879145],[12.923555,137.089418,-1.587904],[8.563533,134.722994,-2.009239],[7.549461,126.330126,-1.360277],[10.837490,127.757540,0.047379],[10.131099,122.235376,1.294344],[12.326469,122.820436,5.163251],[11.280246,119.521502,5.631471],[10.815053,116.660067,6.403823],[11.112024,113.549463,10.033142],[10.845432,113.457567,7.010817],[8.834442,116.310068,2.853506],[9.380765,119.366701,1.864141],[5.814544,119.486536,0.296517],[5.099423,115.812174,1.174056],[8.704969,113.155283,3.541883],[4.697828,112.798883,1.825795],[5.097761,108.605112,1.004185],[1.293253,103.930491,-2.016975],[7.419367,98.634188,-3.400932],[12.626661,92.138063,-1.389527],[15.986783,92.336527,3.375727],[16.664306,92.528894,8.078111],[15.727390,86.728807,12.794160],[12.144739,87.146868,16.473752],[6.352701,87.524958,18.516616],[6.027346,92.561304,17.778043],[5.564467,97.665514,17.364246],[0.560419,97.072947,17.219003],[0.103718,102.489946,16.775270],[-4.663184,102.192377,15.710694],[-4.366188,107.042589,15.419010],[-8.581883,106.790651,13.556013],[-11.030579,106.703486,11.039790],[-11.547753,101.761599,10.379382],[-9.010409,101.925310,13.534500],[-12.302729,96.231585,10.300365],[-9.518891,96.300959,13.774416],[-10.315243,91.013102,13.635112],[-13.048697,91.003725,10.073269],[-11.078986,85.379282,13.037136],[-13.672041,85.370562,9.428256],[-11.903939,79.466692,12.375939],[-14.367646,79.458300,8.507512],[-15.172627,71.952555,7.472393],[-12.887147,71.924860,12.051845],[-13.774489,64.549334,12.167063],[-16.148787,64.594164,7.217814],[-15.853653,64.763933,1.945470],[-15.116696,72.114084,2.901236],[-14.786252,79.611528,3.838682],[-14.395516,85.397608,4.809083],[-13.717564,90.929171,5.862126],[-12.948426,96.337183,6.724397],[-12.207099,101.829706,7.588648],[-11.616854,106.743807,8.393035],[-10.945914,107.023943,5.257813],[-11.592930,102.107035,3.933772],[-12.196600,96.650705,2.284331],[-12.762528,91.159990,1.256906],[-13.380164,85.583818,0.361381],[-13.568875,79.824259,-0.408069],[-13.902346,72.343683,-1.551816],[-14.041600,65.023188,-3.062667],[-9.599162,72.681261,-5.684463],[-9.494587,65.384867,-7.300695],[-3.078923,65.628992,-8.676284],[-3.352767,72.914408,-6.947610],[0.607176,65.727045,-7.174490],[0.965461,73.071466,-5.847992],[2.793631,72.961588,-4.970656],[0.710357,80.543940,-5.120476],[2.745038,80.434443,-4.641057],[2.573885,86.906359,-5.224448],[4.422773,86.702524,-4.837483],[2.219967,92.471300,-5.128892],[8.089382,86.423838,-4.112510],[7.897047,92.387949,-4.323783],[1.924123,98.254473,-3.887837],[12.916734,86.078272,-1.449539],[16.475498,86.314180,3.643162],[17.214059,86.581369,8.216997],[16.409780,80.772242,13.180421],[12.687265,81.323854,16.849410],[6.634605,81.785578,19.110130],[2.918376,81.702616,19.156251],[2.988658,87.199854,18.363490],[0.664454,91.938822,17.511384],[-4.779255,96.617418,16.040017],[-5.252381,91.136881,16.244226],[-6.082430,85.507662,15.960645],[-6.993608,79.509722,16.004320],[-7.766823,72.034632,16.082906],[-8.382951,64.833025,16.496702],[-4.683970,65.267038,18.766776],[-3.822332,72.549540,17.745660],[-3.021020,79.946917,17.436263],[-1.872333,85.771379,17.213405],[0.631236,86.355585,17.977334],[0.202512,80.894823,18.382558],[-0.569561,73.538683,19.161046],[-1.493024,66.297335,20.661323],[2.162071,67.050280,21.459749],[2.546954,74.311853,20.238225],[6.551405,74.381899,20.146253],[6.354964,67.129023,21.481216],[13.092006,73.809137,17.623330],[13.407602,66.515024,18.803716],[16.813737,73.298548,13.991323],[17.572740,80.316523,8.522925],[16.620548,79.996798,4.096012],[18.016197,72.821032,9.100434],[18.329919,65.475145,9.663658],[17.099651,65.972948,14.777620],[17.024248,72.471682,4.294715],[13.126926,72.255465,-0.832846],[12.908304,79.769251,-1.044916],[7.904109,80.274126,-3.652945],[7.770107,72.595903,-3.849046],[7.794540,65.177103,-4.842540],[13.328277,64.813158,-1.490097],[17.328121,65.066263,4.143444],[4.856092,65.395037,-5.570734],[4.184660,72.691027,-4.437169],[4.292411,80.223940,-4.323188],[2.965561,65.611444,-6.187869],[-3.700338,97.777521,-4.037359],[-3.652155,92.016558,-5.367246],[-3.736704,86.312815,-5.932007],[0.542253,86.649027,-5.596340],[-3.510997,80.413996,-6.116606],[-9.438979,80.156336,-4.512664],[-9.281025,85.901819,-3.842760],[-8.910431,91.534014,-3.103687],[-8.486783,97.183260,-1.697090],[-8.331581,102.656115,0.101256],[-7.980393,107.363245,2.285880],[-3.464120,112.486879,1.223272],[-3.763355,107.799799,0.470339],[0.623105,112.530153,1.286124],[0.693187,108.202578,0.360631],[0.954805,115.833536,0.703843],[1.316322,119.688746,-0.173090],[1.536481,122.176813,-0.839808],[6.454277,121.941553,-0.351207],[2.001991,126.485575,-2.133056],[2.837756,134.473207,-2.687662],[8.634838,138.809206,-1.482770],[13.117439,140.991060,2.185460],[13.106403,140.324541,5.465743],[9.196985,142.612001,1.339118],[7.317905,144.269930,2.967557],[6.996337,146.025667,3.657646],[6.875938,147.461382,6.299788],[6.769360,150.089968,5.252193],[7.645594,151.613527,4.584182],[8.085625,153.171724,4.000020],[6.360801,151.944399,2.033254],[7.243907,154.219866,1.206339],[8.511966,154.847612,3.562482],[8.799280,157.209429,3.023749],[5.089794,156.763720,-0.174606],[5.124543,153.905947,0.385645],[4.868654,151.593752,1.175283],[3.045969,151.477724,0.784346],[3.136317,149.483797,1.904376],[1.367616,149.460680,1.845469],[0.093880,149.446154,2.235175],[0.054034,147.585665,3.358286],[-0.078747,146.120623,2.901478],[-1.477088,144.543795,4.475245],[-3.277161,142.660753,7.633527],[-7.683101,141.519014,6.752002],[-11.071826,141.861330,2.556037],[-12.463538,139.549013,-1.675483],[-10.242703,138.516893,-2.890531],[-8.110370,135.848940,-2.473491],[-6.547663,134.511202,0.678696],[-8.169659,133.712328,-2.320372],[-6.460900,133.235918,0.726870],[-8.006271,133.100206,3.735987],[-10.059390,132.977282,6.752150],[-10.959441,133.156939,7.284186],[-9.393086,131.164614,6.061838],[-12.982941,131.148821,5.834251],[-13.137009,133.742479,6.382509],[-15.115931,134.979845,4.042576],[-15.253573,131.982668,3.508876],[-13.101874,127.747858,5.472979],[-15.088204,128.489199,3.024923],[-11.535840,128.170839,1.186092],[-9.740490,127.305307,5.404435],[-7.154395,131.417482,3.751946],[-6.616007,131.167711,0.619278],[-8.350511,131.303240,-2.077184],[-7.213830,127.615564,0.048655],[-7.493630,127.293184,3.063941],[-8.400539,128.054064,-2.270012],[-10.903428,128.494600,-3.493599],[-13.626038,129.035265,-2.772659],[-15.728928,129.014376,-0.211681],[-15.754580,132.699419,0.214159],[-15.600607,135.905519,0.635459],[-14.378933,139.032366,4.976428],[-12.742047,137.313082,7.252776],[-11.425089,135.911104,8.488674],[-10.965863,133.168077,7.216670],[-10.090119,134.032579,11.236073],[-9.613629,132.021288,14.411689],[-7.914884,132.393023,15.633941],[-7.655331,135.743670,12.752936],[-5.768606,132.370913,17.069175],[-3.525960,132.274843,17.460391],[-1.459006,131.944139,17.115144],[0.626870,131.926180,16.697942],[2.589571,131.526140,17.543975],[4.514818,131.471926,18.293567],[6.769193,131.114550,18.375203],[9.134271,130.682680,17.414100],[10.112884,133.844439,14.596731],[11.030691,136.324495,11.805286],[8.122048,136.982332,12.810186],[7.743823,134.443361,15.192693],[5.694390,134.589113,15.274677],[5.841271,136.675310,13.526307],[8.565347,141.397402,8.751864],[5.707152,139.753420,11.185850],[5.363280,141.957964,9.588176],[3.849901,139.051546,11.532892],[3.891362,141.639315,9.935806],[5.261002,144.363955,9.260203],[3.834527,144.246492,9.448484],[3.788436,146.101122,9.769730],[2.701709,145.873751,9.931605],[2.474288,146.620790,11.305972],[4.043156,147.089800,11.057900],[2.330925,146.383806,12.955947],[4.506713,147.205187,12.606956],[3.594185,146.709826,13.583303],[3.826906,146.996965,13.853913],[4.505385,147.348421,13.103586],[5.025990,147.735689,12.614442],[5.643070,148.049150,11.550930],[5.688245,148.240786,11.964300],[6.543498,149.068682,10.715731],[6.492273,149.443621,11.321678],[6.918991,149.732317,10.241556],[7.043465,150.623781,11.249948],[7.191499,150.322100,9.647929],[7.531167,151.699053,9.307495],[7.129674,151.774492,11.432144],[7.876230,153.437746,9.427883],[8.041517,152.600283,8.711500],[8.286283,153.503801,8.906421],[8.628380,153.143358,8.194544],[8.442607,153.555544,8.340359],[9.259365,153.373217,7.749826],[9.225318,152.917940,7.628610],[8.590444,152.441042,8.084890],[8.222581,152.045443,8.178862],[7.978982,152.365175,8.132282],[8.506948,152.056749,7.655600],[8.662578,152.110186,7.810149],[9.434617,152.939547,7.336703],[9.897327,153.905733,7.051406],[9.748504,153.886751,7.300799],[10.162647,154.888750,6.940994],[9.416606,154.611803,7.613974],[9.291116,156.039186,7.627535],[8.831921,154.808641,8.251593],[8.884872,155.832506,8.516692],[9.613540,156.507097,7.802587],[9.997671,156.304049,7.054911],[10.191856,156.620119,6.796636],[9.742414,157.135485,7.399921],[10.034505,156.732180,6.686549],[10.254205,155.993654,6.314575],[9.171268,156.084566,6.775053],[10.310417,155.180666,6.245657],[10.396444,155.986483,6.441054],[10.139755,155.762148,6.860942],[10.435119,155.158663,6.387705],[10.309490,154.625322,6.624362],[9.763399,153.857500,6.934153],[9.297773,152.942568,7.191013],[8.428684,152.638109,7.215772],[7.560110,151.610827,8.708604],[7.144936,150.170382,9.090634],[6.763038,149.656755,9.422985],[6.267992,148.796602,9.988052],[5.187313,147.773348,10.529366],[5.012453,146.357256,9.587404],[6.490031,144.719500,8.463847],[7.015914,142.849657,8.100165],[7.773363,143.588686,5.455069],[9.564626,142.670855,4.917801],[12.487155,138.474184,8.737502],[13.786815,134.681337,10.103813],[14.981882,137.336702,8.049349],[18.294029,137.987703,4.546927],[15.677303,139.357790,5.117312],[7.226541,145.411562,5.833876],[6.060181,146.762682,8.791825],[6.807505,149.374773,8.537294],[7.094039,149.844896,6.778919],[7.556397,150.998888,6.833820],[8.173010,152.437746,6.923812],[9.027839,154.261049,6.727568],[9.179174,155.285692,6.325280],[9.182201,157.457155,6.145709],[8.518489,159.936113,3.039841],[4.798394,159.492464,-0.056211],[2.406033,159.129427,-0.627609],[2.697429,156.400667,-0.746004],[2.916957,153.635424,-0.120180],[0.644405,153.447252,-0.069518],[1.196486,151.217760,0.802207],[-0.475951,151.244387,1.338671],[-1.614900,153.312838,0.306323],[-2.768133,152.060427,2.897325],[-2.149763,150.610598,3.589015],[-1.136603,149.280504,4.448982],[-0.757389,147.072100,5.516023],[-0.793176,145.414797,5.001766],[-0.640373,144.722399,7.724010],[-1.449771,143.723757,7.203464],[-0.356579,142.548540,8.982317],[0.389325,144.365923,8.754726],[0.915849,141.946550,9.620633],[0.101510,139.438555,11.135856],[-1.462429,140.493685,10.426436],[-2.698020,137.556993,12.621810],[-4.670625,138.303194,11.455164],[-7.565201,138.618166,10.064918],[-10.618559,138.427492,8.743811],[-11.258441,140.898027,6.049555],[-14.448460,139.926500,1.522085],[-13.655205,135.570452,-2.217335],[-13.769158,132.542208,-2.441248],[-10.912547,131.737719,-3.278930],[-10.979119,134.534197,-3.232128],[-5.315584,135.791750,13.809418],[-3.341455,135.522081,14.317584],[-1.453779,134.196047,15.369686],[-0.770279,136.694628,13.323530],[1.952904,139.082628,11.391311],[1.403675,136.062792,13.632872],[3.676343,136.235521,13.794524],[3.401478,133.694750,15.883963],[2.387724,141.732561,9.869297],[1.743250,144.247347,9.231497],[1.655128,145.992327,9.550689],[0.476325,146.125887,9.121649],[-0.417008,146.432360,8.126767],[-0.204756,147.221254,9.981554],[0.924669,146.770510,10.741075],[0.148531,146.758959,12.164183],[0.928888,146.436922,13.312519],[2.251088,146.466066,13.658892],[3.040148,146.702745,14.001899],[3.852772,147.459581,14.115655],[3.004102,147.205034,14.416144],[2.750786,148.310106,14.572855],[1.981723,148.168245,14.594926],[1.910423,148.901094,14.558225],[1.219948,148.153337,14.417328],[1.330383,148.880861,14.431525],[1.856248,149.110430,14.880530],[2.496097,149.000216,14.549957],[2.366657,149.154436,14.901853],[3.103077,149.197130,14.464746],[3.096475,149.469530,14.705273],[2.636290,149.445330,15.192820],[3.083528,149.706987,14.995780],[3.471653,149.744661,14.501732],[3.418223,149.988848,14.585265],[3.675409,150.125002,14.357551],[3.361534,150.116243,14.602476],[3.264178,150.222841,14.554100],[3.544346,150.228899,14.375585],[3.743097,150.229754,14.304441],[3.842568,150.206347,14.317324],[3.871489,149.978899,14.287188],[4.055778,149.785952,14.195820],[3.603916,149.460390,14.335591],[4.175769,148.678072,13.932763],[3.512888,148.460131,14.265914],[4.477703,147.846056,13.658423],[4.982581,148.325762,13.257428],[5.516824,148.917574,12.693072],[6.135831,149.491991,12.283738],[6.558187,150.651064,12.338235],[6.617123,151.766603,12.698014],[7.300060,153.203066,11.402266],[6.387820,152.996782,13.569571],[6.585539,153.881762,13.393604],[6.700796,154.594179,13.205728],[7.560983,154.810778,11.395662],[6.730347,155.270144,12.837907],[7.520051,156.375017,11.055774],[6.680806,156.351610,12.611912],[7.401628,157.626528,11.378002],[8.021350,156.383852,9.867683],[7.947537,157.685625,10.155857],[8.551413,158.065157,8.794966],[8.180175,160.305330,8.869291],[8.780055,160.168383,6.049535],[9.020755,156.390383,7.454812],[8.597423,156.228395,8.260144],[8.586923,155.799593,8.888577],[8.061672,154.790102,9.383636],[8.412537,154.797213,8.868641],[8.792058,156.069948,8.822677],[9.134086,156.495180,8.608017],[9.471935,156.998476,8.041576],[9.603452,157.240343,7.272745],[10.166610,154.596956,6.476675],[7.551618,151.549685,8.113304],[6.278643,148.887056,9.261584],[9.285745,157.126787,7.990381],[8.995695,156.731722,8.485315],[8.764521,154.398516,8.512842],[8.699944,153.796816,8.638833],[8.390893,154.230257,8.271994],[7.689425,160.286699,10.383837],[7.306066,158.861574,11.333891],[6.323553,161.659029,12.186941],[6.826391,163.246538,10.619483],[5.012388,163.705736,12.121859],[3.292632,162.905886,13.977911],[2.664278,163.977541,12.893714],[2.834807,165.081530,11.508369],[5.675168,164.269426,10.951061],[0.508741,163.987871,13.151601],[0.556419,165.179857,11.481071],[-1.614810,164.625933,11.056306],[-1.505534,163.550600,12.470081],[-3.549774,162.829058,11.251980],[-4.065570,163.272081,9.961444],[-4.898696,162.046038,9.428265],[-4.409915,160.560061,11.096466],[-5.085937,158.978655,9.085916],[-4.621448,157.640337,10.122107],[-4.766412,156.383883,8.864174],[-4.474157,156.410570,10.171474],[-4.518732,155.099901,8.593665],[-4.272581,155.167604,9.857694],[-4.065734,153.620363,10.214438],[-4.141376,153.540667,8.143859],[-3.701035,152.252382,8.251684],[-4.376858,153.487734,7.569294],[-4.003828,152.245455,7.657800],[-4.563699,153.033846,7.158751],[-4.406142,152.454912,7.307311],[-4.051485,152.276278,7.071013],[-4.123615,152.948931,7.000574],[-4.658618,153.427355,6.881012],[-5.053071,153.130266,6.143917],[-5.163670,152.359926,5.785786],[-5.690304,153.265612,5.330403],[-5.260594,152.353731,5.511427],[-5.715293,152.984560,4.996314],[-5.099112,152.335772,5.424187],[-4.679728,151.494402,5.902747],[-4.520064,151.527758,5.787180],[-4.433366,152.882799,5.359969],[-3.630260,151.403414,5.990636],[-3.286704,151.264406,5.759555],[-2.388695,149.980623,5.823442],[-1.702776,148.944185,5.885200],[-1.683619,148.505373,7.674631],[-1.222654,148.119020,8.499483],[-1.338890,148.017748,9.215226],[-0.900600,147.379152,10.886121],[-0.457491,147.174273,12.057345],[0.022222,146.889406,12.648115],[0.594192,146.665972,13.525483],[-0.161481,147.371035,13.187102],[0.424484,147.108568,13.767356],[1.378444,146.532595,13.833078],[2.199246,146.556704,14.077840],[2.114162,146.996874,14.471755],[1.229810,147.023378,14.235883],[0.519911,148.153673,13.961842],[-0.093354,148.240953,13.499040],[-0.662189,147.747805,12.683943],[-1.064656,147.549379,11.278235],[-1.802589,148.214144,9.867806],[-1.949270,148.579317,10.464053],[-1.181036,148.231798,12.012597],[-0.570263,148.533052,13.252852],[0.218087,149.113726,13.991604],[-0.252844,149.344805,13.758083],[-0.678200,149.690462,13.692321],[-1.433087,149.301119,12.810575],[-1.652576,149.762743,12.918768],[-2.457041,149.728014,11.422327],[-1.808552,148.678576,11.476623],[-2.700444,149.626131,10.260008],[-2.201508,148.798479,9.314952],[-1.873818,148.772432,8.545518],[-2.277030,149.205690,8.133403],[-2.463054,149.333605,8.667068],[-2.997313,150.621050,8.237847],[-2.888175,150.541048,7.647104],[-2.749269,150.494997,7.066779],[-3.326570,151.207613,6.983686],[-3.549005,151.413546,7.533954],[-3.050222,150.732195,10.397910],[-2.808944,150.801485,11.740365],[-1.843953,150.445253,13.097223],[-0.492510,149.873980,13.890547],[-0.317644,149.719179,13.883000],[-0.132956,149.568895,13.880352],[0.254864,149.415300,14.174920],[0.725606,148.953707,14.223206],[1.353570,149.050707,14.798928],[0.629423,149.216951,14.454630],[0.978662,149.275606,15.024412],[1.331640,149.219027,15.184831],[1.800208,149.267885,15.273443],[1.152487,149.647341,15.182917],[0.591267,149.706865,14.795927],[0.536387,149.446184,14.737003],[0.265905,149.799288,14.287974],[0.240511,149.663485,14.262425],[0.011819,149.749910,13.985345],[-0.156837,149.796862,13.911002],[-0.078150,149.868334,14.016620],[-0.213709,150.029436,14.138137],[0.176480,150.328936,14.671940],[0.082232,150.831331,14.644529],[0.500372,150.952715,15.021871],[0.435474,151.585527,14.949110],[-0.210345,151.399645,14.631313],[0.150616,152.105242,14.895942],[-0.599917,151.942965,14.512495],[-0.318136,152.839022,14.718151],[-0.756751,152.914980,14.539031],[-1.002103,151.869493,14.297471],[-1.787564,152.772936,13.866858],[-1.243712,153.576418,14.205605],[-2.309542,153.484209,13.634789],[-1.268757,154.314440,14.035168],[-2.245279,154.248018,13.553370],[-2.042127,154.641680,13.737930],[-2.365658,154.730013,13.625285],[-2.622080,154.895845,13.371291],[-2.778957,154.337236,13.184462],[-2.859439,155.147951,13.070905],[-3.152642,154.546999,12.765311],[-3.557444,153.543856,12.163535],[-2.877960,153.383135,13.157740],[-3.341382,152.865374,12.385071],[-3.494272,152.097872,10.305608],[-3.009231,152.034639,12.614871],[-3.648168,154.207506,11.783494],[-3.452565,154.859163,12.149763],[-3.280473,155.299700,12.719133],[-2.980980,155.300570,13.032477],[-2.680296,155.263536,13.255345],[-2.507092,155.052904,13.408473],[-2.288901,154.890123,13.611399],[-2.013877,154.815157,13.753878],[-1.312958,154.894091,13.947000],[-1.276740,154.981691,13.980008],[-1.957118,154.942522,13.815403],[-1.241228,155.127703,13.869665],[-2.090104,155.123613,13.605433],[-1.618695,155.702623,14.013213],[-2.243886,155.547792,13.705400],[-2.325912,155.572130,13.702564],[-1.985749,155.735292,13.938686],[-2.470104,155.660814,13.893321],[-2.056252,155.874269,14.096501],[-1.328759,155.830935,14.151104],[-1.390924,155.922701,14.306417],[-0.758621,155.781664,14.259255],[-1.397672,155.953524,14.450894],[-0.752575,155.831148,14.429390],[-1.431597,156.136675,14.503691],[-2.263470,156.114962,14.251126],[-1.623202,156.626772,14.773701],[-2.441852,156.474154,14.364686],[-2.719036,156.978853,14.273843],[-3.084365,156.313631,13.869736],[-3.244926,156.651796,13.727728],[-3.435907,156.311541,13.141277],[-3.221813,155.651033,13.296612],[-3.543144,155.859591,12.721800],[-3.375517,155.502275,12.720094],[-3.640511,155.627199,12.252062],[-3.772588,155.281298,11.549892],[-4.120227,156.638430,11.575624],[-3.668568,157.042452,12.533808],[-3.340233,157.527742,13.357969],[-2.610141,158.031084,14.117298],[-1.578528,157.140337,14.907671],[-0.599617,156.821260,15.137070],[-0.938819,156.606173,15.055886],[-0.836495,156.368090,14.885208],[-0.724513,156.033587,14.559665],[-0.277168,156.112474,14.758852],[-0.164804,156.376009,15.121762],[-0.122554,156.597597,15.181017],[0.151705,156.110689,14.990538],[0.007284,155.869768,14.597764],[-0.370217,155.848665,14.493090],[-0.474392,155.609301,14.335444],[-0.538351,155.546114,14.210556],[-0.792389,155.730577,14.206374],[-0.664134,155.615923,14.028331],[-0.315132,155.364809,14.112210],[-0.287082,155.437166,14.260869],[-0.120583,155.703859,14.400901],[0.122343,155.385698,14.360301],[-0.081736,155.178530,14.226663],[-0.206957,155.188616,14.104687],[-0.314740,155.047228,14.111159],[-0.350423,155.137026,14.005733],[-0.354029,155.196856,14.044470],[-0.550466,155.093508,14.008551],[-0.541401,155.165270,14.040074],[-0.380197,155.321779,13.958315],[-1.363457,154.676119,14.000641],[-0.616532,154.627581,14.165436],[-0.382748,154.015459,14.613562],[-0.530532,153.475954,14.596203],[0.123287,153.555483,15.070992],[0.203448,154.373720,14.828598],[-0.328758,154.805452,14.206818],[-0.606430,154.928606,14.080481],[0.184070,155.124300,14.468212],[0.474767,154.487261,15.052644],[0.539776,153.823702,15.543436],[0.431127,152.996325,15.368713],[0.186047,153.098009,15.070157],[0.265728,152.788469,15.069798],[0.308973,152.660723,15.329557],[0.285184,152.273516,15.255891],[0.144570,152.550127,14.929351],[0.366266,151.973131,15.259343],[0.594888,151.729937,15.063482],[0.573690,151.978472,15.432818],[0.982708,152.203920,15.394505],[0.673297,152.000109,15.832764],[0.830580,151.973299,16.146725],[1.000616,151.923342,16.298324],[0.758686,152.224642,16.413331],[1.047152,152.249056,16.721498],[0.878414,152.652147,16.714988],[1.337776,152.261629,16.808317],[1.398108,151.940218,16.538352],[1.473614,151.723314,16.013710],[1.830560,152.008303,16.382644],[1.636354,152.309404,16.781358],[1.979302,152.349611,16.537343],[1.718656,152.738176,16.800353],[1.285020,152.691866,16.894014],[1.262139,153.046923,16.761442],[0.860146,152.976763,16.644954],[0.858353,154.176439,15.806053],[0.733587,153.241610,16.281711],[0.548934,152.937166,15.817496],[0.399814,152.386736,15.799382],[0.557109,152.069857,15.805171],[0.669974,152.613436,16.358541],[0.784399,154.808931,15.277983],[0.585910,155.327562,14.874317],[0.303477,155.589022,14.580486],[0.534582,155.793032,14.881880],[0.750365,155.402468,15.031720],[1.199584,154.943148,15.466280],[1.224894,154.250917,15.914728],[1.613067,154.253710,15.882729],[1.662247,154.898821,15.367169],[2.041683,153.977480,15.696024],[1.825583,153.353426,16.392652],[1.685008,153.061220,16.728757],[1.997317,152.749346,16.493392],[2.156180,153.101717,15.980786],[2.346645,153.192461,15.563320],[2.589037,153.807940,15.321501],[2.620765,153.347307,15.317514],[2.606494,153.028139,15.307610],[2.538936,152.889040,15.556112],[2.413234,152.592897,16.003935],[2.324762,152.250841,15.984757],[2.635873,152.205507,15.489926],[2.654082,152.516069,15.496559],[2.888562,152.385592,15.174106],[2.798477,152.821856,15.198977],[3.226417,153.201937,15.078262],[3.326662,153.870882,14.988077],[3.073234,154.369295,14.964673],[2.396267,154.598238,15.051379],[2.068631,154.650454,15.214574],[1.828962,155.454836,15.000606],[1.624852,155.492006,15.120564],[1.172759,155.499773,15.169389],[1.134485,155.939531,15.102969],[0.262135,156.293489,15.183854],[0.155084,157.184389,15.387611],[-0.391835,158.043459,15.263707],[-1.462484,158.140383,14.806699],[-1.722954,159.185808,14.648897],[-2.848054,158.874575,13.906247],[-1.814791,161.182482,14.075656],[-3.662952,160.474016,12.833364],[-2.109124,162.352800,13.429116],[-4.164149,159.302858,11.913012],[-4.075524,157.932558,11.822883],[-3.635121,158.270556,12.570363],[0.522654,162.813753,14.197834],[0.581516,161.706759,14.734017],[0.766648,159.370562,15.266022],[0.869569,158.178606,15.454160],[0.939119,157.391710,15.562544],[1.064092,156.413988,15.317695],[1.884174,156.459566,15.348647],[1.767605,157.349474,15.551436],[2.144571,158.303164,15.521396],[3.243108,158.622179,15.284767],[3.534918,157.663912,15.427176],[2.614253,157.150316,15.463585],[2.192749,156.834658,15.416242],[2.065250,156.306612,15.184946],[1.783327,155.920885,15.008747],[2.105924,155.773561,14.763607],[2.364283,155.615267,14.588073],[2.336027,155.344652,14.686840],[2.943940,155.140551,14.539309],[3.263900,155.024889,14.559671],[3.978287,154.851656,14.568245],[4.068373,154.120317,14.745289],[3.667567,153.367968,14.988523],[3.717381,152.384996,14.951114],[3.429023,151.772249,15.001057],[2.708988,151.818300,15.180089],[2.504335,151.925447,15.257473],[2.401304,152.165575,15.618495],[2.221806,152.158663,15.990086],[2.013819,152.094454,16.266937],[1.971361,152.305147,15.494948],[1.869680,151.805269,15.799863],[1.983660,151.617113,15.672899],[1.515970,151.544710,15.776799],[1.073500,151.523928,15.580430],[1.119821,151.728487,15.723681],[0.790752,151.598360,15.183917],[1.047003,151.048784,15.431859],[0.854075,150.657427,15.438213],[0.809017,150.339144,15.274903],[0.279206,150.101381,14.607924],[0.253364,149.947481,14.329721],[0.347539,149.924212,14.257782],[0.670301,149.949221,14.546086],[0.579745,150.026018,14.663101],[0.896268,150.119722,14.992690],[1.328607,150.471727,15.556135],[1.358704,150.796053,15.622596],[1.391024,151.061556,15.540270],[1.585565,151.101488,15.538420],[1.607059,150.781557,15.649234],[1.640627,150.474672,15.628085],[1.370686,150.236116,15.200460],[1.371978,150.122774,14.800913],[1.757988,150.099459,14.851031],[1.707086,150.157686,15.293368],[2.032537,150.303865,15.267701],[1.954848,150.535845,15.619758],[2.552322,150.289278,15.160939],[2.535830,150.515963,15.450340],[2.940343,150.267702,14.902927],[3.224495,150.402956,14.907153],[3.264652,150.645113,14.985686],[2.396257,150.815325,15.594892],[1.847692,150.846117,15.672276],[1.779819,151.101366,15.579770],[2.133955,151.160082,15.542288],[2.318878,151.754824,15.339169],[2.759181,151.184008,15.251356],[3.259734,151.156679,14.967349],[3.805259,150.440935,14.546447],[3.731731,150.258410,14.403687],[3.335529,150.263079,14.642855],[2.892174,150.176714,14.771818],[2.550997,150.198412,14.856739],[2.133561,150.200747,14.878287],[3.667262,150.224260,14.299314],[4.153164,150.349642,14.362527],[3.885053,151.057589,14.620885],[3.915621,151.701464,14.791226],[5.336238,152.114107,14.115942],[4.160714,152.398104,14.821990],[4.818652,153.449343,14.538021],[5.222872,154.255449,14.400050],[5.024224,154.992342,14.291921],[4.713653,155.333406,14.424288],[4.003446,155.225634,14.545896],[3.921961,155.430086,14.478846],[3.138299,155.471193,14.383314],[3.210739,155.319429,14.468289],[2.938240,155.473742,14.339846],[2.901040,155.376482,14.437869],[2.770579,155.493456,14.407192],[2.628204,155.455980,14.501981],[2.837497,155.687624,14.432503],[2.766488,155.749819,14.571099],[2.995680,155.907946,14.569599],[2.896796,155.954454,14.677942],[2.525408,155.974794,14.669723],[2.330297,156.107607,14.833772],[2.289517,156.627306,15.371108],[2.998928,157.009356,15.455943],[3.707456,157.172564,15.315273],[4.787493,157.747423,15.036474],[4.503131,158.759386,14.839976],[3.314669,159.701601,15.160698],[3.116357,161.687380,14.576640],[5.278571,161.389498,13.741784],[4.604163,159.637575,14.663359],[5.455571,158.428331,14.251585],[5.466253,157.543703,14.612746],[5.351802,157.177416,14.726814],[4.604760,157.195650,15.080591],[4.528303,156.810366,14.941141],[3.675711,156.659594,15.022571],[3.006982,156.415651,14.938769],[2.982504,156.759111,15.273200],[2.522400,156.399126,15.043276],[2.717472,156.164797,14.806786],[3.100438,156.225649,14.820840],[3.150029,156.181856,14.656357],[3.690416,156.474489,14.967821],[4.450477,156.579683,14.874345],[3.718886,156.445864,14.825552],[3.708570,156.346682,14.662876],[3.203195,156.139681,14.612307],[3.138605,156.005281,14.414673],[4.039877,156.281984,14.588099],[3.821689,155.646074,14.384036],[2.939179,155.661638,14.295550],[2.921985,155.532290,14.377299],[3.108934,155.539019,14.410933],[3.863075,155.507952,14.502191],[4.648584,155.497301,14.430755],[5.028702,155.487108,14.376520],[5.291965,155.706148,14.175323],[4.925723,155.628801,14.344374],[5.142760,155.836153,14.185665],[4.943332,155.926836,14.281944],[4.777460,155.749117,14.382859],[4.689379,155.817751,14.294199],[5.129549,156.152346,14.176805],[4.731909,156.262041,14.414111],[4.556343,155.609438,14.477143],[4.806273,156.302385,14.427163],[4.400248,156.389147,14.587476],[4.408591,156.536181,14.753301],[4.988896,156.468309,14.672040],[5.088050,156.671587,14.688993],[5.730634,156.567659,14.206142],[5.555214,156.430483,14.336784],[5.313752,156.301271,14.370593],[4.888831,156.414278,14.640957],[5.162078,156.179750,14.315488],[5.479594,156.249941,14.162307],[5.622489,156.181475,13.906552],[6.111452,156.848101,13.702666],[5.834432,157.260714,14.083104],[6.031916,158.035662,13.519335],[6.385244,159.003603,12.885652],[5.746212,159.231066,13.523466],[6.177452,160.361712,12.963675],[6.736926,157.750063,12.678665],[6.344963,156.649584,13.266543],[6.022664,156.464556,13.674909],[5.972322,156.247072,13.659177],[5.528869,156.006823,13.923120],[5.297132,156.080324,14.065818],[5.378295,156.149050,14.126538],[5.591684,155.194307,14.034883],[5.883350,154.280184,14.047851],[5.743734,153.742311,14.166553],[5.207399,152.919008,14.348815],[5.492840,151.196459,13.842609],[5.481689,150.493212,13.643580],[4.407554,150.211184,14.209012],[4.017976,150.163103,14.323481],[4.623649,149.064852,13.780530],[5.385279,149.999224,13.503291],[5.991492,155.483248,13.694315],[6.339098,155.861727,13.144554],[0.976313,150.037203,14.696759],[0.011317,149.849947,13.927885],[-0.063548,149.840014,13.917701],[0.113114,149.877565,14.026986],[0.607764,149.904146,14.644163],[1.133175,149.962801,14.932325],[0.940027,150.108629,14.632466],[1.755779,150.138628,14.833306],[1.745466,150.024630,15.049676],[1.752197,149.723986,15.286386],[2.363437,149.771318,15.305945],[2.368561,150.089296,15.057834],[2.584272,150.276979,14.799513],[2.941682,150.143114,14.881278],[2.966868,149.950106,15.037278],[2.277119,149.315844,15.280888],[-3.052030,155.549196,13.462325],[-2.908545,155.391085,13.310109],[-2.801223,155.470400,13.546147],[-2.583117,155.693041,13.902757],[-2.722375,155.871874,13.895488],[-2.129248,155.905977,14.205873],[-2.620385,155.382906,13.524824],[-2.784022,155.313326,13.297283],[-2.556082,155.365419,13.395979],[-2.353146,155.179766,13.540654],[-2.178476,155.036898,13.676166],[-1.932212,151.369905,13.377499],[-0.428760,150.615908,14.182620],[-0.621137,151.236956,14.330310],[-2.016428,152.179354,13.614907],[-2.659766,152.881899,13.312794],[-4.117987,151.838274,6.899568],[-3.918895,151.160234,6.813996],[-3.505379,150.844652,6.987352],[-3.867034,150.827303,6.537194],[-3.676263,150.809328,6.417838],[-4.532729,151.509295,6.230852],[-4.680839,151.945925,6.333561],[-4.703982,153.864214,4.914812],[-5.543156,152.988482,4.880631],[-5.752201,153.536043,4.613764],[-4.946167,154.639101,5.340782],[-5.106711,155.994143,4.694017],[-3.426168,153.625292,2.349619],[-4.068292,155.891939,1.716460],[-4.349086,158.618624,1.732551],[-5.245655,158.732317,4.624584],[-5.150922,156.662203,7.402868],[-4.998440,154.955004,6.030523],[-5.886510,155.102068,5.069043],[-5.875072,154.342196,4.675910],[-6.035249,154.304064,4.771665],[-5.895681,153.486589,4.728566],[-5.827607,154.127291,5.238726],[-5.221714,154.553255,6.153094],[-4.967554,154.414186,7.109344],[-4.749174,154.434160,7.533687],[-4.720166,154.864840,6.907135],[-4.987059,154.659136,7.422778],[-5.247983,155.273333,7.038219],[-5.258958,158.929323,7.503934],[-5.506945,155.612200,6.487507],[-5.691638,155.674318,5.718830],[-5.669998,155.448122,6.503221],[-5.829215,155.541140,5.817910],[-6.036881,154.958483,5.147866],[-5.838614,154.682604,5.446013],[-5.659700,154.943316,6.250892],[-5.357711,155.011400,7.135713],[-0.075376,158.993441,-0.551365],[0.216022,156.264696,-0.669761],[2.761357,144.144518,9.592323],[-3.932790,103.342257,-2.220631],[13.333232,127.671206,1.598649],[13.211441,104.801355,12.662020],[12.867267,104.471933,12.935947],[13.099435,104.584871,13.095741],[12.886245,104.644289,12.533860],[13.415336,104.917254,12.045749],[13.048307,104.780558,11.968566],[13.043624,104.746393,11.900760],[13.434120,104.938219,11.982497],[12.955438,104.812510,11.833975],[13.422426,105.038515,11.951263],[12.945335,104.691507,11.688852],[13.466161,105.042040,11.831917],[13.530979,105.419748,11.347190],[13.043066,105.186411,11.126501],[13.312383,105.184282,10.719591],[13.734924,105.365358,10.872465],[13.534687,105.169634,10.334275],[13.913042,105.343050,10.504482],[14.105579,104.940996,8.982096],[13.372770,104.462984,10.281229],[13.812156,104.192400,9.078057],[14.628910,104.555437,7.814168],[14.183944,103.792238,8.341044],[15.072639,104.401987,6.632717],[14.132511,102.777277,7.189673],[15.533937,104.303255,5.893917],[14.947275,102.859758,5.714205],[15.504004,101.501764,6.064066],[15.993375,102.043756,5.065891],[15.433616,100.943872,6.656533],[16.339349,100.741335,6.438952],[15.818649,100.744761,7.707818],[16.489974,100.453409,7.862210],[15.668359,100.917467,8.519484],[16.689023,100.219835,9.313331],[15.578796,101.571466,9.044937],[15.914621,101.512995,9.702095],[16.417903,100.697069,10.557144],[17.029571,100.121676,10.602655],[16.234851,100.417139,11.104331],[16.819353,99.935343,11.137693],[18.227642,100.757982,11.336185],[17.784660,100.270632,12.454229],[18.035163,101.575579,11.648142],[18.329494,101.854715,10.876924],[17.753885,102.487299,10.438464],[18.371501,101.984812,9.919792],[18.763038,102.166506,8.574721],[18.136449,103.086786,8.655032],[18.187699,103.686022,7.534006],[17.154329,104.221895,8.900842],[17.229505,104.531054,7.785068],[17.986322,104.239710,6.436874],[18.980129,103.250170,6.174807],[17.566812,104.753275,5.433823],[17.194461,104.881670,6.183993],[16.210082,104.603327,4.791821],[17.880361,105.217340,5.078297],[16.431058,105.173250,4.387719],[18.156677,105.530092,4.229261],[16.828350,105.483698,3.674467],[17.473197,106.937998,1.790822],[18.966333,107.052721,2.455096],[19.131206,109.937433,-1.009867],[16.852003,106.216043,0.953561],[17.859806,109.090349,-1.995554],[17.393032,107.984972,-2.821087],[17.058971,105.316172,0.313778],[17.708549,104.339518,-0.169815],[18.094474,106.767168,-3.471345],[19.193216,105.784586,-3.941522],[18.834798,103.521044,-0.345777],[21.333066,105.494585,-3.502721],[20.166814,103.623316,0.208537],[21.043445,104.535624,1.258868],[22.444829,106.526094,-2.383714],[23.684442,108.650866,-6.409806],[22.315149,108.327921,-1.226869],[24.024324,110.739878,-4.949165],[24.574804,109.698191,-8.794519],[25.096506,112.166430,-7.238799],[26.421724,113.759150,-10.711602],[23.648946,113.914072,-6.430403],[25.518939,114.390413,-9.667630],[25.828594,115.201906,-10.531331],[26.520645,114.897394,-11.713465],[26.326509,116.705294,-12.345730],[26.181834,116.463732,-10.633734],[24.810552,121.312174,-7.880308],[23.760465,121.963907,-10.236293],[21.965349,121.942621,-11.637404],[24.838634,116.749735,-13.984803],[23.188722,116.072870,-14.695370],[25.485277,114.536478,-13.850228],[25.545177,112.215593,-12.432006],[23.702417,111.864504,-13.495272],[22.947805,108.626398,-10.126062],[22.323146,107.453707,-7.712537],[19.793134,108.189241,-8.203462],[18.658521,109.550913,-7.714191],[18.028770,111.152742,-6.834782],[18.851163,112.229883,-5.761482],[20.671062,112.959955,-4.666190],[19.729862,113.966082,-7.603772],[21.687921,114.633211,-6.598086],[22.905002,116.452028,-8.998175],[21.025655,116.007181,-9.990908],[21.972778,116.749788,-11.029334],[23.688877,116.898134,-10.314488],[25.214774,115.495844,-8.989956],[23.775377,119.698015,-6.299790],[22.496900,123.830088,-3.384459],[23.227165,125.776987,-5.321564],[21.543462,126.448435,-7.828421],[19.391223,125.989351,-9.261683],[20.291034,121.085680,-11.823949],[19.061294,119.502184,-10.565602],[21.716758,115.508913,-13.775939],[22.002126,114.182756,-13.765975],[23.779226,114.075853,-14.395672],[21.627702,112.595354,-13.254422],[20.377277,109.666651,-10.246138],[19.212997,111.093645,-9.715501],[18.670007,112.817453,-8.793780],[19.951030,114.809053,-11.093972],[20.934000,113.244127,-12.453257],[21.343496,114.277040,-12.794959],[20.655637,115.645853,-12.229052],[21.354415,114.230280,-10.470093],[23.327491,114.584642,-9.209242],[21.734399,118.178049,-5.983685],[19.414321,117.638926,-7.296960],[17.473894,121.411142,-3.970066],[20.265138,122.237581,-2.621780],[18.562509,127.466089,1.318321],[15.804304,126.685678,0.372972],[14.647670,127.307154,-1.114509],[16.591867,122.089258,-5.647108],[18.662902,118.289980,-8.850933],[21.110729,114.956728,-11.769478],[16.803568,123.193560,-7.419028],[14.544691,128.210497,-2.635135],[15.579750,129.911104,-4.031333],[17.873498,124.940889,-8.962283],[16.891204,131.079958,-4.816424],[19.293839,131.574038,-4.065235],[21.046453,130.914293,-1.617850],[20.366731,128.953051,0.367474],[22.598070,112.474512,-4.321875],[20.959486,109.765627,-0.613083],[20.384233,106.002634,2.129900],[19.708782,104.596399,3.905199],[19.433185,103.981623,4.903195],[18.993226,103.639498,5.358527],[19.344356,102.457048,5.886337],[18.873573,102.812906,7.404805],[19.249511,101.118013,8.418550],[19.087877,100.895357,9.588057],[18.555429,101.223993,10.256792],[19.043794,100.618761,10.459790],[19.127149,99.833475,9.724507],[18.820842,100.219225,11.143572],[18.304157,99.338884,12.510434],[17.641538,99.827387,12.481503],[16.866251,99.452829,11.595540],[17.293880,99.454447,10.192761],[17.058778,98.879183,11.241585],[17.820270,99.033197,9.963933],[17.625162,98.448244,11.225909],[18.928821,99.462763,10.652757],[18.509305,98.678698,12.058853],[19.276866,99.055399,10.404109],[19.061698,98.390291,10.977729],[18.577150,98.790628,11.121431],[17.861667,98.639132,10.381203],[18.093990,98.487696,9.550345],[18.065097,98.200106,9.987166],[18.696214,98.153307,9.320805],[18.531156,97.797533,9.873206],[19.459156,98.478846,9.982956],[19.270566,97.918947,10.595284],[19.400457,99.278337,9.927931],[19.476307,99.607744,9.138179],[19.553321,99.983408,8.196120],[19.364120,101.785433,6.954081],[19.616325,101.532686,5.363353],[19.630142,102.274088,4.680197],[20.075089,102.422800,3.913431],[20.226367,103.183336,3.004856],[19.433536,102.432940,2.096306],[19.278738,101.601358,2.871864],[19.149473,101.385073,3.859907],[19.094877,100.825396,4.759376],[19.374433,99.242952,6.323224],[19.784910,100.428736,6.756242],[19.451049,98.864634,7.720795],[19.457069,98.606905,9.128796],[18.257541,98.003786,8.578446],[17.137722,98.856974,8.767693],[16.848276,99.066301,7.460744],[18.041154,98.087206,7.296815],[17.896865,98.686296,5.957863],[16.704713,99.494432,6.070972],[16.555728,101.059259,4.389104],[17.837068,100.363276,4.185746],[17.811134,101.383226,3.257046],[16.959590,102.079859,3.301931],[17.083784,102.386553,2.695541],[16.547512,103.318575,3.198452],[16.509998,102.880602,3.682345],[15.754894,103.777956,4.126294],[15.490776,103.163752,4.674313],[15.964975,104.352190,5.368285],[15.893640,104.262674,3.754073],[16.357007,104.938265,2.911945],[16.893671,104.094011,2.337483],[17.399486,103.191072,1.810594],[18.097274,101.544352,2.522732],[18.303323,102.390169,1.671437],[16.749684,105.051737,6.851830],[16.234752,105.248034,7.680276],[15.536106,105.319170,8.421341],[14.614767,105.284540,9.238090],[15.199409,105.222071,9.546547],[15.941812,105.184641,9.080648],[16.489060,105.159754,8.676932],[16.924953,105.003878,7.983796],[16.830276,104.581377,9.021324],[16.497230,104.884676,9.147393],[15.951318,104.339571,9.881010],[15.583204,104.595095,9.989477],[14.703819,104.805017,10.968082],[14.311061,105.369234,10.708042],[14.159477,105.402155,11.098342],[14.074239,105.451761,11.552318],[14.039142,104.957170,12.099416],[13.894666,105.040659,12.186511],[13.819602,104.934877,12.192015],[13.760749,104.953630,12.235957],[13.569175,104.810350,12.790765],[13.398468,104.601633,13.135957],[13.077836,104.545374,13.177691],[12.902515,104.457865,13.029037],[12.881641,104.377596,13.084854],[12.842941,104.391191,12.981457],[12.856262,104.557268,12.507726],[12.791761,104.388186,12.936169],[12.804231,104.547258,12.511954],[12.762235,104.399164,12.459821],[12.818723,104.112192,12.296755],[12.976869,104.051378,11.763534],[13.201702,104.296816,10.892542],[13.186353,103.612055,12.095789],[13.591997,103.897066,10.837312],[14.089462,103.871187,10.954378],[13.682439,103.597841,12.211972],[14.074108,103.840631,12.432207],[14.477769,104.125116,11.172986],[14.531991,104.639284,11.396705],[14.405477,104.381784,11.101469],[14.505504,104.877100,11.212346],[14.467521,104.203913,11.109345],[14.058677,103.945940,10.920224],[14.031267,104.120684,10.877153],[13.554018,104.162798,10.720705],[13.608911,103.983294,10.666194],[13.228849,104.548708,10.641619],[14.070041,103.699923,9.530597],[14.556583,103.619539,9.897786],[15.261075,103.949419,10.138481],[15.599843,103.416376,10.060118],[15.410303,102.595652,9.878083],[15.437561,102.876711,9.690205],[15.573402,102.242868,10.718772],[16.074878,101.516634,10.903929],[15.960563,101.047342,11.414784],[15.159900,99.944613,12.998263],[15.420137,99.354624,12.682517],[15.985422,98.906939,12.717882],[16.773828,99.123667,14.118847],[17.509563,100.951410,12.812572],[17.235393,102.105417,11.687740],[17.327810,103.190035,10.988077],[17.413368,103.232271,9.989457],[16.634477,103.870409,10.461668],[16.075698,103.957598,9.995679],[15.359242,103.027666,10.968088],[15.176015,102.704500,11.599412],[15.488609,102.167070,11.360012],[16.205273,101.584856,11.456642],[14.817577,101.223993,12.885760],[15.397001,100.847918,12.927305],[16.961248,102.153360,12.410007],[15.958304,101.238939,13.989470],[16.571441,102.837084,12.644076],[16.967042,103.168551,11.748020],[16.228195,103.630686,11.582004],[16.866567,101.459368,12.750419],[15.920772,100.188417,14.405111],[15.728384,99.967211,14.884889],[15.297077,99.692026,13.769231],[15.531010,99.246302,13.451542],[15.914655,98.822474,13.477497],[16.634418,98.844362,14.584541],[16.321073,98.595026,14.856482],[16.280302,99.432299,14.922736],[15.757740,98.937296,15.245658],[15.472604,99.639185,15.134366],[14.873800,98.140574,15.596262],[14.181983,98.431231,15.546776],[14.982994,99.463213,13.994892],[16.705818,99.955980,14.192232],[15.302999,99.021112,13.637038],[15.736974,98.541826,13.750904],[14.969160,97.468515,15.289891],[14.820281,97.252237,15.417252],[14.437528,97.743052,15.773259],[13.973302,98.288912,15.696014],[13.802621,98.091356,15.633459],[13.871913,98.350611,14.561488],[13.623155,98.248606,14.490813],[14.169431,97.963823,14.212442],[14.261249,98.093805,13.963948],[14.554248,97.515459,14.336889],[14.366998,97.336702,14.241819],[14.572807,97.147898,15.377778],[14.021261,97.447489,15.642171],[13.210597,97.667292,15.387152],[13.111188,97.793116,14.461812],[13.392343,97.372576,14.138535],[14.021083,97.880930,14.128619],[13.806013,96.941263,14.229231],[13.960483,96.747973,15.136113],[13.734992,97.245371,15.552466],[13.608728,97.138536,15.571218],[13.183158,97.458467,15.498217],[12.541828,97.096682,15.149733],[12.489767,97.199640,14.499348],[12.719490,96.811998,14.200489],[13.108215,96.441484,14.292341],[13.197427,96.292933,14.930260],[13.786870,96.718302,15.296140],[13.503017,97.084147,15.463240],[13.133701,97.327929,15.387752],[12.594991,96.994814,15.278256],[12.130464,96.601168,15.002446],[12.174694,96.545908,15.142237],[12.186183,96.487902,15.121142],[12.147485,96.507525,15.021868],[12.234231,96.730768,14.679499],[12.348535,96.422625,14.521956],[12.290777,96.233522,15.025373],[12.512893,96.059542,14.899545],[12.652797,96.217638,14.539382],[12.591709,96.035692,14.848049],[13.148780,96.315912,15.092884],[13.622524,96.728655,15.224131],[13.139179,96.365946,15.099065],[13.559310,96.707354,15.270050],[13.443035,97.039362,15.451086],[13.113569,96.386118,15.193793],[12.914577,96.630960,15.392800],[12.679449,96.918352,15.339120],[13.110536,97.257540,15.420275],[12.641406,96.976198,15.265697],[12.259717,96.498690,15.194470],[12.147190,96.387545,15.086006],[12.224361,96.408724,15.160857],[12.263578,96.190729,15.099207],[12.221925,96.178553,15.024020],[12.417015,96.056772,14.995698],[12.475673,96.100626,15.076735],[12.333576,96.226572,15.171334],[12.577917,96.108599,15.087937],[12.530338,96.066019,15.005964],[12.403856,96.044085,14.923433],[12.112775,96.400927,15.020867],[12.587739,96.039515,15.003949],[12.413297,96.280916,15.205784],[14.770748,97.662409,14.074901],[14.003862,98.599588,14.323033],[15.945518,103.258310,12.550912],[14.504922,101.814409,13.051319],[14.720775,101.083628,13.281992],[15.133302,100.813768,13.386191],[15.836973,101.038218,14.334683],[14.848649,100.381380,13.421498],[15.497577,100.785944,14.391351],[15.452098,101.592699,14.512206],[14.916175,101.081652,14.757942],[14.631793,101.721025,14.497323],[13.664342,100.680643,15.152423],[13.351640,100.519327,14.079308],[14.047834,101.245340,13.515087],[14.913578,102.036562,14.452805],[15.087509,102.181368,14.105707],[15.838850,102.023150,13.839449],[14.503072,101.495150,13.466822],[14.383796,100.775286,13.288265],[13.640491,100.034594,13.866072],[14.122701,99.687426,13.989161],[14.440889,99.840868,15.059305],[14.279277,100.460077,15.158246],[13.929853,100.106562,15.443328],[13.449113,100.520350,15.342050],[13.190633,100.249239,14.374424],[13.460357,99.842142,14.144920],[13.868072,99.514894,14.291081],[14.284278,99.615030,15.239291],[13.572887,99.206430,14.228023],[13.158073,99.578691,14.094086],[12.846061,99.997995,14.321928],[12.715591,99.162546,14.354106],[13.117794,98.805468,14.488923],[13.993953,99.422487,15.197428],[13.377401,98.908640,15.296524],[13.170356,99.416452,15.555612],[13.533267,99.744905,15.485447],[12.669759,99.679323,15.387937],[13.227323,100.255472,15.294112],[12.434265,99.549891,14.577225],[12.011043,99.055651,14.880480],[12.215810,98.665888,14.682408],[12.626512,98.385386,14.800972],[12.779792,98.413027,15.368628],[13.255222,98.918612,15.467637],[13.081476,99.328295,15.619443],[12.689035,99.535250,15.540772],[12.125625,99.125490,15.453188],[11.850313,98.669649,15.206960],[11.959571,98.377405,15.139114],[12.267398,98.215418,15.153079],[12.285249,98.145815,15.469093],[12.754621,98.477160,15.507552],[13.103464,98.897585,15.432328],[12.983835,99.247629,15.560970],[12.937118,99.204050,15.572604],[12.648414,99.393168,15.491117],[12.642353,99.342676,15.540875],[12.245986,99.057703,15.565166],[12.204465,99.076334,15.578639],[11.822715,98.649530,15.528840],[11.854276,98.575212,15.566800],[12.005784,98.358538,15.619966],[12.219223,98.177752,15.519675],[12.129974,98.167032,15.562321],[12.148660,98.199038,15.617464],[12.247140,98.214380,15.604298],[12.292005,98.276064,15.654056],[12.202833,98.261988,15.664172],[12.063436,98.395807,15.736834],[11.998661,98.342356,15.697532],[11.954721,98.532206,15.696239],[11.880729,98.490839,15.652061],[11.976385,98.619776,15.694829],[11.904222,98.587862,15.648608],[12.297664,99.030100,15.635478],[11.888259,98.643427,15.652998],[11.840042,98.482798,15.599771],[11.954408,98.309114,15.644706],[12.534236,98.822428,15.719170],[12.128740,98.454508,15.738098],[12.725133,98.564562,15.580232],[12.738565,98.521280,15.501537],[13.058876,98.889055,15.487030],[12.301406,98.193468,15.599608],[15.389873,102.979700,9.572838],[14.927531,103.049479,9.452376],[14.328514,103.258211,8.719898],[14.569498,102.205652,8.012245],[15.206172,101.642817,8.661411],[14.236223,104.375620,12.240731],[13.980112,104.411188,12.736889],[13.793594,104.649920,12.847838],[13.675413,104.759081,12.839693],[13.639301,104.747644,12.802307],[13.417413,104.531481,13.197713],[13.332021,104.487581,13.254392],[13.322072,104.560366,13.186964],[13.070022,104.473719,13.242603],[13.073963,104.402590,13.275803],[12.872972,104.309870,13.092791],[12.841760,104.292933,12.988329],[13.100208,104.411715,13.200214],[13.358892,104.428553,13.275723],[13.451711,104.441851,13.217979],[13.553073,104.433657,13.208073],[13.258895,104.014734,13.052722],[12.783115,104.245607,12.918246],[12.922672,103.974344,12.805582],[13.650836,104.161814,13.081535],[13.481243,104.556566,13.195676],[18.828918,97.907770,11.504627],[18.249019,98.042139,11.779704],[17.597015,97.955179,11.023509],[17.723342,97.512827,10.702663],[18.186233,97.214525,10.576448],[18.859050,97.288134,11.320953],[18.665172,97.570253,11.859087],[18.213684,97.948221,11.956256],[17.782611,97.855745,11.269682],[17.929214,97.546114,10.922713],[17.854986,97.501040,10.889292],[18.299946,97.226946,10.884038],[18.859754,97.162935,11.474638],[18.221017,97.090769,10.866855],[17.396488,96.905764,11.240020],[17.827289,96.583803,11.164624],[18.713533,97.069223,11.543407],[18.177913,96.438990,11.940463],[18.372732,97.247538,12.004635],[18.113341,97.786654,11.986951],[17.604454,97.098932,12.353521],[17.237321,97.277315,11.596844],[17.629341,97.786303,11.300347],[17.432863,96.782801,11.501553],[17.792102,96.444529,11.473246],[18.135517,96.252039,12.088562],[17.617549,96.306337,11.430246],[17.314601,96.688898,11.484469],[17.245960,97.059908,11.860104],[17.501430,96.966517,12.537682],[17.047035,96.922739,11.821180],[16.962057,96.364260,11.495138],[17.279836,96.025820,11.449921],[17.950431,96.155642,12.088503],[17.427438,95.788637,12.007227],[17.285945,96.110796,12.363342],[17.542785,96.316668,12.400790],[16.867616,96.393503,12.390811],[17.202800,96.006022,12.410001],[16.879516,96.232676,12.449791],[16.401142,96.014444,12.256426],[16.366157,96.145227,11.928710],[16.739471,96.609636,11.820142],[16.569120,95.930033,11.620284],[17.357780,96.809511,12.501335],[17.875093,96.585962,12.426692],[18.121810,96.929400,12.201021],[16.858190,95.613626,11.591550],[16.924230,95.449289,11.898039],[17.328721,95.747347,12.142001],[17.119645,95.975435,12.340578],[16.840665,96.148554,12.362099],[16.465183,95.927423,12.327830],[16.135797,95.665918,12.148699],[16.156627,95.788355,11.916806],[16.159383,95.594851,12.147980],[16.248224,95.570635,11.745013],[16.290056,95.386797,12.091534],[16.458513,95.271677,11.943047],[16.495559,95.422152,11.684541],[16.511608,95.259890,11.891213],[16.483161,95.267023,12.018147],[16.527307,95.248537,12.004780],[16.894155,95.486811,12.038218],[16.884887,95.492708,12.113028],[17.166563,95.735727,12.152806],[17.080053,95.943476,12.334763],[16.738996,95.647470,12.316836],[16.540588,95.864679,12.348950],[16.834278,96.094744,12.380467],[16.498554,95.914209,12.309279],[16.190423,95.612497,12.235606],[16.201513,95.571321,12.211117],[16.178794,95.500666,12.178727],[16.144653,95.516596,12.138748],[16.246578,95.346392,12.093452],[16.284439,95.348772,12.143111],[16.401874,95.259668,12.025888],[16.448430,95.285303,12.081866],[16.339590,95.368807,12.189526],[16.522045,95.291475,12.076244],[16.395021,95.405848,12.209750],[16.262351,95.572100,12.254178],[16.241439,95.508944,12.223678],[16.385190,95.256708,11.973938],[17.202970,95.757128,12.113883],[16.906379,95.450769,12.025539],[17.848034,97.869326,13.330327],[17.827724,98.658884,13.430231],[17.091037,98.847017,13.697029],[16.231601,98.493998,12.883627],[16.412792,97.903788,12.614709],[16.966127,97.521692,12.525849],[17.948438,97.839212,13.425049],[17.657325,98.386347,13.794893],[17.123054,98.879457,13.822807],[16.649192,98.614222,12.896498],[16.831994,98.214067,12.595183],[17.242824,97.866152,12.610447],[17.423898,97.937639,12.265219],[17.840345,97.834276,13.356122],[17.364568,98.126780,13.835806],[17.063384,98.789858,13.728595],[16.180780,97.881067,13.998883],[15.944884,98.069040,12.901979],[16.662965,98.851007,12.628192],[16.997673,98.444689,12.228057],[16.181926,97.640902,12.582455],[16.624364,97.253428,12.577839],[16.909545,97.011820,13.650720],[16.855625,97.636911,13.980252],[16.476259,97.232164,14.219931],[16.025491,97.717142,14.198012],[15.826133,97.788614,13.252252],[16.094663,97.435137,12.950572],[16.407112,97.032778,12.866234],[16.793806,96.806513,13.830349],[16.230432,96.783648,12.857318],[15.887933,97.282785,12.929804],[15.531028,97.648294,13.303022],[15.413053,96.889544,12.920764],[15.814506,96.428438,12.944832],[16.555986,96.674067,13.809527],[15.923662,96.161188,13.725111],[15.687557,96.595163,14.182960],[16.070216,96.901583,14.212794],[15.177923,97.033846,14.083009],[15.581571,96.497499,14.204600],[15.171930,96.830820,14.181558],[14.563295,96.568422,13.872832],[14.516098,96.718676,13.298842],[15.101638,97.262629,13.286977],[15.832769,97.525759,14.156119],[14.809851,96.379602,12.944385],[15.180315,95.941408,12.980076],[15.273258,95.737673,13.532103],[15.775608,96.124422,13.891842],[15.481805,96.456858,14.102388],[15.126804,96.715700,14.068810],[14.628952,96.457865,13.987833],[14.206945,96.128122,13.727115],[14.290935,96.272814,13.409373],[14.231576,96.033930,13.738206],[14.459434,95.973337,13.215154],[14.407546,95.726892,13.700464],[14.657438,95.535585,13.533808],[14.763619,95.719683,13.182511],[14.732637,95.512980,13.474855],[15.232578,95.751535,13.698127],[15.617588,96.141382,13.833286],[15.216733,95.800081,13.709458],[15.564178,96.118876,13.881073],[15.429494,96.417604,14.091679],[15.111589,96.648500,14.098291],[14.673421,96.435862,13.970221],[14.261133,96.063555,13.857277],[14.275362,96.006617,13.831415],[14.244594,95.913530,13.792949],[14.207319,95.932802,13.732555],[14.348590,95.677683,13.700248],[14.390747,95.682924,13.771979],[14.572271,95.530130,13.635716],[14.625795,95.565790,13.714927],[14.456848,95.709612,13.840268],[14.721946,95.569422,13.718767],[14.678638,95.534716,13.637845],[14.557760,95.522692,13.564357],[14.736583,95.507166,13.629073],[15.194681,95.814699,13.806563],[14.972726,96.055643,14.044061],[14.718118,96.372339,14.035281],[14.348007,96.007006,13.898244],[14.319938,95.923700,13.861709],[14.527986,95.755770,13.872107],[1.506650,49.605486,13.408249],[4.766521,46.693003,14.152294],[4.955976,49.502920,15.385681],[1.734948,47.077723,12.414145],[1.076039,46.248453,8.851325],[1.312875,40.871679,11.293611],[0.450425,40.555494,8.387431],[1.154562,34.629843,10.713193],[0.431017,34.614809,7.841783],[1.628999,25.020863,9.910380],[0.823341,24.960871,7.807391],[1.337569,16.111267,9.812397],[0.822381,16.034281,7.528180],[0.204763,12.068629,7.086198],[0.930926,11.951068,10.029581],[-0.733786,9.779050,6.887755],[0.737003,9.834614,10.390209],[0.605898,7.859282,10.733455],[-0.869499,7.392024,6.394033],[-0.466774,5.231731,9.996612],[-0.106626,5.613287,5.452864],[-0.106948,3.764384,9.124564],[4.337328,5.509908,4.591280],[6.279293,3.615825,7.887684],[-0.461177,-0.287656,14.706981],[8.494078,-0.497982,11.906701],[8.753839,-0.495297,16.424486],[1.519914,-0.323948,19.433584],[6.490737,-0.433044,21.887121],[6.475752,1.256351,21.967033],[8.695178,1.326573,16.514148],[8.576375,1.545751,11.971864],[7.052200,5.056819,8.539169],[5.762007,7.237754,5.107041],[3.146967,7.319845,1.296328],[6.085591,9.566414,5.956393],[3.288454,9.644293,1.998448],[0.726111,9.724188,2.348440],[2.910262,12.278101,3.864979],[4.074366,12.223598,3.838811],[3.210292,15.742866,4.712560],[4.552076,15.683110,5.054509],[4.081632,24.581781,3.776536],[6.244133,24.525929,4.903513],[4.991756,34.394190,2.380388],[8.239620,34.510820,3.983895],[9.292728,34.556433,8.066736],[8.764459,39.712839,3.818818],[9.899272,40.309710,8.692063],[9.790115,45.783697,9.182244],[8.591875,43.577692,4.548494],[5.142398,43.505674,3.238115],[5.251058,39.170183,2.267400],[1.620795,40.030272,3.964938],[2.205431,43.935213,4.504524],[2.650443,47.344522,6.002151],[5.162871,46.721884,4.325933],[2.134047,49.246737,6.579198],[5.312161,48.923700,5.352414],[1.737934,51.178705,6.877716],[5.480572,50.904497,5.562445],[5.766789,54.439161,5.411302],[8.068149,50.820505,7.124539],[8.980962,54.311960,6.902403],[5.952815,57.158186,4.883458],[9.937578,56.912191,6.397103],[6.990652,64.872934,2.605566],[11.571701,64.586557,4.223278],[7.609888,73.147005,1.041706],[12.546920,73.024141,2.818151],[7.968366,81.475863,0.402790],[13.266632,81.336542,2.220515],[8.329080,89.308397,0.187973],[13.012908,89.269388,2.034581],[14.818586,81.765772,8.343544],[14.507810,89.652636,7.814258],[12.835458,82.345667,13.940101],[12.433204,90.161615,13.445709],[7.400665,82.815210,15.960586],[7.561735,90.489435,15.292621],[2.157176,82.896875,13.493134],[2.707079,90.494898,12.920052],[0.897771,82.484438,7.761602],[0.543508,74.145090,8.278238],[2.198708,73.558382,2.385658],[2.035661,65.078737,3.823175],[2.585179,81.887926,1.773421],[3.286787,89.602671,1.508923],[1.527949,90.097353,7.111975],[1.519550,57.346849,6.046059],[1.521946,54.697081,6.591184],[0.201938,54.334993,10.026517],[0.347702,51.653788,9.911427],[0.687385,49.370001,9.509535],[1.389412,34.720636,4.037469],[1.788668,24.776943,4.775705],[1.968504,15.830336,4.977778],[1.741075,12.332841,3.891258],[-0.218211,7.398130,1.949427],[0.513173,5.915795,2.210709],[2.720960,5.864437,1.782591],[2.410679,3.122092,2.436792],[3.316441,2.984170,4.762363],[0.918320,3.039957,5.226649],[0.944008,3.156210,2.720765],[1.217012,-0.348395,3.080471],[2.359681,-0.374975,2.859641],[3.075125,-0.387695,4.765081],[1.225383,-0.344667,5.122558],[1.262675,51.745520,13.781885],[5.130211,51.623529,15.759713],[8.351795,51.351374,14.061975],[8.376533,49.221121,13.675892],[8.542556,46.409243,12.663136],[4.518114,40.715513,12.824489],[4.199813,34.398180,12.094426],[3.691843,24.965727,11.515559],[3.285496,16.084833,11.475748],[3.100252,11.935825,11.909716],[3.217152,10.028242,12.390952],[3.749041,7.708579,13.086571],[0.592459,6.251130,11.916622],[0.509410,3.387120,15.194690],[-0.521468,1.759398,14.802076],[1.561314,1.495596,19.505267],[4.369524,1.305813,22.624629],[4.357612,-0.382957,22.549541],[4.299217,2.090631,22.267152],[1.810952,2.155209,19.534694],[4.567033,4.052884,16.979268],[4.102797,5.937068,14.674611],[8.339743,3.154566,12.427864],[7.241556,5.656202,10.668723],[6.085078,7.713984,9.765169],[5.528058,9.679247,9.773677],[5.063965,11.757275,9.940420],[5.820636,12.035533,6.942374],[6.025773,15.737768,7.682789],[7.528956,24.582792,7.988241],[8.099777,34.257277,10.966128],[8.721427,40.634569,11.578484],[9.578187,48.868254,9.853177],[8.479342,46.594828,5.535014],[8.203395,48.813665,6.802146],[9.507776,51.146788,10.275115],[10.230253,53.779940,10.424825],[11.062219,57.334204,10.327761],[12.931917,65.141474,9.695940],[14.065189,73.446962,8.842818],[12.122491,74.013086,14.302215],[7.049808,74.469072,16.398877],[1.779619,74.547052,13.869935],[0.568845,65.779673,9.178204],[0.146849,57.897932,9.874016],[1.110587,54.927263,14.229902],[1.205167,53.615355,14.128804],[5.282793,53.780317,16.044879],[5.359135,54.892679,16.083179],[5.537186,58.139360,16.280671],[1.220989,58.149797,14.407086],[1.668038,66.132105,14.120776],[6.484137,66.067621,16.482923],[11.207380,65.639750,14.521022],[9.640497,57.715078,14.758189],[8.952861,54.508783,14.550248],[8.621255,53.191416,14.425433],[6.643708,24.738672,10.050239],[5.100701,15.896933,9.926710],[8.411425,1.998595,16.647064],[6.392987,2.041457,21.611793],[-24.352822,79.919886,11.157316],[-24.005942,79.430468,11.213330],[-23.974162,79.893839,11.330515],[-24.307654,79.381121,11.086664],[-24.518817,79.441286,10.848459],[-24.299971,79.279642,11.074595],[-24.462882,79.352739,10.882105],[-24.440997,79.265001,10.823094],[-24.267214,79.189142,11.031110],[-24.227635,79.134203,10.979915],[-24.006150,79.255777,11.132433],[-24.057755,79.344126,11.170249],[-23.947234,79.351152,11.178597],[-23.871066,79.312113,11.115353],[-23.950388,79.223177,11.095170],[-24.216687,79.220972,10.968076],[-24.419550,79.233118,10.761422],[-24.459952,79.324541,10.696396],[-24.509837,79.363955,10.607856],[-24.501887,79.362909,10.784024],[-24.632885,79.907763,10.860986],[-24.290598,80.637575,11.096171],[-23.926066,80.553926,11.314512],[-23.874817,79.882250,11.300081],[-23.893714,79.379168,11.221262],[-23.766449,79.348169,11.136676],[-23.837458,79.858271,11.336336],[-23.865401,80.609095,11.299698],[-24.290198,80.713503,11.097562],[-24.613423,80.625498,10.766101],[-24.612834,80.569017,10.824623],[-24.630082,79.898195,10.761714],[-24.559390,79.393328,10.747701],[-24.677737,79.876017,10.737385],[-24.740622,80.689066,10.773123],[-24.665118,79.870050,10.568397],[-24.536353,79.962755,10.264934],[-24.294272,79.433344,10.356990],[-24.438466,80.528017,10.055992],[-23.999482,80.112162,9.832300],[-24.447089,81.550142,10.026787],[-23.902720,81.589914,9.749030],[-23.367995,81.602800,9.916098],[-23.470919,80.129213,10.009470],[-23.131957,80.092402,10.434506],[-23.037118,81.570208,10.349907],[-23.484286,81.979326,10.111620],[-24.037118,81.951609,10.030312],[-24.535550,82.021105,10.262586],[-23.946219,82.145350,9.935171],[-23.428994,82.115854,10.110233],[-23.028138,83.186884,9.621700],[-23.090336,82.213251,10.512840],[-22.653626,83.391825,10.092625],[-23.001969,83.678080,9.079152],[-22.114756,84.144701,9.695012],[-22.055714,84.839014,10.205822],[-21.201066,85.608377,9.502853],[-22.403502,86.655268,9.774869],[-22.912610,85.467112,10.385493],[-24.322062,86.341387,9.586743],[-24.183514,87.274050,8.747321],[-24.827904,85.518015,9.224792],[-24.829897,86.485437,8.483834],[-24.948557,85.096445,8.976985],[-25.147997,85.504381,8.473956],[-25.361975,84.358301,8.657145],[-25.116829,85.605623,7.836761],[-25.862898,84.057642,8.082723],[-25.587462,84.360147,7.155444],[-26.133534,83.509981,7.212715],[-25.480109,83.704531,6.514012],[-25.752852,82.409204,6.793679],[-25.689690,82.354631,5.873340],[-25.797001,81.035959,6.232571],[-25.239712,80.897944,5.674814],[-25.162570,78.831934,6.325960],[-23.765351,81.464792,6.184722],[-23.838269,79.483492,6.726697],[-23.812674,81.702074,6.874179],[-23.626387,82.096941,5.958954],[-23.749321,82.271433,6.765082],[-22.788106,83.082514,6.313938],[-23.132506,82.193071,5.406588],[-23.997855,81.216318,6.021037],[-25.107194,80.787958,5.699732],[-25.013499,82.188311,5.312291],[-25.087956,80.513079,4.954912],[-24.771287,79.018267,6.146973],[-24.825415,79.151384,5.388580],[-24.230162,78.757486,5.051672],[-24.471951,80.487108,4.427890],[-24.859276,82.220003,4.557768],[-24.118325,82.145288,4.072399],[-23.749321,83.275080,4.081277],[-23.762255,82.168123,3.596381],[-23.874844,80.795099,3.900043],[-23.441363,80.693659,3.456339],[-23.772467,80.029970,4.198110],[-23.296475,79.725794,3.913642],[-22.500340,80.210871,4.170369],[-22.553742,81.104754,3.796882],[-22.544863,80.361185,4.691150],[-22.651307,81.340982,4.345497],[-22.229586,82.344118,3.540872],[-22.344496,82.236902,4.215721],[-21.427470,82.961359,3.927183],[-21.686968,82.929079,5.279243],[-20.918303,84.003824,5.615684],[-20.616021,83.970545,4.141885],[-21.981831,84.465319,3.332461],[-21.360846,85.766443,3.570636],[-20.157246,85.321939,4.543293],[-21.437739,86.703379,3.562363],[-20.083602,86.393724,4.510944],[-21.140206,88.108744,3.570929],[-19.984746,88.059023,4.432583],[-19.575406,88.959337,3.801771],[-19.295430,89.337412,5.022170],[-18.897286,90.695993,4.681219],[-19.165400,90.295633,3.562342],[-18.385403,92.137819,2.877472],[-18.026919,92.448198,4.198252],[-15.754416,96.890734,1.694317],[-15.705689,97.334307,3.270862],[-13.266041,101.191065,0.477513],[-13.290156,101.828386,2.199450],[-12.363097,103.511690,-0.167145],[-12.416758,104.178125,1.626330],[-11.692725,107.718370,0.680658],[-11.275441,107.237040,-0.940192],[-11.511330,109.400751,0.463555],[-11.015305,109.255320,-1.165824],[-10.479495,110.831217,-1.161124],[-10.646914,110.817736,-3.479755],[-9.306508,115.863192,0.096793],[-9.306525,116.203661,-2.245795],[-10.610587,116.651758,-3.538850],[-9.164898,121.934290,-2.888158],[-8.295780,121.564852,-1.275465],[-8.765400,129.234545,-1.580218],[-11.629742,122.645250,-3.455542],[-12.846629,117.058695,-3.683915],[-14.509228,111.701181,-3.982366],[-12.240265,111.295488,-4.342890],[-13.005314,109.310068,-4.497616],[-11.509144,108.935335,-3.493723],[-12.092957,106.800890,-3.373819],[-13.726645,103.254747,-2.566782],[-14.962632,101.016451,-1.585180],[-17.306906,97.029200,0.136704],[-19.630547,92.338923,2.169559],[-20.179097,90.444338,2.921835],[-20.569491,89.142557,3.079548],[-22.361571,88.412706,3.892670],[-22.748271,87.201517,3.797732],[-22.614989,86.172777,3.797450],[-23.091450,84.709887,3.786412],[-23.374442,83.730143,3.676073],[-22.664723,83.198931,3.211596],[-23.186348,82.189585,3.135050],[-23.597086,82.897722,3.586114],[-23.829451,84.996187,4.724268],[-24.388951,83.938440,4.623432],[-24.711142,83.077776,4.532587],[-24.812150,83.417200,5.232585],[-25.538886,83.187479,5.728875],[-25.061795,84.038088,5.750633],[-24.448781,85.276209,5.658753],[-23.924647,86.669390,5.551959],[-24.335560,86.825624,6.548493],[-24.886466,85.514559,6.627812],[-24.729207,86.855143,7.716134],[-24.013491,88.146486,7.742801],[-22.315177,87.609743,8.926500],[-22.071517,88.466120,8.321015],[-21.877339,89.325014,8.007479],[-22.985341,89.394327,7.108690],[-22.496291,90.687426,6.866987],[-22.803807,90.244822,4.975413],[-23.049559,88.975611,5.335796],[-22.046275,89.551538,3.305974],[-21.523297,90.872324,3.095470],[-21.162938,92.882334,2.415522],[-19.058583,97.707117,0.292354],[-17.043475,101.810778,-1.489605],[-15.957060,104.000048,-2.720468],[-14.106230,107.097704,-4.090923],[-16.370747,108.330637,-2.738721],[-18.031350,105.538301,-1.274348],[-18.850943,103.021547,-0.125006],[-20.266518,98.684862,1.771036],[-21.760766,93.559610,4.005879],[-22.219620,91.521082,4.568776],[-21.865407,91.952806,6.341400],[-21.226035,90.595560,7.721231],[-20.608693,89.028475,7.723744],[-20.852978,88.058977,8.047628],[-20.851107,87.113230,8.766935],[-20.730471,86.402483,7.932577],[-20.773650,87.144648,6.959153],[-20.185130,88.634836,6.428113],[-20.026875,90.095430,7.408332],[-19.618256,89.759249,6.128498],[-19.511076,91.390009,6.802848],[-19.203021,91.077364,5.735442],[-18.224804,92.884928,5.372900],[-18.799660,93.341616,6.266319],[-16.054181,97.887552,4.674569],[-17.180481,98.466646,5.154905],[-18.884421,99.090662,5.042127],[-19.973733,93.749132,6.518437],[-21.402676,93.955347,5.744171],[-20.244328,99.263582,3.757518],[-20.623118,91.838923,7.061803],[-18.896010,103.836687,2.055706],[-17.609643,103.892992,3.604529],[-15.527049,103.281229,4.169947],[-13.967429,102.628809,3.820067],[-13.205538,105.086138,3.256718],[-12.667252,107.907579,2.259460],[-12.396084,109.309809,1.622673],[-11.065823,111.066866,0.647273],[-10.169278,115.904177,2.052092],[-8.614691,121.212275,1.245268],[-8.358578,128.991915,0.284760],[-8.614152,128.587908,2.669233],[-9.716857,128.666307,4.053909],[-9.641320,121.334154,3.072113],[-11.420790,121.515451,3.994639],[-11.600482,128.727343,4.674962],[-14.221106,129.297579,3.290141],[-14.287892,122.343256,2.814834],[-14.875268,129.602999,0.871593],[-15.374529,122.747599,0.215947],[-14.287215,116.740877,2.176758],[-15.485501,117.378107,0.000345],[-15.865920,112.041002,-0.126683],[-14.381239,111.576509,1.294828],[-14.348406,110.068766,1.694157],[-15.956454,110.341455,0.789748],[-16.129975,110.402163,-1.420348],[-16.405339,109.168268,1.754678],[-16.870686,108.881022,-0.638469],[-18.207175,106.277987,1.008100],[-17.091013,106.444780,2.770356],[-15.011159,105.809908,3.510146],[-14.420851,108.723581,2.515946],[-12.139859,111.010065,1.810820],[-11.769074,116.067865,2.956195],[-15.484238,109.951883,-3.326278],[-15.748288,112.156374,-2.156725],[-15.140999,117.606363,-2.450020],[-14.523758,123.120653,-2.470100],[-11.040095,129.535692,-2.727924],[-13.953969,129.972124,-1.824096],[-19.796483,88.372698,5.461378],[-19.912550,86.807146,5.824193],[-20.309859,85.305208,5.934100],[-21.255303,85.564486,6.842058],[-21.050507,85.301645,7.640304],[-21.565247,84.641031,8.975960],[-22.299243,83.869043,8.226151],[-23.275244,83.577501,8.835119],[-23.793994,83.289148,9.255924],[-24.490328,82.524042,10.149469],[-24.696730,82.170557,10.892269],[-24.887698,81.609079,10.939819],[-24.721467,80.794863,10.604042],[-24.349299,80.773439,11.174011],[-24.324666,80.907640,11.146372],[-23.667094,80.771761,11.356201],[-23.835249,80.669214,11.418975],[-23.670336,79.849070,11.277490],[-23.401423,79.936937,11.052790],[-23.207814,80.499964,10.910288],[-23.582678,79.417154,10.850963],[-23.147122,81.520594,10.929226],[-23.196742,81.975595,10.605569],[-23.275565,82.056902,11.125068],[-23.163537,82.629168,11.044973],[-22.695502,83.868601,10.657142],[-23.406622,84.262934,10.916144],[-24.199652,85.437761,10.185870],[-24.609501,84.908976,9.712348],[-24.844252,84.231684,9.018015],[-25.208056,82.848795,8.783186],[-26.342234,82.935846,8.326742],[-26.401362,82.761782,7.488521],[-26.473687,81.704279,7.660998],[-25.964778,81.589296,7.052649],[-25.965182,79.631891,7.593400],[-24.847390,80.063906,7.933793],[-24.723626,81.832041,7.486270],[-24.904242,80.173914,8.587054],[-24.839964,82.138910,8.259345],[-24.388293,82.374025,7.453002],[-24.583979,82.680361,8.238850],[-23.614190,83.227518,7.588057],[-24.272343,83.512011,8.532861],[-23.000071,83.649179,7.851714],[-23.587590,83.505014,8.680290],[-22.378882,83.786676,7.502405],[-24.306536,81.841845,7.404354],[-25.818215,81.301012,6.978641],[-25.689299,79.172640,7.520467],[-25.706963,79.322962,6.719346],[-25.190346,78.365046,6.393567],[-24.127266,78.997133,6.874060],[-23.870463,79.703150,7.385829],[-24.348170,79.815081,7.888779],[-25.749499,78.724825,7.655524],[-25.655678,78.448221,6.972107],[-25.045186,78.017427,6.598869],[-23.948279,78.690638,6.973502],[-24.003127,79.001474,7.525851],[-24.224949,79.224451,7.369267],[-24.633803,79.250612,7.785437],[-25.568614,78.352465,7.774461],[-25.323464,77.855066,7.267145],[-24.666106,76.901239,7.788298],[-24.563654,76.989145,8.497432],[-24.447003,76.713694,8.670165],[-24.326199,76.381998,8.067832],[-23.912787,76.379404,7.505871],[-23.665726,76.264513,7.708869],[-23.832673,76.174562,8.336279],[-23.466069,76.040911,8.533371],[-23.434966,76.354746,9.125511],[-24.156962,76.569292,8.766207],[-22.866950,77.102571,9.134562],[-23.373290,77.463518,8.856859],[-23.669556,77.541811,8.647005],[-23.782368,77.946337,8.565419],[-24.413262,78.986696,8.012722],[-23.310891,77.904108,8.108347],[-23.309430,77.645205,7.508406],[-24.072695,76.679255,7.413896],[-23.239176,77.272493,7.709037],[-23.295222,77.587648,8.199589],[-23.043145,77.553171,8.324634],[-22.893626,77.168383,7.837046],[-22.418875,76.826868,8.181947],[-22.484622,77.109911,8.690508],[-21.910151,76.586870,9.082874],[-21.875372,76.338861,8.618621],[-21.731476,76.034220,9.308298],[-22.274134,76.584238,9.466503],[-22.657286,76.046206,9.470425],[-23.362565,76.131350,9.087867],[-23.361926,75.936426,8.607354],[-23.215607,75.963060,8.665550],[-23.186135,76.118891,9.068495],[-22.696051,75.893274,9.403720],[-22.084191,75.762377,9.629402],[-22.157359,75.630342,9.589139],[-22.692963,75.897814,9.354529],[-23.153286,76.044947,9.067347],[-23.156062,75.932848,8.700057],[-22.718199,75.811922,9.309829],[-22.109993,75.609606,9.554958],[-22.193003,75.574640,9.504317],[-22.654782,75.621744,9.005557],[-22.438231,75.639681,8.714641],[-21.987816,75.448404,9.068064],[-22.116339,75.448130,9.291355],[-22.028451,75.424868,9.336665],[-21.937035,75.434832,9.153242],[-21.931275,75.443064,9.375182],[-22.099095,75.534540,9.497788],[-22.006962,75.563219,9.547602],[-21.858023,75.483667,9.397123],[-21.959666,75.614397,9.573929],[-22.042559,75.689318,9.582745],[-21.993329,76.102129,9.542648],[-21.920338,75.529970,9.357131],[-21.771966,75.498903,9.174857],[-21.806918,75.544336,9.081765],[-21.832978,75.456171,9.177683],[-21.888104,75.473078,9.083136],[-22.371970,75.700304,8.672078],[-22.863883,75.866884,8.452071],[-22.870926,75.924929,8.398321],[-22.338950,75.673563,8.644480],[-21.890982,75.466455,9.022838],[-21.786763,75.579348,8.997031],[-21.723425,75.936068,8.968796],[-22.234515,75.786074,8.571584],[-22.973248,75.891771,8.260160],[-22.951407,76.057230,8.097407],[-21.984578,84.312983,6.585212],[-22.926287,82.170168,4.722834],[-23.490660,81.164118,5.559436],[-23.292828,79.442499,6.040133],[-23.768937,79.573015,6.479622],[-24.785758,78.768099,6.250149],[-24.664301,78.511286,5.608939],[-24.550355,78.621248,6.338275],[-23.731577,79.378557,6.514349],[-23.882290,79.328486,6.329087],[-23.377482,79.455576,5.983662],[-23.519349,79.333147,5.953621],[-23.467892,79.125284,5.480984],[-23.224694,79.121202,5.453767],[-24.209506,78.485521,5.070898],[-24.020535,78.356867,5.241978],[-22.540410,78.465563,5.985428],[-22.622279,78.695131,6.499015],[-22.993062,78.695368,6.932494],[-23.553107,77.716517,6.944054],[-24.272555,78.144251,5.873212],[-23.655419,77.544733,6.291184],[-23.231221,79.318377,5.403052],[-23.442311,80.953211,4.908738],[-23.981755,81.010324,4.474105],[-23.734622,80.000620,4.813731],[-23.591475,79.558062,4.415081],[-23.241562,79.527864,3.966089],[-22.745122,80.078066,4.153654],[-22.534434,80.187822,4.100201],[-23.064263,79.463907,4.102188],[-22.001833,79.827341,4.383398],[-22.025723,80.097338,4.834937],[-22.648627,80.522783,4.504506],[-22.794550,80.322649,4.556348],[-22.959498,80.479921,5.035177],[-23.075478,81.410471,4.779528],[-23.085770,80.308023,4.920915],[-23.666977,79.815058,4.924290],[-23.424258,79.727182,4.996835],[-22.855275,80.443964,4.986472],[-22.321734,80.082758,5.267096],[-22.646655,79.306971,5.347370],[-23.179360,79.331232,4.640794],[-22.361466,79.045481,4.498175],[-22.766520,79.122934,4.853750],[-22.446353,78.917406,5.010767],[-22.274642,78.883486,4.521883],[-22.156031,79.568995,4.435031],[-22.154795,78.959795,4.569258],[-22.157404,79.713945,4.332168],[-21.738715,79.791353,4.436519],[-21.622391,79.217707,4.642339],[-21.164511,79.781115,4.623384],[-21.273797,80.053499,4.924302],[-21.851035,80.077501,4.773113],[-22.314887,80.001993,4.682479],[-22.234627,79.871119,4.800297],[-22.403740,79.830271,5.234731],[-22.562230,79.186861,5.450341],[-22.398314,79.256311,5.427437],[-22.368088,80.011568,5.149310],[-21.938239,80.073267,5.210443],[-21.829123,79.509752,5.444155],[-22.090022,79.022593,5.072811],[-21.818242,79.173098,5.082311],[-21.685372,79.148737,5.123245],[-21.700751,79.398905,5.418430],[-21.614220,79.235262,5.112756],[-21.608534,79.451578,5.350591],[-21.565863,79.250460,5.119828],[-21.559950,79.421564,5.347009],[-21.225871,79.600756,5.425296],[-21.218987,79.612413,5.461816],[-21.256999,79.734400,5.482041],[-21.346201,80.037775,5.328122],[-20.798491,80.016092,5.061265],[-20.807503,79.855593,4.824215],[-20.662339,79.636240,4.965383],[-20.668520,79.674898,5.204580],[-20.772786,79.792284,5.393798],[-20.932662,80.032381,5.309685],[-20.819722,79.833124,5.433797],[-20.804911,79.718660,5.441756],[-20.776187,79.713587,5.403766],[-20.704340,79.722719,5.369028],[-20.810055,79.647425,5.398307],[-21.207251,79.528704,5.409923],[-21.132145,79.350512,5.194988],[-20.742062,79.536448,5.231367],[-20.680775,79.569239,5.235918],[-20.745493,79.657038,5.366558],[-20.633782,79.626993,5.228796],[-20.611006,79.683641,5.216021],[-20.698990,79.777369,5.367372],[-20.610179,79.651888,5.022858],[-20.621979,79.606348,5.049538],[-20.669058,79.549059,5.070104],[-20.714131,79.511942,5.026347],[-21.080107,79.349108,4.916794],[-21.437253,79.248224,4.871092],[-21.474764,79.262560,4.831705],[-21.534869,79.164560,4.775061],[-21.056078,79.382242,4.829930],[-21.079798,79.394388,4.858692],[-20.680518,79.542933,4.959261],[-20.672196,79.566652,5.000379],[-20.680951,79.637064,4.895546],[-21.063843,79.461512,4.732849],[-23.074982,77.480738,5.927142],[-23.267829,77.211512,6.535149],[-22.949853,77.284502,5.992648],[-22.659054,78.233973,6.056833],[-22.865515,78.397264,6.482477],[-23.120677,78.355211,6.929427],[-23.446263,77.521799,7.065973],[-23.209864,77.570215,7.120006],[-23.105481,78.531977,7.005930],[-22.905547,78.626375,6.437169],[-22.614554,78.419916,5.962844],[-22.749838,77.357378,6.108574],[-22.120299,78.385370,6.200507],[-22.340004,78.687082,6.665695],[-22.566718,78.584887,7.198563],[-22.488354,77.784754,7.403108],[-22.809536,77.232096,6.730929],[-22.346470,77.383883,6.894198],[-22.214146,77.373545,6.951957],[-22.317538,77.639292,7.379040],[-22.121211,77.487581,6.971309],[-21.939530,77.470324,6.533869],[-21.875495,77.583635,6.637857],[-21.340176,77.724939,6.742816],[-21.376969,77.734980,6.777170],[-20.889540,77.890574,7.014207],[-20.888217,77.911684,7.072929],[-21.390507,77.661219,6.841555],[-20.947676,77.834879,7.086357],[-20.835150,77.950190,7.153439],[-20.867718,78.011629,7.044754],[-20.814023,78.016352,7.131260],[-20.940243,78.010141,7.379278],[-21.127459,78.494616,7.215375],[-21.039740,78.339510,6.874546],[-21.403908,78.435869,6.539585],[-21.328190,77.853304,6.634314],[-20.875739,78.030268,6.952575],[-22.021355,77.576014,6.359041],[-21.616339,78.729998,6.967483],[-21.819855,78.621790,7.469519],[-21.772742,78.052019,7.628280],[-21.718159,77.893892,7.587916],[-22.182835,77.721010,7.324972],[-22.061406,77.504091,6.993709],[-22.119870,77.680368,7.325980],[-21.688921,77.794596,7.508759],[-21.717202,77.887056,7.537834],[-21.187293,78.023645,7.679875],[-21.204924,78.177439,7.688549],[-21.335751,78.471811,7.536331],[-21.134402,78.130831,7.640987],[-21.140755,78.024538,7.637544],[-21.181847,77.939531,7.609895],[-21.527482,77.601786,7.202391],[-21.040001,77.823740,7.369702],[-20.963143,77.863619,7.395223],[-20.899930,77.871531,7.158480],[-20.901711,77.939760,7.407882],[-20.869793,78.016779,7.407904],[-21.033490,78.114420,7.621913],[-21.040305,78.041918,7.612173],[-21.091458,77.957148,7.586690],[-21.836457,77.553705,6.692325],[-21.823433,84.391542,7.288559],[-24.535538,83.667086,8.691845],[-24.419064,83.717134,9.432412],[-24.496947,84.176531,10.180237],[-24.590598,82.692667,10.812745],[-24.319146,82.239275,11.229165],[-24.415051,81.497248,11.289540],[-23.875021,81.612032,11.637906],[-23.860684,82.194376,11.464565],[-23.820550,82.734156,11.336168],[-24.250390,82.746820,11.131394],[-24.076794,84.285913,10.710161],[-25.282059,82.116030,8.822969],[-26.515893,81.869570,8.371783],[-26.434174,79.869844,8.721947],[-26.378199,80.182688,8.001611],[-26.413573,79.358431,8.151922],[-26.024270,79.261942,7.603594],[-25.017359,79.608660,8.163088],[-25.011277,79.727869,8.633578],[-25.328755,80.307589,9.090830],[-26.520646,79.514406,8.799389],[-26.277806,79.234751,8.905164],[-26.119839,78.736444,8.391713],[-25.813267,78.997934,7.784839],[-25.892207,77.882959,8.649363],[-25.464934,77.602770,8.267909],[-24.515646,78.099619,8.552683],[-24.699849,79.190447,8.238902],[-24.531785,78.237963,9.119349],[-24.741929,79.372324,8.809897],[-25.356152,79.780947,8.979236],[-25.128682,79.409555,9.274340],[-24.928595,78.310595,9.549658],[-25.884007,77.814516,9.272602],[-25.780840,77.341539,8.797999],[-25.402222,77.284006,8.306777],[-24.545430,77.714708,8.690783],[-24.550311,77.883699,9.185644],[-24.913855,77.898775,9.567811],[-25.856438,77.510935,9.388003],[-25.583666,77.299570,9.483542],[-24.603547,77.674509,9.778221],[-24.243989,77.667704,9.353698],[-24.202218,77.478457,8.836085],[-25.163538,77.091997,8.490425],[-24.022849,76.886164,9.056921],[-24.057290,77.070566,9.557556],[-24.400275,77.070559,9.942929],[-25.129040,76.678911,9.739429],[-25.469550,76.945383,9.001628],[-25.202992,76.566225,9.188541],[-24.738316,76.488009,8.822158],[-25.170956,76.435411,9.226962],[-24.839228,76.335382,8.922016],[-24.326407,75.915438,9.141085],[-23.859519,76.234156,9.298511],[-23.854376,76.355280,9.775091],[-24.199328,76.400164,10.096292],[-24.687661,76.091906,9.989045],[-25.151854,76.488146,9.655931],[-25.052899,76.390192,9.283515],[-25.014483,76.416903,9.637845],[-24.766177,76.001314,9.893105],[-24.362561,75.630365,10.058888],[-24.464627,75.563799,9.991740],[-24.754502,76.012766,9.850352],[-24.429534,75.536531,9.956002],[-24.800282,75.964525,9.790045],[-25.016583,76.348253,9.619984],[-25.021935,76.338205,9.306154],[-24.784743,75.854548,9.496235],[-24.564259,75.849222,9.235944],[-24.326903,75.464945,9.493888],[-24.463130,75.466257,9.701898],[-24.408562,75.407038,9.735505],[-24.303526,75.418459,9.565332],[-24.329907,75.377436,9.773080],[-24.215943,75.391459,9.590352],[-24.259427,75.377108,9.801648],[-24.150794,75.402246,9.597288],[-24.285754,75.443422,9.778088],[-24.148409,75.468897,9.526450],[-23.937785,75.769197,9.855424],[-24.349915,75.567354,9.999498],[-24.148646,75.873278,10.062659],[-23.918360,75.760775,9.522022],[-24.107178,75.505602,9.459346],[-24.462405,75.852900,9.179967],[-24.236498,75.452356,9.456196],[-24.240178,75.444025,9.511495],[-24.482550,75.879908,9.211871],[-24.763218,76.294130,9.047998],[-24.786591,76.235910,9.080073],[-24.363877,75.463732,9.937651],[-24.501156,75.550074,9.902997],[-24.440541,75.485392,9.886947],[-24.310887,75.480471,9.973112],[-23.928210,79.290110,10.586663],[-23.295580,87.467791,4.802429],[-23.306305,86.454706,4.730295],[-23.832915,87.652292,5.613939],[-24.056811,88.062014,6.498060],[-0.187440,46.614016,5.663158],[-0.438238,48.472666,7.665168],[-3.543906,45.644777,6.216863],[1.427121,47.319197,2.388318],[1.374771,49.868418,4.341696],[1.691228,47.143686,-2.539014],[0.551601,49.554419,-0.066138],[-0.873586,47.298170,-4.717322],[-0.390093,43.764833,-7.369764],[2.727983,43.830385,-4.518719],[2.478032,42.323801,-0.218022],[1.019331,41.426371,2.259536],[-2.496036,40.755137,2.674400],[-6.807742,46.134382,3.796395],[-6.283274,41.340334,0.429209],[-7.143104,46.674711,0.034933],[-6.671494,42.284681,-2.538448],[-5.016167,35.777720,-2.551500],[-1.500323,35.306120,-0.465637],[-2.607639,27.458199,-6.860799],[-2.933849,28.203541,-8.961338],[-0.615092,20.278105,-9.824352],[-0.112417,26.956490,-4.699091],[0.921131,19.735266,-7.861104],[1.063994,15.371224,-8.866117],[-0.534291,16.336393,-11.110679],[-0.921582,14.515440,-12.068174],[0.728914,13.221661,-9.435657],[-1.397779,12.889543,-13.227354],[0.118853,10.678947,-10.177526],[-2.624012,10.823765,-14.013082],[-0.496878,8.355329,-10.093990],[-4.010307,7.679791,-14.411188],[-1.369971,5.754045,-9.425066],[-4.985483,4.539731,-11.679069],[-4.137147,6.559895,-15.652874],[-5.214308,4.088020,-12.216062],[-4.042096,4.838223,-16.727036],[-5.204906,2.639385,-13.309562],[4.142230,2.752929,-12.682777],[0.830312,0.618999,-8.355238],[0.865345,2.251330,-7.547851],[4.127482,4.384298,-11.459797],[4.969069,9.515784,-14.786794],[5.046549,10.131390,-13.156429],[5.710454,13.176485,-16.504134],[6.148446,13.959805,-14.548048],[6.525633,16.674963,-18.106686],[5.827777,15.681297,-12.895393],[5.475435,18.321507,-16.820323],[3.405530,17.330648,-19.368477],[3.782729,15.838871,-19.778922],[5.829813,15.408907,-18.951380],[5.434201,12.946825,-20.308898],[4.074190,13.232199,-20.858319],[4.204237,10.186833,-22.624629],[5.263902,9.964745,-22.196900],[4.895125,11.359465,-18.442570],[1.589938,14.041842,-18.169743],[2.671393,11.826052,-19.340886],[3.075751,9.112074,-21.315385],[4.791127,8.752562,-20.622983],[-0.000116,15.251904,-17.034548],[-1.925254,11.595345,-15.974318],[-0.952661,10.758603,-17.179398],[-0.562997,16.623438,-15.258341],[-0.557949,18.136280,-13.619957],[-0.923002,21.098192,-12.093473],[-0.883006,29.391521,-11.333518],[-5.464990,37.295153,-5.278886],[-4.267246,43.730555,-6.733127],[-3.386341,38.916132,-8.579675],[0.210797,39.368185,-9.158286],[1.516716,29.838526,-11.715865],[3.285538,38.855314,-6.614468],[3.145359,37.149042,-3.111566],[1.660643,35.994349,-0.803759],[2.312220,27.605021,-5.525798],[3.023760,20.390539,-8.841353],[3.421802,16.231590,-9.915428],[3.576825,13.879701,-10.434398],[3.703097,11.892800,-11.235445],[3.528292,9.904608,-11.288002],[2.994555,5.625115,-10.454405],[0.648962,2.874034,-7.295472],[-2.390268,2.085691,-5.345218],[-4.282675,2.586452,-6.337094],[-4.482588,1.744445,-6.359669],[-4.564096,0.241469,-7.131089],[-2.634937,-0.266650,-6.125264],[-2.578548,1.241354,-5.363374],[4.831885,17.786194,-12.093557],[4.103967,19.716433,-14.964830],[4.107654,21.252354,-10.731178],[3.668256,22.166780,-13.344700],[2.545897,22.240397,-13.940455],[3.489071,29.523712,-10.150374],[3.643297,28.397972,-7.170505],[1.170459,22.090248,-14.021136],[1.871073,19.776806,-15.641258],[2.985087,19.746683,-15.303779],[3.074144,18.675533,-17.708216],[-4.589459,46.934195,-4.217194],[-4.963882,49.262945,-2.088830],[-7.273205,49.193350,1.944118],[-6.899939,48.244421,5.917542],[-4.273753,47.728910,8.443511],[-0.460879,50.287592,8.861121],[-4.690756,49.593061,9.531679],[-5.027112,51.728312,10.360770],[-7.139331,50.051043,7.064156],[-7.436885,51.194986,3.307805],[-7.578589,51.701136,7.812304],[-5.143890,52.902128,10.578371],[-7.966055,52.974630,8.079436],[-8.314378,53.608412,4.135724],[-5.261598,52.431852,0.898466],[-5.161586,50.745798,-0.242969],[-1.424947,49.769808,-2.455669],[0.731830,51.024168,1.349115],[-2.004174,51.349466,-0.697012],[-2.376938,53.068270,0.253079],[0.873623,52.641562,2.503445],[-2.438429,54.068232,0.117046],[1.285653,54.083521,2.485281],[1.381414,53.943876,6.676854],[1.614703,56.819792,6.399047],[1.405445,56.779821,2.300802],[1.294548,64.734232,6.606749],[1.435188,64.737726,1.012206],[1.454350,73.143999,6.809299],[1.566994,73.331865,0.664558],[1.140999,81.488596,7.264036],[1.250346,81.679338,1.018033],[-3.225040,73.210535,-2.212658],[-2.959095,64.794519,-1.588605],[-2.505099,56.835249,-0.096261],[-5.942990,53.827463,0.597383],[-9.084045,56.445150,3.634718],[-8.789001,56.240225,8.297908],[-5.389258,56.381022,10.971944],[-10.426083,64.165461,8.618933],[-10.687235,64.309732,3.479446],[-7.806970,64.410280,-1.399256],[-6.752538,56.490854,0.169995],[-8.461820,72.976610,-1.953905],[-11.649828,72.679804,3.387312],[-11.362568,72.519075,9.200293],[-6.470456,64.241449,11.888276],[-0.717680,56.529230,10.429090],[-0.557579,53.240744,10.064967],[-0.584414,51.972101,9.699452],[1.440899,51.501368,5.629047],[-1.180723,64.493021,11.031227],[-1.338926,72.874163,11.817396],[-1.714837,81.212252,12.399605],[-1.066687,89.028429,11.851158],[0.758543,89.236673,6.202513],[-0.358007,89.343493,0.416811],[-3.507212,81.560022,-1.876599],[-9.101619,81.312609,-1.684105],[-12.350190,81.010675,3.741708],[-12.063733,80.845636,9.698277],[-7.111261,72.598475,12.701204],[-7.443913,80.939966,13.232185],[-10.788203,88.697115,11.244949],[-12.215252,88.794481,5.394277],[-10.079518,89.012140,-0.189396],[-5.218528,89.218332,-1.484768],[-6.156592,88.801332,13.650614],[-0.300603,166.415636,1.430787],[1.669898,164.193926,-0.839593],[-2.095705,165.548815,1.341142],[2.001274,164.376741,-0.816854],[1.545220,167.313692,2.961982],[-0.658124,167.226641,4.509434],[-1.261665,166.813494,3.651213],[-1.907418,166.605562,3.595281],[-2.514334,166.103670,4.115564],[-3.110426,165.167727,1.794466],[-3.340223,162.840548,-0.268852],[-0.974991,163.484636,-1.076075],[0.041252,160.902437,-2.297304],[3.080292,161.369448,-1.768384],[3.715249,161.488237,-1.850554],[4.541545,165.586809,0.938206],[6.657537,162.225389,-0.092642],[4.894280,165.898119,1.981728],[5.406684,166.464205,4.343970],[8.419822,163.123690,4.218081],[8.188972,162.462893,8.089687],[5.473375,166.160753,7.781917],[2.311835,167.437578,7.350067],[2.111308,167.717836,4.967744],[-0.683546,167.335009,5.723671],[-1.931565,166.646425,5.489583],[-1.634488,166.699663,4.790153],[-1.598949,165.531878,4.792481],[-2.193492,165.770891,5.490610],[-2.943248,165.658571,5.172238],[-3.871294,164.676485,2.597847],[-4.280793,164.407656,4.437114],[-4.504841,162.662279,1.115616],[-5.098197,162.126528,3.136948],[-4.587778,160.165682,0.065434],[-5.439382,159.455538,2.182668],[-5.322961,156.468355,1.570551],[-4.150173,156.950594,-0.198175],[-4.729642,152.670687,1.456550],[-3.316889,153.056047,0.172309],[-1.781291,153.253954,-0.879511],[-2.420337,157.228441,-1.235341],[0.034578,157.485430,-2.125560],[0.202288,153.724199,-1.634054],[0.415646,157.538607,-2.026967],[0.944559,153.828722,-1.481698],[1.368241,153.858782,-1.874009],[0.760328,157.562304,-2.371527],[3.720890,157.873842,-1.787693],[4.260314,154.165316,-1.226654],[4.958155,154.236040,-1.176319],[4.572744,157.955141,-1.893098],[7.522077,158.250155,0.051405],[7.993223,154.540346,0.103204],[8.772057,158.216936,1.366144],[7.609259,162.696978,1.226074],[9.848520,158.131502,3.268652],[10.094919,158.328173,4.150957],[9.721231,158.150927,6.485694],[9.085943,158.341570,6.728564],[9.110975,153.971575,6.296701],[9.333751,154.109652,5.860583],[10.550888,154.367968,4.045871],[10.451139,154.453539,3.626786],[10.277685,154.376055,2.941175],[9.193899,154.471575,1.350341],[8.274014,150.710176,0.504492],[9.397232,150.625444,1.361123],[10.511323,150.351595,2.488282],[10.882789,150.103151,3.599602],[11.239845,150.152941,4.411598],[10.099666,149.974215,5.939281],[9.085590,149.812181,6.043169],[9.777996,145.921358,4.368080],[10.867845,145.940294,4.273861],[10.074752,143.105303,2.759591],[11.319734,143.345675,2.862216],[11.512840,141.386019,1.570579],[13.098932,141.586718,1.666291],[12.862770,143.526155,2.321919],[11.944242,146.284563,3.418070],[11.456644,146.513933,2.709394],[11.091945,146.751268,1.813887],[10.224187,146.828005,0.971751],[12.505861,143.842333,0.555954],[11.317153,143.909914,-0.365704],[13.354806,141.808535,-1.049191],[12.079284,141.527010,-2.162759],[9.355831,143.815035,-1.361408],[10.810825,141.296923,-2.828899],[8.815031,143.703035,-1.079480],[9.936599,140.904314,-2.910433],[8.423780,146.811907,0.225295],[8.755529,146.823290,0.203080],[7.994127,150.697847,0.683343],[5.283545,150.419344,-0.798738],[5.790039,146.936632,-0.887620],[8.564039,143.732042,-1.169546],[6.230875,144.106951,-2.181213],[9.644445,141.147707,-3.074266],[7.079761,140.347384,-4.920665],[6.038918,140.245623,-4.237590],[5.377256,143.884523,-2.001619],[5.165126,146.757784,-0.953994],[4.615622,150.374193,-0.511996],[4.266372,150.326204,-0.950503],[4.437175,146.734606,-1.171165],[5.376908,143.861589,-1.663132],[4.672012,143.889330,-2.541387],[2.108426,146.612795,-1.371064],[2.241100,143.658815,-2.636466],[5.104042,139.999422,-5.007250],[5.700048,140.354570,-4.127912],[2.431621,140.343905,-4.984560],[1.718372,143.689501,-2.220958],[1.604348,146.554613,-1.011725],[1.187303,150.022387,-0.890183],[1.670286,150.058001,-1.294822],[0.443064,149.923494,-1.114510],[0.853533,146.522524,-1.395979],[0.926634,143.670275,-2.718620],[1.721241,140.420824,-4.682110],[0.532554,140.681032,-5.300285],[-0.824496,143.176653,-1.851222],[-1.494225,140.583712,-4.371325],[-0.930854,146.185183,-0.772083],[-1.476629,149.632875,-0.309127],[-1.267203,146.159929,-0.829300],[-1.339682,143.489824,-2.012735],[-1.553239,140.558519,-3.787679],[-2.739821,140.706606,-4.443983],[-2.568756,143.468615,-1.362606],[-3.709484,140.857805,-3.607261],[-4.203307,143.291262,-0.711312],[-4.907159,140.810457,-2.804916],[-4.656918,140.498232,-1.475124],[-4.413413,143.276476,-0.194398],[-4.030397,145.561617,1.058046],[-4.861362,145.407000,1.789962],[-5.642187,143.080629,0.342234],[-5.571675,140.682238,-1.847109],[-6.500192,140.675631,-1.234714],[-4.314887,142.811098,1.555201],[-5.263800,140.635332,-0.617195],[-3.902272,140.469164,-0.902566],[-2.477730,142.455370,1.510597],[-2.455789,145.279589,3.136196],[-3.802753,145.302584,2.850352],[-3.913354,148.534670,4.387760],[-2.891240,148.586016,4.826393],[-3.994314,152.631914,5.036047],[-4.478862,152.699694,4.598470],[-5.431132,152.546755,2.933503],[-5.151563,148.774370,2.980577],[-4.662412,152.651278,1.799842],[-4.120871,149.002184,2.218453],[-4.241615,149.024202,1.659839],[-3.807877,145.766039,0.538782],[-2.525200,145.957109,-0.192562],[-2.770497,149.327883,0.646182],[-5.819732,156.419436,2.803041],[-5.549363,156.436510,4.951332],[-5.349815,156.804201,5.607198],[-5.664991,158.481722,5.420941],[-5.464665,158.278612,5.863955],[-5.620358,161.357729,6.346657],[-5.188803,161.952410,3.596067],[-5.855919,159.168551,2.936041],[-4.869282,163.892656,6.345495],[-5.565209,160.938631,8.823570],[-5.863465,158.087420,6.899682],[-5.491872,158.164858,6.721800],[-4.684971,155.050371,7.315260],[-5.593050,155.123781,7.336138],[-4.985544,152.326082,7.557416],[-4.336358,152.384661,7.373659],[-4.356302,148.743959,7.662216],[-3.880385,148.783907,7.404434],[-3.643033,145.492022,7.626802],[-3.029028,145.546618,7.432788],[-3.546765,143.724230,7.768687],[-2.711457,143.836031,7.608908],[-3.255541,142.761797,9.930099],[-3.818269,145.162874,9.425754],[-3.793433,145.116014,9.941530],[-4.422684,148.601244,9.116801],[-5.181642,152.346941,8.921455],[-4.585860,148.561876,9.626930],[-4.087566,148.363665,11.033547],[-3.300823,144.934252,11.237106],[-3.600019,142.633471,10.213729],[-2.990755,142.084459,11.490448],[-2.617550,141.628374,12.144121],[-2.961490,144.723925,12.270340],[-1.920068,141.483828,12.562124],[-2.432081,144.726244,12.535673],[-3.629366,148.237780,12.087018],[-4.937465,151.949053,10.862650],[-5.352161,152.341921,9.279434],[-5.677640,155.354433,8.990517],[-5.567253,155.052553,10.684828],[-4.353972,151.733233,12.322406],[-3.257589,148.233751,12.370111],[-2.216323,148.255556,13.598554],[-1.457414,144.719484,13.722023],[-1.677097,141.264254,12.979744],[-0.683610,141.215181,14.062848],[-2.959969,151.662478,13.615453],[-3.354747,154.773272,13.676620],[-4.843351,154.828386,12.417965],[-5.497595,157.436129,10.716197],[-4.886238,156.797976,12.489299],[-3.447202,156.413317,13.813743],[-3.331771,157.835375,13.908997],[-4.772836,158.710695,12.504882],[-5.276498,159.821352,10.807270],[-5.882201,157.853579,8.812591],[-5.062548,163.103899,8.958542],[-4.907433,162.088884,11.046425],[-4.194728,160.757753,12.732989],[-2.840731,159.476946,14.050278],[-2.353017,160.785372,14.259746],[-3.341874,162.277254,13.145268],[-3.771206,163.660830,11.441118],[-2.967519,163.857393,11.310703],[-3.045472,164.929674,9.297657],[-2.769544,165.821215,9.518627],[-2.716235,164.805117,11.667116],[-2.633377,162.824678,13.592837],[-2.909567,162.397631,13.240435],[-0.993024,161.492357,14.945035],[-0.948882,160.760820,15.147367],[1.337656,161.629686,15.705061],[-1.046347,163.411745,14.158891],[-0.993010,165.547899,12.384172],[-0.943671,166.678682,9.939656],[-0.707972,167.301287,6.898113],[-2.244770,166.507540,6.381320],[-2.531252,165.533861,6.313881],[-3.207662,165.533770,6.245159],[-3.770641,164.791826,9.258235],[2.286377,167.372652,7.543927],[2.045155,166.812151,10.464083],[1.621861,165.435839,12.869803],[1.478584,163.659014,14.701647],[4.320548,162.586931,14.504202],[3.940547,160.787020,15.428295],[1.218017,160.433107,15.800008],[3.428807,159.828798,15.642653],[5.155399,158.600267,14.951175],[5.734269,159.058138,14.611575],[6.158474,157.014330,14.319131],[6.588717,157.217669,13.992700],[6.602149,155.285051,13.787114],[6.891777,155.431047,13.625197],[6.728924,153.247545,13.495449],[6.407387,160.463610,13.102339],[5.721328,159.264315,14.394622],[7.312593,157.460543,13.160847],[7.220226,157.357988,13.405103],[6.869220,157.230684,13.464835],[7.673679,155.710512,12.641782],[7.673383,155.619249,12.695670],[8.087705,153.702074,10.171722],[7.923570,155.952394,12.446411],[8.813299,157.751863,11.761998],[9.130722,153.861788,11.934283],[8.313959,153.814470,12.992156],[7.245576,153.713594,13.111125],[8.304789,149.868807,12.958368],[7.178340,149.709627,13.052032],[8.426023,147.129732,13.038128],[7.263029,146.827852,13.180021],[8.698570,142.976671,12.952085],[7.602046,142.331347,13.514878],[9.287065,147.406923,12.172598],[9.888488,143.626879,12.243957],[8.711250,143.154131,13.290655],[8.675453,144.193087,10.922310],[8.495985,147.286074,10.751300],[9.245017,149.984743,12.051874],[8.487092,149.904543,10.842365],[8.895925,147.316439,10.421434],[8.426532,143.718477,10.614885],[8.951673,144.165468,10.438424],[8.830041,147.859438,8.868591],[9.005474,150.112978,9.072724],[8.592253,150.061876,8.724609],[8.273462,147.794802,8.555668],[8.930416,145.057802,8.453394],[8.327972,145.022387,8.147547],[8.974447,153.752642,8.893950],[9.177013,153.783388,9.233841],[8.606813,156.471605,8.704127],[9.095193,156.876131,9.055037],[9.173425,153.821749,10.544461],[8.869602,157.683626,10.564535],[8.897916,158.392794,8.843476],[7.729578,162.064821,11.133516],[8.253944,162.283968,8.279845],[5.019760,165.330767,11.014817],[5.439644,165.965197,8.024733],[8.487002,158.418749,8.421123],[4.565621,163.890627,13.322169],[8.681587,157.714998,10.992184],[9.095584,153.828707,10.990789],[8.895971,149.964235,10.469933],[2.188923,140.241762,-4.142357],[13.072891,141.444231,-0.369232],[12.207124,143.618502,1.482379],[12.333448,143.546938,1.692520],[13.468503,141.531939,0.184923],[14.486957,141.609514,1.106189],[-0.239501,160.858004,-2.011013],[-3.080210,160.420275,-1.059085],[-5.116384,155.433535,4.791583],[-5.539447,158.174120,7.180797],[-5.433540,158.272600,5.563677],[-4.676009,154.288973,7.488269],[-5.620358,161.357729,6.346657],[7.022096,155.217546,0.420880],[8.582962,152.522280,4.616177],[6.974733,151.931215,2.298831],[8.632189,156.198610,3.253677],[6.832393,158.017305,-0.003906],[8.653036,158.130404,2.946478],[6.733783,161.040773,0.011230],[2.214817,161.047258,-1.439255],[2.994390,157.624407,-1.336912],[3.444028,154.542009,-0.769605],[3.549978,151.407656,1.377591],[7.331384,148.806856,3.415735],[9.014305,149.586962,4.998914],[9.609649,146.710863,3.702815],[7.262462,146.468279,2.599748],[10.098932,144.403261,2.463860],[7.843776,144.260576,1.545428],[11.188800,142.787264,1.192201],[8.561745,142.527971,-0.096629],[9.832059,141.301561,-2.268793],[12.375280,141.582186,-0.417777],[8.232834,142.124025,-0.012641],[9.269998,141.056398,-1.988476],[7.425498,144.073397,1.852529],[4.019623,148.664186,2.472158],[4.192156,146.175173,2.054058],[7.292407,143.967592,1.673790],[4.547264,144.071718,1.221173],[7.819330,142.374147,-0.225996],[5.188591,142.059237,-0.936732],[8.463360,140.748888,-2.564926],[6.131235,140.517580,-3.845302],[5.374201,140.534853,-3.164093],[4.741167,141.833757,-1.101505],[4.369496,143.850557,1.027744],[1.666600,141.987062,-1.204486],[2.182220,140.685274,-4.077447],[5.093022,140.287401,-3.881972],[1.336635,140.442675,-3.606958],[1.238807,141.633669,-1.072728],[1.132003,143.680391,0.704715],[0.800880,146.078493,1.775693],[0.495176,148.484484,2.307075],[-0.184150,151.187868,1.191985],[-0.780645,154.405092,-0.817684],[-1.633651,157.136827,-1.313934],[-2.408152,160.104769,-0.917555],[-4.655092,159.266695,1.572504],[-4.250112,156.809298,1.635571],[-3.902829,154.915163,1.980174],[-3.625336,151.261889,2.791928],[-3.229217,148.320635,3.399633],[-2.901920,146.146303,2.426477],[-1.173667,145.955767,1.975125],[0.866533,143.646975,0.921996],[0.648765,141.979555,-1.005267],[0.925428,140.443941,-3.228811],[0.287929,140.490572,-3.673443],[-1.942613,140.495409,-3.297807],[-1.383527,142.512972,-0.340653],[-1.361446,143.562471,1.098071],[-1.675960,143.733492,1.104411],[-1.582745,142.250933,-0.250163],[-2.161410,142.647020,-0.590798],[-3.735008,142.469347,-0.113369],[-4.463153,141.086641,-2.338426],[-3.096124,140.955919,-3.217752],[-2.126827,140.680498,-3.023992],[-2.662780,143.738283,1.694491],[8.560516,160.619768,2.915157],[9.509796,146.199709,3.700203],[9.809856,144.828630,2.910314],[8.527009,143.872927,3.083233],[10.494289,143.316942,1.701364],[9.031717,142.367937,1.719624],[10.140617,141.483431,0.147199],[11.699644,142.309862,0.419141],[8.167354,145.642702,3.977110],[5.965302,143.606508,2.654821],[9.150032,142.207003,1.928632],[6.484356,141.888750,1.158031],[7.487255,140.795534,-0.911572],[9.964372,141.582354,0.292856],[5.747092,145.450106,3.662190],[3.377231,145.446215,3.158235],[3.559152,143.383791,2.123517],[6.252903,141.812822,1.029667],[3.870354,141.765978,0.518855],[6.972504,140.819796,-1.112952],[4.401603,140.418520,-1.913189],[0.644397,145.370272,3.109317],[0.819566,143.284517,2.067510],[1.077552,141.668261,0.488908],[3.601234,141.624559,0.487087],[0.909402,140.534548,-1.861931],[3.753310,140.453371,-2.014400],[-1.757779,145.236666,3.127076],[-1.633517,143.385256,2.088527],[-2.074929,141.810549,0.603982],[0.779536,141.579180,0.411671],[-2.590974,140.806734,-1.451549],[0.421616,140.476549,-1.897543],[-2.720731,145.800951,2.476017],[-2.929108,144.160128,1.574719],[-3.277878,143.009188,-0.055576],[-2.489531,142.064638,0.412138],[-4.304700,142.050753,-1.717799],[-2.776129,141.157320,-1.448373],[-2.701275,148.382036,3.651453],[-1.718077,148.430529,4.940781],[-2.883144,150.827135,3.606416],[-2.655497,150.411867,5.003948],[-4.037505,154.912706,2.338648],[-4.203658,153.309984,4.734488],[0.708182,149.879442,4.494382],[0.288574,151.216677,4.107342],[3.233362,149.808214,4.506113],[2.619768,151.382677,4.298693],[5.063226,150.502871,4.992783],[4.927561,151.691652,4.578645],[7.738621,151.550798,5.750037],[8.479032,154.608538,6.022996],[8.416039,151.932085,4.339742],[9.017795,148.935320,4.778431],[7.747158,148.136507,5.393118],[5.507959,147.735628,5.057567],[3.129652,147.526552,4.583193],[0.547694,147.519594,4.331011],[8.690518,156.215899,3.631761],[9.228795,158.168474,6.170358],[8.748617,158.285280,8.778429],[8.581438,156.244524,8.865411],[8.188972,162.462893,8.089687],[9.394239,156.250139,6.182140]], + + 'uvs': [[0.389887,0.320977,0.361250,0.320977,0.361250,0.356654],[0.389887,0.320977,0.389887,0.288480,0.361250,0.320977],[0.389887,0.288480,0.389887,0.320977,0.417280,0.320977],[0.417280,0.320977,0.417280,0.288480,0.389887,0.288480],[0.462829,0.320977,0.417280,0.288480,0.417280,0.320977],[0.462829,0.320977,0.462829,0.288480,0.417280,0.288480],[0.462829,0.288480,0.462829,0.320977,0.497736,0.320977],[0.462829,0.320977,0.462829,0.356654,0.497736,0.320977],[0.462829,0.356654,0.462829,0.320977,0.417280,0.320977],[0.462829,0.356654,0.417280,0.320977,0.417280,0.356654],[0.417280,0.320977,0.389887,0.320977,0.417280,0.356654],[0.417280,0.356654,0.389887,0.320977,0.389887,0.356654],[0.389887,0.356654,0.389887,0.320977,0.361250,0.356654],[0.389887,0.356654,0.361250,0.356654,0.361250,0.391448],[0.361250,0.356654,0.332124,0.391448,0.361250,0.391448],[0.361250,0.356654,0.332124,0.356654,0.332124,0.391448],[0.332124,0.320977,0.332124,0.356654,0.361250,0.356654],[0.332124,0.320977,0.300832,0.320977,0.332124,0.356654],[0.300832,0.288480,0.300832,0.320977,0.332124,0.320977],[0.300832,0.288480,0.268793,0.288480,0.300832,0.320977],[0.300832,0.254807,0.268793,0.288480,0.300832,0.288480],[0.268793,0.254807,0.268793,0.288480,0.300832,0.254807],[0.268793,0.254807,0.236754,0.254807,0.268793,0.288480],[0.237523,0.231829,0.236754,0.254807,0.268793,0.254807],[0.237523,0.231829,0.205461,0.254807,0.236754,0.254807],[0.237523,0.231829,0.207386,0.231829,0.205461,0.254807],[0.211930,0.211122,0.207386,0.231829,0.237523,0.231829],[0.178089,0.206675,0.207386,0.231829,0.211930,0.211122],[0.178089,0.206675,0.176336,0.231829,0.207386,0.231829],[0.147699,0.231829,0.176336,0.231829,0.178089,0.206675],[0.147699,0.231829,0.176336,0.254807,0.176336,0.231829],[0.147699,0.231829,0.147699,0.254807,0.176336,0.254807],[0.120305,0.231829,0.147699,0.254807,0.147699,0.231829],[0.120305,0.231829,0.120305,0.254807,0.147699,0.254807],[0.074757,0.231829,0.120305,0.254807,0.120305,0.231829],[0.074757,0.231829,0.074757,0.254807,0.120305,0.254807],[0.074757,0.231829,0.039850,0.231829,0.074757,0.254807],[0.075062,0.211568,0.039850,0.231829,0.074757,0.231829],[0.075062,0.211568,0.039850,0.211870,0.039850,0.231829],[0.074537,0.193130,0.039850,0.211870,0.075062,0.211568],[0.074537,0.193130,0.039850,0.195120,0.039850,0.211870],[0.074782,0.166897,0.039850,0.195120,0.074537,0.193130],[0.074782,0.166897,0.039850,0.168543,0.039850,0.195120],[0.077997,0.126444,0.039850,0.168543,0.074782,0.166897],[0.077997,0.126444,0.039850,0.126900,0.039850,0.168543],[0.070557,0.092132,0.039850,0.126900,0.077997,0.126444],[0.070557,0.092132,0.038695,0.090059,0.039850,0.126900],[0.069402,0.055464,0.038695,0.090059,0.070557,0.092132],[0.046275,0.044598,0.038695,0.090059,0.069402,0.055464],[0.023319,0.041835,0.038695,0.090059,0.046275,0.044598],[0.023319,0.041835,0.005547,0.089467,0.038695,0.090059],[0.023319,0.041835,0.005547,0.042151,0.005547,0.089467],[0.005547,0.027741,0.005547,0.042151,0.023319,0.041835],[0.532039,0.027741,0.514266,0.041835,0.532039,0.042151],[0.532039,0.027741,0.517620,0.027448,0.514266,0.041835],[0.532039,0.014462,0.517620,0.027448,0.532039,0.027741],[0.532039,0.014462,0.518729,0.014525,0.517620,0.027448],[0.520046,0.002447,0.518729,0.014525,0.532039,0.014462],[0.518729,0.014525,0.520046,0.002447,0.506732,0.002447],[0.520046,0.002447,0.532039,0.014462,0.532039,0.002447],[0.005547,0.002447,0.005547,0.014462,0.017540,0.002447],[0.017540,0.002447,0.005547,0.014462,0.018857,0.014525],[0.018857,0.014525,0.005547,0.014462,0.019966,0.027448],[0.005547,0.014462,0.005547,0.027741,0.019966,0.027448],[0.019966,0.027448,0.005547,0.027741,0.023319,0.041835],[0.019966,0.027448,0.023319,0.041835,0.046275,0.044598],[0.019966,0.027448,0.046275,0.044598,0.034968,0.026467],[0.034968,0.026467,0.046275,0.044598,0.049659,0.020387],[0.046275,0.044598,0.072523,0.021424,0.049659,0.020387],[0.046275,0.044598,0.069402,0.055464,0.072523,0.021424],[0.069402,0.055464,0.087388,0.056234,0.072523,0.021424],[0.069402,0.055464,0.070557,0.092132,0.087388,0.056234],[0.087388,0.056234,0.070557,0.092132,0.088928,0.092132],[0.070557,0.092132,0.094496,0.121372,0.088928,0.092132],[0.070557,0.092132,0.077997,0.126444,0.094496,0.121372],[0.094496,0.121372,0.077997,0.126444,0.094260,0.154066],[0.077997,0.126444,0.074782,0.166897,0.094260,0.154066],[0.094260,0.154066,0.074782,0.166897,0.120305,0.171313],[0.074782,0.166897,0.074537,0.193130,0.120305,0.171313],[0.074537,0.193130,0.120305,0.189081,0.120305,0.171313],[0.074537,0.193130,0.075062,0.211568,0.120305,0.189081],[0.075062,0.211568,0.120305,0.207017,0.120305,0.189081],[0.075062,0.211568,0.074757,0.231829,0.120305,0.207017],[0.074757,0.231829,0.120305,0.231829,0.120305,0.207017],[0.120305,0.207017,0.120305,0.231829,0.147699,0.231829],[0.120305,0.207017,0.147699,0.231829,0.146621,0.205309],[0.146621,0.205309,0.147699,0.231829,0.178089,0.206675],[0.146621,0.205309,0.178089,0.206675,0.172959,0.185698],[0.172959,0.185698,0.178089,0.206675,0.197380,0.191046],[0.178089,0.206675,0.211930,0.211122,0.197380,0.191046],[0.197380,0.191046,0.211930,0.211122,0.218050,0.195180],[0.218050,0.195180,0.211930,0.211122,0.239277,0.213807],[0.211930,0.211122,0.237523,0.231829,0.239277,0.213807],[0.239277,0.213807,0.237523,0.231829,0.268793,0.231829],[0.237523,0.231829,0.268793,0.254807,0.268793,0.231829],[0.268793,0.231829,0.268793,0.254807,0.300062,0.231829],[0.300062,0.231829,0.268793,0.254807,0.300832,0.254807],[0.300062,0.231829,0.300832,0.254807,0.332124,0.254807],[0.332124,0.254807,0.300832,0.254807,0.332124,0.288480],[0.300832,0.254807,0.300832,0.288480,0.332124,0.288480],[0.332124,0.288480,0.300832,0.288480,0.332124,0.320977],[0.332124,0.288480,0.332124,0.320977,0.361250,0.320977],[0.361250,0.320977,0.332124,0.320977,0.361250,0.356654],[0.361250,0.288480,0.332124,0.288480,0.361250,0.320977],[0.361250,0.254807,0.332124,0.288480,0.361250,0.288480],[0.361250,0.254807,0.332124,0.254807,0.332124,0.288480],[0.361250,0.231829,0.332124,0.254807,0.361250,0.254807],[0.330200,0.231829,0.332124,0.254807,0.361250,0.231829],[0.300062,0.231829,0.332124,0.254807,0.330200,0.231829],[0.325655,0.211122,0.300062,0.231829,0.330200,0.231829],[0.298309,0.213807,0.300062,0.231829,0.325655,0.211122],[0.298309,0.213807,0.268793,0.231829,0.300062,0.231829],[0.268793,0.213020,0.268793,0.231829,0.298309,0.213807],[0.239277,0.213807,0.268793,0.231829,0.268793,0.213020],[0.241681,0.195634,0.239277,0.213807,0.268793,0.213020],[0.218050,0.195180,0.239277,0.213807,0.241681,0.195634],[0.241681,0.195634,0.243592,0.183311,0.218050,0.195180],[0.268793,0.180936,0.243592,0.183311,0.241681,0.195634],[0.268793,0.164315,0.243592,0.183311,0.268793,0.180936],[0.243621,0.165196,0.243592,0.183311,0.268793,0.164315],[0.222851,0.165947,0.243592,0.183311,0.243621,0.165196],[0.222851,0.165947,0.220277,0.185357,0.243592,0.183311],[0.206338,0.164441,0.220277,0.185357,0.222851,0.165947],[0.201664,0.180765,0.220277,0.185357,0.206338,0.164441],[0.218050,0.195180,0.220277,0.185357,0.201664,0.180765],[0.243592,0.183311,0.220277,0.185357,0.218050,0.195180],[0.218050,0.195180,0.201664,0.180765,0.197380,0.191046],[0.172959,0.185698,0.197380,0.191046,0.201664,0.180765],[0.167269,0.164305,0.172959,0.185698,0.201664,0.180765],[0.147796,0.166626,0.172959,0.185698,0.167269,0.164305],[0.148087,0.186690,0.172959,0.185698,0.147796,0.166626],[0.148087,0.186690,0.146621,0.205309,0.172959,0.185698],[0.120305,0.189081,0.146621,0.205309,0.148087,0.186690],[0.120305,0.189081,0.120305,0.207017,0.146621,0.205309],[0.120305,0.171313,0.120305,0.189081,0.148087,0.186690],[0.120305,0.171313,0.148087,0.186690,0.147796,0.166626],[0.120305,0.171313,0.147796,0.166626,0.120305,0.151412],[0.120305,0.151412,0.147796,0.166626,0.146268,0.145332],[0.146268,0.145332,0.147796,0.166626,0.166494,0.140798],[0.147796,0.166626,0.167269,0.164305,0.166494,0.140798],[0.166494,0.140798,0.167269,0.164305,0.186440,0.143998],[0.167269,0.164305,0.184846,0.164190,0.186440,0.143998],[0.167269,0.164305,0.201664,0.180765,0.184846,0.164190],[0.184846,0.164190,0.201664,0.180765,0.206338,0.164441],[0.184846,0.164190,0.206338,0.164441,0.186440,0.143998],[0.186440,0.143998,0.206338,0.164441,0.207231,0.147225],[0.207231,0.147225,0.206338,0.164441,0.222851,0.165947],[0.207231,0.147225,0.222851,0.165947,0.223426,0.149582],[0.223426,0.149582,0.222851,0.165947,0.242702,0.147947],[0.242702,0.147947,0.222851,0.165947,0.243621,0.165196],[0.242702,0.147947,0.243621,0.165196,0.268793,0.164315],[0.242702,0.147947,0.268793,0.164315,0.260621,0.147420],[0.260621,0.147420,0.268793,0.164315,0.268793,0.147129],[0.268793,0.147129,0.268793,0.164315,0.276965,0.147420],[0.276965,0.147420,0.268793,0.164315,0.294883,0.147947],[0.294883,0.147947,0.268793,0.164315,0.293965,0.165196],[0.268793,0.164315,0.293994,0.183311,0.293965,0.165196],[0.268793,0.164315,0.268793,0.180936,0.293994,0.183311],[0.295904,0.195634,0.293994,0.183311,0.268793,0.180936],[0.319535,0.195180,0.293994,0.183311,0.295904,0.195634],[0.319535,0.195180,0.317309,0.185357,0.293994,0.183311],[0.335922,0.180765,0.317309,0.185357,0.319535,0.195180],[0.331248,0.164441,0.317309,0.185357,0.335922,0.180765],[0.314734,0.165947,0.317309,0.185357,0.331248,0.164441],[0.314734,0.165947,0.293994,0.183311,0.317309,0.185357],[0.293965,0.165196,0.293994,0.183311,0.314734,0.165947],[0.294883,0.147947,0.293965,0.165196,0.314734,0.165947],[0.294883,0.147947,0.314734,0.165947,0.314159,0.149582],[0.314159,0.149582,0.314734,0.165947,0.330355,0.147225],[0.330355,0.147225,0.314734,0.165947,0.331248,0.164441],[0.330355,0.147225,0.331248,0.164441,0.351145,0.143998],[0.352740,0.164190,0.351145,0.143998,0.331248,0.164441],[0.370317,0.164305,0.351145,0.143998,0.352740,0.164190],[0.371092,0.140798,0.351145,0.143998,0.370317,0.164305],[0.371092,0.140798,0.343882,0.131977,0.351145,0.143998],[0.371092,0.140798,0.356764,0.117319,0.343882,0.131977],[0.383405,0.131693,0.356764,0.117319,0.371092,0.140798],[0.383405,0.131693,0.378401,0.109594,0.356764,0.117319],[0.581760,0.166494,0.554134,0.177034,0.554134,0.198022],[0.581760,0.166494,0.554134,0.162884,0.554134,0.177034],[0.581760,0.166494,0.554134,0.141630,0.554134,0.162884],[0.554134,0.141630,0.581760,0.166494,0.581760,0.141630],[0.581760,0.141630,0.581760,0.166494,0.604617,0.166494],[0.604617,0.166494,0.581760,0.166494,0.581760,0.195004],[0.581760,0.166494,0.554134,0.198022,0.581760,0.195004],[0.581760,0.195004,0.554134,0.198022,0.554134,0.208298],[0.391318,0.145332,0.383405,0.131693,0.371092,0.140798],[0.391318,0.145332,0.371092,0.140798,0.389790,0.166626],[0.389790,0.166626,0.371092,0.140798,0.370317,0.164305],[0.389790,0.166626,0.370317,0.164305,0.364627,0.185698],[0.370317,0.164305,0.335922,0.180765,0.364627,0.185698],[0.370317,0.164305,0.352740,0.164190,0.335922,0.180765],[0.352740,0.164190,0.331248,0.164441,0.335922,0.180765],[0.364627,0.185698,0.335922,0.180765,0.340205,0.191046],[0.340205,0.191046,0.335922,0.180765,0.319535,0.195180],[0.319535,0.195180,0.325655,0.211122,0.340205,0.191046],[0.319535,0.195180,0.298309,0.213807,0.325655,0.211122],[0.295904,0.195634,0.298309,0.213807,0.319535,0.195180],[0.295904,0.195634,0.268793,0.213020,0.298309,0.213807],[0.268793,0.191608,0.268793,0.213020,0.295904,0.195634],[0.241681,0.195634,0.268793,0.213020,0.268793,0.191608],[0.268793,0.180936,0.241681,0.195634,0.268793,0.191608],[0.268793,0.180936,0.268793,0.191608,0.295904,0.195634],[0.340205,0.191046,0.325655,0.211122,0.359497,0.206675],[0.325655,0.211122,0.330200,0.231829,0.359497,0.206675],[0.359497,0.206675,0.330200,0.231829,0.361250,0.231829],[0.389887,0.231829,0.359497,0.206675,0.361250,0.231829],[0.390965,0.205309,0.359497,0.206675,0.389887,0.231829],[0.390965,0.205309,0.364627,0.185698,0.359497,0.206675],[0.389498,0.186690,0.364627,0.185698,0.390965,0.205309],[0.389790,0.166626,0.364627,0.185698,0.389498,0.186690],[0.417280,0.171313,0.389790,0.166626,0.389498,0.186690],[0.417280,0.171313,0.417280,0.151412,0.389790,0.166626],[0.443326,0.154066,0.417280,0.151412,0.417280,0.171313],[0.433387,0.138073,0.417280,0.151412,0.443326,0.154066],[0.554134,0.034928,0.581760,0.013179,0.554134,0.013179],[0.581760,0.034928,0.581760,0.013179,0.554134,0.034928],[0.604617,0.034928,0.581760,0.013179,0.581760,0.034928],[0.604617,0.034928,0.604617,0.013179,0.581760,0.013179],[0.635116,0.013179,0.604617,0.013179,0.604617,0.034928],[0.635116,0.224612,0.635116,0.196193,0.604617,0.224612],[0.578168,0.634378,0.589587,0.645336,0.593562,0.635077],[0.578168,0.634378,0.579033,0.649902,0.589587,0.645336],[0.569340,0.644738,0.579033,0.649902,0.578168,0.634378],[0.604617,0.141630,0.635116,0.166494,0.635116,0.141630],[0.604617,0.141630,0.604617,0.166494,0.635116,0.166494],[0.581760,0.141630,0.604617,0.166494,0.604617,0.141630],[0.604617,0.118259,0.581760,0.141630,0.604617,0.141630],[0.604617,0.118259,0.581760,0.118259,0.581760,0.141630],[0.581760,0.093107,0.581760,0.118259,0.604617,0.118259],[0.581760,0.093107,0.554134,0.093107,0.581760,0.118259],[0.554134,0.093107,0.581760,0.093107,0.554134,0.073929],[0.581760,0.093107,0.581760,0.073929,0.554134,0.073929],[0.581760,0.073929,0.581760,0.093107,0.604617,0.093107],[0.604617,0.093107,0.581760,0.093107,0.604617,0.118259],[0.604617,0.093107,0.604617,0.118259,0.635116,0.118259],[0.604617,0.118259,0.635116,0.141630,0.635116,0.118259],[0.635116,0.141630,0.604617,0.118259,0.604617,0.141630],[0.562939,0.635390,0.569340,0.644738,0.578168,0.634378],[0.562939,0.635390,0.578168,0.634378,0.566165,0.624626],[0.566165,0.624626,0.578168,0.634378,0.574006,0.618871],[0.574006,0.618871,0.578168,0.634378,0.583550,0.619488],[0.578168,0.634378,0.590412,0.625243,0.583550,0.619488],[0.578168,0.634378,0.593562,0.635077,0.590412,0.625243],[0.635116,0.034928,0.635116,0.013179,0.604617,0.034928],[0.604617,0.054226,0.635116,0.034928,0.604617,0.034928],[0.604617,0.054226,0.635116,0.054226,0.635116,0.034928],[0.604617,0.073929,0.635116,0.054226,0.604617,0.054226],[0.604617,0.073929,0.635116,0.073929,0.635116,0.054226],[0.635116,0.073929,0.604617,0.073929,0.604617,0.093107],[0.604617,0.073929,0.581760,0.073929,0.604617,0.093107],[0.581760,0.073929,0.604617,0.073929,0.604617,0.054226],[0.581760,0.073929,0.604617,0.054226,0.581760,0.054226],[0.581760,0.054226,0.604617,0.054226,0.604617,0.034928],[0.581760,0.054226,0.604617,0.034928,0.581760,0.034928],[0.554134,0.034928,0.581760,0.054226,0.581760,0.034928],[0.554134,0.054226,0.581760,0.054226,0.554134,0.034928],[0.554134,0.073929,0.581760,0.054226,0.554134,0.054226],[0.554134,0.073929,0.581760,0.073929,0.581760,0.054226],[0.448658,0.092132,0.434166,0.092132,0.434166,0.119902],[0.434166,0.056234,0.434166,0.092132,0.448658,0.092132],[0.434166,0.056234,0.448658,0.092132,0.450198,0.056234],[0.450198,0.056234,0.448658,0.092132,0.467028,0.092132],[0.467028,0.092132,0.448658,0.092132,0.443090,0.121372],[0.448658,0.092132,0.434166,0.119902,0.443090,0.121372],[0.443090,0.121372,0.434166,0.119902,0.433387,0.138073],[0.467028,0.092132,0.443090,0.121372,0.459588,0.126444],[0.467028,0.092132,0.459588,0.126444,0.497736,0.126900],[0.459588,0.126444,0.497736,0.168543,0.497736,0.126900],[0.459588,0.126444,0.462804,0.166897,0.497736,0.168543],[0.459588,0.126444,0.443326,0.154066,0.462804,0.166897],[0.462804,0.166897,0.443326,0.154066,0.417280,0.171313],[0.462804,0.166897,0.417280,0.171313,0.463049,0.193130],[0.463049,0.193130,0.417280,0.171313,0.417280,0.189081],[0.417280,0.171313,0.389498,0.186690,0.417280,0.189081],[0.417280,0.189081,0.389498,0.186690,0.390965,0.205309],[0.417280,0.189081,0.390965,0.205309,0.417280,0.207017],[0.417280,0.207017,0.390965,0.205309,0.389887,0.231829],[0.417280,0.207017,0.389887,0.231829,0.417280,0.231829],[0.417280,0.231829,0.389887,0.231829,0.389887,0.254807],[0.389887,0.231829,0.361250,0.254807,0.389887,0.254807],[0.389887,0.231829,0.361250,0.231829,0.361250,0.254807],[0.389887,0.254807,0.361250,0.254807,0.361250,0.288480],[0.389887,0.288480,0.389887,0.254807,0.361250,0.288480],[0.417280,0.254807,0.389887,0.254807,0.389887,0.288480],[0.417280,0.231829,0.389887,0.254807,0.417280,0.254807],[0.462829,0.231829,0.417280,0.231829,0.417280,0.254807],[0.462829,0.231829,0.417280,0.207017,0.417280,0.231829],[0.462524,0.211568,0.417280,0.207017,0.462829,0.231829],[0.462524,0.211568,0.417280,0.189081,0.417280,0.207017],[0.463049,0.193130,0.417280,0.189081,0.462524,0.211568],[0.463049,0.193130,0.462524,0.211568,0.497736,0.211870],[0.497736,0.211870,0.462524,0.211568,0.497736,0.231829],[0.462524,0.211568,0.462829,0.231829,0.497736,0.231829],[0.462829,0.231829,0.462829,0.254807,0.497736,0.231829],[0.462829,0.231829,0.417280,0.254807,0.462829,0.254807],[0.462829,0.254807,0.417280,0.254807,0.417280,0.288480],[0.417280,0.288480,0.417280,0.254807,0.389887,0.288480],[0.462829,0.288480,0.462829,0.254807,0.417280,0.288480],[0.462829,0.254807,0.462829,0.288480,0.497736,0.254807],[0.497736,0.254807,0.462829,0.288480,0.497736,0.288480],[0.462829,0.288480,0.497736,0.320977,0.497736,0.288480],[0.497736,0.288480,0.497736,0.320977,0.532039,0.320977],[0.497736,0.320977,0.497736,0.356654,0.532039,0.320977],[0.497736,0.320977,0.462829,0.356654,0.497736,0.356654],[0.462829,0.356654,0.462829,0.391448,0.497736,0.356654],[0.462829,0.391448,0.462829,0.356654,0.417280,0.391448],[0.462829,0.356654,0.417280,0.356654,0.417280,0.391448],[0.417280,0.391448,0.417280,0.356654,0.389887,0.391448],[0.417280,0.356654,0.389887,0.356654,0.389887,0.391448],[0.389887,0.391448,0.389887,0.356654,0.361250,0.391448],[0.389887,0.391448,0.361250,0.391448,0.361250,0.423238],[0.361250,0.391448,0.332124,0.423238,0.361250,0.423238],[0.361250,0.391448,0.332124,0.391448,0.332124,0.423238],[0.332124,0.391448,0.300832,0.423238,0.332124,0.423238],[0.332124,0.391448,0.300832,0.391448,0.300832,0.423238],[0.332124,0.356654,0.300832,0.391448,0.332124,0.391448],[0.332124,0.356654,0.300832,0.356654,0.300832,0.391448],[0.300832,0.320977,0.300832,0.356654,0.332124,0.356654],[0.300832,0.320977,0.268793,0.356654,0.300832,0.356654],[0.300832,0.320977,0.268793,0.320977,0.268793,0.356654],[0.268793,0.288480,0.268793,0.320977,0.300832,0.320977],[0.268793,0.288480,0.236754,0.320977,0.268793,0.320977],[0.268793,0.288480,0.236754,0.288480,0.236754,0.320977],[0.236754,0.254807,0.236754,0.288480,0.268793,0.288480],[0.236754,0.254807,0.205461,0.288480,0.236754,0.288480],[0.236754,0.254807,0.205461,0.254807,0.205461,0.288480],[0.176336,0.254807,0.205461,0.288480,0.205461,0.254807],[0.176336,0.288480,0.205461,0.288480,0.176336,0.254807],[0.176336,0.320977,0.205461,0.288480,0.176336,0.288480],[0.176336,0.320977,0.205461,0.320977,0.205461,0.288480],[0.176336,0.356654,0.205461,0.320977,0.176336,0.320977],[0.176336,0.356654,0.205461,0.356654,0.205461,0.320977],[0.176336,0.356654,0.205461,0.391448,0.205461,0.356654],[0.176336,0.391448,0.205461,0.391448,0.176336,0.356654],[0.176336,0.391448,0.205461,0.423238,0.205461,0.391448],[0.176336,0.423238,0.205461,0.423238,0.176336,0.391448],[0.176336,0.423238,0.205461,0.456226,0.205461,0.423238],[0.176336,0.456226,0.205461,0.456226,0.176336,0.423238],[0.176336,0.498395,0.205461,0.456226,0.176336,0.456226],[0.176336,0.498395,0.205461,0.498395,0.205461,0.456226],[0.176336,0.498395,0.205461,0.539814,0.205461,0.498395],[0.176336,0.539814,0.205461,0.539814,0.176336,0.498395],[0.147699,0.539814,0.176336,0.539814,0.176336,0.498395],[0.147699,0.539814,0.176336,0.498395,0.147699,0.498395],[0.147699,0.498395,0.176336,0.498395,0.147699,0.456226],[0.147699,0.456226,0.176336,0.498395,0.176336,0.456226],[0.147699,0.456226,0.176336,0.456226,0.147699,0.423238],[0.147699,0.423238,0.176336,0.456226,0.176336,0.423238],[0.147699,0.423238,0.176336,0.423238,0.147699,0.391448],[0.147699,0.391448,0.176336,0.423238,0.176336,0.391448],[0.147699,0.391448,0.176336,0.391448,0.147699,0.356654],[0.147699,0.356654,0.176336,0.391448,0.176336,0.356654],[0.147699,0.356654,0.176336,0.356654,0.147699,0.320977],[0.147699,0.320977,0.176336,0.356654,0.176336,0.320977],[0.147699,0.320977,0.176336,0.320977,0.147699,0.288480],[0.147699,0.288480,0.176336,0.320977,0.176336,0.288480],[0.147699,0.288480,0.176336,0.288480,0.147699,0.254807],[0.147699,0.254807,0.176336,0.288480,0.176336,0.254807],[0.120305,0.254807,0.147699,0.288480,0.147699,0.254807],[0.120305,0.288480,0.147699,0.288480,0.120305,0.254807],[0.120305,0.320977,0.147699,0.288480,0.120305,0.288480],[0.120305,0.320977,0.147699,0.320977,0.147699,0.288480],[0.120305,0.356654,0.147699,0.320977,0.120305,0.320977],[0.120305,0.356654,0.147699,0.356654,0.147699,0.320977],[0.120305,0.356654,0.147699,0.391448,0.147699,0.356654],[0.120305,0.391448,0.147699,0.391448,0.120305,0.356654],[0.120305,0.391448,0.147699,0.423238,0.147699,0.391448],[0.120305,0.423238,0.147699,0.423238,0.120305,0.391448],[0.120305,0.423238,0.147699,0.456226,0.147699,0.423238],[0.120305,0.456226,0.147699,0.456226,0.120305,0.423238],[0.120305,0.456226,0.147699,0.498395,0.147699,0.456226],[0.120305,0.498395,0.147699,0.498395,0.120305,0.456226],[0.120305,0.498395,0.147699,0.539814,0.147699,0.498395],[0.120305,0.539814,0.147699,0.539814,0.120305,0.498395],[0.074757,0.498395,0.120305,0.539814,0.120305,0.498395],[0.074757,0.498395,0.074757,0.539814,0.120305,0.539814],[0.074757,0.498395,0.039850,0.539814,0.074757,0.539814],[0.039850,0.498395,0.039850,0.539814,0.074757,0.498395],[0.039850,0.498395,0.021640,0.539814,0.039850,0.539814],[0.021448,0.498395,0.021640,0.539814,0.039850,0.498395],[0.021448,0.498395,0.005547,0.498395,0.021640,0.539814],[0.021634,0.456226,0.005547,0.498395,0.021448,0.498395],[0.021634,0.456226,0.005547,0.456226,0.005547,0.498395],[0.005547,0.423238,0.005547,0.456226,0.021634,0.456226],[0.532039,0.423238,0.517229,0.423238,0.532039,0.456226],[0.532039,0.391448,0.517229,0.423238,0.532039,0.423238],[0.532039,0.391448,0.497736,0.423238,0.517229,0.423238],[0.532039,0.391448,0.497736,0.391448,0.497736,0.423238],[0.532039,0.356654,0.497736,0.391448,0.532039,0.391448],[0.497736,0.356654,0.497736,0.391448,0.532039,0.356654],[0.497736,0.356654,0.462829,0.391448,0.497736,0.391448],[0.497736,0.391448,0.462829,0.391448,0.462829,0.423238],[0.462829,0.423238,0.462829,0.391448,0.417280,0.423238],[0.462829,0.391448,0.417280,0.391448,0.417280,0.423238],[0.417280,0.391448,0.389887,0.423238,0.417280,0.423238],[0.417280,0.391448,0.389887,0.391448,0.389887,0.423238],[0.389887,0.391448,0.361250,0.423238,0.389887,0.423238],[0.389887,0.423238,0.361250,0.423238,0.361250,0.456226],[0.361250,0.423238,0.332124,0.456226,0.361250,0.456226],[0.361250,0.423238,0.332124,0.423238,0.332124,0.456226],[0.332124,0.423238,0.300832,0.456226,0.332124,0.456226],[0.300832,0.423238,0.300832,0.456226,0.332124,0.423238],[0.300832,0.423238,0.284270,0.456226,0.300832,0.456226],[0.300832,0.423238,0.285300,0.423238,0.284270,0.456226],[0.300832,0.391448,0.285300,0.423238,0.300832,0.423238],[0.300832,0.391448,0.268793,0.391448,0.285300,0.423238],[0.300832,0.356654,0.268793,0.391448,0.300832,0.391448],[0.300832,0.356654,0.268793,0.356654,0.268793,0.391448],[0.268793,0.356654,0.236754,0.356654,0.268793,0.391448],[0.236754,0.320977,0.236754,0.356654,0.268793,0.356654],[0.236754,0.320977,0.205461,0.356654,0.236754,0.356654],[0.236754,0.320977,0.205461,0.320977,0.205461,0.356654],[0.236754,0.288480,0.205461,0.320977,0.236754,0.320977],[0.236754,0.288480,0.205461,0.288480,0.205461,0.320977],[0.236754,0.356654,0.205461,0.356654,0.236754,0.391448],[0.205461,0.356654,0.205461,0.391448,0.236754,0.391448],[0.236754,0.391448,0.205461,0.391448,0.236754,0.423238],[0.205461,0.391448,0.205461,0.423238,0.236754,0.423238],[0.236754,0.423238,0.205461,0.423238,0.236754,0.456226],[0.205461,0.423238,0.205461,0.456226,0.236754,0.456226],[0.236754,0.456226,0.205461,0.456226,0.205461,0.498395],[0.236754,0.456226,0.205461,0.498395,0.236754,0.498395],[0.236754,0.498395,0.205461,0.498395,0.236754,0.539814],[0.205461,0.498395,0.205461,0.539814,0.236754,0.539814],[0.236754,0.498395,0.236754,0.539814,0.255294,0.539814],[0.254859,0.498395,0.236754,0.498395,0.255294,0.539814],[0.236754,0.456226,0.236754,0.498395,0.254859,0.498395],[0.254176,0.456226,0.236754,0.456226,0.254859,0.498395],[0.236754,0.423238,0.236754,0.456226,0.254176,0.456226],[0.253321,0.423238,0.236754,0.423238,0.254176,0.456226],[0.236754,0.391448,0.236754,0.423238,0.253321,0.423238],[0.268793,0.391448,0.236754,0.391448,0.253321,0.423238],[0.236754,0.356654,0.236754,0.391448,0.268793,0.391448],[0.268793,0.391448,0.253321,0.423238,0.268793,0.423238],[0.268793,0.423238,0.253321,0.423238,0.268793,0.456226],[0.253321,0.423238,0.254176,0.456226,0.268793,0.456226],[0.268793,0.456226,0.254176,0.456226,0.268793,0.498395],[0.254176,0.456226,0.254859,0.498395,0.268793,0.498395],[0.268793,0.498395,0.254859,0.498395,0.255294,0.539814],[0.268793,0.498395,0.255294,0.539814,0.268793,0.539814],[0.268793,0.498395,0.268793,0.539814,0.282813,0.539814],[0.283405,0.498395,0.268793,0.498395,0.282813,0.539814],[0.268793,0.456226,0.268793,0.498395,0.283405,0.498395],[0.284270,0.456226,0.268793,0.456226,0.283405,0.498395],[0.268793,0.423238,0.268793,0.456226,0.284270,0.456226],[0.285300,0.423238,0.268793,0.423238,0.284270,0.456226],[0.268793,0.391448,0.268793,0.423238,0.285300,0.423238],[0.300832,0.456226,0.284270,0.456226,0.283405,0.498395],[0.300832,0.456226,0.283405,0.498395,0.300832,0.498395],[0.300832,0.498395,0.283405,0.498395,0.300832,0.539814],[0.283405,0.498395,0.282813,0.539814,0.300832,0.539814],[0.300832,0.498395,0.300832,0.539814,0.332124,0.498395],[0.332124,0.498395,0.300832,0.539814,0.332124,0.539814],[0.361250,0.498395,0.332124,0.498395,0.332124,0.539814],[0.332124,0.456226,0.332124,0.498395,0.361250,0.498395],[0.300832,0.456226,0.332124,0.498395,0.332124,0.456226],[0.300832,0.456226,0.300832,0.498395,0.332124,0.498395],[0.361250,0.456226,0.332124,0.456226,0.361250,0.498395],[0.389887,0.456226,0.361250,0.456226,0.361250,0.498395],[0.389887,0.423238,0.361250,0.456226,0.389887,0.456226],[0.417280,0.423238,0.389887,0.423238,0.389887,0.456226],[0.417280,0.423238,0.389887,0.456226,0.417280,0.456226],[0.417280,0.456226,0.389887,0.456226,0.389887,0.498395],[0.389887,0.456226,0.361250,0.498395,0.389887,0.498395],[0.389887,0.498395,0.361250,0.498395,0.389887,0.539814],[0.389887,0.539814,0.361250,0.498395,0.361250,0.539814],[0.361250,0.498395,0.332124,0.539814,0.361250,0.539814],[0.417280,0.498395,0.389887,0.498395,0.389887,0.539814],[0.417280,0.456226,0.389887,0.498395,0.417280,0.498395],[0.462829,0.498395,0.417280,0.456226,0.417280,0.498395],[0.462829,0.456226,0.417280,0.456226,0.462829,0.498395],[0.462829,0.423238,0.417280,0.456226,0.462829,0.456226],[0.462829,0.423238,0.417280,0.423238,0.417280,0.456226],[0.462829,0.423238,0.462829,0.456226,0.497736,0.456226],[0.497736,0.456226,0.462829,0.456226,0.462829,0.498395],[0.497736,0.456226,0.462829,0.498395,0.497736,0.498395],[0.497736,0.498395,0.462829,0.498395,0.497736,0.539814],[0.462829,0.498395,0.462829,0.539814,0.497736,0.539814],[0.462829,0.539814,0.462829,0.498395,0.417280,0.539814],[0.462829,0.498395,0.417280,0.498395,0.417280,0.539814],[0.417280,0.539814,0.417280,0.498395,0.389887,0.539814],[0.497736,0.498395,0.497736,0.539814,0.516564,0.539814],[0.516824,0.498395,0.497736,0.498395,0.516564,0.539814],[0.497736,0.456226,0.497736,0.498395,0.516824,0.498395],[0.497736,0.456226,0.516824,0.498395,0.517022,0.456226],[0.517022,0.456226,0.516824,0.498395,0.532039,0.498395],[0.532039,0.498395,0.516824,0.498395,0.532039,0.539814],[0.516824,0.498395,0.516564,0.539814,0.532039,0.539814],[0.005547,0.498395,0.005547,0.539814,0.021640,0.539814],[0.532039,0.456226,0.517022,0.456226,0.532039,0.498395],[0.517229,0.423238,0.517022,0.456226,0.532039,0.456226],[0.517229,0.423238,0.497736,0.423238,0.517022,0.456226],[0.497736,0.423238,0.497736,0.456226,0.517022,0.456226],[0.497736,0.423238,0.462829,0.423238,0.497736,0.456226],[0.497736,0.391448,0.462829,0.423238,0.497736,0.423238],[0.268793,0.320977,0.236754,0.320977,0.268793,0.356654],[0.532039,0.320977,0.497736,0.356654,0.532039,0.356654],[0.005547,0.320977,0.005547,0.356654,0.039850,0.356654],[0.005547,0.356654,0.039850,0.391448,0.039850,0.356654],[0.005547,0.356654,0.005547,0.391448,0.039850,0.391448],[0.005547,0.391448,0.039850,0.423238,0.039850,0.391448],[0.005547,0.391448,0.021885,0.423238,0.039850,0.423238],[0.005547,0.391448,0.005547,0.423238,0.021885,0.423238],[0.005547,0.423238,0.021634,0.456226,0.021885,0.423238],[0.021885,0.423238,0.021634,0.456226,0.039850,0.423238],[0.039850,0.423238,0.021634,0.456226,0.039850,0.456226],[0.021634,0.456226,0.021448,0.498395,0.039850,0.456226],[0.039850,0.456226,0.021448,0.498395,0.039850,0.498395],[0.039850,0.456226,0.039850,0.498395,0.074757,0.498395],[0.039850,0.456226,0.074757,0.498395,0.074757,0.456226],[0.074757,0.498395,0.120305,0.456226,0.074757,0.456226],[0.120305,0.456226,0.074757,0.498395,0.120305,0.498395],[0.074757,0.456226,0.120305,0.456226,0.074757,0.423238],[0.074757,0.423238,0.120305,0.456226,0.120305,0.423238],[0.074757,0.423238,0.120305,0.423238,0.074757,0.391448],[0.074757,0.391448,0.120305,0.423238,0.120305,0.391448],[0.074757,0.391448,0.120305,0.391448,0.074757,0.356654],[0.074757,0.356654,0.120305,0.391448,0.120305,0.356654],[0.074757,0.356654,0.120305,0.356654,0.120305,0.320977],[0.074757,0.356654,0.120305,0.320977,0.074757,0.320977],[0.074757,0.320977,0.120305,0.320977,0.120305,0.288480],[0.074757,0.320977,0.120305,0.288480,0.074757,0.288480],[0.074757,0.288480,0.120305,0.288480,0.074757,0.254807],[0.074757,0.254807,0.120305,0.288480,0.120305,0.254807],[0.039850,0.254807,0.074757,0.288480,0.074757,0.254807],[0.039850,0.254807,0.039850,0.288480,0.074757,0.288480],[0.005547,0.254807,0.039850,0.288480,0.039850,0.254807],[0.005547,0.254807,0.005547,0.288480,0.039850,0.288480],[0.532039,0.254807,0.497736,0.288480,0.532039,0.288480],[0.497736,0.254807,0.497736,0.288480,0.532039,0.254807],[0.497736,0.231829,0.497736,0.254807,0.532039,0.254807],[0.497736,0.231829,0.462829,0.254807,0.497736,0.254807],[0.532039,0.231829,0.497736,0.231829,0.532039,0.254807],[0.532039,0.212202,0.497736,0.231829,0.532039,0.231829],[0.532039,0.212202,0.497736,0.211870,0.497736,0.231829],[0.532039,0.195381,0.497736,0.211870,0.532039,0.212202],[0.532039,0.195381,0.497736,0.195120,0.497736,0.211870],[0.532039,0.168337,0.497736,0.195120,0.532039,0.195381],[0.532039,0.168337,0.497736,0.168543,0.497736,0.195120],[0.497736,0.126900,0.497736,0.168543,0.532039,0.168337],[0.497736,0.126900,0.532039,0.168337,0.532039,0.126627],[0.039850,0.126900,0.005547,0.126627,0.005547,0.168337],[0.038695,0.090059,0.005547,0.126627,0.039850,0.126900],[0.038695,0.090059,0.005547,0.089467,0.005547,0.126627],[0.498891,0.090059,0.532039,0.126627,0.532039,0.089467],[0.498891,0.090059,0.497736,0.126900,0.532039,0.126627],[0.467028,0.092132,0.497736,0.126900,0.498891,0.090059],[0.468183,0.055464,0.467028,0.092132,0.498891,0.090059],[0.450198,0.056234,0.467028,0.092132,0.468183,0.055464],[0.450198,0.056234,0.468183,0.055464,0.465063,0.021424],[0.468183,0.055464,0.491311,0.044598,0.465063,0.021424],[0.491311,0.044598,0.468183,0.055464,0.498891,0.090059],[0.514266,0.041835,0.491311,0.044598,0.498891,0.090059],[0.517620,0.027448,0.491311,0.044598,0.514266,0.041835],[0.491311,0.044598,0.517620,0.027448,0.502618,0.026467],[0.517620,0.027448,0.518729,0.014525,0.502618,0.026467],[0.518729,0.014525,0.504825,0.012518,0.502618,0.026467],[0.518729,0.014525,0.506732,0.002447,0.504825,0.012518],[0.504825,0.012518,0.506732,0.002447,0.495845,0.002447],[0.017540,0.002447,0.018857,0.014525,0.030854,0.002447],[0.030854,0.002447,0.018857,0.014525,0.032761,0.012518],[0.018857,0.014525,0.034968,0.026467,0.032761,0.012518],[0.018857,0.014525,0.019966,0.027448,0.034968,0.026467],[0.034968,0.026467,0.045009,0.016634,0.032761,0.012518],[0.034968,0.026467,0.049659,0.020387,0.045009,0.016634],[0.223853,0.017256,0.218153,0.020595,0.219609,0.040117],[0.218153,0.020595,0.192626,0.022964,0.219609,0.040117],[0.219609,0.040117,0.192626,0.022964,0.198278,0.045798],[0.198278,0.045798,0.192626,0.022964,0.177226,0.022964],[0.072523,0.021424,0.087388,0.056234,0.087388,0.021424],[0.087388,0.056234,0.103420,0.056234,0.087388,0.021424],[0.087388,0.056234,0.088928,0.092132,0.103420,0.056234],[0.103420,0.056234,0.088928,0.092132,0.103420,0.092132],[0.088928,0.092132,0.103420,0.119902,0.103420,0.092132],[0.088928,0.092132,0.094496,0.121372,0.103420,0.119902],[0.104199,0.138073,0.103420,0.119902,0.094496,0.121372],[0.554134,0.284516,0.554134,0.265218,0.581760,0.284516],[0.581760,0.284516,0.554134,0.265218,0.581760,0.265218],[0.554134,0.265218,0.581760,0.243469,0.581760,0.265218],[0.554134,0.265218,0.554134,0.243469,0.581760,0.243469],[0.094260,0.154066,0.120305,0.151412,0.104199,0.138073],[0.094260,0.154066,0.120305,0.171313,0.120305,0.151412],[0.094496,0.121372,0.094260,0.154066,0.104199,0.138073],[0.581760,0.454902,0.554134,0.454902,0.581760,0.434629],[0.554134,0.454902,0.554134,0.438588,0.581760,0.434629],[0.581760,0.425294,0.581760,0.434629,0.554134,0.438588],[0.581760,0.425294,0.604617,0.426483,0.581760,0.434629],[0.581760,0.425294,0.604617,0.396784,0.604617,0.426483],[0.581760,0.396784,0.604617,0.396784,0.581760,0.425294],[0.581760,0.371920,0.604617,0.396784,0.581760,0.396784],[0.604617,0.371920,0.604617,0.396784,0.581760,0.371920],[0.604617,0.371920,0.635116,0.396784,0.604617,0.396784],[0.635116,0.371920,0.635116,0.396784,0.604617,0.371920],[0.578168,0.634378,0.579033,0.649902,0.569340,0.644738],[0.589587,0.645336,0.579033,0.649902,0.578168,0.634378],[0.604617,0.426483,0.635116,0.396784,0.635116,0.426483],[0.604617,0.426483,0.604617,0.396784,0.635116,0.396784],[0.604617,0.454902,0.604617,0.426483,0.635116,0.426483],[0.581760,0.454902,0.604617,0.426483,0.604617,0.454902],[0.581760,0.454902,0.581760,0.434629,0.604617,0.426483],[0.604617,0.265218,0.581760,0.243469,0.604617,0.243469],[0.604617,0.265218,0.581760,0.265218,0.581760,0.243469],[0.581760,0.284516,0.581760,0.265218,0.604617,0.265218],[0.581760,0.284516,0.604617,0.265218,0.604617,0.284516],[0.604617,0.284516,0.604617,0.265218,0.635116,0.265218],[0.635116,0.265218,0.604617,0.265218,0.635116,0.243469],[0.604617,0.265218,0.604617,0.243469,0.635116,0.243469],[0.635116,0.454902,0.604617,0.454902,0.635116,0.426483],[0.593562,0.635077,0.589587,0.645336,0.578168,0.634378],[0.590412,0.625243,0.593562,0.635077,0.578168,0.634378],[0.590412,0.625243,0.578168,0.634378,0.583550,0.619488],[0.583550,0.619488,0.578168,0.634378,0.574006,0.618871],[0.574006,0.618871,0.578168,0.634378,0.566165,0.624626],[0.578168,0.634378,0.562939,0.635390,0.566165,0.624626],[0.578168,0.634378,0.569340,0.644738,0.562939,0.635390],[0.635116,0.348549,0.635116,0.371920,0.604617,0.348549],[0.604617,0.348549,0.635116,0.371920,0.604617,0.371920],[0.604617,0.348549,0.604617,0.371920,0.581760,0.371920],[0.604617,0.348549,0.581760,0.371920,0.581760,0.348549],[0.581760,0.348549,0.581760,0.371920,0.554134,0.371920],[0.581760,0.371920,0.581760,0.396784,0.554134,0.371920],[0.554134,0.371920,0.581760,0.396784,0.554134,0.393174],[0.581760,0.396784,0.554134,0.407324,0.554134,0.393174],[0.554134,0.407324,0.581760,0.396784,0.554134,0.428312],[0.581760,0.425294,0.554134,0.428312,0.581760,0.396784],[0.554134,0.438588,0.554134,0.428312,0.581760,0.425294],[0.146268,0.145332,0.166494,0.140798,0.155432,0.131693],[0.155432,0.131693,0.166494,0.140798,0.180822,0.117319],[0.166494,0.140798,0.193704,0.131977,0.180822,0.117319],[0.166494,0.140798,0.186440,0.143998,0.193704,0.131977],[0.186440,0.143998,0.207231,0.147225,0.193704,0.131977],[0.207717,0.129832,0.193704,0.131977,0.207231,0.147225],[0.207717,0.129832,0.180822,0.117319,0.193704,0.131977],[0.180822,0.117319,0.207717,0.129832,0.204035,0.104071],[0.204035,0.104071,0.207717,0.129832,0.223025,0.130811],[0.207717,0.129832,0.207231,0.147225,0.223025,0.130811],[0.223025,0.130811,0.207231,0.147225,0.223426,0.149582],[0.223025,0.130811,0.223426,0.149582,0.242702,0.147947],[0.223025,0.130811,0.242702,0.147947,0.239769,0.129851],[0.239769,0.129851,0.242702,0.147947,0.254982,0.130157],[0.254982,0.130157,0.242702,0.147947,0.260621,0.147420],[0.254982,0.130157,0.260621,0.147420,0.268793,0.147129],[0.254982,0.130157,0.268793,0.147129,0.268793,0.128978],[0.268793,0.128978,0.268793,0.147129,0.282604,0.130157],[0.282604,0.130157,0.268793,0.147129,0.276965,0.147420],[0.282604,0.130157,0.276965,0.147420,0.294883,0.147947],[0.282604,0.130157,0.294883,0.147947,0.297817,0.129851],[0.297817,0.129851,0.294883,0.147947,0.314561,0.130811],[0.314561,0.130811,0.294883,0.147947,0.314159,0.149582],[0.314561,0.130811,0.314159,0.149582,0.330355,0.147225],[0.314561,0.130811,0.330355,0.147225,0.329869,0.129832],[0.329869,0.129832,0.330355,0.147225,0.343882,0.131977],[0.343882,0.131977,0.330355,0.147225,0.351145,0.143998],[0.356764,0.117319,0.329869,0.129832,0.343882,0.131977],[0.356764,0.117319,0.333551,0.104071,0.329869,0.129832],[0.335748,0.079983,0.333551,0.104071,0.356764,0.117319],[0.316703,0.081499,0.333551,0.104071,0.335748,0.079983],[0.316703,0.081499,0.316088,0.103497,0.333551,0.104071],[0.316703,0.081499,0.301497,0.104028,0.316088,0.103497],[0.316703,0.081499,0.300543,0.086783,0.301497,0.104028],[0.317977,0.040117,0.300543,0.086783,0.316703,0.081499],[0.317977,0.040117,0.296255,0.056672,0.300543,0.086783],[0.291751,0.034846,0.296255,0.056672,0.317977,0.040117],[0.291751,0.034846,0.283410,0.063141,0.296255,0.056672],[0.291751,0.034846,0.280601,0.038349,0.283410,0.063141],[0.288711,0.018340,0.280601,0.038349,0.291751,0.034846],[0.288711,0.018340,0.277481,0.019726,0.280601,0.038349],[0.276532,0.004376,0.277481,0.019726,0.288711,0.018340],[0.276532,0.004376,0.268793,0.004376,0.277481,0.019726],[0.286537,0.004376,0.276532,0.004376,0.288711,0.018340],[0.286537,0.004376,0.288711,0.018340,0.300109,0.015782],[0.300109,0.015782,0.288711,0.018340,0.291751,0.034846],[0.300109,0.015782,0.291751,0.034846,0.305390,0.026933],[0.305390,0.026933,0.291751,0.034846,0.317977,0.040117],[0.317977,0.040117,0.313732,0.017256,0.305390,0.026933],[0.319433,0.020595,0.313732,0.017256,0.317977,0.040117],[0.487926,0.020387,0.502618,0.026467,0.492577,0.016634],[0.487926,0.020387,0.491311,0.044598,0.502618,0.026467],[0.465063,0.021424,0.491311,0.044598,0.487926,0.020387],[0.344960,0.022964,0.319433,0.020595,0.317977,0.040117],[0.344960,0.022964,0.317977,0.040117,0.339308,0.045798],[0.317977,0.040117,0.335748,0.079983,0.339308,0.045798],[0.317977,0.040117,0.316703,0.081499,0.335748,0.079983],[0.339308,0.045798,0.335748,0.079983,0.356766,0.083525],[0.335748,0.079983,0.356764,0.117319,0.356766,0.083525],[0.378401,0.109594,0.356766,0.083525,0.356764,0.117319],[0.378401,0.084762,0.356766,0.083525,0.378401,0.109594],[0.378401,0.084762,0.359606,0.047102,0.356766,0.083525],[0.359606,0.047102,0.378401,0.084762,0.378401,0.048225],[0.378401,0.022964,0.359606,0.047102,0.378401,0.048225],[0.378401,0.022964,0.360360,0.022964,0.359606,0.047102],[0.434166,0.021424,0.434166,0.056234,0.450198,0.021424],[0.554134,0.093107,0.554134,0.118259,0.581760,0.118259],[0.581760,0.118259,0.554134,0.118259,0.554134,0.141630],[0.581760,0.118259,0.554134,0.141630,0.581760,0.141630],[0.434166,0.056234,0.450198,0.056234,0.450198,0.021424],[0.450198,0.021424,0.450198,0.056234,0.465063,0.021424],[0.360360,0.022964,0.344960,0.022964,0.339308,0.045798],[0.360360,0.022964,0.339308,0.045798,0.359606,0.047102],[0.339308,0.045798,0.356766,0.083525,0.359606,0.047102],[0.502618,0.026467,0.504825,0.012518,0.492577,0.016634],[0.504825,0.012518,0.495283,0.010477,0.492577,0.016634],[0.504825,0.012518,0.495845,0.002447,0.495283,0.010477],[0.307450,0.010764,0.305549,0.004200,0.296353,0.004376],[0.032761,0.012518,0.041740,0.002447,0.030854,0.002447],[0.032761,0.012518,0.042303,0.010477,0.041740,0.002447],[0.032761,0.012518,0.045009,0.016634,0.042303,0.010477],[0.223853,0.017256,0.237477,0.015782,0.230136,0.010764],[0.223853,0.017256,0.232196,0.026933,0.237477,0.015782],[0.232196,0.026933,0.223853,0.017256,0.219609,0.040117],[0.245834,0.034846,0.232196,0.026933,0.219609,0.040117],[0.232196,0.026933,0.245834,0.034846,0.237477,0.015782],[0.237477,0.015782,0.245834,0.034846,0.248874,0.018340],[0.248874,0.018340,0.245834,0.034846,0.256985,0.038349],[0.245834,0.034846,0.254176,0.063141,0.256985,0.038349],[0.245834,0.034846,0.241331,0.056672,0.254176,0.063141],[0.219609,0.040117,0.241331,0.056672,0.245834,0.034846],[0.219609,0.040117,0.237043,0.086783,0.241331,0.056672],[0.219609,0.040117,0.220883,0.081499,0.237043,0.086783],[0.219609,0.040117,0.201838,0.079983,0.220883,0.081499],[0.219609,0.040117,0.198278,0.045798,0.201838,0.079983],[0.201838,0.079983,0.198278,0.045798,0.180820,0.083525],[0.198278,0.045798,0.177980,0.047102,0.180820,0.083525],[0.198278,0.045798,0.177226,0.022964,0.177980,0.047102],[0.177226,0.022964,0.160436,0.022964,0.177980,0.047102],[0.087388,0.021424,0.103420,0.056234,0.103420,0.021424],[0.554134,0.323398,0.581760,0.348549,0.554134,0.348549],[0.581760,0.323398,0.581760,0.348549,0.554134,0.323398],[0.581760,0.323398,0.604617,0.348549,0.581760,0.348549],[0.604617,0.323398,0.604617,0.348549,0.581760,0.323398],[0.604617,0.323398,0.635116,0.348549,0.604617,0.348549],[0.635116,0.323398,0.635116,0.348549,0.604617,0.323398],[0.604617,0.323398,0.635116,0.304219,0.635116,0.323398],[0.604617,0.323398,0.604617,0.304219,0.635116,0.304219],[0.581760,0.304219,0.604617,0.304219,0.604617,0.323398],[0.581760,0.304219,0.604617,0.284516,0.604617,0.304219],[0.581760,0.304219,0.581760,0.284516,0.604617,0.284516],[0.554134,0.304219,0.581760,0.284516,0.581760,0.304219],[0.554134,0.304219,0.554134,0.284516,0.581760,0.284516],[0.554134,0.304219,0.581760,0.304219,0.581760,0.323398],[0.581760,0.323398,0.581760,0.304219,0.604617,0.323398],[0.554134,0.323398,0.554134,0.304219,0.581760,0.323398],[0.604617,0.304219,0.604617,0.284516,0.635116,0.284516],[0.635116,0.284516,0.604617,0.284516,0.635116,0.265218],[0.604617,0.304219,0.635116,0.284516,0.635116,0.304219],[0.581760,0.348549,0.554134,0.371920,0.554134,0.348549],[0.177980,0.047102,0.160436,0.022964,0.160436,0.048225],[0.177980,0.047102,0.160436,0.048225,0.160436,0.084762],[0.177980,0.047102,0.160436,0.084762,0.180820,0.083525],[0.180820,0.083525,0.160436,0.084762,0.160436,0.109594],[0.160436,0.109594,0.180822,0.117319,0.180820,0.083525],[0.155432,0.131693,0.180822,0.117319,0.160436,0.109594],[0.201838,0.079983,0.180820,0.083525,0.180822,0.117319],[0.201838,0.079983,0.180822,0.117319,0.204035,0.104071],[0.201838,0.079983,0.204035,0.104071,0.220883,0.081499],[0.220883,0.081499,0.204035,0.104071,0.221497,0.103497],[0.221497,0.103497,0.204035,0.104071,0.223025,0.130811],[0.221497,0.103497,0.223025,0.130811,0.236089,0.104028],[0.236089,0.104028,0.223025,0.130811,0.239769,0.129851],[0.236089,0.104028,0.239769,0.129851,0.254982,0.130157],[0.236089,0.104028,0.254982,0.130157,0.250914,0.112571],[0.252272,0.090935,0.250914,0.112571,0.254982,0.130157],[0.252272,0.090935,0.236089,0.104028,0.250914,0.112571],[0.237043,0.086783,0.236089,0.104028,0.252272,0.090935],[0.220883,0.081499,0.236089,0.104028,0.237043,0.086783],[0.220883,0.081499,0.221497,0.103497,0.236089,0.104028],[0.241331,0.056672,0.237043,0.086783,0.252272,0.090935],[0.241331,0.056672,0.252272,0.090935,0.254176,0.063141],[0.254176,0.063141,0.252272,0.090935,0.268793,0.064740],[0.268793,0.064740,0.252272,0.090935,0.268793,0.092146],[0.252272,0.090935,0.268793,0.128978,0.268793,0.092146],[0.252272,0.090935,0.254982,0.130157,0.268793,0.128978],[0.285313,0.090935,0.268793,0.092146,0.268793,0.128978],[0.268793,0.064740,0.268793,0.092146,0.285313,0.090935],[0.268793,0.064740,0.285313,0.090935,0.283410,0.063141],[0.296255,0.056672,0.283410,0.063141,0.285313,0.090935],[0.296255,0.056672,0.285313,0.090935,0.300543,0.086783],[0.300543,0.086783,0.285313,0.090935,0.301497,0.104028],[0.285313,0.090935,0.286671,0.112571,0.301497,0.104028],[0.285313,0.090935,0.282604,0.130157,0.286671,0.112571],[0.285313,0.090935,0.268793,0.128978,0.282604,0.130157],[0.301497,0.104028,0.286671,0.112571,0.282604,0.130157],[0.301497,0.104028,0.282604,0.130157,0.297817,0.129851],[0.301497,0.104028,0.297817,0.129851,0.314561,0.130811],[0.301497,0.104028,0.314561,0.130811,0.316088,0.103497],[0.316088,0.103497,0.314561,0.130811,0.333551,0.104071],[0.333551,0.104071,0.314561,0.130811,0.329869,0.129832],[0.280601,0.038349,0.268793,0.064740,0.283410,0.063141],[0.268793,0.037870,0.268793,0.064740,0.280601,0.038349],[0.256985,0.038349,0.268793,0.064740,0.268793,0.037870],[0.256985,0.038349,0.254176,0.063141,0.268793,0.064740],[0.260105,0.019726,0.256985,0.038349,0.268793,0.037870],[0.248874,0.018340,0.256985,0.038349,0.260105,0.019726],[0.261054,0.004376,0.248874,0.018340,0.260105,0.019726],[0.251048,0.004376,0.248874,0.018340,0.261054,0.004376],[0.237477,0.015782,0.248874,0.018340,0.251048,0.004376],[0.237477,0.015782,0.251048,0.004376,0.241233,0.004376],[0.296353,0.004376,0.286537,0.004376,0.300109,0.015782],[0.307450,0.010764,0.296353,0.004376,0.300109,0.015782],[0.313732,0.017256,0.307450,0.010764,0.300109,0.015782],[0.313732,0.017256,0.300109,0.015782,0.305390,0.026933],[0.230136,0.010764,0.241233,0.004376,0.232037,0.004200],[0.230136,0.010764,0.237477,0.015782,0.241233,0.004376],[0.261054,0.004376,0.260105,0.019726,0.268793,0.004376],[0.268793,0.004376,0.260105,0.019726,0.268793,0.020349],[0.260105,0.019726,0.268793,0.037870,0.268793,0.020349],[0.277481,0.019726,0.268793,0.020349,0.268793,0.037870],[0.268793,0.004376,0.268793,0.020349,0.277481,0.019726],[0.277481,0.019726,0.268793,0.037870,0.280601,0.038349],[0.514266,0.041835,0.498891,0.090059,0.532039,0.089467],[0.532039,0.042151,0.514266,0.041835,0.532039,0.089467],[0.039850,0.126900,0.005547,0.168337,0.039850,0.168543],[0.039850,0.168543,0.005547,0.168337,0.039850,0.195120],[0.005547,0.168337,0.005547,0.195381,0.039850,0.195120],[0.039850,0.195120,0.005547,0.195381,0.039850,0.211870],[0.005547,0.195381,0.005547,0.212202,0.039850,0.211870],[0.039850,0.211870,0.005547,0.212202,0.039850,0.231829],[0.005547,0.212202,0.005547,0.231829,0.039850,0.231829],[0.039850,0.231829,0.005547,0.231829,0.005547,0.254807],[0.039850,0.231829,0.005547,0.254807,0.039850,0.254807],[0.039850,0.231829,0.039850,0.254807,0.074757,0.254807],[0.462804,0.166897,0.497736,0.195120,0.497736,0.168543],[0.462804,0.166897,0.463049,0.193130,0.497736,0.195120],[0.463049,0.193130,0.497736,0.211870,0.497736,0.195120],[0.497736,0.288480,0.532039,0.320977,0.532039,0.288480],[0.005547,0.288480,0.005547,0.320977,0.039850,0.288480],[0.039850,0.288480,0.005547,0.320977,0.039850,0.320977],[0.005547,0.320977,0.039850,0.356654,0.039850,0.320977],[0.039850,0.320977,0.039850,0.356654,0.074757,0.356654],[0.039850,0.356654,0.074757,0.391448,0.074757,0.356654],[0.039850,0.356654,0.039850,0.391448,0.074757,0.391448],[0.039850,0.391448,0.074757,0.423238,0.074757,0.391448],[0.039850,0.391448,0.039850,0.423238,0.074757,0.423238],[0.039850,0.423238,0.039850,0.456226,0.074757,0.423238],[0.074757,0.423238,0.039850,0.456226,0.074757,0.456226],[0.039850,0.320977,0.074757,0.356654,0.074757,0.320977],[0.074757,0.288480,0.039850,0.320977,0.074757,0.320977],[0.039850,0.288480,0.039850,0.320977,0.074757,0.288480],[0.176336,0.254807,0.205461,0.254807,0.176336,0.231829],[0.176336,0.231829,0.205461,0.254807,0.207386,0.231829],[0.389887,0.288480,0.361250,0.288480,0.361250,0.320977],[0.635116,0.073929,0.604617,0.093107,0.635116,0.093107],[0.635116,0.093107,0.604617,0.093107,0.635116,0.118259],[0.604617,0.166494,0.604617,0.196193,0.635116,0.166494],[0.604617,0.166494,0.581760,0.195004,0.604617,0.196193],[0.604617,0.196193,0.581760,0.195004,0.581760,0.204339],[0.581760,0.204339,0.581760,0.195004,0.554134,0.208298],[0.417280,0.151412,0.391318,0.145332,0.389790,0.166626],[0.581760,0.224612,0.604617,0.196193,0.581760,0.204339],[0.604617,0.224612,0.604617,0.196193,0.581760,0.224612],[0.635116,0.196193,0.604617,0.196193,0.604617,0.224612],[0.635116,0.166494,0.604617,0.196193,0.635116,0.196193],[0.364627,0.185698,0.340205,0.191046,0.359497,0.206675],[0.846946,0.727739,0.831937,0.665882,0.781062,0.720166],[0.831937,0.665882,0.846946,0.727739,0.863661,0.676279],[0.863661,0.676279,0.846946,0.727739,0.897177,0.736338],[0.781062,0.720166,0.765896,0.654617,0.711761,0.727244],[0.831937,0.665882,0.765896,0.654617,0.781062,0.720166],[0.831937,0.665882,0.790884,0.601630,0.765896,0.654617],[0.831937,0.665882,0.811270,0.550866,0.790884,0.601630],[0.856148,0.600223,0.811270,0.550866,0.831937,0.665882],[0.862262,0.522995,0.811270,0.550866,0.856148,0.600223],[0.862262,0.522995,0.818700,0.497810,0.811270,0.550866],[0.862262,0.522995,0.837398,0.429692,0.818700,0.497810],[0.837398,0.429692,0.862262,0.522995,0.929456,0.470354],[0.929456,0.470354,0.862262,0.522995,0.903249,0.545102],[0.862262,0.522995,0.856148,0.600223,0.903249,0.545102],[0.903249,0.545102,0.856148,0.600223,0.879175,0.611107],[0.856148,0.600223,0.831937,0.665882,0.879175,0.611107],[0.879175,0.611107,0.831937,0.665882,0.863661,0.676279],[0.879175,0.611107,0.863661,0.676279,0.919067,0.626267],[0.919067,0.626267,0.863661,0.676279,0.902081,0.689861],[0.863661,0.676279,0.897177,0.736338,0.902081,0.689861],[0.902081,0.689861,0.897177,0.736338,0.863661,0.676279],[0.863661,0.676279,0.897177,0.736338,0.846945,0.727739],[0.863661,0.676279,0.846945,0.727739,0.831937,0.665882],[0.831937,0.665882,0.846945,0.727739,0.781062,0.720166],[0.512091,0.771521,0.405127,0.751108,0.405125,0.789010],[0.490154,0.743954,0.405127,0.751108,0.512091,0.771521],[0.490154,0.743954,0.405127,0.731931,0.405127,0.751108],[0.488877,0.705076,0.405127,0.731931,0.490154,0.743954],[0.488877,0.705076,0.448173,0.706861,0.405127,0.731931],[0.488877,0.705076,0.455169,0.696419,0.448173,0.706861],[0.488877,0.705076,0.488148,0.693683,0.455169,0.696419],[0.488877,0.705076,0.513922,0.688261,0.488148,0.693683],[0.550580,0.691626,0.513922,0.688261,0.488877,0.705076],[0.550580,0.691626,0.550220,0.678784,0.513922,0.688261],[0.601085,0.662559,0.550220,0.678784,0.550580,0.691626],[0.601085,0.662559,0.593391,0.645021,0.550220,0.678784],[0.631581,0.643197,0.593391,0.645021,0.601085,0.662559],[0.631581,0.643197,0.618446,0.600180,0.593391,0.645021],[0.662755,0.621366,0.618446,0.600180,0.631581,0.643197],[0.691755,0.575865,0.618446,0.600180,0.662755,0.621366],[0.691755,0.575865,0.626372,0.559965,0.618446,0.600180],[0.691755,0.575865,0.705620,0.514538,0.626372,0.559965],[0.723115,0.545637,0.705620,0.514538,0.691755,0.575865],[0.723115,0.545637,0.723511,0.509143,0.705620,0.514538],[0.885979,0.165819,0.858113,0.155526,0.862920,0.187935],[0.885979,0.165819,0.878985,0.152740,0.858113,0.155526],[0.878985,0.152740,0.885979,0.165819,0.914710,0.159382],[0.914710,0.159382,0.885979,0.165819,0.922602,0.174083],[0.885979,0.165819,0.889115,0.191199,0.922602,0.174083],[0.889115,0.191199,0.885979,0.165819,0.862920,0.187935],[0.862920,0.187935,0.882238,0.206010,0.889115,0.191199],[0.890163,0.217146,0.882238,0.206010,0.862920,0.187935],[0.906427,0.207695,0.882238,0.206010,0.890163,0.217146],[0.903545,0.202895,0.882238,0.206010,0.906427,0.207695],[0.889115,0.191199,0.882238,0.206010,0.903545,0.202895],[0.936813,0.173876,0.889115,0.191199,0.903545,0.202895],[0.936813,0.173876,0.922602,0.174083,0.889115,0.191199],[0.952282,0.148521,0.922602,0.174083,0.936813,0.173876],[0.952282,0.148521,0.933216,0.143757,0.922602,0.174083],[0.949307,0.113434,0.933216,0.143757,0.952282,0.148521],[0.949307,0.113434,0.917720,0.115307,0.933216,0.143757],[0.914666,0.066192,0.917720,0.115307,0.949307,0.113434],[0.917720,0.115307,0.914666,0.066192,0.884352,0.104650],[0.914666,0.066192,0.875328,0.072927,0.884352,0.104650],[0.914666,0.066192,0.903992,0.043822,0.875328,0.072927],[0.935523,0.058380,0.903992,0.043822,0.914666,0.066192],[0.948732,0.042365,0.903992,0.043822,0.935523,0.058380],[0.948732,0.042365,0.925338,0.028543,0.903992,0.043822],[0.948732,0.042365,0.951982,0.038217,0.925338,0.028543],[0.971548,0.062125,0.951982,0.038217,0.948732,0.042365],[0.951982,0.038217,0.971548,0.062125,0.974294,0.022063],[0.974294,0.022063,0.971548,0.062125,0.976518,0.100727],[0.971548,0.062125,0.967388,0.065474,0.976518,0.100727],[0.948732,0.042365,0.967388,0.065474,0.971548,0.062125],[0.967388,0.065474,0.948732,0.042365,0.935523,0.058380],[0.967388,0.065474,0.935523,0.058380,0.945662,0.081499],[0.935523,0.058380,0.914666,0.066192,0.945662,0.081499],[0.914666,0.066192,0.949307,0.113434,0.945662,0.081499],[0.967388,0.065474,0.945662,0.081499,0.949307,0.113434],[0.971637,0.101817,0.967388,0.065474,0.949307,0.113434],[0.976518,0.100727,0.967388,0.065474,0.971637,0.101817],[0.976518,0.100727,0.971637,0.101817,0.960274,0.121778],[0.971637,0.101817,0.949307,0.113434,0.960274,0.121778],[0.960274,0.121778,0.949307,0.113434,0.952282,0.148521],[0.960274,0.121778,0.952282,0.148521,0.961837,0.145763],[0.961837,0.145763,0.952282,0.148521,0.936813,0.173876],[0.961837,0.145763,0.936813,0.173876,0.944890,0.174719],[0.936813,0.173876,0.903545,0.202895,0.944890,0.174719],[0.944890,0.174719,0.903545,0.202895,0.906427,0.207695],[0.944890,0.174719,0.906427,0.207695,0.890163,0.217146],[0.944890,0.174719,0.890163,0.217146,0.957134,0.200594],[0.746038,0.554150,0.737640,0.554795,0.707015,0.579645],[0.737640,0.554795,0.723115,0.545637,0.707015,0.579645],[0.707015,0.579645,0.723115,0.545637,0.691755,0.575865],[0.707015,0.579645,0.691755,0.575865,0.662755,0.621366],[0.707015,0.579645,0.662755,0.621366,0.672924,0.631514],[0.672924,0.631514,0.662755,0.621366,0.631581,0.643197],[0.672924,0.631514,0.631581,0.643197,0.648189,0.659896],[0.648189,0.659896,0.631581,0.643197,0.601085,0.662559],[0.648189,0.659896,0.601085,0.662559,0.600401,0.686361],[0.600401,0.686361,0.601085,0.662559,0.550580,0.691626],[0.600401,0.686361,0.550580,0.691626,0.553055,0.720376],[0.550580,0.691626,0.488877,0.705076,0.553055,0.720376],[0.553055,0.720376,0.488877,0.705076,0.490154,0.743954],[0.553055,0.720376,0.490154,0.743954,0.512092,0.771521],[0.553055,0.720376,0.512091,0.771521,0.570039,0.758433],[0.711761,0.727244,0.671399,0.676179,0.614062,0.748491],[0.711761,0.727244,0.726606,0.670841,0.671399,0.676179],[0.765896,0.654617,0.726606,0.670841,0.711761,0.727244],[0.765896,0.654617,0.737828,0.624350,0.726606,0.670841],[0.765896,0.654617,0.748403,0.568523,0.737828,0.624350],[0.790884,0.601630,0.748403,0.568523,0.765896,0.654617],[0.811270,0.550866,0.748403,0.568523,0.790884,0.601630],[0.811270,0.550866,0.755814,0.504584,0.748403,0.568523],[0.811270,0.550866,0.764790,0.467292,0.755814,0.504584],[0.818700,0.497810,0.764790,0.467292,0.811270,0.550866],[0.818700,0.497810,0.777225,0.404367,0.764790,0.467292],[0.837398,0.429692,0.777225,0.404367,0.818700,0.497810],[0.837398,0.429692,0.856028,0.357342,0.777225,0.404367],[0.856028,0.357342,0.837398,0.429692,0.945389,0.398776],[0.945389,0.398776,0.837398,0.429692,0.929456,0.470354],[0.945389,0.398776,0.929456,0.470354,0.991255,0.425055],[0.991255,0.425055,0.929456,0.470354,0.970960,0.495458],[0.929456,0.470354,0.944711,0.565285,0.970960,0.495458],[0.929456,0.470354,0.903249,0.545102,0.944711,0.565285],[0.903249,0.545102,0.919067,0.626267,0.944711,0.565285],[0.903249,0.545102,0.879175,0.611107,0.919067,0.626267],[0.944711,0.565285,0.919067,0.626267,0.903249,0.545102],[0.903249,0.545102,0.919067,0.626267,0.879175,0.611107],[0.919067,0.626267,0.863661,0.676279,0.879175,0.611107],[0.919067,0.626267,0.902081,0.689861,0.863661,0.676279],[0.879175,0.611107,0.863661,0.676279,0.831937,0.665882],[0.856148,0.600223,0.879175,0.611107,0.831937,0.665882],[0.903249,0.545102,0.879175,0.611107,0.856148,0.600223],[0.903249,0.545102,0.856148,0.600223,0.862262,0.522995],[0.856148,0.600223,0.811270,0.550866,0.862262,0.522995],[0.811270,0.550866,0.856148,0.600223,0.831937,0.665882],[0.831937,0.665882,0.790884,0.601630,0.811270,0.550866],[0.831937,0.665882,0.765896,0.654617,0.790884,0.601630],[0.831937,0.665882,0.781062,0.720166,0.765896,0.654617],[0.781062,0.720166,0.711761,0.727244,0.765896,0.654617],[0.240214,0.758433,0.257199,0.720376,0.196192,0.748490],[0.298161,0.771521,0.257199,0.720376,0.240213,0.758433],[0.298161,0.771521,0.320100,0.743954,0.257199,0.720376],[0.405127,0.751108,0.320100,0.743954,0.298161,0.771521],[0.405127,0.751108,0.405127,0.731931,0.320100,0.743954],[0.405127,0.731931,0.321377,0.705076,0.320100,0.743954],[0.405127,0.731931,0.362081,0.706861,0.321377,0.705076],[0.405127,0.731931,0.405127,0.720864,0.362081,0.706861],[0.448173,0.706861,0.405127,0.720864,0.405127,0.731931],[0.448173,0.706861,0.430878,0.705635,0.405127,0.720864],[0.455169,0.696419,0.430878,0.705635,0.448173,0.706861],[0.457586,0.683405,0.430878,0.705635,0.455169,0.696419],[0.457586,0.683405,0.429990,0.687801,0.430878,0.705635],[0.427156,0.661126,0.429990,0.687801,0.457586,0.683405],[0.427156,0.661126,0.405127,0.660541,0.429990,0.687801],[0.405127,0.641348,0.405127,0.660541,0.427156,0.661126],[0.405127,0.641348,0.383098,0.661126,0.405127,0.660541],[0.405127,0.641348,0.386684,0.642702,0.383098,0.661126],[0.405127,0.641348,0.405127,0.636783,0.386684,0.642702],[0.423570,0.642702,0.405127,0.636783,0.405127,0.641348],[0.423570,0.642702,0.420172,0.637551,0.405127,0.636783],[0.443196,0.638734,0.420172,0.637551,0.423570,0.642702],[0.442876,0.628581,0.420172,0.637551,0.443196,0.638734],[0.442876,0.628581,0.428208,0.625371,0.420172,0.637551],[0.442876,0.628581,0.439969,0.620869,0.428208,0.625371],[0.455005,0.623401,0.439969,0.620869,0.442876,0.628581],[0.455005,0.623401,0.454070,0.615526,0.439969,0.620869],[0.464963,0.611220,0.454070,0.615526,0.455005,0.623401],[0.464963,0.611220,0.452749,0.609398,0.454070,0.615526],[0.464963,0.611220,0.451070,0.606069,0.452749,0.609398],[0.458977,0.608109,0.451070,0.606069,0.464963,0.611220],[0.464547,0.607213,0.458977,0.608109,0.464963,0.611220],[0.464547,0.607213,0.464963,0.611220,0.472264,0.606245],[0.472264,0.606245,0.464963,0.611220,0.471613,0.618341],[0.464963,0.611220,0.455005,0.623401,0.471613,0.618341],[0.471613,0.618341,0.455005,0.623401,0.478295,0.625530],[0.478295,0.625530,0.455005,0.623401,0.459701,0.630210],[0.455005,0.623401,0.443196,0.638734,0.459701,0.630210],[0.443196,0.638734,0.455005,0.623401,0.442876,0.628581],[0.459701,0.630210,0.443196,0.638734,0.477567,0.652464],[0.443196,0.638734,0.453128,0.658176,0.477567,0.652464],[0.443196,0.638734,0.423570,0.642702,0.453128,0.658176],[0.423570,0.642702,0.427156,0.661126,0.453128,0.658176],[0.423570,0.642702,0.405127,0.641348,0.427156,0.661126],[0.453128,0.658176,0.427156,0.661126,0.457586,0.683405],[0.453128,0.658176,0.457586,0.683405,0.483420,0.674620],[0.483420,0.674620,0.457586,0.683405,0.455169,0.696419],[0.488148,0.693683,0.483420,0.674620,0.455169,0.696419],[0.488148,0.693683,0.507729,0.663522,0.483420,0.674620],[0.513922,0.688261,0.507729,0.663522,0.488148,0.693683],[0.550220,0.678784,0.507729,0.663522,0.513922,0.688261],[0.550220,0.678784,0.538006,0.650822,0.507729,0.663522],[0.593391,0.645021,0.538006,0.650822,0.550220,0.678784],[0.593391,0.645021,0.565863,0.632856,0.538006,0.650822],[0.618446,0.600180,0.565863,0.632856,0.593391,0.645021],[0.618446,0.600180,0.582414,0.593914,0.565863,0.632856],[0.618446,0.600180,0.626372,0.559965,0.582414,0.593914],[0.626372,0.559965,0.583489,0.555513,0.582414,0.593914],[0.639301,0.513763,0.583489,0.555513,0.626372,0.559965],[0.639301,0.513763,0.564979,0.513125,0.583489,0.555513],[0.639301,0.513763,0.576609,0.484635,0.564979,0.513125],[0.639301,0.513763,0.586076,0.460994,0.576609,0.484635],[0.647157,0.457901,0.586076,0.460994,0.639301,0.513763],[0.647157,0.457901,0.597607,0.437666,0.586076,0.460994],[0.657203,0.403987,0.597607,0.437666,0.647157,0.457901],[0.657203,0.403987,0.605360,0.400852,0.597607,0.437666],[0.657203,0.403987,0.650834,0.360374,0.605360,0.400852],[0.691436,0.404238,0.650834,0.360374,0.657203,0.403987],[0.691436,0.404238,0.688510,0.358544,0.650834,0.360374],[0.728101,0.354461,0.688510,0.358544,0.691436,0.404238],[0.728101,0.354461,0.727797,0.292313,0.688510,0.358544],[0.788180,0.328823,0.727797,0.292313,0.728101,0.354461],[0.788180,0.328823,0.728101,0.354461,0.777225,0.404367],[0.777225,0.404367,0.728101,0.354461,0.751307,0.421539],[0.751307,0.421539,0.728101,0.354461,0.740906,0.408705],[0.740906,0.408705,0.728101,0.354461,0.691436,0.404238],[0.740906,0.408705,0.691436,0.404238,0.726347,0.420515],[0.726347,0.420515,0.691436,0.404238,0.710409,0.455744],[0.710409,0.455744,0.691436,0.404238,0.647157,0.457901],[0.691436,0.404238,0.657203,0.403987,0.647157,0.457901],[0.710409,0.455744,0.647157,0.457901,0.705620,0.514538],[0.705620,0.514538,0.647157,0.457901,0.639301,0.513763],[0.705620,0.514538,0.639301,0.513763,0.626372,0.559965],[0.731461,0.457763,0.710409,0.455744,0.705620,0.514538],[0.731461,0.457763,0.726347,0.420515,0.710409,0.455744],[0.884352,0.104650,0.849034,0.073406,0.852579,0.103989],[0.884352,0.104650,0.875328,0.072927,0.849034,0.073406],[0.875328,0.072927,0.861616,0.056137,0.849034,0.073406],[0.875328,0.072927,0.877516,0.043075,0.861616,0.056137],[0.903992,0.043822,0.877516,0.043075,0.875328,0.072927],[0.903992,0.043822,0.896028,0.030104,0.877516,0.043075],[0.925338,0.028543,0.896028,0.030104,0.903992,0.043822],[0.925338,0.028543,0.927854,0.026498,0.896028,0.030104],[0.951982,0.038217,0.927854,0.026498,0.925338,0.028543],[0.927854,0.026498,0.951982,0.038217,0.893336,0.004384],[0.951982,0.038217,0.974294,0.022063,0.893336,0.004384],[0.777225,0.404367,0.751307,0.421539,0.759373,0.437314],[0.777225,0.404367,0.759373,0.437314,0.764790,0.467292],[0.974294,0.022063,0.976518,0.100727,0.987335,0.096616],[0.987335,0.096616,0.976518,0.100727,0.970015,0.122532],[0.976518,0.100727,0.960274,0.121778,0.970015,0.122532],[0.960274,0.121778,0.961837,0.145763,0.970015,0.122532],[0.987335,0.096616,0.970015,0.122532,0.961837,0.145763],[0.987335,0.096616,0.961837,0.145763,0.985446,0.139602],[0.985446,0.139602,0.961837,0.145763,0.944890,0.174719],[0.985446,0.139602,0.944890,0.174719,0.957134,0.200594],[0.755814,0.504584,0.746038,0.554150,0.748403,0.568523],[0.748403,0.568523,0.746038,0.554150,0.717454,0.590353],[0.746038,0.554150,0.707015,0.579645,0.717454,0.590353],[0.717454,0.590353,0.707015,0.579645,0.672924,0.631514],[0.717454,0.590353,0.672924,0.631514,0.671399,0.676179],[0.671399,0.676179,0.672924,0.631514,0.628432,0.700501],[0.672924,0.631514,0.648189,0.659896,0.628432,0.700501],[0.628432,0.700501,0.648189,0.659896,0.600401,0.686361],[0.628432,0.700501,0.600401,0.686361,0.553055,0.720376],[0.614062,0.748490,0.628432,0.700501,0.553055,0.720376],[0.671399,0.676179,0.628432,0.700501,0.614061,0.748491],[0.614062,0.748490,0.553055,0.720376,0.570040,0.758433],[0.726606,0.670841,0.717454,0.590353,0.671399,0.676179],[0.726606,0.670841,0.737828,0.624350,0.717454,0.590353],[0.737828,0.624350,0.748403,0.568523,0.717454,0.590353],[0.927854,0.026498,0.893336,0.004384,0.896197,0.024739],[0.893336,0.004384,0.875164,0.037397,0.896197,0.024739],[0.893336,0.004384,0.857107,0.022615,0.875164,0.037397],[0.857107,0.022615,0.861616,0.056137,0.875164,0.037397],[0.857107,0.022615,0.849034,0.073406,0.861616,0.056137],[0.875164,0.037397,0.861616,0.056137,0.877516,0.043075],[0.896197,0.024739,0.875164,0.037397,0.877516,0.043075],[0.896197,0.024739,0.877516,0.043075,0.896028,0.030104],[0.927854,0.026498,0.896197,0.024739,0.896028,0.030104],[0.884352,0.104650,0.852579,0.103989,0.873563,0.122648],[0.852579,0.103989,0.858113,0.155526,0.873563,0.122648],[0.731461,0.457763,0.705620,0.514538,0.723511,0.509143],[0.873563,0.122648,0.858113,0.155526,0.868605,0.144803],[0.868605,0.144803,0.858113,0.155526,0.878985,0.152740],[0.878985,0.152740,0.873563,0.122648,0.868605,0.144803],[0.873563,0.122648,0.878985,0.152740,0.883964,0.126491],[0.883964,0.126491,0.878985,0.152740,0.933216,0.143757],[0.933216,0.143757,0.878985,0.152740,0.914710,0.159382],[0.933216,0.143757,0.914710,0.159382,0.922602,0.174083],[0.917720,0.115307,0.883964,0.126491,0.933216,0.143757],[0.884352,0.104650,0.883964,0.126491,0.917720,0.115307],[0.884352,0.104650,0.873563,0.122648,0.883964,0.126491],[0.856028,0.357342,0.788180,0.328823,0.777225,0.404367],[0.727797,0.292313,0.681590,0.284765,0.688510,0.358544],[0.688510,0.358544,0.681590,0.284765,0.656799,0.317971],[0.681590,0.284765,0.615023,0.232109,0.656799,0.317971],[0.681590,0.284765,0.653594,0.181455,0.615023,0.232109],[0.585007,0.165305,0.615023,0.232109,0.653594,0.181455],[0.585007,0.165305,0.509837,0.187610,0.615023,0.232109],[0.585007,0.165305,0.513964,0.141647,0.509837,0.187610],[0.585007,0.165305,0.544221,0.098627,0.513964,0.141647],[0.619630,0.143851,0.544221,0.098627,0.585007,0.165305],[0.653594,0.181455,0.619630,0.143851,0.585007,0.165305],[0.544221,0.098627,0.405127,0.119729,0.513964,0.141647],[0.544221,0.098627,0.405127,0.064379,0.405127,0.119729],[0.405127,0.064379,0.266033,0.098627,0.405127,0.119729],[0.405127,0.119729,0.266033,0.098627,0.296290,0.141647],[0.296290,0.141647,0.266033,0.098627,0.225247,0.165305],[0.266033,0.098627,0.190624,0.143851,0.225247,0.165305],[0.156660,0.181455,0.225247,0.165305,0.190624,0.143851],[0.156660,0.181455,0.195231,0.232109,0.225247,0.165305],[0.128664,0.284765,0.195231,0.232109,0.156660,0.181455],[0.128664,0.284765,0.153455,0.317971,0.195231,0.232109],[0.121744,0.358544,0.153455,0.317971,0.128664,0.284765],[0.121744,0.358544,0.159420,0.360374,0.153455,0.317971],[0.118818,0.404238,0.159420,0.360374,0.121744,0.358544],[0.118818,0.404238,0.153051,0.403987,0.159420,0.360374],[0.118818,0.404238,0.163097,0.457901,0.153051,0.403987],[0.099845,0.455744,0.163097,0.457901,0.118818,0.404238],[0.099845,0.455744,0.104634,0.514538,0.163097,0.457901],[0.078793,0.457763,0.104634,0.514538,0.099845,0.455744],[0.078793,0.457763,0.086743,0.509143,0.104634,0.514538],[0.873563,0.122648,0.858113,0.155526,0.852579,0.103989],[0.873563,0.122648,0.868605,0.144803,0.858113,0.155526],[0.873563,0.122648,0.878985,0.152740,0.868605,0.144803],[0.873563,0.122648,0.883964,0.126491,0.878985,0.152740],[0.884352,0.104650,0.883964,0.126491,0.873563,0.122648],[0.917720,0.115307,0.883964,0.126491,0.884352,0.104650],[0.917720,0.115307,0.933216,0.143757,0.883964,0.126491],[0.949307,0.113434,0.933216,0.143757,0.917720,0.115307],[0.949307,0.113434,0.952282,0.148521,0.933216,0.143757],[0.960274,0.121778,0.952282,0.148521,0.949307,0.113434],[0.961837,0.145763,0.952282,0.148521,0.960274,0.121778],[0.952282,0.148521,0.961837,0.145763,0.936813,0.173876],[0.961837,0.145763,0.944890,0.174719,0.936813,0.173876],[0.985446,0.139602,0.944890,0.174719,0.961837,0.145763],[0.985446,0.139602,0.957134,0.200594,0.944890,0.174719],[0.054440,0.504584,0.061851,0.568523,0.064216,0.554150],[0.811270,0.550866,0.748403,0.568523,0.755814,0.504584],[0.811270,0.550866,0.790884,0.601630,0.748403,0.568523],[0.790884,0.601630,0.765896,0.654617,0.748403,0.568523],[0.765896,0.654617,0.737828,0.624350,0.748403,0.568523],[0.765896,0.654617,0.726606,0.670841,0.737828,0.624350],[0.765896,0.654617,0.711761,0.727244,0.726606,0.670841],[0.098493,0.727244,0.138855,0.676179,0.083648,0.670841],[0.098493,0.727244,0.196192,0.748490,0.138855,0.676179],[0.138855,0.676179,0.196192,0.748490,0.181822,0.700501],[0.196192,0.748490,0.257199,0.720376,0.181822,0.700501],[0.257199,0.720376,0.209853,0.686361,0.181822,0.700501],[0.257199,0.720376,0.259674,0.691626,0.209853,0.686361],[0.321377,0.705076,0.259674,0.691626,0.257199,0.720376],[0.321377,0.705076,0.296332,0.688261,0.259674,0.691626],[0.321377,0.705076,0.322106,0.693683,0.296332,0.688261],[0.355085,0.696419,0.322106,0.693683,0.321377,0.705076],[0.322106,0.693683,0.355085,0.696419,0.326834,0.674620],[0.326834,0.674620,0.355085,0.696419,0.352668,0.683405],[0.352668,0.683405,0.355085,0.696419,0.379376,0.705635],[0.379376,0.705635,0.355085,0.696419,0.362081,0.706861],[0.362081,0.706861,0.355085,0.696419,0.321377,0.705076],[0.405127,0.720864,0.379376,0.705635,0.362081,0.706861],[0.405127,0.720864,0.405127,0.711996,0.379376,0.705635],[0.430878,0.705635,0.405127,0.711996,0.405127,0.720864],[0.405127,0.685170,0.405127,0.711996,0.430878,0.705635],[0.405127,0.685170,0.379376,0.705635,0.405127,0.711996],[0.380264,0.687801,0.379376,0.705635,0.405127,0.685170],[0.379376,0.705635,0.380264,0.687801,0.352668,0.683405],[0.383098,0.661126,0.352668,0.683405,0.380264,0.687801],[0.357126,0.658176,0.352668,0.683405,0.383098,0.661126],[0.326834,0.674620,0.352668,0.683405,0.357126,0.658176],[0.332687,0.652464,0.326834,0.674620,0.357126,0.658176],[0.302525,0.663522,0.326834,0.674620,0.332687,0.652464],[0.322106,0.693683,0.326834,0.674620,0.302525,0.663522],[0.296332,0.688261,0.322106,0.693683,0.302525,0.663522],[0.260034,0.678784,0.296332,0.688261,0.302525,0.663522],[0.296332,0.688261,0.260034,0.678784,0.259674,0.691626],[0.259674,0.691626,0.260034,0.678784,0.209169,0.662559],[0.209169,0.662559,0.260034,0.678784,0.216863,0.645021],[0.216863,0.645021,0.260034,0.678784,0.272248,0.650822],[0.260034,0.678784,0.302525,0.663522,0.272248,0.650822],[0.272248,0.650822,0.302525,0.663522,0.314897,0.640727],[0.314897,0.640727,0.302525,0.663522,0.332687,0.652464],[0.350553,0.630210,0.314897,0.640727,0.332687,0.652464],[0.331959,0.625530,0.314897,0.640727,0.350553,0.630210],[0.317630,0.613688,0.314897,0.640727,0.331959,0.625530],[0.317630,0.613688,0.285344,0.611687,0.314897,0.640727],[0.281376,0.594659,0.285344,0.611687,0.317630,0.613688],[0.227840,0.593914,0.285344,0.611687,0.281376,0.594659],[0.227840,0.593914,0.244391,0.632856,0.285344,0.611687],[0.191808,0.600180,0.244391,0.632856,0.227840,0.593914],[0.191808,0.600180,0.216863,0.645021,0.244391,0.632856],[0.178673,0.643197,0.216863,0.645021,0.191808,0.600180],[0.178673,0.643197,0.209169,0.662559,0.216863,0.645021],[0.209169,0.662559,0.178673,0.643197,0.162065,0.659896],[0.162065,0.659896,0.178673,0.643197,0.137330,0.631514],[0.137330,0.631514,0.178673,0.643197,0.147499,0.621366],[0.147499,0.621366,0.178673,0.643197,0.191808,0.600180],[0.118499,0.575865,0.147499,0.621366,0.191808,0.600180],[0.103239,0.579645,0.147499,0.621366,0.118499,0.575865],[0.103239,0.579645,0.137330,0.631514,0.147499,0.621366],[0.092800,0.590353,0.137330,0.631514,0.103239,0.579645],[0.092800,0.590353,0.138855,0.676179,0.137330,0.631514],[0.083648,0.670841,0.138855,0.676179,0.092800,0.590353],[0.072426,0.624350,0.083648,0.670841,0.092800,0.590353],[0.061851,0.568523,0.072426,0.624350,0.092800,0.590353],[0.092800,0.590353,0.064216,0.554150,0.061851,0.568523],[0.092800,0.590353,0.103239,0.579645,0.064216,0.554150],[0.064216,0.554150,0.103239,0.579645,0.072614,0.554795],[0.072614,0.554795,0.103239,0.579645,0.087139,0.545637],[0.087139,0.545637,0.103239,0.579645,0.118499,0.575865],[0.087139,0.545637,0.118499,0.575865,0.104634,0.514538],[0.118499,0.575865,0.183882,0.559965,0.104634,0.514538],[0.118499,0.575865,0.191808,0.600180,0.183882,0.559965],[0.191808,0.600180,0.227840,0.593914,0.183882,0.559965],[0.183882,0.559965,0.227840,0.593914,0.226765,0.555513],[0.227840,0.593914,0.281376,0.594659,0.226765,0.555513],[0.226765,0.555513,0.281376,0.594659,0.279145,0.571240],[0.279145,0.571240,0.281376,0.594659,0.328971,0.602248],[0.328971,0.602248,0.281376,0.594659,0.317630,0.613688],[0.328971,0.602248,0.317630,0.613688,0.332757,0.613268],[0.332757,0.613268,0.317630,0.613688,0.331959,0.625530],[0.332757,0.613268,0.331959,0.625530,0.338641,0.618341],[0.338641,0.618341,0.331959,0.625530,0.355249,0.623401],[0.355249,0.623401,0.331959,0.625530,0.350553,0.630210],[0.355249,0.623401,0.350553,0.630210,0.367058,0.638734],[0.350553,0.630210,0.332687,0.652464,0.367058,0.638734],[0.367058,0.638734,0.332687,0.652464,0.357126,0.658176],[0.367058,0.638734,0.357126,0.658176,0.386684,0.642702],[0.386684,0.642702,0.357126,0.658176,0.383098,0.661126],[0.390082,0.637551,0.367058,0.638734,0.386684,0.642702],[0.390082,0.637551,0.367378,0.628581,0.367058,0.638734],[0.390082,0.637551,0.382046,0.625371,0.367378,0.628581],[0.390082,0.637551,0.393347,0.627087,0.382046,0.625371],[0.405272,0.624965,0.393347,0.627087,0.390082,0.637551],[0.391657,0.613499,0.393347,0.627087,0.405272,0.624965],[0.391657,0.613499,0.382046,0.625371,0.393347,0.627087],[0.374398,0.612183,0.382046,0.625371,0.391657,0.613499],[0.374398,0.612183,0.370285,0.620869,0.382046,0.625371],[0.357505,0.609398,0.370285,0.620869,0.374398,0.612183],[0.356184,0.615526,0.370285,0.620869,0.357505,0.609398],[0.355249,0.623401,0.370285,0.620869,0.356184,0.615526],[0.367378,0.628581,0.370285,0.620869,0.355249,0.623401],[0.382046,0.625371,0.370285,0.620869,0.367378,0.628581],[0.355249,0.623401,0.367058,0.638734,0.367378,0.628581],[0.345291,0.611220,0.355249,0.623401,0.356184,0.615526],[0.345291,0.611220,0.338641,0.618341,0.355249,0.623401],[0.337990,0.606245,0.338641,0.618341,0.345291,0.611220],[0.337990,0.606245,0.332757,0.613268,0.338641,0.618341],[0.328971,0.602248,0.332757,0.613268,0.337990,0.606245],[0.340775,0.602605,0.328971,0.602248,0.337990,0.606245],[0.340775,0.602605,0.337108,0.596721,0.328971,0.602248],[0.355831,0.585291,0.337108,0.596721,0.340775,0.602605],[0.337108,0.596721,0.355831,0.585291,0.351031,0.568405],[0.370353,0.567254,0.351031,0.568405,0.355831,0.585291],[0.362213,0.545494,0.351031,0.568405,0.370353,0.567254],[0.362213,0.545494,0.342884,0.546585,0.351031,0.568405],[0.353866,0.524112,0.342884,0.546585,0.362213,0.545494],[0.353866,0.524112,0.330891,0.526241,0.342884,0.546585],[0.341529,0.496542,0.330891,0.526241,0.353866,0.524112],[0.330783,0.491970,0.330891,0.526241,0.341529,0.496542],[0.330783,0.491970,0.319486,0.526406,0.330891,0.526241],[0.330783,0.491970,0.295163,0.493386,0.319486,0.526406],[0.316350,0.468210,0.295163,0.493386,0.330783,0.491970],[0.316350,0.468210,0.281333,0.467568,0.295163,0.493386],[0.311598,0.442986,0.281333,0.467568,0.316350,0.468210],[0.311598,0.442986,0.278488,0.441396,0.281333,0.467568],[0.286411,0.428335,0.278488,0.441396,0.311598,0.442986],[0.276863,0.425922,0.278488,0.441396,0.286411,0.428335],[0.266550,0.418914,0.278488,0.441396,0.276863,0.425922],[0.266550,0.418914,0.259215,0.436786,0.278488,0.441396],[0.255861,0.409665,0.259215,0.436786,0.266550,0.418914],[0.245543,0.427652,0.259215,0.436786,0.255861,0.409665],[0.224178,0.460994,0.259215,0.436786,0.245543,0.427652],[0.224178,0.460994,0.260159,0.468589,0.259215,0.436786],[0.224178,0.460994,0.233645,0.484635,0.260159,0.468589],[0.170953,0.513763,0.233645,0.484635,0.224178,0.460994],[0.170953,0.513763,0.245275,0.513125,0.233645,0.484635],[0.170953,0.513763,0.226765,0.555513,0.245275,0.513125],[0.170953,0.513763,0.183882,0.559965,0.226765,0.555513],[0.104634,0.514538,0.183882,0.559965,0.170953,0.513763],[0.104634,0.514538,0.170953,0.513763,0.163097,0.457901],[0.163097,0.457901,0.170953,0.513763,0.224178,0.460994],[0.163097,0.457901,0.224178,0.460994,0.212647,0.437666],[0.212647,0.437666,0.224178,0.460994,0.224316,0.416410],[0.224316,0.416410,0.224178,0.460994,0.245543,0.427652],[0.224316,0.416410,0.245543,0.427652,0.245435,0.404918],[0.245435,0.404918,0.245543,0.427652,0.255861,0.409665],[0.245435,0.404918,0.255861,0.409665,0.257013,0.399863],[0.257013,0.399863,0.255861,0.409665,0.263268,0.405216],[0.255861,0.409665,0.266550,0.418914,0.263268,0.405216],[0.263268,0.405216,0.266550,0.418914,0.270037,0.412917],[0.270037,0.412917,0.266550,0.418914,0.278810,0.419414],[0.266550,0.418914,0.276863,0.425922,0.278810,0.419414],[0.278810,0.419414,0.276863,0.425922,0.288068,0.423045],[0.288068,0.423045,0.276863,0.425922,0.286411,0.428335],[0.312544,0.423187,0.288068,0.423045,0.286411,0.428335],[0.313763,0.420052,0.288068,0.423045,0.312544,0.423187],[0.313763,0.420052,0.290498,0.418283,0.288068,0.423045],[0.312871,0.411346,0.290498,0.418283,0.313763,0.420052],[0.312871,0.411346,0.285693,0.408627,0.290498,0.418283],[0.304052,0.394107,0.285693,0.408627,0.312871,0.411346],[0.304052,0.394107,0.283414,0.396373,0.285693,0.408627],[0.304052,0.394107,0.281439,0.394523,0.283414,0.396373],[0.291454,0.390521,0.281439,0.394523,0.304052,0.394107],[0.291454,0.390521,0.278969,0.388793,0.281439,0.394523],[0.291454,0.390521,0.290161,0.387613,0.278969,0.388793],[0.316140,0.391073,0.290161,0.387613,0.291454,0.390521],[0.316140,0.391073,0.316533,0.388918,0.290161,0.387613],[0.335482,0.396748,0.316533,0.388918,0.316140,0.391073],[0.335482,0.396748,0.316688,0.386137,0.316533,0.388918],[0.336978,0.394091,0.316688,0.386137,0.335482,0.396748],[0.315210,0.377809,0.316688,0.386137,0.336978,0.394091],[0.315210,0.377809,0.290279,0.376609,0.316688,0.386137],[0.324971,0.361716,0.290279,0.376609,0.315210,0.377809],[0.324971,0.361716,0.292673,0.362060,0.290279,0.376609],[0.290817,0.346988,0.292673,0.362060,0.324971,0.361716],[0.290817,0.346988,0.273336,0.363347,0.292673,0.362060],[0.268608,0.353371,0.273336,0.363347,0.290817,0.346988],[0.249564,0.366843,0.273336,0.363347,0.268608,0.353371],[0.249564,0.366843,0.257647,0.387249,0.273336,0.363347],[0.244614,0.378994,0.257647,0.387249,0.249564,0.366843],[0.244614,0.378994,0.257013,0.399863,0.257647,0.387249],[0.244904,0.396392,0.257013,0.399863,0.244614,0.378994],[0.245435,0.404918,0.257013,0.399863,0.244904,0.396392],[0.224647,0.389567,0.245435,0.404918,0.244904,0.396392],[0.224316,0.416410,0.245435,0.404918,0.224647,0.389567],[0.204894,0.400852,0.224316,0.416410,0.224647,0.389567],[0.204894,0.400852,0.212647,0.437666,0.224316,0.416410],[0.153051,0.403987,0.212647,0.437666,0.204894,0.400852],[0.153051,0.403987,0.163097,0.457901,0.212647,0.437666],[0.153051,0.403987,0.204894,0.400852,0.159420,0.360374],[0.159420,0.360374,0.204894,0.400852,0.201625,0.354177],[0.204894,0.400852,0.224647,0.389567,0.201625,0.354177],[0.201625,0.354177,0.224647,0.389567,0.244614,0.378994],[0.224647,0.389567,0.244904,0.396392,0.244614,0.378994],[0.201625,0.354177,0.244614,0.378994,0.232402,0.338111],[0.232402,0.338111,0.244614,0.378994,0.249564,0.366843],[0.232402,0.338111,0.249564,0.366843,0.268608,0.353371],[0.232402,0.338111,0.268608,0.353371,0.260333,0.324292],[0.260333,0.324292,0.268608,0.353371,0.290817,0.346988],[0.260333,0.324292,0.290817,0.346988,0.292794,0.314264],[0.292794,0.314264,0.290817,0.346988,0.328727,0.343744],[0.328727,0.343744,0.290817,0.346988,0.324971,0.361716],[0.328727,0.343744,0.324971,0.361716,0.351643,0.353028],[0.351643,0.353028,0.324971,0.361716,0.344172,0.360979],[0.324971,0.361716,0.344845,0.371686,0.344172,0.360979],[0.340014,0.385851,0.344845,0.371686,0.324971,0.361716],[0.358810,0.384917,0.344845,0.371686,0.340014,0.385851],[0.364349,0.371223,0.344845,0.371686,0.358810,0.384917],[0.344172,0.360979,0.344845,0.371686,0.364349,0.371223],[0.344172,0.360979,0.364349,0.371223,0.365421,0.364474],[0.365421,0.364474,0.364349,0.371223,0.373304,0.383571],[0.373304,0.383571,0.364349,0.371223,0.366336,0.395110],[0.366336,0.395110,0.364349,0.371223,0.358810,0.384917],[0.358810,0.384917,0.353319,0.393478,0.366336,0.395110],[0.358810,0.384917,0.340014,0.385851,0.353319,0.393478],[0.340014,0.385851,0.339826,0.400662,0.353319,0.393478],[0.340014,0.385851,0.336978,0.394091,0.339826,0.400662],[0.315210,0.377809,0.336978,0.394091,0.340014,0.385851],[0.324971,0.361716,0.315210,0.377809,0.340014,0.385851],[0.339826,0.400662,0.336978,0.394091,0.335482,0.396748],[0.339826,0.400662,0.335482,0.396748,0.337786,0.401187],[0.335482,0.396748,0.333607,0.398331,0.337786,0.401187],[0.316140,0.391073,0.333607,0.398331,0.335482,0.396748],[0.331099,0.402717,0.333607,0.398331,0.316140,0.391073],[0.337786,0.401187,0.333607,0.398331,0.331099,0.402717],[0.343237,0.409639,0.337786,0.401187,0.331099,0.402717],[0.346008,0.407809,0.337786,0.401187,0.343237,0.409639],[0.346008,0.407809,0.339826,0.400662,0.337786,0.401187],[0.360119,0.400668,0.339826,0.400662,0.346008,0.407809],[0.353319,0.393478,0.339826,0.400662,0.360119,0.400668],[0.366336,0.395110,0.353319,0.393478,0.360119,0.400668],[0.366336,0.395110,0.360119,0.400668,0.363546,0.410982],[0.360119,0.400668,0.354843,0.416551,0.363546,0.410982],[0.360119,0.400668,0.346008,0.407809,0.354843,0.416551],[0.343237,0.409639,0.354843,0.416551,0.346008,0.407809],[0.345105,0.416237,0.354843,0.416551,0.343237,0.409639],[0.345105,0.416237,0.343432,0.420491,0.354843,0.416551],[0.345105,0.416237,0.337717,0.417097,0.343432,0.420491],[0.338079,0.415662,0.337717,0.417097,0.345105,0.416237],[0.338079,0.415662,0.331873,0.418911,0.337717,0.417097],[0.338079,0.415662,0.332215,0.416871,0.331873,0.418911],[0.339222,0.411558,0.332215,0.416871,0.338079,0.415662],[0.339222,0.411558,0.313763,0.420052,0.332215,0.416871],[0.339222,0.411558,0.312871,0.411346,0.313763,0.420052],[0.331099,0.402717,0.312871,0.411346,0.339222,0.411558],[0.304052,0.394107,0.312871,0.411346,0.331099,0.402717],[0.316140,0.391073,0.304052,0.394107,0.331099,0.402717],[0.316140,0.391073,0.291454,0.390521,0.304052,0.394107],[0.343237,0.409639,0.331099,0.402717,0.339222,0.411558],[0.339222,0.411558,0.345105,0.416237,0.343237,0.409639],[0.339222,0.411558,0.338079,0.415662,0.345105,0.416237],[0.332215,0.416871,0.313763,0.420052,0.312544,0.423187],[0.332215,0.416871,0.312544,0.423187,0.331873,0.418911],[0.331873,0.418911,0.312544,0.423187,0.309148,0.430871],[0.312544,0.423187,0.286411,0.428335,0.309148,0.430871],[0.309148,0.430871,0.286411,0.428335,0.311598,0.442986],[0.309148,0.430871,0.311598,0.442986,0.336334,0.433371],[0.336334,0.433371,0.311598,0.442986,0.345924,0.455764],[0.311598,0.442986,0.316350,0.468210,0.345924,0.455764],[0.345924,0.455764,0.316350,0.468210,0.339203,0.473534],[0.316350,0.468210,0.330783,0.491970,0.339203,0.473534],[0.339203,0.473534,0.330783,0.491970,0.341529,0.496542],[0.361943,0.473381,0.339203,0.473534,0.341529,0.496542],[0.345924,0.455764,0.339203,0.473534,0.361943,0.473381],[0.366188,0.445059,0.345924,0.455764,0.361943,0.473381],[0.345754,0.427360,0.345924,0.455764,0.366188,0.445059],[0.345754,0.427360,0.336334,0.433371,0.345924,0.455764],[0.343432,0.420491,0.336334,0.433371,0.345754,0.427360],[0.343432,0.420491,0.334882,0.427242,0.336334,0.433371],[0.337717,0.417097,0.334882,0.427242,0.343432,0.420491],[0.337717,0.417097,0.331873,0.418911,0.334882,0.427242],[0.331873,0.418911,0.309148,0.430871,0.334882,0.427242],[0.334882,0.427242,0.309148,0.430871,0.336334,0.433371],[0.354843,0.416551,0.343432,0.420491,0.345754,0.427360],[0.354843,0.416551,0.345754,0.427360,0.365161,0.418683],[0.365161,0.418683,0.345754,0.427360,0.366188,0.445059],[0.365161,0.418683,0.366188,0.445059,0.376651,0.440998],[0.366188,0.445059,0.380546,0.466066,0.376651,0.440998],[0.366188,0.445059,0.361943,0.473381,0.380546,0.466066],[0.361943,0.473381,0.369054,0.492720,0.380546,0.466066],[0.359311,0.489035,0.369054,0.492720,0.361943,0.473381],[0.358519,0.499559,0.369054,0.492720,0.359311,0.489035],[0.358519,0.499559,0.364722,0.504127,0.369054,0.492720],[0.358519,0.499559,0.362729,0.517391,0.364722,0.504127],[0.353543,0.508077,0.362729,0.517391,0.358519,0.499559],[0.353866,0.524112,0.362729,0.517391,0.353543,0.508077],[0.353866,0.524112,0.363925,0.528283,0.362729,0.517391],[0.366527,0.542661,0.363925,0.528283,0.353866,0.524112],[0.366527,0.542661,0.370307,0.529736,0.363925,0.528283],[0.377007,0.538026,0.370307,0.529736,0.366527,0.542661],[0.377007,0.538026,0.382315,0.524858,0.370307,0.529736],[0.377007,0.538026,0.392766,0.525178,0.382315,0.524858],[0.397313,0.530239,0.392766,0.525178,0.377007,0.538026],[0.397313,0.530239,0.395594,0.517016,0.392766,0.525178],[0.400492,0.518163,0.395594,0.517016,0.397313,0.530239],[0.395594,0.517016,0.400492,0.518163,0.398850,0.506093],[0.398850,0.506093,0.400492,0.518163,0.405127,0.519649],[0.405127,0.519649,0.400492,0.518163,0.397313,0.530239],[0.405127,0.519649,0.397313,0.530239,0.405127,0.532158],[0.405127,0.544842,0.405127,0.532158,0.397313,0.530239],[0.412941,0.530239,0.405127,0.532158,0.405127,0.544842],[0.405127,0.519649,0.405127,0.532158,0.412941,0.530239],[0.412941,0.530239,0.409762,0.518163,0.405127,0.519649],[0.414660,0.517016,0.409762,0.518163,0.412941,0.530239],[0.411404,0.506093,0.409762,0.518163,0.414660,0.517016],[0.411404,0.506093,0.405127,0.519649,0.409762,0.518163],[0.411404,0.506093,0.405127,0.505934,0.405127,0.519649],[0.405127,0.496390,0.405127,0.505934,0.411404,0.506093],[0.405127,0.496390,0.398850,0.506093,0.405127,0.505934],[0.405127,0.496390,0.399904,0.498017,0.398850,0.506093],[0.394334,0.453878,0.399904,0.498017,0.405127,0.496390],[0.394334,0.453878,0.395706,0.488475,0.399904,0.498017],[0.380546,0.466066,0.395706,0.488475,0.394334,0.453878],[0.380546,0.466066,0.379852,0.495268,0.395706,0.488475],[0.369054,0.492720,0.379852,0.495268,0.380546,0.466066],[0.369054,0.492720,0.376570,0.513356,0.379852,0.495268],[0.364722,0.504127,0.376570,0.513356,0.369054,0.492720],[0.362729,0.517391,0.376570,0.513356,0.364722,0.504127],[0.362729,0.517391,0.363925,0.528283,0.376570,0.513356],[0.363925,0.528283,0.379631,0.523045,0.376570,0.513356],[0.370307,0.529736,0.379631,0.523045,0.363925,0.528283],[0.382315,0.524858,0.379631,0.523045,0.370307,0.529736],[0.395594,0.517016,0.379631,0.523045,0.382315,0.524858],[0.376570,0.513356,0.379631,0.523045,0.395594,0.517016],[0.376570,0.513356,0.395594,0.517016,0.390945,0.507457],[0.390945,0.507457,0.395594,0.517016,0.398850,0.506093],[0.390945,0.507457,0.398850,0.506093,0.399904,0.498017],[0.395706,0.488475,0.390945,0.507457,0.399904,0.498017],[0.379852,0.495268,0.390945,0.507457,0.395706,0.488475],[0.376570,0.513356,0.390945,0.507457,0.379852,0.495268],[0.382315,0.524858,0.392766,0.525178,0.395594,0.517016],[0.390802,0.431183,0.380546,0.466066,0.394334,0.453878],[0.376651,0.440998,0.380546,0.466066,0.390802,0.431183],[0.381008,0.413203,0.376651,0.440998,0.390802,0.431183],[0.365161,0.418683,0.376651,0.440998,0.381008,0.413203],[0.363546,0.410982,0.365161,0.418683,0.381008,0.413203],[0.363546,0.410982,0.354843,0.416551,0.365161,0.418683],[0.363546,0.410982,0.381008,0.413203,0.372447,0.404676],[0.372447,0.404676,0.381008,0.413203,0.381323,0.397408],[0.381323,0.397408,0.381008,0.413203,0.386804,0.411044],[0.381008,0.413203,0.390802,0.431183,0.386804,0.411044],[0.386804,0.411044,0.390802,0.431183,0.405127,0.429023],[0.405127,0.429023,0.390802,0.431183,0.394334,0.453878],[0.405127,0.429023,0.394334,0.453878,0.405127,0.449549],[0.405127,0.449549,0.394334,0.453878,0.405127,0.496390],[0.415920,0.453878,0.405127,0.449549,0.405127,0.496390],[0.405127,0.429023,0.405127,0.449549,0.415920,0.453878],[0.405127,0.429023,0.415920,0.453878,0.419452,0.431183],[0.419452,0.431183,0.415920,0.453878,0.429708,0.466066],[0.415920,0.453878,0.414548,0.488475,0.429708,0.466066],[0.415920,0.453878,0.410350,0.498017,0.414548,0.488475],[0.415920,0.453878,0.405127,0.496390,0.410350,0.498017],[0.410350,0.498017,0.405127,0.496390,0.411404,0.506093],[0.419309,0.507457,0.410350,0.498017,0.411404,0.506093],[0.414548,0.488475,0.410350,0.498017,0.419309,0.507457],[0.430402,0.495268,0.414548,0.488475,0.419309,0.507457],[0.429708,0.466066,0.414548,0.488475,0.430402,0.495268],[0.441200,0.492720,0.429708,0.466066,0.430402,0.495268],[0.429708,0.466066,0.441200,0.492720,0.448311,0.473381],[0.448311,0.473381,0.441200,0.492720,0.450943,0.489035],[0.450943,0.489035,0.441200,0.492720,0.451735,0.499559],[0.451735,0.499559,0.441200,0.492720,0.445532,0.504127],[0.445532,0.504127,0.441200,0.492720,0.433684,0.513356],[0.441200,0.492720,0.430402,0.495268,0.433684,0.513356],[0.430402,0.495268,0.419309,0.507457,0.433684,0.513356],[0.433684,0.513356,0.419309,0.507457,0.414660,0.517016],[0.419309,0.507457,0.411404,0.506093,0.414660,0.517016],[0.430623,0.523045,0.433684,0.513356,0.414660,0.517016],[0.446329,0.528283,0.433684,0.513356,0.430623,0.523045],[0.446329,0.528283,0.447525,0.517391,0.433684,0.513356],[0.456388,0.524112,0.447525,0.517391,0.446329,0.528283],[0.456388,0.524112,0.456711,0.508077,0.447525,0.517391],[0.468725,0.496542,0.456711,0.508077,0.456388,0.524112],[0.468725,0.496542,0.451735,0.499559,0.456711,0.508077],[0.450943,0.489035,0.451735,0.499559,0.468725,0.496542],[0.448311,0.473381,0.450943,0.489035,0.468725,0.496542],[0.471051,0.473534,0.448311,0.473381,0.468725,0.496542],[0.464330,0.455764,0.448311,0.473381,0.471051,0.473534],[0.444066,0.445059,0.448311,0.473381,0.464330,0.455764],[0.444066,0.445059,0.429708,0.466066,0.448311,0.473381],[0.433603,0.440998,0.429708,0.466066,0.444066,0.445059],[0.419452,0.431183,0.429708,0.466066,0.433603,0.440998],[0.429246,0.413203,0.419452,0.431183,0.433603,0.440998],[0.423450,0.411044,0.419452,0.431183,0.429246,0.413203],[0.423450,0.411044,0.405127,0.429023,0.419452,0.431183],[0.405127,0.411049,0.405127,0.429023,0.423450,0.411044],[0.405127,0.411049,0.386804,0.411044,0.405127,0.429023],[0.405127,0.394055,0.386804,0.411044,0.405127,0.411049],[0.405127,0.394055,0.381323,0.397408,0.386804,0.411044],[0.382224,0.376545,0.381323,0.397408,0.405127,0.394055],[0.382224,0.376545,0.373304,0.383571,0.381323,0.397408],[0.365421,0.364474,0.373304,0.383571,0.382224,0.376545],[0.372504,0.346400,0.365421,0.364474,0.382224,0.376545],[0.372504,0.346400,0.351643,0.353028,0.365421,0.364474],[0.359769,0.320826,0.351643,0.353028,0.372504,0.346400],[0.359769,0.320826,0.328727,0.343744,0.351643,0.353028],[0.334039,0.313500,0.328727,0.343744,0.359769,0.320826],[0.334039,0.313500,0.292794,0.314264,0.328727,0.343744],[0.325129,0.283080,0.292794,0.314264,0.334039,0.313500],[0.325129,0.283080,0.286122,0.289961,0.292794,0.314264],[0.315602,0.220846,0.286122,0.289961,0.325129,0.283080],[0.315602,0.220846,0.249677,0.240611,0.286122,0.289961],[0.300417,0.187610,0.249677,0.240611,0.315602,0.220846],[0.195231,0.232109,0.249677,0.240611,0.300417,0.187610],[0.195231,0.232109,0.215171,0.271565,0.249677,0.240611],[0.153455,0.317971,0.215171,0.271565,0.195231,0.232109],[0.153455,0.317971,0.209753,0.312813,0.215171,0.271565],[0.153455,0.317971,0.201625,0.354177,0.209753,0.312813],[0.153455,0.317971,0.159420,0.360374,0.201625,0.354177],[0.201625,0.354177,0.232402,0.338111,0.209753,0.312813],[0.209753,0.312813,0.232402,0.338111,0.260333,0.324292],[0.209753,0.312813,0.260333,0.324292,0.237218,0.304757],[0.237218,0.304757,0.260333,0.324292,0.286122,0.289961],[0.260333,0.324292,0.292794,0.314264,0.286122,0.289961],[0.237218,0.304757,0.286122,0.289961,0.249677,0.240611],[0.215171,0.271565,0.237218,0.304757,0.249677,0.240611],[0.209753,0.312813,0.237218,0.304757,0.215171,0.271565],[0.195231,0.232109,0.300417,0.187610,0.225247,0.165305],[0.296290,0.141647,0.225247,0.165305,0.300417,0.187610],[0.405127,0.119729,0.296290,0.141647,0.300417,0.187610],[0.405127,0.119729,0.300417,0.187610,0.405127,0.164153],[0.405127,0.164153,0.300417,0.187610,0.315602,0.220846],[0.405127,0.164153,0.315602,0.220846,0.405127,0.202240],[0.405127,0.202240,0.315602,0.220846,0.405127,0.276249],[0.315602,0.220846,0.325129,0.283080,0.405127,0.276249],[0.405127,0.276249,0.325129,0.283080,0.334039,0.313500],[0.405127,0.276249,0.334039,0.313500,0.359769,0.320826],[0.405127,0.276249,0.359769,0.320826,0.405127,0.320712],[0.405127,0.320712,0.359769,0.320826,0.372504,0.346400],[0.405127,0.320712,0.372504,0.346400,0.405127,0.344114],[0.405127,0.344114,0.372504,0.346400,0.405127,0.375497],[0.372504,0.346400,0.382224,0.376545,0.405127,0.375497],[0.405127,0.375497,0.382224,0.376545,0.405127,0.394055],[0.428030,0.376545,0.405127,0.375497,0.405127,0.394055],[0.437750,0.346400,0.405127,0.375497,0.428030,0.376545],[0.405127,0.344114,0.405127,0.375497,0.437750,0.346400],[0.405127,0.320712,0.405127,0.344114,0.437750,0.346400],[0.450485,0.320826,0.405127,0.320712,0.437750,0.346400],[0.405127,0.276249,0.405127,0.320712,0.450485,0.320826],[0.405127,0.276249,0.450485,0.320826,0.476215,0.313500],[0.476215,0.313500,0.450485,0.320826,0.481527,0.343744],[0.450485,0.320826,0.458611,0.353028,0.481527,0.343744],[0.450485,0.320826,0.437750,0.346400,0.458611,0.353028],[0.437750,0.346400,0.444833,0.364474,0.458611,0.353028],[0.437750,0.346400,0.428030,0.376545,0.444833,0.364474],[0.444833,0.364474,0.428030,0.376545,0.436950,0.383571],[0.428030,0.376545,0.428931,0.397408,0.436950,0.383571],[0.428030,0.376545,0.405127,0.394055,0.428931,0.397408],[0.405127,0.394055,0.423450,0.411044,0.428931,0.397408],[0.405127,0.394055,0.405127,0.411049,0.423450,0.411044],[0.428931,0.397408,0.423450,0.411044,0.429246,0.413203],[0.428931,0.397408,0.429246,0.413203,0.437807,0.404676],[0.437807,0.404676,0.429246,0.413203,0.446708,0.410982],[0.446708,0.410982,0.429246,0.413203,0.445093,0.418683],[0.429246,0.413203,0.433603,0.440998,0.445093,0.418683],[0.445093,0.418683,0.433603,0.440998,0.444066,0.445059],[0.445093,0.418683,0.444066,0.445059,0.464500,0.427360],[0.464500,0.427360,0.444066,0.445059,0.464330,0.455764],[0.464500,0.427360,0.464330,0.455764,0.473920,0.433371],[0.473920,0.433371,0.464330,0.455764,0.498656,0.442986],[0.498656,0.442986,0.464330,0.455764,0.493904,0.468210],[0.464330,0.455764,0.471051,0.473534,0.493904,0.468210],[0.493904,0.468210,0.471051,0.473534,0.479471,0.491970],[0.471051,0.473534,0.468725,0.496542,0.479471,0.491970],[0.479471,0.491970,0.468725,0.496542,0.479363,0.526241],[0.468725,0.496542,0.456388,0.524112,0.479363,0.526241],[0.456388,0.524112,0.467370,0.546585,0.479363,0.526241],[0.456388,0.524112,0.448040,0.545494,0.467370,0.546585],[0.456388,0.524112,0.443727,0.542661,0.448040,0.545494],[0.456388,0.524112,0.446329,0.528283,0.443727,0.542661],[0.446329,0.528283,0.439947,0.529736,0.443727,0.542661],[0.446329,0.528283,0.430623,0.523045,0.439947,0.529736],[0.439947,0.529736,0.430623,0.523045,0.427939,0.524858],[0.430623,0.523045,0.414660,0.517016,0.427939,0.524858],[0.427939,0.524858,0.414660,0.517016,0.417488,0.525178],[0.417488,0.525178,0.414660,0.517016,0.412941,0.530239],[0.417488,0.525178,0.412941,0.530239,0.433247,0.538026],[0.433247,0.538026,0.412941,0.530239,0.418633,0.547510],[0.418633,0.547510,0.412941,0.530239,0.405127,0.544842],[0.418633,0.547510,0.405127,0.544842,0.420111,0.554314],[0.420111,0.554314,0.405127,0.544842,0.405127,0.555020],[0.405127,0.555020,0.405127,0.544842,0.390143,0.554314],[0.391621,0.547510,0.390143,0.554314,0.405127,0.544842],[0.373580,0.550608,0.390143,0.554314,0.391621,0.547510],[0.373580,0.550608,0.391298,0.568675,0.390143,0.554314],[0.373580,0.550608,0.370353,0.567254,0.391298,0.568675],[0.373580,0.550608,0.362213,0.545494,0.370353,0.567254],[0.366527,0.542661,0.362213,0.545494,0.373580,0.550608],[0.353866,0.524112,0.362213,0.545494,0.366527,0.542661],[0.377007,0.538026,0.366527,0.542661,0.373580,0.550608],[0.373580,0.550608,0.391621,0.547510,0.377007,0.538026],[0.377007,0.538026,0.391621,0.547510,0.397313,0.530239],[0.405127,0.544842,0.397313,0.530239,0.391621,0.547510],[0.391298,0.568675,0.370353,0.567254,0.384050,0.576886],[0.355831,0.585291,0.384050,0.576886,0.370353,0.567254],[0.384050,0.576886,0.355831,0.585291,0.386915,0.592108],[0.386915,0.592108,0.355831,0.585291,0.359235,0.594429],[0.340775,0.602605,0.359235,0.594429,0.355831,0.585291],[0.359235,0.594429,0.340775,0.602605,0.355734,0.601620],[0.359326,0.605072,0.355734,0.601620,0.340775,0.602605],[0.369733,0.602476,0.355734,0.601620,0.359326,0.605072],[0.369733,0.602476,0.369387,0.599079,0.355734,0.601620],[0.383279,0.595994,0.369387,0.599079,0.369733,0.602476],[0.383279,0.595994,0.386915,0.592108,0.369387,0.599079],[0.398478,0.591787,0.386915,0.592108,0.383279,0.595994],[0.398857,0.577477,0.386915,0.592108,0.398478,0.591787],[0.398857,0.577477,0.384050,0.576886,0.386915,0.592108],[0.399155,0.568696,0.384050,0.576886,0.398857,0.577477],[0.399155,0.568696,0.391298,0.568675,0.384050,0.576886],[0.390143,0.554314,0.391298,0.568675,0.399155,0.568696],[0.405127,0.555020,0.390143,0.554314,0.399155,0.568696],[0.405127,0.555020,0.399155,0.568696,0.405127,0.566655],[0.405127,0.566655,0.399155,0.568696,0.398857,0.577477],[0.405127,0.566655,0.398857,0.577477,0.405127,0.576015],[0.398857,0.577477,0.398478,0.591787,0.405127,0.576015],[0.405127,0.576015,0.398478,0.591787,0.405127,0.592966],[0.405127,0.592966,0.398478,0.591787,0.397676,0.597169],[0.397676,0.597169,0.398478,0.591787,0.383279,0.595994],[0.393368,0.601009,0.397676,0.597169,0.383279,0.595994],[0.405127,0.599833,0.397676,0.597169,0.393368,0.601009],[0.405127,0.599833,0.405127,0.597280,0.397676,0.597169],[0.412578,0.597169,0.405127,0.597280,0.405127,0.599833],[0.405127,0.592966,0.405127,0.597280,0.412578,0.597169],[0.405127,0.597280,0.405127,0.592966,0.397676,0.597169],[0.412578,0.597169,0.411776,0.591787,0.405127,0.592966],[0.426975,0.595994,0.411776,0.591787,0.412578,0.597169],[0.426975,0.595994,0.423339,0.592108,0.411776,0.591787],[0.440867,0.599079,0.423339,0.592108,0.426975,0.595994],[0.451019,0.594429,0.423339,0.592108,0.440867,0.599079],[0.454423,0.585291,0.423339,0.592108,0.451019,0.594429],[0.426203,0.576886,0.423339,0.592108,0.454423,0.585291],[0.411397,0.577477,0.423339,0.592108,0.426203,0.576886],[0.411397,0.577477,0.411776,0.591787,0.423339,0.592108],[0.411397,0.577477,0.405127,0.576015,0.411776,0.591787],[0.405127,0.566655,0.405127,0.576015,0.411397,0.577477],[0.405127,0.566655,0.411397,0.577477,0.411099,0.568696],[0.411099,0.568696,0.411397,0.577477,0.426203,0.576886],[0.418956,0.568675,0.411099,0.568696,0.426203,0.576886],[0.420111,0.554314,0.411099,0.568696,0.418956,0.568675],[0.420111,0.554314,0.405127,0.555020,0.411099,0.568696],[0.405127,0.555020,0.405127,0.566655,0.411099,0.568696],[0.436674,0.550608,0.420111,0.554314,0.418956,0.568675],[0.436674,0.550608,0.418633,0.547510,0.420111,0.554314],[0.436674,0.550608,0.433247,0.538026,0.418633,0.547510],[0.433247,0.538026,0.436674,0.550608,0.443727,0.542661],[0.443727,0.542661,0.436674,0.550608,0.448040,0.545494],[0.448040,0.545494,0.436674,0.550608,0.439901,0.567254],[0.436674,0.550608,0.418956,0.568675,0.439901,0.567254],[0.439901,0.567254,0.418956,0.568675,0.426203,0.576886],[0.439901,0.567254,0.426203,0.576886,0.454423,0.585291],[0.439901,0.567254,0.454423,0.585291,0.459223,0.568405],[0.459223,0.568405,0.454423,0.585291,0.473146,0.596721],[0.454423,0.585291,0.469479,0.602605,0.473146,0.596721],[0.454423,0.585291,0.451019,0.594429,0.469479,0.602605],[0.469479,0.602605,0.451019,0.594429,0.454520,0.601620],[0.454520,0.601620,0.451019,0.594429,0.440867,0.599079],[0.454520,0.601620,0.440867,0.599079,0.440521,0.602476],[0.440867,0.599079,0.426975,0.595994,0.440521,0.602476],[0.440521,0.602476,0.426975,0.595994,0.430028,0.601211],[0.426975,0.595994,0.416886,0.601009,0.430028,0.601211],[0.426975,0.595994,0.412578,0.597169,0.416886,0.601009],[0.416886,0.601009,0.412578,0.597169,0.405127,0.599833],[0.454520,0.601620,0.440521,0.602476,0.450928,0.605072],[0.469479,0.602605,0.454520,0.601620,0.450928,0.605072],[0.469479,0.602605,0.450928,0.605072,0.465416,0.605505],[0.472264,0.606245,0.469479,0.602605,0.465416,0.605505],[0.481283,0.602248,0.469479,0.602605,0.472264,0.606245],[0.473146,0.596721,0.469479,0.602605,0.481283,0.602248],[0.478639,0.574394,0.473146,0.596721,0.481283,0.602248],[0.459223,0.568405,0.473146,0.596721,0.478639,0.574394],[0.467370,0.546585,0.459223,0.568405,0.478639,0.574394],[0.448040,0.545494,0.459223,0.568405,0.467370,0.546585],[0.448040,0.545494,0.439901,0.567254,0.459223,0.568405],[0.467370,0.546585,0.478639,0.574394,0.480569,0.549785],[0.528152,0.539904,0.480569,0.549785,0.478639,0.574394],[0.490768,0.526406,0.480569,0.549785,0.528152,0.539904],[0.490768,0.526406,0.479363,0.526241,0.480569,0.549785],[0.479471,0.491970,0.479363,0.526241,0.490768,0.526406],[0.515091,0.493386,0.479471,0.491970,0.490768,0.526406],[0.493904,0.468210,0.479471,0.491970,0.515091,0.493386],[0.528921,0.467568,0.493904,0.468210,0.515091,0.493386],[0.498656,0.442986,0.493904,0.468210,0.528921,0.467568],[0.531766,0.441396,0.498656,0.442986,0.528921,0.467568],[0.523843,0.428335,0.498656,0.442986,0.531766,0.441396],[0.523843,0.428335,0.501106,0.430871,0.498656,0.442986],[0.497710,0.423187,0.501106,0.430871,0.523843,0.428335],[0.478381,0.418911,0.501106,0.430871,0.497710,0.423187],[0.478381,0.418911,0.475372,0.427242,0.501106,0.430871],[0.472537,0.417097,0.475372,0.427242,0.478381,0.418911],[0.472537,0.417097,0.466822,0.420491,0.475372,0.427242],[0.465149,0.416237,0.466822,0.420491,0.472537,0.417097],[0.465149,0.416237,0.455411,0.416551,0.466822,0.420491],[0.467017,0.409639,0.455411,0.416551,0.465149,0.416237],[0.467017,0.409639,0.464246,0.407809,0.455411,0.416551],[0.472468,0.401187,0.464246,0.407809,0.467017,0.409639],[0.470428,0.400662,0.464246,0.407809,0.472468,0.401187],[0.450135,0.400668,0.464246,0.407809,0.470428,0.400662],[0.450135,0.400668,0.455411,0.416551,0.464246,0.407809],[0.450135,0.400668,0.446708,0.410982,0.455411,0.416551],[0.443918,0.395110,0.446708,0.410982,0.450135,0.400668],[0.443918,0.395110,0.437807,0.404676,0.446708,0.410982],[0.436950,0.383571,0.437807,0.404676,0.443918,0.395110],[0.436950,0.383571,0.428931,0.397408,0.437807,0.404676],[0.445905,0.371223,0.436950,0.383571,0.443918,0.395110],[0.444833,0.364474,0.436950,0.383571,0.445905,0.371223],[0.466082,0.360979,0.444833,0.364474,0.445905,0.371223],[0.458611,0.353028,0.444833,0.364474,0.466082,0.360979],[0.485283,0.361716,0.458611,0.353028,0.466082,0.360979],[0.481527,0.343744,0.458611,0.353028,0.485283,0.361716],[0.519437,0.346988,0.481527,0.343744,0.485283,0.361716],[0.517460,0.314264,0.481527,0.343744,0.519437,0.346988],[0.517460,0.314264,0.476215,0.313500,0.481527,0.343744],[0.485125,0.283080,0.476215,0.313500,0.517460,0.314264],[0.485125,0.283080,0.405127,0.276249,0.476215,0.313500],[0.494652,0.220846,0.405127,0.276249,0.485125,0.283080],[0.405127,0.202240,0.405127,0.276249,0.494652,0.220846],[0.405127,0.164153,0.405127,0.202240,0.494652,0.220846],[0.509837,0.187610,0.405127,0.164153,0.494652,0.220846],[0.405127,0.119729,0.405127,0.164153,0.509837,0.187610],[0.509837,0.187610,0.513964,0.141647,0.405127,0.119729],[0.509837,0.187610,0.494652,0.220846,0.560577,0.240611],[0.494652,0.220846,0.524132,0.289961,0.560577,0.240611],[0.494652,0.220846,0.485125,0.283080,0.524132,0.289961],[0.485125,0.283080,0.517460,0.314264,0.524132,0.289961],[0.524132,0.289961,0.517460,0.314264,0.549921,0.324292],[0.517460,0.314264,0.519437,0.346988,0.549921,0.324292],[0.549921,0.324292,0.519437,0.346988,0.541646,0.353371],[0.519437,0.346988,0.536918,0.363347,0.541646,0.353371],[0.519437,0.346988,0.517581,0.362060,0.536918,0.363347],[0.519437,0.346988,0.485283,0.361716,0.517581,0.362060],[0.517581,0.362060,0.485283,0.361716,0.519975,0.376609],[0.485283,0.361716,0.495044,0.377809,0.519975,0.376609],[0.485283,0.361716,0.470240,0.385851,0.495044,0.377809],[0.485283,0.361716,0.465409,0.371686,0.470240,0.385851],[0.485283,0.361716,0.466082,0.360979,0.465409,0.371686],[0.466082,0.360979,0.445905,0.371223,0.465409,0.371686],[0.465409,0.371686,0.445905,0.371223,0.451444,0.384917],[0.451444,0.384917,0.445905,0.371223,0.443918,0.395110],[0.451444,0.384917,0.443918,0.395110,0.456935,0.393478],[0.456935,0.393478,0.443918,0.395110,0.450135,0.400668],[0.456935,0.393478,0.450135,0.400668,0.470428,0.400662],[0.470240,0.385851,0.456935,0.393478,0.470428,0.400662],[0.470240,0.385851,0.451444,0.384917,0.456935,0.393478],[0.465409,0.371686,0.451444,0.384917,0.470240,0.385851],[0.470240,0.385851,0.470428,0.400662,0.473276,0.394091],[0.474772,0.396748,0.473276,0.394091,0.470428,0.400662],[0.493566,0.386137,0.473276,0.394091,0.474772,0.396748],[0.495044,0.377809,0.473276,0.394091,0.493566,0.386137],[0.495044,0.377809,0.470240,0.385851,0.473276,0.394091],[0.519975,0.376609,0.495044,0.377809,0.493566,0.386137],[0.519975,0.376609,0.493566,0.386137,0.520115,0.386005],[0.520115,0.386005,0.493566,0.386137,0.493721,0.388918],[0.493721,0.388918,0.493566,0.386137,0.474772,0.396748],[0.493721,0.388918,0.474772,0.396748,0.494114,0.391073],[0.494114,0.391073,0.474772,0.396748,0.476647,0.398331],[0.474772,0.396748,0.472468,0.401187,0.476647,0.398331],[0.474772,0.396748,0.470428,0.400662,0.472468,0.401187],[0.479155,0.402717,0.476647,0.398331,0.472468,0.401187],[0.494114,0.391073,0.476647,0.398331,0.479155,0.402717],[0.494114,0.391073,0.479155,0.402717,0.506202,0.394107],[0.506202,0.394107,0.479155,0.402717,0.497383,0.411346],[0.479155,0.402717,0.471032,0.411558,0.497383,0.411346],[0.471032,0.411558,0.479155,0.402717,0.467017,0.409639],[0.479155,0.402717,0.472468,0.401187,0.467017,0.409639],[0.471032,0.411558,0.467017,0.409639,0.465149,0.416237],[0.471032,0.411558,0.465149,0.416237,0.472175,0.415662],[0.472175,0.415662,0.465149,0.416237,0.472537,0.417097],[0.472175,0.415662,0.472537,0.417097,0.478381,0.418911],[0.478039,0.416871,0.472175,0.415662,0.478381,0.418911],[0.471032,0.411558,0.472175,0.415662,0.478039,0.416871],[0.471032,0.411558,0.478039,0.416871,0.496491,0.420052],[0.478039,0.416871,0.497710,0.423187,0.496491,0.420052],[0.478039,0.416871,0.478381,0.418911,0.497710,0.423187],[0.496491,0.420052,0.497710,0.423187,0.522186,0.423045],[0.522186,0.423045,0.497710,0.423187,0.523843,0.428335],[0.522186,0.423045,0.523843,0.428335,0.533391,0.425922],[0.533391,0.425922,0.523843,0.428335,0.531766,0.441396],[0.543704,0.418914,0.533391,0.425922,0.531766,0.441396],[0.543704,0.418914,0.531444,0.419414,0.533391,0.425922],[0.540217,0.412917,0.531444,0.419414,0.543704,0.418914],[0.533577,0.409488,0.531444,0.419414,0.540217,0.412917],[0.533577,0.409488,0.527259,0.414917,0.531444,0.419414],[0.533577,0.409488,0.524561,0.408627,0.527259,0.414917],[0.540739,0.402636,0.524561,0.408627,0.533577,0.409488],[0.526840,0.396373,0.524561,0.408627,0.540739,0.402636],[0.506202,0.394107,0.524561,0.408627,0.526840,0.396373],[0.506202,0.394107,0.497383,0.411346,0.524561,0.408627],[0.524561,0.408627,0.497383,0.411346,0.519756,0.418283],[0.497383,0.411346,0.496491,0.420052,0.519756,0.418283],[0.471032,0.411558,0.496491,0.420052,0.497383,0.411346],[0.519756,0.418283,0.496491,0.420052,0.522186,0.423045],[0.527259,0.414917,0.519756,0.418283,0.522186,0.423045],[0.527259,0.414917,0.524561,0.408627,0.519756,0.418283],[0.527259,0.414917,0.522186,0.423045,0.531444,0.419414],[0.531444,0.419414,0.522186,0.423045,0.533391,0.425922],[0.528815,0.394523,0.506202,0.394107,0.526840,0.396373],[0.518800,0.390521,0.506202,0.394107,0.528815,0.394523],[0.518800,0.390521,0.494114,0.391073,0.506202,0.394107],[0.520093,0.387613,0.494114,0.391073,0.518800,0.390521],[0.520093,0.387613,0.493721,0.388918,0.494114,0.391073],[0.520115,0.386005,0.493721,0.388918,0.520093,0.387613],[0.531066,0.387730,0.520115,0.386005,0.520093,0.387613],[0.536550,0.385086,0.520115,0.386005,0.531066,0.387730],[0.519975,0.376609,0.520115,0.386005,0.536550,0.385086],[0.536918,0.363347,0.519975,0.376609,0.536550,0.385086],[0.517581,0.362060,0.519975,0.376609,0.536918,0.363347],[0.536918,0.363347,0.536550,0.385086,0.552607,0.387249],[0.536550,0.385086,0.550027,0.392378,0.552607,0.387249],[0.536550,0.385086,0.531066,0.387730,0.550027,0.392378],[0.531066,0.387730,0.544135,0.393049,0.550027,0.392378],[0.520093,0.387613,0.531285,0.388793,0.531066,0.387730],[0.531285,0.388793,0.520093,0.387613,0.518800,0.390521],[0.531285,0.388793,0.518800,0.390521,0.528815,0.394523],[0.540445,0.397846,0.531285,0.388793,0.528815,0.394523],[0.531285,0.388793,0.540445,0.397846,0.544135,0.393049],[0.551247,0.397675,0.544135,0.393049,0.540445,0.397846],[0.550027,0.392378,0.544135,0.393049,0.551247,0.397675],[0.553240,0.399863,0.550027,0.392378,0.551247,0.397675],[0.553240,0.399863,0.552607,0.387249,0.550027,0.392378],[0.565640,0.378994,0.552607,0.387249,0.553240,0.399863],[0.565640,0.378994,0.560690,0.366843,0.552607,0.387249],[0.577852,0.338111,0.560690,0.366843,0.565640,0.378994],[0.577852,0.338111,0.541646,0.353371,0.560690,0.366843],[0.577852,0.338111,0.549921,0.324292,0.541646,0.353371],[0.600501,0.312813,0.549921,0.324292,0.577852,0.338111],[0.600501,0.312813,0.573036,0.304757,0.549921,0.324292],[0.600501,0.312813,0.595083,0.271565,0.573036,0.304757],[0.656799,0.317971,0.595083,0.271565,0.600501,0.312813],[0.656799,0.317971,0.615023,0.232109,0.595083,0.271565],[0.615023,0.232109,0.560577,0.240611,0.595083,0.271565],[0.615023,0.232109,0.509837,0.187610,0.560577,0.240611],[0.560577,0.240611,0.573036,0.304757,0.595083,0.271565],[0.573036,0.304757,0.560577,0.240611,0.524132,0.289961],[0.573036,0.304757,0.524132,0.289961,0.549921,0.324292],[0.656799,0.317971,0.600501,0.312813,0.608629,0.354177],[0.608629,0.354177,0.600501,0.312813,0.577852,0.338111],[0.608629,0.354177,0.577852,0.338111,0.565640,0.378994],[0.608629,0.354177,0.565640,0.378994,0.585607,0.389567],[0.585607,0.389567,0.565640,0.378994,0.565350,0.396392],[0.565640,0.378994,0.553240,0.399863,0.565350,0.396392],[0.565350,0.396392,0.553240,0.399863,0.564819,0.404918],[0.564819,0.404918,0.553240,0.399863,0.554393,0.409665],[0.553240,0.399863,0.546986,0.405216,0.554393,0.409665],[0.553240,0.399863,0.548717,0.400916,0.546986,0.405216],[0.553240,0.399863,0.551247,0.397675,0.548717,0.400916],[0.551247,0.397675,0.540445,0.397846,0.548717,0.400916],[0.548717,0.400916,0.540445,0.397846,0.540739,0.402636],[0.540445,0.397846,0.526840,0.396373,0.540739,0.402636],[0.528815,0.394523,0.526840,0.396373,0.540445,0.397846],[0.548717,0.400916,0.540739,0.402636,0.546986,0.405216],[0.540739,0.402636,0.540217,0.412917,0.546986,0.405216],[0.540739,0.402636,0.533577,0.409488,0.540217,0.412917],[0.546986,0.405216,0.540217,0.412917,0.543704,0.418914],[0.546986,0.405216,0.543704,0.418914,0.554393,0.409665],[0.554393,0.409665,0.543704,0.418914,0.551039,0.436786],[0.543704,0.418914,0.531766,0.441396,0.551039,0.436786],[0.551039,0.436786,0.531766,0.441396,0.550095,0.468589],[0.531766,0.441396,0.528921,0.467568,0.550095,0.468589],[0.550095,0.468589,0.528921,0.467568,0.543114,0.486212],[0.528921,0.467568,0.525278,0.512276,0.543114,0.486212],[0.528921,0.467568,0.515091,0.493386,0.525278,0.512276],[0.515091,0.493386,0.490768,0.526406,0.525278,0.512276],[0.525278,0.512276,0.490768,0.526406,0.528152,0.539904],[0.543114,0.486212,0.525278,0.512276,0.528152,0.539904],[0.543114,0.486212,0.528152,0.539904,0.564979,0.513125],[0.564979,0.513125,0.528152,0.539904,0.531109,0.571240],[0.528152,0.539904,0.478639,0.574394,0.531109,0.571240],[0.531109,0.571240,0.478639,0.574394,0.481283,0.602248],[0.531109,0.571240,0.481283,0.602248,0.528878,0.594659],[0.528878,0.594659,0.481283,0.602248,0.492624,0.613688],[0.481283,0.602248,0.477497,0.613268,0.492624,0.613688],[0.481283,0.602248,0.472264,0.606245,0.477497,0.613268],[0.472264,0.606245,0.471613,0.618341,0.477497,0.613268],[0.477497,0.613268,0.471613,0.618341,0.478295,0.625530],[0.492624,0.613688,0.477497,0.613268,0.478295,0.625530],[0.492624,0.613688,0.478295,0.625530,0.495357,0.640727],[0.478295,0.625530,0.459701,0.630210,0.495357,0.640727],[0.459701,0.630210,0.477567,0.652464,0.495357,0.640727],[0.495357,0.640727,0.477567,0.652464,0.507729,0.663522],[0.477567,0.652464,0.483420,0.674620,0.507729,0.663522],[0.477567,0.652464,0.453128,0.658176,0.483420,0.674620],[0.538006,0.650822,0.495357,0.640727,0.507729,0.663522],[0.538006,0.650822,0.524910,0.611687,0.495357,0.640727],[0.565863,0.632856,0.524910,0.611687,0.538006,0.650822],[0.565863,0.632856,0.582414,0.593914,0.524910,0.611687],[0.582414,0.593914,0.528878,0.594659,0.524910,0.611687],[0.582414,0.593914,0.583489,0.555513,0.528878,0.594659],[0.583489,0.555513,0.531109,0.571240,0.528878,0.594659],[0.583489,0.555513,0.564979,0.513125,0.531109,0.571240],[0.528878,0.594659,0.492624,0.613688,0.524910,0.611687],[0.492624,0.613688,0.495357,0.640727,0.524910,0.611687],[0.576609,0.484635,0.543114,0.486212,0.564979,0.513125],[0.550095,0.468589,0.543114,0.486212,0.576609,0.484635],[0.586076,0.460994,0.550095,0.468589,0.576609,0.484635],[0.551039,0.436786,0.550095,0.468589,0.586076,0.460994],[0.564711,0.427652,0.551039,0.436786,0.586076,0.460994],[0.554393,0.409665,0.551039,0.436786,0.564711,0.427652],[0.564819,0.404918,0.554393,0.409665,0.564711,0.427652],[0.585938,0.416410,0.564819,0.404918,0.564711,0.427652],[0.585938,0.416410,0.585607,0.389567,0.564819,0.404918],[0.605360,0.400852,0.585607,0.389567,0.585938,0.416410],[0.605360,0.400852,0.608629,0.354177,0.585607,0.389567],[0.650834,0.360374,0.608629,0.354177,0.605360,0.400852],[0.656799,0.317971,0.608629,0.354177,0.650834,0.360374],[0.688510,0.358544,0.656799,0.317971,0.650834,0.360374],[0.605360,0.400852,0.585938,0.416410,0.597607,0.437666],[0.597607,0.437666,0.585938,0.416410,0.586076,0.460994],[0.585938,0.416410,0.564711,0.427652,0.586076,0.460994],[0.585607,0.389567,0.565350,0.396392,0.564819,0.404918],[0.560690,0.366843,0.541646,0.353371,0.536918,0.363347],[0.560690,0.366843,0.536918,0.363347,0.552607,0.387249],[0.446708,0.410982,0.445093,0.418683,0.455411,0.416551],[0.455411,0.416551,0.445093,0.418683,0.464500,0.427360],[0.455411,0.416551,0.464500,0.427360,0.466822,0.420491],[0.466822,0.420491,0.464500,0.427360,0.473920,0.433371],[0.466822,0.420491,0.473920,0.433371,0.475372,0.427242],[0.475372,0.427242,0.473920,0.433371,0.501106,0.430871],[0.501106,0.430871,0.473920,0.433371,0.498656,0.442986],[0.479363,0.526241,0.467370,0.546585,0.480569,0.549785],[0.464547,0.607213,0.472264,0.606245,0.465416,0.605505],[0.443727,0.542661,0.439947,0.529736,0.433247,0.538026],[0.439947,0.529736,0.427939,0.524858,0.433247,0.538026],[0.427939,0.524858,0.417488,0.525178,0.433247,0.538026],[0.405127,0.576015,0.405127,0.592966,0.411776,0.591787],[0.393368,0.601009,0.383279,0.595994,0.380226,0.601211],[0.380226,0.601211,0.383279,0.595994,0.369733,0.602476],[0.386915,0.592108,0.359235,0.594429,0.369387,0.599079],[0.369387,0.599079,0.359235,0.594429,0.355734,0.601620],[0.359326,0.605072,0.340775,0.602605,0.344838,0.605505],[0.344838,0.605505,0.340775,0.602605,0.337990,0.606245],[0.344838,0.605505,0.337990,0.606245,0.345707,0.607213],[0.345707,0.607213,0.337990,0.606245,0.345291,0.611220],[0.351277,0.608109,0.345707,0.607213,0.345291,0.611220],[0.345291,0.611220,0.359184,0.606069,0.351277,0.608109],[0.345291,0.611220,0.357505,0.609398,0.359184,0.606069],[0.345291,0.611220,0.356184,0.615526,0.357505,0.609398],[0.359184,0.606069,0.357505,0.609398,0.374398,0.612183],[0.359184,0.606069,0.374398,0.612183,0.371932,0.606091],[0.389543,0.605544,0.371932,0.606091,0.374398,0.612183],[0.389543,0.605544,0.381068,0.602176,0.371932,0.606091],[0.405127,0.601542,0.381068,0.602176,0.389543,0.605544],[0.405127,0.601542,0.389543,0.605544,0.405127,0.606382],[0.405127,0.606382,0.389543,0.605544,0.391657,0.613499],[0.389543,0.605544,0.374398,0.612183,0.391657,0.613499],[0.405127,0.606382,0.391657,0.613499,0.405127,0.611377],[0.405127,0.611377,0.391657,0.613499,0.405272,0.624965],[0.418597,0.613499,0.405127,0.611377,0.405272,0.624965],[0.405127,0.606382,0.405127,0.611377,0.418597,0.613499],[0.420711,0.605544,0.405127,0.606382,0.418597,0.613499],[0.420711,0.605544,0.405127,0.601542,0.405127,0.606382],[0.429186,0.602176,0.405127,0.601542,0.420711,0.605544],[0.438322,0.606091,0.429186,0.602176,0.420711,0.605544],[0.451070,0.606069,0.429186,0.602176,0.438322,0.606091],[0.451070,0.606069,0.438322,0.606091,0.435856,0.612183],[0.438322,0.606091,0.420711,0.605544,0.435856,0.612183],[0.420711,0.605544,0.418597,0.613499,0.435856,0.612183],[0.435856,0.612183,0.418597,0.613499,0.428208,0.625371],[0.418597,0.613499,0.416907,0.627087,0.428208,0.625371],[0.418597,0.613499,0.405272,0.624965,0.416907,0.627087],[0.420172,0.637551,0.416907,0.627087,0.405272,0.624965],[0.428208,0.625371,0.416907,0.627087,0.420172,0.637551],[0.420172,0.637551,0.405272,0.624965,0.405127,0.636783],[0.405127,0.636783,0.405272,0.624965,0.390082,0.637551],[0.405127,0.636783,0.390082,0.637551,0.386684,0.642702],[0.435856,0.612183,0.428208,0.625371,0.439969,0.620869],[0.452749,0.609398,0.435856,0.612183,0.439969,0.620869],[0.452749,0.609398,0.451070,0.606069,0.435856,0.612183],[0.452749,0.609398,0.439969,0.620869,0.454070,0.615526],[0.381068,0.602176,0.359184,0.606069,0.371932,0.606091],[0.351643,0.353028,0.344172,0.360979,0.365421,0.364474],[0.373304,0.383571,0.372447,0.404676,0.381323,0.397408],[0.372447,0.404676,0.373304,0.383571,0.366336,0.395110],[0.366336,0.395110,0.363546,0.410982,0.372447,0.404676],[0.456711,0.508077,0.451735,0.499559,0.447525,0.517391],[0.451735,0.499559,0.445532,0.504127,0.447525,0.517391],[0.447525,0.517391,0.445532,0.504127,0.433684,0.513356],[0.405127,0.505934,0.398850,0.506093,0.405127,0.519649],[0.341529,0.496542,0.353866,0.524112,0.353543,0.508077],[0.341529,0.496542,0.353543,0.508077,0.358519,0.499559],[0.359311,0.489035,0.341529,0.496542,0.358519,0.499559],[0.361943,0.473381,0.341529,0.496542,0.359311,0.489035],[0.257013,0.399863,0.260227,0.392378,0.257647,0.387249],[0.266119,0.393049,0.260227,0.392378,0.259007,0.397675],[0.279188,0.387730,0.260227,0.392378,0.266119,0.393049],[0.273704,0.385086,0.260227,0.392378,0.279188,0.387730],[0.257647,0.387249,0.260227,0.392378,0.273704,0.385086],[0.273336,0.363347,0.257647,0.387249,0.273704,0.385086],[0.273336,0.363347,0.273704,0.385086,0.290279,0.376609],[0.290279,0.376609,0.273704,0.385086,0.290139,0.386005],[0.290139,0.386005,0.273704,0.385086,0.279188,0.387730],[0.290161,0.387613,0.290139,0.386005,0.279188,0.387730],[0.316533,0.388918,0.290139,0.386005,0.290161,0.387613],[0.316533,0.388918,0.316688,0.386137,0.290139,0.386005],[0.290279,0.376609,0.290139,0.386005,0.316688,0.386137],[0.290161,0.387613,0.279188,0.387730,0.278969,0.388793],[0.278969,0.388793,0.279188,0.387730,0.266119,0.393049],[0.278969,0.388793,0.266119,0.393049,0.269809,0.397846],[0.269809,0.397846,0.266119,0.393049,0.259007,0.397675],[0.269809,0.397846,0.259007,0.397675,0.261537,0.400916],[0.261537,0.400916,0.259007,0.397675,0.257013,0.399863],[0.263268,0.405216,0.261537,0.400916,0.257013,0.399863],[0.269515,0.402636,0.261537,0.400916,0.263268,0.405216],[0.269515,0.402636,0.269809,0.397846,0.261537,0.400916],[0.283414,0.396373,0.269809,0.397846,0.269515,0.402636],[0.281439,0.394523,0.269809,0.397846,0.283414,0.396373],[0.281439,0.394523,0.278969,0.388793,0.269809,0.397846],[0.283414,0.396373,0.269515,0.402636,0.285693,0.408627],[0.269515,0.402636,0.276677,0.409488,0.285693,0.408627],[0.269515,0.402636,0.270037,0.412917,0.276677,0.409488],[0.263268,0.405216,0.270037,0.412917,0.269515,0.402636],[0.276677,0.409488,0.270037,0.412917,0.278810,0.419414],[0.276677,0.409488,0.278810,0.419414,0.282995,0.414917],[0.282995,0.414917,0.278810,0.419414,0.288068,0.423045],[0.282995,0.414917,0.288068,0.423045,0.290498,0.418283],[0.290498,0.418283,0.285693,0.408627,0.282995,0.414917],[0.276677,0.409488,0.282995,0.414917,0.285693,0.408627],[0.292673,0.362060,0.273336,0.363347,0.290279,0.376609],[0.226765,0.555513,0.279145,0.571240,0.245275,0.513125],[0.245275,0.513125,0.279145,0.571240,0.282102,0.539904],[0.282102,0.539904,0.279145,0.571240,0.331615,0.574394],[0.331615,0.574394,0.279145,0.571240,0.328971,0.602248],[0.331615,0.574394,0.328971,0.602248,0.337108,0.596721],[0.351031,0.568405,0.331615,0.574394,0.337108,0.596721],[0.342884,0.546585,0.331615,0.574394,0.351031,0.568405],[0.342884,0.546585,0.329685,0.549785,0.331615,0.574394],[0.330891,0.526241,0.329685,0.549785,0.342884,0.546585],[0.330891,0.526241,0.319486,0.526406,0.329685,0.549785],[0.319486,0.526406,0.282102,0.539904,0.329685,0.549785],[0.284976,0.512276,0.282102,0.539904,0.319486,0.526406],[0.267140,0.486212,0.282102,0.539904,0.284976,0.512276],[0.267140,0.486212,0.245275,0.513125,0.282102,0.539904],[0.233645,0.484635,0.245275,0.513125,0.267140,0.486212],[0.233645,0.484635,0.267140,0.486212,0.260159,0.468589],[0.281333,0.467568,0.260159,0.468589,0.267140,0.486212],[0.278488,0.441396,0.260159,0.468589,0.281333,0.467568],[0.259215,0.436786,0.260159,0.468589,0.278488,0.441396],[0.281333,0.467568,0.267140,0.486212,0.284976,0.512276],[0.281333,0.467568,0.284976,0.512276,0.295163,0.493386],[0.295163,0.493386,0.284976,0.512276,0.319486,0.526406],[0.282102,0.539904,0.331615,0.574394,0.329685,0.549785],[0.087139,0.545637,0.104634,0.514538,0.086743,0.509143],[0.885979,0.165819,0.862920,0.187935,0.858113,0.155526],[0.889115,0.191199,0.862920,0.187935,0.885979,0.165819],[0.889115,0.191199,0.882238,0.206010,0.862920,0.187935],[0.903545,0.202895,0.882238,0.206010,0.889115,0.191199],[0.882238,0.206010,0.903545,0.202895,0.906427,0.207695],[0.906427,0.207695,0.903545,0.202895,0.944890,0.174719],[0.903545,0.202895,0.936813,0.173876,0.944890,0.174719],[0.936813,0.173876,0.903545,0.202895,0.889115,0.191199],[0.936813,0.173876,0.889115,0.191199,0.922602,0.174083],[0.922602,0.174083,0.889115,0.191199,0.885979,0.165819],[0.922602,0.174083,0.885979,0.165819,0.914710,0.159382],[0.914710,0.159382,0.885979,0.165819,0.878985,0.152740],[0.885979,0.165819,0.858113,0.155526,0.878985,0.152740],[0.858113,0.155526,0.868605,0.144803,0.878985,0.152740],[0.933216,0.143757,0.914710,0.159382,0.878985,0.152740],[0.933216,0.143757,0.922602,0.174083,0.914710,0.159382],[0.952282,0.148521,0.922602,0.174083,0.933216,0.143757],[0.952282,0.148521,0.936813,0.173876,0.922602,0.174083],[0.933216,0.143757,0.878985,0.152740,0.883964,0.126491],[0.944890,0.174719,0.890163,0.217146,0.906427,0.207695],[0.890163,0.217146,0.944890,0.174719,0.957134,0.200594],[0.906427,0.207695,0.890163,0.217146,0.882238,0.206010],[0.890163,0.217146,0.862920,0.187935,0.882238,0.206010],[0.138855,0.676179,0.181822,0.700501,0.137330,0.631514],[0.137330,0.631514,0.181822,0.700501,0.162065,0.659896],[0.181822,0.700501,0.209853,0.686361,0.162065,0.659896],[0.209853,0.686361,0.209169,0.662559,0.162065,0.659896],[0.259674,0.691626,0.209169,0.662559,0.209853,0.686361],[0.272248,0.650822,0.244391,0.632856,0.216863,0.645021],[0.244391,0.632856,0.272248,0.650822,0.285344,0.611687],[0.272248,0.650822,0.314897,0.640727,0.285344,0.611687],[0.405127,0.660541,0.383098,0.661126,0.380264,0.687801],[0.405127,0.660541,0.380264,0.687801,0.405127,0.685170],[0.405127,0.660541,0.405127,0.685170,0.429990,0.687801],[0.429990,0.687801,0.405127,0.685170,0.430878,0.705635],[0.320100,0.743954,0.321377,0.705076,0.257199,0.720376],[0.811270,0.550866,0.755814,0.504584,0.764790,0.467292],[0.987335,0.096616,0.985446,0.139602,0.961837,0.145763],[0.987335,0.096616,0.961837,0.145763,0.970015,0.122532],[0.961837,0.145763,0.960274,0.121778,0.970015,0.122532],[0.976518,0.100727,0.970015,0.122532,0.960274,0.121778],[0.987335,0.096616,0.970015,0.122532,0.976518,0.100727],[0.974294,0.022063,0.987335,0.096616,0.976518,0.100727],[0.033023,0.404367,0.045458,0.467292,0.050872,0.437314],[0.818700,0.497810,0.764790,0.467292,0.777225,0.404367],[0.818700,0.497810,0.811270,0.550866,0.764790,0.467292],[0.862262,0.522995,0.811270,0.550866,0.818700,0.497810],[0.862262,0.522995,0.818700,0.497810,0.837398,0.429692],[0.837398,0.429692,0.818700,0.497810,0.777225,0.404367],[0.837398,0.429692,0.777225,0.404367,0.856028,0.357342],[0.856028,0.357342,0.777225,0.404367,0.788180,0.328823],[0.787811,0.328823,0.776862,0.404367,0.727732,0.354461],[0.033023,0.404367,0.058947,0.421539,0.082153,0.354461],[0.033023,0.404367,0.050872,0.437314,0.058947,0.421539],[0.974294,0.022063,0.951982,0.038217,0.893336,0.004384],[0.951982,0.038217,0.974294,0.022063,0.971548,0.062125],[0.974294,0.022063,0.976518,0.100727,0.971548,0.062125],[0.971548,0.062125,0.976518,0.100727,0.967388,0.065474],[0.967388,0.065474,0.976518,0.100727,0.971637,0.101817],[0.976518,0.100727,0.960274,0.121778,0.971637,0.101817],[0.971637,0.101817,0.960274,0.121778,0.949307,0.113434],[0.971637,0.101817,0.949307,0.113434,0.967388,0.065474],[0.967388,0.065474,0.949307,0.113434,0.945662,0.081499],[0.945662,0.081499,0.949307,0.113434,0.914666,0.066192],[0.949307,0.113434,0.917720,0.115307,0.914666,0.066192],[0.917720,0.115307,0.884352,0.104650,0.914666,0.066192],[0.914666,0.066192,0.884352,0.104650,0.875328,0.072927],[0.884352,0.104650,0.849034,0.073406,0.875328,0.072927],[0.884352,0.104650,0.852579,0.103989,0.849034,0.073406],[0.884352,0.104650,0.873563,0.122648,0.852579,0.103989],[0.083907,0.420515,0.078793,0.457763,0.099845,0.455744],[0.083907,0.420515,0.099845,0.455744,0.118818,0.404238],[0.069348,0.408705,0.083907,0.420515,0.118818,0.404238],[0.857107,0.022615,0.861616,0.056137,0.849034,0.073406],[0.857107,0.022615,0.875164,0.037397,0.861616,0.056137],[0.857107,0.022615,0.893336,0.004384,0.875164,0.037397],[0.058947,0.421539,0.069348,0.408705,0.082153,0.354461],[0.069348,0.408705,0.118818,0.404238,0.082153,0.354461],[0.082153,0.354461,0.118818,0.404238,0.121744,0.358544],[0.082153,0.354461,0.121744,0.358544,0.082457,0.292313],[0.082457,0.292313,0.121744,0.358544,0.128664,0.284765],[0.787811,0.328823,0.727732,0.354461,0.727428,0.292313],[0.893336,0.004384,0.896197,0.024739,0.875164,0.037397],[0.927854,0.026498,0.896197,0.024739,0.893336,0.004384],[0.896197,0.024739,0.927854,0.026498,0.896028,0.030104],[0.896028,0.030104,0.927854,0.026498,0.925338,0.028543],[0.951982,0.038217,0.925338,0.028543,0.927854,0.026498],[0.951982,0.038217,0.948732,0.042365,0.925338,0.028543],[0.971548,0.062125,0.948732,0.042365,0.951982,0.038217],[0.948732,0.042365,0.971548,0.062125,0.967388,0.065474],[0.967388,0.065474,0.935523,0.058380,0.948732,0.042365],[0.967388,0.065474,0.945662,0.081499,0.935523,0.058380],[0.945662,0.081499,0.914666,0.066192,0.935523,0.058380],[0.914666,0.066192,0.903992,0.043822,0.935523,0.058380],[0.875328,0.072927,0.903992,0.043822,0.914666,0.066192],[0.903992,0.043822,0.875328,0.072927,0.877516,0.043075],[0.875328,0.072927,0.861616,0.056137,0.877516,0.043075],[0.875328,0.072927,0.849034,0.073406,0.861616,0.056137],[0.875164,0.037397,0.877516,0.043075,0.861616,0.056137],[0.896197,0.024739,0.877516,0.043075,0.875164,0.037397],[0.896197,0.024739,0.896028,0.030104,0.877516,0.043075],[0.903992,0.043822,0.877516,0.043075,0.896028,0.030104],[0.925338,0.028543,0.903992,0.043822,0.896028,0.030104],[0.948732,0.042365,0.903992,0.043822,0.925338,0.028543],[0.948732,0.042365,0.935523,0.058380,0.903992,0.043822],[0.951982,0.038217,0.927854,0.026498,0.893336,0.004384],[0.945389,0.398776,0.837398,0.429692,0.856028,0.357342],[0.945389,0.398776,0.929456,0.470354,0.837398,0.429692],[0.991255,0.425055,0.929456,0.470354,0.945389,0.398776],[0.991255,0.425055,0.970960,0.495458,0.929456,0.470354],[0.970960,0.495458,0.944711,0.565285,0.929456,0.470354],[0.929456,0.470354,0.944711,0.565285,0.903249,0.545102],[0.929456,0.470354,0.903249,0.545102,0.862262,0.522995],[0.929456,0.470354,0.862262,0.522995,0.837398,0.429692],[0.405126,0.789009,0.405127,0.751108,0.298160,0.771521],[1.943993,-109.732338,1.542073,-109.982864,1.456450,-109.901825],[2.649404,-98.925919,2.677207,-99.186661,2.388169,-98.776688],[0.842838,0.821201,0.837437,0.816913,0.836889,0.820755],[0.842838,0.821201,0.842760,0.816606,0.837437,0.816913],[0.842760,0.816606,0.842838,0.821201,0.850879,0.821718],[0.850879,0.821718,0.850172,0.816827,0.842760,0.816606],[0.851508,0.821790,0.851544,0.815460,0.850744,0.816359],[0.852638,0.821894,0.851544,0.815460,0.851508,0.821790],[0.852638,0.821894,0.852830,0.813929,0.851544,0.815460],[0.853937,0.821927,0.852830,0.813929,0.852638,0.821894],[0.860863,0.821768,0.852830,0.813929,0.853937,0.821927],[0.860863,0.821768,0.860973,0.815716,0.852830,0.813929],[0.860863,0.821768,0.866608,0.815107,0.860973,0.815716],[0.867317,0.821525,0.866608,0.815107,0.860863,0.821768],[0.867317,0.821525,0.872031,0.814995,0.866608,0.815107],[0.872213,0.821472,0.872031,0.814995,0.867317,0.821525],[0.889567,0.813619,0.872031,0.814995,0.872213,0.821472],[0.889567,0.813619,0.872480,0.805344,0.872031,0.814995],[0.889567,0.813619,0.888193,0.802809,0.872480,0.805344],[0.905086,0.811724,0.888193,0.802809,0.889567,0.813619],[0.905086,0.811724,0.901780,0.799450,0.888193,0.802809],[0.921865,0.810929,0.901780,0.799450,0.905086,0.811724],[0.921865,0.810929,0.919124,0.793570,0.901780,0.799450],[0.935857,0.814964,0.919124,0.793570,0.921865,0.810929],[0.939017,0.800078,0.919124,0.793570,0.935857,0.814964],[0.939017,0.800078,0.939545,0.786356,0.919124,0.793570],[0.950337,0.780653,0.939545,0.786356,0.939017,0.800078],[0.950337,0.780653,0.930718,0.775506,0.939545,0.786356],[0.938332,0.768904,0.930718,0.775506,0.950337,0.780653],[0.938332,0.768904,0.920052,0.763323,0.930718,0.775506],[0.923241,0.755291,0.920052,0.763323,0.938332,0.768904],[0.923241,0.755291,0.909130,0.759916,0.920052,0.763323],[0.907829,0.741042,0.909130,0.759916,0.923241,0.755291],[0.909130,0.759916,0.907829,0.741042,0.899586,0.763539],[0.899586,0.763539,0.907829,0.741042,0.889426,0.755563],[0.907829,0.741042,0.887664,0.738223,0.889426,0.755563],[0.895025,0.728535,0.887664,0.738223,0.907829,0.741042],[0.895025,0.728535,0.879729,0.732293,0.887664,0.738223],[0.895025,0.728535,0.883057,0.726770,0.879729,0.732293],[0.888495,0.714229,0.883057,0.726770,0.895025,0.728535],[0.888495,0.714229,0.881285,0.708042,0.883057,0.726770],[0.901318,0.912219,0.894843,0.902842,0.888649,0.917186],[0.901691,0.898306,0.894843,0.902842,0.901318,0.912219],[0.901691,0.898306,0.900746,0.886486,0.894843,0.902842],[0.911588,0.891889,0.900746,0.886486,0.901691,0.898306],[0.926547,0.883643,0.900746,0.886486,0.911588,0.891889],[0.926547,0.883643,0.919041,0.871544,0.900746,0.886486],[0.934242,0.862563,0.919041,0.871544,0.926547,0.883643],[0.934242,0.862563,0.910020,0.858104,0.919041,0.871544],[0.934242,0.862563,0.924464,0.850676,0.910020,0.858104],[0.934242,0.862563,0.949019,0.853518,0.924464,0.850676],[0.955912,0.865068,0.949019,0.853518,0.934242,0.862563],[0.961960,0.838999,0.949019,0.853518,0.955912,0.865068],[0.949019,0.853518,0.961960,0.838999,0.941225,0.840618],[0.961960,0.838999,0.959489,0.821136,0.941225,0.840618],[0.632098,0.537438,0.621712,0.519742,0.621712,0.537438],[0.632098,0.537438,0.632098,0.519742,0.621712,0.519742],[0.643476,0.537438,0.632098,0.519742,0.632098,0.537438],[0.643476,0.537438,0.643476,0.519742,0.632098,0.519742],[0.643476,0.537438,0.662016,0.519742,0.643476,0.519742],[0.662016,0.537438,0.662016,0.519742,0.643476,0.537438],[0.710575,0.519741,0.662016,0.519742,0.662016,0.537438],[0.710575,0.519741,0.662016,0.502397,0.662016,0.519742],[0.710574,0.502396,0.662016,0.502397,0.710575,0.519741],[0.710574,0.485161,0.662016,0.502397,0.710574,0.502396],[0.710574,0.485161,0.662016,0.485162,0.662016,0.502397],[0.710574,0.485161,0.662016,0.471244,0.662016,0.485162],[0.710574,0.471243,0.662016,0.471244,0.710574,0.485161],[0.710575,0.614243,0.662017,0.629288,0.710576,0.629287],[0.710575,0.614243,0.662017,0.614243,0.662017,0.629288],[0.710575,0.595127,0.662017,0.614243,0.710575,0.614243],[0.710575,0.595127,0.662017,0.595128,0.662017,0.614243],[0.710575,0.595127,0.662017,0.578798,0.662017,0.595128],[0.710575,0.595127,0.710575,0.578797,0.662017,0.578798],[0.759343,0.578797,0.710575,0.578797,0.710575,0.595127],[0.759343,0.578797,0.710575,0.557864,0.710575,0.578797],[0.759343,0.578797,0.759343,0.557864,0.710575,0.557864],[0.783904,0.578796,0.759343,0.557864,0.759343,0.578797],[0.783904,0.578796,0.783904,0.557863,0.759343,0.557864],[0.812735,0.557863,0.783904,0.557863,0.783904,0.578796],[0.812735,0.557863,0.783904,0.537436,0.783904,0.557863],[0.812735,0.557863,0.812734,0.537436,0.783904,0.537436],[0.812735,0.557863,0.827711,0.537436,0.812734,0.537436],[0.827711,0.557863,0.827711,0.537436,0.812735,0.557863],[0.842607,0.557863,0.827711,0.537436,0.827711,0.557863],[0.842607,0.557863,0.842607,0.537436,0.827711,0.537436],[0.842607,0.557863,0.886032,0.537435,0.842607,0.537436],[0.842607,0.557863,0.886033,0.557862,0.886032,0.537435],[0.886033,0.557862,0.842607,0.557863,0.886033,0.578795],[0.842607,0.578796,0.886033,0.578795,0.842607,0.557863],[0.886033,0.578795,0.842607,0.578796,0.842607,0.595126],[0.842607,0.578796,0.827711,0.578796,0.842607,0.595126],[0.842607,0.578796,0.842607,0.557863,0.827711,0.578796],[0.827711,0.578796,0.842607,0.557863,0.827711,0.557863],[0.827711,0.578796,0.827711,0.557863,0.812735,0.557863],[0.827711,0.578796,0.812735,0.557863,0.812735,0.578796],[0.812735,0.578796,0.812735,0.557863,0.783904,0.578796],[0.812735,0.578796,0.783904,0.578796,0.812735,0.595126],[0.812735,0.595126,0.783904,0.578796,0.783905,0.595127],[0.783904,0.578796,0.759344,0.595127,0.783905,0.595127],[0.783904,0.578796,0.759343,0.578797,0.759344,0.595127],[0.759344,0.595127,0.759343,0.578797,0.710575,0.595127],[0.759344,0.595127,0.710575,0.595127,0.759344,0.614242],[0.710575,0.595127,0.710575,0.614243,0.759344,0.614242],[0.759344,0.614242,0.710575,0.614243,0.710576,0.629287],[0.759344,0.614242,0.710576,0.629287,0.759344,0.629287],[0.759342,0.471242,0.710574,0.471243,0.710574,0.485161],[0.759342,0.471242,0.710574,0.485161,0.759343,0.485161],[0.759343,0.485161,0.710574,0.485161,0.759343,0.502395],[0.759343,0.502395,0.710574,0.485161,0.710574,0.502396],[0.759343,0.502395,0.710574,0.502396,0.710575,0.519741],[0.759343,0.519740,0.759343,0.502395,0.710575,0.519741],[0.759343,0.519740,0.783904,0.502395,0.759343,0.502395],[0.783904,0.519740,0.783904,0.502395,0.759343,0.519740],[0.812734,0.519740,0.783904,0.502395,0.783904,0.519740],[0.812734,0.519740,0.812734,0.502395,0.783904,0.502395],[0.812734,0.519740,0.827710,0.502395,0.812734,0.502395],[0.827711,0.519740,0.827710,0.502395,0.812734,0.519740],[0.827711,0.519740,0.842607,0.519739,0.827710,0.502395],[0.827711,0.537436,0.842607,0.519739,0.827711,0.519740],[0.842607,0.537436,0.842607,0.519739,0.827711,0.537436],[0.842607,0.537436,0.886032,0.537435,0.842607,0.519739],[0.842607,0.519739,0.886032,0.537435,0.886032,0.519739],[0.886032,0.537435,0.932329,0.519738,0.886032,0.519739],[0.886032,0.537435,0.932329,0.537435,0.932329,0.519738],[0.886032,0.537435,0.932329,0.557862,0.932329,0.537435],[0.886033,0.557862,0.932329,0.557862,0.886032,0.537435],[0.932329,0.557862,0.886033,0.557862,0.886033,0.578795],[0.932329,0.557862,0.886033,0.578795,0.932329,0.578795],[0.932329,0.578795,0.886033,0.578795,0.886033,0.595125],[0.886033,0.578795,0.842607,0.595126,0.886033,0.595125],[0.842607,0.595126,0.886033,0.614240,0.886033,0.595125],[0.886033,0.614240,0.842607,0.595126,0.842607,0.614241],[0.842607,0.595126,0.827711,0.614241,0.842607,0.614241],[0.842607,0.595126,0.827711,0.595126,0.827711,0.614241],[0.842607,0.595126,0.827711,0.578796,0.827711,0.595126],[0.827711,0.578796,0.812735,0.595126,0.827711,0.595126],[0.827711,0.578796,0.812735,0.578796,0.812735,0.595126],[0.827711,0.595126,0.812735,0.595126,0.812735,0.614241],[0.812735,0.614241,0.812735,0.595126,0.783905,0.614242],[0.812735,0.595126,0.783905,0.595127,0.783905,0.614242],[0.783905,0.595127,0.759344,0.595127,0.783905,0.614242],[0.759344,0.595127,0.759344,0.614242,0.783905,0.614242],[0.783905,0.614242,0.759344,0.614242,0.759344,0.629287],[0.783905,0.614242,0.759344,0.629287,0.783905,0.629286],[0.783903,0.471242,0.759342,0.471242,0.759343,0.485161],[0.783903,0.471242,0.759343,0.485161,0.783904,0.485161],[0.783904,0.485161,0.759343,0.485161,0.783904,0.502395],[0.783904,0.502395,0.759343,0.485161,0.759343,0.502395],[0.812734,0.485160,0.783904,0.485161,0.783904,0.502395],[0.812734,0.485160,0.783903,0.471242,0.783904,0.485161],[0.812734,0.471242,0.783903,0.471242,0.812734,0.485160],[0.812735,0.629286,0.783905,0.614242,0.783905,0.629286],[0.812735,0.614241,0.783905,0.614242,0.812735,0.629286],[0.812735,0.614241,0.812735,0.629286,0.827712,0.629286],[0.827710,0.471241,0.812734,0.471242,0.812734,0.485160],[0.827710,0.471241,0.812734,0.485160,0.827710,0.485160],[0.827710,0.502395,0.827710,0.485160,0.812734,0.485160],[0.827710,0.485160,0.827710,0.502395,0.842606,0.485160],[0.827710,0.502395,0.842606,0.502394,0.842606,0.485160],[0.827710,0.502395,0.842607,0.519739,0.842606,0.502394],[0.886032,0.502394,0.842606,0.502394,0.842607,0.519739],[0.842606,0.502394,0.886032,0.502394,0.842606,0.485160],[0.886032,0.502394,0.886032,0.485159,0.842606,0.485160],[0.886032,0.502394,0.932328,0.485159,0.886032,0.485159],[0.932329,0.502393,0.932328,0.485159,0.886032,0.502394],[0.993005,0.502393,0.932328,0.485159,0.932329,0.502393],[0.993005,0.502393,0.993005,0.485158,0.932328,0.485159],[0.932328,0.485159,0.993005,0.485158,0.993005,0.471240],[0.932328,0.471240,0.932328,0.485159,0.993005,0.471240],[0.886032,0.471241,0.932328,0.485159,0.932328,0.471240],[0.886032,0.471241,0.886032,0.485159,0.932328,0.485159],[0.842606,0.485160,0.886032,0.485159,0.886032,0.471241],[0.842606,0.471241,0.842606,0.485160,0.886032,0.471241],[0.827710,0.485160,0.842606,0.485160,0.842606,0.471241],[0.827710,0.471241,0.827710,0.485160,0.842606,0.471241],[0.842607,0.614241,0.827712,0.629286,0.842608,0.629286],[0.842607,0.614241,0.827711,0.614241,0.827712,0.629286],[0.827711,0.614241,0.812735,0.614241,0.827712,0.629286],[0.827711,0.614241,0.827711,0.595126,0.812735,0.614241],[0.842607,0.614241,0.842608,0.629286,0.886033,0.614240],[0.842608,0.629286,0.886033,0.629285,0.886033,0.614240],[0.886033,0.614240,0.886033,0.629285,0.932330,0.614240],[0.886033,0.629285,0.932330,0.629284,0.932330,0.614240],[0.932330,0.614240,0.932330,0.629284,0.993006,0.629284],[0.932330,0.614240,0.993006,0.629284,0.993006,0.614239],[0.932330,0.614240,0.993006,0.614239,0.993006,0.595124],[0.932329,0.595125,0.932330,0.614240,0.993006,0.595124],[0.886033,0.595125,0.932330,0.614240,0.932329,0.595125],[0.886033,0.595125,0.886033,0.614240,0.932330,0.614240],[0.932329,0.578795,0.886033,0.595125,0.932329,0.595125],[0.993006,0.578794,0.932329,0.578795,0.932329,0.595125],[0.932329,0.557862,0.932329,0.578795,0.993006,0.578794],[0.993006,0.557861,0.932329,0.557862,0.993006,0.578794],[0.932329,0.557862,0.993006,0.557861,0.932329,0.537435],[0.932329,0.537435,0.993006,0.557861,0.993005,0.537434],[0.932329,0.537435,0.993005,0.537434,0.932329,0.519738],[0.932329,0.519738,0.993005,0.537434,0.993005,0.519738],[0.993005,0.519738,0.932329,0.502393,0.932329,0.519738],[0.993005,0.519738,0.993005,0.502393,0.932329,0.502393],[0.932329,0.519738,0.932329,0.502393,0.886032,0.502394],[0.932329,0.519738,0.886032,0.502394,0.886032,0.519739],[0.886032,0.519739,0.886032,0.502394,0.842607,0.519739],[0.932329,0.595125,0.993006,0.595124,0.993006,0.578794],[0.827710,0.502395,0.812734,0.485160,0.812734,0.502395],[0.812734,0.485160,0.783904,0.502395,0.812734,0.502395],[0.827711,0.537436,0.827711,0.519740,0.812734,0.519740],[0.812734,0.519740,0.812734,0.537436,0.827711,0.537436],[0.812734,0.537436,0.812734,0.519740,0.783904,0.537436],[0.783904,0.537436,0.812734,0.519740,0.783904,0.519740],[0.783904,0.519740,0.759343,0.519740,0.783904,0.537436],[0.783904,0.537436,0.759343,0.519740,0.759343,0.537437],[0.759343,0.537437,0.759343,0.519740,0.710575,0.519741],[0.759343,0.537437,0.710575,0.519741,0.710575,0.537437],[0.710575,0.537437,0.710575,0.519741,0.662016,0.537438],[0.710575,0.537437,0.662016,0.537438,0.710575,0.557864],[0.710575,0.557864,0.662016,0.537438,0.662017,0.557865],[0.662016,0.537438,0.643476,0.557865,0.662017,0.557865],[0.662016,0.537438,0.643476,0.537438,0.643476,0.557865],[0.643476,0.557865,0.643476,0.537438,0.632098,0.537438],[0.643476,0.557865,0.632098,0.537438,0.632099,0.557865],[0.632098,0.537438,0.621712,0.537438,0.632099,0.557865],[0.621712,0.537438,0.621712,0.557865,0.632099,0.557865],[0.972508,0.858495,0.961960,0.838999,0.955912,0.865068],[0.972508,0.858495,0.955912,0.865068,0.962546,0.874274],[0.962546,0.874274,0.955912,0.865068,0.942201,0.873720],[0.955912,0.865068,0.934242,0.862563,0.942201,0.873720],[0.942201,0.873720,0.934242,0.862563,0.926547,0.883643],[0.942201,0.873720,0.926547,0.883643,0.934831,0.895825],[0.934831,0.895825,0.926547,0.883643,0.923149,0.904656],[0.926547,0.883643,0.911762,0.902840,0.923149,0.904656],[0.926547,0.883643,0.911588,0.891889,0.911762,0.902840],[0.911588,0.891889,0.901691,0.898306,0.911762,0.902840],[0.911762,0.902840,0.901691,0.898306,0.901318,0.912219],[0.914923,0.912188,0.911762,0.902840,0.901318,0.912219],[0.923149,0.904656,0.911762,0.902840,0.914923,0.912188],[0.923149,0.904656,0.914923,0.912188,0.926818,0.917507],[0.926818,0.917507,0.914923,0.912188,0.909238,0.918935],[0.914923,0.912188,0.901318,0.912219,0.909238,0.918935],[0.909238,0.918935,0.901318,0.912219,0.901133,0.932087],[0.901318,0.912219,0.893855,0.926005,0.901133,0.932087],[0.901318,0.912219,0.891278,0.918614,0.893855,0.926005],[0.891278,0.918614,0.885932,0.924023,0.893855,0.926005],[0.907151,0.724300,0.890900,0.712751,0.895025,0.728535],[0.907151,0.724300,0.898241,0.712030,0.890900,0.712751],[0.919415,0.716308,0.898241,0.712030,0.907151,0.724300],[0.919415,0.716308,0.905550,0.705412,0.898241,0.712030],[0.916489,0.702328,0.905550,0.705412,0.919415,0.716308],[0.916489,0.702328,0.910973,0.696289,0.905550,0.705412],[0.919804,0.928087,0.909238,0.918935,0.908500,0.937986],[0.926818,0.917507,0.909238,0.918935,0.919804,0.928087],[0.926818,0.917507,0.919804,0.928087,0.929717,0.934738],[0.929717,0.934738,0.919804,0.928087,0.923837,0.946539],[0.919804,0.928087,0.917206,0.943472,0.923837,0.946539],[0.919804,0.928087,0.913940,0.934624,0.917206,0.943472],[0.913940,0.934624,0.910506,0.941923,0.917206,0.943472],[0.928500,0.712904,0.917180,0.698658,0.919415,0.716308],[0.928500,0.712904,0.923339,0.696984,0.917180,0.698658],[0.938220,0.708910,0.923339,0.696984,0.928500,0.712904],[0.938220,0.708910,0.929000,0.693318,0.923339,0.696984],[0.945755,0.696034,0.929000,0.693318,0.938220,0.708910],[0.945755,0.696034,0.938477,0.686111,0.929000,0.693318],[0.938439,0.937715,0.929717,0.934738,0.930458,0.949724],[0.931634,0.926873,0.929717,0.934738,0.938439,0.937715],[0.926818,0.917507,0.929717,0.934738,0.931634,0.926873],[0.938510,0.919172,0.926818,0.917507,0.931634,0.926873],[0.944071,0.908053,0.926818,0.917507,0.938510,0.919172],[0.944071,0.908053,0.934831,0.895825,0.926818,0.917507],[0.950081,0.884168,0.934831,0.895825,0.944071,0.908053],[0.950081,0.884168,0.942201,0.873720,0.934831,0.895825],[0.962546,0.874274,0.942201,0.873720,0.950081,0.884168],[0.969822,0.885677,0.962546,0.874274,0.950081,0.884168],[0.972508,0.858495,0.962546,0.874274,0.969822,0.885677],[0.983376,0.875067,0.972508,0.858495,0.969822,0.885677],[0.632099,0.578798,0.621712,0.557865,0.621713,0.578798],[0.632099,0.578798,0.632099,0.557865,0.621712,0.557865],[0.643476,0.578798,0.632099,0.557865,0.632099,0.578798],[0.643476,0.578798,0.643476,0.557865,0.632099,0.557865],[0.662017,0.557865,0.643476,0.557865,0.643476,0.578798],[0.662017,0.578798,0.662017,0.557865,0.643476,0.578798],[0.710575,0.557864,0.662017,0.557865,0.662017,0.578798],[0.710575,0.578797,0.710575,0.557864,0.662017,0.578798],[0.662017,0.578798,0.643476,0.578798,0.643476,0.595128],[0.643476,0.595128,0.643476,0.578798,0.632099,0.578798],[0.643476,0.595128,0.632099,0.578798,0.632099,0.595128],[0.632099,0.578798,0.621713,0.578798,0.632099,0.595128],[0.632099,0.595128,0.621713,0.578798,0.621713,0.595128],[0.993702,0.885883,0.983376,0.875067,0.980695,0.898840],[0.983376,0.875067,0.969822,0.885677,0.980695,0.898840],[0.980695,0.898840,0.969822,0.885677,0.969288,0.908551],[0.969822,0.885677,0.958815,0.896223,0.969288,0.908551],[0.969822,0.885677,0.950081,0.884168,0.958815,0.896223],[0.958815,0.896223,0.950081,0.884168,0.944071,0.908053],[0.958815,0.896223,0.944071,0.908053,0.955134,0.918613],[0.955134,0.918613,0.944071,0.908053,0.938510,0.919172],[0.955134,0.918613,0.938510,0.919172,0.943241,0.929571],[0.943241,0.929571,0.938510,0.919172,0.931634,0.926873],[0.943241,0.929571,0.931634,0.926873,0.938439,0.937715],[0.945755,0.696034,0.941609,0.719764,0.953068,0.706233],[0.945755,0.696034,0.938220,0.708910,0.941609,0.719764],[0.938220,0.708910,0.928500,0.712904,0.941609,0.719764],[0.941609,0.719764,0.928500,0.712904,0.927623,0.728903],[0.928500,0.712904,0.919415,0.716308,0.927623,0.728903],[0.919415,0.716308,0.907151,0.724300,0.927623,0.728903],[0.927623,0.728903,0.907151,0.724300,0.907829,0.741042],[0.907829,0.741042,0.907151,0.724300,0.895025,0.728535],[0.923241,0.755291,0.927623,0.728903,0.907829,0.741042],[0.937469,0.744444,0.927623,0.728903,0.923241,0.755291],[0.941609,0.719764,0.927623,0.728903,0.937469,0.744444],[0.941609,0.719764,0.937469,0.744444,0.950210,0.730743],[0.950210,0.730743,0.937469,0.744444,0.960878,0.744263],[0.960878,0.744263,0.937469,0.744444,0.949657,0.757588],[0.949657,0.757588,0.937469,0.744444,0.938332,0.768904],[0.938332,0.768904,0.937469,0.744444,0.923241,0.755291],[0.950337,0.780653,0.949657,0.757588,0.938332,0.768904],[0.959730,0.768836,0.949657,0.757588,0.950337,0.780653],[0.969837,0.755380,0.949657,0.757588,0.959730,0.768836],[0.960878,0.744263,0.949657,0.757588,0.969837,0.755380],[0.984609,0.742216,0.960878,0.744263,0.969837,0.755380],[0.984609,0.742216,0.974715,0.730005,0.960878,0.744263],[0.974715,0.730005,0.950210,0.730743,0.960878,0.744263],[0.962396,0.714963,0.950210,0.730743,0.974715,0.730005],[0.962396,0.714963,0.941609,0.719764,0.950210,0.730743],[0.953068,0.706233,0.941609,0.719764,0.962396,0.714963],[0.969288,0.908551,0.958815,0.896223,0.955134,0.918613],[0.994849,0.757738,0.984609,0.742216,0.969837,0.755380],[0.994849,0.757738,0.969837,0.755380,0.984444,0.771321],[0.978415,0.783340,0.984444,0.771321,0.969837,0.755380],[0.621713,0.614243,0.621713,0.629288,0.632099,0.629288],[0.632098,0.471244,0.621712,0.471244,0.632098,0.485162],[0.632098,0.485162,0.621712,0.471244,0.621712,0.485162],[0.978415,0.783340,0.959730,0.768836,0.972000,0.794356],[0.978415,0.783340,0.969837,0.755380,0.959730,0.768836],[0.972000,0.794356,0.959730,0.768836,0.950337,0.780653],[0.972000,0.794356,0.950337,0.780653,0.963062,0.807175],[0.963062,0.807175,0.950337,0.780653,0.951660,0.803001],[0.951660,0.803001,0.950337,0.780653,0.939017,0.800078],[0.951660,0.803001,0.939017,0.800078,0.949215,0.819631],[0.949215,0.819631,0.939017,0.800078,0.935857,0.814964],[0.941225,0.840618,0.949215,0.819631,0.935857,0.814964],[0.941225,0.840618,0.959489,0.821136,0.949215,0.819631],[0.963062,0.807175,0.949215,0.819631,0.959489,0.821136],[0.963062,0.807175,0.951660,0.803001,0.949215,0.819631],[0.621712,0.502397,0.621712,0.519742,0.632098,0.519742],[0.632098,0.502397,0.621712,0.502397,0.632098,0.519742],[0.621712,0.485162,0.621712,0.502397,0.632098,0.502397],[0.632098,0.485162,0.621712,0.485162,0.632098,0.502397],[0.643475,0.502397,0.632098,0.485162,0.632098,0.502397],[0.643475,0.485162,0.632098,0.485162,0.643475,0.502397],[0.643475,0.485162,0.632098,0.471244,0.632098,0.485162],[0.643475,0.471244,0.632098,0.471244,0.643475,0.485162],[0.643477,0.629288,0.632099,0.614243,0.632099,0.629288],[0.643477,0.629288,0.643476,0.614243,0.632099,0.614243],[0.662017,0.614243,0.643476,0.614243,0.643477,0.629288],[0.662017,0.595128,0.643476,0.614243,0.662017,0.614243],[0.662017,0.595128,0.643476,0.595128,0.643476,0.614243],[0.662017,0.595128,0.662017,0.578798,0.643476,0.595128],[0.643476,0.595128,0.632099,0.595128,0.643476,0.614243],[0.632099,0.595128,0.632099,0.614243,0.643476,0.614243],[0.632099,0.595128,0.621713,0.595128,0.632099,0.614243],[0.621713,0.595128,0.621713,0.614243,0.632099,0.614243],[0.632099,0.614243,0.621713,0.614243,0.632099,0.629288],[0.662017,0.614243,0.643477,0.629288,0.662017,0.629288],[0.662016,0.471244,0.643475,0.471244,0.643475,0.485162],[0.662016,0.471244,0.643475,0.485162,0.662016,0.485162],[0.662016,0.485162,0.643475,0.485162,0.643475,0.502397],[0.662016,0.485162,0.643475,0.502397,0.662016,0.502397],[0.662016,0.502397,0.643475,0.502397,0.643476,0.519742],[0.643475,0.502397,0.632098,0.502397,0.643476,0.519742],[0.643476,0.519742,0.632098,0.502397,0.632098,0.519742],[0.662016,0.502397,0.643476,0.519742,0.662016,0.519742],[0.941225,0.840618,0.935857,0.814964,0.926981,0.834519],[0.926981,0.834519,0.935857,0.814964,0.921865,0.810929],[0.926981,0.834519,0.921865,0.810929,0.915046,0.830141],[0.915046,0.830141,0.921865,0.810929,0.905086,0.811724],[0.915046,0.830141,0.905086,0.811724,0.903282,0.826447],[0.903282,0.826447,0.905086,0.811724,0.889567,0.813619],[0.903282,0.826447,0.889567,0.813619,0.889440,0.822491],[0.889440,0.822491,0.889567,0.813619,0.872213,0.821472],[0.889684,0.831233,0.889440,0.822491,0.872213,0.821472],[0.899403,0.835113,0.889440,0.822491,0.889684,0.831233],[0.899403,0.835113,0.903282,0.826447,0.889440,0.822491],[0.915046,0.830141,0.903282,0.826447,0.899403,0.835113],[0.907238,0.839247,0.915046,0.830141,0.899403,0.835113],[0.926981,0.834519,0.915046,0.830141,0.907238,0.839247],[0.917457,0.844073,0.926981,0.834519,0.907238,0.839247],[0.941225,0.840618,0.926981,0.834519,0.917457,0.844073],[0.941225,0.840618,0.917457,0.844073,0.924464,0.850676],[0.924464,0.850676,0.917457,0.844073,0.906039,0.850866],[0.917457,0.844073,0.902890,0.844418,0.906039,0.850866],[0.917457,0.844073,0.907238,0.839247,0.902890,0.844418],[0.902890,0.844418,0.907238,0.839247,0.899403,0.835113],[0.899403,0.835113,0.890615,0.847683,0.902890,0.844418],[0.889684,0.831233,0.890615,0.847683,0.899403,0.835113],[0.890615,0.847683,0.889684,0.831233,0.887138,0.841490],[0.887138,0.841490,0.889684,0.831233,0.871924,0.836666],[0.889684,0.831233,0.871968,0.827681,0.871924,0.836666],[0.889684,0.831233,0.872213,0.821472,0.871968,0.827681],[0.871968,0.827681,0.872213,0.821472,0.867317,0.821525],[0.871968,0.827681,0.867317,0.821525,0.866428,0.827824],[0.866428,0.827824,0.867317,0.821525,0.860863,0.821768],[0.866428,0.827824,0.860863,0.821768,0.860639,0.827878],[0.860639,0.827878,0.860863,0.821768,0.852414,0.829999],[0.852414,0.829999,0.860863,0.821768,0.853937,0.821927],[0.852414,0.829999,0.853937,0.821927,0.852638,0.821894],[0.852414,0.829999,0.852638,0.821894,0.851279,0.828234],[0.851279,0.828234,0.852638,0.821894,0.851508,0.821790],[0.851279,0.828234,0.851508,0.821790,0.850420,0.827079],[0.849847,0.826490,0.850879,0.821718,0.842424,0.825772],[0.850879,0.821718,0.842838,0.821201,0.842424,0.825772],[0.842424,0.825772,0.842838,0.821201,0.837243,0.824586],[0.837243,0.824586,0.842838,0.821201,0.836889,0.820755],[0.836051,0.820692,0.837437,0.816913,0.836567,0.817654],[0.837437,0.816913,0.836249,0.816196,0.835453,0.817353],[0.842760,0.816606,0.836249,0.816196,0.837437,0.816913],[0.842534,0.815618,0.836249,0.816196,0.842760,0.816606],[0.850744,0.816359,0.851544,0.815460,0.842253,0.815189],[0.851544,0.815460,0.842046,0.813405,0.842253,0.815189],[0.852830,0.813929,0.842046,0.813405,0.851544,0.815460],[0.852830,0.813929,0.843028,0.809698,0.842046,0.813405],[0.852830,0.813929,0.849652,0.807217,0.843028,0.809698],[0.860973,0.815716,0.849652,0.807217,0.852830,0.813929],[0.861522,0.805831,0.849652,0.807217,0.860973,0.815716],[0.861522,0.805831,0.845010,0.803051,0.849652,0.807217],[0.861286,0.799470,0.845010,0.803051,0.861522,0.805831],[0.859931,0.793952,0.845010,0.803051,0.861286,0.799470],[0.859931,0.793952,0.843967,0.798301,0.845010,0.803051],[0.859931,0.793952,0.841280,0.793888,0.843967,0.798301],[0.857091,0.788781,0.841280,0.793888,0.859931,0.793952],[0.857091,0.788781,0.853559,0.782880,0.841280,0.793888],[0.860837,0.786523,0.853559,0.782880,0.857091,0.788781],[0.860837,0.786523,0.857180,0.780909,0.853559,0.782880],[0.857180,0.780909,0.860837,0.786523,0.864846,0.785976],[0.860837,0.786523,0.867825,0.791287,0.864846,0.785976],[0.860837,0.786523,0.864364,0.792562,0.867825,0.791287],[0.860837,0.786523,0.857091,0.788781,0.864364,0.792562],[0.857091,0.788781,0.859931,0.793952,0.864364,0.792562],[0.864364,0.792562,0.859931,0.793952,0.861286,0.799470],[0.865959,0.799463,0.864364,0.792562,0.861286,0.799470],[0.865959,0.799463,0.867825,0.791287,0.864364,0.792562],[0.865959,0.799463,0.869702,0.797383,0.867825,0.791287],[0.866499,0.806552,0.869702,0.797383,0.865959,0.799463],[0.872480,0.805344,0.869702,0.797383,0.866499,0.806552],[0.884714,0.793532,0.869702,0.797383,0.872480,0.805344],[0.881629,0.785521,0.869702,0.797383,0.884714,0.793532],[0.881629,0.785521,0.867825,0.791287,0.869702,0.797383],[0.881629,0.785521,0.864846,0.785976,0.867825,0.791287],[0.876243,0.776528,0.864846,0.785976,0.881629,0.785521],[0.876243,0.776528,0.861338,0.779019,0.864846,0.785976],[0.868306,0.772885,0.861338,0.779019,0.876243,0.776528],[0.868306,0.772885,0.876243,0.776528,0.875768,0.769115],[0.876243,0.776528,0.882294,0.764915,0.875768,0.769115],[0.886790,0.770748,0.882294,0.764915,0.876243,0.776528],[0.899586,0.763539,0.882294,0.764915,0.886790,0.770748],[0.899586,0.763539,0.889426,0.755563,0.882294,0.764915],[0.889426,0.755563,0.871093,0.759407,0.882294,0.764915],[0.889426,0.755563,0.875471,0.749216,0.871093,0.759407],[0.889426,0.755563,0.887664,0.738223,0.875471,0.749216],[0.887664,0.738223,0.873562,0.735841,0.875471,0.749216],[0.887664,0.738223,0.879729,0.732293,0.873562,0.735841],[0.879729,0.732293,0.853736,0.725079,0.873562,0.735841],[0.879729,0.732293,0.858020,0.718337,0.853736,0.725079],[0.879729,0.732293,0.861389,0.711310,0.858020,0.718337],[0.879729,0.732293,0.883057,0.726770,0.861389,0.711310],[0.883057,0.726770,0.863367,0.698350,0.861389,0.711310],[0.881285,0.708042,0.863367,0.698350,0.883057,0.726770],[0.888649,0.917186,0.883887,0.909029,0.868928,0.928510],[0.894843,0.902842,0.883887,0.909029,0.888649,0.917186],[0.894843,0.902842,0.887265,0.893836,0.883887,0.909029],[0.894843,0.902842,0.900746,0.886486,0.887265,0.893836],[0.900746,0.886486,0.890426,0.879990,0.887265,0.893836],[0.901235,0.874448,0.890426,0.879990,0.900746,0.886486],[0.901235,0.874448,0.890344,0.866549,0.890426,0.879990],[0.910020,0.858104,0.890344,0.866549,0.901235,0.874448],[0.910020,0.858104,0.890186,0.855677,0.890344,0.866549],[0.906039,0.850866,0.890186,0.855677,0.910020,0.858104],[0.902890,0.844418,0.890186,0.855677,0.906039,0.850866],[0.902890,0.844418,0.890615,0.847683,0.890186,0.855677],[0.890615,0.847683,0.871595,0.859328,0.890186,0.855677],[0.890615,0.847683,0.881625,0.852178,0.871595,0.859328],[0.868306,0.772885,0.875768,0.769115,0.868455,0.769755],[0.882294,0.764915,0.866051,0.766329,0.875768,0.769115],[0.882294,0.764915,0.871093,0.759407,0.866051,0.766329],[0.871093,0.759407,0.857998,0.764435,0.866051,0.766329],[0.871093,0.759407,0.862997,0.756287,0.857998,0.764435],[0.871093,0.759407,0.875471,0.749216,0.862997,0.756287],[0.865288,0.747730,0.862997,0.756287,0.875471,0.749216],[0.865288,0.747730,0.841825,0.749603,0.862997,0.756287],[0.865288,0.747730,0.844412,0.742710,0.841825,0.749603],[0.862803,0.735949,0.844412,0.742710,0.865288,0.747730],[0.862803,0.735949,0.842902,0.728978,0.844412,0.742710],[0.876478,0.893320,0.873698,0.883390,0.850496,0.897240],[0.881545,0.882065,0.873698,0.883390,0.876478,0.893320],[0.881545,0.882065,0.877745,0.870445,0.873698,0.883390],[0.881545,0.882065,0.890344,0.866549,0.877745,0.870445],[0.890426,0.879990,0.890344,0.866549,0.881545,0.882065],[0.890426,0.879990,0.881545,0.882065,0.887265,0.893836],[0.887265,0.893836,0.881545,0.882065,0.876478,0.893320],[0.869938,0.738732,0.862803,0.735949,0.865288,0.747730],[0.869938,0.738732,0.865288,0.747730,0.875471,0.749216],[0.887265,0.893836,0.875099,0.895087,0.878817,0.900782],[0.875099,0.895087,0.871558,0.896349,0.878817,0.900782],[0.878817,0.900782,0.871558,0.896349,0.859751,0.914190],[0.871558,0.896349,0.855237,0.901347,0.859751,0.914190],[0.859751,0.914190,0.855237,0.901347,0.856788,0.915817],[0.855237,0.901347,0.850359,0.906316,0.856788,0.915817],[0.858020,0.718337,0.849466,0.721805,0.853736,0.725079],[0.858020,0.718337,0.853005,0.715508,0.849466,0.721805],[0.858020,0.718337,0.856052,0.708739,0.853005,0.715508],[0.861389,0.711310,0.856052,0.708739,0.858020,0.718337],[0.860691,0.696299,0.856052,0.708739,0.861389,0.711310],[0.860691,0.696299,0.857300,0.695693,0.856052,0.708739],[0.861670,0.923252,0.862675,0.932200,0.866070,0.930611],[0.861670,0.923252,0.855694,0.926742,0.862675,0.932200],[0.854262,0.917865,0.855694,0.926742,0.861670,0.923252],[0.854262,0.917865,0.845071,0.932931,0.855694,0.926742],[0.854262,0.917865,0.837731,0.927953,0.845071,0.932931],[0.854262,0.917865,0.844280,0.908438,0.837731,0.927953],[0.854262,0.917865,0.850359,0.906316,0.844280,0.908438],[0.850359,0.906316,0.854262,0.917865,0.856788,0.915817],[0.856788,0.915817,0.854262,0.917865,0.861670,0.923252],[0.856788,0.915817,0.861670,0.923252,0.868683,0.918768],[0.868683,0.918768,0.861670,0.923252,0.866070,0.930611],[0.868928,0.928510,0.868683,0.918768,0.866070,0.930611],[0.883887,0.909029,0.868683,0.918768,0.868928,0.928510],[0.883887,0.909029,0.859751,0.914190,0.868683,0.918768],[0.878817,0.900782,0.859751,0.914190,0.883887,0.909029],[0.883887,0.909029,0.887265,0.893836,0.878817,0.900782],[0.868683,0.918768,0.859751,0.914190,0.856788,0.915817],[0.863367,0.698350,0.860691,0.696299,0.861389,0.711310],[0.849466,0.721805,0.853005,0.715508,0.844281,0.719325],[0.844281,0.719325,0.853005,0.715508,0.847602,0.712964],[0.853005,0.715508,0.856052,0.708739,0.847602,0.712964],[0.847602,0.712964,0.856052,0.708739,0.850809,0.706801],[0.857300,0.695693,0.850809,0.706801,0.856052,0.708739],[0.857300,0.695693,0.840307,0.686410,0.850809,0.706801],[0.862675,0.932200,0.845071,0.932931,0.845476,0.941532],[0.855694,0.926742,0.845071,0.932931,0.862675,0.932200],[0.845476,0.941532,0.845071,0.932931,0.842098,0.943719],[0.845071,0.932931,0.838800,0.936505,0.842098,0.943719],[0.835094,0.929884,0.838800,0.936505,0.845071,0.932931],[0.835094,0.929884,0.832058,0.931272,0.838800,0.936505],[0.827913,0.919442,0.832058,0.931272,0.835094,0.929884],[0.827913,0.919442,0.822642,0.921238,0.832058,0.931272],[0.825883,0.710228,0.829020,0.703745,0.820925,0.708203],[0.833049,0.705752,0.829020,0.703745,0.825883,0.710228],[0.832388,0.696804,0.829020,0.703745,0.833049,0.705752],[0.829020,0.703745,0.832388,0.696804,0.827349,0.695429],[0.827349,0.695429,0.832388,0.696804,0.833830,0.683623],[0.837423,0.684291,0.833830,0.683623,0.832388,0.696804],[0.838800,0.936505,0.838087,0.944957,0.842098,0.943719],[0.838800,0.936505,0.832857,0.939119,0.838087,0.944957],[0.832058,0.931272,0.832857,0.939119,0.838800,0.936505],[0.832058,0.931272,0.823346,0.934452,0.832857,0.939119],[0.832058,0.931272,0.816431,0.926176,0.823346,0.934452],[0.832058,0.931272,0.822642,0.921238,0.816431,0.926176],[0.820925,0.708203,0.816624,0.698198,0.813560,0.704289],[0.820925,0.708203,0.824800,0.702054,0.816624,0.698198],[0.820925,0.708203,0.829020,0.703745,0.824800,0.702054],[0.829020,0.703745,0.827349,0.695429,0.824800,0.702054],[0.824800,0.702054,0.827349,0.695429,0.816624,0.698198],[0.816624,0.698198,0.827349,0.695429,0.820364,0.692466],[0.833830,0.683623,0.820364,0.692466,0.827349,0.695429],[0.833830,0.683623,0.824221,0.682522,0.820364,0.692466],[0.828525,0.940804,0.829214,0.948836,0.838087,0.944957],[0.828525,0.940804,0.826871,0.941453,0.829214,0.948836],[0.823346,0.934452,0.826871,0.941453,0.828525,0.940804],[0.823346,0.934452,0.822882,0.936933,0.826871,0.941453],[0.823346,0.934452,0.813789,0.938775,0.822882,0.936933],[0.823346,0.934452,0.809149,0.932946,0.813789,0.938775],[0.823346,0.934452,0.816431,0.926176,0.809149,0.932946],[0.813560,0.704289,0.808374,0.693204,0.804827,0.697900],[0.813560,0.704289,0.816624,0.698198,0.808374,0.693204],[0.816624,0.698198,0.820364,0.692466,0.808374,0.693204],[0.820364,0.692466,0.811869,0.688601,0.808374,0.693204],[0.824221,0.682522,0.811869,0.688601,0.820364,0.692466],[0.824221,0.682522,0.813160,0.681483,0.811869,0.688601],[0.829214,0.948836,0.827037,0.947438,0.819020,0.952392],[0.826871,0.941453,0.827037,0.947438,0.829214,0.948836],[0.826871,0.941453,0.825233,0.942085,0.827037,0.947438],[0.822882,0.936933,0.825233,0.942085,0.826871,0.941453],[0.822882,0.936933,0.821760,0.938328,0.825233,0.942085],[0.822882,0.936933,0.814674,0.940323,0.821760,0.938328],[0.822882,0.936933,0.813789,0.938775,0.814674,0.940323],[0.807218,0.942817,0.814674,0.940323,0.813789,0.938775],[0.807218,0.942817,0.808517,0.943963,0.814674,0.940323],[0.807218,0.942817,0.806927,0.944559,0.808387,0.944506],[0.800807,0.691548,0.797904,0.687181,0.797597,0.688245],[0.803523,0.688625,0.797904,0.687181,0.800807,0.691548],[0.803523,0.688625,0.799938,0.683950,0.797904,0.687181],[0.803523,0.688625,0.803428,0.682458,0.799938,0.683950],[0.806460,0.685890,0.803428,0.682458,0.803523,0.688625],[0.806460,0.685890,0.804822,0.682179,0.803428,0.682458],[0.813160,0.681483,0.804822,0.682179,0.806460,0.685890],[0.819020,0.952392,0.818618,0.950512,0.811000,0.952955],[0.827037,0.947438,0.818618,0.950512,0.819020,0.952392],[0.824497,0.942362,0.818593,0.948963,0.824482,0.946839],[0.824497,0.942362,0.817482,0.945020,0.818593,0.948963],[0.824497,0.942362,0.815682,0.941352,0.817482,0.945020],[0.821450,0.939027,0.815682,0.941352,0.824497,0.942362],[0.808387,0.944506,0.809652,0.944551,0.815682,0.941352],[0.808021,0.945669,0.809652,0.944551,0.808387,0.944506],[0.809116,0.945430,0.808021,0.945669,0.809294,0.947889],[0.810847,0.949862,0.809294,0.947889,0.809862,0.950374],[0.811843,0.950199,0.809862,0.950374,0.810941,0.951000],[0.810941,0.951000,0.809862,0.950374,0.809762,0.951894],[0.806927,0.944559,0.808021,0.945669,0.808387,0.944506],[0.811000,0.952955,0.810941,0.951000,0.809762,0.951894],[0.818618,0.950512,0.811433,0.951328,0.811000,0.952955],[0.818751,0.950002,0.818593,0.948963,0.810941,0.951000],[0.824482,0.946839,0.818593,0.948963,0.818751,0.950002],[0.817482,0.945020,0.811843,0.950199,0.818593,0.948963],[0.817482,0.945020,0.810875,0.947334,0.811843,0.950199],[0.817482,0.945020,0.809652,0.944551,0.810875,0.947334],[0.815682,0.941352,0.809652,0.944551,0.817482,0.945020],[0.809652,0.944551,0.809116,0.945430,0.810103,0.947603],[0.825233,0.942085,0.825158,0.947143,0.827037,0.947438],[0.813160,0.681483,0.806460,0.685890,0.811869,0.688601],[0.811869,0.688601,0.806460,0.685890,0.803523,0.688625],[0.808374,0.693204,0.811869,0.688601,0.803523,0.688625],[0.808374,0.693204,0.803523,0.688625,0.804827,0.697900],[0.804827,0.697900,0.803523,0.688625,0.800807,0.691548],[0.809149,0.932946,0.806143,0.938743,0.813789,0.938775],[0.806143,0.938743,0.807218,0.942817,0.813789,0.938775],[0.823346,0.934452,0.828525,0.940804,0.832857,0.939119],[0.832857,0.939119,0.828525,0.940804,0.838087,0.944957],[0.837423,0.684291,0.832388,0.696804,0.837121,0.699481],[0.833049,0.705752,0.837121,0.699481,0.832388,0.696804],[0.847602,0.712964,0.837121,0.699481,0.833049,0.705752],[0.847602,0.712964,0.850809,0.706801,0.837121,0.699481],[0.850809,0.706801,0.840307,0.686410,0.837121,0.699481],[0.837121,0.699481,0.840307,0.686410,0.837423,0.684291],[0.847602,0.712964,0.833049,0.705752,0.830381,0.712833],[0.833049,0.705752,0.825883,0.710228,0.830381,0.712833],[0.831812,0.915519,0.827913,0.919442,0.835094,0.929884],[0.837731,0.927953,0.831812,0.915519,0.835094,0.929884],[0.844280,0.908438,0.831812,0.915519,0.837731,0.927953],[0.844281,0.719325,0.847602,0.712964,0.830381,0.712833],[0.837731,0.927953,0.835094,0.929884,0.845071,0.932931],[0.890344,0.866549,0.871595,0.859328,0.877745,0.870445],[0.890344,0.866549,0.890186,0.855677,0.871595,0.859328],[0.877745,0.870445,0.871595,0.859328,0.869919,0.874256],[0.869919,0.874256,0.871595,0.859328,0.864567,0.863734],[0.869919,0.874256,0.864567,0.863734,0.843603,0.868503],[0.857998,0.764435,0.841825,0.749603,0.839765,0.756971],[0.862997,0.756287,0.841825,0.749603,0.857998,0.764435],[0.841825,0.749603,0.836713,0.748084,0.839765,0.756971],[0.844412,0.742710,0.836713,0.748084,0.841825,0.749603],[0.844412,0.742710,0.838153,0.741453,0.836713,0.748084],[0.839836,0.727097,0.838153,0.741453,0.844412,0.742710],[0.838153,0.741453,0.839836,0.727097,0.832422,0.741203],[0.839836,0.727097,0.835985,0.728344,0.832422,0.741203],[0.844360,0.891359,0.842332,0.899610,0.846452,0.898687],[0.844360,0.891359,0.836743,0.892941,0.842332,0.899610],[0.837466,0.884382,0.836743,0.892941,0.844360,0.891359],[0.837466,0.884382,0.822861,0.888713,0.836743,0.892941],[0.837466,0.884382,0.820810,0.875955,0.822861,0.888713],[0.837466,0.884382,0.833077,0.871635,0.820810,0.875955],[0.833077,0.871635,0.837466,0.884382,0.841212,0.883494],[0.841212,0.883494,0.837466,0.884382,0.844360,0.891359],[0.844360,0.891359,0.844520,0.881936,0.841212,0.883494],[0.852934,0.888302,0.844520,0.881936,0.844360,0.891359],[0.873698,0.883390,0.844520,0.881936,0.852934,0.888302],[0.873698,0.883390,0.869919,0.874256,0.844520,0.881936],[0.873698,0.883390,0.877745,0.870445,0.869919,0.874256],[0.869919,0.874256,0.843603,0.868503,0.844520,0.881936],[0.844520,0.881936,0.843603,0.868503,0.841212,0.883494],[0.843603,0.868503,0.838832,0.871764,0.841212,0.883494],[0.839765,0.756971,0.836713,0.748084,0.834438,0.754981],[0.834438,0.754981,0.836713,0.748084,0.831421,0.747560],[0.836713,0.748084,0.838153,0.741453,0.831421,0.747560],[0.838153,0.741453,0.832422,0.741203,0.831421,0.747560],[0.831421,0.747560,0.832422,0.741203,0.817994,0.745499],[0.832422,0.741203,0.819439,0.739060,0.817994,0.745499],[0.835985,0.728344,0.819439,0.739060,0.832422,0.741203],[0.835985,0.728344,0.819117,0.726527,0.819439,0.739060],[0.842332,0.899610,0.827251,0.895006,0.825786,0.902330],[0.836743,0.892941,0.827251,0.895006,0.842332,0.899610],[0.836743,0.892941,0.822861,0.888713,0.827251,0.895006],[0.822861,0.888713,0.821229,0.896318,0.827251,0.895006],[0.822861,0.888713,0.819876,0.889700,0.821229,0.896318],[0.822861,0.888713,0.820810,0.875955,0.819876,0.889700],[0.820810,0.875955,0.816655,0.878698,0.819876,0.889700],[0.817099,0.752185,0.813208,0.744616,0.812143,0.751013],[0.817994,0.745499,0.813208,0.744616,0.817099,0.752185],[0.819439,0.739060,0.813208,0.744616,0.817994,0.745499],[0.819439,0.739060,0.814373,0.737705,0.813208,0.744616],[0.815823,0.725430,0.814373,0.737705,0.819439,0.739060],[0.809460,0.738080,0.814373,0.737705,0.815823,0.725430],[0.808275,0.744099,0.814373,0.737705,0.809460,0.738080],[0.813208,0.744616,0.814373,0.737705,0.808275,0.744099],[0.812143,0.751013,0.813208,0.744616,0.808275,0.744099],[0.812143,0.751013,0.808275,0.744099,0.807027,0.750297],[0.807027,0.750297,0.808275,0.744099,0.801012,0.742885],[0.808275,0.744099,0.809460,0.738080,0.801012,0.742885],[0.809460,0.738080,0.802334,0.736703,0.801012,0.742885],[0.812164,0.726545,0.802334,0.736703,0.809460,0.738080],[0.812164,0.726545,0.802828,0.726993,0.802334,0.736703],[0.818198,0.903660,0.810357,0.897185,0.809020,0.904152],[0.815568,0.896817,0.810357,0.897185,0.818198,0.903660],[0.815568,0.896817,0.807853,0.890740,0.810357,0.897185],[0.816544,0.889523,0.807853,0.890740,0.815568,0.896817],[0.804611,0.881521,0.807853,0.890740,0.816544,0.889523],[0.804611,0.881521,0.797163,0.885205,0.807853,0.890740],[0.799188,0.748629,0.792800,0.740509,0.790761,0.745392],[0.799188,0.748629,0.801012,0.742885,0.792800,0.740509],[0.807027,0.750297,0.801012,0.742885,0.799188,0.748629],[0.811473,0.878400,0.804611,0.881521,0.816544,0.889523],[0.811473,0.878400,0.816544,0.889523,0.819876,0.889700],[0.819876,0.889700,0.816544,0.889523,0.821229,0.896318],[0.816544,0.889523,0.815568,0.896817,0.821229,0.896318],[0.821229,0.896318,0.815568,0.896817,0.818198,0.903660],[0.821229,0.896318,0.818198,0.903660,0.822135,0.903309],[0.815823,0.725430,0.812164,0.726545,0.809460,0.738080],[0.821229,0.896318,0.822135,0.903309,0.825786,0.902330],[0.819439,0.739060,0.819117,0.726527,0.815823,0.725430],[0.827251,0.895006,0.821229,0.896318,0.825786,0.902330],[0.819876,0.889700,0.816655,0.878698,0.811473,0.878400],[0.801012,0.742885,0.802334,0.736703,0.792800,0.740509],[0.802334,0.736703,0.794681,0.735335,0.792800,0.740509],[0.802828,0.726993,0.794681,0.735335,0.802334,0.736703],[0.802828,0.726993,0.793465,0.728961,0.794681,0.735335],[0.809020,0.904152,0.807535,0.902397,0.799742,0.904684],[0.809020,0.904152,0.808882,0.897306,0.807535,0.902397],[0.810357,0.897185,0.808882,0.897306,0.809020,0.904152],[0.807853,0.890740,0.808882,0.897306,0.810357,0.897185],[0.808882,0.897306,0.807853,0.890740,0.806837,0.892700],[0.807853,0.890740,0.798933,0.891578,0.806837,0.892700],[0.797163,0.885205,0.798933,0.891578,0.807853,0.890740],[0.797163,0.885205,0.792640,0.889375,0.798933,0.891578],[0.790761,0.745392,0.787070,0.737642,0.785531,0.740767],[0.792800,0.740509,0.787070,0.737642,0.790761,0.745392],[0.794681,0.735335,0.787070,0.737642,0.792800,0.740509],[0.794681,0.735335,0.789023,0.734376,0.787070,0.737642],[0.793465,0.728961,0.789023,0.734376,0.794681,0.735335],[0.793465,0.728961,0.786730,0.731585,0.789023,0.734376],[0.799742,0.904684,0.799880,0.902954,0.793000,0.902998],[0.807535,0.902397,0.799880,0.902954,0.799742,0.904684],[0.807354,0.897397,0.806047,0.901652,0.807535,0.902397],[0.806837,0.892700,0.799243,0.893134,0.805545,0.893567],[0.806837,0.892700,0.798933,0.891578,0.799243,0.893134],[0.798933,0.891578,0.792478,0.893143,0.799243,0.893134],[0.792640,0.889375,0.792478,0.893143,0.798933,0.891578],[0.785531,0.740767,0.781941,0.737786,0.781930,0.738804],[0.787070,0.737642,0.781941,0.737786,0.785531,0.740767],[0.787070,0.737642,0.782803,0.734548,0.781941,0.737786],[0.785576,0.732204,0.782803,0.734548,0.787070,0.737642],[0.793451,0.901275,0.792714,0.900452,0.792232,0.901737],[0.794390,0.900824,0.792714,0.900452,0.793451,0.901275],[0.794030,0.895333,0.792994,0.894939,0.792381,0.895831],[0.799795,0.894281,0.792994,0.894939,0.794030,0.895333],[0.792478,0.893143,0.793253,0.894490,0.799243,0.893134],[0.792478,0.893143,0.791754,0.894566,0.792994,0.894939],[0.791754,0.894566,0.792381,0.895831,0.792994,0.894939],[0.805115,0.894073,0.799795,0.894281,0.806674,0.897434],[0.806674,0.897434,0.799795,0.894281,0.800261,0.897774],[0.799795,0.894281,0.794030,0.895333,0.800261,0.897774],[0.800261,0.897774,0.794030,0.895333,0.794268,0.897922],[0.800261,0.897774,0.794268,0.897922,0.794390,0.900824],[0.800261,0.897774,0.794390,0.900824,0.800220,0.901604],[0.806674,0.897434,0.800220,0.901604,0.805566,0.901216],[0.806674,0.897434,0.800261,0.897774,0.800220,0.901604],[0.793000,0.902998,0.793451,0.901275,0.792232,0.901737],[0.786730,0.731585,0.785576,0.732204,0.789023,0.734376],[0.789023,0.734376,0.785576,0.732204,0.787070,0.737642],[0.799880,0.902954,0.793794,0.901715,0.793000,0.902998],[0.806837,0.892700,0.805545,0.893567,0.807354,0.897397],[0.806837,0.892700,0.807354,0.897397,0.808882,0.897306],[0.808882,0.897306,0.807354,0.897397,0.807535,0.902397],[0.830067,0.754246,0.817994,0.745499,0.817099,0.752185],[0.830067,0.754246,0.831421,0.747560,0.817994,0.745499],[0.834438,0.754981,0.831421,0.747560,0.830067,0.754246],[0.841212,0.883494,0.838832,0.871764,0.833077,0.871635],[0.873698,0.883390,0.852934,0.888302,0.850496,0.897240],[0.852934,0.888302,0.844360,0.891359,0.850496,0.897240],[0.850496,0.897240,0.844360,0.891359,0.846452,0.898687],[0.844412,0.742710,0.842902,0.728978,0.839836,0.727097],[0.924464,0.850676,0.906039,0.850866,0.910020,0.858104],[0.919041,0.871544,0.910020,0.858104,0.901235,0.874448],[0.919041,0.871544,0.901235,0.874448,0.900746,0.886486],[0.899586,0.763539,0.886790,0.770748,0.888914,0.774996],[0.888914,0.774996,0.886790,0.770748,0.876243,0.776528],[0.876243,0.776528,0.881629,0.785521,0.888914,0.774996],[0.888914,0.774996,0.881629,0.785521,0.890604,0.779743],[0.890604,0.779743,0.881629,0.785521,0.884714,0.793532],[0.890604,0.779743,0.884714,0.793532,0.896127,0.790437],[0.901780,0.799450,0.896127,0.790437,0.884714,0.793532],[0.919124,0.793570,0.896127,0.790437,0.901780,0.799450],[0.919124,0.793570,0.911432,0.783638,0.896127,0.790437],[0.930718,0.775506,0.911432,0.783638,0.919124,0.793570],[0.930718,0.775506,0.920052,0.763323,0.911432,0.783638],[0.920052,0.763323,0.904746,0.769652,0.911432,0.783638],[0.920052,0.763323,0.909130,0.759916,0.904746,0.769652],[0.909130,0.759916,0.899586,0.763539,0.904746,0.769652],[0.904746,0.769652,0.899586,0.763539,0.888914,0.774996],[0.890604,0.779743,0.904746,0.769652,0.888914,0.774996],[0.911432,0.783638,0.904746,0.769652,0.890604,0.779743],[0.911432,0.783638,0.890604,0.779743,0.896127,0.790437],[0.939545,0.786356,0.930718,0.775506,0.919124,0.793570],[0.901780,0.799450,0.884714,0.793532,0.888193,0.802809],[0.888193,0.802809,0.884714,0.793532,0.872480,0.805344],[0.861338,0.779019,0.857180,0.780909,0.864846,0.785976],[0.871924,0.836666,0.866428,0.827824,0.866270,0.836016],[0.871968,0.827681,0.866428,0.827824,0.871924,0.836666],[0.866428,0.827824,0.860639,0.827878,0.866270,0.836016],[0.866270,0.836016,0.860639,0.827878,0.861248,0.838003],[0.861248,0.838003,0.860639,0.827878,0.848684,0.836989],[0.860639,0.827878,0.852414,0.829999,0.848684,0.836989],[0.852414,0.829999,0.842023,0.833111,0.848684,0.836989],[0.852414,0.829999,0.841732,0.829123,0.842023,0.833111],[0.852414,0.829999,0.851279,0.828234,0.841732,0.829123],[0.851279,0.828234,0.842032,0.827241,0.841732,0.829123],[0.851279,0.828234,0.850420,0.827079,0.842032,0.827241],[0.849847,0.826490,0.842424,0.825772,0.842213,0.826791],[0.842213,0.826791,0.842424,0.825772,0.836132,0.825063],[0.837243,0.824586,0.835344,0.823906,0.836132,0.825063],[0.836567,0.817654,0.835453,0.817353,0.835202,0.820640],[0.836453,0.823728,0.835202,0.820640,0.835344,0.823906],[0.827846,0.800835,0.828236,0.805569,0.828031,0.799571],[0.828031,0.799571,0.828236,0.805569,0.832936,0.803558],[0.828236,0.805569,0.832052,0.810154,0.832936,0.803558],[0.835804,0.813631,0.834918,0.815634,0.836249,0.816196],[0.836249,0.816196,0.834918,0.815634,0.835453,0.817353],[0.842253,0.815189,0.835804,0.813631,0.836618,0.815437],[0.842046,0.813405,0.835804,0.813631,0.842253,0.815189],[0.843028,0.809698,0.835804,0.813631,0.842046,0.813405],[0.843028,0.809698,0.836102,0.808430,0.835804,0.813631],[0.849652,0.807217,0.836102,0.808430,0.843028,0.809698],[0.849652,0.807217,0.845010,0.803051,0.836102,0.808430],[0.832936,0.803558,0.836102,0.808430,0.845010,0.803051],[0.832052,0.810154,0.836102,0.808430,0.832936,0.803558],[0.843967,0.798301,0.832936,0.803558,0.845010,0.803051],[0.841280,0.793888,0.832936,0.803558,0.843967,0.798301],[0.841280,0.793888,0.831817,0.797954,0.832936,0.803558],[0.841822,0.787387,0.831817,0.797954,0.841280,0.793888],[0.841822,0.787387,0.834859,0.791118,0.831817,0.797954],[0.842023,0.833111,0.835689,0.827332,0.835289,0.831314],[0.842023,0.833111,0.841732,0.829123,0.835689,0.827332],[0.842032,0.827241,0.835689,0.827332,0.841732,0.829123],[0.842032,0.827241,0.836571,0.825812,0.835689,0.827332],[0.836132,0.825063,0.834792,0.825536,0.835689,0.827332],[0.836132,0.825063,0.835344,0.823906,0.834792,0.825536],[0.828031,0.799571,0.832936,0.803558,0.831817,0.797954],[0.853559,0.782880,0.841822,0.787387,0.841280,0.793888],[0.872480,0.805344,0.866499,0.806552,0.866608,0.815107],[0.866499,0.806552,0.860973,0.815716,0.866608,0.815107],[0.866499,0.806552,0.861522,0.805831,0.860973,0.815716],[0.866499,0.806552,0.865959,0.799463,0.861522,0.805831],[0.861522,0.805831,0.865959,0.799463,0.861286,0.799470],[0.872480,0.805344,0.866608,0.815107,0.872031,0.814995],[0.850172,0.816827,0.842534,0.815618,0.842760,0.816606],[0.949019,0.853518,0.941225,0.840618,0.924464,0.850676],[0.934831,0.895825,0.923149,0.904656,0.926818,0.917507],[0.929717,0.934738,0.923837,0.946539,0.930458,0.949724],[0.930458,0.949724,0.923837,0.946539,0.920690,0.954255],[0.917206,0.943472,0.920690,0.954255,0.923837,0.946539],[0.917206,0.943472,0.913233,0.955041,0.920690,0.954255],[0.917206,0.943472,0.905398,0.950349,0.913233,0.955041],[0.917206,0.943472,0.910506,0.941923,0.905398,0.950349],[0.917180,0.698658,0.918029,0.684746,0.912345,0.687196],[0.923339,0.696984,0.918029,0.684746,0.917180,0.698658],[0.923339,0.696984,0.929000,0.693318,0.918029,0.684746],[0.929000,0.693318,0.923716,0.682832,0.918029,0.684746],[0.938477,0.686111,0.923716,0.682832,0.929000,0.693318],[0.938477,0.686111,0.931313,0.675518,0.923716,0.682832],[0.930458,0.949724,0.920690,0.954255,0.925257,0.960146],[0.925257,0.960146,0.920690,0.954255,0.918597,0.959562],[0.913233,0.955041,0.918597,0.959562,0.920690,0.954255],[0.918597,0.959562,0.913233,0.955041,0.912685,0.957225],[0.913233,0.955041,0.904180,0.953906,0.912685,0.957225],[0.905398,0.950349,0.904180,0.953906,0.913233,0.955041],[0.917003,0.681641,0.911300,0.683210,0.912345,0.687196],[0.917003,0.681641,0.915684,0.678216,0.911300,0.683210],[0.917003,0.681641,0.922806,0.679095,0.915684,0.678216],[0.922806,0.679095,0.917003,0.681641,0.923716,0.682832],[0.923716,0.682832,0.917003,0.681641,0.918029,0.684746],[0.912345,0.687196,0.918029,0.684746,0.917003,0.681641],[0.931313,0.675518,0.922806,0.679095,0.923716,0.682832],[0.931280,0.674142,0.922806,0.679095,0.931313,0.675518],[0.920893,0.675674,0.922806,0.679095,0.931280,0.674142],[0.915684,0.678216,0.922806,0.679095,0.920893,0.675674],[0.915684,0.678216,0.920893,0.675674,0.913150,0.669042],[0.920893,0.675674,0.918868,0.667974,0.913150,0.669042],[0.930082,0.672961,0.918868,0.667974,0.920893,0.675674],[0.930082,0.672961,0.926590,0.663411,0.918868,0.667974],[0.923447,0.964302,0.916489,0.964453,0.919148,0.973698],[0.923447,0.964302,0.918597,0.959562,0.916489,0.964453],[0.918597,0.959562,0.923447,0.964302,0.924623,0.962190],[0.931280,0.674142,0.930082,0.672961,0.920893,0.675674],[0.925257,0.960146,0.918597,0.959562,0.924623,0.962190],[0.911515,0.959438,0.916489,0.964453,0.918597,0.959562],[0.911515,0.959438,0.908151,0.969275,0.916489,0.964453],[0.911515,0.959438,0.900384,0.965027,0.908151,0.969275],[0.911515,0.959438,0.902372,0.957404,0.900384,0.965027],[0.902372,0.957404,0.911515,0.959438,0.912685,0.957225],[0.912685,0.957225,0.911515,0.959438,0.918597,0.959562],[0.912685,0.957225,0.904180,0.953906,0.902372,0.957404],[0.911300,0.683210,0.915684,0.678216,0.909721,0.679120],[0.915684,0.678216,0.913150,0.669042,0.909721,0.679120],[0.913150,0.669042,0.907434,0.670830,0.909721,0.679120],[0.913150,0.669042,0.912539,0.665696,0.907434,0.670830],[0.918868,0.667974,0.912539,0.665696,0.913150,0.669042],[0.918868,0.667974,0.918669,0.664277,0.912539,0.665696],[0.927045,0.661548,0.918669,0.664277,0.918868,0.667974],[0.916995,0.660956,0.918669,0.664277,0.927045,0.661548],[0.911775,0.662415,0.918669,0.664277,0.916995,0.660956],[0.912539,0.665696,0.918669,0.664277,0.911775,0.662415],[0.906762,0.666852,0.912539,0.665696,0.911775,0.662415],[0.912539,0.665696,0.906762,0.666852,0.907434,0.670830],[0.900384,0.965027,0.900258,0.968706,0.907885,0.971326],[0.907885,0.971326,0.900258,0.968706,0.897689,0.972181],[0.906762,0.666852,0.911775,0.662415,0.906274,0.662826],[0.906274,0.662826,0.911775,0.662415,0.910817,0.657051],[0.911775,0.662415,0.916995,0.660956,0.910817,0.657051],[0.910817,0.657051,0.916995,0.660956,0.915912,0.656265],[0.925712,0.659949,0.915912,0.656265,0.916995,0.660956],[0.925712,0.659949,0.922350,0.653450,0.915912,0.656265],[0.917288,0.978155,0.909499,0.980688,0.913811,0.984753],[0.911103,0.977597,0.909499,0.980688,0.917288,0.978155],[0.903591,0.979555,0.909499,0.980688,0.911103,0.977597],[0.903591,0.979555,0.908822,0.982025,0.909499,0.980688],[0.903591,0.979555,0.904518,0.981124,0.908822,0.982025],[0.903591,0.979555,0.900407,0.985914,0.904518,0.981124],[0.903591,0.979555,0.896705,0.984479,0.900407,0.985914],[0.896779,0.977331,0.896705,0.984479,0.903591,0.979555],[0.905629,0.657419,0.910284,0.650362,0.905424,0.649953],[0.905629,0.657419,0.910817,0.657051,0.910284,0.650362],[0.906274,0.662826,0.910817,0.657051,0.905629,0.657419],[0.896779,0.977331,0.906783,0.973109,0.897689,0.972181],[0.906783,0.973109,0.896779,0.977331,0.903591,0.979555],[0.906783,0.973109,0.903591,0.979555,0.911103,0.977597],[0.906783,0.973109,0.911103,0.977597,0.913143,0.973436],[0.913143,0.973436,0.911103,0.977597,0.917288,0.978155],[0.913143,0.973436,0.917288,0.978155,0.918547,0.975948],[0.927045,0.661548,0.925712,0.659949,0.916995,0.660956],[0.919148,0.973698,0.913143,0.973436,0.918547,0.975948],[0.919148,0.973698,0.914799,0.968856,0.913143,0.973436],[0.919148,0.973698,0.916489,0.964453,0.914799,0.968856],[0.916489,0.964453,0.908151,0.969275,0.914799,0.968856],[0.908151,0.969275,0.913143,0.973436,0.914799,0.968856],[0.908151,0.969275,0.907885,0.971326,0.913143,0.973436],[0.908151,0.969275,0.900384,0.965027,0.907885,0.971326],[0.907885,0.971326,0.906783,0.973109,0.913143,0.973436],[0.897689,0.972181,0.906783,0.973109,0.907885,0.971326],[0.918868,0.667974,0.926590,0.663411,0.927045,0.661548],[0.910817,0.657051,0.915912,0.656265,0.910284,0.650362],[0.915912,0.656265,0.915117,0.649648,0.910284,0.650362],[0.922350,0.653450,0.915117,0.649648,0.915912,0.656265],[0.922350,0.653450,0.918381,0.647319,0.915117,0.649648],[0.913811,0.984753,0.911978,0.985046,0.910415,0.991315],[0.913811,0.984753,0.908822,0.982025,0.911978,0.985046],[0.913811,0.984753,0.909499,0.980688,0.908822,0.982025],[0.911978,0.985046,0.908822,0.982025,0.908275,0.983072],[0.904518,0.981124,0.908275,0.983072,0.908822,0.982025],[0.904518,0.981124,0.904594,0.982420,0.908275,0.983072],[0.904518,0.981124,0.901648,0.986399,0.904594,0.982420],[0.904518,0.981124,0.900407,0.985914,0.901648,0.986399],[0.900407,0.985914,0.898888,0.990980,0.901648,0.986399],[0.896248,0.989324,0.898888,0.990980,0.900407,0.985914],[0.910303,0.644952,0.908153,0.641205,0.907228,0.644910],[0.910303,0.644952,0.911261,0.640791,0.908153,0.641205],[0.910303,0.644952,0.914007,0.642251,0.911261,0.640791],[0.913300,0.645453,0.914007,0.642251,0.910303,0.644952],[0.906431,0.995163,0.905394,0.994093,0.905202,0.995138],[0.908045,0.983508,0.908411,0.989642,0.910315,0.985879],[0.908045,0.983508,0.905656,0.987936,0.908411,0.989642],[0.908045,0.983508,0.902714,0.986598,0.905656,0.987936],[0.904779,0.982948,0.902714,0.986598,0.908045,0.983508],[0.898888,0.990980,0.900177,0.991030,0.901648,0.986399],[0.899608,0.992129,0.900405,0.991448,0.898888,0.990980],[0.902714,0.986598,0.901122,0.990940,0.905656,0.987936],[0.905656,0.987936,0.901122,0.990940,0.903314,0.992062],[0.905656,0.987936,0.903314,0.992062,0.905464,0.993249],[0.905656,0.987936,0.905464,0.993249,0.908411,0.989642],[0.909252,0.990465,0.905877,0.994050,0.906431,0.995163],[0.910415,0.991315,0.909252,0.990465,0.906431,0.995163],[0.911978,0.985046,0.909252,0.990465,0.910415,0.991315],[0.911978,0.985046,0.908275,0.983072,0.910821,0.985754],[0.918381,0.647319,0.914827,0.642988,0.913300,0.645453],[0.918381,0.647319,0.913300,0.645453,0.915117,0.649648],[0.915117,0.649648,0.913300,0.645453,0.910303,0.644952],[0.910284,0.650362,0.915117,0.649648,0.910303,0.644952],[0.905424,0.649953,0.910284,0.650362,0.910303,0.644952],[0.905424,0.649953,0.910303,0.644952,0.907228,0.644910],[0.896248,0.989324,0.900407,0.985914,0.896705,0.984479],[0.909238,0.918935,0.901133,0.932087,0.908500,0.937986],[0.908500,0.937986,0.901133,0.932087,0.894918,0.953283],[0.901133,0.932087,0.891594,0.944624,0.894918,0.953283],[0.901133,0.932087,0.882337,0.943564,0.891594,0.944624],[0.893855,0.926005,0.882337,0.943564,0.901133,0.932087],[0.893855,0.926005,0.873689,0.935727,0.882337,0.943564],[0.893855,0.926005,0.885932,0.924023,0.873689,0.935727],[0.890900,0.712751,0.888022,0.695748,0.882654,0.701259],[0.898241,0.712030,0.888022,0.695748,0.890900,0.712751],[0.898241,0.712030,0.905550,0.705412,0.888022,0.695748],[0.905550,0.705412,0.894149,0.691952,0.888022,0.695748],[0.910973,0.696289,0.894149,0.691952,0.905550,0.705412],[0.910973,0.696289,0.900939,0.682624,0.894149,0.691952],[0.900939,0.682624,0.900274,0.679986,0.894149,0.691952],[0.893571,0.955518,0.894918,0.953283,0.887330,0.950509],[0.894918,0.953283,0.891594,0.944624,0.887330,0.950509],[0.882337,0.943564,0.887330,0.950509,0.891594,0.944624],[0.887330,0.950509,0.882337,0.943564,0.881188,0.945940],[0.881188,0.945940,0.882337,0.943564,0.873689,0.935727],[0.881188,0.945940,0.873689,0.935727,0.871629,0.938420],[0.880543,0.696284,0.882654,0.701259,0.885779,0.692494],[0.882654,0.701259,0.888022,0.695748,0.885779,0.692494],[0.885779,0.692494,0.888022,0.695748,0.894149,0.691952],[0.885779,0.692494,0.894149,0.691952,0.891293,0.688038],[0.894149,0.691952,0.900274,0.679986,0.891293,0.688038],[0.900274,0.679986,0.888428,0.684737,0.891293,0.688038],[0.900274,0.679986,0.897824,0.678070,0.888428,0.684737],[0.887330,0.950509,0.891463,0.957802,0.893571,0.955518],[0.887330,0.950509,0.883335,0.955365,0.891463,0.957802],[0.879151,0.947747,0.883335,0.955365,0.887330,0.950509],[0.879151,0.947747,0.869177,0.960638,0.883335,0.955365],[0.879151,0.947747,0.860795,0.951747,0.869177,0.960638],[0.879151,0.947747,0.868009,0.941521,0.860795,0.951747],[0.868009,0.941521,0.879151,0.947747,0.881188,0.945940],[0.881188,0.945940,0.879151,0.947747,0.887330,0.950509],[0.868009,0.941521,0.881188,0.945940,0.871629,0.938420],[0.883266,0.689523,0.876969,0.693319,0.880543,0.696284],[0.876969,0.693319,0.883266,0.689523,0.875063,0.678587],[0.883266,0.689523,0.888428,0.684737,0.875063,0.678587],[0.883266,0.689523,0.891293,0.688038,0.888428,0.684737],[0.891293,0.688038,0.883266,0.689523,0.885779,0.692494],[0.883266,0.689523,0.880543,0.696284,0.885779,0.692494],[0.888428,0.684737,0.880466,0.675051,0.875063,0.678587],[0.897824,0.678070,0.880466,0.675051,0.888428,0.684737],[0.897824,0.678070,0.888058,0.665812,0.880466,0.675051],[0.891463,0.957802,0.877424,0.962590,0.880783,0.970039],[0.883335,0.955365,0.877424,0.962590,0.891463,0.957802],[0.883335,0.955365,0.869177,0.960638,0.877424,0.962590],[0.869177,0.960638,0.873548,0.967378,0.877424,0.962590],[0.869177,0.960638,0.868061,0.962939,0.873548,0.967378],[0.869177,0.960638,0.860795,0.951747,0.868061,0.962939],[0.860795,0.951747,0.859336,0.956488,0.868061,0.962939],[0.869986,0.682762,0.872277,0.674950,0.867065,0.678611],[0.875063,0.678587,0.872277,0.674950,0.869986,0.682762],[0.880466,0.675051,0.872277,0.674950,0.875063,0.678587],[0.872277,0.674950,0.880466,0.675051,0.877336,0.670805],[0.887412,0.663230,0.877336,0.670805,0.880466,0.675051],[0.874551,0.667255,0.877336,0.670805,0.887412,0.663230],[0.869507,0.671370,0.877336,0.670805,0.874551,0.667255],[0.872277,0.674950,0.877336,0.670805,0.869507,0.671370],[0.867065,0.678611,0.872277,0.674950,0.869507,0.671370],[0.867065,0.678611,0.869507,0.671370,0.863489,0.675162],[0.863489,0.675162,0.869507,0.671370,0.865546,0.665722],[0.869507,0.671370,0.874551,0.667255,0.865546,0.665722],[0.865546,0.665722,0.874551,0.667255,0.871514,0.661989],[0.884877,0.661627,0.871514,0.661989,0.874551,0.667255],[0.884877,0.661627,0.878088,0.655072,0.871514,0.661989],[0.876825,0.974729,0.866278,0.975227,0.870504,0.981862],[0.869803,0.971428,0.866278,0.975227,0.876825,0.974729],[0.859518,0.971241,0.866278,0.975227,0.869803,0.971428],[0.859518,0.971241,0.865254,0.976311,0.866278,0.975227],[0.859518,0.971241,0.860101,0.973480,0.865254,0.976311],[0.859518,0.971241,0.852956,0.977610,0.860101,0.973480],[0.859518,0.971241,0.847424,0.973862,0.852956,0.977610],[0.859518,0.971241,0.851988,0.965579,0.847424,0.973862],[0.865778,0.964662,0.851988,0.965579,0.859518,0.971241],[0.865778,0.964662,0.855764,0.959947,0.851988,0.965579],[0.855764,0.959947,0.865778,0.964662,0.868061,0.962939],[0.868061,0.962939,0.865778,0.964662,0.873548,0.967378],[0.865778,0.964662,0.869803,0.971428,0.873548,0.967378],[0.865778,0.964662,0.859518,0.971241,0.869803,0.971428],[0.873548,0.967378,0.869803,0.971428,0.876825,0.974729],[0.873548,0.967378,0.876825,0.974729,0.878961,0.972287],[0.887412,0.663230,0.884877,0.661627,0.874551,0.667255],[0.880783,0.970039,0.873548,0.967378,0.878961,0.972287],[0.880783,0.970039,0.877424,0.962590,0.873548,0.967378],[0.880466,0.675051,0.888058,0.665812,0.887412,0.663230],[0.868061,0.962939,0.859336,0.956488,0.855764,0.959947],[0.863489,0.675162,0.865546,0.665722,0.859597,0.669289],[0.859597,0.669289,0.865546,0.665722,0.861023,0.658280],[0.865546,0.665722,0.871514,0.661989,0.861023,0.658280],[0.871514,0.661989,0.866233,0.655041,0.861023,0.658280],[0.878088,0.655072,0.866233,0.655041,0.871514,0.661989],[0.878088,0.655072,0.869986,0.649729,0.866233,0.655041],[0.870504,0.981862,0.868089,0.981428,0.863692,0.988628],[0.870504,0.981862,0.865254,0.976311,0.868089,0.981428],[0.866278,0.975227,0.865254,0.976311,0.870504,0.981862],[0.868089,0.981428,0.865254,0.976311,0.864112,0.977424],[0.860101,0.973480,0.864112,0.977424,0.865254,0.976311],[0.860101,0.973480,0.859679,0.975071,0.864112,0.977424],[0.860101,0.973480,0.854339,0.978708,0.859679,0.975071],[0.860101,0.973480,0.852956,0.977610,0.854339,0.978708],[0.852956,0.977610,0.848975,0.983158,0.854339,0.978708],[0.846388,0.979796,0.848975,0.983158,0.852956,0.977610],[0.854541,0.653634,0.853664,0.648611,0.852922,0.649447],[0.858676,0.652244,0.853664,0.648611,0.854541,0.653634],[0.858676,0.652244,0.857362,0.646339,0.853664,0.648611],[0.858676,0.652244,0.861682,0.646449,0.857362,0.646339],[0.862801,0.650799,0.861682,0.646449,0.858676,0.652244],[0.862801,0.650799,0.863096,0.646815,0.861682,0.646449],[0.869986,0.649729,0.863096,0.646815,0.862801,0.650799],[0.863692,0.988628,0.862579,0.987064,0.857244,0.991812],[0.868089,0.981428,0.862579,0.987064,0.863692,0.988628],[0.848975,0.983158,0.850614,0.983759,0.854339,0.978708],[0.848975,0.983158,0.849462,0.984896,0.850744,0.984355],[0.849462,0.984896,0.850870,0.985507,0.850744,0.984355],[0.856790,0.989013,0.855204,0.989885,0.856380,0.990036],[0.856380,0.990036,0.855204,0.989885,0.855722,0.991281],[0.857244,0.991812,0.856380,0.990036,0.855722,0.991281],[0.862416,0.986578,0.861832,0.985707,0.856380,0.990036],[0.865650,0.981800,0.861832,0.985707,0.862416,0.986578],[0.863634,0.977871,0.861832,0.985707,0.865650,0.981800],[0.863634,0.977871,0.858908,0.982358,0.861832,0.985707],[0.863634,0.977871,0.855640,0.979352,0.858908,0.982358],[0.859706,0.975763,0.855640,0.979352,0.863634,0.977871],[0.855640,0.979352,0.850744,0.984355,0.851874,0.984016],[0.851874,0.984016,0.850744,0.984355,0.850870,0.985507],[0.851771,0.984973,0.850870,0.985507,0.853180,0.987561],[0.858908,0.982358,0.854353,0.986505,0.856790,0.989013],[0.858908,0.982358,0.851874,0.984016,0.854353,0.986505],[0.855640,0.979352,0.851874,0.984016,0.858908,0.982358],[0.858908,0.982358,0.856790,0.989013,0.861832,0.985707],[0.862579,0.987064,0.857001,0.990164,0.857244,0.991812],[0.868089,0.981428,0.864112,0.977424,0.866340,0.981854],[0.869986,0.649729,0.862801,0.650799,0.866233,0.655041],[0.858676,0.652244,0.866233,0.655041,0.862801,0.650799],[0.861023,0.658280,0.866233,0.655041,0.858676,0.652244],[0.855109,0.660393,0.861023,0.658280,0.858676,0.652244],[0.859597,0.669289,0.861023,0.658280,0.855109,0.660393],[0.855109,0.660393,0.858676,0.652244,0.854541,0.653634],[0.847424,0.973862,0.846388,0.979796,0.852956,0.977610],[0.876969,0.693319,0.875063,0.678587,0.869986,0.682762],[0.759343,0.537437,0.710575,0.537437,0.710575,0.557864],[0.759343,0.557864,0.759343,0.537437,0.710575,0.557864],[0.783904,0.537436,0.759343,0.537437,0.759343,0.557864],[0.783904,0.557863,0.783904,0.537436,0.759343,0.557864],[-8.460990,-59.379379,-8.206886,-59.027504,-8.177965,-59.097862],[8.822780,-59.157089,8.622465,-58.762329,8.876925,-59.113945],[13.984315,-32.484772,13.545693,-32.495609,13.557876,-32.427456],[-13.842990,-34.611324,-13.416310,-34.555832,-13.795394,-34.670319],[13.732314,-40.635761,13.432740,-40.596081,13.432357,-40.502579],[10.591091,-69.149979,10.352279,-68.962463,10.657739,-69.084396],[10.596660,-95.431725,10.737661,-95.324959,10.695921,-95.415802],[12.362244,-49.874660,12.629207,-49.493816,12.697278,-49.500587],[13.274964,-37.945854,13.229000,-37.919163,13.387772,-37.494656],[12.961361,-32.529961,13.098976,-31.857960,13.140035,-31.891712],[10.274218,-90.115471,10.401778,-89.998207,10.420089,-90.058258],[15.043215,-94.362648,14.556004,-93.944740,15.222637,-94.352165],[13.853507,-95.861801,13.357208,-95.495041,13.365824,-95.444450],[-0.005246,-70.136879,-0.078272,-70.101875,-0.165084,-69.540825],[4.350590,-97.258423,4.555058,-96.919731,4.633071,-96.941452],[14.941442,-83.228706,14.476690,-82.901382,14.551892,-82.834091],[14.951837,-84.180748,14.485497,-83.776413,14.952966,-84.099838],[11.537032,-91.546165,11.009404,-91.179054,11.056707,-91.158539],[10.781414,-92.818336,10.378214,-92.334496,10.828910,-92.798271],[11.280144,-93.746971,10.821638,-93.290909,10.834367,-93.229439],[14.309192,-88.817635,13.883385,-88.283554,14.387814,-88.754364],[13.999948,-95.757965,13.843659,-95.646820,13.951166,-95.667999],[13.024047,-84.402336,13.109818,-84.415741,13.035783,-84.632477],[13.689115,-52.779064,13.669120,-53.006664,13.584809,-52.985977],[13.883405,-65.477402,13.787733,-65.666740,13.695630,-65.612862],[11.872072,-79.083267,12.009585,-78.921730,12.112242,-78.931953],[11.414100,-51.589828,11.312364,-51.572723,11.256871,-51.478642],[1.277762,-33.954334,1.142531,-33.941746,1.189699,-33.884022],[12.364657,-45.585289,12.305268,-45.809265,12.293865,-45.561935],[-8.850468,-93.506126,-8.986697,-93.304855,-8.784489,-93.447731],[-8.904322,-93.420799,-9.151699,-93.235748,-9.040214,-93.219299],[-11.453515,-95.623665,-11.631572,-95.456261,-11.562709,-95.401299],[-11.518900,-95.763405,-11.662234,-95.489403,-11.484176,-95.656807],[12.775829,-93.652481,12.849409,-93.638603,12.794418,-93.763039],[11.944618,-84.375519,11.990527,-84.132072,12.018049,-84.360870],[8.311617,-28.876398,8.467346,-28.885519,8.467771,-28.948776],[12.984776,-95.667610,12.427067,-95.337982,12.993793,-95.617081],[12.741583,-95.253860,12.128497,-94.948189,12.185697,-94.921173],[-1.656981,-57.302326,-1.812845,-56.709999,-1.762474,-56.619122],[13.401567,-95.215141,13.465030,-94.939438,13.551427,-94.994499],[14.073084,-90.479324,14.064716,-90.249565,14.164513,-90.287346],[11.400860,-84.161392,11.321863,-84.096161,11.567871,-83.954544],[10.660368,-85.731979,10.631994,-85.656189,10.954362,-85.421272],[13.749856,-96.569511,14.065606,-96.280945,14.126808,-96.325729],[10.312885,-88.995880,10.257381,-88.944199,10.484790,-88.585663],[14.327634,-89.165489,14.172054,-89.142807,13.858109,-88.689438],[7.517989,-99.126396,7.470605,-99.081993,7.679803,-98.769737],[12.330380,-91.019043,12.623640,-90.819656,12.669532,-90.865601],[8.438109,-65.257118,8.416486,-65.189331,8.685714,-65.003250],[14.627237,-73.901558,14.341627,-73.456146,14.651048,-73.834511],[9.095107,-99.294472,8.643851,-98.975883,8.687460,-98.957146],[-6.309224,-97.510368,-6.545047,-97.329575,-6.446133,-97.318855],[4.028459,-60.067886,3.913655,-60.110489,3.931307,-60.046432],[8.799510,-78.670860,8.710743,-78.651558,8.670444,-78.565216],[9.568031,-95.426865,9.717682,-95.284653,9.807284,-95.299614],[11.939561,-86.682671,11.871679,-86.619507,12.072275,-86.524536],[13.927516,-97.568817,13.967184,-97.378014,14.042761,-97.431732],[13.965070,-97.528076,13.878999,-97.486481,14.004469,-97.337219],[14.193977,-96.568817,14.091134,-96.438324,14.177069,-96.480202],[14.296133,-84.012596,14.099771,-83.459465,14.381691,-83.980103],[8.925035,-98.374161,8.556691,-97.959877,8.573243,-97.904312],[8.355353,-98.762405,8.031160,-98.329025,8.398997,-98.743759],[12.722656,-92.308640,12.866405,-92.244400,12.863041,-92.302277],[13.491662,-93.995811,13.510197,-93.898415,13.576399,-93.906883],[-9.795903,-89.552467,-9.939250,-89.324028,-9.777518,-89.455040],[-9.659293,-88.855782,-9.820530,-88.724167,-9.766180,-88.671822],[-6.329675,-97.525833,-6.466587,-97.334320,-6.272655,-97.476410],[14.236825,-64.708870,14.086831,-64.876488,14.191666,-64.660141],[13.860793,-73.542923,13.754999,-73.738510,13.693391,-73.693153],[11.955026,-85.668877,12.096678,-85.497459,12.155069,-85.572754],[14.094174,-93.348129,14.144268,-93.158401,14.212454,-93.193100],[13.778739,-91.720879,13.886901,-91.537666,13.844940,-91.729362],[14.652312,-72.932625,14.350537,-72.548126,14.434138,-72.510887],[12.250713,-96.071533,12.342727,-95.845619,12.407582,-95.904831],[13.054151,-97.105659,13.033602,-97.017815,13.149135,-96.880974],[9.101338,-97.300018,9.037855,-97.239342,9.278923,-97.115562],[-0.050920,-77.449059,-0.365604,-77.028038,-0.351800,-76.938019],[1.437961,-79.934807,1.370195,-79.995255,1.034846,-79.506149],[-0.723387,-88.372421,-0.981118,-87.973755,-0.907505,-87.920578],[1.322317,-95.630188,1.107918,-95.938904,1.251752,-95.621597],[-0.157121,-88.901726,-0.227442,-88.891335,-0.420165,-88.443085],[11.951973,-95.731445,11.584839,-95.350975,11.600670,-95.306366],[11.020895,-94.728928,10.576371,-94.396385,11.036303,-94.684166],[10.654741,-95.849701,10.154050,-95.540581,10.208461,-95.519516],[14.392215,-44.911674,14.354063,-44.955818,14.295015,-44.811089],[9.191957,-56.408825,9.712980,-55.998264,9.759926,-56.023338],[3.365324,-57.796097,3.295102,-57.824638,2.766390,-57.510960],[6.938125,-70.070847,6.598969,-69.793655,6.578622,-69.700493],[11.444744,-69.973648,11.361409,-69.917107,11.360862,-69.817390],[13.257736,-54.382694,12.945033,-54.283054,13.188460,-54.309608],[13.022527,-72.978523,12.778499,-72.958221,12.776807,-72.861237],[12.086400,-91.181671,12.357642,-91.200325,12.309743,-91.284683],[12.822961,-100.882309,13.093884,-100.908287,13.067163,-100.982201],[12.866620,-102.817566,12.866247,-102.748840,13.137600,-102.842941],[9.073038,-103.838890,9.182030,-103.856033,9.176656,-103.924553],[-5.391347,-52.312393,-5.301504,-52.056511,-5.199717,-52.013935],[-5.479293,-52.366909,-5.556515,-52.344051,-5.387825,-52.111603],[-13.340547,-16.656225,-13.141463,-16.450745,-13.105744,-16.522923],[12.688135,-95.984390,12.430875,-95.894440,12.715661,-95.921913],[12.907287,-91.773567,12.645102,-91.758293,12.651335,-91.679962],[7.995609,-85.981514,8.009230,-85.914604,8.118314,-85.929680],[-13.297531,-16.633982,-13.275479,-16.526093,-13.042585,-16.389481],[13.618537,-73.607079,13.307432,-73.436752,13.230067,-73.368889],[13.055981,-103.305473,12.987640,-103.302452,12.969307,-103.159668],[10.624401,-63.001595,10.575675,-62.980179,10.872732,-62.622421],[12.881230,-51.586823,13.034289,-51.108406,13.074604,-51.163929],[12.682769,-102.708878,12.618953,-102.683678,12.754676,-102.585388],[2.995959,-99.839607,3.625276,-99.631645,3.062109,-99.877167],[0.985841,-85.628029,1.208674,-85.424957,1.215383,-85.499542],[-5.641085,-61.351681,-5.567578,-61.367226,-5.794451,-61.565639],[3.659934,-22.160139,3.677361,-22.206676,3.548326,-22.188721],[15.122074,-91.502365,14.718477,-91.268417,14.764106,-91.248741],[-0.767049,-59.732559,-0.841659,-59.744831,-0.855953,-59.274609],[-1.695662,-74.418571,-1.716778,-74.045013,-1.641710,-74.035957],[16.863859,-89.267563,16.527975,-89.073776,16.582449,-89.020607],[16.882736,-90.074554,16.547045,-89.825439,16.884001,-90.017349],[13.784990,-85.789040,13.434640,-85.527672,13.471901,-85.512047],[13.153358,-88.131516,12.920868,-87.772179,13.190841,-88.116432],[9.921888,-81.386375,10.002102,-81.282799,10.021733,-81.327881],[12.937485,-94.946350,12.973832,-94.852158,13.013388,-94.922813],[14.108507,-95.074722,14.161071,-95.058762,14.125189,-95.153130],[12.065913,-73.084190,12.107476,-73.268417,12.055941,-73.287437],[13.738688,-72.776955,13.801112,-72.779839,13.762624,-72.964287],[14.166249,-36.977837,14.176563,-37.165897,14.114274,-37.160873],[16.438196,-49.926250,16.296507,-50.047066,16.378389,-49.877457],[16.414982,-51.364521,16.335911,-51.519943,16.271051,-51.482655],[14.615581,-70.237648,14.417015,-70.350235,14.542040,-70.228661],[13.892673,-76.693336,13.843441,-76.644051,14.047186,-76.541138],[15.962428,-90.301476,16.031305,-90.085304,16.088772,-90.124687],[16.244465,-88.752647,16.217203,-88.684731,16.305099,-88.534027],[15.778230,-91.860542,15.666670,-91.787521,15.743754,-91.795982],[15.715800,-92.313393,15.641265,-92.312592,15.604035,-92.240685],[15.974903,-92.645164,15.618763,-92.339897,15.693297,-92.340706],[16.144955,-93.696373,15.841523,-93.345139,16.201698,-93.645638],[13.684156,-89.106331,13.406111,-88.768555,13.423233,-88.722450],[-3.678336,-59.681759,-3.676804,-59.265232,-3.622738,-59.214615],[12.968405,-41.026463,12.872578,-40.932632,12.951640,-40.954327],[13.470295,-42.023144,13.398257,-42.005836,13.370124,-41.933960],[-14.997254,-17.236189,-14.942761,-17.174932,-14.928212,-17.274948],[-5.667913,-32.948902,-5.748567,-32.888000,-5.696026,-32.872982],[11.026681,-31.728348,11.025577,-31.918613,10.972424,-31.721851],[-11.192471,-90.810699,-11.450079,-90.728493,-11.370812,-90.712029],[-11.450079,-90.728493,-11.192471,-90.810699,-11.231830,-90.855171],[-14.070986,-94.888214,-14.222600,-94.756950,-14.179515,-94.716080],[-14.222600,-94.756950,-14.070986,-94.888214,-14.083763,-94.967354],[15.895675,-80.430206,15.818715,-80.420677,15.889191,-80.245941],[15.967819,-80.565758,15.963218,-80.381439,16.034391,-80.404495],[13.107097,-88.970459,13.094746,-88.914589,13.341142,-88.757545],[16.110559,-95.035599,16.349346,-94.828011,16.389048,-94.860359],[11.833025,-83.766594,11.800739,-83.726837,12.012625,-83.495049],[5.979960,-96.253494,5.730341,-96.444046,5.926861,-96.231606],[-0.867450,-74.270615,-0.914430,-74.237587,-0.873793,-73.853333],[16.091070,-91.954453,15.786285,-91.669373,15.799109,-91.631371],[15.376079,-92.465897,15.015273,-92.216316,15.389645,-92.428146],[17.124796,-94.898666,16.815971,-94.591660,17.253653,-94.888863],[16.279768,-95.354126,15.871772,-94.964226,16.448288,-95.337158],[15.324058,-93.707718,14.914047,-93.355026,14.928859,-93.304855],[0.136135,-72.859138,0.069894,-72.823715,0.073586,-72.321930],[5.507284,-96.593239,5.191533,-96.873856,5.435730,-96.570374],[11.645545,-85.543243,11.599204,-85.495865,11.858644,-85.162498],[15.194614,-96.072105,15.497373,-95.773209,15.550689,-95.812569],[11.699844,-86.615936,11.676986,-86.544579,11.984038,-86.299339],[15.985688,-86.304291,15.542723,-85.992256,15.987007,-86.229362],[13.301128,-88.324387,12.816893,-88.030441,12.863181,-88.005348],[12.501411,-90.346687,12.158634,-89.910431,12.548094,-90.322342],[9.783461,-86.254456,9.900790,-86.125786,9.922644,-86.186081],[13.209686,-95.052200,13.280584,-95.032661,13.228017,-95.154716],[11.567734,-77.950783,11.612552,-78.221008,11.542404,-78.243088],[13.035908,-77.983078,13.119053,-77.989151,13.058098,-78.256104],[13.532085,-46.543018,13.536371,-46.816601,13.453534,-46.807217],[15.398338,-56.720455,15.212923,-56.914993,15.315252,-56.661232],[15.392078,-58.224716,15.291290,-58.458763,15.202640,-58.415337],[13.665044,-75.611969,13.833150,-75.420448,13.929326,-75.425293],[13.548158,-44.233585,13.452291,-44.224491,13.402527,-44.135414],[0.001862,-30.061199,-0.126949,-30.028395,-0.069010,-29.983660],[11.201356,-41.581013,11.182499,-41.855991,11.129482,-41.567146],[-10.621209,-92.316437,-10.807416,-92.097084,-10.565503,-92.263573],[-10.463736,-92.649689,-10.755214,-92.445099,-10.651076,-92.431305],[-12.858312,-95.494370,-13.060287,-95.287666,-13.001489,-95.238274],[-12.782778,-95.608658,-12.961254,-95.300743,-12.759067,-95.507240],[6.024398,-27.599247,6.036228,-27.662916,5.870605,-27.612684],[14.297214,-93.135323,13.759997,-92.858749,13.818041,-92.830040],[15.973365,-85.226151,15.530773,-84.985901,15.602290,-84.914131],[15.195488,-91.575905,14.800208,-91.122337,15.271385,-91.508781],[12.965125,-91.374001,12.567835,-90.969635,12.584834,-90.907791],[14.763447,-94.373466,14.616173,-94.279488,14.718170,-94.289703],[14.922017,-84.655708,14.922029,-84.389191,15.016222,-84.418739],[15.070126,-91.742210,15.031642,-91.655121,15.153987,-91.431366],[14.844934,-92.600609,14.935725,-92.291718,15.012579,-92.339661],[13.310709,-79.829193,13.241305,-79.770981,13.512307,-79.594215],[-1.892520,-57.109173,-1.963500,-56.574100,-1.901098,-56.498367],[14.518498,-93.922890,14.036775,-93.621651,14.534103,-93.872963],[0.361417,0.710308,0.387721,0.721915,0.388185,0.708474],[0.361417,0.710308,0.359763,0.724900,0.387721,0.721915],[0.359763,0.724900,0.361417,0.710308,0.329997,0.732285],[0.329997,0.732285,0.360000,0.763238,0.359763,0.724900],[0.332180,0.767645,0.360000,0.763238,0.329997,0.732285],[0.332180,0.767645,0.360243,0.801083,0.360000,0.763238],[0.334420,0.801083,0.360243,0.801083,0.332180,0.767645],[0.334420,0.801083,0.364335,0.857759,0.360243,0.801083],[0.344672,0.857759,0.364335,0.857759,0.334420,0.801083],[0.344672,0.857759,0.369350,0.912841,0.364335,0.857759],[0.349500,0.912841,0.369350,0.912841,0.344672,0.857759],[0.602125,0.819013,0.626654,0.820690,0.613056,0.808364],[0.602125,0.819013,0.619411,0.837899,0.626654,0.820690],[0.593353,0.828086,0.619411,0.837899,0.602125,0.819013],[0.593353,0.828086,0.613112,0.852730,0.619411,0.837899],[0.593353,0.828086,0.604672,0.873226,0.613112,0.852730],[0.578523,0.841828,0.604672,0.873226,0.593353,0.828086],[0.578523,0.841828,0.579047,0.883266,0.604672,0.873226],[0.563233,0.846656,0.579047,0.883266,0.578523,0.841828],[0.563233,0.846656,0.567046,0.889087,0.579047,0.883266],[0.658022,0.714551,0.623045,0.752308,0.658175,0.748031],[0.622845,0.708325,0.623045,0.752308,0.658022,0.714551],[0.622845,0.708325,0.587916,0.756585,0.623045,0.752308],[0.587668,0.702100,0.587916,0.756585,0.622845,0.708325],[0.560591,0.703966,0.587916,0.756585,0.587668,0.702100],[0.560591,0.703966,0.550585,0.755769,0.587916,0.756585],[0.560591,0.703966,0.528614,0.716865,0.550585,0.755769],[0.679042,0.973118,0.651725,0.985913,0.653994,0.994469],[0.679042,0.973118,0.673855,0.963265,0.651725,0.985913],[0.704631,0.934375,0.673855,0.963265,0.679042,0.973118],[0.704631,0.934375,0.693939,0.925431,0.673855,0.963265],[0.709031,0.892035,0.693939,0.925431,0.704631,0.934375],[0.709031,0.892035,0.697042,0.885933,0.693939,0.925431],[0.716795,0.852219,0.697042,0.885933,0.709031,0.892035],[0.716795,0.852219,0.703227,0.846995,0.697042,0.885933],[0.724197,0.818838,0.703227,0.846995,0.716795,0.852219],[0.724197,0.818838,0.691096,0.835082,0.703227,0.846995],[0.724197,0.818838,0.709011,0.805332,0.691096,0.835082],[0.724476,0.790512,0.709011,0.805332,0.724197,0.818838],[0.700193,0.788648,0.709011,0.805332,0.724476,0.790512],[0.700193,0.788648,0.695845,0.796186,0.709011,0.805332],[0.691069,0.782556,0.695845,0.796186,0.700193,0.788648],[0.691069,0.782556,0.681385,0.794602,0.695845,0.796186],[0.478183,0.857759,0.445347,0.912841,0.470812,0.912841],[0.478183,0.857759,0.454679,0.857758,0.445347,0.912841],[0.490898,0.802707,0.452678,0.857759,0.478183,0.857759],[0.467984,0.801083,0.452678,0.857759,0.490898,0.802707],[0.467984,0.801083,0.441022,0.801083,0.452678,0.857759],[0.471667,0.772141,0.441022,0.801083,0.467984,0.801083],[0.471667,0.772141,0.443950,0.767856,0.441022,0.801083],[0.471667,0.772141,0.446724,0.733533,0.443950,0.767856],[0.471667,0.772141,0.471871,0.746594,0.446724,0.733533],[0.471871,0.746594,0.471667,0.772141,0.490898,0.749078],[0.490898,0.749078,0.471667,0.772141,0.490898,0.773687],[0.471667,0.772141,0.467984,0.801083,0.490898,0.773687],[0.490898,0.773687,0.467984,0.801083,0.490898,0.802707],[0.304832,0.771756,0.285437,0.772180,0.285437,0.801194],[0.304957,0.745141,0.285437,0.772180,0.304832,0.771756],[0.304957,0.745141,0.285437,0.747683,0.285437,0.772180],[0.306819,0.729705,0.285437,0.747683,0.304957,0.745141],[0.306819,0.729705,0.285437,0.729717,0.285437,0.747683],[0.309032,0.717921,0.285437,0.729717,0.306819,0.729705],[0.309032,0.717921,0.285437,0.719986,0.285437,0.729717],[0.310837,0.708433,0.285437,0.719986,0.309032,0.717921],[0.310837,0.708433,0.285437,0.710531,0.285437,0.719986],[0.285437,0.696294,0.285437,0.710531,0.310837,0.708433],[0.490898,0.697685,0.465212,0.709316,0.490898,0.711856],[0.490898,0.697685,0.466804,0.697146,0.465212,0.709316],[0.490898,0.680327,0.466804,0.697146,0.490898,0.697685],[0.490898,0.680327,0.468599,0.680327,0.466804,0.697146],[0.490898,0.651963,0.468599,0.680327,0.490898,0.680327],[0.490898,0.651963,0.467191,0.651963,0.468599,0.680327],[0.490898,0.627227,0.467191,0.651963,0.490898,0.651963],[0.490898,0.627227,0.467591,0.626820,0.467191,0.651963],[0.490898,0.603928,0.467591,0.626820,0.490898,0.627227],[0.490898,0.603928,0.467959,0.603928,0.467591,0.626820],[0.490898,0.567772,0.467959,0.603928,0.490898,0.603928],[0.490898,0.567772,0.468531,0.567772,0.467959,0.603928],[0.468531,0.567772,0.440927,0.603928,0.467959,0.603928],[0.468531,0.567772,0.440336,0.567772,0.440927,0.603928],[0.440336,0.567772,0.412093,0.603928,0.440927,0.603928],[0.440336,0.567772,0.411463,0.567772,0.412093,0.603928],[0.411463,0.567772,0.389465,0.603928,0.412093,0.603928],[0.389304,0.567772,0.389465,0.603928,0.411463,0.567772],[0.389304,0.567772,0.366309,0.603928,0.389465,0.603928],[0.366757,0.567772,0.366309,0.603928,0.389304,0.567772],[0.337678,0.603928,0.366309,0.603928,0.366757,0.567772],[0.337678,0.603928,0.337411,0.627227,0.366309,0.603928],[0.310940,0.626820,0.337411,0.627227,0.337678,0.603928],[0.310940,0.626820,0.311334,0.651963,0.337411,0.627227],[0.310940,0.626820,0.285437,0.651963,0.311334,0.651963],[0.310940,0.626820,0.285437,0.627227,0.285437,0.651963],[0.310579,0.603928,0.285437,0.627227,0.310940,0.626820],[0.310579,0.603928,0.285437,0.603928,0.285437,0.627227],[0.310016,0.567772,0.285437,0.603928,0.310579,0.603928],[0.310016,0.567772,0.285437,0.567772,0.285437,0.603928],[0.310016,0.567772,0.310579,0.603928,0.338095,0.567772],[0.310579,0.603928,0.337678,0.603928,0.338095,0.567772],[0.310579,0.603928,0.310940,0.626820,0.337678,0.603928],[0.338095,0.567772,0.337678,0.603928,0.366757,0.567772],[0.311334,0.651963,0.285437,0.651963,0.285437,0.680327],[0.311334,0.651963,0.285437,0.680327,0.308769,0.680327],[0.308769,0.680327,0.285437,0.680327,0.309969,0.696238],[0.285437,0.680327,0.285437,0.696294,0.309969,0.696238],[0.309969,0.696238,0.285437,0.696294,0.310837,0.708433],[0.309969,0.696238,0.310837,0.708433,0.333643,0.693503],[0.310837,0.708433,0.334291,0.705620,0.333643,0.693503],[0.310837,0.708433,0.331877,0.714319,0.334291,0.705620],[0.309032,0.717921,0.331877,0.714319,0.310837,0.708433],[0.306819,0.729705,0.331877,0.714319,0.309032,0.717921],[0.304957,0.745141,0.331877,0.714319,0.306819,0.729705],[0.304957,0.745141,0.329997,0.732285,0.331877,0.714319],[0.304832,0.771756,0.329997,0.732285,0.304957,0.745141],[0.304832,0.771756,0.332180,0.767645,0.329997,0.732285],[0.304832,0.771756,0.334420,0.801083,0.332180,0.767645],[0.304832,0.771756,0.308274,0.801083,0.334420,0.801083],[0.304832,0.771756,0.285437,0.801194,0.308274,0.801083],[0.308274,0.801083,0.285437,0.801194,0.298474,0.857759],[0.308274,0.801083,0.298474,0.857759,0.318593,0.857759],[0.318593,0.857759,0.298474,0.857759,0.323632,0.912841],[0.298474,0.857759,0.304117,0.912841,0.323632,0.912841],[0.695835,0.769622,0.691069,0.782556,0.705684,0.779954],[0.691069,0.782556,0.700193,0.788648,0.705684,0.779954],[0.705684,0.779954,0.700193,0.788648,0.724476,0.790512],[0.569629,0.801507,0.593353,0.828086,0.580783,0.794324],[0.548896,0.813334,0.593353,0.828086,0.569629,0.801507],[0.548896,0.813334,0.578523,0.841828,0.593353,0.828086],[0.548896,0.813334,0.563233,0.846656,0.578523,0.841828],[0.548896,0.813334,0.544333,0.821336,0.563233,0.846656],[0.739906,0.800347,0.728952,0.825031,0.748397,0.806289],[0.739906,0.800347,0.724197,0.818838,0.728952,0.825031],[0.724476,0.790512,0.724197,0.818838,0.739906,0.800347],[0.724197,0.818838,0.716795,0.852219,0.728952,0.825031],[0.728952,0.825031,0.716795,0.852219,0.745367,0.837029],[0.745367,0.837029,0.716795,0.852219,0.728728,0.856508],[0.658022,0.714551,0.670512,0.744079,0.670392,0.717802],[0.658175,0.748031,0.670512,0.744079,0.658022,0.714551],[0.532108,0.835011,0.549145,0.853777,0.563233,0.846656],[0.532108,0.835011,0.502808,0.864493,0.549145,0.853777],[0.760078,0.823497,0.775289,0.865916,0.786210,0.855890],[0.760078,0.823497,0.745367,0.837029,0.775289,0.865916],[0.728952,0.825031,0.745367,0.837029,0.760078,0.823497],[0.748397,0.806289,0.728952,0.825031,0.760078,0.823497],[0.544333,0.821336,0.532108,0.835011,0.563233,0.846656],[0.745367,0.837029,0.728728,0.856508,0.775289,0.865916],[0.775289,0.865916,0.728728,0.856508,0.762916,0.880436],[0.670392,0.717802,0.704713,0.740519,0.704623,0.720751],[0.670512,0.744079,0.704713,0.740519,0.670392,0.717802],[0.502808,0.864493,0.515688,0.878745,0.549145,0.853777],[0.704623,0.720751,0.704713,0.740519,0.720007,0.736428],[0.704623,0.720751,0.720007,0.736428,0.719951,0.724216],[0.580783,0.794324,0.593353,0.828086,0.602125,0.819013],[0.580783,0.794324,0.602125,0.819013,0.613056,0.808364],[0.580783,0.794324,0.613056,0.808364,0.597698,0.792846],[0.318593,0.857759,0.323632,0.912841,0.349500,0.912841],[0.318593,0.857759,0.349500,0.912841,0.344672,0.857759],[0.318593,0.857759,0.344672,0.857759,0.334420,0.801083],[0.308274,0.801083,0.318593,0.857759,0.334420,0.801083],[0.329997,0.732285,0.361417,0.710308,0.331877,0.714319],[0.331877,0.714319,0.361417,0.710308,0.362095,0.701484],[0.362095,0.701484,0.361417,0.710308,0.388185,0.708474],[0.362095,0.701484,0.388185,0.708474,0.388380,0.700149],[0.388380,0.700149,0.388185,0.708474,0.414803,0.702038],[0.414803,0.702038,0.388185,0.708474,0.415070,0.711047],[0.388185,0.708474,0.387721,0.721915,0.415070,0.711047],[0.415070,0.711047,0.387721,0.721915,0.417628,0.725604],[0.387721,0.721915,0.387641,0.761722,0.417628,0.725604],[0.387721,0.721915,0.360000,0.763238,0.387641,0.761722],[0.359763,0.724900,0.360000,0.763238,0.387721,0.721915],[0.360000,0.763238,0.387562,0.801083,0.387641,0.761722],[0.360000,0.763238,0.360243,0.801083,0.387562,0.801083],[0.360243,0.801083,0.364335,0.857759,0.387562,0.801083],[0.387562,0.801083,0.364335,0.857759,0.387655,0.857759],[0.364335,0.857759,0.369350,0.912841,0.387655,0.857759],[0.387655,0.857759,0.369350,0.912841,0.386459,0.912841],[0.626654,0.820690,0.619411,0.837899,0.639240,0.825269],[0.639240,0.825269,0.619411,0.837899,0.638952,0.847315],[0.619411,0.837899,0.613112,0.852730,0.638952,0.847315],[0.638952,0.847315,0.613112,0.852730,0.639181,0.862617],[0.639181,0.862617,0.613112,0.852730,0.604672,0.873226],[0.639181,0.862617,0.604672,0.873226,0.637715,0.891894],[0.604672,0.873226,0.601214,0.892678,0.637715,0.891894],[0.579047,0.883266,0.601214,0.892678,0.604672,0.873226],[0.579047,0.883266,0.597756,0.912130,0.601214,0.892678],[0.579047,0.883266,0.583392,0.918336,0.597756,0.912130],[0.567046,0.889087,0.583392,0.918336,0.579047,0.883266],[0.567046,0.889087,0.571315,0.931289,0.583392,0.918336],[0.571315,0.931289,0.603188,0.960815,0.583392,0.918336],[0.571315,0.931289,0.593496,0.970687,0.603188,0.960815],[0.593496,0.970687,0.625740,0.985950,0.603188,0.960815],[0.593496,0.970687,0.621503,0.994614,0.625740,0.985950],[0.528614,0.716865,0.528717,0.739695,0.550585,0.755769],[0.625740,0.985950,0.621503,0.994614,0.653994,0.994469],[0.625740,0.985950,0.653994,0.994469,0.651725,0.985913],[0.627991,0.975710,0.625740,0.985950,0.651725,0.985913],[0.603188,0.960815,0.625740,0.985950,0.627991,0.975710],[0.603188,0.960815,0.627991,0.975710,0.610781,0.954659],[0.636878,0.921540,0.610781,0.954659,0.627991,0.975710],[0.636878,0.921540,0.597756,0.912130,0.610781,0.954659],[0.636878,0.921540,0.637296,0.906890,0.597756,0.912130],[0.676089,0.913894,0.637296,0.906890,0.636878,0.921540],[0.675362,0.895135,0.637296,0.906890,0.676089,0.913894],[0.675362,0.895135,0.637715,0.891894,0.637296,0.906890],[0.672673,0.876850,0.637715,0.891894,0.675362,0.895135],[0.672673,0.876850,0.639181,0.862617,0.637715,0.891894],[0.672673,0.876850,0.663429,0.855160,0.639181,0.862617],[0.691096,0.835082,0.663429,0.855160,0.672673,0.876850],[0.691096,0.835082,0.659778,0.841556,0.663429,0.855160],[0.691096,0.835082,0.675889,0.820161,0.659778,0.841556],[0.709011,0.805332,0.675889,0.820161,0.691096,0.835082],[0.709011,0.805332,0.695845,0.796186,0.675889,0.820161],[0.695845,0.796186,0.681385,0.794602,0.675889,0.820161],[0.681385,0.794602,0.665696,0.809158,0.675889,0.820161],[0.454679,0.857758,0.423091,0.912841,0.445347,0.912841],[0.454679,0.857758,0.430049,0.857759,0.423091,0.912841],[0.454679,0.857758,0.441022,0.801083,0.430049,0.857759],[0.430049,0.857759,0.441022,0.801083,0.414066,0.801083],[0.441022,0.801083,0.443950,0.767856,0.414066,0.801083],[0.443950,0.767856,0.415968,0.762967,0.414066,0.801083],[0.443950,0.767856,0.446724,0.733533,0.415968,0.762967],[0.446724,0.733533,0.417628,0.725604,0.415968,0.762967],[0.446724,0.733533,0.415070,0.711047,0.417628,0.725604],[0.446724,0.733533,0.444665,0.715398,0.415070,0.711047],[0.470241,0.730810,0.444665,0.715398,0.446724,0.733533],[0.470241,0.730810,0.467269,0.718930,0.444665,0.715398],[0.467269,0.718930,0.470241,0.730810,0.490898,0.730960],[0.490898,0.730960,0.470241,0.730810,0.471871,0.746594],[0.471871,0.746594,0.470241,0.730810,0.446724,0.733533],[0.490898,0.730960,0.471871,0.746594,0.490898,0.749078],[0.490898,0.721244,0.467269,0.718930,0.490898,0.730960],[0.465212,0.709316,0.467269,0.718930,0.490898,0.721244],[0.467269,0.718930,0.465212,0.709316,0.444665,0.715398],[0.465212,0.709316,0.442333,0.706442,0.444665,0.715398],[0.465212,0.709316,0.443291,0.694043,0.442333,0.706442],[0.466804,0.697146,0.443291,0.694043,0.465212,0.709316],[0.466804,0.697146,0.443033,0.680327,0.443291,0.694043],[0.468599,0.680327,0.443033,0.680327,0.466804,0.697146],[0.467191,0.651963,0.443033,0.680327,0.468599,0.680327],[0.467191,0.651963,0.441710,0.651963,0.443033,0.680327],[0.467591,0.626820,0.441710,0.651963,0.467191,0.651963],[0.467591,0.626820,0.441306,0.627227,0.441710,0.651963],[0.467959,0.603928,0.441306,0.627227,0.467591,0.626820],[0.467959,0.603928,0.440927,0.603928,0.441306,0.627227],[0.440927,0.603928,0.412498,0.627223,0.441306,0.627227],[0.440927,0.603928,0.412093,0.603928,0.412498,0.627223],[0.412093,0.603928,0.389568,0.627227,0.412498,0.627223],[0.389465,0.603928,0.389568,0.627227,0.412093,0.603928],[0.389465,0.603928,0.366021,0.627223,0.389568,0.627227],[0.366309,0.603928,0.366021,0.627223,0.389465,0.603928],[0.337411,0.627227,0.366021,0.627223,0.366309,0.603928],[0.337411,0.627227,0.337126,0.651963,0.366021,0.627223],[0.311334,0.651963,0.337126,0.651963,0.337411,0.627227],[0.311334,0.651963,0.308769,0.680327,0.337126,0.651963],[0.308769,0.680327,0.334369,0.680327,0.337126,0.651963],[0.308769,0.680327,0.309969,0.696238,0.334369,0.680327],[0.309969,0.696238,0.333643,0.693503,0.334369,0.680327],[0.334369,0.680327,0.333643,0.693503,0.363089,0.691578],[0.334291,0.705620,0.363089,0.691578,0.333643,0.693503],[0.334291,0.705620,0.362592,0.695548,0.363089,0.691578],[0.334291,0.705620,0.362095,0.701484,0.362592,0.695548],[0.331877,0.714319,0.362095,0.701484,0.334291,0.705620],[0.388516,0.692940,0.362592,0.695548,0.362095,0.701484],[0.388655,0.690088,0.362592,0.695548,0.388516,0.692940],[0.363089,0.691578,0.362592,0.695548,0.388655,0.690088],[0.388945,0.680327,0.363089,0.691578,0.388655,0.690088],[0.364916,0.680327,0.363089,0.691578,0.388945,0.680327],[0.334369,0.680327,0.363089,0.691578,0.364916,0.680327],[0.334369,0.680327,0.364916,0.680327,0.365715,0.651963],[0.365715,0.651963,0.364916,0.680327,0.389678,0.651963],[0.389678,0.651963,0.364916,0.680327,0.388945,0.680327],[0.389678,0.651963,0.388945,0.680327,0.412929,0.651963],[0.412929,0.651963,0.388945,0.680327,0.412512,0.680327],[0.388945,0.680327,0.414057,0.691794,0.412512,0.680327],[0.388945,0.680327,0.388655,0.690088,0.414057,0.691794],[0.388655,0.690088,0.414421,0.696053,0.414057,0.691794],[0.388655,0.690088,0.388516,0.692940,0.414421,0.696053],[0.388516,0.692940,0.414803,0.702038,0.414421,0.696053],[0.388516,0.692940,0.388380,0.700149,0.414803,0.702038],[0.388516,0.692940,0.362095,0.701484,0.388380,0.700149],[0.442333,0.706442,0.414421,0.696053,0.414803,0.702038],[0.442333,0.706442,0.443291,0.694043,0.414421,0.696053],[0.443291,0.694043,0.414057,0.691794,0.414421,0.696053],[0.443033,0.680327,0.414057,0.691794,0.443291,0.694043],[0.443033,0.680327,0.412512,0.680327,0.414057,0.691794],[0.441710,0.651963,0.412512,0.680327,0.443033,0.680327],[0.441710,0.651963,0.412929,0.651963,0.412512,0.680327],[0.441306,0.627227,0.412929,0.651963,0.441710,0.651963],[0.441306,0.627227,0.412498,0.627223,0.412929,0.651963],[0.412498,0.627223,0.389678,0.651963,0.412929,0.651963],[0.389568,0.627227,0.389678,0.651963,0.412498,0.627223],[0.389568,0.627227,0.365715,0.651963,0.389678,0.651963],[0.366021,0.627223,0.365715,0.651963,0.389568,0.627227],[0.337126,0.651963,0.365715,0.651963,0.366021,0.627223],[0.337126,0.651963,0.334369,0.680327,0.365715,0.651963],[0.444665,0.715398,0.442333,0.706442,0.414803,0.702038],[0.444665,0.715398,0.414803,0.702038,0.415070,0.711047],[0.490898,0.711856,0.465212,0.709316,0.490898,0.721244],[0.417628,0.725604,0.387641,0.761722,0.415968,0.762967],[0.387641,0.761722,0.387562,0.801083,0.415968,0.762967],[0.415968,0.762967,0.387562,0.801083,0.414066,0.801083],[0.387562,0.801083,0.408038,0.857759,0.414066,0.801083],[0.387562,0.801083,0.387655,0.857759,0.408038,0.857759],[0.387655,0.857759,0.404498,0.912841,0.408038,0.857759],[0.387655,0.857759,0.386459,0.912841,0.404498,0.912841],[0.639240,0.825269,0.638952,0.847315,0.652291,0.820828],[0.652291,0.820828,0.638952,0.847315,0.659778,0.841556],[0.663429,0.855160,0.659778,0.841556,0.638952,0.847315],[0.663429,0.855160,0.638952,0.847315,0.639181,0.862617],[0.665696,0.809158,0.652291,0.820828,0.659778,0.841556],[0.423091,0.912841,0.430049,0.857759,0.404498,0.912841],[0.430049,0.857759,0.408038,0.857759,0.404498,0.912841],[0.430049,0.857759,0.414066,0.801083,0.408038,0.857759],[0.675889,0.820161,0.665696,0.809158,0.659778,0.841556],[0.703227,0.846995,0.691096,0.835082,0.672673,0.876850],[0.703227,0.846995,0.672673,0.876850,0.697042,0.885933],[0.697042,0.885933,0.672673,0.876850,0.675362,0.895135],[0.697042,0.885933,0.675362,0.895135,0.676089,0.913894],[0.697042,0.885933,0.676089,0.913894,0.693939,0.925431],[0.693939,0.925431,0.676089,0.913894,0.665640,0.952891],[0.665640,0.952891,0.676089,0.913894,0.636878,0.921540],[0.665640,0.952891,0.636878,0.921540,0.650395,0.977645],[0.650395,0.977645,0.636878,0.921540,0.627991,0.975710],[0.627991,0.975710,0.651725,0.985913,0.650395,0.977645],[0.673855,0.963265,0.650395,0.977645,0.651725,0.985913],[0.673855,0.963265,0.665640,0.952891,0.650395,0.977645],[0.693939,0.925431,0.665640,0.952891,0.673855,0.963265],[0.637715,0.891894,0.601214,0.892678,0.637296,0.906890],[0.637296,0.906890,0.601214,0.892678,0.597756,0.912130],[0.583392,0.918336,0.610781,0.954659,0.597756,0.912130],[0.583392,0.918336,0.603188,0.960815,0.610781,0.954659],[0.842838,0.821201,0.837437,0.816913,0.842760,0.816606],[0.842838,0.821201,0.836889,0.820755,0.837437,0.816913],[0.836889,0.820755,0.842838,0.821201,0.837243,0.824586],[0.837243,0.824586,0.836453,0.823728,0.836051,0.820692],[0.835344,0.823906,0.835202,0.820640,0.836453,0.823728],[0.836567,0.817654,0.835202,0.820640,0.835453,0.817353],[0.837437,0.816913,0.835453,0.817353,0.836249,0.816196],[0.836249,0.816196,0.835453,0.817353,0.834918,0.815634],[0.834792,0.825536,0.836132,0.825063,0.835689,0.827332],[0.834792,0.825536,0.835344,0.823906,0.836132,0.825063],[0.836132,0.825063,0.835344,0.823906,0.837243,0.824586],[0.836132,0.825063,0.837243,0.824586,0.842424,0.825772],[0.837243,0.824586,0.842838,0.821201,0.842424,0.825772],[0.842424,0.825772,0.842838,0.821201,0.850879,0.821718],[0.850879,0.821718,0.842838,0.821201,0.842760,0.816606],[0.850879,0.821718,0.842760,0.816606,0.850172,0.816827],[0.842760,0.816606,0.836249,0.816196,0.842534,0.815618],[0.842253,0.815189,0.836618,0.815437,0.835804,0.813631],[0.842213,0.826791,0.842424,0.825772,0.849847,0.826490],[0.842213,0.826791,0.836132,0.825063,0.842424,0.825772],[0.851279,0.828234,0.842032,0.827241,0.850420,0.827079],[0.841732,0.829123,0.842032,0.827241,0.851279,0.828234],[0.841732,0.829123,0.835689,0.827332,0.842032,0.827241],[0.842023,0.833111,0.835689,0.827332,0.841732,0.829123],[0.842023,0.833111,0.835289,0.831314,0.835689,0.827332],[0.841822,0.787387,0.831817,0.797954,0.834859,0.791118],[0.841822,0.787387,0.841280,0.793888,0.831817,0.797954],[0.853559,0.782880,0.841280,0.793888,0.841822,0.787387],[0.857091,0.788781,0.841280,0.793888,0.853559,0.782880],[0.859931,0.793952,0.841280,0.793888,0.857091,0.788781],[0.859931,0.793952,0.843967,0.798301,0.841280,0.793888],[0.859931,0.793952,0.845010,0.803051,0.843967,0.798301],[0.859931,0.793952,0.861286,0.799470,0.845010,0.803051],[0.859931,0.793952,0.864364,0.792562,0.861286,0.799470],[0.864364,0.792562,0.859931,0.793952,0.857091,0.788781],[0.864364,0.792562,0.857091,0.788781,0.860837,0.786523],[0.860837,0.786523,0.857091,0.788781,0.853559,0.782880],[0.857180,0.780909,0.860837,0.786523,0.853559,0.782880],[0.864846,0.785976,0.860837,0.786523,0.857180,0.780909],[0.864846,0.785976,0.867825,0.791287,0.860837,0.786523],[0.881629,0.785521,0.867825,0.791287,0.864846,0.785976],[0.881629,0.785521,0.869702,0.797383,0.867825,0.791287],[0.881629,0.785521,0.884714,0.793532,0.869702,0.797383],[0.890604,0.779743,0.884714,0.793532,0.881629,0.785521],[0.896127,0.790437,0.884714,0.793532,0.890604,0.779743],[0.896127,0.790437,0.901780,0.799450,0.884714,0.793532],[0.919124,0.793570,0.901780,0.799450,0.896127,0.790437],[0.921865,0.810929,0.901780,0.799450,0.919124,0.793570],[0.921865,0.810929,0.905086,0.811724,0.901780,0.799450],[0.921865,0.810929,0.915046,0.830141,0.905086,0.811724],[0.926981,0.834519,0.915046,0.830141,0.921865,0.810929],[0.926981,0.834519,0.907238,0.839247,0.915046,0.830141],[0.917457,0.844073,0.907238,0.839247,0.926981,0.834519],[0.917457,0.844073,0.902890,0.844418,0.907238,0.839247],[0.906039,0.850866,0.902890,0.844418,0.917457,0.844073],[0.906039,0.850866,0.890186,0.855677,0.902890,0.844418],[0.910020,0.858104,0.890186,0.855677,0.906039,0.850866],[0.910020,0.858104,0.890344,0.866549,0.890186,0.855677],[0.901235,0.874448,0.890344,0.866549,0.910020,0.858104],[0.901235,0.874448,0.890426,0.879990,0.890344,0.866549],[0.900746,0.886486,0.890426,0.879990,0.901235,0.874448],[0.900746,0.886486,0.887265,0.893836,0.890426,0.879990],[0.894843,0.902842,0.887265,0.893836,0.900746,0.886486],[0.894843,0.902842,0.883887,0.909029,0.887265,0.893836],[0.888649,0.917186,0.883887,0.909029,0.894843,0.902842],[0.888649,0.917186,0.868928,0.928510,0.883887,0.909029],[0.883057,0.726770,0.863367,0.698350,0.881285,0.708042],[0.883057,0.726770,0.861389,0.711310,0.863367,0.698350],[0.883057,0.726770,0.879729,0.732293,0.861389,0.711310],[0.895025,0.728535,0.879729,0.732293,0.883057,0.726770],[0.895025,0.728535,0.887664,0.738223,0.879729,0.732293],[0.895025,0.728535,0.907829,0.741042,0.887664,0.738223],[0.907829,0.741042,0.895025,0.728535,0.907151,0.724300],[0.907151,0.724300,0.895025,0.728535,0.890900,0.712751],[0.891278,0.918614,0.893855,0.926005,0.885932,0.924023],[0.901318,0.912219,0.893855,0.926005,0.891278,0.918614],[0.901133,0.932087,0.893855,0.926005,0.901318,0.912219],[0.901133,0.932087,0.882337,0.943564,0.893855,0.926005],[0.901133,0.932087,0.891594,0.944624,0.882337,0.943564],[0.901133,0.932087,0.894918,0.953283,0.891594,0.944624],[0.901133,0.932087,0.908500,0.937986,0.894918,0.953283],[0.909238,0.918935,0.908500,0.937986,0.901133,0.932087],[0.909238,0.918935,0.919804,0.928087,0.908500,0.937986],[0.926818,0.917507,0.919804,0.928087,0.909238,0.918935],[0.929717,0.934738,0.919804,0.928087,0.926818,0.917507],[0.929717,0.934738,0.923837,0.946539,0.919804,0.928087],[0.930458,0.949724,0.923837,0.946539,0.929717,0.934738],[0.930458,0.949724,0.920690,0.954255,0.923837,0.946539],[0.930458,0.949724,0.925257,0.960146,0.920690,0.954255],[0.938477,0.686111,0.923716,0.682832,0.931313,0.675518],[0.929000,0.693318,0.923716,0.682832,0.938477,0.686111],[0.929000,0.693318,0.918029,0.684746,0.923716,0.682832],[0.929000,0.693318,0.923339,0.696984,0.918029,0.684746],[0.938220,0.708910,0.923339,0.696984,0.929000,0.693318],[0.938220,0.708910,0.928500,0.712904,0.923339,0.696984],[0.941609,0.719764,0.928500,0.712904,0.938220,0.708910],[0.941609,0.719764,0.927623,0.728903,0.928500,0.712904],[0.941609,0.719764,0.937469,0.744444,0.927623,0.728903],[0.941609,0.719764,0.950210,0.730743,0.937469,0.744444],[0.962396,0.714963,0.950210,0.730743,0.941609,0.719764],[0.974715,0.730005,0.950210,0.730743,0.962396,0.714963],[0.974715,0.730005,0.960878,0.744263,0.950210,0.730743],[0.984609,0.742216,0.960878,0.744263,0.974715,0.730005],[0.984609,0.742216,0.969837,0.755380,0.960878,0.744263],[0.994849,0.757738,0.969837,0.755380,0.984609,0.742216],[0.994849,0.757738,0.984444,0.771321,0.969837,0.755380],[0.632099,0.614243,0.621713,0.614243,0.621713,0.595128],[0.632099,0.614243,0.632099,0.629288,0.621713,0.614243],[0.632099,0.614243,0.643477,0.629288,0.632099,0.629288],[0.643476,0.614243,0.643477,0.629288,0.632099,0.614243],[0.662017,0.614243,0.643477,0.629288,0.643476,0.614243],[0.662017,0.614243,0.662017,0.629288,0.643477,0.629288],[0.710575,0.614243,0.662017,0.629288,0.662017,0.614243],[0.710575,0.614243,0.710576,0.629287,0.662017,0.629288],[0.759344,0.614242,0.710576,0.629287,0.710575,0.614243],[0.759344,0.614242,0.759344,0.629287,0.710576,0.629287],[0.783905,0.614242,0.759344,0.629287,0.759344,0.614242],[0.783905,0.614242,0.783905,0.629286,0.759344,0.629287],[0.783905,0.614242,0.812735,0.629286,0.783905,0.629286],[0.812735,0.614241,0.812735,0.629286,0.783905,0.614242],[0.812735,0.614241,0.827712,0.629286,0.812735,0.629286],[0.827711,0.614241,0.827712,0.629286,0.812735,0.614241],[0.827711,0.614241,0.842607,0.614241,0.827712,0.629286],[0.842607,0.595126,0.842607,0.614241,0.827711,0.614241],[0.842607,0.595126,0.886033,0.614240,0.842607,0.614241],[0.842607,0.595126,0.886033,0.595125,0.886033,0.614240],[0.886033,0.578795,0.886033,0.595125,0.842607,0.595126],[0.932329,0.578795,0.886033,0.595125,0.886033,0.578795],[0.932329,0.578795,0.932329,0.595125,0.886033,0.595125],[0.932329,0.578795,0.993006,0.578794,0.932329,0.595125],[0.993006,0.578794,0.932329,0.578795,0.932329,0.557862],[0.932329,0.557862,0.932329,0.578795,0.886033,0.578795],[0.932329,0.557862,0.886033,0.578795,0.886033,0.557862],[0.886033,0.557862,0.886033,0.578795,0.842607,0.557863],[0.886033,0.578795,0.842607,0.578796,0.842607,0.557863],[0.886033,0.578795,0.842607,0.595126,0.842607,0.578796],[0.842607,0.578796,0.842607,0.595126,0.827711,0.578796],[0.842607,0.595126,0.827711,0.595126,0.827711,0.578796],[0.827711,0.595126,0.842607,0.595126,0.827711,0.614241],[0.827711,0.595126,0.827711,0.614241,0.812735,0.614241],[0.827711,0.595126,0.812735,0.614241,0.812735,0.595126],[0.812735,0.595126,0.812735,0.614241,0.783905,0.614242],[0.812735,0.595126,0.783905,0.614242,0.783905,0.595127],[0.783905,0.595127,0.783905,0.614242,0.759344,0.595127],[0.759344,0.595127,0.783905,0.614242,0.759344,0.614242],[0.759344,0.595127,0.759344,0.614242,0.710575,0.595127],[0.759344,0.614242,0.710575,0.614243,0.710575,0.595127],[0.710575,0.595127,0.710575,0.614243,0.662017,0.614243],[0.710575,0.595127,0.662017,0.614243,0.662017,0.595128],[0.662017,0.595128,0.662017,0.614243,0.643476,0.614243],[0.662017,0.595128,0.643476,0.614243,0.643476,0.595128],[0.643476,0.595128,0.643476,0.614243,0.632099,0.595128],[0.643476,0.614243,0.632099,0.614243,0.632099,0.595128],[0.632099,0.595128,0.632099,0.614243,0.621713,0.595128],[0.632099,0.595128,0.621713,0.595128,0.621713,0.578798],[0.983376,0.875067,0.993702,0.885883,0.980695,0.898840],[0.983376,0.875067,0.980695,0.898840,0.969822,0.885677],[0.969822,0.885677,0.980695,0.898840,0.969288,0.908551],[0.969822,0.885677,0.969288,0.908551,0.958815,0.896223],[0.958815,0.896223,0.969288,0.908551,0.955134,0.918613],[0.958815,0.896223,0.955134,0.918613,0.944071,0.908053],[0.944071,0.908053,0.955134,0.918613,0.938510,0.919172],[0.955134,0.918613,0.943241,0.929571,0.938510,0.919172],[0.962396,0.714963,0.941609,0.719764,0.953068,0.706233],[0.953068,0.706233,0.941609,0.719764,0.945755,0.696034],[0.941609,0.719764,0.938220,0.708910,0.945755,0.696034],[0.938220,0.708910,0.929000,0.693318,0.945755,0.696034],[0.945755,0.696034,0.929000,0.693318,0.938477,0.686111],[0.938439,0.937715,0.930458,0.949724,0.929717,0.934738],[0.931634,0.926873,0.938439,0.937715,0.929717,0.934738],[0.943241,0.929571,0.938439,0.937715,0.931634,0.926873],[0.938510,0.919172,0.943241,0.929571,0.931634,0.926873],[0.931634,0.926873,0.926818,0.917507,0.938510,0.919172],[0.931634,0.926873,0.929717,0.934738,0.926818,0.917507],[0.938510,0.919172,0.926818,0.917507,0.944071,0.908053],[0.944071,0.908053,0.926818,0.917507,0.934831,0.895825],[0.934831,0.895825,0.926818,0.917507,0.923149,0.904656],[0.923149,0.904656,0.926818,0.917507,0.914923,0.912188],[0.926818,0.917507,0.909238,0.918935,0.914923,0.912188],[0.914923,0.912188,0.909238,0.918935,0.901318,0.912219],[0.909238,0.918935,0.901133,0.932087,0.901318,0.912219],[0.914923,0.912188,0.901318,0.912219,0.911762,0.902840],[0.911762,0.902840,0.901318,0.912219,0.901691,0.898306],[0.901691,0.898306,0.901318,0.912219,0.894843,0.902842],[0.894843,0.902842,0.901318,0.912219,0.888649,0.917186],[0.888495,0.714229,0.883057,0.726770,0.881285,0.708042],[0.888495,0.714229,0.895025,0.728535,0.883057,0.726770],[0.901691,0.898306,0.894843,0.902842,0.900746,0.886486],[0.901691,0.898306,0.900746,0.886486,0.911588,0.891889],[0.926547,0.883643,0.911588,0.891889,0.900746,0.886486],[0.911762,0.902840,0.911588,0.891889,0.926547,0.883643],[0.911588,0.891889,0.911762,0.902840,0.901691,0.898306],[0.923149,0.904656,0.911762,0.902840,0.926547,0.883643],[0.914923,0.912188,0.911762,0.902840,0.923149,0.904656],[0.923149,0.904656,0.926547,0.883643,0.934831,0.895825],[0.934831,0.895825,0.926547,0.883643,0.942201,0.873720],[0.942201,0.873720,0.926547,0.883643,0.934242,0.862563],[0.926547,0.883643,0.919041,0.871544,0.934242,0.862563],[0.926547,0.883643,0.900746,0.886486,0.919041,0.871544],[0.900746,0.886486,0.901235,0.874448,0.919041,0.871544],[0.919041,0.871544,0.901235,0.874448,0.910020,0.858104],[0.934242,0.862563,0.919041,0.871544,0.910020,0.858104],[0.934242,0.862563,0.910020,0.858104,0.924464,0.850676],[0.924464,0.850676,0.910020,0.858104,0.906039,0.850866],[0.924464,0.850676,0.906039,0.850866,0.917457,0.844073],[0.924464,0.850676,0.917457,0.844073,0.941225,0.840618],[0.941225,0.840618,0.917457,0.844073,0.926981,0.834519],[0.935857,0.814964,0.941225,0.840618,0.926981,0.834519],[0.949215,0.819631,0.941225,0.840618,0.935857,0.814964],[0.959489,0.821136,0.941225,0.840618,0.949215,0.819631],[0.959489,0.821136,0.961960,0.838999,0.941225,0.840618],[0.632098,0.537438,0.621712,0.537438,0.621712,0.519742],[0.632099,0.557865,0.621712,0.537438,0.632098,0.537438],[0.632099,0.557865,0.621712,0.557865,0.621712,0.537438],[0.632099,0.578798,0.621712,0.557865,0.632099,0.557865],[0.632099,0.578798,0.621713,0.578798,0.621712,0.557865],[0.632099,0.578798,0.632099,0.595128,0.621713,0.578798],[0.643476,0.595128,0.632099,0.595128,0.632099,0.578798],[0.643476,0.578798,0.643476,0.595128,0.632099,0.578798],[0.662017,0.578798,0.643476,0.595128,0.643476,0.578798],[0.662017,0.578798,0.662017,0.595128,0.643476,0.595128],[0.710575,0.595127,0.662017,0.595128,0.662017,0.578798],[0.710575,0.578797,0.710575,0.595127,0.662017,0.578798],[0.759343,0.578797,0.710575,0.595127,0.710575,0.578797],[0.759343,0.578797,0.759344,0.595127,0.710575,0.595127],[0.783904,0.578796,0.759344,0.595127,0.759343,0.578797],[0.783904,0.578796,0.783905,0.595127,0.759344,0.595127],[0.812735,0.595126,0.783905,0.595127,0.783904,0.578796],[0.812735,0.578796,0.812735,0.595126,0.783904,0.578796],[0.827711,0.578796,0.812735,0.595126,0.812735,0.578796],[0.827711,0.578796,0.827711,0.595126,0.812735,0.595126],[0.827711,0.578796,0.812735,0.578796,0.812735,0.557863],[0.812735,0.557863,0.812735,0.578796,0.783904,0.578796],[0.812735,0.557863,0.783904,0.578796,0.783904,0.557863],[0.783904,0.557863,0.783904,0.578796,0.759343,0.557864],[0.783904,0.578796,0.759343,0.578797,0.759343,0.557864],[0.759343,0.557864,0.759343,0.578797,0.710575,0.557864],[0.759343,0.578797,0.710575,0.578797,0.710575,0.557864],[0.710575,0.578797,0.662017,0.578798,0.710575,0.557864],[0.710575,0.557864,0.662017,0.578798,0.662017,0.557865],[0.662017,0.578798,0.643476,0.578798,0.662017,0.557865],[0.643476,0.578798,0.643476,0.557865,0.662017,0.557865],[0.643476,0.578798,0.632099,0.557865,0.643476,0.557865],[0.643476,0.578798,0.632099,0.578798,0.632099,0.557865],[0.643476,0.557865,0.632099,0.557865,0.632098,0.537438],[0.643476,0.557865,0.632098,0.537438,0.643476,0.537438],[0.643476,0.537438,0.632098,0.537438,0.632098,0.519742],[0.632098,0.537438,0.621712,0.519742,0.632098,0.519742],[0.632098,0.519742,0.621712,0.519742,0.621712,0.502397],[0.959489,0.821136,0.949215,0.819631,0.963062,0.807175],[0.963062,0.807175,0.949215,0.819631,0.951660,0.803001],[0.949215,0.819631,0.939017,0.800078,0.951660,0.803001],[0.949215,0.819631,0.935857,0.814964,0.939017,0.800078],[0.935857,0.814964,0.919124,0.793570,0.939017,0.800078],[0.935857,0.814964,0.921865,0.810929,0.919124,0.793570],[0.935857,0.814964,0.926981,0.834519,0.921865,0.810929],[0.939545,0.786356,0.939017,0.800078,0.919124,0.793570],[0.950337,0.780653,0.939017,0.800078,0.939545,0.786356],[0.950337,0.780653,0.951660,0.803001,0.939017,0.800078],[0.950337,0.780653,0.963062,0.807175,0.951660,0.803001],[0.972000,0.794356,0.963062,0.807175,0.950337,0.780653],[0.621712,0.485162,0.632098,0.502397,0.621712,0.502397],[0.632098,0.485162,0.632098,0.502397,0.621712,0.485162],[0.632098,0.485162,0.643475,0.502397,0.632098,0.502397],[0.643475,0.485162,0.643475,0.502397,0.632098,0.485162],[0.662016,0.485162,0.643475,0.502397,0.643475,0.485162],[0.662016,0.485162,0.662016,0.502397,0.643475,0.502397],[0.710574,0.485161,0.662016,0.502397,0.662016,0.485162],[0.710574,0.502396,0.662016,0.502397,0.710574,0.485161],[0.710575,0.519741,0.662016,0.502397,0.710574,0.502396],[0.710575,0.519741,0.662016,0.519742,0.662016,0.502397],[0.710575,0.519741,0.662016,0.537438,0.662016,0.519742],[0.710575,0.537437,0.662016,0.537438,0.710575,0.519741],[0.710575,0.557864,0.662016,0.537438,0.710575,0.537437],[0.710575,0.557864,0.662017,0.557865,0.662016,0.537438],[0.662017,0.557865,0.643476,0.557865,0.662016,0.537438],[0.643476,0.557865,0.643476,0.537438,0.662016,0.537438],[0.662016,0.537438,0.643476,0.537438,0.662016,0.519742],[0.662016,0.519742,0.643476,0.537438,0.643476,0.519742],[0.643476,0.537438,0.632098,0.519742,0.643476,0.519742],[0.643476,0.519742,0.632098,0.519742,0.632098,0.502397],[0.632098,0.519742,0.621712,0.502397,0.632098,0.502397],[0.643476,0.519742,0.632098,0.502397,0.643475,0.502397],[0.662016,0.502397,0.643476,0.519742,0.643475,0.502397],[0.662016,0.519742,0.643476,0.519742,0.662016,0.502397],[0.710575,0.557864,0.710575,0.537437,0.759343,0.537437],[0.759343,0.537437,0.710575,0.537437,0.710575,0.519741],[0.759343,0.537437,0.710575,0.519741,0.759343,0.519740],[0.759343,0.519740,0.710575,0.519741,0.759343,0.502395],[0.759343,0.502395,0.710575,0.519741,0.710574,0.502396],[0.759343,0.502395,0.710574,0.502396,0.710574,0.485161],[0.759343,0.502395,0.710574,0.485161,0.759343,0.485161],[0.759342,0.471242,0.759343,0.485161,0.710574,0.485161],[0.783903,0.471242,0.759343,0.485161,0.759342,0.471242],[0.783903,0.471242,0.783904,0.485161,0.759343,0.485161],[0.783903,0.471242,0.812734,0.485160,0.783904,0.485161],[0.812734,0.471242,0.812734,0.485160,0.783903,0.471242],[0.827710,0.471241,0.812734,0.485160,0.812734,0.471242],[0.827710,0.471241,0.827710,0.485160,0.812734,0.485160],[0.827710,0.471241,0.842606,0.471241,0.827710,0.485160],[0.842607,0.614241,0.842608,0.629286,0.827712,0.629286],[0.842607,0.614241,0.886033,0.614240,0.842608,0.629286],[0.886033,0.614240,0.886033,0.629285,0.842608,0.629286],[0.886033,0.614240,0.932330,0.614240,0.886033,0.629285],[0.886033,0.595125,0.932330,0.614240,0.886033,0.614240],[0.886033,0.595125,0.932329,0.595125,0.932330,0.614240],[0.932329,0.595125,0.993006,0.595124,0.932330,0.614240],[0.993006,0.578794,0.993006,0.595124,0.932329,0.595125],[0.993006,0.595124,0.993006,0.614239,0.932330,0.614240],[0.932330,0.614240,0.993006,0.614239,0.993006,0.629284],[0.932330,0.614240,0.993006,0.629284,0.932330,0.629284],[0.993005,0.471240,0.932328,0.485159,0.932328,0.471240],[0.993005,0.485158,0.932328,0.485159,0.993005,0.471240],[0.993005,0.502393,0.932328,0.485159,0.993005,0.485158],[0.993005,0.502393,0.932329,0.502393,0.932328,0.485159],[0.993005,0.519738,0.932329,0.502393,0.993005,0.502393],[0.932329,0.519738,0.932329,0.502393,0.993005,0.519738],[0.932329,0.519738,0.886032,0.502394,0.932329,0.502393],[0.886032,0.519739,0.886032,0.502394,0.932329,0.519738],[0.842607,0.519739,0.886032,0.502394,0.886032,0.519739],[0.842607,0.519739,0.842606,0.502394,0.886032,0.502394],[0.842607,0.519739,0.827710,0.502395,0.842606,0.502394],[0.842607,0.519739,0.827711,0.519740,0.827710,0.502395],[0.827711,0.537436,0.827711,0.519740,0.842607,0.519739],[0.827711,0.537436,0.812734,0.519740,0.827711,0.519740],[0.827711,0.537436,0.812734,0.537436,0.812734,0.519740],[0.812735,0.557863,0.812734,0.537436,0.827711,0.537436],[0.812735,0.557863,0.783904,0.537436,0.812734,0.537436],[0.812735,0.557863,0.783904,0.557863,0.783904,0.537436],[0.783904,0.557863,0.759343,0.557864,0.783904,0.537436],[0.759343,0.557864,0.759343,0.537437,0.783904,0.537436],[0.759343,0.557864,0.710575,0.557864,0.759343,0.537437],[0.783904,0.537436,0.759343,0.537437,0.759343,0.519740],[0.783904,0.537436,0.759343,0.519740,0.783904,0.519740],[0.783904,0.519740,0.759343,0.519740,0.783904,0.502395],[0.783904,0.502395,0.759343,0.519740,0.759343,0.502395],[0.783904,0.502395,0.759343,0.502395,0.759343,0.485161],[0.783904,0.502395,0.759343,0.485161,0.783904,0.485161],[0.812734,0.485160,0.783904,0.502395,0.783904,0.485161],[0.812734,0.502395,0.783904,0.502395,0.812734,0.485160],[0.812734,0.519740,0.783904,0.502395,0.812734,0.502395],[0.812734,0.519740,0.783904,0.519740,0.783904,0.502395],[0.783904,0.537436,0.783904,0.519740,0.812734,0.519740],[0.812734,0.537436,0.783904,0.537436,0.812734,0.519740],[0.827710,0.502395,0.812734,0.519740,0.812734,0.502395],[0.827711,0.519740,0.812734,0.519740,0.827710,0.502395],[0.827710,0.502395,0.812734,0.502395,0.812734,0.485160],[0.827710,0.502395,0.812734,0.485160,0.827710,0.485160],[0.842606,0.485160,0.827710,0.502395,0.827710,0.485160],[0.842606,0.502394,0.827710,0.502395,0.842606,0.485160],[0.886032,0.502394,0.842606,0.502394,0.842606,0.485160],[0.886032,0.502394,0.842606,0.485160,0.886032,0.485159],[0.886032,0.485159,0.842606,0.485160,0.886032,0.471241],[0.842606,0.471241,0.886032,0.471241,0.842606,0.485160],[0.842606,0.471241,0.842606,0.485160,0.827710,0.485160],[0.932328,0.485159,0.886032,0.485159,0.886032,0.471241],[0.932328,0.485159,0.886032,0.502394,0.886032,0.485159],[0.932329,0.502393,0.886032,0.502394,0.932328,0.485159],[0.932328,0.485159,0.886032,0.471241,0.932328,0.471240],[0.932330,0.614240,0.932330,0.629284,0.886033,0.629285],[0.827711,0.557863,0.812735,0.557863,0.827711,0.537436],[0.827711,0.557863,0.827711,0.578796,0.812735,0.557863],[0.842607,0.557863,0.827711,0.578796,0.827711,0.557863],[0.842607,0.557863,0.842607,0.578796,0.827711,0.578796],[0.842607,0.557863,0.827711,0.557863,0.827711,0.537436],[0.842607,0.557863,0.827711,0.537436,0.842607,0.537436],[0.842607,0.537436,0.827711,0.537436,0.842607,0.519739],[0.886032,0.537435,0.842607,0.537436,0.842607,0.519739],[0.842607,0.557863,0.842607,0.537436,0.886032,0.537435],[0.886032,0.537435,0.886033,0.557862,0.842607,0.557863],[0.932329,0.557862,0.886033,0.557862,0.886032,0.537435],[0.932329,0.537435,0.932329,0.557862,0.886032,0.537435],[0.993006,0.557861,0.932329,0.557862,0.932329,0.537435],[0.993006,0.557861,0.993006,0.578794,0.932329,0.557862],[0.993005,0.537434,0.993006,0.557861,0.932329,0.537435],[0.932329,0.537435,0.932329,0.519738,0.993005,0.537434],[0.932329,0.537435,0.886032,0.537435,0.932329,0.519738],[0.886032,0.537435,0.886032,0.519739,0.932329,0.519738],[0.886032,0.537435,0.842607,0.519739,0.886032,0.519739],[0.993005,0.537434,0.932329,0.519738,0.993005,0.519738],[0.759342,0.471242,0.710574,0.485161,0.710574,0.471243],[0.710574,0.471243,0.710574,0.485161,0.662016,0.471244],[0.662016,0.471244,0.710574,0.485161,0.662016,0.485162],[0.662016,0.471244,0.662016,0.485162,0.643475,0.485162],[0.662016,0.471244,0.643475,0.485162,0.643475,0.471244],[0.643475,0.471244,0.643475,0.485162,0.632098,0.471244],[0.632098,0.471244,0.643475,0.485162,0.632098,0.485162],[0.632098,0.471244,0.632098,0.485162,0.621712,0.471244],[0.621712,0.471244,0.632098,0.485162,0.621712,0.485162],[0.978415,0.783340,0.972000,0.794356,0.959730,0.768836],[0.959730,0.768836,0.972000,0.794356,0.950337,0.780653],[0.959730,0.768836,0.950337,0.780653,0.949657,0.757588],[0.950337,0.780653,0.938332,0.768904,0.949657,0.757588],[0.938332,0.768904,0.950337,0.780653,0.930718,0.775506],[0.950337,0.780653,0.939545,0.786356,0.930718,0.775506],[0.930718,0.775506,0.939545,0.786356,0.919124,0.793570],[0.930718,0.775506,0.919124,0.793570,0.911432,0.783638],[0.911432,0.783638,0.919124,0.793570,0.896127,0.790437],[0.911432,0.783638,0.896127,0.790437,0.890604,0.779743],[0.911432,0.783638,0.890604,0.779743,0.904746,0.769652],[0.904746,0.769652,0.890604,0.779743,0.888914,0.774996],[0.888914,0.774996,0.890604,0.779743,0.881629,0.785521],[0.881629,0.785521,0.876243,0.776528,0.888914,0.774996],[0.876243,0.776528,0.881629,0.785521,0.864846,0.785976],[0.876243,0.776528,0.864846,0.785976,0.861338,0.779019],[0.861338,0.779019,0.864846,0.785976,0.857180,0.780909],[0.871924,0.836666,0.866270,0.836016,0.866428,0.827824],[0.866270,0.836016,0.860639,0.827878,0.866428,0.827824],[0.861248,0.838003,0.860639,0.827878,0.866270,0.836016],[0.861248,0.838003,0.848684,0.836989,0.860639,0.827878],[0.848684,0.836989,0.852414,0.829999,0.860639,0.827878],[0.848684,0.836989,0.842023,0.833111,0.852414,0.829999],[0.842023,0.833111,0.841732,0.829123,0.852414,0.829999],[0.841732,0.829123,0.851279,0.828234,0.852414,0.829999],[0.852638,0.821894,0.852414,0.829999,0.851279,0.828234],[0.852414,0.829999,0.852638,0.821894,0.853937,0.821927],[0.853937,0.821927,0.852638,0.821894,0.852830,0.813929],[0.852830,0.813929,0.852638,0.821894,0.851544,0.815460],[0.851544,0.815460,0.852638,0.821894,0.851508,0.821790],[0.851508,0.821790,0.852638,0.821894,0.851279,0.828234],[0.851508,0.821790,0.851279,0.828234,0.850420,0.827079],[0.851544,0.815460,0.842253,0.815189,0.842046,0.813405],[0.842253,0.815189,0.835804,0.813631,0.842046,0.813405],[0.843028,0.809698,0.842046,0.813405,0.835804,0.813631],[0.852830,0.813929,0.842046,0.813405,0.843028,0.809698],[0.852830,0.813929,0.851544,0.815460,0.842046,0.813405],[0.852830,0.813929,0.843028,0.809698,0.849652,0.807217],[0.836102,0.808430,0.849652,0.807217,0.843028,0.809698],[0.845010,0.803051,0.849652,0.807217,0.836102,0.808430],[0.845010,0.803051,0.861522,0.805831,0.849652,0.807217],[0.861286,0.799470,0.861522,0.805831,0.845010,0.803051],[0.861286,0.799470,0.865959,0.799463,0.861522,0.805831],[0.864364,0.792562,0.865959,0.799463,0.861286,0.799470],[0.867825,0.791287,0.865959,0.799463,0.864364,0.792562],[0.867825,0.791287,0.869702,0.797383,0.865959,0.799463],[0.869702,0.797383,0.866499,0.806552,0.865959,0.799463],[0.869702,0.797383,0.872480,0.805344,0.866499,0.806552],[0.884714,0.793532,0.872480,0.805344,0.869702,0.797383],[0.884714,0.793532,0.888193,0.802809,0.872480,0.805344],[0.884714,0.793532,0.901780,0.799450,0.888193,0.802809],[0.905086,0.811724,0.888193,0.802809,0.901780,0.799450],[0.905086,0.811724,0.889567,0.813619,0.888193,0.802809],[0.905086,0.811724,0.903282,0.826447,0.889567,0.813619],[0.915046,0.830141,0.903282,0.826447,0.905086,0.811724],[0.915046,0.830141,0.899403,0.835113,0.903282,0.826447],[0.907238,0.839247,0.899403,0.835113,0.915046,0.830141],[0.902890,0.844418,0.899403,0.835113,0.907238,0.839247],[0.902890,0.844418,0.890615,0.847683,0.899403,0.835113],[0.902890,0.844418,0.890186,0.855677,0.890615,0.847683],[0.890186,0.855677,0.871595,0.859328,0.890615,0.847683],[0.890344,0.866549,0.871595,0.859328,0.890186,0.855677],[0.890344,0.866549,0.877745,0.870445,0.871595,0.859328],[0.881545,0.882065,0.877745,0.870445,0.890344,0.866549],[0.881545,0.882065,0.873698,0.883390,0.877745,0.870445],[0.876478,0.893320,0.873698,0.883390,0.881545,0.882065],[0.876478,0.893320,0.850496,0.897240,0.873698,0.883390],[0.862803,0.735949,0.844412,0.742710,0.842902,0.728978],[0.865288,0.747730,0.844412,0.742710,0.862803,0.735949],[0.865288,0.747730,0.841825,0.749603,0.844412,0.742710],[0.865288,0.747730,0.862997,0.756287,0.841825,0.749603],[0.875471,0.749216,0.862997,0.756287,0.865288,0.747730],[0.875471,0.749216,0.871093,0.759407,0.862997,0.756287],[0.889426,0.755563,0.871093,0.759407,0.875471,0.749216],[0.889426,0.755563,0.882294,0.764915,0.871093,0.759407],[0.899586,0.763539,0.882294,0.764915,0.889426,0.755563],[0.899586,0.763539,0.886790,0.770748,0.882294,0.764915],[0.899586,0.763539,0.888914,0.774996,0.886790,0.770748],[0.904746,0.769652,0.888914,0.774996,0.899586,0.763539],[0.904746,0.769652,0.899586,0.763539,0.909130,0.759916],[0.909130,0.759916,0.899586,0.763539,0.907829,0.741042],[0.907829,0.741042,0.899586,0.763539,0.889426,0.755563],[0.907829,0.741042,0.889426,0.755563,0.887664,0.738223],[0.889426,0.755563,0.875471,0.749216,0.887664,0.738223],[0.887664,0.738223,0.875471,0.749216,0.873562,0.735841],[0.875099,0.895087,0.878817,0.900782,0.871558,0.896349],[0.887265,0.893836,0.878817,0.900782,0.875099,0.895087],[0.883887,0.909029,0.878817,0.900782,0.887265,0.893836],[0.883887,0.909029,0.859751,0.914190,0.878817,0.900782],[0.883887,0.909029,0.868683,0.918768,0.859751,0.914190],[0.883887,0.909029,0.868928,0.928510,0.868683,0.918768],[0.868683,0.918768,0.868928,0.928510,0.866070,0.930611],[0.861389,0.711310,0.860691,0.696299,0.863367,0.698350],[0.861389,0.711310,0.856052,0.708739,0.860691,0.696299],[0.861389,0.711310,0.858020,0.718337,0.856052,0.708739],[0.861389,0.711310,0.879729,0.732293,0.858020,0.718337],[0.879729,0.732293,0.853736,0.725079,0.858020,0.718337],[0.879729,0.732293,0.873562,0.735841,0.853736,0.725079],[0.887664,0.738223,0.873562,0.735841,0.879729,0.732293],[0.871558,0.896349,0.859751,0.914190,0.855237,0.901347],[0.871558,0.896349,0.878817,0.900782,0.859751,0.914190],[0.855237,0.901347,0.859751,0.914190,0.856788,0.915817],[0.868683,0.918768,0.856788,0.915817,0.859751,0.914190],[0.868683,0.918768,0.861670,0.923252,0.856788,0.915817],[0.866070,0.930611,0.861670,0.923252,0.868683,0.918768],[0.866070,0.930611,0.862675,0.932200,0.861670,0.923252],[0.856052,0.708739,0.857300,0.695693,0.860691,0.696299],[0.856052,0.708739,0.850809,0.706801,0.857300,0.695693],[0.856052,0.708739,0.847602,0.712964,0.850809,0.706801],[0.856052,0.708739,0.853005,0.715508,0.847602,0.712964],[0.856052,0.708739,0.858020,0.718337,0.853005,0.715508],[0.858020,0.718337,0.849466,0.721805,0.853005,0.715508],[0.853736,0.725079,0.849466,0.721805,0.858020,0.718337],[0.855237,0.901347,0.856788,0.915817,0.850359,0.906316],[0.850359,0.906316,0.856788,0.915817,0.854262,0.917865],[0.861670,0.923252,0.854262,0.917865,0.856788,0.915817],[0.861670,0.923252,0.855694,0.926742,0.854262,0.917865],[0.862675,0.932200,0.855694,0.926742,0.861670,0.923252],[0.845071,0.932931,0.855694,0.926742,0.862675,0.932200],[0.855694,0.926742,0.845071,0.932931,0.854262,0.917865],[0.854262,0.917865,0.845071,0.932931,0.837731,0.927953],[0.845071,0.932931,0.835094,0.929884,0.837731,0.927953],[0.845071,0.932931,0.838800,0.936505,0.835094,0.929884],[0.842098,0.943719,0.838800,0.936505,0.845071,0.932931],[0.838087,0.944957,0.838800,0.936505,0.842098,0.943719],[0.838087,0.944957,0.832857,0.939119,0.838800,0.936505],[0.828525,0.940804,0.832857,0.939119,0.838087,0.944957],[0.823346,0.934452,0.832857,0.939119,0.828525,0.940804],[0.823346,0.934452,0.832058,0.931272,0.832857,0.939119],[0.816431,0.926176,0.832058,0.931272,0.823346,0.934452],[0.822642,0.921238,0.832058,0.931272,0.816431,0.926176],[0.827913,0.919442,0.832058,0.931272,0.822642,0.921238],[0.827913,0.919442,0.835094,0.929884,0.832058,0.931272],[0.831812,0.915519,0.835094,0.929884,0.827913,0.919442],[0.831812,0.915519,0.837731,0.927953,0.835094,0.929884],[0.844280,0.908438,0.837731,0.927953,0.831812,0.915519],[0.844280,0.908438,0.854262,0.917865,0.837731,0.927953],[0.850359,0.906316,0.854262,0.917865,0.844280,0.908438],[0.853005,0.715508,0.849466,0.721805,0.844281,0.719325],[0.847602,0.712964,0.853005,0.715508,0.844281,0.719325],[0.830381,0.712833,0.847602,0.712964,0.844281,0.719325],[0.833049,0.705752,0.847602,0.712964,0.830381,0.712833],[0.837121,0.699481,0.847602,0.712964,0.833049,0.705752],[0.850809,0.706801,0.847602,0.712964,0.837121,0.699481],[0.850809,0.706801,0.837121,0.699481,0.840307,0.686410],[0.837121,0.699481,0.837423,0.684291,0.840307,0.686410],[0.837121,0.699481,0.832388,0.696804,0.837423,0.684291],[0.837121,0.699481,0.833049,0.705752,0.832388,0.696804],[0.832388,0.696804,0.833049,0.705752,0.829020,0.703745],[0.833049,0.705752,0.825883,0.710228,0.829020,0.703745],[0.833049,0.705752,0.830381,0.712833,0.825883,0.710228],[0.829020,0.703745,0.825883,0.710228,0.820925,0.708203],[0.824800,0.702054,0.829020,0.703745,0.820925,0.708203],[0.827349,0.695429,0.829020,0.703745,0.824800,0.702054],[0.827349,0.695429,0.832388,0.696804,0.829020,0.703745],[0.832388,0.696804,0.827349,0.695429,0.833830,0.683623],[0.827349,0.695429,0.820364,0.692466,0.833830,0.683623],[0.827349,0.695429,0.816624,0.698198,0.820364,0.692466],[0.827349,0.695429,0.824800,0.702054,0.816624,0.698198],[0.816624,0.698198,0.824800,0.702054,0.820925,0.708203],[0.816624,0.698198,0.820925,0.708203,0.813560,0.704289],[0.808374,0.693204,0.816624,0.698198,0.813560,0.704289],[0.820364,0.692466,0.816624,0.698198,0.808374,0.693204],[0.820364,0.692466,0.808374,0.693204,0.811869,0.688601],[0.811869,0.688601,0.808374,0.693204,0.803523,0.688625],[0.808374,0.693204,0.804827,0.697900,0.803523,0.688625],[0.808374,0.693204,0.813560,0.704289,0.804827,0.697900],[0.816431,0.926176,0.823346,0.934452,0.809149,0.932946],[0.809149,0.932946,0.823346,0.934452,0.813789,0.938775],[0.823346,0.934452,0.822882,0.936933,0.813789,0.938775],[0.826871,0.941453,0.822882,0.936933,0.823346,0.934452],[0.825233,0.942085,0.822882,0.936933,0.826871,0.941453],[0.821760,0.938328,0.822882,0.936933,0.825233,0.942085],[0.822882,0.936933,0.814674,0.940323,0.813789,0.938775],[0.813789,0.938775,0.814674,0.940323,0.807218,0.942817],[0.814674,0.940323,0.808517,0.943963,0.807218,0.942817],[0.815682,0.941352,0.821450,0.939027,0.824497,0.942362],[0.809652,0.944551,0.815682,0.941352,0.817482,0.945020],[0.817482,0.945020,0.815682,0.941352,0.824497,0.942362],[0.818593,0.948963,0.817482,0.945020,0.824497,0.942362],[0.811843,0.950199,0.817482,0.945020,0.818593,0.948963],[0.811843,0.950199,0.810875,0.947334,0.817482,0.945020],[0.810847,0.949862,0.810103,0.947603,0.811843,0.950199],[0.809294,0.947889,0.808021,0.945669,0.809116,0.945430],[0.806927,0.944559,0.808387,0.944506,0.808021,0.945669],[0.807218,0.942817,0.808387,0.944506,0.806927,0.944559],[0.806143,0.938743,0.813789,0.938775,0.807218,0.942817],[0.809149,0.932946,0.813789,0.938775,0.806143,0.938743],[0.803523,0.688625,0.804827,0.697900,0.800807,0.691548],[0.800807,0.691548,0.797904,0.687181,0.803523,0.688625],[0.803523,0.688625,0.797904,0.687181,0.799938,0.683950],[0.809862,0.950374,0.809294,0.947889,0.810847,0.949862],[0.809862,0.950374,0.811843,0.950199,0.810941,0.951000],[0.818593,0.948963,0.810941,0.951000,0.811843,0.950199],[0.810941,0.951000,0.818593,0.948963,0.818751,0.950002],[0.824482,0.946839,0.818751,0.950002,0.818593,0.948963],[0.811000,0.952955,0.809762,0.951894,0.810941,0.951000],[0.806460,0.685890,0.803428,0.682458,0.804822,0.682179],[0.806460,0.685890,0.803523,0.688625,0.803428,0.682458],[0.811869,0.688601,0.803523,0.688625,0.806460,0.685890],[0.811869,0.688601,0.806460,0.685890,0.813160,0.681483],[0.806460,0.685890,0.804822,0.682179,0.813160,0.681483],[0.811000,0.952955,0.818618,0.950512,0.819020,0.952392],[0.818618,0.950512,0.811000,0.952955,0.811433,0.951328],[0.827037,0.947438,0.819020,0.952392,0.818618,0.950512],[0.819020,0.952392,0.827037,0.947438,0.829214,0.948836],[0.829214,0.948836,0.827037,0.947438,0.826871,0.941453],[0.827037,0.947438,0.825233,0.942085,0.826871,0.941453],[0.825158,0.947143,0.825233,0.942085,0.827037,0.947438],[0.818593,0.948963,0.824497,0.942362,0.824482,0.946839],[0.818618,0.950512,0.825158,0.947143,0.827037,0.947438],[0.829214,0.948836,0.826871,0.941453,0.828525,0.940804],[0.828525,0.940804,0.826871,0.941453,0.823346,0.934452],[0.829214,0.948836,0.828525,0.940804,0.838087,0.944957],[0.820364,0.692466,0.824221,0.682522,0.833830,0.683623],[0.820364,0.692466,0.811869,0.688601,0.824221,0.682522],[0.811869,0.688601,0.813160,0.681483,0.824221,0.682522],[0.803428,0.682458,0.803523,0.688625,0.799938,0.683950],[0.809762,0.951894,0.809862,0.950374,0.810941,0.951000],[0.808387,0.944506,0.809652,0.944551,0.808021,0.945669],[0.810875,0.947334,0.809652,0.944551,0.817482,0.945020],[0.832388,0.696804,0.833830,0.683623,0.837423,0.684291],[0.845071,0.932931,0.845476,0.941532,0.842098,0.943719],[0.845476,0.941532,0.845071,0.932931,0.862675,0.932200],[0.850809,0.706801,0.840307,0.686410,0.857300,0.695693],[0.832058,0.931272,0.835094,0.929884,0.838800,0.936505],[0.832857,0.939119,0.832058,0.931272,0.838800,0.936505],[0.869938,0.738732,0.875471,0.749216,0.865288,0.747730],[0.869938,0.738732,0.865288,0.747730,0.862803,0.735949],[0.887265,0.893836,0.876478,0.893320,0.881545,0.882065],[0.887265,0.893836,0.881545,0.882065,0.890426,0.879990],[0.890426,0.879990,0.881545,0.882065,0.890344,0.866549],[0.907829,0.741042,0.923241,0.755291,0.909130,0.759916],[0.923241,0.755291,0.907829,0.741042,0.927623,0.728903],[0.927623,0.728903,0.907829,0.741042,0.907151,0.724300],[0.927623,0.728903,0.907151,0.724300,0.919415,0.716308],[0.919415,0.716308,0.907151,0.724300,0.898241,0.712030],[0.907151,0.724300,0.890900,0.712751,0.898241,0.712030],[0.890900,0.712751,0.888022,0.695748,0.898241,0.712030],[0.890900,0.712751,0.882654,0.701259,0.888022,0.695748],[0.885932,0.924023,0.893855,0.926005,0.873689,0.935727],[0.893855,0.926005,0.882337,0.943564,0.873689,0.935727],[0.873689,0.935727,0.882337,0.943564,0.881188,0.945940],[0.887330,0.950509,0.881188,0.945940,0.882337,0.943564],[0.879151,0.947747,0.881188,0.945940,0.887330,0.950509],[0.868009,0.941521,0.881188,0.945940,0.879151,0.947747],[0.868009,0.941521,0.871629,0.938420,0.881188,0.945940],[0.883266,0.689523,0.880543,0.696284,0.876969,0.693319],[0.883266,0.689523,0.885779,0.692494,0.880543,0.696284],[0.883266,0.689523,0.891293,0.688038,0.885779,0.692494],[0.888428,0.684737,0.891293,0.688038,0.883266,0.689523],[0.891293,0.688038,0.888428,0.684737,0.900274,0.679986],[0.888428,0.684737,0.897824,0.678070,0.900274,0.679986],[0.888428,0.684737,0.880466,0.675051,0.897824,0.678070],[0.888428,0.684737,0.875063,0.678587,0.880466,0.675051],[0.888428,0.684737,0.883266,0.689523,0.875063,0.678587],[0.875063,0.678587,0.883266,0.689523,0.876969,0.693319],[0.875063,0.678587,0.876969,0.693319,0.869986,0.682762],[0.868009,0.941521,0.879151,0.947747,0.860795,0.951747],[0.860795,0.951747,0.879151,0.947747,0.869177,0.960638],[0.883335,0.955365,0.869177,0.960638,0.879151,0.947747],[0.883335,0.955365,0.877424,0.962590,0.869177,0.960638],[0.877424,0.962590,0.883335,0.955365,0.891463,0.957802],[0.891463,0.957802,0.883335,0.955365,0.887330,0.950509],[0.887330,0.950509,0.883335,0.955365,0.879151,0.947747],[0.891463,0.957802,0.887330,0.950509,0.893571,0.955518],[0.894918,0.953283,0.893571,0.955518,0.887330,0.950509],[0.894149,0.691952,0.900274,0.679986,0.900939,0.682624],[0.894149,0.691952,0.891293,0.688038,0.900274,0.679986],[0.894149,0.691952,0.885779,0.692494,0.891293,0.688038],[0.894149,0.691952,0.888022,0.695748,0.885779,0.692494],[0.905550,0.705412,0.888022,0.695748,0.894149,0.691952],[0.905550,0.705412,0.898241,0.712030,0.888022,0.695748],[0.919415,0.716308,0.898241,0.712030,0.905550,0.705412],[0.919415,0.716308,0.905550,0.705412,0.916489,0.702328],[0.916489,0.702328,0.905550,0.705412,0.910973,0.696289],[0.905550,0.705412,0.894149,0.691952,0.910973,0.696289],[0.910973,0.696289,0.894149,0.691952,0.900939,0.682624],[0.913940,0.934624,0.919804,0.928087,0.917206,0.943472],[0.923837,0.946539,0.917206,0.943472,0.919804,0.928087],[0.923837,0.946539,0.920690,0.954255,0.917206,0.943472],[0.920690,0.954255,0.913233,0.955041,0.917206,0.943472],[0.920690,0.954255,0.918597,0.959562,0.913233,0.955041],[0.925257,0.960146,0.918597,0.959562,0.920690,0.954255],[0.925257,0.960146,0.924623,0.962190,0.918597,0.959562],[0.922806,0.679095,0.931280,0.674142,0.931313,0.675518],[0.920893,0.675674,0.931280,0.674142,0.922806,0.679095],[0.920893,0.675674,0.930082,0.672961,0.931280,0.674142],[0.920893,0.675674,0.918868,0.667974,0.930082,0.672961],[0.918868,0.667974,0.920893,0.675674,0.913150,0.669042],[0.913150,0.669042,0.920893,0.675674,0.915684,0.678216],[0.915684,0.678216,0.920893,0.675674,0.922806,0.679095],[0.922806,0.679095,0.917003,0.681641,0.915684,0.678216],[0.923716,0.682832,0.917003,0.681641,0.922806,0.679095],[0.923716,0.682832,0.918029,0.684746,0.917003,0.681641],[0.918029,0.684746,0.912345,0.687196,0.917003,0.681641],[0.917180,0.698658,0.912345,0.687196,0.918029,0.684746],[0.910506,0.941923,0.917206,0.943472,0.905398,0.950349],[0.913940,0.934624,0.917206,0.943472,0.910506,0.941923],[0.928500,0.712904,0.919415,0.716308,0.917180,0.698658],[0.927623,0.728903,0.919415,0.716308,0.928500,0.712904],[0.928500,0.712904,0.917180,0.698658,0.923339,0.696984],[0.923339,0.696984,0.917180,0.698658,0.918029,0.684746],[0.917206,0.943472,0.913233,0.955041,0.905398,0.950349],[0.905398,0.950349,0.913233,0.955041,0.904180,0.953906],[0.904180,0.953906,0.913233,0.955041,0.912685,0.957225],[0.918597,0.959562,0.912685,0.957225,0.913233,0.955041],[0.911515,0.959438,0.912685,0.957225,0.918597,0.959562],[0.902372,0.957404,0.912685,0.957225,0.911515,0.959438],[0.902372,0.957404,0.904180,0.953906,0.912685,0.957225],[0.915684,0.678216,0.911300,0.683210,0.909721,0.679120],[0.915684,0.678216,0.917003,0.681641,0.911300,0.683210],[0.917003,0.681641,0.912345,0.687196,0.911300,0.683210],[0.913150,0.669042,0.915684,0.678216,0.909721,0.679120],[0.913150,0.669042,0.909721,0.679120,0.907434,0.670830],[0.902372,0.957404,0.911515,0.959438,0.900384,0.965027],[0.900384,0.965027,0.911515,0.959438,0.908151,0.969275],[0.908151,0.969275,0.911515,0.959438,0.916489,0.964453],[0.916489,0.964453,0.911515,0.959438,0.918597,0.959562],[0.923447,0.964302,0.916489,0.964453,0.918597,0.959562],[0.919148,0.973698,0.916489,0.964453,0.923447,0.964302],[0.919148,0.973698,0.914799,0.968856,0.916489,0.964453],[0.919148,0.973698,0.913143,0.973436,0.914799,0.968856],[0.919148,0.973698,0.918547,0.975948,0.913143,0.973436],[0.918669,0.664277,0.927045,0.661548,0.926590,0.663411],[0.918669,0.664277,0.925712,0.659949,0.927045,0.661548],[0.916995,0.660956,0.925712,0.659949,0.918669,0.664277],[0.915912,0.656265,0.925712,0.659949,0.916995,0.660956],[0.915912,0.656265,0.922350,0.653450,0.925712,0.659949],[0.915912,0.656265,0.915117,0.649648,0.922350,0.653450],[0.915117,0.649648,0.915912,0.656265,0.910284,0.650362],[0.910284,0.650362,0.915912,0.656265,0.910817,0.657051],[0.915912,0.656265,0.916995,0.660956,0.910817,0.657051],[0.910817,0.657051,0.916995,0.660956,0.911775,0.662415],[0.916995,0.660956,0.918669,0.664277,0.911775,0.662415],[0.918669,0.664277,0.912539,0.665696,0.911775,0.662415],[0.918868,0.667974,0.912539,0.665696,0.918669,0.664277],[0.918868,0.667974,0.913150,0.669042,0.912539,0.665696],[0.913150,0.669042,0.907434,0.670830,0.912539,0.665696],[0.912539,0.665696,0.907434,0.670830,0.906762,0.666852],[0.900258,0.968706,0.900384,0.965027,0.908151,0.969275],[0.900258,0.968706,0.908151,0.969275,0.907885,0.971326],[0.913143,0.973436,0.907885,0.971326,0.908151,0.969275],[0.906783,0.973109,0.907885,0.971326,0.913143,0.973436],[0.900258,0.968706,0.907885,0.971326,0.906783,0.973109],[0.897689,0.972181,0.900258,0.968706,0.906783,0.973109],[0.911775,0.662415,0.906762,0.666852,0.906274,0.662826],[0.912539,0.665696,0.906762,0.666852,0.911775,0.662415],[0.910817,0.657051,0.911775,0.662415,0.906274,0.662826],[0.910817,0.657051,0.906274,0.662826,0.905629,0.657419],[0.896779,0.977331,0.897689,0.972181,0.906783,0.973109],[0.896779,0.977331,0.906783,0.973109,0.903591,0.979555],[0.903591,0.979555,0.906783,0.973109,0.911103,0.977597],[0.911103,0.977597,0.906783,0.973109,0.913143,0.973436],[0.911103,0.977597,0.913143,0.973436,0.917288,0.978155],[0.917288,0.978155,0.913143,0.973436,0.918547,0.975948],[0.909499,0.980688,0.911103,0.977597,0.917288,0.978155],[0.909499,0.980688,0.903591,0.979555,0.911103,0.977597],[0.908822,0.982025,0.903591,0.979555,0.909499,0.980688],[0.908822,0.982025,0.904518,0.981124,0.903591,0.979555],[0.908275,0.983072,0.904518,0.981124,0.908822,0.982025],[0.908275,0.983072,0.904594,0.982420,0.904518,0.981124],[0.900407,0.985914,0.904518,0.981124,0.901648,0.986399],[0.900407,0.985914,0.903591,0.979555,0.904518,0.981124],[0.896705,0.984479,0.903591,0.979555,0.900407,0.985914],[0.896779,0.977331,0.903591,0.979555,0.896705,0.984479],[0.910284,0.650362,0.905629,0.657419,0.905424,0.649953],[0.910284,0.650362,0.910817,0.657051,0.905629,0.657419],[0.910303,0.644952,0.910284,0.650362,0.905424,0.649953],[0.910303,0.644952,0.915117,0.649648,0.910284,0.650362],[0.910303,0.644952,0.913300,0.645453,0.915117,0.649648],[0.913300,0.645453,0.910303,0.644952,0.914007,0.642251],[0.914007,0.642251,0.910303,0.644952,0.911261,0.640791],[0.910303,0.644952,0.908153,0.641205,0.911261,0.640791],[0.910303,0.644952,0.907228,0.644910,0.908153,0.641205],[0.910303,0.644952,0.905424,0.649953,0.907228,0.644910],[0.896705,0.984479,0.900407,0.985914,0.896248,0.989324],[0.896248,0.989324,0.900407,0.985914,0.898888,0.990980],[0.898888,0.990980,0.900407,0.985914,0.901648,0.986399],[0.898888,0.990980,0.901648,0.986399,0.900177,0.991030],[0.898888,0.990980,0.900405,0.991448,0.899608,0.992129],[0.902714,0.986598,0.904779,0.982948,0.908045,0.983508],[0.905656,0.987936,0.902714,0.986598,0.908045,0.983508],[0.901122,0.990940,0.902714,0.986598,0.905656,0.987936],[0.903314,0.992062,0.901122,0.990940,0.905656,0.987936],[0.905464,0.993249,0.903314,0.992062,0.905656,0.987936],[0.905464,0.993249,0.905656,0.987936,0.908411,0.989642],[0.908411,0.989642,0.905656,0.987936,0.908045,0.983508],[0.908411,0.989642,0.908045,0.983508,0.910315,0.985879],[0.911978,0.985046,0.910821,0.985754,0.908275,0.983072],[0.909252,0.990465,0.910821,0.985754,0.911978,0.985046],[0.906431,0.995163,0.905202,0.995138,0.905394,0.994093],[0.913300,0.645453,0.914007,0.642251,0.914827,0.642988],[0.913300,0.645453,0.914827,0.642988,0.918381,0.647319],[0.906431,0.995163,0.909252,0.990465,0.910415,0.991315],[0.906431,0.995163,0.905877,0.994050,0.909252,0.990465],[0.909252,0.990465,0.911978,0.985046,0.910415,0.991315],[0.910415,0.991315,0.911978,0.985046,0.913811,0.984753],[0.911978,0.985046,0.908822,0.982025,0.913811,0.984753],[0.911978,0.985046,0.908275,0.983072,0.908822,0.982025],[0.913811,0.984753,0.908822,0.982025,0.909499,0.980688],[0.913811,0.984753,0.909499,0.980688,0.917288,0.978155],[0.915117,0.649648,0.918381,0.647319,0.922350,0.653450],[0.913300,0.645453,0.918381,0.647319,0.915117,0.649648],[0.913143,0.973436,0.908151,0.969275,0.914799,0.968856],[0.908151,0.969275,0.916489,0.964453,0.914799,0.968856],[0.918868,0.667974,0.918669,0.664277,0.926590,0.663411],[0.918868,0.667974,0.926590,0.663411,0.930082,0.672961],[0.923447,0.964302,0.918597,0.959562,0.924623,0.962190],[0.923716,0.682832,0.922806,0.679095,0.931313,0.675518],[0.888022,0.695748,0.882654,0.701259,0.885779,0.692494],[0.885779,0.692494,0.882654,0.701259,0.880543,0.696284],[0.873689,0.935727,0.881188,0.945940,0.871629,0.938420],[0.891594,0.944624,0.894918,0.953283,0.887330,0.950509],[0.891594,0.944624,0.887330,0.950509,0.882337,0.943564],[0.880783,0.970039,0.877424,0.962590,0.891463,0.957802],[0.880783,0.970039,0.873548,0.967378,0.877424,0.962590],[0.880783,0.970039,0.878961,0.972287,0.873548,0.967378],[0.880466,0.675051,0.887412,0.663230,0.888058,0.665812],[0.880466,0.675051,0.877336,0.670805,0.887412,0.663230],[0.880466,0.675051,0.872277,0.674950,0.877336,0.670805],[0.880466,0.675051,0.875063,0.678587,0.872277,0.674950],[0.872277,0.674950,0.875063,0.678587,0.869986,0.682762],[0.872277,0.674950,0.869986,0.682762,0.867065,0.678611],[0.860795,0.951747,0.869177,0.960638,0.859336,0.956488],[0.859336,0.956488,0.869177,0.960638,0.868061,0.962939],[0.873548,0.967378,0.868061,0.962939,0.869177,0.960638],[0.865778,0.964662,0.868061,0.962939,0.873548,0.967378],[0.855764,0.959947,0.868061,0.962939,0.865778,0.964662],[0.859336,0.956488,0.868061,0.962939,0.855764,0.959947],[0.869507,0.671370,0.867065,0.678611,0.863489,0.675162],[0.869507,0.671370,0.872277,0.674950,0.867065,0.678611],[0.877336,0.670805,0.872277,0.674950,0.869507,0.671370],[0.874551,0.667255,0.877336,0.670805,0.869507,0.671370],[0.874551,0.667255,0.884877,0.661627,0.877336,0.670805],[0.874551,0.667255,0.871514,0.661989,0.884877,0.661627],[0.871514,0.661989,0.874551,0.667255,0.865546,0.665722],[0.865546,0.665722,0.874551,0.667255,0.869507,0.671370],[0.865546,0.665722,0.869507,0.671370,0.863489,0.675162],[0.865546,0.665722,0.863489,0.675162,0.859597,0.669289],[0.851988,0.965579,0.855764,0.959947,0.865778,0.964662],[0.851988,0.965579,0.865778,0.964662,0.859518,0.971241],[0.859518,0.971241,0.865778,0.964662,0.869803,0.971428],[0.869803,0.971428,0.865778,0.964662,0.873548,0.967378],[0.876825,0.974729,0.869803,0.971428,0.873548,0.967378],[0.866278,0.975227,0.869803,0.971428,0.876825,0.974729],[0.866278,0.975227,0.859518,0.971241,0.869803,0.971428],[0.865254,0.976311,0.859518,0.971241,0.866278,0.975227],[0.865254,0.976311,0.860101,0.973480,0.859518,0.971241],[0.865254,0.976311,0.864112,0.977424,0.860101,0.973480],[0.868089,0.981428,0.864112,0.977424,0.865254,0.976311],[0.868089,0.981428,0.866340,0.981854,0.864112,0.977424],[0.862579,0.987064,0.866340,0.981854,0.868089,0.981428],[0.856380,0.990036,0.861832,0.985707,0.862416,0.986578],[0.856380,0.990036,0.856790,0.989013,0.861832,0.985707],[0.856380,0.990036,0.855204,0.989885,0.856790,0.989013],[0.855722,0.991281,0.855204,0.989885,0.856380,0.990036],[0.861682,0.646449,0.858676,0.652244,0.857362,0.646339],[0.862801,0.650799,0.858676,0.652244,0.861682,0.646449],[0.862801,0.650799,0.866233,0.655041,0.858676,0.652244],[0.866233,0.655041,0.862801,0.650799,0.869986,0.649729],[0.862801,0.650799,0.863096,0.646815,0.869986,0.649729],[0.862801,0.650799,0.861682,0.646449,0.863096,0.646815],[0.857244,0.991812,0.855722,0.991281,0.856380,0.990036],[0.857244,0.991812,0.857001,0.990164,0.862579,0.987064],[0.863692,0.988628,0.857244,0.991812,0.862579,0.987064],[0.863692,0.988628,0.862579,0.987064,0.868089,0.981428],[0.863692,0.988628,0.868089,0.981428,0.870504,0.981862],[0.868089,0.981428,0.865254,0.976311,0.870504,0.981862],[0.870504,0.981862,0.865254,0.976311,0.866278,0.975227],[0.870504,0.981862,0.866278,0.975227,0.876825,0.974729],[0.871514,0.661989,0.878088,0.655072,0.884877,0.661627],[0.866233,0.655041,0.878088,0.655072,0.871514,0.661989],[0.866233,0.655041,0.869986,0.649729,0.878088,0.655072],[0.866233,0.655041,0.871514,0.661989,0.861023,0.658280],[0.861023,0.658280,0.871514,0.661989,0.865546,0.665722],[0.861023,0.658280,0.865546,0.665722,0.859597,0.669289],[0.861023,0.658280,0.859597,0.669289,0.855109,0.660393],[0.847424,0.973862,0.851988,0.965579,0.859518,0.971241],[0.847424,0.973862,0.859518,0.971241,0.852956,0.977610],[0.852956,0.977610,0.859518,0.971241,0.860101,0.973480],[0.852956,0.977610,0.860101,0.973480,0.854339,0.978708],[0.864112,0.977424,0.859679,0.975071,0.860101,0.973480],[0.855640,0.979352,0.859706,0.975763,0.863634,0.977871],[0.848975,0.983158,0.854339,0.978708,0.850614,0.983759],[0.848975,0.983158,0.852956,0.977610,0.854339,0.978708],[0.846388,0.979796,0.852956,0.977610,0.848975,0.983158],[0.847424,0.973862,0.852956,0.977610,0.846388,0.979796],[0.858676,0.652244,0.855109,0.660393,0.854541,0.653634],[0.858676,0.652244,0.861023,0.658280,0.855109,0.660393],[0.858676,0.652244,0.866233,0.655041,0.861023,0.658280],[0.858676,0.652244,0.854541,0.653634,0.853664,0.648611],[0.848975,0.983158,0.850744,0.984355,0.849462,0.984896],[0.851874,0.984016,0.855640,0.979352,0.858908,0.982358],[0.858908,0.982358,0.855640,0.979352,0.863634,0.977871],[0.861832,0.985707,0.858908,0.982358,0.863634,0.977871],[0.856790,0.989013,0.858908,0.982358,0.861832,0.985707],[0.856790,0.989013,0.854353,0.986505,0.858908,0.982358],[0.855204,0.989885,0.853180,0.987561,0.855797,0.989044],[0.858676,0.652244,0.853664,0.648611,0.857362,0.646339],[0.849462,0.984896,0.850744,0.984355,0.850870,0.985507],[0.850870,0.985507,0.850744,0.984355,0.851874,0.984016],[0.854353,0.986505,0.851874,0.984016,0.858908,0.982358],[0.861832,0.985707,0.863634,0.977871,0.865650,0.981800],[0.862416,0.986578,0.861832,0.985707,0.865650,0.981800],[0.876825,0.974729,0.873548,0.967378,0.878961,0.972287],[0.877336,0.670805,0.884877,0.661627,0.887412,0.663230],[0.877424,0.962590,0.873548,0.967378,0.869177,0.960638],[0.880466,0.675051,0.888058,0.665812,0.897824,0.678070],[0.923241,0.755291,0.927623,0.728903,0.937469,0.744444],[0.938332,0.768904,0.923241,0.755291,0.937469,0.744444],[0.923241,0.755291,0.938332,0.768904,0.920052,0.763323],[0.938332,0.768904,0.930718,0.775506,0.920052,0.763323],[0.920052,0.763323,0.930718,0.775506,0.911432,0.783638],[0.920052,0.763323,0.911432,0.783638,0.904746,0.769652],[0.920052,0.763323,0.904746,0.769652,0.909130,0.759916],[0.923241,0.755291,0.920052,0.763323,0.909130,0.759916],[0.938332,0.768904,0.937469,0.744444,0.949657,0.757588],[0.960878,0.744263,0.949657,0.757588,0.937469,0.744444],[0.969837,0.755380,0.949657,0.757588,0.960878,0.744263],[0.969837,0.755380,0.959730,0.768836,0.949657,0.757588],[0.969837,0.755380,0.978415,0.783340,0.959730,0.768836],[0.984444,0.771321,0.978415,0.783340,0.969837,0.755380],[0.621713,0.614243,0.632099,0.629288,0.621713,0.629288],[0.950210,0.730743,0.960878,0.744263,0.937469,0.744444],[0.888914,0.774996,0.876243,0.776528,0.886790,0.770748],[0.886790,0.770748,0.876243,0.776528,0.882294,0.764915],[0.876243,0.776528,0.875768,0.769115,0.882294,0.764915],[0.876243,0.776528,0.868306,0.772885,0.875768,0.769115],[0.868306,0.772885,0.876243,0.776528,0.861338,0.779019],[0.887138,0.841490,0.871924,0.836666,0.889684,0.831233],[0.871924,0.836666,0.871968,0.827681,0.889684,0.831233],[0.871924,0.836666,0.866428,0.827824,0.871968,0.827681],[0.871968,0.827681,0.866428,0.827824,0.867317,0.821525],[0.867317,0.821525,0.866428,0.827824,0.860863,0.821768],[0.866428,0.827824,0.860639,0.827878,0.860863,0.821768],[0.860639,0.827878,0.852414,0.829999,0.860863,0.821768],[0.852414,0.829999,0.853937,0.821927,0.860863,0.821768],[0.860863,0.821768,0.853937,0.821927,0.852830,0.813929],[0.860973,0.815716,0.860863,0.821768,0.852830,0.813929],[0.866608,0.815107,0.860863,0.821768,0.860973,0.815716],[0.867317,0.821525,0.860863,0.821768,0.866608,0.815107],[0.872031,0.814995,0.867317,0.821525,0.866608,0.815107],[0.872213,0.821472,0.867317,0.821525,0.872031,0.814995],[0.872213,0.821472,0.871968,0.827681,0.867317,0.821525],[0.889684,0.831233,0.871968,0.827681,0.872213,0.821472],[0.889684,0.831233,0.872213,0.821472,0.889440,0.822491],[0.889440,0.822491,0.872213,0.821472,0.889567,0.813619],[0.889567,0.813619,0.872213,0.821472,0.872031,0.814995],[0.889567,0.813619,0.872031,0.814995,0.872480,0.805344],[0.872031,0.814995,0.866608,0.815107,0.872480,0.805344],[0.872480,0.805344,0.866608,0.815107,0.866499,0.806552],[0.866608,0.815107,0.860973,0.815716,0.866499,0.806552],[0.866499,0.806552,0.860973,0.815716,0.861522,0.805831],[0.860973,0.815716,0.849652,0.807217,0.861522,0.805831],[0.860973,0.815716,0.852830,0.813929,0.849652,0.807217],[0.865959,0.799463,0.866499,0.806552,0.861522,0.805831],[0.889567,0.813619,0.872480,0.805344,0.888193,0.802809],[0.903282,0.826447,0.889440,0.822491,0.889567,0.813619],[0.899403,0.835113,0.889440,0.822491,0.903282,0.826447],[0.899403,0.835113,0.889684,0.831233,0.889440,0.822491],[0.890615,0.847683,0.889684,0.831233,0.899403,0.835113],[0.890615,0.847683,0.887138,0.841490,0.889684,0.831233],[0.875768,0.769115,0.868306,0.772885,0.868455,0.769755],[0.890615,0.847683,0.871595,0.859328,0.881625,0.852178],[0.875768,0.769115,0.866051,0.766329,0.882294,0.764915],[0.882294,0.764915,0.866051,0.766329,0.871093,0.759407],[0.866051,0.766329,0.857998,0.764435,0.871093,0.759407],[0.871595,0.859328,0.869919,0.874256,0.864567,0.863734],[0.877745,0.870445,0.869919,0.874256,0.871595,0.859328],[0.873698,0.883390,0.869919,0.874256,0.877745,0.870445],[0.873698,0.883390,0.844520,0.881936,0.869919,0.874256],[0.873698,0.883390,0.852934,0.888302,0.844520,0.881936],[0.850496,0.897240,0.852934,0.888302,0.873698,0.883390],[0.850496,0.897240,0.844360,0.891359,0.852934,0.888302],[0.850496,0.897240,0.846452,0.898687,0.844360,0.891359],[0.844412,0.742710,0.839836,0.727097,0.842902,0.728978],[0.844412,0.742710,0.838153,0.741453,0.839836,0.727097],[0.844412,0.742710,0.836713,0.748084,0.838153,0.741453],[0.844412,0.742710,0.841825,0.749603,0.836713,0.748084],[0.841825,0.749603,0.839765,0.756971,0.836713,0.748084],[0.841825,0.749603,0.857998,0.764435,0.839765,0.756971],[0.862997,0.756287,0.857998,0.764435,0.841825,0.749603],[0.871093,0.759407,0.857998,0.764435,0.862997,0.756287],[0.864567,0.863734,0.869919,0.874256,0.843603,0.868503],[0.869919,0.874256,0.844520,0.881936,0.843603,0.868503],[0.843603,0.868503,0.844520,0.881936,0.841212,0.883494],[0.844360,0.891359,0.841212,0.883494,0.844520,0.881936],[0.844360,0.891359,0.837466,0.884382,0.841212,0.883494],[0.844360,0.891359,0.836743,0.892941,0.837466,0.884382],[0.842332,0.899610,0.836743,0.892941,0.844360,0.891359],[0.842332,0.899610,0.827251,0.895006,0.836743,0.892941],[0.842332,0.899610,0.825786,0.902330,0.827251,0.895006],[0.835985,0.728344,0.819439,0.739060,0.819117,0.726527],[0.832422,0.741203,0.819439,0.739060,0.835985,0.728344],[0.832422,0.741203,0.817994,0.745499,0.819439,0.739060],[0.832422,0.741203,0.831421,0.747560,0.817994,0.745499],[0.838153,0.741453,0.831421,0.747560,0.832422,0.741203],[0.838153,0.741453,0.836713,0.748084,0.831421,0.747560],[0.831421,0.747560,0.836713,0.748084,0.834438,0.754981],[0.839765,0.756971,0.834438,0.754981,0.836713,0.748084],[0.843603,0.868503,0.841212,0.883494,0.838832,0.871764],[0.838832,0.871764,0.841212,0.883494,0.833077,0.871635],[0.841212,0.883494,0.837466,0.884382,0.833077,0.871635],[0.833077,0.871635,0.837466,0.884382,0.820810,0.875955],[0.837466,0.884382,0.822861,0.888713,0.820810,0.875955],[0.836743,0.892941,0.822861,0.888713,0.837466,0.884382],[0.836743,0.892941,0.827251,0.895006,0.822861,0.888713],[0.827251,0.895006,0.821229,0.896318,0.822861,0.888713],[0.825786,0.902330,0.821229,0.896318,0.827251,0.895006],[0.825786,0.902330,0.822135,0.903309,0.821229,0.896318],[0.819439,0.739060,0.815823,0.725430,0.819117,0.726527],[0.819439,0.739060,0.814373,0.737705,0.815823,0.725430],[0.819439,0.739060,0.813208,0.744616,0.814373,0.737705],[0.819439,0.739060,0.817994,0.745499,0.813208,0.744616],[0.817994,0.745499,0.817099,0.752185,0.813208,0.744616],[0.817994,0.745499,0.830067,0.754246,0.817099,0.752185],[0.831421,0.747560,0.830067,0.754246,0.817994,0.745499],[0.831421,0.747560,0.834438,0.754981,0.830067,0.754246],[0.813208,0.744616,0.817099,0.752185,0.812143,0.751013],[0.820810,0.875955,0.819876,0.889700,0.816655,0.878698],[0.820810,0.875955,0.822861,0.888713,0.819876,0.889700],[0.821229,0.896318,0.819876,0.889700,0.822861,0.888713],[0.816544,0.889523,0.819876,0.889700,0.821229,0.896318],[0.811473,0.878400,0.819876,0.889700,0.816544,0.889523],[0.816655,0.878698,0.819876,0.889700,0.811473,0.878400],[0.808275,0.744099,0.812143,0.751013,0.807027,0.750297],[0.808275,0.744099,0.813208,0.744616,0.812143,0.751013],[0.808275,0.744099,0.814373,0.737705,0.813208,0.744616],[0.809460,0.738080,0.814373,0.737705,0.808275,0.744099],[0.814373,0.737705,0.809460,0.738080,0.815823,0.725430],[0.809460,0.738080,0.812164,0.726545,0.815823,0.725430],[0.809460,0.738080,0.802334,0.736703,0.812164,0.726545],[0.809460,0.738080,0.801012,0.742885,0.802334,0.736703],[0.809460,0.738080,0.808275,0.744099,0.801012,0.742885],[0.808275,0.744099,0.807027,0.750297,0.801012,0.742885],[0.801012,0.742885,0.807027,0.750297,0.799188,0.748629],[0.811473,0.878400,0.816544,0.889523,0.804611,0.881521],[0.816544,0.889523,0.807853,0.890740,0.804611,0.881521],[0.815568,0.896817,0.807853,0.890740,0.816544,0.889523],[0.815568,0.896817,0.810357,0.897185,0.807853,0.890740],[0.818198,0.903660,0.810357,0.897185,0.815568,0.896817],[0.809020,0.904152,0.810357,0.897185,0.818198,0.903660],[0.810357,0.897185,0.809020,0.904152,0.808882,0.897306],[0.809020,0.904152,0.807535,0.902397,0.808882,0.897306],[0.809020,0.904152,0.799742,0.904684,0.807535,0.902397],[0.802828,0.726993,0.794681,0.735335,0.793465,0.728961],[0.802334,0.736703,0.794681,0.735335,0.802828,0.726993],[0.802334,0.736703,0.792800,0.740509,0.794681,0.735335],[0.802334,0.736703,0.801012,0.742885,0.792800,0.740509],[0.801012,0.742885,0.799188,0.748629,0.792800,0.740509],[0.799188,0.748629,0.790761,0.745392,0.792800,0.740509],[0.804611,0.881521,0.807853,0.890740,0.797163,0.885205],[0.807853,0.890740,0.798933,0.891578,0.797163,0.885205],[0.807853,0.890740,0.806837,0.892700,0.798933,0.891578],[0.808882,0.897306,0.806837,0.892700,0.807853,0.890740],[0.807354,0.897397,0.806837,0.892700,0.808882,0.897306],[0.805545,0.893567,0.806837,0.892700,0.807354,0.897397],[0.806837,0.892700,0.799243,0.893134,0.798933,0.891578],[0.798933,0.891578,0.799243,0.893134,0.792478,0.893143],[0.799243,0.893134,0.793253,0.894490,0.792478,0.893143],[0.806674,0.897434,0.799795,0.894281,0.805115,0.894073],[0.806674,0.897434,0.800261,0.897774,0.799795,0.894281],[0.800220,0.901604,0.800261,0.897774,0.806674,0.897434],[0.794390,0.900824,0.800261,0.897774,0.800220,0.901604],[0.794390,0.900824,0.794268,0.897922,0.800261,0.897774],[0.787070,0.737642,0.782803,0.734548,0.785576,0.732204],[0.787070,0.737642,0.781941,0.737786,0.782803,0.734548],[0.785531,0.740767,0.781941,0.737786,0.787070,0.737642],[0.798933,0.891578,0.792478,0.893143,0.792640,0.889375],[0.797163,0.885205,0.798933,0.891578,0.792640,0.889375],[0.790761,0.745392,0.785531,0.740767,0.787070,0.737642],[0.790761,0.745392,0.787070,0.737642,0.792800,0.740509],[0.794681,0.735335,0.792800,0.740509,0.787070,0.737642],[0.794681,0.735335,0.787070,0.737642,0.789023,0.734376],[0.789023,0.734376,0.787070,0.737642,0.785576,0.732204],[0.786730,0.731585,0.789023,0.734376,0.785576,0.732204],[0.793465,0.728961,0.789023,0.734376,0.786730,0.731585],[0.794681,0.735335,0.789023,0.734376,0.793465,0.728961],[0.799742,0.904684,0.793000,0.902998,0.799880,0.902954],[0.799880,0.902954,0.793000,0.902998,0.793794,0.901715],[0.793000,0.902998,0.792232,0.901737,0.793451,0.901275],[0.792232,0.901737,0.792714,0.900452,0.793451,0.901275],[0.792714,0.900452,0.794390,0.900824,0.793451,0.901275],[0.800220,0.901604,0.793451,0.901275,0.794390,0.900824],[0.807535,0.902397,0.799880,0.902954,0.806047,0.901652],[0.807535,0.902397,0.799742,0.904684,0.799880,0.902954],[0.806047,0.901652,0.807354,0.897397,0.807535,0.902397],[0.805566,0.901216,0.800220,0.901604,0.806674,0.897434],[0.807535,0.902397,0.807354,0.897397,0.808882,0.897306],[0.792478,0.893143,0.792994,0.894939,0.791754,0.894566],[0.791754,0.894566,0.792994,0.894939,0.792381,0.895831],[0.792381,0.895831,0.792994,0.894939,0.794030,0.895333],[0.800261,0.897774,0.794030,0.895333,0.799795,0.894281],[0.800261,0.897774,0.794268,0.897922,0.794030,0.895333],[0.810357,0.897185,0.808882,0.897306,0.807853,0.890740],[0.812164,0.726545,0.802334,0.736703,0.802828,0.726993],[0.818198,0.903660,0.815568,0.896817,0.821229,0.896318],[0.821229,0.896318,0.815568,0.896817,0.816544,0.889523],[0.818198,0.903660,0.821229,0.896318,0.822135,0.903309],[0.838153,0.741453,0.832422,0.741203,0.839836,0.727097],[0.839836,0.727097,0.832422,0.741203,0.835985,0.728344],[0.842332,0.899610,0.844360,0.891359,0.846452,0.898687],[0.852934,0.888302,0.844360,0.891359,0.844520,0.881936],[0.867825,0.791287,0.864364,0.792562,0.860837,0.786523],[0.845010,0.803051,0.836102,0.808430,0.832936,0.803558],[0.836102,0.808430,0.832052,0.810154,0.832936,0.803558],[0.836102,0.808430,0.843028,0.809698,0.835804,0.813631],[0.832052,0.810154,0.828236,0.805569,0.832936,0.803558],[0.832052,0.810154,0.831055,0.809340,0.828236,0.805569],[0.835804,0.813631,0.836249,0.816196,0.834918,0.815634],[0.832936,0.803558,0.828236,0.805569,0.828031,0.799571],[0.832936,0.803558,0.828031,0.799571,0.831817,0.797954],[0.841280,0.793888,0.832936,0.803558,0.831817,0.797954],[0.843967,0.798301,0.832936,0.803558,0.841280,0.793888],[0.845010,0.803051,0.832936,0.803558,0.843967,0.798301],[0.969822,0.885677,0.972508,0.858495,0.983376,0.875067],[0.969822,0.885677,0.962546,0.874274,0.972508,0.858495],[0.969822,0.885677,0.950081,0.884168,0.962546,0.874274],[0.958815,0.896223,0.950081,0.884168,0.969822,0.885677],[0.944071,0.908053,0.950081,0.884168,0.958815,0.896223],[0.944071,0.908053,0.934831,0.895825,0.950081,0.884168],[0.934831,0.895825,0.942201,0.873720,0.950081,0.884168],[0.950081,0.884168,0.942201,0.873720,0.962546,0.874274],[0.962546,0.874274,0.942201,0.873720,0.955912,0.865068],[0.942201,0.873720,0.934242,0.862563,0.955912,0.865068],[0.955912,0.865068,0.934242,0.862563,0.949019,0.853518],[0.949019,0.853518,0.934242,0.862563,0.924464,0.850676],[0.949019,0.853518,0.924464,0.850676,0.941225,0.840618],[0.949019,0.853518,0.941225,0.840618,0.961960,0.838999],[0.961960,0.838999,0.955912,0.865068,0.949019,0.853518],[0.972508,0.858495,0.955912,0.865068,0.961960,0.838999],[0.962546,0.874274,0.955912,0.865068,0.972508,0.858495],[0.835689,0.827332,0.836571,0.825812,0.842032,0.827241],[0.850879,0.821718,0.849847,0.826490,0.842424,0.825772],[-13.280798,-80.907349,-12.966859,-80.744247,-12.962575,-80.846642],[-4.901785,-81.697876,-4.853787,-81.794609,-4.904505,-81.892227],[-6.062336,-72.020782,-6.030817,-72.099609,-6.290397,-72.208443],[-24.108358,-60.043045,-24.380100,-59.948093,-24.347284,-59.869804],[-23.168671,-73.542068,-23.426643,-73.468399,-23.405106,-73.365005],[-22.420420,-78.664818,-22.742420,-78.507454,-22.482708,-78.574738],[-21.501467,-79.734955,-21.828615,-79.685127,-21.825912,-79.582687],[-24.539267,-73.774750,-24.593559,-73.679634,-24.544312,-73.582306],[-24.720654,-67.965935,-24.853746,-67.902687,-24.788773,-67.866089],[-24.642443,-53.815594,-24.697002,-53.866425,-24.923187,-53.676853],[20.527197,-74.708702,20.827028,-74.618347,20.822268,-74.706467],[15.069846,-73.377930,14.780270,-73.365578,14.779616,-73.277321],[15.147603,-73.347206,14.783456,-73.241791,15.073033,-73.254150],[22.319008,-28.725336,22.637953,-28.930254,22.714128,-29.008217],[6.021642,-81.272835,6.082910,-81.170525,6.146212,-81.206207],[-3.392055,-68.992538,-3.604435,-69.197769,-3.657134,-69.147736],[-24.982498,-79.808250,-25.033176,-79.148163,-24.929272,-79.136566],[-25.184652,-76.232193,-25.189497,-75.753197,-25.124523,-75.671219],[-17.347164,-80.583336,-17.477264,-80.049355,-17.408880,-80.077522],[-24.965441,-35.990669,-25.106844,-36.056370,-25.150936,-35.996990],[-13.939616,-80.056671,-13.817569,-80.537354,-13.869593,-80.561409],[-14.723388,-79.664238,-14.729911,-78.937370,-14.677851,-78.913383],[-25.048264,-79.853653,-25.110710,-79.798485,-25.057501,-79.126808],[-21.421728,-58.112392,-21.000635,-58.011219,-20.950727,-58.077950],[-20.822660,-80.163696,-20.823622,-80.087761,-20.352224,-80.059280],[-15.007541,-80.060905,-14.545848,-80.072983,-14.544574,-80.148911],[-14.615086,-52.961464,-14.572099,-52.892414,-14.153472,-52.976227],[3.087521,-78.545944,3.150949,-79.216942,3.092438,-79.273430],[-18.649740,-80.545967,-18.599796,-80.038437,-18.531853,-80.007858],[-21.422457,-80.067307,-21.475929,-80.045052,-21.364342,-79.560638],[-20.859776,-79.796547,-20.930107,-79.047058,-20.876602,-79.069229],[-15.758815,-66.223358,-16.313395,-66.291840,-15.859357,-66.130402],[-2.035691,-80.422890,-1.993118,-79.671852,-1.912670,-80.483025],[23.437548,-36.366653,24.005960,-36.893520,23.830179,-36.865952],[8.616843,-50.366055,8.577897,-50.992306,8.529596,-51.003117],[9.252394,-47.405434,9.300345,-47.393166,9.122686,-48.002995],[-18.070995,-76.872025,-18.045179,-76.795334,-17.504133,-76.642738],[-1.592973,-78.387001,-1.229029,-78.509552,-1.232568,-78.590401],[-18.154575,-76.858070,-17.659897,-76.617889,-17.613264,-76.706413],[-19.675653,-75.488716,-19.718773,-75.398422,-19.066320,-75.185745],[-20.030107,-75.876526,-19.473112,-75.632156,-19.376259,-75.668167],[13.383660,-34.481831,13.636287,-34.379208,13.641295,-34.480663],[-6.654805,9.365225,-6.634789,9.469424,-6.437697,9.412366],[-22.366480,-44.558010,-22.520136,-44.725204,-22.467236,-44.524754],[-22.178465,-45.121540,-22.370176,-45.241550,-22.239649,-45.060287],[-21.651302,-51.232330,-21.682096,-51.164497,-21.481995,-51.059071],[-21.933920,-73.361923,-21.905722,-73.229233,-21.854258,-73.283089],[-21.903875,-63.307571,-21.952784,-63.159195,-21.895351,-63.135887],[5.222324,-52.074017,5.261543,-52.122009,5.087721,-52.741074],[-17.565931,-75.028709,-17.691360,-74.688889,-17.628849,-74.615814],[3.340878,-66.729027,3.153528,-66.965942,3.141085,-66.854561],[3.179656,-66.878967,3.233875,-66.947433,3.033646,-67.072273],[-12.329519,-55.470474,-12.559288,-55.528862,-12.566625,-55.441841],[-12.276855,-55.189835,-12.209578,-55.276009,-12.506487,-55.248760],[15.233047,-40.448120,15.276448,-40.387516,15.321365,-40.512554],[-8.533902,-27.092340,-8.771352,-27.066711,-8.553642,-27.020460],[-9.949520,-16.450905,-10.164249,-16.509457,-10.168746,-16.422993],[15.664044,-13.831587,15.758834,-13.777785,15.852901,-13.811986],[23.269117,-52.401058,22.737137,-52.098820,23.254719,-52.322948],[-7.668017,-58.672302,-7.655995,-58.721519,-8.107017,-59.134964],[-4.960114,-59.649776,-5.442257,-60.070023,-5.458311,-60.021969],[-3.031946,-57.470219,-3.542770,-57.910431,-3.091305,-57.457394],[-3.318071,-39.952904,-3.409355,-39.809219,-3.349289,-39.800262],[16.696817,-45.509789,17.111588,-45.529202,17.124531,-45.603233],[17.180601,-70.488686,17.215401,-70.417297,17.595713,-70.498428],[-10.437354,-65.672501,-10.133651,-65.953621,-10.497066,-65.718147],[-21.436953,-63.840187,-21.348379,-63.788948,-21.246161,-63.825592],[-16.611483,-53.277634,-16.569214,-53.480591,-16.639660,-53.554798],[-13.177969,-55.648956,-13.159972,-55.926968,-13.269915,-55.692135],[-21.622169,-48.433235,-21.709473,-48.729713,-21.668186,-48.410831],[-18.974735,-62.596191,-19.011845,-62.639744,-19.113567,-62.347900],[-22.102947,-76.317871,-22.490812,-76.163521,-22.442757,-76.132462],[-12.119361,-13.233775,-12.264164,-12.822655,-12.094280,-13.203976],[8.407323,-15.310186,8.603148,-14.819048,8.637774,-14.940213],[-14.266129,-12.162105,-14.572497,-11.863295,-14.551475,-11.830507],[-16.000809,-17.071709,-16.046944,-17.084570,-16.365974,-16.785240],[-11.593095,-80.764191,-11.643042,-80.884987,-11.640715,-80.769302],[-18.935415,-79.680809,-18.942732,-79.601746,-18.862934,-79.610916],[-18.351240,-71.949760,-18.430992,-71.940193,-18.458384,-71.870880],[-21.478188,-78.117897,-21.908772,-77.931801,-21.511641,-78.051300],[-21.378986,-76.941895,-21.828686,-76.827087,-21.808691,-76.753777],[-22.092714,-76.864502,-22.433155,-76.680252,-22.075806,-76.790413],[-18.071188,-46.372688,-18.262735,-46.484516,-18.122690,-46.325787],[-17.223572,-51.291683,-17.348658,-51.407093,-17.420132,-51.394447],[-13.715596,-62.991695,-13.892319,-63.025307,-13.753313,-62.927109],[-13.654475,-63.842590,-13.804609,-63.948738,-13.831252,-63.875916],[-10.624310,-73.467674,-10.803354,-73.507584,-10.647633,-73.409821],[-10.045069,-77.490166,-10.220023,-77.584106,-10.224277,-77.529335],[21.423227,-39.709637,21.460184,-39.900852,21.366217,-39.725914],[21.460184,-39.900852,21.423227,-39.709637,21.534981,-39.928646],[-19.859163,-79.002586,-19.786373,-78.933014,-19.780779,-78.987671],[16.433493,-1.311489,16.328476,-1.073427,16.473440,-1.267678],[16.328476,-1.073427,16.433493,-1.311489,16.319803,-1.152127],[0.917863,-71.905502,0.724840,-71.938110,0.890703,-71.858734],[-0.533980,-66.203041,-0.698285,-66.285591,-0.713459,-66.225090],[-1.481217,-49.679893,-1.660182,-49.705791,-1.508716,-49.608021],[-1.781858,-48.605221,-1.932562,-48.704159,-1.947334,-48.630840],[-3.581584,-26.337696,-3.745150,-26.373541,-3.550321,-26.271770],[-5.867065,-19.552500,-5.883842,-19.484892,-5.681700,-19.434368],[7.875409,-40.703487,8.155315,-40.711731,7.856202,-40.756355],[-1.937450,-1.308768,-2.237119,-1.268038,-2.238681,-1.216882],[-19.248594,-36.934601,-19.281847,-36.955376,-19.632938,-36.729897],[-19.568060,-34.432007,-19.908785,-34.157215,-19.876650,-34.134743],[-18.838043,-29.929428,-19.151180,-29.586153,-18.828705,-29.882147],[17.285658,-47.556179,17.645647,-47.254337,17.684103,-47.317162],[18.142324,-52.423328,18.159569,-52.351711,18.515976,-52.138569],[7.795896,-46.056297,7.734661,-46.108875,7.782682,-45.983833],[13.246961,-67.168839,13.154365,-67.136734,13.222898,-67.094101],[14.119160,-61.008713,14.042029,-61.026592,14.027302,-60.974552],[5.081212,-76.564758,4.976224,-76.494034,5.018115,-76.470200],[7.104720,-45.187252,7.059463,-45.313324,7.051177,-45.236820],[20.553385,-45.190582,20.528040,-45.121414,20.868734,-44.967319],[20.329258,-43.141109,20.639849,-42.911270,20.691383,-42.933811],[-18.170467,-71.144310,-18.277231,-71.064919,-18.205360,-71.075066],[-5.981986,-75.909927,-6.060046,-75.661385,-6.006419,-75.610451],[-20.831814,-27.352118,-20.878057,-27.374393,-21.300076,-27.038624],[-20.968763,-24.818407,-21.374475,-24.426769,-21.329800,-24.401499],[-20.184708,-19.576321,-20.524796,-19.084469,-20.163666,-19.517557],[10.904166,-62.844948,10.802372,-62.850113,10.794060,-62.777676],[3.550812,16.745242,3.473444,16.811595,3.815094,16.832639],[-0.337098,-74.908051,-0.457584,-74.788940,-0.398881,-74.767746],[9.040662,-19.383110,9.486972,-18.864929,9.477864,-19.031254],[-22.886127,-41.405945,-23.020880,-41.797577,-22.944971,-41.376152],[-12.196471,-61.899807,-11.947727,-62.187943,-11.982423,-62.254375],[-21.307568,-74.460373,-21.755302,-74.238380,-21.289335,-74.361069],[-21.407801,-73.769936,-21.914968,-73.589737,-21.854376,-73.545631],[-10.477211,-4.101058,-10.522665,-4.123186,-10.489478,-3.562965],[-12.546290,-1.243105,-12.754499,-0.729528,-12.711775,-0.702503],[-13.211301,-74.516907,-13.261633,-74.164192,-13.182330,-74.108345],[-16.872229,-77.879494,-16.853344,-77.725609,-16.790434,-77.726494],[-16.060448,-6.160186,-16.123280,-6.156952,-16.396542,-5.662013],[-21.816919,-73.980873,-22.400045,-73.835617,-22.374529,-73.737938],[-21.717464,-75.573074,-22.277285,-75.335274,-21.761637,-75.485161],[-5.384160,-14.659034,-5.687891,-14.723919,-5.681312,-14.633886],[-4.754492,-20.752655,-4.999167,-20.737196,-4.693703,-20.681036],[-5.339038,-45.912880,-5.582036,-46.001263,-5.583987,-45.902634],[-5.435813,-63.705956,-5.691222,-63.777733,-5.698783,-63.694710],[-4.554210,-69.919029,-4.836420,-69.919472,-4.580134,-69.850891],[4.907545,15.103659,5.176854,15.174056,5.189714,15.098816],[21.298248,-32.546387,21.372538,-32.528851,21.423166,-32.804314],[21.149830,-33.255199,21.282768,-33.576263,21.188374,-33.532608],[-21.807652,-76.128235,-21.710119,-76.038353,-21.704981,-76.111641],[-20.855980,-66.502411,-20.988501,-66.388557,-20.895575,-66.408150],[-19.609715,-42.009243,-19.811665,-42.154465,-19.902605,-42.127113],[-17.075439,-56.944859,-16.853191,-56.833153,-16.814964,-56.924095],[-17.025242,-58.195992,-17.047201,-58.096146,-16.786703,-58.075665],[-14.825747,-68.958633,-14.804604,-69.039276,-15.070571,-69.065598],[-14.575618,-73.771454,-14.844608,-73.870323,-14.841670,-73.796913],[-20.065704,-37.901302,-20.353678,-38.030724,-20.125092,-37.833321],[4.778853,-46.048828,4.687734,-46.197681,4.697696,-46.096138],[18.226814,-43.045017,18.586111,-42.923355,18.226284,-43.118408],[5.109795,-0.761745,4.802361,-0.491548,4.837121,-0.435493],[19.124901,-49.551624,19.563044,-49.308277,19.624464,-49.348457],[23.102766,-64.727600,23.296207,-65.363670,23.171272,-65.270592],[13.897008,-73.596352,13.897177,-73.043549,13.940557,-73.582253],[12.174642,-74.223862,12.153668,-73.638092,12.199791,-73.671631],[-16.996925,-77.631783,-17.071316,-77.581520,-16.684879,-77.135597],[-15.165278,-77.626877,-14.894351,-77.240150,-14.818876,-77.288765],[15.879554,-64.857178,16.126783,-64.771866,16.128199,-64.859116],[16.959105,-59.826309,17.158522,-59.807487,16.915016,-59.902912],[18.540630,-40.365143,18.714703,-40.241707,18.737965,-40.330780],[19.145311,-38.476791,19.356520,-38.432465,19.187044,-38.562145],[22.916019,6.409994,22.890692,6.624705,22.966583,6.619797],[2.114069,12.838032,1.934391,12.986060,2.133392,12.901556],[-15.306681,-75.267967,-15.531266,-75.314453,-15.537746,-75.239594],[-15.253809,-75.373199,-15.540181,-75.344475,-15.315587,-75.298042],[-21.055426,-57.724087,-21.215376,-57.442673,-21.167120,-57.369671],[4.603061,-6.450190,4.590902,-6.295102,4.642870,-6.316085],[23.306105,-44.939995,23.289036,-44.844212,23.353600,-44.828709],[25.048914,-41.279079,25.128967,-41.330242,25.136259,-41.418324],[25.380068,-60.340065,25.146841,-59.807037,25.462463,-60.302536],[6.507969,-76.048309,6.708241,-75.535553,6.763387,-75.525551],[4.758768,-76.718781,5.011839,-76.245789,4.792472,-76.750679],[3.295539,-76.411102,3.414363,-75.874008,3.447109,-75.906883],[18.123306,-71.439171,18.487347,-71.493896,18.489887,-71.558449],[19.471191,-76.817299,19.510464,-76.758789,19.836651,-76.861588],[25.652040,-68.435463,25.397581,-67.974525,25.679745,-68.370674],[25.708574,-68.620079,25.422039,-68.227081,25.506004,-68.193199],[-1.403004,-78.924065,-1.376065,-78.865341,-1.046874,-78.954231],[2.028239,-74.877831,2.342114,-74.887886,2.360008,-74.956551],[-14.731518,-77.890511,-14.386044,-77.551453,-14.716591,-77.959885],[14.365649,-72.156265,14.434658,-71.635384,14.477988,-71.620621],[-25.398106,-48.771484,-25.492441,-48.669220,-25.453745,-48.627327],[-18.219036,-77.373703,-17.914734,-76.947784,-17.825687,-76.933861],[-1.132264,-73.645004,-1.090567,-73.568359,-0.939541,-73.753502],[-4.819042,-70.704155,-4.684138,-70.813225,-4.686984,-70.903267],[-12.080206,-60.351814,-12.050611,-60.541508,-12.156161,-60.403828],[-12.635977,-59.993122,-12.523940,-60.145214,-12.610312,-60.183388],[-22.052896,-44.977966,-22.097242,-45.164902,-22.128944,-44.978676],[-24.535780,-42.427784,-24.565491,-42.632359,-24.622484,-42.599228],[-4.171913,-78.476830,-4.367951,-78.516937,-4.194127,-78.405045],[-4.075748,-78.368965,-4.299883,-78.504105,-4.271725,-78.409370],[-21.100924,-73.569733,-21.141153,-73.455101,-21.077887,-73.473625],[-15.694207,-69.871223,-15.815965,-69.983810,-15.784316,-69.899467],[20.446611,-74.716385,20.526869,-74.626007,20.821939,-74.623764],[3.057908,-59.271179,3.019642,-59.335114,2.881572,-59.273376],[-9.558550,-80.101013,-9.330141,-79.913712,-9.309689,-80.017326],[0.359763,0.724900,0.361417,0.710308,0.387721,0.721915],[0.361417,0.710308,0.359763,0.724900,0.329997,0.732285],[0.329997,0.732285,0.331877,0.714319,0.361417,0.710308],[0.304957,0.745141,0.331877,0.714319,0.329997,0.732285],[0.304957,0.745141,0.306819,0.729705,0.331877,0.714319],[0.304957,0.745141,0.285437,0.747683,0.306819,0.729705],[0.285437,0.747683,0.304957,0.745141,0.285437,0.772180],[0.304957,0.745141,0.304832,0.771756,0.285437,0.772180],[0.304832,0.771756,0.304957,0.745141,0.329997,0.732285],[0.304832,0.771756,0.329997,0.732285,0.332180,0.767645],[0.332180,0.767645,0.329997,0.732285,0.360000,0.763238],[0.329997,0.732285,0.359763,0.724900,0.360000,0.763238],[0.359763,0.724900,0.387721,0.721915,0.360000,0.763238],[0.387721,0.721915,0.387641,0.761722,0.360000,0.763238],[0.417628,0.725604,0.387641,0.761722,0.387721,0.721915],[0.417628,0.725604,0.415968,0.762967,0.387641,0.761722],[0.446724,0.733533,0.415968,0.762967,0.417628,0.725604],[0.443950,0.767856,0.415968,0.762967,0.446724,0.733533],[0.414066,0.801083,0.415968,0.762967,0.443950,0.767856],[0.415968,0.762967,0.414066,0.801083,0.387562,0.801083],[0.414066,0.801083,0.408038,0.857759,0.387562,0.801083],[0.430049,0.857759,0.408038,0.857759,0.414066,0.801083],[0.404498,0.912841,0.408038,0.857759,0.430049,0.857759],[0.404498,0.912841,0.387655,0.857759,0.408038,0.857759],[0.404498,0.912841,0.386459,0.912841,0.387655,0.857759],[0.652291,0.820828,0.638952,0.847315,0.639240,0.825269],[0.659778,0.841556,0.638952,0.847315,0.652291,0.820828],[0.663429,0.855160,0.638952,0.847315,0.659778,0.841556],[0.663429,0.855160,0.639181,0.862617,0.638952,0.847315],[0.672673,0.876850,0.639181,0.862617,0.663429,0.855160],[0.672673,0.876850,0.637715,0.891894,0.639181,0.862617],[0.675362,0.895135,0.637715,0.891894,0.672673,0.876850],[0.675362,0.895135,0.637296,0.906890,0.637715,0.891894],[0.676089,0.913894,0.637296,0.906890,0.675362,0.895135],[0.676089,0.913894,0.636878,0.921540,0.637296,0.906890],[0.636878,0.921540,0.676089,0.913894,0.665640,0.952891],[0.693939,0.925431,0.665640,0.952891,0.676089,0.913894],[0.693939,0.925431,0.673855,0.963265,0.665640,0.952891],[0.704631,0.934375,0.673855,0.963265,0.693939,0.925431],[0.704631,0.934375,0.679042,0.973118,0.673855,0.963265],[0.587916,0.756585,0.560591,0.703966,0.587668,0.702100],[0.587916,0.756585,0.550585,0.755769,0.560591,0.703966],[0.571315,0.931289,0.603188,0.960815,0.593496,0.970687],[0.571315,0.931289,0.583392,0.918336,0.603188,0.960815],[0.567046,0.889087,0.583392,0.918336,0.571315,0.931289],[0.567046,0.889087,0.579047,0.883266,0.583392,0.918336],[0.563233,0.846656,0.579047,0.883266,0.567046,0.889087],[0.563233,0.846656,0.578523,0.841828,0.579047,0.883266],[0.548896,0.813334,0.578523,0.841828,0.563233,0.846656],[0.548896,0.813334,0.593353,0.828086,0.578523,0.841828],[0.548896,0.813334,0.569629,0.801507,0.593353,0.828086],[0.739906,0.800347,0.724197,0.818838,0.724476,0.790512],[0.724197,0.818838,0.739906,0.800347,0.728952,0.825031],[0.739906,0.800347,0.748397,0.806289,0.728952,0.825031],[0.544333,0.821336,0.548896,0.813334,0.563233,0.846656],[0.532108,0.835011,0.544333,0.821336,0.563233,0.846656],[0.728952,0.825031,0.748397,0.806289,0.760078,0.823497],[0.728952,0.825031,0.760078,0.823497,0.745367,0.837029],[0.745367,0.837029,0.760078,0.823497,0.775289,0.865916],[0.760078,0.823497,0.786210,0.855890,0.775289,0.865916],[0.502808,0.864493,0.532108,0.835011,0.549145,0.853777],[0.532108,0.835011,0.563233,0.846656,0.549145,0.853777],[0.658022,0.714551,0.670512,0.744079,0.658175,0.748031],[0.658022,0.714551,0.670392,0.717802,0.670512,0.744079],[0.745367,0.837029,0.728728,0.856508,0.716795,0.852219],[0.775289,0.865916,0.728728,0.856508,0.745367,0.837029],[0.775289,0.865916,0.762916,0.880436,0.728728,0.856508],[0.720007,0.736428,0.704623,0.720751,0.719951,0.724216],[0.720007,0.736428,0.704713,0.740519,0.704623,0.720751],[0.502808,0.864493,0.549145,0.853777,0.515688,0.878745],[0.670392,0.717802,0.704713,0.740519,0.670512,0.744079],[0.670392,0.717802,0.704623,0.720751,0.704713,0.740519],[0.728952,0.825031,0.745367,0.837029,0.716795,0.852219],[0.724197,0.818838,0.728952,0.825031,0.716795,0.852219],[0.724197,0.818838,0.716795,0.852219,0.703227,0.846995],[0.703227,0.846995,0.716795,0.852219,0.697042,0.885933],[0.716795,0.852219,0.709031,0.892035,0.697042,0.885933],[0.658022,0.714551,0.623045,0.752308,0.622845,0.708325],[0.658022,0.714551,0.658175,0.748031,0.623045,0.752308],[0.622845,0.708325,0.623045,0.752308,0.587916,0.756585],[0.622845,0.708325,0.587916,0.756585,0.587668,0.702100],[0.709031,0.892035,0.704631,0.934375,0.693939,0.925431],[0.697042,0.885933,0.709031,0.892035,0.693939,0.925431],[0.697042,0.885933,0.693939,0.925431,0.676089,0.913894],[0.697042,0.885933,0.676089,0.913894,0.675362,0.895135],[0.697042,0.885933,0.675362,0.895135,0.672673,0.876850],[0.703227,0.846995,0.697042,0.885933,0.672673,0.876850],[0.703227,0.846995,0.672673,0.876850,0.691096,0.835082],[0.691096,0.835082,0.672673,0.876850,0.663429,0.855160],[0.691096,0.835082,0.663429,0.855160,0.659778,0.841556],[0.691096,0.835082,0.659778,0.841556,0.675889,0.820161],[0.675889,0.820161,0.659778,0.841556,0.665696,0.809158],[0.665696,0.809158,0.659778,0.841556,0.652291,0.820828],[0.423091,0.912841,0.404498,0.912841,0.430049,0.857759],[0.423091,0.912841,0.430049,0.857759,0.454679,0.857759],[0.454679,0.857759,0.430049,0.857759,0.441022,0.801083],[0.430049,0.857759,0.414066,0.801083,0.441022,0.801083],[0.441022,0.801083,0.414066,0.801083,0.443950,0.767856],[0.471667,0.772141,0.441022,0.801083,0.443950,0.767856],[0.467984,0.801083,0.441022,0.801083,0.471667,0.772141],[0.452678,0.857759,0.441022,0.801083,0.467984,0.801083],[0.490898,0.802707,0.452678,0.857759,0.467984,0.801083],[0.490898,0.802707,0.478183,0.857759,0.452678,0.857759],[0.285437,0.801194,0.308274,0.801083,0.298474,0.857759],[0.304832,0.771756,0.308274,0.801083,0.285437,0.801194],[0.308274,0.801083,0.304832,0.771756,0.334420,0.801083],[0.304832,0.771756,0.332180,0.767645,0.334420,0.801083],[0.334420,0.801083,0.332180,0.767645,0.360243,0.801083],[0.360243,0.801083,0.332180,0.767645,0.360000,0.763238],[0.360000,0.763238,0.387562,0.801083,0.360243,0.801083],[0.360000,0.763238,0.387641,0.761722,0.387562,0.801083],[0.415968,0.762967,0.387562,0.801083,0.387641,0.761722],[0.360243,0.801083,0.387562,0.801083,0.364335,0.857759],[0.387562,0.801083,0.387655,0.857759,0.364335,0.857759],[0.408038,0.857759,0.387655,0.857759,0.387562,0.801083],[0.364335,0.857759,0.387655,0.857759,0.369350,0.912841],[0.387655,0.857759,0.386459,0.912841,0.369350,0.912841],[0.626654,0.820690,0.639240,0.825269,0.619411,0.837899],[0.639240,0.825269,0.638952,0.847315,0.619411,0.837899],[0.619411,0.837899,0.638952,0.847315,0.613112,0.852730],[0.638952,0.847315,0.639181,0.862617,0.613112,0.852730],[0.613112,0.852730,0.639181,0.862617,0.604672,0.873226],[0.639181,0.862617,0.637715,0.891894,0.604672,0.873226],[0.604672,0.873226,0.637715,0.891894,0.601214,0.892678],[0.637715,0.891894,0.637296,0.906890,0.601214,0.892678],[0.601214,0.892678,0.637296,0.906890,0.597756,0.912130],[0.637296,0.906890,0.636878,0.921540,0.597756,0.912130],[0.636878,0.921540,0.610781,0.954659,0.597756,0.912130],[0.610781,0.954659,0.636878,0.921540,0.627991,0.975710],[0.636878,0.921540,0.650395,0.977645,0.627991,0.975710],[0.636878,0.921540,0.665640,0.952891,0.650395,0.977645],[0.673855,0.963265,0.650395,0.977645,0.665640,0.952891],[0.673855,0.963265,0.651725,0.985913,0.650395,0.977645],[0.679042,0.973118,0.651725,0.985913,0.673855,0.963265],[0.679042,0.973118,0.653994,0.994469,0.651725,0.985913],[0.550585,0.755769,0.528614,0.716865,0.560591,0.703966],[0.550585,0.755769,0.528717,0.739695,0.528614,0.716865],[0.625740,0.985950,0.621503,0.994614,0.593496,0.970687],[0.625740,0.985950,0.653994,0.994469,0.621503,0.994614],[0.651725,0.985913,0.653994,0.994469,0.625740,0.985950],[0.627991,0.975710,0.651725,0.985913,0.625740,0.985950],[0.650395,0.977645,0.651725,0.985913,0.627991,0.975710],[0.603188,0.960815,0.627991,0.975710,0.625740,0.985950],[0.610781,0.954659,0.627991,0.975710,0.603188,0.960815],[0.583392,0.918336,0.610781,0.954659,0.603188,0.960815],[0.583392,0.918336,0.597756,0.912130,0.610781,0.954659],[0.579047,0.883266,0.597756,0.912130,0.583392,0.918336],[0.579047,0.883266,0.601214,0.892678,0.597756,0.912130],[0.579047,0.883266,0.604672,0.873226,0.601214,0.892678],[0.578523,0.841828,0.604672,0.873226,0.579047,0.883266],[0.578523,0.841828,0.593353,0.828086,0.604672,0.873226],[0.593353,0.828086,0.613112,0.852730,0.604672,0.873226],[0.593353,0.828086,0.619411,0.837899,0.613112,0.852730],[0.593353,0.828086,0.602125,0.819013,0.619411,0.837899],[0.580783,0.794324,0.602125,0.819013,0.593353,0.828086],[0.580783,0.794324,0.613056,0.808364,0.602125,0.819013],[0.580783,0.794324,0.597698,0.792846,0.613056,0.808364],[0.691069,0.782556,0.695835,0.769622,0.705684,0.779954],[0.298474,0.857759,0.323632,0.912841,0.304117,0.912841],[0.298474,0.857759,0.318593,0.857759,0.323632,0.912841],[0.308274,0.801083,0.318593,0.857759,0.298474,0.857759],[0.318593,0.857759,0.308274,0.801083,0.334420,0.801083],[0.318593,0.857759,0.334420,0.801083,0.344672,0.857759],[0.344672,0.857759,0.334420,0.801083,0.364335,0.857759],[0.364335,0.857759,0.334420,0.801083,0.360243,0.801083],[0.369350,0.912841,0.344672,0.857759,0.364335,0.857759],[0.349500,0.912841,0.344672,0.857759,0.369350,0.912841],[0.349500,0.912841,0.318593,0.857759,0.344672,0.857759],[0.323632,0.912841,0.318593,0.857759,0.349500,0.912841],[0.602125,0.819013,0.613056,0.808364,0.626654,0.820690],[0.602125,0.819013,0.626654,0.820690,0.619411,0.837899],[0.478183,0.857759,0.470812,0.912841,0.445347,0.912841],[0.691069,0.782556,0.695845,0.796186,0.681385,0.794602],[0.691069,0.782556,0.700193,0.788648,0.695845,0.796186],[0.691069,0.782556,0.705684,0.779954,0.700193,0.788648],[0.724476,0.790512,0.700193,0.788648,0.705684,0.779954],[0.724476,0.790512,0.709011,0.805332,0.700193,0.788648],[0.724476,0.790512,0.724197,0.818838,0.709011,0.805332],[0.724197,0.818838,0.691096,0.835082,0.709011,0.805332],[0.724197,0.818838,0.703227,0.846995,0.691096,0.835082],[0.709011,0.805332,0.691096,0.835082,0.675889,0.820161],[0.709011,0.805332,0.675889,0.820161,0.695845,0.796186],[0.695845,0.796186,0.675889,0.820161,0.681385,0.794602],[0.681385,0.794602,0.675889,0.820161,0.665696,0.809158],[0.454679,0.857759,0.445347,0.912841,0.423091,0.912841],[0.478183,0.857759,0.445347,0.912841,0.454679,0.857759],[0.709011,0.805332,0.695845,0.796186,0.700193,0.788648],[0.569629,0.801507,0.580783,0.794324,0.593353,0.828086],[0.603188,0.960815,0.625740,0.985950,0.593496,0.970687],[0.304832,0.771756,0.285437,0.801194,0.285437,0.772180],[0.490898,0.773687,0.490898,0.802707,0.467984,0.801083],[0.490898,0.773687,0.467984,0.801083,0.471667,0.772141],[0.490898,0.749078,0.490898,0.773687,0.471667,0.772141],[0.490898,0.749078,0.471667,0.772141,0.471871,0.746594],[0.471667,0.772141,0.446724,0.733533,0.471871,0.746594],[0.471667,0.772141,0.443950,0.767856,0.446724,0.733533],[0.471871,0.746594,0.446724,0.733533,0.470241,0.730810],[0.470241,0.730810,0.446724,0.733533,0.444665,0.715398],[0.446724,0.733533,0.415070,0.711047,0.444665,0.715398],[0.446724,0.733533,0.417628,0.725604,0.415070,0.711047],[0.387721,0.721915,0.415070,0.711047,0.417628,0.725604],[0.387721,0.721915,0.388185,0.708474,0.415070,0.711047],[0.361417,0.710308,0.388185,0.708474,0.387721,0.721915],[0.362095,0.701484,0.388185,0.708474,0.361417,0.710308],[0.362095,0.701484,0.388380,0.700149,0.388185,0.708474],[0.388516,0.692940,0.388380,0.700149,0.362095,0.701484],[0.414803,0.702038,0.388380,0.700149,0.388516,0.692940],[0.414803,0.702038,0.388185,0.708474,0.388380,0.700149],[0.415070,0.711047,0.388185,0.708474,0.414803,0.702038],[0.444665,0.715398,0.415070,0.711047,0.414803,0.702038],[0.444665,0.715398,0.414803,0.702038,0.442333,0.706442],[0.442333,0.706442,0.414803,0.702038,0.414421,0.696053],[0.388516,0.692940,0.414421,0.696053,0.414803,0.702038],[0.388655,0.690088,0.414421,0.696053,0.388516,0.692940],[0.414057,0.691794,0.414421,0.696053,0.388655,0.690088],[0.443291,0.694043,0.414421,0.696053,0.414057,0.691794],[0.442333,0.706442,0.414421,0.696053,0.443291,0.694043],[0.465212,0.709316,0.442333,0.706442,0.443291,0.694043],[0.465212,0.709316,0.444665,0.715398,0.442333,0.706442],[0.467269,0.718930,0.444665,0.715398,0.465212,0.709316],[0.470241,0.730810,0.444665,0.715398,0.467269,0.718930],[0.490898,0.730960,0.470241,0.730810,0.467269,0.718930],[0.490898,0.730960,0.471871,0.746594,0.470241,0.730810],[0.490898,0.730960,0.490898,0.749078,0.471871,0.746594],[0.285437,0.747683,0.285437,0.729717,0.306819,0.729705],[0.285437,0.729717,0.309032,0.717921,0.306819,0.729705],[0.309032,0.717921,0.285437,0.729717,0.285437,0.719986],[0.490898,0.721244,0.490898,0.730960,0.467269,0.718930],[0.465212,0.709316,0.490898,0.721244,0.467269,0.718930],[0.490898,0.711856,0.490898,0.721244,0.465212,0.709316],[0.285437,0.710531,0.310837,0.708433,0.285437,0.719986],[0.285437,0.696294,0.310837,0.708433,0.285437,0.710531],[0.309969,0.696238,0.310837,0.708433,0.285437,0.696294],[0.309969,0.696238,0.333643,0.693503,0.310837,0.708433],[0.309969,0.696238,0.334369,0.680327,0.333643,0.693503],[0.308769,0.680327,0.334369,0.680327,0.309969,0.696238],[0.308769,0.680327,0.337126,0.651963,0.334369,0.680327],[0.311334,0.651963,0.337126,0.651963,0.308769,0.680327],[0.311334,0.651963,0.337411,0.627227,0.337126,0.651963],[0.310940,0.626820,0.337411,0.627227,0.311334,0.651963],[0.310940,0.626820,0.337678,0.603928,0.337411,0.627227],[0.310940,0.626820,0.310579,0.603928,0.337678,0.603928],[0.310579,0.603928,0.310940,0.626820,0.285437,0.627227],[0.310940,0.626820,0.285437,0.651963,0.285437,0.627227],[0.310940,0.626820,0.311334,0.651963,0.285437,0.651963],[0.285437,0.651963,0.311334,0.651963,0.285437,0.680327],[0.311334,0.651963,0.308769,0.680327,0.285437,0.680327],[0.285437,0.680327,0.308769,0.680327,0.309969,0.696238],[0.285437,0.680327,0.309969,0.696238,0.285437,0.696294],[0.490898,0.680327,0.490898,0.697685,0.466804,0.697146],[0.490898,0.697685,0.465212,0.709316,0.466804,0.697146],[0.490898,0.697685,0.490898,0.711856,0.465212,0.709316],[0.466804,0.697146,0.465212,0.709316,0.443291,0.694043],[0.466804,0.697146,0.443291,0.694043,0.443033,0.680327],[0.443033,0.680327,0.443291,0.694043,0.414057,0.691794],[0.443033,0.680327,0.414057,0.691794,0.412512,0.680327],[0.388945,0.680327,0.412512,0.680327,0.414057,0.691794],[0.412929,0.651963,0.412512,0.680327,0.388945,0.680327],[0.441710,0.651963,0.412512,0.680327,0.412929,0.651963],[0.441710,0.651963,0.443033,0.680327,0.412512,0.680327],[0.467191,0.651963,0.443033,0.680327,0.441710,0.651963],[0.467191,0.651963,0.468599,0.680327,0.443033,0.680327],[0.490898,0.651963,0.468599,0.680327,0.467191,0.651963],[0.490898,0.651963,0.490898,0.680327,0.468599,0.680327],[0.490898,0.680327,0.466804,0.697146,0.468599,0.680327],[0.468599,0.680327,0.466804,0.697146,0.443033,0.680327],[0.490898,0.627227,0.490898,0.651963,0.467191,0.651963],[0.490898,0.627227,0.467191,0.651963,0.467591,0.626820],[0.467591,0.626820,0.467191,0.651963,0.441710,0.651963],[0.467591,0.626820,0.441710,0.651963,0.441306,0.627227],[0.441306,0.627227,0.441710,0.651963,0.412929,0.651963],[0.441306,0.627227,0.412929,0.651963,0.412498,0.627223],[0.412498,0.627223,0.412929,0.651963,0.389678,0.651963],[0.389678,0.651963,0.412929,0.651963,0.388945,0.680327],[0.389678,0.651963,0.388945,0.680327,0.364916,0.680327],[0.364916,0.680327,0.388945,0.680327,0.363089,0.691578],[0.388945,0.680327,0.388655,0.690088,0.363089,0.691578],[0.388945,0.680327,0.414057,0.691794,0.388655,0.690088],[0.363089,0.691578,0.388655,0.690088,0.362592,0.695548],[0.388655,0.690088,0.388516,0.692940,0.362592,0.695548],[0.362592,0.695548,0.388516,0.692940,0.362095,0.701484],[0.334291,0.705620,0.362592,0.695548,0.362095,0.701484],[0.334291,0.705620,0.363089,0.691578,0.362592,0.695548],[0.334291,0.705620,0.333643,0.693503,0.363089,0.691578],[0.310837,0.708433,0.333643,0.693503,0.334291,0.705620],[0.310837,0.708433,0.334291,0.705620,0.331877,0.714319],[0.331877,0.714319,0.334291,0.705620,0.362095,0.701484],[0.331877,0.714319,0.362095,0.701484,0.361417,0.710308],[0.309032,0.717921,0.310837,0.708433,0.331877,0.714319],[0.310837,0.708433,0.309032,0.717921,0.285437,0.719986],[0.306819,0.729705,0.309032,0.717921,0.331877,0.714319],[0.334369,0.680327,0.363089,0.691578,0.333643,0.693503],[0.334369,0.680327,0.364916,0.680327,0.363089,0.691578],[0.334369,0.680327,0.365715,0.651963,0.364916,0.680327],[0.334369,0.680327,0.337126,0.651963,0.365715,0.651963],[0.337126,0.651963,0.366021,0.627223,0.365715,0.651963],[0.337126,0.651963,0.337411,0.627227,0.366021,0.627223],[0.337411,0.627227,0.366309,0.603928,0.366021,0.627223],[0.337411,0.627227,0.337678,0.603928,0.366309,0.603928],[0.337678,0.603928,0.366757,0.567772,0.366309,0.603928],[0.338095,0.567772,0.366757,0.567772,0.337678,0.603928],[0.310579,0.603928,0.338095,0.567772,0.337678,0.603928],[0.310016,0.567772,0.338095,0.567772,0.310579,0.603928],[0.310016,0.567772,0.310579,0.603928,0.285437,0.603928],[0.310579,0.603928,0.285437,0.627227,0.285437,0.603928],[0.490898,0.603928,0.490898,0.627227,0.467591,0.626820],[0.490898,0.603928,0.467591,0.626820,0.467959,0.603928],[0.467591,0.626820,0.441306,0.627227,0.467959,0.603928],[0.467959,0.603928,0.441306,0.627227,0.440927,0.603928],[0.441306,0.627227,0.412498,0.627223,0.440927,0.603928],[0.440927,0.603928,0.412498,0.627223,0.412093,0.603928],[0.412093,0.603928,0.412498,0.627223,0.389568,0.627227],[0.389568,0.627227,0.412498,0.627223,0.389678,0.651963],[0.389568,0.627227,0.389678,0.651963,0.365715,0.651963],[0.365715,0.651963,0.389678,0.651963,0.364916,0.680327],[0.366021,0.627223,0.389568,0.627227,0.365715,0.651963],[0.389465,0.603928,0.389568,0.627227,0.366021,0.627223],[0.389465,0.603928,0.412093,0.603928,0.389568,0.627227],[0.411463,0.567772,0.412093,0.603928,0.389465,0.603928],[0.440336,0.567772,0.412093,0.603928,0.411463,0.567772],[0.440927,0.603928,0.412093,0.603928,0.440336,0.567772],[0.468531,0.567772,0.440927,0.603928,0.440336,0.567772],[0.467959,0.603928,0.440927,0.603928,0.468531,0.567772],[0.490898,0.567772,0.467959,0.603928,0.468531,0.567772],[0.490898,0.567772,0.490898,0.603928,0.467959,0.603928],[0.310016,0.567772,0.285437,0.603928,0.285437,0.567772],[0.389304,0.567772,0.411463,0.567772,0.389465,0.603928],[0.389304,0.567772,0.389465,0.603928,0.366309,0.603928],[0.366309,0.603928,0.389465,0.603928,0.366021,0.627223],[0.366757,0.567772,0.389304,0.567772,0.366309,0.603928],[-2.463109,0.349271,-2.463558,0.436827,-2.373443,0.349269],[0.354054,-0.912290,0.333771,-0.819441,0.378839,-0.818533],[-2.550449,0.439612,-2.564688,0.302988,-2.624807,0.302948],[-2.624807,0.302948,-2.564688,0.302988,-2.612620,0.230532],[-2.564688,0.302988,-2.581828,0.230528,-2.612620,0.230532],[-2.463109,0.349271,-2.373443,0.349269,-2.463123,0.301738],[-2.463123,0.301738,-2.373443,0.349269,-2.374175,0.301738],[-2.855901,-0.607822,-2.793762,-0.690004,-2.854887,-0.690003],[-2.855901,-0.607822,-2.793705,-0.607819,-2.793762,-0.690004],[-2.855901,-0.607822,-2.793714,-0.532495,-2.793705,-0.607819],[-2.855901,-0.607822,-2.857061,-0.532476,-2.793714,-0.532495],[-2.463558,0.436827,-2.372533,0.436723,-2.373443,0.349269],[-2.463558,0.436827,-2.374507,0.500396,-2.372533,0.436723],[-2.463558,0.436827,-2.463560,0.500254,-2.374507,0.500396],[0.333771,-0.819441,0.378784,-0.750039,0.378839,-0.818533],[0.333771,-0.819441,0.333994,-0.750540,0.378784,-0.750039],[-2.626461,0.439371,-2.550083,0.500276,-2.550449,0.439612],[-2.626461,0.439371,-2.626446,0.500273,-2.550083,0.500276],[-2.665589,0.500273,-2.665605,0.439371,-2.731901,0.439899],[-2.731901,0.439899,-2.665605,0.439371,-2.732049,0.372172],[-2.626461,0.439371,-2.550449,0.439612,-2.624807,0.302948],[-2.834209,0.440428,-2.731901,0.439899,-2.732049,0.372172],[-2.731901,0.439899,-2.834209,0.440428,-2.834221,0.501132],[-2.834221,0.501132,-2.834209,0.440428,-2.977791,0.501446],[-2.834209,0.440428,-2.977797,0.440452,-2.977791,0.501446],[-2.977797,0.440452,-2.834209,0.440428,-2.977803,0.371361],[-2.834209,0.440428,-2.834208,0.371357,-2.977803,0.371361],[-2.834209,0.440428,-2.732049,0.372172,-2.834220,0.371365],[-2.834220,0.371365,-2.732049,0.372172,-2.824912,0.281276],[-2.732049,0.372172,-2.732111,0.281265,-2.824912,0.281276],[-2.732111,0.281265,-2.824899,0.216720,-2.824912,0.281276],[-2.732111,0.281265,-2.732233,0.216421,-2.824899,0.216720],[-2.612620,0.230532,-2.581828,0.230528,-2.598114,0.188417],[-2.463123,0.301738,-2.375268,0.249601,-2.463090,0.249830],[-2.463123,0.301738,-2.374175,0.301738,-2.375268,0.249601],[-2.819541,-0.826156,-2.854887,-0.690003,-2.793762,-0.690004],[-1.739334,-0.814037,-1.739268,-0.706816,-1.668487,-0.814252],[-1.668487,-0.814252,-1.739268,-0.706816,-1.668442,-0.705934],[-1.739636,-0.633204,-1.668442,-0.705934,-1.739268,-0.706816],[-1.668442,-0.705934,-1.739636,-0.633204,-1.669037,-0.633213],[-1.739641,-0.566507,-1.669037,-0.633213,-1.739636,-0.633204],[-1.739641,-0.566507,-1.668132,-0.566497,-1.669037,-0.633213],[-1.739356,-0.524493,-1.668132,-0.566497,-1.739641,-0.566507],[-1.739356,-0.524493,-1.668221,-0.524493,-1.668132,-0.566497],[-1.739356,-0.524493,-1.681686,-0.478040,-1.668221,-0.524493],[-1.739349,-0.478077,-1.681686,-0.478040,-1.739356,-0.524493],[-1.739349,-0.478077,-1.702212,-0.418091,-1.681686,-0.478040],[-1.739349,-0.478077,-1.739272,-0.418139,-1.702212,-0.418091],[-1.739349,-0.478077,-1.825044,-0.418227,-1.739272,-0.418139],[-1.825057,-0.478054,-1.825044,-0.418227,-1.739349,-0.478077],[-2.855851,-0.436203,-2.793705,-0.386653,-2.793705,-0.436203],[-2.855851,-0.436203,-2.855659,-0.386797,-2.793705,-0.386653],[0.519797,-0.683077,0.527950,-0.588816,0.525738,-0.683121],[0.519797,-0.683077,0.519816,-0.588990,0.527950,-0.588816],[0.519797,-0.683077,0.493505,-0.588981,0.519816,-0.588990],[0.493671,-0.683119,0.493505,-0.588981,0.519797,-0.683077],[-2.463563,0.548441,-2.375280,0.605725,-2.375255,0.548476],[-2.463563,0.548441,-2.463563,0.605692,-2.375280,0.605725],[0.378679,-0.670801,0.334501,-0.578217,0.378692,-0.576659],[0.334232,-0.671301,0.334501,-0.578217,0.378679,-0.670801],[-2.626446,0.547981,-2.549251,0.604745,-2.549692,0.548137],[-2.626446,0.547981,-2.626462,0.604241,-2.549251,0.604745],[-2.665590,0.547981,-2.731867,0.548296,-2.663826,0.604241],[-2.665590,0.547981,-2.731904,0.500625,-2.731867,0.548296],[-2.665589,0.500273,-2.731904,0.500625,-2.665590,0.547981],[-2.731901,0.439899,-2.731904,0.500625,-2.665589,0.500273],[-2.731904,0.500625,-2.731901,0.439899,-2.834221,0.501132],[-2.731904,0.500625,-2.834221,0.501132,-2.731867,0.548296],[-2.731867,0.548296,-2.834221,0.501132,-2.834229,0.548869],[0.143786,-0.735482,0.124364,-0.844476,0.091613,-0.732997],[-2.833867,0.548925,-2.834221,0.501132,-2.977791,0.501446],[-2.833867,0.548925,-2.977791,0.501446,-2.944967,0.548933],[-2.977791,0.501446,-2.984907,0.549032,-2.944967,0.548933],[-2.984907,0.549032,-2.984903,0.607238,-2.944967,0.548933],[-2.944995,0.607229,-2.944967,0.548933,-2.984903,0.607238],[-2.833867,0.548925,-2.944967,0.548933,-2.944995,0.607229],[-2.834000,0.607204,-2.833867,0.548925,-2.944995,0.607229],[0.091595,-0.642934,0.091613,-0.732997,0.067934,-0.640262],[0.143786,-0.641960,0.091613,-0.732997,0.091595,-0.642934],[0.143786,-0.641960,0.143786,-0.735482,0.091613,-0.732997],[-2.731867,0.548296,-2.834229,0.548869,-2.834156,0.607206],[-2.731714,0.606792,-2.731867,0.548296,-2.834156,0.607206],[-2.663826,0.604241,-2.731867,0.548296,-2.731714,0.606792],[-2.663826,0.604241,-2.731714,0.606792,-2.666289,0.653271],[-2.731714,0.606792,-2.731600,0.655309,-2.666289,0.653271],[-2.731714,0.606792,-2.834156,0.607206,-2.731600,0.655309],[-2.731600,0.655309,-2.834156,0.607206,-2.834173,0.654788],[0.143324,-0.521587,0.143786,-0.641960,0.091595,-0.642934],[0.143324,-0.521587,0.091595,-0.642934,0.087499,-0.522187],[0.087499,-0.522187,0.091595,-0.642934,0.036129,-0.522164],[0.091595,-0.642934,0.067934,-0.640262,0.036129,-0.522164],[-2.834000,0.607204,-2.944999,0.654761,-2.834010,0.654654],[-2.834000,0.607204,-2.944995,0.607229,-2.944999,0.654761],[-2.944995,0.607229,-2.984903,0.607238,-2.944999,0.654761],[-2.984903,0.607238,-2.984907,0.654987,-2.944999,0.654761],[-2.944999,0.654761,-2.984907,0.654987,-2.984911,0.729164],[-2.944999,0.654761,-2.984911,0.729164,-2.944976,0.728942],[-2.944976,0.728942,-2.984911,0.729164,-2.984913,0.804235],[-2.944976,0.728942,-2.984913,0.804235,-2.944945,0.803163],[-2.944945,0.803163,-2.984913,0.804235,-2.984921,0.866754],[-2.944945,0.803163,-2.984921,0.866754,-2.944965,0.866059],[-2.833978,0.802658,-2.944945,0.803163,-2.944965,0.866059],[-2.834006,0.728880,-2.944945,0.803163,-2.833978,0.802658],[-2.834006,0.728880,-2.944976,0.728942,-2.944945,0.803163],[-2.834010,0.654654,-2.944976,0.728942,-2.834006,0.728880],[-2.944976,0.728942,-2.834010,0.654654,-2.944999,0.654761],[0.035388,-0.428105,0.087499,-0.522187,0.036129,-0.522164],[0.087552,-0.428381,0.087499,-0.522187,0.035388,-0.428105],[0.143324,-0.521587,0.087499,-0.522187,0.087552,-0.428381],[0.143336,-0.427850,0.143324,-0.521587,0.087552,-0.428381],[-2.731600,0.655309,-2.834173,0.654788,-2.834184,0.728882],[-2.731600,0.655309,-2.834184,0.728882,-2.731429,0.728882],[-2.834193,0.802131,-2.731429,0.728882,-2.834184,0.728882],[-2.731429,0.728882,-2.834193,0.802131,-2.731212,0.801649],[-2.834190,0.864007,-2.731212,0.801649,-2.834193,0.802131],[-2.731212,0.801649,-2.834190,0.864007,-2.731541,0.865003],[-2.731212,0.801649,-2.731541,0.865003,-2.666304,0.801506],[-2.666304,0.801506,-2.731541,0.865003,-2.665609,0.865533],[-2.666304,0.801506,-2.665609,0.865533,-2.630138,0.801638],[-2.630138,0.801638,-2.665609,0.865533,-2.630205,0.865682],[-2.629981,0.728696,-2.666304,0.801506,-2.630138,0.801638],[-2.665520,0.728718,-2.666304,0.801506,-2.629981,0.728696],[-2.665520,0.728718,-2.731212,0.801649,-2.666304,0.801506],[-2.731429,0.728882,-2.731212,0.801649,-2.665520,0.728718],[-2.666289,0.653271,-2.731429,0.728882,-2.665520,0.728718],[-2.666289,0.653271,-2.731600,0.655309,-2.731429,0.728882],[-2.666289,0.653271,-2.665520,0.728718,-2.629955,0.653276],[-2.629955,0.653276,-2.665520,0.728718,-2.629981,0.728696],[-2.629955,0.653276,-2.629981,0.728696,-2.549606,0.653294],[-2.549606,0.653294,-2.629981,0.728696,-2.549549,0.728655],[-2.549549,0.728655,-2.629981,0.728696,-2.630014,0.801549],[-2.549549,0.728655,-2.630014,0.801549,-2.549309,0.800435],[-2.549309,0.800435,-2.630014,0.801549,-2.630234,0.865097],[-2.549309,0.800435,-2.630234,0.865097,-2.548728,0.866510],[0.334465,-0.256431,0.334819,-0.147781,0.375281,-0.148495],[0.334465,-0.256431,0.375281,-0.148495,0.375310,-0.256479],[0.375304,-0.374475,0.334465,-0.256431,0.375310,-0.256479],[0.334319,-0.374464,0.334465,-0.256431,0.375304,-0.374475],[0.375367,-0.498608,0.334319,-0.374464,0.375304,-0.374475],[0.334284,-0.498384,0.334319,-0.374464,0.375367,-0.498608],[0.334501,-0.578217,0.334284,-0.498384,0.375367,-0.498608],[-2.626462,0.604241,-2.549606,0.653294,-2.549251,0.604745],[-2.626462,0.604241,-2.629955,0.653276,-2.549606,0.653294],[-2.646033,0.604241,-2.666289,0.653271,-2.629955,0.653276],[0.334501,-0.578217,0.375367,-0.498608,0.378692,-0.576659],[0.417989,-0.565796,0.404787,-0.487745,0.422890,-0.487768],[0.404724,-0.363612,0.422890,-0.487768,0.404787,-0.487745],[0.422890,-0.487768,0.404724,-0.363612,0.422603,-0.363614],[0.404724,-0.363612,0.404726,-0.245631,0.422603,-0.363614],[0.422667,-0.245631,0.422603,-0.363614,0.404726,-0.245631],[-2.463429,0.728647,-2.463427,0.800397,-2.375309,0.728679],[-2.375309,0.728679,-2.463427,0.800397,-2.375240,0.801031],[-2.463427,0.800397,-2.463426,0.866671,-2.375240,0.801031],[0.422701,-0.136653,0.422667,-0.245631,0.404741,-0.138168],[0.404741,-0.138168,0.422667,-0.245631,0.404726,-0.245631],[-2.375240,0.801031,-2.463426,0.866671,-2.375335,0.865880],[0.519794,-0.268200,0.493770,-0.267827,0.493136,-0.161193],[0.520070,-0.386766,0.493770,-0.267827,0.519794,-0.268200],[0.493306,-0.386801,0.493770,-0.267827,0.520070,-0.386766],[0.519910,-0.510208,0.493306,-0.386801,0.520070,-0.386766],[0.493350,-0.510604,0.493306,-0.386801,0.519910,-0.510208],[-2.375303,0.653389,-2.463429,0.728647,-2.375309,0.728679],[-2.463421,0.653144,-2.463429,0.728647,-2.375303,0.653389],[-2.463563,0.605692,-2.463421,0.653144,-2.375303,0.653389],[-2.463563,0.605692,-2.375303,0.653389,-2.375280,0.605725],[0.493505,-0.588981,0.493350,-0.510604,0.519910,-0.510208],[0.493505,-0.588981,0.519910,-0.510208,0.519816,-0.588990],[0.519816,-0.588990,0.519910,-0.510208,0.527950,-0.588816],[0.527950,-0.588816,0.519910,-0.510208,0.528025,-0.509684],[0.519910,-0.510208,0.520070,-0.386766,0.528025,-0.509684],[0.528025,-0.509684,0.520070,-0.386766,0.528269,-0.386719],[0.520070,-0.386766,0.519794,-0.268200,0.528269,-0.386719],[0.528269,-0.386719,0.519794,-0.268200,0.528260,-0.268128],[0.519794,-0.268200,0.518339,-0.161749,0.528260,-0.268128],[0.528260,-0.268128,0.518339,-0.161749,0.527932,-0.161557],[-2.855633,-0.218787,-2.855661,-0.162954,-2.793740,-0.217727],[-2.855661,-0.162954,-2.793743,-0.163305,-2.793740,-0.217727],[-2.793740,-0.280879,-2.855633,-0.218787,-2.793740,-0.217727],[-2.855632,-0.280917,-2.855633,-0.218787,-2.793740,-0.280879],[-2.855653,-0.345339,-2.855632,-0.280917,-2.793740,-0.280879],[-2.855653,-0.345339,-2.793740,-0.280879,-2.793707,-0.345418],[0.619936,-0.427020,0.594762,-0.308664,0.618965,-0.307230],[0.594762,-0.308664,0.592139,-0.230125,0.618965,-0.307230],[0.618965,-0.307230,0.592139,-0.230125,0.618909,-0.230289],[0.618909,-0.230289,0.592139,-0.230125,0.581000,-0.143521],[0.618909,-0.230289,0.581000,-0.143521,0.616274,-0.143263],[-1.825045,-0.224423,-1.825012,-0.171487,-1.739137,-0.224909],[-1.739137,-0.224909,-1.825012,-0.171487,-1.738959,-0.170947],[-1.739137,-0.224909,-1.738959,-0.170947,-1.701568,-0.224693],[-1.738959,-0.170947,-1.701688,-0.171142,-1.701568,-0.224693],[-1.701688,-0.171142,-1.666371,-0.171710,-1.701568,-0.224693],[-1.666371,-0.171710,-1.665724,-0.224664,-1.701568,-0.224693],[-1.701568,-0.224693,-1.665724,-0.224664,-1.665980,-0.272064],[-1.665724,-0.224664,-1.633971,-0.272431,-1.665980,-0.272064],[-1.633971,-0.272431,-1.665724,-0.224664,-1.634013,-0.224955],[-1.665724,-0.224664,-1.666089,-0.171261,-1.634013,-0.224955],[-1.634013,-0.224955,-1.666089,-0.171261,-1.634000,-0.171199],[-1.497598,-0.224955,-1.497605,-0.171199,-1.413546,-0.225039],[-1.413546,-0.225039,-1.497605,-0.171199,-1.413545,-0.170437],[-1.375414,-0.170251,-1.413546,-0.225039,-1.413545,-0.170437],[-1.375487,-0.224617,-1.413546,-0.225039,-1.375414,-0.170251],[-1.375166,-0.272714,-1.413546,-0.225039,-1.375487,-0.224617],[-1.413545,-0.272858,-1.413546,-0.225039,-1.375166,-0.272714],[-1.413545,-0.272858,-1.497598,-0.224955,-1.413546,-0.225039],[-1.497598,-0.224955,-1.413545,-0.272858,-1.497620,-0.272431],[-1.497620,-0.272431,-1.413545,-0.272858,-1.413545,-0.345498],[-1.374969,-0.345914,-1.413545,-0.345498,-1.413545,-0.272858],[-1.374874,-0.417735,-1.413545,-0.345498,-1.374969,-0.345914],[-1.413545,-0.417742,-1.413545,-0.345498,-1.374874,-0.417735],[-1.497634,-0.417930,-1.413545,-0.345498,-1.413545,-0.417742],[-1.497634,-0.417930,-1.497647,-0.345930,-1.413545,-0.345498],[-1.666094,-0.418062,-1.633918,-0.345930,-1.633943,-0.417930],[-1.666094,-0.418062,-1.666033,-0.345125,-1.633918,-0.345930],[-1.701865,-0.344672,-1.666033,-0.345125,-1.666094,-0.418062],[-1.701604,-0.271988,-1.666033,-0.345125,-1.701865,-0.344672],[-1.701604,-0.271988,-1.665980,-0.272064,-1.666033,-0.345125],[-1.701568,-0.224693,-1.665980,-0.272064,-1.701604,-0.271988],[-1.701604,-0.271988,-1.739137,-0.224909,-1.701568,-0.224693],[-1.739182,-0.271614,-1.739137,-0.224909,-1.701604,-0.271988],[-1.739182,-0.271614,-1.825045,-0.224423,-1.739137,-0.224909],[-1.825045,-0.271226,-1.825045,-0.224423,-1.739182,-0.271614],[-1.739304,-0.344251,-1.825045,-0.271226,-1.739182,-0.271614],[-1.825058,-0.344093,-1.825045,-0.271226,-1.739304,-0.344251],[-1.739272,-0.418139,-1.825058,-0.344093,-1.739304,-0.344251],[-1.825044,-0.418227,-1.825058,-0.344093,-1.739272,-0.418139],[-2.793705,-0.386653,-2.855653,-0.345339,-2.793707,-0.345418],[-2.855659,-0.386797,-2.855653,-0.345339,-2.793705,-0.386653],[-1.739272,-0.418139,-1.739304,-0.344251,-1.702212,-0.418091],[-1.702212,-0.418091,-1.739304,-0.344251,-1.701865,-0.344672],[-1.739304,-0.344251,-1.739182,-0.271614,-1.701865,-0.344672],[-1.701865,-0.344672,-1.739182,-0.271614,-1.701604,-0.271988],[-1.702212,-0.418091,-1.701865,-0.344672,-1.666094,-0.418062],[-1.702212,-0.418091,-1.666094,-0.418062,-1.681686,-0.478040],[-1.681686,-0.478040,-1.666094,-0.418062,-1.633943,-0.417930],[-1.681686,-0.478040,-1.633943,-0.417930,-1.633977,-0.478138],[-1.497617,-0.478446,-1.497634,-0.417930,-1.413545,-0.417742],[-1.497617,-0.478446,-1.413545,-0.417742,-1.413544,-0.478639],[-1.413544,-0.478639,-1.413545,-0.417742,-1.374874,-0.417735],[-1.413544,-0.478639,-1.374874,-0.417735,-1.387826,-0.478744],[-1.413544,-0.478639,-1.387826,-0.478744,-1.413544,-0.524693],[-1.413544,-0.524693,-1.387826,-0.478744,-1.384910,-0.524692],[-1.413544,-0.524693,-1.384910,-0.524692,-1.417123,-0.565879],[-1.497811,-0.565559,-1.413544,-0.524693,-1.417123,-0.565879],[-1.497288,-0.524692,-1.413544,-0.524693,-1.497811,-0.565559],[-1.497288,-0.524692,-1.413544,-0.478639,-1.413544,-0.524693],[-1.497617,-0.478446,-1.413544,-0.478639,-1.497288,-0.524692],[-1.668221,-0.524493,-1.633977,-0.478138,-1.634630,-0.524493],[-1.681686,-0.478040,-1.633977,-0.478138,-1.668221,-0.524493],[-1.668221,-0.524493,-1.634630,-0.524493,-1.668132,-0.566497],[-1.634630,-0.524493,-1.634113,-0.567340,-1.668132,-0.566497],[-1.668132,-0.566497,-1.634113,-0.567340,-1.669037,-0.633213],[-1.497811,-0.565559,-1.417123,-0.565879,-1.496837,-0.634129],[-1.496837,-0.634129,-1.417123,-0.565879,-1.430463,-0.634311],[-0.620650,-0.625443,-0.620634,-0.510871,-0.676796,-0.510972],[-0.620634,-0.510871,-0.620647,-0.457854,-0.676796,-0.510972],[-0.620634,-0.510871,-0.591002,-0.456032,-0.620647,-0.457854],[-0.591002,-0.456032,-0.591648,-0.397122,-0.620647,-0.457854],[-0.620647,-0.457854,-0.591648,-0.397122,-0.620563,-0.397305],[-0.620563,-0.397305,-0.591648,-0.397122,-0.620470,-0.333959],[-0.591648,-0.397122,-0.591666,-0.334407,-0.620470,-0.333959],[-0.591666,-0.334407,-0.620470,-0.283293,-0.620470,-0.333959],[-0.591666,-0.334407,-0.591576,-0.283343,-0.620470,-0.283293],[-0.591576,-0.283343,-0.620470,-0.210619,-0.620470,-0.283293],[-0.591576,-0.283343,-0.591498,-0.210619,-0.620470,-0.210619],[-0.591498,-0.210619,-0.620471,-0.148685,-0.620470,-0.210619],[-0.591498,-0.210619,-0.591416,-0.148603,-0.620471,-0.148685],[-0.620470,-0.210619,-0.620471,-0.148685,-0.676409,-0.148054],[-0.620470,-0.210619,-0.676409,-0.148054,-0.674931,-0.210689],[0.285364,-0.329540,0.274282,-0.250142,0.251746,-0.335495],[0.281562,-0.379641,0.285364,-0.329540,0.251746,-0.335495],[-0.620470,-0.283293,-0.674931,-0.210689,-0.674931,-0.283085],[-0.620470,-0.210619,-0.674931,-0.210689,-0.620470,-0.283293],[-0.620470,-0.333959,-0.620470,-0.283293,-0.674931,-0.283085],[-0.620470,-0.333959,-0.674931,-0.283085,-0.674931,-0.333696],[0.282076,-0.529999,0.281562,-0.379641,0.249673,-0.378296],[0.281562,-0.379641,0.251746,-0.335495,0.249673,-0.378296],[-0.674908,-0.283016,-0.674871,-0.210702,-0.737321,-0.283147],[-0.674871,-0.210702,-0.736376,-0.210617,-0.737321,-0.283147],[-0.674871,-0.210702,-0.678495,-0.147988,-0.736376,-0.210617],[-0.678495,-0.147988,-0.729749,-0.148203,-0.736376,-0.210617],[-0.736376,-0.210617,-0.729749,-0.148203,-0.788808,-0.148849],[-0.736376,-0.210617,-0.788808,-0.148849,-0.790769,-0.210497],[-0.790769,-0.210497,-0.788808,-0.148849,-0.821725,-0.148536],[-0.822991,-0.210493,-0.790769,-0.210497,-0.821725,-0.148536],[-0.794718,-0.283377,-0.790769,-0.210497,-0.822991,-0.210493],[-0.737321,-0.283147,-0.790769,-0.210497,-0.794718,-0.283377],[-0.737321,-0.283147,-0.736376,-0.210617,-0.790769,-0.210497],[-0.737617,-0.333466,-0.737321,-0.283147,-0.794718,-0.283377],[-0.674908,-0.283016,-0.737321,-0.283147,-0.737617,-0.333466],[-0.674829,-0.333464,-0.674908,-0.283016,-0.737617,-0.333466],[0.282076,-0.529999,0.249673,-0.378296,0.243449,-0.530031],[0.282076,-0.529999,0.243449,-0.530031,0.259920,-0.608232],[-0.676909,-0.397763,-0.674829,-0.333464,-0.735322,-0.397722],[-0.674829,-0.333464,-0.737617,-0.333466,-0.735322,-0.397722],[-0.735322,-0.397722,-0.737617,-0.333466,-0.812623,-0.333006],[-0.737617,-0.333466,-0.794718,-0.283377,-0.812623,-0.333006],[-0.812623,-0.333006,-0.794718,-0.283377,-0.822341,-0.283380],[-0.794718,-0.283377,-0.822991,-0.210493,-0.822341,-0.283380],[-0.822341,-0.283380,-0.822991,-0.210493,-0.911067,-0.283483],[-0.822991,-0.210493,-0.911100,-0.210470,-0.911067,-0.283483],[-0.822991,-0.210493,-0.824290,-0.148987,-0.911100,-0.210470],[-0.824290,-0.148987,-0.911167,-0.149106,-0.911100,-0.210470],[-0.822341,-0.283380,-0.911067,-0.283483,-0.911034,-0.333511],[-0.812623,-0.333006,-0.822341,-0.283380,-0.911034,-0.333511],[-0.910950,-0.396247,-0.812623,-0.333006,-0.911034,-0.333511],[-0.812830,-0.396917,-0.812623,-0.333006,-0.910950,-0.396247],[-0.735322,-0.397722,-0.812623,-0.333006,-0.812830,-0.396917],[-0.735322,-0.397722,-0.812830,-0.396917,-0.736659,-0.458403],[-0.736659,-0.458403,-0.812830,-0.396917,-0.812579,-0.457221],[-0.812579,-0.457221,-0.812830,-0.396917,-0.910866,-0.456184],[-0.910866,-0.456184,-0.812830,-0.396917,-0.910950,-0.396247],[-0.910815,-0.510800,-0.812579,-0.457221,-0.910866,-0.456184],[-0.812624,-0.510745,-0.812579,-0.457221,-0.910815,-0.510800],[-0.742048,-0.510862,-0.812579,-0.457221,-0.812624,-0.510745],[-0.736659,-0.458403,-0.812579,-0.457221,-0.742048,-0.510862],[-0.676877,-0.457732,-0.736659,-0.458403,-0.742048,-0.510862],[-0.676877,-0.457732,-0.676909,-0.397763,-0.736659,-0.458403],[-0.620563,-0.397305,-0.676909,-0.397763,-0.676877,-0.457732],[-0.620563,-0.397305,-0.674931,-0.333696,-0.676909,-0.397763],[-0.620563,-0.397305,-0.620470,-0.333959,-0.674931,-0.333696],[-0.620647,-0.457854,-0.620563,-0.397305,-0.676877,-0.457732],[-0.620647,-0.457854,-0.676877,-0.457732,-0.676796,-0.510972],[-0.676877,-0.457732,-0.742048,-0.510862,-0.676796,-0.510972],[-0.676796,-0.510972,-0.742048,-0.510862,-0.674929,-0.625493],[-0.674929,-0.625493,-0.742048,-0.510862,-0.745745,-0.625613],[-0.742048,-0.510862,-0.812624,-0.510745,-0.745745,-0.625613],[-0.745745,-0.625613,-0.812624,-0.510745,-0.812969,-0.625642],[-0.812969,-0.625642,-0.812624,-0.510745,-0.910645,-0.625561],[-0.910645,-0.625561,-0.812624,-0.510745,-0.910815,-0.510800],[-0.910635,-0.697862,-0.812969,-0.625642,-0.910645,-0.625561],[-0.812785,-0.697664,-0.812969,-0.625642,-0.910635,-0.697862],[-0.745745,-0.625613,-0.812969,-0.625642,-0.812785,-0.697664],[-0.745745,-0.625613,-0.812785,-0.697664,-0.747058,-0.698278],[-0.750051,-0.789610,-0.747058,-0.698278,-0.812785,-0.697664],[-0.750051,-0.789610,-0.676876,-0.790150,-0.747058,-0.698278],[-1.510699,0.182980,-1.623167,0.182111,-1.510699,0.258417],[-1.510699,0.258417,-1.623167,0.182111,-1.623167,0.258226],[-1.772027,0.182212,-1.854554,0.264667,-1.772055,0.264672],[-1.772027,0.182212,-1.854476,0.182334,-1.854554,0.264667],[-0.806746,-0.790262,-0.750051,-0.789610,-0.812785,-0.697664],[-0.852865,-0.791595,-0.812785,-0.697664,-0.910635,-0.697862],[-1.854476,0.182334,-1.938104,0.264665,-1.854554,0.264667],[-1.854554,0.264667,-1.938104,0.264665,-1.938919,0.316772],[-0.368967,-0.745210,-0.378932,-0.814640,-0.394226,-0.742139],[-0.368854,-0.684687,-0.368967,-0.745210,-0.394226,-0.742139],[-1.854553,0.316740,-1.938919,0.316772,-1.938901,0.383698],[-1.854553,0.316740,-1.854554,0.264667,-1.938919,0.316772],[-1.772055,0.264672,-1.854554,0.264667,-1.854553,0.316740],[-1.772057,0.316764,-1.772055,0.264672,-1.854553,0.316740],[-1.510700,0.309038,-1.623167,0.258226,-1.623165,0.309036],[-1.510700,0.309038,-1.510699,0.258417,-1.623167,0.258226],[-1.408642,0.302622,-1.510699,0.258417,-1.510700,0.309038],[-1.408642,0.302622,-1.408535,0.258593,-1.510699,0.258417],[-2.854098,0.281413,-2.977807,0.216761,-2.977808,0.281434],[-2.854098,0.281413,-2.854088,0.216941,-2.977807,0.216761],[-2.854088,0.216941,-2.977798,0.182205,-2.977807,0.216761],[-2.854088,0.216941,-2.854088,0.182925,-2.977798,0.182205],[-2.732233,0.216421,-2.824899,0.182628,-2.824899,0.216720],[-2.732233,0.216421,-2.732252,0.181520,-2.824899,0.182628],[-1.493053,-0.803956,-1.496840,-0.705934,-1.453622,-0.706579],[-1.496840,-0.705934,-1.430463,-0.634311,-1.453622,-0.706579],[-1.496840,-0.705934,-1.496837,-0.634129,-1.430463,-0.634311],[-0.620663,-0.697106,-0.620650,-0.625443,-0.674929,-0.625493],[-0.620650,-0.625443,-0.676796,-0.510972,-0.674929,-0.625493],[-0.620663,-0.697106,-0.674929,-0.625493,-0.676850,-0.697003],[-0.674929,-0.625493,-0.745745,-0.625613,-0.676850,-0.697003],[-0.676850,-0.697003,-0.745745,-0.625613,-0.747058,-0.698278],[-0.676876,-0.790150,-0.676850,-0.697003,-0.747058,-0.698278],[-0.620646,-0.790394,-0.676850,-0.697003,-0.676876,-0.790150],[-0.620646,-0.790394,-0.620663,-0.697106,-0.676850,-0.697003],[-1.408535,0.183918,-1.510699,0.182980,-1.408535,0.258593],[-1.408535,0.258593,-1.510699,0.182980,-1.510699,0.258417],[-2.834208,0.371357,-2.854098,0.281413,-2.977808,0.281434],[-2.977803,0.371361,-2.834208,0.371357,-2.977808,0.281434],[-1.380023,0.363593,-1.408642,0.302622,-1.408591,0.362328],[-1.408591,0.362328,-1.408642,0.302622,-1.510701,0.364647],[-1.510701,0.364647,-1.408642,0.302622,-1.510700,0.309038],[-1.510701,0.364647,-1.510700,0.309038,-1.623165,0.309036],[-1.510701,0.364647,-1.623165,0.309036,-1.623159,0.364647],[-1.772057,0.316764,-1.854553,0.316740,-1.772061,0.383656],[-1.772061,0.383656,-1.854553,0.316740,-1.854554,0.383621],[-1.854554,0.383621,-1.854553,0.316740,-1.938901,0.383698],[-1.854554,0.383621,-1.938901,0.383698,-1.854554,0.488646],[-1.854554,0.488646,-1.938901,0.383698,-1.938900,0.486787],[-0.368854,-0.684687,-0.394250,-0.684742,-0.368611,-0.611489],[-0.368854,-0.684687,-0.394226,-0.742139,-0.394250,-0.684742],[-0.368611,-0.611489,-0.394250,-0.684742,-0.394319,-0.611930],[-0.368611,-0.611489,-0.394319,-0.611930,-0.394250,-0.457876],[-0.368611,-0.611489,-0.394250,-0.457876,-0.368537,-0.457977],[-0.368537,-0.457977,-0.394250,-0.457876,-0.394320,-0.397638],[-0.368537,-0.457977,-0.394320,-0.397638,-0.368774,-0.398216],[-0.368774,-0.398216,-0.394320,-0.397638,-0.394318,-0.316296],[-0.368774,-0.398216,-0.394318,-0.316296,-0.369444,-0.315343],[-0.369444,-0.315343,-0.394318,-0.316296,-0.384437,-0.207227],[-1.854554,0.488646,-1.938900,0.486787,-1.854520,0.549634],[-1.854520,0.549634,-1.938900,0.486787,-1.938972,0.546374],[-1.854520,0.549634,-1.938972,0.546374,-1.857489,0.644584],[-1.857489,0.644584,-1.938972,0.546374,-1.938565,0.645006],[-1.938972,0.546374,-1.958974,0.644943,-1.938565,0.645006],[-1.938565,0.645006,-1.958974,0.644943,-1.938568,0.728038],[-1.938568,0.728038,-1.958974,0.644943,-1.958996,0.728128],[-1.938578,0.842032,-1.938568,0.728038,-1.958996,0.728128],[-1.938578,0.842032,-1.857477,0.728639,-1.938568,0.728038],[-1.857489,0.644584,-1.938568,0.728038,-1.857477,0.728639],[-1.938568,0.728038,-1.857489,0.644584,-1.938565,0.645006],[-1.634492,0.484987,-1.624545,0.571961,-1.552856,0.572054],[-1.552856,0.572054,-1.624545,0.571961,-1.553475,0.638062],[-1.553475,0.638062,-1.624545,0.571961,-1.624217,0.637985],[-1.747856,0.385831,-1.764792,0.451359,-1.730884,0.451720],[-1.730884,0.451720,-1.764792,0.451359,-1.731063,0.536853],[-1.764792,0.451359,-1.764870,0.537581,-1.731063,0.536853],[-1.731063,0.536853,-1.764870,0.537581,-1.731036,0.606850],[-1.764870,0.537581,-1.764866,0.607188,-1.731036,0.606850],[-1.731036,0.606850,-1.764866,0.607188,-1.731085,0.688998],[-1.764866,0.607188,-1.764818,0.688909,-1.731085,0.688998],[-1.624515,0.723118,-1.624470,0.793115,-1.553752,0.793029],[-1.553752,0.793029,-1.624470,0.793115,-1.554342,0.875255],[-1.624470,0.793115,-1.622333,0.875161,-1.554342,0.875255],[-1.510609,0.875287,-1.553752,0.793029,-1.554342,0.875255],[-1.510654,0.792329,-1.553752,0.793029,-1.510609,0.875287],[-1.510654,0.792329,-1.553393,0.722880,-1.553752,0.793029],[-1.510654,0.792329,-1.510637,0.721766,-1.553393,0.722880],[-1.510637,0.721766,-1.510654,0.792329,-1.479796,0.792314],[-1.479796,0.792314,-1.510654,0.792329,-1.510639,0.875280],[-1.479796,0.792314,-1.510639,0.875280,-1.479804,0.875400],[-1.408537,0.791468,-1.479796,0.792314,-1.479804,0.875400],[-1.408537,0.791468,-1.408537,0.720674,-1.479796,0.792314],[-1.408537,0.720674,-1.408537,0.791468,-1.380331,0.719982],[-1.380331,0.719982,-1.408537,0.791468,-1.380329,0.791254],[-1.408537,0.791468,-1.408537,0.875518,-1.380329,0.791254],[-1.408537,0.875518,-1.408537,0.791468,-1.479804,0.875400],[-1.380329,0.791254,-1.408537,0.875518,-1.380327,0.875519],[-1.380333,0.638720,-1.408537,0.720674,-1.380331,0.719982],[-1.380333,0.638720,-1.408537,0.638409,-1.408537,0.720674],[-1.380336,0.572020,-1.408537,0.638409,-1.380333,0.638720],[-1.408537,0.571956,-1.408537,0.638409,-1.380336,0.572020],[-1.408537,0.571956,-1.479780,0.638424,-1.408537,0.638409],[-1.408537,0.571956,-1.479773,0.572044,-1.479780,0.638424],[-1.408534,0.546920,-1.479773,0.572044,-1.408537,0.571956],[-1.408534,0.546920,-1.510701,0.484987,-1.479773,0.572044],[-1.408527,0.484987,-1.510701,0.484987,-1.408534,0.546920],[-1.408527,0.484987,-1.510700,0.428320,-1.510701,0.484987],[-1.408479,0.435012,-1.510700,0.428320,-1.408527,0.484987],[-1.408479,0.435012,-1.510701,0.364647,-1.510700,0.428320],[-1.408479,0.435012,-1.408591,0.362328,-1.510701,0.364647],[-1.380089,0.434326,-1.408591,0.362328,-1.408479,0.435012],[-1.380089,0.434326,-1.380023,0.363593,-1.408591,0.362328],[-1.380089,0.434326,-1.408479,0.435012,-1.380390,0.485003],[-1.408479,0.435012,-1.408527,0.484987,-1.380390,0.485003],[-1.380390,0.485003,-1.408527,0.484987,-1.408534,0.546920],[-1.380390,0.485003,-1.408534,0.546920,-1.380351,0.546732],[-1.380351,0.546732,-1.408534,0.546920,-1.408537,0.571956],[-1.380351,0.546732,-1.408537,0.571956,-1.380336,0.572020],[-1.510700,0.428320,-1.510701,0.364647,-1.623148,0.428297],[-1.623148,0.428297,-1.510701,0.364647,-1.623159,0.364647],[-1.772061,0.383656,-1.854554,0.488646,-1.772068,0.486758],[-1.772061,0.383656,-1.854554,0.383621,-1.854554,0.488646],[-1.854520,0.549634,-1.772068,0.486758,-1.854554,0.488646],[-1.623148,0.428297,-1.634492,0.484987,-1.510701,0.484987],[-1.510701,0.484987,-1.634492,0.484987,-1.552856,0.572054],[-1.510658,0.572046,-1.510701,0.484987,-1.552856,0.572054],[-1.479773,0.572044,-1.510701,0.484987,-1.510658,0.572046],[-1.479780,0.638424,-1.479773,0.572044,-1.510658,0.572046],[-1.479780,0.638424,-1.510658,0.572046,-1.510619,0.638375],[-1.510619,0.638375,-1.510658,0.572046,-1.552856,0.572054],[-1.510619,0.638375,-1.552856,0.572054,-1.553475,0.638062],[-1.510637,0.721766,-1.510619,0.638375,-1.553475,0.638062],[-1.510619,0.638375,-1.510637,0.721766,-1.479789,0.721636],[-1.479789,0.721636,-1.510637,0.721766,-1.479796,0.792314],[-1.408537,0.720674,-1.479789,0.721636,-1.479796,0.792314],[-1.408537,0.720674,-1.408537,0.638409,-1.479789,0.721636],[-1.408537,0.638409,-1.479780,0.638424,-1.479789,0.721636],[-1.479789,0.721636,-1.479780,0.638424,-1.510619,0.638375],[-1.510637,0.721766,-1.553475,0.638062,-1.553393,0.722880],[-1.553475,0.638062,-1.624217,0.637985,-1.553393,0.722880],[-1.624217,0.637985,-1.624515,0.723118,-1.553393,0.722880],[-1.553393,0.722880,-1.624515,0.723118,-1.553752,0.793029],[-1.510700,0.428320,-1.623148,0.428297,-1.510701,0.484987],[-0.676909,-0.397763,-0.735322,-0.397722,-0.736659,-0.458403],[-1.666033,-0.345125,-1.665980,-0.272064,-1.633918,-0.345930],[-1.633918,-0.345930,-1.665980,-0.272064,-1.633971,-0.272431],[-1.497620,-0.272431,-1.413545,-0.345498,-1.497647,-0.345930],[-1.374969,-0.345914,-1.413545,-0.272858,-1.375166,-0.272714],[0.493136,-0.161193,0.519644,-0.161110,0.519794,-0.268200],[0.143361,-0.178114,0.143391,-0.275189,0.089078,-0.178467],[0.089078,-0.178467,0.143391,-0.275189,0.088637,-0.274447],[0.143391,-0.275189,0.143336,-0.427850,0.088637,-0.274447],[0.088637,-0.274447,0.143336,-0.427850,0.087552,-0.428381],[0.035784,-0.274776,0.087552,-0.428381,0.035388,-0.428105],[0.087642,-0.274526,0.087552,-0.428381,0.035784,-0.274776],[0.087155,-0.178540,0.087642,-0.274526,0.035784,-0.274776],[0.036548,-0.178089,0.087155,-0.178540,0.035784,-0.274776],[-2.833978,0.802658,-2.944965,0.866059,-2.834004,0.865469],[-2.626446,0.500273,-2.626446,0.547981,-2.550083,0.500276],[-2.550083,0.500276,-2.626446,0.547981,-2.549692,0.548137],[0.333994,-0.750540,0.334232,-0.671301,0.378679,-0.670801],[0.333994,-0.750540,0.378679,-0.670801,0.378784,-0.750039],[-2.463560,0.500254,-2.463563,0.548441,-2.375255,0.548476],[-2.463560,0.500254,-2.375255,0.548476,-2.374507,0.500396],[0.498637,-0.762181,0.493671,-0.683119,0.519797,-0.683077],[0.498637,-0.762181,0.519797,-0.683077,0.511813,-0.761916],[0.511813,-0.761916,0.519797,-0.683077,0.525738,-0.683121],[-2.857056,-0.477484,-2.855851,-0.436203,-2.793705,-0.436203],[-2.857056,-0.477484,-2.793705,-0.436203,-2.793706,-0.477414],[-1.825054,-0.524493,-1.825057,-0.478054,-1.739356,-0.524493],[-1.739356,-0.524493,-1.825057,-0.478054,-1.739349,-0.478077],[-1.739641,-0.566507,-1.825054,-0.524493,-1.739356,-0.524493],[-1.825054,-0.524493,-1.739641,-0.566507,-1.825048,-0.566520],[-1.825048,-0.566520,-1.739641,-0.566507,-1.825046,-0.633210],[-1.739641,-0.566507,-1.739636,-0.633204,-1.825046,-0.633210],[-1.739268,-0.706816,-1.825046,-0.633210,-1.739636,-0.633204],[-2.857061,-0.532476,-2.793706,-0.477414,-2.793714,-0.532495],[-2.857061,-0.532476,-2.857056,-0.477484,-2.793706,-0.477414],[0.498637,-0.762181,0.511813,-0.761916,0.501530,-0.863507],[-3.154820,-44.448380,-4.087114,-43.562412,-3.407222,-43.562752],[0.110143,-1.715881,0.215065,-1.785608,0.118081,-1.788776],[0.110143,-1.715881,0.224880,-1.711631,0.215065,-1.785608],[0.118081,-1.788776,0.215065,-1.785608,0.170875,-1.860480],[1.449784,0.405155,1.610980,0.483793,1.449492,0.483904],[1.449784,0.405155,1.613561,0.404682,1.610980,0.483793],[1.613561,0.404682,1.449784,0.405155,1.450199,0.348493],[1.450199,0.348493,1.622192,0.349146,1.613561,0.404682],[1.450199,0.348493,1.450401,0.283640,1.622192,0.349146],[1.294702,0.283148,1.450401,0.283640,1.450199,0.348493],[1.294702,0.283148,1.450199,0.348493,1.294702,0.348374],[1.450199,0.348493,1.449784,0.405155,1.294702,0.348374],[1.294702,0.348374,1.449784,0.405155,1.294702,0.405338],[1.449784,0.405155,1.449492,0.483904,1.294702,0.405338],[1.294702,0.405338,1.449492,0.483904,1.294702,0.483952],[1.449492,0.483904,1.449327,0.555323,1.294702,0.483952],[1.449492,0.483904,1.610425,0.555271,1.449327,0.555323],[1.449492,0.483904,1.610980,0.483793,1.610425,0.555271],[1.610425,0.555271,1.612866,0.610454,1.449327,0.555323],[1.449327,0.555323,1.612866,0.610454,1.449182,0.610515],[1.612866,0.610454,1.613450,0.669821,1.449182,0.610515],[1.449182,0.610515,1.613450,0.669821,1.474464,0.670352],[1.613756,0.713953,1.474464,0.670352,1.613450,0.669821],[1.613756,0.713953,1.491997,0.717402,1.474464,0.670352],[1.613756,0.713953,1.499509,0.764472,1.491997,0.717402],[1.615596,0.767159,1.499509,0.764472,1.613756,0.713953],[1.499509,0.764472,1.455550,0.728677,1.491997,0.717402],[1.455550,0.728677,1.499509,0.764472,1.466242,0.768190],[1.474464,0.670352,1.491997,0.717402,1.455550,0.728677],[1.474464,0.670352,1.455550,0.728677,1.449541,0.674680],[1.449182,0.610515,1.474464,0.670352,1.449541,0.674680],[1.449327,0.555323,1.449182,0.610515,1.296023,0.555354],[1.296023,0.555354,1.449182,0.610515,1.295592,0.610565],[1.449182,0.610515,1.432169,0.673883,1.295592,0.610565],[1.295592,0.610565,1.432169,0.673883,1.303197,0.670380],[1.428874,0.729200,1.303197,0.670380,1.432169,0.673883],[1.428874,0.729200,1.310298,0.724959,1.303197,0.670380],[1.414331,0.782858,1.310298,0.724959,1.428874,0.729200],[1.414331,0.782858,1.313338,0.777267,1.310298,0.724959],[1.313338,0.777267,1.291003,0.775892,1.310298,0.724959],[1.291003,0.775892,1.286301,0.730171,1.310298,0.724959],[1.310298,0.724959,1.286301,0.730171,1.303197,0.670380],[1.286301,0.730171,1.293144,0.675933,1.303197,0.670380],[1.286301,0.730171,1.157307,0.722137,1.293144,0.675933],[1.286301,0.730171,1.171500,0.767861,1.157307,0.722137],[1.284943,0.773371,1.171500,0.767861,1.286301,0.730171],[1.171500,0.767861,1.136505,0.771680,1.157307,0.722137],[1.157307,0.722137,1.136505,0.771680,1.134456,0.730096],[1.150850,0.676039,1.157307,0.722137,1.134456,0.730096],[1.293144,0.675933,1.157307,0.722137,1.150850,0.676039],[1.149097,0.610539,1.293144,0.675933,1.150850,0.676039],[1.295592,0.610565,1.293144,0.675933,1.149097,0.610539],[1.295592,0.610565,1.303197,0.670380,1.293144,0.675933],[1.149030,0.555354,1.295592,0.610565,1.149097,0.610539],[1.296023,0.555354,1.295592,0.610565,1.149030,0.555354],[1.148919,0.483903,1.296023,0.555354,1.149030,0.555354],[1.294702,0.483952,1.296023,0.555354,1.148919,0.483903],[1.294702,0.483952,1.449327,0.555323,1.296023,0.555354],[1.148799,0.405155,1.294702,0.483952,1.148919,0.483903],[1.294702,0.405338,1.294702,0.483952,1.148799,0.405155],[1.148669,0.348493,1.294702,0.405338,1.148799,0.405155],[1.294702,0.348374,1.294702,0.405338,1.148669,0.348493],[1.148605,0.283640,1.294702,0.348374,1.148669,0.348493],[1.294702,0.283148,1.294702,0.348374,1.148605,0.283640],[-0.395750,0.223631,-0.623513,0.109647,-0.395797,0.111590],[-0.395750,0.223631,-0.623610,0.221630,-0.623513,0.109647],[-0.395750,0.223631,-0.395651,0.321522,-0.623610,0.221630],[-0.623610,0.221630,-0.395651,0.321522,-0.623724,0.317575],[-0.395651,0.321522,-0.395560,0.457569,-0.623724,0.317575],[-0.623724,0.317575,-0.395560,0.457569,-0.623725,0.454244],[-0.623725,0.454244,-0.395560,0.457569,-0.395477,0.581009],[-0.623725,0.454244,-0.395477,0.581009,-0.623924,0.577737],[-0.395477,0.581009,-0.395427,0.676346,-0.623924,0.577737],[-0.623924,0.577737,-0.395427,0.676346,-0.623939,0.676117],[-0.623939,0.676117,-0.395427,0.676346,-0.506553,0.679846],[-0.395427,0.676346,-0.411150,0.755656,-0.506553,0.679846],[-0.395427,0.676346,-0.392767,0.755652,-0.411150,0.755656],[-0.392767,0.755652,-0.410760,0.840822,-0.411150,0.755656],[-0.392767,0.755652,-0.391750,0.841151,-0.410760,0.840822],[-0.391750,0.841151,-0.391356,0.929743,-0.410760,0.840822],[-0.391356,0.929743,-0.412268,0.929379,-0.410760,0.840822],[-0.410760,0.840822,-0.412268,0.929379,-0.485229,0.929901],[-0.410760,0.840822,-0.485229,0.929901,-0.498996,0.840718],[-0.411150,0.755656,-0.410760,0.840822,-0.498996,0.840718],[-0.411150,0.755656,-0.498996,0.840718,-0.507882,0.755149],[-0.506553,0.679846,-0.411150,0.755656,-0.507882,0.755149],[-0.506553,0.679846,-0.507882,0.755149,-0.529315,0.754525],[-0.529315,0.754525,-0.507882,0.755149,-0.507501,0.840830],[-0.536038,0.840929,-0.529315,0.754525,-0.507501,0.840830],[-0.529315,0.754525,-0.536038,0.840929,-0.623491,0.840773],[-0.536038,0.840929,-0.622894,0.930784,-0.623491,0.840773],[-0.536038,0.840929,-0.536046,0.929417,-0.622894,0.930784],[-0.510026,0.929732,-0.536046,0.929417,-0.536038,0.840929],[-0.510026,0.929732,-0.536038,0.840929,-0.507501,0.840830],[-0.529315,0.754525,-0.623491,0.840773,-0.623793,0.753587],[-0.623939,0.676117,-0.529315,0.754525,-0.623793,0.753587],[-0.623939,0.676117,-0.506553,0.679846,-0.529315,0.754525],[1.450401,0.283640,1.629622,0.284327,1.622192,0.349146],[0.628988,0.528191,0.629376,0.689182,0.550484,0.689190],[0.629376,0.689182,0.630448,0.834674,0.550484,0.689190],[0.550484,0.689190,0.630448,0.834674,0.550481,0.834977],[0.630448,0.834674,0.550645,0.952571,0.550481,0.834977],[0.630448,0.834674,0.631569,0.954754,0.550645,0.952571],[0.628988,0.528191,0.550484,0.689190,0.550485,0.528191],[0.550485,0.528191,0.550484,0.689190,0.428951,0.689196],[0.550484,0.689190,0.550483,0.834514,0.428951,0.689196],[0.428951,0.689196,0.550483,0.834514,0.429690,0.834566],[0.550483,0.834514,0.430640,0.955941,0.429690,0.834566],[0.551789,0.951435,0.430640,0.955941,0.550483,0.834514],[0.550485,0.528191,0.428951,0.689196,0.428909,0.528191],[0.428909,0.528191,0.428951,0.689196,0.330174,0.528191],[0.330174,0.528191,0.428951,0.689196,0.330161,0.688324],[0.428951,0.689196,0.429009,0.834617,0.330161,0.688324],[0.429009,0.834617,0.330183,0.834569,0.330161,0.688324],[0.429201,0.955375,0.330183,0.834569,0.429009,0.834617],[0.429201,0.955375,0.330259,0.958164,0.330183,0.834569],[0.330174,0.528191,0.330161,0.688324,0.222027,0.528191],[0.222027,0.528191,0.330161,0.688324,0.222043,0.689200],[0.330161,0.688324,0.222041,0.834516,0.222043,0.689200],[0.330161,0.688324,0.330078,0.834683,0.222041,0.834516],[0.330078,0.834683,0.222023,0.955318,0.222041,0.834516],[0.330012,0.957582,0.222023,0.955318,0.330078,0.834683],[0.222027,0.528191,0.222043,0.689200,0.111695,0.528191],[0.111695,0.528191,0.222043,0.689200,0.111615,0.689189],[0.111615,0.689189,0.222043,0.689200,0.111553,0.834381],[0.222043,0.689200,0.222161,0.834586,0.111553,0.834381],[0.222161,0.834586,0.111557,0.952624,0.111553,0.834381],[0.222161,0.834586,0.222306,0.955615,0.111557,0.952624],[0.111615,0.689189,0.026622,0.528191,0.111695,0.528191],[0.026622,0.528191,0.111615,0.689189,0.025960,0.689183],[0.111615,0.689189,0.025024,0.834667,0.025960,0.689183],[0.025024,0.834667,0.111615,0.689189,0.111079,0.834854],[0.024205,0.946472,0.025024,0.834667,0.111079,0.834854],[0.111079,0.834854,0.110622,0.949164,0.024205,0.946472],[0.026900,0.385183,0.111695,0.528191,0.026622,0.528191],[0.111695,0.528191,0.026900,0.385183,0.111812,0.386443],[0.027139,0.222451,0.111812,0.386443,0.026900,0.385183],[0.027139,0.222451,0.111766,0.223453,0.111812,0.386443],[0.027181,0.113032,0.111766,0.223453,0.027139,0.222451],[0.027181,0.113032,0.111548,0.113116,0.111766,0.223453],[0.111548,0.113116,0.221972,0.225420,0.111766,0.223453],[0.111548,0.113116,0.221920,0.113816,0.221972,0.225420],[0.221920,0.113816,0.330167,0.226068,0.221972,0.225420],[0.330167,0.114048,0.330167,0.226068,0.221920,0.113816],[0.330167,0.114048,0.429014,0.225447,0.330167,0.226068],[0.428921,0.113816,0.429014,0.225447,0.330167,0.114048],[0.428921,0.113816,0.550484,0.224994,0.429014,0.225447],[0.550482,0.113116,0.550484,0.224994,0.428921,0.113816],[0.628549,0.222502,0.550484,0.224994,0.550482,0.113116],[0.628549,0.222502,0.628705,0.385177,0.550484,0.224994],[0.550484,0.224994,0.628705,0.385177,0.550486,0.386401],[0.628705,0.385177,0.628988,0.528191,0.550486,0.386401],[0.550486,0.386401,0.628988,0.528191,0.550485,0.528191],[0.550486,0.386401,0.550485,0.528191,0.429036,0.386527],[0.429036,0.386527,0.550485,0.528191,0.428909,0.528191],[0.429036,0.386527,0.428909,0.528191,0.330177,0.386744],[0.330177,0.386744,0.428909,0.528191,0.330174,0.528191],[0.330177,0.386744,0.330174,0.528191,0.221983,0.386435],[0.221983,0.386435,0.330174,0.528191,0.222027,0.528191],[0.111812,0.386443,0.221983,0.386435,0.222027,0.528191],[0.111766,0.223453,0.221983,0.386435,0.111812,0.386443],[0.111766,0.223453,0.221972,0.225420,0.221983,0.386435],[0.221972,0.225420,0.330177,0.386744,0.221983,0.386435],[0.221972,0.225420,0.330167,0.226068,0.330177,0.386744],[0.330167,0.226068,0.429036,0.386527,0.330177,0.386744],[0.429014,0.225447,0.429036,0.386527,0.330167,0.226068],[0.429014,0.225447,0.550486,0.386401,0.429036,0.386527],[0.550484,0.224994,0.550486,0.386401,0.429014,0.225447],[0.111812,0.386443,0.222027,0.528191,0.111695,0.528191],[0.627982,0.113032,0.628549,0.222502,0.550482,0.113116],[0.362241,-1.768412,0.245931,-1.772480,0.255329,-1.709453],[0.362241,-1.768412,0.299178,-1.824075,0.245931,-1.772480],[0.362241,-1.768412,0.255329,-1.709453,0.346708,-1.708301]], + + 'faces': [[0,1,2,0,0,1,2],[0,3,1,0,0,3,1],[3,0,4,0,3,0,4],[4,5,3,0,4,5,3],[6,5,4,0,6,5,4],[6,7,5,0,6,7,5],[7,6,8,0,7,6,8],[6,9,8,0,6,9,8],[9,6,4,0,9,6,4],[9,4,10,0,9,4,10],[4,0,10,0,4,0,10],[10,0,11,0,10,0,11],[11,0,2,0,11,0,2],[11,2,12,0,11,2,12],[2,13,12,0,2,13,12],[2,14,13,0,2,14,13],[15,14,2,0,15,14,2],[15,16,14,0,15,16,14],[17,16,15,0,17,16,15],[17,18,16,0,17,18,16],[19,18,17,0,19,18,17],[20,18,19,0,20,18,19],[20,21,18,0,20,21,18],[22,21,20,0,22,21,20],[22,23,21,0,22,23,21],[22,24,23,0,22,24,23],[25,24,22,0,25,24,22],[26,24,25,0,26,24,25],[26,27,24,0,26,27,24],[28,27,26,0,28,27,26],[28,29,27,0,28,29,27],[28,30,29,0,28,30,29],[31,30,28,0,31,30,28],[31,32,30,0,31,32,30],[33,32,31,0,33,32,31],[33,34,32,0,33,34,32],[33,35,34,0,33,35,34],[36,35,33,0,36,35,33],[36,37,35,0,36,37,35],[38,37,36,0,38,37,36],[38,39,37,0,38,39,37],[40,39,38,0,40,39,38],[40,41,39,0,40,41,39],[42,41,40,0,42,41,40],[42,43,41,0,42,43,41],[44,43,42,0,44,43,42],[44,45,43,0,44,45,43],[46,45,44,0,46,45,44],[47,45,46,0,47,45,46],[48,45,47,0,48,45,47],[48,49,45,0,48,49,45],[48,50,49,0,48,50,49],[51,50,48,0,51,50,48],[51,52,50,0,51,52,50],[51,53,52,0,51,53,52],[54,53,51,0,54,53,51],[54,55,53,0,54,55,53],[56,55,54,0,56,55,54],[55,56,57,0,55,56,57],[56,54,60,0,56,54,58],[60,54,61,0,58,54,59],[61,54,62,0,59,54,60],[62,54,63,0,60,54,61],[54,51,63,0,54,51,61],[63,51,48,0,61,51,48],[63,48,47,0,61,48,47],[63,47,64,0,61,47,62],[64,47,65,0,62,47,63],[47,66,65,0,47,64,63],[47,46,66,0,47,46,64],[46,67,66,0,46,65,64],[46,44,67,0,46,44,65],[67,44,68,0,65,44,66],[44,69,68,0,44,67,66],[44,42,69,0,44,42,67],[69,42,70,0,67,42,68],[42,40,70,0,42,40,68],[70,40,71,0,68,40,69],[40,38,71,0,40,38,69],[38,72,71,0,38,70,69],[38,36,72,0,38,36,70],[36,73,72,0,36,71,70],[36,33,73,0,36,33,71],[33,31,73,0,33,31,71],[73,31,28,0,71,31,28],[73,28,74,0,71,28,72],[74,28,26,0,72,28,26],[74,26,75,0,72,26,73],[75,26,76,0,73,26,74],[26,25,76,0,26,25,74],[76,25,77,0,74,25,75],[77,25,78,0,75,25,76],[25,22,78,0,25,22,76],[78,22,79,0,76,22,77],[22,20,79,0,22,20,77],[79,20,80,0,77,20,78],[80,20,19,0,78,20,19],[80,19,81,0,78,19,79],[81,19,82,0,79,19,80],[19,17,82,0,19,17,80],[82,17,15,0,80,17,15],[82,15,1,0,80,15,1],[1,15,2,0,1,15,2],[83,82,1,0,81,80,1],[84,82,83,0,82,80,81],[84,81,82,0,82,79,80],[85,81,84,0,83,79,82],[86,81,85,0,84,79,83],[80,81,86,0,78,79,84],[87,80,86,0,85,78,84],[88,80,87,0,86,78,85],[88,79,80,0,86,77,78],[89,79,88,0,87,77,86],[78,79,89,0,76,77,87],[90,78,89,0,88,76,87],[77,78,90,0,75,76,88],[90,91,77,0,88,89,75],[92,91,90,0,90,89,88],[93,91,92,0,91,89,90],[94,91,93,0,92,89,91],[95,91,94,0,93,89,92],[95,96,91,0,93,94,89],[97,96,95,0,95,94,93],[98,96,97,0,96,94,95],[77,96,98,0,75,94,96],[91,96,77,0,89,94,75],[77,98,76,0,75,96,74],[75,76,98,0,73,74,96],[99,75,98,0,97,73,96],[100,75,99,0,98,73,97],[101,75,100,0,99,73,98],[101,74,75,0,99,72,73],[72,74,101,0,70,72,99],[72,73,74,0,70,71,72],[71,72,101,0,69,70,99],[71,101,100,0,69,99,98],[71,100,102,0,69,98,100],[102,100,103,0,100,98,101],[103,100,104,0,101,98,102],[100,99,104,0,98,97,102],[104,99,105,0,102,97,103],[99,106,105,0,97,104,103],[99,98,106,0,97,96,104],[106,98,97,0,104,96,95],[106,97,105,0,104,95,103],[105,97,107,0,103,95,105],[107,97,95,0,105,95,93],[107,95,108,0,105,93,106],[108,95,109,0,106,93,107],[109,95,94,0,107,93,92],[109,94,93,0,107,92,91],[109,93,110,0,107,91,108],[110,93,111,0,108,91,109],[111,93,112,0,109,91,110],[112,93,113,0,110,91,111],[113,93,114,0,111,91,112],[93,115,114,0,91,113,112],[93,92,115,0,91,90,113],[116,115,92,0,114,113,90],[117,115,116,0,115,113,114],[117,118,115,0,115,116,113],[119,118,117,0,117,116,115],[120,118,119,0,118,116,117],[121,118,120,0,119,116,118],[121,115,118,0,119,113,116],[114,115,121,0,112,113,119],[113,114,121,0,111,112,119],[113,121,122,0,111,119,120],[122,121,123,0,120,119,121],[123,121,120,0,121,119,118],[123,120,124,0,121,118,122],[125,124,120,0,123,122,118],[126,124,125,0,124,122,123],[127,124,126,0,125,122,124],[127,128,124,0,125,126,122],[127,129,128,0,125,127,126],[130,129,127,0,128,127,125],[130,131,129,0,128,129,127],[132,131,130,0,130,129,128],[132,133,131,0,130,131,129],[132,134,133,0,130,132,131],[134,132,135,0,132,130,133],[135,132,136,0,133,130,134],[136,132,137,0,134,130,135],[132,130,137,0,130,128,135],[137,130,138,0,135,128,136],[138,130,127,0,136,128,125],[138,127,139,0,136,125,137],[139,127,126,0,137,125,124],[139,126,140,0,137,124,138],[126,119,140,0,124,117,138],[126,125,119,0,124,123,117],[125,120,119,0,123,118,117],[140,119,141,0,138,117,139],[141,119,117,0,139,117,115],[117,87,141,0,115,85,139],[117,88,87,0,115,86,85],[116,88,117,0,114,86,115],[116,89,88,0,114,87,86],[142,89,116,0,140,87,114],[90,89,142,0,88,87,140],[92,90,142,0,90,88,140],[92,142,116,0,90,140,114],[141,87,143,0,139,85,141],[87,86,143,0,85,84,141],[143,86,85,0,141,84,83],[144,143,85,0,142,141,83],[145,143,144,0,143,141,142],[145,140,143,0,143,138,141],[146,140,145,0,144,138,143],[139,140,146,0,137,138,144],[147,139,146,0,145,137,144],[147,148,139,0,145,146,137],[149,148,147,0,147,146,145],[150,148,149,0,148,146,147],[150,151,148,0,148,149,146],[152,151,150,0,150,149,148],[153,151,152,0,151,149,150],[153,154,151,0,151,152,149],[155,154,153,0,153,152,151],[155,156,154,0,153,154,152],[157,156,155,0,155,154,153],[157,158,156,0,155,156,154],[159,158,157,0,157,156,155],[160,158,159,0,158,156,157],[160,136,158,0,158,134,156],[135,136,160,0,133,134,158],[161,135,160,0,159,133,158],[161,162,135,0,159,160,133],[163,162,161,0,161,160,159],[163,164,162,0,161,162,160],[164,163,165,0,162,161,163],[163,166,165,0,161,164,163],[166,163,167,0,164,161,165],[167,163,161,0,165,161,159],[167,161,168,0,165,159,166],[161,159,168,0,159,157,166],[159,161,160,0,157,159,158],[168,159,157,0,166,157,155],[168,157,169,0,166,155,167],[169,157,170,0,167,155,168],[170,157,171,0,168,155,169],[157,172,171,0,155,170,169],[157,155,172,0,155,153,170],[172,155,153,0,170,153,151],[173,172,153,0,171,170,151],[173,171,172,0,171,169,170],[174,171,173,0,172,169,171],[174,170,171,0,172,168,169],[170,174,167,0,168,172,165],[174,166,167,0,172,164,165],[166,174,173,0,164,172,171],[166,173,175,0,164,171,173],[175,173,153,0,173,171,151],[175,153,152,0,173,151,150],[150,175,152,0,148,173,150],[176,175,150,0,174,173,148],[165,175,176,0,163,173,174],[165,166,175,0,163,164,173],[177,165,176,0,175,163,174],[164,165,177,0,162,163,175],[164,177,178,0,162,175,176],[178,177,179,0,176,175,177],[179,177,180,0,177,175,178],[177,176,180,0,175,174,178],[180,176,150,0,178,174,148],[179,180,150,0,177,178,148],[179,150,181,0,177,148,179],[150,182,181,0,148,180,179],[150,183,182,0,148,181,180],[150,149,183,0,148,147,181],[183,149,147,0,181,147,145],[183,147,184,0,181,145,182],[184,147,185,0,182,145,183],[147,146,185,0,145,144,183],[185,146,145,0,183,144,143],[185,145,186,0,183,143,184],[186,145,144,0,184,143,142],[186,144,187,0,184,142,185],[187,144,188,0,185,142,186],[144,84,188,0,142,82,186],[144,85,84,0,142,83,82],[188,84,83,0,186,82,81],[3,188,83,0,3,186,81],[189,188,3,0,187,186,3],[187,188,189,0,185,186,187],[190,187,189,0,188,185,187],[190,186,187,0,188,184,185],[191,186,190,0,189,184,188],[191,185,186,0,189,183,184],[184,185,191,0,182,183,189],[184,191,192,0,182,189,190],[192,191,193,0,190,189,191],[191,190,193,0,189,188,191],[190,194,193,0,188,192,191],[190,189,194,0,188,187,192],[194,189,5,0,192,187,5],[5,189,3,0,5,187,3],[7,194,5,0,7,192,5],[194,7,195,0,192,7,193],[195,7,196,0,193,7,194],[7,8,196,0,7,8,194],[196,8,197,0,194,8,195],[8,198,197,0,8,196,195],[8,9,198,0,8,9,196],[9,199,198,0,9,197,196],[199,9,200,0,197,9,198],[9,10,200,0,9,10,198],[200,10,201,0,198,10,199],[10,11,201,0,10,11,199],[201,11,12,0,199,11,12],[201,12,202,0,199,12,200],[12,203,202,0,12,201,200],[12,13,203,0,12,13,201],[13,204,203,0,13,202,201],[13,205,204,0,13,203,202],[14,205,13,0,14,203,13],[14,206,205,0,14,204,203],[16,206,14,0,16,204,14],[16,207,206,0,16,205,204],[16,208,207,0,16,206,205],[18,208,16,0,18,206,16],[18,209,208,0,18,207,206],[18,210,209,0,18,208,207],[21,210,18,0,21,208,18],[21,211,210,0,21,209,208],[21,23,211,0,21,23,209],[29,211,23,0,29,209,23],[212,211,29,0,210,209,29],[213,211,212,0,211,209,210],[213,214,211,0,211,212,209],[215,214,213,0,213,212,211],[215,216,214,0,213,214,212],[215,217,216,0,213,215,214],[218,217,215,0,216,215,213],[218,219,217,0,216,217,215],[220,219,218,0,218,217,216],[220,221,219,0,218,219,217],[222,221,220,0,220,219,218],[223,221,222,0,221,219,220],[223,224,221,0,221,222,219],[223,225,224,0,221,223,222],[226,225,223,0,224,223,221],[227,226,223,0,225,224,221],[227,223,228,0,225,221,226],[228,223,229,0,226,221,227],[229,223,222,0,227,221,220],[229,222,230,0,227,220,228],[230,222,220,0,228,220,218],[230,220,231,0,228,218,229],[231,220,218,0,229,218,216],[231,218,232,0,229,216,230],[232,218,215,0,230,216,213],[232,215,233,0,230,213,231],[233,215,213,0,231,213,211],[233,213,234,0,231,211,232],[234,213,212,0,232,211,210],[234,212,30,0,232,210,30],[30,212,29,0,30,210,29],[32,234,30,0,32,232,30],[235,234,32,0,233,232,32],[236,234,235,0,234,232,233],[236,233,234,0,234,231,232],[237,233,236,0,235,231,234],[237,232,233,0,235,230,231],[237,231,232,0,235,229,230],[238,231,237,0,236,229,235],[238,230,231,0,236,228,229],[239,230,238,0,237,228,236],[239,229,230,0,237,227,228],[240,229,239,0,238,227,237],[240,228,229,0,238,226,227],[241,228,240,0,239,226,238],[241,227,228,0,239,225,226],[242,227,241,0,240,225,239],[243,242,241,0,241,240,239],[243,244,242,0,241,242,240],[243,245,244,0,241,243,242],[246,245,243,0,244,243,241],[246,247,245,0,244,245,243],[248,247,246,0,246,245,244],[248,249,247,0,246,247,245],[250,249,248,0,248,247,246],[250,251,249,0,248,249,247],[252,251,250,0,250,249,248],[252,253,251,0,250,251,249],[254,253,252,0,252,251,250],[254,255,253,0,252,253,251],[254,256,255,0,252,254,253],[257,256,254,0,255,254,252],[198,256,257,0,196,254,255],[198,199,256,0,196,197,254],[256,199,258,0,254,197,256],[258,199,259,0,256,197,257],[199,200,259,0,197,198,257],[200,260,259,0,198,258,257],[200,201,260,0,198,199,258],[201,202,260,0,199,200,258],[260,202,261,0,258,200,259],[202,262,261,0,200,260,259],[202,203,262,0,200,201,260],[203,263,262,0,201,261,260],[204,263,203,0,202,261,201],[204,264,263,0,202,262,261],[204,265,264,0,202,263,262],[205,265,204,0,203,263,202],[205,266,265,0,203,264,263],[206,266,205,0,204,264,203],[206,207,266,0,204,205,264],[207,267,266,0,205,265,264],[209,267,207,0,207,265,205],[209,216,267,0,207,214,265],[209,214,216,0,207,212,214],[210,214,209,0,208,212,207],[210,211,214,0,208,209,212],[267,216,268,0,265,214,266],[216,217,268,0,214,215,266],[268,217,269,0,266,215,267],[217,219,269,0,215,217,267],[269,219,270,0,267,217,268],[219,221,270,0,217,219,268],[270,221,224,0,268,219,222],[270,224,271,0,268,222,269],[271,224,272,0,269,222,270],[224,225,272,0,222,223,270],[271,272,273,0,269,270,271],[274,271,273,0,272,269,271],[270,271,274,0,268,269,272],[275,270,274,0,273,268,272],[269,270,275,0,267,268,273],[276,269,275,0,274,267,273],[268,269,276,0,266,267,274],[266,268,276,0,264,266,274],[267,268,266,0,265,266,264],[266,276,277,0,264,274,275],[277,276,278,0,275,274,276],[276,275,278,0,274,273,276],[278,275,279,0,276,273,277],[275,274,279,0,273,272,277],[279,274,273,0,277,272,271],[279,273,280,0,277,271,278],[279,280,281,0,277,278,279],[282,279,281,0,280,277,279],[278,279,282,0,276,277,280],[264,278,282,0,262,276,280],[277,278,264,0,275,276,262],[265,277,264,0,263,275,262],[266,277,265,0,264,275,263],[263,264,282,0,261,262,280],[263,282,283,0,261,280,281],[283,282,284,0,281,280,282],[282,281,284,0,280,279,282],[283,284,285,0,281,282,283],[285,284,286,0,283,282,284],[287,285,286,0,285,283,284],[262,285,287,0,260,283,285],[263,285,262,0,261,283,260],[263,283,285,0,261,281,283],[261,262,287,0,259,260,285],[288,261,287,0,286,259,285],[260,261,288,0,258,259,286],[259,260,288,0,257,258,286],[259,288,289,0,257,286,287],[289,288,290,0,287,286,288],[288,287,290,0,286,285,288],[290,287,291,0,288,285,289],[291,287,292,0,289,285,290],[287,286,292,0,285,284,290],[293,290,291,0,291,288,289],[289,290,293,0,287,288,291],[294,289,293,0,292,287,291],[295,289,294,0,293,287,292],[258,289,295,0,256,287,293],[258,259,289,0,256,257,287],[258,295,296,0,256,293,294],[296,295,294,0,294,293,292],[296,294,297,0,294,292,295],[297,294,298,0,295,292,296],[294,299,298,0,292,297,296],[299,294,300,0,297,292,298],[294,293,300,0,292,291,298],[300,293,291,0,298,291,289],[297,298,301,0,295,296,299],[302,297,301,0,300,295,299],[296,297,302,0,294,295,300],[296,302,303,0,294,300,301],[303,302,249,0,301,300,247],[249,302,304,0,247,300,302],[302,301,304,0,300,299,302],[249,304,247,0,247,302,245],[251,303,249,0,249,301,247],[253,303,251,0,251,301,249],[253,255,303,0,251,253,301],[255,296,303,0,253,294,301],[255,258,296,0,253,256,294],[256,258,255,0,254,256,253],[208,209,207,0,206,207,205],[197,198,257,0,195,196,255],[197,257,305,0,195,255,303],[257,306,305,0,255,304,303],[257,254,306,0,255,252,304],[254,307,306,0,252,305,304],[254,308,307,0,252,306,305],[254,252,308,0,252,250,306],[252,250,308,0,250,248,306],[308,250,307,0,306,248,305],[307,250,309,0,305,248,307],[250,248,309,0,248,246,307],[309,248,246,0,307,246,244],[309,246,243,0,307,244,241],[309,243,310,0,307,241,308],[243,240,310,0,241,238,308],[240,243,241,0,238,241,239],[310,240,311,0,308,238,309],[311,240,239,0,309,238,237],[311,239,312,0,309,237,310],[312,239,238,0,310,237,236],[312,238,313,0,310,236,311],[313,238,237,0,311,236,235],[313,237,236,0,311,235,234],[313,236,314,0,311,234,312],[314,236,235,0,312,234,233],[314,235,315,0,312,233,313],[315,235,34,0,313,233,34],[34,235,32,0,34,233,32],[316,315,34,0,314,313,34],[316,317,315,0,314,315,313],[318,317,316,0,316,315,314],[318,319,317,0,316,317,315],[318,196,319,0,316,194,317],[195,196,318,0,193,194,316],[193,195,318,0,191,193,316],[193,194,195,0,191,192,193],[320,193,318,0,318,191,316],[321,193,320,0,319,191,318],[321,192,193,0,319,190,191],[322,192,321,0,320,190,319],[322,323,192,0,320,321,190],[324,323,322,0,322,321,320],[324,182,323,0,322,180,321],[181,182,324,0,179,180,322],[181,324,325,0,179,322,323],[43,325,324,0,43,323,322],[45,325,43,0,45,323,43],[45,49,325,0,45,49,323],[326,325,49,0,324,323,49],[326,181,325,0,324,179,323],[179,181,326,0,177,179,324],[327,179,326,0,325,177,324],[178,179,327,0,176,177,325],[178,327,328,0,176,325,326],[327,329,328,0,325,327,326],[329,327,326,0,327,325,324],[52,329,326,0,52,327,324],[53,329,52,0,53,327,52],[329,53,330,0,327,53,328],[53,55,330,0,53,55,328],[55,331,330,0,55,329,328],[55,57,331,0,55,57,329],[331,57,332,0,329,57,330],[61,62,347,0,59,60,331],[347,62,348,0,331,60,332],[62,64,348,0,60,62,332],[62,63,64,0,60,61,62],[64,349,348,0,62,333,332],[64,65,349,0,62,63,333],[349,65,350,0,333,63,334],[65,66,350,0,63,64,334],[350,66,351,0,334,64,335],[351,66,352,0,335,64,336],[66,67,352,0,64,65,336],[67,353,352,0,65,337,336],[67,68,353,0,65,66,337],[353,68,354,0,337,66,338],[68,355,354,0,66,339,338],[68,69,355,0,66,67,339],[356,355,69,0,340,339,67],[355,356,357,0,339,340,341],[357,356,358,0,341,340,342],[356,359,358,0,340,343,342],[356,102,359,0,340,100,343],[70,102,356,0,68,100,340],[70,71,102,0,68,69,100],[69,70,356,0,67,68,340],[359,102,360,0,343,100,344],[102,103,360,0,100,101,344],[361,360,103,0,345,344,101],[361,362,360,0,345,346,344],[361,363,362,0,345,347,346],[364,363,361,0,348,347,345],[365,363,364,0,349,347,348],[366,363,365,0,350,347,349],[366,367,363,0,350,351,347],[368,367,366,0,352,351,350],[369,367,368,0,353,351,352],[370,367,369,0,354,351,353],[362,367,370,0,346,351,354],[362,363,367,0,346,347,351],[371,362,370,0,355,346,354],[359,362,371,0,343,346,355],[359,360,362,0,343,344,346],[372,359,371,0,356,343,355],[372,358,359,0,356,342,343],[357,358,372,0,341,342,356],[357,372,373,0,341,356,357],[373,372,374,0,357,356,358],[374,372,375,0,358,356,359],[372,371,375,0,356,355,359],[375,371,370,0,359,355,354],[375,370,369,0,359,354,353],[374,375,369,0,358,359,353],[374,369,376,0,358,353,360],[376,369,377,0,360,353,361],[377,369,378,0,361,353,362],[369,379,378,0,353,363,362],[369,368,379,0,353,352,363],[379,368,380,0,363,352,364],[380,368,366,0,364,352,350],[380,366,365,0,364,350,349],[380,365,381,0,364,349,365],[381,365,382,0,365,349,366],[365,364,382,0,349,348,366],[382,364,383,0,366,348,367],[364,384,383,0,348,368,367],[384,364,385,0,368,348,369],[361,385,364,0,345,369,348],[103,385,361,0,101,369,345],[103,104,385,0,101,102,369],[385,104,386,0,369,102,370],[104,387,386,0,102,371,370],[104,105,387,0,102,103,371],[105,107,387,0,103,105,371],[388,387,107,0,372,371,105],[388,386,387,0,372,370,371],[386,388,389,0,370,372,373],[389,388,390,0,373,372,374],[388,107,390,0,372,105,374],[390,107,108,0,374,105,106],[390,108,109,0,374,106,107],[390,109,391,0,374,107,375],[391,109,392,0,375,107,376],[392,109,110,0,376,107,108],[392,110,111,0,376,108,109],[392,111,393,0,376,109,377],[393,111,394,0,377,109,378],[394,111,112,0,378,109,110],[394,112,113,0,378,110,111],[394,113,395,0,378,111,379],[395,113,396,0,379,111,380],[396,113,122,0,380,111,120],[396,122,123,0,380,120,121],[396,123,397,0,380,121,381],[397,123,128,0,381,121,126],[128,123,124,0,126,121,122],[129,397,128,0,127,381,126],[129,398,397,0,127,382,381],[399,398,129,0,383,382,127],[400,398,399,0,384,382,383],[400,401,398,0,384,385,382],[400,402,401,0,384,386,385],[400,403,402,0,384,387,386],[404,403,400,0,388,387,384],[404,405,403,0,388,389,387],[406,405,404,0,390,389,388],[406,407,405,0,390,391,389],[406,408,407,0,390,392,391],[409,408,406,0,393,392,390],[409,410,408,0,393,394,392],[411,410,409,0,395,394,393],[411,412,410,0,395,396,394],[470,411,409,0,397,395,393],[470,409,471,0,397,393,398],[471,409,406,0,398,393,390],[471,406,472,0,398,390,399],[472,406,404,0,399,390,388],[404,473,472,0,388,400,399],[474,473,404,0,401,400,388],[474,330,473,0,401,328,400],[474,329,330,0,401,327,328],[328,329,474,0,326,327,401],[328,474,404,0,326,401,388],[328,404,475,0,326,388,402],[404,399,475,0,388,383,402],[404,400,399,0,388,384,383],[475,399,476,0,402,383,403],[399,129,476,0,383,127,403],[131,476,129,0,129,403,127],[133,476,131,0,131,403,129],[133,477,476,0,131,404,403],[477,133,134,0,404,131,132],[478,477,134,0,405,404,132],[478,479,477,0,405,406,404],[478,164,479,0,405,162,406],[164,478,162,0,162,405,160],[162,478,134,0,160,405,132],[162,134,135,0,160,132,133],[164,178,479,0,162,176,406],[479,178,328,0,406,176,326],[479,328,475,0,406,326,402],[479,475,477,0,406,402,404],[475,476,477,0,402,403,404],[330,331,473,0,328,329,400],[331,480,473,0,329,407,400],[331,332,480,0,329,330,407],[480,332,481,0,407,330,408],[348,501,347,0,332,409,331],[348,502,501,0,332,410,409],[348,349,502,0,332,333,410],[349,503,502,0,333,411,410],[349,504,503,0,333,412,411],[504,349,350,0,412,333,334],[505,504,350,0,413,412,334],[504,505,503,0,412,413,411],[503,505,506,0,411,413,414],[506,505,507,0,414,413,415],[505,508,507,0,413,416,415],[505,509,508,0,413,417,416],[350,509,505,0,334,417,413],[350,510,509,0,334,418,417],[350,511,510,0,334,419,418],[350,512,511,0,334,420,419],[350,351,512,0,334,335,420],[512,351,513,0,420,335,421],[351,514,513,0,335,422,421],[351,352,514,0,335,336,422],[352,515,514,0,336,423,422],[352,353,515,0,336,337,423],[353,381,515,0,337,365,423],[516,381,353,0,424,365,337],[516,380,381,0,424,364,365],[517,380,516,0,425,364,424],[517,379,380,0,425,363,364],[378,379,517,0,362,363,425],[517,377,378,0,425,361,362],[517,518,377,0,425,426,361],[519,518,517,0,427,426,425],[519,373,518,0,427,357,426],[519,357,373,0,427,341,357],[354,357,519,0,338,341,427],[354,355,357,0,338,339,341],[354,519,516,0,338,427,424],[516,519,517,0,424,427,425],[353,354,516,0,337,338,424],[518,373,376,0,426,357,360],[376,373,374,0,360,357,358],[518,376,377,0,426,360,361],[381,382,515,0,365,366,423],[514,515,382,0,422,423,366],[514,382,383,0,422,366,367],[514,383,513,0,422,367,421],[513,383,384,0,421,367,368],[384,386,513,0,368,370,421],[385,386,384,0,369,370,368],[512,513,386,0,420,421,370],[512,386,389,0,420,370,373],[512,389,511,0,420,373,419],[511,389,520,0,419,373,428],[520,389,390,0,428,373,374],[520,390,521,0,428,374,429],[521,390,391,0,429,374,375],[521,391,392,0,429,375,376],[521,392,522,0,429,376,430],[523,522,392,0,431,430,376],[523,521,522,0,431,429,430],[510,521,523,0,418,429,431],[511,521,510,0,419,429,418],[511,520,521,0,419,428,429],[509,510,523,0,417,418,431],[509,523,508,0,417,431,416],[508,523,524,0,416,431,432],[524,523,525,0,432,431,433],[523,393,525,0,431,377,433],[523,392,393,0,431,376,377],[526,525,393,0,434,433,377],[524,525,526,0,432,433,434],[524,526,407,0,432,434,391],[405,407,526,0,389,391,434],[405,526,403,0,389,434,387],[403,526,402,0,387,434,386],[526,527,402,0,434,435,386],[526,394,527,0,434,378,435],[526,393,394,0,434,377,378],[402,527,394,0,386,435,378],[402,394,395,0,386,378,379],[402,395,396,0,386,379,380],[402,396,401,0,386,380,385],[401,396,398,0,385,380,382],[398,396,397,0,382,380,381],[408,524,407,0,392,432,391],[528,524,408,0,436,432,392],[507,524,528,0,415,432,436],[507,508,524,0,415,416,432],[529,507,528,0,437,415,436],[506,507,529,0,414,415,437],[530,506,529,0,438,414,437],[531,506,530,0,439,414,438],[503,506,531,0,411,414,439],[503,531,532,0,411,439,440],[481,470,471,0,408,397,398],[480,481,471,0,407,408,398],[473,480,471,0,400,407,398],[473,471,472,0,400,398,399],[502,532,501,0,410,440,409],[502,503,532,0,410,411,440],[530,529,412,0,438,437,396],[412,529,1145,0,396,437,441],[529,528,1145,0,437,436,441],[410,1145,528,0,394,441,436],[412,1145,410,0,396,441,394],[410,528,408,0,394,436,392],[52,326,49,0,52,324,49],[50,52,49,0,50,52,49],[43,324,41,0,43,322,41],[41,324,39,0,41,322,39],[324,322,39,0,322,320,39],[39,322,37,0,39,320,37],[322,321,37,0,320,319,37],[37,321,35,0,37,319,35],[321,320,35,0,319,318,35],[35,320,318,0,35,318,316],[35,318,316,0,35,316,314],[35,316,34,0,35,314,34],[183,323,182,0,181,321,180],[183,184,323,0,181,182,321],[184,192,323,0,182,190,321],[196,197,319,0,194,195,317],[319,197,317,0,317,195,315],[317,197,1146,0,315,195,442],[197,305,1146,0,195,303,442],[1146,305,313,0,442,303,311],[305,312,313,0,303,310,311],[305,306,312,0,303,304,310],[306,311,312,0,304,309,310],[306,307,311,0,304,305,309],[307,309,311,0,305,307,309],[311,309,310,0,309,307,308],[1146,313,314,0,442,311,312],[315,1146,314,0,313,442,312],[317,1146,315,0,315,442,313],[29,23,27,0,29,23,27],[27,23,24,0,27,23,24],[3,83,1,0,3,81,1],[170,167,169,0,168,165,167],[169,167,168,0,167,165,166],[136,1147,158,0,134,443,156],[136,137,1147,0,134,135,443],[1147,137,148,0,443,135,146],[148,137,138,0,146,135,136],[148,138,139,0,146,136,137],[151,1147,148,0,149,443,146],[154,1147,151,0,152,443,149],[156,1147,154,0,154,443,152],[158,1147,156,0,156,443,154],[140,141,143,0,138,139,141],[56,58,57,1,56,444,57],[58,56,59,1,444,56,445],[59,56,60,1,445,56,58],[57,333,332,1,57,446,330],[58,333,57,1,444,446,57],[58,334,333,1,444,447,446],[58,335,334,1,444,448,447],[336,335,58,1,449,448,444],[337,335,336,1,450,448,449],[337,338,335,1,450,451,448],[337,339,338,1,450,452,451],[339,337,340,1,452,450,453],[340,337,341,1,453,450,454],[337,336,341,1,450,449,454],[341,336,342,1,454,449,455],[336,58,342,1,449,444,455],[342,58,59,1,455,444,445],[342,59,343,1,455,445,456],[343,59,344,1,456,445,457],[59,60,344,1,445,58,457],[344,60,345,1,457,58,458],[345,60,61,1,458,58,59],[345,61,346,1,458,59,459],[346,61,347,1,459,59,331],[411,413,412,1,395,460,396],[414,413,411,1,461,460,395],[414,415,413,1,461,462,460],[416,415,414,1,463,462,461],[416,417,415,1,463,464,462],[416,418,417,1,463,465,464],[416,419,418,1,463,466,465],[416,420,419,1,463,467,466],[421,420,416,1,468,467,463],[421,422,420,1,468,469,467],[423,422,421,1,470,469,468],[423,424,422,1,470,471,469],[425,424,423,1,472,471,470],[425,426,424,1,472,473,471],[427,426,425,1,474,473,472],[428,426,427,1,475,473,474],[428,429,426,1,475,476,473],[428,430,429,1,475,477,476],[431,430,428,1,478,477,475],[431,432,430,1,478,479,477],[433,432,431,1,480,479,478],[433,434,432,1,480,481,479],[434,433,435,1,481,480,482],[435,433,436,1,482,480,483],[433,437,436,1,480,484,483],[437,433,431,1,484,480,478],[431,438,437,1,478,485,484],[439,438,431,1,486,485,478],[440,438,439,1,487,485,486],[441,438,440,1,488,485,487],[437,438,441,1,484,485,488],[442,437,441,1,489,484,488],[442,436,437,1,489,483,484],[443,436,442,1,490,483,489],[443,444,436,1,490,491,483],[445,444,443,1,492,491,490],[445,446,444,1,492,493,491],[447,446,445,1,494,493,492],[446,447,448,1,493,494,495],[447,449,448,1,494,496,495],[447,450,449,1,494,497,496],[451,450,447,1,498,497,494],[452,450,451,1,499,497,498],[452,453,450,1,499,500,497],[452,454,453,1,499,501,500],[455,454,452,1,502,501,499],[454,455,456,1,501,502,503],[456,455,457,1,503,502,504],[455,458,457,1,502,505,504],[452,458,455,1,499,505,502],[458,452,451,1,505,499,498],[458,451,459,1,505,498,506],[451,447,459,1,498,494,506],[447,445,459,1,494,492,506],[458,459,445,1,505,506,492],[460,458,445,1,507,505,492],[457,458,460,1,504,505,507],[457,460,461,1,504,507,508],[460,445,461,1,507,492,508],[461,445,443,1,508,492,490],[461,443,462,1,508,490,509],[462,443,442,1,509,490,489],[462,442,463,1,509,489,510],[442,441,463,1,489,488,510],[463,441,440,1,510,488,487],[463,440,439,1,510,487,486],[463,439,464,1,510,486,511],[464,439,465,1,511,486,512],[439,431,465,1,486,478,512],[465,431,428,1,512,478,475],[465,428,427,1,512,475,474],[465,427,466,1,512,474,513],[466,427,425,1,513,474,472],[466,425,467,1,513,472,514],[467,425,423,1,514,472,470],[467,423,468,1,514,470,515],[468,423,421,1,515,470,468],[468,421,469,1,515,468,516],[421,416,469,1,468,463,516],[469,416,414,1,516,463,461],[469,414,411,1,516,461,395],[469,411,470,1,516,395,397],[332,482,481,1,330,517,408],[332,483,482,1,330,518,517],[333,483,332,1,446,518,330],[333,484,483,1,446,519,518],[333,485,484,1,446,520,519],[334,485,333,1,447,520,446],[335,485,334,1,448,520,447],[335,486,485,1,448,521,520],[335,487,486,1,448,522,521],[338,487,335,1,451,522,448],[338,488,487,1,451,523,522],[339,488,338,1,452,523,451],[339,489,488,1,452,524,523],[489,339,490,1,524,452,525],[490,339,340,1,525,452,453],[490,340,491,1,525,453,526],[491,340,492,1,526,453,527],[340,493,492,1,453,528,527],[340,341,493,1,453,454,528],[341,343,493,1,454,456,528],[341,342,343,1,454,455,456],[493,343,494,1,528,456,529],[494,343,495,1,529,456,530],[343,345,495,1,456,458,530],[343,344,345,1,456,457,458],[495,345,346,1,530,458,459],[496,495,346,1,531,530,459],[494,495,496,1,529,530,531],[494,496,497,1,529,531,532],[496,498,497,1,531,533,532],[498,496,346,1,533,531,459],[346,499,498,1,459,534,533],[346,500,499,1,459,535,534],[346,347,500,1,459,331,535],[347,501,500,1,331,409,535],[531,533,532,1,439,536,440],[530,533,531,1,438,536,439],[530,534,533,1,438,537,536],[413,534,530,1,460,537,438],[413,415,534,1,460,462,537],[415,535,534,1,462,538,537],[415,536,535,1,462,539,538],[415,537,536,1,462,540,539],[417,537,415,1,464,540,462],[417,538,537,1,464,541,540],[418,538,417,1,465,541,464],[539,538,418,1,542,541,465],[539,540,538,1,542,543,541],[541,540,539,1,544,543,542],[541,542,540,1,544,545,543],[543,542,541,1,546,545,544],[543,544,542,1,546,547,545],[543,545,544,1,546,548,547],[543,546,545,1,546,549,548],[547,546,543,1,550,549,546],[547,548,546,1,550,551,549],[549,548,547,1,552,551,550],[550,548,549,1,553,551,552],[550,551,548,1,553,554,551],[550,552,551,1,553,555,554],[553,552,550,1,556,555,553],[553,554,552,1,556,557,555],[555,554,553,1,558,557,556],[555,556,554,1,558,559,557],[555,557,556,1,558,560,559],[558,557,555,1,561,560,558],[559,558,555,1,562,561,558],[559,555,560,1,562,558,563],[560,555,561,1,563,558,564],[555,553,561,1,558,556,564],[561,553,562,1,564,556,565],[562,553,563,1,565,556,566],[553,549,563,1,556,552,566],[549,553,550,1,552,556,553],[563,549,564,1,566,552,567],[549,565,564,1,552,568,567],[549,547,565,1,552,550,568],[547,541,565,1,550,544,568],[547,543,541,1,550,546,544],[565,541,539,1,568,544,542],[565,539,566,1,568,542,569],[566,539,418,1,569,542,465],[419,566,418,1,466,569,465],[419,567,566,1,466,570,569],[420,567,419,1,467,570,466],[422,567,420,1,469,570,467],[422,568,567,1,469,571,570],[424,568,422,1,471,571,469],[424,569,568,1,471,572,571],[426,569,424,1,473,572,471],[426,570,569,1,473,573,572],[426,429,570,1,473,476,573],[429,571,570,1,476,574,573],[572,571,429,1,575,574,476],[572,573,571,1,575,576,574],[572,574,573,1,575,577,576],[572,575,574,1,575,578,577],[576,575,572,1,579,578,575],[576,577,575,1,579,580,578],[578,577,576,1,581,580,579],[578,579,577,1,581,582,580],[578,580,579,1,581,583,582],[581,580,578,1,584,583,581],[581,582,580,1,584,585,583],[583,582,581,1,586,585,584],[583,584,582,1,586,587,585],[585,584,583,1,588,587,586],[585,583,488,1,588,586,523],[488,583,586,1,523,586,589],[586,583,587,1,589,586,590],[587,583,581,1,590,586,584],[587,581,588,1,590,584,591],[588,581,589,1,591,584,592],[589,581,576,1,592,584,579],[581,578,576,1,584,581,579],[589,576,430,1,592,579,477],[430,576,572,1,477,579,575],[430,572,429,1,477,575,476],[590,589,430,1,593,592,477],[590,588,589,1,593,591,592],[448,588,590,1,495,591,593],[448,449,588,1,495,496,591],[449,591,588,1,496,594,591],[449,592,591,1,496,595,594],[450,592,449,1,497,595,496],[450,593,592,1,497,596,595],[453,593,450,1,500,596,497],[453,594,593,1,500,597,596],[454,594,453,1,501,597,500],[594,454,586,1,597,501,589],[454,456,586,1,501,503,589],[488,586,456,1,523,589,503],[488,456,487,1,523,503,522],[456,457,487,1,503,504,522],[487,457,595,1,522,504,598],[457,461,595,1,504,508,598],[461,462,595,1,508,509,598],[487,595,462,1,522,598,509],[487,462,486,1,522,509,521],[486,462,463,1,521,509,510],[486,463,464,1,521,510,511],[486,464,485,1,521,511,520],[485,464,596,1,520,511,599],[464,465,596,1,511,512,599],[596,465,466,1,599,512,513],[596,466,482,1,599,513,517],[482,466,597,1,517,513,600],[466,467,597,1,513,514,600],[597,467,468,1,600,514,515],[597,468,469,1,600,515,516],[481,597,469,1,408,600,516],[482,597,481,1,517,600,408],[481,469,470,1,408,516,397],[483,596,482,1,518,599,517],[483,484,596,1,518,519,599],[484,485,596,1,519,520,599],[594,586,598,1,597,589,601],[586,599,598,1,589,602,601],[586,587,599,1,589,590,602],[587,591,599,1,590,594,602],[587,588,591,1,590,591,594],[599,591,592,1,602,594,595],[598,599,592,1,601,602,595],[598,592,593,1,601,595,596],[594,598,593,1,597,601,596],[448,590,600,1,495,593,603],[590,432,600,1,593,479,603],[590,430,432,1,593,477,479],[600,432,601,1,603,479,604],[601,432,434,1,604,479,481],[434,600,601,1,481,603,604],[600,434,602,1,603,481,605],[602,434,444,1,605,481,491],[444,434,435,1,491,481,482],[444,435,436,1,491,482,483],[446,602,444,1,493,605,491],[448,602,446,1,495,605,493],[448,600,602,1,495,603,605],[489,585,488,1,524,588,523],[584,603,582,1,587,606,585],[582,603,604,1,585,606,607],[603,605,604,1,606,608,607],[603,606,605,1,606,609,608],[607,605,606,1,610,608,609],[607,608,605,1,610,611,608],[607,609,608,1,610,612,611],[607,610,609,1,610,613,612],[611,610,607,1,614,613,610],[606,611,607,1,609,614,610],[610,612,609,1,613,615,612],[610,613,612,1,613,616,615],[613,614,612,1,616,617,615],[612,614,615,1,615,617,618],[615,614,616,1,618,617,619],[614,617,616,1,617,620,619],[618,616,617,1,621,619,620],[618,619,616,1,621,622,619],[620,619,618,1,623,622,621],[620,621,619,1,623,624,622],[622,621,620,1,625,624,623],[622,623,621,1,625,626,624],[624,623,622,1,627,626,625],[624,625,623,1,627,628,626],[624,626,625,1,627,629,628],[627,626,624,1,630,629,627],[627,628,626,1,630,631,629],[629,628,627,1,632,631,630],[629,630,628,1,632,633,631],[631,630,629,1,634,633,632],[631,632,630,1,634,635,633],[631,633,632,1,634,636,635],[631,634,633,1,634,637,636],[635,634,631,1,638,637,634],[636,634,635,1,639,637,638],[636,637,634,1,639,640,637],[638,637,636,1,641,640,639],[638,639,637,1,641,642,640],[640,639,638,1,643,642,641],[641,639,640,1,644,642,643],[639,641,642,1,642,644,645],[641,643,642,1,644,646,645],[644,643,641,1,647,646,644],[644,645,643,1,647,648,646],[644,646,645,1,647,649,648],[498,646,644,1,533,649,647],[498,499,646,1,533,534,649],[499,500,646,1,534,535,649],[500,647,646,1,535,650,649],[500,648,647,1,535,651,650],[500,501,648,1,535,409,651],[501,649,648,1,409,652,651],[501,532,649,1,409,440,652],[649,532,650,1,652,440,653],[532,533,650,1,440,536,653],[533,651,650,1,536,654,653],[533,652,651,1,536,655,654],[535,652,533,1,538,655,536],[535,653,652,1,538,656,655],[535,654,653,1,538,657,656],[655,654,535,1,658,657,538],[654,655,656,1,657,658,659],[656,655,657,1,659,658,660],[657,655,658,1,660,658,661],[658,655,536,1,661,658,539],[536,655,535,1,539,658,538],[537,658,536,1,540,661,539],[537,659,658,1,540,662,661],[538,659,537,1,541,662,540],[660,659,538,1,663,662,541],[660,658,659,1,663,661,662],[661,658,660,1,664,661,663],[658,661,657,1,661,664,660],[544,657,661,1,547,660,664],[662,657,544,1,665,660,547],[656,657,662,1,659,660,665],[663,656,662,1,666,659,665],[664,656,663,1,667,659,666],[654,656,664,1,657,659,667],[653,654,664,1,656,657,667],[665,653,664,1,668,656,667],[653,665,652,1,656,668,655],[652,665,666,1,655,668,669],[666,665,667,1,669,668,670],[667,665,668,1,670,668,671],[665,664,668,1,668,667,671],[668,664,669,1,671,667,672],[669,664,663,1,672,667,666],[670,669,663,1,673,672,666],[671,669,670,1,674,672,673],[672,669,671,1,675,672,674],[672,673,669,1,675,676,672],[674,673,672,1,677,676,675],[675,673,674,1,678,676,677],[675,676,673,1,678,679,676],[677,676,675,1,680,679,678],[677,667,676,1,680,670,679],[678,667,677,1,681,670,680],[678,666,667,1,681,669,670],[666,678,679,1,669,681,682],[679,678,680,1,682,681,683],[680,678,681,1,683,681,684],[681,678,677,1,684,681,680],[682,681,677,1,685,684,680],[683,681,682,1,686,684,685],[683,680,681,1,686,683,684],[684,680,683,1,687,683,686],[684,649,680,1,687,652,683],[648,649,684,1,651,652,687],[647,648,684,1,650,651,687],[646,647,684,1,649,650,687],[684,645,646,1,687,648,649],[684,683,645,1,687,686,648],[645,683,685,1,648,686,688],[685,683,686,1,688,686,689],[686,683,682,1,689,686,685],[686,682,628,1,689,685,631],[682,687,628,1,685,690,631],[682,677,687,1,685,680,690],[677,675,687,1,680,678,690],[687,675,688,1,690,678,691],[675,674,688,1,678,677,691],[688,674,689,1,691,677,692],[689,674,690,1,692,677,693],[690,674,672,1,693,677,675],[690,672,691,1,693,675,694],[691,672,671,1,694,675,674],[691,671,692,1,694,674,695],[692,671,693,1,695,674,696],[693,671,670,1,696,674,673],[693,670,694,1,696,673,697],[670,663,694,1,673,666,697],[694,663,662,1,697,666,665],[694,662,545,1,697,665,548],[545,662,544,1,548,665,547],[695,694,545,1,698,697,548],[695,696,694,1,698,699,697],[695,697,696,1,698,700,699],[695,698,697,1,698,701,700],[699,698,695,1,702,701,698],[700,698,699,1,703,701,702],[700,697,698,1,703,700,701],[701,697,700,1,704,700,703],[701,702,697,1,704,705,700],[703,702,701,1,706,705,704],[704,702,703,1,707,705,706],[693,702,704,1,696,705,707],[696,702,693,1,699,705,696],[697,702,696,1,700,705,699],[693,694,696,1,696,697,699],[705,693,704,1,708,696,707],[705,692,693,1,708,695,696],[706,692,705,1,709,695,708],[706,691,692,1,709,694,695],[690,691,706,1,693,694,709],[707,690,706,1,710,693,709],[707,708,690,1,710,711,693],[709,708,707,1,712,711,710],[708,709,710,1,711,712,713],[711,710,709,1,714,713,712],[712,710,711,1,715,713,714],[712,713,710,1,715,716,713],[714,713,712,1,717,716,715],[714,715,713,1,717,718,716],[716,715,714,1,719,718,717],[717,715,716,1,720,718,719],[717,718,715,1,720,721,718],[717,719,718,1,720,722,721],[720,719,717,1,723,722,720],[720,721,719,1,723,724,722],[722,721,720,1,725,724,723],[722,723,721,1,725,726,724],[724,723,722,1,727,726,725],[725,723,724,1,728,726,727],[726,723,725,1,729,726,728],[726,727,723,1,729,730,726],[728,727,726,1,731,730,729],[729,727,728,1,732,730,731],[730,727,729,1,733,730,732],[730,731,727,1,733,734,730],[730,732,731,1,733,735,734],[733,732,730,1,736,735,733],[733,734,732,1,736,737,735],[733,688,734,1,736,691,737],[733,687,688,1,736,690,691],[628,687,733,1,631,690,736],[628,733,626,1,631,736,629],[626,733,730,1,629,736,733],[626,730,735,1,629,733,738],[735,730,736,1,738,733,739],[736,730,729,1,739,733,732],[736,729,737,1,739,732,740],[737,729,728,1,740,732,731],[737,728,738,1,740,731,741],[738,728,739,1,741,731,742],[728,726,739,1,731,729,742],[739,726,740,1,742,729,743],[740,726,741,1,743,729,744],[726,725,741,1,729,728,744],[741,725,742,1,744,728,745],[742,725,724,1,745,728,727],[743,742,724,1,746,745,727],[744,742,743,1,747,745,746],[744,745,742,1,747,748,745],[746,745,744,1,749,748,747],[746,747,745,1,749,750,748],[748,747,746,1,751,750,749],[748,749,747,1,751,752,750],[748,750,749,1,751,753,752],[751,750,748,1,754,753,751],[751,752,750,1,754,755,753],[751,753,752,1,754,756,755],[754,753,751,1,757,756,754],[754,755,753,1,757,758,756],[756,755,754,1,759,758,757],[756,757,755,1,759,760,758],[758,757,756,1,761,760,759],[759,757,758,1,762,760,761],[759,760,757,1,762,763,760],[761,760,759,1,764,763,762],[761,762,760,1,764,765,763],[763,762,761,1,766,765,764],[763,764,762,1,766,767,765],[765,764,763,1,768,767,766],[766,764,765,1,769,767,768],[766,767,764,1,769,770,767],[768,767,766,1,771,770,769],[768,738,767,1,771,741,770],[769,738,768,1,772,741,771],[737,738,769,1,740,741,772],[770,737,769,1,773,740,772],[736,737,770,1,739,740,773],[771,736,770,1,774,739,773],[771,735,736,1,774,738,739],[625,735,771,1,628,738,774],[625,626,735,1,628,629,738],[625,771,623,1,628,774,626],[623,771,772,1,626,774,775],[771,770,772,1,774,773,775],[772,770,768,1,775,773,771],[770,769,768,1,773,772,771],[772,768,773,1,775,771,776],[773,768,766,1,776,771,769],[773,766,765,1,776,769,768],[773,765,774,1,776,768,777],[774,765,763,1,777,768,766],[774,763,775,1,777,766,778],[775,763,776,1,778,766,779],[776,763,761,1,779,766,764],[776,761,777,1,779,764,780],[777,761,778,1,780,764,781],[761,779,778,1,764,782,781],[780,779,761,1,783,782,764],[781,779,780,1,784,782,783],[782,779,781,1,785,782,784],[778,779,782,1,781,782,785],[778,782,783,1,781,785,786],[783,782,784,1,786,785,787],[784,782,785,1,787,785,788],[785,782,781,1,788,785,784],[781,786,785,1,784,789,788],[781,780,786,1,784,783,789],[780,787,786,1,783,790,789],[780,758,787,1,783,761,790],[759,758,780,1,762,761,783],[761,759,780,1,764,762,783],[787,758,756,1,790,761,759],[787,756,788,1,790,759,791],[756,789,788,1,759,792,791],[754,789,756,1,757,792,759],[790,789,754,1,793,792,757],[788,789,790,1,791,792,793],[791,788,790,1,794,791,793],[792,788,791,1,795,791,794],[792,787,788,1,795,790,791],[793,787,792,1,796,790,795],[786,787,793,1,789,790,796],[785,786,793,1,788,789,796],[785,793,794,1,788,796,797],[793,795,794,1,796,798,797],[793,792,795,1,796,795,798],[791,795,792,1,794,798,795],[796,795,791,1,799,798,794],[796,797,795,1,799,800,798],[796,798,797,1,799,801,800],[799,798,796,1,802,801,799],[799,800,798,1,802,803,801],[799,801,800,1,802,804,803],[802,801,799,1,805,804,802],[802,744,801,1,805,747,804],[802,746,744,1,805,749,747],[790,746,802,1,793,749,805],[748,746,790,1,751,749,793],[754,748,790,1,757,751,793],[754,751,748,1,757,754,751],[791,790,802,1,794,793,805],[802,796,791,1,805,799,794],[802,799,796,1,805,802,799],[801,744,743,1,804,747,746],[801,743,800,1,804,746,803],[800,743,803,1,803,746,806],[743,724,803,1,746,727,806],[803,724,722,1,806,727,725],[803,722,804,1,806,725,807],[804,722,805,1,807,725,808],[722,720,805,1,725,723,808],[805,720,806,1,808,723,809],[720,717,806,1,723,720,809],[806,717,716,1,809,720,719],[807,806,716,1,810,809,719],[805,806,807,1,808,809,810],[808,805,807,1,811,808,810],[809,805,808,1,812,808,811],[809,804,805,1,812,807,808],[797,804,809,1,800,807,812],[797,810,804,1,800,813,807],[798,810,797,1,801,813,800],[798,800,810,1,801,803,813],[800,803,810,1,803,806,813],[810,803,804,1,813,806,807],[795,797,809,1,798,800,812],[795,809,811,1,798,812,814],[811,809,808,1,814,812,811],[811,808,812,1,814,811,815],[808,813,812,1,811,816,815],[808,807,813,1,811,810,816],[807,814,813,1,810,817,816],[815,814,807,1,818,817,810],[816,814,815,1,819,817,818],[816,817,814,1,819,820,817],[816,818,817,1,819,821,820],[819,818,816,1,822,821,819],[714,818,819,1,717,821,822],[714,820,818,1,717,823,821],[821,820,714,1,824,823,717],[821,822,820,1,824,825,823],[823,822,821,1,826,825,824],[823,824,822,1,826,827,825],[823,825,824,1,826,828,827],[826,825,823,1,829,828,826],[826,827,825,1,829,830,828],[828,827,826,1,831,830,829],[827,828,829,1,830,831,832],[829,828,830,1,832,831,833],[830,828,826,1,833,831,829],[830,826,831,1,833,829,834],[832,831,826,1,835,834,829],[833,831,832,1,836,834,835],[830,831,833,1,833,834,836],[833,834,830,1,836,837,833],[835,834,833,1,838,837,836],[836,834,835,1,839,837,838],[836,830,834,1,839,833,837],[836,837,830,1,839,840,833],[838,837,836,1,841,840,839],[838,829,837,1,841,832,840],[838,839,829,1,841,842,832],[840,839,838,1,843,842,841],[840,841,839,1,843,844,842],[813,841,840,1,816,844,843],[813,842,841,1,816,845,844],[814,842,813,1,817,845,816],[814,843,842,1,817,846,845],[817,843,814,1,820,846,817],[818,843,817,1,821,846,820],[818,820,843,1,821,823,846],[820,844,843,1,823,847,846],[822,844,820,1,825,847,823],[824,844,822,1,827,847,825],[827,844,824,1,830,847,827],[843,844,827,1,846,847,830],[843,827,845,1,846,830,848],[845,827,829,1,848,830,832],[845,829,839,1,848,832,842],[841,845,839,1,844,848,842],[842,845,841,1,845,848,844],[843,845,842,1,846,848,845],[824,825,827,1,827,828,830],[846,813,840,1,849,816,843],[812,813,846,1,815,816,849],[847,812,846,1,850,815,849],[811,812,847,1,814,815,850],[794,811,847,1,797,814,850],[794,795,811,1,797,798,814],[794,847,848,1,797,850,851],[848,847,849,1,851,850,852],[849,847,850,1,852,850,853],[847,846,850,1,850,849,853],[850,846,851,1,853,849,854],[851,846,840,1,854,849,843],[851,840,852,1,854,843,855],[852,840,838,1,855,843,841],[853,852,838,1,856,855,841],[851,852,853,1,854,855,856],[851,853,854,1,854,856,857],[854,853,855,1,857,856,858],[853,856,855,1,856,859,858],[853,857,856,1,856,860,859],[853,838,857,1,856,841,860],[857,838,836,1,860,841,839],[858,857,836,1,861,860,839],[856,857,858,1,859,860,861],[859,856,858,1,862,859,861],[855,856,859,1,858,859,862],[860,855,859,1,863,858,862],[855,860,861,1,858,863,864],[861,860,862,1,864,863,865],[862,860,863,1,865,863,866],[863,860,864,1,866,863,867],[864,860,865,1,867,863,868],[860,859,865,1,863,862,868],[859,858,865,1,862,861,868],[865,858,835,1,868,861,838],[858,836,835,1,861,839,838],[866,865,835,1,869,868,838],[867,865,866,1,870,868,869],[867,868,865,1,870,871,868],[869,868,867,1,872,871,870],[869,870,868,1,872,873,871],[871,870,869,1,874,873,872],[871,863,870,1,874,866,873],[862,863,871,1,865,866,874],[861,862,871,1,864,865,874],[872,861,871,1,875,864,874],[873,861,872,1,876,864,875],[874,861,873,1,877,864,876],[874,855,861,1,877,858,864],[875,855,874,1,878,858,877],[854,855,875,1,857,858,878],[876,854,875,1,879,857,878],[877,854,876,1,880,857,879],[877,851,854,1,880,854,857],[878,851,877,1,881,854,880],[878,850,851,1,881,853,854],[879,850,878,1,882,853,881],[879,849,850,1,882,852,853],[880,849,879,1,883,852,882],[880,784,849,1,883,787,852],[783,784,880,1,786,787,883],[881,783,880,1,884,786,883],[881,777,783,1,884,780,786],[882,777,881,1,885,780,884],[882,776,777,1,885,779,780],[883,776,882,1,886,779,885],[883,775,776,1,886,778,779],[884,775,883,1,887,778,886],[884,885,775,1,887,888,778],[886,885,884,1,889,888,887],[886,887,885,1,889,890,888],[888,887,886,1,891,890,889],[619,887,888,1,622,890,891],[619,889,887,1,622,892,890],[621,889,619,1,624,892,622],[621,890,889,1,624,893,892],[621,772,890,1,624,775,893],[621,623,772,1,624,626,775],[772,773,890,1,775,776,893],[890,773,774,1,893,776,777],[890,774,891,1,893,777,894],[891,774,885,1,894,777,888],[774,775,885,1,777,778,888],[891,885,887,1,894,888,890],[889,891,887,1,892,894,890],[890,891,889,1,893,894,892],[619,888,616,1,622,891,619],[615,616,888,1,618,619,891],[612,615,888,1,615,618,891],[612,888,892,1,615,891,895],[892,888,886,1,895,891,889],[892,886,893,1,895,889,896],[893,886,894,1,896,889,897],[886,884,894,1,889,887,897],[894,884,883,1,897,887,886],[894,883,882,1,897,886,885],[894,882,895,1,897,885,898],[895,882,881,1,898,885,884],[895,881,896,1,898,884,899],[896,881,897,1,899,884,900],[881,880,897,1,884,883,900],[897,880,879,1,900,883,882],[898,897,879,1,901,900,882],[899,897,898,1,902,900,901],[896,897,899,1,899,900,902],[895,896,899,1,898,899,902],[900,895,899,1,903,898,902],[894,895,900,1,897,898,903],[894,900,901,1,897,903,904],[901,900,902,1,904,903,905],[900,903,902,1,903,906,905],[900,899,903,1,903,902,906],[899,904,903,1,902,907,906],[899,898,904,1,902,901,907],[904,898,905,1,907,901,908],[898,906,905,1,901,909,908],[898,879,906,1,901,882,909],[879,877,906,1,882,880,909],[879,878,877,1,882,881,880],[906,877,876,1,909,880,879],[906,876,907,1,909,879,910],[907,876,908,1,910,879,911],[908,876,909,1,911,879,912],[876,875,909,1,879,878,912],[909,875,874,1,912,878,877],[909,874,910,1,912,877,913],[910,874,873,1,913,877,876],[910,873,911,1,913,876,914],[911,873,912,1,914,876,915],[912,873,913,1,915,876,916],[873,872,913,1,876,875,916],[913,872,914,1,916,875,917],[872,871,914,1,875,874,917],[914,871,915,1,917,874,918],[871,869,915,1,874,872,918],[869,916,915,1,872,919,918],[869,917,916,1,872,920,919],[869,918,917,1,872,921,920],[869,867,918,1,872,870,921],[867,919,918,1,870,922,921],[867,866,919,1,870,869,922],[919,866,920,1,922,869,923],[866,835,920,1,869,838,923],[920,835,921,1,923,838,924],[921,835,833,1,924,838,836],[921,833,922,1,924,836,925],[922,833,923,1,925,836,926],[923,833,832,1,926,836,835],[923,832,924,1,926,835,927],[924,832,925,1,927,835,928],[925,832,926,1,928,835,929],[927,926,832,1,930,929,835],[928,926,927,1,931,929,930],[928,929,926,1,931,932,929],[928,711,929,1,931,714,932],[928,712,711,1,931,715,714],[821,712,928,1,824,715,931],[714,712,821,1,717,715,824],[823,821,928,1,826,824,931],[928,927,823,1,931,930,826],[823,927,826,1,826,930,829],[832,826,927,1,835,829,930],[929,711,930,1,932,714,933],[709,930,711,1,712,933,714],[930,709,931,1,933,712,934],[931,709,932,1,934,712,935],[707,932,709,1,710,935,712],[932,707,933,1,935,710,936],[934,933,707,1,937,936,710],[935,933,934,1,938,936,937],[935,936,933,1,938,939,936],[937,936,935,1,940,939,938],[937,931,936,1,940,934,939],[938,931,937,1,941,934,940],[939,931,938,1,942,934,941],[939,930,931,1,942,933,934],[940,930,939,1,943,933,942],[940,929,930,1,943,932,933],[926,929,940,1,929,932,943],[925,926,940,1,928,929,943],[925,940,941,1,928,943,944],[941,940,939,1,944,943,942],[941,939,942,1,944,942,945],[939,938,942,1,942,941,945],[942,938,943,1,945,941,946],[943,938,944,1,946,941,947],[944,938,937,1,947,941,940],[945,944,937,1,948,947,940],[946,944,945,1,949,947,948],[946,947,944,1,949,950,947],[948,947,946,1,951,950,949],[943,947,948,1,946,950,951],[947,943,944,1,950,946,947],[948,949,943,1,951,952,946],[950,949,948,1,953,952,951],[950,951,949,1,953,954,952],[952,951,950,1,955,954,953],[953,951,952,1,956,954,955],[954,951,953,1,957,954,956],[955,951,954,1,958,954,957],[956,951,955,1,959,954,958],[956,949,951,1,959,952,954],[956,942,949,1,959,945,952],[941,942,956,1,944,945,959],[941,956,957,1,944,959,960],[957,956,955,1,960,959,958],[958,957,955,1,961,960,958],[924,957,958,1,927,960,961],[924,925,957,1,927,928,960],[925,941,957,1,928,944,960],[959,924,958,1,962,927,961],[959,923,924,1,962,926,927],[959,922,923,1,962,925,926],[922,959,918,1,925,962,921],[918,959,917,1,921,962,920],[917,959,960,1,920,962,963],[959,958,960,1,962,961,963],[960,958,955,1,963,961,958],[960,955,954,1,963,958,957],[960,954,961,1,963,957,964],[961,954,962,1,964,957,965],[954,963,962,1,957,966,965],[954,953,963,1,957,956,966],[963,953,964,1,966,956,967],[964,953,952,1,967,956,955],[964,952,965,1,967,955,968],[952,950,965,1,955,953,968],[965,950,966,1,968,953,969],[950,967,966,1,953,970,969],[950,948,967,1,953,951,970],[967,948,946,1,970,951,949],[964,965,557,1,967,968,560],[963,964,557,1,966,967,560],[963,557,968,1,966,560,971],[560,963,968,1,563,966,971],[969,963,560,1,972,966,563],[962,963,969,1,965,966,972],[970,962,969,1,973,965,972],[961,962,970,1,964,965,973],[916,961,970,1,919,964,973],[917,961,916,1,920,964,919],[917,960,961,1,920,963,964],[916,970,971,1,919,973,974],[972,971,970,1,975,974,973],[973,971,972,1,976,974,975],[973,915,971,1,976,918,974],[914,915,973,1,917,918,976],[974,914,973,1,977,917,976],[913,914,974,1,916,917,977],[975,913,974,1,978,916,977],[912,913,975,1,915,916,978],[976,912,975,1,979,915,978],[977,912,976,1,980,915,979],[977,978,912,1,980,981,915],[979,978,977,1,982,981,980],[980,978,979,1,983,981,982],[980,981,978,1,983,984,981],[982,981,980,1,985,984,983],[982,983,981,1,985,986,984],[984,983,982,1,987,986,985],[984,985,983,1,987,988,986],[986,985,984,1,989,988,987],[986,987,985,1,989,990,988],[988,987,986,1,991,990,989],[989,987,988,1,992,990,991],[990,987,989,1,993,990,992],[990,985,987,1,993,988,990],[990,908,985,1,993,911,988],[991,908,990,1,994,911,993],[991,907,908,1,994,910,911],[905,907,991,1,908,910,994],[905,906,907,1,908,909,910],[992,905,991,1,995,908,994],[904,905,992,1,907,908,995],[993,904,992,1,996,907,995],[903,904,993,1,906,907,996],[994,903,993,1,997,906,996],[902,903,994,1,905,906,997],[995,902,994,1,998,905,997],[996,902,995,1,999,905,998],[996,901,902,1,999,904,905],[997,901,996,1,1000,904,999],[997,894,901,1,1000,897,904],[998,894,997,1,1001,897,1000],[893,894,998,1,896,897,1001],[892,893,998,1,895,896,1001],[608,892,998,1,611,895,1001],[612,892,608,1,615,895,611],[608,609,612,1,611,612,615],[608,998,999,1,611,1001,1002],[998,1000,999,1,1001,1003,1002],[998,997,1000,1,1001,1000,1003],[997,996,1000,1,1000,999,1003],[1000,996,1001,1,1003,999,1004],[996,995,1001,1,999,998,1004],[1001,995,1002,1,1004,998,1005],[995,1003,1002,1,998,1006,1005],[995,1004,1003,1,998,1007,1006],[995,994,1004,1,998,997,1007],[1004,994,1005,1,1007,997,1008],[994,1006,1005,1,997,1009,1008],[994,1007,1006,1,997,1010,1009],[994,1008,1007,1,997,1011,1010],[994,993,1008,1,997,996,1011],[993,992,1008,1,996,995,1011],[1008,992,1009,1,1011,995,1012],[1009,992,991,1,1012,995,994],[1009,991,1010,1,1012,994,1013],[1010,991,990,1,1013,994,993],[1010,990,989,1,1013,993,992],[1007,1010,989,1,1010,1013,992],[1007,1009,1010,1,1010,1012,1013],[1008,1009,1007,1,1011,1012,1010],[1007,989,1011,1,1010,992,1014],[1012,1011,989,1,1015,1014,992],[1013,1011,1012,1,1016,1014,1015],[1006,1011,1013,1,1009,1014,1016],[1006,1007,1011,1,1009,1010,1014],[1005,1006,1013,1,1008,1009,1016],[1005,1013,1014,1,1008,1016,1017],[1014,1013,1015,1,1017,1016,1018],[1015,1013,1012,1,1018,1016,1015],[1015,1012,1016,1,1018,1015,1019],[1016,1012,1017,1,1019,1015,1020],[1012,988,1017,1,1015,991,1020],[1012,989,988,1,1015,992,991],[1018,1017,988,1,1021,1020,991],[1016,1017,1018,1,1019,1020,1021],[1016,1018,1019,1,1019,1021,1022],[1019,1018,1020,1,1022,1021,1023],[1018,1021,1020,1,1021,1024,1023],[1021,1018,986,1,1024,1021,989],[1018,988,986,1,1021,991,989],[1021,986,984,1,1024,989,987],[1021,984,1022,1,1024,987,1025],[1022,984,982,1,1025,987,985],[1022,982,980,1,1025,985,983],[1023,1022,980,1,1026,1025,983],[1021,1022,1023,1,1024,1025,1026],[1021,1023,1024,1,1024,1026,1027],[1023,979,1024,1,1026,982,1027],[1023,980,979,1,1026,983,982],[1024,979,1025,1,1027,982,1028],[1025,979,977,1,1028,982,980],[1025,977,1026,1,1028,980,1029],[1026,977,976,1,1029,980,979],[1027,1026,976,1,1030,1029,979],[1027,1028,1026,1,1030,1031,1029],[1029,1028,1027,1,1032,1031,1030],[1030,1028,1029,1,1033,1031,1032],[1030,1031,1028,1,1033,1034,1031],[1030,1032,1031,1,1033,1035,1034],[1033,1032,1030,1,1036,1035,1033],[1034,1032,1033,1,1037,1035,1036],[1019,1032,1034,1,1022,1035,1037],[1019,1020,1032,1,1022,1023,1035],[1032,1020,1035,1,1035,1023,1038],[1020,1024,1035,1,1023,1027,1038],[1021,1024,1020,1,1024,1027,1023],[1035,1024,1025,1,1038,1027,1028],[1031,1035,1025,1,1034,1038,1028],[1031,1032,1035,1,1034,1035,1038],[1031,1025,1028,1,1034,1028,1031],[1028,1025,1026,1,1031,1028,1029],[1036,1019,1034,1,1039,1022,1037],[1037,1019,1036,1,1040,1022,1039],[1037,1016,1019,1,1040,1019,1022],[1038,1016,1037,1,1041,1019,1040],[1038,1015,1016,1,1041,1018,1019],[1014,1015,1038,1,1017,1018,1041],[1039,1014,1038,1,1042,1017,1041],[1040,1014,1039,1,1043,1017,1042],[1005,1014,1040,1,1008,1017,1043],[1003,1005,1040,1,1006,1008,1043],[1004,1005,1003,1,1007,1008,1006],[1003,1040,1041,1,1006,1043,1044],[1040,1042,1041,1,1043,1045,1044],[1040,1039,1042,1,1043,1042,1045],[1039,1043,1042,1,1042,1046,1045],[1038,1044,1039,1,1041,1047,1042],[1044,1038,1037,1,1047,1041,1040],[1044,1037,1036,1,1047,1040,1039],[1045,1044,1036,1,1048,1047,1039],[1044,1045,1043,1,1047,1048,1046],[1046,1043,1045,1,1049,1046,1048],[1042,1043,1046,1,1045,1046,1049],[1047,1042,1046,1,1050,1045,1049],[1047,1041,1042,1,1050,1044,1045],[1048,1041,1047,1,1051,1044,1050],[1048,1049,1041,1,1051,1052,1044],[1050,1049,1048,1,1053,1052,1051],[1050,1002,1049,1,1053,1005,1052],[1050,1001,1002,1,1053,1004,1005],[1051,1001,1050,1,1054,1004,1053],[1051,1052,1001,1,1054,1055,1004],[1051,1053,1052,1,1054,1056,1055],[604,1053,1051,1,607,1056,1054],[604,605,1053,1,607,608,1056],[605,999,1053,1,608,1002,1056],[605,608,999,1,608,611,1002],[999,1052,1053,1,1002,1055,1056],[1052,999,1000,1,1055,1002,1003],[1052,1000,1001,1,1055,1003,1004],[604,1051,1054,1,607,1054,1057],[1054,1051,1050,1,1057,1054,1053],[1054,1050,1048,1,1057,1053,1051],[1054,1048,1055,1,1057,1051,1058],[1055,1048,1056,1,1058,1051,1059],[1048,1047,1056,1,1051,1050,1059],[1056,1047,1057,1,1059,1050,1060],[1057,1047,1058,1,1060,1050,1061],[1047,1059,1058,1,1050,1062,1061],[1047,1060,1059,1,1050,1063,1062],[1047,1046,1060,1,1050,1049,1063],[1046,1045,1060,1,1049,1048,1063],[1060,1045,1033,1,1063,1048,1036],[1045,1034,1033,1,1048,1037,1036],[1036,1034,1045,1,1039,1037,1048],[1060,1033,1059,1,1063,1036,1062],[1033,1029,1059,1,1036,1032,1062],[1033,1030,1029,1,1036,1033,1032],[1059,1029,1027,1,1062,1032,1030],[1059,1027,1058,1,1062,1030,1061],[1058,1027,1061,1,1061,1030,1064],[1027,976,1061,1,1030,979,1064],[1061,976,1062,1,1064,979,1065],[976,975,1062,1,979,978,1065],[1062,975,1063,1,1065,978,1066],[975,1064,1063,1,978,1067,1066],[975,974,1064,1,978,977,1067],[974,973,1064,1,977,976,1067],[1064,973,972,1,1067,976,975],[1063,1064,972,1,1066,1067,975],[1063,972,573,1,1066,975,576],[573,972,1065,1,576,975,1068],[972,970,1065,1,975,973,1068],[1065,970,969,1,1068,973,972],[1065,969,1066,1,1068,972,1069],[1066,969,1067,1,1069,972,1070],[969,1068,1067,1,972,1071,1070],[969,560,1068,1,972,563,1071],[560,561,1068,1,563,564,1071],[1068,561,562,1,1071,564,565],[1067,1068,562,1,1070,1071,565],[1067,562,1069,1,1070,565,1072],[562,563,1069,1,565,566,1072],[563,564,1069,1,566,567,1072],[1069,564,567,1,1072,567,570],[564,566,567,1,567,569,570],[564,565,566,1,567,568,569],[568,1069,567,1,571,1072,570],[568,1070,1069,1,571,1073,1072],[569,1070,568,1,572,1073,571],[569,570,1070,1,572,573,1073],[570,1066,1070,1,573,1069,1073],[570,571,1066,1,573,574,1069],[571,1065,1066,1,574,1068,1069],[571,573,1065,1,574,576,1068],[1066,1067,1070,1,1069,1070,1073],[1067,1069,1070,1,1070,1072,1073],[574,1063,573,1,577,1066,576],[1062,1063,574,1,1065,1066,577],[575,1062,574,1,578,1065,577],[1061,1062,575,1,1064,1065,578],[1071,1061,575,1,1074,1064,578],[1058,1061,1071,1,1061,1064,1074],[1057,1058,1071,1,1060,1061,1074],[1072,1057,1071,1,1075,1060,1074],[1072,1055,1057,1,1075,1058,1060],[579,1055,1072,1,582,1058,1075],[579,1054,1055,1,582,1057,1058],[580,1054,579,1,583,1057,582],[604,1054,580,1,607,1057,583],[582,604,580,1,585,607,583],[579,1072,577,1,582,1075,580],[577,1072,575,1,580,1075,578],[1072,1071,575,1,1075,1074,578],[1055,1056,1057,1,1058,1059,1060],[1049,1002,1003,1,1052,1005,1006],[1049,1003,1041,1,1052,1006,1044],[908,909,985,1,911,912,988],[985,909,910,1,988,912,913],[985,910,983,1,988,913,986],[983,910,911,1,986,913,914],[983,911,981,1,986,914,984],[981,911,978,1,984,914,981],[978,911,912,1,981,914,915],[915,916,971,1,918,919,974],[559,560,968,1,1076,1076,1076],[918,919,922,1,921,922,925],[919,920,922,1,922,923,925],[920,921,922,1,923,924,925],[942,943,949,1,945,946,952],[945,937,1073,1,948,940,1077],[1073,937,935,1,1077,940,938],[931,932,936,1,934,935,939],[936,932,933,1,939,935,936],[934,707,1074,1,937,710,1078],[1074,707,706,1,1078,710,709],[1074,706,1075,1,1079,1079,1079],[1075,706,705,1,1080,709,708],[1076,1075,705,1,1081,1080,708],[705,934,1076,1,708,937,1081],[705,703,934,1,708,706,937],[705,704,703,1,708,707,706],[934,703,701,1,937,706,704],[934,701,1077,1,937,704,1082],[1078,1077,701,1,1083,1082,704],[1078,1079,1077,1,1083,1084,1082],[1080,1079,1078,1,1085,1084,1083],[1080,1078,1081,1,1085,1083,1086],[1081,1078,700,1,1086,1083,703],[1078,701,700,1,1083,704,703],[1081,700,1082,1,1086,703,1087],[1082,700,699,1,1087,703,702],[1083,1082,699,1,1088,1087,702],[1081,1082,1083,1,1086,1087,1088],[1084,1081,1083,1,1089,1086,1088],[1084,1080,1081,1,1089,1085,1086],[1085,1080,1084,1,1090,1085,1089],[1086,1085,1084,1,1091,1090,1089],[557,1085,1086,1,560,1090,1091],[557,1086,1087,1,560,1091,1092],[1086,1084,1087,1,1091,1089,1092],[1084,1083,1087,1,1089,1088,1092],[1087,1083,551,1,1092,1088,554],[1083,1088,551,1,1088,1093,554],[1083,699,1088,1,1088,702,1093],[548,1088,699,1,551,1093,702],[551,1088,548,1,554,1093,551],[548,699,546,1,551,702,549],[546,699,695,1,549,702,698],[546,695,545,1,549,698,548],[1087,551,552,1,1092,554,555],[556,1087,552,1,559,1092,555],[556,557,1087,1,559,560,1092],[556,552,554,1,559,555,557],[1079,934,1077,1,1084,937,1082],[777,778,783,1,780,781,786],[784,848,849,1,787,851,852],[848,784,785,1,851,787,788],[785,794,848,1,788,797,851],[870,863,868,1,873,866,871],[863,864,868,1,866,867,871],[868,864,865,1,871,867,868],[837,829,830,1,840,832,833],[716,714,819,1,719,717,822],[716,819,816,1,719,822,819],[815,716,816,1,818,719,819],[807,716,815,1,810,719,818],[738,1089,767,1,741,1094,770],[1091,1089,1090,1,1095,1094,1096],[1092,1089,1091,1,1097,1094,1095],[1093,1089,1092,1,1098,1094,1097],[767,1089,1093,1,770,1094,1098],[764,767,1093,1,767,770,1098],[764,1093,760,1,767,1098,763],[760,1093,1094,1,763,1098,1099],[1094,1093,1092,1,1099,1098,1097],[753,1094,1092,1,756,1099,1097],[755,1094,753,1,758,1099,756],[755,757,1094,1,758,760,1099],[760,1094,757,1,763,1099,760],[753,1092,752,1,756,1097,755],[752,1092,1091,1,755,1097,1095],[752,1091,1095,1,755,1095,1100],[1095,1091,1090,1,1100,1095,1096],[1095,1090,1096,1,1100,1096,1101],[1096,1090,738,1,1101,1096,741],[739,1096,738,1,742,1101,741],[1097,1096,739,1,1102,1101,742],[1097,1095,1096,1,1102,1100,1101],[749,1095,1097,1,752,1100,1102],[750,1095,749,1,753,1100,752],[750,752,1095,1,753,755,1100],[749,1097,747,1,752,1102,750],[1097,1098,747,1,1102,1103,750],[1097,740,1098,1,1102,743,1103],[739,740,1097,1,742,743,1102],[1098,740,741,1,1103,743,744],[1098,741,1099,1,1103,744,1104],[1099,741,742,1,1104,744,745],[1099,742,745,1,1104,745,748],[745,747,1099,1,748,750,1104],[1098,1099,747,1,1103,1104,750],[762,764,760,1,765,767,763],[688,689,734,1,691,692,737],[734,689,1100,1,737,692,1105],[1100,689,1101,1,1105,692,1106],[1101,689,690,1,1106,692,693],[1101,690,708,1,1106,693,711],[710,1101,708,1,713,1106,711],[713,1101,710,1,716,1106,713],[713,1102,1101,1,716,1107,1106],[715,1102,713,1,718,1107,716],[715,718,1102,1,718,721,1107],[718,1100,1102,1,721,1105,1107],[1103,1100,718,1,1108,1105,721],[1104,1100,1103,1,1109,1105,1108],[1104,734,1100,1,1109,737,1105],[732,734,1104,1,735,737,1109],[732,1104,731,1,735,1109,734],[721,731,1104,1,724,734,1109],[723,731,721,1,726,734,724],[727,731,723,1,730,734,726],[721,1104,1103,1,724,1109,1108],[721,1103,719,1,724,1108,722],[719,1103,718,1,722,1108,721],[1100,1101,1102,1,1105,1106,1107],[686,628,630,1,689,631,633],[1105,686,630,1,1110,689,633],[1106,686,1105,1,1111,689,1110],[1106,1107,686,1,1111,1112,689],[1108,1107,1106,1,1113,1112,1111],[1107,1108,1109,1,1112,1113,1114],[1109,1108,643,1,1114,1113,646],[1108,642,643,1,1113,645,646],[642,1108,1106,1,645,1113,1111],[642,1106,1110,1,645,1111,1115],[1110,1106,1105,1,1115,1111,1110],[1110,1105,1111,1,1115,1110,1116],[1111,1105,633,1,1116,1110,636],[1105,630,633,1,1110,633,636],[630,632,633,1,633,635,636],[637,1111,633,1,640,1116,636],[637,1110,1111,1,640,1115,1116],[639,1110,637,1,642,1115,640],[639,642,1110,1,642,645,1115],[637,633,634,1,640,636,637],[643,685,1109,1,646,688,1114],[685,643,645,1,688,646,648],[1109,685,1107,1,1114,688,1112],[685,686,1107,1,688,689,1112],[649,650,680,1,652,653,683],[680,650,679,1,683,653,682],[650,651,679,1,653,654,682],[651,666,679,1,654,669,682],[652,666,651,1,655,669,654],[668,676,667,1,671,679,670],[676,668,673,1,679,671,676],[668,669,673,1,671,672,676],[542,544,661,1,545,547,664],[542,661,660,1,545,664,663],[542,660,540,1,545,663,543],[540,660,538,1,543,663,541],[534,535,533,1,537,538,536],[498,644,1112,1,533,647,1117],[1112,644,641,1,1117,647,644],[1112,641,1113,1,1117,644,1118],[641,640,1113,1,644,643,1118],[1114,1113,640,1,1119,1118,643],[1112,1113,1114,1,1117,1118,1119],[1115,1112,1114,1,1120,1117,1119],[1116,1112,1115,1,1121,1117,1120],[1117,1112,1116,1,1122,1117,1121],[1117,498,1112,1,1122,533,1117],[497,498,1117,1,532,533,1122],[497,1117,1118,1,532,1122,1123],[1118,1117,1116,1,1123,1122,1121],[1118,1116,1119,1,1123,1121,1124],[1119,1116,1120,1,1124,1121,1125],[1120,1116,1121,1,1125,1121,1126],[1116,1122,1121,1,1121,1127,1126],[1116,1115,1122,1,1121,1120,1127],[1115,1123,1122,1,1120,1128,1127],[1123,1115,1124,1,1128,1120,1129],[1115,1114,1124,1,1120,1119,1129],[1124,1114,1125,1,1129,1119,1130],[1125,1114,1126,1,1130,1119,1131],[1114,640,1126,1,1119,643,1131],[1126,640,638,1,1131,643,641],[1126,638,1125,1,1131,641,1130],[1125,638,1127,1,1130,641,1132],[1127,638,1128,1,1132,641,1133],[638,636,1128,1,641,639,1133],[636,635,1128,1,639,638,1133],[1128,635,1129,1,1133,638,1134],[635,1130,1129,1,638,1135,1134],[635,629,1130,1,638,632,1135],[635,631,629,1,638,634,632],[1130,629,627,1,1135,632,630],[1130,627,624,1,1135,630,627],[1131,1130,624,1,1136,1135,627],[1131,1132,1130,1,1136,1137,1135],[1131,1133,1132,1,1136,1138,1137],[1131,1122,1133,1,1136,1127,1138],[1122,1131,1121,1,1127,1136,1126],[1131,624,1121,1,1136,627,1126],[1121,624,622,1,1126,627,625],[1121,622,1134,1,1126,625,1139],[1134,622,620,1,1139,625,623],[1120,1121,1134,1,1125,1126,1139],[1122,1135,1133,1,1127,1140,1138],[1136,1135,1122,1,1141,1140,1127],[1135,1136,1137,1,1140,1141,1142],[1137,1136,1138,1,1142,1141,1143],[1123,1138,1136,1,1128,1143,1141],[1123,1139,1138,1,1128,1144,1143],[1124,1139,1123,1,1129,1144,1128],[1139,1124,1125,1,1144,1129,1130],[1125,1140,1139,1,1130,1145,1144],[1125,1127,1140,1,1130,1132,1145],[1127,1128,1140,1,1132,1133,1145],[1128,1141,1140,1,1133,1146,1145],[1129,1141,1128,1,1134,1146,1133],[1141,1129,1142,1,1146,1134,1147],[1129,1132,1142,1,1134,1137,1147],[1129,1130,1132,1,1134,1135,1137],[1133,1142,1132,1,1138,1147,1137],[1135,1142,1133,1,1140,1147,1138],[1135,1137,1142,1,1140,1142,1147],[1141,1142,1137,1,1146,1147,1142],[1138,1141,1137,1,1143,1146,1142],[1139,1141,1138,1,1144,1146,1143],[1139,1140,1141,1,1144,1145,1146],[1123,1136,1122,1,1128,1141,1127],[1143,1118,1119,1,1148,1123,1124],[1143,1144,1118,1,1148,1149,1123],[491,1144,1143,1,526,1149,1148],[491,492,1144,1,526,527,1149],[492,493,1144,1,527,528,1149],[1144,493,494,1,1149,528,529],[1144,494,497,1,1149,529,532],[1144,497,1118,1,1149,532,1123],[412,413,530,1,396,460,438],[1043,1039,1044,2,1046,1042,1047],[1090,1089,738,2,1096,1094,741],[1148,1149,1150,0,1150,1151,1152],[1148,1151,1149,0,1150,1153,1151],[1151,1148,1152,0,1153,1150,1154],[1152,1153,1151,0,1154,1155,1153],[1155,1156,1154,0,1156,1157,1158],[1157,1156,1155,0,1159,1157,1156],[1157,1158,1156,0,1159,1160,1157],[1159,1158,1157,0,1161,1160,1159],[1160,1158,1159,0,1162,1160,1161],[1160,1161,1158,0,1162,1163,1160],[1160,1162,1161,0,1162,1164,1163],[1163,1162,1160,0,1165,1164,1162],[1163,1164,1162,0,1165,1166,1164],[1165,1164,1163,0,1167,1166,1165],[1166,1164,1165,0,1168,1166,1167],[1166,1167,1164,0,1168,1169,1166],[1166,1168,1167,0,1168,1170,1169],[1169,1168,1166,0,1171,1170,1168],[1169,1170,1168,0,1171,1172,1170],[1171,1170,1169,0,1173,1172,1171],[1171,1172,1170,0,1173,1174,1172],[1173,1172,1171,0,1175,1174,1173],[1174,1172,1173,0,1176,1174,1175],[1174,1175,1172,0,1176,1177,1174],[1176,1175,1174,0,1178,1177,1176],[1176,1177,1175,0,1178,1179,1177],[1178,1177,1176,0,1180,1179,1178],[1178,1179,1177,0,1180,1181,1179],[1180,1179,1178,0,1182,1181,1180],[1180,1181,1179,0,1182,1183,1181],[1182,1181,1180,0,1184,1183,1182],[1181,1182,1183,0,1183,1184,1185],[1183,1182,1184,0,1185,1184,1186],[1182,1185,1184,0,1184,1187,1186],[1186,1185,1182,0,1188,1187,1184],[1186,1187,1185,0,1188,1189,1187],[1186,1188,1187,0,1188,1190,1189],[1189,1188,1186,0,1191,1190,1188],[1189,1190,1188,0,1191,1192,1190],[1189,1191,1190,0,1191,1193,1192],[1192,1191,1189,0,1194,1193,1191],[1192,1193,1191,0,1194,1195,1193],[1194,1193,1192,0,1196,1195,1194],[1195,1193,1194,0,1197,1195,1196],[1195,1196,1193,0,1197,1198,1195],[1197,1196,1195,0,1199,1198,1197],[1197,1198,1196,0,1199,1200,1198],[1197,1199,1198,0,1199,1201,1200],[1197,1200,1199,0,1199,1202,1201],[1201,1200,1197,0,1203,1202,1199],[1202,1200,1201,0,1204,1202,1203],[1200,1202,1203,0,1202,1204,1205],[1202,1204,1203,0,1204,1206,1205],[1205,1204,1202,0,1207,1206,1204],[1205,1206,1204,0,1207,1208,1206],[1207,1206,1205,0,1209,1208,1207],[1207,1208,1206,0,1209,1210,1208],[1207,1209,1208,0,1209,1211,1210],[1210,1209,1207,0,1212,1211,1209],[1211,1209,1210,0,1213,1211,1212],[1211,1212,1209,0,1213,1214,1211],[1213,1212,1211,0,1215,1214,1213],[1214,1212,1213,0,1216,1214,1215],[1214,1215,1212,0,1216,1217,1214],[1214,1216,1215,0,1216,1218,1217],[1217,1216,1214,0,1219,1218,1216],[1218,1216,1217,0,1220,1218,1219],[1218,1219,1216,0,1220,1221,1218],[1220,1219,1218,0,1222,1221,1220],[1220,1221,1219,0,1222,1223,1221],[1220,1222,1221,0,1222,1224,1223],[1220,1223,1222,0,1222,1225,1224],[1224,1223,1220,0,1226,1225,1222],[1224,1225,1223,0,1226,1227,1225],[1224,1226,1225,0,1226,1228,1227],[1227,1226,1224,0,1229,1228,1226],[1227,1228,1226,0,1229,1230,1228],[1229,1228,1227,0,1231,1230,1229],[1229,1230,1228,0,1231,1232,1230],[1229,1231,1230,0,1231,1233,1232],[1229,1232,1231,0,1231,1234,1233],[1233,1232,1229,0,1235,1234,1231],[1234,1232,1233,0,1236,1234,1235],[1234,1235,1232,0,1236,1237,1234],[1234,1236,1235,0,1236,1238,1237],[1234,1237,1236,0,1236,1239,1238],[1237,1234,1238,0,1239,1236,1240],[1239,1238,1234,0,1241,1240,1236],[1238,1239,1240,0,1240,1241,1242],[1239,1241,1240,0,1241,1243,1242],[1239,1234,1241,0,1241,1236,1243],[1241,1234,1233,0,1243,1236,1235],[1241,1233,1229,0,1243,1235,1231],[1241,1229,1242,0,1243,1231,1244],[1242,1229,1227,0,1244,1231,1229],[1242,1227,1243,0,1244,1229,1245],[1243,1227,1244,0,1245,1229,1246],[1227,1245,1244,0,1229,1247,1246],[1227,1224,1245,0,1229,1226,1247],[1245,1224,1220,0,1247,1226,1222],[1245,1220,1246,0,1247,1222,1248],[1220,1218,1246,0,1222,1220,1248],[1246,1218,1217,0,1248,1220,1219],[1246,1217,1247,0,1248,1219,1249],[1247,1217,1214,0,1249,1219,1216],[1247,1214,1248,0,1249,1216,1250],[1248,1214,1249,0,1250,1216,1251],[1249,1214,1213,0,1251,1216,1215],[1249,1213,1211,0,1251,1215,1213],[1250,1249,1211,0,1252,1251,1213],[1250,1251,1249,0,1252,1253,1251],[1252,1251,1250,0,1254,1253,1252],[1253,1251,1252,0,1255,1253,1254],[1253,1254,1251,0,1255,1256,1253],[1253,1255,1254,0,1255,1257,1256],[1256,1255,1253,0,1258,1257,1255],[1256,1257,1255,0,1258,1259,1257],[1232,1257,1256,0,1260,1260,1260],[1235,1257,1232,0,1237,1259,1234],[1235,1236,1257,0,1237,1238,1259],[1257,1236,1258,0,1259,1238,1261],[1236,1259,1258,0,1238,1262,1261],[1236,1260,1259,0,1238,1263,1262],[1236,1261,1260,0,1238,1264,1263],[1237,1261,1236,0,1239,1264,1238],[1261,1237,1238,0,1264,1239,1240],[1261,1238,1262,0,1264,1240,1265],[1262,1238,1263,0,1265,1240,1266],[1238,1240,1263,0,1240,1242,1266],[1240,1264,1263,0,1242,1267,1266],[1264,1240,1265,0,1267,1242,1268],[1240,1266,1265,0,1242,1269,1268],[1240,1267,1266,0,1242,1270,1269],[1240,1241,1267,0,1242,1243,1270],[1241,1243,1267,0,1243,1245,1270],[1241,1242,1243,0,1243,1244,1245],[1267,1243,1268,0,1270,1245,1271],[1268,1243,1269,0,1271,1245,1272],[1243,1244,1269,0,1245,1246,1272],[1244,1245,1269,0,1246,1247,1272],[1245,1246,1269,0,1247,1248,1272],[1269,1246,1247,0,1272,1248,1249],[1269,1247,1270,0,1272,1249,1273],[1270,1247,1248,0,1273,1249,1250],[1270,1248,1271,0,1273,1250,1274],[1271,1248,1251,0,1274,1250,1253],[1251,1248,1249,0,1253,1250,1251],[1272,1271,1251,0,1275,1274,1253],[1272,1270,1271,0,1275,1273,1274],[1273,1270,1272,0,1276,1273,1275],[1273,1269,1270,0,1276,1272,1273],[1268,1269,1273,0,1271,1272,1276],[1268,1273,1274,0,1271,1276,1277],[1274,1273,1272,0,1277,1276,1275],[1274,1272,1275,0,1277,1275,1278],[1255,1275,1272,0,1257,1278,1275],[1275,1255,1276,0,1278,1257,1279],[1255,1277,1276,0,1257,1280,1279],[1255,1257,1277,0,1257,1259,1280],[1278,1277,1257,0,1281,1280,1259],[1277,1278,1276,0,1280,1281,1279],[1278,1279,1276,0,1281,1282,1279],[1278,1280,1279,0,1281,1283,1282],[1281,1280,1278,0,1284,1283,1281],[1282,1280,1281,0,1285,1283,1284],[1282,1283,1280,0,1285,1286,1283],[1280,1283,1284,0,1283,1286,1287],[1285,1280,1284,0,1288,1283,1287],[1286,1280,1285,0,1289,1283,1288],[1286,1279,1280,0,1289,1282,1283],[1276,1279,1286,0,1279,1282,1289],[1287,1276,1286,0,1290,1279,1289],[1275,1276,1287,0,1278,1279,1290],[1274,1275,1287,0,1277,1278,1290],[1265,1274,1287,0,1268,1277,1290],[1265,1266,1274,0,1268,1269,1277],[1266,1268,1274,0,1269,1271,1277],[1266,1267,1268,0,1269,1270,1271],[1265,1287,1264,0,1268,1290,1267],[1287,1286,1264,0,1290,1289,1267],[1264,1286,1288,0,1267,1289,1291],[1286,1285,1288,0,1289,1288,1291],[1288,1285,1284,0,1291,1288,1287],[1288,1284,1289,0,1291,1287,1292],[1288,1289,1290,0,1291,1292,1293],[1291,1288,1290,0,1294,1291,1293],[1263,1288,1291,0,1266,1291,1294],[1263,1264,1288,0,1266,1267,1291],[1262,1263,1291,0,1265,1266,1294],[1292,1262,1291,0,1295,1265,1294],[1261,1262,1292,0,1264,1265,1295],[1293,1261,1292,0,1296,1264,1295],[1261,1293,1260,0,1264,1296,1263],[1260,1293,1294,0,1263,1296,1297],[1260,1294,1259,0,1263,1297,1262],[1259,1294,1295,0,1262,1297,1298],[1295,1281,1259,0,1298,1284,1262],[1295,1282,1281,0,1298,1285,1284],[1259,1281,1278,0,1262,1284,1281],[1259,1278,1258,0,1262,1281,1261],[1258,1278,1257,0,1261,1281,1259],[1291,1290,1292,0,1294,1293,1295],[1255,1272,1254,0,1257,1275,1256],[1272,1251,1254,0,1275,1253,1256],[1232,1256,1253,0,1234,1258,1255],[1253,1231,1232,0,1255,1233,1234],[1231,1253,1230,0,1233,1255,1232],[1230,1253,1252,0,1232,1255,1254],[1252,1250,1230,0,1254,1252,1232],[1230,1250,1296,0,1232,1252,1299],[1296,1250,1211,0,1299,1252,1213],[1296,1211,1297,0,1299,1213,1300],[1297,1211,1210,0,1300,1213,1212],[1297,1210,1225,0,1300,1212,1227],[1225,1210,1298,0,1227,1212,1301],[1210,1299,1298,0,1212,1302,1301],[1210,1207,1299,0,1212,1209,1302],[1299,1207,1205,0,1302,1209,1207],[1299,1205,1300,0,1302,1207,1303],[1205,1202,1300,0,1207,1204,1303],[1202,1301,1300,0,1204,1304,1303],[1301,1202,1201,0,1304,1204,1203],[1301,1201,1302,0,1304,1203,1305],[1302,1201,1303,0,1305,1203,1306],[1201,1197,1303,0,1203,1199,1306],[1303,1197,1195,0,1306,1199,1197],[1303,1195,1304,0,1306,1197,1307],[1304,1195,1305,0,1307,1197,1308],[1195,1306,1305,0,1197,1309,1308],[1195,1194,1306,0,1197,1196,1309],[1194,1192,1306,0,1196,1194,1309],[1306,1192,1189,0,1309,1194,1191],[1307,1306,1189,0,1310,1309,1191],[1305,1306,1307,0,1308,1309,1310],[1305,1307,1308,0,1308,1310,1311],[1308,1307,1309,0,1311,1310,1312],[1307,1189,1309,0,1310,1191,1312],[1309,1189,1310,0,1312,1191,1313],[1189,1311,1310,0,1191,1314,1313],[1189,1186,1311,0,1191,1188,1314],[1186,1312,1311,0,1188,1315,1314],[1313,1312,1186,0,1316,1315,1188],[1313,1314,1312,0,1316,1317,1315],[1315,1314,1313,0,1318,1317,1316],[1315,1316,1314,0,1318,1319,1317],[1317,1316,1315,0,1320,1319,1318],[1317,1318,1316,0,1320,1321,1319],[1317,1309,1318,0,1320,1312,1321],[1308,1309,1317,0,1311,1312,1320],[1308,1317,1319,0,1311,1320,1322],[1319,1317,1320,0,1322,1320,1323],[1317,1321,1320,0,1320,1324,1323],[1317,1315,1321,0,1320,1318,1324],[1315,1322,1321,0,1318,1325,1324],[1323,1322,1315,0,1326,1325,1318],[1323,1324,1322,0,1326,1327,1325],[1325,1324,1323,0,1328,1327,1326],[1325,1326,1324,0,1328,1329,1327],[1327,1326,1325,0,1330,1329,1328],[1327,1328,1326,0,1330,1331,1329],[1327,1319,1328,0,1330,1322,1331],[1329,1319,1327,0,1332,1322,1330],[1308,1319,1329,0,1311,1322,1332],[1330,1308,1329,0,1333,1311,1332],[1331,1308,1330,0,1334,1311,1333],[1331,1304,1308,0,1334,1307,1311],[1332,1304,1331,0,1335,1307,1334],[1332,1303,1304,0,1335,1306,1307],[1302,1303,1332,0,1305,1306,1335],[1333,1302,1332,0,1336,1305,1335],[1301,1302,1333,0,1304,1305,1336],[1334,1301,1333,0,1337,1304,1336],[1335,1301,1334,0,1338,1304,1337],[1335,1300,1301,0,1338,1303,1304],[1336,1300,1335,0,1339,1303,1338],[1336,1299,1300,0,1339,1302,1303],[1298,1299,1336,0,1301,1302,1339],[1222,1298,1336,0,1224,1301,1339],[1225,1298,1222,0,1227,1301,1224],[1223,1225,1222,0,1225,1227,1224],[1222,1336,1337,0,1224,1339,1340],[1337,1336,1335,0,1340,1339,1338],[1337,1335,1338,0,1340,1338,1341],[1335,1334,1338,0,1338,1337,1341],[1338,1334,1339,0,1341,1337,1342],[1339,1334,1340,0,1342,1337,1343],[1334,1333,1340,0,1337,1336,1343],[1340,1333,1341,0,1343,1336,1344],[1333,1342,1341,0,1336,1345,1344],[1333,1332,1342,0,1336,1335,1345],[1342,1332,1331,0,1345,1335,1334],[1342,1331,1343,0,1345,1334,1346],[1343,1331,1330,0,1346,1334,1333],[1343,1330,1344,0,1346,1333,1347],[1344,1330,1329,0,1347,1333,1332],[1344,1329,1327,0,1347,1332,1330],[1327,1345,1344,0,1330,1348,1347],[1327,1325,1345,0,1330,1328,1348],[1325,1323,1345,0,1328,1326,1348],[1345,1323,1346,0,1348,1326,1349],[1323,1315,1346,0,1326,1318,1349],[1315,1313,1346,0,1318,1316,1349],[1346,1313,1182,0,1349,1316,1184],[1182,1313,1186,0,1184,1316,1188],[1180,1346,1182,0,1182,1349,1184],[1347,1346,1180,0,1350,1349,1182],[1345,1346,1347,0,1348,1349,1350],[1345,1347,1348,0,1348,1350,1351],[1348,1347,1349,0,1351,1350,1352],[1349,1347,1350,0,1352,1350,1353],[1350,1347,1178,0,1353,1350,1180],[1178,1347,1180,0,1180,1350,1182],[1176,1350,1178,0,1178,1353,1180],[1351,1350,1176,0,1354,1353,1178],[1352,1350,1351,0,1355,1353,1354],[1349,1350,1352,0,1352,1353,1355],[1340,1349,1352,0,1343,1352,1355],[1340,1341,1349,0,1343,1344,1352],[1341,1348,1349,0,1344,1351,1352],[1343,1348,1341,0,1346,1351,1344],[1343,1345,1348,0,1346,1348,1351],[1344,1345,1343,0,1347,1348,1346],[1341,1342,1343,0,1344,1345,1346],[1339,1340,1352,0,1342,1343,1355],[1339,1352,1353,0,1342,1355,1356],[1354,1353,1352,0,1357,1356,1355],[1353,1354,1355,0,1356,1357,1358],[1355,1354,1356,0,1358,1357,1359],[1356,1354,1357,0,1359,1357,1360],[1354,1351,1357,0,1357,1354,1360],[1354,1352,1351,0,1357,1355,1354],[1357,1351,1176,0,1360,1354,1178],[1357,1176,1358,0,1360,1178,1361],[1358,1176,1359,0,1361,1178,1362],[1359,1176,1174,0,1362,1178,1176],[1359,1174,1360,0,1362,1176,1363],[1360,1174,1173,0,1363,1176,1175],[1203,1360,1173,0,1205,1363,1175],[1203,1204,1360,0,1205,1206,1363],[1358,1360,1204,0,1361,1363,1206],[1358,1359,1360,0,1361,1362,1363],[1358,1204,1206,0,1361,1206,1208],[1361,1358,1206,0,1364,1361,1208],[1357,1358,1361,0,1360,1361,1364],[1356,1357,1361,0,1359,1360,1364],[1362,1356,1361,0,1365,1359,1364],[1363,1356,1362,0,1366,1359,1365],[1363,1355,1356,0,1366,1358,1359],[1364,1355,1363,0,1367,1358,1366],[1364,1365,1355,0,1367,1368,1358],[1364,1366,1365,0,1367,1369,1368],[1219,1366,1364,0,1221,1369,1367],[1221,1366,1219,0,1223,1369,1221],[1221,1337,1366,0,1223,1340,1369],[1221,1222,1337,0,1223,1224,1340],[1337,1338,1366,0,1340,1341,1369],[1338,1365,1366,0,1341,1368,1369],[1338,1339,1365,0,1341,1342,1368],[1339,1353,1365,0,1342,1356,1368],[1365,1353,1355,0,1368,1356,1358],[1219,1364,1216,0,1221,1367,1218],[1216,1364,1363,0,1218,1367,1366],[1216,1363,1215,0,1218,1366,1217],[1215,1363,1362,0,1217,1366,1365],[1215,1362,1212,0,1217,1365,1214],[1212,1362,1208,0,1214,1365,1210],[1362,1361,1208,0,1365,1364,1210],[1208,1361,1206,0,1210,1364,1208],[1212,1208,1209,0,1214,1210,1211],[1203,1173,1367,0,1205,1175,1370],[1367,1173,1171,0,1370,1175,1173],[1367,1171,1368,0,1370,1173,1371],[1368,1171,1169,0,1371,1173,1171],[1368,1169,1369,0,1371,1171,1372],[1369,1169,1166,0,1372,1171,1168],[1369,1166,1370,0,1372,1168,1373],[1370,1166,1165,0,1373,1168,1167],[1371,1370,1165,0,1374,1373,1167],[1372,1370,1371,0,1375,1373,1374],[1372,1369,1370,0,1375,1372,1373],[1368,1369,1372,0,1371,1372,1375],[1373,1368,1372,0,1376,1371,1375],[1367,1368,1373,0,1370,1371,1376],[1374,1367,1373,0,1377,1370,1376],[1203,1367,1374,0,1205,1370,1377],[1203,1374,1199,0,1205,1377,1201],[1199,1374,1375,0,1201,1377,1378],[1374,1376,1375,0,1377,1379,1378],[1374,1373,1376,0,1377,1376,1379],[1376,1373,1372,0,1379,1376,1375],[1372,1377,1376,0,1375,1380,1379],[1371,1377,1372,0,1374,1380,1375],[1377,1371,1378,0,1380,1374,1381],[1378,1371,1379,0,1381,1374,1382],[1371,1380,1379,0,1374,1383,1382],[1371,1165,1380,0,1374,1167,1383],[1380,1165,1163,0,1383,1167,1165],[1380,1163,1381,0,1383,1165,1384],[1381,1163,1160,0,1384,1165,1162],[1381,1160,1382,0,1384,1162,1385],[1382,1160,1383,0,1385,1162,1386],[1383,1160,1159,0,1386,1162,1161],[1383,1159,1157,0,1386,1161,1159],[1383,1157,1384,0,1386,1159,1387],[1384,1157,1155,0,1387,1159,1156],[1384,1155,1385,0,1387,1156,1388],[1386,1152,1387,0,1389,1154,1390],[1152,1148,1387,0,1154,1150,1390],[1387,1148,1388,0,1390,1150,1391],[1388,1148,1150,0,1391,1150,1152],[1389,1149,1390,0,1392,1151,1393],[1149,1392,1391,0,1151,1394,1395],[1151,1392,1149,0,1153,1394,1151],[1393,1392,1151,0,1396,1394,1153],[1154,1156,1395,0,1158,1157,1397],[1156,1396,1395,0,1157,1398,1397],[1158,1396,1156,0,1160,1398,1157],[1158,1397,1396,0,1160,1399,1398],[1158,1398,1397,0,1160,1400,1399],[1161,1398,1158,0,1163,1400,1160],[1399,1398,1161,0,1401,1400,1163],[1399,1400,1398,0,1401,1402,1400],[1401,1400,1399,0,1403,1402,1401],[1402,1400,1401,0,1404,1402,1403],[1402,1403,1400,0,1404,1405,1402],[1402,1404,1403,0,1404,1406,1405],[1405,1404,1402,0,1407,1406,1404],[1405,1406,1404,0,1407,1408,1406],[1407,1406,1405,0,1409,1408,1407],[1407,1408,1406,0,1409,1410,1408],[1408,1407,1409,0,1410,1409,1411],[1407,1410,1409,0,1409,1412,1411],[1407,1411,1410,0,1409,1413,1412],[1407,1405,1411,0,1409,1407,1413],[1405,1402,1411,0,1407,1404,1413],[1411,1402,1401,0,1413,1404,1403],[1412,1411,1401,0,1414,1413,1403],[1412,1410,1411,0,1414,1412,1413],[1412,1413,1410,0,1414,1415,1412],[1414,1413,1412,0,1416,1415,1414],[1167,1413,1414,0,1169,1415,1416],[1415,1413,1167,0,1417,1415,1169],[1416,1413,1415,0,1418,1415,1417],[1416,1410,1413,0,1418,1412,1415],[1416,1409,1410,0,1418,1411,1412],[1417,1409,1416,0,1419,1411,1418],[1417,1379,1409,0,1419,1382,1411],[1378,1379,1417,0,1381,1382,1419],[1378,1417,1418,0,1381,1419,1420],[1417,1419,1418,0,1419,1421,1420],[1420,1419,1417,0,1422,1421,1419],[1183,1419,1420,0,1185,1421,1422],[1183,1184,1419,0,1185,1186,1421],[1184,1421,1419,0,1186,1423,1421],[1184,1422,1421,0,1186,1424,1423],[1184,1185,1422,0,1186,1187,1424],[1185,1423,1422,0,1187,1425,1424],[1185,1187,1423,0,1187,1189,1425],[1187,1424,1423,0,1189,1426,1425],[1187,1425,1424,0,1189,1427,1426],[1187,1426,1425,0,1189,1428,1427],[1187,1188,1426,0,1189,1190,1428],[1188,1427,1426,0,1190,1429,1428],[1190,1427,1188,0,1192,1429,1190],[1190,1428,1427,0,1192,1430,1429],[1191,1428,1190,0,1193,1430,1192],[1191,1429,1428,0,1193,1431,1430],[1191,1193,1429,0,1193,1195,1431],[1193,1430,1429,0,1195,1432,1431],[1431,1430,1193,0,1433,1432,1195],[1431,1432,1430,0,1433,1434,1432],[1198,1432,1431,0,1200,1434,1433],[1198,1433,1432,0,1200,1435,1434],[1375,1433,1198,0,1378,1435,1200],[1376,1433,1375,0,1379,1435,1378],[1376,1377,1433,0,1379,1380,1435],[1377,1434,1433,0,1380,1436,1435],[1377,1418,1434,0,1380,1420,1436],[1378,1418,1377,0,1381,1420,1380],[1419,1434,1418,0,1421,1436,1420],[1419,1421,1434,0,1421,1423,1436],[1421,1435,1434,0,1423,1437,1436],[1421,1436,1435,0,1423,1438,1437],[1421,1422,1436,0,1423,1424,1438],[1437,1436,1422,0,1439,1438,1424],[1437,1438,1436,0,1439,1440,1438],[1437,1439,1438,0,1439,1441,1440],[1440,1439,1437,0,1442,1441,1439],[1440,1441,1439,0,1442,1443,1441],[1440,1442,1441,0,1442,1444,1443],[1443,1442,1440,0,1445,1444,1442],[1443,1444,1442,0,1445,1446,1444],[1443,1432,1444,0,1445,1434,1446],[1430,1432,1443,0,1432,1434,1445],[1430,1443,1429,0,1432,1445,1431],[1429,1443,1440,0,1431,1445,1442],[1429,1440,1437,0,1431,1442,1439],[1429,1437,1422,0,1431,1439,1424],[1429,1422,1445,0,1431,1424,1447],[1422,1423,1445,0,1424,1425,1447],[1445,1423,1446,0,1447,1425,1448],[1423,1424,1446,0,1425,1426,1448],[1446,1424,1447,0,1448,1426,1449],[1424,1448,1447,0,1426,1450,1449],[1425,1448,1424,0,1427,1450,1426],[1425,1449,1448,0,1427,1451,1450],[1425,1450,1449,0,1427,1452,1451],[1426,1450,1425,0,1428,1452,1427],[1451,1450,1426,0,1453,1452,1428],[1451,1452,1450,0,1453,1454,1452],[1453,1452,1451,0,1455,1454,1453],[1453,1454,1452,0,1455,1456,1454],[1455,1454,1453,0,1457,1456,1455],[1455,1456,1454,0,1457,1458,1456],[1455,1457,1456,0,1457,1459,1458],[1455,1458,1457,0,1457,1460,1459],[1455,1448,1458,0,1457,1450,1460],[1448,1455,1447,0,1450,1457,1449],[1447,1455,1453,0,1449,1457,1455],[1447,1453,1459,0,1449,1455,1461],[1459,1453,1451,0,1461,1455,1453],[1427,1459,1451,0,1429,1461,1453],[1428,1459,1427,0,1430,1461,1429],[1428,1446,1459,0,1430,1448,1461],[1445,1446,1428,0,1447,1448,1430],[1428,1429,1445,0,1430,1431,1447],[1459,1446,1447,0,1461,1448,1449],[1427,1451,1426,0,1429,1453,1428],[1448,1449,1458,0,1450,1451,1460],[1458,1449,1460,0,1460,1451,1462],[1449,1450,1460,0,1451,1452,1462],[1460,1450,1461,0,1462,1452,1463],[1452,1461,1450,0,1454,1463,1452],[1452,1462,1461,0,1454,1464,1463],[1452,1456,1462,0,1454,1458,1464],[1454,1456,1452,0,1456,1458,1454],[1462,1456,1463,0,1464,1458,1465],[1456,1464,1463,0,1458,1466,1465],[1465,1464,1456,0,1467,1466,1458],[1465,1466,1464,0,1467,1468,1466],[1467,1466,1465,0,1469,1468,1467],[1467,1468,1466,0,1469,1470,1468],[1467,1469,1468,0,1469,1471,1470],[1470,1469,1467,0,1472,1471,1469],[1471,1469,1470,0,1473,1471,1472],[1469,1471,1472,0,1471,1473,1474],[1472,1471,1473,0,1474,1473,1475],[1463,1473,1471,0,1465,1475,1473],[1464,1473,1463,0,1466,1475,1465],[1464,1474,1473,0,1466,1476,1475],[1466,1474,1464,0,1468,1476,1466],[1466,1475,1474,0,1468,1477,1476],[1466,1476,1475,0,1468,1478,1477],[1466,1468,1476,0,1468,1470,1478],[1468,1477,1476,0,1470,1479,1478],[1468,1478,1477,0,1470,1480,1479],[1468,1469,1478,0,1470,1471,1480],[1469,1472,1478,0,1471,1474,1480],[1478,1472,1477,0,1480,1474,1479],[1477,1472,1479,0,1479,1474,1481],[1473,1479,1472,0,1475,1481,1474],[1473,1480,1479,0,1475,1482,1481],[1481,1480,1473,0,1483,1482,1475],[1481,1482,1480,0,1483,1484,1482],[1475,1482,1481,0,1477,1484,1483],[1475,1483,1482,0,1477,1485,1484],[1475,1484,1483,0,1477,1486,1485],[1475,1485,1484,0,1477,1487,1486],[1475,1476,1485,0,1477,1478,1487],[1476,1486,1485,0,1478,1488,1487],[1476,1477,1486,0,1478,1479,1488],[1477,1479,1486,0,1479,1481,1488],[1479,1487,1486,0,1481,1489,1488],[1480,1487,1479,0,1482,1489,1481],[1480,1488,1487,0,1482,1490,1489],[1480,1489,1488,0,1482,1491,1490],[1482,1489,1480,0,1484,1491,1482],[1482,1490,1489,0,1484,1492,1491],[1483,1490,1482,0,1485,1492,1484],[1483,1491,1490,0,1485,1493,1492],[1483,1492,1491,0,1485,1494,1493],[1483,1484,1492,0,1485,1486,1494],[1493,1492,1484,0,1495,1494,1486],[1493,1494,1492,0,1495,1496,1494],[1493,1496,1495,0,1495,1497,1498],[1497,1496,1493,0,1499,1497,1495],[1498,1496,1497,0,1500,1497,1499],[1498,1499,1496,0,1500,1501,1497],[1498,1500,1499,0,1500,1502,1501],[1501,1500,1498,0,1503,1502,1500],[1501,1502,1500,0,1503,1504,1502],[1488,1502,1501,0,1490,1504,1503],[1488,1503,1502,0,1490,1505,1504],[1489,1503,1488,0,1491,1505,1490],[1507,1508,1506,0,1506,1507,1508],[1507,1509,1508,0,1506,1509,1507],[1507,1510,1509,0,1506,1510,1509],[1511,1510,1507,0,1511,1510,1506],[1495,1513,1510,0,1498,1512,1510],[1514,1513,1495,0,1513,1512,1498],[1515,1514,1516,0,1514,1513,1515],[1519,1516,1518,0,1516,1515,1517],[1521,1518,1522,0,1518,1517,1519],[1522,1518,1500,0,1519,1517,1502],[1496,1514,1495,0,1497,1513,1498],[1502,1522,1500,0,1504,1519,1502],[1503,1525,1502,0,1505,1520,1504],[1505,1508,1522,0,1521,1507,1519],[1506,1508,1505,0,1508,1507,1521],[1509,1521,1508,0,1509,1518,1507],[1509,1526,1521,0,1509,1522,1518],[1509,1513,1526,0,1509,1512,1522],[1510,1513,1509,0,1510,1512,1509],[1513,1515,1520,0,1512,1514,1523],[1490,1504,1489,0,1492,1524,1491],[1488,1501,1487,0,1490,1503,1489],[1487,1501,1498,0,1489,1503,1500],[1486,1487,1498,0,1488,1489,1500],[1486,1498,1485,0,1488,1500,1487],[1485,1498,1497,0,1487,1500,1499],[1485,1497,1484,0,1487,1499,1486],[1497,1493,1484,0,1499,1495,1486],[1475,1481,1474,0,1477,1483,1476],[1474,1481,1473,0,1476,1483,1475],[1463,1471,1527,0,1465,1473,1525],[1470,1527,1471,0,1472,1525,1473],[1460,1527,1470,0,1462,1525,1472],[1460,1461,1527,0,1462,1463,1525],[1461,1462,1527,0,1463,1464,1525],[1527,1462,1463,0,1525,1464,1465],[1460,1470,1528,0,1462,1472,1526],[1470,1467,1528,0,1472,1469,1526],[1528,1467,1465,0,1526,1469,1467],[1457,1528,1465,0,1459,1526,1467],[1458,1528,1457,0,1460,1526,1459],[1458,1460,1528,0,1460,1462,1526],[1457,1465,1456,0,1459,1467,1458],[1432,1434,1444,0,1434,1436,1446],[1432,1433,1434,0,1434,1435,1436],[1444,1434,1529,0,1446,1436,1527],[1529,1434,1435,0,1527,1436,1437],[1529,1435,1530,0,1527,1437,1528],[1435,1438,1530,0,1437,1440,1528],[1436,1438,1435,0,1438,1440,1437],[1438,1531,1530,0,1440,1529,1528],[1439,1531,1438,0,1441,1529,1440],[1439,1532,1531,0,1441,1530,1529],[1533,1532,1439,0,1531,1530,1441],[1532,1533,1534,0,1530,1531,1532],[1533,1535,1534,0,1531,1533,1532],[1536,1535,1533,0,1534,1533,1531],[1536,1537,1535,0,1534,1535,1533],[1538,1537,1536,0,1536,1535,1534],[1538,1539,1537,0,1536,1537,1535],[1538,1540,1539,0,1536,1538,1537],[1538,1541,1540,0,1536,1539,1538],[1541,1538,1542,0,1539,1536,1540],[1542,1538,1536,0,1540,1536,1534],[1536,1543,1542,0,1534,1541,1540],[1544,1543,1536,0,1542,1541,1534],[1442,1543,1544,0,1444,1541,1542],[1442,1529,1543,0,1444,1527,1541],[1442,1444,1529,0,1444,1446,1527],[1529,1530,1543,0,1527,1528,1541],[1543,1530,1542,0,1541,1528,1540],[1530,1545,1542,0,1528,1543,1540],[1530,1531,1545,0,1528,1529,1543],[1545,1531,1546,0,1543,1529,1544],[1531,1532,1546,0,1529,1530,1544],[1532,1534,1546,0,1530,1532,1544],[1546,1534,1547,0,1544,1532,1545],[1534,1548,1547,0,1532,1546,1545],[1535,1548,1534,0,1533,1546,1532],[1535,1549,1548,0,1533,1547,1546],[1535,1550,1549,0,1533,1548,1547],[1537,1550,1535,0,1535,1548,1533],[1537,1539,1550,0,1535,1537,1548],[1539,1551,1550,0,1537,1549,1548],[1539,1552,1551,0,1537,1550,1549],[1539,1540,1552,0,1537,1538,1550],[1540,1553,1552,0,1538,1551,1550],[1540,1554,1553,0,1538,1552,1551],[1547,1554,1540,0,1545,1552,1538],[1548,1554,1547,0,1546,1552,1545],[1548,1555,1554,0,1546,1553,1552],[1556,1555,1548,0,1554,1553,1546],[1557,1555,1556,0,1555,1553,1554],[1558,1555,1557,0,1556,1553,1555],[1554,1555,1558,0,1552,1553,1556],[1553,1554,1558,0,1551,1552,1556],[1553,1558,1559,0,1551,1556,1557],[1559,1558,1560,0,1557,1556,1558],[1558,1557,1560,0,1556,1555,1558],[1557,1561,1560,0,1555,1559,1558],[1562,1561,1557,0,1560,1559,1555],[1562,1563,1561,0,1560,1561,1559],[1562,1564,1563,0,1560,1562,1561],[1565,1564,1562,0,1563,1562,1560],[1565,1566,1564,0,1563,1564,1562],[1567,1566,1565,0,1565,1564,1563],[1568,1566,1567,0,1566,1564,1565],[1568,1569,1566,0,1566,1567,1564],[1568,1570,1569,0,1566,1568,1567],[1568,1560,1570,0,1566,1558,1568],[1559,1560,1568,0,1557,1558,1566],[1559,1568,1567,0,1557,1566,1565],[1559,1567,1552,0,1557,1565,1550],[1552,1567,1551,0,1550,1565,1549],[1567,1565,1551,0,1565,1563,1549],[1551,1565,1562,0,1549,1563,1560],[1551,1562,1556,0,1549,1560,1554],[1556,1562,1557,0,1554,1560,1555],[1551,1556,1549,0,1549,1554,1547],[1548,1549,1556,0,1546,1547,1554],[1550,1551,1549,0,1548,1549,1547],[1552,1553,1559,0,1550,1551,1557],[1560,1561,1570,0,1558,1559,1568],[1561,1571,1570,0,1559,1569,1568],[1563,1571,1561,0,1561,1569,1559],[1563,1572,1571,0,1561,1570,1569],[1563,1573,1572,0,1561,1571,1570],[1563,1574,1573,0,1561,1572,1571],[1564,1574,1563,0,1562,1572,1561],[1566,1574,1564,0,1564,1572,1562],[1574,1566,1575,0,1572,1564,1573],[1566,1576,1575,0,1564,1574,1573],[1569,1576,1566,0,1567,1574,1564],[1569,1577,1576,0,1567,1575,1574],[1569,1578,1577,0,1567,1576,1575],[1570,1578,1569,0,1568,1576,1567],[1571,1578,1570,0,1569,1576,1568],[1571,1579,1578,0,1569,1577,1576],[1572,1579,1571,0,1570,1577,1569],[1572,1580,1579,0,1570,1578,1577],[1572,1581,1580,0,1570,1579,1578],[1573,1581,1572,0,1571,1579,1570],[1583,1582,1573,0,1580,1581,1571],[1575,1588,1585,0,1573,1582,1583],[1575,1576,1588,0,1573,1574,1582],[1576,1589,1588,0,1574,1584,1582],[1577,1589,1576,0,1575,1584,1574],[1577,1590,1589,0,1575,1585,1584],[1578,1590,1577,0,1576,1585,1575],[1578,1591,1590,0,1576,1586,1585],[1592,1591,1578,0,1587,1586,1576],[1595,1594,1592,0,1588,1589,1587],[1596,1594,1595,0,1590,1589,1588],[1602,1603,1601,0,1591,1592,1593],[1604,1603,1602,0,1594,1592,1591],[1589,1605,1588,0,1584,1595,1582],[1589,1590,1603,0,1584,1585,1592],[1590,1601,1603,0,1585,1593,1592],[1586,1604,1584,0,1596,1594,1597],[1584,1604,1608,0,1597,1594,1598],[1604,1602,1608,0,1594,1591,1598],[1608,1602,1609,0,1598,1591,1599],[1608,1609,1596,0,1598,1599,1590],[1608,1596,1610,0,1598,1590,1600],[1584,1610,1612,0,1597,1600,1601],[1584,1608,1610,0,1597,1598,1600],[1580,1595,1592,0,1578,1588,1587],[1580,1592,1579,0,1578,1587,1577],[1579,1592,1578,0,1577,1587,1576],[1581,1613,1580,0,1579,1602,1578],[1575,1585,1583,0,1573,1583,1580],[1575,1583,1574,0,1573,1580,1572],[1574,1583,1573,0,1572,1580,1571],[1541,1547,1540,0,1539,1545,1538],[1541,1546,1547,0,1539,1544,1545],[1545,1546,1541,0,1543,1544,1539],[1542,1545,1541,0,1540,1543,1539],[1442,1544,1441,0,1444,1542,1443],[1544,1536,1441,0,1542,1534,1443],[1441,1536,1533,0,1443,1534,1531],[1439,1441,1533,0,1441,1443,1531],[1199,1375,1198,0,1201,1378,1200],[1196,1198,1431,0,1198,1200,1433],[1196,1431,1193,0,1198,1433,1195],[1183,1420,1614,0,1185,1422,1603],[1614,1420,1417,0,1603,1422,1419],[1417,1416,1614,0,1419,1418,1603],[1614,1416,1615,0,1603,1418,1604],[1615,1416,1415,0,1604,1418,1417],[1615,1415,1616,0,1604,1417,1605],[1170,1616,1415,0,1172,1605,1417],[1172,1616,1170,0,1174,1605,1172],[1172,1617,1616,0,1174,1606,1605],[1177,1617,1172,0,1179,1606,1174],[1177,1179,1617,0,1179,1181,1606],[1179,1618,1617,0,1181,1607,1606],[1179,1181,1618,0,1181,1183,1607],[1181,1183,1618,0,1183,1185,1607],[1618,1183,1614,0,1607,1185,1603],[1615,1618,1614,0,1604,1607,1603],[1617,1618,1615,0,1606,1607,1604],[1617,1615,1616,0,1606,1604,1605],[1175,1177,1172,0,1177,1179,1174],[1170,1415,1168,0,1172,1417,1170],[1168,1415,1167,0,1170,1417,1169],[1379,1408,1409,0,1382,1410,1411],[1379,1381,1408,0,1382,1384,1410],[1380,1381,1379,0,1383,1384,1382],[1381,1382,1408,0,1384,1385,1410],[1408,1382,1406,0,1410,1385,1408],[1406,1382,1619,0,1408,1385,1608],[1382,1383,1619,0,1385,1386,1608],[1383,1620,1619,0,1386,1609,1608],[1383,1621,1620,0,1386,1610,1609],[1383,1384,1621,0,1386,1387,1610],[1384,1622,1621,0,1387,1611,1610],[1384,1385,1622,0,1387,1388,1611],[1386,1387,1623,0,1389,1390,1612],[1623,1387,1624,0,1612,1390,1613],[1388,1625,1624,0,1391,1614,1613],[1390,1391,1627,0,1393,1395,1615],[1626,1627,1625,0,1616,1615,1614],[1633,1631,1634,0,1617,1618,1619],[1634,1631,1635,0,1619,1618,1620],[1631,1636,1635,0,1618,1621,1620],[1636,1630,1392,0,1621,1622,1394],[1392,1630,1391,0,1394,1622,1395],[1395,1636,1394,0,1397,1621,1623],[1396,1636,1395,0,1398,1621,1397],[1397,1636,1396,0,1399,1621,1398],[1397,1637,1636,0,1399,1624,1621],[1398,1637,1397,0,1400,1624,1399],[1398,1400,1637,0,1400,1402,1624],[1635,1637,1400,0,1620,1624,1402],[1636,1637,1635,0,1621,1624,1620],[1403,1635,1400,0,1405,1620,1402],[1404,1635,1403,0,1406,1620,1405],[1404,1638,1635,0,1406,1625,1620],[1619,1638,1404,0,1608,1625,1406],[1619,1620,1638,0,1608,1609,1625],[1620,1634,1638,0,1609,1619,1625],[1620,1621,1634,0,1609,1610,1619],[1622,1634,1621,0,1611,1619,1610],[1622,1639,1634,0,1611,1626,1619],[1624,1633,1634,0,1613,1617,1619],[1624,1625,1633,0,1613,1614,1617],[1634,1635,1638,0,1619,1620,1625],[1406,1619,1404,0,1408,1608,1406],[1167,1414,1162,0,1169,1416,1164],[1414,1161,1162,0,1416,1163,1164],[1414,1399,1161,0,1416,1401,1163],[1414,1412,1399,0,1416,1414,1401],[1399,1412,1401,0,1401,1414,1403],[1167,1162,1164,0,1169,1164,1166],[1153,1393,1151,0,1155,1396,1153],[1200,1203,1199,0,1202,1205,1201],[1304,1305,1308,0,1307,1308,1311],[1319,1320,1328,0,1322,1323,1331],[1328,1320,1640,0,1331,1323,1627],[1321,1640,1320,0,1324,1627,1323],[1321,1641,1640,0,1324,1628,1627],[1321,1642,1641,0,1324,1629,1628],[1321,1322,1642,0,1324,1325,1629],[1322,1643,1642,0,1325,1630,1629],[1324,1643,1322,0,1327,1630,1325],[1324,1326,1643,0,1327,1329,1630],[1326,1644,1643,0,1329,1631,1630],[1328,1644,1326,0,1331,1631,1329],[1328,1645,1644,0,1331,1632,1631],[1328,1640,1645,0,1331,1627,1632],[1645,1640,1646,0,1632,1627,1633],[1641,1646,1640,0,1628,1633,1627],[1646,1641,1647,0,1633,1628,1634],[1641,1648,1647,0,1628,1635,1634],[1642,1648,1641,0,1629,1635,1628],[1649,1648,1642,0,1636,1635,1629],[1649,1650,1648,0,1636,1637,1635],[1649,1651,1650,0,1636,1638,1637],[1651,1649,1644,0,1638,1636,1631],[1644,1649,1643,0,1631,1636,1630],[1642,1643,1649,0,1629,1630,1636],[1645,1651,1644,0,1632,1638,1631],[1652,1651,1645,0,1639,1638,1632],[1653,1651,1652,0,1640,1638,1639],[1650,1651,1653,0,1637,1638,1640],[1650,1653,1654,0,1637,1640,1641],[1653,1655,1654,0,1640,1642,1641],[1656,1655,1653,0,1643,1642,1640],[1656,1657,1655,0,1643,1644,1642],[1656,1658,1657,0,1643,1645,1644],[1656,1646,1658,0,1643,1633,1645],[1646,1656,1652,0,1633,1643,1639],[1652,1656,1653,0,1639,1643,1640],[1645,1646,1652,0,1632,1633,1639],[1659,1658,1646,0,1646,1645,1633],[1659,1660,1658,0,1646,1647,1645],[1659,1661,1660,0,1646,1648,1647],[1659,1662,1661,0,1646,1649,1648],[1662,1659,1647,0,1649,1646,1634],[1647,1659,1646,0,1634,1646,1633],[1647,1648,1662,0,1634,1635,1649],[1648,1650,1662,0,1635,1637,1649],[1650,1654,1662,0,1637,1641,1649],[1654,1661,1662,0,1641,1648,1649],[1654,1663,1661,0,1641,1650,1648],[1655,1663,1654,0,1642,1650,1641],[1655,1664,1663,0,1642,1651,1650],[1665,1664,1655,0,1652,1651,1642],[1666,1664,1665,0,1653,1651,1652],[1667,1664,1666,0,1654,1651,1653],[1663,1664,1667,0,1650,1651,1654],[1668,1663,1667,0,1655,1650,1654],[1663,1668,1661,0,1650,1655,1648],[1661,1668,1669,0,1648,1655,1656],[1669,1668,1670,0,1656,1655,1657],[1668,1667,1670,0,1655,1654,1657],[1670,1667,1671,0,1657,1654,1658],[1667,1666,1671,0,1654,1653,1658],[1671,1666,1672,0,1658,1653,1659],[1673,1672,1666,0,1660,1659,1653],[1673,1674,1672,0,1660,1661,1659],[1673,1675,1674,0,1660,1662,1661],[1676,1675,1673,0,1663,1662,1660],[1677,1675,1676,0,1664,1662,1663],[1677,1678,1675,0,1664,1665,1662],[1677,1679,1678,0,1664,1666,1665],[1677,1680,1679,0,1664,1667,1666],[1677,1681,1680,0,1664,1668,1667],[1682,1681,1677,0,1669,1668,1664],[1682,1683,1681,0,1669,1670,1668],[1682,1671,1683,0,1669,1658,1670],[1670,1671,1682,0,1657,1658,1669],[1682,1684,1670,0,1669,1671,1657],[1684,1682,1677,0,1671,1669,1664],[1684,1677,1676,0,1671,1664,1663],[1684,1676,1685,0,1671,1663,1672],[1685,1676,1673,0,1672,1663,1660],[1685,1673,1665,0,1672,1660,1652],[1665,1673,1666,0,1652,1660,1653],[1657,1685,1665,0,1644,1672,1652],[1657,1686,1685,0,1644,1673,1672],[1657,1658,1686,0,1644,1645,1673],[1658,1660,1686,0,1645,1647,1673],[1660,1685,1686,0,1647,1672,1673],[1660,1669,1685,0,1647,1656,1672],[1660,1661,1669,0,1647,1648,1656],[1669,1684,1685,0,1656,1671,1672],[1670,1684,1669,0,1657,1671,1656],[1655,1657,1665,0,1642,1644,1652],[1671,1672,1683,0,1658,1659,1670],[1672,1687,1683,0,1659,1674,1670],[1674,1687,1672,0,1661,1674,1659],[1674,1688,1687,0,1661,1675,1674],[1674,1689,1688,0,1661,1676,1675],[1674,1678,1689,0,1661,1665,1676],[1674,1675,1678,0,1661,1662,1665],[1689,1678,1690,0,1676,1665,1677],[1679,1690,1678,0,1666,1677,1665],[1679,1691,1690,0,1666,1678,1677],[1679,1692,1691,0,1666,1679,1678],[1679,1680,1692,0,1666,1667,1679],[1680,1693,1692,0,1667,1680,1679],[1694,1693,1680,0,1681,1680,1667],[1696,1695,1694,0,1682,1683,1681],[1696,1697,1695,0,1682,1684,1683],[1696,1698,1697,0,1682,1685,1684],[1699,1698,1696,0,1686,1685,1682],[1700,1701,1698,0,1687,1688,1685],[1706,1704,1705,0,1689,1690,1691],[1706,1707,1704,0,1689,1692,1690],[1706,1708,1707,0,1689,1693,1692],[1709,1708,1706,0,1694,1693,1689],[1693,1711,1692,0,1680,1695,1679],[1695,1712,1693,0,1683,1696,1680],[1708,1722,1707,0,1693,1697,1692],[1707,1722,1721,0,1692,1697,1698],[1707,1721,1720,0,1692,1698,1699],[1707,1720,1704,0,1692,1699,1690],[1726,1702,1700,0,1700,1701,1687],[1688,1726,1700,0,1675,1700,1687],[1689,1726,1688,0,1676,1700,1675],[1689,1690,1725,0,1676,1677,1702],[1688,1700,1699,0,1675,1687,1686],[1688,1699,1687,0,1675,1686,1674],[1687,1699,1696,0,1674,1686,1682],[1683,1687,1696,0,1670,1674,1682],[1681,1683,1696,0,1668,1670,1682],[1681,1696,1694,0,1668,1682,1681],[1694,1680,1681,0,1681,1667,1668],[1309,1310,1318,0,1312,1313,1321],[1318,1310,1727,0,1321,1313,1703],[1310,1728,1727,0,1313,1704,1703],[1310,1729,1728,0,1313,1705,1704],[1311,1729,1310,0,1314,1705,1313],[1311,1730,1729,0,1314,1706,1705],[1311,1312,1730,0,1314,1315,1706],[1312,1731,1730,0,1315,1707,1706],[1314,1731,1312,0,1317,1707,1315],[1314,1316,1731,0,1317,1319,1707],[1316,1732,1731,0,1319,1708,1707],[1318,1732,1316,0,1321,1708,1319],[1318,1727,1732,0,1321,1703,1708],[1727,1733,1732,0,1703,1709,1708],[1733,1727,1734,0,1709,1703,1710],[1727,1728,1734,0,1703,1704,1710],[1729,1734,1728,0,1705,1710,1704],[1734,1729,1735,0,1710,1705,1711],[1735,1729,1730,0,1711,1705,1706],[1735,1730,1736,0,1711,1706,1712],[1736,1730,1737,0,1712,1706,1713],[1730,1731,1737,0,1706,1707,1713],[1737,1731,1732,0,1713,1707,1708],[1737,1732,1738,0,1713,1708,1714],[1732,1733,1738,0,1708,1709,1714],[1733,1739,1738,0,1709,1715,1714],[1733,1740,1739,0,1709,1716,1715],[1734,1740,1733,0,1710,1716,1709],[1734,1741,1740,0,1710,1717,1716],[1742,1741,1734,0,1718,1717,1710],[1742,1743,1741,0,1718,1719,1717],[1742,1744,1743,0,1718,1720,1719],[1742,1745,1744,0,1718,1721,1720],[1745,1742,1735,0,1721,1718,1711],[1735,1742,1734,0,1711,1718,1710],[1745,1735,1736,0,1721,1711,1712],[1746,1745,1736,0,1722,1721,1712],[1745,1746,1747,0,1721,1722,1723],[1746,1739,1747,0,1722,1715,1723],[1746,1738,1739,0,1722,1714,1715],[1738,1746,1737,0,1714,1722,1713],[1746,1736,1737,0,1722,1712,1713],[1739,1748,1747,0,1715,1724,1723],[1740,1748,1739,0,1716,1724,1715],[1740,1749,1748,0,1716,1725,1724],[1740,1750,1749,0,1716,1726,1725],[1741,1750,1740,0,1717,1726,1716],[1741,1743,1750,0,1717,1719,1726],[1743,1751,1750,0,1719,1727,1726],[1743,1752,1751,0,1719,1728,1727],[1743,1744,1752,0,1719,1720,1728],[1744,1753,1752,0,1720,1729,1728],[1744,1754,1753,0,1720,1730,1729],[1747,1754,1744,0,1723,1730,1720],[1748,1754,1747,0,1724,1730,1723],[1754,1748,1755,0,1730,1724,1731],[1756,1755,1748,0,1732,1731,1724],[1757,1755,1756,0,1733,1731,1732],[1758,1755,1757,0,1734,1731,1733],[1754,1755,1758,0,1730,1731,1734],[1753,1754,1758,0,1729,1730,1734],[1753,1758,1759,0,1729,1734,1735],[1759,1758,1760,0,1735,1734,1736],[1758,1757,1760,0,1734,1733,1736],[1760,1757,1761,0,1736,1733,1737],[1762,1761,1757,0,1738,1737,1733],[1762,1763,1761,0,1738,1739,1737],[1762,1764,1763,0,1738,1740,1739],[1765,1764,1762,0,1741,1740,1738],[1766,1764,1765,0,1742,1740,1741],[1766,1767,1764,0,1742,1743,1740],[1766,1768,1767,0,1742,1744,1743],[1766,1769,1768,0,1742,1745,1744],[1766,1770,1769,0,1742,1746,1745],[1766,1771,1770,0,1742,1747,1746],[1772,1771,1766,0,1748,1747,1742],[1772,1759,1771,0,1748,1735,1747],[1759,1772,1752,0,1735,1748,1728],[1752,1772,1751,0,1728,1748,1727],[1772,1765,1751,0,1748,1741,1727],[1772,1766,1765,0,1748,1742,1741],[1751,1765,1762,0,1727,1741,1738],[1751,1762,1756,0,1727,1738,1732],[1756,1762,1757,0,1732,1738,1733],[1749,1751,1756,0,1725,1727,1732],[1749,1750,1751,0,1725,1726,1727],[1748,1749,1756,0,1724,1725,1732],[1752,1753,1759,0,1728,1729,1735],[1759,1760,1771,0,1735,1736,1747],[1771,1760,1773,0,1747,1736,1749],[1760,1761,1773,0,1736,1737,1749],[1761,1774,1773,0,1737,1750,1749],[1763,1774,1761,0,1739,1750,1737],[1763,1775,1774,0,1739,1751,1750],[1763,1776,1775,0,1739,1752,1751],[1763,1767,1776,0,1739,1743,1752],[1764,1767,1763,0,1740,1743,1739],[1776,1767,1777,0,1752,1743,1753],[1768,1777,1767,0,1744,1753,1743],[1768,1778,1777,0,1744,1754,1753],[1768,1779,1778,0,1744,1755,1754],[1768,1769,1779,0,1744,1745,1755],[1769,1780,1779,0,1745,1756,1755],[1781,1780,1769,0,1757,1756,1745],[1781,1782,1780,0,1757,1758,1756],[1783,1782,1781,0,1759,1758,1757],[1783,1784,1782,0,1759,1760,1758],[1783,1785,1784,0,1759,1761,1760],[1786,1785,1783,0,1762,1761,1759],[1786,1787,1785,0,1762,1763,1761],[1775,1787,1786,0,1751,1763,1762],[1775,1788,1787,0,1751,1764,1763],[1776,1788,1775,0,1752,1764,1751],[1780,1795,1779,0,1756,1765,1755],[1780,1782,1796,0,1756,1758,1766],[1782,1797,1796,0,1758,1767,1766],[1804,1801,1805,0,1768,1769,1770],[1805,1801,1785,0,1770,1769,1761],[1787,1805,1785,0,1763,1770,1761],[1790,1808,1805,0,1771,1772,1770],[1791,1808,1790,0,1773,1772,1771],[1792,1808,1791,0,1774,1772,1773],[1792,1809,1808,0,1774,1775,1772],[1792,1810,1809,0,1774,1776,1775],[1793,1810,1792,0,1777,1776,1774],[1810,1796,1811,0,1776,1766,1778],[1811,1796,1797,0,1778,1766,1767],[1812,1797,1800,0,1779,1767,1780],[1809,1813,1804,0,1775,1781,1768],[1809,1811,1813,0,1775,1778,1781],[1810,1811,1809,0,1776,1778,1775],[1809,1804,1808,0,1775,1768,1772],[1788,1807,1787,0,1764,1782,1763],[1776,1777,1789,0,1752,1753,1783],[1775,1786,1774,0,1751,1762,1750],[1783,1774,1786,0,1759,1750,1762],[1773,1774,1783,0,1749,1750,1759],[1770,1773,1783,0,1746,1749,1759],[1771,1773,1770,0,1747,1749,1746],[1770,1783,1781,0,1746,1759,1757],[1770,1781,1769,0,1746,1757,1745],[1745,1747,1744,0,1721,1723,1720],[1296,1297,1225,0,1299,1300,1227],[1226,1296,1225,0,1228,1299,1227],[1230,1296,1226,0,1232,1299,1228],[1228,1230,1226,0,1230,1232,1228],[1152,1154,1153,3,1154,1158,1155],[1155,1154,1152,3,1156,1158,1154],[1385,1155,1152,3,1388,1156,1154],[1385,1152,1386,3,1388,1154,1389],[1388,1150,1389,3,1391,1152,1392],[1150,1149,1389,3,1152,1151,1392],[1149,1391,1390,3,1151,1395,1393],[1393,1394,1392,3,1396,1623,1394],[1393,1395,1394,3,1396,1397,1623],[1154,1395,1393,3,1158,1397,1396],[1493,1495,1494,3,1495,1498,1496],[1504,1503,1489,3,1524,1505,1491],[1504,1505,1503,3,1524,1521,1505],[1504,1506,1505,3,1524,1508,1521],[1507,1506,1504,3,1506,1508,1524],[1511,1512,1510,3,1511,1784,1510],[1491,1512,1511,3,1493,1784,1511],[1491,1492,1512,3,1493,1494,1784],[1492,1494,1512,3,1494,1496,1784],[1512,1494,1495,3,1784,1496,1498],[1512,1495,1510,3,1784,1498,1510],[1513,1514,1515,3,1512,1513,1514],[1517,1516,1514,3,1785,1515,1513],[1518,1516,1517,3,1517,1515,1785],[1519,1520,1516,3,1516,1523,1515],[1520,1519,1521,3,1523,1516,1518],[1521,1519,1518,3,1518,1516,1517],[1500,1518,1523,3,1502,1517,1786],[1518,1517,1523,3,1517,1785,1786],[1499,1523,1517,3,1501,1786,1785],[1499,1500,1523,3,1501,1502,1786],[1524,1499,1517,3,1787,1501,1785],[1496,1499,1524,3,1497,1501,1787],[1524,1514,1496,3,1787,1513,1497],[1524,1517,1514,3,1787,1785,1513],[1502,1525,1522,3,1504,1520,1519],[1505,1525,1503,3,1521,1520,1505],[1505,1522,1525,3,1521,1519,1520],[1508,1521,1522,3,1507,1518,1519],[1513,1520,1526,3,1512,1523,1522],[1515,1516,1520,3,1514,1515,1523],[1526,1520,1521,3,1522,1523,1518],[1491,1511,1507,3,1493,1511,1506],[1491,1507,1490,3,1493,1506,1492],[1490,1507,1504,3,1492,1506,1524],[1573,1582,1581,3,1571,1581,1579],[1583,1584,1582,3,1580,1597,1581],[1585,1584,1583,3,1583,1597,1580],[1585,1586,1584,3,1583,1596,1597],[1585,1587,1586,3,1583,1788,1596],[1585,1588,1587,3,1583,1582,1788],[1591,1592,1593,3,1586,1587,1789],[1592,1594,1593,3,1587,1589,1789],[1596,1597,1594,3,1590,1790,1589],[1598,1597,1596,3,1791,1790,1590],[1598,1599,1597,3,1791,1792,1790],[1600,1599,1598,3,1793,1792,1791],[1600,1601,1599,3,1793,1593,1792],[1602,1601,1600,3,1591,1593,1793],[1587,1603,1604,3,1788,1592,1594],[1587,1605,1603,3,1788,1595,1592],[1588,1605,1587,3,1582,1595,1788],[1589,1603,1605,3,1584,1592,1595],[1590,1606,1601,3,1585,1794,1593],[1590,1591,1606,3,1585,1586,1794],[1606,1591,1607,3,1794,1586,1795],[1591,1593,1607,3,1586,1789,1795],[1594,1607,1593,3,1589,1795,1789],[1594,1599,1607,3,1589,1792,1795],[1599,1594,1597,3,1792,1589,1790],[1601,1607,1599,3,1593,1795,1792],[1606,1607,1601,3,1794,1795,1593],[1586,1587,1604,3,1596,1788,1594],[1602,1598,1609,3,1591,1791,1599],[1602,1600,1598,3,1591,1793,1791],[1609,1598,1596,3,1599,1791,1590],[1610,1596,1595,3,1600,1590,1588],[1611,1610,1595,3,1796,1600,1588],[1612,1610,1611,3,1601,1600,1796],[1582,1584,1612,3,1581,1597,1601],[1582,1612,1611,3,1581,1601,1796],[1582,1611,1581,3,1581,1796,1579],[1611,1613,1581,3,1796,1602,1579],[1611,1595,1613,3,1796,1588,1602],[1613,1595,1580,3,1602,1588,1578],[1385,1623,1622,3,1388,1612,1611],[1385,1386,1623,3,1388,1389,1612],[1387,1388,1624,3,1390,1391,1613],[1388,1626,1625,3,1391,1616,1614],[1388,1389,1626,3,1391,1392,1616],[1626,1389,1627,3,1616,1392,1615],[1390,1627,1389,3,1393,1615,1392],[1391,1628,1627,3,1395,1797,1615],[1391,1629,1628,3,1395,1798,1797],[1630,1629,1391,3,1622,1798,1395],[1631,1629,1630,3,1618,1798,1622],[1631,1628,1629,3,1618,1797,1798],[1632,1628,1631,3,1799,1797,1618],[1625,1628,1632,3,1614,1797,1799],[1625,1627,1628,3,1614,1615,1797],[1625,1632,1633,3,1614,1799,1617],[1633,1632,1631,3,1617,1799,1618],[1631,1630,1636,3,1618,1622,1621],[1392,1394,1636,3,1394,1623,1621],[1622,1623,1639,3,1611,1612,1626],[1623,1624,1639,3,1612,1613,1626],[1639,1624,1634,3,1626,1613,1619],[1154,1393,1153,3,1158,1396,1155],[1694,1695,1693,3,1681,1683,1680],[1700,1698,1699,3,1687,1685,1686],[1702,1701,1700,3,1701,1688,1687],[1703,1701,1702,3,1800,1688,1701],[1703,1704,1701,3,1800,1690,1688],[1705,1704,1703,3,1691,1690,1800],[1709,1710,1708,3,1694,1801,1693],[1691,1710,1709,3,1678,1801,1694],[1691,1692,1710,3,1678,1679,1801],[1692,1711,1710,3,1679,1695,1801],[1693,1712,1711,3,1680,1696,1695],[1695,1713,1712,3,1683,1802,1696],[1714,1713,1695,3,1803,1802,1683],[1715,1713,1714,3,1804,1802,1803],[1715,1716,1713,3,1804,1805,1802],[1717,1716,1715,3,1806,1805,1804],[1718,1716,1717,3,1807,1805,1806],[1718,1719,1716,3,1807,1808,1805],[1720,1719,1718,3,1699,1808,1807],[1721,1719,1720,3,1698,1808,1699],[1722,1719,1721,3,1697,1808,1698],[1722,1723,1719,3,1697,1809,1808],[1722,1713,1723,3,1697,1802,1809],[1722,1712,1713,3,1697,1696,1802],[1708,1712,1722,3,1693,1696,1697],[1710,1712,1708,3,1801,1696,1693],[1710,1711,1712,3,1801,1695,1696],[1704,1720,1701,3,1690,1699,1688],[1720,1717,1701,3,1699,1806,1688],[1720,1718,1717,3,1699,1807,1806],[1701,1717,1698,3,1688,1806,1685],[1698,1717,1724,3,1685,1806,1810],[1717,1715,1724,3,1806,1804,1810],[1715,1698,1724,3,1804,1685,1810],[1698,1715,1697,3,1685,1804,1684],[1714,1697,1715,3,1803,1684,1804],[1697,1714,1695,3,1684,1803,1683],[1723,1713,1716,3,1809,1802,1805],[1723,1716,1719,3,1809,1805,1808],[1691,1709,1706,3,1678,1694,1689],[1691,1706,1690,3,1678,1689,1677],[1690,1706,1725,3,1677,1689,1702],[1725,1706,1705,3,1702,1689,1691],[1725,1705,1703,3,1702,1691,1800],[1725,1703,1726,3,1702,1800,1700],[1703,1702,1726,3,1800,1701,1700],[1725,1726,1689,3,1702,1700,1676],[1789,1788,1776,3,1783,1764,1752],[1789,1790,1788,3,1783,1771,1764],[1789,1791,1790,3,1783,1773,1771],[1789,1792,1791,3,1783,1774,1773],[1777,1792,1789,3,1753,1774,1783],[1778,1792,1777,3,1754,1774,1753],[1778,1793,1792,3,1754,1777,1774],[1778,1794,1793,3,1754,1811,1777],[1778,1779,1794,3,1754,1755,1811],[1779,1795,1794,3,1755,1765,1811],[1780,1796,1795,3,1756,1766,1765],[1798,1797,1782,3,1812,1767,1758],[1799,1797,1798,3,1813,1767,1812],[1799,1800,1797,3,1813,1780,1767],[1801,1800,1799,3,1769,1780,1813],[1802,1800,1801,3,1814,1780,1769],[1802,1803,1800,3,1814,1815,1780],[1803,1802,1804,3,1815,1814,1768],[1804,1802,1801,3,1768,1814,1769],[1785,1801,1806,3,1761,1769,1816],[1801,1799,1806,3,1769,1813,1816],[1784,1806,1799,3,1760,1816,1813],[1784,1785,1806,3,1760,1761,1816],[1798,1784,1799,3,1812,1760,1813],[1782,1784,1798,3,1758,1760,1812],[1807,1805,1787,3,1782,1770,1763],[1790,1805,1807,3,1771,1770,1782],[1793,1794,1810,3,1777,1811,1776],[1794,1796,1810,3,1811,1766,1776],[1794,1795,1796,3,1811,1765,1766],[1811,1797,1812,3,1778,1767,1779],[1812,1800,1803,3,1779,1780,1815],[1811,1812,1803,3,1778,1779,1815],[1811,1803,1813,3,1778,1815,1781],[1813,1803,1804,3,1781,1815,1768],[1808,1804,1805,3,1772,1768,1770],[1790,1807,1788,3,1771,1782,1764],[1814,1815,1816,0,1817,1818,1819],[1814,1817,1815,0,1817,1820,1818],[1817,1814,1818,0,1820,1817,1821],[1818,1819,1817,0,1821,1822,1820],[1820,1819,1818,0,1823,1822,1821],[1820,1821,1819,0,1823,1824,1822],[1822,1821,1820,0,1825,1824,1823],[1822,1823,1821,0,1825,1826,1824],[1824,1823,1822,0,1827,1826,1825],[1824,1825,1823,0,1827,1828,1826],[1826,1825,1824,0,1829,1828,1827],[1827,1825,1826,0,1830,1828,1829],[1827,1828,1825,0,1830,1831,1828],[1829,1828,1827,0,1832,1831,1830],[1829,1830,1828,0,1832,1833,1831],[1829,1831,1830,0,1832,1834,1833],[1832,1831,1829,0,1835,1834,1832],[1832,1833,1831,0,1835,1836,1834],[1834,1833,1832,0,1837,1836,1835],[1834,1835,1833,0,1837,1838,1836],[1836,1835,1834,0,1839,1838,1837],[1837,1835,1836,0,1840,1838,1839],[1837,1838,1835,0,1840,1841,1838],[1839,1838,1837,0,1842,1841,1840],[1840,1838,1839,0,1843,1841,1842],[1840,1841,1838,0,1844,1844,1844],[1840,1842,1841,0,1845,1845,1845],[1840,1843,1842,0,1843,1846,1847],[1840,1844,1843,0,1843,1848,1846],[1839,1844,1840,0,1842,1848,1843],[1839,1845,1844,0,1842,1849,1848],[1837,1845,1839,0,1840,1849,1842],[1837,1846,1845,0,1840,1850,1849],[1836,1846,1837,0,1839,1850,1840],[1836,1847,1846,0,1839,1851,1850],[1848,1847,1836,0,1852,1851,1839],[1848,1849,1847,0,1852,1853,1851],[1848,1850,1849,0,1852,1854,1853],[1851,1850,1848,0,1855,1854,1852],[1852,1850,1851,0,1856,1854,1855],[1852,1853,1850,0,1856,1857,1854],[1854,1853,1852,0,1858,1857,1856],[1854,1855,1853,0,1858,1859,1857],[1856,1855,1854,0,1860,1859,1858],[1856,1857,1855,0,1860,1861,1859],[1858,1857,1856,0,1862,1861,1860],[1859,1857,1858,0,1863,1861,1862],[1859,1860,1857,0,1863,1864,1861],[1861,1860,1859,0,1865,1864,1863],[1861,1862,1860,0,1865,1866,1864],[1861,1863,1862,0,1865,1867,1866],[1861,1864,1863,0,1865,1868,1867],[1864,1861,1865,0,1868,1865,1869],[1865,1861,1866,0,1869,1865,1870],[1861,1859,1866,0,1865,1863,1870],[1866,1859,1858,0,1870,1863,1862],[1867,1866,1858,0,1871,1870,1862],[1868,1866,1867,0,1872,1870,1871],[1868,1865,1866,0,1872,1869,1870],[1869,1865,1868,0,1873,1869,1872],[1869,1870,1865,0,1873,1874,1869],[1871,1870,1869,0,1875,1874,1873],[1871,1872,1870,0,1875,1876,1874],[1873,1872,1871,0,1877,1876,1875],[1873,1874,1872,0,1877,1878,1876],[1875,1874,1873,0,1879,1878,1877],[1875,1876,1874,0,1879,1880,1878],[1875,1877,1876,0,1879,1881,1880],[1878,1877,1875,0,1882,1881,1879],[1878,1879,1877,0,1882,1883,1881],[1880,1879,1878,0,1884,1883,1882],[1880,1881,1879,0,1884,1885,1883],[1882,1881,1880,0,1886,1885,1884],[1882,1883,1881,0,1886,1887,1885],[1884,1883,1882,0,1888,1887,1886],[1884,1885,1883,0,1888,1889,1887],[1886,1885,1884,0,1890,1889,1888],[1886,1887,1885,0,1890,1891,1889],[1887,1888,1885,0,1891,1892,1889],[1887,1889,1888,0,1891,1893,1892],[1889,1890,1888,0,1893,1894,1892],[1889,1891,1890,0,1893,1895,1894],[1891,1892,1890,0,1895,1896,1894],[1893,1892,1891,0,1897,1896,1895],[1893,1894,1892,0,1897,1898,1896],[1895,1894,1893,0,1899,1898,1897],[1896,1894,1895,0,1900,1898,1899],[1896,1897,1894,0,1900,1901,1898],[1898,1897,1896,0,1902,1901,1900],[1898,1899,1897,0,1902,1903,1901],[1898,1880,1899,0,1902,1884,1903],[1898,1882,1880,0,1902,1886,1884],[1900,1882,1898,0,1904,1886,1902],[1900,1884,1882,0,1904,1888,1886],[1901,1884,1900,0,1905,1888,1904],[1901,1886,1884,0,1905,1890,1888],[1901,1900,1902,0,1905,1904,1906],[1900,1896,1902,0,1904,1900,1906],[1900,1898,1896,0,1904,1902,1900],[1902,1896,1895,0,1906,1900,1899],[1899,1880,1878,0,1903,1884,1882],[1899,1878,1903,0,1903,1882,1907],[1903,1878,1904,0,1907,1882,1908],[1878,1875,1904,0,1882,1879,1908],[1904,1875,1873,0,1908,1879,1877],[1904,1873,1905,0,1908,1877,1909],[1873,1906,1905,0,1877,1910,1909],[1873,1907,1906,0,1877,1911,1910],[1871,1907,1873,0,1875,1911,1877],[1869,1907,1871,0,1873,1911,1875],[1868,1907,1869,0,1872,1911,1873],[1868,1818,1907,0,1872,1821,1911],[1867,1818,1868,0,1871,1821,1872],[1867,1820,1818,0,1871,1823,1821],[1867,1822,1820,0,1871,1825,1823],[1867,1908,1822,0,1871,1912,1825],[1867,1858,1908,0,1871,1862,1912],[1908,1858,1856,0,1912,1862,1860],[1908,1856,1909,0,1912,1860,1913],[1909,1856,1910,0,1913,1860,1914],[1856,1854,1910,0,1860,1858,1914],[1910,1854,1911,0,1914,1858,1915],[1854,1852,1911,0,1858,1856,1915],[1911,1852,1851,0,1915,1856,1855],[1851,1829,1911,0,1855,1832,1915],[1912,1829,1851,0,1916,1832,1855],[1912,1832,1829,0,1916,1835,1832],[1912,1834,1832,0,1916,1837,1835],[1912,1913,1834,0,1916,1917,1837],[1912,1914,1913,0,1916,1918,1917],[1912,1848,1914,0,1916,1852,1918],[1851,1848,1912,0,1855,1852,1916],[1848,1836,1914,0,1852,1839,1918],[1914,1836,1915,0,1918,1839,1919],[1915,1836,1916,0,1919,1839,1920],[1836,1917,1916,0,1921,1921,1921],[1834,1917,1836,0,1922,1922,1922],[1918,1917,1834,0,1923,1924,1837],[1918,1919,1917,0,1923,1925,1924],[1918,1920,1919,0,1923,1926,1925],[1918,1915,1920,0,1923,1919,1926],[1914,1915,1918,0,1918,1919,1923],[1913,1914,1918,0,1917,1918,1923],[1913,1918,1834,0,1917,1923,1837],[1915,1916,1920,0,1919,1920,1926],[1920,1916,1921,0,1926,1920,1927],[1916,1922,1921,0,1928,1928,1928],[1917,1922,1916,0,1929,1929,1929],[1919,1922,1917,0,1925,1930,1924],[1921,1922,1919,0,1931,1931,1931],[1921,1919,1920,0,1932,1932,1932],[1911,1829,1827,0,1915,1832,1830],[1911,1827,1826,0,1915,1830,1829],[1911,1826,1910,0,1915,1829,1914],[1909,1910,1826,0,1913,1914,1829],[1909,1826,1824,0,1913,1829,1827],[1909,1824,1822,0,1913,1827,1825],[1908,1909,1822,0,1912,1913,1825],[1818,1814,1907,0,1821,1817,1911],[1907,1814,1923,0,1911,1817,1933],[1923,1814,1816,0,1933,1817,1819],[1923,1816,1924,0,1933,1819,1934],[1924,1816,1925,0,1934,1819,1935],[1925,1816,1926,0,1935,1819,1936],[1816,1815,1926,0,1819,1818,1936],[1926,1815,1927,0,1936,1818,1937],[1815,1928,1927,0,1818,1938,1937],[1815,1819,1928,0,1818,1822,1938],[1817,1819,1815,0,1820,1822,1818],[1819,1929,1928,0,1822,1939,1938],[1819,1821,1929,0,1822,1824,1939],[1821,1823,1929,0,1824,1826,1939],[1929,1823,1930,0,1939,1826,1940],[1823,1825,1930,0,1826,1828,1940],[1930,1825,1931,0,1940,1828,1941],[1825,1828,1931,0,1828,1831,1941],[1931,1828,1932,0,1941,1831,1942],[1828,1830,1932,0,1831,1833,1942],[1932,1830,1933,0,1942,1833,1943],[1933,1830,1831,0,1943,1833,1834],[1933,1831,1934,0,1943,1834,1944],[1831,1935,1934,0,1834,1945,1944],[1833,1935,1831,0,1836,1945,1834],[1833,1936,1935,0,1836,1946,1945],[1833,1937,1936,0,1836,1947,1946],[1835,1937,1833,0,1838,1947,1836],[1835,1838,1937,0,1838,1841,1947],[1838,1938,1937,0,1841,1948,1947],[1838,1841,1938,0,1841,1949,1948],[1841,1939,1938,0,1949,1950,1948],[1841,1940,1939,0,1949,1951,1950],[1842,1940,1841,0,1952,1952,1952],[1939,1940,1842,0,1950,1951,1847],[1939,1842,1843,0,1950,1847,1846],[1941,1939,1843,0,1953,1950,1846],[1938,1939,1941,0,1948,1950,1953],[1938,1941,1942,0,1948,1953,1954],[1943,1942,1941,0,1955,1954,1953],[1943,1936,1942,0,1955,1946,1954],[1943,1944,1936,0,1955,1956,1946],[1945,1944,1943,0,1957,1956,1955],[1946,1944,1945,0,1958,1956,1957],[1946,1934,1944,0,1958,1944,1956],[1947,1934,1946,0,1959,1944,1958],[1947,1933,1934,0,1959,1943,1944],[1947,1948,1933,0,1959,1960,1943],[1849,1948,1947,0,1853,1960,1959],[1849,1949,1948,0,1853,1961,1960],[1849,1950,1949,0,1853,1962,1961],[1850,1950,1849,0,1854,1962,1853],[1850,1853,1950,0,1854,1857,1962],[1853,1855,1950,0,1857,1859,1962],[1855,1951,1950,0,1859,1963,1962],[1857,1951,1855,0,1861,1963,1859],[1857,1952,1951,0,1861,1964,1963],[1857,1860,1952,0,1861,1864,1964],[1952,1860,1953,0,1964,1864,1965],[1860,1862,1953,0,1864,1866,1965],[1862,1954,1953,0,1866,1966,1965],[1862,1863,1954,0,1866,1867,1966],[1863,1927,1954,0,1867,1937,1966],[1863,1926,1927,0,1867,1936,1937],[1863,1955,1926,0,1867,1967,1936],[1956,1955,1863,0,1968,1967,1867],[1956,1957,1955,0,1968,1969,1967],[1957,1956,1870,0,1969,1968,1874],[1870,1956,1864,0,1874,1968,1868],[1864,1956,1863,0,1868,1968,1867],[1870,1864,1865,0,1874,1868,1869],[1872,1957,1870,0,1876,1969,1874],[1876,1957,1872,0,1880,1969,1876],[1957,1876,1955,0,1969,1880,1967],[1876,1958,1955,0,1880,1970,1967],[1876,1959,1958,0,1880,1971,1970],[1877,1959,1876,0,1881,1971,1880],[1877,1960,1959,0,1881,1972,1971],[1879,1960,1877,0,1883,1972,1881],[1881,1960,1879,0,1885,1972,1883],[1881,1961,1960,0,1885,1973,1972],[1883,1961,1881,0,1887,1973,1885],[1883,1962,1961,0,1887,1974,1973],[1885,1962,1883,0,1889,1974,1887],[1885,1888,1962,0,1889,1892,1974],[1888,1963,1962,0,1892,1975,1974],[1888,1890,1963,0,1892,1894,1975],[1890,1964,1963,0,1894,1976,1975],[1892,1964,1890,0,1896,1976,1894],[1892,1965,1964,0,1896,1977,1976],[1894,1965,1892,0,1898,1977,1896],[1897,1965,1894,0,1901,1977,1898],[1897,1966,1965,0,1901,1978,1977],[1899,1966,1897,0,1903,1978,1901],[1899,1903,1966,0,1903,1907,1978],[1903,1967,1966,0,1907,1979,1978],[1903,1904,1967,0,1907,1908,1979],[1904,1905,1967,0,1908,1909,1979],[1967,1905,1968,0,1979,1909,1980],[1906,1968,1905,0,1910,1980,1909],[1906,1969,1968,0,1910,1981,1980],[1906,1923,1969,0,1910,1933,1981],[1907,1923,1906,0,1911,1933,1910],[1970,1969,1923,0,1982,1981,1933],[1971,1969,1970,0,1983,1981,1982],[1968,1969,1971,0,1980,1981,1983],[1972,1968,1971,0,1984,1980,1983],[1973,1968,1972,0,1985,1980,1984],[1967,1968,1973,0,1979,1980,1985],[1967,1973,1974,0,1979,1985,1986],[1974,1973,1975,0,1986,1985,1987],[1975,1973,1972,0,1987,1985,1984],[1975,1972,1976,0,1987,1984,1988],[1976,1972,1977,0,1988,1984,1989],[1972,1978,1977,0,1984,1990,1989],[1972,1971,1978,0,1984,1983,1990],[1971,1979,1978,0,1983,1991,1990],[1971,1970,1979,0,1983,1982,1991],[1970,1925,1979,0,1982,1935,1991],[1970,1924,1925,0,1982,1934,1935],[1970,1923,1924,0,1982,1933,1934],[1958,1979,1925,0,1970,1991,1935],[1958,1959,1979,0,1970,1971,1991],[1959,1978,1979,0,1971,1990,1991],[1960,1978,1959,0,1972,1990,1971],[1960,1977,1978,0,1972,1989,1990],[1961,1977,1960,0,1973,1989,1972],[1961,1976,1977,0,1973,1988,1989],[1962,1976,1961,0,1974,1988,1973],[1962,1963,1976,0,1974,1975,1988],[1963,1975,1976,0,1975,1987,1988],[1964,1975,1963,0,1976,1987,1975],[1964,1974,1975,0,1976,1986,1987],[1965,1974,1964,0,1977,1986,1976],[1966,1974,1965,0,1978,1986,1977],[1966,1967,1974,0,1978,1979,1986],[1955,1958,1925,0,1967,1970,1935],[1955,1925,1926,0,1967,1935,1936],[1874,1876,1872,0,1878,1880,1876],[1927,1928,1954,0,1937,1938,1966],[1928,1929,1954,0,1938,1939,1966],[1954,1929,1953,0,1966,1939,1965],[1929,1980,1953,0,1939,1992,1965],[1929,1930,1980,0,1939,1940,1992],[1930,1981,1980,0,1940,1993,1992],[1930,1931,1981,0,1940,1941,1993],[1931,1932,1981,0,1941,1942,1993],[1981,1932,1949,0,1993,1942,1961],[1948,1949,1932,0,1960,1961,1942],[1948,1932,1933,0,1960,1942,1943],[1951,1981,1949,0,1963,1993,1961],[1951,1952,1981,0,1963,1964,1993],[1952,1980,1981,0,1964,1992,1993],[1952,1953,1980,0,1964,1965,1992],[1950,1951,1949,0,1962,1963,1961],[1847,1849,1947,0,1851,1853,1959],[1847,1947,1846,0,1851,1959,1850],[1846,1947,1946,0,1850,1959,1958],[1846,1946,1945,0,1850,1958,1957],[1846,1945,1845,0,1850,1957,1849],[1845,1945,1982,0,1849,1957,1994],[1982,1945,1943,0,1994,1957,1955],[1982,1943,1983,0,1994,1955,1995],[1983,1943,1941,0,1995,1955,1953],[1941,1843,1983,0,1953,1846,1995],[1844,1983,1843,0,1848,1995,1846],[1844,1982,1983,0,1848,1994,1995],[1845,1982,1844,0,1849,1994,1848],[1934,1935,1944,0,1944,1945,1956],[1944,1935,1936,0,1956,1945,1946],[1937,1942,1936,0,1947,1954,1946],[1937,1938,1942,0,1947,1948,1954],[1984,1985,1986,0,1996,1997,1998],[1984,1987,1985,0,1996,1999,1997],[1987,1984,1988,0,1999,1996,2000],[1988,1990,1989,0,2000,2001,2002],[1991,1992,1990,0,2003,2004,2001],[1995,1992,1994,0,2005,2004,2006],[1985,1994,1996,0,1997,2006,2007],[1996,1994,1997,0,2007,2006,2008],[2001,2003,2002,0,2009,2010,2011],[2001,1991,2003,0,2009,2003,2010],[2003,1991,1988,0,2010,2003,2000],[2003,1988,2004,0,2010,2000,2012],[1988,1984,2004,0,2000,1996,2012],[2004,1984,2005,0,2012,1996,2013],[2005,1984,1986,0,2013,1996,1998],[2005,1986,2006,0,2013,1998,2014],[1986,1996,2007,0,1998,2007,2015],[2010,2008,2009,0,2016,2017,2018],[2015,2004,2014,0,2019,2012,2020],[2015,2003,2004,0,2019,2010,2012],[2018,2017,2013,0,2021,2022,2023],[2019,2017,2018,0,2024,2022,2021],[2019,2002,2017,0,2024,2011,2022],[2020,2002,2019,0,2025,2011,2024],[2020,2021,2002,0,2025,2026,2011],[2022,2021,2020,0,2027,2026,2025],[2022,2023,2021,0,2027,2028,2026],[2024,2023,2022,0,2029,2028,2027],[2025,2023,2024,0,2030,2028,2029],[2026,2023,2025,0,2031,2028,2030],[2026,2027,2023,0,2031,2032,2028],[2026,2028,2027,0,2031,2033,2032],[2026,2029,2028,0,2031,2034,2033],[2026,2030,2029,0,2031,2035,2034],[2030,2026,2025,0,2035,2031,2030],[2030,2025,2031,0,2035,2030,2036],[2031,2025,2024,0,2036,2030,2029],[2032,2031,2024,0,2037,2036,2029],[2033,2031,2032,0,2038,2036,2037],[2033,2034,2031,0,2038,2039,2036],[2035,2034,2033,0,2040,2039,2038],[2035,2036,2034,0,2040,2041,2039],[2035,2037,2036,0,2040,2042,2041],[2038,2037,2035,0,2043,2042,2040],[2039,2037,2038,0,2044,2042,2043],[2039,2040,2037,0,2044,2045,2042],[2041,2040,2039,0,2046,2045,2044],[2042,2040,2041,0,2047,2045,2046],[2042,2043,2040,0,2047,2048,2045],[2042,2044,2043,0,2047,2049,2048],[2045,2044,2042,0,2050,2049,2047],[2045,2046,2044,0,2050,2051,2049],[2047,2046,2045,0,2052,2051,2050],[2047,2048,2046,0,2052,2053,2051],[2049,2048,2047,0,2054,2053,2052],[2049,2050,2048,0,2054,2055,2053],[2051,2050,2049,0,2056,2055,2054],[2051,2052,2050,0,2056,2057,2055],[2053,2052,2051,0,2058,2057,2056],[2053,2054,2052,0,2058,2059,2057],[2055,2054,2053,0,2060,2059,2058],[2055,2056,2054,0,2060,2061,2059],[2057,2056,2055,0,2062,2061,2060],[2057,2058,2056,0,2062,2063,2061],[2059,2058,2057,0,2064,2063,2062],[2059,2060,2058,0,2064,2065,2063],[2061,2060,2059,0,2066,2065,2064],[2061,2062,2060,0,2066,2067,2065],[2061,2063,2062,0,2066,2068,2067],[2064,2063,2061,0,2069,2068,2066],[2064,2065,2063,0,2069,2070,2068],[2064,2066,2065,0,2069,2071,2070],[2066,2064,2067,0,2071,2069,2072],[2067,2064,2068,0,2072,2069,2073],[2064,2069,2068,0,2069,2074,2073],[2070,2069,2064,0,2075,2074,2069],[2071,2069,2070,0,2076,2074,2075],[2071,2072,2069,0,2076,2077,2074],[2071,2073,2072,0,2076,2078,2077],[2071,2074,2073,0,2076,2079,2078],[2071,2075,2074,0,2076,2080,2079],[2076,2075,2071,0,2081,2080,2076],[2076,2077,2075,0,2081,2082,2080],[2078,2077,2076,0,2083,2082,2081],[2079,2077,2078,0,2084,2082,2083],[2079,2080,2077,0,2084,2085,2082],[2081,2080,2079,0,2086,2085,2084],[2081,2082,2080,0,2086,2087,2085],[2081,2083,2082,0,2086,2088,2087],[2081,2084,2083,0,2086,2089,2088],[2085,2084,2081,0,2090,2089,2086],[2085,2086,2084,0,2090,2091,2089],[2085,2087,2086,0,2090,2092,2091],[2088,2087,2085,0,2093,2092,2090],[2088,2089,2087,0,2093,2094,2092],[2090,2089,2088,0,2095,2094,2093],[2090,2091,2089,0,2095,2096,2094],[2090,2092,2091,0,2095,2097,2096],[2090,2093,2092,0,2095,2098,2097],[2094,2093,2090,0,2099,2098,2095],[2095,2093,2094,0,2100,2098,2099],[2095,2096,2093,0,2100,2101,2098],[2097,2096,2095,0,2102,2101,2100],[2097,2098,2096,0,2102,2103,2101],[2099,2098,2097,0,2104,2103,2102],[2099,2100,2098,0,2104,2105,2103],[2101,2100,2099,0,2106,2105,2104],[2101,2102,2100,0,2106,2107,2105],[2101,2103,2102,0,2106,2108,2107],[2104,2103,2101,0,2109,2108,2106],[2105,2103,2104,0,2110,2108,2109],[2105,2106,2103,0,2110,2111,2108],[2107,2106,2105,0,2112,2111,2110],[2107,2108,2106,0,2112,2113,2111],[2109,2108,2107,0,2114,2113,2112],[2109,2110,2108,0,2114,2115,2113],[2111,2110,2109,0,2116,2115,2114],[2111,2112,2110,0,2116,2117,2115],[2111,2113,2112,0,2116,2118,2117],[2114,2113,2111,0,2119,2118,2116],[2114,2115,2113,0,2119,2120,2118],[2116,2115,2114,0,2121,2120,2119],[2116,2117,2115,0,2121,2122,2120],[2118,2117,2116,0,2123,2122,2121],[2118,2119,2117,0,2123,2124,2122],[2118,2120,2119,0,2123,2125,2124],[2121,2120,2118,0,2126,2125,2123],[2122,2120,2121,0,2127,2125,2126],[2122,2123,2120,0,2127,2128,2125],[2122,2124,2123,0,2127,2129,2128],[2124,2122,2125,0,2129,2127,2130],[2125,2122,2121,0,2130,2127,2126],[2125,2121,2126,0,2130,2126,2131],[2126,2121,2127,0,2131,2126,2132],[2121,2128,2127,0,2126,2133,2132],[2121,2118,2128,0,2126,2123,2133],[2128,2118,2129,0,2133,2123,2134],[2118,2130,2129,0,2123,2135,2134],[2130,2118,2116,0,2135,2123,2121],[2130,2116,2114,0,2135,2121,2119],[2130,2114,2131,0,2135,2119,2136],[2131,2114,2111,0,2136,2119,2116],[2131,2111,2132,0,2136,2116,2137],[2132,2111,2133,0,2137,2116,2138],[2133,2111,2109,0,2138,2116,2114],[2133,2109,2134,0,2138,2114,2139],[2109,2107,2134,0,2114,2112,2139],[2134,2107,2105,0,2139,2112,2110],[2134,2105,2135,0,2139,2110,2140],[2135,2105,2104,0,2140,2110,2109],[2135,2104,2136,0,2140,2109,2141],[2136,2104,2137,0,2141,2109,2142],[2104,2101,2137,0,2109,2106,2142],[2137,2101,2099,0,2142,2106,2104],[2137,2099,2138,0,2142,2104,2143],[2138,2099,2097,0,2143,2104,2102],[2138,2097,2139,0,2143,2102,2144],[2139,2097,2095,0,2144,2102,2100],[2139,2095,2140,0,2144,2100,2145],[2140,2095,2094,0,2145,2100,2099],[2140,2094,2141,0,2145,2099,2146],[2141,2094,2142,0,2146,2099,2147],[2094,2143,2142,0,2099,2148,2147],[2094,2090,2143,0,2099,2095,2148],[2143,2090,2144,0,2148,2095,2149],[2090,2088,2144,0,2095,2093,2149],[2088,2085,2144,0,2093,2090,2149],[2144,2085,2081,0,2149,2090,2086],[2144,2081,2079,0,2149,2086,2084],[2145,2144,2079,0,2150,2149,2084],[2143,2144,2145,0,2148,2149,2150],[2142,2143,2145,0,2147,2148,2150],[2145,2078,2142,0,2150,2083,2147],[2145,2079,2078,0,2150,2084,2083],[2142,2078,2141,0,2147,2083,2146],[2141,2078,2146,0,2146,2083,2151],[2146,2078,2147,0,2151,2083,2152],[2147,2078,2148,0,2152,2083,2153],[2078,2076,2148,0,2083,2081,2153],[2148,2076,2070,0,2153,2081,2075],[2076,2071,2070,0,2081,2076,2075],[2148,2070,2149,0,2153,2075,2154],[2149,2070,2150,0,2154,2075,2155],[2150,2070,2057,0,2155,2075,2062],[2057,2070,2059,0,2062,2075,2064],[2070,2061,2059,0,2075,2066,2064],[2070,2064,2061,0,2075,2069,2066],[2150,2057,2055,0,2155,2062,2060],[2150,2055,2151,0,2155,2060,2156],[2152,2151,2055,0,2157,2156,2060],[2149,2151,2152,0,2154,2156,2157],[2151,2149,2150,0,2156,2154,2155],[2147,2149,2152,0,2152,2154,2157],[2148,2149,2147,0,2153,2154,2152],[2147,2152,2146,0,2152,2157,2151],[2146,2152,2153,0,2151,2157,2158],[2153,2152,2154,0,2158,2157,2159],[2152,2155,2154,0,2157,2160,2159],[2152,2055,2155,0,2157,2060,2160],[2055,2053,2155,0,2060,2058,2160],[2155,2053,2051,0,2160,2058,2056],[2154,2155,2051,0,2159,2160,2056],[2154,2051,2156,0,2159,2056,2161],[2156,2051,2049,0,2161,2056,2054],[2156,2049,2047,0,2161,2054,2052],[2156,2047,2157,0,2161,2052,2162],[2157,2047,2045,0,2162,2052,2050],[2158,2157,2045,0,2163,2162,2050],[2159,2157,2158,0,2164,2162,2163],[2160,2157,2159,0,2165,2162,2164],[2160,2161,2157,0,2165,2166,2162],[2162,2161,2160,0,2167,2166,2165],[2163,2161,2162,0,2168,2166,2167],[2163,2164,2161,0,2168,2169,2166],[2165,2164,2163,0,2170,2169,2168],[2165,2138,2164,0,2170,2143,2169],[2165,2137,2138,0,2170,2142,2143],[2136,2137,2165,0,2141,2142,2170],[2166,2136,2165,0,2171,2141,2170],[2167,2136,2166,0,2172,2141,2171],[2167,2135,2136,0,2172,2140,2141],[2134,2135,2167,0,2139,2140,2172],[2168,2134,2167,0,2173,2139,2172],[2169,2134,2168,0,2174,2139,2173],[2169,2133,2134,0,2174,2138,2139],[2170,2133,2169,0,2175,2138,2174],[2170,2132,2133,0,2175,2137,2138],[2131,2132,2170,0,2136,2137,2175],[2171,2131,2170,0,2176,2136,2175],[2129,2131,2171,0,2134,2136,2176],[2129,2130,2131,0,2134,2135,2136],[2129,2171,2172,0,2134,2176,2177],[2172,2171,2170,0,2177,2176,2175],[2172,2170,2173,0,2177,2175,2178],[2173,2170,2174,0,2178,2175,2179],[2170,2169,2174,0,2175,2174,2179],[2174,2169,2175,0,2179,2174,2180],[2169,2168,2175,0,2174,2173,2180],[2168,2167,2175,0,2173,2172,2180],[2175,2167,2176,0,2180,2172,2181],[2167,2166,2176,0,2172,2171,2181],[2166,2177,2176,0,2171,2182,2181],[2166,2163,2177,0,2171,2168,2182],[2166,2165,2163,0,2171,2170,2168],[2177,2163,2162,0,2182,2168,2167],[2177,2162,2178,0,2182,2167,2183],[2178,2162,2179,0,2183,2167,2184],[2162,2160,2179,0,2167,2165,2184],[2179,2160,2180,0,2184,2165,2185],[2160,2159,2180,0,2165,2164,2185],[2180,2159,2181,0,2185,2164,2186],[2159,2182,2181,0,2164,2187,2186],[2159,2158,2182,0,2164,2163,2187],[2158,2041,2182,0,2163,2046,2187],[2158,2042,2041,0,2163,2047,2046],[2158,2045,2042,0,2163,2050,2047],[2183,2182,2041,0,2188,2187,2046],[2184,2182,2183,0,2189,2187,2188],[2184,2181,2182,0,2189,2186,2187],[2184,2180,2181,0,2189,2185,2186],[2185,2180,2184,0,2190,2185,2189],[2185,2186,2180,0,2190,2191,2185],[2187,2186,2185,0,2192,2191,2190],[2187,2188,2186,0,2192,2193,2191],[2189,2188,2187,0,2194,2193,2192],[2190,2188,2189,0,2195,2193,2194],[2190,2191,2188,0,2195,2196,2193],[2192,2191,2190,0,2197,2196,2195],[2193,2191,2192,0,2198,2196,2197],[2194,2191,2193,0,2199,2196,2198],[2194,2195,2191,0,2199,2200,2196],[2194,2196,2195,0,2199,2201,2200],[2197,2196,2194,0,2202,2201,2199],[2175,2196,2197,0,2180,2201,2202],[2175,2176,2196,0,2180,2181,2201],[2176,2177,2196,0,2181,2182,2201],[2177,2178,2196,0,2182,2183,2201],[2196,2178,2195,0,2201,2183,2200],[2195,2178,2198,0,2200,2183,2203],[2178,2179,2198,0,2183,2184,2203],[2198,2179,2186,0,2203,2184,2191],[2179,2180,2186,0,2184,2185,2191],[2198,2186,2188,0,2203,2191,2193],[2191,2198,2188,0,2196,2203,2193],[2195,2198,2191,0,2200,2203,2196],[2175,2197,2199,0,2180,2202,2204],[2199,2197,2194,0,2204,2202,2199],[2199,2194,2200,0,2204,2199,2205],[2200,2194,2201,0,2205,2199,2206],[2201,2194,2193,0,2206,2199,2198],[2201,2193,2192,0,2206,2198,2197],[2201,2192,2202,0,2206,2197,2207],[2110,2202,2192,0,2115,2207,2197],[2112,2202,2110,0,2117,2207,2115],[2112,2203,2202,0,2117,2208,2207],[2112,2204,2203,0,2117,2209,2208],[2113,2204,2112,0,2118,2209,2117],[2115,2204,2113,0,2120,2209,2118],[2115,2205,2204,0,2120,2210,2209],[2115,2206,2205,0,2120,2211,2210],[2117,2206,2115,0,2122,2211,2120],[2117,2119,2206,0,2122,2124,2211],[2119,2207,2206,0,2124,2212,2211],[2119,2208,2207,0,2124,2213,2212],[2120,2208,2119,0,2125,2213,2124],[2120,2123,2208,0,2125,2128,2213],[2123,2209,2208,0,2128,2214,2213],[2124,2209,2123,0,2129,2214,2128],[2209,2210,2208,0,2214,2215,2213],[2208,2210,2211,0,2213,2215,2216],[2208,2211,2212,0,2213,2216,2217],[2211,2213,2212,0,2216,2218,2217],[2214,2213,2211,0,2219,2218,2216],[2215,2213,2214,0,2220,2218,2219],[2215,2216,2213,0,2220,2221,2218],[2217,2216,2215,0,2222,2221,2220],[2218,2216,2217,0,2223,2221,2222],[2218,2219,2216,0,2223,2224,2221],[2220,2219,2218,0,2225,2224,2223],[2221,2219,2220,0,2226,2224,2225],[2221,2222,2219,0,2226,2227,2224],[2221,2223,2222,0,2226,2228,2227],[2221,2224,2223,0,2226,2229,2228],[2225,2224,2221,0,2230,2229,2226],[2225,2226,2224,0,2230,2231,2229],[2225,2227,2226,0,2230,2232,2231],[2172,2227,2225,0,2177,2232,2230],[2172,2228,2227,0,2177,2233,2232],[2172,2173,2228,0,2177,2178,2233],[2173,2174,2228,0,2178,2179,2233],[2174,2199,2228,0,2179,2204,2233],[2174,2175,2199,0,2179,2180,2204],[2228,2199,2200,0,2233,2204,2205],[2228,2200,2229,0,2233,2205,2234],[2229,2200,2230,0,2234,2205,2235],[2230,2200,2201,0,2235,2205,2206],[2230,2201,2202,0,2235,2206,2207],[2230,2202,2203,0,2235,2207,2208],[2204,2230,2203,0,2209,2235,2208],[2231,2230,2204,0,2236,2235,2209],[2226,2230,2231,0,2231,2235,2236],[2226,2229,2230,0,2231,2234,2235],[2228,2229,2226,0,2233,2234,2231],[2227,2228,2226,0,2232,2233,2231],[2223,2226,2231,0,2228,2231,2236],[2224,2226,2223,0,2229,2231,2228],[2223,2231,2204,0,2228,2236,2209],[2223,2204,2205,0,2228,2209,2210],[2232,2223,2205,0,2237,2228,2210],[2222,2223,2232,0,2227,2228,2237],[2219,2222,2232,0,2224,2227,2237],[2219,2232,2233,0,2224,2237,2238],[2233,2232,2207,0,2238,2237,2212],[2206,2207,2232,0,2211,2212,2237],[2206,2232,2205,0,2211,2237,2210],[2213,2233,2207,0,2218,2238,2212],[2213,2219,2233,0,2218,2224,2238],[2216,2219,2213,0,2221,2224,2218],[2213,2207,2212,0,2218,2212,2217],[2208,2212,2207,0,2213,2217,2212],[2234,2172,2225,0,2239,2177,2230],[2234,2129,2172,0,2239,2134,2177],[2127,2129,2234,0,2132,2134,2239],[2127,2128,2129,0,2132,2133,2134],[2127,2234,2225,0,2132,2239,2230],[2127,2225,2235,0,2132,2230,2240],[2235,2225,2221,0,2240,2230,2226],[2236,2235,2221,0,2241,2240,2226],[2127,2235,2236,0,2132,2240,2241],[2236,2126,2127,0,2241,2131,2132],[2125,2126,2236,0,2130,2131,2241],[2237,2125,2236,0,2242,2130,2241],[2238,2125,2237,0,2243,2130,2242],[2238,2124,2125,0,2243,2129,2130],[2239,2238,2237,0,2244,2243,2242],[2237,2218,2239,0,2242,2223,2244],[2237,2236,2218,0,2242,2241,2223],[2236,2220,2218,0,2241,2225,2223],[2236,2221,2220,0,2241,2226,2225],[2239,2218,2217,0,2244,2223,2222],[2110,2192,2108,0,2115,2197,2113],[2108,2192,2106,0,2113,2197,2111],[2106,2192,2190,0,2111,2197,2195],[2106,2190,2189,0,2111,2195,2194],[2106,2189,2103,0,2111,2194,2108],[2103,2189,2102,0,2108,2194,2107],[2102,2189,2187,0,2107,2194,2192],[2102,2187,2240,0,2107,2192,2245],[2240,2187,2185,0,2245,2192,2190],[2240,2185,2241,0,2245,2190,2246],[2241,2185,2184,0,2246,2190,2189],[2241,2184,2242,0,2246,2189,2247],[2184,2243,2242,0,2189,2248,2247],[2243,2184,2244,0,2248,2189,2249],[2184,2183,2244,0,2189,2188,2249],[2244,2183,2041,0,2249,2188,2046],[2244,2041,2245,0,2249,2046,2250],[2245,2041,2039,0,2250,2046,2044],[2245,2039,2038,0,2250,2044,2043],[2245,2038,2246,0,2250,2043,2251],[2246,2038,2247,0,2251,2043,2252],[2247,2038,2035,0,2252,2043,2040],[2035,2248,2247,0,2040,2253,2252],[2248,2035,2033,0,2253,2040,2038],[2248,2033,2249,0,2253,2038,2254],[2249,2033,2032,0,2254,2038,2037],[2249,2032,2250,0,2254,2037,2255],[2032,2251,2250,0,2037,2256,2255],[2024,2251,2032,0,2029,2256,2037],[2024,2022,2251,0,2029,2027,2256],[2022,2252,2251,0,2027,2257,2256],[2022,2020,2252,0,2027,2025,2257],[2020,2019,2252,0,2025,2024,2257],[2019,2018,2252,0,2024,2021,2257],[2253,2252,2018,0,2258,2257,2021],[2252,2253,2254,0,2257,2258,2259],[2254,2253,2255,0,2259,2258,2260],[2255,2253,2256,0,2260,2258,2261],[2256,2253,2012,0,2261,2258,2262],[2012,2253,2018,0,2262,2258,2021],[2012,2018,2013,0,2262,2021,2023],[2256,2010,2257,0,2261,2016,2263],[2010,2009,2257,0,2016,2018,2263],[2258,2257,2009,0,2264,2263,2018],[2255,2257,2258,0,2260,2263,2264],[2255,2256,2257,0,2260,2261,2263],[2255,2258,2259,0,2260,2264,2265],[2260,2259,2258,0,2266,2265,2264],[2028,2259,2260,0,2033,2265,2266],[2028,2261,2259,0,2033,2267,2265],[2029,2261,2028,0,2034,2267,2033],[2029,2262,2261,0,2034,2268,2267],[2030,2262,2029,0,2035,2268,2034],[2034,2262,2030,0,2039,2268,2035],[2034,2036,2262,0,2039,2041,2268],[2036,2263,2262,0,2041,2269,2268],[2036,2264,2263,0,2041,2270,2269],[2037,2264,2036,0,2042,2270,2041],[2037,2265,2264,0,2042,2271,2270],[2037,2040,2265,0,2042,2045,2271],[2043,2265,2040,0,2048,2271,2045],[2043,2266,2265,0,2048,2272,2271],[2043,2267,2266,0,2048,2273,2272],[2044,2267,2043,0,2049,2273,2048],[2044,2268,2267,0,2049,2274,2273],[2046,2268,2044,0,2051,2274,2049],[2048,2268,2046,0,2053,2274,2051],[2048,2269,2268,0,2053,2275,2274],[2048,2050,2269,0,2053,2055,2275],[2050,2270,2269,0,2055,2276,2275],[2052,2270,2050,0,2057,2276,2055],[2052,2271,2270,0,2057,2277,2276],[2272,2271,2052,0,2278,2277,2057],[2272,2273,2271,0,2278,2279,2277],[2274,2273,2272,0,2280,2279,2278],[2274,2275,2273,0,2280,2281,2279],[2274,2276,2275,0,2280,2282,2281],[2277,2276,2274,0,2283,2282,2280],[2277,2278,2276,0,2283,2284,2282],[2277,2279,2278,0,2283,2285,2284],[2280,2279,2277,0,2286,2285,2283],[2280,2281,2279,0,2286,2287,2285],[2282,2281,2280,0,2288,2287,2286],[2282,2283,2281,0,2288,2289,2287],[2284,2283,2282,0,2290,2289,2288],[2284,2285,2283,0,2290,2291,2289],[2284,2247,2285,0,2290,2252,2291],[2246,2247,2284,0,2251,2252,2290],[2246,2284,2286,0,2251,2290,2292],[2286,2284,2066,0,2292,2290,2071],[2066,2284,2282,0,2071,2290,2288],[2066,2282,2065,0,2071,2288,2070],[2282,2280,2065,0,2288,2286,2070],[2065,2280,2287,0,2070,2286,2293],[2280,2288,2287,0,2286,2294,2293],[2056,2288,2280,0,2061,2294,2286],[2058,2288,2056,0,2063,2294,2061],[2058,2289,2288,0,2063,2295,2294],[2058,2290,2289,0,2063,2296,2295],[2058,2060,2290,0,2063,2065,2296],[2290,2060,2291,0,2296,2065,2297],[2062,2291,2060,0,2067,2297,2065],[2062,2292,2291,0,2067,2298,2297],[2062,2293,2292,0,2067,2299,2298],[2062,2063,2293,0,2067,2068,2299],[2063,2294,2293,0,2068,2300,2299],[2063,2287,2294,0,2068,2293,2300],[2065,2287,2063,0,2070,2293,2068],[2287,2289,2294,0,2293,2295,2300],[2287,2288,2289,0,2293,2294,2295],[2294,2289,2295,0,2300,2295,2301],[2290,2295,2289,0,2296,2301,2295],[2290,2296,2295,0,2296,2302,2301],[2291,2296,2290,0,2297,2302,2296],[2291,2297,2296,0,2297,2303,2302],[2292,2297,2291,0,2298,2303,2297],[2292,2298,2297,0,2298,2304,2303],[2292,2299,2298,0,2298,2305,2304],[2292,2300,2299,0,2298,2306,2305],[2292,2293,2300,0,2298,2299,2306],[2293,2301,2300,0,2299,2307,2306],[2294,2301,2293,0,2300,2307,2299],[2294,2295,2301,0,2300,2301,2307],[2301,2295,2302,0,2307,2301,2308],[2296,2302,2295,0,2302,2308,2301],[2296,2303,2302,0,2302,2309,2308],[2297,2303,2296,0,2303,2309,2302],[2304,2303,2297,0,2310,2309,2303],[2303,2304,2302,0,2309,2310,2308],[2302,2304,2305,0,2308,2310,2311],[2304,2306,2305,0,2310,2312,2311],[2304,2307,2306,0,2310,2313,2312],[2308,2307,2304,0,2314,2313,2310],[2309,2307,2308,0,2315,2313,2314],[2309,2310,2307,0,2315,2316,2313],[2311,2310,2309,0,2317,2316,2315],[2312,2310,2311,0,2318,2316,2317],[2312,2313,2310,0,2318,2319,2316],[2314,2313,2312,0,2320,2319,2318],[2315,2313,2314,0,2321,2319,2320],[2316,2313,2315,0,2322,2319,2321],[2316,2306,2313,0,2322,2312,2319],[2317,2306,2316,0,2323,2312,2322],[2317,2305,2306,0,2323,2311,2312],[2318,2305,2317,0,2324,2311,2323],[2318,2302,2305,0,2324,2308,2311],[2301,2302,2318,0,2307,2308,2324],[2300,2301,2318,0,2306,2307,2324],[2299,2300,2318,0,2305,2306,2324],[2317,2299,2318,0,2323,2305,2324],[2319,2299,2317,0,2325,2305,2323],[2320,2299,2319,0,2326,2305,2325],[2298,2299,2320,0,2304,2305,2326],[2298,2320,2321,0,2304,2326,2327],[2320,2308,2321,0,2326,2314,2327],[2320,2322,2308,0,2326,2328,2314],[2320,2319,2322,0,2326,2325,2328],[2322,2319,2323,0,2328,2325,2329],[2319,2316,2323,0,2325,2322,2329],[2319,2317,2316,0,2325,2323,2322],[2323,2316,2315,0,2329,2322,2321],[2324,2323,2315,0,2330,2329,2321],[2325,2323,2324,0,2331,2329,2330],[2325,2322,2323,0,2331,2328,2329],[2322,2325,2309,0,2328,2331,2315],[2325,2326,2309,0,2331,2332,2315],[2325,2327,2326,0,2331,2333,2332],[2325,2324,2327,0,2331,2330,2333],[2327,2324,2315,0,2333,2330,2321],[2327,2315,2314,0,2333,2321,2320],[2328,2327,2314,0,2334,2333,2320],[2326,2327,2328,0,2332,2333,2334],[2326,2328,2329,0,2332,2334,2335],[2329,2328,2330,0,2335,2334,2336],[2328,2331,2330,0,2334,2337,2336],[2328,2314,2331,0,2334,2320,2337],[2314,2312,2331,0,2320,2318,2337],[2331,2312,2332,0,2337,2318,2338],[2312,2333,2332,0,2318,2339,2338],[2334,2333,2312,0,2340,2339,2318],[2335,2333,2334,0,2341,2339,2340],[2336,2333,2335,0,2342,2339,2341],[2333,2337,2332,0,2339,2343,2338],[2332,2337,2338,0,2338,2343,2344],[2337,2339,2338,0,2343,2345,2344],[2343,2341,2342,0,2346,2347,2348],[2345,2343,2346,0,2349,2346,2350],[2346,2343,2342,0,2350,2346,2348],[2347,2346,2342,0,2351,2350,2348],[2348,2346,2347,0,2352,2350,2351],[2348,2349,2346,0,2352,2353,2350],[2351,2350,2348,0,2354,2355,2352],[2352,2354,2353,0,2356,2357,2358],[2357,2344,2354,0,2359,2360,2357],[2338,2344,2357,0,2344,2360,2359],[2358,2332,2338,0,2361,2338,2344],[2331,2332,2358,0,2337,2338,2361],[2330,2331,2358,0,2336,2337,2361],[2358,2357,2330,0,2361,2359,2336],[2330,2357,2359,0,2336,2359,2362],[2362,2352,2351,0,2363,2356,2354],[2362,2348,2363,0,2363,2352,2364],[2347,2363,2348,0,2351,2364,2352],[2363,2347,2364,0,2364,2351,2365],[2365,2364,2347,0,2366,2365,2351],[2369,2361,2363,0,2367,2368,2364],[2370,2361,2369,0,2369,2368,2367],[2370,2330,2361,0,2369,2336,2368],[2329,2330,2370,0,2335,2336,2369],[2329,2370,2371,0,2335,2369,2370],[2370,2369,2371,0,2369,2367,2370],[2369,2367,2371,0,2367,2371,2370],[2367,2369,2368,0,2371,2367,2372],[2372,2371,2367,0,2373,2370,2371],[2371,2372,2373,0,2370,2373,2374],[2373,2372,2334,0,2374,2373,2340],[2372,2335,2334,0,2373,2341,2340],[2366,2335,2372,0,2375,2341,2373],[2347,2342,2365,0,2351,2348,2366],[2367,2366,2372,0,2371,2375,2373],[2373,2334,2311,0,2374,2340,2317],[2311,2334,2312,0,2317,2340,2318],[2373,2311,2309,0,2374,2317,2315],[2326,2373,2309,0,2332,2374,2315],[2326,2329,2373,0,2332,2335,2374],[2329,2371,2373,0,2335,2370,2374],[2361,2330,2359,0,2368,2336,2362],[2361,2362,2363,0,2368,2363,2364],[2344,2345,2354,0,2360,2349,2357],[2349,2345,2346,0,2353,2349,2350],[2322,2309,2308,0,2328,2315,2314],[2304,2321,2308,0,2310,2327,2314],[2321,2304,2297,0,2327,2310,2303],[2298,2321,2297,0,2304,2327,2303],[2313,2306,2307,0,2319,2312,2313],[2310,2313,2307,0,2316,2319,2313],[2056,2280,2277,0,2061,2286,2283],[2056,2277,2274,0,2061,2283,2280],[2056,2274,2272,0,2061,2280,2278],[2056,2272,2054,0,2061,2278,2059],[2054,2272,2052,0,2059,2278,2057],[2066,2374,2286,0,2071,2376,2292],[2374,2066,2091,0,2376,2071,2096],[2091,2066,2067,0,2096,2071,2072],[2091,2067,2375,0,2096,2072,2377],[2375,2067,2376,0,2377,2072,2378],[2067,2068,2376,0,2072,2073,2378],[2068,2377,2376,0,2073,2379,2378],[2068,2378,2377,0,2073,2380,2379],[2068,2069,2378,0,2073,2074,2380],[2069,2072,2378,0,2074,2077,2380],[2378,2072,2379,0,2380,2077,2381],[2380,2379,2072,0,2382,2381,2077],[2381,2379,2380,0,2383,2381,2382],[2382,2379,2381,0,2384,2381,2383],[2382,2383,2379,0,2384,2385,2381],[2384,2383,2382,0,2386,2385,2384],[2384,2385,2383,0,2386,2387,2385],[2384,2386,2385,0,2386,2388,2387],[2387,2386,2384,0,2389,2388,2386],[2386,2387,2388,0,2388,2389,2390],[2387,2389,2388,0,2389,2391,2390],[2387,2390,2389,0,2389,2392,2391],[2387,2391,2390,0,2389,2393,2392],[2387,2384,2391,0,2389,2386,2393],[2391,2384,2382,0,2393,2386,2384],[2391,2382,2392,0,2393,2384,2394],[2382,2381,2392,0,2384,2383,2394],[2392,2381,2393,0,2394,2383,2395],[2394,2393,2381,0,2396,2395,2383],[2394,2395,2393,0,2396,2397,2395],[2395,2394,2389,0,2397,2396,2391],[2389,2394,2380,0,2391,2396,2382],[2380,2394,2381,0,2382,2396,2383],[2389,2380,2388,0,2391,2382,2390],[2074,2388,2380,0,2079,2390,2382],[2396,2388,2074,0,2398,2390,2079],[2396,2386,2388,0,2398,2388,2390],[2396,2385,2386,0,2398,2387,2388],[2396,2377,2385,0,2398,2379,2387],[2397,2377,2396,0,2399,2379,2398],[2397,2376,2377,0,2399,2378,2379],[2375,2376,2397,0,2377,2378,2399],[2375,2397,2077,0,2377,2399,2082],[2077,2397,2075,0,2082,2399,2080],[2397,2396,2075,0,2399,2398,2080],[2075,2396,2074,0,2080,2398,2079],[2375,2077,2398,0,2377,2082,2400],[2080,2398,2077,0,2085,2400,2082],[2080,2082,2398,0,2085,2087,2400],[2082,2399,2398,0,2087,2401,2400],[2082,2400,2399,0,2087,2402,2401],[2083,2400,2082,0,2088,2402,2087],[2083,2401,2400,0,2088,2403,2402],[2402,2401,2083,0,2404,2403,2088],[2403,2401,2402,0,2405,2403,2404],[2403,2404,2401,0,2405,2406,2403],[2403,2405,2404,0,2405,2407,2406],[2405,2403,2406,0,2407,2405,2408],[2406,2403,2407,0,2408,2405,2409],[2407,2403,2402,0,2409,2405,2404],[2402,2408,2407,0,2404,2410,2409],[2084,2408,2402,0,2089,2410,2404],[2084,2086,2408,0,2089,2091,2410],[2086,2409,2408,0,2091,2411,2410],[2410,2409,2086,0,2412,2411,2091],[2410,2398,2409,0,2412,2400,2411],[2375,2398,2410,0,2377,2400,2412],[2089,2375,2410,0,2094,2377,2412],[2091,2375,2089,0,2096,2377,2094],[2089,2410,2087,0,2094,2412,2092],[2087,2410,2086,0,2092,2412,2091],[2398,2399,2409,0,2400,2401,2411],[2409,2399,2411,0,2411,2401,2413],[2411,2399,2412,0,2413,2401,2414],[2400,2412,2399,0,2402,2414,2401],[2413,2412,2400,0,2415,2414,2402],[2414,2412,2413,0,2416,2414,2415],[2414,2411,2412,0,2416,2413,2414],[2407,2411,2414,0,2409,2413,2416],[2407,2408,2411,0,2409,2410,2413],[2408,2409,2411,0,2410,2411,2413],[2406,2407,2414,0,2408,2409,2416],[2406,2414,2415,0,2408,2416,2417],[2414,2413,2415,0,2416,2415,2417],[2415,2413,2416,0,2417,2415,2418],[2416,2413,2417,0,2418,2415,2419],[2417,2413,2400,0,2419,2415,2402],[2404,2417,2400,0,2406,2419,2402],[2418,2417,2404,0,2420,2419,2406],[2418,2419,2417,0,2420,2421,2419],[2418,2420,2419,0,2420,2422,2421],[2418,2421,2420,0,2420,2423,2422],[2422,2421,2418,0,2424,2423,2420],[2422,2423,2421,0,2424,2425,2423],[2424,2423,2422,0,2426,2425,2424],[2425,2423,2424,0,2427,2425,2426],[2425,2426,2423,0,2427,2428,2425],[2425,2427,2426,0,2427,2429,2428],[2427,2425,2428,0,2429,2427,2430],[2428,2425,2429,0,2430,2427,2431],[2425,2424,2429,0,2427,2426,2431],[2429,2424,2430,0,2431,2426,2432],[2424,2422,2430,0,2426,2424,2432],[2422,2431,2430,0,2424,2433,2432],[2405,2431,2422,0,2407,2433,2424],[2405,2406,2431,0,2407,2408,2433],[2406,2415,2431,0,2408,2417,2433],[2431,2415,2432,0,2433,2417,2434],[2432,2415,2416,0,2434,2417,2418],[2432,2416,2433,0,2434,2418,2435],[2420,2433,2416,0,2422,2435,2418],[2434,2433,2420,0,2436,2435,2422],[2432,2433,2434,0,2434,2435,2436],[2435,2432,2434,0,2437,2434,2436],[2430,2432,2435,0,2432,2434,2437],[2431,2432,2430,0,2433,2434,2432],[2429,2430,2435,0,2431,2432,2437],[2429,2435,2436,0,2431,2437,2438],[2436,2435,2434,0,2438,2437,2436],[2436,2434,2437,0,2438,2436,2439],[2437,2434,2438,0,2439,2436,2440],[2438,2434,2420,0,2440,2436,2422],[2438,2420,2423,0,2440,2422,2425],[2423,2420,2421,0,2425,2422,2423],[2439,2438,2423,0,2441,2440,2425],[2439,2437,2438,0,2441,2439,2440],[2440,2437,2439,0,2442,2439,2441],[2440,2441,2437,0,2442,2443,2439],[2442,2441,2440,0,2444,2443,2442],[2442,2443,2441,0,2444,2445,2443],[2448,2441,2447,0,2446,2443,2447],[2448,2437,2441,0,2446,2439,2443],[2449,2437,2448,0,2448,2439,2446],[2436,2437,2449,0,2438,2439,2448],[2428,2436,2449,0,2430,2438,2448],[2428,2429,2436,0,2430,2431,2438],[2450,2428,2449,0,2449,2430,2448],[2450,2427,2428,0,2449,2429,2430],[2450,2451,2427,0,2449,2450,2429],[2451,2450,2452,0,2450,2449,2451],[2452,2450,2453,0,2451,2449,2452],[2450,2454,2453,0,2449,2453,2452],[2450,2455,2454,0,2449,2454,2453],[2450,2449,2455,0,2449,2448,2454],[2449,2448,2455,0,2448,2446,2454],[2455,2448,2456,0,2454,2446,2455],[2456,2448,2447,0,2455,2446,2447],[2456,2447,2457,0,2455,2447,2456],[2456,2458,2454,0,2455,2457,2453],[2461,2445,2444,0,2458,2459,2460],[2462,2461,2444,0,2461,2458,2460],[2460,2461,2462,0,2462,2458,2461],[2463,2460,2462,0,2463,2462,2461],[2472,2463,2462,0,2464,2463,2461],[2472,2462,2473,0,2464,2461,2465],[2473,2462,2444,0,2465,2461,2460],[2473,2444,2474,0,2465,2460,2466],[2476,2475,2442,0,2467,2468,2444],[2477,2475,2476,0,2469,2468,2467],[2481,2452,2480,0,2470,2451,2471],[2451,2452,2481,0,2450,2451,2470],[2451,2481,2482,0,2450,2470,2472],[2481,2477,2482,0,2470,2469,2472],[2481,2479,2477,0,2470,2473,2469],[2477,2476,2482,0,2469,2467,2472],[2482,2476,2426,0,2472,2467,2428],[2476,2440,2426,0,2467,2442,2428],[2476,2442,2440,0,2467,2444,2442],[2426,2440,2439,0,2428,2442,2441],[2426,2439,2423,0,2428,2441,2425],[2427,2482,2426,0,2429,2472,2428],[2451,2482,2427,0,2450,2472,2429],[2420,2416,2419,0,2422,2418,2421],[2416,2417,2419,0,2418,2419,2421],[2405,2422,2418,0,2407,2424,2420],[2405,2418,2404,0,2407,2420,2406],[2404,2400,2401,0,2406,2402,2403],[2084,2402,2083,0,2089,2404,2088],[2377,2378,2385,0,2379,2380,2387],[2385,2378,2383,0,2387,2380,2385],[2378,2379,2383,0,2380,2381,2385],[2073,2074,2380,0,2078,2079,2382],[2073,2380,2072,0,2078,2382,2077],[2483,2395,2389,0,2474,2397,2391],[2483,2484,2395,0,2474,2475,2397],[2483,2485,2484,0,2474,2476,2475],[2390,2485,2483,0,2392,2476,2474],[2390,2486,2485,0,2392,2477,2476],[2390,2487,2486,0,2392,2478,2477],[2390,2391,2487,0,2392,2393,2478],[2487,2391,2392,0,2478,2393,2394],[2487,2392,2488,0,2478,2394,2479],[2392,2393,2488,0,2394,2395,2479],[2488,2393,2489,0,2479,2395,2480],[2484,2489,2393,0,2475,2480,2395],[2490,2489,2484,0,2481,2480,2475],[2491,2489,2490,0,2482,2480,2481],[2488,2489,2491,0,2479,2480,2482],[2492,2488,2491,0,2483,2479,2482],[2492,2487,2488,0,2483,2478,2479],[2486,2487,2492,0,2477,2478,2483],[2493,2486,2492,0,2484,2477,2483],[2493,2494,2486,0,2484,2485,2477],[2493,2495,2494,0,2484,2486,2485],[2495,2493,2496,0,2486,2484,2487],[2496,2493,2492,0,2487,2484,2483],[2496,2492,2491,0,2487,2483,2482],[2496,2491,2497,0,2487,2482,2488],[2497,2491,2490,0,2488,2482,2481],[2497,2490,2498,0,2488,2481,2489],[2498,2490,2499,0,2489,2481,2490],[2499,2490,2484,0,2490,2481,2475],[2494,2499,2484,0,2485,2490,2475],[2500,2499,2494,0,2491,2490,2485],[2500,2498,2499,0,2491,2489,2490],[2501,2498,2500,0,2492,2489,2491],[2501,2502,2498,0,2492,2493,2489],[2501,2503,2502,0,2492,2494,2493],[2504,2503,2501,0,2495,2494,2492],[2504,2505,2503,0,2495,2496,2494],[2506,2505,2504,0,2497,2496,2495],[2509,2510,2507,0,2498,2499,2500],[2509,2511,2510,0,2498,2501,2499],[2509,2512,2511,0,2498,2502,2501],[2513,2512,2509,0,2503,2502,2498],[2513,2516,2515,0,2503,2504,2505],[2517,2516,2513,0,2506,2504,2503],[2517,2518,2516,0,2506,2507,2504],[2518,2517,2519,0,2507,2506,2508],[2517,2520,2519,0,2506,2509,2508],[2517,2513,2520,0,2506,2503,2509],[2520,2513,2509,0,2509,2503,2498],[2520,2508,2506,0,2509,2510,2497],[2519,2520,2506,0,2508,2509,2497],[2519,2506,2504,0,2508,2497,2495],[2519,2504,2521,0,2508,2495,2511],[2504,2501,2521,0,2495,2492,2511],[2521,2501,2500,0,2511,2492,2491],[2521,2500,2494,0,2511,2491,2485],[2495,2521,2494,0,2486,2511,2485],[2518,2521,2495,0,2507,2511,2486],[2518,2519,2521,0,2507,2508,2511],[2518,2495,2522,0,2507,2486,2512],[2522,2495,2496,0,2512,2486,2487],[2522,2496,2497,0,2512,2487,2488],[2522,2497,2523,0,2512,2488,2513],[2523,2497,2498,0,2513,2488,2489],[2523,2498,2524,0,2513,2489,2514],[2524,2498,2502,0,2514,2489,2493],[2524,2502,2525,0,2514,2493,2515],[2503,2526,2502,0,2494,2516,2493],[2529,2528,2527,0,2517,2518,2519],[2532,2525,2531,0,2520,2515,2521],[2532,2524,2525,0,2520,2514,2515],[2533,2524,2532,0,2522,2514,2520],[2523,2524,2533,0,2513,2514,2522],[2516,2523,2533,0,2504,2513,2522],[2516,2522,2523,0,2504,2512,2513],[2516,2518,2522,0,2504,2507,2512],[2516,2533,2534,0,2504,2522,2523],[2532,2535,2534,0,2520,2524,2523],[2536,2529,2537,0,2525,2517,2526],[2537,2529,2527,0,2526,2517,2519],[2510,2537,2527,0,2499,2526,2519],[2511,2537,2510,0,2501,2526,2499],[2511,2538,2537,0,2501,2527,2526],[2512,2541,2540,0,2502,2528,2529],[2516,2534,2515,0,2504,2523,2505],[2534,2535,2544,0,2523,2524,2530],[2544,2535,2536,0,2530,2524,2525],[2538,2536,2537,0,2527,2525,2526],[2510,2527,2546,0,2499,2519,2531],[2507,2510,2546,0,2500,2499,2531],[2494,2484,2485,0,2485,2475,2476],[2486,2494,2485,0,2477,2485,2476],[2395,2484,2393,0,2397,2475,2395],[2390,2483,2389,0,2392,2474,2391],[2374,2091,2092,0,2376,2096,2097],[2243,2374,2092,0,2248,2376,2097],[2374,2243,2547,0,2376,2248,2532],[2243,2244,2547,0,2248,2249,2532],[2547,2244,2245,0,2532,2249,2250],[2547,2245,2246,0,2532,2250,2251],[2547,2246,2286,0,2532,2251,2292],[2374,2547,2286,0,2376,2532,2292],[2243,2092,2242,0,2248,2097,2247],[2096,2242,2092,0,2101,2247,2097],[2098,2242,2096,0,2103,2247,2101],[2098,2241,2242,0,2103,2246,2247],[2098,2240,2241,0,2103,2245,2246],[2100,2240,2098,0,2105,2245,2103],[2100,2102,2240,0,2105,2107,2245],[2093,2096,2092,0,2098,2101,2097],[2247,2248,2285,0,2252,2253,2291],[2285,2248,2283,0,2291,2253,2289],[2248,2548,2283,0,2253,2533,2289],[2248,2549,2548,0,2253,2534,2533],[2549,2248,2249,0,2534,2253,2254],[2549,2249,2550,0,2534,2254,2535],[2249,2551,2550,0,2254,2536,2535],[2249,2250,2551,0,2254,2255,2536],[2551,2250,2552,0,2536,2255,2537],[2552,2250,2553,0,2537,2255,2538],[2250,2251,2553,0,2255,2256,2538],[2251,2252,2553,0,2256,2257,2538],[2252,2254,2553,0,2257,2259,2538],[2553,2254,2255,0,2538,2259,2260],[2554,2553,2255,0,2539,2538,2260],[2555,2553,2554,0,2540,2538,2539],[2552,2553,2555,0,2537,2538,2540],[2556,2552,2555,0,2541,2537,2540],[2557,2552,2556,0,2542,2537,2541],[2557,2551,2552,0,2542,2536,2537],[2550,2551,2557,0,2535,2536,2542],[2550,2557,2558,0,2535,2542,2543],[2558,2557,2266,0,2543,2542,2272],[2266,2557,2556,0,2272,2542,2541],[2266,2556,2264,0,2272,2541,2270],[2556,2555,2264,0,2541,2540,2270],[2264,2555,2263,0,2270,2540,2269],[2555,2554,2263,0,2540,2539,2269],[2263,2554,2261,0,2269,2539,2267],[2554,2259,2261,0,2539,2265,2267],[2554,2255,2259,0,2539,2260,2265],[2262,2263,2261,0,2268,2269,2267],[2266,2264,2265,0,2272,2270,2271],[2267,2558,2266,0,2273,2543,2272],[2268,2558,2267,0,2274,2543,2273],[2268,2550,2558,0,2274,2535,2543],[2269,2550,2268,0,2275,2535,2274],[2269,2549,2550,0,2275,2534,2535],[2548,2549,2269,0,2533,2534,2275],[2269,2270,2548,0,2275,2276,2533],[2548,2270,2283,0,2533,2276,2289],[2283,2270,2281,0,2289,2276,2287],[2270,2559,2281,0,2276,2544,2287],[2270,2560,2559,0,2276,2545,2544],[2271,2560,2270,0,2277,2545,2276],[2273,2560,2271,0,2279,2545,2277],[2273,2561,2560,0,2279,2546,2545],[2273,2562,2561,0,2279,2547,2546],[2275,2562,2273,0,2281,2547,2279],[2275,2563,2562,0,2281,2548,2547],[2275,2564,2563,0,2281,2549,2548],[2276,2564,2275,0,2282,2549,2281],[2276,2565,2564,0,2282,2550,2549],[2276,2566,2565,0,2282,2551,2550],[2276,2278,2566,0,2282,2284,2551],[2278,2567,2566,0,2284,2552,2551],[2278,2559,2567,0,2284,2544,2552],[2279,2559,2278,0,2285,2544,2284],[2281,2559,2279,0,2287,2544,2285],[2559,2560,2567,0,2544,2545,2552],[2560,2561,2567,0,2545,2546,2552],[2567,2561,2568,0,2552,2546,2553],[2563,2568,2561,0,2548,2553,2546],[2563,2569,2568,0,2548,2554,2553],[2563,2570,2569,0,2548,2555,2554],[2571,2570,2563,0,2556,2555,2548],[2571,2572,2570,0,2556,2557,2555],[2571,2573,2572,0,2556,2558,2557],[2571,2574,2573,0,2556,2559,2558],[2575,2574,2571,0,2560,2559,2556],[2575,2576,2574,0,2560,2561,2559],[2575,2577,2576,0,2560,2562,2561],[2565,2577,2575,0,2550,2562,2560],[2565,2566,2577,0,2550,2551,2562],[2577,2566,2578,0,2562,2551,2563],[2567,2578,2566,0,2552,2563,2551],[2567,2568,2578,0,2552,2553,2563],[2578,2568,2579,0,2563,2553,2564],[2568,2569,2579,0,2553,2554,2564],[2579,2569,2580,0,2564,2554,2565],[2569,2581,2580,0,2554,2566,2565],[2570,2581,2569,0,2555,2566,2554],[2570,2572,2581,0,2555,2557,2566],[2572,2582,2581,0,2557,2567,2566],[2573,2582,2572,0,2558,2567,2557],[2573,2583,2582,0,2558,2568,2567],[2574,2583,2573,0,2559,2568,2558],[2574,2584,2583,0,2559,2569,2568],[2574,2585,2584,0,2559,2570,2569],[2574,2576,2585,0,2559,2561,2570],[2576,2580,2585,0,2561,2565,2570],[2576,2579,2580,0,2561,2564,2565],[2577,2579,2576,0,2562,2564,2561],[2577,2578,2579,0,2562,2563,2564],[2585,2580,2586,0,2570,2565,2571],[2580,2587,2586,0,2565,2572,2571],[2580,2581,2587,0,2565,2566,2572],[2582,2587,2581,0,2567,2572,2566],[2588,2587,2582,0,2573,2572,2567],[2589,2587,2588,0,2574,2572,2573],[2586,2587,2589,0,2571,2572,2574],[2590,2586,2589,0,2575,2571,2574],[2590,2585,2586,0,2575,2570,2571],[2590,2584,2585,0,2575,2569,2570],[2591,2584,2590,0,2576,2569,2575],[2584,2591,2583,0,2569,2576,2568],[2591,2592,2583,0,2576,2577,2568],[2591,2593,2592,0,2576,2578,2577],[2591,2594,2593,0,2576,2579,2578],[2591,2590,2594,0,2576,2575,2579],[2590,2589,2594,0,2575,2574,2579],[2594,2589,2595,0,2579,2574,2580],[2589,2588,2595,0,2574,2573,2580],[2588,2596,2595,0,2573,2581,2580],[2597,2596,2588,0,2582,2581,2573],[2597,2598,2596,0,2582,2583,2581],[2592,2598,2597,0,2577,2583,2582],[2599,2598,2592,0,2584,2583,2577],[2598,2599,2600,0,2583,2584,2585],[2599,2601,2600,0,2584,2586,2585],[2599,2602,2601,0,2584,2587,2586],[2599,2603,2602,0,2584,2588,2587],[2593,2603,2599,0,2578,2588,2584],[2593,2604,2603,0,2578,2589,2588],[2593,2594,2604,0,2578,2579,2589],[2594,2595,2604,0,2579,2580,2589],[2595,2605,2604,0,2580,2590,2589],[2595,2596,2605,0,2580,2581,2590],[2596,2606,2605,0,2581,2591,2590],[2596,2607,2606,0,2581,2592,2591],[2600,2607,2596,0,2585,2592,2581],[2608,2607,2600,0,2593,2592,2585],[2609,2607,2608,0,2594,2592,2593],[2607,2610,2606,0,2592,2595,2591],[2606,2610,2611,0,2591,2595,2596],[2610,2612,2611,0,2595,2597,2596],[2617,2615,2616,0,2598,2599,2600],[2617,2618,2615,0,2598,2601,2599],[2619,2618,2617,0,2602,2601,2598],[2620,2618,2619,0,2603,2601,2602],[2620,2621,2618,0,2603,2604,2601],[2630,2628,2629,0,2605,2606,2607],[2630,2631,2628,0,2605,2608,2606],[2632,2631,2630,0,2609,2608,2605],[2606,2611,2632,0,2591,2596,2609],[2605,2606,2632,0,2590,2591,2609],[2605,2632,2630,0,2590,2609,2605],[2605,2630,2604,0,2590,2605,2589],[2603,2604,2630,0,2588,2589,2605],[2603,2630,2633,0,2588,2605,2610],[2633,2630,2629,0,2610,2605,2607],[2634,2633,2629,0,2611,2610,2607],[2602,2633,2634,0,2587,2610,2611],[2603,2633,2602,0,2588,2610,2587],[2602,2634,2635,0,2587,2611,2612],[2635,2634,2636,0,2612,2611,2613],[2634,2629,2637,0,2611,2607,2614],[2629,2625,2637,0,2607,2615,2614],[2625,2620,2637,0,2615,2603,2614],[2619,2637,2620,0,2602,2614,2603],[2601,2635,2639,0,2586,2612,2616],[2601,2602,2635,0,2586,2587,2612],[2639,2608,2601,0,2616,2593,2586],[2640,2619,2617,0,2617,2602,2598],[2601,2608,2600,0,2586,2593,2585],[2611,2614,2631,0,2596,2618,2608],[2631,2614,2641,0,2608,2618,2619],[2641,2614,2642,0,2619,2618,2620],[2618,2642,2615,0,2601,2620,2599],[2618,2621,2642,0,2601,2604,2620],[2598,2600,2596,0,2583,2585,2581],[2592,2593,2599,0,2577,2578,2584],[2592,2597,2582,0,2577,2582,2567],[2582,2597,2588,0,2567,2582,2573],[2592,2582,2583,0,2577,2567,2568],[2565,2575,2564,0,2550,2560,2549],[2564,2575,2571,0,2549,2560,2556],[2571,2563,2564,0,2556,2548,2549],[2562,2563,2561,0,2547,2548,2546],[2034,2030,2031,0,2039,2035,2036],[2028,2260,2645,0,2033,2266,2621],[2260,2009,2645,0,2266,2018,2621],[2260,2258,2009,0,2266,2264,2018],[2009,1999,2645,0,2018,2622,2621],[2009,1997,1999,0,2018,2008,2622],[2009,1996,1997,0,2018,2007,2008],[2645,1999,2002,0,2621,2622,2011],[2645,2002,2021,0,2621,2011,2026],[2023,2645,2021,0,2028,2621,2026],[2027,2645,2023,0,2032,2621,2028],[2028,2645,2027,0,2033,2621,2032],[2139,2164,2138,0,2144,2169,2143],[2139,2646,2164,0,2144,2623,2169],[2139,2647,2646,0,2144,2624,2623],[2140,2647,2139,0,2145,2624,2144],[2141,2647,2140,0,2146,2624,2145],[2141,2146,2647,0,2146,2151,2624],[2146,2153,2647,0,2151,2158,2624],[2647,2153,2646,0,2624,2158,2623],[2646,2153,2648,0,2623,2158,2625],[2153,2154,2648,0,2158,2159,2625],[2648,2154,2649,0,2625,2159,2626],[2649,2154,2156,0,2626,2159,2161],[2649,2156,2157,0,2626,2161,2162],[2649,2157,2161,0,2626,2162,2166],[2161,2648,2649,0,2166,2625,2626],[2164,2648,2161,0,2169,2625,2166],[2646,2648,2164,0,2623,2625,2169],[2002,2016,2017,0,2011,2627,2022],[2005,2014,2004,0,2013,2020,2012],[1988,1989,1987,3,2000,2002,1999],[1991,1990,1988,3,2003,2001,2000],[1993,1992,1991,3,2628,2004,2003],[1994,1992,1993,3,2006,2004,2628],[1995,1989,1992,3,2005,2002,2004],[1985,1989,1995,3,1997,2002,2005],[1985,1987,1989,3,1997,1999,2002],[1985,1995,1994,3,1997,2005,2006],[1997,1994,1998,3,2008,2006,2629],[1998,1994,1993,3,2629,2006,2628],[1998,1993,1999,3,2629,2628,2622],[2000,1999,1993,3,2630,2622,2628],[2001,1999,2000,3,2009,2622,2630],[1999,2001,2002,3,2622,2009,2011],[2001,2000,1991,3,2009,2630,2003],[1993,1991,2000,3,2628,2003,2630],[2006,1986,2007,3,2014,1998,2015],[1986,1985,1996,3,1998,1997,2007],[2007,1996,2008,3,2015,2007,2017],[2009,2008,1996,3,2018,2017,2007],[2008,2010,2007,3,2017,2016,2015],[2011,2007,2010,3,2631,2015,2016],[2011,2006,2007,3,2631,2014,2015],[2005,2006,2011,3,2013,2014,2631],[2012,2005,2011,3,2262,2013,2631],[2013,2005,2012,3,2023,2013,2262],[2013,2014,2005,3,2023,2020,2013],[2015,2014,2013,3,2019,2020,2023],[2015,2016,2003,3,2019,2627,2010],[2015,2017,2016,3,2019,2022,2627],[2013,2017,2015,3,2023,2022,2019],[2256,2012,2011,3,2261,2262,2631],[2011,2010,2256,3,2631,2016,2261],[2337,2333,2336,3,2343,2339,2342],[2339,2337,2340,3,2345,2343,2632],[2340,2337,2336,3,2632,2343,2342],[2336,2341,2340,3,2342,2347,2632],[2342,2341,2336,3,2348,2347,2342],[2341,2343,2340,3,2347,2346,2632],[2340,2343,2344,3,2632,2346,2360],[2343,2345,2344,3,2346,2349,2360],[2348,2350,2349,3,2352,2355,2353],[2352,2350,2351,3,2356,2355,2354],[2352,2353,2350,3,2356,2358,2355],[2355,2354,2352,3,2633,2357,2356],[2356,2354,2355,3,2634,2357,2633],[2357,2354,2356,3,2359,2357,2634],[2338,2339,2344,3,2344,2345,2360],[2344,2339,2340,3,2360,2345,2632],[2358,2338,2357,3,2361,2344,2359],[2359,2357,2356,3,2362,2359,2634],[2355,2359,2356,3,2633,2362,2634],[2360,2359,2355,3,2635,2362,2633],[2360,2361,2359,3,2635,2368,2362],[2360,2362,2361,3,2635,2363,2368],[2360,2355,2362,3,2635,2633,2363],[2362,2355,2352,3,2363,2633,2356],[2362,2351,2348,3,2363,2354,2352],[2366,2364,2365,3,2375,2365,2366],[2367,2364,2366,3,2371,2365,2375],[2368,2364,2367,3,2372,2365,2371],[2363,2364,2368,3,2364,2365,2372],[2369,2363,2368,3,2367,2364,2372],[2366,2342,2335,3,2375,2348,2341],[2366,2365,2342,3,2375,2366,2348],[2342,2336,2335,3,2348,2342,2341],[2345,2353,2354,3,2349,2358,2357],[2350,2353,2345,3,2355,2358,2349],[2350,2345,2349,3,2355,2349,2353],[2444,2443,2442,3,2460,2445,2444],[2445,2443,2444,3,2459,2445,2460],[2446,2443,2445,3,2636,2445,2459],[2447,2443,2446,3,2447,2445,2636],[2447,2441,2443,3,2447,2443,2445],[2457,2447,2446,3,2456,2447,2636],[2458,2457,2446,3,2457,2456,2636],[2458,2456,2457,3,2457,2455,2456],[2454,2458,2459,3,2453,2457,2637],[2459,2458,2460,3,2637,2457,2462],[2458,2461,2460,3,2457,2458,2462],[2458,2446,2461,3,2457,2636,2458],[2446,2445,2461,3,2636,2459,2458],[2464,2460,2463,3,2638,2462,2463],[2464,2465,2460,3,2638,2639,2462],[2466,2465,2464,3,2640,2639,2638],[2466,2459,2465,3,2640,2637,2639],[2467,2459,2466,3,2641,2637,2640],[2467,2468,2459,3,2641,2642,2637],[2453,2468,2467,3,2452,2642,2641],[2468,2453,2454,3,2642,2452,2453],[2454,2459,2468,3,2453,2637,2642],[2467,2452,2453,3,2641,2451,2452],[2452,2467,2469,3,2451,2641,2643],[2469,2467,2470,3,2643,2641,2644],[2470,2467,2466,3,2644,2641,2640],[2470,2466,2471,3,2644,2640,2645],[2471,2466,2464,3,2645,2640,2638],[2471,2464,2472,3,2645,2638,2464],[2464,2463,2472,3,2638,2463,2464],[2474,2444,2475,3,2466,2460,2468],[2475,2444,2442,3,2468,2460,2444],[2477,2478,2475,3,2469,2646,2468],[2479,2478,2477,3,2473,2646,2469],[2480,2478,2479,3,2471,2646,2473],[2480,2473,2478,3,2471,2465,2646],[2480,2472,2473,3,2471,2464,2465],[2480,2470,2472,3,2471,2644,2464],[2452,2470,2480,3,2451,2644,2471],[2452,2469,2470,3,2451,2643,2644],[2481,2480,2479,3,2470,2471,2473],[2472,2470,2471,3,2464,2644,2645],[2478,2473,2474,3,2646,2465,2466],[2478,2474,2475,3,2646,2466,2468],[2459,2460,2465,3,2637,2462,2639],[2455,2456,2454,3,2454,2455,2453],[2506,2507,2505,3,2497,2500,2496],[2508,2507,2506,3,2510,2500,2497],[2509,2507,2508,3,2498,2500,2510],[2513,2514,2512,3,2503,2647,2502],[2514,2513,2515,3,2647,2503,2505],[2520,2509,2508,3,2509,2498,2510],[2525,2502,2526,3,2515,2493,2516],[2527,2526,2503,3,2519,2516,2494],[2527,2528,2526,3,2519,2518,2516],[2530,2528,2529,3,2648,2518,2517],[2530,2526,2528,3,2648,2516,2518],[2530,2525,2526,3,2648,2515,2516],[2531,2525,2530,3,2521,2515,2648],[2533,2532,2534,3,2522,2520,2523],[2532,2531,2535,3,2520,2521,2524],[2535,2531,2530,3,2524,2521,2648],[2535,2530,2529,3,2524,2648,2517],[2535,2529,2536,3,2524,2517,2525],[2511,2539,2538,3,2501,2649,2527],[2540,2539,2511,3,2529,2649,2501],[2540,2541,2539,3,2529,2528,2649],[2512,2542,2541,3,2502,2650,2528],[2514,2542,2512,3,2647,2650,2502],[2514,2515,2542,3,2647,2505,2650],[2542,2515,2543,3,2650,2505,2651],[2515,2534,2543,3,2505,2523,2651],[2534,2544,2543,3,2523,2530,2651],[2544,2536,2545,3,2530,2525,2652],[2539,2545,2536,3,2649,2652,2525],[2545,2539,2541,3,2652,2649,2528],[2544,2545,2541,3,2530,2652,2528],[2541,2542,2544,3,2528,2650,2530],[2542,2543,2544,3,2650,2651,2530],[2539,2536,2538,3,2649,2525,2527],[2511,2512,2540,3,2501,2502,2529],[2546,2527,2505,3,2531,2519,2496],[2505,2527,2503,3,2496,2519,2494],[2507,2546,2505,3,2500,2531,2496],[2610,2607,2609,3,2595,2592,2594],[2613,2612,2610,3,2653,2597,2595],[2613,2614,2612,3,2653,2618,2597],[2613,2615,2614,3,2653,2599,2618],[2616,2615,2613,3,2600,2599,2653],[2620,2622,2621,3,2603,2654,2604],[2623,2622,2620,3,2655,2654,2603],[2623,2624,2622,3,2655,2656,2654],[2625,2624,2623,3,2615,2656,2655],[2625,2626,2624,3,2615,2657,2656],[2627,2626,2625,3,2658,2657,2615],[2627,2628,2626,3,2658,2606,2657],[2629,2628,2627,3,2607,2606,2658],[2632,2611,2631,3,2609,2596,2608],[2634,2637,2636,3,2611,2614,2613],[2629,2627,2625,3,2607,2658,2615],[2625,2623,2620,3,2615,2655,2603],[2638,2637,2619,3,2659,2614,2602],[2638,2636,2637,3,2659,2613,2614],[2635,2636,2638,3,2612,2613,2659],[2639,2635,2638,3,2616,2612,2659],[2639,2617,2608,3,2616,2598,2593],[2639,2640,2617,3,2616,2617,2598],[2639,2638,2640,3,2616,2659,2617],[2640,2638,2619,3,2617,2659,2602],[2608,2617,2609,3,2593,2598,2594],[2617,2616,2609,3,2598,2600,2594],[2616,2613,2609,3,2600,2653,2594],[2609,2613,2610,3,2594,2653,2595],[2611,2612,2614,3,2596,2597,2618],[2615,2642,2614,3,2599,2620,2618],[2621,2622,2642,3,2604,2654,2620],[2622,2643,2642,3,2654,2660,2620],[2624,2643,2622,3,2656,2660,2654],[2624,2641,2643,3,2656,2619,2660],[2626,2641,2624,3,2657,2619,2656],[2626,2644,2641,3,2657,2661,2619],[2628,2644,2626,3,2606,2661,2657],[2628,2631,2644,3,2606,2608,2661],[2631,2641,2644,3,2608,2619,2661],[2641,2642,2643,3,2619,2620,2660],[1997,1998,1999,3,2008,2629,2622],[2003,2016,2002,3,2010,2627,2011],[1990,1992,1989,3,2001,2004,2002],[2650,2651,2652,0,2662,2663,2664],[2651,2650,2653,0,2663,2662,2665],[2653,2654,2651,0,2665,2666,2663],[2655,2654,2653,0,2667,2666,2665],[2655,2656,2654,0,2667,2668,2666],[2655,2657,2656,0,2667,2669,2668],[2657,2655,2658,0,2669,2667,2670],[2655,2659,2658,0,2667,2671,2670],[2659,2655,2653,0,2671,2667,2665],[2659,2653,2660,0,2671,2665,2672],[2660,2653,2661,0,2672,2665,2673],[2653,2650,2661,0,2665,2662,2673],[2650,2652,2661,0,2662,2664,2673],[2652,2662,2661,0,2664,2674,2673],[2663,2662,2652,0,2675,2674,2664],[2663,2664,2662,0,2675,2676,2674],[2665,2664,2663,0,2677,2676,2675],[2666,2664,2665,0,2678,2676,2677],[2667,2664,2666,0,2679,2676,2678],[2664,2667,2668,0,2676,2679,2680],[2667,2669,2668,0,2679,2681,2680],[2670,2669,2667,0,2682,2681,2679],[2671,2669,2670,0,2683,2681,2682],[2671,2672,2669,0,2683,2684,2681],[2671,2673,2672,0,2683,2685,2684],[2671,2674,2673,0,2683,2686,2685],[2675,2674,2671,0,2687,2686,2683],[2676,2674,2675,0,2688,2686,2687],[2676,2677,2674,0,2688,2689,2686],[2678,2677,2676,0,2690,2689,2688],[2678,2679,2677,0,2690,2691,2689],[2680,2679,2678,0,2692,2691,2690],[2680,2681,2679,0,2692,2693,2691],[2682,2681,2680,0,2694,2693,2692],[2682,2683,2681,0,2694,2695,2693],[2683,2682,2684,0,2695,2694,2696],[2685,2684,2682,0,2697,2696,2694],[2685,2686,2684,0,2697,2698,2696],[2687,2686,2685,0,2699,2698,2697],[2687,2688,2686,0,2699,2700,2698],[2689,2688,2687,0,2701,2700,2699],[2689,2690,2688,0,2701,2702,2700],[2689,2691,2690,0,2701,2703,2702],[2689,2692,2691,0,2701,2704,2703],[2693,2692,2689,0,2705,2704,2701],[2693,2694,2692,0,2705,2706,2704],[2695,2694,2693,0,2707,2706,2705],[2695,2696,2694,0,2707,2708,2706],[2697,2696,2695,0,2709,2708,2707],[2697,2698,2696,0,2709,2710,2708],[2697,2699,2698,0,2709,2711,2710],[2697,2700,2699,0,2709,2712,2711],[2700,2697,2701,0,2712,2709,2713],[2697,2702,2701,0,2709,2714,2713],[2702,2697,2695,0,2714,2709,2707],[2703,2702,2695,0,2715,2714,2707],[2701,2702,2703,0,2713,2714,2715],[2701,2703,2704,0,2713,2715,2716],[2704,2703,2705,0,2716,2715,2717],[2703,2706,2705,0,2715,2718,2717],[2706,2703,2707,0,2718,2715,2719],[2703,2695,2707,0,2715,2707,2719],[2708,2707,2695,0,2720,2720,2720],[2708,2709,2707,0,2721,2721,2721],[2704,2709,2708,0,2716,2722,2723],[2705,2709,2704,0,2717,2722,2716],[2705,2710,2709,0,2717,2724,2722],[2706,2710,2705,0,2725,2725,2725],[2706,2711,2710,0,2726,2726,2726],[2706,2707,2711,0,2718,2719,2727],[2709,2711,2707,0,2728,2728,2728],[2709,2710,2711,0,2729,2729,2729],[2701,2704,2708,0,2713,2716,2723],[2700,2701,2708,0,2712,2713,2723],[2700,2708,2712,0,2712,2723,2730],[2712,2708,2713,0,2730,2723,2731],[2708,2714,2713,0,2723,2732,2731],[2708,2693,2714,0,2723,2705,2732],[2708,2695,2693,0,2723,2707,2705],[2714,2693,2689,0,2732,2705,2701],[2714,2689,2687,0,2732,2701,2699],[2714,2687,2685,0,2732,2699,2697],[2713,2714,2685,0,2731,2732,2697],[2713,2685,2682,0,2731,2697,2694],[2713,2682,2680,0,2731,2694,2692],[2713,2680,2678,0,2731,2692,2690],[2712,2713,2678,0,2730,2731,2690],[2712,2678,2715,0,2730,2690,2733],[2715,2678,2676,0,2733,2690,2688],[2715,2676,2675,0,2733,2688,2687],[2715,2675,2716,0,2733,2687,2734],[2716,2675,2717,0,2734,2687,2735],[2717,2675,2671,0,2735,2687,2683],[2717,2671,2670,0,2735,2683,2682],[2717,2670,2718,0,2735,2682,2736],[2718,2670,2719,0,2736,2682,2737],[2670,2667,2719,0,2682,2679,2737],[2719,2667,2666,0,2737,2679,2678],[2720,2719,2666,0,2738,2737,2678],[2721,2719,2720,0,2739,2737,2738],[2718,2719,2721,0,2736,2737,2739],[2722,2718,2721,0,2740,2736,2739],[2722,2723,2718,0,2740,2741,2736],[2722,2724,2723,0,2740,2742,2741],[2659,2724,2722,0,2671,2742,2740],[2724,2659,2725,0,2742,2671,2743],[2659,2660,2725,0,2671,2672,2743],[2725,2660,2726,0,2743,2672,2744],[2726,2660,2661,0,2744,2672,2673],[2661,2668,2726,0,2673,2680,2744],[2661,2662,2668,0,2673,2674,2680],[2664,2668,2662,0,2676,2680,2674],[2726,2668,2727,0,2744,2680,2745],[2668,2672,2727,0,2680,2684,2745],[2669,2672,2668,0,2681,2684,2680],[2727,2672,2728,0,2745,2684,2746],[2672,2673,2728,0,2684,2685,2746],[2728,2673,2729,0,2746,2685,2747],[2673,2674,2729,0,2685,2686,2747],[2729,2674,2730,0,2747,2686,2748],[2674,2677,2730,0,2686,2689,2748],[2730,2677,2731,0,2748,2689,2749],[2677,2679,2731,0,2689,2691,2749],[2731,2679,2732,0,2749,2691,2750],[2679,2681,2732,0,2691,2693,2750],[2732,2681,2733,0,2750,2693,2751],[2681,2683,2733,0,2693,2695,2751],[2683,2734,2733,0,2695,2752,2751],[2734,2683,2735,0,2752,2695,2753],[2683,2736,2735,0,2695,2754,2753],[2683,2684,2736,0,2695,2696,2754],[2686,2736,2684,0,2698,2754,2696],[2686,2737,2736,0,2698,2755,2754],[2688,2737,2686,0,2700,2755,2698],[2688,2738,2737,0,2700,2756,2755],[2690,2738,2688,0,2702,2756,2700],[2690,2739,2738,0,2702,2757,2756],[2740,2739,2690,0,2758,2757,2702],[2740,2738,2739,0,2758,2756,2757],[2737,2738,2740,0,2755,2756,2758],[2735,2737,2740,0,2753,2755,2758],[2736,2737,2735,0,2754,2755,2753],[2691,2735,2740,0,2703,2753,2758],[2734,2735,2691,0,2752,2753,2703],[2692,2734,2691,0,2704,2752,2703],[2692,2733,2734,0,2704,2751,2752],[2694,2733,2692,0,2706,2751,2704],[2694,2732,2733,0,2706,2750,2751],[2694,2731,2732,0,2706,2749,2750],[2696,2731,2694,0,2708,2749,2706],[2696,2698,2731,0,2708,2710,2749],[2698,2730,2731,0,2710,2748,2749],[2698,2729,2730,0,2710,2747,2748],[2698,2741,2729,0,2710,2759,2747],[2742,2741,2698,0,2760,2759,2710],[2742,2743,2741,0,2760,2761,2759],[2742,2744,2743,0,2760,2762,2761],[2745,2744,2742,0,2763,2762,2760],[2723,2744,2745,0,2741,2762,2763],[2723,2746,2744,0,2741,2764,2762],[2724,2746,2723,0,2742,2764,2741],[2746,2724,2725,0,2764,2742,2743],[2746,2725,2747,0,2764,2743,2765],[2747,2725,2727,0,2765,2743,2745],[2727,2725,2726,0,2745,2743,2744],[2728,2747,2727,0,2746,2765,2745],[2743,2747,2728,0,2761,2765,2746],[2743,2746,2747,0,2761,2764,2765],[2744,2746,2743,0,2762,2764,2761],[2741,2743,2728,0,2759,2761,2746],[2741,2728,2729,0,2759,2746,2747],[2723,2745,2748,0,2741,2763,2766],[2745,2749,2748,0,2763,2767,2766],[2745,2750,2749,0,2763,2768,2767],[2745,2742,2750,0,2763,2760,2768],[2699,2750,2742,0,2711,2768,2760],[2699,2751,2750,0,2711,2769,2768],[2699,2700,2751,0,2711,2712,2769],[2700,2715,2751,0,2712,2733,2769],[2700,2712,2715,0,2712,2730,2733],[2751,2715,2716,0,2769,2733,2734],[2751,2716,2749,0,2769,2734,2767],[2749,2716,2748,0,2767,2734,2766],[2748,2716,2717,0,2766,2734,2735],[2718,2748,2717,0,2736,2766,2735],[2723,2748,2718,0,2741,2766,2736],[2751,2749,2750,0,2769,2767,2768],[2699,2742,2698,0,2711,2760,2710],[2691,2740,2690,0,2703,2758,2702],[2659,2722,2658,0,2671,2740,2670],[2658,2722,2721,0,2670,2740,2739],[2658,2721,2720,0,2670,2739,2738],[2657,2658,2720,0,2669,2670,2738],[2657,2720,2752,0,2669,2738,2770],[2720,2665,2752,0,2738,2677,2770],[2720,2666,2665,0,2738,2678,2677],[2752,2665,2753,0,2770,2677,2771],[2753,2665,2754,0,2771,2677,2772],[2665,2755,2754,0,2677,2773,2772],[2665,2663,2755,0,2677,2675,2773],[2652,2755,2663,0,2664,2773,2675],[2652,2756,2755,0,2664,2774,2773],[2651,2756,2652,0,2663,2774,2664],[2757,2756,2651,0,2775,2774,2663],[2757,2758,2756,0,2775,2776,2774],[2759,2758,2757,0,2777,2776,2775],[2760,2758,2759,0,2778,2776,2777],[2760,2756,2758,0,2778,2774,2776],[2755,2756,2760,0,2773,2774,2778],[2754,2755,2760,0,2772,2773,2778],[2754,2760,2761,0,2772,2778,2779],[2761,2760,2762,0,2779,2778,2780],[2759,2762,2760,0,2777,2780,2778],[2763,2762,2759,0,2781,2780,2777],[2764,2762,2763,0,2782,2780,2781],[2765,2762,2764,0,2783,2780,2782],[2761,2762,2765,0,2779,2780,2783],[2766,2761,2765,0,2784,2779,2783],[2766,2754,2761,0,2784,2772,2779],[2767,2754,2766,0,2785,2772,2784],[2753,2754,2767,0,2771,2772,2785],[2768,2753,2767,0,2786,2771,2785],[2768,2752,2753,0,2786,2770,2771],[2768,2657,2752,0,2786,2669,2770],[2657,2768,2656,0,2669,2786,2668],[2768,2769,2656,0,2786,2787,2668],[2769,2768,2770,0,2787,2786,2788],[2770,2768,2767,0,2788,2786,2785],[2766,2770,2767,0,2784,2788,2785],[2771,2770,2766,0,2789,2788,2784],[2771,2772,2770,0,2789,2790,2788],[2773,2772,2771,0,2791,2790,2789],[2774,2772,2773,0,2792,2790,2791],[2774,2775,2772,0,2792,2793,2790],[2774,2776,2775,0,2792,2794,2793],[2777,2776,2774,0,2795,2794,2792],[2777,2778,2776,0,2795,2796,2794],[2779,2778,2777,0,2797,2796,2795],[2779,2780,2778,0,2797,2798,2796],[2781,2780,2779,0,2799,2798,2797],[2781,2782,2780,0,2799,2800,2798],[2781,2783,2782,0,2799,2801,2800],[2783,2781,2784,0,2801,2799,2802],[2781,2785,2784,0,2799,2803,2802],[2781,2779,2785,0,2799,2797,2803],[2785,2779,2786,0,2803,2797,2804],[2779,2777,2786,0,2797,2795,2804],[2786,2777,2774,0,2804,2795,2792],[2786,2774,2773,0,2804,2792,2791],[2786,2773,2787,0,2804,2791,2805],[2773,2766,2787,0,2791,2784,2805],[2773,2771,2766,0,2791,2789,2784],[2787,2766,2765,0,2805,2784,2783],[2787,2765,2788,0,2805,2783,2806],[2788,2765,2764,0,2806,2783,2782],[2788,2764,2789,0,2806,2782,2807],[2790,2789,2764,0,2808,2807,2782],[2791,2789,2790,0,2809,2807,2808],[2792,2789,2791,0,2810,2807,2809],[2792,2788,2789,0,2810,2806,2807],[2793,2788,2792,0,2811,2806,2810],[2793,2794,2788,0,2811,2812,2806],[2785,2794,2793,0,2803,2812,2811],[2785,2786,2794,0,2803,2804,2812],[2786,2787,2794,0,2804,2805,2812],[2794,2787,2788,0,2812,2805,2806],[2784,2785,2793,0,2802,2803,2811],[2784,2793,2795,0,2802,2811,2813],[2795,2793,2792,0,2813,2811,2810],[2795,2792,2796,0,2813,2810,2814],[2796,2792,2791,0,2814,2810,2809],[2796,2791,2797,0,2814,2809,2815],[2797,2791,2798,0,2815,2809,2816],[2798,2791,2790,0,2816,2809,2808],[2798,2790,2799,0,2816,2808,2817],[2799,2790,2800,0,2817,2808,2818],[2790,2763,2800,0,2808,2781,2818],[2790,2764,2763,0,2808,2782,2781],[2800,2763,2801,0,2818,2781,2819],[2763,2759,2801,0,2781,2777,2819],[2801,2759,2757,0,2819,2777,2775],[2802,2801,2757,0,2820,2819,2775],[2802,2800,2801,0,2820,2818,2819],[2802,2775,2800,0,2820,2793,2818],[2772,2775,2802,0,2790,2793,2820],[2772,2802,2654,0,2790,2820,2666],[2654,2802,2757,0,2666,2820,2775],[2654,2757,2651,0,2666,2775,2663],[2769,2772,2654,0,2787,2790,2666],[2772,2769,2770,0,2790,2787,2788],[2656,2769,2654,0,2668,2787,2666],[2776,2800,2775,0,2794,2818,2793],[2776,2799,2800,0,2794,2817,2818],[2776,2803,2799,0,2794,2821,2817],[2776,2778,2803,0,2794,2796,2821],[2778,2804,2803,0,2796,2822,2821],[2778,2780,2804,0,2796,2798,2822],[2780,2805,2804,0,2798,2823,2822],[2780,2782,2805,0,2798,2800,2823],[2782,2806,2805,0,2800,2824,2823],[2807,2806,2782,0,2825,2824,2800],[2783,2807,2782,0,2801,2825,2800],[2808,2807,2783,0,2826,2825,2801],[2808,2783,2809,0,2826,2801,2827],[2783,2784,2809,0,2801,2802,2827],[2809,2784,2795,0,2827,2802,2813],[2809,2795,2810,0,2827,2813,2828],[2795,2796,2810,0,2813,2814,2828],[2810,2796,2811,0,2828,2814,2829],[2796,2797,2811,0,2814,2815,2829],[2811,2797,2812,0,2829,2815,2830],[2812,2797,2813,0,2830,2815,2831],[2813,2797,2798,0,2831,2815,2816],[2813,2798,2803,0,2831,2816,2821],[2803,2798,2799,0,2821,2816,2817],[2804,2813,2803,0,2822,2831,2821],[2814,2813,2804,0,2832,2831,2822],[2814,2812,2813,0,2832,2830,2831],[2815,2812,2814,0,2833,2830,2832],[2816,2812,2815,0,2834,2830,2833],[2811,2812,2816,0,2829,2830,2834],[2817,2811,2816,0,2835,2829,2834],[2810,2811,2817,0,2828,2829,2835],[2818,2810,2817,0,2836,2828,2835],[2818,2809,2810,0,2836,2827,2828],[2808,2809,2818,0,2826,2827,2836],[2819,2815,2814,0,2837,2833,2832],[2819,2814,2805,0,2837,2832,2823],[2805,2814,2804,0,2823,2832,2822],[2806,2819,2805,0,2824,2837,2823],[2820,2821,2822,4,2838,2839,2840],[2820,2823,2821,4,2838,2841,2839],[2823,2820,2824,4,2841,2838,2842],[2824,2820,2825,4,2842,2838,2843],[2820,2826,2825,4,2838,2844,2843],[2820,2822,2826,4,2838,2840,2844],[2826,2822,2827,4,2844,2840,2845],[2822,2828,2827,4,2840,2846,2845],[2822,2829,2828,4,2840,2847,2846],[2822,2830,2829,4,2840,2848,2847],[2822,2831,2830,4,2840,2849,2848],[2821,2831,2822,4,2839,2849,2840],[2821,2832,2831,4,2839,2850,2849],[2821,2833,2832,4,2839,2851,2850],[2823,2833,2821,4,2841,2851,2839],[2823,2834,2833,4,2841,2852,2851],[2835,2834,2823,4,2853,2852,2841],[2835,2836,2834,4,2853,2854,2852],[2836,2835,2837,4,2854,2853,2855],[2837,2835,2824,4,2855,2853,2842],[2835,2823,2824,4,2853,2841,2842],[2838,2837,2824,4,2856,2855,2842],[2837,2838,2839,4,2855,2856,2857],[2839,2838,2840,4,2857,2856,2858],[2838,2841,2840,4,2856,2859,2858],[2841,2838,2842,4,2859,2856,2860],[2838,2843,2842,4,2856,2861,2860],[2838,2824,2843,4,2856,2842,2861],[2843,2824,2844,4,2861,2842,2862],[2824,2825,2844,4,2842,2843,2862],[2825,2845,2844,4,2843,2863,2862],[2825,2846,2845,4,2843,2864,2863],[2825,2826,2846,4,2843,2844,2864],[2826,2847,2846,4,2844,2865,2864],[2826,2827,2847,4,2844,2845,2865],[2847,2827,2828,4,2865,2845,2846],[2847,2828,2848,4,2865,2846,2866],[2848,2828,2849,4,2866,2846,2867],[2850,2849,2828,4,2868,2867,2846],[2849,2850,2851,4,2867,2868,2869],[2852,2851,2850,4,2870,2869,2868],[2852,2853,2851,4,2870,2871,2869],[2854,2853,2852,4,2872,2871,2870],[2854,2855,2853,4,2872,2873,2871],[2854,2856,2855,4,2872,2874,2873],[2857,2856,2854,4,2875,2874,2872],[2857,2858,2856,4,2875,2876,2874],[2857,2859,2858,4,2875,2877,2876],[2857,2860,2859,4,2875,2878,2877],[2861,2860,2857,4,2879,2878,2875],[2862,2860,2861,4,2880,2878,2879],[2862,2863,2860,4,2880,2881,2878],[2864,2863,2862,4,2882,2881,2880],[2864,2865,2863,4,2882,2883,2881],[2864,2866,2865,4,2882,2884,2883],[2867,2866,2864,4,2885,2884,2882],[2868,2866,2867,4,2886,2884,2885],[2868,2869,2866,4,2886,2887,2884],[2868,2870,2869,4,2886,2888,2887],[2871,2870,2868,4,2889,2888,2886],[2872,2870,2871,4,2890,2888,2889],[2872,2873,2870,4,2890,2891,2888],[2872,2874,2873,4,2890,2892,2891],[2872,2875,2874,4,2890,2893,2892],[2836,2875,2872,4,2854,2893,2890],[2837,2875,2836,4,2855,2893,2854],[2875,2837,2839,4,2893,2855,2857],[2875,2839,2874,4,2893,2857,2892],[2874,2839,2876,4,2892,2857,2894],[2876,2839,2877,4,2894,2857,2895],[2877,2839,2840,4,2895,2857,2858],[2877,2840,2878,4,2895,2858,2896],[2840,2879,2878,4,2858,2897,2896],[2879,2880,2878,4,2897,2898,2896],[2881,2878,2880,4,2899,2896,2898],[2877,2878,2881,4,2895,2896,2899],[2882,2877,2881,4,2900,2895,2899],[2883,2877,2882,4,2901,2895,2900],[2884,2877,2883,4,2902,2895,2901],[2884,2876,2877,4,2902,2894,2895],[2874,2876,2884,4,2892,2894,2902],[2885,2874,2884,4,2903,2892,2902],[2873,2874,2885,4,2891,2892,2903],[2873,2885,2886,4,2891,2903,2904],[2885,2887,2886,4,2903,2905,2904],[2885,2884,2887,4,2903,2902,2905],[2887,2884,2888,4,2905,2902,2906],[2888,2884,2883,4,2906,2902,2901],[2888,2883,2889,4,2906,2901,2907],[2889,2883,2890,4,2907,2901,2908],[2883,2882,2890,4,2901,2900,2908],[2882,2891,2890,4,2900,2909,2908],[2882,2881,2891,4,2900,2899,2909],[2881,2880,2891,4,2899,2898,2909],[2880,2892,2891,4,2898,2910,2909],[2891,2892,2893,4,2909,2910,2911],[2891,2893,2894,4,2909,2911,2912],[2894,2893,2895,4,2912,2911,2913],[2894,2895,2896,4,2912,2913,2914],[2896,2895,2897,4,2914,2913,2915],[2896,2897,2898,4,2914,2915,2916],[2899,2896,2898,4,2917,2914,2916],[2900,2896,2899,4,2918,2914,2917],[2900,2894,2896,4,2918,2912,2914],[2890,2894,2900,4,2908,2912,2918],[2894,2890,2891,4,2912,2908,2909],[2900,2889,2890,4,2918,2907,2908],[2901,2889,2900,4,2919,2907,2918],[2888,2889,2901,4,2906,2907,2919],[2902,2888,2901,4,2920,2906,2919],[2887,2888,2902,4,2905,2906,2920],[2887,2902,2903,4,2905,2920,2921],[2904,2903,2902,4,2922,2921,2920],[2903,2904,2905,4,2921,2922,2923],[2906,2905,2904,4,2924,2923,2922],[2905,2906,2907,4,2923,2924,2925],[2905,2907,2908,4,2923,2925,2926],[2908,2907,2909,4,2926,2925,2927],[2908,2909,2910,4,2926,2927,2928],[2910,2909,2911,4,2928,2927,2929],[2912,2908,2910,4,2930,2926,2928],[2913,2908,2912,4,2931,2926,2930],[2913,2905,2908,4,2931,2923,2926],[2903,2905,2913,4,2921,2923,2931],[2886,2903,2913,4,2904,2921,2931],[2886,2887,2903,4,2904,2905,2921],[2886,2913,2914,4,2904,2931,2932],[2914,2913,2912,4,2932,2931,2930],[2914,2912,2915,4,2932,2930,2933],[2915,2912,2916,4,2933,2930,2934],[2916,2912,2917,4,2934,2930,2935],[2916,2917,2918,4,2934,2935,2936],[2918,2917,2919,4,2936,2935,2937],[2918,2919,2920,4,2936,2937,2938],[2918,2920,2921,4,2936,2938,2939],[2918,2921,2922,4,2936,2939,2940],[2923,2918,2922,4,2941,2936,2940],[2916,2918,2923,4,2934,2936,2941],[2924,2916,2923,4,2942,2934,2941],[2915,2916,2924,4,2933,2934,2942],[2870,2915,2924,4,2888,2933,2942],[2873,2915,2870,4,2891,2933,2888],[2873,2914,2915,4,2891,2932,2933],[2873,2886,2914,4,2891,2904,2932],[2870,2924,2869,4,2888,2942,2887],[2869,2924,2925,4,2887,2942,2943],[2923,2925,2924,4,2941,2943,2942],[2925,2923,2926,4,2943,2941,2944],[2923,2927,2926,4,2941,2945,2944],[2928,2926,2927,4,2946,2944,2945],[2926,2928,2929,4,2944,2946,2947],[2929,2928,2930,4,2947,2946,2948],[2928,2931,2930,4,2946,2949,2948],[2931,2928,2932,4,2949,2946,2950],[2932,2928,2927,4,2950,2946,2945],[2930,2931,2933,4,2948,2949,2951],[2934,2930,2933,4,2952,2948,2951],[2935,2930,2934,4,2953,2948,2952],[2929,2930,2935,4,2947,2948,2953],[2936,2929,2935,4,2954,2947,2953],[2937,2929,2936,4,2955,2947,2954],[2937,2926,2929,4,2955,2944,2947],[2925,2926,2937,4,2943,2944,2955],[2869,2925,2937,4,2887,2943,2955],[2869,2937,2866,4,2887,2955,2884],[2866,2937,2936,4,2884,2955,2954],[2866,2936,2865,4,2884,2954,2883],[2865,2936,2863,4,2883,2954,2881],[2863,2936,2938,4,2881,2954,2956],[2936,2935,2938,4,2954,2953,2956],[2938,2935,2939,4,2956,2953,2957],[2935,2934,2939,4,2953,2952,2957],[2939,2934,2940,4,2957,2952,2958],[2934,2941,2940,4,2952,2959,2958],[2940,2941,2942,4,2958,2959,2960],[2940,2942,2943,4,2958,2960,2961],[2942,2944,2943,4,2960,2962,2961],[2945,2940,2943,4,2963,2958,2961],[2939,2940,2945,4,2957,2958,2963],[2938,2939,2945,4,2956,2957,2963],[2938,2945,2946,4,2956,2963,2964],[2946,2945,2947,4,2964,2963,2965],[2945,2943,2947,4,2963,2961,2965],[2947,2943,2948,4,2965,2961,2966],[2948,2943,2949,4,2966,2961,2967],[2948,2949,2950,4,2966,2967,2968],[2948,2950,2951,4,2966,2968,2969],[2951,2950,2952,4,2969,2968,2970],[2951,2952,2953,4,2969,2970,2971],[2952,2954,2953,4,2970,2972,2971],[2954,2955,2953,4,2972,2973,2971],[2955,2956,2953,4,2973,2974,2971],[2953,2956,2957,4,2971,2974,2975],[2956,2958,2957,4,2974,2976,2975],[2958,2956,2959,4,2976,2974,2977],[2956,2960,2959,4,2974,2978,2977],[2959,2960,2961,4,2977,2978,2979],[2959,2961,2962,4,2977,2979,2980],[2962,2961,2963,4,2980,2979,2981],[2964,2962,2963,4,2982,2980,2981],[2965,2962,2964,4,2983,2980,2982],[2966,2962,2965,4,2984,2980,2983],[2967,2962,2966,4,2985,2980,2984],[2967,2959,2962,4,2985,2977,2980],[2959,2967,2958,4,2977,2985,2976],[2958,2967,2968,4,2976,2985,2986],[2969,2968,2967,4,2987,2986,2985],[2970,2968,2969,4,2988,2986,2987],[2971,2968,2970,4,2989,2986,2988],[2972,2968,2971,4,2990,2986,2989],[2972,2973,2968,4,2990,2991,2986],[2974,2973,2972,4,2992,2991,2990],[2974,2975,2973,4,2992,2993,2991],[2976,2975,2974,4,2994,2993,2992],[2977,2975,2976,4,2995,2993,2994],[2977,2957,2975,4,2995,2975,2993],[2953,2957,2977,4,2971,2975,2995],[2977,2951,2953,4,2995,2969,2971],[2978,2951,2977,4,2996,2969,2995],[2978,2948,2951,4,2996,2966,2969],[2947,2948,2978,4,2965,2966,2996],[2979,2947,2978,4,2997,2965,2996],[2946,2947,2979,4,2964,2965,2997],[2859,2946,2979,4,2877,2964,2997],[2860,2946,2859,4,2878,2964,2877],[2860,2938,2946,4,2878,2956,2964],[2863,2938,2860,4,2881,2956,2878],[2859,2979,2858,4,2877,2997,2876],[2858,2979,2976,4,2876,2997,2994],[2979,2978,2976,4,2997,2996,2994],[2976,2978,2977,4,2994,2996,2995],[2858,2976,2974,4,2876,2994,2992],[2858,2974,2856,4,2876,2992,2874],[2856,2974,2972,4,2874,2992,2990],[2856,2972,2980,4,2874,2990,2998],[2980,2972,2971,4,2998,2990,2989],[2980,2971,2981,4,2998,2989,2999],[2981,2971,2970,4,2999,2989,2988],[2981,2970,2982,4,2999,2988,3000],[2981,2982,2983,4,2999,3000,3001],[2983,2982,2984,4,3001,3000,3002],[2983,2984,2985,4,3001,3002,3003],[2986,2983,2985,4,3004,3001,3003],[2987,2983,2986,4,3005,3001,3004],[2987,2981,2983,4,3005,2999,3001],[2980,2981,2987,4,2998,2999,3005],[2855,2980,2987,4,2873,2998,3005],[2856,2980,2855,4,2874,2998,2873],[2855,2987,2853,4,2873,3005,2871],[2987,2986,2853,4,3005,3004,2871],[2853,2986,2851,4,2871,3004,2869],[2986,2985,2851,4,3004,3003,2869],[2851,2985,2988,4,2869,3003,3006],[2988,2985,2989,4,3006,3003,3007],[2985,2990,2989,4,3003,3008,3007],[2985,2991,2990,4,3003,3009,3008],[2991,2992,2990,4,3009,3010,3008],[2990,2992,2993,4,3008,3010,3011],[2993,2992,2994,4,3011,3010,3012],[2992,2995,2994,4,3010,3013,3012],[2995,2996,2994,4,3013,3014,3012],[2995,2997,2996,4,3013,3015,3014],[2997,2998,2996,4,3015,3016,3014],[2997,2999,2998,4,3015,3017,3016],[2999,3000,2998,4,3017,3018,3016],[2999,3001,3000,4,3017,3019,3018],[2998,3000,3002,4,3016,3018,3020],[2998,3002,3003,4,3016,3020,3021],[3003,3002,3004,4,3021,3020,3022],[3005,3003,3004,4,3023,3021,3022],[2996,3003,3005,4,3014,3021,3023],[2998,3003,2996,4,3016,3021,3014],[2994,2996,3005,4,3012,3014,3023],[2994,3005,3006,4,3012,3023,3024],[3006,3005,3007,4,3024,3023,3025],[3005,3004,3007,4,3023,3022,3025],[3007,3004,3008,4,3025,3022,3026],[3004,3009,3008,4,3022,3027,3026],[3004,3010,3009,4,3022,3028,3027],[3010,3011,3009,4,3028,3029,3027],[3009,3011,3012,4,3027,3029,3030],[3009,3012,3013,4,3027,3030,3031],[3013,3012,3014,4,3031,3030,3032],[3015,3013,3014,4,3033,3031,3032],[3016,3013,3015,4,3034,3031,3033],[3008,3013,3016,4,3026,3031,3034],[3008,3009,3013,4,3026,3027,3031],[3017,3008,3016,4,3035,3026,3034],[3007,3008,3017,4,3025,3026,3035],[3018,3007,3017,4,3036,3025,3035],[3006,3007,3018,4,3024,3025,3036],[3006,3018,3019,4,3024,3036,3037],[3019,3018,3020,4,3037,3036,3038],[3018,3017,3020,4,3036,3035,3038],[3020,3017,3021,4,3038,3035,3039],[3017,3016,3021,4,3035,3034,3039],[3021,3016,3022,4,3039,3034,3040],[3016,3015,3022,4,3034,3033,3040],[3022,3015,3023,4,3040,3033,3041],[3015,3024,3023,4,3033,3042,3041],[3015,3025,3024,4,3033,3043,3042],[3025,3026,3024,4,3043,3044,3042],[3022,3023,3027,4,3040,3041,3045],[3021,3022,3027,4,3039,3040,3045],[3028,3021,3027,4,3046,3039,3045],[3029,3021,3028,4,3047,3039,3046],[3020,3021,3029,4,3038,3039,3047],[3020,3029,3030,4,3038,3047,3048],[3030,3029,3031,4,3048,3047,3049],[3031,3029,3032,4,3049,3047,3050],[3032,3029,3028,4,3050,3047,3046],[3033,3031,3032,4,3051,3049,3050],[3034,3031,3033,4,3052,3049,3051],[3035,3031,3034,4,3053,3049,3052],[3030,3031,3035,4,3048,3049,3053],[3036,3030,3035,4,3054,3048,3053],[3036,3019,3030,4,3054,3037,3048],[2993,3019,3036,4,3011,3037,3054],[2993,3006,3019,4,3011,3024,3037],[2993,2994,3006,4,3011,3012,3024],[2990,2993,3036,4,3008,3011,3054],[2990,3036,2989,4,3008,3054,3007],[3036,3035,2989,4,3054,3053,3007],[2989,3035,3037,4,3007,3053,3055],[3037,3035,3038,4,3055,3053,3056],[3035,3034,3038,4,3053,3052,3056],[3038,3034,3039,4,3056,3052,3057],[3039,3034,3040,4,3057,3052,3058],[3040,3034,3033,4,3058,3052,3051],[3041,3039,3040,4,3059,3057,3058],[3042,3039,3041,4,3060,3057,3059],[3038,3039,3042,4,3056,3057,3060],[3038,3042,3043,4,3056,3060,3061],[3044,3043,3042,4,3062,3061,3060],[3044,3045,3043,4,3062,3063,3061],[3045,3044,3046,4,3063,3062,3064],[3046,3044,3047,4,3064,3062,3065],[3044,3048,3047,4,3062,3066,3065],[3044,3049,3048,4,3062,3067,3066],[3049,3044,3042,4,3067,3062,3060],[3049,3042,3041,4,3067,3060,3059],[3049,3041,3048,4,3067,3059,3066],[3048,3041,3050,4,3066,3059,3068],[3050,3041,3051,4,3068,3059,3069],[3052,3050,3051,4,3070,3068,3069],[3053,3050,3052,4,3071,3068,3070],[3053,3048,3050,4,3071,3066,3068],[3047,3048,3053,4,3065,3066,3071],[3054,3047,3053,4,3072,3065,3071],[3055,3047,3054,4,3073,3065,3072],[3055,3046,3047,4,3073,3064,3065],[3056,3046,3055,4,3074,3064,3073],[3056,3057,3046,4,3074,3075,3064],[2844,3057,3056,4,2862,3075,3074],[2844,2845,3057,4,2862,2863,3075],[2845,3058,3057,4,2863,3076,3075],[2845,2848,3058,4,2863,2866,3076],[2846,2848,2845,4,2864,2866,2863],[2846,2847,2848,4,2864,2865,2866],[2848,2849,3059,4,2866,2867,3077],[2849,2988,3059,4,2867,3006,3077],[2849,2851,2988,4,2867,2869,3006],[3059,2988,3037,4,3077,3006,3055],[2988,2989,3037,4,3006,3007,3055],[3059,3037,3060,4,3077,3055,3078],[3037,3038,3060,4,3055,3056,3078],[3060,3038,3043,4,3078,3056,3061],[3045,3060,3043,4,3063,3078,3061],[3058,3060,3045,4,3076,3078,3063],[3058,3059,3060,4,3076,3077,3078],[3058,3045,3057,4,3076,3063,3075],[3057,3045,3046,4,3075,3063,3064],[2843,2844,3056,4,2861,2862,3074],[2842,2843,3056,4,2860,2861,3074],[2842,3056,3061,4,2860,3074,3079],[3061,3056,3062,4,3079,3074,3080],[3062,3056,3055,4,3080,3074,3073],[3062,3055,3054,4,3080,3073,3072],[3062,3054,3063,4,3080,3072,3081],[3054,3053,3063,4,3072,3071,3081],[3063,3053,3064,4,3081,3071,3082],[3064,3053,3052,4,3082,3071,3070],[3064,3052,3065,4,3082,3070,3083],[3065,3052,3066,4,3083,3070,3084],[3052,3067,3066,4,3070,3085,3084],[3052,3051,3067,4,3070,3069,3085],[3066,3067,3068,4,3084,3085,3086],[3066,3068,3069,4,3084,3086,3087],[3066,3069,3070,4,3084,3087,3088],[3070,3069,3071,4,3088,3087,3089],[3070,3071,3072,4,3088,3089,3090],[3072,3071,3073,4,3090,3089,3091],[3072,3073,3074,4,3090,3091,3092],[3074,3073,3075,4,3092,3091,3093],[3065,3066,3076,4,3083,3084,3094],[3076,3066,3077,4,3094,3084,3095],[3076,3077,3078,4,3094,3095,3096],[3078,3077,3079,4,3096,3095,3097],[3077,3080,3079,4,3095,3098,3097],[3079,3080,3081,4,3097,3098,3099],[3081,3080,3082,4,3099,3098,3100],[3083,3081,3082,4,3101,3099,3100],[3083,3084,3081,4,3101,3102,3099],[3078,3081,3084,4,3096,3099,3102],[3081,3078,3079,4,3099,3096,3097],[3076,3078,3085,4,3094,3096,3103],[3085,3078,3086,4,3103,3096,3104],[3086,3078,3087,4,3104,3096,3105],[3078,3088,3087,4,3096,3106,3105],[3087,3088,3089,4,3105,3106,3107],[3088,3090,3089,4,3106,3108,3107],[3089,3090,3091,4,3107,3108,3109],[3090,3092,3091,4,3108,3110,3109],[3091,3092,3093,4,3109,3110,3111],[3092,3094,3093,4,3110,3112,3111],[3089,3091,3095,4,3107,3109,3113],[3095,3091,3096,4,3113,3109,3114],[3091,3097,3096,4,3109,3115,3114],[3098,3095,3096,4,3116,3113,3114],[3099,3095,3098,4,3117,3113,3116],[3099,3100,3095,4,3117,3118,3113],[3099,3101,3100,4,3117,3119,3118],[3101,3099,3102,4,3119,3117,3120],[3102,3099,3103,4,3120,3117,3121],[3102,3103,3104,4,3120,3121,3122],[3105,3102,3104,4,3123,3120,3122],[3105,3106,3102,4,3123,3124,3120],[3106,3105,3107,4,3124,3123,3125],[3107,3105,3108,4,3125,3123,3126],[3105,3109,3108,4,3123,3127,3126],[3109,3105,3104,4,3127,3123,3122],[3108,3109,3110,4,3126,3127,3128],[3111,3106,3107,4,3129,3124,3125],[3111,3112,3106,4,3129,3130,3124],[3113,3112,3111,4,3131,3130,3129],[3114,3112,3113,4,3132,3130,3131],[3114,3115,3112,4,3132,3133,3130],[3114,3116,3115,4,3132,3134,3133],[3117,3116,3114,4,3135,3134,3132],[3117,3118,3116,4,3135,3136,3134],[3119,3118,3117,4,3137,3136,3135],[3119,3120,3118,4,3137,3138,3136],[3121,3120,3119,4,3139,3138,3137],[3121,3062,3120,4,3139,3080,3138],[3121,3061,3062,4,3139,3079,3080],[2841,3061,3121,4,2859,3079,3139],[2841,2842,3061,4,2859,2860,3079],[2841,3121,2840,4,2859,3139,2858],[3121,3119,2840,4,3139,3137,2858],[2840,3119,3117,4,2858,3137,3135],[2840,3117,3122,4,2858,3135,3140],[3122,3117,3114,4,3140,3135,3132],[3122,3114,3113,4,3140,3132,3131],[3120,3062,3123,4,3138,3080,3141],[3123,3062,3063,4,3141,3080,3081],[3063,3065,3123,4,3081,3083,3141],[3063,3064,3065,4,3081,3082,3083],[3076,3123,3065,4,3094,3141,3083],[3123,3076,3118,4,3141,3094,3136],[3118,3076,3085,4,3136,3094,3103],[3124,3118,3085,4,3142,3136,3103],[3116,3118,3124,4,3134,3136,3142],[3115,3116,3124,4,3133,3134,3142],[3115,3124,3125,4,3133,3142,3143],[3125,3124,3085,4,3143,3142,3103],[3125,3085,3086,4,3143,3103,3104],[3101,3125,3086,4,3119,3143,3104],[3125,3101,3126,4,3143,3119,3144],[3126,3101,3102,4,3144,3119,3120],[3106,3126,3102,4,3124,3144,3120],[3106,3112,3126,4,3124,3130,3144],[3112,3115,3126,4,3130,3133,3144],[3126,3115,3125,4,3144,3133,3143],[3101,3086,3100,4,3119,3104,3118],[3086,3087,3100,4,3104,3105,3118],[3087,3089,3100,4,3105,3107,3118],[3100,3089,3095,4,3118,3107,3113],[3120,3123,3118,4,3138,3141,3136],[3019,3020,3030,4,3037,3038,3048],[2975,2957,2973,4,2993,2975,2991],[2973,2957,2958,4,2991,2975,2976],[2958,2968,2973,4,2976,2986,2991],[2969,2967,2966,4,2987,2985,2984],[2933,3127,2934,4,2951,3145,2952],[2906,2904,3128,4,2924,2922,3146],[3128,2904,3129,4,3146,2922,3147],[2904,2902,3129,4,2922,2920,3147],[3129,2902,2901,4,3147,2920,2919],[2899,2901,2900,4,2917,2919,2918],[3130,2901,2899,4,3148,2919,2917],[3131,3130,2899,4,3149,3148,2917],[3132,3131,2899,4,3150,3149,2917],[2899,2898,3132,4,2917,2916,3150],[2836,2872,2834,4,2854,2890,2852],[2834,2872,2871,4,2852,2890,2889],[2834,2871,2868,4,2852,2889,2886],[2834,2868,2833,4,2852,2886,2851],[2833,2868,2867,4,2851,2886,2885],[2833,2867,2832,4,2851,2885,2850],[2832,2867,2864,4,2850,2885,2882],[2832,2864,3133,4,2850,2882,3151],[3133,2864,2862,4,3151,2882,2880],[3133,2862,2861,4,3151,2880,2879],[3133,2861,3134,4,3151,2879,3152],[3134,2861,2854,4,3152,2879,2872],[2854,2861,2857,4,2872,2879,2875],[2852,3134,2854,4,2870,3152,2872],[3134,2852,2830,4,3152,2870,2848],[2830,2852,2829,4,2848,2870,2847],[2852,2850,2829,4,2870,2868,2847],[2828,2829,2850,4,2846,2847,2868],[2831,3134,2830,4,2849,3152,2848],[2831,3133,3134,4,2849,3151,3152],[2832,3133,2831,4,2850,3151,2849],[2848,3059,3058,5,2866,3077,3076],[3135,3136,3137,4,3153,3154,3155],[3135,3138,3136,4,3153,3156,3154],[3137,3136,3139,4,3155,3154,3157],[3140,3141,3142,4,3158,3159,3160],[3140,3143,3141,4,3158,3161,3159],[3143,3140,3144,4,3161,3158,3162],[3144,3145,3143,4,3162,3163,3161],[3144,3146,3145,4,3162,3164,3163],[3147,3146,3144,4,3165,3164,3162],[3147,3144,3148,4,3165,3162,3166],[3144,3140,3148,4,3162,3158,3166],[3148,3140,3149,4,3166,3158,3167],[3140,3142,3149,4,3158,3160,3167],[3149,3142,3150,4,3167,3160,3168],[3142,3151,3150,4,3160,3169,3168],[3142,3152,3151,4,3160,3170,3169],[3142,3141,3152,4,3160,3159,3170],[3152,3153,3151,4,3170,3171,3169],[3151,3153,3154,4,3169,3171,3172],[3153,3155,3154,4,3171,3173,3172],[3154,3155,3156,4,3172,3173,3174],[3157,3156,3155,4,3175,3174,3173],[3157,3158,3156,4,3175,3176,3174],[3157,3159,3158,4,3175,3177,3176],[3160,3159,3157,4,3178,3177,3175],[3159,3161,3158,4,3177,3179,3176],[3161,3159,3162,4,3179,3177,3180],[3156,3158,3161,4,3174,3176,3179],[3156,3161,3163,4,3174,3179,3181],[3154,3156,3163,4,3172,3174,3181],[3151,3154,3164,4,3169,3172,3182],[3164,3154,3165,4,3182,3172,3183],[3154,3166,3165,4,3172,3184,3183],[3165,3166,3167,4,3183,3184,3185],[3168,3167,3166,4,3186,3185,3184],[3168,3169,3167,4,3186,3187,3185],[3170,3169,3168,4,3188,3187,3186],[3170,3171,3169,4,3188,3189,3187],[3171,3172,3169,4,3189,3190,3187],[3172,3173,3169,4,3190,3191,3187],[3169,3173,3167,4,3187,3191,3185],[3173,3174,3167,4,3191,3192,3185],[3173,3175,3174,4,3191,3193,3192],[3173,3176,3175,4,3191,3194,3193],[3177,3176,3173,4,3195,3194,3191],[3176,3178,3175,4,3194,3196,3193],[3175,3178,3179,4,3193,3196,3197],[3180,3175,3179,4,3198,3193,3197],[3174,3175,3180,4,3192,3193,3198],[3181,3174,3180,4,3199,3192,3198],[3165,3174,3181,4,3183,3192,3199],[3165,3167,3174,4,3183,3185,3192],[3182,3165,3181,4,3200,3183,3199],[3164,3165,3182,4,3182,3183,3200],[3183,3164,3182,4,3201,3182,3200],[3150,3164,3183,4,3168,3182,3201],[3150,3151,3164,4,3168,3169,3182],[3184,3150,3183,4,3202,3168,3201],[3149,3150,3184,4,3167,3168,3202],[3185,3149,3184,4,3203,3167,3202],[3148,3149,3185,4,3166,3167,3203],[3186,3148,3185,4,3204,3166,3203],[3147,3148,3186,4,3165,3166,3204],[3185,3187,3186,4,3203,3205,3204],[3185,3188,3187,4,3203,3206,3205],[3185,3184,3188,4,3203,3202,3206],[3188,3184,3189,4,3206,3202,3207],[3184,3183,3189,4,3202,3201,3207],[3189,3183,3190,4,3207,3201,3208],[3190,3183,3182,4,3208,3201,3200],[3190,3182,3191,4,3208,3200,3209],[3182,3181,3191,4,3200,3199,3209],[3191,3181,3192,4,3209,3199,3210],[3192,3181,3193,4,3210,3199,3211],[3181,3194,3193,4,3199,3212,3211],[3181,3180,3194,4,3199,3198,3212],[3180,3195,3194,4,3198,3213,3212],[3180,3179,3195,4,3198,3197,3213],[3179,3196,3195,4,3197,3214,3213],[3196,3197,3195,4,3214,3215,3213],[3195,3197,3198,4,3213,3215,3216],[3195,3198,3199,4,3213,3216,3217],[3194,3195,3199,4,3212,3213,3217],[3194,3199,3200,4,3212,3217,3218],[3193,3194,3200,4,3211,3212,3218],[3193,3200,3201,4,3211,3218,3219],[3201,3200,3202,4,3219,3218,3220],[3203,3201,3202,4,3221,3219,3220],[3201,3203,3204,4,3219,3221,3222],[3203,3205,3204,4,3221,3223,3222],[3203,3206,3205,4,3221,3224,3223],[3207,3206,3203,4,3225,3224,3221],[3207,3203,3202,4,3225,3221,3220],[3201,3204,3208,4,3219,3222,3226],[3192,3201,3208,4,3210,3219,3226],[3192,3193,3201,4,3210,3211,3219],[3146,3209,3145,4,3164,3227,3163],[3210,3211,3212,4,3228,3229,3230],[3211,3213,3212,4,3229,3231,3230],[3212,3213,3214,4,3230,3231,3232],[3213,3215,3214,4,3231,3233,3232],[3213,3216,3215,4,3231,3234,3233],[3210,3212,3217,4,3228,3230,3235],[3217,3212,3218,4,3235,3230,3236],[3212,3219,3218,4,3230,3237,3236],[3218,3219,3220,4,3236,3237,3238],[3219,3221,3220,4,3237,3239,3238],[3222,3221,3219,4,3240,3239,3237],[3217,3218,3223,4,3235,3236,3241],[3223,3218,3224,4,3241,3236,3242],[3224,3218,3225,4,3242,3236,3243],[3218,3226,3225,4,3236,3244,3243],[3226,3227,3225,4,3244,3245,3243],[3228,3227,3226,4,3246,3245,3244],[3228,3229,3227,4,3246,3247,3245],[3224,3225,3230,4,3242,3243,3248],[3230,3225,3231,4,3248,3243,3249],[3225,3232,3231,4,3243,3250,3249],[3225,3233,3232,4,3243,3251,3250],[3233,3234,3232,4,3251,3252,3250],[3235,3234,3233,4,3253,3252,3251],[3230,3231,3236,4,3248,3249,3254],[3236,3231,3237,4,3254,3249,3255],[3237,3231,3238,4,3255,3249,3256],[3231,3239,3238,4,3249,3257,3256],[3239,3240,3238,4,3257,3258,3256],[3239,3241,3240,4,3257,3259,3258],[3237,3242,3236,4,3255,3260,3254],[3242,3237,3243,4,3260,3255,3261],[3237,3244,3243,4,3255,3262,3261],[3244,3237,3245,4,3262,3255,3263],[3246,3244,3245,4,3264,3262,3263],[3245,3247,3246,4,3263,3265,3264],[3248,3236,3242,4,3266,3254,3260],[3236,3248,3249,4,3254,3266,3267],[3250,3249,3248,4,3268,3267,3266],[3250,3251,3249,4,3268,3269,3267],[3252,3251,3250,4,3270,3269,3268],[3252,3253,3251,4,3270,3271,3269],[3253,3254,3251,4,3271,3272,3269],[3253,3255,3254,4,3271,3273,3272],[3255,3256,3254,4,3273,3274,3272],[3257,3256,3255,4,3275,3274,3273],[3257,3258,3256,4,3275,3276,3274],[3259,3258,3257,4,3277,3276,3275],[3259,3260,3258,4,3277,3278,3276],[3261,3260,3259,4,3279,3278,3277],[3262,3260,3261,4,3280,3278,3279],[3262,3263,3260,4,3280,3281,3278],[3260,3263,3264,4,3278,3281,3282],[3263,3210,3264,4,3281,3228,3282],[3264,3210,3217,4,3282,3228,3235],[3264,3217,3265,4,3282,3235,3283],[3265,3217,3223,4,3283,3235,3241],[3265,3223,3266,4,3283,3241,3284],[3266,3223,3224,4,3284,3241,3242],[3266,3224,3267,4,3284,3242,3285],[3267,3224,3230,4,3285,3242,3248],[3249,3267,3230,4,3267,3285,3248],[3251,3267,3249,4,3269,3285,3267],[3251,3254,3267,4,3269,3272,3285],[3254,3266,3267,4,3272,3284,3285],[3254,3256,3266,4,3272,3274,3284],[3256,3265,3266,4,3274,3283,3284],[3258,3265,3256,4,3276,3283,3274],[3258,3264,3265,4,3276,3282,3283],[3260,3264,3258,4,3278,3282,3276],[3249,3230,3236,4,3267,3248,3254],[3268,3262,3261,4,3286,3280,3279],[3269,3270,3271,4,3287,3288,3289],[3269,3272,3270,4,3287,3290,3288],[3269,3271,3273,4,3287,3289,3291]], + + 'end': (new Date).getTime() + } + +postMessage( model ); diff --git a/examples/obj/lucy/Lucy100k_slim.js b/examples/obj/lucy/Lucy100k_slim.js new file mode 100644 index 0000000000000000000000000000000000000000..2cb6236e46a75251933c0ecaead10d811bcbb9d2 --- /dev/null +++ b/examples/obj/lucy/Lucy100k_slim.js @@ -0,0 +1,28 @@ +// Converted from: ../../examples/obj/lucy/lucy100k.obj +// vertices: 50002 +// faces: 100000 +// materials: 1 +// +// Generated with OBJ -> Three.js converter +// http://github.com/alteredq/three.js/blob/master/utils/exporters/convert_obj_threejs_slim.py + + +var model = { + 'materials': [ { + "a_dbg_color" : 0xffeeeeee, + "a_dbg_index" : 0, + "a_dbg_name" : "default" + }], + + 'normals': [], + + 'vertices': [[-254.337112,-794.886139,-42.036110],[-250.044693,-794.968109,-2.075401],[-249.359878,-786.070648,2.496888],[-251.256973,-794.930267,-11.711052],[-250.623978,-782.115143,-10.003105],[-253.471634,-794.815460,-33.184867],[-252.265335,-786.737701,-22.547477],[-253.349808,-785.818023,-32.975746],[-254.298721,-777.058136,-46.288002],[-253.261246,-769.478302,-38.624916],[-252.879166,-771.202240,-33.297584],[-250.834244,-768.331939,-31.556678],[-252.099014,-769.393463,-29.445884],[-251.243057,-768.862396,-23.137886],[-251.908035,-771.877594,-24.073600],[-250.861832,-770.725494,-14.027122],[-249.389419,-769.126068,-0.998779],[-247.961075,-768.416351,2.524025],[-248.747269,-769.699798,4.778115],[-247.755813,-770.044464,12.823929],[-245.582413,-768.182342,20.207116],[-241.902054,-766.654266,23.730423],[-244.618057,-767.888275,29.886193],[-242.643204,-767.595184,40.341210],[-239.957840,-766.445587,36.086609],[-237.665176,-765.819915,40.575707],[-246.577225,-769.393768,20.686318],[-244.120743,-768.710540,39.383202],[-249.636734,-775.825103,-1.542671],[-248.577286,-794.956512,9.153046],[99.622849,-794.935943,-165.918327],[115.404526,-795.011749,-190.826928],[114.439072,-790.713653,-192.166985],[102.443955,-787.261749,-202.021171],[99.546127,-779.796783,-204.641595],[89.814621,-794.895843,-211.529136],[77.817734,-794.883087,-205.810905],[61.872543,-794.819183,-233.318597],[67.289414,-794.784149,-229.180687],[82.522385,-787.713165,-217.728172],[78.646042,-775.835418,-220.778863],[86.468186,-773.086395,-211.615074],[69.808334,-771.925445,-218.555778],[84.245529,-765.110260,-204.417168],[83.275009,-770.972442,-207.300164],[92.757370,-771.916351,-201.559532],[98.862900,-771.997528,-196.438195],[96.267075,-770.675323,-196.701165],[107.349106,-770.260101,-187.311211],[115.121872,-770.840667,-181.316581],[116.687119,-772.103851,-182.466546],[112.207993,-773.508453,-192.786369],[108.668625,-772.011200,-188.349235],[85.856918,-771.923614,-206.859643],[84.353623,-779.936859,-216.592796],[78.067001,-794.919403,-220.781274],[84.058090,-794.742462,-216.026176],[89.892868,-776.619903,-212.212060],[96.865769,-773.747101,-205.465172],[101.070541,-774.107147,-202.588708],[102.667832,-773.330352,-199.926507],[111.634812,-774.836273,-194.901603],[100.753464,-776.037262,-203.635093],[104.405441,-775.184723,-200.748376],[77.064621,-771.849762,-213.181114],[84.156052,-774.116302,-216.243737],[55.820541,-794.882721,-217.623986],[95.759140,-794.872711,-206.828117],[98.414841,-795.010772,-200.141471],[104.472153,-795.134247,-199.673333],[119.008774,-795.017364,-179.755302],[123.142868,-777.466949,-185.952447],[124.964218,-774.809112,-184.238731],[127.395859,-774.191070,-182.086998],[122.149155,-773.279388,-184.263390],[156.394943,-794.877227,-134.532829],[174.276779,-794.891082,-25.360894],[176.074387,-782.185821,-11.515831],[173.868515,-772.087433,-19.777763],[175.422470,-771.707000,-5.639518],[176.644394,-773.219207,-4.948089],[171.832932,-770.634002,3.664292],[179.066086,-774.554107,14.593529],[177.354599,-774.363617,0.944428],[169.873825,-769.445526,-1.914756],[169.390305,-761.264129,7.610939],[163.384628,-751.950103,4.525986],[165.722763,-754.949310,9.737954],[157.461838,-748.593414,-9.053474],[157.610581,-751.985077,-16.142692],[153.776108,-742.096954,-27.374946],[150.321457,-731.727081,-30.019188],[145.048386,-721.455963,-12.603279],[142.626389,-718.658172,-3.576065],[144.611618,-724.049957,-0.800201],[151.776291,-737.876251,5.454583],[154.021042,-742.168976,13.429284],[161.230698,-749.098419,7.597565],[155.920456,-743.458831,5.036324],[155.498825,-743.504059,-2.076500],[152.618637,-738.747101,-0.960861],[148.632248,-731.649994,-13.305030],[155.003037,-745.616974,-12.578926],[147.980515,-730.200958,-2.265838],[145.992416,-725.089081,-7.265358],[147.601181,-728.367950,-21.402276],[144.004807,-730.794525,21.567429],[141.764877,-730.166534,27.080323],[139.329270,-735.590606,41.306206],[142.796982,-739.611969,42.160485],[132.572739,-732.626556,44.798722],[126.763474,-728.669464,45.513482],[122.917038,-723.548370,43.318047],[125.227890,-720.506988,35.808556],[131.996811,-726.850555,37.776162],[131.721420,-717.116180,20.523987],[132.449448,-713.567291,17.279808],[139.039108,-709.138946,7.125595],[140.359970,-714.835052,0.063698],[142.222153,-714.554413,-7.077140],[143.593918,-708.131378,-16.858253],[143.715561,-705.015503,-9.718834],[143.125168,-702.546539,-18.994941],[141.583054,-701.268829,-32.227272],[139.422653,-695.869629,-34.802819],[138.306137,-700.708282,-53.270866],[135.094528,-689.305206,-44.402794],[132.387680,-685.421295,-48.789573],[129.594589,-690.706451,-66.768028],[128.383041,-696.445495,-77.893242],[122.052963,-699.266327,-93.230187],[127.139633,-707.778595,-91.824272],[124.475144,-709.815216,-97.668160],[135.335739,-728.942291,-98.835640],[142.044846,-737.866485,-98.875648],[135.721481,-741.419159,-111.167306],[131.343186,-739.739166,-115.222755],[131.772995,-744.436859,-122.979011],[129.101486,-746.843841,-135.282310],[136.010483,-753.902130,-131.700035],[142.465195,-757.085479,-117.660331],[143.021042,-762.752289,-126.922187],[144.481735,-765.550018,-128.770012],[150.028610,-770.120453,-123.215919],[152.418381,-771.427093,-122.544822],[152.713303,-770.512359,-114.416893],[145.693344,-763.357513,-118.311897],[149.923142,-764.357757,-109.765632],[151.730576,-762.144134,-102.755135],[148.160263,-755.967193,-103.907142],[149.007797,-746.711395,-95.495185],[146.142929,-745.367706,-99.480354],[148.680222,-734.874908,-84.696266],[147.603012,-724.956085,-71.982490],[149.246628,-722.980255,-60.062737],[149.843186,-723.307953,-54.681053],[145.743393,-715.994171,-56.498375],[139.236496,-704.290222,-57.547494],[134.541123,-696.989471,-61.581443],[143.089401,-753.687225,-111.265876],[138.755051,-747.671234,-113.132836],[141.594956,-742.228668,-103.967323],[144.233872,-733.222259,-90.689628],[144.319687,-758.608795,-114.114967],[134.810288,-745.527191,-117.817482],[138.251267,-751.874298,-120.276710],[123.642929,-695.970184,-87.416100],[123.097885,-689.573974,-82.528068],[119.230332,-683.794708,-84.693580],[125.233139,-677.213104,-57.710807],[128.251511,-681.888580,-56.687294],[121.558518,-677.283752,-68.093086],[122.668808,-680.070831,-69.874427],[121.169663,-682.779083,-78.601356],[113.309311,-685.687103,-100.007072],[114.476425,-691.276519,-101.639443],[117.544235,-697.089081,-99.779548],[115.488205,-713.044403,-114.306953],[119.908371,-710.227508,-104.795967],[124.669663,-718.880829,-104.826927],[120.925888,-720.205658,-110.984764],[124.970688,-734.021515,-117.304130],[126.497116,-740.866180,-128.844506],[124.819626,-730.723785,-112.845863],[135.885483,-733.452118,-102.447991],[128.646347,-726.622894,-105.455163],[120.389938,-703.407989,-99.194877],[116.019455,-685.664856,-94.237144],[109.184494,-681.830658,-104.919563],[107.275375,-676.395508,-103.386543],[101.081528,-670.827697,-113.417656],[99.026718,-672.877350,-129.737815],[97.145249,-672.513092,-141.119439],[94.813278,-665.144989,-140.558586],[95.758286,-673.498596,-146.252068],[90.388291,-663.371978,-150.909111],[91.901108,-661.847015,-146.498436],[85.116318,-657.469940,-158.748008],[87.130417,-668.187347,-158.729087],[92.920883,-673.750030,-151.206291],[88.859055,-674.366607,-157.177300],[95.817978,-683.833343,-149.543023],[93.951767,-686.510223,-152.063438],[87.740891,-684.280212,-159.300682],[85.487656,-680.031311,-162.216056],[82.541062,-658.391418,-165.467034],[80.996079,-683.886383,-169.694145],[82.681564,-680.721130,-166.910454],[75.800217,-693.156006,-179.520714],[74.444565,-681.134674,-179.383172],[71.580429,-687.904419,-185.329643],[68.573593,-701.949432,-194.874107],[71.695786,-699.708709,-189.356590],[70.592331,-705.372436,-193.889122],[69.351425,-710.425689,-198.855034],[72.985581,-717.814666,-198.305901],[78.514511,-723.705536,-194.632255],[86.110397,-733.416900,-189.963676],[95.542954,-735.323822,-178.140770],[102.342575,-738.467865,-171.993401],[102.646469,-744.294159,-176.574333],[98.276291,-748.826446,-184.790032],[90.764450,-761.493744,-197.430687],[89.636154,-770.423065,-202.044883],[71.918442,-757.016815,-211.370079],[79.133103,-752.223053,-203.597466],[84.904404,-744.771270,-196.030999],[89.946335,-741.957550,-190.558525],[95.192734,-740.202057,-182.696343],[92.222031,-745.594757,-189.808006],[94.605942,-752.757965,-189.649772],[87.412521,-753.004120,-196.552940],[84.382675,-756.929535,-201.323144],[63.727341,-700.896881,-200.325248],[61.721359,-685.307953,-197.050865],[58.073166,-699.716461,-205.561303],[51.599899,-701.785156,-211.423393],[39.593796,-690.490204,-215.020988],[32.936691,-698.578155,-219.837730],[27.490708,-692.854034,-220.273582],[12.089279,-683.268615,-220.695549],[13.026901,-690.627594,-223.185173],[3.561142,-690.216980,-224.610253],[-1.391739,-683.553009,-222.775597],[20.734909,-676.793274,-216.970299],[10.736984,-672.662445,-217.376945],[7.835800,-666.332702,-216.002495],[13.803635,-650.454681,-212.445610],[23.696030,-644.814758,-209.549522],[31.143723,-650.433441,-208.389611],[25.017380,-656.714142,-210.721916],[16.459030,-654.151397,-212.427147],[16.418869,-663.327606,-213.884209],[21.607895,-669.498413,-214.011619],[27.837082,-665.168396,-211.441002],[54.061691,-670.984100,-200.336052],[54.772507,-684.643371,-203.344566],[36.419907,-662.072357,-208.157281],[24.281052,-671.618133,-214.103387],[30.309494,-672.845398,-212.941825],[29.481674,-678.608947,-215.434471],[27.592758,-686.042053,-218.387779],[35.010239,-686.984985,-216.169579],[42.053879,-680.628723,-211.002587],[37.800156,-675.580352,-211.335076],[66.814865,-685.599975,-191.244256],[70.274155,-680.783020,-185.430993],[97.686569,-681.489135,-146.337060],[100.469528,-691.632782,-144.505455],[101.900253,-698.291015,-143.190117],[104.657822,-701.006805,-135.304009],[104.287155,-709.988067,-141.470391],[107.712448,-718.095245,-137.687919],[111.877121,-731.418976,-142.621696],[107.590195,-728.341522,-146.422478],[110.186997,-735.215118,-154.329674],[104.523728,-730.263641,-156.628410],[110.284470,-740.711029,-163.317223],[104.335129,-734.533477,-163.900444],[98.336716,-732.953827,-171.616082],[100.546127,-729.267303,-163.312736],[92.715744,-722.738189,-169.473930],[83.471665,-717.423980,-180.966423],[81.742355,-710.620636,-177.441856],[85.188339,-722.825348,-184.189232],[88.982285,-730.640838,-184.000115],[108.307541,-744.744537,-170.245842],[105.007004,-749.957306,-177.770042],[106.298996,-755.107025,-180.089927],[112.845200,-751.763336,-171.881584],[115.215256,-759.417328,-174.687645],[115.856613,-766.806610,-178.300316],[109.346970,-762.380706,-180.639030],[103.729416,-767.292572,-188.553918],[120.855271,-763.425811,-172.200523],[130.004318,-771.678863,-168.739586],[121.895554,-754.959259,-163.936699],[114.783615,-746.858429,-164.485649],[126.071884,-751.054535,-152.049583],[116.747971,-745.595062,-160.200127],[119.126145,-744.276397,-154.076409],[120.111923,-741.394622,-146.122215],[131.269028,-751.592437,-140.660973],[136.677292,-763.270599,-146.840110],[129.023239,-754.694122,-151.441002],[134.376083,-764.210479,-153.575493],[129.787827,-762.035247,-159.464592],[128.447922,-770.592743,-168.297570],[122.881394,-759.957367,-167.552025],[90.144333,-721.919342,-173.702874],[92.319443,-727.879730,-176.283195],[98.272751,-724.223541,-158.294273],[95.547775,-719.645843,-157.411369],[88.786301,-713.267791,-165.712060],[107.227890,-704.894317,-129.700829],[110.224106,-708.957122,-124.116738],[113.732407,-718.911407,-123.775596],[118.598190,-722.279083,-116.465660],[111.861984,-703.926513,-114.960961],[109.390000,-698.761993,-117.665321],[109.587509,-689.624267,-109.845147],[106.597153,-689.256927,-119.222282],[106.602219,-680.886474,-110.146980],[104.884628,-691.266601,-127.600990],[103.702133,-679.583893,-118.252724],[102.850449,-691.084015,-135.453331],[100.729965,-687.093750,-141.674156],[101.616013,-682.778839,-132.478982],[98.902390,-680.603271,-143.194572],[111.848496,-699.618133,-111.689506],[115.430466,-703.322479,-107.081764],[94.620102,-697.824920,-153.528863],[92.276230,-701.436157,-157.635735],[92.347580,-712.521881,-159.421807],[92.331894,-659.645721,-142.545646],[85.719406,-644.129242,-144.169120],[80.250961,-631.765838,-147.513848],[81.954941,-639.087768,-152.485649],[77.546616,-632.619293,-159.529107],[73.371567,-628.144745,-166.740196],[78.834946,-641.437347,-164.666039],[81.197556,-644.390930,-160.843467],[85.346420,-653.403503,-156.018304],[86.321213,-649.176178,-149.681237],[93.649399,-660.454162,-136.554864],[96.244370,-665.387237,-128.970147],[111.113205,-673.509002,-90.408761],[111.711777,-678.036895,-95.303733],[106.421982,-668.406982,-95.105217],[99.386765,-661.842346,-102.996590],[103.322128,-670.265228,-105.440575],[98.514389,-662.111175,-106.553794],[97.513840,-664.639801,-116.171501],[94.482041,-658.593567,-116.907585],[95.891403,-663.157928,-122.422935],[93.008652,-657.650848,-128.767006],[87.633530,-646.445709,-138.816429],[116.881210,-675.453308,-78.058952],[114.598984,-664.432464,-63.390343],[109.383164,-658.394134,-65.550895],[110.883164,-656.853729,-56.014106],[112.125595,-655.308380,-45.166741],[109.154221,-649.289001,-33.725074],[117.014084,-660.555450,-37.790031],[115.218369,-657.373810,-30.766503],[112.001877,-653.125091,-27.165154],[114.144943,-657.048645,-15.276421],[120.116440,-664.530456,-11.409584],[112.994980,-656.892883,-7.252067],[106.246201,-650.859588,-0.337654],[109.689926,-658.900604,12.270195],[112.063034,-665.144989,20.375153],[114.566879,-663.017486,9.521019],[116.618271,-666.892517,14.153366],[122.274887,-671.383209,9.405938],[128.582993,-683.081115,14.539269],[127.805527,-679.090057,9.455132],[133.740891,-687.576111,7.881310],[138.341782,-697.471710,7.023415],[135.915817,-698.328857,14.559029],[135.995651,-703.397186,15.082711],[138.006943,-702.404388,11.565819],[140.545822,-704.164032,5.382347],[143.361313,-705.854461,-4.404533],[141.569809,-697.466461,-7.376167],[141.477036,-701.287658,0.083352],[138.319870,-691.190033,-2.499244],[129.047348,-679.093750,5.158501],[126.482529,-673.610168,0.997033],[135.972397,-688.679138,1.891541],[141.605454,-710.287506,-0.679763],[112.564011,-658.704742,1.751252],[120.812485,-667.935760,4.499901],[121.424057,-667.140442,-1.952659],[126.308090,-672.102844,-7.780555],[133.727646,-682.188415,-19.611153],[133.933823,-685.092315,-39.996040],[132.493149,-680.861908,-27.520683],[129.365158,-676.132599,-23.370521],[121.722885,-666.029998,-26.068779],[124.857285,-670.587860,-32.220726],[121.937973,-667.386932,-39.696113],[117.643662,-665.002929,-53.954597],[127.297409,-676.320892,-47.639167],[130.111557,-678.220337,-36.380272],[132.596604,-682.093139,-37.320854],[130.791794,-681.467529,-46.636910],[118.909165,-664.510406,-45.929618],[128.211044,-675.033081,-4.330642],[135.094345,-685.009002,-8.795250],[139.929184,-693.416473,-18.056663],[141.939011,-697.578552,-13.951500],[138.996506,-691.159576,-10.583747],[136.231003,-687.046417,-24.627311],[141.491867,-697.989349,-23.158622],[139.857468,-694.325561,-25.293266],[119.983261,-663.819030,-21.980003],[103.843613,-643.730041,-13.928382],[103.589340,-641.005523,-19.766487],[104.262680,-641.284210,-24.777183],[104.890488,-643.492431,-37.237266],[108.002792,-648.670898,-40.191734],[103.722702,-645.334015,-50.855949],[105.154099,-650.946899,-61.350914],[104.988999,-654.960174,-71.634788],[100.169296,-644.080108,-61.210807],[90.990585,-642.139740,-87.483604],[88.769272,-640.110626,-92.331688],[86.872604,-637.783050,-96.387230],[81.370957,-629.176819,-104.560478],[85.694931,-640.688995,-118.598442],[80.345871,-628.747009,-122.782066],[80.405136,-628.388153,-114.315940],[77.576523,-619.711059,-102.464531],[77.526962,-614.997863,-93.763816],[79.748581,-612.872284,-91.000541],[85.313461,-610.206482,-91.618858],[83.712814,-607.495605,-91.734489],[83.477158,-600.058044,-94.210442],[83.524155,-597.282287,-100.714759],[85.144882,-596.426605,-105.050193],[74.630783,-582.224792,-110.560905],[75.600327,-568.844177,-106.957650],[74.326767,-565.901550,-108.157128],[73.042160,-565.701446,-113.164634],[72.973618,-566.780853,-122.584434],[77.440537,-562.773468,-122.899621],[80.083603,-560.119445,-128.307441],[90.978806,-555.087829,-124.484017],[93.627121,-556.085968,-118.880699],[104.359848,-556.038238,-109.780433],[103.775864,-555.706878,-106.377143],[108.507004,-550.090942,-105.939430],[118.537033,-544.900451,-109.058464],[129.603073,-537.626678,-111.182869],[125.710373,-533.001342,-107.713859],[129.738999,-528.653900,-110.725013],[130.368393,-523.796386,-112.339958],[128.147690,-519.448303,-111.126457],[119.993820,-525.911834,-104.290414],[120.833176,-515.120819,-103.292000],[124.492294,-505.224151,-109.102746],[121.630051,-502.511139,-116.395591],[116.792404,-492.993164,-122.887275],[120.059128,-489.274994,-124.232643],[121.279831,-471.900146,-134.186683],[118.508347,-473.750122,-133.390373],[110.625534,-468.407715,-137.901085],[116.919052,-467.475219,-136.862236],[107.939499,-465.459533,-139.191216],[113.534042,-435.648987,-152.531945],[114.016708,-429.984573,-155.757499],[112.853806,-417.993896,-163.178703],[107.776535,-418.198715,-157.343376],[108.719956,-424.933685,-153.282738],[109.834946,-412.036438,-146.181633],[108.938095,-420.109375,-143.019615],[110.277695,-402.894333,-144.328911],[109.306320,-403.244369,-153.947808],[109.737167,-395.226288,-148.783287],[110.068527,-389.205429,-147.590995],[112.042465,-376.986068,-143.447899],[110.561630,-377.361099,-148.712578],[109.918930,-364.138641,-140.105187],[95.490036,-366.506469,-140.398888],[88.871140,-367.546570,-139.096458],[90.392502,-373.125900,-136.942985],[88.659104,-370.817154,-136.242515],[91.763718,-374.298919,-128.506797],[96.392746,-373.233780,-124.328530],[95.655380,-366.816162,-127.087029],[105.017258,-372.309494,-114.349769],[109.541550,-364.846740,-110.995613],[107.891037,-373.213623,-110.437675],[113.240219,-367.066269,-104.818626],[109.902329,-376.750366,-95.810600],[107.050095,-385.241867,-97.859291],[98.819992,-388.741913,-91.969001],[100.788254,-389.469314,-92.825889],[105.362717,-384.621917,-94.587257],[110.772812,-376.732559,-101.379982],[106.313034,-365.255432,-139.007530],[104.128769,-353.307800,-142.657464],[97.183029,-350.593383,-144.223533],[82.397080,-353.431686,-140.663140],[80.644760,-345.534622,-143.033348],[81.454941,-348.594818,-140.284081],[85.035263,-356.222320,-142.471581],[91.741074,-363.592117,-141.195701],[95.085678,-360.360565,-142.019402],[91.269211,-352.239380,-144.273399],[78.549118,-337.003952,-143.227441],[80.969895,-330.340179,-137.183221],[79.870896,-326.605957,-134.864281],[72.986435,-326.699188,-135.654594],[85.499191,-323.302520,-131.768287],[80.526901,-312.030868,-127.089759],[87.843430,-303.543770,-127.512413],[92.320053,-300.312324,-126.988396],[93.095322,-293.443763,-125.527244],[89.395737,-280.199196,-122.381508],[88.630295,-295.596107,-125.905052],[86.495590,-290.284027,-123.810966],[84.763596,-278.956901,-119.756874],[81.562607,-275.505546,-116.237846],[71.150986,-276.670852,-111.847007],[66.748459,-278.208610,-111.750024],[64.269516,-287.883835,-116.000908],[57.230942,-293.031433,-119.173591],[69.806076,-297.557113,-119.726448],[73.934799,-296.463226,-120.171471],[77.477402,-297.310867,-121.827659],[67.190964,-309.400055,-124.013908],[62.064987,-302.417030,-121.757560],[67.750961,-295.265403,-118.685707],[71.909775,-283.850258,-114.382301],[74.533371,-289.224464,-117.538810],[76.563645,-282.831779,-115.702798],[73.837753,-268.158889,-110.213326],[79.455368,-272.616172,-113.891090],[76.586289,-258.175136,-107.966179],[81.939499,-258.060169,-111.072883],[89.301499,-256.076950,-117.364419],[95.584824,-242.222068,-116.549813],[97.229599,-229.886985,-114.242500],[98.437546,-237.706222,-115.383491],[102.271469,-225.833343,-112.575966],[98.320114,-210.497714,-109.655937],[100.981430,-217.141035,-111.070137],[108.454941,-199.470832,-103.911140],[104.518295,-190.404759,-103.314643],[100.226791,-192.813555,-103.840309],[95.367783,-196.611261,-102.757255],[88.213730,-205.061643,-98.376060],[87.274216,-225.635564,-106.881691],[72.426499,-226.883465,-95.510398],[67.374863,-229.456207,-95.202385],[64.177597,-225.298834,-93.445518],[60.741928,-222.924232,-93.028190],[57.995285,-212.080761,-89.852058],[53.458908,-213.039531,-94.308464],[54.379746,-212.208522,-103.744317],[57.994675,-209.002948,-113.034279],[57.680527,-200.537001,-109.038841],[60.202438,-194.193318,-116.901803],[59.014145,-199.393322,-119.627693],[58.210861,-192.946441,-119.451530],[60.085434,-189.608610,-117.137794],[59.896958,-182.946738,-105.865730],[58.221115,-185.085937,-117.189140],[59.315964,-180.161509,-115.812416],[57.674545,-163.960621,-111.261894],[61.127792,-149.566169,-107.950431],[55.499130,-130.470749,-101.370522],[52.151474,-129.775932,-99.495018],[45.583237,-137.120639,-97.919700],[42.418442,-131.072654,-92.497383],[40.165634,-140.114780,-95.641517],[36.983200,-127.077629,-87.689751],[30.944748,-130.022842,-93.222282],[30.196762,-133.145164,-98.522819],[29.925095,-122.057426,-90.994682],[29.662033,-114.983963,-89.771996],[30.462814,-107.235595,-90.568748],[29.772629,-94.760002,-79.343300],[29.755356,-83.837036,-77.334480],[29.487045,-74.267646,-86.061851],[29.375839,-82.796005,-93.899208],[28.771042,-91.185348,-101.332528],[29.729660,-92.710899,-91.423362],[30.265854,-101.987434,-93.406746],[29.767014,-94.136871,-87.760154],[29.673630,-84.918014,-92.285911],[29.431137,-83.004188,-84.231620],[32.287155,-124.088531,-87.607170],[33.204270,-112.234482,-80.956871],[38.080673,-110.832977,-79.464225],[41.256271,-101.919441,-77.377433],[45.094650,-106.572876,-84.023201],[42.087998,-115.461898,-83.872718],[40.912521,-119.870781,-85.070625],[36.181381,-120.294014,-83.894386],[47.543869,-123.987602,-93.706443],[51.473740,-118.548752,-94.460411],[58.704880,-113.350998,-95.432273],[61.668381,-115.536018,-96.694938],[64.205490,-115.161064,-95.678474],[66.197983,-116.360504,-92.689538],[64.709580,-121.391182,-87.057960],[63.567978,-114.770492,-81.749809],[66.280319,-108.842659,-85.933860],[53.304062,-105.180137,-90.625328],[62.022934,-103.011375,-92.143165],[46.612534,-114.792724,-88.769982],[30.586960,-117.813484,-86.450676],[30.197312,-110.680908,-84.250237],[29.784531,-109.286567,-85.979637],[31.432236,-91.918258,-74.597343],[30.543808,-70.761543,-67.305870],[33.787216,-60.011108,-59.719169],[36.930344,-59.222854,-58.816825],[36.602036,-50.559845,-54.979942],[35.200424,-42.704818,-51.472709],[36.298752,-31.537368,-46.205696],[36.837509,-16.267029,-38.530937],[45.503830,-2.713333,-33.737587],[46.347153,6.051300,-29.565590],[56.706162,-5.275390,-45.536369],[59.315231,-4.790558,-46.923683],[60.575424,-12.944214,-52.142509],[66.052231,-13.037872,-52.673210],[68.867478,-10.976852,-48.203849],[64.555161,-6.861496,-49.485344],[63.213303,-0.775619,-45.711708],[64.729965,8.427445,-41.064628],[67.857468,2.797867,-43.417549],[60.527084,24.812653,-30.346717],[56.562607,23.226334,-28.293068],[50.681748,33.351105,-17.516960],[44.638535,29.547684,-15.387062],[42.246811,31.004258,-13.815162],[43.175888,16.047379,-22.042733],[34.750900,18.642639,-22.087806],[30.412521,23.890930,-31.515541],[31.106796,17.727082,-32.579383],[29.559433,14.011078,-39.345420],[27.898239,12.272019,-42.528892],[15.350693,-4.163482,-50.680885],[17.052170,-14.356262,-58.100059],[19.698959,-10.230865,-57.028267],[20.721298,-22.593704,-65.589225],[22.254868,-21.052368,-64.933098],[23.814194,-28.842895,-70.154854],[24.764023,-39.974838,-77.289390],[25.385239,-49.830612,-83.222236],[25.951340,-59.560760,-88.789436],[27.868881,-72.355980,-93.919563],[23.079147,-72.227508,-96.784889],[20.324448,-83.558326,-103.043068],[17.993088,-93.496826,-108.291405],[20.468552,-99.763656,-112.468133],[19.237656,-104.996803,-115.285835],[19.006149,-116.013740,-121.065284],[21.573044,-123.272377,-125.500480],[26.515183,-115.864692,-119.080849],[23.675156,-105.263168,-115.220666],[25.178391,-92.404609,-107.343971],[27.324143,-80.900314,-98.751426],[28.560288,-105.682762,-110.114479],[29.860458,-103.880188,-104.805626],[29.922104,-110.755508,-108.546653],[30.858994,-111.179260,-103.738441],[30.235520,-101.090393,-98.995018],[29.668198,-95.043861,-100.507804],[22.465256,-117.269157,-122.071891],[22.049973,-91.716095,-107.705406],[26.914414,-92.851272,-106.037010],[25.449997,-80.628364,-100.645530],[25.848740,-68.920242,-94.135826],[28.655136,-70.423027,-90.968773],[18.631333,-76.229133,-98.163704],[17.728806,-66.988449,-92.310997],[19.940170,-60.528885,-89.492103],[18.867416,-48.478851,-81.169456],[13.362167,-40.822845,-71.617027],[10.867172,-41.647415,-69.904182],[10.119492,-32.437286,-63.381371],[7.586411,-26.898178,-56.952110],[3.141953,-40.925430,-59.350135],[2.008347,-31.851288,-53.315879],[-11.491531,-48.207580,-48.833473],[-13.293228,-61.507980,-53.174172],[-31.485855,-88.254989,-64.371452],[-35.356094,-96.898483,-72.758079],[-37.547745,-102.161575,-78.689751],[-38.715469,-75.474632,-80.814949],[-41.518753,-83.393882,-85.378929],[-40.527115,-90.685722,-85.427360],[-40.674637,-95.557762,-86.269783],[-40.090713,-98.272377,-85.273018],[-35.408890,-104.511741,-72.474754],[-27.537186,-108.353019,-66.139061],[-24.305191,-101.099914,-64.044807],[-21.474930,-84.475807,-58.577171],[-24.772598,-85.607048,-58.809945],[-25.217117,-78.859665,-56.820717],[-29.218582,-77.654419,-59.662498],[-31.946976,-96.701049,-65.992379],[-26.814529,-97.530632,-62.888420],[-28.012955,-81.021339,-58.989784],[-29.417557,-94.304397,-63.127128],[-37.973038,-95.904373,-80.802177],[-35.991653,-77.837021,-77.493020],[-34.698807,-111.063797,-71.052314],[-32.746902,-85.552322,-66.495292],[-33.995071,-86.042724,-69.863182],[-39.366897,-63.136383,-79.022956],[-41.981583,-56.249405,-75.592414],[-44.835831,-57.825012,-75.173394],[-67.899612,-70.634727,-66.428917],[-64.049087,-71.021896,-69.585197],[-58.693069,-79.426376,-81.208747],[-69.021377,-86.567032,-77.601616],[-81.995254,-97.342315,-76.235954],[-89.922684,-111.076286,-83.635491],[-87.978775,-102.542274,-79.286110],[-84.435928,-103.709457,-78.832664],[-83.039383,-112.158073,-83.899208],[-80.976822,-127.671783,-95.010323],[-80.971512,-138.469688,-101.641746],[-85.295853,-138.800152,-101.022133],[-93.284317,-140.493492,-103.811042],[-94.669571,-151.451301,-108.888389],[-98.683182,-164.164655,-111.417138],[-101.900650,-171.302852,-107.079246],[-100.884476,-168.278293,-101.527214],[-101.351883,-179.159847,-105.216163],[-97.708572,-186.871776,-91.943703],[-97.476822,-201.222709,-94.215004],[-97.712540,-213.674331,-106.270485],[-98.734024,-220.092336,-116.320747],[-97.511490,-225.367109,-111.806236],[-96.267593,-237.082390,-108.625343],[-97.163711,-263.197281,-113.447487],[-99.631607,-275.551635,-115.272071],[-95.281021,-287.241752,-120.163140],[-95.386185,-296.224655,-124.345726],[-96.720840,-300.871437,-126.398185],[-90.417496,-322.517219,-140.174919],[-88.835220,-317.084602,-139.112908],[-80.185074,-338.714264,-155.896537],[-79.042679,-351.019134,-156.959679],[-82.250625,-348.750091,-153.172051],[-85.554397,-350.066574,-152.425744],[-89.678787,-346.791977,-151.101739],[-93.833877,-348.246933,-154.349511],[-87.902664,-354.523819,-154.256615],[-90.268753,-355.567047,-156.339715],[-94.668960,-355.903946,-162.291587],[-97.301773,-360.415146,-169.155816],[-93.066910,-374.390442,-178.227593],[-94.880020,-376.062118,-180.637810],[-99.119278,-378.198501,-183.912102],[-84.533890,-397.331634,-192.264976],[-81.692947,-404.245025,-195.317680],[-80.322281,-411.387222,-191.580589],[-79.373489,-412.067718,-185.860893],[-76.462295,-419.617874,-185.014396],[-78.743790,-408.487976,-177.310967],[-69.840286,-401.819748,-167.929679],[-74.623855,-390.713195,-166.608329],[-70.826431,-390.936721,-167.771019],[-60.590530,-397.113998,-179.085197],[-49.104629,-407.117340,-190.297691],[-32.839004,-419.514984,-198.783287],[-26.919083,-415.648910,-200.414239],[-24.776382,-422.396530,-200.258355],[-19.358047,-420.721267,-199.151573],[-18.167923,-418.406616,-196.349632],[-22.514236,-406.126602,-190.236962],[-28.649856,-399.978119,-182.559685],[-33.827957,-388.514343,-185.636406],[-36.305313,-382.927795,-191.814506],[-36.550369,-384.562317,-197.758384],[-41.844559,-378.891708,-197.916008],[-49.772964,-374.786224,-196.344628],[-56.206253,-361.979202,-192.524651],[-61.837417,-358.801910,-188.840019],[-72.517654,-352.748001,-178.235435],[-73.733841,-340.350006,-177.862206],[-75.849441,-344.503967,-172.191246],[-78.389053,-327.440246,-173.578605],[-81.762894,-313.998398,-168.971673],[-84.568802,-306.384475,-160.681266],[-86.617630,-301.797920,-151.745629],[-84.183731,-313.313080,-154.390678],[-85.605423,-310.460846,-146.016777],[-84.001907,-319.068947,-149.443321],[-81.708023,-328.041504,-154.695244],[-82.109512,-322.837700,-156.907708],[-86.139175,-314.005829,-142.573112],[-86.575577,-305.211410,-139.108726],[-89.747024,-292.630188,-128.263634],[-92.339249,-285.703613,-122.354698],[-92.726334,-275.617431,-122.178124],[-93.508682,-264.071624,-121.855644],[-95.866043,-272.608680,-116.527336],[-94.999710,-262.158386,-116.261894],[-96.066238,-280.888748,-118.178246],[-94.010208,-273.005623,-119.051018],[-92.683487,-292.888061,-124.429863],[-93.288589,-306.262031,-130.132591],[-90.916031,-312.637291,-134.819358],[-94.745071,-314.697487,-134.052330],[-86.646133,-292.377899,-163.260002],[-84.079788,-299.569336,-169.427727],[-81.861771,-288.760597,-173.434319],[-77.205826,-289.654472,-174.626854],[-74.789444,-300.973266,-178.014092],[-80.020828,-300.934280,-176.715110],[-78.250503,-312.298553,-178.163811],[-59.589371,-313.378433,-164.218803],[-56.740005,-320.353767,-162.745353],[-59.627823,-313.876999,-155.894768],[-58.654373,-317.927047,-150.468223],[-57.549881,-318.835495,-147.341758],[-51.134048,-322.660843,-140.912376],[-55.871475,-320.068710,-144.786949],[-58.826126,-301.533577,-139.547111],[-63.742447,-297.217842,-148.235833],[-61.521561,-286.739433,-139.486686],[-61.009354,-279.955154,-137.433037],[-62.223282,-272.318664,-138.138603],[-59.978165,-265.155334,-134.084556],[-55.883316,-268.488159,-128.989112],[-51.960709,-264.982429,-124.370553],[-49.532059,-260.477539,-121.850945],[-45.719253,-269.075752,-117.246940],[-45.288956,-279.276291,-118.613732],[-31.181045,-269.417144,-106.912681],[-35.744095,-269.701461,-108.179512],[-34.982925,-246.966690,-100.322319],[-37.891617,-250.365360,-103.998191],[-40.886063,-247.934059,-106.407051],[-44.384170,-255.139576,-113.150978],[-38.827286,-257.890434,-107.523399],[-42.777603,-266.919532,-113.280174],[-40.318069,-276.347046,-113.003395],[-32.283401,-260.446182,-104.361381],[-34.582840,-256.838253,-104.136757],[-35.025772,-276.344047,-109.548577],[-23.596146,-256.456375,-105.058571],[-12.071243,-255.646393,-116.246879],[-12.349136,-262.216148,-115.099235],[-11.755020,-270.302055,-114.755790],[-14.920303,-278.298996,-111.495979],[-13.679581,-289.757606,-113.679954],[-17.445633,-289.426376,-112.285607],[-11.475662,-305.775634,-118.091149],[-7.621475,-305.335426,-119.939689],[-3.512710,-314.670417,-123.729133],[0.836838,-307.474006,-129.166619],[3.545517,-307.770324,-135.126214],[-0.097305,-273.432945,-136.638909],[-0.584488,-259.723747,-144.259453],[-0.954239,-252.744400,-143.630852],[2.238205,-250.329162,-153.366082],[3.474838,-240.773449,-156.546044],[1.631699,-238.136905,-150.541924],[-1.100235,-242.408203,-142.723748],[-4.080215,-250.315387,-131.619560],[-2.013077,-255.365410,-138.971061],[-2.898758,-241.542980,-136.272576],[-2.623550,-232.165401,-135.047783],[-6.903580,-219.529384,-120.158470],[-13.807999,-217.215757,-107.764137],[-18.912735,-218.568557,-104.046334],[-28.569473,-206.722155,-93.693168],[-31.801102,-214.972753,-93.275444],[-32.247818,-221.805467,-94.333000],[-35.552200,-198.245802,-87.744255],[-48.399795,-205.966722,-95.217277],[-49.162308,-199.441298,-106.922845],[-53.388504,-175.338339,-112.883842],[-55.635696,-161.277004,-114.727775],[-52.646561,-157.197365,-109.883445],[-57.607559,-131.128235,-110.463935],[-59.339737,-141.717434,-114.733940],[-5.791885,-204.811920,-121.690911],[-1.960098,-204.427149,-132.442772],[-3.044205,-222.042309,-132.528160],[-0.842850,-226.462757,-141.033622],[1.536911,-230.340355,-150.387504],[6.231247,-229.814281,-157.241478],[9.827561,-222.426840,-159.830314],[6.081528,-220.338722,-154.048363],[11.399033,-213.880859,-158.956658],[20.543747,-192.953121,-160.399070],[25.794785,-186.644877,-159.086541],[26.660385,-175.399316,-152.778771],[28.710983,-167.500541,-148.051537],[30.267685,-150.396324,-136.189201],[32.671005,-144.080913,-122.122231],[31.681259,-145.028576,-127.556785],[29.322861,-134.082550,-126.471093],[30.437241,-135.436821,-123.606866],[25.504379,-121.340889,-123.494514],[27.891098,-124.111587,-122.314293],[28.701706,-117.763054,-115.984399],[16.577683,-123.075103,-123.296212],[8.598740,-145.229286,-124.204033],[13.470078,-161.699165,-140.024101],[13.063645,-151.428146,-134.504356],[15.902023,-151.164928,-137.169700],[22.033188,-155.586422,-142.775841],[27.985031,-137.769794,-131.798637],[28.169907,-144.747585,-135.948784],[21.845566,-137.948677,-133.310188],[24.993881,-144.132011,-137.370110],[21.475693,-146.400470,-137.983880],[14.061691,-138.129696,-127.935036],[17.901108,-143.658848,-134.230003],[14.608994,-131.340965,-125.117730],[19.036240,-133.938381,-129.549859],[16.311936,-104.242782,-113.582191],[14.275375,-106.275177,-112.993798],[6.532700,-95.491859,-98.091758],[2.231979,-100.481720,-93.614846],[-2.791458,-98.570236,-83.521858],[-2.820572,-88.819404,-78.339592],[-9.880020,-90.608566,-70.231666],[-11.062881,-105.573852,-75.114189],[-4.490799,-111.157730,-86.641289],[-5.027359,-116.390373,-88.092369],[-8.579910,-119.789261,-83.995644],[-13.395889,-117.545440,-76.571083],[-12.582596,-94.928970,-69.058464],[-10.240616,-80.273758,-63.959831],[-7.238907,-65.782409,-60.290016],[-6.144668,-69.856117,-63.373893],[1.020554,-63.696731,-69.163902],[6.313828,-51.329788,-69.932212],[7.592697,-44.314850,-67.276558],[1.404099,-55.426834,-65.233741],[-3.939163,-53.697677,-57.925651],[-8.666214,-51.511398,-52.450310],[-7.360367,-39.460632,-48.275612],[-15.594986,-75.107612,-57.379264],[-14.907547,-90.055450,-64.725532],[-22.053299,-73.445396,-54.350944],[-10.918472,-71.003837,-59.230034],[-2.389419,-72.409385,-69.620277],[-5.966080,-81.881393,-70.627693],[-1.835098,-82.045768,-75.864540],[-4.542313,-99.994201,-81.374077],[29.307236,-123.438469,-117.523338],[30.837631,-132.047615,-118.229714],[31.017746,-123.381859,-110.874229],[30.290878,-126.193390,-96.783165],[30.734665,-116.243034,-94.337486],[33.847885,-135.296489,-93.067237],[36.805405,-134.980022,-92.063972],[30.385422,-140.140182,-101.928871],[32.307541,-144.290382,-107.868766],[33.726853,-144.636299,-114.392265],[35.000595,-164.554443,-125.713417],[35.240952,-170.406021,-130.649299],[35.923508,-178.021511,-135.090263],[30.570236,-180.405886,-126.533409],[28.021164,-191.322802,-125.777795],[27.448532,-192.172930,-121.710915],[29.736008,-192.331580,-116.679008],[27.397568,-203.285330,-122.017219],[26.577744,-210.812840,-122.761924],[28.316269,-211.383181,-120.285957],[32.744064,-173.599256,-126.786369],[33.909409,-151.100681,-115.181068],[30.898056,-152.902378,-109.186837],[30.853378,-154.966629,-105.899589],[36.643417,-168.312668,-107.657722],[39.559311,-166.025617,-107.221993],[47.378769,-165.006397,-109.578117],[41.013291,-174.139320,-110.175164],[37.731369,-174.205364,-109.300500],[37.158798,-184.847913,-112.106011],[36.902695,-201.928991,-116.845726],[43.269516,-207.661878,-119.625756],[36.046311,-216.043222,-120.041160],[26.866623,-225.740091,-125.856239],[26.174851,-225.182951,-129.695350],[26.284470,-221.464817,-131.799888],[27.020249,-205.244471,-128.775948],[28.205673,-209.330772,-133.912362],[28.485642,-202.528995,-132.112556],[31.849777,-204.612827,-138.342247],[35.492478,-201.055895,-143.779686],[36.371750,-211.481108,-148.869683],[37.321701,-207.515280,-162.525323],[33.659104,-206.744911,-166.467980],[28.303146,-198.435134,-164.916985],[31.429611,-198.020424,-162.975486],[38.061936,-195.169217,-147.754571],[37.390854,-196.130453,-144.920952],[37.165512,-190.517693,-142.638084],[31.593979,-190.496995,-133.137367],[26.132492,-212.452631,-125.952217],[28.014206,-222.973741,-123.303444],[30.235336,-218.419906,-121.119407],[26.581833,-217.610719,-124.795707],[32.715988,-207.404940,-118.376625],[33.750046,-198.859272,-116.226951],[28.073593,-182.235918,-119.478508],[30.093125,-177.039251,-113.830482],[31.348251,-171.344085,-110.611656],[30.083298,-164.070543,-113.714378],[30.991440,-159.609459,-114.040382],[30.702438,-173.711673,-122.659004],[33.369248,-155.460666,-116.093452],[33.535935,-180.526750,-111.435691],[37.841110,-191.548366,-114.103996],[33.023117,-187.742904,-113.499337],[30.296494,-200.833461,-118.238441],[30.038315,-184.425567,-114.628075],[38.332199,-208.025553,-150.353935],[37.012436,-198.850499,-154.925316],[29.819260,-189.347800,-159.068871],[36.187180,-182.843334,-137.369133],[35.541367,-188.760887,-149.723748],[33.903366,-178.140239,-146.553673],[35.675644,-177.898084,-140.847252],[31.828476,-164.758108,-142.105156],[31.317673,-170.144373,-146.481194],[33.259018,-183.013097,-150.981834],[36.893295,-184.737618,-141.563560],[39.770187,-206.073798,-154.329857],[33.173630,-229.836883,-151.287895],[40.196335,-237.374061,-164.817772],[40.450546,-247.175617,-169.831016],[40.881394,-227.812084,-162.522209],[39.962204,-224.148821,-159.195916],[39.903244,-209.107082,-157.885856],[40.648300,-216.463682,-160.225304],[37.281845,-231.402626,-158.433037],[31.203659,-216.492351,-142.275323],[30.013046,-227.638492,-143.767906],[30.174545,-240.913875,-147.526360],[33.725144,-238.662452,-154.770561],[30.521408,-246.211704,-148.616203],[32.856186,-255.962318,-157.381645],[32.393112,-257.366184,-154.418144],[32.468063,-252.221191,-145.926873],[29.335251,-240.740059,-134.670066],[34.092453,-257.873241,-161.448051],[36.907028,-260.938690,-168.350548],[37.891708,-257.456497,-169.752404],[29.108872,-243.411449,-186.341392],[39.139938,-244.102722,-182.674981],[37.161911,-235.889839,-178.913261],[39.794663,-235.794559,-175.126854],[42.335068,-248.302437,-179.215600],[42.705795,-258.076072,-182.144889],[42.245346,-251.902912,-178.237449],[36.953293,-245.383819,-163.444511],[40.984970,-255.327610,-176.033287],[29.225571,-242.234253,-140.997338],[28.831833,-237.947551,-142.837608],[27.447250,-224.467086,-136.429101],[27.450119,-230.136608,-135.848289],[27.538925,-216.508962,-135.048118],[48.084091,-172.704277,-112.116645],[50.264877,-169.963031,-111.764076],[30.532456,-146.504352,-105.056771],[30.835007,-144.459407,-101.614662],[32.108994,-140.212879,-97.180427],[32.227036,-135.948051,-104.220863],[11.532944,-236.326568,-166.275506],[16.189072,-231.328773,-170.883782],[11.569260,-261.029991,-173.330620],[12.678513,-270.617691,-176.750176],[20.424667,-274.029945,-184.946647],[24.414291,-285.027946,-191.088341],[39.096054,-287.062820,-200.961632],[42.623642,-282.042190,-200.663505],[46.424912,-284.663009,-201.126488],[44.494125,-280.268318,-197.660270],[56.112290,-302.847557,-199.335076],[58.349899,-305.832451,-205.339500],[59.613266,-310.024124,-197.369133],[64.298081,-317.215240,-196.576316],[63.737045,-315.328628,-200.096154],[73.325363,-326.333191,-200.696983],[78.472946,-332.248321,-200.449302],[83.530441,-338.842209,-201.445366],[77.521408,-355.001129,-196.882927],[78.370407,-353.601669,-185.388756],[76.545090,-348.774444,-182.418144],[79.046127,-352.006210,-179.749657],[89.791062,-358.415329,-173.149041],[87.456101,-352.072128,-172.683433],[82.585068,-349.185699,-174.352195],[66.281418,-334.611343,-183.802513],[69.649338,-340.741821,-188.790550],[79.320541,-335.328079,-198.106498],[73.314072,-329.204849,-195.078911],[77.239487,-338.458343,-195.631188],[69.561447,-333.194641,-190.423333],[71.996201,-341.854171,-192.374230],[73.553146,-347.958664,-190.152183],[81.113571,-355.321121,-199.298943],[81.326096,-352.644882,-177.182793],[73.228867,-347.047332,-192.682151],[75.758469,-347.324737,-195.821159],[82.625534,-342.603668,-198.805931],[86.561752,-348.407074,-201.738121],[70.508103,-330.260208,-191.722375],[81.779709,-342.870605,-172.084130],[83.354904,-334.034851,-169.825767],[81.066025,-326.454895,-167.951469],[81.151901,-322.400459,-165.279869],[93.943161,-329.775039,-156.489586],[98.856003,-331.363220,-153.816704],[100.873337,-337.236587,-154.621177],[104.205917,-338.157028,-152.253837],[97.573166,-328.903534,-148.592430],[101.276352,-332.101196,-151.115501],[94.880600,-324.822113,-153.200982],[89.871872,-345.878708,-169.699975],[77.135910,-327.270889,-170.825890],[80.753220,-336.379684,-208.360833],[78.924179,-339.298462,-210.592094],[90.689133,-350.713058,-206.798333],[91.595627,-352.431579,-203.778221],[89.023361,-346.957336,-204.287071],[81.343369,-334.933548,-204.775780],[85.957749,-346.545562,-208.461357],[69.407944,-363.637344,-209.570732],[59.496567,-349.133865,-209.007134],[50.820664,-356.512191,-206.012687],[50.612412,-347.363189,-206.705253],[39.561203,-368.403610,-196.280601],[34.533493,-356.462707,-195.889794],[34.637009,-348.841095,-199.116020],[42.238327,-355.672332,-203.061027],[45.729355,-344.681213,-205.291741],[51.731796,-334.370254,-207.904717],[53.486435,-316.987297,-208.876824],[47.408432,-330.707489,-206.728080],[45.433884,-287.358223,-203.200219],[51.407150,-292.612068,-201.840782],[52.998032,-298.240310,-205.739158],[52.094467,-305.589782,-207.389611],[57.100693,-312.793121,-209.234124],[66.160568,-317.289642,-205.701073],[55.959824,-340.463684,-208.680230],[67.119370,-333.022293,-211.692650],[69.617294,-341.393570,-211.751488],[72.900742,-348.655960,-211.299370],[66.055283,-351.617813,-210.170525],[82.029404,-350.422500,-210.928367],[74.758591,-342.482361,-211.579918],[72.118027,-329.522232,-210.802574],[67.437546,-325.154663,-211.318473],[68.067368,-321.650139,-209.712823],[73.935898,-325.972397,-205.083580],[74.847458,-328.313156,-207.979179],[44.865097,-295.336876,-204.547845],[48.158981,-290.757637,-204.195518],[44.313156,-309.369537,-205.386101],[39.492783,-328.704895,-203.480706],[46.912705,-313.897186,-206.900474],[36.647324,-317.023597,-202.617028],[44.235947,-321.144149,-205.816643],[40.751938,-340.328140,-203.509972],[36.649948,-340.330871,-201.346673],[35.802597,-328.207184,-201.589164],[33.192978,-330.395202,-199.594902],[32.767502,-317.850898,-200.142968],[28.997666,-320.034179,-196.591790],[21.554306,-316.028770,-190.243522],[20.165756,-320.864807,-184.306297],[16.769943,-313.108612,-178.911125],[15.620468,-299.908355,-182.043480],[17.407761,-299.319381,-186.538811],[7.829453,-270.173561,-167.781853],[6.790268,-273.030166,-163.073356],[1.230148,-272.185577,-145.109794],[3.957504,-270.962104,-155.697564],[3.863999,-282.173958,-147.415336],[6.355698,-292.376556,-151.432793],[4.711777,-295.185653,-141.218316],[6.871079,-287.478653,-157.691917],[7.613693,-295.051178,-155.263238],[6.077988,-280.771812,-157.910575],[8.646713,-290.077514,-163.597343],[9.616867,-293.230346,-165.916069],[11.234482,-308.286079,-165.323784],[14.940170,-307.182472,-176.415489],[14.553391,-315.616050,-171.619926],[14.011093,-291.357559,-181.070672],[12.209030,-285.679985,-177.686119],[9.333481,-282.177353,-168.202812],[10.368149,-276.205200,-174.017936],[9.111008,-263.229484,-171.122825],[12.242111,-278.461067,-177.433799],[11.667526,-294.453003,-171.714164],[12.349411,-305.932693,-169.505517],[28.420761,-339.437286,-194.070336],[24.795334,-326.745025,-191.622642],[22.468918,-333.151977,-183.966180],[26.824204,-341.463119,-190.488914],[23.135239,-349.050308,-176.063224],[22.506516,-360.208709,-170.837791],[29.529648,-378.260986,-176.544120],[22.285996,-382.755706,-162.263725],[17.983200,-380.397186,-154.780082],[19.561020,-374.266693,-160.191033],[20.013962,-368.715820,-163.868828],[20.083847,-359.750030,-166.171990],[14.390549,-350.292419,-155.713676],[17.284653,-351.149841,-160.056785],[16.537827,-344.759796,-161.791801],[8.879624,-346.503311,-145.246483],[3.076279,-347.653106,-134.567344],[-2.370499,-348.078827,-130.176262],[-10.078079,-340.161621,-126.484535],[-12.564651,-345.093933,-128.085868],[-26.011734,-320.390297,-123.062248],[-35.300491,-323.068680,-129.146110],[-32.546158,-313.693206,-122.774177],[-38.399673,-313.853805,-125.900216],[-40.661209,-321.794471,-131.755760],[-40.734512,-333.943329,-138.963433],[-50.176285,-330.468475,-144.775718],[-51.829483,-332.998382,-150.275657],[-55.858169,-322.995453,-159.780755],[-52.375015,-330.468933,-167.186027],[-55.171768,-326.473785,-154.509758],[-48.367325,-342.028778,-153.611747],[-49.195633,-339.859161,-161.416710],[-46.456741,-346.843322,-160.026360],[-38.632706,-368.405746,-164.330041],[-35.525406,-381.077804,-167.447532],[-36.623978,-382.482788,-172.796135],[-34.630997,-388.433349,-181.078484],[-33.498672,-391.200653,-175.209556],[-30.776077,-396.919586,-172.001732],[-30.505142,-396.059936,-169.403495],[-27.092239,-382.435409,-153.326957],[-23.318619,-392.020309,-154.488091],[-22.333267,-385.427185,-149.871788],[-19.383133,-393.820007,-151.643760],[4.173813,-409.719711,-148.982383],[-5.017471,-405.075988,-149.233452],[2.547348,-415.116165,-150.973382],[0.106064,-422.817596,-154.132744],[3.495834,-429.718353,-155.823387],[-3.051163,-434.125259,-158.034477],[-4.726150,-438.553604,-160.017479],[-0.838333,-440.516174,-159.343499],[2.012558,-452.705444,-161.548240],[11.742783,-456.059051,-162.332634],[14.252792,-486.664825,-169.045494],[6.589035,-473.439605,-167.200767],[6.838791,-469.880096,-165.932487],[18.337265,-483.270935,-166.926537],[-6.376663,-420.980392,-155.637047],[-9.864334,-413.408600,-154.930778],[-17.291153,-410.399948,-159.014275],[-17.077408,-417.928970,-162.718437],[-22.197159,-419.408966,-174.277733],[-19.046280,-429.411819,-175.554528],[-15.739639,-440.982635,-176.782128],[-13.833572,-446.201370,-184.295952],[-8.673050,-447.687790,-193.185325],[-6.022964,-455.788971,-195.859947],[-5.914200,-460.124572,-199.264794],[-5.031692,-467.568664,-205.500999],[-5.426163,-475.278961,-209.527519],[-4.583267,-476.572815,-206.844505],[-6.564285,-492.535247,-216.203210],[-9.918350,-492.023376,-220.956962],[-6.141861,-483.740661,-212.177757],[-8.058975,-471.963714,-211.005180],[-14.581863,-478.959564,-218.833367],[-15.109878,-473.273193,-214.844078],[-21.064529,-467.950561,-204.874809],[-14.494461,-464.133209,-205.492699],[-25.561783,-459.208313,-194.616752],[-19.403702,-456.898437,-198.317283],[-22.162491,-453.349762,-195.606346],[-28.069595,-453.690582,-191.944175],[-37.741775,-450.077224,-178.166649],[-38.380569,-452.161102,-174.437461],[-40.087173,-456.162750,-171.864525],[-42.180374,-450.743057,-170.666099],[-44.742752,-446.394256,-170.725425],[-48.717361,-441.029815,-171.702447],[-64.362625,-444.746628,-181.422538],[-77.033401,-419.291427,-189.355340],[-76.964310,-419.046020,-195.401299],[-73.014664,-428.073913,-205.072868],[-79.348953,-430.034500,-216.324394],[-82.878067,-438.029083,-221.803765],[-85.217239,-440.508804,-222.771171],[-101.687332,-426.642929,-209.601341],[-106.874649,-414.503830,-197.187889],[-109.787369,-405.812301,-191.054711],[-109.266800,-403.241943,-184.950310],[-113.979629,-388.516876,-183.433189],[-113.277603,-386.703338,-186.663078],[-116.370682,-378.653320,-178.513877],[-119.238418,-362.553802,-166.475822],[-116.035171,-359.600097,-149.798454],[-116.898086,-350.421234,-139.862175],[-117.446304,-347.892776,-137.241630],[-118.661331,-339.122299,-144.397789],[-120.092361,-334.467453,-150.500724],[-116.003006,-332.970489,-160.413414],[-114.889419,-339.917480,-164.004571],[-112.918655,-348.425964,-166.825187],[-104.654373,-349.733078,-163.575248],[-94.104385,-344.033218,-151.173912],[-87.442215,-338.365631,-147.698387],[-84.223831,-336.500625,-149.280999],[-81.298721,-340.169281,-152.955956],[-87.441360,-327.047653,-144.189018],[-83.346207,-328.740463,-149.405816],[-85.421524,-322.243339,-145.362266],[-100.473831,-349.818756,-161.179711],[-106.259415,-340.910934,-157.951409],[-104.658523,-335.385101,-151.146507],[-97.740799,-340.450744,-150.465049],[-97.170425,-333.628006,-145.265159],[-107.701736,-344.505844,-161.788567],[-107.177750,-331.734405,-150.535912],[-91.445267,-340.681122,-148.378777],[-92.208572,-328.751754,-142.229728],[-94.070755,-320.710876,-137.552665],[-97.628982,-311.725181,-132.598580],[-102.243790,-312.450546,-134.806724],[-105.043838,-328.536041,-145.775291],[-97.677261,-325.315506,-140.274711],[-101.961746,-324.306167,-141.618980],[-105.769913,-320.376823,-142.247062],[-120.474563,-333.780304,-155.004204],[-120.719192,-339.785095,-160.401939],[-118.810257,-339.504379,-163.482627],[-119.560074,-335.504409,-159.661979],[-114.664383,-384.280441,-176.040489],[-112.396683,-381.749450,-163.788994],[-112.464981,-392.095108,-148.917351],[-110.283584,-403.258926,-151.823112],[-109.308121,-392.247497,-162.014213],[-106.602798,-405.011352,-176.161644],[-104.389664,-411.453781,-167.927636],[-104.152908,-414.279541,-165.118003],[-103.007461,-428.099579,-162.741936],[-102.285721,-440.650131,-160.471031],[-108.646561,-457.505615,-163.299279],[-114.874100,-451.439926,-162.528100],[-125.390762,-456.412658,-162.202140],[-124.282730,-459.417236,-163.882043],[-127.934708,-462.720581,-154.070397],[-126.685684,-458.325378,-150.877831],[-126.739517,-458.675506,-157.502647],[-128.832596,-455.051544,-157.013694],[-133.255508,-451.600296,-153.865440],[-137.019424,-446.378982,-154.969688],[-139.663956,-446.782562,-148.311699],[-141.898697,-445.896179,-141.943780],[-135.051590,-449.801437,-146.381309],[-136.440994,-447.194534,-140.303123],[-131.365066,-449.632187,-141.478112],[-136.599075,-437.206207,-125.135521],[-136.868301,-428.070221,-116.023567],[-164.321792,-429.905197,-114.709969],[-168.318619,-426.710525,-112.437446],[-163.004166,-431.141128,-126.234199],[-166.945267,-426.968460,-122.129371],[-161.146866,-425.281814,-134.107171],[-162.246719,-420.396179,-135.260521],[-158.769791,-422.951889,-139.644523],[-153.605667,-429.651260,-143.582177],[-151.001114,-436.608230,-141.707268],[-144.233963,-442.255630,-147.328057],[-145.030411,-439.228882,-149.751670],[-140.723221,-435.790512,-158.488946],[-145.635818,-426.187805,-157.357598],[-138.834671,-429.217514,-160.127311],[-144.606583,-419.306244,-156.752068],[-138.739639,-418.167389,-153.991752],[-140.938492,-406.723678,-147.262719],[-145.842544,-397.834823,-143.175865],[-148.027603,-381.020782,-134.066643],[-139.762833,-392.846801,-138.535882],[-140.079422,-385.105224,-134.543388],[-129.475662,-384.216278,-134.752525],[-141.919815,-360.612838,-121.437432],[-137.089737,-356.411300,-119.035362],[-134.500992,-351.271881,-116.583885],[-126.286941,-341.954193,-115.292961],[-122.953140,-346.975662,-120.906211],[-118.560745,-348.390320,-131.776299],[-120.354996,-338.314987,-129.900383],[-119.890701,-337.603302,-133.825020],[-115.273209,-361.988052,-146.585595],[-113.991348,-371.776962,-149.725976],[-114.826187,-368.302337,-153.544305],[-116.153580,-360.424179,-138.771203],[-117.597793,-370.167602,-135.883110],[-117.044632,-378.639938,-138.409813],[-120.928787,-380.902176,-135.834098],[-118.361648,-381.354965,-137.444999],[-115.136856,-387.626800,-142.906182],[-113.377762,-380.404129,-147.689628],[-113.229141,-395.384720,-147.206932],[-118.138565,-400.768173,-144.461052],[-112.443802,-405.917587,-148.732598],[-109.119766,-415.642120,-153.145959],[-127.054459,-378.057785,-132.428962],[-129.259659,-392.663940,-138.486686],[-135.451919,-392.089264,-137.750846],[-135.775101,-396.221344,-139.601371],[-119.452652,-360.759124,-130.197564],[-125.631485,-362.538513,-125.705514],[-130.315567,-365.865081,-125.423668],[-132.003372,-378.250580,-131.542138],[-135.084610,-368.495666,-125.793098],[-132.680191,-366.087646,-124.876503],[-130.523819,-351.152878,-117.920189],[-119.681045,-371.817444,-133.138572],[-121.957291,-351.522232,-124.128318],[-126.896011,-349.713440,-118.974678],[-121.201919,-373.179275,-132.675545],[-123.941360,-357.654113,-124.614784],[-121.124832,-341.160202,-124.234596],[-120.791946,-322.495460,-120.325462],[-122.903396,-320.526153,-126.636483],[-123.434097,-315.813629,-128.678856],[-125.675125,-307.765030,-136.877587],[-120.323257,-309.408920,-138.065452],[-114.190689,-314.192474,-142.171288],[-114.711868,-324.168152,-154.023522],[-126.093765,-316.400169,-136.677757],[-123.014908,-327.223587,-142.871667],[-120.602005,-332.567123,-141.694694],[-121.155716,-328.652054,-124.467720],[-140.332291,-377.440735,-130.787758],[-144.592544,-377.754196,-131.426353],[-149.333938,-369.439377,-127.840431],[-167.386246,-378.818496,-143.092889],[-169.326736,-369.543335,-139.364464],[-166.540604,-361.596405,-131.668938],[-165.810135,-351.830887,-124.083214],[-172.192215,-348.545852,-128.156425],[-175.628494,-345.483123,-128.737510],[-177.127457,-338.273330,-126.540947],[-185.256912,-342.404876,-132.415474],[-184.856949,-351.573196,-133.100059],[-185.846512,-354.718246,-130.107185],[-181.517166,-357.029983,-118.244804],[-181.973160,-350.661667,-109.804390],[-177.928116,-364.870636,-120.729820],[-179.260635,-370.340240,-130.935829],[-183.625198,-361.372757,-127.517509],[-185.581863,-356.787826,-124.635383],[-179.673355,-359.169464,-137.237816],[-181.195022,-361.201660,-135.087487],[-174.119278,-363.421081,-139.241874],[-181.838882,-363.968506,-132.020683],[-176.162063,-376.514770,-134.410485],[-177.188431,-374.520019,-130.390557],[-174.710342,-374.361419,-123.458610],[-172.872818,-377.406372,-120.963691],[-168.483414,-410.627884,-123.274955],[-165.639542,-418.480606,-128.539192],[-169.919083,-419.629898,-121.020347],[-157.855667,-417.956436,-145.401726],[-164.351028,-409.450668,-137.410270],[-167.702713,-393.899154,-139.902610],[-169.530533,-392.179336,-134.582329],[-174.962967,-379.976059,-131.817009],[-172.480362,-407.154449,-115.285759],[-174.145706,-401.807419,-110.411583],[-175.173538,-400.194915,-102.646874],[-175.703873,-393.282623,-96.800193],[-175.747024,-384.415527,-90.842414],[-176.979996,-384.378067,-83.013024],[-177.882034,-378.474014,-75.508674],[-175.861404,-374.362533,-67.373191],[-172.622574,-376.247986,-68.496864],[-172.298782,-365.762314,-59.895439],[-162.707168,-333.762253,-45.358863],[-165.825882,-327.835510,-39.648674],[-157.558853,-325.179123,-44.679496],[-151.308670,-314.795265,-44.236153],[-142.334366,-315.600166,-44.636711],[-143.572342,-317.421936,-39.853706],[-146.017166,-314.643821,-35.471763],[-146.149979,-316.045448,-32.983268],[-147.509598,-308.310165,-29.455391],[-149.608841,-305.287368,-19.777763],[-149.513443,-302.188148,-19.153222],[-147.739578,-289.565590,-12.246742],[-142.014542,-279.573349,-10.335548],[-148.493179,-278.174286,-1.934936],[-149.642105,-271.945846,3.807259],[-150.752823,-278.368583,1.721054],[-150.027786,-284.573501,2.702195],[-149.116531,-266.792778,7.237076],[-151.117508,-273.553764,6.105278],[-148.996170,-287.819206,-8.699531],[-150.489456,-283.102775,-0.993194],[-148.435013,-281.186149,12.045746],[-146.480728,-272.171814,24.655693],[-144.590713,-271.342506,32.376816],[-144.339249,-276.542663,31.358246],[-141.468765,-280.313934,29.595887],[-133.114151,-279.363815,43.098305],[-128.380447,-278.710518,52.425553],[-130.455337,-272.492469,51.628449],[-140.264297,-276.845062,36.401719],[-133.200455,-275.422195,44.108628],[-135.431045,-276.947708,39.002190],[-145.969620,-264.411369,29.646126],[-149.601944,-262.385795,22.155411],[-149.916946,-257.017040,23.316330],[-149.195022,-255.449722,21.367997],[-147.079117,-254.038353,18.379250],[-148.079727,-260.092407,12.937111],[-138.385818,-256.043026,6.618119],[-140.879715,-254.442890,11.212212],[-137.855667,-249.820984,11.899743],[-140.947525,-240.314449,10.833374],[-141.455765,-236.640716,10.935379],[-139.427261,-244.945064,3.937981],[-139.571609,-238.125984,4.903855],[-138.523086,-248.465625,0.506310],[-135.693313,-252.171531,-9.555671],[-137.137710,-266.809028,-18.302681],[-138.326736,-269.504020,-22.572837],[-141.251175,-283.724212,-29.333337],[-140.385757,-294.107856,-30.834892],[-141.871414,-302.709671,-36.081871],[-141.319534,-299.047805,-35.783012],[-143.542068,-303.242576,-39.544029],[-139.741348,-284.726654,-21.885292],[-141.581375,-291.348068,-24.181877],[-141.430313,-286.724205,-18.079094],[-143.337540,-292.408294,-21.042823],[-137.532425,-273.079506,-21.655662],[-137.688858,-268.274505,-11.236381],[-139.458572,-271.502243,-6.230270],[-139.306473,-285.482788,-28.603035],[-138.289261,-277.259086,-14.170784],[-138.638443,-279.910118,-25.593941],[-136.742325,-262.824936,-13.209007],[-136.496353,-251.603168,1.819794],[-136.385025,-246.111774,7.195023],[-148.292618,-274.515304,17.133049],[-149.628311,-276.530327,11.552620],[-147.134903,-267.256942,25.321144],[-150.986709,-270.699928,12.165970],[-150.911331,-262.429100,17.619416],[-151.210525,-265.783905,13.216385],[-150.501907,-262.168922,15.173516],[-149.685379,-290.083885,-7.893898],[-150.272781,-292.938858,-0.826774],[-147.702835,-300.019035,-8.303093],[-149.631607,-301.253837,-10.611793],[-145.465225,-313.000236,-27.674827],[-146.531021,-313.849846,-30.143272],[-147.293289,-311.236427,-30.726173],[-150.156509,-301.402328,-14.654747],[-150.442642,-297.117477,-12.613411],[-169.289871,-366.800720,-60.626014],[-162.507034,-359.955505,-58.536888],[-152.804581,-352.106643,-62.219047],[-148.036270,-343.778381,-61.701302],[-132.917007,-360.435089,-73.802848],[-134.802444,-359.859832,-75.785041],[-135.664200,-368.316955,-81.546440],[-133.965347,-374.071167,-83.293327],[-131.042862,-367.464813,-72.432518],[-141.068863,-370.500473,-62.235467],[-145.537979,-385.237808,-67.043327],[-143.013199,-378.276382,-65.803001],[-140.677994,-378.657409,-68.649665],[-142.855484,-401.766327,-81.676033],[-143.602859,-392.055267,-74.978172],[-147.691299,-415.433349,-84.253807],[-149.964065,-428.413818,-92.917183],[-151.257461,-429.559341,-90.027427],[-147.776504,-446.193252,-99.677894],[-147.172623,-453.123565,-106.645714],[-144.307022,-452.299774,-115.211175],[-141.580337,-451.064132,-119.526527],[-142.539627,-445.583938,-115.157997],[-140.901626,-442.492523,-116.641456],[-137.579422,-430.612304,-108.720481],[-134.207535,-426.771911,-114.376351],[-133.661514,-426.817947,-112.062706],[-135.804581,-427.279693,-107.895760],[-132.313797,-432.765976,-118.447732],[-130.811722,-438.644760,-122.637215],[-134.757034,-435.841430,-115.425239],[-137.442825,-444.919174,-120.839195],[-131.262894,-444.755096,-124.663186],[-128.611893,-450.053070,-130.324119],[-126.173416,-451.154220,-136.126243],[-132.030960,-440.947387,-128.167167],[-132.771500,-436.208267,-123.259178],[-149.058914,-474.511291,-100.926751],[-148.510086,-492.585388,-96.055885],[-143.568191,-501.985473,-89.166175],[-140.285171,-513.208893,-89.709953],[-133.022293,-514.130401,-90.442054],[-133.119339,-520.251098,-90.812889],[-138.028458,-522.684143,-88.956184],[-137.545669,-532.830261,-91.269768],[-143.042557,-527.551422,-91.661399],[-139.040420,-534.764892,-93.353019],[-135.798782,-539.527282,-95.705818],[-132.429214,-544.936432,-97.505241],[-139.371841,-550.849456,-98.915107],[-137.130508,-542.493377,-96.980293],[-140.979751,-540.009552,-94.630104],[-151.294144,-530.870849,-96.028419],[-159.589798,-533.747162,-104.600181],[-162.707718,-541.246612,-108.468514],[-166.440689,-547.576507,-116.660713],[-169.052627,-554.227081,-117.493400],[-168.475906,-561.023376,-113.504463],[-176.965225,-565.701721,-115.348794],[-186.723221,-573.841095,-116.785972],[-182.602188,-568.827636,-116.716195],[-188.185440,-574.673004,-119.211616],[-190.556412,-586.390777,-123.730644],[-191.215774,-586.738586,-126.521064],[-186.135025,-597.605743,-121.456596],[-190.693680,-594.862030,-124.583244],[-186.317276,-595.096985,-129.273613],[-186.417007,-591.546356,-132.170204],[-180.411087,-590.177581,-134.345666],[-181.067825,-584.872009,-134.571891],[-184.910538,-581.458923,-130.772422],[-188.794632,-579.601257,-126.597190],[-190.601028,-579.637695,-120.945915],[-185.280044,-570.205078,-120.049934],[-182.386124,-569.013824,-124.108544],[-183.954422,-563.830536,-125.523429],[-186.126053,-564.047760,-129.516441],[-185.334854,-564.933197,-134.420006],[-180.716995,-554.408325,-131.185875],[-180.602920,-556.119842,-133.531776],[-183.933548,-553.181366,-136.178490],[-182.682999,-548.538818,-139.040672],[-182.362259,-554.433319,-140.209160],[-180.846329,-549.493683,-142.663505],[-177.741959,-541.309967,-140.542840],[-161.763809,-520.724762,-137.819175],[-168.931656,-528.020141,-141.337791],[-171.212662,-529.987365,-144.734367],[-161.952591,-516.209564,-155.965385],[-158.710892,-510.783355,-154.911065],[-155.034195,-507.258850,-148.574333],[-150.489090,-496.799072,-165.361747],[-151.494705,-499.217407,-167.367912],[-150.089065,-501.771545,-172.381097],[-147.339798,-507.432739,-174.730247],[-144.173294,-515.433838,-172.639915],[-161.539810,-536.801880,-167.481437],[-160.637222,-540.241455,-166.994743],[-166.772537,-542.904632,-163.749169],[-166.557205,-532.757232,-162.230340],[-171.223282,-538.239868,-157.206688],[-172.508438,-535.858520,-153.447929],[-173.739517,-535.648925,-149.602257],[-172.559341,-532.559662,-147.904015],[-178.655228,-542.422760,-142.351341],[-177.803421,-544.195587,-146.546105],[-171.196243,-543.820892,-158.408195],[-153.718094,-525.860717,-170.742057],[-142.998917,-522.600311,-169.572441],[-137.338028,-516.951629,-170.930503],[-132.186355,-521.567962,-166.645440],[-127.935196,-522.042480,-164.482415],[-135.285599,-526.720611,-164.791466],[-131.671402,-529.247345,-160.663048],[-136.698013,-531.870483,-162.096184],[-131.715835,-535.249359,-155.670616],[-138.074783,-539.137726,-158.679039],[-132.632706,-556.401947,-146.599815],[-132.954666,-561.824829,-145.002128],[-137.101700,-572.612610,-143.416435],[-142.186905,-561.796722,-152.812859],[-147.329605,-561.376129,-155.369743],[-154.549637,-558.780304,-159.020959],[-166.061478,-552.993225,-162.412895],[-165.463943,-547.926941,-164.289909],[-162.820389,-550.555206,-163.765710],[-134.738235,-567.667999,-144.063072],[-139.171219,-555.807403,-153.473259],[-155.647720,-553.147186,-162.111443],[-103.788528,-496.347290,-172.060631],[-102.364395,-508.454956,-169.230919],[-100.057938,-506.603363,-174.322289],[-112.738541,-513.711761,-162.436943],[-125.324295,-524.781097,-160.415489],[-130.665970,-514.709503,-170.686822],[-121.755386,-520.755829,-161.953361],[-116.388992,-524.664215,-152.060905],[-122.456680,-529.765594,-152.670769],[-123.193008,-536.865844,-144.872430],[-118.477005,-558.249817,-137.439811],[-123.983230,-563.451111,-135.500572],[-121.715713,-566.092346,-140.839012],[-122.911270,-570.473938,-144.357536],[-129.984268,-574.205932,-135.326194],[-129.981277,-577.579376,-140.916466],[-127.305923,-578.952392,-147.561119],[-133.499283,-593.134674,-150.479881],[-141.598892,-596.220611,-142.473198],[-145.189957,-597.071441,-137.524498],[-145.267166,-588.809387,-132.114784],[-138.946609,-584.998993,-132.452781],[-136.156082,-584.477234,-134.971397],[-140.128006,-591.357177,-138.774407],[-133.957291,-586.102935,-142.704643],[-140.647354,-590.200958,-134.064857],[-144.475052,-591.993011,-130.976143],[-129.166702,-587.090484,-150.445213],[-128.520096,-593.670288,-156.019218],[-131.930435,-602.810272,-158.571556],[-131.641495,-611.082184,-163.384941],[-142.220230,-620.375457,-161.861320],[-147.575821,-622.903228,-159.728905],[-152.298050,-616.821594,-154.267022],[-144.207535,-602.781006,-148.073906],[-147.359146,-602.632599,-143.380699],[-149.624039,-600.491241,-135.023063],[-155.651443,-616.032806,-151.140159],[-165.102737,-626.014373,-148.682487],[-166.750503,-620.628723,-142.886071],[-169.826736,-625.071899,-142.995904],[-186.983719,-648.930298,-141.741630],[-189.536148,-658.006195,-143.363671],[-187.811294,-667.393188,-148.936332],[-182.536636,-676.245392,-155.376243],[-179.905167,-667.633209,-156.036613],[-153.674209,-677.018341,-171.761284],[-162.675491,-674.370971,-167.445366],[-174.915481,-675.918243,-160.521569],[-180.866287,-680.289978,-156.450279],[-184.601150,-682.624878,-153.089043],[-190.364212,-664.430114,-144.831322],[-196.067764,-665.818725,-137.332634],[-191.657181,-651.622802,-136.256248],[-177.564834,-624.339752,-132.076057],[-173.088272,-617.246978,-125.349708],[-170.922562,-614.360687,-115.064675],[-174.159256,-609.484344,-113.897026],[-175.792251,-606.201202,-112.158852],[-177.521438,-606.665680,-104.406623],[-176.785721,-611.215362,-97.012551],[-171.371109,-614.431549,-97.436042],[-172.207962,-611.089843,-91.758369],[-160.123550,-606.677826,-91.760429],[-158.680008,-603.881256,-86.793007],[-155.312393,-600.141266,-85.363960],[-160.749283,-608.279327,-77.218834],[-156.411392,-605.083801,-70.192909],[-157.425674,-606.386444,-55.494011],[-152.268204,-596.095611,-50.769828],[-157.006607,-601.807647,-43.034599],[-161.944107,-607.924652,-36.404350],[-168.883438,-617.579132,-34.611199],[-176.147354,-630.287018,-44.591423],[-182.631973,-638.234619,-44.432412],[-189.136551,-644.301971,-37.213921],[-183.792374,-636.860504,-28.956413],[-176.993179,-627.227630,-25.304527],[-170.161758,-618.128357,-25.616356],[-167.557754,-615.096893,-20.582878],[-167.783646,-616.485992,-11.215187],[-165.186417,-616.780029,-1.585090],[-162.294388,-617.355316,5.499245],[-172.624527,-627.496551,5.915184],[-171.168533,-628.781158,11.243393],[-171.407852,-634.024353,18.018525],[-173.360428,-637.026062,18.065697],[-182.264725,-640.262542,6.295525],[-188.253006,-647.802520,4.295739],[-186.584915,-649.488037,8.885369],[-189.572586,-653.003723,10.478539],[-186.273819,-653.728912,14.602806],[-186.682938,-663.819732,30.934800],[-192.091141,-664.396576,27.279114],[-193.866897,-669.195556,37.328568],[-192.938064,-674.325592,48.331162],[-193.961746,-680.138916,56.953118],[-186.740982,-685.274749,67.085972],[-194.027908,-689.372131,65.550381],[-189.221084,-693.163391,72.434445],[-183.019241,-692.736328,77.323029],[-177.918350,-692.315643,81.942875],[-180.494461,-700.092041,88.012734],[-183.715713,-706.065521,90.887604],[-176.185684,-703.507904,99.167561],[-176.779190,-707.460846,103.251561],[-168.390274,-701.646606,108.484435],[-164.230545,-687.439941,93.459332],[-184.709366,-687.689117,71.117054],[-176.397598,-679.674133,68.085347],[-181.438492,-676.159637,59.546765],[-169.766189,-676.817108,68.734742],[-174.755203,-672.309845,57.474068],[-168.619400,-671.677551,59.328621],[-157.897842,-661.227935,64.802231],[-153.527420,-666.909790,80.624680],[-147.101334,-664.957794,87.441498],[-140.184524,-660.664947,91.700756],[-135.347549,-660.717346,97.960587],[-123.130142,-651.870910,99.301663],[-113.962723,-644.704162,98.809994],[-104.233902,-637.078003,97.064942],[-80.200210,-637.449218,110.001331],[-82.184646,-646.757080,118.401162],[-81.746414,-651.034027,122.130212],[-79.031143,-658.415924,128.438060],[-79.093765,-664.126556,132.380263],[-98.040481,-661.735016,124.075402],[-96.839126,-659.226745,122.110283],[-104.809402,-658.282837,118.400304],[-96.250259,-654.635711,118.647973],[-90.099136,-647.634918,116.659904],[-93.054214,-641.567383,109.618563],[-105.251968,-647.512756,107.543752],[-91.416336,-636.924652,105.586918],[-87.196915,-640.306945,111.145905],[-86.648514,-635.516327,106.050446],[-111.781937,-663.392364,120.858241],[-109.676224,-654.978698,112.365322],[-117.779983,-660.727539,114.318028],[-123.493851,-657.737457,106.312292],[-124.714859,-665.555969,114.581763],[-129.437149,-669.926178,115.128850],[-137.446792,-673.906250,110.788349],[-138.061722,-681.812591,117.316936],[-139.537979,-686.745788,119.023148],[-140.197403,-693.888153,120.979244],[-151.258621,-696.233947,117.173207],[-165.707229,-705.046600,116.106033],[-163.779495,-709.169952,122.548760],[-168.854202,-716.306122,121.950837],[-170.697159,-728.001861,129.989165],[-171.157181,-735.910736,136.205862],[-184.815872,-752.166412,128.637667],[-189.100235,-751.249481,123.511508],[-197.787063,-765.742401,124.789509],[-201.206436,-765.842560,122.592664],[-207.470413,-766.079864,117.057856],[-211.296768,-765.539825,111.592691],[-214.066666,-762.547332,106.079708],[-215.907608,-759.443695,100.294299],[-226.208023,-766.648346,95.622475],[-230.409927,-765.982452,75.259751],[-228.475906,-764.844635,77.938019],[-225.666641,-758.494415,77.357941],[-220.251053,-756.368133,88.343998],[-208.334000,-745.696075,91.327654],[-211.558609,-749.098785,91.167605],[-201.652786,-748.879608,106.240328],[-200.782364,-744.475128,102.111935],[-197.910599,-750.322174,113.351871],[-189.883560,-747.417877,120.252211],[-216.514053,-765.696869,105.648320],[-220.481949,-766.252594,102.194977],[-214.746536,-768.945892,119.845757],[-208.206375,-767.867523,124.865243],[-207.410477,-766.634552,123.353234],[-160.452225,-701.774322,118.298422],[-134.773025,-703.110382,131.119914],[-132.378738,-701.697662,131.430148],[-128.522964,-703.573089,135.484113],[-131.077103,-704.964660,134.603203],[-89.321304,-704.380371,151.330351],[-92.430923,-706.781738,151.624255],[-103.676041,-709.377716,149.880751],[-108.807632,-708.131073,147.334505],[-122.553848,-706.149505,140.767838],[-116.210647,-690.009552,139.825615],[-113.871902,-683.678528,137.251145],[-110.953201,-676.573639,133.523153],[-93.873123,-678.020538,140.280808],[-79.120193,-668.602020,136.109973],[-72.674087,-671.169555,140.281388],[-63.723282,-666.605377,139.798581],[-73.929459,-677.274139,144.386099],[-59.015457,-677.525512,148.944291],[-54.876236,-681.441192,152.262696],[-43.167068,-686.722442,156.975655],[-41.271255,-681.536102,153.135033],[-41.847610,-674.004577,147.797024],[-39.989212,-671.594238,147.436659],[-37.910843,-682.102813,154.437428],[-35.161453,-669.823852,150.242495],[-33.750015,-665.232330,148.239346],[-37.378677,-665.252746,146.064492],[-36.602005,-659.395752,142.107430],[-32.328995,-655.519684,140.891758],[-30.440445,-650.495697,135.800227],[-28.892471,-647.082489,131.842067],[-33.900650,-645.612365,127.074697],[-30.300796,-638.335663,118.808973],[-36.186966,-643.017852,122.707615],[-39.386978,-638.832336,116.758275],[-42.230728,-645.982940,124.231828],[-52.096512,-658.211883,134.975352],[-56.807815,-664.653259,139.829852],[-53.379349,-671.723266,145.626095],[-51.906814,-676.763153,149.475500],[-44.754104,-672.545349,146.382141],[-41.206985,-666.191497,142.999668],[-43.749649,-659.900390,136.742523],[-40.879837,-660.200622,138.076884],[-45.022354,-664.284515,140.116063],[-40.895523,-653.424102,131.392434],[-35.395584,-651.792724,133.796451],[-58.119217,-673.177307,146.291666],[-69.510269,-657.760070,130.770572],[-74.943252,-646.532776,119.280704],[-69.413040,-643.288421,117.599831],[-79.965225,-642.490295,115.080275],[-72.950516,-663.645721,134.200397],[-20.496170,-657.133239,147.056837],[-20.118790,-662.844940,151.578968],[-14.971939,-668.761841,156.914376],[-4.551773,-674.316192,162.195267],[-2.326248,-685.435333,166.853966],[3.031235,-687.648956,167.890061],[9.999252,-695.676971,169.894917],[10.456772,-702.099487,169.492001],[16.117722,-701.552490,169.288311],[23.528244,-704.807678,167.700493],[20.580856,-710.022125,167.136471],[27.086594,-715.560516,166.926339],[32.610947,-713.613311,163.434700],[33.686569,-719.696319,165.007378],[48.044846,-714.559539,155.845227],[49.741867,-708.664642,153.794350],[44.656113,-710.663055,156.913811],[41.034653,-700.890075,161.418950],[39.194077,-710.068084,160.333996],[28.062363,-711.316681,165.185810],[33.712021,-700.999878,165.113945],[24.282517,-699.607208,168.092270],[-22.424820,-652.356353,141.262339],[-9.557815,-643.354828,132.841824],[-7.977859,-646.144226,137.101359],[-19.671280,-645.686706,132.964105],[-24.849380,-648.079376,134.757172],[-3.389603,-650.195617,142.732529],[-1.002823,-656.055847,146.097367],[12.674973,-661.107361,148.442774],[9.752731,-654.841308,144.742270],[11.740402,-651.505981,148.355999],[9.793869,-647.706329,156.257058],[7.456406,-644.461944,157.793976],[8.127243,-642.113586,156.037957],[10.460678,-638.676117,149.740185],[4.565781,-632.654785,144.640295],[0.566330,-624.725250,135.880001],[-5.809646,-614.297485,126.850461],[-13.276199,-621.366119,125.994463],[-15.736648,-621.907074,123.209463],[-15.341019,-627.205566,125.214944],[-8.456192,-641.795044,138.234499],[-10.651321,-640.544647,128.236661],[-22.103897,-640.940460,125.379918],[-20.546951,-637.127502,120.964326],[-19.920730,-627.996551,113.883374],[-19.541336,-617.088470,108.750196],[-20.664932,-591.154785,104.083670],[-19.551956,-580.487884,104.789090],[-19.100845,-567.704590,101.767132],[-16.222061,-556.164428,100.482457],[-12.480606,-557.143707,102.912312],[-5.820450,-555.113434,102.657532],[-3.278946,-565.081024,106.651860],[-2.935745,-555.205536,101.743784],[-3.581680,-583.227295,114.603916],[-12.212662,-582.368133,112.553945],[-15.370010,-571.003021,106.248263],[-16.109634,-579.797424,108.466085],[-13.884964,-589.037109,113.427120],[-12.381241,-598.625488,116.565316],[-10.800979,-611.121185,122.186732],[-13.926895,-611.564941,119.945815],[-18.093033,-610.505401,111.958288],[-16.599930,-609.556579,115.156490],[-17.388321,-600.724884,111.404238],[-15.319534,-598.487457,114.117507],[-17.982925,-589.268890,108.854275],[-13.315201,-605.463958,118.115342],[-6.617142,-597.230926,119.452063],[-2.342911,-602.008362,121.982744],[0.822983,-611.871490,126.284338],[-0.494400,-616.069030,129.555944],[-2.862747,-611.550171,126.591432],[-5.403091,-605.774627,122.941350],[3.053024,-620.796447,131.750072],[9.714584,-627.251678,128.408837],[7.709824,-626.149078,130.337068],[5.090378,-625.139099,134.377874],[8.144333,-628.578521,136.980496],[5.046372,-628.592834,140.739924],[6.642258,-635.517334,148.260886],[13.466171,-640.116150,154.368920],[16.022507,-651.679718,142.705859],[21.585739,-655.128112,141.387995],[22.128281,-657.459442,142.749892],[20.295395,-643.408477,149.707457],[19.219345,-645.268646,144.408612],[17.855454,-643.997070,140.534789],[24.649338,-647.799316,142.938748],[26.894638,-639.342621,141.689453],[12.782761,-635.223694,142.416335],[8.937485,-631.796966,141.523590],[17.913986,-639.899261,138.486067],[23.257431,-639.976471,141.952563],[17.238632,-641.480041,140.389017],[16.606857,-639.804260,142.749649],[18.818466,-633.658111,138.055535],[19.418930,-649.366424,140.805382],[21.077927,-648.914764,141.609629],[28.320847,-648.103210,142.738036],[33.178452,-652.247070,144.619868],[33.703781,-655.256622,144.540038],[33.733017,-657.526153,137.858572],[41.786728,-662.983947,138.636019],[49.287888,-662.724487,129.814958],[54.146713,-662.901001,123.382371],[57.220566,-668.194671,127.180872],[61.611130,-674.555481,128.799727],[61.880112,-680.452697,134.488561],[64.673020,-683.613006,132.962909],[49.475998,-693.111023,154.943489],[47.432236,-689.065124,154.878430],[41.071274,-678.097931,152.230107],[38.887680,-666.821838,145.305148],[25.113327,-654.416229,146.923117],[43.139572,-666.634094,141.682761],[55.194626,-670.203247,132.279067],[31.947983,-658.628601,140.698573],[46.347763,-677.323974,147.985375],[50.035996,-674.010437,141.653325],[57.600998,-681.990875,140.721972],[52.536728,-688.407257,150.149529],[50.931503,-681.087127,146.791907],[17.448776,-640.883697,154.157460],[19.771164,-644.688904,153.816964],[15.537460,-645.433380,156.940068],[19.104233,-647.975372,147.775605],[16.050583,-650.712188,146.485644],[13.814865,-642.239166,157.607472],[-8.374893,-592.735351,117.595265],[-4.394119,-595.554962,119.420510],[-0.979507,-594.227050,118.208198],[3.137070,-598.963318,118.630140],[-0.047623,-576.809021,111.291234],[4.718857,-576.330444,108.715633],[-0.443436,-570.942108,108.805675],[1.986008,-605.184753,122.188768],[10.792038,-604.980377,116.791801],[12.298569,-611.221771,119.596801],[15.494736,-617.848449,123.343255],[20.191025,-619.072784,119.742532],[19.467514,-621.594574,125.200975],[23.496445,-624.322326,123.712201],[26.217392,-628.732910,130.462374],[30.845139,-639.229767,137.492621],[32.833481,-647.916992,138.371405],[30.175705,-647.997619,141.203726],[29.101730,-643.458496,141.752304],[29.496079,-638.358947,139.453461],[22.231613,-626.253265,132.378231],[16.612229,-622.581878,128.573247],[25.139694,-629.347595,134.649755],[22.945847,-631.996948,138.045624],[19.195786,-629.738983,136.577438],[14.581528,-636.714416,136.549169],[16.231186,-635.719757,135.538250],[4.638718,-613.190612,125.066498],[7.763474,-620.469391,127.668612],[12.159775,-622.077057,128.166798],[13.594040,-626.242889,131.046822],[11.845749,-630.877807,130.389799],[10.256271,-631.355346,132.402952],[10.794052,-615.592163,123.897101],[4.965378,-587.672821,113.253632],[9.371262,-589.065002,110.492062],[12.306381,-586.038391,105.056607],[15.121323,-587.833374,98.441807],[16.563400,-589.985504,94.942528],[13.261398,-577.742645,93.144055],[10.228623,-568.245269,90.422791],[8.120346,-562.341064,79.921692],[4.931503,-554.421570,77.465710],[5.440476,-561.538727,73.085297],[5.459946,-562.798126,65.489457],[4.442856,-557.552551,61.339783],[6.514450,-568.623352,60.381524],[12.199204,-592.962188,49.539589],[13.066635,-595.328003,46.019944],[16.082504,-605.038116,50.841515],[18.237656,-602.958069,43.278885],[30.790085,-608.383819,37.432999],[45.099289,-604.915100,28.645554],[47.092026,-608.915313,31.427338],[57.761826,-611.992859,19.394165],[52.077561,-613.471069,24.444794],[45.123825,-615.828399,31.673409],[48.433334,-610.125091,31.491990],[44.194138,-611.923614,34.377983],[34.275864,-605.128540,32.199532],[36.672714,-615.601898,39.928093],[37.160935,-612.735504,38.395272],[29.166000,-611.620392,43.373070],[21.892807,-608.640716,47.822594],[14.592209,-603.600311,52.959793],[9.426376,-600.186828,56.360840],[12.485153,-597.592254,56.397126],[13.171677,-591.775604,57.693146],[11.111008,-583.052459,59.013298],[8.811752,-582.776367,64.187394],[9.441635,-597.062408,57.971871],[15.653366,-603.620178,62.083466],[17.003647,-600.401886,65.568665],[15.790634,-596.526428,66.616547],[11.456833,-584.850341,68.836701],[20.754440,-599.689636,81.218121],[23.749436,-604.369049,76.643105],[24.829697,-605.749084,83.067788],[26.773483,-609.532745,89.057122],[24.414780,-609.575500,95.729239],[28.319077,-615.356140,98.116681],[33.287888,-622.889038,97.690058],[31.490524,-628.419983,98.476082],[32.647202,-629.399536,100.478577],[33.699570,-637.529754,100.824435],[38.145371,-644.355591,110.666681],[34.443710,-646.453155,117.384990],[34.096909,-642.028503,116.535283],[36.504562,-640.687439,119.072041],[37.542221,-644.282074,120.856748],[40.461289,-651.075409,121.352398],[33.673508,-655.671997,134.715405],[35.368332,-653.662811,140.014353],[34.756271,-651.741119,136.961144],[31.695114,-643.724548,134.627312],[34.870896,-651.948791,127.759735],[37.586960,-646.984375,125.359784],[35.639633,-648.618438,129.700476],[33.467209,-643.492157,127.587115],[34.988205,-638.635620,126.524222],[31.996689,-633.286133,126.081921],[26.835556,-619.875244,109.628391],[30.318161,-620.027099,109.714130],[33.573410,-621.229004,108.103089],[33.626755,-621.210754,104.111554],[30.806992,-623.928344,98.977551],[28.748398,-623.526275,113.898335],[28.589584,-624.200500,112.685477],[33.024826,-624.057312,111.525847],[36.482590,-630.863617,112.557395],[37.225876,-635.330871,104.785515],[37.648422,-631.527618,107.411573],[36.480759,-650.434875,123.632860],[36.296616,-638.107116,122.985301],[32.983505,-630.721222,118.267138],[34.322861,-636.797119,113.602835],[37.206589,-641.618042,114.492240],[38.404343,-639.569549,107.689474],[30.107651,-636.906524,133.698068],[26.463669,-633.522461,127.623254],[30.293503,-646.350128,131.196683],[32.225510,-638.226440,128.371125],[28.212204,-630.247039,126.684610],[30.961716,-627.905975,124.512128],[33.274216,-629.447967,121.114933],[30.277084,-623.939087,118.453127],[36.086411,-640.229583,103.420203],[55.296921,-654.883819,105.661503],[58.609909,-655.100006,96.584177],[64.092148,-659.068329,93.419604],[70.638535,-666.326172,94.994240],[74.711044,-668.120086,88.456021],[77.215683,-672.399566,89.799900],[75.102097,-675.336059,103.647576],[75.477341,-679.560150,110.095968],[79.270920,-689.335388,115.227954],[75.470322,-687.195678,118.766429],[69.057419,-703.666961,136.859930],[51.611252,-696.487426,153.893589],[57.059982,-691.339386,146.631924],[60.677780,-686.483215,140.150755],[69.336777,-699.391571,134.362157],[68.866440,-691.460571,131.293938],[70.691574,-687.687561,126.294509],[72.338547,-681.877990,118.707344],[67.034836,-678.773864,125.593941],[33.478012,-634.764435,94.755764],[30.104294,-630.119537,87.358216],[34.980332,-633.443084,85.060883],[28.210556,-626.981964,80.424580],[28.999191,-625.643799,82.833058],[31.713974,-613.989685,96.494856],[28.549729,-609.848175,85.173920],[16.056198,-608.206512,52.768868],[22.194748,-614.385528,59.369538],[25.696823,-615.235809,54.341324],[27.796311,-614.986725,50.207283],[41.368942,-624.936645,53.504456],[39.883591,-621.337799,46.616585],[45.008774,-626.788147,52.668358],[55.413193,-632.297851,49.850747],[68.761582,-644.592193,51.768952],[72.929184,-658.994140,72.055191],[67.248215,-655.274749,76.200276],[32.854294,-616.950927,98.259850],[35.251816,-617.945617,96.559874],[34.271347,-614.398040,92.183886],[31.846420,-612.594513,92.758837],[35.106430,-622.762054,92.989813],[33.710312,-626.464264,91.899912],[29.551376,-631.273773,91.943781],[29.211166,-631.943206,94.992981],[30.169907,-633.131256,97.288668],[29.218430,-627.864441,88.313080],[28.658127,-628.388672,83.929982],[33.219528,-621.888672,87.804379],[34.030319,-628.404113,95.054640],[25.211533,-608.883606,73.021187],[16.092026,-594.531738,70.289158],[10.405625,-591.741607,61.476048],[11.240280,-584.777404,60.431057],[9.316818,-589.166443,60.829602],[13.423569,-598.570617,54.177063],[12.249252,-590.072174,53.843918],[23.029282,-605.519836,40.209763],[42.703415,-615.023376,34.604966],[51.007248,-610.583831,24.798272],[47.319321,-613.209839,28.461968],[9.944443,-570.459808,76.959649],[6.801010,-567.181213,67.810326],[7.305954,-574.071075,67.693528],[8.967026,-576.371429,70.410386],[11.881638,-577.973175,77.149392],[6.424362,-569.702087,69.758606],[4.965500,-551.112579,76.330300],[4.601853,-539.228607,82.660595],[3.585922,-530.884796,86.286805],[5.348435,-525.838592,80.402710],[11.709946,-533.782959,76.717194],[17.134995,-527.932647,78.611191],[4.965866,-508.011535,88.713253],[6.002792,-498.844543,89.036213],[3.583786,-497.491729,91.200983],[0.036484,-487.143066,94.558100],[-0.048477,-495.177673,92.133509],[-8.628250,-487.163513,89.658265],[-16.761063,-480.932953,82.549954],[-19.731888,-474.625244,78.979363],[-24.854019,-460.406707,72.086697],[-21.618667,-457.483368,76.472134],[-25.256241,-436.681793,71.696442],[-27.660538,-441.986541,68.089028],[-30.202225,-444.499832,63.982098],[-31.142715,-448.696151,62.649392],[-25.304336,-472.293884,72.770050],[-23.689102,-487.493042,76.315647],[-25.685440,-493.238067,76.615403],[-33.066055,-497.854583,72.931050],[-21.787125,-483.611480,77.975014],[-19.489700,-494.248535,81.775605],[-12.906631,-496.468841,87.118599],[2.182053,-510.418060,87.151596],[-4.647232,-516.833831,90.619976],[-9.339188,-529.295532,92.757111],[-13.202774,-525.588623,91.190234],[-16.769119,-520.880188,89.908913],[-24.607742,-519.192199,83.350575],[-27.691055,-520.887542,79.650532],[-28.312515,-510.000030,74.771241],[-31.108292,-512.440796,68.486153],[-32.275894,-506.715728,63.286942],[-33.527481,-512.578399,59.595871],[-34.538589,-508.380462,53.649697],[-38.946731,-499.790985,38.444161],[-44.122024,-502.099029,28.041016],[-44.369949,-495.364776,27.191613],[-45.751358,-488.588531,25.336800],[-48.570694,-494.283600,20.537308],[-50.880508,-477.058410,16.693459],[-45.997391,-474.759491,27.164864],[-43.463760,-473.211975,29.063111],[-41.052139,-463.028015,26.838387],[-38.478653,-458.366485,26.781571],[-38.960159,-460.709198,36.290467],[-40.521255,-453.778991,33.366959],[-42.953384,-435.041305,22.508088],[-44.413772,-439.176437,28.900360],[-41.417007,-442.321960,25.246369],[-37.182632,-457.728851,30.753739],[-40.269485,-448.578186,24.620591],[-36.959366,-466.709625,39.329346],[-36.779007,-476.604187,49.173478],[-36.866653,-481.679931,53.902359],[-33.377945,-484.505951,51.629609],[-41.001724,-485.864624,64.554398],[-39.327347,-489.233856,68.296811],[-40.735611,-486.685821,70.086319],[-34.813370,-475.750335,66.457924],[-37.058121,-471.027801,64.900124],[-38.717361,-455.871734,59.696270],[-47.347732,-478.025177,65.448826],[-43.983841,-478.153595,57.963673],[-46.256668,-466.627502,49.659661],[-49.388321,-459.873199,47.026131],[-46.196548,-460.865905,43.295517],[-44.617569,-454.726471,37.006348],[-47.787002,-445.965057,34.795258],[-48.750015,-422.196258,24.308251],[-50.766434,-412.364486,23.033783],[-50.608841,-402.553528,18.794114],[-51.314529,-396.635254,15.180848],[-59.787613,-398.170074,12.864342],[-61.725784,-389.699814,10.636200],[-59.674942,-375.263214,10.101860],[-54.583267,-382.867553,11.952736],[-53.013504,-383.242065,15.874520],[-54.182144,-377.644897,17.105126],[-53.779739,-376.679779,14.063385],[-52.595779,-401.975525,21.509972],[-60.809402,-396.184539,28.905075],[-65.220413,-389.523437,31.587159],[-66.621292,-390.299926,34.302224],[-65.950088,-405.032684,38.337426],[-69.756363,-400.987487,47.096009],[-70.737137,-381.643768,42.963417],[-72.180618,-394.852951,53.922760],[-73.431290,-383.381103,53.957207],[-73.676346,-365.256668,62.422943],[-70.888626,-371.624633,64.746716],[-70.300247,-359.016067,66.871262],[-65.975540,-355.509552,68.012703],[-63.026565,-358.134475,65.732838],[-58.290726,-355.156433,61.384949],[-54.355484,-352.304168,55.683030],[-50.405960,-356.800293,51.223908],[-48.016250,-364.286270,49.034233],[-47.454361,-374.104309,48.172890],[-36.905533,-386.199859,51.837067],[-40.989883,-385.787002,49.359925],[-38.639419,-396.415313,50.547425],[-46.204239,-394.410583,48.164284],[-51.472549,-390.773071,49.980072],[-59.430923,-377.770096,59.905178],[-53.421280,-364.790435,53.224556],[-51.884720,-378.352371,50.484642],[-49.508011,-384.761352,48.793862],[-56.123794,-376.083709,55.751236],[-45.239090,-381.152588,47.887841],[-43.266678,-393.177719,48.075417],[-46.724625,-387.887344,47.895073],[-58.879959,-369.608215,60.066101],[-63.896255,-375.399826,64.204472],[-64.191482,-386.515533,64.428513],[-68.603409,-396.091217,63.534241],[-64.877762,-403.736374,63.260781],[-63.886734,-395.018905,63.658520],[-62.285354,-398.220581,61.746807],[-51.133804,-450.833282,41.476838],[-53.470901,-444.633026,39.935257],[-62.821365,-440.062652,51.304482],[-62.925979,-443.758316,62.388253],[-59.400894,-451.152649,63.982312],[-47.272110,-452.402893,62.406235],[-42.493545,-454.260376,61.298817],[-41.157059,-446.985855,57.003395],[-48.241714,-442.310989,58.880913],[-50.688370,-453.202697,63.477673],[-52.652176,-444.213607,61.373989],[-60.239700,-442.744766,63.928440],[-56.105301,-452.782440,64.656342],[-61.832657,-439.280822,63.431656],[-64.416092,-437.320541,62.669869],[-66.712540,-430.548401,61.475899],[-64.582779,-429.851593,63.563961],[-64.968704,-423.971267,63.523571],[-66.658584,-419.680175,63.252724],[-63.434036,-412.030456,62.306439],[-62.952408,-422.752685,62.444657],[-55.822281,-421.379638,55.806801],[-49.764053,-423.987365,53.118096],[-37.870499,-432.980087,53.479653],[-35.974686,-428.229400,53.984986],[-55.027725,-402.424881,53.704224],[-58.886978,-398.139419,58.856297],[-66.976883,-401.753402,63.696926],[-66.398758,-434.101867,58.722107],[-59.081680,-439.142425,62.768525],[-50.457779,-436.078384,57.336258],[-43.062271,-436.568512,53.626328],[-38.636612,-447.499908,56.947365],[-33.875015,-452.187103,60.313515],[-36.921036,-455.051056,59.464070],[-62.142471,-447.960205,58.834248],[-64.213882,-439.913101,55.482010],[-66.265030,-419.122009,46.500267],[-67.517837,-411.680999,45.693360],[-67.353470,-426.703354,55.747506],[-68.010696,-416.141205,51.061066],[-69.456558,-412.799347,55.748253],[-70.440750,-402.210693,59.932885],[-72.076431,-390.781952,59.404290],[-73.839004,-382.522445,58.320160],[-69.186600,-407.681579,48.727333],[-70.377151,-405.054901,52.483742],[-72.461868,-395.388687,57.006386],[-68.363785,-422.027450,60.928379],[-58.540848,-431.170395,37.792641],[-60.251663,-429.857147,39.916375],[-63.874893,-420.258239,42.381791],[-65.825699,-430.273147,51.375512],[-60.906631,-435.160095,44.921868],[-57.433304,-444.985550,44.979012],[-54.476944,-455.980560,49.427239],[-42.233169,-472.339843,49.559845],[-52.123978,-467.872406,58.510403],[-56.905350,-459.225403,64.131222],[-50.807876,-468.058258,65.511479],[-45.352981,-468.087799,66.207077],[-43.426590,-462.902191,64.790200],[-49.607864,-469.325348,55.225274],[-56.044815,-458.576049,54.605912],[-58.433975,-455.972320,57.720387],[-58.033768,-458.253387,62.299389],[-61.367935,-449.682556,61.709740],[-53.327286,-461.691070,65.233296],[-54.909988,-464.856750,63.819916],[-51.541214,-471.169189,63.482632],[-46.191238,-478.874817,62.865506],[-42.937210,-461.332245,40.111878],[-38.129104,-470.490295,43.757882],[-38.083877,-466.341919,30.516755],[-39.280350,-480.327514,34.171967],[-41.127579,-482.612701,33.439217],[-38.239700,-489.996460,39.277626],[-34.433731,-484.202820,43.267731],[-33.307144,-481.440918,47.343079],[-35.026077,-473.610046,42.490830],[-35.370743,-480.490356,39.052498],[-44.102676,-482.599090,29.182106],[4.191635,-517.328582,84.429898],[9.117111,-524.876617,81.606659],[12.641403,-525.075195,81.691670],[12.863693,-518.537689,83.756413],[8.650559,-519.225860,84.631730],[-27.158218,-502.919708,80.905877],[-25.965286,-510.533905,79.605870],[-30.904068,-499.837677,70.956684],[-32.141189,-495.388336,65.343663],[-33.488907,-489.855194,58.284195],[-32.376968,-492.608673,57.115738],[-32.438553,-489.568878,51.846833],[-33.792557,-499.564209,53.669449],[-32.214310,-496.134033,56.735443],[-31.215103,-501.589660,64.487988],[-32.209122,-497.102020,75.660420],[-27.741592,-495.510254,76.700550],[-30.178177,-502.260498,68.751603],[-35.012710,-502.320770,48.595322],[-28.125503,-506.198883,77.606007],[-19.684402,-508.904754,86.744793],[-26.649917,-506.953094,81.295239],[-23.710831,-449.133362,73.800076],[10.017319,-512.126007,86.191788],[5.981796,-521.676696,82.287522],[3.624008,-520.759765,85.044434],[0.552475,-537.269104,90.616505],[0.475144,-541.490753,92.310019],[7.265183,-557.572601,86.051968],[2.992111,-538.559936,86.839627],[3.575302,-547.944946,88.660859],[3.430344,-544.827484,85.257916],[4.914658,-551.051147,82.264836],[0.340195,-528.067383,90.020258],[-1.857742,-543.674102,96.124388],[1.958908,-552.645294,96.464590],[4.483383,-559.806213,97.951590],[9.368637,-575.816101,102.978623],[7.439621,-565.562072,97.491206],[12.637985,-577.735290,96.871050],[7.084213,-560.408813,92.390561],[3.513352,-551.386200,92.817995],[-2.861282,-533.820617,92.482542],[-5.560928,-532.047180,93.031382],[-3.542313,-528.828216,92.354170],[-9.441299,-523.798706,92.481064],[-0.146561,-519.378143,89.118374],[-6.600784,-540.009033,96.472414],[-0.043228,-555.136566,99.939482],[1.903122,-566.067260,105.063301],[8.241562,-580.791839,107.625650],[5.947006,-570.364441,104.078257],[11.649643,-579.151947,101.213015],[7.424729,-529.885864,76.680409],[7.841599,-534.651214,73.627644],[11.047653,-540.092346,71.605820],[21.701462,-534.093170,68.217495],[25.698166,-548.756317,58.826386],[22.490219,-544.265838,66.628178],[20.834702,-552.478729,64.205666],[18.073105,-559.843658,59.158703],[16.360031,-562.709991,56.008446],[15.540085,-568.277679,49.858361],[10.116501,-567.685577,47.423172],[10.625168,-572.173340,42.382134],[15.861130,-541.790466,71.618458],[6.338791,-540.696167,71.096081],[11.667099,-548.876281,64.933392],[14.437851,-560.045562,57.487160],[9.624497,-561.261017,53.859093],[7.120041,-558.707855,55.797074],[5.307175,-563.592560,56.239075],[5.934677,-565.874420,51.725388],[7.839401,-571.742462,45.097420],[13.825913,-577.846862,36.322503],[27.000351,-568.441497,49.999314],[23.748337,-560.263275,57.788769],[23.201401,-548.890228,64.626423],[20.994003,-562.618622,56.859269],[24.670761,-555.695984,59.229329],[26.243515,-557.800079,55.319367],[26.483505,-556.637573,52.719559],[24.962387,-564.734893,43.838265],[16.795456,-550.260956,43.627091],[23.036240,-553.664856,47.502228],[18.966416,-539.081756,47.346566],[18.786911,-528.719146,49.430298],[25.383347,-523.107391,55.862961],[26.323044,-515.748993,62.736531],[26.821396,-486.370880,63.131951],[28.662766,-479.246856,70.840222],[28.060349,-470.565582,73.786930],[28.765610,-460.094360,66.112908],[27.826767,-466.545288,64.484742],[24.562973,-470.444244,57.313996],[23.807175,-477.350677,57.891110],[21.596359,-484.805084,53.200112],[23.500229,-492.854522,57.507431],[22.027695,-489.521515,54.800118],[26.263229,-501.511779,59.671730],[24.259506,-509.658172,56.332268],[18.070053,-511.254760,49.092385],[13.413071,-528.745086,43.201332],[11.375229,-524.507843,40.125924],[10.058396,-522.454254,35.740502],[11.056259,-523.342132,32.136162],[13.134567,-531.118408,35.268189],[12.016281,-531.212799,40.998261],[13.783066,-533.548919,43.469414],[18.283981,-521.401611,49.347359],[20.110214,-512.971191,52.368004],[22.267746,-503.546966,54.751061],[19.467026,-499.620269,50.569291],[18.278244,-495.794738,47.611771],[18.836411,-490.509063,46.013466],[20.405808,-485.322235,46.188393],[21.974594,-478.762756,47.518380],[22.181137,-478.152374,52.483124],[14.670151,-507.942047,44.301537],[9.507553,-508.345794,33.163620],[10.866257,-505.492981,36.184327],[10.928940,-499.375274,25.131119],[9.714523,-505.711639,26.254547],[14.603012,-506.748138,20.749947],[12.201706,-513.630645,24.303749],[16.118210,-519.087982,23.195794],[20.023300,-521.183044,23.006409],[28.922958,-528.887420,25.810738],[29.543381,-534.082916,27.679520],[41.548142,-533.887359,25.215813],[41.343918,-536.646118,24.019616],[40.235947,-537.902679,21.203804],[33.239304,-544.909729,20.751999],[23.989609,-549.038116,23.248024],[19.798142,-552.098571,21.872208],[16.187607,-553.642303,28.135384],[18.248459,-549.702881,31.954857],[12.279465,-540.924926,40.548752],[12.576767,-552.942016,35.202187],[13.049301,-550.410156,39.030785],[17.946091,-555.252380,41.923928],[13.323898,-543.962799,37.692902],[26.791306,-513.393493,59.245083],[24.374069,-482.237243,59.769032],[29.681564,-473.100250,72.132157],[30.344528,-469.754852,70.830849],[30.576157,-464.816162,74.378556],[30.067612,-460.734741,69.799866],[26.875778,-517.885956,59.841774],[23.998703,-517.981109,54.986046],[24.787521,-551.273529,50.622094],[25.959458,-550.652099,54.785050],[20.878403,-547.769561,47.375107],[24.970993,-542.495208,51.935593],[25.774948,-538.418091,54.559624],[27.105820,-563.381164,50.885720],[27.102829,-565.345825,46.607560],[21.060410,-562.698089,39.620781],[17.625412,-560.265075,34.733712],[13.728989,-555.545044,32.581246],[13.410080,-552.356903,33.117775],[7.938522,-541.934692,68.617806],[15.931259,-553.752350,63.455361],[14.236435,-599.719330,109.452863],[16.848190,-607.009826,111.257139],[19.871140,-608.250274,107.059544],[23.327500,-615.518890,111.635437],[25.669052,-618.128326,112.223778],[23.434128,-618.812713,116.695573],[24.882858,-626.889435,125.591587],[27.931320,-623.996246,122.315035],[18.963791,-613.755768,114.798561],[8.268479,-598.789947,115.480492],[11.345017,-598.988037,112.733932],[21.295395,-607.028625,100.667561],[23.038315,-605.610534,90.319146],[29.472824,-616.413665,100.916838],[-9.530167,-576.877105,111.828938],[-12.585464,-567.130645,106.755673],[-4.523086,-575.272461,111.704993],[-9.551468,-556.058014,103.320403],[-6.008255,-566.355011,107.631314],[-6.638870,-579.306915,113.434912],[-13.721329,-645.023925,134.341751],[9.407089,-657.198700,144.592444],[-10.929397,-658.317016,149.704941],[-16.595169,-654.872467,145.778439],[-1.859390,-652.644745,143.270594],[0.629868,-652.641784,144.601292],[1.499924,-642.855652,153.250637],[-6.476272,-648.357971,139.648829],[-1.522354,-645.925354,149.739727],[2.343186,-648.527160,152.445444],[-110.521500,-705.278076,145.677033],[-108.565262,-691.028656,143.555575],[-98.944473,-684.437042,143.179282],[-93.656448,-682.141998,143.192570],[-82.883194,-676.164306,141.301382],[-103.517349,-703.669342,147.531077],[-104.636001,-695.720306,146.521544],[-93.342605,-696.050872,148.764279],[-85.787369,-699.856048,150.676768],[-84.375992,-704.412170,153.017750],[-85.503555,-707.866607,156.491059],[-96.394974,-712.042877,157.405804],[-92.169266,-715.324554,162.308407],[-100.537735,-719.293121,164.413266],[-102.407059,-716.701324,161.092835],[-111.766067,-717.482452,159.735493],[-112.701431,-734.972381,173.512753],[-99.415481,-733.045501,174.799828],[-97.407425,-754.811126,185.322403],[-95.925918,-761.090851,187.139756],[-110.703201,-762.177398,183.562329],[-114.438980,-767.739532,184.034771],[-111.624832,-778.280304,195.336190],[-105.152115,-772.405792,199.460197],[-96.747452,-772.322052,205.265038],[-94.014725,-771.053619,204.230568],[-90.842300,-773.401947,205.235993],[-76.592972,-770.904876,201.914093],[-72.813553,-770.095306,199.712082],[-72.994278,-768.300323,192.106652],[-63.613418,-767.111358,191.398392],[-55.279800,-761.521881,189.813012],[-66.215652,-756.514862,187.608657],[-61.043472,-751.301361,186.649566],[-76.482132,-748.693817,184.817418],[-90.742569,-742.456207,180.845448],[-87.747635,-751.868133,185.360154],[-87.514480,-768.161163,191.684334],[-95.652725,-768.690338,190.642243],[-101.212662,-769.240814,191.924256],[-102.008804,-767.988311,188.632363],[-99.716507,-764.212188,187.339043],[-86.655411,-764.190948,189.684716],[-84.661758,-759.305084,188.771103],[-70.968765,-743.200714,182.569260],[-75.686111,-733.029205,176.697350],[-77.542374,-716.547210,165.519844],[-74.784866,-700.747009,153.841553],[-78.067764,-705.430053,156.685971],[-83.244034,-710.563446,159.928448],[-93.628921,-721.327301,167.456490],[-86.843033,-726.390655,172.287465],[-85.972061,-732.760956,176.289276],[-95.514664,-737.235870,177.767300],[-114.026871,-723.685089,165.243611],[-98.797256,-727.452606,171.078007],[-70.073990,-725.045685,171.949555],[-47.120682,-722.007599,176.717518],[-49.894852,-730.178375,179.457196],[-43.531387,-735.309723,183.152611],[-51.616104,-743.951690,185.172935],[-56.927444,-740.090973,182.669598],[-64.300491,-741.600738,182.267121],[-62.801285,-731.569061,176.961533],[-68.887283,-732.347137,176.612721],[-71.286941,-720.067718,168.623146],[-65.240799,-721.522979,170.504860],[-67.351578,-713.415497,164.779854],[-76.992142,-709.750396,160.411969],[-69.412796,-700.927673,155.392868],[-59.577835,-703.141479,159.890343],[-61.053482,-694.561493,156.238774],[-65.544510,-687.189819,151.898116],[-57.399368,-685.676727,153.930561],[-41.271011,-703.043731,168.470028],[-46.116714,-710.837188,170.588547],[-56.846878,-720.924102,172.752365],[-48.597488,-717.470794,173.876587],[-35.441421,-719.459869,179.439606],[-28.794754,-722.537140,182.732415],[-31.889358,-733.173858,185.516453],[-27.180008,-736.816681,187.214835],[-35.034683,-739.424652,186.294823],[-25.645828,-747.938568,189.450791],[-31.093643,-745.096039,188.349198],[-36.283768,-749.753509,188.657051],[-29.461441,-757.468414,191.143616],[-38.916458,-756.137787,189.362549],[-41.604507,-763.827179,190.436890],[-28.284683,-762.820709,191.452553],[-21.483108,-772.234466,195.300248],[-1.040176,-776.842010,191.674172],[-14.434585,-788.037933,193.491845],[-10.520889,-794.966705,192.496369],[-4.446915,-794.846405,191.338958],[11.947800,-794.894439,180.776902],[-20.301285,-794.649566,171.455563],[-5.706497,-794.896576,121.997912],[21.166855,-794.847198,160.787003],[20.634262,-794.911773,121.888620],[34.058701,-794.992096,180.872799],[4.167893,-794.964081,189.836731],[0.849777,-783.763519,190.855782],[-36.654129,-794.503143,186.147667],[-53.891434,-794.888336,199.755967],[-41.610245,-794.894073,197.735787],[-20.277054,-779.886993,194.968270],[-40.882950,-786.657989,197.868004],[-27.336502,-794.904205,195.291237],[-44.453873,-794.304107,174.774903],[-45.269180,-794.591522,158.783921],[-44.846878,-749.791656,187.961487],[-49.444107,-754.313202,188.664528],[-54.881546,-767.151947,191.244545],[-49.152420,-777.182342,199.353394],[-40.741592,-771.933685,197.906243],[-58.489334,-772.640228,200.557854],[-58.292313,-769.564544,195.104882],[-73.915115,-772.490692,202.518113],[-67.587784,-769.170685,194.251679],[-58.477676,-768.574005,192.428406],[-63.791336,-749.133697,185.624394],[-49.162002,-769.728119,194.915398],[-49.079483,-771.474823,198.967125],[-58.864334,-770.741485,199.895722],[-28.390640,-767.715667,191.633217],[-47.662125,-767.769928,191.193161],[-50.350662,-705.136627,165.227593],[-49.290176,-696.967590,161.837609],[-56.345901,-712.142181,167.027634],[-65.606338,-706.553802,159.936043],[-73.439102,-695.955230,152.650475],[-89.605545,-693.159332,148.722428],[-94.077408,-767.051239,189.814820],[-73.882584,-755.011322,187.144234],[-72.404678,-759.117096,188.933251],[-74.402786,-765.374176,190.572373],[-107.756302,-771.068451,197.570945],[-109.530289,-770.012359,195.379952],[-108.538223,-768.906891,188.367455],[-103.188125,-770.124664,198.940110],[-116.134415,-761.794769,181.789818],[-122.125015,-768.006622,181.427861],[-128.590103,-768.148346,179.079983],[-138.762710,-767.696624,172.317440],[-142.210159,-765.688263,169.281029],[-144.172073,-767.161102,168.395832],[-152.897903,-766.053558,161.630913],[-151.876724,-768.616974,165.952134],[-157.476211,-769.829742,162.484352],[-164.885513,-768.197479,156.874344],[-169.911758,-768.347259,153.455721],[-173.219009,-767.552765,150.750376],[-171.153458,-764.577545,147.529963],[-179.425674,-767.738067,146.343367],[-180.480362,-765.132110,139.674696],[-184.702347,-765.764251,136.329561],[-177.935379,-749.255890,135.839360],[-170.693436,-753.611847,146.140068],[-160.380752,-742.589508,152.971861],[-155.298416,-739.639923,156.147435],[-149.001419,-731.296173,155.871727],[-148.935562,-722.308685,149.063511],[-172.896744,-740.204742,137.069823],[-167.056351,-724.838287,131.859087],[-161.199722,-724.945465,138.930195],[-158.898636,-716.709869,133.710725],[-158.245987,-711.956573,130.838873],[-153.073257,-716.501739,139.781540],[-156.895096,-707.460602,128.267249],[-166.950088,-743.779937,146.109677],[-182.868484,-759.648468,135.037649],[-183.469070,-769.012542,143.495821],[-197.133072,-769.426239,133.385929],[-194.380508,-777.126312,135.923205],[-208.628555,-774.912628,125.230528],[-221.878555,-767.303131,112.841533],[-225.086563,-768.646270,111.695639],[-227.770828,-767.441620,108.375561],[-229.275894,-767.210479,105.420452],[-236.546463,-769.967743,98.552441],[-231.223282,-767.090545,89.534974],[-219.668777,-766.703033,111.064373],[-235.055191,-767.527496,96.103852],[-215.975174,-766.957122,117.704603],[-235.549454,-772.988311,103.237736],[-236.758682,-780.524200,102.067843],[-234.017166,-786.570831,105.937347],[-228.997513,-786.554352,109.866702],[-228.886001,-776.938690,109.249915],[-235.198501,-768.522613,102.333409],[-225.479141,-771.994598,111.680518],[-213.469192,-776.716949,121.586638],[-221.477188,-789.227813,115.377179],[-212.732925,-781.459259,122.261996],[-233.318619,-794.991363,53.947586],[-188.221939,-795.042938,62.895569],[-245.600479,-794.942657,34.908425],[-247.034866,-794.940338,22.231072],[-244.967483,-790.874786,40.610726],[-247.139297,-789.195648,22.834801],[-245.554581,-794.963043,15.732888],[-244.837967,-794.918060,40.793770],[-243.465225,-794.980255,52.627114],[-242.822586,-785.376739,57.820443],[-145.971451,-795.095367,164.757630],[-112.490860,-794.959808,185.956688],[-121.421097,-795.163177,188.844895],[-137.151077,-778.372650,177.285164],[-148.953018,-778.205780,168.996167],[-62.741653,-794.846100,142.414854],[-82.253555,-794.770782,152.806565],[-83.117569,-793.636200,181.220154],[-84.104813,-792.359039,190.299781],[-92.495071,-793.143707,191.068779],[-115.341263,-795.152191,192.919686],[-121.073257,-781.959625,188.940621],[-112.536880,-787.428253,194.773400],[-103.529251,-786.155060,200.474602],[-98.521133,-792.075409,203.847481],[-99.344131,-793.953399,200.647599],[-102.141434,-794.694549,201.626174],[-108.633804,-795.059906,197.466889],[-100.630203,-794.280914,192.599564],[-95.579483,-792.438324,198.200333],[-95.797012,-789.097503,202.465240],[-97.420242,-780.695648,204.630410],[-93.394974,-787.565155,202.595147],[-71.840591,-791.848968,194.255844],[-67.064957,-792.953582,186.462365],[-55.738602,-794.305084,167.520295],[-69.519302,-793.727325,176.585263],[-79.575027,-793.027008,185.193375],[-91.456314,-791.344268,197.302956],[-119.000259,-774.901397,190.138176],[-122.066238,-770.420685,187.487931],[-78.635879,-794.334991,167.726662],[-90.170669,-794.315826,175.761525],[-70.242325,-794.575470,157.658402],[-104.989212,-795.042450,96.768151],[-42.416153,-795.003692,65.770405],[-34.846573,-794.975982,90.943348],[-83.900711,-794.991913,124.218638],[-35.521133,-794.733551,149.964384],[-29.298172,-795.012726,10.156205],[181.898819,-794.929657,40.360405],[181.708756,-786.919647,39.746224],[173.480637,-772.622650,51.620011],[177.129013,-772.629791,48.657593],[175.341782,-773.564850,52.183449],[169.076645,-774.441375,60.507687],[166.028610,-772.714386,62.823445],[162.289902,-772.451202,65.361206],[161.910019,-773.663299,69.860505],[159.205551,-785.924164,74.172799],[152.497666,-780.281158,82.829270],[148.570725,-794.970672,87.967636],[159.515854,-794.854339,74.061661],[154.454941,-794.964386,61.553315],[155.223312,-794.848785,79.606240],[118.336166,-794.992950,36.668847],[163.894577,-794.835540,67.933689],[151.594101,-771.049652,64.843712],[152.248215,-767.314789,60.686127],[155.862900,-760.423675,46.846482],[147.960007,-748.393158,46.105317],[140.926499,-750.222076,56.671029],[140.962204,-743.495025,49.664788],[138.680405,-746.666290,55.815865],[135.852219,-737.309967,47.591683],[130.850632,-739.924591,55.259621],[122.223679,-732.592498,54.568093],[105.614426,-716.152618,63.183010],[107.396103,-715.729767,56.911690],[104.017075,-711.112518,59.199105],[104.260727,-708.315338,55.595299],[101.742233,-699.089508,58.891468],[108.103012,-704.549865,45.617363],[110.132004,-699.006836,42.378312],[115.328293,-697.898010,37.225922],[110.618210,-687.011017,38.682434],[107.522995,-688.969085,42.801850],[105.295517,-699.388000,49.030136],[100.798386,-691.774902,56.893486],[100.477219,-695.700378,61.191597],[99.507187,-700.025451,71.130425],[100.834580,-704.584961,70.303421],[100.428940,-709.370453,83.195683],[101.778061,-714.256256,81.990464],[99.763229,-714.893951,94.956192],[102.044968,-721.263214,89.933569],[102.547775,-731.536163,102.021992],[103.698105,-734.951080,102.396155],[103.190170,-738.502594,110.455814],[107.900009,-751.218292,111.360450],[109.868088,-758.248932,116.572028],[115.933823,-762.469207,112.094391],[122.681442,-762.517303,99.268135],[127.608139,-762.380279,89.082920],[132.914291,-762.789825,80.732743],[129.326340,-770.821563,96.668379],[133.553330,-771.618499,91.200102],[138.561875,-771.163910,82.812031],[141.378403,-770.815521,78.581936],[143.404099,-772.188507,81.649773],[146.564316,-771.175567,71.966298],[132.030625,-751.382049,68.547676],[118.047287,-749.575897,87.596421],[115.447739,-751.199798,95.899226],[114.558884,-747.313812,91.754952],[105.429001,-729.652130,87.929470],[103.410935,-716.659576,73.897595],[104.230393,-728.408477,90.425894],[102.202377,-710.211151,69.390038],[102.796066,-708.887359,62.878411],[119.982285,-757.189483,97.010445],[109.145126,-745.838531,101.922972],[106.469956,-742.234649,104.026751],[106.697678,-736.482452,95.155777],[145.075668,-766.808136,69.402176],[138.896774,-765.805206,75.798981],[147.824875,-761.072479,59.199963],[143.136765,-754.121795,58.441948],[147.614792,-753.216644,51.973832],[152.855576,-759.808014,51.542115],[140.540207,-761.192779,67.495446],[140.496079,-759.200470,65.535004],[138.394882,-755.006988,64.705593],[127.241196,-771.545501,101.623541],[137.801499,-772.431427,91.061148],[112.356430,-767.153167,123.713380],[112.778305,-771.760345,126.757522],[113.244797,-773.049957,131.441924],[109.963059,-773.493255,137.644305],[117.660751,-775.146576,128.392259],[102.671311,-770.963348,138.713354],[107.822250,-772.060272,134.732770],[102.279465,-772.886688,145.599539],[104.136032,-774.277557,145.809052],[111.084335,-774.624908,136.949776],[107.395554,-795.047638,140.368319],[99.405502,-783.515289,151.277380],[59.684494,-794.870208,182.861657],[58.541977,-781.822418,182.990693],[62.077866,-775.559051,182.308525],[54.745285,-772.006195,178.835301],[53.633225,-770.592682,174.291068],[48.823105,-770.196502,175.998986],[50.237656,-761.013702,172.769837],[37.933212,-758.942596,178.136956],[50.193466,-755.594757,171.300316],[63.776108,-755.686248,165.145127],[65.147446,-745.528534,162.495713],[71.666000,-755.760345,161.337723],[78.136643,-760.460907,158.979557],[75.650437,-769.880890,163.821118],[81.759628,-769.357391,159.858719],[74.301926,-771.922577,167.325051],[71.207932,-770.616668,166.630536],[69.108994,-763.129913,165.000988],[57.208237,-773.435821,182.229885],[63.694199,-773.372345,179.824879],[69.524155,-776.616180,181.321804],[74.458054,-775.424347,179.015072],[79.515244,-778.727874,176.381947],[82.497116,-774.190399,171.982087],[85.588364,-774.842682,169.031987],[94.592819,-773.073761,156.835530],[100.162949,-773.705108,150.948306],[96.832810,-771.725616,147.448042],[109.443405,-765.429168,126.375345],[66.874375,-784.363372,181.686200],[74.553146,-794.809784,180.471474],[74.739487,-783.018524,180.602172],[76.954941,-777.083221,178.895916],[88.752609,-777.003570,165.051770],[86.588425,-784.167938,166.896588],[88.962631,-794.991607,162.634682],[83.013596,-790.260345,171.058007],[59.005295,-794.916107,167.830124],[83.821640,-794.826507,169.658768],[-37.128555,-794.903900,122.683589],[98.670517,-794.919403,151.000372],[93.203598,-795.088714,157.258400],[91.500046,-786.892059,160.343285],[95.494003,-775.011078,156.799645],[91.201645,-773.502655,161.686295],[105.699326,-779.050811,143.802369],[107.488327,-770.689117,132.526320],[100.705917,-726.528595,105.206519],[93.908066,-721.672210,124.863491],[89.584335,-724.660309,133.244774],[84.725021,-720.056122,136.737705],[85.701401,-732.710418,142.086245],[81.882431,-732.826629,145.817484],[76.014023,-734.700653,151.561312],[79.944687,-722.183258,142.265568],[72.872543,-715.243866,142.683834],[63.691513,-713.651642,146.370987],[71.947495,-708.346405,138.456969],[72.773422,-702.362610,132.921308],[57.148728,-717.210479,152.274956],[63.376267,-727.661468,155.832276],[69.905258,-732.085540,154.585785],[56.523850,-728.489410,160.389923],[66.474960,-736.352508,158.773453],[53.425156,-733.891632,164.939755],[42.448654,-738.547393,172.028923],[42.641892,-734.841766,170.405281],[30.548691,-736.043060,176.915139],[18.558090,-735.369842,182.429181],[7.690415,-723.827179,181.043373],[9.591293,-715.241913,174.292298],[3.323898,-711.531463,173.657498],[1.655991,-705.824096,168.588536],[3.767807,-703.845855,168.117375],[14.734238,-708.530914,168.241894],[-4.013992,-702.999206,167.525486],[-6.576370,-698.285858,166.205567],[-13.689834,-701.831512,169.450783],[13.799973,-728.634552,181.573159],[13.064438,-733.514129,183.736287],[4.747788,-732.601410,185.506279],[-7.296036,-740.601471,188.237107],[-12.770157,-754.135589,190.476639],[-19.864517,-740.217560,188.179604],[-12.985123,-734.024200,187.633545],[-17.071487,-746.439727,189.125809],[-7.757950,-728.049774,186.295647],[-11.969986,-722.414398,184.377785],[-38.334610,-694.170593,163.406701],[-33.541580,-690.728820,161.423264],[-38.250076,-685.249878,156.341294],[-32.368851,-682.068695,157.336884],[-14.708877,-675.849029,160.173291],[-25.493729,-663.828857,150.074765],[-26.526138,-670.131042,152.966385],[-32.401993,-659.833954,145.003867],[-27.584976,-687.504089,161.313305],[-25.208450,-680.805786,158.115162],[-22.836136,-677.714050,157.439591],[-7.302688,-689.119110,166.178334],[-12.831436,-694.361023,164.490521],[-10.376419,-682.298187,163.839363],[-6.324722,-678.048767,163.734684],[-1.883682,-694.954132,168.020100],[4.408676,-700.084137,169.036267],[-20.363418,-684.040039,160.219620],[-20.644791,-687.982849,161.730530],[-23.576126,-693.030609,164.840615],[-29.658157,-703.117920,171.837704],[-19.617081,-694.124054,165.206833],[-11.099197,-698.376068,166.025425],[-22.466568,-699.236267,168.908055],[-23.730301,-706.030578,174.341694],[-14.731888,-710.799652,177.244328],[-4.900040,-718.360382,180.987450],[-4.197708,-712.853912,176.873303],[-5.690628,-723.400970,184.155079],[2.612778,-727.233978,184.230713],[-19.183426,-718.977203,182.380070],[-27.660538,-696.287964,166.400971],[20.672226,-742.655304,183.052376],[14.090195,-743.539764,184.917725],[8.359665,-754.849029,187.739968],[22.212326,-756.213775,184.320656],[7.086166,-769.257599,187.312172],[-2.066238,-765.444793,189.159958],[7.244858,-771.864532,190.131379],[-10.064224,-769.175811,190.809304],[-1.727005,-769.149749,189.225747],[28.999802,-739.882538,179.100880],[35.087387,-749.230499,177.671528],[38.952438,-755.741119,176.850674],[39.077683,-764.451812,178.804432],[42.295944,-772.070221,182.899041],[45.845444,-753.483123,173.015919],[39.766892,-741.112518,174.081223],[48.708481,-742.481964,169.950875],[53.972031,-746.869171,168.278862],[60.035996,-738.865936,163.399434],[73.558457,-743.824615,157.291969],[75.880234,-750.095001,157.575501],[70.245957,-748.776031,160.348996],[83.210312,-746.270172,151.594710],[90.313339,-739.555450,140.793339],[91.098190,-731.622467,134.670845],[94.191757,-728.836029,127.830899],[73.253769,-725.047149,148.421444],[32.840683,-732.348297,173.894477],[26.648422,-729.138763,175.145241],[18.897446,-728.863189,179.338807],[64.350144,-706.458435,141.776652],[59.523117,-706.571350,145.465266],[52.612351,-709.634124,151.441935],[47.309555,-698.881378,157.414963],[59.957749,-711.806793,147.327303],[19.552109,-691.745453,167.582711],[17.918137,-695.825866,169.194970],[41.933090,-695.440307,161.095631],[35.712998,-692.808868,163.629975],[77.471909,-717.090606,140.995428],[83.801071,-714.730316,134.244073],[86.533493,-710.247772,127.379945],[89.083908,-708.387359,121.535777],[90.477768,-705.293853,114.214388],[92.676254,-710.748993,117.469227],[94.891892,-707.782257,106.155293],[93.877792,-700.508331,92.093083],[97.010300,-706.639953,93.497738],[95.621323,-697.460754,82.914784],[90.546494,-688.322052,80.371045],[83.734665,-680.362274,83.236599],[82.109970,-672.367279,75.025227],[79.961044,-672.684753,81.044037],[77.112412,-666.323700,78.093308],[77.416123,-663.392029,71.701859],[72.039291,-662.137787,81.975174],[91.620041,-693.990051,86.816803],[90.609848,-697.372162,96.910202],[86.503403,-697.798340,111.073940],[84.725021,-690.844391,103.097800],[79.596787,-681.151703,103.154637],[83.628281,-692.983795,110.146288],[79.766098,-685.814850,110.476402],[82.891281,-696.022918,115.467059],[81.581406,-700.911438,122.758152],[76.394333,-695.173919,123.663535],[76.945053,-701.268951,128.001506],[79.578232,-709.729339,133.922298],[84.572739,-687.608795,95.961159],[79.997055,-677.931671,91.789757],[92.246506,-715.632477,124.443674],[95.788315,-711.733185,109.883392],[98.821152,-710.114410,92.352658],[100.409104,-732.803680,114.230300],[99.474655,-737.386749,121.035866],[94.805710,-735.407928,131.084093],[97.277573,-729.729767,121.621110],[95.145676,-716.406036,118.361226],[101.558762,-682.723266,48.064484],[97.614670,-675.383117,48.821984],[98.127792,-682.727050,55.126000],[103.398666,-690.078613,49.586403],[108.449143,-681.387390,38.923226],[116.935349,-681.419281,30.705338],[116.962692,-675.223144,25.713929],[123.588913,-678.759277,19.176339],[116.747055,-670.694915,20.527512],[111.051010,-666.757629,24.489678],[105.812973,-660.055328,22.838463],[89.976242,-652.687744,34.833916],[84.518417,-651.774688,40.926293],[86.715134,-662.511566,52.304955],[81.932236,-656.904113,51.199921],[72.669663,-654.396576,62.288430],[71.687058,-643.038727,44.888817],[68.152023,-637.554199,40.679390],[66.895798,-633.220398,35.466591],[73.028793,-638.343109,35.661194],[66.891647,-627.476715,27.836846],[76.257004,-633.093475,25.321450],[88.657272,-644.522979,25.683159],[83.938706,-645.113800,32.246888],[78.092758,-645.771148,40.411873],[91.284531,-644.192901,21.184433],[84.167465,-632.558746,13.649582],[78.287460,-624.593750,12.942887],[78.388596,-616.372894,6.325943],[81.913376,-608.139557,-1.011619],[83.867355,-600.594421,-10.535561],[87.784958,-609.412994,-9.007713],[91.238876,-612.546966,-14.602943],[90.210373,-615.433929,-9.455879],[92.550278,-625.135925,-9.669761],[87.364243,-623.747802,-1.308639],[92.246384,-630.000976,-4.561065],[91.975693,-634.535431,2.709183],[88.107468,-631.910522,6.091881],[91.503830,-639.160309,11.717514],[83.962326,-620.897827,2.060509],[86.388291,-612.483062,-4.866867],[85.473923,-627.065857,4.930947],[94.071579,-624.441620,-13.189674],[94.544724,-621.184295,-16.640754],[83.473557,-596.965515,-17.807792],[79.662155,-591.029724,-22.027504],[76.579086,-582.638611,-15.884788],[77.138962,-577.219940,-17.428154],[76.179611,-576.344970,-15.580391],[75.182968,-570.818237,-14.278358],[70.821396,-562.610931,-12.295768],[70.835129,-559.653259,-7.274864],[63.210007,-555.131012,-11.571006],[59.330673,-552.845459,-8.527702],[51.561325,-549.128448,-1.039596],[49.499375,-546.833923,-2.584007],[52.479538,-546.020843,-7.199226],[45.907089,-543.238037,-2.289650],[41.073471,-540.708679,-13.207909],[32.444687,-556.586395,-6.729683],[29.436875,-558.374206,-2.679618],[34.669846,-563.602752,-3.589752],[42.410690,-570.357727,0.204628],[46.096176,-570.333984,4.158318],[41.614792,-558.398620,-2.311332],[38.791672,-551.065582,-5.283935],[38.505112,-546.094299,-8.739311],[42.755905,-544.146728,-4.224983],[47.331711,-548.257080,2.055336],[48.846970,-546.755462,1.272019],[55.420822,-551.039764,5.580918],[34.389267,-545.530487,-14.062126],[32.109970,-551.647491,-10.948417],[38.455063,-558.907165,-5.094642],[36.244431,-558.394500,-6.168518],[39.448044,-570.623474,-0.797508],[35.499802,-551.534942,-8.773933],[43.478684,-547.206878,-1.255088],[79.515427,-631.173950,18.690659],[74.354416,-627.055420,19.855515],[74.905380,-621.934845,14.227692],[64.532333,-610.984893,16.867600],[62.667954,-604.628296,18.956322],[57.891586,-598.847046,20.214798],[45.633469,-593.685638,20.392807],[48.904038,-594.367370,17.990029],[48.066940,-585.296905,16.968262],[49.295761,-579.437500,13.160942],[54.535568,-571.553039,1.333809],[58.595993,-569.743042,-2.652824],[73.451035,-574.487487,-5.240173],[81.931870,-572.155029,-5.832397],[69.658371,-577.368194,-5.876541],[65.073105,-569.801361,-2.825691],[58.265732,-572.537872,-2.385254],[59.332626,-588.333343,3.855408],[54.806381,-586.008209,8.818993],[51.031784,-583.661865,14.168778],[52.897019,-588.921753,13.233399],[57.406967,-588.613128,5.510041],[57.091049,-595.218261,8.036995],[61.191818,-595.922393,7.175629],[68.064926,-596.607361,4.188668],[72.172592,-609.604858,10.367936],[76.003464,-604.826294,5.462738],[73.956345,-611.973968,8.028717],[69.226181,-614.628845,13.091187],[71.003464,-618.685669,14.733590],[74.221115,-590.678528,-1.581894],[79.664902,-597.356414,-1.536430],[80.358200,-600.538910,-3.095344],[80.685104,-593.526489,-4.558441],[81.006455,-593.854614,-12.928260],[79.504135,-590.892975,-14.146583],[82.201157,-585.126770,-11.537071],[81.716171,-586.645843,-8.485084],[64.493149,-578.676635,-3.774131],[64.196152,-586.701904,0.508271],[81.176621,-593.528137,-9.119698],[49.767990,-588.886993,17.106224],[54.285263,-595.609802,10.787102],[54.969406,-597.116272,11.666451],[60.381027,-598.580505,10.164322],[63.772019,-604.065612,12.489037],[67.131088,-602.447235,8.606087],[60.673630,-601.873748,15.520546],[64.961960,-609.201049,15.686188],[51.470383,-577.096252,10.294632],[81.524765,-579.246154,-6.830497],[78.858139,-572.264465,-3.319656],[78.952438,-568.074432,-8.878502],[74.361496,-563.098083,1.963227],[75.585007,-567.194549,0.479554],[67.075119,-563.268188,3.021309],[67.184616,-566.016754,0.375718],[58.537460,-565.550445,-0.362747],[78.684982,-566.193420,-4.404609],[79.099106,-567.522613,-0.921989],[61.116928,-574.455414,-3.834831],[67.608017,-622.727722,21.460534],[62.233200,-618.979767,21.538651],[52.206406,-620.134369,31.007782],[63.128647,-614.188324,17.027314],[95.615952,-645.760803,16.262009],[95.706467,-637.880218,-0.568191],[99.501389,-643.652862,1.601899],[100.110397,-640.333984,-8.624946],[94.325729,-639.957122,7.126236],[97.329086,-633.063690,-12.225822],[96.786606,-628.744415,-16.583961],[99.890427,-633.499817,-19.992302],[98.912583,-629.820190,-26.393181],[97.217331,-625.122223,-25.694297],[90.160202,-607.627563,-21.215873],[87.871506,-603.700073,-23.967613],[83.456040,-598.035247,-28.346199],[83.205307,-597.501373,-31.639015],[83.328659,-594.033783,-31.825310],[82.571091,-593.256897,-40.427665],[79.469162,-585.873169,-43.206322],[85.412827,-600.803772,-42.249505],[84.695236,-603.340301,-40.315911],[88.431503,-610.103424,-39.771141],[86.317795,-602.785309,-30.602974],[91.783310,-612.339996,-29.851341],[96.795212,-623.692413,-31.304237],[85.645371,-607.384643,-46.616569],[86.191513,-611.611114,-54.254448],[88.220444,-610.413391,-60.808937],[87.226669,-601.299896,-83.028816],[84.758957,-606.525695,-84.201164],[86.366135,-609.059204,-87.428566],[90.464646,-604.234863,-89.570472],[85.603867,-611.462921,-90.128456],[93.805161,-594.662109,-80.355476],[84.738999,-596.666137,-91.139473],[83.597580,-596.270538,-94.102760],[90.161911,-597.621460,-81.485847],[88.674240,-601.177917,-79.575401],[88.247543,-598.094635,-68.927848],[84.103500,-594.006103,-52.637718],[83.762924,-587.500885,-60.726020],[81.726303,-582.886688,-56.791908],[77.825791,-572.723388,-56.178047],[78.575363,-563.364013,-54.288902],[76.299790,-564.243591,-60.240960],[75.712509,-557.742859,-67.915351],[74.375717,-559.391632,-69.144157],[69.978745,-547.840484,-81.622947],[63.993210,-545.968872,-88.625953],[60.542893,-542.685363,-93.614280],[60.112717,-537.833343,-90.793663],[58.638168,-537.152801,-80.100914],[56.337387,-534.097320,-86.713142],[52.127976,-533.837524,-74.715385],[53.361435,-536.503906,-64.301551],[48.011154,-535.347412,-54.064384],[40.778977,-529.393158,-51.110298],[43.298325,-522.522979,-64.132194],[41.457199,-513.159546,-67.882866],[44.150925,-501.217285,-79.145530],[44.650559,-498.412567,-83.574272],[47.339890,-485.460540,-89.459496],[51.281479,-468.559448,-88.999932],[53.069931,-455.646393,-83.261100],[55.388413,-449.683990,-79.621086],[57.234543,-450.441589,-76.187385],[57.737106,-437.008239,-79.165397],[59.769699,-439.796966,-75.701211],[60.295456,-430.237625,-76.666664],[65.887436,-440.997833,-69.844001],[70.625290,-448.391830,-65.360420],[72.661972,-463.156982,-58.186042],[67.200791,-477.412689,-55.449211],[63.231674,-486.470642,-53.611076],[61.988937,-492.673217,-50.340858],[57.113144,-499.949035,-48.048408],[43.888291,-511.205536,-42.941841],[39.600266,-516.042114,-41.536003],[34.964340,-525.862945,-37.691032],[33.069748,-525.958801,-33.946664],[41.313217,-531.599334,-45.279762],[37.727341,-528.906860,-45.620125],[37.340683,-527.040954,-46.359855],[45.630112,-512.338409,-45.909385],[46.392075,-511.106872,-48.317695],[51.547165,-505.536346,-47.650535],[51.849777,-500.385803,-53.057945],[52.054367,-494.715698,-58.161018],[47.624741,-497.488952,-61.756141],[50.558579,-488.057922,-65.638756],[55.492905,-480.514923,-64.121910],[52.544174,-476.812317,-70.653190],[50.916306,-473.023712,-76.336509],[53.567429,-459.941620,-78.210548],[68.339157,-457.152496,-64.803047],[62.731247,-456.639221,-68.283943],[61.874619,-448.442917,-71.773903],[64.962998,-450.791900,-68.296913],[64.741562,-470.350219,-61.541084],[61.129135,-479.863922,-58.315391],[43.947128,-529.573120,-56.478309],[87.322861,-560.092865,-48.563026],[79.608566,-565.803314,-45.052452],[81.370590,-566.005310,-38.366020],[92.853134,-557.382782,-44.133552],[93.784470,-558.117309,-36.250984],[94.093308,-553.489349,-37.737205],[93.538376,-555.746338,-32.597634],[90.847641,-553.344513,-23.985832],[90.180161,-554.962372,-23.647499],[88.221604,-564.919555,-22.489341],[83.349533,-568.493408,-19.874885],[74.694870,-568.373016,-16.552009],[69.961350,-562.124023,-15.923958],[75.527817,-561.339904,-20.297004],[70.678635,-556.698822,-20.681221],[78.327011,-552.360992,-26.622658],[76.627426,-543.585296,-26.606361],[81.909042,-547.891479,-23.636345],[83.818100,-546.425110,-22.400978],[81.118576,-539.433471,-24.284156],[88.444687,-548.135376,-37.908058],[88.704941,-547.809448,-55.441307],[86.173813,-546.954315,-57.684654],[87.057968,-548.982330,-61.271569],[78.765793,-545.245758,-50.335136],[84.384384,-546.397308,-49.421380],[91.008835,-552.163513,-26.462318],[93.143967,-556.566833,-24.949745],[91.325119,-551.103546,-33.077476],[86.080124,-546.737426,-23.187691],[91.062912,-552.712768,-53.343269],[92.232773,-550.128967,-42.916404],[91.849838,-550.600250,-49.982200],[89.190781,-556.806701,-51.998726],[78.718247,-556.526886,-65.087654],[86.546982,-553.502868,-59.972893],[94.307846,-554.055450,-42.623115],[86.052414,-562.495880,-43.653770],[86.051254,-560.076477,-24.100196],[81.084213,-554.152710,-26.431739],[83.759384,-563.552246,-22.900154],[64.625351,-550.360443,-20.184379],[93.793991,-559.958740,-32.848075],[90.030441,-560.911102,-38.267341],[78.106247,-561.689117,-58.518563],[85.150742,-599.398987,-51.727195],[87.399826,-602.433380,-61.321693],[85.917526,-603.639892,-46.629830],[82.489365,-592.171447,-45.724815],[87.879501,-591.926147,-73.676323],[89.121506,-594.258941,-73.098366],[86.750412,-589.090118,-76.941170],[82.179367,-582.276489,-63.543357],[76.916855,-569.125976,-61.088050],[86.131088,-588.834594,-69.424813],[93.500534,-598.033996,-76.452507],[94.225083,-595.920623,-75.269615],[84.765061,-602.693390,-91.092125],[90.321640,-602.194671,-90.590660],[87.832504,-597.983856,-89.794563],[85.398544,-593.810058,-87.275169],[93.800095,-595.361267,-85.741661],[92.812607,-599.192779,-88.430214],[79.619736,-611.256408,-86.690559],[80.803635,-610.594543,-83.939628],[85.212326,-605.658233,-82.129722],[82.091538,-615.195221,-79.597541],[83.694443,-613.630706,-77.717872],[85.560898,-616.289062,-67.314033],[89.437973,-601.843139,-70.056129],[90.303635,-606.860412,-69.801873],[92.351791,-604.650909,-73.178230],[92.748154,-601.578521,-72.650886],[93.993942,-616.865356,-20.542488],[96.895676,-626.881073,-40.182457],[96.011215,-630.898620,-49.617547],[90.856430,-622.136841,-53.498161],[94.704392,-633.408661,-59.071404],[99.644394,-632.506195,-34.022010],[102.296433,-640.042328,-40.145713],[99.193527,-639.364898,-53.859566],[93.090195,-636.078216,-68.311897],[88.567246,-628.971771,-72.603462],[88.727890,-622.652404,-61.402749],[86.711838,-614.543548,-57.643304],[95.470017,-641.009247,-69.660484],[92.390122,-639.655487,-76.644889],[89.934311,-637.297516,-80.719764],[84.489243,-624.260040,-80.096397],[85.652451,-622.732849,-73.735039],[83.881210,-616.623138,-73.720588],[78.654892,-614.217590,-88.094719],[80.621872,-619.462036,-87.229714],[82.196457,-618.142273,-80.496177],[99.128037,-634.507782,-43.093589],[97.244980,-635.631500,-53.333931],[90.629746,-626.353058,-60.782997],[89.962814,-616.775238,-47.909690],[94.052658,-623.952270,-46.096824],[94.646591,-620.418182,-36.036750],[58.390244,-626.094726,34.587090],[43.862290,-619.847992,39.177025],[42.523422,-616.988037,35.947380],[61.632309,-625.523346,30.443993],[75.228928,-652.656555,54.328354],[87.634934,-666.462951,55.857613],[89.144333,-659.167053,44.522515],[94.660507,-667.279815,45.974991],[95.930161,-663.128021,40.026268],[104.988205,-665.120422,31.259705],[104.358933,-667.443084,34.300866],[113.017807,-676.487274,31.706932],[80.993881,-660.100158,58.217049],[81.792343,-668.748504,70.732167],[86.650192,-675.513183,70.073166],[86.044479,-669.335235,62.529263],[94.201950,-686.215789,69.504361],[91.228623,-682.965240,71.369610],[95.612595,-687.109802,67.026616],[97.893845,-690.010315,63.953095],[92.503464,-671.768036,54.196167],[100.127121,-673.890197,43.878952],[104.018173,-676.849579,41.154015],[99.974838,-668.270691,40.015870],[104.184860,-685.234131,45.743599],[95.511887,-678.772155,56.629334],[91.838242,-676.743469,61.727894],[94.657761,-658.718231,36.574532],[99.765610,-656.594085,26.846978],[100.337998,-652.529754,19.431839],[102.730942,-651.775238,13.273384],[102.494370,-649.641967,8.835884],[106.046433,-648.316070,-8.639595],[116.865280,-685.757354,32.677506],[121.117539,-727.327057,49.702538],[115.999313,-726.879791,56.026703],[116.421921,-722.183319,48.783364],[114.157639,-717.813018,45.853592],[112.829697,-723.006378,55.580948],[107.485581,-711.498016,49.783104],[112.726669,-708.584930,41.087983],[116.591110,-701.925964,36.307824],[120.154099,-706.386779,32.403336],[127.706040,-715.231231,24.956070],[123.474411,-713.552398,29.061837],[117.902878,-717.298858,39.920884],[110.384750,-710.878448,44.820565],[113.913498,-714.145660,42.268174],[117.583298,-710.264923,35.476868],[122.179916,-710.380706,29.856934],[122.070664,-716.042938,33.547463],[129.149399,-710.426910,21.909752],[131.050156,-702.696747,21.621575],[131.878952,-696.641662,20.910691],[126.631577,-693.532501,26.400986],[127.541794,-699.021698,26.378647],[123.621689,-696.150360,29.932602],[130.981125,-692.884582,20.228485],[124.739975,-687.712310,25.416504],[178.029465,-779.665985,48.984398],[181.385086,-774.824920,42.541573],[181.267716,-779.883758,37.675255],[170.862167,-782.065033,58.662316],[179.049851,-788.374908,47.816582],[170.133103,-794.991668,59.714631],[179.037521,-786.745880,15.839608],[178.298813,-788.938141,8.854836],[176.916367,-794.944549,-4.217628],[176.459458,-776.359588,-7.776680],[175.185837,-771.730194,-12.227577],[176.848679,-781.218414,-4.021331],[179.990616,-781.972076,23.789803],[179.270096,-772.469207,20.051705],[171.794418,-770.895477,20.110207],[178.103195,-772.084747,24.117867],[170.441513,-770.999359,26.907998],[167.948105,-769.965667,30.862534],[168.727463,-771.754974,40.549225],[168.025803,-771.446747,36.741188],[164.336960,-771.962127,50.518311],[167.358627,-772.346954,56.537262],[166.712631,-769.863189,34.158776],[163.054672,-759.245392,29.384621],[166.166367,-759.208709,21.656670],[167.222641,-764.656280,25.129525],[169.140183,-768.040558,23.597710],[174.683396,-771.960724,34.880921],[172.712753,-772.943084,54.545906],[179.948624,-772.195343,34.107888],[180.850601,-774.611053,32.215638],[180.146408,-773.307647,24.743035],[178.517014,-772.432586,14.808106],[176.834213,-771.646270,14.877465],[170.730393,-769.346832,15.910332],[172.729843,-770.796783,11.503395],[176.001938,-794.932098,10.685326],[179.447098,-794.844635,19.382340],[178.602158,-794.902923,11.983239],[181.199265,-785.316009,34.933686],[180.949509,-794.947784,30.775383],[77.148056,-794.954986,6.481728],[-223.648636,-795.007843,113.925240],[-213.790298,-794.780609,121.396706],[-241.099625,-794.971649,74.138092],[-239.984939,-779.749786,79.525788],[-237.976822,-768.646881,85.498524],[-236.818130,-767.855743,91.088341],[-236.333023,-767.565338,83.750267],[-239.170853,-768.777557,79.977799],[-239.996414,-771.655060,75.828057],[-240.738296,-777.800201,71.636792],[-238.669144,-767.861908,76.706585],[-238.933426,-767.657867,68.717049],[-241.445022,-770.808868,62.338787],[-244.024917,-780.568268,48.355027],[-242.582474,-769.999176,53.734948],[-243.734390,-770.172149,45.548226],[-236.055130,-759.956024,39.900528],[-235.936111,-751.432769,35.548790],[-233.270340,-745.956939,37.584252],[-230.640396,-741.820587,43.061013],[-228.715774,-745.895416,50.462784],[-224.688309,-739.574554,57.007996],[-220.442459,-733.337372,60.390625],[-217.003250,-725.928741,61.452561],[-212.657608,-711.641876,58.522538],[-207.395523,-713.371429,66.587601],[-201.609756,-710.600555,72.134781],[-195.671951,-711.205597,79.740250],[-197.721512,-722.681244,85.244866],[-191.587723,-724.906524,97.817263],[-189.944412,-726.974334,102.265341],[-168.587417,-708.057464,115.463959],[-239.484817,-759.841827,24.711747],[-238.347183,-753.818573,28.044762],[-240.452286,-749.233795,16.194222],[-240.625320,-754.306915,18.063347],[-242.845718,-752.661773,5.314881],[-243.409744,-757.034210,-0.802589],[-244.083389,-752.421112,-6.093910],[-244.908401,-766.236114,-14.781715],[-245.189712,-766.056305,-24.157769],[-244.679520,-760.632293,-26.242469],[-243.503555,-752.964996,-30.155296],[-237.910354,-732.412079,-35.323555],[-238.178665,-739.458343,-41.619163],[-236.727493,-723.627227,-29.348259],[-236.549454,-717.224518,-8.586570],[-233.128433,-709.094696,-3.736892],[-226.729751,-698.700653,4.831940],[-225.957779,-693.699310,-3.878593],[-223.244522,-686.807220,-2.185127],[-222.156814,-685.224334,2.898407],[-219.360245,-678.807892,1.783669],[-219.875870,-682.003540,10.081490],[-217.446060,-677.259430,12.512108],[-214.010330,-680.520782,32.798005],[-214.360184,-683.362030,38.883126],[-213.805984,-685.982330,43.954461],[-210.030838,-686.862579,49.983612],[-205.600967,-688.086517,55.996338],[-205.770584,-694.617065,60.107129],[-199.034805,-693.694488,65.099678],[-189.521988,-698.903717,76.470799],[-209.650345,-680.328918,40.589531],[-201.843826,-674.905212,38.796181],[-196.380264,-665.717498,24.919075],[-215.838455,-678.071899,20.584999],[-212.933243,-672.836456,13.834084],[-197.296097,-658.057525,9.387352],[-208.984146,-673.925354,23.997811],[-205.890762,-668.079101,16.264382],[-201.767654,-667.992401,22.283081],[-233.821426,-709.324371,-8.416374],[-234.822952,-710.692169,-17.166969],[-230.405472,-699.918670,-18.749000],[-231.748794,-702.817535,-23.096122],[-226.965164,-690.031952,-26.393013],[-225.724441,-687.320800,-29.801674],[-220.890030,-679.226501,-21.465767],[-218.560867,-675.160003,-30.866584],[-220.077774,-681.566925,-52.261619],[-221.170608,-685.195892,-54.846275],[-220.110611,-687.994720,-63.817817],[-218.565933,-685.263946,-66.695060],[-217.191238,-695.287689,-80.810707],[-217.947891,-700.619445,-85.373756],[-220.870743,-709.813507,-86.863578],[-224.412796,-729.766815,-103.293235],[-225.370499,-727.396148,-95.127342],[-227.517227,-736.383209,-100.370171],[-228.487625,-733.900543,-89.372947],[-231.147720,-738.922088,-85.746132],[-230.718155,-741.542999,-94.983880],[-234.717178,-742.865753,-75.973915],[-233.877090,-744.835968,-87.502403],[-235.214798,-744.916778,-79.832955],[-238.570816,-750.216583,-79.858299],[-242.827774,-757.018036,-80.282692],[-246.188919,-763.242950,-82.110069],[-247.969253,-766.328460,-80.006477],[-247.923782,-766.880829,-67.670372],[-247.707046,-767.001190,-62.242088],[-247.958633,-767.450470,-50.565483],[-246.945022,-767.287811,-44.034507],[-245.369766,-765.325409,-32.606742],[-247.157425,-767.498871,-23.232658],[-252.900467,-768.683868,-45.570167],[-253.915298,-770.728363,-44.774529],[-254.760513,-770.771393,-54.117759],[-255.555557,-769.958282,-64.909706],[-256.440384,-769.804901,-74.938194],[-257.123672,-770.808258,-81.955619],[-258.346512,-773.094818,-96.131523],[-258.377518,-779.093109,-97.184761],[-257.976761,-787.870147,-85.513221],[-252.996780,-795.048614,-85.027824],[-254.560562,-795.069854,-69.413810],[-229.566971,-795.172088,-103.856652],[-249.224625,-781.765655,-111.679649],[-247.357559,-776.214447,-114.255317],[-241.574783,-767.795501,-110.783409],[-234.962479,-767.829925,-119.845634],[-231.546524,-767.829925,-124.537635],[-227.746048,-768.042389,-130.563179],[-222.516861,-768.041229,-137.951225],[-218.111709,-765.356170,-142.660087],[-217.250564,-767.194488,-145.315331],[-212.199051,-768.384308,-154.502372],[-207.545792,-775.400665,-170.344413],[-203.190323,-786.189056,-176.904900],[-161.549454,-795.123565,-162.201286],[-169.141922,-795.028412,-221.543388],[-188.185989,-795.062530,-195.754936],[-182.682388,-794.957611,-202.932640],[-182.271927,-789.114532,-204.296441],[-188.719986,-782.040924,-196.614617],[-176.115188,-794.971527,-211.771142],[-219.078384,-795.075287,-37.071861],[-173.496231,-795.092560,-32.250175],[-124.601272,-795.078827,-36.992424],[-200.770401,-795.149078,-79.434654],[-66.373917,-795.048004,-74.969383],[-186.263077,-795.143951,-108.604484],[-234.299942,-782.456695,-132.993858],[-244.597305,-782.616729,-118.423180],[-240.960586,-777.221100,-123.274361],[-245.451187,-786.351959,-117.078910],[-244.912735,-795.092315,-117.182503],[-239.973648,-795.105499,-124.246331],[-231.595413,-795.059845,-127.905647],[-224.125748,-795.036407,-140.261222],[-213.527115,-795.143280,-123.784721],[-242.866043,-795.098907,-71.581810],[-255.569290,-794.956695,-57.366279],[-256.496719,-787.372528,-67.554374],[-255.928360,-773.397857,-65.614128],[-255.107437,-781.277862,-53.572350],[-254.259109,-788.277313,-42.770790],[-255.008194,-794.868927,-50.526939],[-242.073013,-794.993194,-35.251640],[-257.334732,-778.554840,-79.640922],[-257.375992,-795.012359,-77.096047],[-257.890762,-795.145660,-84.432075],[-258.280777,-789.083038,-96.800819],[-258.340042,-794.975006,-91.400047],[-256.583450,-795.110382,-67.793052],[-254.649856,-768.542144,-67.655845],[-249.874161,-768.022979,-39.782981],[-242.537613,-756.263885,-72.599342],[-239.603165,-750.577667,-71.720131],[-239.514175,-748.905365,-63.929268],[-239.431229,-747.111847,-56.366417],[-235.898941,-738.615265,-51.564903],[-233.388260,-732.410064,-53.307777],[-231.257034,-723.977935,-51.791832],[-233.855179,-725.057586,-42.810798],[-233.258316,-715.532501,-35.444649],[-237.154312,-738.865020,-45.455909],[-241.551529,-752.339508,-52.262718],[-239.854263,-746.665619,-46.129448],[-242.596695,-753.561920,-41.795768],[-241.088150,-747.587433,-39.181511],[-244.447647,-760.105011,-36.587623],[-239.833572,-740.603607,-34.592918],[-242.454117,-748.524749,-30.489082],[-229.857864,-728.916839,-71.225669],[-227.672867,-726.515228,-80.146873],[-225.769363,-719.409576,-75.457557],[-229.479019,-725.464630,-64.496482],[-229.427994,-722.070831,-58.971336],[-232.753189,-733.430694,-59.618980],[-232.008438,-734.715606,-69.584496],[-236.394424,-743.760772,-67.467735],[-235.177017,-738.874786,-57.846183],[-235.953750,-748.860321,-91.951225],[-234.840164,-750.204742,-102.067116],[-243.470596,-761.537628,-92.986413],[-247.795364,-767.202545,-88.041984],[-247.098953,-768.498504,-98.878013],[-255.677627,-769.128570,-94.677314],[-257.510879,-769.862091,-89.763572],[-252.255936,-768.528900,-85.040016],[-224.046707,-717.439422,-82.924415],[-218.873672,-706.760742,-92.008995],[-216.419388,-704.471710,-98.483116],[-222.033707,-719.946563,-98.969474],[-220.089859,-719.499908,-105.232231],[-225.940262,-738.850067,-109.646598],[-221.055191,-738.821319,-119.943687],[-221.159622,-745.549957,-126.563011],[-206.980911,-740.874359,-149.151756],[-198.771805,-731.815765,-155.209251],[-194.008255,-711.466034,-145.551292],[-191.038101,-714.409515,-151.284020],[-172.259781,-708.395599,-160.963189],[-158.404678,-707.414093,-169.580376],[-148.488052,-700.045288,-174.299035],[-153.218704,-696.585724,-172.269279],[-157.559158,-688.833404,-171.057396],[-153.216019,-686.657196,-173.072808],[-148.424332,-683.050628,-174.933831],[-147.356399,-669.910309,-173.204887],[-142.783157,-680.224823,-177.124260],[-154.325210,-658.594909,-167.797081],[-148.546951,-649.604126,-168.097466],[-138.752334,-654.448883,-174.650444],[-141.426529,-641.401947,-169.904228],[-130.107071,-650.970855,-179.088371],[-121.198624,-651.418548,-184.086601],[-115.721939,-630.887756,-182.077538],[-120.550796,-618.300323,-175.291343],[-114.831985,-614.503936,-176.063316],[-106.757584,-615.813049,-179.866784],[-101.279800,-613.907196,-181.483635],[-94.995499,-603.021057,-179.352409],[-80.408707,-597.682708,-180.179039],[-70.801346,-608.697845,-186.106652],[-47.094131,-612.825378,-190.164574],[-39.615738,-614.301208,-192.351524],[-34.840103,-602.323333,-188.347831],[-33.840042,-590.181549,-183.262504],[-28.659744,-586.210754,-183.312736],[-10.046402,-590.281677,-188.391471],[-6.111099,-594.102508,-190.140861],[8.334702,-595.231598,-190.969169],[20.119492,-603.936584,-194.293267],[20.938767,-616.054840,-200.591423],[16.701035,-616.768676,-201.751701],[20.602585,-628.279419,-205.821312],[26.249069,-630.251220,-204.910331],[41.451096,-630.932495,-199.241630],[40.029099,-621.102630,-196.318261],[46.012314,-609.788604,-187.957115],[42.972336,-597.693115,-183.703361],[49.653000,-585.611084,-177.844230],[52.832993,-578.846100,-179.867211],[57.661606,-578.212677,-173.350425],[58.689011,-580.968719,-169.471093],[60.369919,-592.198181,-162.476005],[60.156174,-596.453674,-165.685814],[62.297165,-600.517791,-164.736199],[69.275803,-608.926666,-158.395013],[67.341782,-609.470184,-163.904075],[72.491013,-620.325897,-162.547234],[72.444382,-615.373199,-156.555412],[77.096115,-628.615478,-155.914666],[57.673447,-586.047790,-169.237968],[54.978195,-587.515503,-172.998894],[55.235886,-581.369384,-174.067223],[53.726791,-592.064117,-174.271171],[49.134628,-591.282165,-177.721702],[50.861740,-609.339416,-184.694511],[51.470993,-596.139221,-176.900933],[55.332077,-604.584167,-178.107994],[63.527390,-607.923248,-169.204766],[59.874375,-601.188080,-169.812980],[60.084519,-617.393799,-180.249717],[71.316330,-627.388672,-170.007682],[73.611435,-637.161895,-171.811454],[65.017258,-617.792999,-174.605247],[68.658066,-615.709564,-167.157920],[55.455551,-614.398437,-183.267753],[54.403671,-597.878174,-175.262260],[57.361740,-594.706146,-170.185752],[33.029648,-628.542022,-201.949669],[36.401596,-617.632507,-196.438163],[38.695908,-607.438415,-190.564262],[33.853256,-596.780548,-187.740074],[33.490585,-592.547760,-187.005546],[31.210495,-587.566620,-187.550956],[23.291428,-586.124054,-187.924583],[10.301499,-576.239715,-187.085716],[-1.396988,-567.104004,-187.318871],[-12.215164,-561.607208,-185.841698],[5.740219,-559.233459,-198.559411],[4.260300,-565.149231,-191.168969],[8.032211,-571.058014,-188.256736],[20.952561,-574.067199,-190.371483],[17.743454,-578.918182,-187.571526],[26.846665,-580.694122,-188.823510],[21.454086,-571.229736,-193.250878],[27.354050,-571.338348,-194.876670],[28.073715,-573.165497,-194.476799],[32.511887,-578.056915,-191.019677],[32.915268,-575.235687,-193.810752],[10.385361,-566.578796,-192.483635],[27.464279,-591.425232,-188.212791],[39.783981,-594.636413,-184.403892],[41.254929,-591.643066,-183.300956],[43.210129,-588.260070,-181.895897],[36.940354,-587.660400,-185.682366],[40.506577,-583.608123,-185.423516],[47.961289,-582.807129,-181.042840],[33.315781,-582.530517,-188.383018],[49.312058,-572.848236,-196.816552],[49.595688,-565.038482,-193.789177],[57.141281,-565.199951,-200.880944],[70.207810,-562.511474,-197.107598],[79.960983,-561.452453,-197.318535],[85.533981,-563.788910,-199.073754],[84.853439,-573.867248,-203.873771],[87.238693,-575.438049,-202.140342],[95.704453,-574.418487,-203.903008],[104.635422,-572.529876,-198.657402],[101.720200,-569.577636,-191.551811],[111.127304,-567.028717,-192.121086],[100.030747,-563.265136,-200.225608],[102.700668,-558.605224,-200.954643],[112.624497,-540.709472,-201.239525],[122.334030,-538.093139,-197.952630],[129.501389,-536.343506,-194.339226],[133.940659,-542.039367,-191.491845],[122.255600,-543.197082,-198.405967],[124.494858,-548.328369,-197.185967],[121.688950,-555.862762,-199.237510],[116.630478,-567.891937,-198.354851],[110.746506,-565.818084,-199.276787],[118.289169,-551.829681,-200.043602],[113.599655,-546.837585,-201.736503],[117.025070,-563.166748,-199.513756],[105.859909,-564.005584,-200.454949],[107.105148,-560.060882,-202.002770],[110.207504,-559.439422,-202.300468],[114.896591,-558.154480,-201.625085],[108.381516,-569.615966,-192.392541],[107.082138,-571.941009,-200.222648],[111.687119,-571.096466,-198.795678],[101.160996,-567.502838,-200.657859],[109.491928,-570.240265,-200.049186],[110.056870,-571.702148,-196.660087],[90.054611,-575.012115,-204.509422],[104.150986,-571.935211,-201.463920],[66.397690,-571.439453,-203.629204],[61.937180,-572.016296,-200.333183],[53.850083,-572.757995,-199.010308],[52.579819,-576.335022,-189.933312],[72.137985,-566.834900,-202.017602],[74.235214,-572.249420,-205.152549],[79.401291,-574.786499,-202.857353],[75.244492,-573.297210,-195.973656],[71.542221,-572.250030,-190.500512],[75.172409,-568.655212,-179.462060],[78.239182,-562.220947,-170.909111],[75.618637,-562.414642,-167.658501],[69.694321,-569.078857,-172.395257],[71.421311,-569.210785,-176.896722],[61.325913,-573.123108,-180.556145],[58.891159,-574.637207,-177.736381],[55.481430,-576.633300,-183.032615],[67.064560,-571.565185,-182.630485],[63.295761,-573.519409,-191.530296],[75.595505,-570.114105,-184.260276],[78.112045,-566.345276,-200.737632],[83.934311,-571.058380,-189.725701],[78.537644,-571.804718,-190.360070],[94.599045,-568.653503,-188.313774],[93.267868,-574.919403,-201.209861],[97.508164,-566.170685,-184.913384],[95.842514,-554.973999,-173.285393],[78.126083,-556.956909,-162.446770],[78.051010,-555.032806,-150.038963],[75.470200,-558.699127,-159.288353],[91.263229,-543.376007,-151.575219],[94.654953,-542.026214,-156.518882],[101.726791,-539.906158,-153.287895],[100.678391,-540.206024,-158.443688],[112.343857,-539.298828,-160.330193],[113.367600,-537.413055,-155.698906],[107.405197,-538.774902,-155.974358],[117.152023,-534.610016,-149.599723],[124.691330,-529.898498,-145.787834],[135.514206,-523.513580,-140.857232],[135.594650,-523.913452,-135.666679],[138.973435,-520.819854,-126.271034],[137.902146,-516.636352,-123.669380],[137.315842,-524.927612,-121.367302],[134.507431,-530.620331,-114.925621],[82.252976,-555.294983,-134.419365],[76.105454,-561.259216,-133.214241],[80.381455,-554.242645,-140.993950],[75.539597,-559.732391,-145.908104],[71.716538,-565.756134,-141.685296],[73.347641,-562.211395,-150.366692],[69.381943,-569.757080,-145.131188],[69.441147,-571.064209,-138.059319],[67.396408,-578.273895,-139.622185],[69.855087,-572.412414,-131.212364],[68.439743,-580.264465,-131.409661],[69.496140,-584.325134,-118.051110],[71.089157,-593.038452,-115.579811],[72.445847,-606.435302,-120.042228],[73.723679,-606.946838,-111.871788],[74.923569,-613.552551,-114.110863],[74.888046,-611.011505,-106.887520],[76.046738,-615.155182,-102.398034],[71.196213,-567.759277,-134.867149],[70.781296,-571.527679,-124.924034],[70.932846,-572.529571,-113.988716],[69.825180,-580.046173,-116.481086],[71.212387,-581.951751,-113.383523],[72.973129,-573.374481,-109.892708],[69.103378,-577.097992,-128.159447],[72.698227,-593.027069,-112.764275],[76.125412,-594.108673,-109.452736],[74.895554,-589.372101,-110.482185],[72.645920,-564.028259,-164.655144],[85.381271,-561.289184,-174.282005],[82.893540,-565.651947,-179.048791],[80.660874,-568.609558,-183.302604],[90.262436,-563.595154,-179.092155],[67.611984,-570.280517,-166.351159],[61.797470,-579.890442,-160.076348],[62.845566,-574.289856,-168.103387],[69.003647,-568.879852,-162.377555],[69.941879,-567.556671,-152.591363],[66.258591,-574.770782,-157.002831],[65.413681,-577.866485,-152.091973],[63.902817,-579.919006,-154.485710],[59.592148,-584.959686,-163.973412],[67.669846,-572.471710,-150.933159],[63.106491,-586.229248,-152.622551],[66.744675,-571.087738,-173.491020],[60.159104,-575.331726,-173.124932],[60.874008,-576.909271,-167.842155],[82.336166,-550.068481,-148.500268],[81.291245,-551.762695,-153.536156],[88.041245,-545.826599,-155.226554],[93.367111,-548.315185,-166.182091],[88.057602,-550.607788,-163.951501],[112.419113,-561.358337,-189.226890],[124.066696,-562.384765,-194.885429],[125.887253,-558.949463,-196.666924],[129.782333,-553.147583,-195.051902],[131.318039,-556.331482,-192.556420],[132.405502,-555.191253,-191.022880],[137.143051,-548.169586,-180.897911],[146.920456,-541.499054,-176.840629],[149.362412,-533.721222,-169.174614],[151.825974,-517.608276,-162.144371],[143.781845,-504.856628,-181.458794],[139.104782,-503.808960,-186.727441],[136.693344,-498.880859,-189.628410],[131.345200,-504.597809,-194.210961],[126.369919,-496.430511,-197.056205],[128.082199,-488.097015,-197.397942],[135.572006,-491.731750,-192.653495],[139.737900,-497.898163,-187.647789],[131.104782,-496.026855,-194.523034],[130.072067,-491.114593,-195.984399],[122.964768,-554.952362,-188.094322],[114.220505,-556.013824,-185.806541],[119.848801,-560.927704,-191.668937],[101.648300,-555.070556,-178.148552],[105.743698,-552.207916,-179.705529],[97.232834,-560.555908,-178.321891],[107.048569,-559.211578,-183.966484],[105.723618,-565.343658,-187.890953],[107.075302,-542.671203,-165.376060],[115.627365,-540.455200,-163.557579],[114.295456,-544.340179,-170.161369],[126.312119,-537.243896,-160.679741],[129.498520,-543.896942,-172.210929],[137.213364,-541.275818,-169.141533],[142.078049,-542.085296,-171.493278],[146.229660,-541.697998,-172.505485],[148.513535,-536.543060,-167.326592],[147.478500,-535.948486,-163.274803],[144.361923,-534.025360,-159.008293],[145.271530,-529.641479,-152.249596],[137.363876,-526.939026,-147.382286],[131.753586,-526.422912,-143.944847],[138.626206,-520.472778,-137.598350],[140.257980,-519.596527,-139.195153],[152.650437,-514.543365,-141.186271],[149.827805,-519.372070,-140.131218],[149.462814,-523.706268,-148.554466],[146.899643,-526.715606,-148.800193],[136.516892,-524.617981,-144.435600],[140.907517,-521.929321,-142.882470],[143.702500,-525.486938,-145.322472],[147.988815,-521.979004,-141.605767],[140.263413,-511.566620,-124.918679],[150.693894,-509.483093,-126.759712],[146.123093,-512.247467,-129.674264],[143.612412,-516.700348,-136.562492],[149.802292,-516.731781,-136.151573],[151.619187,-514.456604,-135.075859],[148.341782,-498.835846,-139.374657],[145.948837,-497.484008,-140.833946],[144.957504,-494.861419,-148.933922],[144.327377,-487.491943,-163.802513],[142.315903,-483.320007,-169.345451],[134.603378,-475.388275,-175.588646],[133.384689,-472.892212,-178.694847],[128.871262,-469.830322,-178.199547],[126.842941,-465.500244,-183.399377],[123.567062,-460.933532,-179.759881],[132.243027,-443.651306,-170.221977],[130.616989,-439.598907,-177.107902],[125.543991,-447.492675,-188.515831],[126.786484,-442.590133,-190.517174],[126.431687,-453.712982,-198.338981],[129.355637,-460.668792,-198.745476],[126.670761,-453.749511,-200.502068],[128.241196,-459.288604,-201.932426],[125.690903,-449.098816,-193.292564],[140.594650,-479.679626,-173.548545],[130.872299,-487.898956,-156.170525],[127.067612,-483.072265,-153.802636],[128.689133,-478.573791,-150.447319],[127.656662,-469.512420,-159.470666],[130.753769,-463.487732,-160.478966],[126.143845,-473.926086,-162.003746],[125.443649,-471.301727,-165.771386],[127.856796,-477.234588,-163.542289],[133.252792,-474.154388,-147.403435],[134.280869,-475.130218,-140.195366],[130.410751,-473.370208,-134.573937],[134.422470,-471.401245,-138.748376],[134.299851,-480.845215,-167.998161],[130.157456,-478.493499,-166.019645],[144.547592,-509.390564,-124.337577],[140.616135,-517.844421,-132.427787],[141.390610,-514.186767,-129.967033],[136.136704,-511.788025,-119.335609],[127.580246,-506.321594,-106.112983],[131.705307,-505.222107,-107.848732],[129.644882,-507.703460,-110.491661],[136.556381,-506.699585,-115.527900],[136.777512,-510.237274,-119.012336],[124.676987,-510.175232,-104.501976],[142.006943,-506.421631,-119.185723],[131.464707,-500.449920,-114.437065],[125.312729,-502.284485,-116.030616],[125.960922,-496.257324,-120.190330],[125.549973,-491.320923,-122.919198],[123.643845,-485.248260,-126.242775],[128.966599,-464.501220,-138.497704],[129.199509,-455.621765,-142.982353],[131.805405,-444.401275,-150.452691],[134.071945,-439.513412,-155.383782],[132.582443,-431.530822,-159.904717],[134.270310,-435.469650,-161.106071],[136.208176,-446.021484,-161.177453],[136.853378,-449.842941,-154.683739],[135.474106,-445.053039,-153.732659],[134.867111,-447.173050,-163.921074],[129.068771,-449.042373,-169.207421],[126.351730,-456.611938,-170.117515],[123.750534,-454.639160,-180.786767],[124.386643,-464.989227,-170.260856],[127.066879,-448.813690,-175.381463],[127.675644,-462.604614,-165.105034],[133.578903,-464.758423,-140.801537],[134.746567,-460.726745,-143.866294],[136.706345,-454.405761,-155.784752],[135.581711,-454.408874,-158.590019],[125.749680,-467.145294,-165.907220],[135.145371,-461.221710,-155.422478],[132.523789,-469.252319,-153.970268],[135.169541,-467.542511,-148.888084],[136.887619,-456.071075,-152.799919],[135.257492,-469.015320,-142.175865],[130.155136,-454.256347,-164.656426],[136.431870,-457.216552,-148.418846],[132.849350,-454.877136,-144.978660],[134.723801,-447.838852,-150.684350],[122.888168,-466.758545,-136.654015],[112.255356,-458.714996,-141.580986],[114.607651,-448.471435,-146.347862],[126.444687,-443.994766,-149.096885],[128.989487,-440.156814,-151.770775],[122.272934,-441.330581,-150.320793],[107.334152,-452.511139,-144.420372],[117.888962,-458.924865,-140.656547],[131.361984,-500.406097,-126.753075],[129.203659,-499.173431,-128.246955],[128.585251,-494.821777,-133.936042],[127.658798,-492.631469,-140.746911],[131.194809,-481.755188,-142.959832],[130.621811,-481.164734,-129.370247],[125.822495,-474.724853,-132.587089],[128.782150,-485.537750,-126.232017],[130.492600,-489.082397,-124.899864],[129.219650,-497.026153,-127.897301],[127.869919,-499.173919,-120.525216],[128.375168,-493.373718,-122.096382],[130.749619,-492.345123,-125.060707],[139.092392,-501.708526,-115.423042],[141.792526,-500.918579,-120.519996],[140.062973,-499.374176,-124.187461],[139.396408,-499.184631,-130.307426],[129.652756,-500.474548,-118.419304],[134.780014,-499.885498,-115.996331],[136.634689,-504.048462,-111.646278],[131.019028,-502.641296,-109.908456],[135.216293,-502.248993,-111.549659],[124.441574,-512.038055,-108.429512],[130.836350,-512.273040,-113.991952],[120.758286,-517.383209,-106.269828],[126.472397,-513.541137,-110.395591],[134.284226,-516.818481,-117.618995],[134.906845,-531.432403,-153.313470],[133.522324,-535.969391,-160.114373],[123.932907,-535.267212,-156.390861],[151.021469,-525.440185,-159.188438],[148.230759,-529.588012,-153.294609],[154.418381,-511.868957,-146.273643],[153.081284,-505.319336,-136.124077],[155.557114,-505.079956,-146.471305],[155.619003,-501.952118,-148.640557],[156.182419,-507.264068,-151.161216],[153.195664,-513.101440,-162.057183],[149.173081,-515.200958,-168.839927],[147.926987,-509.558441,-172.800346],[147.544968,-505.227813,-176.202965],[152.200729,-501.691833,-138.089196],[153.348740,-499.826538,-144.631584],[151.232529,-493.902496,-154.734307],[147.160874,-487.203125,-165.574852],[156.736008,-493.205017,-168.180412],[156.556992,-496.519531,-159.821099],[157.292282,-503.257995,-159.109275],[157.036728,-501.409820,-156.458854],[155.233872,-498.805847,-151.562340],[152.749008,-492.253753,-160.525566],[153.914597,-497.001861,-151.819328],[149.298020,-497.059021,-145.380882],[146.432297,-491.582885,-156.840477],[144.652634,-478.758606,-179.488975],[147.686875,-479.889892,-183.185325],[150.930832,-486.272064,-182.080468],[147.289169,-486.889160,-186.874566],[145.330246,-493.899353,-186.060325],[142.083847,-490.204315,-190.917289],[152.674423,-504.692932,-170.887230],[157.931564,-497.372680,-166.940635],[156.171677,-502.141113,-168.393364],[150.789108,-511.257263,-168.380363],[154.932846,-491.293365,-167.251670],[151.412521,-485.105652,-177.099113],[149.751938,-484.872009,-173.521782],[152.172775,-486.401733,-179.094413],[147.985886,-497.554077,-180.785821],[131.761337,-465.182098,-195.623252],[127.710129,-460.842071,-193.217309],[124.455551,-460.872314,-184.867088],[123.741562,-454.033813,-189.108207],[132.112106,-467.584442,-189.246879],[139.215195,-475.179565,-180.080345],[132.627060,-465.837707,-199.289482],[143.000107,-476.121643,-191.223289],[137.557724,-470.663330,-191.794181],[137.779160,-471.087097,-195.614860],[133.006516,-468.373443,-200.688958],[132.829270,-474.151916,-200.138573],[130.491440,-467.135406,-202.223106],[128.962082,-474.793792,-201.076928],[123.111862,-479.999115,-200.744835],[113.397080,-480.836487,-201.764001],[105.963913,-477.881897,-200.564201],[103.331406,-486.135681,-198.799766],[96.354355,-481.798584,-196.687432],[89.418015,-481.520477,-193.500389],[93.444565,-490.579498,-194.730340],[93.596970,-500.136718,-194.950615],[111.614304,-502.382873,-199.974876],[114.499741,-504.585327,-200.197502],[122.360642,-502.767029,-198.231377],[125.152390,-507.445892,-197.474968],[121.561081,-520.450470,-199.130699],[122.098618,-528.407806,-198.951561],[117.316757,-530.210113,-200.712853],[117.488083,-536.373230,-199.856315],[110.086777,-516.806122,-201.119285],[109.208786,-510.498596,-200.418450],[111.810288,-533.252990,-201.889396],[107.273117,-527.986511,-202.036675],[104.928818,-523.460296,-201.588646],[99.734299,-522.042541,-200.018486],[92.353928,-518.096588,-196.767143],[90.471420,-505.967285,-194.476554],[84.161362,-498.581848,-191.208397],[78.323288,-515.519622,-190.058616],[71.678330,-518.782470,-187.324424],[61.378464,-515.369140,-182.482902],[54.823227,-520.780487,-182.823601],[41.968491,-519.375793,-179.843895],[33.349472,-514.446991,-177.008263],[29.940598,-510.586792,-175.792321],[26.717392,-512.656494,-176.310631],[18.972336,-507.369323,-175.044181],[12.673264,-506.936065,-175.378227],[19.862351,-502.543457,-173.438743],[12.627487,-495.546997,-173.650170],[7.227951,-489.937347,-174.212455],[-9.303177,-467.870514,-177.661705],[-10.203445,-465.923919,-181.277519],[-12.243606,-452.335693,-173.901847],[-21.939834,-419.474548,-171.591240],[-16.881363,-433.103058,-169.693901],[-20.274185,-420.391906,-168.126518],[-14.876236,-436.474304,-167.542442],[-13.163650,-429.156646,-164.008110],[-7.593704,-447.401535,-164.271142],[-10.095840,-436.525253,-163.008232],[-9.517349,-451.021530,-167.405540],[-11.597427,-450.153457,-170.077659],[-13.315567,-451.102951,-179.851951],[-16.512833,-437.107773,-180.376977],[-11.038650,-454.248626,-185.875938],[-6.829971,-452.010040,-195.163353],[-6.889053,-464.599334,-191.986962],[-6.484146,-474.206939,-193.177972],[-9.136612,-473.960846,-182.993248],[-7.518082,-483.830780,-185.073937],[-6.763809,-480.901031,-180.234124],[-0.525162,-490.093719,-178.367576],[-12.179703,-454.546722,-182.856254],[4.083298,-476.892822,-169.880973],[-3.286941,-485.381103,-178.634239],[-5.502640,-467.409576,-171.028556],[-7.800552,-462.543670,-170.837700],[1.099228,-485.539978,-175.384147],[-0.794327,-467.062927,-167.961692],[-4.603348,-460.455352,-166.939049],[-2.441727,-476.534301,-173.423424],[3.480454,-493.659485,-176.427483],[1.346604,-499.379486,-179.162804],[-3.061905,-496.975158,-184.545982],[-8.014786,-481.357849,-188.370506],[-6.960586,-484.704864,-190.794823],[-5.201553,-472.705597,-198.809562],[-5.440750,-484.846557,-199.623711],[-5.971939,-462.424652,-195.681968],[-4.148209,-468.733551,-202.233697],[9.662521,-510.867401,-177.477685],[5.629440,-510.693512,-180.742424],[12.384445,-523.569519,-181.834190],[8.361374,-519.860199,-183.695336],[6.136398,-517.356811,-184.666894],[0.496140,-508.200592,-186.805047],[0.445053,-503.458069,-182.583763],[20.824326,-498.429931,-171.288688],[99.104233,-510.505310,-197.440666],[107.700913,-502.968628,-198.892449],[133.965561,-534.567230,-191.332054],[145.435104,-522.806701,-178.508049],[143.477707,-510.272155,-180.120781],[135.826462,-505.953003,-190.030449],[136.084519,-513.963623,-188.256584],[129.684860,-516.029724,-194.033074],[130.686020,-527.811798,-193.213462],[129.049301,-532.295501,-194.552086],[125.315292,-515.751678,-197.123924],[143.565964,-514.873687,-179.542472],[142.713364,-520.885315,-181.426719],[137.032578,-527.964630,-188.005973],[138.039841,-520.872924,-186.008018],[139.775559,-539.761566,-187.492668],[144.402817,-542.361511,-182.926841],[147.638474,-533.726196,-177.715355],[147.919418,-527.641052,-175.189018],[149.073959,-521.107361,-169.058465],[150.662338,-523.656128,-164.584190],[149.298935,-530.180603,-171.567894],[141.783005,-547.128418,-186.593437],[136.525131,-551.330505,-190.631371],[142.007187,-548.135772,-183.251549],[143.979843,-528.867096,-182.858941],[141.862900,-533.596924,-185.642449],[120.790390,-514.070129,-198.902519],[116.481186,-525.450836,-200.784356],[102.455795,-493.013488,-197.732353],[109.363999,-496.036590,-199.976005],[114.360092,-498.284362,-200.562370],[120.535568,-487.094909,-199.973442],[116.589646,-484.764862,-201.106834],[126.942917,-468.250732,-202.710686],[120.937485,-466.039337,-203.082513],[114.512680,-449.655548,-204.605888],[103.427963,-450.730117,-207.113091],[109.229660,-440.907531,-205.365165],[115.967087,-438.749252,-203.911705],[119.398544,-439.434570,-201.974328],[120.646835,-436.741378,-198.816398],[123.475815,-432.618515,-192.390251],[126.020737,-438.342056,-191.122521],[134.532089,-440.549698,-168.610253],[128.200607,-442.481933,-181.517022],[125.282211,-443.319809,-196.639428],[112.601853,-468.638794,-204.422355],[100.719101,-466.651062,-201.589409],[71.356430,-456.381317,-192.451928],[76.995346,-468.344757,-191.058404],[61.786850,-466.795379,-179.919488],[56.453354,-457.739471,-180.371879],[57.749985,-465.125671,-177.841088],[47.143662,-461.355346,-173.599511],[54.925522,-469.658661,-175.115806],[29.965012,-471.518951,-166.440300],[21.440903,-467.520630,-164.771751],[22.993881,-483.512848,-166.406426],[14.322678,-470.077728,-165.190239],[35.208603,-471.010345,-168.800712],[120.920395,-472.182647,-202.520134],[114.533066,-474.160400,-203.138573],[109.794479,-472.608215,-202.877891],[97.820419,-473.053161,-198.703117],[81.398117,-479.886322,-190.372277],[83.038925,-486.987579,-190.558159],[85.563889,-493.386383,-191.614433],[138.751938,-486.542267,-194.233665],[131.822006,-481.969268,-198.304313],[136.895981,-474.807098,-197.822349],[142.696762,-482.649139,-192.469139],[141.781479,-477.028442,-193.285667],[143.656296,-475.872497,-186.917656],[146.930649,-481.638153,-187.370262],[148.372116,-485.251709,-170.479789],[157.267868,-495.024810,-171.598748],[156.031479,-498.264312,-172.561119],[153.265244,-492.180267,-178.491966],[156.192368,-491.775512,-171.920616],[126.955307,-559.997345,-194.392997],[118.503525,-546.871002,-175.251518],[126.308640,-552.411621,-185.315055],[108.655686,-549.929199,-177.939872],[114.308762,-552.321899,-182.734734],[103.140305,-547.095916,-171.501579],[99.840988,-543.478271,-164.935936],[83.279526,-551.550995,-159.617912],[80.374680,-556.852356,-165.315879],[83.864914,-556.786804,-168.527122],[101.212998,-571.902404,-195.758935],[100.629929,-574.283355,-201.570732],[79.837204,-573.718780,-204.232353],[56.544541,-568.971466,-202.279381],[59.009628,-570.466247,-202.362236],[49.052414,-575.334228,-195.201652],[38.951157,-580.646698,-188.488548],[33.630600,-602.946808,-190.575157],[26.543991,-595.442352,-189.691398],[26.540634,-621.177887,-201.430412],[27.602097,-606.140320,-194.054679],[17.990219,-593.864654,-189.972129],[-0.968338,-587.243591,-187.591271],[11.217270,-588.467254,-188.058250],[-8.190750,-578.473114,-185.460106],[1.865769,-572.250366,-186.423973],[-10.300491,-566.206634,-184.989402],[-9.197098,-570.985717,-184.810723],[0.005966,-575.607971,-185.965995],[19.069931,-589.143524,-188.274681],[-43.278152,-600.099334,-185.387321],[-40.511185,-594.076873,-183.244133],[-53.189102,-595.270660,-180.900718],[-58.805984,-587.090088,-175.502983],[-54.371231,-572.816528,-171.151696],[-67.056045,-570.093261,-168.683831],[-74.676041,-557.291320,-165.833946],[-81.943375,-554.034485,-162.950127],[-84.791885,-554.590393,-160.036767],[-94.750992,-549.590149,-159.278648],[-101.947281,-544.920898,-164.997002],[-103.152420,-541.106292,-172.877189],[-96.311722,-543.593933,-172.385246],[-98.617142,-537.590210,-182.433372],[-91.932449,-540.266876,-182.229424],[-88.648086,-541.859527,-189.322166],[-84.700455,-547.583465,-182.563926],[-65.172134,-564.670715,-168.773063],[-59.352371,-565.763580,-170.032829],[-81.917740,-551.477539,-168.716118],[-86.461136,-548.440796,-170.994896],[-91.853775,-547.864837,-167.095695],[-88.667740,-544.104767,-177.174309],[-87.528580,-552.232299,-161.167289],[-69.837967,-557.025177,-170.936150],[-77.466019,-553.820800,-167.090965],[-81.246048,-550.303405,-176.302972],[-89.885147,-540.824279,-184.989647],[-70.988479,-619.889465,-191.109001],[-79.474502,-626.510437,-192.835289],[-87.572098,-636.420257,-195.400780],[-75.321976,-645.782318,-202.872398],[-82.238418,-646.695617,-200.760308],[-87.546402,-660.167633,-203.235984],[-90.920303,-656.346771,-200.818840],[-104.103836,-661.273559,-195.597648],[-108.154312,-657.376556,-192.532341],[-102.707901,-671.485656,-198.841973],[-96.806229,-683.010040,-205.980369],[-92.697159,-674.414215,-205.161675],[-97.107254,-666.979370,-200.428215],[-98.184585,-662.470764,-198.819572],[-88.442886,-646.824310,-198.768029],[-103.172562,-640.509704,-191.849358],[-108.583694,-631.681518,-186.166587],[-108.186905,-624.672607,-183.426750],[-59.293655,-614.145874,-189.418297],[-62.102798,-624.548980,-194.074333],[-49.144119,-624.061889,-195.113029],[-43.972610,-625.126281,-196.529717],[-35.663040,-634.684875,-202.858390],[-22.324112,-638.415497,-207.162438],[-7.890213,-622.551635,-204.505790],[-13.484451,-597.706909,-191.118310],[-0.544510,-597.963195,-192.058677],[-12.995743,-604.492737,-194.443321],[4.309189,-612.904205,-200.453728],[5.504562,-599.746490,-193.073478],[13.379257,-600.937225,-193.479333],[10.975083,-613.484985,-200.688743],[-0.067520,-616.616485,-202.210351],[0.936569,-627.641296,-207.357444],[3.121079,-632.454254,-208.954124],[7.610581,-640.424408,-210.907096],[1.724716,-645.166351,-212.861199],[-9.761429,-639.862274,-209.827934],[-19.488785,-645.236358,-210.015922],[-35.816299,-647.429687,-208.658348],[-49.178726,-643.635009,-205.755944],[-70.203384,-634.964813,-199.582878],[-5.993667,-629.593109,-207.676110],[-11.995132,-633.066864,-207.940055],[-1.456436,-635.297393,-209.593316],[-8.218765,-613.270019,-199.730644],[-13.755447,-615.969696,-200.308372],[-70.108353,-625.519714,-194.109887],[-48.341080,-618.016906,-192.523461],[-36.064224,-625.901397,-198.778556],[-24.495926,-632.567291,-204.844078],[-17.307449,-626.301483,-204.536675],[-19.821060,-614.904785,-198.335289],[-121.293960,-626.214050,-177.267570],[-134.143570,-630.310028,-170.655021],[-126.245621,-622.404876,-173.512047],[-143.696304,-634.186065,-167.421135],[-143.728653,-628.242462,-164.933708],[-151.640091,-637.675323,-163.821373],[-153.043472,-628.104217,-158.543998],[-170.457901,-643.350586,-153.721856],[-175.427200,-650.640869,-153.386773],[-169.213699,-654.864532,-159.631280],[-165.705154,-653.448883,-161.172203],[-157.283340,-654.880768,-165.391595],[-181.045059,-660.352630,-152.980523],[-152.658768,-642.689850,-164.755852],[-137.565140,-637.513672,-171.065361],[-130.107986,-634.604980,-173.976524],[-134.280105,-643.480499,-174.592217],[-161.135940,-640.899078,-159.147453],[-146.185196,-657.404205,-171.209892],[-142.932144,-665.921722,-174.317253],[-142.916397,-698.144867,-177.434288],[-164.840958,-711.109893,-167.203025],[-163.117813,-716.366424,-173.002525],[-176.319656,-717.638275,-164.973442],[-183.697220,-718.885101,-161.270959],[-187.173294,-713.637054,-154.410485],[-180.402237,-712.617462,-158.219353],[-189.638321,-718.703277,-156.354241],[-186.996719,-722.550811,-162.648705],[-193.693008,-731.874237,-162.127952],[-188.683792,-730.986358,-167.320855],[-183.512405,-739.437103,-178.565055],[-161.964310,-727.520965,-187.224540],[-141.202530,-726.393829,-198.978020],[-148.960220,-724.922943,-191.751458],[-125.757828,-725.202606,-207.709434],[-125.712967,-728.836456,-211.700706],[-110.228165,-720.169830,-211.840081],[-107.624161,-702.104950,-205.207696],[-84.623611,-697.567535,-214.481437],[-77.305679,-690.117889,-214.814324],[-92.176895,-684.880035,-208.785514],[-99.137771,-695.679565,-207.770805],[-111.781265,-685.704437,-197.280082],[-117.334976,-685.549957,-193.057610],[-132.679825,-689.334137,-182.115013],[-134.694717,-683.169067,-180.899316],[-144.355057,-694.542083,-176.572258],[-145.181473,-687.750061,-176.499534],[-144.642776,-709.528717,-179.608452],[-135.388138,-698.118622,-182.411888],[-126.011551,-687.124908,-186.214073],[-119.089249,-691.328033,-193.400993],[-110.880325,-694.384979,-200.521934],[-122.643631,-706.288055,-196.899345],[-128.233597,-713.028106,-195.249505],[-141.967361,-704.777801,-178.961968],[-114.523697,-701.048126,-200.673363],[-119.293472,-713.905426,-202.633903],[-120.717422,-718.298858,-204.151390],[-132.396377,-716.086212,-193.891533],[-138.170181,-718.706451,-192.056114],[-139.488663,-723.435272,-196.120872],[-126.020767,-722.649139,-204.453637],[-112.436661,-716.161163,-208.092430],[-148.133072,-717.577301,-184.060417],[-147.704422,-721.987396,-188.850395],[-155.035843,-723.079193,-185.720727],[-118.314468,-721.364776,-208.305993],[-103.436783,-695.342254,-205.293571],[-83.338272,-663.446502,-206.212853],[-85.589676,-673.867523,-208.331596],[-76.161575,-659.646667,-207.736352],[-67.882461,-644.646118,-204.316277],[-58.477432,-646.737030,-206.332268],[-46.633987,-651.300872,-209.429466],[-63.130325,-667.921295,-213.080804],[-68.891128,-666.730560,-211.861199],[-70.976578,-678.870300,-214.249534],[-63.386978,-687.601501,-216.078514],[-57.603165,-682.975464,-216.244439],[-60.244400,-674.814239,-215.070976],[-51.353409,-675.600006,-216.480797],[-43.581802,-676.145660,-217.778680],[-27.681900,-674.391845,-219.236016],[-10.933548,-678.888305,-222.289849],[-18.656509,-675.894745,-221.211326],[-10.459305,-684.921875,-224.540489],[-16.128799,-686.936645,-225.002831],[-10.206497,-693.024170,-226.491356],[-3.158096,-690.098968,-225.273980],[-7.505386,-670.289093,-219.387748],[4.048935,-675.145050,-219.321526],[2.806564,-701.129211,-228.272361],[-6.074600,-700.699920,-228.752372],[4.770920,-707.983490,-230.562797],[-22.943252,-702.282531,-229.688195],[-20.010879,-682.192779,-223.559898],[-43.754532,-679.985901,-218.573478],[-44.186661,-691.198852,-220.567039],[-55.115127,-708.414032,-223.392631],[-75.145035,-698.956573,-217.273429],[-58.181045,-690.754364,-217.118431],[-56.360489,-693.530792,-218.122002],[-49.139969,-685.956146,-218.033929],[-13.515091,-706.716217,-231.351799],[-34.245560,-657.120758,-212.253990],[-24.963272,-667.326751,-216.943352],[-28.155655,-655.740265,-212.332085],[-18.253555,-667.622101,-218.104026],[-14.636917,-658.179687,-215.210351],[-12.458267,-665.853088,-218.068505],[-1.546280,-663.969543,-217.057914],[6.483872,-657.465912,-215.184898],[7.840927,-649.292389,-213.295525],[11.282578,-630.050934,-207.381492],[16.576035,-627.134063,-205.884330],[7.342331,-618.154693,-203.099602],[8.398728,-624.564209,-205.410270],[27.789597,-639.533142,-207.216454],[35.395126,-649.396576,-206.553520],[57.654282,-648.563690,-193.497185],[60.988876,-640.037994,-188.786186],[66.921005,-654.291504,-186.691002],[72.000412,-650.451904,-179.603080],[73.168930,-642.498718,-174.953270],[76.232895,-643.403595,-170.551200],[62.018601,-656.336670,-191.787957],[68.224472,-663.897400,-186.983941],[60.472092,-672.711670,-195.317742],[68.650620,-637.550201,-178.957757],[66.170029,-625.092682,-176.787834],[64.877915,-637.758575,-183.616082],[60.451340,-632.511322,-186.550804],[35.028000,-667.330810,-209.682670],[50.421066,-649.589355,-199.054101],[55.841538,-663.192901,-197.819236],[64.271713,-663.204559,-190.823051],[49.452683,-662.634735,-202.197137],[42.194931,-659.602691,-205.452264],[-22.672500,-650.781677,-211.312400],[-10.494949,-649.851715,-213.590325],[-5.420730,-650.396820,-214.302392],[-0.183426,-654.736755,-215.558983],[-8.660110,-657.414459,-215.738823],[-71.307510,-660.546997,-209.505882],[-76.611771,-639.136383,-200.079399],[-81.457901,-674.918182,-210.294732],[-78.606338,-680.034393,-212.489860],[-75.989578,-666.192932,-210.019889],[-63.883560,-658.910705,-210.305566],[-90.580337,-696.308746,-212.072105],[-87.055618,-686.171295,-211.129448],[-169.182083,-737.295623,-189.938926],[-170.191482,-747.583160,-195.572013],[-171.842789,-751.808624,-197.383110],[-177.513138,-754.161224,-195.641747],[-180.689590,-758.350921,-195.591271],[-185.928909,-760.183563,-190.460929],[-186.373428,-755.957245,-188.676354],[-190.989822,-753.545562,-181.857659],[-195.218704,-756.161956,-177.348259],[-197.274856,-759.437164,-175.170098],[-202.136063,-768.296173,-169.173760],[-206.804642,-771.008941,-169.607872],[-206.284988,-768.948394,-164.473167],[-206.101272,-755.549896,-159.864738],[-212.080398,-756.134369,-150.165825],[-222.475784,-761.965606,-134.128029],[-222.878494,-758.173370,-131.740746],[-234.556534,-766.925445,-118.376992],[-252.824112,-769.435394,-104.071098],[-206.078262,-767.434723,-162.987083],[-211.012161,-765.235321,-154.369194],[-215.840469,-762.286407,-145.521446],[-205.946060,-765.183624,-162.386529],[-199.540604,-747.377472,-165.241874],[-199.337601,-742.426971,-161.741233],[-203.161880,-751.305450,-162.762475],[-209.831192,-752.127350,-152.336570],[-202.964065,-757.887970,-165.708915],[-197.627090,-753.404876,-172.668114],[-191.720230,-750.009979,-178.470910],[-185.959305,-747.345855,-181.758567],[-176.120743,-742.516266,-186.762627],[-179.554520,-748.014496,-187.810784],[-183.499710,-753.009796,-189.899987],[-177.744644,-736.827301,-182.391716],[-178.589188,-726.886017,-174.194267],[-195.325516,-720.236358,-150.668754],[-152.946182,-703.831207,-171.836632],[-224.130386,-732.953277,-107.888816],[-231.560501,-745.176971,-101.703498],[-226.686539,-741.483368,-111.226295],[-232.876419,-751.120758,-108.549340],[-240.651443,-757.560150,-96.336464],[-240.653091,-761.316864,-102.296653],[-230.336197,-750.978546,-113.762383],[-236.671280,-759.928497,-109.573921],[-228.916885,-741.441436,-103.450294],[-223.212845,-700.435089,-64.201423],[-223.593582,-707.252716,-68.750146],[-226.516250,-708.748810,-59.353035],[-230.597305,-715.823639,-46.320396],[-231.978409,-704.631012,-27.670997],[-236.131851,-718.210724,-23.632469],[-238.102371,-728.152130,-28.138923],[-240.182510,-737.761810,-24.000755],[-239.680801,-731.537567,-16.632988],[-241.634903,-741.117584,-12.664390],[-241.367752,-739.117462,0.519402],[-243.743912,-749.600555,-10.783012],[-244.482376,-757.212921,-15.977165],[-244.049820,-751.745086,-17.445961],[-242.452408,-745.483917,-18.996635],[-236.451431,-717.398712,-18.209190],[-238.580643,-725.855133,-13.205833],[-240.000748,-732.713226,-5.794365],[-242.005508,-749.326690,7.692711],[-241.217544,-737.732391,-6.109687],[-242.785049,-748.188629,0.148476],[-236.540359,-719.034515,-0.044967],[-237.669876,-727.897674,6.294434],[-235.551102,-719.412872,7.696144],[-230.776993,-711.844513,17.373604],[-228.951492,-706.206024,12.895150],[-223.953262,-702.723877,30.385468],[-212.290054,-689.884613,49.728279],[-240.582352,-740.944915,7.398255],[-235.474563,-732.732330,19.767968],[-233.830154,-728.483307,23.475045],[-235.009231,-722.148956,13.454308],[-232.337967,-717.906952,20.816010],[-226.265762,-702.390716,19.171196],[-240.203873,-765.320099,26.467957],[-242.081558,-766.404205,15.995659],[-235.317398,-755.247223,40.616867],[-234.311478,-741.189789,32.483643],[-235.723709,-739.320343,25.343308],[-231.407852,-722.720672,27.417550],[-236.656326,-746.022430,28.006638],[-239.025162,-749.927887,22.873040],[-241.315140,-768.599090,59.725041],[-240.263138,-767.593475,56.727906],[-233.461197,-766.593597,70.243065],[-236.945938,-766.172638,48.581398],[-235.668960,-764.850311,48.556626],[-233.919632,-766.062835,58.930878],[-234.813553,-761.767242,46.936539],[-242.263382,-767.791717,48.561448],[-245.395279,-773.969635,35.101212],[-246.264419,-781.031402,29.906670],[-245.575943,-769.637359,30.483284],[-246.487076,-773.050872,25.059258],[-248.030289,-784.370514,14.023720],[-240.587845,-769.415680,68.493184],[-242.154373,-782.820343,61.703820],[-241.510025,-788.728729,70.337162],[-230.316299,-764.198639,70.358895],[-230.360550,-760.571380,65.125492],[-232.666275,-765.613006,64.498017],[-228.210098,-757.937286,69.104668],[-230.629898,-755.969513,58.692337],[-232.784439,-748.098785,40.916230],[-232.870865,-752.371490,46.188561],[-227.008682,-753.968231,66.904316],[-222.783890,-753.552765,77.530011],[-224.226944,-749.175323,66.364075],[-228.667251,-749.732086,54.291573],[-224.394791,-746.595855,62.748600],[-215.136978,-736.032257,71.714367],[-212.564102,-731.088165,72.025162],[-205.070389,-733.620392,85.232079],[-210.923172,-724.397735,68.766041],[-220.301956,-742.185882,67.541153],[-219.743362,-747.770599,74.355645],[-214.999405,-741.962738,76.398056],[-214.214920,-745.371734,81.256627],[-209.248550,-741.339691,85.158821],[-211.168289,-735.059478,77.513337],[-199.380264,-731.745392,93.126082],[-196.341263,-734.101043,99.968800],[-200.535293,-738.930694,97.144375],[-193.743606,-744.328216,112.669554],[-191.928238,-738.145538,109.545603],[-178.675247,-741.285553,129.853071],[-177.355240,-726.892303,119.789159],[-182.934402,-732.763214,116.761310],[-183.938553,-742.932647,123.902490],[-184.906631,-726.745453,109.045348],[-191.317154,-733.007721,105.621024],[-238.452530,-772.607513,87.284031],[-238.360855,-784.612213,92.027951],[-237.682754,-774.492340,93.628434],[-237.843277,-784.293487,96.921170],[-240.528030,-790.167694,77.872101],[-239.479935,-794.883209,84.860226],[-208.252701,-794.901886,114.547434],[-206.795975,-794.869842,126.746538],[-201.281937,-794.940887,130.991005],[-194.139908,-794.909271,131.274428],[-182.742264,-795.013946,110.841366],[-231.932876,-768.335479,106.043306],[-181.273514,-766.546600,142.539467],[-191.687088,-766.578766,136.034314],[-191.913956,-767.899505,137.020115],[-169.640823,-773.440216,154.054119],[-147.271133,-771.810211,169.810288],[-141.514908,-768.869964,173.162434],[-134.448685,-768.882293,177.568253],[-127.372391,-770.459503,183.736946],[-125.724075,-769.030487,183.360138],[-136.377640,-770.159393,177.407437],[-127.703750,-776.395538,184.117592],[-105.523147,-741.123321,178.703801],[-116.943985,-739.580597,175.203022],[-112.844742,-746.284576,179.467774],[-120.591629,-753.591583,178.971524],[-126.736832,-759.526031,177.079235],[-142.327835,-751.884308,168.555924],[-148.989944,-746.998443,163.840519],[-156.181656,-749.755096,159.515725],[-155.002884,-743.748810,158.475708],[-160.031753,-747.582794,155.458676],[-145.532730,-759.485748,167.350712],[-154.558853,-757.673431,161.428399],[-148.584732,-766.329010,164.782864],[-157.099319,-767.995880,161.602955],[-152.201309,-754.127472,162.921807],[-163.073013,-752.716034,153.656624],[-158.713089,-765.937164,157.624749],[-162.617569,-766.017425,154.429696],[-158.623306,-756.365509,158.347424],[-166.471634,-759.910247,151.020771],[-124.845352,-735.002044,169.992436],[-126.152481,-740.860443,172.804188],[-139.453201,-746.542328,168.611580],[-142.963089,-741.314850,165.163643],[-148.019241,-737.306488,160.323219],[-141.498550,-735.350738,163.084637],[-137.257584,-730.036224,162.183037],[-132.732193,-719.809845,156.604214],[-120.793350,-720.885406,161.140686],[-121.821304,-714.978668,154.350308],[-110.110794,-709.557586,148.230856],[-113.139175,-714.275726,155.078328],[-120.348221,-727.350006,166.312722],[-131.784256,-724.011871,160.252339],[-104.140091,-713.321258,156.241585],[-125.427322,-748.275482,175.660736],[-132.702652,-746.413604,171.852089],[-129.842117,-752.019317,174.675484],[-103.947159,-745.730194,181.311802],[-93.859146,-752.425018,185.056794],[-108.307022,-751.867401,182.251931],[-95.526138,-701.343292,149.015210],[-95.623550,-687.335540,145.273575],[-64.957901,-681.378418,149.378895],[-74.555008,-682.511139,147.386668],[-114.698807,-694.566314,142.520213],[-105.525101,-683.005127,140.294814],[-122.380325,-702.793091,139.755518],[-136.599075,-699.641021,127.080820],[-134.908707,-692.321472,126.679537],[-140.584488,-704.319183,133.140361],[-145.606460,-703.282379,129.973087],[-144.882217,-700.178375,125.183720],[-141.310867,-697.117920,122.448430],[-116.753128,-651.828369,104.679041],[-129.224563,-662.204986,106.777119],[-137.659378,-668.777893,105.434883],[-143.228165,-669.216552,98.824442],[-147.519424,-689.161194,112.570718],[-144.823074,-684.200561,111.772338],[-143.772293,-675.409393,105.220665],[-151.417129,-679.170471,99.096840],[-156.551468,-684.846161,99.219963],[-157.399551,-681.224456,93.485907],[-171.472427,-680.045807,72.953549],[-176.310135,-685.981750,76.299946],[-167.201553,-683.045685,82.056328],[-162.255630,-680.895996,85.272744],[-155.295303,-690.922393,107.768169],[-161.342300,-689.770355,99.970461],[-158.331924,-697.373108,113.835343],[-164.361709,-694.063751,102.355791],[-149.369095,-685.434539,107.974059],[-149.975601,-692.022918,113.348144],[-150.191055,-673.125457,93.708985],[-159.486648,-677.775787,84.955605],[-162.900589,-674.359344,73.204323],[-162.998001,-669.253936,62.848080],[-160.598648,-668.347320,68.741066],[-165.858841,-672.707367,64.000203],[-166.268143,-677.941681,74.097660],[-155.961075,-670.857025,81.957398],[-156.734573,-666.331146,74.561291],[-90.926651,-659.114929,124.214284],[-86.866897,-654.668853,122.920125],[-171.292618,-687.506866,84.267125],[-170.366897,-694.983917,95.671967],[-184.219864,-681.715118,64.723496],[-183.918594,-674.260498,54.852188],[-182.402481,-671.307647,50.731827],[-173.723099,-667.546081,46.498200],[-169.429031,-660.749847,36.913025],[-166.377212,-652.999969,39.121285],[-164.401688,-663.825470,49.323075],[-164.401016,-667.434570,53.734055],[-159.890579,-661.896209,60.433644],[-166.806412,-663.266357,43.158913],[-167.673660,-668.899597,51.020890],[-155.695633,-655.280243,61.177781],[-152.726028,-655.694488,66.804623],[-144.489761,-646.374298,66.555111],[-138.883194,-640.060608,65.982041],[-125.052017,-634.417083,72.577038],[-117.908829,-634.882293,80.892567],[-110.895706,-638.803772,93.854830],[-107.508438,-634.117187,90.251269],[-101.900833,-632.014099,92.173003],[-94.528091,-625.179046,87.230355],[-91.662796,-618.100982,78.127411],[-88.421463,-612.458954,70.773899],[-101.622574,-607.859375,54.378487],[-102.585159,-604.775726,49.992478],[-112.188064,-611.246582,50.348122],[-114.040359,-601.135223,41.787728],[-122.239456,-601.524872,35.982033],[-126.572586,-596.460815,28.075226],[-135.824295,-605.013336,25.049797],[-139.922256,-612.218902,28.299607],[-153.010513,-621.039886,24.849053],[-160.069046,-625.471283,22.482582],[-159.327713,-619.248443,13.883339],[-167.283340,-628.610107,17.267792],[-156.398514,-611.543914,6.203446],[-151.260147,-612.392120,14.619019],[-143.567947,-610.912048,22.492119],[-161.757339,-610.968200,-5.756317],[-162.950333,-610.541656,-11.107582],[-155.528458,-600.178253,-13.205955],[-155.973526,-599.751587,-19.225364],[-155.914139,-599.051971,-34.960365],[-152.152664,-593.076538,-33.963157],[-145.491226,-585.296173,-43.004417],[-145.203262,-586.947296,-55.846519],[-142.003433,-583.646179,-56.647256],[-141.276932,-584.333923,-66.773567],[-133.523392,-576.087310,-67.726509],[-131.919021,-574.432037,-72.621788],[-128.264847,-569.189514,-75.426933],[-127.584854,-567.171936,-83.670616],[-130.363174,-556.397705,-83.759437],[-128.975357,-547.249023,-79.876106],[-130.472305,-540.343017,-76.458519],[-136.026199,-539.903503,-66.516166],[-132.262222,-537.906616,-65.140373],[-134.599930,-543.066650,-63.353050],[-131.407364,-549.314605,-60.878914],[-135.496048,-550.492614,-62.488975],[-139.463638,-551.046173,-65.211602],[-136.058853,-558.474121,-62.966668],[-136.854935,-556.110870,-60.357750],[-133.836441,-560.294311,-59.438331],[-134.836746,-562.256530,-60.835609],[-130.415665,-568.999023,-60.898888],[-132.367386,-567.902801,-56.744712],[-132.160110,-569.703857,-52.354591],[-133.415787,-573.038299,-47.651116],[-134.792862,-572.774353,-40.683738],[-135.378311,-572.427673,-36.301826],[-135.897049,-568.648925,-19.553108],[-135.015213,-570.270904,-14.387901],[-135.231949,-567.726562,-8.817268],[-133.958938,-570.991974,-8.607658],[-129.678665,-572.152008,5.725487],[-132.312820,-566.904937,8.005822],[-133.698318,-563.106628,0.690621],[-134.108292,-557.853973,-6.366676],[-130.744583,-554.090393,-7.609764],[-136.578323,-548.226227,-1.518913],[-139.226089,-537.713592,0.425118],[-131.021500,-537.582794,0.963036],[-125.581436,-540.119110,2.981652],[-121.215286,-530.162750,0.339569],[-120.814651,-536.924530,2.534394],[-120.400833,-536.196472,9.484177],[-124.894852,-538.132751,10.396805],[-128.568375,-545.072876,7.595589],[-138.312454,-553.167541,0.460320],[-138.301712,-557.369354,-1.485351],[-139.525040,-560.920166,0.822823],[-132.709366,-562.425354,4.907303],[-135.395706,-559.843353,10.099160],[-136.180496,-555.890320,13.021302],[-131.145218,-563.938812,11.968193],[-131.238602,-558.937591,13.653832],[-125.377212,-566.270599,12.105309],[-118.537247,-568.912475,14.235505],[-115.723160,-572.911499,16.872933],[-113.010635,-574.422058,20.256394],[-121.475479,-588.816559,25.549027],[-121.182876,-593.932892,30.723458],[-133.744766,-558.651581,4.820992],[-125.039139,-559.494079,14.194115],[-119.549759,-553.763519,16.667519],[-116.625320,-564.719787,15.206154],[-130.769546,-552.039093,6.220360],[-133.837234,-548.003448,13.074364],[-133.913040,-549.187042,15.105294],[-130.543716,-538.565216,20.822754],[-114.854751,-531.143097,11.048378],[-110.290542,-527.870514,12.054634],[-117.050308,-530.337463,15.637764],[-115.100296,-529.954925,24.694085],[-112.986709,-529.312103,27.878144],[-118.687881,-535.331360,28.231751],[-120.506180,-532.479278,28.147812],[-126.334061,-534.199951,22.639679],[-130.722305,-537.670623,19.534500],[-116.934524,-540.173248,24.879601],[-114.495682,-536.562195,30.265129],[-106.250015,-525.330322,34.599701],[-98.031570,-524.518554,30.802536],[-91.008499,-521.815704,17.696114],[-88.159500,-541.519561,22.221917],[-88.480362,-538.359466,19.083062],[-93.839371,-534.968719,25.833886],[-92.860611,-529.013733,25.170510],[-90.127884,-528.602966,18.944870],[-122.999466,-533.371734,14.231652],[-123.960892,-532.561126,18.101876],[-128.868301,-536.864105,14.700180],[-133.253982,-543.362762,15.906929],[-130.557449,-543.608185,10.800873],[-132.111648,-552.600464,8.610726],[-135.772659,-554.693023,11.403244],[-133.044388,-556.591949,7.359932],[-138.789810,-561.611419,-3.181381],[-136.526443,-564.626342,-4.776840],[-141.107681,-549.830047,1.880234],[-142.080459,-551.225250,3.833001],[-141.384964,-558.017791,3.051850],[-140.618973,-554.919220,4.743851],[-141.569900,-556.946472,1.054810],[-139.613113,-548.442535,5.214096],[-141.369827,-543.732269,2.403702],[-133.484207,-555.674255,5.660332],[-129.354141,-546.252777,5.545044],[-121.602737,-537.864776,6.890717],[-131.543533,-545.538299,4.787827],[-139.675735,-539.669586,-0.773658],[-137.361160,-543.058777,3.430062],[-135.569717,-566.737060,-21.095528],[-131.024368,-559.619323,-11.259239],[-131.251297,-561.357299,-17.596902],[-132.819229,-562.092987,-25.710015],[-124.419021,-553.410888,-25.305717],[-125.812759,-554.863250,-18.919639],[-122.864151,-549.256653,-15.964027],[-118.641739,-545.105560,-23.756828],[-116.830337,-541.291198,-28.848899],[-115.483230,-534.326873,-46.810722],[-114.950699,-528.509491,-55.341865],[-116.324783,-529.491821,-60.826332],[-122.144302,-540.296478,-57.499473],[-125.891495,-542.022003,-59.709251],[-129.174515,-542.045685,-62.113182],[-125.818375,-554.609832,-32.410957],[-135.357071,-568.986816,-38.287727],[-132.802750,-569.059845,-46.709710],[-130.593033,-566.579956,-53.139106],[-132.284317,-555.165741,-61.037498],[-132.517532,-562.618316,-32.999427],[-129.138077,-561.353729,-41.153679],[-128.217667,-557.911010,-33.191017],[-127.626602,-556.806244,-26.622352],[-122.437210,-547.537689,-10.923699],[-129.619461,-537.376831,-8.391304],[-137.824600,-541.950256,-1.520561],[-133.582352,-533.566070,-5.266090],[-136.903396,-530.467254,-4.037902],[-133.558365,-527.603332,-3.019073],[-124.728653,-524.992004,-2.641525],[-117.119705,-522.205719,-0.979293],[-114.701858,-532.220306,2.242279],[-110.594742,-529.393493,2.676430],[-133.444961,-522.873321,-10.412696],[-132.742508,-523.771667,-13.459007],[-129.681167,-523.079193,-6.692817],[-114.888565,-513.214386,-0.452026],[-121.333816,-516.464447,-3.982940],[-115.591324,-505.895630,-6.881233],[-119.682938,-509.270385,-9.996223],[-122.228775,-511.130127,-12.492073],[-122.453018,-513.310058,-14.835518],[-124.005813,-513.140472,-11.791527],[-129.039200,-518.573608,-13.494896],[-125.264542,-522.966491,-16.422676],[-130.782242,-526.675323,-12.922294],[-126.423538,-518.153473,-10.848930],[-117.859512,-511.155945,-7.510475],[-112.949539,-507.739135,-4.398216],[-136.277054,-528.584655,-7.788795],[-126.656204,-534.953369,-12.543983],[-123.606094,-543.410705,-9.451332],[-120.510025,-546.269348,-15.531242],[-125.799393,-533.287048,-16.105507],[-122.773880,-538.972839,-15.240792],[-120.788223,-537.108276,-21.530418],[-119.089126,-540.246124,-18.477317],[-118.212845,-542.868805,-20.994682],[-117.163406,-538.391510,-27.526069],[-120.060257,-543.889343,-14.854271],[-128.681778,-541.077575,-8.139366],[-133.331558,-544.378784,-5.882240],[-125.652481,-553.350494,-11.173256],[-124.895096,-548.085174,-8.634346],[-130.943069,-550.021454,-6.959770],[-132.548843,-554.885528,-79.572777],[-131.158218,-557.032715,-81.497474],[-126.689957,-558.197632,-77.414986],[-125.872940,-561.025329,-80.985985],[-125.903580,-561.959716,-73.041847],[-126.734695,-565.465362,-71.106285],[-127.253311,-564.464538,-68.134773],[-134.108047,-555.801574,-66.086433],[-136.096756,-552.134338,-68.189065],[-136.046219,-551.756836,-74.060127],[-137.526382,-543.373565,-72.546974],[-138.397415,-543.771270,-68.322029],[-137.345169,-546.150726,-64.261573],[-130.885269,-562.078979,-65.686897],[-135.489456,-551.731079,-78.418174],[-129.872269,-555.367614,-75.828316],[-130.739395,-555.384765,-71.830268],[-132.639419,-553.026794,-80.418374],[-128.137649,-558.985565,-70.526985],[-139.754227,-550.000488,-74.078849],[-139.458206,-546.691345,-74.225654],[-139.705459,-550.695984,-63.230537],[-141.480179,-546.800720,-66.274834],[-142.539444,-547.849945,-69.571907],[-139.607315,-580.175720,-48.760414],[-135.680496,-576.810791,-56.411415],[-131.740677,-572.291412,-56.544747],[-147.772842,-589.134918,-50.760139],[-160.697830,-605.161407,-27.527488],[-161.799942,-607.900390,-16.314949],[-163.860000,-609.818939,-28.022071],[-161.361709,-632.794433,30.749253],[-150.970169,-634.618438,46.098786],[-156.408523,-642.573456,47.190224],[-169.545181,-638.148346,24.903008],[-176.754593,-660.788574,29.818184],[-181.959061,-663.126190,32.248833],[-172.163956,-664.904907,39.494057],[-170.084549,-664.342285,39.682419],[-180.307571,-666.155975,40.127251],[-180.095291,-669.406006,48.332459],[-184.818130,-660.758758,26.228737],[-182.045120,-658.028900,23.322121],[-190.422867,-658.631775,18.813370],[-183.969437,-651.724579,14.569458],[-181.657242,-644.442199,11.468644],[-177.691543,-645.877472,18.450928],[-187.678970,-670.054229,44.183442],[-173.712967,-659.930481,30.936913],[-172.756729,-652.230774,29.312111],[-169.159195,-649.961822,32.930489],[-161.842117,-644.733825,40.605477],[-171.067093,-644.576507,27.164101],[-133.764480,-615.711303,38.147278],[-134.093399,-611.831268,33.571190],[-109.665604,-615.364929,58.411019],[-102.719131,-610.767975,57.795960],[-96.721756,-611.822235,64.129689],[-98.228042,-616.862182,71.342968],[-132.425125,-605.588714,29.269677],[-153.136307,-606.291290,3.237740],[-144.256485,-601.451385,9.622841],[-150.035904,-601.888214,1.953957],[-145.089310,-590.336395,-4.807251],[-143.100906,-585.869598,-7.537742],[-145.990799,-584.891723,-17.582283],[-142.102493,-581.656921,-12.136802],[-143.412308,-581.178070,-19.607841],[-144.296585,-582.007934,-26.859504],[-147.598770,-586.527527,-33.699883],[-148.932205,-590.406921,-14.044120],[-153.692886,-596.810211,-13.938346],[-137.487259,-575.877075,-9.131019],[-135.704178,-577.353698,-3.543640],[-136.181717,-572.110229,-16.993934],[-138.580887,-575.372680,-21.755058],[-138.579849,-576.122162,-33.165992],[-136.222671,-568.647522,-32.400779],[-136.196487,-572.038849,-30.078636],[-135.226395,-570.510193,-20.101509],[-136.299209,-569.621490,-26.695015],[-138.754654,-577.741363,-40.755944],[-143.130875,-582.135528,-38.252189],[-158.448868,-607.892944,-3.787376],[-153.792496,-602.386749,-3.748603],[-102.462051,-600.127227,47.172165],[-96.504227,-590.516601,42.085869],[-100.583633,-585.716034,36.860405],[-108.278519,-581.154937,37.700936],[-108.434280,-587.978119,35.028778],[-116.395096,-596.904663,36.823876],[-105.540420,-589.733429,37.786156],[-105.513870,-595.386108,42.438317],[-106.446243,-577.134796,39.719330],[-115.064957,-588.400665,30.677567],[-107.382278,-585.671356,35.148438],[-96.416031,-601.301391,49.960457],[-87.670425,-595.314422,47.233086],[-71.003982,-590.137664,45.750687],[-77.397903,-584.662079,40.215065],[-68.821731,-583.278900,39.163475],[-63.510635,-583.115844,37.429558],[-64.222610,-581.167267,36.372345],[-51.114334,-583.278869,32.682305],[-51.670486,-577.630523,29.068764],[-63.077103,-574.823486,35.297165],[-63.135086,-576.802581,36.378991],[-95.093033,-603.488495,52.799920],[-85.798111,-598.461303,50.850258],[-141.519791,-648.795044,73.493550],[-135.827591,-645.290680,75.803711],[-129.013016,-654.358123,96.800503],[-160.045364,-656.961761,54.993149],[-156.675674,-648.516418,52.161660],[-162.861221,-653.848266,46.292939],[-163.846390,-639.378540,34.055382],[-175.095657,-633.226165,11.209877],[-189.860916,-647.233917,-0.226852],[-193.501419,-647.293335,-15.870689],[-200.675552,-654.732055,-15.088554],[-201.753860,-655.654998,-21.114082],[-197.018997,-651.075775,-24.151589],[-189.414505,-642.915405,-24.821113],[-189.569412,-643.467682,-15.886284],[-186.625625,-639.514465,-20.213035],[-177.563736,-627.375152,-16.923668],[-168.024734,-617.945953,-6.339256],[-176.172562,-628.600677,-0.667587],[-176.587784,-631.759002,5.684182],[-183.485794,-638.046173,-0.064903],[-172.778580,-621.335785,-16.874229],[-197.709122,-654.608368,-1.469963],[-205.474686,-664.020599,7.892075],[-191.966995,-650.859161,2.857735],[-154.574539,-600.462890,-79.852760],[-143.508926,-587.817718,-79.946128],[-146.455215,-590.968475,-81.950920],[-152.286697,-596.361786,-89.419197],[-151.195389,-597.971313,-69.629478],[-149.280960,-595.245422,-63.931114],[-147.595169,-590.338623,-56.959098],[-145.392349,-590.359893,-72.339135],[-138.893814,-582.199371,-80.148765],[-137.901932,-581.242309,-99.404060],[-133.579117,-575.821594,-100.808265],[-133.613357,-573.378082,-109.430184],[-130.864822,-564.469543,-111.303749],[-134.231460,-566.131195,-110.207955],[-143.547745,-559.937927,-99.150596],[-144.464432,-565.901428,-99.724617],[-155.228714,-571.257812,-98.647256],[-157.774856,-568.851227,-101.507958],[-160.889725,-572.263397,-104.840950],[-164.115372,-566.597686,-107.028129],[-165.904556,-564.733856,-109.243798],[-174.306656,-569.393982,-112.542687],[-184.251358,-584.206054,-115.958351],[-178.548050,-576.126220,-108.437935],[-189.055923,-581.517181,-118.271537],[-188.227676,-587.709381,-121.660118],[-184.922439,-590.156524,-119.018516],[-184.634476,-578.370514,-115.000924],[-178.696243,-574.398040,-113.600654],[-182.709183,-580.375335,-114.446693],[-180.562027,-571.765136,-114.030082],[-130.499893,-570.252105,-108.461570],[-129.027603,-565.467651,-109.342903],[-127.663895,-551.752227,-107.442237],[-132.626907,-550.843689,-103.605583],[-143.110123,-547.499145,-96.083107],[-147.134781,-558.736938,-97.530709],[-151.046707,-560.174774,-97.787956],[-153.872513,-564.774109,-99.081581],[-159.020523,-561.955230,-102.923226],[-128.595962,-557.502807,-110.363273],[-133.768082,-560.275634,-109.210167],[-140.009292,-555.185974,-100.502556],[-126.691299,-557.550689,-107.502540],[-131.344314,-560.639435,-111.119514],[-133.712723,-576.303161,-105.958549],[-136.934646,-579.590942,-106.312965],[-144.101822,-586.130188,-102.359139],[-145.953873,-590.656830,-99.582145],[-143.100052,-587.713257,-101.116127],[-139.370865,-583.539245,-103.087562],[-141.398514,-584.165130,-104.140846],[-150.150650,-576.064148,-98.250068],[-155.007706,-578.682617,-97.362342],[-160.599686,-581.567291,-98.551918],[-161.653396,-591.142242,-96.230384],[-161.800674,-597.799194,-94.502220],[-161.808304,-607.770111,-92.721748],[-157.741714,-603.163299,-94.198005],[-159.381485,-599.842163,-94.040580],[-151.266556,-584.177673,-98.052711],[-157.427322,-585.696838,-96.897270],[-150.300796,-595.255981,-96.272911],[-146.603775,-589.429565,-100.651451],[-154.133072,-591.000030,-96.515175],[-167.211807,-609.734802,-91.261726],[-166.319290,-606.655060,-91.673958],[-172.513504,-608.566253,-89.592460],[-178.380203,-606.098327,-95.137352],[-176.749283,-609.550811,-92.516319],[-142.280838,-585.587494,-93.768119],[-137.739517,-577.723633,-107.640022],[-136.991531,-571.841858,-108.466346],[-143.512894,-578.186706,-102.936410],[-146.685196,-578.130890,-100.098289],[-151.999954,-569.147125,-97.894340],[-161.970047,-607.937774,-85.975151],[-162.025162,-611.200805,-71.110603],[-155.797073,-604.952697,-63.718010],[-163.393021,-615.168152,-55.625770],[-166.998794,-618.525360,-48.421166],[-170.809219,-623.915191,-49.354942],[-176.157364,-631.086303,-50.411567],[-189.520523,-646.180755,-51.000450],[-190.955521,-647.216552,-43.370918],[-196.389908,-653.669159,-47.986153],[-205.562393,-663.297088,-52.480339],[-210.860428,-668.663513,-57.938119],[-213.773270,-672.939422,-61.656700],[-214.256546,-675.909881,-72.514961],[-212.924942,-677.506317,-81.828605],[-210.546402,-677.342163,-98.260688],[-212.185989,-685.408935,-92.938560],[-210.515152,-682.714508,-99.882438],[-212.637161,-693.624756,-97.648765],[-214.311355,-701.937103,-101.794152],[-215.492020,-709.618255,-107.837257],[-210.331375,-700.297882,-110.003898],[-211.442093,-696.123871,-103.440940],[-208.720962,-686.847046,-107.333671],[-207.900955,-676.125915,-108.594842],[-204.460098,-677.280731,-120.841789],[-202.270218,-679.656768,-127.918374],[-201.464737,-671.170623,-128.459221],[-195.605545,-660.312927,-135.418114],[-197.401749,-656.741485,-129.021476],[-190.007217,-643.437927,-131.706047],[-203.913711,-671.197662,-121.219810],[-202.511978,-664.324554,-121.873420],[-200.045120,-657.622558,-122.465370],[-205.361465,-657.891082,-102.422035],[-208.296036,-661.724151,-92.486396],[-203.544571,-654.229400,-103.217247],[-196.315689,-642.081543,-102.080833],[-190.855850,-635.982452,-95.668068],[-187.290054,-631.744476,-102.377006],[-181.165115,-624.689972,-93.711845],[-174.771622,-618.649597,-101.575126],[-171.364517,-616.538147,-93.778053],[-172.760696,-616.618866,-103.170266],[-172.177811,-615.792236,-109.286872],[-175.698379,-619.821197,-113.863441],[-179.724747,-624.223999,-118.278359],[-181.626541,-627.025085,-124.437797],[-183.575088,-630.476745,-127.599342],[-191.295181,-637.444366,-114.660331],[-198.953628,-646.067901,-104.199485],[-188.443130,-635.835632,-123.182045],[-194.275101,-643.235992,-117.900367],[-187.020340,-636.738098,-129.637688],[-194.766800,-647.964874,-125.248818],[-198.123306,-648.803497,-114.595634],[-187.804092,-632.774139,-111.921440],[-201.662247,-655.917816,-114.056266],[-204.776016,-660.776855,-109.579430],[-205.996414,-666.384979,-110.841881],[-207.913162,-670.044067,-105.240013],[-208.087662,-665.146942,-99.085106],[-210.779312,-673.477935,-93.384941],[-210.706680,-668.589416,-87.464378],[-211.509537,-667.798797,-68.505622],[-207.392105,-657.865936,-79.168296],[-209.145523,-665.298340,-64.120979],[-202.095169,-652.743896,-72.284858],[-202.161880,-649.427490,-87.033761],[-183.927078,-627.748413,-93.619362],[-183.021622,-627.018097,-84.135429],[-175.526565,-620.608185,-80.402108],[-165.508438,-611.974212,-90.768974],[-168.408035,-614.104553,-92.356163],[-166.770706,-612.787079,-85.535728],[-166.173904,-612.526336,-81.467095],[-176.916824,-623.748748,-73.307685],[-166.107498,-614.671081,-72.950477],[-180.985062,-628.515869,-71.593177],[-191.338272,-641.448333,-70.103874],[-183.043350,-635.852966,-60.893882],[-192.324600,-646.390533,-60.460395],[-196.573868,-653.807769,-52.274650],[-199.006302,-655.873169,-55.702720],[-204.843826,-660.984283,-60.111717],[-197.708877,-650.993560,-63.809532],[-193.175003,-640.445770,-79.138481],[-198.633987,-646.478790,-81.069206],[-204.870438,-653.590881,-80.779350],[-188.828445,-645.087646,-54.278343],[-172.357559,-623.699432,-63.483055],[-168.580521,-621.371185,-57.567176],[-171.432876,-625.423004,-54.186318],[-181.388809,-636.070862,-55.774284],[-173.607010,-626.669494,-59.015037],[-160.361709,-610.794677,-64.062492],[-164.622696,-615.423797,-65.514000],[-178.076248,-621.909362,-86.222908],[-206.030472,-654.847595,-87.744133],[-207.906021,-658.519745,-86.101005],[-209.475357,-662.112213,-80.706016],[-211.211197,-667.300293,-81.109093],[-206.056412,-670.342743,-113.417015],[-210.568375,-690.986206,-102.568550],[-215.685806,-696.919922,-90.237449],[-215.827469,-680.646393,-71.304145],[-217.547806,-676.717285,-49.396186],[-215.586563,-673.904022,-46.673729],[-210.035965,-668.014160,-53.471534],[-209.396438,-666.827636,-46.790825],[-215.433121,-671.754394,-34.485894],[-208.918960,-664.465179,-34.932121],[-207.257034,-661.059387,-16.813514],[-208.170120,-662.604889,-10.780541],[-202.798416,-659.057190,-2.475280],[-199.650528,-654.694397,-8.418205],[-206.289200,-660.211914,-22.716713],[-198.047989,-653.548523,-35.565056],[-214.070450,-688.009796,-86.374550],[-216.113479,-678.087310,-65.428627],[-163.332413,-612.155792,-44.635734],[-154.645889,-603.261383,-60.913292],[-157.653091,-604.957794,-49.963173],[-184.443313,-642.307617,-140.353172],[-178.223892,-631.307251,-139.591911],[-172.737625,-622.426819,-136.866569],[-173.603042,-620.021576,-132.308799],[-170.021377,-615.274017,-128.366006],[-166.527664,-608.986297,-119.235267],[-169.007645,-612.544311,-119.329506],[-166.581253,-610.554382,-119.690559],[-162.260696,-607.952789,-121.346794],[-162.239822,-615.286499,-143.080956],[-166.286819,-613.941375,-132.731988],[-159.014297,-611.063263,-141.091209],[-153.963089,-606.102295,-139.204979],[-152.748123,-601.364196,-124.323051],[-154.752212,-599.804077,-122.869377],[-163.495804,-595.740204,-126.521660],[-166.139786,-593.137146,-127.544671],[-168.237564,-591.169128,-129.323388],[-171.993606,-587.452057,-133.069969],[-175.756302,-581.594452,-137.911216],[-175.542435,-572.636810,-145.112145],[-179.075821,-562.567169,-143.227959],[-176.110733,-547.427398,-150.731102],[-179.128189,-557.197448,-143.604515],[-178.852737,-565.940124,-141.580559],[-181.441666,-559.425659,-139.714256],[-186.574356,-572.647827,-137.118034],[-186.622696,-572.785309,-133.484108],[-175.218399,-577.091827,-142.221184],[-179.660843,-582.996612,-137.167656],[-177.608353,-584.818359,-136.370597],[-184.009170,-578.648864,-139.612693],[-186.654739,-578.488952,-134.759026],[-188.263138,-575.859649,-124.145074],[-186.137344,-577.886505,-131.563499],[-182.521194,-571.889587,-128.078254],[-180.584671,-565.662475,-123.318703],[-185.959488,-566.522949,-127.903068],[-184.317093,-576.493072,-128.324943],[-175.252151,-592.057007,-131.659782],[-182.612076,-594.541565,-131.058312],[-176.493362,-595.480346,-129.571098],[-184.456009,-597.728027,-124.290275],[-190.499344,-601.987671,-115.474785],[-189.958633,-604.474029,-109.211266],[-186.547806,-605.775573,-108.853355],[-179.447464,-604.323669,-114.701439],[-179.184219,-598.772430,-123.835548],[-171.859329,-597.515747,-123.728982],[-170.375992,-606.704864,-119.421821],[-166.311294,-603.236389,-122.339286],[-162.623245,-606.074096,-120.932167],[-156.338455,-603.687561,-122.073661],[-157.706802,-606.036590,-123.845558],[-160.579666,-608.540924,-125.623664],[-177.511429,-603.101440,-118.713494],[-169.248978,-593.866485,-127.463371],[-187.348709,-594.161071,-118.881340],[-184.401810,-586.442535,-117.060875],[-185.731583,-586.070129,-114.238091],[-188.427444,-592.812225,-115.364021],[-189.063187,-602.135772,-107.694755],[-182.705337,-590.041565,-106.339470],[-173.918411,-598.109985,-107.965232],[-174.006668,-597.120514,-103.437385],[-175.944656,-600.952697,-104.672340],[-184.946121,-597.226288,-108.967796],[-188.770401,-595.100830,-112.686104],[-185.599747,-586.136627,-110.845543],[-184.337173,-587.542968,-107.937370],[-172.110184,-582.394714,-105.304771],[-169.052688,-575.468048,-106.154732],[-181.724563,-578.796905,-109.989219],[-180.630386,-580.684601,-106.542687],[-175.795120,-580.576446,-104.278205],[-176.197708,-577.860504,-105.298469],[-171.290726,-569.399048,-109.682823],[-163.853348,-573.561065,-106.163827],[-162.319656,-578.310791,-107.192635],[-159.419571,-575.246948,-101.343223],[-191.681778,-592.665893,-122.717582],[-191.142959,-598.256347,-114.472709],[-180.043594,-570.583679,-142.363365],[-175.742874,-570.422577,-145.514061],[-180.968216,-577.409851,-142.564445],[-180.312027,-562.325744,-137.125816],[-173.941116,-670.647155,-160.708459],[-159.459000,-668.899048,-168.250389],[-184.514725,-665.521515,-151.615013],[-173.973160,-659.224945,-157.851830],[-184.515640,-657.323913,-148.573174],[-176.895828,-642.157440,-147.737175],[-176.077774,-634.631744,-144.263023],[-165.349258,-634.113189,-153.281578],[-136.889908,-622.913543,-166.334465],[-125.270767,-598.608368,-160.942253],[-118.531021,-597.505554,-164.677696],[-111.391739,-591.971405,-165.675835],[-109.515457,-579.871704,-160.397332],[-100.408218,-581.875213,-165.446099],[-93.462906,-576.833160,-164.327934],[-96.295364,-571.907318,-160.051841],[-100.979629,-564.307892,-152.567742],[-94.426773,-558.242126,-152.669456],[-101.400345,-556.715179,-147.579277],[-113.129410,-552.118591,-138.462089],[-111.049881,-556.849426,-142.890586],[-114.023758,-560.954559,-143.842553],[-109.989639,-560.329040,-145.850944],[-109.702347,-565.857910,-150.108757],[-104.030899,-573.403228,-158.575004],[-108.963577,-569.693023,-153.751305],[-118.679459,-572.611725,-150.094749],[-124.801529,-579.171661,-150.013359],[-117.815811,-578.764923,-154.875115],[-123.612503,-586.155578,-155.274711],[-113.763382,-582.259521,-159.429528],[-117.800369,-567.990356,-147.229241],[-118.330215,-546.194519,-135.247185],[-122.283890,-543.743103,-135.806512],[-108.993057,-549.054535,-139.861076],[-114.045914,-544.499725,-137.980980],[-118.053726,-535.423065,-138.425041],[-115.014480,-519.138031,-156.845970],[-112.124710,-518.694153,-156.227593],[-105.153824,-524.662048,-156.024498],[-106.347793,-523.808349,-177.456779],[-110.515579,-533.020996,-177.295646],[-109.015701,-536.207153,-175.873924],[-107.899490,-533.304290,-181.566520],[-111.184341,-527.996399,-189.130973],[-112.421036,-527.379944,-192.302819],[-107.026932,-518.782379,-186.089439],[-100.198746,-510.326416,-185.480644],[-96.437576,-496.701812,-181.165733],[-96.096878,-488.062133,-183.692589],[-97.614273,-485.115631,-180.638421],[-99.851944,-484.928009,-177.593376],[-105.040481,-481.751953,-172.850059],[-112.002945,-472.110046,-168.066398],[-108.023025,-476.040527,-169.857171],[-103.538406,-470.158600,-170.773307],[-106.012710,-464.847961,-166.477532],[-102.611648,-461.268158,-167.714135],[-99.848160,-467.099029,-174.844474],[-96.903213,-467.075226,-178.227714],[-100.946609,-476.207153,-175.737145],[-102.230362,-453.111572,-164.523461],[-95.847549,-461.535278,-177.755211],[-95.133438,-455.456329,-177.360221],[-91.209793,-461.271087,-189.320549],[-90.652115,-472.450317,-194.723473],[-88.731399,-471.805481,-203.516930],[-86.260269,-474.221862,-209.966881],[-83.956009,-472.143188,-214.086998],[-77.265884,-472.778045,-230.430778],[-84.735977,-490.763519,-232.563072],[-86.047012,-496.554443,-236.116356],[-92.871109,-501.705597,-232.867791],[-104.828384,-512.354706,-224.905572],[-108.422439,-516.442444,-227.101371],[-106.933731,-516.826965,-230.336570],[-113.192581,-521.760254,-226.054313],[-111.558792,-523.190643,-228.334983],[-106.376724,-528.918243,-225.915032],[-99.508316,-527.969635,-240.417381],[-93.775467,-532.713928,-241.582450],[-93.755325,-534.318420,-237.607261],[-86.527359,-536.597534,-241.662132],[-81.688431,-536.141662,-242.622185],[-81.843094,-531.049469,-241.503502],[-86.847488,-527.921417,-241.489892],[-82.535599,-518.953735,-239.841484],[-88.860489,-510.914489,-238.531059],[-90.320816,-505.646454,-236.838890],[-94.862869,-515.888702,-236.821709],[-99.096878,-515.518432,-233.851524],[-102.719864,-521.126281,-235.496086],[-78.217239,-510.353485,-236.309196],[-77.171036,-504.670746,-235.265282],[-73.402908,-495.906036,-235.286186],[-70.219131,-492.924438,-231.901879],[-71.124649,-487.349121,-235.098289],[-68.984878,-481.435913,-234.391167],[-69.476089,-460.981018,-229.413567],[-74.016312,-443.485992,-223.177238],[-76.057938,-443.524551,-224.990196],[-78.678848,-439.667877,-222.923333],[-82.848526,-448.033081,-226.276329],[-85.834488,-446.194183,-224.312187],[-89.578018,-440.758453,-221.007072],[-94.279678,-436.974868,-217.324394],[-97.399856,-434.724365,-212.515221],[-91.887527,-443.851272,-207.689568],[-85.401810,-462.304290,-209.313988],[-101.236648,-428.737716,-205.654809],[-102.118301,-422.166046,-186.879936],[-106.337173,-409.058075,-183.815789],[-108.190262,-401.379776,-178.714898],[-111.642471,-396.246307,-183.791741],[-100.731155,-428.913604,-197.427453],[-104.886185,-420.430374,-203.935844],[-89.003128,-447.893997,-212.024192],[-92.898880,-441.950943,-215.572502],[-87.077042,-447.985794,-221.224662],[-82.589676,-453.133514,-225.656242],[-77.593460,-463.158111,-229.840661],[-76.272293,-461.650207,-231.827111],[-73.072891,-460.311432,-232.296532],[-74.083572,-453.466156,-229.899560],[-79.477249,-446.682174,-226.834007],[-77.417068,-455.865051,-230.400200],[-80.903702,-453.912628,-228.203240],[-69.638687,-474.582336,-234.838799],[-67.175186,-485.450317,-228.741813],[-66.101639,-475.097381,-227.049218],[-65.382584,-473.456909,-217.549554],[-64.908340,-473.947021,-213.317527],[-64.502762,-465.439026,-213.557519],[-65.847122,-464.990692,-223.145042],[-67.533462,-460.853576,-225.525230],[-71.593887,-445.864731,-220.942894],[-71.939773,-439.320526,-216.840325],[-75.336380,-436.558929,-219.114921],[-68.184708,-450.942062,-217.905021],[-68.640091,-469.128936,-232.265434],[-67.091690,-475.152313,-230.714135],[-66.127884,-482.472961,-222.518272],[-67.214554,-496.702179,-221.657829],[-69.066788,-505.105652,-219.619621],[-72.819778,-512.517975,-230.223930],[-70.279251,-538.538818,-233.575310],[-74.324051,-536.739624,-238.086143],[-76.093399,-516.192383,-235.266624],[-74.764786,-509.506134,-232.424736],[-73.010147,-507.721344,-229.768425],[-72.937576,-502.081817,-230.439109],[-67.558975,-491.363464,-226.445518],[-81.367508,-512.439270,-238.610099],[-82.950638,-505.480102,-238.870597],[-83.608902,-498.447754,-237.649101],[-80.489761,-502.807098,-238.258324],[-76.857132,-497.441833,-237.157249],[-72.411270,-477.828582,-236.293023],[-72.001724,-466.518646,-233.794640],[-74.611832,-489.317901,-236.953697],[-78.291214,-491.740539,-237.238579],[-75.422500,-481.663360,-236.548363],[-75.706497,-476.613495,-235.234643],[-79.782852,-487.364532,-235.845666],[-84.732742,-512.261810,-239.331352],[-100.296524,-529.591736,-239.180047],[-102.399429,-508.095367,-222.153100],[-103.398147,-506.997375,-213.770348],[-104.325088,-507.366760,-208.270378],[-99.254288,-501.454040,-209.237602],[-93.920364,-494.757324,-216.594536],[-89.362198,-489.323578,-221.443382],[-85.757461,-478.464691,-212.387931],[-98.408890,-501.849304,-222.872368],[-99.094437,-510.176880,-228.817009],[-96.215835,-511.921997,-233.933769],[-91.331253,-496.211639,-229.972404],[-91.599930,-493.220459,-225.130546],[-84.665665,-485.363159,-225.961907],[-84.503128,-480.869354,-217.937126],[-80.875015,-480.287597,-229.008049],[-83.145096,-487.308777,-231.580833],[-86.392105,-485.951782,-222.685265],[-98.293838,-499.261932,-215.235772],[-111.017837,-519.835571,-217.024772],[-115.024856,-523.069000,-216.999139],[-113.618790,-522.019317,-220.260551],[-107.417129,-514.439178,-214.435600],[-108.176224,-512.639282,-208.742974],[-101.239944,-509.309967,-199.612298],[-96.137100,-503.140136,-198.615013],[-97.175613,-506.201019,-190.742912],[-96.535416,-500.561218,-183.455436],[-94.915604,-494.267395,-186.980583],[-93.089798,-495.491302,-193.192344],[-92.129715,-488.788360,-195.981346],[-95.222916,-484.146423,-185.943597],[-92.879654,-474.070251,-187.512719],[-94.247452,-469.622436,-183.503777],[-97.824600,-477.341308,-179.139640],[-97.649368,-505.179016,-185.630638],[-103.725113,-513.776245,-187.687951],[-108.002151,-518.157867,-192.485191],[-109.947952,-523.934601,-191.344230],[-99.951126,-509.598724,-195.554772],[-115.060623,-523.452606,-200.586877],[-113.418289,-519.903198,-202.801811],[-115.675369,-521.542724,-208.257713],[-95.158462,-535.581970,-225.310844],[-89.481705,-538.476837,-223.173118],[-81.837051,-541.346008,-225.019462],[-74.162491,-548.880188,-220.243950],[-69.840408,-550.366974,-221.400506],[-64.424698,-554.575164,-216.273643],[-61.513443,-561.400695,-197.641288],[-59.036575,-561.780212,-199.873436],[-54.808731,-562.346954,-195.610863],[-43.359390,-558.038910,-196.287834],[-34.767166,-551.657715,-205.568352],[-39.834915,-549.762817,-203.699730],[-37.407486,-545.347564,-209.163353],[-35.673660,-549.203399,-208.724815],[-35.069412,-542.615509,-211.350914],[-32.340774,-545.120575,-202.671409],[-32.620560,-550.917633,-198.049645],[-33.284134,-547.779174,-206.034385],[-48.400223,-559.867309,-194.335961],[-86.017654,-544.956207,-210.409721],[-89.822464,-542.433319,-202.130119],[-88.864822,-542.482544,-199.110008],[-87.123733,-544.416351,-193.245994],[-85.437942,-546.370727,-192.112481],[-91.778763,-537.467102,-196.617668],[-92.015030,-538.548797,-201.156242],[-102.316543,-533.326843,-189.568169],[-93.245743,-537.547180,-189.798393],[-91.947342,-539.195282,-214.237968],[-98.218460,-533.999176,-206.393943],[-96.333694,-534.988342,-202.109947],[-104.723526,-531.897827,-199.234245],[-110.818497,-529.465149,-193.298057],[-115.310257,-525.922424,-199.392266],[-116.059219,-524.271270,-205.049309],[-107.137161,-531.067810,-188.178550],[-103.967056,-533.361145,-185.575157],[-94.677444,-535.895538,-204.006005],[-66.013931,-555.911102,-215.334923],[-63.393204,-560.042816,-204.662040],[-72.641922,-553.799194,-213.062096],[-74.468765,-554.322815,-207.179772],[-80.285904,-549.541961,-207.143975],[-77.341141,-550.505676,-210.498376],[-78.512161,-545.353119,-219.910210],[-83.017654,-544.477264,-214.772544],[-94.230728,-538.117920,-210.418969],[-97.796280,-534.855163,-211.303215],[-110.031631,-526.437805,-221.678399],[-112.398514,-524.159118,-220.044671],[-99.649979,-533.154602,-225.671044],[-107.666336,-528.997497,-214.776817],[-110.842789,-529.496582,-202.091698],[-80.873489,-541.171417,-231.455864],[-74.506302,-544.137146,-234.820824],[-71.614395,-544.549225,-235.296775],[-69.946976,-547.202911,-230.501031],[-68.463882,-553.011535,-219.486229],[-65.626419,-553.685058,-219.865990],[-72.582229,-547.756378,-226.746544],[-71.430252,-541.818847,-235.956566],[-68.924454,-544.865265,-231.373314],[-65.339981,-544.288849,-224.937615],[-62.646133,-531.686767,-214.296715],[-67.986709,-520.598388,-223.113548],[-67.963699,-538.238617,-228.560814],[-63.880447,-523.390289,-214.259086],[-64.398331,-516.846405,-211.037162],[-61.230728,-522.405609,-206.903556],[-60.726150,-511.674011,-197.084892],[-58.101395,-515.238067,-194.390374],[-59.639053,-507.649566,-193.097252],[-57.577103,-491.771637,-186.531211],[-61.478104,-487.718109,-191.601463],[-62.724197,-484.138153,-194.693017],[-63.174881,-494.082763,-198.758172],[-60.457229,-494.970855,-192.036796],[-61.634354,-502.350555,-196.354118],[-66.880875,-507.827179,-212.536339],[-68.404983,-512.146545,-219.945518],[-66.216629,-500.552673,-208.116601],[-64.571915,-495.351562,-202.971429],[-63.966446,-490.780945,-201.122154],[-64.177383,-481.680145,-203.066581],[-64.871109,-484.414428,-216.554557],[-64.945022,-488.715545,-211.646722],[-65.912002,-492.073181,-219.837791],[-63.328689,-479.219757,-197.775383],[-61.609695,-470.829193,-199.304649],[-56.940079,-452.651184,-182.928399],[-54.004166,-445.487365,-175.511375],[-61.575638,-443.871917,-178.381828],[-61.425613,-456.026367,-190.505119],[-58.117569,-463.824188,-191.298545],[-67.948440,-441.155655,-182.187034],[-68.514358,-445.039123,-186.971245],[-69.537247,-442.102508,-214.260827],[-66.660721,-450.754196,-213.644829],[-68.785110,-441.628387,-211.272026],[-71.850784,-433.725204,-211.388694],[-69.460892,-438.970794,-206.311851],[-70.926224,-437.144775,-200.129753],[-71.549026,-443.207504,-193.769004],[-71.929275,-440.339538,-189.155572],[-74.317398,-428.517532,-192.653801],[-60.584915,-452.429901,-186.175102],[-68.310684,-449.643081,-196.389764],[-65.060013,-463.431701,-208.562553],[-66.778030,-455.523956,-207.010246],[-68.586929,-448.899765,-199.953728],[-67.417068,-447.544891,-206.711326],[-60.115127,-478.562805,-188.703758],[-54.168838,-471.821838,-179.836845],[-49.348099,-463.540344,-173.900474],[-46.742325,-466.655945,-172.496208],[-43.943619,-466.149414,-171.748131],[-41.212662,-469.397705,-172.593316],[-37.704910,-470.968445,-174.038567],[-32.308670,-460.827728,-184.399864],[-27.588333,-462.863006,-193.317680],[-26.812454,-466.655334,-196.495049],[-25.099869,-470.227020,-202.513969],[-31.712417,-468.116852,-184.892814],[-30.601334,-471.702057,-188.658135],[-29.607315,-459.071624,-189.574090],[-37.569046,-460.873474,-173.957389],[-35.259231,-462.404968,-177.153404],[-35.463394,-456.570739,-179.160240],[-45.420975,-455.934478,-171.279655],[-51.591629,-446.250549,-174.694603],[-57.763992,-458.610748,-187.705223],[-57.048904,-461.858581,-187.946953],[-41.981521,-459.033355,-171.128746],[-50.648636,-471.906463,-175.574394],[-57.597732,-482.627563,-184.024224],[-58.689896,-478.509582,-185.646630],[-54.375381,-489.680267,-182.418358],[-56.899734,-501.787445,-186.825219],[-51.552383,-509.111358,-185.656303],[-56.967483,-510.696350,-189.864281],[-57.661880,-470.833740,-186.083275],[-67.399490,-503.358123,-214.630363],[-65.170425,-505.415619,-204.052727],[-63.958755,-512.158325,-204.753227],[-70.524368,-526.342010,-229.393975],[-65.669327,-535.098510,-221.826530],[-66.883438,-551.652740,-224.884605],[-69.364944,-551.617431,-225.270348],[-113.581619,-520.422363,-211.941796],[-112.997513,-517.920105,-207.856681],[-109.092239,-513.933319,-205.871086],[-109.849869,-519.003601,-197.137657],[-115.301651,-523.003418,-210.301231],[-97.927750,-454.982391,-171.606498],[-90.580521,-483.565399,-198.855674],[-93.959610,-497.935028,-202.845848],[-92.433609,-494.762146,-199.822349],[-89.192947,-489.992523,-206.553703],[-95.483292,-499.725769,-205.084251],[-87.315140,-482.008972,-207.468132],[-86.607498,-484.146698,-214.730308],[-90.078506,-492.135101,-208.679985],[-89.500809,-489.337829,-216.733482],[-105.582657,-452.600830,-161.802880],[-102.145401,-444.441269,-160.896965],[-100.066421,-429.760147,-170.146263],[-98.625137,-431.766479,-181.066460],[-96.391006,-438.848266,-179.877495],[-93.044205,-446.909317,-193.846581],[-95.157242,-439.628814,-200.670616],[-96.733780,-436.932678,-184.295525],[-99.095840,-430.987014,-193.345420],[-103.356094,-417.772308,-183.809075],[-99.984024,-427.685745,-172.936241],[-102.217178,-419.463745,-174.359336],[-104.032852,-413.431503,-175.087395],[-109.417129,-392.448410,-166.006157],[-112.885513,-377.134231,-156.073997],[-117.011001,-373.169006,-169.755608],[-111.291031,-389.430313,-170.771660],[-113.891861,-378.671035,-166.521934],[-107.869583,-398.584335,-160.808250],[-107.323196,-403.529419,-159.258201],[-110.595657,-390.157135,-154.273034],[-111.911148,-382.423507,-153.958305],[-96.628738,-436.493835,-190.607232],[-107.981155,-469.757599,-167.823327],[-109.421951,-477.108886,-172.765557],[-111.004532,-480.842407,-179.930961],[-113.752762,-481.438507,-183.241996],[-110.933182,-486.015655,-180.489373],[-107.133499,-482.225189,-173.475761],[-106.641678,-486.101898,-174.082725],[-110.695877,-461.559295,-165.631798],[-112.815933,-466.485931,-167.053582],[-119.043167,-461.993591,-167.767602],[-124.538834,-464.032074,-171.601860],[-128.547317,-468.086670,-178.431512],[-128.627701,-475.258789,-185.807702],[-132.379654,-479.899200,-185.774987],[-128.858658,-481.326355,-187.331169],[-121.300552,-478.503448,-187.146813],[-118.399307,-475.668060,-184.730919],[-121.656082,-471.238800,-183.415214],[-124.417740,-466.748291,-177.954063],[-126.810867,-471.943725,-184.352868],[-130.514053,-466.322754,-169.591515],[-135.342056,-475.178955,-179.794640],[-138.743912,-481.812500,-180.955131],[-137.122208,-487.478271,-183.339012],[-144.686661,-490.887237,-176.789634],[-146.272659,-490.027862,-173.135583],[-141.296829,-503.487304,-178.308250],[-130.866226,-503.558380,-179.061639],[-116.927627,-499.596191,-178.759666],[-116.978592,-492.706878,-183.136101],[-113.751602,-492.402099,-181.193138],[-122.912491,-501.663940,-179.006157],[-129.978775,-509.574005,-174.339744],[-137.923477,-509.009887,-175.817009],[-145.333084,-509.964538,-174.739769],[-139.402420,-479.740753,-178.402549],[-145.606216,-487.715698,-168.532128],[-147.922623,-492.623779,-162.262840],[-146.771194,-493.284088,-152.592674],[-141.352371,-483.591766,-154.303550],[-140.243667,-477.775726,-142.946067],[-143.330948,-478.171539,-137.154319],[-142.175552,-471.746826,-143.717704],[-147.847549,-474.859710,-136.714715],[-152.074173,-479.073883,-128.267831],[-153.639053,-479.019897,-122.894889],[-153.682449,-479.951172,-119.424264],[-151.382889,-480.473388,-111.207130],[-148.305496,-470.227325,-117.007927],[-146.481460,-467.257934,-123.356133],[-149.261063,-470.590606,-106.848107],[-148.968277,-477.237060,-102.807350],[-148.902054,-475.289947,-109.289254],[-148.597977,-478.441772,-96.715187],[-149.589432,-483.913665,-98.496758],[-150.262527,-490.903656,-100.929115],[-147.813125,-478.664550,-134.405296],[-147.492630,-485.091827,-128.073815],[-153.956192,-491.198944,-116.237465],[-154.189834,-495.552978,-110.437324],[-153.923965,-500.752746,-104.804130],[-149.033768,-498.245849,-95.705558],[-153.537308,-505.669128,-100.192482],[-153.326492,-509.587188,-101.160514],[-151.154861,-515.117706,-96.066093],[-146.624161,-521.129577,-92.542076],[-147.083267,-519.433014,-90.644250],[-148.743179,-515.397308,-91.027687],[-147.766678,-505.917877,-92.212989],[-146.900894,-500.156250,-92.204690],[-152.137894,-489.337951,-109.989678],[-152.549759,-484.892303,-119.230308],[-152.403641,-483.483429,-111.804879],[-151.893936,-486.414642,-123.062156],[-150.940506,-483.615448,-105.212639],[-150.220840,-482.691131,-127.881172],[-140.576431,-481.419220,-145.186669],[-145.197830,-481.311767,-133.363365],[-142.699234,-484.153381,-176.266076],[-138.389542,-475.703399,-174.503410],[-133.021927,-470.108398,-175.176719],[-121.372513,-460.610565,-167.132226],[-119.451309,-457.198272,-166.566490],[-120.861954,-451.370605,-165.483178],[-132.427444,-466.309539,-152.287834],[-135.607925,-473.626770,-149.554802],[-134.685074,-470.833618,-167.261497],[-143.558914,-484.968902,-163.739921],[-139.187271,-477.274719,-168.080223],[-140.492752,-474.706482,-142.506309],[-134.424637,-472.917968,-153.287071],[-130.868301,-466.166290,-155.346245],[-130.409012,-464.490600,-151.876091],[-127.417190,-461.735443,-157.739677],[-126.810684,-462.345001,-163.307762],[-109.128616,-530.237884,-185.065300],[-110.297317,-527.716736,-185.318657],[-110.014053,-528.564422,-179.368370],[-103.215774,-521.285827,-172.649316],[-101.945999,-517.178558,-167.115532],[-101.566849,-512.808746,-170.785912],[-119.530655,-533.156830,-144.064385],[-120.626724,-537.490265,-139.127617],[-116.932876,-540.631378,-136.467553],[-108.790542,-543.307068,-145.078605],[-106.239395,-548.298431,-142.038384],[-108.621780,-538.620239,-149.119164],[-103.958389,-532.442871,-160.485924],[-103.219620,-530.050079,-167.211968],[-104.492325,-530.177704,-170.460351],[-107.510696,-538.407684,-170.723382],[-108.375198,-536.106476,-172.879875],[-105.002823,-537.339966,-164.179619],[-102.229446,-524.037872,-164.618737],[-106.087723,-541.002411,-157.297143],[-105.788650,-542.413421,-162.238639],[-111.115494,-536.877166,-143.786125],[-114.118729,-535.825317,-139.039482],[-119.077286,-562.785888,-140.723839],[-104.683243,-552.135864,-144.041587],[-109.164871,-600.063324,-171.472954],[-121.122146,-611.039520,-171.269889],[-111.905716,-607.929748,-174.172234],[-101.835220,-605.569030,-177.876365],[-98.419815,-596.880066,-175.217949],[-98.021011,-589.466552,-171.192071],[-89.196365,-599.232086,-179.518089],[-75.519974,-586.938141,-174.229515],[-69.871841,-598.648529,-181.030449],[-69.892044,-582.723571,-172.456169],[-59.279495,-582.360443,-173.353355],[-72.877151,-574.036651,-168.037223],[-73.527847,-567.584991,-165.709405],[-76.048477,-562.957550,-163.755272],[-66.339188,-574.659362,-169.988335],[-62.419449,-594.431854,-179.232598],[-56.424087,-607.663177,-186.163140],[-73.270523,-560.966522,-165.488914],[-71.744705,-578.417175,-170.181724],[-79.687393,-573.367645,-165.297508],[-85.280167,-565.807708,-160.186607],[-93.286575,-565.749267,-156.834953],[-89.078201,-585.277923,-171.148186],[-91.012894,-591.279724,-174.786828],[-83.423050,-594.833526,-178.292168],[-87.282242,-570.354309,-161.687340],[-79.946670,-579.504608,-168.819786],[-162.298782,-628.529510,-152.599175],[-156.031692,-619.811737,-153.231377],[-146.019913,-610.329834,-154.664878],[-142.606155,-604.948761,-152.714471],[-136.304764,-602.408477,-155.604637],[-139.599930,-600.605407,-151.220878],[-131.970474,-595.505493,-154.241722],[-136.477676,-608.833160,-159.067100],[-157.507522,-509.008636,-159.003686],[-160.635147,-516.025360,-161.665978],[-164.889664,-521.826507,-157.058831],[-182.575088,-550.314941,-133.107506],[-181.357925,-546.200348,-136.082878],[-175.310257,-539.990509,-137.103599],[-178.517166,-550.273803,-131.440940],[-181.961563,-555.176208,-128.124245],[-182.902603,-558.050750,-126.587318],[-174.755142,-543.693634,-132.761467],[-171.875748,-557.038177,-118.359231],[-174.458267,-547.230591,-128.112618],[-163.747574,-529.454986,-124.277565],[-161.085464,-519.928070,-123.533593],[-159.950455,-520.615448,-112.683632],[-162.167496,-526.170257,-116.179954],[-161.242203,-526.374481,-111.519218],[-164.901993,-537.773071,-115.317863],[-165.689041,-535.303894,-127.302956],[-166.429275,-541.745971,-120.426110],[-168.527603,-546.588470,-121.370445],[-169.302688,-541.237610,-127.905357],[-163.785477,-536.441559,-112.682014],[-159.448196,-525.516021,-106.882577],[-158.278580,-513.243530,-114.893638],[-158.312759,-511.250580,-119.784721],[-158.639664,-512.114135,-125.280906],[-154.798477,-501.051910,-123.767173],[-156.324966,-506.344909,-127.867759],[-149.823074,-488.722595,-123.831474],[-151.614212,-491.548584,-120.788018],[-153.626297,-502.645172,-133.297004],[-152.632034,-493.835479,-118.228782],[-153.436539,-496.767914,-114.479347],[-153.936539,-503.034668,-106.724922],[-152.348099,-496.744507,-103.578209],[-164.438675,-533.191986,-119.953271],[-189.529739,-588.638641,-129.629081],[-147.236587,-456.564209,-110.642219],[-147.862015,-455.962829,-97.628502],[-147.500503,-457.811401,-84.517876],[-147.452530,-460.233764,-83.530113],[-145.686722,-447.260254,-72.003486],[-148.378250,-436.524536,-67.801979],[-147.634109,-431.952179,-61.757393],[-149.419510,-415.428863,-54.698738],[-152.306106,-408.948440,-57.247169],[-150.943375,-392.665771,-46.496071],[-150.441055,-387.673462,-39.714042],[-150.360306,-370.094055,-32.125984],[-150.487808,-375.781234,-38.576896],[-148.753433,-366.965423,-45.794700],[-146.931778,-366.760482,-51.428428],[-147.390884,-377.376373,-58.054954],[-145.721268,-376.102188,-60.688469],[-142.635879,-363.410431,-55.647178],[-132.745376,-353.084900,-58.434426],[-132.486954,-339.434784,-55.162284],[-134.353592,-346.953125,-65.687919],[-132.069107,-347.361648,-62.009773],[-130.938492,-360.912292,-67.413993],[-130.584366,-352.180130,-61.540184],[-133.269485,-355.734543,-71.905769],[-132.992142,-368.042389,-79.236961],[-137.365188,-359.209900,-58.292076],[-140.234634,-334.993911,-37.015281],[-136.869278,-340.217483,-45.553444],[-133.421524,-332.888366,-45.107154],[-134.677078,-328.625976,-47.133140],[-142.742630,-319.844841,-38.715660],[-142.127029,-322.467491,-44.165351],[-135.680435,-323.171295,-41.322593],[-136.214432,-318.744468,-35.678749],[-136.610794,-311.995338,-26.141030],[-135.963333,-315.811454,-28.764657],[-137.306167,-308.611976,-19.454476],[-146.103775,-308.250396,-21.028160],[-136.891434,-319.659721,-29.581169],[-145.427017,-324.163025,-17.839073],[-151.680801,-334.024658,-18.274604],[-150.376663,-334.763656,-12.516166],[-147.920792,-346.489441,-3.468856],[-144.793167,-349.879883,1.676346],[-144.620499,-358.127548,0.153786],[-139.244339,-364.633011,3.295899],[-135.414688,-368.077926,5.439621],[-132.862930,-360.970459,14.422577],[-129.674026,-358.462921,17.887070],[-125.365982,-347.613037,28.965905],[-121.883438,-341.419296,34.866684],[-127.051041,-343.516403,28.184845],[-129.408768,-338.721466,27.858055],[-131.814773,-331.842575,30.304016],[-127.381668,-323.535026,39.954308],[-131.310806,-318.700004,37.778283],[-135.237808,-310.611015,34.438820],[-138.364761,-311.696670,28.523896],[-138.979141,-310.451484,27.270272],[-143.444412,-317.383117,17.145043],[-143.447891,-322.295303,16.366867],[-141.727371,-334.272552,15.072609],[-144.591324,-333.602112,10.098473],[-139.211441,-341.100555,14.666085],[-134.985123,-341.709900,19.805748],[-130.485977,-349.061798,21.883675],[-135.382461,-347.484588,16.364167],[-138.805923,-335.607025,18.955063],[-136.632339,-329.044189,25.453370],[-132.543655,-314.611641,37.704087],[-140.764053,-326.690124,19.978066],[-138.882156,-319.430961,26.388062],[-124.082657,-349.255218,27.968300],[-116.697220,-338.120544,39.599686],[-121.138504,-344.139892,33.225876],[-117.804459,-334.467514,42.368485],[-122.754410,-329.248520,40.176758],[-118.529861,-325.316147,45.978913],[-120.675247,-321.689544,46.111077],[-126.454788,-316.937118,44.399216],[-122.026688,-353.981155,21.777481],[-114.214065,-347.593887,28.774613],[-113.078140,-363.680084,13.725441],[-109.833023,-362.501281,14.082466],[-114.465896,-387.779098,-7.834907],[-109.695755,-388.913253,-10.881631],[-107.409256,-396.068359,-21.108329],[-102.131180,-386.686401,-16.074531],[-101.701248,-380.697067,-9.955376],[-96.015396,-368.510788,-2.316703],[-93.017898,-372.763549,-7.744331],[-89.174209,-381.376953,-1.255058],[-83.950271,-384.426727,5.005814],[-82.652603,-394.243774,4.058083],[-71.643082,-403.416671,-1.129753],[-67.670303,-402.936523,-1.292694],[-63.464920,-386.959274,3.128945],[-62.399917,-402.428833,5.212044],[-71.906326,-413.890289,-1.796646],[-81.172439,-426.964645,4.389084],[-75.656570,-444.548492,3.631684],[-80.881241,-439.232666,6.472687],[-85.540298,-434.665130,11.193154],[-87.860672,-427.792801,10.739937],[-90.637710,-417.825515,10.396767],[-93.550308,-414.828827,10.475747],[-95.772293,-420.823288,2.844948],[-96.317825,-427.696869,6.904244],[-96.216019,-430.521072,11.259140],[-96.004837,-422.483993,11.141587],[-93.194412,-427.228958,12.964745],[-96.751541,-423.787368,9.476738],[-86.055618,-424.733307,8.669838],[-87.457962,-417.626953,8.492607],[-78.169571,-437.206314,3.464425],[-88.190445,-412.840286,8.801751],[-84.143631,-410.983062,5.918053],[-80.086563,-410.306320,2.708481],[-85.403030,-403.876663,5.945023],[-87.599380,-391.608886,6.206223],[-82.086258,-401.684387,3.373963],[-77.382950,-405.336761,1.282334],[-91.599686,-408.876129,9.280640],[-94.573257,-397.472366,4.924454],[-95.376480,-406.695846,6.242699],[-92.788223,-405.075317,0.989174],[-94.036575,-422.826553,-0.790847],[-93.021622,-435.443649,-1.861595],[-94.085464,-448.666473,3.347374],[-90.416519,-454.470031,-8.576606],[-91.236404,-448.545898,-18.568809],[-91.190506,-444.820877,-19.797783],[-96.105850,-434.793396,-24.989402],[-101.906814,-428.177093,-30.897407],[-101.928482,-431.075317,-32.582588],[-98.335342,-444.098907,-38.556068],[-100.149368,-446.616150,-52.037117],[-98.153091,-438.170837,-46.462913],[-102.478653,-427.297455,-47.544166],[-99.969253,-426.506393,-39.495842],[-101.178665,-424.011520,-29.987846],[-99.200149,-417.795044,-29.493873],[-86.300918,-409.099304,-18.980339],[-87.666702,-403.140655,-20.589790],[-88.333572,-400.528839,-8.770362],[-86.148025,-412.027832,-16.298057],[-88.554459,-427.554886,-11.302635],[-88.971695,-436.304779,-12.007438],[-91.269424,-430.345840,-5.751205],[-91.203018,-442.544540,-6.690635],[-92.426712,-450.720001,-0.982544],[-89.632584,-419.535736,-7.495750],[-90.892349,-415.566803,-4.941017],[-93.995254,-412.017761,0.018013],[-89.482315,-401.787765,-6.102768],[-88.057327,-412.410324,-9.815086],[-89.725906,-445.425277,-10.589500],[-89.548477,-448.284179,-14.493339],[-90.137527,-451.003570,-15.679268],[-88.986526,-435.196945,-20.204795],[-100.365677,-430.416427,-28.248695],[-93.617081,-418.307342,-26.488350],[-91.595413,-433.193298,-22.618705],[-88.297012,-440.996322,-17.028267],[-87.762833,-428.655227,-20.174324],[-86.195755,-419.084640,-19.069297],[-86.896500,-424.756958,-16.149437],[-87.382400,-432.301407,-17.683036],[-100.495193,-421.838516,-38.394615],[-104.776382,-427.160690,-49.001457],[-99.388565,-428.803344,-44.249077],[-99.778946,-423.646881,-28.717903],[-98.807876,-436.502060,-38.662559],[-97.466629,-439.426162,-42.919090],[-95.702164,-428.060943,2.562493],[-95.554764,-441.614105,5.160530],[-96.252029,-440.480789,10.035042],[-96.335342,-441.374664,13.953682],[-94.866409,-441.187835,16.547799],[-90.380997,-448.573394,19.552094],[-92.418350,-457.059021,19.772774],[-89.320145,-459.443969,21.451584],[-85.885574,-462.662140,22.763832],[-78.167862,-466.642395,15.069611],[-82.271377,-444.450226,10.224572],[-91.275589,-438.378250,16.315804],[-86.290054,-441.707534,14.549652],[-81.455398,-452.155060,12.642563],[-78.771194,-444.134140,5.954209],[-75.193252,-460.709320,9.156159],[-71.104629,-458.511078,5.371331],[-61.472061,-462.858062,5.585724],[-61.576675,-454.307831,4.365212],[-59.895767,-456.197052,5.844414],[-60.976456,-434.072830,3.518509],[-61.381729,-420.436401,3.561356],[-66.034134,-456.049926,3.296532],[-70.426834,-447.740509,1.854058],[-72.428116,-436.567413,0.154137],[-74.401199,-426.944458,-0.237068],[-68.270401,-425.927734,-2.021324],[-64.592422,-418.994705,-1.688064],[-62.642105,-415.075638,1.085595],[-62.384476,-425.748611,0.529786],[-68.224930,-439.933304,-0.234573],[-64.839798,-440.661483,0.265038],[-64.009231,-452.393799,2.938958],[-62.026688,-445.347961,2.528794],[-62.729690,-434.276428,0.387604],[-64.146133,-428.573822,-1.208000],[-84.152176,-468.057953,24.039627],[-94.736709,-410.539413,9.321007],[-96.370254,-414.528991,7.505181],[-95.138687,-435.272552,14.739075],[-94.063431,-399.242996,2.815140],[-91.339004,-399.051437,-0.459335],[-91.191910,-401.491256,-2.942611],[-64.377823,-408.055999,-0.395042],[-63.079239,-406.102829,1.517655],[-71.309341,-394.150222,-0.309295],[-89.566116,-377.453048,1.388604],[-87.923050,-370.961425,0.403069],[-129.066177,-364.274490,10.488518],[-122.374161,-358.361648,17.414956],[-117.309158,-360.536636,16.704018],[-148.841141,-338.993576,-2.915542],[-148.847427,-331.635345,-0.773651],[-146.121475,-326.363525,8.305199],[-147.144424,-325.149048,4.489571],[-145.167679,-314.343918,9.436646],[-145.684830,-314.256302,0.089928],[-147.002884,-320.290947,-8.493736],[-143.105545,-312.883026,-9.495353],[-139.556167,-302.808647,-5.256569],[-139.999405,-308.241752,-11.194847],[-137.878250,-304.907997,-17.205436],[-141.046158,-297.079147,-6.860267],[-139.017898,-298.793121,-8.508979],[-139.012894,-297.896675,-1.960037],[-139.260879,-293.597618,9.258393],[-139.158890,-293.702987,4.308617],[-142.063980,-289.936012,8.782204],[-146.680984,-290.432136,8.427880],[-147.465103,-287.252693,12.904427],[-145.644241,-283.374267,21.130890],[-146.754166,-280.253219,22.906113],[-140.707596,-287.798317,13.774231],[-138.100845,-303.043960,-12.260505],[-140.212784,-299.766998,-11.502403],[-138.281143,-307.053795,-21.813743],[-139.574600,-308.482460,-24.370933],[-141.151382,-302.641922,-15.570243],[-138.424148,-318.307357,-35.685279],[-138.165176,-314.177253,-30.961204],[-142.468948,-317.639198,-33.660164],[-140.579056,-321.502220,-39.128411],[-148.868301,-304.979286,-16.102241],[-147.555191,-322.982299,1.235917],[-147.913467,-322.584106,-3.719093],[-149.527664,-329.608566,-4.805626],[-144.188003,-325.486770,-24.188851],[-144.664078,-333.763809,-29.950904],[-145.923660,-346.580002,-39.335029],[-146.239456,-329.939666,-25.481010],[-140.284500,-318.216652,-22.855644],[-137.626419,-313.718284,-23.140678],[-145.118973,-318.581947,-11.918037],[-135.691971,-323.624389,-35.034248],[-133.844986,-326.524917,-41.520317],[-138.679397,-326.927002,-32.829963],[-135.397110,-320.126411,-33.797187],[-142.743423,-350.419845,-46.956367],[-133.125931,-334.418167,-50.425027],[-139.357071,-328.098434,-48.075325],[-140.160721,-324.936615,-43.750938],[-139.078567,-330.819656,-51.733604],[-141.041946,-333.343597,-57.576240],[-142.467667,-337.654937,-61.103279],[-137.487808,-344.555786,-65.483360],[-136.803116,-345.298950,-49.312034],[-149.703140,-382.983276,-54.219842],[-150.375015,-375.976471,-46.496421],[-150.542496,-382.312561,-42.599510],[-148.769058,-462.286590,-99.717643],[-148.783218,-463.707977,-93.394157],[-149.444900,-466.079620,-86.752724],[-147.750564,-462.672180,-79.123878],[-148.456802,-466.417602,-82.876243],[-145.996414,-463.360534,-75.972053],[-143.185806,-451.193222,-68.132270],[-140.103958,-450.061233,-60.383079],[-138.796524,-451.973571,-59.841697],[-135.104874,-450.866272,-57.951774],[-136.050918,-447.070770,-54.488365],[-133.411331,-446.649353,-53.531379],[-126.966385,-440.569702,-48.652549],[-129.439773,-439.761673,-47.798072],[-124.486038,-433.145080,-43.982582],[-119.763687,-427.273544,-40.487617],[-123.889175,-422.163665,-38.289528],[-117.839065,-415.995193,-34.278892],[-116.926895,-423.031463,-38.482582],[-124.627762,-425.699554,-40.778450],[-128.239212,-431.867706,-45.425529],[-122.095474,-433.212600,-44.543586],[-114.553665,-430.081985,-47.578773],[-115.680130,-436.746704,-53.896843],[-110.500442,-442.216690,-62.070198],[-106.908951,-443.960113,-62.483513],[-104.959854,-442.768539,-58.528785],[-100.155838,-456.618652,-51.185249],[-101.458572,-460.781250,-54.234353],[-100.673538,-465.293914,-49.498314],[-104.287674,-486.344513,-44.306709],[-102.417068,-479.951385,-45.172981],[-99.739395,-491.174286,-32.724998],[-97.977798,-493.961364,-27.204994],[-96.380936,-501.572143,-19.985496],[-93.731949,-509.455200,-12.508323],[-98.536392,-505.814727,10.668267],[-101.373978,-504.161529,14.601265],[-102.081375,-502.002960,7.568207],[-104.378067,-501.226257,7.672760],[-104.871353,-505.156982,6.694016],[-108.578628,-513.134979,4.651284],[-106.297073,-521.831054,16.622918],[-105.302017,-514.098419,8.744057],[-105.034134,-519.508514,12.750763],[-107.659622,-501.897094,3.034409],[-106.424026,-509.525818,-8.810539],[-111.741959,-505.364593,-8.782798],[-115.743423,-506.105652,-9.339836],[-117.303055,-509.674621,-13.065193],[-115.428116,-513.826111,-14.958992],[-119.412552,-519.192352,-19.478691],[-122.163589,-521.652771,-19.547096],[-128.478287,-527.574676,-14.685493],[-129.974930,-530.843902,-10.046760],[-134.333572,-527.713440,-10.333931],[-125.844925,-527.735901,-18.142418],[-123.790054,-530.918182,-21.336799],[-115.979935,-534.687744,-38.205177],[-121.533768,-518.803436,-35.582664],[-122.102798,-518.111541,-40.531776],[-119.112381,-514.141754,-47.883583],[-119.357498,-508.016693,-47.989219],[-115.135147,-503.843719,-55.638145],[-115.164200,-485.281280,-59.665321],[-112.735184,-479.351257,-60.880561],[-107.394302,-461.705871,-64.849128],[-104.391983,-467.252746,-58.873069],[-105.563614,-476.095794,-55.726158],[-112.058914,-480.569610,-58.325767],[-114.665237,-486.920501,-55.976432],[-115.696854,-489.882751,-58.911918],[-120.873917,-532.798156,-27.903755],[-123.188614,-525.984405,-28.197013],[-122.868606,-522.470337,-28.504707],[-119.419327,-518.957946,-30.159752],[-112.451065,-516.174255,-24.219429],[-119.959183,-517.927734,-17.731071],[-127.246353,-517.889190,-16.081245],[-107.426773,-503.297271,-2.753662],[-100.557571,-510.850494,-5.385086],[-95.732742,-514.901031,-3.128387],[-96.760208,-513.956695,-7.577034],[-111.998917,-423.816040,-43.614662],[-106.126175,-419.601486,-42.684791],[-108.517044,-417.032882,-39.377449],[-105.308670,-408.867859,-34.026603],[-101.350723,-410.677261,-35.168068],[-89.868484,-396.872055,-21.452705],[-92.142471,-404.637024,-24.524421],[-98.938736,-408.304657,-29.525291],[-98.101150,-412.909073,-29.355735],[-90.228042,-414.941650,-24.553367],[-90.681106,-380.712814,-13.867347],[-87.667801,-382.203613,-12.650505],[-86.731216,-385.582473,-10.977914],[-88.657608,-388.683075,-5.746894],[-90.677017,-389.707580,-0.547851],[-93.389236,-389.631942,4.156472],[-97.896438,-379.195923,-11.220756],[-94.204483,-380.178604,-13.648048],[-95.348099,-387.345413,-18.921898],[-93.977371,-393.849258,-22.005790],[-100.165176,-397.940536,-25.643531],[-87.827103,-378.514450,-10.074119],[-88.877396,-370.848953,-5.218773],[-87.696121,-375.778442,-5.556991],[-90.317520,-386.411087,-17.124138],[-86.941666,-393.051788,-17.153649],[-86.484024,-389.823425,-12.850578],[-96.713455,-403.540466,-26.838386],[-121.942886,-441.419891,-53.861473],[-131.310379,-448.598114,-56.597358],[-124.620682,-445.766891,-57.267738],[-123.843643,-453.223938,-65.988929],[-130.466019,-456.745758,-66.851951],[-137.215347,-460.734710,-70.757804],[-121.388626,-449.762680,-63.581810],[-117.521377,-443.110122,-59.192573],[-114.072403,-448.897232,-66.918022],[-112.716324,-461.794403,-78.411323],[-115.759354,-468.903198,-81.705804],[-109.709000,-483.106598,-88.577202],[-106.281631,-488.991577,-89.348716],[-105.706070,-494.275055,-86.460853],[-107.881790,-504.347839,-85.828865],[-118.195145,-525.534454,-81.090477],[-116.958816,-520.643280,-79.157951],[-122.100540,-523.933929,-75.759819],[-125.337723,-530.802124,-76.946877],[-120.737259,-534.449859,-81.660148],[-122.784622,-541.409973,-84.558053],[-123.562088,-548.034851,-90.392952],[-125.292068,-554.620788,-89.333870],[-125.804764,-559.169616,-95.445091],[-126.265030,-554.089843,-98.969108],[-128.270767,-550.983276,-102.561410],[-158.085098,-546.080078,-101.584816],[-150.047867,-546.890960,-96.001289],[-147.111526,-550.846862,-96.011634],[-153.684891,-556.804565,-98.672447],[-157.559524,-553.626648,-101.565635],[-160.691727,-557.189941,-104.714759],[-165.646438,-556.848633,-111.723045],[-164.408279,-550.687866,-111.352562],[-163.002273,-553.773468,-108.497154],[-153.652237,-543.847900,-97.665580],[-155.791580,-531.911834,-99.615699],[-133.879837,-547.571197,-99.103492],[-128.602493,-541.730285,-96.366447],[-124.287552,-542.559784,-94.244987],[-124.441971,-550.209015,-93.787239],[-126.914078,-549.797729,-98.839164],[-128.821731,-548.125854,-99.401619],[-125.614456,-539.296692,-94.834922],[-123.644363,-539.231476,-80.330223],[-132.186905,-537.669983,-73.862648],[-119.492081,-529.251526,-66.926582],[-115.927750,-524.907928,-65.924507],[-114.476334,-523.826233,-49.748970],[-116.404190,-522.609405,-46.590461],[-115.990188,-515.277893,-51.378746],[-113.318619,-515.166992,-55.370201],[-112.733108,-520.986053,-64.379081],[-114.020035,-525.985229,-52.393150],[-112.150223,-521.474151,-59.340446],[-109.935928,-514.300628,-59.913215],[-126.826065,-559.879638,-89.097343],[-126.739273,-563.210296,-93.085167],[-131.011978,-571.498169,-88.743522],[-131.272964,-571.392639,-96.919747],[-128.314346,-566.345245,-102.530983],[-124.958267,-557.833618,-101.487251],[-125.008194,-559.798889,-99.707878],[-125.516800,-561.365265,-97.097679],[-135.632706,-577.979400,-90.918968],[-141.952469,-585.794738,-73.920265],[-144.887405,-588.384918,-64.336265],[-127.083511,-560.863067,-85.286522],[-126.000259,-562.945434,-83.862144],[-132.885940,-574.402496,-85.477409],[-138.082107,-581.241974,-75.111458],[-120.328567,-528.961029,-79.572914],[-121.037002,-533.203155,-87.955864],[-114.787369,-519.795013,-86.487709],[-119.493179,-528.871307,-88.132011],[-120.927750,-522.783142,-92.314766],[-122.341141,-511.308624,-92.043785],[-113.970108,-494.239258,-91.327003],[-112.266800,-502.547119,-92.533592],[-108.707657,-496.589294,-91.811882],[-107.128616,-499.299774,-89.728386],[-109.704361,-506.532989,-91.278785],[-117.085709,-520.979370,-90.103416],[-113.913284,-517.396972,-88.164711],[-115.211807,-515.191528,-90.887001],[-119.731583,-516.214691,-92.163902],[-114.725296,-515.706024,-78.119712],[-113.519546,-516.641723,-81.007423],[-111.714920,-508.558685,-77.985054],[-105.349563,-500.353851,-68.328193],[-103.767959,-491.814666,-70.383506],[-104.407364,-474.188965,-71.471061],[-113.471207,-482.970916,-63.035575],[-111.281509,-475.678589,-64.429512],[-109.543228,-470.919983,-63.542106],[-108.952225,-470.617889,-66.460487],[-107.852676,-464.352050,-67.031761],[-106.566727,-455.618866,-70.290947],[-109.074966,-446.220642,-66.025322],[-106.620560,-448.432235,-65.493325],[-106.172073,-452.935821,-63.767814],[-105.747452,-459.315918,-72.654809],[-104.514603,-466.215118,-74.300132],[-105.343460,-468.323394,-80.374229],[-102.868179,-473.223907,-76.021263],[-102.635879,-479.685852,-77.064399],[-105.466080,-466.573761,-71.377556],[-107.345413,-459.387970,-75.837989],[-107.995132,-468.824188,-62.520927],[-107.394302,-460.478790,-67.631858],[-102.769180,-486.057098,-73.138115],[-105.087784,-485.034607,-69.501533],[-111.513321,-486.060516,-65.233955],[-113.815201,-493.790283,-61.282905],[-111.364761,-496.417236,-62.960411],[-107.803787,-500.264587,-65.239250],[-106.630020,-506.361999,-65.681053],[-112.139236,-502.397613,-60.291955],[-105.139175,-490.871948,-68.665321],[-109.014236,-475.981659,-66.960823],[-104.648575,-478.512573,-69.769355],[-108.656265,-500.371032,-79.550483],[-108.051773,-499.961212,-82.047494],[-105.398575,-491.020263,-80.781228],[-104.956741,-499.271881,-71.700904],[-106.933304,-497.603302,-77.595008],[-103.809097,-491.908111,-74.595192],[-104.138199,-485.813537,-81.291741],[-115.478226,-516.510406,-75.832374],[-112.178787,-509.397644,-79.428947],[-114.861343,-518.267517,-72.621711],[-124.020767,-526.506561,-72.116600],[-120.140213,-521.260986,-74.466957],[-108.117691,-512.674652,-64.953971],[-108.411148,-509.736358,-70.520988],[-106.128677,-504.806183,-69.214562],[-114.246414,-486.154724,-89.209312],[-123.870499,-488.572693,-86.063026],[-127.731399,-494.246673,-86.154168],[-132.557938,-486.917022,-83.558586],[-133.225906,-481.538116,-81.699043],[-135.039810,-474.303039,-78.979606],[-138.820816,-491.007019,-84.791252],[-140.713333,-501.674926,-87.389732],[-135.178970,-499.164245,-85.845726],[-124.225540,-482.252777,-84.273170],[-114.681412,-474.089233,-85.016853],[-116.842667,-484.537109,-88.250862],[-122.284317,-463.150543,-75.020744],[-121.791458,-468.899872,-78.914924],[-124.354385,-477.003875,-82.219291],[-126.420059,-459.578338,-70.404823],[-131.753433,-462.383178,-71.628273],[-139.303604,-463.904205,-74.207696],[-142.675003,-466.596588,-77.922721],[-136.938370,-468.667419,-76.710807],[-130.438370,-475.930999,-80.081230],[-128.705337,-468.005005,-76.140281],[-131.936355,-467.828430,-75.535408],[-140.285293,-475.124664,-81.535607],[-143.806778,-474.951080,-84.666938],[-144.799454,-479.614044,-87.229469],[-147.551956,-484.749267,-92.699592],[-145.968338,-491.587066,-90.886680],[-146.631058,-477.316375,-90.485710],[-150.256546,-468.696624,-99.816429],[-149.079910,-465.182922,-114.547676],[-150.121414,-468.370605,-91.325356],[-147.648697,-472.740570,-89.084266],[-148.790726,-475.367370,-95.664299],[-142.274246,-470.649933,-80.599662],[-142.185501,-480.368408,-84.296486],[-143.583328,-491.806122,-88.204217],[-112.827408,-452.864624,-71.256614],[-138.823501,-444.230194,-59.369346],[-137.993667,-438.090866,-56.566825],[-143.397476,-439.615280,-62.804283],[-136.465713,-434.379379,-53.132270],[-140.274063,-432.325180,-53.453025],[-144.102920,-427.978225,-53.553138],[-143.977920,-419.721344,-46.935752],[-146.644668,-421.130096,-52.274040],[-146.541397,-438.155777,-65.807426],[-132.768570,-441.685013,-50.106117],[-133.738357,-435.322235,-51.305626],[-130.655167,-427.869217,-44.898277],[-134.915481,-422.458160,-40.444511],[-138.595352,-422.835006,-43.176994],[-135.741653,-440.069809,-54.025077],[-145.885940,-455.848388,-76.779487],[-138.522110,-451.160400,-123.607948],[-144.485977,-462.573791,-124.762643],[-148.485489,-470.928863,-123.081459],[-150.142410,-474.863739,-118.305030],[-151.788406,-476.244781,-128.244835],[-146.862991,-462.884796,-120.832405],[-136.494888,-457.160095,-129.461770],[-130.364395,-458.819244,-139.236870],[-126.403763,-452.423828,-134.759362],[-126.193375,-455.780792,-139.864373],[-127.828323,-461.104644,-148.972436],[-138.245987,-461.199463,-131.833488],[-142.767410,-465.779541,-132.081932],[-137.461197,-463.203796,-137.006035],[-144.467422,-470.218963,-140.869499],[-136.210220,-465.767822,-146.816002],[-140.211014,-468.891296,-145.561454],[-141.592300,-463.016601,-129.693077],[-145.957596,-469.107574,-131.734748],[-148.504715,-472.845062,-134.127281],[-129.976578,-460.996551,-144.229118],[-136.120071,-470.299530,-149.228478],[-128.478409,-445.757553,-131.030892],[-127.805801,-447.266922,-129.702339],[-146.153641,-393.382553,-72.205590],[-148.112076,-385.449112,-61.666252],[-149.019058,-401.658889,-71.080208],[-150.167190,-407.389709,-73.579704],[-152.940201,-420.773956,-74.957405],[-152.063003,-423.988296,-74.711952],[-151.201248,-413.910507,-58.877038],[-149.755997,-422.241897,-58.663963],[-151.169388,-423.419113,-64.461770],[-151.174515,-430.510513,-72.523888],[-151.000015,-436.247223,-81.796760],[-151.596268,-429.638260,-82.995033],[-149.263504,-439.134842,-72.608390],[-149.541885,-442.686737,-79.119866],[-148.049820,-449.508499,-97.305900],[-149.259781,-445.068374,-87.455117],[-152.137344,-416.710785,-65.169517],[-153.226639,-416.854095,-73.660270],[-151.936905,-408.249679,-68.200187],[-147.394119,-402.394943,-75.896888],[-152.864334,-410.201263,-64.450738],[-152.811966,-409.974884,-60.433036],[-150.775467,-401.273407,-63.424522],[-151.768143,-401.929397,-53.177513],[-150.426529,-383.795501,-47.447593],[-149.350540,-388.922088,-60.327186],[-131.216934,-381.546188,-80.226356],[-131.925125,-387.755569,-83.180352],[-131.934585,-384.314392,-84.888008],[-132.328201,-374.778015,-80.361396],[-139.015030,-380.843902,-89.626365],[-136.172867,-390.843094,-94.968391],[-134.205643,-406.385299,-93.377724],[-134.332046,-396.534851,-85.769889],[-135.822830,-393.394653,-81.922248],[-141.871414,-392.055130,-76.809227],[-134.355240,-384.724380,-77.948510],[-135.629104,-377.122116,-71.819221],[-138.081741,-372.732940,-84.341195],[-131.464371,-370.191177,-70.976036],[-131.296158,-375.739608,-76.212516],[-172.218887,-416.036758,-117.632270],[-169.578018,-403.389908,-120.446983],[-170.198013,-398.048340,-118.242912],[-170.869766,-389.934051,-114.497704],[-172.038040,-376.533218,-113.796928],[-169.283951,-394.922851,-121.815605],[-170.137344,-387.290252,-120.732444],[-174.427017,-392.730896,-104.398658],[-173.488418,-379.077728,-97.316749],[-172.980972,-386.318237,-105.590890],[-171.933487,-381.034454,-108.810250],[-172.493423,-370.830978,-98.475532],[-173.698318,-362.568786,-103.704719],[-173.467544,-355.133194,-94.764534],[-175.897415,-355.891464,-100.879158],[-176.950577,-359.069565,-109.362770],[-186.947098,-338.848495,-103.664116],[-194.860245,-326.607254,-100.568963],[-192.056839,-327.598602,-96.780769],[-197.557449,-318.028999,-94.348213],[-199.085220,-311.949585,-89.352501],[-203.543960,-302.901191,-93.665733],[-206.252090,-286.430618,-85.636131],[-206.663406,-285.287552,-91.939965],[-205.541092,-280.743713,-95.501030],[-204.106033,-275.356651,-94.538047],[-204.542435,-269.117439,-90.626747],[-195.825394,-271.232040,-90.746391],[-192.783523,-261.856598,-81.796028],[-194.702103,-239.714145,-66.835151],[-197.413956,-237.142723,-68.173195],[-199.474686,-233.127983,-70.340080],[-194.549942,-226.061102,-65.613975],[-195.875870,-221.963569,-65.253761],[-189.871536,-218.771320,-61.750892],[-180.704971,-210.000613,-54.524879],[-179.256851,-214.775156,-54.455543],[-175.561905,-209.482103,-51.985176],[-174.031387,-218.504850,-56.276710],[-174.424698,-224.451126,-60.145196],[-167.827286,-224.716577,-65.415916],[-171.196426,-244.079532,-77.722725],[-161.694778,-236.268619,-73.957939],[-159.737137,-237.929893,-74.039024],[-148.833023,-221.759620,-52.842918],[-147.868667,-232.071281,-53.726432],[-149.067947,-237.817932,-57.325051],[-153.460586,-240.784515,-66.221443],[-151.057815,-244.760776,-62.493202],[-151.009354,-250.331890,-64.193901],[-152.785660,-261.590538,-71.114647],[-155.307144,-267.202438,-76.731712],[-154.745621,-286.287773,-83.283897],[-151.530533,-288.775444,-81.736367],[-155.883377,-291.273475,-87.080009],[-156.850174,-301.565139,-92.902977],[-148.463516,-299.278755,-87.576470],[-139.320206,-298.390564,-85.520652],[-135.940994,-313.098602,-95.611427],[-132.244278,-311.146827,-95.204445],[-134.233169,-317.882850,-98.776725],[-134.683670,-325.366775,-102.888450],[-130.304703,-323.238426,-102.950721],[-127.089676,-329.314010,-107.488014],[-126.488541,-337.173767,-112.249488],[-123.021500,-338.481598,-117.746895],[-121.367691,-333.158584,-119.924050],[-121.947403,-317.010696,-112.911277],[-121.543716,-308.999237,-117.838005],[-123.135757,-287.234268,-99.250709],[-122.887588,-289.339256,-104.368966],[-123.793411,-286.902221,-111.714882],[-126.590530,-282.225067,-119.492073],[-126.522415,-288.898781,-125.365456],[-126.937393,-283.416183,-124.548545],[-113.897354,-288.855690,-127.423577],[-108.313064,-296.392799,-127.938362],[-105.086929,-291.324974,-123.410637],[-101.759109,-299.853302,-126.869912],[-112.999466,-302.849266,-133.524559],[-111.622818,-315.929031,-143.565879],[-108.518204,-315.991729,-141.780021],[-108.555618,-320.615112,-146.011071],[-108.643082,-331.919708,-155.495750],[-107.355667,-312.041023,-137.527642],[-111.515701,-309.117225,-137.307212],[-106.044998,-303.493271,-130.765053],[-127.726700,-279.279907,-121.200172],[-126.724625,-278.249260,-122.551979],[-127.444778,-269.052002,-118.797050],[-119.988724,-264.330490,-117.465768],[-113.053543,-269.769493,-116.348457],[-117.671829,-258.306640,-113.015754],[-113.348709,-260.863395,-111.477256],[-115.577774,-250.534393,-107.984276],[-112.193924,-240.889835,-101.227013],[-112.150162,-227.118066,-93.458030],[-108.649551,-219.743873,-89.831963],[-104.870071,-213.482757,-87.360481],[-102.869400,-201.214760,-83.163322],[-99.063736,-202.702561,-86.465873],[-97.364822,-204.074627,-91.383659],[-98.097916,-213.643961,-92.386970],[-98.077225,-227.288170,-96.866524],[-98.076187,-239.935417,-103.532722],[-96.705276,-241.096504,-107.038169],[-96.882645,-252.512047,-110.668586],[-98.972122,-249.779190,-106.935539],[-102.385635,-249.785583,-104.543586],[-96.466995,-226.703766,-102.429833],[-96.810196,-216.230240,-97.154518],[-97.035477,-224.854772,-98.032310],[-97.125748,-210.235401,-95.887703],[-96.871170,-221.303638,-105.516122],[-97.816177,-191.171221,-85.631218],[-98.630081,-182.943507,-80.856392],[-100.931778,-181.537828,-77.542823],[-102.175247,-173.828064,-73.907249],[-100.136856,-161.480808,-69.504784],[-98.807632,-147.893997,-63.803933],[-103.248489,-164.825119,-69.781990],[-105.587540,-164.640608,-69.320091],[-111.369827,-172.910658,-73.103600],[-121.386001,-157.560295,-70.003364],[-131.154495,-163.086040,-70.776970],[-128.904861,-156.152862,-69.332328],[-105.331253,-153.130821,-64.378608],[-107.313675,-149.825866,-62.999107],[-104.146744,-137.398784,-57.225944],[-100.982071,-151.064544,-64.005333],[-97.571426,-152.424366,-67.456367],[-96.217056,-153.146694,-87.121758],[-99.799698,-150.113399,-96.512230],[-98.015579,-151.366462,-91.213737],[-97.474014,-171.632923,-92.819664],[-96.976334,-175.893516,-86.552284],[-97.423721,-183.827777,-85.526848],[-97.263687,-169.032314,-76.549813],[-98.810318,-172.648258,-75.884636],[-97.426651,-192.766423,-89.474281],[-99.437088,-181.691893,-100.242286],[-100.884476,-164.562984,-107.888329],[-100.332413,-156.866630,-103.688087],[-100.831680,-159.732036,-102.395469],[-100.412857,-160.913742,-99.948692],[-109.487991,-176.489759,-74.194664],[-118.085098,-180.324813,-77.957374],[-116.414444,-166.657865,-72.325829],[-123.950394,-167.283340,-74.663993],[-99.174454,-191.159702,-82.556663],[-101.300857,-187.436251,-79.247245],[-103.457535,-191.231062,-79.725578],[-106.098770,-179.145870,-75.228477],[-105.960098,-195.579330,-80.881065],[-119.295669,-192.946981,-83.265663],[-132.657242,-206.059407,-86.334129],[-130.740799,-201.951374,-88.528679],[-125.928787,-208.866166,-91.739219],[-125.627457,-218.339805,-95.937478],[-131.225723,-219.736173,-94.796714],[-132.340530,-195.292228,-74.227806],[-129.198685,-195.626484,-66.007728],[-126.276565,-187.633295,-56.199821],[-124.621963,-183.844330,-45.358848],[-124.694290,-194.528118,-47.134468],[-131.482071,-195.155494,-36.299888],[-133.337479,-181.970108,-30.414741],[-134.754715,-178.419346,-28.753579],[-137.825516,-181.337339,-29.973748],[-142.606888,-166.313512,-27.253181],[-157.836136,-179.497663,-38.308571],[-152.506363,-182.719233,-40.082557],[-156.598587,-187.980235,-43.440011],[-153.415237,-196.309422,-48.732338],[-156.601944,-201.556501,-51.990013],[-159.951797,-218.084486,-62.753579],[-159.234573,-226.581390,-67.850410],[-162.834915,-211.413142,-57.006371],[-166.263504,-196.069861,-45.919807],[-165.834793,-187.726520,-42.165489],[-159.305008,-173.777883,-34.678901],[-152.708877,-161.098217,-26.089195],[-144.653702,-151.103065,-20.929237],[-140.680130,-145.535522,-17.329597],[-129.555679,-143.334606,-17.106254],[-129.117020,-131.579261,-13.211784],[-131.621170,-133.287243,-12.065147],[-131.567520,-121.949211,-7.628517],[-128.716080,-112.263115,-6.454933],[-127.199600,-109.365158,-7.685586],[-125.899979,-104.519249,-9.013298],[-125.223404,-102.827217,-11.317466],[-125.120193,-104.152466,-14.705497],[-124.654800,-84.552719,-16.010887],[-124.680008,-83.250099,-4.599296],[-124.557693,-75.391006,-4.992790],[-124.179275,-66.523040,-3.931419],[-124.843765,-60.438659,0.266243],[-127.975784,-66.185486,4.759133],[-140.572952,-69.726097,0.850861],[-141.150345,-77.530952,3.921723],[-144.540970,-76.795814,-4.351570],[-146.871841,-64.313781,-13.633186],[-143.614761,-53.886154,-11.728614],[-136.691299,-47.832122,-4.252914],[-137.063187,-29.818100,-6.151405],[-131.455582,-25.706375,-1.249107],[-133.610733,-21.989456,-5.015052],[-128.034622,-22.673828,1.899285],[-126.843765,-13.302505,2.553391],[-123.417862,-13.447586,6.836441],[-121.922500,-0.584411,9.449692],[-114.092972,18.465088,16.401886],[-112.971512,26.164002,17.524910],[-109.996780,31.544068,20.223198],[-107.128921,35.435898,22.852707],[-101.242752,61.347260,37.002068],[-104.469864,67.810913,39.524788],[-103.127823,77.023499,45.772866],[-99.352981,81.252625,49.306664],[-97.897415,90.676575,55.574669],[-96.313675,82.376068,50.186051],[-88.019791,96.193970,55.693756],[-84.391189,99.263398,53.974800],[-81.076980,102.610169,51.350724],[-76.391739,95.872223,42.691491],[-74.068619,92.718201,37.594696],[-76.199112,79.436493,30.297081],[-71.309097,77.204712,30.053963],[-73.650345,85.814576,33.083176],[-67.501114,87.977082,34.631188],[-62.475723,91.726807,35.938813],[-56.043411,97.785126,37.854317],[-51.343582,100.450104,37.181794],[-46.433426,108.640381,29.429772],[-51.724380,95.479096,18.614479],[-43.955704,91.388275,16.859604],[-30.107193,108.132813,28.723061],[-33.910232,116.754944,30.937157],[-42.909500,107.832367,23.716935],[-42.667374,113.068512,27.255471],[-45.585220,107.028900,23.537949],[-48.764786,102.239411,22.041001],[-49.486954,101.183014,26.132943],[-47.216019,105.452851,35.998253],[-45.377701,110.660004,27.489144],[-41.206558,117.779145,31.746071],[-43.287796,114.576020,31.541977],[-41.192032,119.344269,36.770180],[-38.300125,125.752381,46.696427],[-42.444961,117.890107,42.185761],[-43.792251,119.925934,49.169648],[-49.866653,118.561859,51.358765],[-51.063187,126.648255,57.973465],[-62.527298,111.097168,45.315483],[-68.985733,98.487397,38.807289],[-69.769119,101.118897,40.601616],[-71.774612,104.125397,44.802872],[-73.453384,110.815827,50.919281],[-72.526443,90.462494,35.022667],[-62.383133,101.107971,40.605553],[-56.844009,110.449372,45.671021],[-47.803055,110.940674,42.561661],[-45.976578,109.281159,37.684807],[-47.415115,118.628052,50.749985],[-53.489700,116.944031,50.014466],[-51.459732,111.870667,45.582962],[-58.836441,101.056397,40.484139],[-44.477493,115.788025,44.141121],[-60.489883,117.201325,49.206711],[-38.566727,119.585968,32.045830],[-29.289871,117.612946,34.516297],[-24.889236,115.218476,35.082604],[-26.206009,119.819733,37.618340],[-24.013321,122.379151,40.179253],[-19.373245,128.440766,44.998299],[-14.709122,133.590363,48.443810],[-10.709305,140.133789,52.039017],[-12.483353,151.571656,41.389229],[-12.806595,154.172821,39.162972],[-13.559708,163.418091,34.049996],[-12.846695,164.791504,36.273560],[-11.755997,169.671326,35.762619],[-12.865616,180.405274,29.988121],[-13.940689,187.097321,16.916672],[-13.721573,193.445587,14.014084],[-16.111954,196.011109,11.162201],[-15.764786,188.258667,13.888207],[-16.608230,179.694306,16.489808],[-17.708877,174.631684,17.257386],[-18.224869,166.424286,21.024506],[-23.964065,161.306000,23.600571],[-18.037308,153.370758,33.785134],[-19.521866,157.825806,26.841690],[-19.668960,160.587464,23.764840],[-26.905411,167.473023,18.924530],[-15.220352,171.238495,22.876648],[-14.585525,168.147309,26.418732],[-13.671219,161.868988,30.890053],[-14.469375,164.469361,26.950890],[-13.705887,187.238953,23.087799],[-16.905167,151.387085,38.957070],[-19.607254,153.180268,35.079575],[-22.800857,154.436707,40.520844],[-13.921280,158.052948,32.326615],[-15.519607,157.648590,30.294426],[-14.672378,153.516480,35.357949],[-17.171280,137.511994,51.450928],[-13.406692,142.910645,53.910057],[-23.978653,151.617768,47.011109],[-27.075394,158.306397,35.445107],[-36.675552,156.837891,36.026337],[-44.924087,166.256653,27.111580],[-16.270950,149.721985,50.961625],[-17.873978,149.128144,53.251656],[-7.685440,144.975830,52.183190],[-5.613785,149.462616,47.727227],[-8.479202,147.561066,51.939194],[-13.338394,146.301178,53.770340],[-11.280777,149.569825,45.858239],[-25.385269,143.019593,56.196938],[-26.621597,136.728058,49.730004],[-44.525589,131.287293,59.786774],[-43.053238,124.740784,53.232827],[-48.436783,134.995148,64.660473],[-44.001968,139.331177,59.597187],[-40.421158,141.193787,57.961190],[-44.005569,137.659607,50.046242],[-50.639847,137.298523,52.058434],[-51.465530,140.449646,51.466973],[-65.466202,139.827942,56.632103],[-70.341873,140.144287,59.026516],[-71.575821,137.449860,61.657669],[-75.059402,137.323914,67.650059],[-76.628372,136.643311,73.407692],[-76.049759,135.493073,83.200112],[-77.404312,129.301606,91.227883],[-80.073929,130.098877,96.972304],[-80.758865,131.756378,100.916844],[-93.361832,126.784699,111.180845],[-92.198074,132.508454,119.987356],[-92.784561,134.358582,126.099007],[-97.154495,128.642975,125.390175],[-99.403763,124.457947,117.119420],[-97.867813,112.738617,131.425571],[-100.567398,105.510926,128.848536],[-103.815750,100.387604,124.916633],[-100.960403,101.112732,124.203530],[-108.456436,97.003174,119.889467],[-107.478470,107.777161,122.391236],[-107.598892,110.497711,121.833092],[-116.326492,103.025788,103.449013],[-122.940445,94.433228,95.798659],[-123.917740,93.230286,98.863606],[-126.871414,88.127137,99.699211],[-122.188370,87.740204,106.843970],[-129.483963,77.114991,99.993071],[-136.374832,73.236237,95.007643],[-141.471756,68.643280,91.664147],[-140.890701,72.479706,90.227354],[-143.792740,72.662934,85.364842],[-153.937515,61.902741,80.890244],[-155.281387,58.069672,81.652211],[-157.831924,54.038086,77.951332],[-149.844070,53.152588,76.299034],[-152.149368,45.815827,72.385327],[-157.328323,35.261780,67.684754],[-153.006729,34.897675,70.650372],[-148.033951,32.529526,73.631081],[-146.583389,29.027039,70.670678],[-140.913772,30.393174,67.689827],[-136.025711,22.120148,55.887856],[-130.003738,28.886658,59.777516],[-132.733414,20.243836,53.628746],[-125.149856,26.068970,60.850079],[-123.838394,25.341660,62.986020],[-122.283035,19.926331,64.588341],[-122.601272,13.159836,69.570168],[-120.448257,22.023560,84.028851],[-119.079727,22.223358,78.973896],[-115.988479,33.458771,87.436924],[-113.901260,39.982865,89.223019],[-113.233292,43.556565,87.547100],[-115.429336,43.601075,82.932419],[-113.413956,53.892319,86.561768],[-112.714310,62.731263,87.287697],[-115.081314,60.154557,83.563561],[-117.828079,62.288178,84.257252],[-113.515945,65.669342,86.505692],[-114.402481,70.149781,90.271592],[-108.930557,79.780243,98.277285],[-104.781204,80.504700,101.699707],[-102.953323,89.350251,107.230542],[-102.484939,92.246186,109.582224],[-101.517471,94.879151,113.391635],[-98.402969,96.276459,116.608608],[-97.456802,101.827240,121.671659],[-100.156998,99.018799,119.075406],[-117.318619,75.917755,98.601292],[-125.777481,74.381440,100.942475],[-133.792801,68.774964,94.348116],[-135.327835,67.922333,96.218079],[-140.230301,65.276276,91.258866],[-140.759903,60.287842,82.499615],[-137.669083,59.847306,83.364144],[-143.827225,53.101502,78.149075],[-137.503372,53.720215,83.152195],[-128.867447,54.257035,84.668812],[-119.316299,50.218064,76.375466],[-117.809097,56.309281,80.018246],[-122.022903,54.517838,78.510781],[-115.912552,66.057648,86.850815],[-122.367203,57.359818,81.677109],[-126.010452,59.729401,88.624279],[-130.468399,61.315674,89.195618],[-130.679886,69.189331,91.519429],[-122.731521,72.322419,94.917620],[-124.404434,66.225525,93.155299],[-120.497024,67.687897,93.521384],[-114.561294,74.925354,96.415457],[-123.730179,63.455475,91.629610],[-129.861465,66.740265,89.822626],[-135.530716,63.658539,85.317009],[-134.152786,67.284455,89.585122],[-124.104385,73.564392,96.258585],[-130.383743,71.640595,100.196928],[-134.195328,70.471863,98.436224],[-137.516006,69.630036,95.699276],[-141.871048,65.614167,92.033409],[-141.368729,62.194580,84.818642],[-147.566360,58.456009,81.503777],[-147.556351,64.589966,87.061032],[-145.983719,62.545533,87.290081],[-114.137039,78.623535,100.492478],[-115.748184,81.770813,107.549404],[-110.708511,82.276520,101.746575],[-108.399002,94.335724,119.991662],[-114.642715,100.716797,114.390572],[-115.674820,101.620179,111.325304],[-116.482742,102.213471,107.441376],[-106.512283,94.219147,119.320428],[-109.869278,88.494965,113.388667],[-108.427383,62.711792,96.344527],[-107.564529,76.603119,96.401656],[-108.322769,69.594788,95.901728],[-106.035354,72.297211,100.360648],[-109.851578,70.403748,92.007935],[-110.853836,72.188904,91.596297],[-111.182754,61.087738,91.077584],[-112.140274,51.905976,90.318043],[-109.005386,58.531098,100.156517],[-110.435928,55.065918,104.459444],[-115.017593,42.981354,100.707484],[-117.692825,33.248734,93.557076],[-122.857132,19.094086,84.997548],[-124.602310,7.827256,74.776493],[-128.127090,1.705841,73.619507],[-130.441788,-4.489135,70.060543],[-137.923294,-8.446518,73.276455],[-146.987198,-28.977325,64.898621],[-149.024795,-37.942138,67.041459],[-151.827530,-49.372757,66.387825],[-152.737930,-49.448364,60.794915],[-154.511856,-50.967025,49.581025],[-156.699295,-57.055175,47.960503],[-162.422928,-84.964126,44.586968],[-158.506363,-76.312050,60.319664],[-158.033829,-76.121338,66.491742],[-158.026016,-78.828026,69.665036],[-156.538834,-77.762794,80.079564],[-157.988602,-83.640831,77.057618],[-157.413956,-85.198974,79.071896],[-153.694839,-78.576751,87.053219],[-154.360123,-69.318359,85.028530],[-152.330948,-67.999206,89.867672],[-146.094864,-67.002105,94.389302],[-144.638748,-57.362808,98.576207],[-141.354935,-50.727783,101.049881],[-138.017105,-46.650802,102.337910],[-135.300918,-43.899933,102.244704],[-134.819168,-34.348358,107.113484],[-139.695450,-30.715194,108.307038],[-142.684585,-39.509399,104.162358],[-137.806229,-38.137237,105.803131],[-141.781692,-44.782684,102.870621],[-146.511551,-54.962845,98.830948],[-132.613541,-33.112320,106.160589],[-127.607254,-25.664062,105.922573],[-116.501297,-30.651779,111.162506],[-114.385269,-19.686813,114.023260],[-111.992325,-8.625610,117.361382],[-109.997818,2.210816,120.490278],[-109.427627,-0.463089,122.837256],[-106.984451,11.332321,126.045799],[-105.792496,8.891083,129.698200],[-107.215591,18.965073,127.560107],[-100.755630,34.269669,137.002737],[-104.508133,30.614487,133.621307],[-95.195267,46.392105,144.788315],[-91.709488,55.063614,150.500561],[-96.512649,55.739518,146.028164],[-102.976639,60.122223,148.179308],[-103.747940,61.666626,147.446009],[-100.367752,69.774933,150.325621],[-97.579056,76.109650,153.195975],[-94.167251,62.622132,148.861119],[-93.279556,57.262223,148.030280],[-99.398880,61.452576,148.955075],[-99.474930,66.808136,151.308630],[-104.526260,18.972290,130.462989],[-103.821792,12.775605,134.346130],[-109.415787,-4.442810,127.136168],[-111.719742,-10.712753,122.487313],[-110.839310,-10.500168,129.384880],[-115.118301,-23.283600,121.390723],[-120.109329,-44.314941,113.005235],[-118.076736,-35.973831,113.561337],[-118.228104,-57.791717,117.780141],[-113.551102,-52.852447,120.739184],[-111.884598,-52.964889,122.161765],[-105.833572,-35.625427,132.073238],[-104.916885,-41.635971,134.582286],[-96.842544,-41.818802,146.670985],[-91.000809,-39.000244,153.637106],[-82.870621,-28.643478,160.512635],[-85.560684,-22.693039,158.323540],[-91.311966,-14.672622,151.789669],[-108.254471,-20.546432,133.445739],[-111.759109,-16.302612,129.677324],[-105.498062,0.229126,137.118084],[-106.195511,2.072678,133.787643],[-101.270340,-45.960266,140.816224],[-107.067703,-49.328399,131.466968],[-102.201736,-54.208404,139.805638],[-95.251175,-52.359237,149.334549],[-90.002457,-53.897262,154.318626],[-85.864700,-62.092285,157.357289],[-87.001724,-38.604614,157.070771],[-93.700943,-60.896911,150.877379],[-98.087540,-49.960907,145.650345],[-119.222305,-51.085708,118.358537],[-119.518448,-45.440719,116.979656],[-117.377212,-34.319275,119.962583],[-115.027298,-25.424179,124.736499],[-110.689041,-43.428650,125.384640],[-108.971573,-43.197128,126.785798],[-104.533951,-28.148178,133.815589],[-100.155777,-23.835281,140.230091],[-97.012710,-31.295517,145.518450],[-113.417557,-17.726120,125.389696],[-115.028152,-23.324905,116.613624],[-123.477127,-26.226059,103.542366],[-144.507278,-88.471626,81.374977],[-146.622879,-97.042373,78.574269],[-148.091751,-103.683754,75.417237],[-150.568252,-117.261337,69.876919],[-148.935135,-120.287368,66.256707],[-143.129288,-118.199386,59.857418],[-140.721634,-128.239616,52.325837],[-139.844864,-120.714790,55.744912],[-137.946854,-131.213188,49.244698],[-140.940201,-142.299225,44.987130],[-138.395828,-155.665561,37.886231],[-135.625503,-155.629356,39.405404],[-135.704544,-161.860466,39.044785],[-137.178482,-163.032077,35.552552],[-143.816299,-170.821088,31.338044],[-153.768204,-188.703938,29.675576],[-146.317764,-199.946015,16.583939],[-154.757889,-199.186322,24.493348],[-157.643814,-217.435768,18.375138],[-160.060257,-224.104669,17.564492],[-155.103531,-224.657442,11.888611],[-158.689407,-230.186927,13.257706],[-156.075394,-244.563923,3.404175],[-154.154495,-234.509453,5.724411],[-152.888321,-247.496864,-2.522171],[-158.392105,-250.201034,3.684418],[-159.862930,-257.432560,0.564049],[-169.240005,-261.808792,2.259972],[-178.701309,-267.696335,-6.332223],[-177.276565,-266.376571,-3.373237],[-172.797623,-258.655464,3.443261],[-170.650406,-252.554310,6.959610],[-163.689285,-259.835258,1.589997],[-163.697952,-251.001426,6.966790],[-167.104324,-248.374103,9.246277],[-164.266495,-234.147758,15.985581],[-162.015335,-231.981010,15.658036],[-163.641556,-222.163217,20.723191],[-159.568130,-240.366596,9.206406],[-161.036697,-244.354625,8.670235],[-168.751846,-237.771454,14.719757],[-166.641434,-234.725071,16.171921],[-167.608841,-222.965975,21.349274],[-166.854507,-193.032351,35.931168],[-166.082718,-183.768504,41.305230],[-171.051041,-183.185472,36.504090],[-173.093948,-181.838426,32.406701],[-173.070328,-175.723453,34.330216],[-173.303421,-170.008709,37.228821],[-176.767044,-170.064407,39.182244],[-181.921707,-163.479419,35.182351],[-185.700821,-170.512010,32.747338],[-186.249039,-165.933548,29.036560],[-188.159317,-169.141025,26.272103],[-189.796890,-166.069105,23.959366],[-191.035416,-162.700084,23.098580],[-197.170242,-172.102152,21.736916],[-198.786209,-176.875509,22.706910],[-199.296829,-178.737796,23.674248],[-200.938553,-194.175488,34.784493],[-197.690933,-196.144922,36.465546],[-194.800247,-195.597173,36.095780],[-189.570328,-192.948006,34.481354],[-196.020401,-197.822315,33.093895],[-207.866836,-203.885772,28.904908],[-211.861343,-203.269427,37.167710],[-212.046341,-201.857035,38.174172],[-206.776443,-197.840178,36.496727],[-208.865555,-202.079183,37.743576],[-202.352066,-199.418980,36.788430],[-203.448135,-201.439813,33.624306],[-197.701065,-199.116246,25.916817],[-200.013016,-199.830292,35.203965],[-195.855118,-150.006824,25.895295],[-199.670853,-162.468128,25.300629],[-188.416275,-156.226036,25.468674],[-170.886001,-173.234472,40.544953],[-172.403213,-164.893915,39.578926],[-169.986893,-158.407890,45.962166],[-168.992142,-145.944526,52.498230],[-168.888626,-137.921135,54.215348],[-167.102554,-136.787506,57.247902],[-166.034317,-129.059662,60.192269],[-163.470047,-120.837417,65.640713],[-164.124527,-116.307541,65.088654],[-154.666763,-100.760521,78.862725],[-147.733353,-91.017364,82.381806],[-152.248855,-102.492241,77.969620],[-153.980850,-120.950454,70.344960],[-155.201858,-130.940849,66.115902],[-152.724686,-129.573333,65.367073],[-151.941299,-138.611332,59.472252],[-148.368729,-145.517692,49.969796],[-153.426651,-148.425632,54.845086],[-154.966446,-156.473934,51.073204],[-156.024612,-164.013153,47.767884],[-158.825760,-165.960420,48.998146],[-158.373917,-172.779199,44.466683],[-163.896683,-187.153510,39.979943],[-154.948196,-109.390190,75.357056],[-157.435318,-118.083030,71.562664],[-161.178970,-135.156093,63.593083],[-158.115555,-130.323143,66.524746],[-159.103653,-139.427124,62.739277],[-160.975418,-145.015350,60.200966],[-164.188980,-152.150158,55.566468],[-165.466812,-159.308086,51.980454],[-161.776260,-157.549511,54.449204],[-160.996658,-162.515567,51.903222],[-156.081314,-152.271351,54.740639],[-158.426224,-148.993770,57.893238],[-155.686294,-140.234501,61.439545],[-151.527237,-111.740524,73.366719],[-169.045425,-131.868618,52.930512],[-171.542129,-132.893974,42.799492],[-168.287125,-122.918976,53.485772],[-168.448807,-118.969276,50.140877],[-171.213272,-126.897041,41.337799],[-171.497391,-122.795593,38.349465],[-172.736526,-117.071182,34.716011],[-176.372940,-116.638870,31.409218],[-168.588699,-98.512268,31.710740],[-165.950760,-87.129631,29.167710],[-163.211929,-83.628181,32.512436],[-161.640274,-79.138443,33.390244],[-158.672012,-64.893081,44.190545],[-158.938125,-70.840721,35.360215],[-157.073257,-60.829940,42.867432],[-156.536148,-66.255996,26.864647],[-163.351456,-66.244705,16.257676],[-160.189957,-64.884521,18.802681],[-163.332840,-68.374557,18.210869],[-167.263382,-71.229103,16.317482],[-168.105911,-76.279945,23.513375],[-162.051163,-69.492485,23.306557],[-162.197281,-72.452285,26.485215],[-169.126602,-82.986717,28.047280],[-165.145401,-81.656196,28.868058],[-171.242813,-82.980034,25.698449],[-173.043350,-92.774604,29.184067],[-175.034866,-93.132972,27.833588],[-175.247330,-83.548912,22.933388],[-170.093643,-76.762199,20.590371],[-176.065750,-90.456962,23.691048],[-173.769119,-105.712913,32.381859],[-170.280533,-107.896507,34.444443],[-174.183060,-85.554992,22.672943],[-159.250442,-73.737083,30.339142],[-162.113785,-77.145324,29.376809],[-176.550186,-142.794346,36.856232],[-178.954056,-147.484611,35.223839],[-181.902786,-156.858833,33.837243],[-189.250870,-136.543174,23.669365],[-196.114090,-132.729686,25.529480],[-191.264297,-130.589058,22.954453],[-188.755081,-122.508911,21.071015],[-186.509109,-116.124054,19.376336],[-183.826431,-122.052566,23.989930],[-181.352371,-128.421585,29.623536],[-183.183365,-130.352874,26.330399],[-181.410049,-119.729835,27.045174],[-177.688248,-112.639442,30.253632],[-178.351272,-103.948997,28.486840],[-185.821365,-125.975074,23.085419],[-185.505569,-141.872242,26.630974],[-188.730972,-143.324089,24.709313],[-176.599502,-126.019745,32.456833],[-176.779129,-134.525905,34.956726],[-172.539322,-133.483596,40.533951],[-170.689285,-143.790439,48.347214],[-171.927322,-153.694969,42.338326],[-172.433182,-140.945148,41.513062],[-166.212173,-113.265732,57.696534],[-163.860062,-100.020942,56.135003],[-163.018387,-96.446373,60.026169],[-163.674148,-102.074402,62.514916],[-160.783829,-89.242920,67.258149],[-158.492386,-94.692093,77.249699],[-154.949661,-88.287788,84.030659],[-151.964554,-83.844528,86.700051],[-153.961197,-93.813804,82.309460],[-156.469192,-95.548149,80.229668],[-164.916641,-111.487999,62.224072],[-165.208816,-102.224128,48.640007],[-161.841202,-88.026207,53.480378],[-165.844253,-121.266975,61.061009],[-162.055984,-105.053848,69.670380],[-161.195389,-111.331672,70.944798],[-158.022171,-101.754051,76.623246],[-168.028519,-167.662599,46.066147],[-164.260452,-168.176996,48.780907],[-167.825577,-157.851864,50.058258],[-157.334549,-208.495241,22.995148],[-160.814529,-205.957837,28.269043],[-160.496963,-215.207781,22.419419],[-165.136673,-213.283075,26.071778],[-162.413956,-207.503838,28.605164],[-164.567337,-194.484555,35.907318],[-165.902359,-201.080377,32.711991],[-160.238052,-198.410884,31.734482],[-161.248367,-188.475702,38.025086],[-162.467911,-179.238382,43.384941],[-158.987930,-178.979015,41.012413],[-155.910354,-191.268538,30.433426],[-144.297745,-160.752914,37.093651],[-149.658340,-162.035488,40.779343],[-152.882584,-168.134702,39.844231],[-155.478042,-175.089496,38.532967],[-149.190872,-153.433460,45.728501],[-145.529373,-144.642749,47.485993],[-146.616836,-135.849640,53.546997],[-145.952652,-120.917198,61.363648],[-145.156021,-126.610229,57.258088],[-148.209488,-173.260387,32.639565],[-151.844314,-171.848709,36.287468],[-141.801651,-153.316490,39.642220],[-145.749771,-152.348228,43.096032],[-140.586441,-135.458217,48.697739],[-155.528458,-70.349502,74.744736],[-152.925430,-58.954406,75.626427],[-150.964859,-48.187210,71.769734],[-146.997024,-34.532715,76.730153],[-144.574356,-28.014541,82.110337],[-141.646561,-19.510254,90.241074],[-140.468399,-14.703888,86.127598],[-138.931045,-9.352722,81.485001],[-134.777237,0.434128,79.906643],[-131.312820,9.088349,85.769097],[-133.066849,6.114930,87.025086],[-120.551346,28.430420,92.609070],[-125.651504,24.205475,94.917265],[-125.628311,12.682953,81.857914],[-131.523819,2.597504,78.522465],[-141.143570,-13.673996,73.347859],[-142.783035,-20.320678,76.576279],[-138.486587,-6.536697,79.018078],[-145.807754,-28.842407,72.501999],[-153.932388,-65.564758,83.534367],[-151.379227,-58.237625,90.453202],[-146.666397,-47.708984,98.949183],[-150.148880,-60.175598,93.978543],[-148.394607,-64.027725,94.768479],[-157.980484,-62.283920,49.534356],[-158.686355,-70.035652,51.792687],[-113.470474,43.926361,96.772032],[-117.142837,32.053620,90.173314],[-110.636001,53.138703,95.384390],[-106.410171,67.777253,102.565096],[-102.691055,80.309876,109.574376],[-99.279617,86.664612,118.439447],[-99.953689,83.855866,120.267319],[-96.764786,92.806885,127.068283],[-99.700638,85.686249,129.152078],[-100.667679,85.474488,140.353766],[-99.703079,77.565064,145.661606],[-106.288589,67.623291,105.560810],[-104.492020,72.692841,115.194250],[-110.427566,63.222626,121.019084],[-105.972366,71.715546,138.139662],[-104.653519,68.439362,141.124855],[-106.383560,76.776398,133.117071],[-106.628067,74.241455,128.472762],[-101.402176,85.954651,135.077878],[-101.144363,86.809510,137.457654],[-102.162796,79.279389,113.975528],[-101.495987,81.380860,127.076943],[-105.967605,71.383606,121.322467],[-136.338150,79.647095,91.542040],[-136.194107,81.261933,88.342091],[-135.507584,81.284149,84.814236],[-134.767959,80.021454,80.255440],[-128.601944,86.134552,83.653355],[-124.139664,89.832245,82.093110],[-124.808975,87.356537,76.504029],[-116.346878,97.137787,85.779049],[-116.855362,99.024323,91.620564],[-110.273575,107.071900,98.703253],[-106.594375,108.994843,96.410324],[-110.129776,110.403717,108.693310],[-108.976700,111.397034,114.560850],[-110.007339,109.371857,116.374446],[-103.766800,116.976654,123.348264],[-103.558487,114.903870,126.393516],[-132.124466,80.109650,98.062527],[-104.914017,104.867615,124.173084],[-98.621841,117.484070,94.096403],[-86.975662,125.288727,95.292735],[-85.842300,129.856324,102.105475],[-80.948624,128.649292,96.953265],[-81.924454,117.542145,74.084668],[-76.898636,125.285492,75.018185],[-77.344498,120.607941,67.484444],[-71.276199,116.444214,54.500946],[-79.554947,102.396668,49.250504],[-83.656265,113.406647,70.092045],[-92.379593,110.730347,74.835076],[-97.683609,111.348419,76.726933],[-104.579910,109.260742,92.233122],[-100.736648,115.980316,102.107043],[-97.387039,119.356629,102.439015],[-97.387588,117.579499,90.467741],[-98.078567,114.346253,83.049054],[-100.005630,122.056519,112.492407],[-104.204422,117.264832,111.061331],[-103.533646,118.884034,117.042173],[-104.731521,114.303986,105.124739],[-111.294876,102.101258,88.645409],[-112.609512,97.082764,79.993988],[-117.622757,92.704224,77.958077],[-123.033523,85.649811,70.356900],[-130.626358,78.654236,65.667832],[-135.374283,66.317871,53.199562],[-132.536270,62.044648,48.659615],[-124.705215,61.028107,48.052933],[-121.608353,55.259430,43.027108],[-124.601211,43.666947,36.223091],[-120.450333,52.674927,33.990593],[-123.029739,45.165192,26.672890],[-127.351150,27.826248,20.935891],[-129.578445,19.594742,10.686646],[-128.177811,29.948410,6.067910],[-129.790481,29.075135,7.703789],[-127.734634,37.589905,13.239624],[-123.255875,39.214081,11.260979],[-116.091263,41.098160,14.262787],[-116.092117,32.947922,10.695069],[-119.404068,32.490326,7.894226],[-124.190811,42.573044,14.326157],[-121.162491,34.394226,8.077919],[-127.102432,30.733979,18.559594],[-130.801163,24.746048,6.488320],[-129.308731,30.753586,11.144715],[-127.823379,36.230576,15.049561],[-115.601272,52.766678,21.662392],[-113.739029,46.143174,18.271241],[-109.215835,46.382920,25.321808],[-103.678116,52.621994,31.578209],[-106.409927,45.314560,26.941727],[-107.168289,65.749695,36.603737],[-107.062576,75.174317,41.862084],[-100.457352,51.412583,31.143105],[-107.614822,53.311432,30.189659],[-112.128494,53.177643,24.293312],[-110.110367,62.494141,31.843445],[-111.129043,67.611328,33.392449],[-119.911392,60.325470,27.286782],[-119.686600,53.570130,21.648407],[-122.754349,52.797303,23.194077],[-122.396316,54.652497,28.590645],[-116.221878,58.786774,25.432686],[-114.080032,67.652924,31.602921],[-118.702164,62.004669,37.253876],[-121.018997,62.794770,48.133126],[-119.668533,55.863602,40.641411],[-119.573196,54.658463,37.473923],[-116.530960,70.886719,49.640038],[-117.247696,64.000367,43.657135],[-116.409744,68.306763,44.381035],[-117.072464,66.852600,31.271164],[-115.546158,75.428498,37.191666],[-118.672134,67.648072,35.068650],[-103.527603,82.475037,48.452294],[-111.483963,88.394837,48.143174],[-107.023270,83.278748,46.130761],[-111.031509,75.096619,37.872918],[-112.193497,82.646180,42.588021],[-113.330948,77.456757,38.634911],[-116.299698,77.666046,40.952652],[-117.156143,71.385285,41.081734],[-116.323807,75.623841,54.125328],[-118.622330,72.235169,53.461655],[-121.925552,76.753113,59.034974],[-122.601761,71.203186,54.513169],[-114.271377,84.233185,45.874039],[-113.005813,91.239746,55.124291],[-112.742691,88.583924,60.100636],[-115.398880,82.039246,60.079754],[-119.704971,81.242951,62.855561],[-118.264969,86.237641,68.092305],[-115.862869,91.406281,73.622898],[-111.591202,95.352722,73.839085],[-106.482254,105.897553,84.080162],[-103.075271,111.723145,84.046299],[-102.851517,110.287415,77.608704],[-106.460098,106.566651,77.117180],[-106.760879,105.592499,71.795948],[-110.177627,99.726044,63.180283],[-111.613418,96.268128,59.934327],[-111.703628,93.240906,66.080384],[-109.350784,99.860749,75.708573],[-109.266067,102.394715,84.943955],[-129.817337,76.336853,61.379261],[-114.959061,77.363068,51.832985],[-128.871719,71.570984,55.737442],[-114.661880,85.248474,49.919999],[-112.506485,91.820282,52.881455],[-103.772049,95.969483,56.334999],[-106.430130,95.952118,54.534005],[-110.099014,95.831543,54.853913],[-96.644791,97.894471,60.459553],[-90.919876,100.886414,62.390885],[-81.918655,106.370850,57.894871],[-75.248306,114.863098,56.135872],[-110.278458,37.828156,21.386307],[-113.786941,39.561417,15.992409],[-129.287857,81.923371,70.200978],[-135.662796,74.050843,64.695462],[-140.846573,70.562073,68.442173],[-139.701980,73.933106,74.239827],[-155.617935,57.788391,64.679860],[-164.037063,49.536988,67.321194],[-160.683365,51.024033,75.344918],[-158.323807,55.941208,78.234944],[-159.156937,56.889328,74.378579],[-155.750870,61.484558,74.743145],[-153.108841,63.092041,70.543419],[-144.937820,69.994385,73.534706],[-141.627334,75.172791,80.456337],[-161.466141,51.604264,62.959637],[-161.688736,51.977097,73.680844],[-159.713272,56.176407,67.778954],[-145.945206,64.185578,64.839074],[-148.678665,57.274124,59.861420],[-154.237320,55.466355,61.257016],[-156.214798,50.156845,58.190339],[-161.265213,46.282059,57.629456],[-169.248001,36.117142,55.405518],[-169.664566,37.344940,59.438477],[-168.154068,39.821808,64.012055],[-165.748917,45.027100,67.771752],[-163.671402,45.483963,70.804726],[-166.328262,43.870209,60.652310],[-162.422806,48.493882,60.344635],[-142.094986,67.132355,64.005024],[-137.310074,69.929444,59.296570],[-141.604446,64.810334,58.165493],[-141.944595,61.780274,53.496140],[-148.149429,51.950592,51.552300],[-139.163162,59.365235,48.524132],[-137.572342,49.261017,40.661286],[-131.899124,48.487961,40.387947],[-131.817703,58.628220,46.450219],[-140.270584,52.820984,43.659867],[-143.501846,55.514984,48.131234],[-130.250015,82.846772,76.707589],[-135.870621,76.416931,71.720612],[-92.768509,115.301270,81.984318],[-88.223831,118.329865,84.475254],[-81.879959,122.584320,86.196068],[-83.330948,119.200074,81.596177],[-93.046524,118.471894,87.691380],[-94.770401,121.439881,95.758345],[-86.117020,122.906098,90.081274],[-92.819595,125.642121,103.798712],[-90.556656,129.008759,107.416474],[-77.593155,140.064209,85.104802],[-78.513260,145.003632,86.666973],[-82.123917,139.134125,91.541226],[-88.151138,138.911438,94.762917],[-93.809830,144.834442,102.230158],[-91.161697,146.443024,105.252182],[-84.309158,146.085694,115.674882],[-80.540787,143.627930,113.121606],[-80.168045,141.260529,112.507578],[-84.731338,137.944092,113.550228],[-88.387344,136.328003,118.969908],[-87.089737,132.520539,106.985491],[-80.140274,135.372895,105.689687],[-78.857376,136.304322,102.767189],[-85.025467,139.965058,104.140894],[-81.650467,133.507660,98.974387],[-87.004227,134.886658,96.524979],[-83.003006,133.147980,94.161518],[-79.839554,133.559021,90.323187],[-90.858047,138.528626,99.137337],[-78.645706,148.615143,123.542627],[-77.345596,152.218933,126.603037],[-75.071182,154.735077,128.770747],[-70.539078,159.551056,137.008021],[-75.570450,168.659821,136.899391],[-75.448257,178.887116,136.359841],[-78.463028,164.044281,133.702670],[-74.434708,161.384217,132.097479],[-81.206314,171.602265,135.755274],[-75.774917,170.224060,134.270244],[-74.504471,169.777802,135.158087],[-73.571915,162.170716,133.677721],[-72.835770,159.274750,132.276546],[-73.348160,156.718842,133.429088],[-71.385696,158.287049,143.921961],[-67.063064,162.047425,149.312952],[-67.677078,164.782349,144.211644],[-65.775528,165.316529,151.577431],[-62.685684,163.123658,158.963681],[-63.380752,159.027405,161.710572],[-58.384842,162.863709,163.829628],[-55.449295,164.633362,167.985222],[-47.883865,167.982056,181.409935],[-45.018631,159.283783,185.457955],[-47.689590,150.610810,180.800839],[-64.336136,140.266968,171.597073],[-62.459244,135.284485,171.093884],[-61.272354,123.449128,174.905480],[-66.062942,112.417481,173.515904],[-67.036087,118.270600,170.598561],[-63.089004,108.680481,176.987973],[-59.211868,107.412384,181.491932],[-56.718643,112.582794,183.093499],[-51.592605,118.138916,185.218937],[-41.801590,131.743927,186.979919],[-44.360367,144.680329,185.236927],[-53.943313,147.520172,175.190674],[-54.120071,154.561676,172.928303],[-58.273209,143.195496,172.221501],[-46.132217,151.909973,184.023819],[-48.572769,126.782776,187.049714],[-51.082229,124.126282,186.110863],[-46.114883,133.919648,187.478455],[-59.674393,116.826508,178.225670],[-55.684524,126.136414,179.593045],[-51.832413,125.387757,185.043496],[-59.224930,113.126679,180.134781],[-52.190933,135.317292,180.126522],[-58.092789,133.243988,175.150887],[-46.234512,124.738739,185.785729],[-44.090835,122.875031,185.955071],[-37.399002,136.423859,188.661911],[-32.206192,141.116852,196.747048],[-35.952774,153.711304,194.940728],[-40.476883,152.532379,190.580857],[-29.612930,165.431610,198.759621],[-11.847793,179.281342,196.695572],[-6.298355,181.848816,198.487236],[-9.284073,183.175385,199.839241],[-5.654434,190.337433,198.435027],[2.835800,192.248688,199.905770],[0.144211,202.189911,202.760552],[-1.073624,204.515869,205.135590],[-5.046036,213.747773,208.795906],[-9.641067,214.260315,208.504082],[-12.169937,230.883606,204.920113],[-1.510818,232.552491,204.158463],[-5.849930,225.059357,205.260056],[9.309433,220.297943,206.088051],[7.508774,230.428894,203.994629],[24.946762,233.398255,202.503365],[27.828415,246.495728,197.686432],[38.294907,258.865204,197.596787],[43.600205,251.240113,196.249451],[42.174118,255.649414,188.040261],[49.881455,243.660309,189.666222],[53.371628,234.820160,190.319382],[46.683701,229.400055,190.929528],[50.115402,221.595826,190.485802],[48.604538,220.574738,191.452523],[52.244614,212.191498,190.415116],[54.132553,202.089783,197.778931],[52.355148,205.956452,200.438988],[43.938706,212.486725,202.193787],[41.045578,217.683838,206.519257],[27.709885,213.068634,209.816811],[27.843308,207.950806,206.374588],[23.042648,200.928772,201.997292],[30.384262,196.992005,194.822907],[34.954758,196.513825,193.395378],[40.703598,195.929535,191.436219],[37.120041,197.760254,194.164940],[44.515732,195.781372,189.808846],[50.275437,195.357849,187.071953],[57.549240,192.956452,182.198037],[68.305405,183.278717,174.019612],[61.366318,174.193726,180.526169],[56.261887,174.595093,185.898758],[47.968674,174.851166,192.330948],[45.591782,178.551606,194.853272],[38.293137,179.113068,198.677742],[31.541733,182.971405,198.481926],[22.571030,182.780426,201.138344],[23.398911,197.996277,196.355278],[21.622666,199.715943,197.197640],[28.376694,199.485565,195.918274],[21.547897,200.306794,199.301751],[15.713608,197.592041,197.633736],[15.428513,199.461396,197.968644],[10.483627,199.958710,198.783554],[8.406662,198.402497,197.924118],[10.915207,192.354279,200.425858],[20.898056,192.637116,199.467743],[19.011704,187.860779,202.462746],[15.472763,185.114716,203.177323],[10.019821,188.333527,202.819710],[25.788010,186.457733,201.357010],[10.665390,201.547974,203.229050],[18.114792,202.017639,205.458869],[31.287705,189.287995,199.193146],[45.133713,188.138367,192.772240],[59.815598,184.066651,182.754685],[60.901291,180.123139,182.208928],[65.745651,180.770294,177.808876],[63.955490,177.531555,180.326847],[56.375717,178.959442,186.940796],[57.080124,181.792206,184.301781],[54.514755,177.329712,188.731514],[53.279648,190.670899,186.243401],[31.626755,213.318146,206.689164],[45.880722,206.950745,199.820916],[55.241684,209.067017,196.883895],[49.625900,218.419190,193.366042],[51.572006,222.689118,199.588295],[50.489304,226.090943,201.936997],[51.976181,219.914826,201.627266],[53.852829,215.766571,199.480194],[50.470810,221.595459,203.406182],[48.575241,214.807373,204.289490],[47.462509,220.379486,204.713012],[38.539841,224.372986,206.142891],[47.530380,234.318695,202.273453],[47.328171,238.806366,199.179955],[43.189377,251.498535,193.060776],[40.840439,257.463623,189.644950],[38.837082,232.145691,204.448998],[53.660385,210.351349,200.839829],[57.333359,197.754303,190.794876],[59.128891,196.968933,184.008961],[61.767075,199.901795,182.156186],[70.985947,195.745758,182.649937],[70.270554,189.881714,171.363457],[69.218247,188.430573,171.583195],[62.722641,188.432495,178.549920],[56.691269,201.637207,193.183953],[60.901047,207.421875,186.950005],[56.264328,208.173889,186.890755],[57.313767,203.480866,183.580696],[55.886276,202.639862,186.612549],[54.083725,207.634919,188.648170],[53.207260,213.813172,189.161805],[54.822067,217.481415,189.916466],[62.505844,221.211823,189.443840],[67.441147,227.604096,190.468078],[70.002182,227.037018,189.711380],[70.018784,229.704651,187.143853],[66.409409,238.234070,186.580719],[61.004807,248.876465,186.835174],[60.831284,245.067597,188.593171],[55.613815,257.297333,186.681084],[51.038010,259.849884,186.605614],[45.114914,259.040314,187.552765],[39.133652,269.366120,192.450669],[38.857773,261.851349,196.429322],[29.616379,255.060059,195.381920],[26.716721,251.153900,195.755753],[22.373764,253.035736,194.644562],[17.793686,252.637421,195.075409],[17.877731,260.738373,193.699494],[12.541550,261.755310,194.598488],[19.717575,274.079163,189.965546],[24.234848,276.997528,188.837609],[21.585922,302.005951,183.010285],[28.340378,299.035401,183.550053],[29.937363,305.208283,176.426175],[32.647263,298.856903,179.264214],[34.809677,304.064209,178.258995],[37.233627,305.111725,176.324047],[41.466904,292.881409,181.303959],[43.212082,294.679047,178.153698],[42.428574,299.971131,176.347527],[45.427048,302.074799,175.291615],[51.480881,292.640137,176.170445],[59.912338,289.864838,176.702473],[64.317246,283.363800,175.422722],[69.343918,267.325928,172.292355],[72.449143,270.710602,173.402298],[71.800888,279.432404,176.225285],[75.991745,275.022400,175.559658],[78.738205,285.437287,172.184201],[81.115402,278.977478,171.268090],[86.762802,277.329865,166.354126],[90.413742,266.389771,164.473568],[87.583786,265.661774,168.075966],[93.140549,253.328553,164.776348],[91.041062,250.263977,169.526574],[94.060227,239.722534,167.375664],[90.908676,238.066315,167.959278],[93.689682,227.738983,164.881394],[97.634140,227.116181,164.720723],[99.737839,234.903443,154.984593],[98.273911,224.538697,148.492857],[99.116806,217.561829,147.499636],[98.482529,216.543671,142.161549],[102.180649,214.752808,152.105744],[104.893845,209.068634,154.066147],[101.591538,225.777954,156.775937],[103.061997,217.981415,156.911877],[100.228500,228.211457,153.239006],[100.566330,211.415192,146.561854],[98.845688,219.177094,137.572937],[97.873764,233.000916,138.707421],[101.482773,233.054230,126.754645],[102.718918,223.333435,123.237620],[103.831650,233.913483,119.819547],[115.792954,246.704102,111.526307],[123.345139,243.093506,111.214006],[125.238022,240.679505,109.328353],[120.654770,239.745575,108.846202],[125.353684,233.437165,107.708390],[101.172714,213.779114,129.401039],[102.733933,216.642853,121.952643],[105.733688,222.388794,113.995730],[105.727280,229.994599,115.193153],[107.810349,235.250367,111.198786],[108.418076,225.472016,107.509000],[116.083115,233.973267,105.705986],[109.552841,215.068665,106.609728],[121.947128,199.980072,110.732672],[126.194016,199.490418,108.115826],[122.613205,177.946137,111.087476],[118.495712,173.894959,114.475250],[122.575607,170.160004,103.756680],[126.963547,164.249848,93.821394],[123.990646,155.237244,82.690342],[116.242783,143.391541,73.133110],[114.155380,140.661164,69.998173],[112.372482,137.457459,73.263379],[109.304428,139.022095,77.599930],[104.180100,148.926697,100.183033],[102.333054,152.712647,97.538998],[100.440415,157.059449,97.794981],[108.777512,163.303894,99.900166],[117.760727,165.131531,99.170216],[118.510727,171.355011,111.074944],[94.813400,164.454621,119.785326],[101.015610,154.833435,106.666393],[99.686325,156.976990,99.791886],[95.196579,165.953308,107.905332],[97.342087,161.534516,104.137425],[98.375656,167.936798,109.634937],[99.065109,166.392639,105.670651],[100.153366,163.866303,102.539488],[108.194443,168.566407,112.906660],[100.791123,168.522034,117.277724],[96.058518,169.233490,122.425038],[93.248032,171.284577,130.012020],[91.004196,168.715393,138.008862],[91.417954,173.996399,136.344083],[90.074814,172.709687,136.619115],[84.268906,183.726776,147.754492],[88.487290,180.785919,142.951676],[87.566086,185.160858,148.568999],[90.523056,184.580994,153.702309],[83.812241,186.408478,151.948685],[79.847763,181.635590,160.499455],[75.275437,182.406922,166.598099],[70.094223,179.553925,173.957157],[69.285568,177.388916,174.699845],[72.154160,188.336090,168.535660],[75.825668,187.664093,174.150616],[82.909653,191.336975,180.639939],[81.168259,188.789399,180.624687],[78.361313,195.969849,186.326226],[78.169724,189.131928,180.392617],[73.223618,190.942017,178.332970],[78.091416,204.181671,188.120423],[75.918991,209.810517,189.251351],[72.825791,215.966461,190.467476],[72.853806,220.796051,184.390503],[75.861435,218.227112,169.363125],[73.678146,228.130951,170.323243],[71.746201,241.234650,170.865094],[65.328354,249.851410,173.769501],[68.336899,250.911896,172.051140],[63.425156,245.655396,177.354275],[64.904465,244.252259,175.195603],[68.184372,239.296387,173.531792],[70.986130,227.385559,172.952572],[69.032456,229.506501,180.988690],[72.229660,224.280457,187.184197],[66.972519,236.585205,175.643799],[66.202255,236.958069,178.719170],[69.754196,221.648133,190.516762],[68.537888,211.244294,189.348130],[65.000595,205.157227,186.840851],[73.610947,200.061829,187.373200],[68.754746,199.161103,184.483723],[76.538681,193.363617,184.583676],[75.209152,203.486695,189.000481],[63.755783,210.477631,188.273789],[69.641281,226.158326,176.166466],[102.301926,178.985657,129.404195],[108.174851,179.490509,122.572575],[106.206040,182.729279,123.609628],[110.354904,187.452118,119.075487],[119.003586,194.633606,113.891623],[109.693710,193.796967,116.713747],[103.598129,194.051850,121.997841],[103.206040,185.710999,124.969166],[100.789780,171.347138,134.248480],[100.235825,173.583405,139.458037],[100.654282,183.170197,153.566363],[105.627182,183.200531,150.817694],[106.726242,199.036011,151.258110],[105.179672,199.813080,154.486123],[105.916062,204.161621,153.964287],[104.519516,209.357117,158.485131],[108.024582,189.604737,149.978362],[108.248032,184.816895,148.517199],[105.402146,178.795868,146.537215],[105.829880,177.778046,140.830683],[104.320175,175.551880,140.436268],[104.425095,176.756592,136.836897],[102.726181,174.720002,133.811385],[103.871994,184.089173,136.313734],[102.028977,179.028076,132.644555],[101.533737,188.796204,129.507068],[101.765427,189.990967,126.802203],[106.631882,208.065613,112.059188],[107.957321,221.298310,106.877836],[109.125290,204.166199,112.139881],[113.388474,203.166718,111.168239],[108.027390,184.781739,145.419455],[107.739060,189.877869,146.005366],[103.556137,194.389069,139.452830],[104.911301,201.527802,147.233616],[102.296738,200.620056,140.446770],[100.863083,207.096161,134.110113],[101.884506,198.016144,130.520281],[103.137314,208.141327,118.949806],[103.860886,206.051483,117.197131],[101.564499,205.306000,129.013729],[102.495407,192.407776,133.372862],[105.808823,186.490723,152.519369],[102.701767,190.267823,155.092343],[94.342148,195.211792,159.435471],[89.711350,189.036621,161.832867],[84.735947,187.997895,155.139676],[81.175949,187.813141,158.742752],[76.375107,187.013031,165.142727],[78.318649,187.988495,167.533913],[80.829208,192.617035,169.805581],[81.828049,187.958191,172.639771],[80.310532,196.624512,168.000679],[82.320297,203.229065,163.826966],[88.077377,208.536133,161.744881],[84.786606,215.928101,163.405945],[77.048569,233.963410,167.943932],[76.678024,239.844818,168.415370],[77.147568,245.344208,168.677548],[70.127365,263.579132,171.718502],[67.806687,262.375763,172.232075],[57.753525,276.603485,175.306763],[51.549118,284.848847,176.784130],[48.707932,276.396698,184.137604],[41.873215,278.921753,184.856083],[38.079392,274.827912,186.100586],[34.772507,285.603485,189.142380],[33.646042,284.572785,190.020157],[34.533493,290.551239,185.394856],[34.483872,292.143799,181.715935],[31.657944,297.180481,183.705571],[30.976425,292.575867,186.389717],[36.084763,286.248627,183.522278],[37.605454,280.730194,184.288819],[36.512558,282.381440,185.203968],[46.822128,293.305054,176.731045],[46.774094,288.730378,178.117680],[46.312729,283.749970,182.994160],[43.006882,288.754578,182.534687],[54.264572,286.803864,176.121266],[59.009506,286.243164,175.881798],[58.134323,282.563904,175.521347],[72.997727,265.643677,172.047429],[80.804123,245.894715,168.366856],[84.099289,245.879547,168.552887],[88.097641,231.881928,165.164215],[94.081101,217.596833,161.975621],[101.188339,218.740906,162.315773],[104.106979,214.646668,158.541146],[102.834519,205.211914,157.650593],[92.480393,200.974701,160.286534],[82.405930,193.285187,166.142392],[94.503403,203.960175,159.707844],[88.558579,215.093293,161.851567],[97.964523,211.281403,160.231244],[102.071823,213.431122,160.828442],[87.884079,224.353760,163.459816],[81.441208,233.146485,166.244313],[84.863815,237.620911,166.423138],[101.642136,199.606598,156.832878],[88.623642,247.791016,170.604977],[84.717514,256.509980,172.259175],[83.646958,272.141968,170.305508],[77.505905,278.351502,174.357884],[78.877548,259.672150,171.601700],[82.203415,266.349701,173.641545],[75.082504,272.973358,175.052914],[81.244980,264.402375,173.848496],[38.016953,294.518799,181.759980],[71.787827,250.239960,170.568478],[80.986069,218.594513,165.671215],[78.899155,212.143555,166.535302],[75.314682,213.048432,170.380257],[78.010544,203.160065,166.995819],[75.375168,205.434143,171.521641],[75.242050,206.274811,175.385471],[73.937729,211.514130,173.975903],[79.578903,207.118439,165.371006],[102.526962,172.569641,133.624512],[100.942124,180.274353,149.059462],[92.565354,181.659912,148.562865],[103.968369,179.635590,126.442816],[106.848251,194.571961,118.054744],[109.994553,166.987610,105.341917],[117.138107,169.084961,106.703691],[102.930222,159.404328,97.591101],[125.206345,159.312897,91.031704],[123.938400,166.172760,97.513173],[117.204331,160.731140,94.689709],[115.363632,152.053284,89.605122],[110.301437,147.676148,87.950817],[106.395493,137.274414,80.005581],[104.807358,142.493439,83.369595],[117.721542,145.980927,76.771119],[120.209641,150.672150,78.767289],[114.781540,145.471131,71.583645],[112.282333,158.793488,72.564976],[108.650925,154.577973,69.771553],[109.699753,168.243317,73.062607],[106.690354,171.042481,71.123021],[111.074997,199.980072,78.155827],[113.538925,194.855927,79.458271],[108.505539,219.114716,75.147255],[108.022080,223.968170,69.028935],[116.862473,231.500092,71.883927],[129.715561,235.825684,77.082165],[125.094772,236.885437,76.548081],[138.308151,247.362793,86.354248],[146.160935,256.866669,88.327973],[144.378769,253.825043,88.381779],[149.154343,267.142609,94.755389],[148.916306,267.620484,98.570012],[143.316818,269.581665,105.506161],[147.794968,281.996674,112.621876],[142.858444,285.869934,116.642729],[134.570114,293.201416,115.743387],[129.616257,297.953827,110.566904],[126.649216,304.539765,111.490224],[127.076462,315.973542,118.333364],[126.055344,323.917572,123.068174],[119.919235,331.575531,126.199157],[110.031784,327.748627,140.571307],[106.188522,331.477265,141.991442],[101.889694,332.327118,140.947108],[97.323044,336.242890,140.010006],[98.492294,338.265412,139.756510],[112.438034,349.920868,133.216187],[109.550339,360.710480,132.286299],[112.116928,365.604645,133.177136],[119.965317,367.568695,132.331805],[123.337875,380.229401,131.112000],[122.549179,385.845246,128.340457],[135.266037,402.088166,123.161564],[142.218369,405.238556,126.171102],[149.584396,405.950775,140.820198],[153.578964,400.951874,144.718289],[150.499497,400.636505,144.832365],[152.013474,395.958283,146.772236],[159.574082,398.906586,152.413109],[170.303391,409.147431,160.779686],[174.701035,410.290253,161.403981],[175.693100,421.302338,151.768454],[172.430527,425.502045,143.575417],[175.945969,428.114472,133.746476],[170.921616,423.372040,123.118311],[170.268356,421.784882,117.381269],[160.736862,413.694611,110.487185],[172.056931,416.446503,102.130690],[176.616013,415.630524,97.599068],[184.612961,419.068024,104.923108],[181.021713,417.464997,100.828772],[180.841171,412.422394,92.529536],[183.544754,408.629608,88.113800],[188.053726,399.136139,78.256703],[184.716812,395.731415,75.790314],[189.650253,392.931794,72.578934],[192.377762,381.109284,63.233311],[198.764572,390.594513,81.549061],[202.066696,390.159638,83.392041],[198.455704,412.352875,97.233809],[197.265457,417.732025,102.666216],[196.478897,419.867951,105.237555],[197.300705,416.780854,109.408162],[196.135544,408.879669,107.854791],[194.681656,399.297089,103.464571],[195.121872,398.062653,104.067358],[196.875351,394.005463,103.834879],[201.472061,399.705780,106.804901],[211.785782,400.512665,112.696123],[211.607926,407.751923,113.492506],[217.612351,409.292328,117.389596],[224.154862,418.626435,122.446203],[229.353409,421.083954,125.523859],[239.270035,435.971527,133.438066],[242.845291,437.577484,135.879658],[248.416580,450.903046,140.538926],[249.868088,448.074799,141.432631],[249.384537,460.972077,142.504153],[246.080704,460.503022,141.598597],[248.600021,468.130707,144.120497],[242.484726,475.822602,146.150195],[245.547989,498.069306,154.676529],[237.109024,499.636139,159.407357],[233.873123,502.001862,166.397187],[231.357041,491.840363,164.709599],[228.819534,478.350861,160.933098],[224.749375,467.716584,166.418587],[227.672531,487.391144,183.108128],[229.644455,497.029267,185.070061],[231.800522,506.828583,185.348874],[232.775192,510.557953,189.227501],[234.147080,516.604035,185.716935],[238.874436,535.119110,189.550843],[238.226822,532.405732,194.156289],[239.700211,539.437897,191.960778],[244.153000,575.089691,195.036133],[246.841782,564.008271,184.389756],[249.599075,561.793915,179.891362],[248.326614,550.170014,176.219132],[245.722458,548.759919,178.429440],[242.307602,521.901764,166.307751],[245.966812,536.072907,171.045163],[248.313156,573.575104,186.256890],[251.115677,579.786835,184.995343],[246.949417,582.656708,191.243812],[248.828781,588.074616,189.926812],[251.649643,600.349335,189.533829],[254.933273,595.308686,186.472336],[251.798508,608.901276,189.946305],[250.603134,614.442292,189.974167],[247.723496,608.393158,192.306839],[243.625900,610.958283,194.696434],[242.006729,609.431244,197.749755],[234.339157,616.629181,201.636185],[230.419052,623.041291,201.735619],[231.209946,619.836884,208.673539],[228.099350,626.654694,208.515824],[227.932297,620.021820,211.278954],[228.305100,611.380097,211.464317],[234.452530,610.961884,210.252404],[239.944077,607.582001,209.972579],[240.864151,607.579315,203.235573],[243.575180,602.540741,200.162545],[232.439041,615.562775,209.645295],[234.528671,614.767426,208.248513],[248.010880,601.978974,192.991036],[245.329208,605.276215,195.602691],[244.658615,596.482880,211.452179],[246.870438,586.033417,214.250260],[245.347275,587.478302,216.174416],[240.033676,590.292206,214.502747],[239.767227,594.050751,215.099694],[243.291062,598.457184,214.277916],[243.215347,593.877533,216.352997],[245.173264,593.150482,215.829621],[241.750565,605.088776,205.886803],[242.467880,602.977814,212.038788],[239.509201,598.980500,214.331437],[255.900101,585.110077,183.328026],[253.325119,577.077240,182.176354],[251.558701,561.227692,178.026520],[239.517227,533.794464,199.090088],[241.770462,538.547211,203.201714],[243.007309,548.062043,202.598801],[241.449478,547.139679,195.731018],[233.957260,491.514191,158.400994],[230.685501,481.266938,158.240521],[229.640122,475.128998,156.944172],[228.573502,462.363312,150.220547],[225.502792,456.934418,149.331061],[217.943314,451.972138,155.586727],[200.044663,437.387970,149.214966],[211.391708,444.070282,146.647986],[215.019150,441.985871,138.309019],[217.082291,440.201569,134.809946],[223.555893,445.360932,137.471778],[216.340073,433.101837,127.784507],[225.139786,431.468598,127.287805],[213.668045,418.932099,118.075860],[208.208298,410.722809,112.815933],[199.192429,423.174286,120.337291],[206.942795,426.811737,122.552503],[209.095139,432.046357,127.951928],[206.458603,435.966217,135.515543],[195.148361,433.482880,145.229807],[180.936020,426.641754,136.975315],[186.872604,424.252594,130.984682],[185.050034,427.349457,127.219708],[200.757828,433.661042,136.390355],[193.989243,425.644379,126.600556],[182.941849,425.479462,138.239033],[212.086197,437.266877,133.638861],[217.129746,429.870453,125.231610],[202.323532,420.625641,117.475411],[205.638046,418.705719,116.310184],[207.495590,416.385346,115.155486],[222.016586,437.827729,131.475729],[226.663101,436.303559,130.436655],[224.285629,427.692231,125.192216],[238.306564,444.182343,135.350605],[241.828446,461.959626,141.997279],[230.273270,435.154755,130.191533],[226.633438,423.015107,124.462175],[235.174790,435.516999,131.587225],[241.132736,441.614228,135.356865],[227.986282,444.688385,135.877438],[232.277573,442.422699,134.154435],[235.949295,455.307709,140.657631],[237.373062,448.997406,137.336412],[241.248978,453.881806,139.414942],[230.476395,449.927033,138.835133],[226.298599,452.000702,142.557066],[221.778397,452.323334,148.322642],[218.077255,449.077912,147.778830],[213.223557,446.600800,151.201155],[211.902969,442.342255,141.732434],[221.656296,448.256317,141.665186],[239.928269,478.880280,147.907252],[241.263718,496.258637,155.087616],[232.986160,480.890290,153.449309],[235.580094,487.345551,154.012879],[236.593674,481.226471,150.304474],[234.526291,473.903961,148.620915],[231.410080,466.292572,148.627573],[238.135758,472.083527,145.954630],[237.754196,465.517609,143.997530],[236.229080,460.658905,142.926754],[243.638657,470.283478,144.104592],[231.137009,459.802460,145.161471],[223.380448,423.049286,123.157058],[204.135483,391.060089,107.433401],[201.985428,378.089508,109.285431],[189.274490,364.958832,112.310180],[184.409500,363.712006,125.851430],[178.554978,357.937775,119.264959],[174.542587,356.858857,104.252533],[178.065292,360.344391,100.926960],[176.453293,364.240937,94.819849],[171.977463,366.902436,88.697853],[166.740402,360.527436,85.985756],[171.423569,359.044342,92.758580],[163.427048,356.605988,84.254963],[167.834824,360.136444,82.639542],[167.982163,363.016266,84.625443],[171.890061,367.890961,87.233567],[174.251328,372.827362,88.923180],[173.920273,367.958710,86.116059],[178.117661,377.994782,93.293269],[178.078232,378.421479,92.095196],[201.195297,386.081940,92.350232],[197.939407,390.599335,95.214051],[199.471115,398.141693,99.301814],[199.836258,403.203583,102.080937],[183.597672,380.984223,93.250325],[193.008774,390.762909,96.545451],[189.381485,381.055146,92.099375],[179.139542,359.430817,114.732357],[175.066452,355.269501,113.927073],[172.232773,353.574433,110.415615],[168.522263,350.495026,103.332447],[164.604782,349.344574,96.723652],[160.653305,347.436066,90.043475],[163.780441,339.847992,85.560719],[162.215012,342.400910,83.074036],[162.360275,342.873688,77.950825],[165.720017,329.596283,72.197323],[167.053208,330.850861,68.879204],[169.051621,324.806305,65.308586],[173.078293,323.053620,75.111378],[176.761948,325.851410,80.193493],[181.906876,325.457917,79.779656],[184.743576,341.601837,104.059658],[183.272965,345.857880,108.898511],[190.492874,349.528046,119.058006],[194.943497,347.430268,120.693263],[204.493515,341.548798,126.745353],[201.669296,351.122956,134.053200],[205.848557,340.065766,129.274565],[204.688187,336.178864,129.947177],[210.532395,328.394318,118.941914],[214.251541,321.884003,112.120778],[209.302811,325.035614,108.122600],[194.897354,342.541535,114.231718],[201.345200,345.058686,125.774320],[190.978256,345.034272,113.780146],[190.709030,339.660797,104.998925],[194.622543,334.301422,100.389487],[200.919571,343.187958,136.905102],[189.301437,343.762665,141.859600],[174.801376,321.310089,129.815875],[172.234299,326.664887,122.673235],[169.124497,330.275910,121.774565],[164.726975,325.022919,125.335853],[163.747543,326.558869,132.303637],[162.581223,320.029572,129.980043],[154.394882,318.234223,126.553867],[149.990952,317.001313,125.142136],[146.912399,315.539154,124.473012],[147.485092,299.025513,120.251884],[141.245712,299.601837,121.898637],[133.591416,308.227661,123.682677],[126.652084,331.969208,132.039291],[120.351120,337.910553,128.737528],[135.487595,308.646912,124.941309],[137.177597,317.920746,126.863163],[143.529160,314.331696,124.307155],[136.861618,326.542084,128.222242],[141.265183,325.872406,127.383381],[140.023239,343.571442,131.202513],[133.158981,353.053742,133.857479],[130.124802,348.968354,132.884580],[127.132919,354.728058,133.539225],[135.128891,339.630280,130.635755],[145.576096,327.607697,127.770881],[150.824753,327.852326,128.463394],[156.602341,328.789704,131.270748],[153.391770,340.844269,133.171479],[147.303146,361.426667,138.654080],[145.525742,340.616730,130.882517],[140.541123,354.752716,134.773804],[150.071884,340.142670,131.659170],[142.524948,347.298493,132.640973],[144.879685,359.426056,136.996889],[161.251450,325.574738,132.572048],[160.996140,331.478424,135.007156],[162.860214,334.639130,135.547340],[159.545395,337.158783,136.690467],[165.404953,343.974518,132.022789],[161.489243,344.602265,137.554073],[155.440903,351.826752,139.722031],[151.821152,358.673432,139.954913],[166.490830,363.507172,147.115096],[173.452438,359.468537,152.594189],[173.655869,348.988190,149.208657],[176.598679,348.871918,148.518971],[179.438034,340.303131,143.559662],[195.608902,358.556610,147.480229],[197.231827,365.678131,147.264044],[197.359268,360.114655,137.838698],[190.630539,369.253022,140.158945],[191.192490,370.902008,140.539240],[188.840469,368.173065,134.525745],[194.564926,371.143463,138.490143],[191.169357,367.598297,128.413611],[183.812790,364.191986,129.069086],[189.472153,358.065888,127.913619],[197.979141,355.632477,132.904394],[194.063431,366.355194,141.446829],[199.933518,358.204682,140.193892],[189.467911,364.569794,134.624461],[187.978623,366.599213,134.592698],[182.012253,355.284882,119.102336],[173.371994,336.269928,92.162695],[169.297958,342.679779,95.999545],[170.210617,330.123627,82.914456],[179.594010,332.586823,89.992896],[177.432053,336.282868,94.249249],[174.030441,330.012116,85.184861],[196.141068,346.006562,140.791899],[198.169266,355.429901,144.847952],[201.366867,347.861481,138.564551],[199.947769,357.312592,142.715220],[203.456558,345.446076,134.739904],[157.971176,352.754242,141.626545],[160.218369,361.393280,143.526568],[161.017746,363.057160,144.557597],[166.901108,360.076752,145.043955],[156.881882,362.305878,145.223591],[159.975510,348.262726,139.888314],[164.640610,348.876740,135.545842],[163.360581,354.019562,139.226981],[162.138718,352.213593,138.478844],[172.468002,331.165985,126.552278],[166.834824,336.302948,126.178430],[165.052109,331.293915,124.884844],[164.453110,328.858368,130.640467],[163.998093,335.418427,130.722832],[166.625168,329.557526,121.325955],[169.921066,338.233124,128.518012],[159.404892,356.706208,142.429247],[149.969040,348.219879,134.379374],[141.325791,309.071320,123.528844],[157.936447,308.180268,124.280236],[203.303757,332.174591,128.085155],[209.349320,326.291962,119.707536],[213.275253,320.501923,112.683547],[219.653580,315.098786,102.158726],[222.304672,313.239319,92.783430],[224.655319,308.659119,91.534529],[227.394150,300.355683,78.433415],[224.438492,302.950135,84.548565],[205.353500,296.281220,78.247280],[200.674942,291.057282,73.812886],[198.342209,293.501953,74.844277],[191.157333,296.025055,79.152802],[193.176071,298.508423,81.608868],[198.223374,309.518555,100.945280],[198.010269,321.534821,119.871843],[192.577896,320.670685,122.439828],[182.795090,311.804749,120.517949],[181.495102,317.043183,126.817259],[171.621506,307.923493,111.193757],[173.645371,305.382874,112.904326],[176.919602,299.199829,109.569009],[175.178269,297.748413,107.009911],[178.262436,296.035828,105.746964],[174.987351,292.726349,101.558213],[178.010117,286.716950,94.555407],[174.333847,289.586426,97.386717],[176.138046,284.738678,92.354201],[171.884140,283.452149,88.550331],[174.817856,278.564545,84.878456],[175.463730,272.362549,75.208554],[176.359421,273.687470,73.978226],[179.062729,281.192017,65.704869],[182.996658,283.572449,61.077732],[186.820938,283.499512,58.532277],[186.536209,288.022309,67.200245],[190.876450,289.716217,68.222962],[185.289475,287.349701,76.234570],[188.934433,293.763459,79.242451],[178.208054,278.450501,81.016388],[178.749191,278.662690,75.671284],[177.852829,279.169007,84.434185],[192.913193,294.148590,74.627530],[193.248886,288.512940,67.083065],[183.730057,280.396454,51.269341],[178.651962,280.166138,54.890984],[189.461533,282.223389,57.149491],[196.290970,287.498230,67.785618],[198.770645,282.167481,65.544545],[192.532089,281.619599,58.489762],[175.783432,309.260529,120.253538],[178.091293,312.137299,123.772229],[176.118088,306.075959,116.728967],[184.074295,308.630036,115.763286],[193.169479,307.156739,103.317973],[185.885941,304.435456,107.839577],[179.624313,300.275269,109.608444],[178.088303,291.152283,100.367049],[189.957230,311.518372,113.736411],[196.709519,306.272888,95.726584],[179.206864,307.391877,117.846611],[199.726761,313.178437,106.472987],[193.737351,312.059571,110.669356],[194.884689,316.701874,116.071063],[195.318894,301.650879,86.300335],[200.002060,301.009857,83.625962],[208.493088,304.957062,87.738945],[208.650528,300.913117,81.735379],[203.016525,296.552338,79.280320],[201.447922,306.821778,91.336752],[206.130173,305.416596,88.904641],[215.587875,304.919068,86.942082],[222.834549,306.179657,90.298388],[220.072037,302.218354,82.086407],[226.131668,304.846009,85.301892],[212.971085,301.172486,80.136620],[225.438919,306.807709,84.362706],[219.703262,314.222290,89.159325],[218.485733,316.796173,95.016438],[214.058182,319.033417,92.127060],[219.393540,311.283631,83.769905],[223.522598,305.254273,78.159375],[216.137283,305.930451,71.096177],[204.475235,293.437561,55.010201],[211.647110,287.693634,52.725953],[215.042313,293.355255,58.702862],[226.110062,288.378235,58.033562],[228.612167,272.379486,48.933220],[227.712204,269.679108,49.545472],[222.779801,267.432251,50.261238],[215.914780,266.933594,47.439225],[216.672409,264.707764,42.989968],[219.146042,262.279267,34.862450],[213.999313,262.334076,35.974060],[202.306259,260.637177,33.760498],[198.602219,259.272034,26.062867],[190.377304,256.919983,24.174027],[192.471176,261.052735,29.628510],[168.680588,272.153626,31.600403],[161.160507,267.993317,24.621056],[155.105393,263.233918,19.188668],[161.949570,263.153839,19.888970],[171.430283,255.940857,17.194710],[172.480820,253.294220,13.739037],[184.679947,260.469544,11.347466],[186.041306,254.287384,16.991074],[181.313522,255.492462,9.784493],[173.845688,254.641693,7.593377],[162.867416,253.726960,12.360123],[168.071457,252.546295,11.480675],[167.369858,255.555024,4.513283],[162.410263,256.225891,2.932495],[155.865341,263.071411,-0.625953],[149.069321,263.641205,-2.467224],[128.418686,266.131928,-5.059539],[127.461044,275.621369,-2.924369],[122.747604,287.691346,-1.054145],[130.664475,282.740631,-1.921203],[135.633041,282.314148,-0.493919],[129.392807,271.575745,-3.510208],[148.051682,269.522461,-1.900909],[155.420151,266.718933,0.264252],[147.120957,276.122223,3.127159],[144.678085,280.169129,5.013558],[139.297714,283.441651,4.404442],[141.693283,277.005463,-0.450416],[147.229843,281.942475,7.426949],[152.161057,282.028351,9.433693],[169.533249,281.938874,10.634362],[171.258957,287.097260,9.101166],[176.350021,287.680603,9.948113],[184.806168,290.165863,12.509690],[203.578171,273.415650,15.455170],[200.704453,271.722473,14.585778],[187.874069,269.391754,14.473618],[184.947617,267.240906,13.835556],[175.320786,271.025116,12.567849],[174.074936,260.382904,7.365601],[164.492355,264.121460,4.951462],[164.468613,259.854065,2.413041],[163.986191,268.287659,8.940316],[198.981491,280.790192,12.850495],[185.793411,286.979645,11.853951],[188.772110,281.184479,12.506829],[183.963944,275.900544,13.623299],[192.849167,273.961151,14.719056],[156.451950,271.696717,7.038224],[163.889572,272.597260,10.491471],[166.373459,276.462860,11.180443],[153.999802,269.225556,1.301041],[116.641770,283.322388,-1.347137],[111.076096,287.996308,1.012009],[105.909592,306.797486,4.519593],[103.945358,315.839691,6.931946],[105.564194,326.401581,10.872040],[100.445603,329.527375,11.756119],[100.784409,335.115509,15.165673],[97.096115,347.754975,22.970894],[95.954880,354.324616,30.819847],[92.442124,359.681122,32.752785],[89.302841,357.154145,29.997338],[89.263779,357.467682,27.196915],[90.591782,353.120270,24.154206],[89.315231,343.738312,21.221222],[90.730759,342.937714,21.838608],[86.565231,333.998139,19.322235],[86.556320,336.809418,18.979760],[89.935959,347.729462,14.104622],[89.060471,345.931122,17.020218],[94.859116,352.583527,27.579293],[97.444687,339.741425,17.700241],[90.762558,335.878754,19.231888],[89.269760,331.488800,18.461113],[93.441513,329.308136,15.919373],[94.550339,314.806549,12.541649],[94.517014,305.731842,11.059151],[108.938950,282.129273,1.564698],[107.562058,277.029206,1.641060],[112.223801,267.219818,-2.232917],[118.087631,260.341767,-5.419632],[119.788193,266.378540,-4.678306],[134.233627,262.616120,-4.837875],[131.713913,259.654450,-4.979026],[140.877304,260.574829,-3.694046],[139.206101,258.334595,-3.240295],[145.242172,256.911927,-0.906654],[150.893967,258.000092,-1.767166],[153.721665,256.193482,1.299866],[154.949448,255.253510,9.398133],[157.760910,253.614502,7.329667],[148.004807,257.528809,8.750199],[151.577011,259.926880,15.046677],[157.029648,258.525086,14.845635],[137.390732,257.510651,-1.205467],[134.376816,257.788422,2.785927],[129.144882,257.583588,4.491661],[122.370468,255.229676,8.150200],[109.462814,258.167084,-2.749389],[103.165146,254.747986,-1.378585],[99.446518,248.615662,-0.385200],[105.062424,252.149872,-1.414108],[100.254685,243.152436,1.270943],[98.982407,229.710297,2.471398],[98.072678,219.404602,3.262696],[96.427231,206.526093,2.718529],[91.865036,213.302185,1.970978],[89.496811,212.396027,2.030014],[85.509689,194.390015,4.990708],[88.258835,195.602722,3.716515],[93.867416,193.850251,2.314667],[97.993271,193.684113,5.221642],[94.444382,195.130127,15.601975],[87.117539,183.531708,18.712769],[74.732163,167.385071,15.444992],[70.618576,163.347321,19.991555],[70.089462,159.544495,42.463555],[65.193405,153.117462,43.972283],[68.002548,139.977173,48.811463],[64.460312,138.176483,47.217812],[58.828781,139.629334,48.118569],[54.757248,134.308564,45.179978],[49.403183,128.297791,41.063736],[44.549118,123.920014,36.448647],[37.668381,121.656830,30.741364],[33.959885,115.105347,27.260193],[34.937302,109.172760,22.502343],[37.626450,103.801575,19.305748],[36.317551,91.764801,11.983841],[32.790573,82.681580,3.956292],[33.345017,56.677491,-9.733009],[31.499191,45.327301,-16.870292],[31.634079,39.443878,-19.384407],[29.650009,43.528977,-20.188881],[26.699326,42.901551,-22.797660],[23.274948,36.708634,-26.603982],[25.323349,28.811951,-32.229148],[21.945786,16.607651,-40.204476],[20.368515,-0.279358,-51.486473],[12.892258,-13.601074,-54.538963],[6.855698,-13.827362,-48.091392],[-0.997818,-13.647079,-40.260139],[-9.022354,-31.246368,-43.164817],[-12.678482,-40.824875,-45.264106],[-16.418716,-44.851837,-45.715599],[-21.217239,-49.709610,-47.710319],[-22.009842,-63.841324,-51.315208],[-23.879166,-61.645309,-51.723580],[-17.490555,-66.434570,-52.891976],[-15.092178,-52.663147,-48.498436],[-3.043777,-25.624374,-45.271843],[-21.919693,-41.295715,-47.382011],[-23.272415,-30.454437,-48.792839],[-25.454239,-19.959259,-51.870033],[-27.194656,-6.477462,-48.426551],[-32.092972,-6.479950,-49.139747],[-34.108963,-14.532089,-53.159080],[-38.992569,-16.715683,-51.699852],[-44.020706,-15.205566,-45.938530],[-49.316055,-34.563690,-55.395256],[-49.882645,-50.510971,-64.587959],[-44.884048,-52.472671,-71.043983],[-41.375381,-47.053039,-69.689888],[-36.953567,-64.127899,-77.415641],[-34.989212,-68.217239,-75.165138],[-33.388626,-68.780494,-71.498420],[-39.502762,-4.500381,-42.840278],[-49.477798,-2.694183,-37.670539],[-53.685684,-17.720245,-44.915062],[-58.406265,-18.997131,-45.785789],[-64.505447,-27.604431,-50.571830],[-68.807388,-26.688904,-49.288978],[-68.760269,-35.084869,-53.738594],[-79.601089,-40.305557,-54.190544],[-81.935806,-55.630233,-61.625221],[-82.733780,-44.454452,-55.381858],[-86.250992,-67.255890,-66.295768],[-91.572037,-67.609253,-62.296043],[-91.794083,-64.995010,-60.063378],[-89.686661,-72.025024,-46.649009],[-89.352859,-76.147232,-37.836372],[-95.746292,-101.491607,-42.280510],[-94.840896,-91.593040,-37.652809],[-94.308731,-103.147751,-44.799202],[-90.805679,-88.321960,-42.054313],[-72.891617,-34.239486,-52.139595],[-73.349380,-47.908386,-59.351936],[-71.142959,-51.744400,-61.031517],[-66.059280,-52.279571,-58.916343],[-59.801163,-33.704940,-53.117134],[-66.556167,-39.134796,-55.958397],[-65.107803,-41.008514,-56.357461],[-60.336441,-44.914581,-56.627891],[-74.747330,-62.261017,-65.537483],[-68.981094,-59.413147,-61.339210],[-65.936478,-63.976196,-63.063301],[-54.681961,-56.189087,-64.522392],[-55.131790,-53.404541,-62.486473],[-53.635940,-45.690033,-59.102623],[-65.769729,-58.463226,-60.642997],[-84.543960,-62.823745,-65.176155],[-79.805984,-62.462097,-65.997123],[-72.682999,-65.677002,-64.449516],[-83.582474,-71.613975,-70.564583],[-85.861160,-77.907493,-73.721458],[-84.476517,-81.694305,-75.590416],[-75.626968,-87.719482,-73.383491],[-85.697037,-93.771492,-76.507545],[-88.604080,-92.775757,-80.192802],[-92.109390,-97.419929,-81.889839],[-94.468460,-94.281524,-78.181617],[-97.301041,-107.231270,-80.330163],[-93.689224,-114.763618,-67.212211],[-92.702286,-112.195083,-61.765846],[-94.117142,-129.132248,-65.333458],[-94.440628,-134.914745,-66.923881],[-95.286758,-145.173759,-68.602914],[-94.802750,-133.892978,-63.182609],[-95.918655,-131.401703,-58.926567],[-98.898025,-128.723701,-54.112388],[-100.497208,-128.447639,-53.301811],[-97.996109,-135.018089,-58.060113],[-93.821609,-123.527672,-58.960960],[-85.703873,-98.670540,-77.155495],[-90.057999,-98.205955,-81.234626],[-81.425491,-75.191368,-72.169227],[-76.381912,-76.507202,-68.443489],[-75.494522,-81.364586,-70.066917],[-67.548538,-76.356048,-71.033393],[-71.640152,-71.204780,-65.778481],[-79.806778,-71.164604,-70.178428],[-89.230606,-80.054458,-72.969932],[-90.725784,-73.395302,-67.052726],[-93.730728,-83.612945,-61.193230],[-93.583389,-106.561035,-64.875175],[-92.435440,-99.123779,-59.476036],[-91.565384,-104.755500,-53.762580],[-93.073624,-119.383850,-61.446434],[-92.929703,-74.620956,-65.128593],[-73.664871,-58.076202,-63.855156],[-55.566727,-40.644363,-56.179542],[-56.517898,-29.003647,-50.871406],[-43.466446,-7.279205,-41.975059],[-17.114334,-39.900650,-44.491752],[-21.196304,-34.396408,-45.950051],[-17.755447,-28.063400,-40.988243],[-7.617203,-21.939224,-39.592262],[11.956406,-4.746566,-48.329277],[-19.178482,-37.451797,-44.679313],[-18.671768,-19.043197,-40.504020],[-8.161209,-14.610168,-35.771629],[-3.853653,-8.963195,-35.236840],[-2.427261,11.277008,-23.691384],[-3.532669,-2.303314,-31.437646],[-8.727554,8.332749,-23.791450],[-10.283523,1.252549,-27.252876],[-7.728897,1.896103,-27.190712],[0.045578,-3.309875,-35.174949],[8.083603,18.109696,-27.385780],[13.872421,27.416565,-26.683815],[7.648483,32.120636,-17.627861],[16.366623,40.028199,-19.525764],[20.689926,59.128479,-9.638481],[12.426621,50.822388,-9.045448],[3.946091,27.198304,-17.380226],[0.993515,39.789292,-9.236413],[-11.161026,34.505341,-14.313026],[-12.345962,23.765457,-19.145073],[-13.710342,37.486695,-16.181007],[-16.228470,38.007767,-20.746620],[-19.644485,41.775360,-24.296699],[-19.480362,34.386948,-26.842888],[-20.164871,25.043625,-30.527778],[-22.308975,21.060318,-33.418144],[-20.960037,16.425232,-33.596031],[-23.087784,13.352448,-36.985313],[-24.276565,0.372513,-43.665641],[-28.022415,2.261216,-44.720817],[-32.406631,16.767762,-36.224556],[-37.005630,12.496796,-34.217186],[-41.119583,11.971878,-31.996040],[-35.108414,23.558991,-28.372963],[-33.899551,31.927658,-23.953971],[-22.707657,51.191941,-19.565635],[-20.836502,60.499817,-14.839089],[-16.295425,66.585175,-10.805534],[-14.456497,63.354340,-10.395317],[-11.155838,57.250931,-4.182441],[-8.838943,56.337570,-1.394271],[-7.827713,47.123551,-5.662696],[-5.090835,46.529389,-4.980644],[6.082443,51.299637,-5.384246],[-1.705704,54.108506,-0.815803],[-0.581924,70.292328,8.055443],[-4.653396,83.462372,13.738716],[-8.431412,73.030548,5.723091],[-10.151443,65.760071,1.129418],[-31.982376,77.632569,8.236168],[-35.897110,70.404450,3.951844],[-35.521866,75.850128,7.906418],[-42.194595,66.984223,2.888008],[-51.148758,63.980133,2.153199],[-55.528519,65.779694,3.559342],[-60.694656,64.513886,3.126816],[-62.808121,64.374848,4.962090],[-57.963089,72.057617,6.160759],[-61.746109,68.747254,7.052040],[-10.681045,67.722382,-4.217155],[-9.296280,75.664612,2.394791],[-8.826126,81.957489,4.107727],[-7.468399,84.573914,10.597962],[6.050644,63.957581,2.306878],[13.741196,62.464142,-3.064331],[19.973312,50.767563,-14.536140],[23.225815,42.794358,-22.356224],[16.914963,26.569428,-29.892372],[15.736862,17.485306,-36.100044],[13.755539,7.808655,-41.703773],[17.374497,15.881043,-38.470893],[2.903610,4.456940,-32.548530],[9.481125,15.165497,-31.384391],[20.914658,25.978379,-32.935432],[18.867539,35.433762,-24.873039],[-19.820877,48.506348,-21.152259],[-25.663284,50.956971,-18.188942],[-29.284744,48.763840,-16.035286],[-37.956924,33.985001,-20.253715],[-41.383133,28.669648,-21.929879],[-42.834488,17.727372,-27.873345],[-47.629532,5.855378,-33.375282],[-44.454605,8.765686,-32.499978],[-41.019913,3.951813,-36.736717],[-34.394485,2.032105,-43.449974],[-28.718521,55.230973,-11.803825],[-30.038650,59.943589,-6.646080],[-32.100784,67.046051,0.206429],[-46.825394,53.396897,-5.312286],[-61.339310,47.164627,-4.275344],[-61.067703,43.636139,-6.693641],[-67.566360,38.753434,-8.718986],[-70.861954,38.781983,-6.296936],[-52.416275,39.184403,-12.204490],[-52.742020,31.559662,-16.438285],[-56.813492,24.717377,-19.804406],[-50.672439,15.917038,-27.088218],[-55.339126,8.091416,-31.006585],[-59.526688,4.192597,-32.977058],[-66.381119,0.798371,-34.434883],[-72.838516,-0.350036,-32.863395],[-83.320633,-12.996673,-35.808952],[-82.135574,-11.485260,-26.082405],[-82.115799,-21.615463,-17.530952],[-85.479263,-25.295334,-11.870887],[-100.977676,-45.801086,-18.164024],[-106.039932,-68.303543,-29.079246],[-107.709244,-81.178985,-34.606941],[-114.714188,-85.124771,-40.602317],[-117.733780,-75.173805,-35.495185],[-113.901443,-66.240249,-32.104455],[-112.337295,-59.043289,-29.006585],[-113.468521,-52.919479,-25.330543],[-116.625809,-54.624267,-21.491447],[-109.447952,-55.537246,-26.521644],[-110.837967,-66.231903,-31.480064],[-115.035843,-74.553543,-36.263527],[-112.010757,-76.148704,-35.614784],[-110.398514,-43.758850,-20.578636],[-111.305069,-54.224044,-26.352562],[-112.967544,-43.013946,-19.269096],[-103.360245,-62.677429,-25.651054],[-94.973465,-62.469177,-24.084175],[-91.840896,-61.110840,-24.565986],[-89.242203,-63.935592,-29.450738],[-86.543533,-50.145263,-25.867271],[-85.879410,-49.088592,-28.788353],[-85.793289,-48.433960,-33.382652],[-88.281082,-63.395523,-42.035453],[-89.607376,-55.176117,-56.597969],[-86.506668,-58.895950,-61.385017],[-88.137588,-44.120239,-51.812660],[-86.344253,-32.418991,-46.103386],[-85.118362,-19.914367,-39.381401],[-86.055496,-24.194412,-38.226326],[-84.784866,-37.914520,-30.156669],[-86.225174,-43.149612,-21.408165],[-82.747085,-22.576141,-23.888543],[-80.830154,-13.609741,-17.475853],[-84.296036,-22.734375,-30.474632],[-84.290237,-15.618728,-33.940345],[-82.252029,-16.853149,-39.701500],[-82.646805,-21.710434,-42.633537],[-82.642898,-30.974884,-47.542793],[-78.969620,-26.670395,-46.502784],[-76.615066,-16.512832,-41.718345],[-68.838760,-12.288223,-42.039665],[-64.109390,-18.351165,-45.773368],[-52.112808,7.278000,-32.029502],[-55.414627,-3.305786,-37.589135],[-48.134659,25.669983,-21.785302],[-46.006485,36.986359,-15.846809],[-44.659805,46.345703,-10.612800],[-38.381363,54.831452,-6.658012],[-33.637039,54.028366,-9.175041],[-38.177322,48.494614,-11.044075],[-39.299820,43.442581,-13.935524],[-33.003921,48.230744,-13.606590],[-89.874893,-48.601974,-50.527092],[-88.771377,-41.883377,-48.087975],[-88.447342,-44.321106,-42.357704],[-87.259231,-55.932235,-39.643928],[-90.203323,-52.915207,-49.431175],[-87.682754,-33.842895,-40.652137],[-86.532608,-26.955932,-41.735496],[-84.526077,-31.009948,-29.879325],[-86.089493,-43.888031,-35.523277],[-91.038040,-58.236755,-54.066475],[-91.155228,-63.888290,-52.152961],[-102.554703,-52.975525,-21.713752],[-95.225662,-54.207519,-20.718025],[-91.362503,-51.793701,-20.219612],[-85.609024,-35.940063,-17.900230],[-84.340713,-36.245361,-22.453666],[-84.476211,-37.894943,-26.583596],[-65.719437,-11.772064,-42.224540],[-67.834488,43.350312,-5.906326],[-24.673782,59.289856,-13.264900],[-26.253311,66.220398,-4.005790],[-23.033951,72.417847,-1.050804],[-23.962295,75.363098,2.513413],[-21.339432,70.790284,-5.983879],[-19.813492,68.759827,-9.348793],[-17.537491,70.540772,-8.858024],[-39.230972,25.640137,-24.589164],[-31.552811,6.411484,-42.492210],[-29.433304,35.407059,-25.975364],[-0.751907,27.264954,-14.871528],[-4.391312,25.979950,-14.872872],[-6.650833,26.904755,-14.663200],[-12.183365,15.821305,-22.023872],[-4.180984,16.262299,-20.389061],[6.132919,36.031769,-14.098503],[2.842209,11.344712,-27.397224],[-13.100113,-28.739059,-40.196022],[-15.870193,-19.471008,-37.783317],[-7.107315,-7.875015,-32.806434],[-20.190323,-15.066238,-42.333717],[-23.973587,-7.302383,-46.055993],[-14.431839,14.955674,-24.778129],[-11.498245,-7.404419,-31.900886],[-16.467422,15.540497,-27.708213],[-14.996597,30.609482,-20.714592],[-16.937881,24.046479,-26.060569],[-15.897720,2.334259,-31.372413],[-21.464432,2.012039,-40.249412],[-16.615860,-7.067947,-35.410438],[2.343735,-18.063034,-46.048881],[29.324082,35.243851,-25.422554],[30.779587,29.865372,-26.452186],[29.251572,25.169342,-32.743782],[27.206833,22.234009,-36.540763],[22.716232,10.833390,-44.810691],[12.529099,-26.293609,-62.003013],[15.543198,-24.504974,-63.407371],[16.812607,-46.516479,-78.399437],[18.511643,-37.238510,-73.926292],[18.777512,-27.012222,-67.315422],[21.400925,-46.692779,-81.204307],[21.257919,-34.102966,-73.260537],[24.748398,12.762070,-43.634025],[26.950058,33.635926,-28.628059],[34.743027,94.943665,12.723137],[35.701889,104.699372,19.155877],[53.792160,125.520783,40.612084],[50.826767,113.965302,33.939690],[47.474533,116.683808,34.759446],[76.904038,166.633637,24.539147],[76.494797,173.949616,29.681778],[79.531052,177.043213,25.657517],[84.122238,176.183625,18.527550],[80.725449,172.528260,21.838822],[94.880173,230.773072,1.087960],[106.371811,243.953003,0.839898],[104.885788,238.160309,2.392083],[121.560593,258.494263,-4.846466],[128.726608,258.451721,-2.485908],[117.587998,257.656983,-4.790626],[113.565354,254.665650,-3.087288],[123.392136,260.556122,-7.031715],[100.442001,341.189789,19.418099],[105.762375,330.064789,14.381157],[107.620285,319.143097,7.852822],[113.018784,310.219849,6.119126],[106.612656,300.511139,2.742958],[103.298996,338.794220,20.452095],[112.803696,336.304535,32.463219],[122.581894,342.865143,27.698861],[117.470078,326.351105,28.413239],[122.639694,332.274079,26.004052],[127.427597,338.245575,24.222000],[129.747055,339.550995,25.726448],[139.012314,332.058625,25.750443],[138.470810,327.454315,18.112732],[150.454086,319.094330,20.783593],[144.640061,317.457917,12.529625],[141.631333,318.089508,13.107010],[147.173874,308.850861,9.020737],[144.010544,304.423554,10.921364],[145.218674,294.442169,11.650246],[151.158859,289.907288,10.547249],[156.577866,288.403870,9.786629],[155.669174,283.564301,10.339714],[148.202927,287.968567,10.533471],[135.536911,292.003510,9.183213],[128.608994,287.883881,-0.303802],[143.391159,288.739930,9.875016],[142.399338,321.744171,15.230790],[136.366562,327.150666,17.697159],[133.662033,332.149079,20.609482],[130.342026,332.705719,21.675766],[127.685227,326.218781,22.083161],[134.494370,333.653046,22.983109],[125.158676,345.816803,28.575333],[124.064926,350.007782,32.676392],[125.608444,351.491364,37.630623],[120.619980,357.347016,39.359330],[123.687851,356.018463,41.823441],[114.980148,362.195099,40.254502],[114.746933,357.407868,37.022362],[111.037033,352.234345,37.117325],[111.975571,347.241730,35.147759],[123.272202,345.730622,28.241234],[119.577866,348.856232,31.100197],[116.480698,364.309235,44.005738],[106.449570,330.519745,16.660431],[109.874436,325.180268,18.975754],[111.463181,327.528839,26.047287],[114.508469,325.681488,27.814644],[112.816879,322.405060,22.559113],[101.538193,343.871674,23.562615],[102.564926,344.223603,30.487702],[103.247055,344.753632,34.280449],[171.388046,266.365601,25.265602],[180.428970,271.866150,33.035012],[165.119187,267.995179,24.892235],[177.446701,256.049408,19.856347],[178.859177,263.543579,25.027489],[180.875687,267.339905,28.560028],[172.309921,259.108582,20.219162],[189.753739,259.130799,26.388543],[186.150742,255.551453,21.593125],[197.570358,259.458100,30.067253],[193.511521,267.545349,38.491173],[180.136856,276.564728,42.860848],[176.408371,276.961121,43.824402],[173.480148,275.945252,44.716111],[175.883041,274.461670,37.318818],[159.073105,268.634552,29.641228],[156.638779,262.776337,33.832955],[165.529404,260.402375,45.941948],[174.328659,265.883820,69.868477],[171.130600,274.373017,78.683220],[172.827866,272.129792,76.778862],[171.074997,265.005524,69.651898],[162.005356,262.555146,63.423291],[157.730271,264.832093,61.962891],[149.492783,259.329377,54.135643],[150.291123,251.940003,49.237488],[146.456223,246.298706,42.943245],[143.101791,240.813080,36.769684],[123.433273,236.610291,28.860398],[118.850693,232.971100,25.654160],[114.192429,229.990479,24.171753],[103.717819,214.787812,19.095566],[97.953476,208.533692,24.150132],[96.939072,208.912110,30.378334],[100.056687,211.615662,33.288361],[104.074509,208.707154,36.957093],[107.609787,194.194794,34.021279],[101.951706,196.939728,34.717186],[109.957016,186.577790,35.367470],[102.765549,171.514923,35.440300],[99.443588,165.431458,36.499306],[102.056442,157.335755,52.967232],[98.318710,151.894043,43.905350],[97.158493,159.813568,40.197205],[95.962692,156.520172,39.080132],[89.625473,152.970703,40.159165],[83.476425,163.850708,41.380402],[90.746079,167.930573,37.838356],[87.000473,188.887696,38.788277],[87.308457,193.558014,37.060799],[88.762009,197.429688,34.327095],[86.998093,193.166230,29.474312],[86.937241,187.922547,22.279282],[87.442856,178.340119,39.779030],[85.238632,181.905213,40.495659],[74.845993,171.798798,35.973626],[83.261643,171.131653,41.950409],[80.502854,169.955017,42.646393],[93.501877,157.046326,36.818161],[90.563095,159.733673,37.278084],[145.880722,251.245667,46.971558],[140.226791,257.640839,51.894349],[131.823471,252.322785,48.937424],[131.289475,250.855500,45.324768],[128.929916,247.908020,41.252144],[132.214951,244.404084,37.095398],[139.036728,252.506928,46.135811],[168.701950,259.350861,63.390416],[171.311630,258.350098,62.139557],[172.605026,259.035584,59.926373],[168.729172,253.573304,55.170761],[165.267868,252.494110,55.368157],[160.423691,245.175324,45.129959],[155.683457,248.315308,48.019570],[155.732773,256.043610,54.998711],[162.066269,255.803742,57.556862],[170.048630,255.441284,54.019577],[162.332932,271.636414,71.159665],[155.172348,270.337586,65.290085],[166.610458,271.127991,73.255860],[157.735031,277.658173,72.928025],[154.960434,283.740967,80.429821],[145.128525,268.066803,70.550682],[145.102890,267.983155,65.048890],[147.502243,269.374512,64.132813],[144.449143,264.912323,59.585877],[143.456406,259.205048,53.275422],[133.008347,252.463562,52.987503],[129.156357,248.151551,48.767868],[117.935654,236.816712,36.778862],[114.949143,231.474793,35.968575],[111.738022,229.151917,25.600808],[110.441757,229.221588,29.233834],[103.760605,219.549256,25.248680],[104.237045,219.583618,32.176941],[103.624680,220.265076,29.369912],[101.558884,217.556061,29.073632],[132.702438,247.798737,54.465302],[129.417526,238.552460,52.109940],[125.757126,235.897919,47.795288],[121.078110,235.689453,41.944733],[115.674423,223.911560,40.496323],[116.210861,220.771485,41.401238],[125.646042,212.119110,45.732346],[122.566086,202.534027,46.445336],[109.120590,197.441376,52.328690],[104.959824,188.655365,50.467980],[102.861252,183.622223,50.139901],[103.915390,173.026062,37.995682],[99.953903,169.776459,43.537331],[105.470383,176.071900,37.175827],[108.807785,182.658966,38.022858],[111.131821,187.089356,41.657967],[106.526047,182.937561,43.603859],[115.384567,192.854218,39.044159],[111.153305,191.585572,34.630257],[111.827377,207.402710,37.558609],[105.007431,211.649903,37.229432],[108.492478,224.700257,32.801041],[111.460068,218.394776,38.816094],[112.970932,216.025879,39.378937],[140.617233,249.813904,69.723130],[141.951950,258.535981,68.250630],[138.840317,259.641785,59.846348],[137.806687,245.731659,64.208416],[136.676254,257.409821,55.848282],[138.422836,258.034851,53.420372],[137.474533,255.182129,60.065182],[149.035996,275.007172,79.602539],[149.912216,274.495270,88.199341],[144.348251,252.466034,81.965508],[141.757065,244.442871,78.837910],[138.491318,240.519501,78.173775],[137.887314,234.152497,69.095303],[134.239548,226.100983,59.925530],[127.080551,226.358063,69.886071],[132.283798,223.448059,65.834408],[135.174362,226.930725,65.990631],[133.406418,234.797303,75.861748],[134.648911,242.533753,82.595356],[120.666977,224.378418,67.790741],[117.671982,212.420868,59.894970],[113.610825,205.838318,56.157227],[114.222153,221.782868,66.524968],[111.908554,217.585938,64.220574],[108.779282,206.958741,58.627816],[107.275253,215.872711,64.635071],[106.933151,209.152527,74.461472],[105.479538,200.023499,56.328041],[102.398361,193.891053,55.359253],[100.626022,180.489624,53.229279],[100.801254,187.721466,55.738350],[100.576706,188.519837,60.956326],[100.242355,174.062897,54.278534],[102.797714,167.219391,61.036347],[101.832993,164.268555,55.852539],[105.039658,159.066681,62.035431],[104.597031,155.971131,57.633789],[106.059616,144.027558,54.347130],[101.264938,140.714173,56.064095],[107.504868,137.833771,62.016121],[106.887009,145.413208,55.587517],[98.581833,167.570801,48.005745],[96.575913,162.667359,43.026139],[97.941452,161.894074,47.909676],[104.617172,149.954438,52.845055],[102.566940,148.040100,49.351563],[99.671738,146.221314,48.647034],[95.655563,143.861908,49.203766],[95.851120,140.511444,54.825249],[92.726547,139.651398,54.243599],[97.557114,138.868409,59.230305],[92.504929,138.470856,60.963829],[96.902695,133.555695,62.442826],[101.566940,130.319825,66.069775],[94.976059,127.506867,58.196907],[94.685898,117.752533,53.293198],[80.684921,115.697571,42.491692],[76.267380,119.138916,42.442017],[74.603317,119.264527,40.726365],[73.848679,116.753907,37.450097],[74.205673,118.393524,34.092888],[74.201889,113.156891,30.457169],[73.810532,115.821991,29.786606],[67.749680,112.789917,24.963562],[64.468369,112.190338,26.160202],[58.894760,108.308960,27.315796],[64.383530,125.286682,36.672104],[57.939804,127.385346,41.146256],[64.445297,131.754120,41.915200],[73.899033,110.981232,24.235093],[73.698959,103.015076,29.967293],[75.564438,101.746155,31.905274],[74.126267,96.380921,27.478608],[74.035690,88.872071,23.247063],[73.705673,109.499085,32.492035],[91.100388,129.336487,54.965226],[88.632553,133.568268,55.696640],[85.686813,123.649262,48.772942],[100.431137,177.282105,50.741036],[101.303085,202.127045,62.792794],[101.108017,196.879669,64.371346],[103.106064,207.809967,68.790448],[101.772202,198.975769,59.107338],[103.103562,207.061737,62.420693],[104.962814,216.422699,66.405079],[100.554489,196.119507,59.990765],[101.138168,180.477936,61.606526],[101.816208,190.725464,66.043560],[105.718063,180.815003,70.608963],[110.915207,180.368927,75.159436],[107.076218,193.475617,73.847927],[105.382065,198.799866,72.795391],[102.953781,196.938172,69.161534],[103.934250,169.049012,65.332959],[102.791428,182.784424,66.536972],[104.524521,181.168610,69.092591],[151.843857,280.409973,79.308060],[154.701767,287.006348,90.091160],[156.677109,292.106049,96.919304],[159.832504,296.823334,95.842072],[170.192917,293.707398,97.797259],[164.832443,287.447052,86.963990],[156.446274,289.754761,89.206009],[151.131882,274.885956,95.954846],[148.414841,265.861908,89.416935],[153.353928,283.378784,93.907065],[147.199509,270.691986,76.362698],[143.054733,253.657990,75.199166],[140.022568,242.481507,71.309601],[139.596176,239.050324,74.884327],[140.566818,241.787964,74.164486],[134.112167,241.677918,58.543839],[124.597153,224.569367,48.003952],[128.366745,218.663971,50.027260],[122.033371,217.582032,44.130318],[129.652756,214.990815,51.434716],[129.191757,212.419861,55.727539],[127.247238,216.219666,61.239266],[129.146286,223.910950,67.570797],[120.550461,208.079071,55.904847],[124.407517,207.693665,53.622841],[126.208298,207.442841,51.314835],[127.728867,209.573304,49.296486],[124.763596,205.690552,45.894310],[124.307846,245.116913,40.808457],[120.452744,240.522370,34.325158],[119.706589,237.109467,29.704392],[116.203110,236.078919,30.445885],[123.589279,240.796448,32.968300],[127.390244,247.478058,45.831971],[124.517685,243.795410,43.934479],[118.728684,239.334015,35.143525],[111.850815,230.812531,32.337311],[151.073471,264.085419,58.233399],[151.145798,271.022126,64.716080],[152.805222,278.503479,73.543335],[149.762802,275.652558,72.185395],[155.516037,279.701447,74.504521],[157.447678,267.371430,25.948601],[156.218002,265.540222,30.934304],[151.833969,258.345246,27.281830],[156.042160,251.987305,32.055634],[148.401901,247.217865,23.135613],[147.427597,238.643677,23.485207],[149.367600,235.084137,30.539505],[141.696457,234.603882,30.363533],[137.555466,238.544495,33.364960],[134.846481,232.436066,27.742676],[130.111252,232.118897,27.015992],[114.581955,227.092408,21.278977],[118.493088,219.835144,14.509270],[109.555771,220.462494,18.426461],[101.253159,213.245209,21.539940],[98.192978,202.386200,17.851395],[93.647812,203.931488,28.111740],[121.593674,229.249024,22.798928],[135.999985,227.094361,21.739739],[138.079697,226.273438,18.489342],[127.346420,220.368561,15.515908],[121.527084,214.781739,8.433205],[114.748642,215.444672,3.681198],[110.788986,223.041840,3.650643],[101.090439,198.623200,9.013535],[96.837326,193.649475,3.210503],[91.510666,201.275421,3.073990],[108.248947,203.023133,5.211495],[100.660629,201.224549,2.183777],[101.852829,198.080750,4.615158],[100.617783,201.956543,14.295792],[101.295761,207.643158,17.921250],[91.101547,194.951325,23.593972],[107.883713,213.310791,14.950173],[112.107041,216.871552,14.507416],[121.479782,216.726013,12.134026],[117.749985,214.721802,11.143288],[113.965805,208.763428,4.996056],[107.231979,206.236481,3.159661],[106.239365,201.855133,8.017243],[108.137497,204.812165,9.864312],[110.492294,208.489991,11.071221],[103.337021,206.678650,15.079865],[112.425522,206.773133,8.587311],[111.085556,205.005524,6.964432],[118.278916,211.581513,6.544808],[143.001083,231.895569,27.421204],[91.316757,201.093384,31.414170],[94.488083,204.529633,34.494652],[98.423874,205.096070,36.961007],[95.770004,204.306885,36.579598],[97.796677,199.049439,36.233200],[98.608383,189.096741,34.102196],[93.112778,179.928467,35.910591],[93.393295,189.248169,36.854134],[148.844467,235.712311,26.515984],[143.759445,232.905976,20.475502],[141.167465,229.769593,18.700615],[138.828293,230.084534,16.185021],[144.338913,243.024781,19.816056],[142.937607,247.761505,18.399468],[129.577255,251.419251,15.112290],[122.988999,251.935639,12.894349],[136.794968,250.293915,17.347260],[142.938767,255.270356,18.843445],[146.098007,258.491761,19.709885],[152.243088,251.511994,27.645378],[148.161423,254.147675,23.118508],[150.848862,262.395508,21.894463],[148.415268,260.458771,17.284356],[148.988754,259.881928,22.335884],[140.142502,258.348908,8.016945],[140.705673,259.253937,13.297066],[136.147934,257.872437,11.674324],[146.015244,232.392639,25.936707],[142.657883,229.782746,21.815743],[200.073654,266.718354,42.410347],[196.597763,268.680207,43.366578],[196.616501,276.447541,56.502839],[200.072830,277.212677,59.912026],[203.785965,277.542664,60.824799],[202.340775,283.188477,68.484997],[205.150406,282.516510,65.922234],[206.484024,293.172882,74.316521],[203.874497,289.898896,73.435166],[208.799759,288.916443,67.011025],[210.116440,292.595185,70.073662],[214.027817,284.563202,62.702485],[218.587967,282.507782,61.137886],[223.184281,286.951416,63.425480],[229.167435,286.154145,59.064831],[228.931076,291.242127,65.762017],[228.248215,286.348267,63.073338],[222.808792,291.417969,67.743775],[227.438461,291.977631,69.721741],[225.867752,294.801544,73.162556],[228.078415,297.135132,73.193459],[226.713028,301.957611,77.634350],[224.660172,298.963929,70.425957],[220.408646,295.206238,62.653771],[220.145859,288.144532,55.796311],[228.025681,290.251007,62.167927],[225.501572,298.976960,78.794854],[225.794998,282.233368,59.802357],[229.723770,285.313904,60.566105],[229.850205,280.475403,55.921540],[229.250839,277.027497,51.854012],[228.225998,275.253632,53.511193],[209.411728,282.979676,61.991333],[217.628403,293.858887,71.117184],[217.371231,289.142456,65.953064],[210.121781,296.350281,74.182846],[209.661820,275.123810,55.818718],[210.256516,270.134003,50.290612],[203.750961,272.993256,54.671204],[217.377152,276.166870,57.430008],[223.458206,273.384034,55.040627],[218.261582,271.110504,52.912789],[206.449326,267.866089,47.224976],[200.074295,271.403382,50.500679],[207.250565,263.886353,41.703492],[209.427323,321.201691,115.265076],[204.782913,318.461823,113.322095],[211.963303,314.152741,107.001456],[213.197098,310.704163,100.363200],[221.981491,312.098999,98.157217],[219.349014,311.713990,100.156515],[188.822281,336.320893,137.599121],[176.027146,312.757080,124.231087],[174.577255,314.636200,123.376752],[174.313767,322.313019,126.094356],[171.953476,322.329560,120.273385],[165.540329,313.346588,109.065970],[164.732834,320.694916,124.653126],[163.988632,320.070649,127.337734],[165.056564,327.667816,122.044622],[168.381760,324.083222,117.142554],[169.602097,319.947419,115.214613],[164.877609,322.360627,117.276912],[178.612778,322.223114,132.932878],[177.592880,325.607941,135.863121],[176.061203,319.458039,130.781187],[186.278580,323.791169,129.898482],[189.861099,329.772858,132.508156],[203.676010,325.961212,122.218364],[199.057755,316.879669,113.510845],[202.367935,310.664215,99.429417],[207.049576,310.211243,97.011912],[195.045273,325.750519,125.980522],[205.844559,314.795838,107.069756],[211.768265,308.142121,93.307494],[220.487503,309.325898,95.992253],[199.360306,338.602814,134.765554],[173.112961,325.196076,62.860276],[187.673111,327.858673,62.156395],[191.075241,322.195343,55.968903],[190.493637,317.251190,49.244011],[181.507675,305.950531,45.347725],[184.881271,301.437256,40.595978],[191.016647,304.048798,34.985512],[200.614548,290.499909,32.856301],[199.222366,285.306061,43.459732],[215.444290,281.925904,49.751709],[223.782822,282.747284,53.104752],[228.328690,280.863434,54.100808],[200.267899,291.432801,51.363961],[188.065109,305.806610,55.444703],[184.863388,308.748871,57.284958],[182.968765,317.686554,52.087395],[186.223587,319.169159,51.171936],[186.205490,323.397858,57.631401],[183.279587,331.989350,64.860752],[185.077469,312.600037,44.146775],[179.414078,306.736481,50.352349],[184.933548,300.808289,48.121407],[180.452713,304.496247,47.310830],[179.962296,311.414704,51.288987],[179.403458,309.353028,51.563774],[186.927078,302.676178,51.867661],[190.282333,293.771668,46.003205],[190.475998,292.673889,40.946633],[195.951828,288.347473,39.036560],[192.340744,290.628388,42.921708],[194.433060,289.707001,45.443222],[193.719132,294.041260,34.981026],[193.151596,299.151245,33.305840],[185.055039,298.738800,42.773049],[188.539841,296.953217,37.953492],[202.495163,310.714051,66.933491],[194.930496,311.229218,63.086178],[195.222855,314.536042,66.826126],[200.622177,316.097657,72.019928],[200.591812,323.178192,83.824829],[213.209396,317.695160,87.413918],[188.019119,321.587860,73.521389],[195.353867,326.585297,85.803688],[193.527634,330.594391,92.397507],[198.371933,327.605805,92.362294],[198.637924,331.504547,100.547490],[202.895676,331.074005,107.320120],[205.213120,326.027619,99.914133],[209.162705,322.638581,96.558020],[202.320206,326.273835,95.010954],[191.345566,319.885956,71.683834],[188.969284,315.096375,64.998646],[177.104477,318.252533,68.971222],[179.218308,320.239655,72.034596],[209.691147,307.751007,68.403332],[215.589859,301.846100,65.801781],[207.451981,299.126770,60.320145],[199.990616,303.017243,59.829220],[194.475968,296.503449,51.886315],[186.594437,307.558716,39.783547],[197.505661,301.226075,32.344376],[201.560623,302.702759,32.135689],[211.648300,305.094086,31.880173],[213.851761,295.294495,28.639985],[218.746750,292.973999,27.271058],[202.895859,293.284638,31.051995],[203.429062,297.383637,30.745064],[173.386276,336.426483,65.434075],[170.704697,341.767487,70.404866],[169.831345,336.287018,66.595593],[167.349899,346.107819,73.903382],[164.282517,349.832001,78.022473],[163.487412,341.778900,75.027764],[173.661911,330.463959,64.124577],[178.713425,335.066132,66.297383],[189.150406,339.118439,71.864838],[195.575974,340.363983,71.270909],[194.334549,343.857209,73.684216],[205.754532,354.185578,74.676350],[200.586655,350.591950,72.406296],[200.775009,329.682465,55.440545],[201.581802,339.575043,64.635167],[204.079941,345.430573,69.779366],[199.099930,343.299103,68.535195],[199.170334,335.111542,61.710667],[192.456772,329.439118,63.610775],[183.339707,336.557709,68.932618],[195.929276,335.246125,66.410733],[189.700760,334.425873,68.393567],[197.078476,325.460358,53.214226],[174.197739,341.069489,70.045769],[184.257797,343.071198,73.210480],[173.431625,346.597992,73.413918],[170.741135,348.604096,74.640442],[174.388413,357.385346,79.603325],[183.636948,351.794403,76.199276],[177.888352,344.496064,72.901669],[178.065598,354.391083,77.324936],[163.206406,355.519440,82.076928],[160.465988,351.389740,83.925888],[160.128464,348.633271,86.457631],[164.617600,351.437897,91.644291],[169.860092,353.040253,103.697010],[171.553635,356.315033,97.194266],[168.479965,352.894074,78.073178],[176.761704,366.848358,85.299679],[181.573990,376.507172,91.131325],[184.518509,374.499237,89.217194],[192.147476,371.498261,86.300747],[196.587052,373.464997,86.920918],[206.174027,375.215973,85.938980],[210.089829,379.503815,86.750275],[215.909683,378.183075,80.868454],[213.063980,386.107758,81.967827],[209.697098,384.053681,80.081089],[207.428421,396.010956,86.474644],[211.870987,388.520844,89.813315],[212.389114,393.649750,88.503540],[211.629013,394.082428,86.882237],[210.242905,392.119416,84.571747],[207.197495,380.235688,77.624070],[204.648209,378.865509,74.550206],[212.303726,369.497650,72.613396],[215.621872,361.093354,68.021283],[218.392380,363.474762,74.175591],[221.056503,351.201996,68.028199],[220.872147,350.335297,69.696904],[218.967728,349.469147,71.128956],[217.417923,347.011139,70.124066],[221.260300,339.778351,65.306637],[215.203049,340.377838,65.753308],[208.856247,336.533600,64.418419],[209.842392,340.790253,67.199040],[220.769699,349.448822,64.465886],[222.338394,346.793183,66.594929],[223.900620,341.379547,63.283066],[213.865646,328.868195,56.988259],[219.379746,328.656708,58.067009],[212.360672,322.038300,50.559403],[210.250046,315.391205,42.984826],[217.335465,314.004151,41.458741],[219.214096,307.365723,33.641205],[223.383652,303.792633,29.279686],[233.810776,307.968567,25.498932],[233.429398,311.890290,29.323273],[233.578934,309.664948,29.848900],[232.675034,314.404908,35.580277],[228.369278,326.694794,49.623047],[224.498734,331.413422,59.493287],[219.365524,334.333771,62.258236],[230.845139,319.681305,40.177765],[229.180405,321.446259,37.464836],[224.187393,327.932892,39.747773],[210.861130,331.550507,27.349610],[221.866776,337.776642,49.719933],[224.825791,333.976471,50.792633],[227.616715,325.778961,42.597100],[222.085068,333.626923,41.694306],[218.375473,326.431000,31.154618],[219.498276,334.584931,38.111161],[226.654617,323.852021,38.030907],[222.108841,320.701630,32.956490],[222.975937,316.190277,29.282708],[227.981247,320.243744,34.584343],[231.812546,315.556549,31.846009],[231.249710,312.237000,26.691811],[217.038254,320.595368,27.133004],[213.762772,320.538666,25.075287],[214.359543,313.517609,22.916680],[212.911057,306.912659,20.363541],[199.527847,301.387757,15.736054],[199.586655,293.475220,13.852356],[206.625198,310.931519,18.723709],[207.148514,328.529694,24.181054],[198.549454,327.823944,21.077439],[197.309891,316.982270,17.928894],[184.589371,326.971344,16.413887],[184.115585,318.541413,17.900711],[177.922836,322.673920,19.048561],[176.522934,317.814362,19.852700],[166.888474,320.307038,24.416047],[155.902817,323.193085,25.965912],[146.055161,323.153900,21.380005],[143.832016,333.818756,30.730706],[150.176682,334.643402,31.980835],[146.062546,340.952912,35.311020],[142.142990,346.180451,38.902390],[140.531235,343.530976,37.865876],[136.709763,349.102448,41.740525],[132.271164,352.142182,43.101799],[128.818649,360.086274,48.542397],[120.208481,365.431488,48.897187],[113.410202,366.769379,44.340622],[115.048264,375.223969,54.691994],[110.349411,370.174225,46.432289],[110.380600,366.531098,43.760353],[108.889267,359.295075,40.873703],[105.826096,353.200653,39.839829],[103.895798,352.385712,39.675667],[104.897812,345.759613,36.586403],[100.600693,352.936982,38.253113],[89.664597,371.951813,43.027611],[84.056442,371.080658,41.549828],[128.021774,350.911957,39.153153],[135.338974,337.057038,28.380768],[129.637375,344.780793,33.523095],[137.197861,341.893769,35.991906],[141.666428,332.547699,28.450875],[108.048264,344.322480,36.270897],[149.963730,324.455719,25.468926],[146.932114,334.032929,31.565888],[156.111252,329.765473,29.013276],[156.459702,337.909211,29.136208],[162.704086,344.930146,25.384934],[159.174851,361.844696,37.086312],[147.064621,373.128815,46.014870],[144.295029,369.195710,45.749627],[142.117783,375.892060,48.369172],[136.068161,368.860627,52.436974],[139.926682,362.624665,46.380715],[138.377487,353.062714,43.670426],[144.691025,355.140839,40.300331],[153.937424,357.746430,34.335450],[155.868576,361.148651,34.524300],[153.192185,366.979035,40.007370],[159.441757,353.795380,29.842072],[152.272873,341.266632,31.923546],[149.481918,348.589569,35.139649],[134.184006,361.551361,49.146027],[131.495407,373.551544,57.994007],[126.827316,372.351227,57.666169],[124.752060,378.093476,61.248272],[121.359360,381.815033,63.803479],[116.048874,397.053070,70.504464],[110.859848,398.171173,68.085202],[103.139450,402.627655,72.928292],[129.323288,379.699860,62.474564],[132.264816,386.902497,66.076657],[133.204392,382.179474,62.048466],[135.881577,389.111725,70.182793],[147.558212,394.757538,83.700348],[142.844956,396.641815,86.813027],[150.794541,401.133149,95.178605],[160.259323,400.797089,91.613890],[161.316940,403.049591,94.790537],[163.535935,409.753327,102.453579],[154.378403,410.635590,112.076457],[156.564682,413.728791,116.266503],[158.891831,416.252411,122.611133],[170.071823,423.659272,129.487984],[171.302048,425.708466,137.603081],[165.407944,420.037751,136.557858],[158.781845,415.262909,130.789061],[161.362290,416.035797,136.263365],[156.114853,408.172089,142.035895],[157.620773,405.216156,146.765910],[162.752792,418.707306,127.660167],[153.024948,412.741425,130.880900],[150.428513,410.013031,135.610525],[149.193405,410.509552,128.746001],[143.459763,407.014191,120.709171],[136.940537,403.980866,113.654619],[145.347092,405.704254,110.184783],[155.805222,403.709137,98.813273],[143.861435,400.281037,94.822092],[136.248154,398.713715,91.483216],[133.187485,395.114472,83.368958],[131.170151,391.301239,74.619530],[124.228928,392.196381,74.812085],[126.493576,390.526886,74.730900],[143.223374,403.646393,105.563626],[138.202255,403.759735,110.126091],[128.188645,401.454315,109.123051],[122.528549,399.804657,109.285207],[124.175888,399.442475,115.141858],[120.435227,396.714569,117.008768],[136.320969,403.605011,118.572569],[149.503647,407.708588,111.536267],[155.629807,406.493256,104.115179],[152.981796,412.618317,124.996692],[136.003647,373.047638,55.161957],[139.263352,380.799225,54.975327],[139.364365,383.953888,60.692784],[147.406113,380.740326,61.429909],[154.486679,383.226837,68.968289],[154.913864,398.577973,89.270989],[167.646225,400.988495,89.196503],[169.119614,406.964875,94.415501],[172.742783,413.175141,96.184611],[164.455307,405.300263,95.933377],[140.314560,372.684845,49.856942],[151.203232,371.112458,45.797676],[126.997849,385.942719,67.666756],[132.931503,357.695954,47.617600],[158.169968,332.594879,28.230912],[166.623337,336.904938,22.549652],[171.558396,343.619355,23.380776],[163.871140,355.973908,32.179657],[165.042832,349.823456,25.767861],[162.725754,349.454804,26.101067],[161.688645,356.428864,31.248825],[159.768112,317.323029,23.348122],[167.235397,314.113007,21.637703],[177.296616,299.052063,14.757874],[177.176987,296.659607,13.543290],[170.815170,296.360932,11.473046],[182.863419,296.244568,14.189049],[189.196152,299.307282,15.252732],[194.001480,309.907593,16.705841],[190.823258,317.491852,17.461876],[183.193283,314.141388,18.369500],[170.788437,318.034699,22.064652],[181.797226,309.769745,18.196518],[190.750321,304.112366,16.426438],[177.612595,305.951447,17.900513],[203.815720,307.442353,17.194695],[199.159165,321.184174,19.005310],[206.111679,316.980255,20.103157],[202.245834,326.191620,21.307099],[169.938950,313.352387,21.035546],[166.662521,306.443207,16.847222],[163.142197,297.908234,8.691994],[154.760849,306.871338,9.167778],[149.825241,312.539704,11.071503],[155.759628,312.376801,17.092881],[162.720078,304.054779,13.046975],[154.515427,318.351288,22.589043],[161.764633,310.690979,18.835953],[174.956040,289.806610,10.042481],[159.755661,298.604706,7.245423],[151.258103,302.562714,7.502221],[154.470810,302.261475,7.022675],[223.650711,308.053437,32.784546],[230.842362,308.418518,29.624565],[208.478592,326.213715,55.253052],[207.989365,319.667939,48.417145],[225.819229,335.704865,58.379609],[209.649674,331.052704,59.372521],[197.732346,322.204132,48.386300],[203.961319,314.828064,42.572655],[193.262344,315.904511,44.487870],[192.464096,320.320710,52.727730],[194.308304,312.099030,39.117546],[194.365585,308.966553,36.192826],[198.460068,315.360749,41.332932],[202.363388,307.418152,35.473915],[216.430618,299.823365,29.132576],[189.146988,309.072907,39.107804],[190.140549,313.339447,43.083886],[200.936752,322.132355,47.844048],[216.923874,356.768708,65.441506],[213.094772,360.577240,64.146916],[199.004471,385.114350,74.806763],[168.220139,324.951569,68.047486],[185.508560,352.357209,118.470282],[176.191452,344.622589,103.021382],[184.267136,362.352875,117.596519],[181.508682,361.680939,124.716561],[177.276718,358.165070,116.422364],[194.836411,369.704132,110.732068],[192.723770,369.587006,107.268258],[189.473679,376.129731,101.310791],[186.970200,379.312653,99.429446],[182.011002,383.599030,94.691256],[182.510300,384.425202,96.330143],[180.447128,373.856659,95.973225],[180.988602,369.318329,97.588372],[182.060776,367.163239,99.593539],[182.310501,364.740265,101.790408],[188.130295,365.394440,107.550304],[189.713852,369.870697,104.095532],[194.313034,383.517975,102.341025],[200.563919,381.109589,106.001219],[193.727829,373.252045,105.034161],[196.350601,378.725861,104.096623],[222.286301,400.092316,121.387022],[234.345596,406.714875,134.972670],[234.118240,403.930756,137.492060],[239.094345,409.840668,142.317629],[240.864365,413.994965,141.383559],[251.746750,428.766144,150.386038],[248.998123,422.272614,152.001459],[255.458267,431.850312,156.153752],[259.985947,438.487763,163.411705],[266.421799,452.843598,172.868504],[261.874893,451.096283,157.369355],[253.055130,439.373566,146.179814],[247.249771,425.712006,143.914799],[239.988663,415.064972,138.582882],[191.404495,419.904450,105.708087],[188.280289,413.846405,99.481802],[194.093399,421.705475,113.720543],[193.698319,418.929413,115.413207],[191.393936,422.345124,121.494609],[188.385117,426.010407,122.348414],[180.049423,425.108307,118.283189],[179.524429,421.844452,109.776007],[192.638840,424.071808,114.185672],[195.863785,413.688202,111.348423],[195.590714,418.206147,116.027735],[200.974991,415.450348,113.446258],[174.037460,416.382172,157.087704],[172.308762,422.361969,149.583931],[174.499497,425.297699,145.702425],[163.086411,409.707123,151.824976],[167.541306,418.844208,151.256447],[168.523361,422.595185,142.330870],[165.365402,417.333832,146.091422],[156.947312,411.415985,137.646895],[164.940170,415.488495,148.693098],[154.271835,407.982086,139.815224],[104.640305,350.754059,136.308792],[102.475937,346.218476,140.526259],[106.070847,355.523285,133.709294],[117.188339,355.641266,134.623783],[118.218002,358.421418,134.779416],[117.371750,344.096833,131.489754],[122.645310,331.544525,125.844312],[122.048447,339.895478,130.938945],[126.099045,339.803009,133.467008],[124.330063,347.830170,134.147646],[129.595810,344.362091,132.392579],[134.833054,334.770600,129.988653],[99.489853,342.980805,141.822419],[90.368515,355.425080,134.591789],[86.056503,356.093659,132.716930],[87.669785,365.932953,129.700899],[89.806320,367.769806,128.540982],[92.068710,363.583893,132.908637],[97.711655,364.858551,130.272313],[101.844833,358.590668,133.809446],[97.519943,351.772003,140.389304],[94.890732,350.933014,140.274205],[94.932724,358.092194,137.387532],[89.052170,362.132416,133.390354],[91.488815,357.338471,136.490194],[87.005661,360.979584,130.080088],[111.662094,327.796051,138.686724],[112.573715,333.485077,134.020530],[111.725937,341.933258,133.900655],[108.592087,341.540741,137.079729],[116.589829,334.991486,129.735999],[112.665451,359.046784,133.419682],[115.834702,351.166657,133.206767],[103.739731,338.929108,142.090123],[108.665085,334.394013,140.581026],[111.398483,320.161530,139.366825],[105.964768,324.465973,140.388628],[110.963303,312.441925,137.400984],[116.921311,309.469055,134.744611],[115.616257,315.534790,135.903303],[115.533737,316.149628,133.482033],[115.996018,314.256989,127.472534],[117.147751,316.616181,123.593489],[118.944565,319.713715,121.796923],[123.245407,316.379486,117.138839],[123.218796,323.426667,121.344281],[123.755966,309.686402,112.897602],[123.017624,301.374390,107.757199],[120.802658,296.702240,105.104033],[118.072373,284.934540,104.516480],[119.434067,270.202973,101.590458],[118.571701,271.802094,97.364687],[120.158737,265.533844,90.914774],[121.771225,258.499756,87.167080],[117.217697,251.724213,88.304943],[118.461289,257.596772,94.360897],[120.428330,248.275177,95.219275],[127.866074,197.715576,94.710307],[128.148239,205.062287,97.652066],[128.381210,191.207123,101.526028],[129.177048,181.248627,96.609345],[127.379868,180.956391,103.613085],[125.048935,188.451660,109.086141],[124.723129,203.284638,108.658986],[113.008347,210.981293,106.945011],[122.468369,214.451020,105.667153],[117.877548,225.542664,103.721526],[117.344223,221.213410,103.543459],[110.410202,220.600098,104.781495],[115.642075,216.482086,104.403590],[124.340256,218.728669,105.170380],[127.371384,217.245453,95.539456],[126.115830,209.472443,106.474150],[127.528244,215.496826,104.623379],[128.109360,216.219361,99.446873],[128.592697,196.884552,100.220209],[127.340683,208.566223,105.261347],[127.351669,189.624390,105.014996],[128.113327,204.752259,102.543557],[126.346726,216.815186,92.545769],[113.260910,216.101105,80.650788],[122.447556,211.693543,86.781845],[123.458298,220.744477,89.678662],[124.360336,227.900177,93.092816],[124.059799,204.705353,87.473378],[124.694199,195.812836,86.848832],[122.867111,193.633362,84.177636],[119.898911,185.805909,80.374318],[123.014145,177.883454,80.307270],[123.213425,162.542420,79.728073],[121.057175,155.661743,77.834984],[128.134689,159.847992,87.993473],[129.173264,167.750244,91.433928],[127.424423,173.621033,100.004092],[122.501694,173.212097,108.339410],[125.566025,169.441162,99.707110],[128.491623,174.633484,97.907746],[128.940170,175.881745,90.799752],[128.262985,190.691956,94.257691],[125.982651,189.874939,87.371804],[125.776230,182.434906,83.918919],[127.826035,172.725617,84.898190],[127.944138,179.451355,87.619824],[126.098740,172.445099,82.267159],[127.768662,161.416626,84.898777],[128.925156,164.728669,87.364911],[126.108505,197.086090,90.157755],[120.473068,162.631470,77.645031],[108.179062,162.630616,70.768795],[115.240708,173.717621,76.451180],[114.138657,181.936188,77.173764],[121.486679,204.884186,85.108216],[114.321945,208.887329,80.964093],[119.003098,196.975067,82.257428],[119.181259,325.011078,123.993743],[113.632492,326.054108,133.879923],[115.251511,319.738556,130.129569],[116.109421,325.377899,127.833285],[114.659531,314.455963,137.479835],[131.747421,299.053864,114.143863],[134.001572,299.205658,118.761842],[140.568649,293.557984,120.074144],[137.363083,306.949097,124.891138],[137.516098,294.462830,119.634978],[138.335556,282.015137,113.702884],[134.429794,282.081269,109.174076],[134.775375,268.133087,101.050436],[137.546311,265.316040,101.514168],[141.545761,260.479492,97.913895],[145.694565,260.137299,94.482136],[146.692551,268.320954,102.113266],[134.620102,259.254059,94.555216],[132.347275,264.089936,95.032893],[132.345139,278.958863,103.658169],[130.174973,285.215241,104.052367],[123.666733,292.948975,103.320815],[119.495041,287.677491,101.135973],[121.409287,287.278809,99.729044],[126.861008,280.246979,98.433964],[124.352097,280.264710,97.062037],[127.148239,265.250244,91.136773],[118.511459,281.787232,99.257075],[121.174729,278.365631,95.677857],[122.966232,267.249268,90.784737],[132.095505,250.591553,87.026398],[136.385117,250.630860,88.997380],[133.735458,254.709503,90.438656],[137.736557,255.859497,93.651678],[130.612045,262.978546,92.645785],[130.139145,275.843689,99.186930],[140.432602,253.761780,91.647593],[127.244248,251.718659,85.051087],[130.389328,243.395294,82.302735],[121.055588,252.403534,84.342739],[114.519577,239.721436,83.648110],[119.897995,224.394776,86.906987],[117.890488,245.494141,90.191323],[122.483688,242.787598,79.314976],[118.108383,242.279206,78.732041],[111.105148,234.052826,76.390313],[109.681992,229.060211,76.835614],[116.164169,226.594178,83.949669],[106.902634,225.064087,73.493287],[110.115646,229.360718,71.842514],[126.775559,259.807007,88.238339],[119.143967,274.272370,95.183642],[131.866623,288.885315,108.518084],[129.059921,288.680695,104.776875],[140.356552,273.043061,108.926403],[142.965317,276.198761,110.871259],[140.282456,282.175263,115.081428],[146.403610,259.617310,84.392224],[105.961411,222.992371,71.104348],[110.006088,148.919312,70.159794],[111.082382,137.103424,68.131737],[109.055649,141.046265,60.992310],[98.499375,137.034394,64.793332],[101.419907,133.573212,68.417118],[102.276291,135.170075,69.543923],[104.215012,136.505646,65.527951],[116.218430,150.178742,73.110947],[119.041855,157.265107,76.086186],[105.072617,213.158997,112.515656],[102.118149,199.418244,124.272734],[99.293076,225.773712,133.828613],[99.085861,229.752259,163.784344],[95.295761,243.136841,165.059651],[98.145737,244.213929,159.356129],[99.187119,240.921204,156.705826],[99.995163,235.188843,158.645127],[101.677048,222.715515,161.240849],[97.349472,253.376068,157.267903],[94.559433,274.830933,158.278668],[96.556503,257.686158,157.866326],[94.861679,265.745087,158.802868],[93.256577,258.804779,162.721436],[96.934433,255.385926,154.801194],[98.253098,243.006134,153.909401],[96.500595,233.200196,165.951213],[67.558518,286.174774,177.689721],[70.954636,285.474945,176.916718],[78.665878,305.137299,167.136204],[83.727036,310.248596,162.685326],[85.992111,315.630860,158.799710],[89.557480,314.180725,156.963444],[91.474716,309.959137,156.192383],[95.817795,305.403382,150.535160],[98.569138,293.036286,142.856247],[96.144516,291.777039,145.994341],[96.524521,279.719696,143.263237],[97.029343,267.779084,141.209889],[95.632980,261.328644,144.402932],[98.350815,258.729096,137.241160],[99.255173,251.566254,133.775264],[101.736557,239.094635,126.754225],[104.623520,246.019074,120.840921],[99.221481,236.693604,133.571767],[97.280625,243.134796,140.148671],[96.213120,251.681549,142.752041],[95.738754,270.951355,145.400923],[98.864975,247.534760,134.539454],[96.658432,241.238678,144.046854],[95.580551,252.147034,146.150015],[95.486313,255.122406,149.469218],[95.021469,261.436768,149.507347],[96.949875,239.793579,148.049126],[97.315354,232.471253,147.566769],[97.794174,224.787201,141.742232],[97.807297,221.918274,145.756287],[95.786545,267.782654,156.390885],[94.824631,271.142792,149.779864],[95.057968,280.502808,147.988907],[89.481979,291.660889,162.504261],[84.136459,285.544983,168.123589],[86.901047,294.491425,164.413205],[106.955368,245.133515,115.432943],[108.262558,252.099884,116.475633],[111.234360,258.354462,118.328679],[115.888291,259.152954,119.067511],[106.275070,259.503723,122.025738],[106.287094,252.485016,119.473535],[103.687241,251.175965,124.301036],[108.802475,260.810364,120.255299],[97.896774,282.477509,140.609152],[104.086411,279.425721,131.676752],[99.908127,283.903778,137.976571],[98.523605,300.414643,146.710848],[92.151901,305.562805,155.154175],[94.253098,292.516388,150.795996],[93.608872,290.519867,153.485032],[93.430527,283.181031,158.559029],[88.740585,307.207917,159.869046],[82.736252,301.872284,165.569600],[80.669296,295.875489,168.751130],[96.149460,299.375733,147.535786],[27.078476,311.790955,174.239334],[24.904953,316.541046,175.069699],[23.358444,315.782532,176.917736],[26.007126,304.808899,180.732167],[28.278305,305.694519,178.592759],[16.545456,305.824372,183.396138],[15.038864,308.841217,181.207329],[18.807480,315.789002,177.572323],[22.251877,324.799042,169.490673],[24.326401,322.651093,168.420014],[26.571701,324.649872,166.829304],[27.969162,326.707245,167.799240],[40.591171,309.854584,173.061241],[40.566452,306.516297,174.352188],[45.986984,306.681702,176.253609],[54.620957,310.322419,173.928788],[50.308823,315.910492,170.325924],[58.560532,325.829438,162.692074],[62.854172,330.107636,159.530659],[71.300522,330.729340,158.907978],[69.580856,327.136566,159.106297],[75.743637,323.691742,159.335213],[82.625107,319.011078,159.113972],[96.892563,313.005371,153.732720],[94.078354,311.406403,154.341034],[102.449143,308.560395,150.170304],[105.927841,306.474579,144.206223],[109.761337,301.158448,140.275561],[112.852951,296.315216,134.133970],[111.284042,305.784668,136.422043],[101.635300,326.951203,140.876822],[103.731308,322.347565,140.549485],[86.539719,337.844635,145.371895],[80.060959,351.851471,137.760678],[77.795151,339.654694,146.860667],[72.131210,352.258087,140.274859],[70.066818,345.942780,145.880513],[58.710373,351.569184,145.954930],[64.008896,344.019928,149.661389],[45.652084,348.957428,152.627510],[46.763413,340.009003,157.803978],[55.049606,330.578766,160.709530],[45.829147,331.208954,161.737740],[59.978012,317.971222,166.682346],[50.398666,320.369843,167.019081],[92.393906,340.838654,140.049364],[87.207504,347.747650,137.649886],[68.116257,354.381562,140.249304],[58.557053,358.812653,140.385426],[52.692429,360.372101,141.445799],[46.472824,371.668854,128.410476],[55.184494,376.517914,117.540510],[59.148544,375.271759,116.682054],[64.677963,382.179840,104.829102],[64.953232,384.924713,96.470261],[61.566940,388.226471,88.503109],[63.766098,388.014740,87.867764],[67.056809,387.803437,88.920216],[65.779099,390.978546,80.246155],[82.841354,392.667023,85.141270],[88.153671,391.164887,84.632084],[94.115463,389.577423,92.378241],[90.456345,389.114960,88.047638],[100.237656,396.833771,92.341027],[102.012741,394.543305,96.084004],[105.810043,397.151215,92.837485],[104.391647,400.426178,88.589421],[107.289291,401.548798,85.493756],[100.227097,406.166901,85.286389],[89.601425,407.856598,85.179924],[80.722763,407.551728,84.235550],[75.150925,398.238678,84.984982],[80.377365,407.245331,75.882866],[76.375900,406.429535,72.281186],[79.249741,407.901947,68.554848],[73.135117,408.337494,69.419526],[78.687241,410.825226,63.398758],[69.866379,434.547455,61.684227],[65.979721,447.306916,65.655136],[72.497910,449.092072,65.204880],[79.390610,452.475067,63.746678],[84.475693,452.171112,60.441887],[82.473679,457.105988,59.869397],[83.660446,462.889740,52.884522],[91.715988,475.769379,53.010331],[92.829453,477.545258,56.947617],[91.571823,479.605378,53.449837],[88.161728,485.854828,56.092064],[85.223862,486.084870,47.090935],[81.848923,493.187165,52.978371],[74.415268,523.284882,57.479058],[72.936264,530.725922,58.838330],[70.528000,542.808503,66.462033],[65.844223,547.031891,60.242802],[62.511154,550.792389,62.588944],[62.074631,552.992707,71.683274],[57.198593,557.815644,87.490067],[47.546372,563.343842,90.849390],[44.502182,565.674713,96.066763],[39.439011,562.262543,113.518174],[38.988083,555.712311,113.279198],[36.647812,555.335968,115.768878],[27.497177,556.802643,117.904652],[18.589707,571.150666,113.588156],[12.636215,574.477387,107.977062],[10.895126,576.934357,104.286888],[19.912033,583.450836,101.814701],[19.629807,583.022065,89.279866],[8.370529,577.786957,86.441788],[-2.988174,567.112397,80.776669],[-9.447281,566.435211,88.686699],[-12.461258,564.511750,90.856621],[-16.212723,562.015839,92.144421],[-18.344559,558.711396,96.796303],[-22.643631,556.174774,98.456459],[-29.498733,557.475800,95.247912],[-36.500931,553.634735,96.811928],[-37.879959,552.330780,94.173062],[-36.634354,549.947174,95.376522],[-37.756973,544.268402,91.135003],[-36.347488,535.028900,88.523400],[-35.822708,529.842438,90.118956],[-36.465347,523.743317,88.040562],[-36.606949,517.700226,74.851380],[-36.538834,516.030732,69.733200],[-38.001419,496.590058,53.782830],[-31.845779,490.707428,41.264435],[-20.692764,498.011505,22.271340],[-20.663528,502.912690,21.990921],[-20.311478,510.419281,22.614304],[-16.135574,528.211762,28.990769],[-14.570022,539.498322,36.429581],[-8.319290,548.620392,41.897553],[-12.374405,547.817108,49.475815],[-17.871780,545.761566,53.728691],[-29.530105,543.390534,72.467358],[-36.802261,545.997467,81.450985],[-36.268204,533.912567,81.177258],[-33.481155,536.773957,74.385487],[-35.524063,527.086396,75.803505],[-35.309708,534.817536,77.580483],[-26.354202,542.537934,64.825123],[-25.340164,539.710480,57.025177],[-22.223343,537.313629,44.262490],[-15.424209,542.327545,42.000725],[-14.435684,550.963654,58.728802],[-7.627457,557.302155,62.669663],[1.009323,562.509919,59.769726],[5.280075,566.213471,66.534459],[4.531723,563.828766,56.712693],[12.048142,563.400116,50.374291],[12.685043,555.681000,39.432160],[19.043503,554.584626,37.155716],[16.568405,557.085602,42.862465],[24.608200,558.076142,47.662949],[30.116074,557.089325,47.389466],[34.972702,545.593232,26.603531],[40.000168,541.031342,25.296013],[36.504257,540.692169,21.723854],[34.173142,538.388886,19.097420],[36.907089,533.358979,17.484810],[50.317734,516.932038,20.021263],[52.050644,512.181244,20.587555],[57.038742,519.872650,26.783593],[60.246750,526.318146,32.661385],[64.788559,532.475922,44.168648],[65.752487,536.330109,48.798287],[67.639938,538.520478,53.544243],[69.408798,541.683564,57.825123],[72.068344,537.097748,62.478543],[6.315170,562.474030,50.494492],[-2.506302,552.263642,40.259964],[-10.357803,544.528839,37.354546],[-23.225540,541.780365,55.766266],[-24.293411,547.149689,68.151673],[-14.729813,495.003815,16.577919],[-9.107620,492.708222,12.647728],[-0.158951,493.469452,3.775620],[4.181748,489.463227,7.346138],[7.654404,489.334442,7.716683],[11.873215,487.852082,6.675980],[28.539353,480.407502,12.490242],[36.350205,479.896210,14.159592],[38.987351,478.177277,15.638276],[46.365097,482.299469,20.792122],[40.898422,483.638886,16.480019],[44.834213,491.497223,18.239106],[40.115952,496.506684,13.843499],[38.577683,491.785187,13.640717],[33.644089,489.492707,12.478272],[-7.580521,498.373200,8.795067],[-5.318313,503.567353,6.901749],[-9.791214,507.351654,14.128662],[-14.785843,512.120026,18.826386],[-9.666153,523.409211,19.690239],[-4.742325,538.668488,24.937157],[-2.240250,536.921845,21.628945],[-3.486404,526.319733,17.812767],[0.355148,527.475983,15.698433],[-5.641495,519.054779,15.158181],[-3.506424,514.886017,10.631295],[-2.207168,506.649445,5.953293],[15.165878,525.290253,6.769738],[18.315415,525.344452,6.498871],[23.305954,509.804596,4.779587],[18.759873,504.474335,3.458924],[17.622238,508.090241,3.259018],[6.543015,504.521088,6.453637],[4.830063,511.444062,7.531624],[0.860153,510.801850,6.774445],[2.801010,498.379059,6.702629],[0.234360,501.105866,4.586708],[6.159470,495.947235,7.000832],[13.689682,498.616974,3.632203],[15.253037,489.548920,6.177163],[22.354172,486.580048,8.876503],[23.436142,500.421967,5.777298],[30.074692,504.239899,7.700638],[18.166245,496.782502,4.900383],[1.112167,520.208039,10.704277],[6.675034,526.764252,12.532059],[22.839584,532.721100,12.949555],[5.433029,522.049164,10.557351],[-3.642227,494.077057,4.233490],[-15.300369,501.923188,17.085282],[-9.692215,502.152497,12.987358],[-16.022293,506.359284,18.131379],[-11.221268,493.599762,14.257584],[-37.383621,539.465912,88.457840],[-29.208938,550.854706,97.910799],[-19.905594,553.561615,101.537423],[-11.984146,561.454071,101.754017],[-10.652847,562.377106,108.024129],[-8.151138,562.659882,111.865923],[-12.062881,556.873505,118.004512],[-8.865433,558.898590,120.490911],[1.902695,559.306000,121.834493],[11.569992,556.052582,121.621762],[13.215744,554.276825,122.647721],[21.997299,547.401093,130.464674],[29.370407,532.222138,140.778225],[24.744614,523.162873,140.846974],[20.149399,519.096344,138.092495],[15.902817,519.474396,140.615609],[21.925827,510.637543,142.911486],[21.468796,508.090607,147.264138],[27.933945,509.645600,149.859883],[34.802292,514.372773,151.692498],[39.425339,511.330597,156.343144],[44.675278,503.051483,166.339650],[43.772080,496.779572,166.426323],[40.685471,495.029023,164.567936],[36.325363,497.604340,161.745049],[35.133408,500.978913,164.336071],[38.097031,504.464936,164.981476],[41.594711,504.602753,165.638646],[39.014450,500.481171,167.744148],[27.333359,521.805634,141.556767],[24.347397,515.211090,139.689915],[27.190842,512.458039,146.230023],[29.045212,518.919770,143.469448],[30.280319,528.270600,141.727183],[-6.330337,558.458222,125.326881],[-20.665848,542.973847,106.401593],[-25.604507,537.741364,105.570181],[-31.783035,532.977692,97.046009],[-32.662979,534.248139,93.996163],[-26.797745,539.387055,99.565651],[-28.772598,543.509491,94.841244],[-22.901016,544.270966,100.892712],[-18.443863,547.243500,106.853635],[-21.438187,549.309418,102.386618],[-32.618057,540.211212,91.671662],[-3.863235,551.208527,125.081736],[-1.532669,545.891083,126.147421],[2.468735,535.309296,135.969397],[-3.055801,533.823822,133.490867],[-1.314896,527.813813,139.558867],[-6.335220,527.001496,134.771738],[-6.001175,517.169831,140.784071],[-9.477371,513.354096,138.314757],[-4.647354,502.106781,144.028588],[-7.290909,493.735810,146.426916],[-6.636429,480.452545,149.397570],[-4.099441,472.449982,151.919936],[-7.538834,471.561493,148.639037],[-2.793594,460.218170,152.320971],[-8.415298,457.934784,145.668053],[-11.214310,451.058991,136.671532],[-9.586502,444.097138,131.351692],[-6.306412,440.129853,133.825539],[-11.895462,441.284821,127.755737],[-14.797928,436.714997,125.320874],[-17.665848,430.771027,122.793157],[-17.628677,419.358979,125.500571],[-22.204727,407.523346,111.282890],[-21.458755,414.932160,108.595848],[-22.519546,418.306916,103.736058],[-22.282730,426.379181,100.410263],[-22.728104,428.964142,97.209423],[-23.974686,431.757294,96.837178],[-25.861893,442.733185,96.148180],[-24.234756,448.827179,93.710846],[-21.560867,450.020600,94.947701],[-21.333084,443.604157,93.003226],[-19.619217,439.523896,93.658528],[-20.778030,437.687043,99.262793],[-21.354813,437.804291,94.019886],[-27.991409,456.400727,96.828650],[-23.361282,454.188874,96.183188],[-23.179153,460.688385,100.725928],[-23.329300,464.119355,108.256647],[-39.903519,463.732270,92.675061],[-41.846329,462.647614,84.833668],[-43.688675,451.740448,84.707749],[-42.400955,455.635285,85.812916],[-39.066238,440.082856,91.795412],[-44.857376,440.660492,86.754803],[-47.372146,445.109772,82.850911],[-48.520706,436.868927,79.574719],[-51.640640,437.943573,78.688259],[-54.646255,431.030670,76.253949],[-51.020889,428.031647,76.001233],[-48.354080,420.545868,75.230908],[-55.091507,416.363739,79.680317],[-58.427505,423.781037,83.713044],[-56.734451,408.513275,75.202343],[-61.792679,409.578949,77.023499],[-65.437820,402.008759,71.971497],[-75.590958,394.969879,62.408738],[-74.925430,397.673371,58.518311],[-70.704971,403.528717,50.891434],[-74.413589,408.171173,46.300766],[-72.106888,414.060883,42.080803],[-69.710525,414.533417,37.876381],[-69.810684,411.290558,35.250748],[-71.619400,406.857819,32.175484],[-82.718216,411.428742,27.834977],[-85.021927,437.324005,30.809014],[-94.581985,439.652863,27.082917],[-98.162002,442.435639,25.706353],[-102.329849,443.011811,21.920006],[-104.480972,444.050446,19.897240],[-98.834183,424.707001,15.008156],[-108.295303,425.483246,3.719544],[-105.150833,425.339264,7.770554],[-106.650711,414.737885,0.271668],[-113.676529,399.838227,-14.378044],[-118.343582,407.600190,-16.212349],[-120.009842,413.514740,-15.678093],[-115.227005,419.839691,-8.252251],[-115.776932,427.099152,-5.921051],[-123.283340,431.253693,-12.451286],[-127.816238,433.013092,-15.179069],[-135.622757,426.023346,-26.555290],[-140.123001,428.888947,-29.520210],[-143.823013,425.879364,-36.034095],[-150.048294,425.407624,-40.733101],[-153.777969,428.696198,-40.180595],[-152.232437,432.514618,-37.299049],[-151.932205,440.545075,-33.225395],[-156.162735,443.882111,-30.174202],[-160.161087,450.178131,-28.131385],[-161.256058,453.986603,-31.752266],[-174.903213,477.742218,-36.113045],[-166.871597,480.447357,-29.958442],[-166.014664,488.365448,-22.787148],[-171.688797,484.096161,-29.618873],[-177.098587,485.045502,-32.555611],[-184.153702,488.773712,-34.188102],[-182.169754,486.244110,-37.508004],[-186.349808,489.467133,-41.276268],[-190.497757,503.247895,-42.033333],[-189.165359,503.068634,-39.781396],[-189.438003,505.316193,-35.982582],[-191.882461,504.174286,-32.588707],[-194.695633,500.714753,-28.602882],[-190.910354,494.938629,-27.965355],[-183.703995,493.909211,-26.518150],[-176.318619,493.223908,-24.820060],[-169.762649,490.330902,-24.278740],[-177.674515,488.096161,-30.559731],[-185.847061,491.105622,-29.186256],[-188.942703,492.078766,-35.137124],[-189.549148,498.882355,-38.476371],[-189.403824,494.486237,-37.065056],[-184.091934,500.324066,-23.091804],[-187.444595,502.686066,-23.477868],[-181.764908,506.170258,-21.065925],[-177.172867,504.291535,-19.992286],[-164.027847,509.038361,-9.481544],[-162.703628,502.947296,-11.528892],[-164.329239,513.126862,-6.378639],[-159.002701,511.020050,2.449196],[-161.835709,521.314362,8.456498],[-153.977798,514.451081,13.019020],[-153.765884,518.714508,17.430458],[-145.891373,522.399506,31.392647],[-136.995743,514.806977,35.167702],[-134.516373,524.308625,36.910759],[-132.063003,520.747284,38.057358],[-135.234390,533.893952,35.648499],[-142.703628,536.449738,32.675049],[-140.336380,540.434174,33.953408],[-148.003311,534.949921,30.416191],[-152.376541,528.398896,24.741219],[-148.276565,527.642853,27.042290],[-142.494522,525.266632,33.854332],[-136.632095,528.172760,35.157051],[-143.395096,528.820771,31.593850],[-148.087662,531.013214,29.031578],[-161.421097,534.861176,19.490075],[-150.144119,523.010529,23.924492],[-155.643387,525.033539,19.300446],[-161.652298,525.048981,11.624184],[-164.928360,521.213532,3.135308],[-165.588821,524.291535,4.909569],[-174.108658,531.849335,-1.215736],[-170.386001,525.726471,-2.931594],[-165.756180,529.552582,10.925888],[-162.200699,541.808014,22.936661],[-165.530472,547.479889,23.094666],[-173.198746,588.199005,16.877617],[-177.096878,594.044037,15.074189],[-168.821548,581.870087,18.542084],[-173.853348,576.630951,16.371186],[-181.263504,579.542694,14.517205],[-186.107376,568.546479,5.427880],[-195.895035,574.151825,-1.752151],[-196.074234,561.967987,-11.991874],[-194.392959,548.532379,-18.525718],[-195.466202,552.673676,-16.335136],[-185.124405,544.604340,-9.565757],[-185.360611,549.250214,-2.211586],[-188.224319,551.731293,5.161576],[-186.809036,562.331452,13.648903],[-186.008987,556.315766,-0.127174],[-186.166824,560.910065,5.046341],[-186.029251,562.534149,7.464157],[-185.610306,551.035553,-5.630508],[-193.106888,554.212128,-12.891899],[-192.581253,559.907135,-9.439781],[-190.271927,556.282318,-8.153602],[-189.709305,563.683503,-1.616653],[-191.934219,567.859345,-1.782653],[-184.145584,565.243012,6.153572],[-176.087967,562.816071,21.068283],[-170.176163,569.467682,19.492127],[-176.910965,572.633210,17.155983],[-174.476761,568.307221,17.877587],[-179.565872,568.218964,12.161835],[-181.702530,564.466584,17.847542],[-182.344925,565.712616,8.229996],[-179.878860,566.300751,14.322464],[-178.528519,563.421357,20.336991],[-188.723709,587.172455,11.383393],[-192.502762,596.133332,8.714730],[-200.328079,595.655976,3.834153],[-203.874832,595.658051,0.919655],[-203.856583,586.699066,-2.886711],[-206.748917,582.147797,-9.159767],[-224.069656,606.407440,-11.465232],[-228.816360,605.733918,-16.341117],[-235.357925,608.370941,-22.196388],[-238.308975,613.178253,-21.957252],[-240.783218,610.518097,-29.855064],[-246.695816,609.724152,-35.067237],[-252.355789,618.218842,-35.360420],[-260.920242,622.521820,-41.520179],[-265.635391,622.034088,-47.523124],[-265.624771,630.091034,-41.597709],[-261.081009,635.822052,-30.140236],[-257.160171,637.725373,-25.089988],[-255.843155,643.127899,-22.748100],[-245.548721,641.087311,-13.332771],[-248.380264,639.185761,-18.109214],[-243.846878,637.282196,-15.874412],[-234.757339,629.820771,-11.535255],[-233.323440,625.190522,-11.510658],[-233.276810,621.127961,-13.917930],[-248.350296,628.980683,-22.082664],[-227.627334,622.899506,-8.240089],[-229.282303,620.069489,-10.535652],[-228.173721,615.154572,-11.994468],[-240.395706,621.690094,-18.977363],[-241.147049,619.131562,-20.785682],[-245.688248,613.034211,-31.749992],[-243.749283,614.828705,-27.275383],[-217.657486,609.441498,-4.631134],[-220.505752,618.826691,-3.465179],[-216.325516,617.423188,-1.644508],[-206.727737,611.201874,2.340737],[-204.530167,613.368256,3.373635],[-200.917251,607.195343,4.799256],[-197.180130,613.303620,7.869950],[-193.929947,609.171295,8.788590],[-179.193252,599.149262,12.123146],[-183.115372,592.798065,12.690453],[-182.580154,585.872406,12.620896],[-185.960525,589.865815,11.013359],[-181.013870,597.587250,13.638222],[-171.646622,594.251740,11.975327],[-166.392044,592.114777,9.638222],[-169.362808,601.478791,-4.285705],[-181.294754,612.960175,-6.378379],[-194.251724,626.086457,-13.677284],[-203.310318,633.210053,-13.977714],[-204.988663,635.743988,-17.876167],[-220.623062,649.541901,-22.656608],[-232.264297,659.935089,-41.376579],[-231.006424,657.729340,-44.226600],[-247.092544,671.093781,-48.960319],[-250.176529,672.363434,-53.297035],[-256.750809,675.810822,-59.071525],[-261.415481,674.764008,-66.597572],[-269.775711,677.277314,-73.889457],[-255.319717,663.850495,-70.797142],[-260.320755,661.356476,-77.630302],[-276.944839,668.577179,-85.216346],[-271.742569,658.004731,-87.721275],[-287.017044,664.053803,-95.579430],[-284.847366,654.782074,-98.612129],[-278.547500,652.500519,-95.628059],[-283.191238,648.459992,-99.932518],[-288.220657,649.334992,-102.193490],[-279.408157,637.463288,-98.230003],[-281.134903,634.722992,-100.786399],[-271.606460,626.509064,-98.216697],[-282.708450,632.150116,-102.813683],[-272.885635,617.423493,-101.381249],[-250.354385,596.996308,-95.301918],[-242.619888,607.884491,-87.112954],[-230.227188,594.901703,-84.691215],[-221.699234,574.852082,-86.776939],[-206.341385,565.327484,-81.319908],[-192.959244,552.987397,-77.961235],[-182.625198,549.405365,-72.674797],[-162.311172,545.812775,-56.629417],[-159.084427,552.065399,-52.678382],[-167.945633,558.945587,-56.567146],[-171.239334,565.270966,-55.674934],[-180.743057,569.336457,-61.474449],[-190.585831,577.821991,-64.808464],[-204.720108,590.040375,-70.048057],[-211.542984,588.961884,-72.631019],[-204.175857,583.136200,-70.017524],[-216.137222,589.564118,-76.661628],[-225.505020,595.904755,-80.794533],[-219.343399,583.629486,-82.205864],[-208.330643,588.381012,-71.032905],[-214.505081,598.430390,-73.780220],[-209.021622,593.164154,-71.792793],[-220.364395,603.148896,-76.096778],[-224.104019,613.993439,-73.448310],[-234.933060,601.071320,-85.281547],[-222.432205,598.016632,-76.478814],[-217.155899,594.247589,-74.368843],[-239.124039,609.775910,-83.178672],[-235.064102,626.752350,-74.591301],[-238.668228,637.845795,-70.045311],[-229.844009,632.397614,-65.593925],[-229.839676,637.188690,-65.034080],[-220.837051,633.424774,-58.787651],[-204.380569,627.788544,-43.148338],[-205.099319,635.359833,-32.029548],[-192.006973,624.891999,-17.627206],[-183.711746,615.790985,-21.962547],[-187.704910,618.296601,-26.960563],[-171.331741,600.548798,-23.262748],[-167.309280,594.097504,-25.314842],[-159.751846,580.422089,-29.736854],[-161.678238,579.260529,-33.615165],[-168.688736,583.878754,-38.386284],[-162.339981,575.326386,-37.722984],[-167.477920,574.938568,-41.128379],[-165.751236,572.038849,-41.605934],[-173.424332,577.215790,-47.045097],[-170.771194,571.409882,-49.768486],[-157.321121,553.436066,-50.132209],[-172.449600,569.290985,-53.753639],[-176.881790,576.872040,-52.053856],[-173.566482,580.732025,-43.351814],[-177.783279,571.133332,-57.821006],[-184.141983,586.026886,-52.460228],[-168.421951,592.714081,-28.931144],[-177.058853,599.014374,-35.182808],[-201.239578,628.600373,-36.834801],[-192.340469,617.362336,-37.360985],[-190.369644,612.427460,-40.304192],[-198.366714,618.115876,-45.648048],[-196.575210,612.875397,-48.303978],[-192.244461,603.901886,-49.762169],[-199.826797,605.002167,-54.503975],[-197.060440,600.724701,-54.791801],[-210.174271,613.739899,-58.733620],[-215.711624,620.515045,-59.954795],[-211.075271,631.225739,-48.701225],[-186.563614,605.822968,-41.853814],[-176.990066,593.920929,-40.223091],[-185.960892,594.130890,-47.727227],[-187.302750,593.247406,-49.291084],[-184.252029,596.998017,-46.247445],[-169.550186,589.572846,-34.152031],[-179.899429,605.613251,-31.919395],[-176.677994,604.589325,-27.587394],[-182.008926,611.776093,-26.719474],[-196.253372,627.207001,-28.162986],[-200.223648,629.446808,-33.303520],[-196.315323,628.642487,-23.399879],[-177.270523,590.153656,-43.381462],[-194.369095,594.567719,-57.267540],[-203.728287,596.122406,-65.774040],[-207.608292,607.354462,-61.521064],[-181.069412,588.020233,-45.966682],[-232.540604,605.808503,-80.286277],[-224.781448,600.300690,-77.272377],[-230.069656,610.216339,-79.809867],[-205.615555,594.707917,-68.432580],[-205.966690,602.754059,-63.397758],[-219.433975,613.868439,-69.116920],[-230.118423,615.629364,-77.414268],[-214.324844,605.155182,-70.001457],[-227.369888,623.093598,-69.856163],[-216.354629,618.140595,-61.907951],[-232.227127,631.138214,-68.078895],[-225.291031,627.803315,-63.816032],[-239.784805,598.337616,-89.469947],[-228.902115,587.042755,-86.989708],[-228.950027,580.167816,-89.190422],[-230.959000,568.854950,-92.867729],[-230.111465,552.914582,-92.379127],[-231.818313,549.231049,-93.399009],[-229.206680,544.765229,-93.515022],[-225.741348,533.753510,-95.387565],[-222.343826,527.417328,-95.347694],[-224.241348,522.552704,-95.891456],[-236.262344,523.991669,-96.429695],[-245.774307,525.081696,-96.422066],[-248.445816,529.586945,-95.507194],[-249.226456,538.916413,-97.671425],[-260.883011,548.127533,-100.080117],[-272.964676,549.104523,-98.642814],[-264.505203,539.882416,-95.835334],[-271.216629,540.062287,-93.149955],[-286.268082,545.837494,-82.500221],[-277.721207,558.428620,-74.046287],[-268.601456,561.275727,-70.746650],[-264.224747,568.738800,-70.367027],[-261.434708,573.356598,-67.054024],[-256.234390,579.241547,-63.238014],[-252.745560,581.335602,-60.365654],[-248.866043,584.715912,-52.216011],[-245.514175,585.966400,-47.738029],[-235.396133,579.992462,-41.632606],[-238.350723,584.330658,-42.686348],[-225.463699,583.466095,-30.197532],[-223.387222,584.772492,-26.833198],[-217.737442,583.192047,-21.059150],[-213.515884,582.018769,-17.601402],[-202.454910,564.636872,-16.043968],[-211.864883,569.330475,-21.004052],[-208.561966,557.031525,-27.704597],[-211.911148,568.708344,-24.661064],[-204.993301,559.977570,-22.284690],[-203.969253,571.021210,-14.546440],[-200.770584,570.959076,-11.414085],[-203.015823,550.373993,-26.003212],[-189.086624,543.229218,-16.252998],[-187.295547,528.318634,-23.024529],[-192.034012,535.170746,-23.693382],[-187.593460,523.343903,-26.992973],[-181.985245,518.797028,-22.689065],[-187.942398,512.807282,-25.035775],[-191.420425,509.207794,-27.987541],[-191.721390,501.982819,-25.490273],[-184.997391,517.574250,-25.993660],[-187.863785,512.933808,-28.621482],[-184.445572,520.122467,-24.472938],[-188.364212,512.159088,-35.174034],[-193.371841,515.650421,-38.243034],[-196.955032,508.494965,-44.166389],[-207.013626,514.922882,-47.014091],[-209.557693,513.599213,-50.177711],[-216.205215,527.124787,-49.129417],[-215.876968,531.372040,-47.943962],[-207.610062,530.554901,-41.614463],[-216.316971,537.823395,-45.352836],[-225.490616,542.222992,-51.252159],[-237.310928,548.083710,-58.571434],[-235.976334,540.625153,-59.296548],[-246.368790,543.396576,-64.355964],[-234.781753,523.075653,-63.068871],[-235.046524,518.212311,-65.252845],[-239.439163,515.526703,-70.414955],[-247.839981,519.488129,-73.627067],[-259.148147,522.166474,-77.312173],[-258.892776,515.823212,-76.499550],[-251.874527,508.369599,-74.558723],[-250.479568,512.773774,-73.240105],[-249.280960,505.370575,-73.267494],[-240.837845,505.001313,-69.611869],[-232.838516,504.813752,-66.251152],[-221.151871,504.077668,-60.074272],[-218.061478,507.060028,-59.157783],[-203.373489,501.658844,-51.822242],[-250.986038,499.505036,-75.408104],[-250.521683,497.303315,-79.306709],[-249.401993,496.767670,-85.805793],[-238.557938,502.939911,-96.412727],[-229.243606,502.511933,-96.352592],[-219.511673,497.717255,-94.782936],[-219.183548,501.646515,-95.329155],[-210.214249,492.771088,-92.328407],[-198.544327,485.290436,-89.022972],[-181.006241,475.190338,-85.066200],[-191.374588,472.277375,-82.157158],[-182.512466,469.645050,-81.817176],[-171.530105,465.024689,-81.278053],[-163.403213,462.576569,-80.464776],[-151.343338,462.378693,-77.842002],[-155.184341,460.346955,-79.027977],[-148.570694,452.451325,-78.959266],[-150.854629,444.890961,-81.076164],[-144.670425,433.659699,-80.536049],[-142.827164,429.544098,-80.430168],[-142.565933,421.917694,-81.729148],[-136.544693,420.408844,-79.389640],[-140.978409,412.977143,-82.372200],[-134.866043,401.850434,-81.151421],[-129.913101,403.249115,-78.682762],[-118.828934,401.880341,-72.868415],[-114.351028,389.646332,-71.734123],[-106.346146,382.340119,-67.785423],[-105.306778,376.069611,-67.717613],[-111.086502,383.018830,-70.488670],[-116.123489,373.261200,-73.458778],[-126.925247,377.703156,-77.231758],[-127.786392,387.027924,-78.971565],[-132.156631,382.282013,-80.948326],[-137.052627,392.275299,-82.787788],[-139.996902,395.124848,-83.863334],[-132.340103,396.250336,-80.532447],[-123.936294,382.103363,-77.269493],[-121.041031,379.128388,-74.935920],[-118.552200,386.445282,-74.398629],[-124.555069,398.939484,-76.436897],[-138.364578,432.892792,-78.099571],[-133.736587,446.851960,-73.205696],[-131.823257,462.739228,-68.252800],[-119.913101,452.288422,-63.693473],[-107.149795,443.422760,-56.539619],[-105.561233,449.880768,-53.031471],[-91.642471,446.381256,-40.730110],[-87.523209,449.118744,-34.897361],[-79.275528,439.936982,-29.365226],[-76.793960,429.900421,-31.008172],[-72.446060,430.495453,-25.434867],[-64.670425,418.403351,-21.496330],[-60.694717,420.157624,-14.774757],[-57.962173,413.221772,-14.752952],[-49.380447,407.560089,-4.973373],[-48.903519,416.931427,3.720307],[-44.570267,414.472321,8.875603],[-40.370132,410.715851,11.444886],[-38.568985,403.807099,9.167580],[-40.208938,397.163910,0.707337],[-33.403396,381.127961,3.503861],[-30.574783,381.486847,2.983544],[-20.620010,387.042755,5.086930],[-18.643997,388.364594,-1.653564],[-11.179581,387.149445,3.680199],[-3.522659,384.473114,3.150002],[-0.501602,387.905609,4.326950],[7.868210,389.725495,3.401070],[15.317490,396.984528,4.768151],[22.846176,395.780365,11.363778],[28.090866,397.469513,11.998650],[29.481247,404.787323,12.830971],[34.271042,399.996186,10.172699],[43.715927,400.857514,6.392846],[50.394211,402.047699,7.508469],[57.619309,400.731110,10.069405],[71.773972,418.485077,22.244217],[75.651230,428.828827,27.816780],[77.435715,436.826874,27.742577],[76.817429,456.232392,40.368416],[74.020371,452.661164,29.063576],[72.820358,451.082794,25.496903],[78.547714,460.106964,22.101181],[79.062485,463.439057,25.615754],[77.219589,466.624970,26.671189],[73.221848,468.388031,26.461167],[68.902756,468.426361,23.933907],[72.206955,468.048493,17.554192],[72.138596,467.491120,14.373200],[64.038620,469.590912,14.155899],[59.385605,469.285126,15.996788],[57.210495,467.622711,14.033295],[47.620285,459.700409,10.939347],[44.277512,458.333893,10.027863],[34.798996,454.508026,-0.197395],[29.765488,453.915680,-0.074134],[21.041672,451.828034,1.122597],[19.309738,444.521637,-2.626937],[19.214096,440.692047,-3.427246],[28.705979,435.111786,-2.636284],[25.388535,427.005768,6.768753],[30.656479,437.460297,6.152115],[40.480271,440.010346,4.014557],[36.533676,441.787934,-3.514663],[37.291428,444.047089,-5.325622],[33.869431,439.763581,-5.386367],[28.734299,438.563935,-5.973251],[28.033554,442.101899,-4.870056],[32.604294,443.834870,-6.650413],[45.275437,439.174836,6.141579],[39.129440,434.006317,12.229813],[38.401474,430.173920,11.670006],[35.120529,424.970307,13.222512],[32.599594,422.638642,14.311303],[26.557968,422.109223,10.668831],[24.527146,415.601227,9.953598],[22.776474,407.893952,7.032982],[17.208115,409.160309,4.738938],[7.740219,415.199372,0.275689],[14.925705,423.736969,1.335236],[8.406845,423.322174,0.368088],[8.143112,431.846222,-2.334747],[3.298752,436.293122,-0.443061],[3.778366,441.221649,-0.273697],[-0.802811,439.197663,4.147538],[-4.031021,440.524689,8.329941],[3.500900,449.976105,10.023529],[5.364121,457.774750,13.783425],[11.117783,462.667084,14.814545],[21.618393,469.049286,13.895348],[24.806870,466.806977,13.051453],[32.692978,470.195099,13.050614],[19.961960,474.030732,12.751397],[24.439987,471.847016,13.806702],[13.446640,482.210053,8.636620],[21.566452,478.902253,10.926003],[36.340256,473.177704,13.628930],[29.419479,476.592072,13.232781],[42.739304,470.983734,18.036217],[37.234848,469.594757,13.248551],[39.915939,464.029450,13.584351],[31.748093,462.465607,9.050393],[19.598435,461.080231,12.258789],[12.752060,459.477143,13.622795],[11.135361,454.753571,10.182267],[12.344223,448.168061,0.552033],[26.337082,460.077484,8.358277],[22.837692,455.773774,4.363991],[18.108627,456.406708,9.342194],[26.323959,463.723969,11.226357],[9.851120,450.651093,5.982926],[2.602585,445.830597,6.720810],[5.300888,443.784088,0.006928],[12.871811,440.211884,-3.336700],[11.223190,436.102509,-3.792076],[5.238510,453.946503,12.015595],[48.565598,465.758332,17.134056],[50.969223,465.036225,15.940781],[61.960739,469.915131,19.116166],[65.683273,469.300141,19.367813],[67.319321,471.197235,26.000557],[74.097153,472.627472,32.851433],[78.930832,471.153717,34.921273],[81.959030,472.561127,37.523682],[77.043015,477.882660,37.574501],[71.944809,480.759430,37.287033],[63.895493,478.724518,32.734574],[59.160141,478.647675,26.351120],[56.421738,490.301667,25.661744],[66.037827,491.782013,35.960869],[62.595261,485.666413,31.187096],[59.288376,482.589325,26.019165],[62.852707,489.288117,27.451653],[60.949448,488.187836,26.210610],[64.817734,496.565705,30.040375],[61.749863,472.171723,24.821404],[69.890854,475.051544,32.573372],[60.189011,474.558503,25.739685],[56.976975,477.303498,24.560326],[56.677414,471.311249,21.616410],[49.898728,471.514923,21.451950],[57.660019,469.146332,18.943833],[51.648178,480.694977,23.764893],[44.986923,466.939850,17.571503],[46.825913,474.106842,20.909806],[-4.954178,435.485199,6.745743],[-10.041336,429.197419,8.766442],[-15.443069,421.422333,11.055626],[-19.337601,423.884919,11.703263],[-23.580032,424.205719,5.557885],[-29.380875,421.069794,3.767647],[-34.458694,420.788117,10.811745],[-38.274307,425.057404,9.440773],[-42.990127,417.080841,12.307267],[-49.649612,423.383942,10.080178],[-54.425552,426.396149,7.165162],[-58.048355,430.268280,3.531166],[-64.632339,442.942658,0.558068],[-64.314346,438.528290,-5.575462],[-67.528335,445.136933,-6.691307],[-73.506729,462.088715,-1.910957],[-73.271744,465.874237,7.040368],[-69.634659,456.730439,9.465248],[-67.751968,452.064728,6.812989],[-69.641128,454.361542,0.430680],[-72.296402,462.575836,3.812874],[-65.493423,446.013642,3.382553],[-60.655044,436.500214,6.616883],[-61.670425,437.319611,10.597504],[-58.466751,433.234894,8.677109],[-58.513992,435.701691,21.279274],[-57.316910,441.102875,25.647042],[-67.911026,444.684479,33.741494],[-64.377090,447.342804,32.980614],[-68.958328,451.458344,37.445427],[-66.750320,464.439057,48.733666],[-68.952530,466.524140,55.106430],[-64.711258,469.808747,58.287644],[-62.085953,472.212616,58.165249],[-64.936417,479.842255,65.571041],[-70.996475,486.801728,78.914452],[-71.782486,489.835602,79.958573],[-71.200027,493.442475,82.935387],[-63.895584,486.376252,96.475399],[-56.816849,483.737763,102.877997],[-52.416275,472.203034,97.261374],[-42.948196,474.596222,88.330807],[-41.136551,478.726532,93.369192],[-43.910171,478.000580,92.442288],[-43.961258,479.699982,95.439011],[-38.281753,481.403717,97.316941],[-37.926468,483.936676,104.697129],[-39.299515,476.973969,108.576867],[-38.313980,474.121796,108.529309],[-38.156631,479.935334,111.288090],[-39.505508,479.938629,115.675770],[-42.855606,479.710785,118.101340],[-47.652664,489.771576,122.494913],[-43.350540,493.367279,124.252957],[-48.380142,490.073517,118.485293],[-43.426590,495.876862,117.210908],[-39.706985,496.237580,120.143788],[-36.337234,499.612336,120.031669],[-33.857925,501.510163,125.393987],[-24.877334,510.889313,122.367938],[-15.567703,525.618622,126.095193],[-10.174637,529.917939,129.148616],[-31.634231,506.541169,121.994972],[-30.418106,509.638031,120.990959],[-44.689285,514.790131,110.188954],[-46.019424,514.650788,104.621481],[-51.357864,511.749298,109.278968],[-54.395645,506.706879,107.485506],[-46.324173,506.368927,109.678526],[-41.960953,504.440461,113.438044],[-36.884109,512.549652,115.407438],[-39.020462,514.823395,113.624279],[-39.229629,517.988983,112.766176],[-45.619034,513.474640,111.842550],[-48.762039,506.626129,108.336832],[-43.412674,510.989228,111.603039],[-30.075088,516.032685,120.430477],[-30.811111,526.677460,116.347873],[-25.378128,536.566864,115.328507],[-20.897232,540.351166,117.245811],[-25.003250,537.630768,109.407448],[-30.462601,532.251801,103.185265],[-33.679459,526.539399,108.330878],[-36.052078,522.867462,107.713526],[-33.443375,521.595551,115.852970],[-37.405899,522.185334,101.588740],[-40.892959,518.516510,102.330984],[-44.708267,515.377350,99.706114],[-44.911819,513.500702,92.965569],[-48.945755,509.364899,88.954075],[-43.864700,510.623688,86.271241],[-57.617874,496.941315,72.306195],[-64.111160,484.596039,54.510559],[-64.619278,478.419586,57.315087],[-68.593643,487.869660,64.834683],[-69.622574,487.273774,69.729611],[-66.074295,491.017060,68.087883],[-66.397476,495.477387,76.465054],[-58.664505,506.750031,91.174141],[-56.253799,503.983857,84.299481],[-60.808060,495.909638,72.242558],[-49.125015,490.842438,63.459191],[-42.555130,495.402436,66.436444],[-46.656814,497.307099,70.930149],[-44.704422,506.328827,80.693013],[-40.057938,504.352936,73.927239],[-38.783340,499.266815,57.601326],[-39.931412,495.559418,58.055645],[-43.157425,491.063324,60.948876],[-40.507034,487.596649,53.983231],[-37.598709,485.266022,47.253571],[-45.917007,484.662384,44.987259],[-39.094925,483.903778,37.973725],[-35.146866,482.303559,33.162087],[-25.350479,480.688202,31.219147],[-22.670486,478.797028,29.530823],[-23.344803,495.516693,25.062256],[-26.739578,494.213715,30.062294],[-24.584915,483.609833,31.039399],[-29.134292,489.003205,36.254296],[-29.203934,484.757477,36.339013],[-34.703323,488.595368,44.351448],[-39.735794,484.352021,47.035378],[-31.779556,483.180634,36.083809],[-34.274856,484.112458,40.302620],[-39.227615,501.445465,67.166733],[-37.957046,514.945893,82.012635],[-37.486771,519.954743,89.070435],[-58.329849,492.127533,66.420010],[-53.781265,489.030915,60.618981],[-51.693985,485.871308,49.273034],[-50.096817,488.608551,58.307862],[-58.775406,486.871857,58.397175],[-64.626602,480.622284,53.801499],[-58.946304,472.015229,52.724366],[-55.703079,468.775299,47.927910],[-55.243423,464.490387,43.345383],[-39.444900,464.300934,23.468850],[-35.652664,469.523041,19.751343],[-31.923233,471.532929,20.857033],[-31.877273,472.146454,16.018433],[-36.329422,470.528900,14.963265],[-36.110062,448.338593,11.944542],[-42.725479,447.006928,11.316758],[-44.514725,459.237519,27.216408],[-47.948685,448.638459,22.715531],[-51.051956,449.777130,26.202790],[-57.512222,447.586151,28.983788],[-62.613235,454.461823,36.398087],[-56.509781,452.436005,31.842080],[-51.897842,462.810700,36.699631],[-52.339126,456.126313,31.727478],[-48.664139,460.106598,31.227127],[-56.367142,457.557404,36.106041],[-64.067825,460.230622,41.195359],[-57.845352,463.230866,43.299149],[-63.631729,467.665680,53.186867],[-61.768204,477.049652,52.116539],[-61.425674,474.850739,57.317345],[-37.137710,466.423615,11.510811],[-31.549759,462.666718,10.705811],[-25.329422,459.973603,14.330605],[-24.043045,466.962189,19.596123],[-19.972854,470.443573,24.967148],[-22.813309,471.515717,24.102105],[-19.872513,476.357086,27.840813],[-15.394119,476.043976,23.920823],[-17.494339,482.572357,23.778481],[-21.361893,484.286042,26.806916],[-14.766922,491.583161,17.111260],[-34.057754,470.986603,26.551011],[-29.048050,470.070954,15.534386],[-32.953934,469.917572,13.196762],[-27.874161,471.879120,23.606530],[-29.665970,465.763031,12.659195],[-26.592300,470.832917,20.299103],[-25.954788,477.476593,28.819985],[-30.168899,479.881195,31.366288],[-27.983414,474.251679,29.475708],[-34.754043,475.009980,31.211678],[-41.366592,465.879181,30.031403],[-36.940750,469.515168,27.381806],[-34.294388,472.641144,29.242951],[-29.171524,438.570099,10.796646],[-24.679581,430.933869,8.464226],[-19.145035,431.789399,11.184243],[-17.166214,437.030243,11.927102],[-11.161575,441.578339,11.123276],[-10.232315,449.569184,13.683136],[-5.588699,457.260102,17.294159],[-5.768021,452.463593,15.839447],[-1.520950,456.444855,15.587563],[-4.936355,448.646759,13.218995],[-2.648025,447.586274,11.790337],[-7.061294,441.080292,10.292412],[-14.949722,431.083649,10.641922],[-0.132034,470.315338,15.546097],[-6.149673,474.384125,17.350472],[-13.481277,484.992157,19.186257],[-11.400650,477.692658,19.756653],[-2.420853,482.634003,9.481438],[1.973190,472.831818,13.370926],[7.347153,478.585541,10.932221],[11.116196,477.508942,10.516419],[7.917221,471.863373,13.639557],[5.039597,464.155060,15.255326],[15.861496,470.763825,14.019738],[11.674606,465.863251,14.851990],[-1.211807,485.551667,7.916100],[-3.799393,486.005646,8.571556],[-5.793960,492.476471,7.426110],[-4.509476,480.259186,13.114380],[-9.803299,487.832184,15.281929],[2.629685,468.009247,15.435997],[-2.974747,458.819550,17.390717],[-3.930313,462.940033,19.626618],[-2.489761,466.297150,17.564141],[-12.932449,452.510285,13.947731],[-14.475296,456.812409,15.174004],[-20.470108,454.583771,11.450577],[-26.302261,453.354828,9.326554],[-22.068680,447.203766,11.683457],[-27.402969,445.740937,11.334969],[-16.909134,449.986542,12.525566],[-6.315506,463.695099,19.490342],[-10.250870,465.054840,19.939385],[-6.735977,468.909149,19.002945],[-9.797256,471.488739,20.170296],[-18.373611,444.137482,11.646141],[-24.548721,439.131867,11.833023],[-38.803665,443.560578,12.363488],[-43.985306,438.953644,14.013024],[-42.302383,434.878937,8.717583],[-39.583206,436.329315,7.260437],[-35.743057,429.117646,5.975083],[-33.277054,426.346711,1.725663],[-26.162796,427.163239,2.241867],[-26.626541,424.266754,1.926163],[-30.504898,424.558380,-0.289749],[-31.684708,424.020539,7.443024],[-28.994278,430.853302,2.476296],[-32.369949,432.271637,3.691742],[-30.517654,436.485688,8.660118],[-33.530105,435.877167,5.496781],[-35.140701,443.772797,11.597214],[-32.307938,444.951081,12.140595],[-48.510086,435.696320,12.546074],[-51.973770,430.113129,15.192658],[-43.095840,420.555268,12.416977],[-44.968460,445.166840,15.238419],[-46.470413,445.285370,19.427521],[-49.164444,441.120148,20.581353],[-58.245926,485.090546,50.788887],[-61.107742,481.833832,49.157578],[-54.573379,483.115815,43.389244],[-55.562210,472.113861,47.816018],[-55.407669,479.993012,42.288971],[-49.122818,469.450775,40.824685],[-44.572891,483.428742,38.984848],[-50.963089,481.576508,39.299256],[-48.657120,478.991425,37.837883],[-43.077835,481.725067,36.911576],[-40.065140,480.149018,35.551613],[-43.468399,474.724396,36.541298],[-51.601822,477.598725,39.699250],[-65.021255,482.924469,53.872071],[-50.236771,503.025238,79.953869],[-51.945633,496.821747,71.753796],[-22.938675,514.655304,122.421875],[-27.423965,534.413117,114.564313],[-18.106033,534.923798,124.871460],[-6.504959,539.001374,128.035296],[-27.658340,524.823456,121.756293],[-26.192398,522.837311,122.533372],[-18.593155,528.858551,124.784538],[-55.801346,476.817475,105.425703],[-55.582291,473.422516,105.920123],[-51.148880,474.766571,112.302352],[-51.716934,477.245575,115.168514],[-47.557754,477.238190,113.266528],[-53.885452,485.295807,107.281688],[-55.245804,495.637848,105.923230],[-55.992752,501.659516,104.345627],[-59.098770,507.185517,109.053934],[-61.271377,509.553437,107.761273],[-53.410904,511.750946,104.122363],[-51.928482,510.948212,95.008494],[-40.076431,518.564545,108.616715],[-51.407486,512.502716,99.997097],[-48.880142,500.912140,108.211635],[-40.063125,502.140107,116.198753],[-34.229446,506.930146,118.480245],[-46.368667,498.834992,111.265506],[-51.022598,486.084503,113.181485],[-49.276016,491.191193,113.386556],[-38.879043,481.967987,107.937918],[-40.887222,481.706452,107.594281],[-45.653702,477.896271,110.355269],[-48.365677,473.674164,93.265171],[-31.406998,469.185761,102.412716],[-25.770279,466.265534,104.345005],[-41.961563,469.538910,85.601605],[-40.276688,471.422028,88.611027],[-45.576919,464.251984,82.472550],[-44.607681,470.203949,84.981717],[-61.188614,484.787262,98.600609],[-62.448318,479.132294,97.094452],[-64.433914,472.977997,100.396248],[-69.617630,461.654389,96.463021],[-73.784134,460.205292,94.442246],[-75.152786,455.015595,90.886599],[-74.097610,448.101776,81.353371],[-66.308365,440.180329,82.461571],[-71.089798,443.221955,80.955613],[-61.107559,434.942169,78.029576],[-58.101272,425.064484,79.479603],[-52.989883,421.823273,76.447369],[-60.119827,429.508942,77.895077],[-58.733536,441.228791,79.412426],[-54.566910,446.847504,82.193554],[-55.635940,458.919220,87.431519],[-53.512405,462.719574,87.531533],[-56.232132,463.289643,89.584282],[-63.649185,463.180634,94.549393],[-66.348038,467.864533,98.536330],[-60.556229,470.520661,97.458775],[-61.257217,475.485443,100.965104],[-65.153763,450.822357,87.180256],[-59.012588,455.904694,87.026078],[-74.144729,452.215119,88.821762],[-65.697952,444.532379,83.581826],[-67.009476,457.136139,92.027216],[-72.621536,456.483368,92.515328],[-54.649795,453.514862,85.865326],[-59.903335,448.114533,83.766034],[-57.314285,427.334931,77.035874],[-59.852432,420.545502,83.475521],[-72.967361,441.082733,80.172718],[-77.664749,435.840851,78.724343],[-77.658707,433.884369,77.819825],[-70.878311,421.391083,80.710793],[-73.182754,428.419892,86.531708],[-72.802200,425.431977,75.237530],[-75.845047,431.495758,83.451630],[-69.200333,446.096344,83.565754],[-60.147171,472.455963,101.044547],[-55.548965,471.284211,102.722180],[-54.988052,470.293305,96.535868],[-69.257767,480.060944,87.400330],[-70.655594,483.683380,87.387875],[-69.863174,482.192292,81.554329],[-68.205032,482.081635,74.767842],[-68.883011,470.671906,67.731160],[-68.924026,478.184113,80.188282],[-67.407791,477.426606,72.904808],[-69.221451,476.845734,86.576908],[-67.358597,480.970795,93.518116],[-73.150528,488.708649,88.548466],[-68.885513,483.944062,93.201924],[-72.285660,488.299530,95.208029],[-66.621658,476.253205,94.942099],[-68.346023,469.182892,98.389647],[-69.774063,473.899384,82.852711],[-55.509537,430.084381,11.337082],[-65.356460,439.941742,18.003212],[-67.880936,440.399872,23.635888],[-74.895706,437.448822,28.632256],[-73.936600,424.751190,31.058922],[-77.996414,418.381195,30.710793],[-80.556045,414.015717,29.671013],[-72.174637,416.207794,31.314301],[-68.418594,417.534088,34.488541],[-69.745315,423.826569,31.551194],[-70.100357,420.131440,37.590302],[-71.550674,417.872467,42.029908],[-73.937576,423.516388,49.943802],[-75.856766,430.573517,54.677521],[-74.269974,426.727997,55.641159],[-73.290848,429.027863,61.992855],[-73.796524,432.721588,64.818921],[-73.112625,428.460236,68.712468],[-72.486648,425.675751,70.148255],[-70.661880,412.201447,55.222535],[-71.778885,404.051544,57.442421],[-70.814896,412.964386,63.366799],[-70.743179,417.112824,61.725235],[-71.400528,418.716278,68.972706],[-71.475601,406.976349,69.547078],[-71.198440,422.002838,60.391236],[-72.917984,419.085907,53.959908],[-73.562393,411.951325,50.089898],[-73.245682,415.490082,47.271149],[-69.155533,419.096833,32.555230],[-82.801163,430.476105,31.965760],[-83.101334,439.265595,30.711129],[-81.118790,442.423859,29.756630],[-82.166763,448.159516,30.961228],[-84.316360,455.654633,34.565644],[-85.492569,463.249359,37.617508],[-93.332840,463.969818,41.506913],[-99.835892,463.655976,39.922715],[-105.639175,458.168671,30.193924],[-97.375015,446.627106,28.721459],[-85.221878,446.041230,31.247681],[-87.896866,451.802338,34.276741],[-90.166153,445.065338,30.529786],[-96.136551,453.403961,33.766175],[-94.055252,446.407807,30.174363],[-89.936722,440.658844,29.406327],[-90.146866,460.454193,39.279099],[-92.482925,459.068329,38.811486],[-74.111038,443.722504,26.509209],[-70.019119,442.888092,24.101868],[-68.767776,445.126862,20.456841],[-71.392959,453.042084,22.016213],[-72.707901,459.679352,20.192009],[-71.990982,461.515351,14.652855],[-47.382950,422.245026,11.709534],[-53.447769,418.659455,-1.903503],[-61.790176,436.052216,-0.666534],[-57.744888,424.043732,-5.241623],[-63.264053,430.198578,-11.810890],[-66.405716,438.686920,-10.876152],[-66.625259,431.888092,-16.519798],[-69.007095,439.790619,-14.941125],[-76.889908,442.260834,-25.116906],[-56.666458,418.949738,-8.533043],[-52.802994,408.485504,-9.412437],[-52.248306,414.368134,-4.355560],[-69.029556,428.552948,-21.989830],[-23.003738,420.151764,10.529663],[-24.206558,420.711884,5.939804],[-5.982010,422.403778,3.537712],[-3.052261,425.373993,2.083893],[3.954697,422.711579,0.261834],[13.854416,409.248078,2.672402],[8.872604,409.710358,-2.239372],[19.363449,406.654389,0.476014],[14.439438,404.608124,-2.181396],[12.743942,406.610138,-3.074989],[6.270249,412.677643,-0.852928],[18.439011,400.725312,5.844910],[22.246323,399.373017,10.843560],[24.593674,401.563141,12.670411],[23.579636,405.514557,9.582352],[26.609482,407.300812,12.594155],[19.456528,404.026886,1.082337],[9.540085,393.679840,3.336701],[-3.163956,394.505463,7.155350],[1.632431,397.594513,3.979164],[2.183151,403.564728,-0.404190],[7.531784,402.951264,-2.717094],[1.345871,392.090058,5.302452],[-7.306229,391.429901,7.766930],[-9.653763,395.189667,9.279114],[-21.374832,394.086884,16.248581],[-18.649124,403.734589,16.445130],[-20.512710,413.181122,15.113686],[-29.223343,412.064240,14.597756],[-35.129227,402.144440,14.419182],[-32.316238,393.438874,11.334839],[-35.079361,392.487274,5.303940],[-44.437881,406.056122,0.827935],[-38.205704,410.312043,13.755989],[-33.970962,406.058991,15.951394],[-32.269241,415.050690,12.771263],[-28.700271,419.318756,8.833100],[-30.219070,418.997162,10.196160],[-21.769180,413.475434,15.298401],[-9.138809,407.462738,6.348053],[-7.193130,409.586029,4.444794],[-1.533462,414.017243,0.233246],[2.988632,415.067597,-0.770973],[-8.744095,417.590912,5.516587],[-13.372818,419.390717,9.743012],[-12.182571,410.635895,6.846550],[-14.052872,409.824005,8.305962],[-16.433304,403.468720,9.068879],[-17.789688,398.162995,13.765877],[-16.316360,410.354218,12.188385],[-18.065262,412.204193,13.855660],[-15.271622,393.603302,11.996994],[-10.080459,401.801361,8.702858],[-3.109207,400.149201,5.191483],[-2.004410,405.487580,2.162842],[-14.823379,399.504547,10.141716],[1.009934,409.878815,-0.308609],[6.310654,408.582306,-2.340240],[12.819687,399.991852,2.273583],[6.540878,398.524445,2.482994],[1.930344,427.109711,0.410538],[-1.562271,429.764496,2.561318],[19.174973,416.637848,5.644631],[30.380844,428.038788,11.723740],[42.388779,419.344940,-1.475669],[37.679306,416.064606,2.479081],[43.772812,415.571625,-3.019554],[35.970627,409.538544,5.063012],[40.962937,403.713837,5.478585],[41.256210,409.723603,0.981003],[47.999924,416.086518,-4.093551],[61.160935,418.829743,1.066910],[60.676376,411.478546,8.486740],[57.146286,411.941254,4.903725],[49.113327,409.608918,0.411087],[45.741257,411.557953,-1.858535],[50.129013,414.486542,-2.324463],[43.805283,404.808441,3.851326],[48.132370,404.659149,5.075875],[56.731003,407.715851,7.204537],[67.235947,413.968781,14.075043],[68.989243,417.898163,13.836983],[72.934189,426.151642,23.274804],[72.917526,430.399872,23.185730],[31.937729,408.557526,10.934525],[33.265244,413.021271,9.895241],[32.877487,418.374665,11.136834],[34.211655,406.047760,9.023529],[29.104599,415.951508,13.772332],[30.941025,416.377899,13.914467],[40.073288,426.929169,6.775475],[47.588730,437.837128,8.724480],[45.435532,431.767731,6.467080],[54.962143,437.351776,5.008644],[57.411545,440.082184,6.524529],[61.361618,441.687104,7.660103],[66.563583,448.583649,10.044114],[62.375839,448.811920,4.715599],[58.810104,452.585663,4.647293],[60.319321,460.434967,4.088051],[53.198959,457.091400,2.520813],[73.412277,458.934418,3.458161],[72.440537,463.505890,7.060547],[75.140427,463.822235,11.235032],[76.645187,465.948212,19.192200],[67.275192,469.338593,11.573243],[64.680405,465.534943,4.712525],[59.718857,464.395417,4.833916],[63.837082,460.809967,3.185395],[65.161118,454.088593,1.771469],[53.029404,445.680878,5.610917],[51.624008,453.914460,2.113938],[47.728012,456.614655,3.266579],[55.188889,462.519135,4.131119],[51.470749,460.816803,8.028077],[57.788132,468.039826,6.984772],[59.719528,469.524689,9.809029],[56.910629,455.131195,3.802521],[59.656235,444.448212,6.575928],[44.270737,427.516144,2.534706],[53.957199,427.955902,-3.306984],[60.209335,432.709442,-0.021515],[64.673874,431.075104,-0.282791],[61.839523,438.275055,6.177140],[68.418930,442.559601,13.728577],[69.815781,430.186554,16.211922],[70.547348,421.412445,17.588913],[72.473862,436.564850,20.139122],[65.706345,440.395600,10.036347],[69.344101,450.203034,12.640496],[70.588913,452.597565,17.738533],[72.903061,455.278229,18.977456],[74.765366,442.941803,26.231690],[70.667954,441.178376,17.841927],[69.443588,454.591828,3.181618],[76.293869,461.122956,6.313095],[77.804367,457.660065,9.166466],[77.013962,458.327912,16.554512],[78.553635,460.486542,9.965119],[78.165268,460.582062,13.935654],[69.584396,457.351715,1.749710],[60.062790,426.114655,-4.935974],[67.103623,429.836579,1.516671],[68.747360,427.096833,7.366387],[66.206955,423.380036,1.706543],[62.754990,416.480133,6.422402],[66.581833,426.008759,0.054093],[66.809860,418.600006,7.837723],[68.826401,421.006806,6.984467],[69.783493,422.035797,14.029732],[64.575180,426.961029,-2.517212],[65.886398,436.883454,8.344094],[68.232285,433.881378,11.075882],[69.122238,436.537751,14.210389],[54.455490,420.918061,-5.620025],[55.613205,418.940155,-5.070129],[61.910263,422.705231,-3.059669],[48.880783,424.058014,-4.226020],[43.745834,438.983429,9.226670],[41.230271,437.209320,10.646447],[34.106613,431.165741,12.270722],[22.697800,432.499237,-1.710998],[20.234360,437.300324,-2.972145],[13.657272,429.454804,-2.149925],[22.095505,429.643830,0.016465],[20.751145,421.934418,5.210854],[12.166367,414.192169,0.934716],[14.294113,418.606720,2.411972],[27.049973,448.799591,-1.920150],[32.868881,449.064423,-3.386200],[37.054978,448.140839,-4.695068],[43.125656,447.818390,-2.454078],[44.681320,442.488434,0.105919],[44.930466,440.561676,2.850266],[33.854599,438.076996,8.691101],[35.447373,440.780060,5.739876],[34.809189,441.146332,-1.459358],[36.404221,393.238617,8.624237],[39.760239,392.704010,8.114594],[40.907761,385.738129,5.828362],[45.890488,386.900910,6.670899],[44.002670,394.569489,8.126885],[38.501633,398.702973,8.268914],[23.697250,391.757904,9.756043],[25.257614,377.305878,2.421242],[26.038803,374.003022,-1.708854],[26.798874,371.616425,-3.049659],[28.149338,365.856537,-0.225853],[29.633530,363.064057,1.629937],[31.348312,360.108063,2.940209],[32.609482,354.421479,5.749237],[27.194016,355.609345,6.713288],[17.529221,348.930268,0.237336],[18.963608,349.197235,2.957756],[16.325241,344.328888,2.759797],[13.948837,343.461823,3.940346],[10.743393,344.328827,8.022042],[10.263229,336.968598,7.276192],[5.428696,330.140290,10.146965],[24.507065,342.360382,12.040474],[35.983078,337.954987,11.222763],[38.466110,337.421112,8.196473],[37.799484,343.913300,9.512429],[41.353867,345.074799,1.112969],[47.327011,348.216828,-7.733970],[55.340195,359.830902,-19.543342],[50.345383,354.609650,-12.787117],[46.579270,356.982392,-10.321647],[52.186875,364.306000,-16.699410],[48.839646,364.514679,-12.446739],[58.838852,380.425385,-6.321724],[66.377548,384.895661,-6.887642],[79.580368,391.792328,0.867020],[77.829819,389.077607,2.959313],[86.561081,395.778229,4.907006],[88.261521,387.474213,13.811058],[92.713181,391.795319,12.001244],[93.289902,381.638092,17.618111],[89.838059,373.487519,21.007920],[95.221115,370.821381,16.465729],[103.270187,381.287506,8.053147],[104.638291,378.659333,4.098297],[110.562119,389.602997,-0.999267],[115.225571,396.693695,-5.957603],[113.541489,389.627350,-9.972236],[111.828171,374.762421,-23.435113],[115.329575,367.091889,-32.179420],[118.232041,358.350251,-38.089409],[132.905136,354.741059,-53.910088],[128.094467,348.425019,-51.650475],[124.337326,338.279145,-51.741020],[119.933823,329.178253,-47.379554],[119.457810,326.207184,-50.644218],[117.325546,327.526093,-43.959770],[118.793869,333.839386,-43.180779],[123.344956,341.435944,-47.946754],[113.353562,351.349152,-32.998268],[109.381394,344.092011,-29.249778],[109.978439,335.258759,-30.256187],[107.063156,323.861115,-28.934791],[106.567001,320.733063,-30.903541],[107.287338,314.870697,-34.042534],[111.681381,317.426972,-40.524406],[114.546311,312.380738,-46.931587],[114.084458,323.198883,-43.635933],[111.161423,320.385956,-36.996926],[121.500473,348.556488,-43.585746],[114.507309,340.475128,-36.303978],[112.124436,330.231903,-35.827537],[110.818527,332.397187,-33.365913],[122.759812,354.297699,-43.947487],[125.957810,342.780487,-52.153282],[106.550217,378.605805,-0.316017],[98.368698,375.600128,14.444947],[99.071457,381.672943,14.436043],[96.132919,385.009674,15.973839],[98.784409,391.134247,11.649964],[96.216171,397.541779,8.604111],[101.506210,403.152802,6.588951],[106.641281,409.467194,5.434830],[109.508041,421.097077,5.733841],[112.959274,422.114899,5.764023],[112.342941,407.688874,3.242882],[120.986130,410.962189,-5.964553],[131.320969,429.055146,-14.037819],[134.969345,437.839142,-13.363121],[136.821823,441.816986,-15.366081],[137.407333,434.614960,-28.015862],[133.170578,424.816925,-27.300789],[137.406174,422.246003,-34.263847],[133.816452,408.488434,-37.892418],[142.793564,412.212311,-44.649620],[147.132492,412.356659,-48.108070],[148.971420,422.831940,-43.896980],[150.332443,414.547272,-49.778495],[155.756455,415.122834,-54.974296],[161.427414,416.601288,-59.698005],[176.707626,411.102082,-77.417733],[177.100510,405.280182,-80.415077],[174.928208,401.199860,-80.582496],[169.754746,398.158844,-79.498802],[173.497543,393.260529,-83.348411],[173.186508,380.814179,-87.365364],[176.528549,369.152130,-97.150322],[190.103500,362.008515,-107.485191],[201.284744,364.157379,-117.514213],[215.029343,372.747650,-122.007317],[217.189163,378.851044,-126.316566],[213.831314,383.759552,-129.697715],[198.860916,375.164337,-131.563560],[191.285965,378.051422,-131.914192],[194.329208,383.482392,-132.785148],[186.749863,383.351166,-131.415291],[177.636032,384.800934,-128.262215],[174.436997,380.837250,-126.953514],[152.114243,375.990143,-116.841041],[156.421677,379.560517,-119.224007],[146.197250,378.864838,-113.599113],[140.228623,371.409821,-112.270469],[139.682541,365.291046,-113.010383],[134.271042,360.250458,-109.955468],[135.115585,355.765717,-110.972007],[143.062546,352.522553,-115.764473],[143.435654,328.985321,-115.252449],[147.927963,339.945038,-118.038902],[153.516403,333.913605,-119.647393],[145.804367,306.647034,-113.088691],[150.043869,294.845093,-112.096870],[155.149155,290.758881,-112.874978],[166.117600,276.805542,-107.098580],[170.962875,273.702790,-103.829399],[176.372971,273.949616,-99.808220],[170.636459,270.898102,-97.937173],[166.849045,277.956055,-87.706657],[161.413925,273.078064,-87.699897],[156.979294,276.149872,-85.032676],[155.722214,271.452088,-87.313301],[148.328842,269.383911,-81.943489],[147.855881,262.720032,-81.780068],[152.344956,257.070771,-83.570564],[153.692246,250.614075,-90.917671],[148.780625,247.950318,-94.541648],[143.133225,238.808472,-82.742958],[145.333420,242.803681,-78.224540],[140.682602,251.474121,-75.600608],[136.970505,262.292847,-73.089988],[134.261582,257.584076,-71.128425],[130.942185,263.110474,-68.353187],[127.519150,252.399994,-69.385215],[124.976669,246.666230,-67.629571],[120.959030,254.193390,-64.433693],[119.267929,262.144532,-61.999488],[122.789414,272.084931,-61.458747],[124.185776,283.412018,-61.160438],[119.560471,280.383179,-56.438743],[119.457016,290.893769,-55.267845],[112.087143,292.790802,-47.700310],[103.795395,269.583741,-43.323265],[102.923813,262.432740,-42.325080],[100.326218,262.837555,-39.031655],[98.172775,261.444733,-37.904365],[95.090927,268.456177,-34.832847],[104.811203,276.460144,-45.693092],[100.046250,280.231842,-38.716728],[101.410690,286.726776,-40.150749],[96.261704,289.710907,-31.783439],[97.859787,296.563172,-32.628152],[95.452805,291.157776,-29.189369],[93.553513,284.897339,-27.718437],[93.633286,285.072296,-24.940635],[93.690231,287.223145,-20.060752],[93.978317,284.049256,-14.719566],[96.120163,276.196991,-9.212455],[96.317551,271.220978,-8.769463],[88.836838,267.477967,-4.083427],[88.431076,268.070679,-8.043785],[81.214035,266.262085,-2.494957],[75.330734,261.406220,-0.768760],[72.866501,256.556610,5.608857],[70.707810,249.402344,8.577492],[71.263107,246.151795,13.092858],[67.628586,237.294831,13.427910],[65.333481,229.488495,14.239235],[68.671738,238.273987,4.619500],[64.638229,226.357178,11.425782],[66.450791,235.584565,11.135071],[68.860703,243.072541,9.375779],[71.327316,245.540772,0.970124],[74.436203,254.473389,-3.270813],[70.389328,234.994385,-0.858482],[74.647080,245.712738,-6.979362],[77.740219,259.503876,-8.903404],[76.702805,247.570282,-10.443504],[101.210312,290.888794,-38.959739],[113.711228,297.117859,-48.711692],[116.561752,306.270539,-50.626075],[119.937424,309.229340,-55.063835],[121.170334,300.254151,-56.588859],[125.692795,306.861725,-63.218987],[122.840195,312.274353,-58.445137],[120.594223,321.143586,-54.584053],[109.572861,313.312775,-39.028770],[112.265366,305.432099,-45.250938],[108.617905,300.078583,-42.989418],[103.155075,298.745301,-37.610145],[95.471604,307.907257,-18.379661],[91.169785,308.065613,-7.842095],[88.905502,311.786621,-2.644935],[90.706467,316.659760,-5.346786],[96.638901,321.990448,-12.807396],[91.936569,319.979462,-8.828727],[93.660385,318.085663,-12.412881],[96.174362,312.082306,-20.245247],[96.187119,316.279816,-18.123405],[100.376816,315.315430,-24.898246],[97.788071,306.463990,-24.465614],[98.683823,301.808533,-31.799554],[97.822250,301.150391,-27.925987],[95.899948,299.814667,-23.207741],[93.397751,287.534363,-17.581672],[91.699570,283.369690,-5.802467],[93.835373,277.438660,-5.415260],[89.750351,278.579895,-1.173835],[90.884384,271.300721,-2.724891],[88.686630,273.803833,0.516556],[86.643601,270.229279,4.319146],[84.032272,269.441864,10.170235],[86.856247,273.989624,12.040154],[91.454880,273.606842,10.087571],[92.205368,282.116944,11.227669],[101.525620,283.332123,5.648613],[106.061325,270.451752,1.182969],[82.369858,285.682190,10.286637],[80.826889,296.351410,12.979729],[81.090927,298.854767,14.914193],[84.338486,295.620636,15.494400],[87.265122,301.095642,14.738716],[89.790695,308.852417,14.054345],[82.683701,291.479309,15.180420],[82.417954,286.192200,14.367974],[88.495102,289.875428,13.046700],[82.932480,281.308106,13.394310],[84.061813,277.299469,9.434235],[86.211044,277.128113,4.987519],[86.824387,280.436402,13.599793],[84.486435,273.360382,10.976052],[84.911606,278.893372,13.732674],[81.439438,305.675232,16.267914],[81.045090,310.768006,12.731949],[81.769089,309.302491,8.194916],[81.750229,301.606415,6.697060],[81.487290,294.183258,7.910950],[83.716660,290.080658,3.442627],[90.510605,287.703034,-6.973304],[88.362290,288.015381,-3.083427],[84.548813,293.542664,1.407982],[83.872543,301.754090,2.567490],[82.177536,316.326203,10.460228],[87.363754,326.008149,5.440743],[91.926376,338.092926,4.179299],[100.488571,351.620331,-11.608848],[106.969284,353.146271,-24.386010],[108.049118,340.782074,-26.970360],[107.261765,328.652924,-27.005165],[105.318894,334.466156,-23.530723],[102.737412,323.680573,-19.931373],[102.912399,320.469025,-21.854210],[103.743149,310.411286,-32.829644],[105.759812,305.586182,-36.944572],[99.855209,311.546509,-26.383217],[87.124619,338.711396,14.445504],[91.168625,356.867646,19.072876],[95.128647,356.938019,10.204255],[93.207626,362.810273,17.184281],[97.203049,366.071320,12.832840],[98.651474,361.422150,5.038437],[98.804306,356.685517,-2.053123],[96.667526,350.337921,-1.648231],[93.798264,345.713105,4.700608],[92.534470,348.681732,9.865380],[85.213974,331.256440,12.220795],[83.047104,322.408844,11.794304],[84.196945,312.831147,17.199326],[83.608566,307.505158,16.488480],[86.553208,322.655976,17.987587],[91.007004,321.384980,15.913575],[86.960434,330.294953,18.998993],[84.366318,329.013703,17.007553],[83.601608,323.733063,17.857788],[82.646835,318.806549,16.925003],[90.173752,291.139984,-7.134118],[94.486069,296.165558,-18.573448],[86.872360,282.046448,1.668106],[80.949631,301.582856,10.440323],[122.731796,279.096161,-60.428642],[124.594833,255.923340,-66.428367],[101.667221,267.052185,-40.516883],[97.137436,271.610199,-35.443230],[107.794907,288.102753,-45.444145],[108.052841,277.890747,-48.262794],[113.060227,274.032868,-53.441552],[116.378830,260.363495,-59.097038],[119.109787,270.188355,-59.577064],[117.745041,274.383423,-56.569085],[110.209519,285.555786,-48.530525],[115.336105,283.717896,-52.915229],[108.721359,259.621857,-49.383477],[107.310532,255.750153,-47.688102],[106.934738,232.922394,-48.036888],[101.277329,233.291840,-45.120140],[99.133591,234.378418,-43.301186],[102.270676,224.487427,-45.275612],[90.450791,230.031769,-40.740196],[80.601364,229.468506,-22.297615],[77.862045,232.893402,-14.425041],[75.089279,240.570191,-8.204765],[72.168198,222.377076,-5.105026],[67.762436,209.248474,-0.926620],[60.753220,198.482086,5.672249],[64.683945,196.013703,-6.288055],[73.071884,197.924256,-20.345710],[75.780258,199.895630,-21.384010],[75.548386,202.915863,-26.876305],[78.165390,206.700196,-29.290931],[77.515732,206.646790,-31.893119],[69.162705,203.615113,-29.640373],[70.248520,199.961060,-24.696404],[65.468613,207.306794,-33.238746],[61.808518,206.503998,-30.814979],[54.419479,208.940644,-26.724510],[48.568833,207.211914,-18.704811],[48.168808,214.435364,-21.820717],[49.939377,227.415009,-29.889091],[45.717514,232.797150,-24.005699],[49.965500,241.269532,-35.223014],[47.817551,247.858399,-32.329170],[49.608994,257.113221,-37.110786],[48.529953,268.331238,-34.738273],[46.713730,269.952301,-30.354255],[45.110825,274.018402,-25.567176],[40.551376,270.149659,-13.315849],[40.274704,283.266144,-9.559472],[37.858139,279.706543,-4.669128],[42.495651,290.855255,-13.124229],[41.450913,307.371216,-4.228981],[41.189743,318.455658,-0.959289],[38.616196,316.415863,3.032936],[36.549423,319.067719,7.874855],[33.699265,322.810089,10.736817],[30.162216,322.536530,9.854569],[24.848862,312.553833,6.496338],[35.223129,314.474335,8.822449],[35.651169,305.694336,5.707962],[33.392197,307.323639,8.681878],[30.926315,303.078247,8.735146],[25.350510,301.326386,7.552712],[28.867233,311.192322,9.057564],[43.129868,279.834931,-18.474113],[44.979355,284.755341,-21.941688],[49.628281,285.024597,-32.271263],[59.329514,291.271973,-44.465965],[60.855881,300.413910,-42.764015],[64.437729,308.289307,-44.674034],[68.305283,313.817963,-48.534752],[66.178452,321.364472,-41.598321],[64.952133,328.340546,-35.985039],[63.762924,333.307343,-31.631813],[67.059067,348.998139,-28.702125],[67.139511,332.242646,-37.756919],[69.909287,334.812470,-42.286598],[68.767136,325.942231,-44.064293],[72.955124,330.438446,-50.423027],[73.120468,308.250397,-59.404854],[66.514389,301.264588,-51.238487],[63.325058,295.568756,-48.490028],[60.844895,279.341614,-49.990105],[67.463791,289.169617,-56.752311],[69.331528,287.470642,-59.389503],[69.656052,282.907593,-60.274452],[78.645249,291.916169,-69.579368],[88.094223,288.046845,-79.473411],[94.890305,288.709839,-85.356437],[112.230759,265.329712,-94.231498],[114.949753,258.111725,-93.270286],[118.530258,252.764038,-93.101371],[122.767075,247.192932,-91.530433],[128.255783,245.765442,-92.763970],[138.350754,245.577393,-95.459953],[74.198349,305.052246,-61.959069],[85.672775,317.776764,-73.503425],[82.910019,331.049652,-66.412681],[88.213364,357.887360,-63.853050],[85.193039,358.747467,-58.718391],[89.231796,373.459870,-59.053367],[81.992416,361.658173,-51.989860],[81.734360,372.024933,-45.643563],[86.334702,380.055085,-49.634193],[85.187424,388.012543,-42.055381],[81.001022,391.639679,-31.273842],[80.216721,395.752106,-24.873695],[82.410019,401.756989,-17.866006],[85.313950,405.247711,-9.972694],[84.350571,397.616852,0.189988],[79.968430,394.508271,-2.562889],[73.426376,389.364350,-5.282074],[90.976242,398.522431,6.174561],[93.320175,407.000580,1.810868],[90.986069,408.635773,-2.574455],[91.809250,414.323639,-6.060180],[95.182968,422.878022,-4.867393],[100.287949,419.014801,3.010010],[101.588547,413.587311,4.288788],[104.000107,416.819306,4.726975],[97.246750,407.030976,4.605935],[96.963059,414.178009,1.644028],[106.421188,427.422821,6.001564],[106.313034,431.314850,6.279526],[104.194321,432.656647,4.778984],[96.119003,416.116547,-0.202385],[113.338852,428.483918,7.424988],[110.802597,436.600800,8.714402],[116.977707,441.740937,11.450524],[112.571213,453.152558,11.348206],[118.848740,465.275971,15.944741],[119.696884,471.553681,14.970543],[133.084030,486.468476,19.077843],[139.805405,492.167939,19.730622],[129.114792,487.314545,16.445946],[125.577011,478.246308,17.661965],[109.553696,443.362091,8.716347],[102.530197,437.391510,1.352845],[100.010849,428.320465,1.155915],[69.942124,387.614167,-9.677894],[70.473740,388.456208,-13.756752],[70.315659,387.883271,-17.831810],[73.538864,387.662201,-23.799278],[67.922836,381.767914,-27.646431],[75.400498,385.482148,-27.966697],[79.146164,385.445282,-32.212638],[78.725571,396.399567,-15.286796],[80.110397,397.391754,-7.882194],[81.711594,400.449921,-12.846840],[77.582932,391.273163,-24.683555],[75.408188,390.869171,-19.650840],[60.978562,381.815583,-11.672187],[56.432907,378.089447,-12.580879],[56.905686,377.864044,-19.043022],[78.812302,317.607270,-65.055092],[76.699448,331.580353,-56.705894],[80.266831,334.896393,-61.217750],[73.684921,317.958832,-56.590477],[56.207321,282.879547,-43.030998],[51.143173,282.308930,-36.020561],[48.289780,276.284424,-32.471947],[53.534287,275.337616,-41.011070],[50.774887,266.917328,-38.477028],[63.362961,276.590210,-53.453560],[70.460190,260.873383,-60.762962],[65.359970,256.046814,-54.850959],[60.102158,246.243927,-48.676536],[65.676743,244.736298,-53.847709],[60.633103,235.633057,-47.098350],[62.825607,227.349701,-46.190025],[58.392868,226.095490,-41.011665],[52.013779,213.404572,-26.437095],[57.820236,214.062317,-33.759193],[52.223129,221.909272,-30.854148],[61.508957,265.979554,-51.144477],[56.711655,266.926514,-45.853721],[52.648605,260.528839,-41.230857],[53.481796,248.476654,-41.819313],[57.059982,240.573609,-44.607109],[55.875656,233.243622,-41.137870],[56.097275,253.771027,-44.996452],[52.294418,243.669037,-39.630989],[52.267380,235.328003,-37.151710],[65.436630,271.382233,-55.808526],[73.319077,267.108368,-64.301384],[74.239365,280.388764,-65.492515],[77.682907,262.595703,-68.445350],[83.848862,249.683747,-71.237617],[85.857285,253.798554,-73.715873],[89.765915,245.137177,-74.013725],[94.301926,244.727143,-76.425209],[96.893479,248.219727,-78.767845],[105.261093,252.092041,-82.790596],[98.131943,258.017639,-82.028038],[101.545456,262.249604,-85.193092],[107.248337,260.310181,-88.311439],[89.097763,237.340760,-70.160821],[88.217148,231.669800,-65.805138],[99.567062,228.329193,-68.714897],[104.578598,228.649842,-70.447059],[108.077011,224.413361,-66.399316],[120.547470,231.380707,-64.211906],[121.941391,240.709656,-69.400016],[116.272568,242.618256,-75.930076],[117.853439,233.112458,-69.448875],[111.115585,228.207428,-69.275138],[118.230271,241.406037,-73.810234],[97.263046,232.823578,-71.427635],[102.302780,234.625519,-74.411354],[106.317185,237.878571,-76.562156],[111.048081,243.640259,-78.519401],[129.231064,241.082794,-72.366188],[131.927719,242.274292,-72.461326],[136.188706,246.693695,-73.174156],[137.284287,239.453217,-75.145347],[132.901901,238.484742,-78.678840],[137.149094,238.472199,-83.165763],[138.268417,240.089783,-88.705787],[144.762253,244.262390,-93.671867],[134.273728,242.935120,-91.793586],[128.593063,239.407044,-76.477409],[131.688217,240.941773,-88.105949],[123.645065,241.995758,-72.137565],[119.214951,243.211212,-78.275230],[107.384995,248.786805,-81.736778],[101.488754,242.162751,-78.171501],[96.633469,237.108277,-73.867592],[114.637558,246.904663,-82.650352],[110.078354,251.556427,-85.039054],[117.104660,249.470612,-89.469947],[121.319809,245.256806,-87.537330],[112.644394,246.680359,-81.127189],[130.413925,239.732392,-82.808555],[126.583176,241.381836,-83.810402],[138.866074,238.778107,-77.124718],[128.270065,242.753510,-70.314155],[123.244553,242.771057,-68.715538],[121.308090,239.282013,-64.326713],[121.428146,234.837982,-62.495201],[119.354599,228.654419,-56.975959],[116.336472,224.596192,-53.229148],[107.951706,219.051026,-52.368599],[99.597397,220.598450,-52.634880],[94.788376,223.862732,-60.319679],[100.803818,222.551422,-62.696145],[104.988632,221.575806,-61.882225],[84.410568,230.480408,-61.861869],[78.733566,234.562653,-61.586570],[75.399338,249.000916,-63.520118],[72.722031,255.456635,-62.354438],[67.588120,236.680847,-53.611458],[70.135910,230.464783,-53.787803],[74.217087,228.476960,-55.798042],[80.376877,224.125672,-54.672203],[79.960312,215.693970,-46.008628],[80.002243,212.103363,-36.459480],[83.215012,216.226654,-45.392585],[60.621079,218.494690,-39.291482],[77.140854,239.325775,-62.331138],[80.247055,231.547791,-60.446556],[85.752792,227.594544,-57.393531],[91.234604,223.988526,-53.208564],[93.467697,223.742096,-50.202186],[83.842392,215.493958,-42.288658],[86.697006,218.781372,-45.799675],[90.981064,224.514679,-46.431480],[87.511093,220.105439,-42.067161],[82.734299,215.139771,-38.269432],[80.378891,213.824372,-32.222725],[79.889938,222.210480,-21.879982],[77.480515,228.210327,-11.973457],[78.085251,205.523896,-24.158134],[77.394577,203.158478,-17.607338],[78.480393,208.392304,-14.990120],[73.050156,207.389954,-8.011726],[74.198837,216.041565,-8.239051],[78.874436,214.528870,-14.010139],[74.326645,202.924988,-11.123634],[75.524155,200.526795,-15.299293],[79.337753,212.677216,-27.506126],[82.854782,219.526642,-50.251808],[88.963974,223.017792,-49.633369],[106.264877,219.685334,-56.953057],[112.235886,221.198487,-58.468589],[115.055344,225.494019,-64.846183],[114.587998,222.067627,-56.013084],[117.790756,224.991638,-59.093788],[120.618393,229.834839,-61.025535],[110.824143,222.398529,-62.839135],[110.222946,229.211121,-49.765648],[115.560104,227.217194,-52.760032],[118.949509,239.403778,-61.184608],[114.348984,246.022400,-56.771843],[109.969772,262.950806,-51.908088],[107.641953,271.124237,-49.220055],[108.968430,223.975830,-48.304985],[111.345810,221.067139,-50.561195],[115.395432,235.534851,-55.680122],[94.302902,222.991455,-57.313316],[98.472031,224.292939,-63.952751],[104.309311,221.205902,-47.748848],[98.294418,223.799836,-45.187751],[93.631271,227.091461,-43.098107],[85.839523,221.222046,-38.868217],[90.052597,225.678223,-41.982521],[82.418869,219.560944,-33.525077],[80.725998,222.552521,-27.722862],[94.617172,232.119538,-41.784034],[120.284653,245.698792,-65.070259],[114.640610,257.323304,-58.572502],[115.350510,250.098450,-59.397422],[116.105698,253.490174,-60.226295],[110.230820,235.259217,-74.354866],[95.938889,266.270905,-83.187935],[90.382858,252.169312,-76.380043],[81.386032,260.291504,-71.372535],[100.195175,268.241089,-86.484474],[69.026718,345.626374,-33.987770],[42.485703,301.491364,-8.784889],[46.573471,290.461579,-23.644554],[48.481186,299.013336,-24.162376],[50.078232,306.619385,-23.750999],[54.324082,319.314179,-24.796623],[57.967819,320.832062,-29.703163],[52.537827,293.812409,-34.006340],[51.457260,301.324616,-28.998863],[53.545029,306.859223,-29.914604],[57.656540,312.147950,-33.434486],[56.423691,301.273285,-36.565697],[55.086899,293.125275,-37.995903],[50.764511,292.609467,-31.505212],[62.833176,315.073487,-39.381645],[46.250961,299.739807,-18.970360],[40.970322,312.136383,-1.807190],[47.126999,324.906708,-8.622978],[48.126206,334.404816,-7.528160],[54.096542,347.433075,-13.400520],[46.625656,343.591095,-6.114990],[40.848984,327.552582,1.297966],[36.988022,326.406037,8.181855],[36.345139,331.949799,10.393204],[34.377548,334.231232,10.920929],[24.686264,324.530609,5.045166],[16.698837,320.047028,3.839638],[15.129379,326.279877,8.872231],[-7.726944,308.500672,6.949334],[-5.753738,303.706391,5.417786],[-13.938370,290.299958,3.249367],[-11.055801,286.826020,2.748719],[-11.684158,278.555909,1.442139],[-13.950333,280.712982,2.449295],[-15.162674,260.842591,0.206307],[-13.116104,254.187805,-1.748848],[-2.118057,257.649597,-3.329940],[-3.559585,250.950104,-2.313736],[-5.400345,245.486786,-2.425697],[-7.178299,238.864472,-1.405761],[-9.154800,229.503998,1.952568],[-6.329788,222.051850,14.683625],[-4.621597,214.679505,8.862397],[-0.414322,201.410736,5.450287],[1.745468,203.676911,4.078675],[1.965866,196.627106,5.929200],[2.593430,184.750031,12.594254],[1.338303,175.346314,21.377526],[9.739182,165.008026,17.840195],[20.712265,168.867462,20.380463],[23.781357,157.760254,20.595642],[28.110764,161.227112,22.401619],[32.373459,157.074158,24.318688],[39.668930,149.954712,28.370362],[41.055893,144.490815,34.054833],[44.175888,147.198853,41.156708],[46.283310,147.865021,32.376427],[50.456528,152.386658,29.566506],[40.220810,155.035004,26.152329],[44.141831,156.592713,24.465104],[50.408127,159.103913,19.701676],[46.984177,166.610565,11.003418],[46.886459,162.541809,14.184136],[44.210922,163.378174,12.921448],[40.728928,167.008606,10.755272],[32.157517,171.257508,17.091530],[31.718247,177.447693,11.226303],[25.217270,182.909211,17.434746],[30.572617,181.634613,10.461037],[38.572006,183.632996,2.399514],[33.928330,183.617981,6.346215],[51.327194,158.530884,28.181954],[50.388901,153.283295,35.782822],[52.505478,159.594361,36.845627],[54.179428,168.867646,32.165490],[62.926132,170.579377,26.023537],[55.852890,159.271637,37.575898],[52.163864,154.850220,40.085541],[59.124985,147.750977,48.526986],[51.980087,152.090241,43.436585],[48.273972,150.753357,40.593758],[49.271652,148.345398,44.537087],[48.039230,145.391144,44.891297],[63.330734,144.896210,49.906449],[51.650620,137.194397,45.741654],[46.757065,134.008576,42.355881],[45.452805,140.572449,42.967430],[29.890793,144.894074,36.692398],[26.071274,148.256195,29.178193],[22.856735,149.618561,28.125176],[16.329758,155.914185,29.407639],[13.372116,155.815186,30.596321],[9.406479,154.404633,30.810265],[7.093430,152.839814,30.265740],[6.779282,146.077820,34.515068],[10.212082,145.832825,46.553170],[10.646958,149.737488,40.023552],[13.509445,150.962982,40.806305],[11.265976,152.001465,38.024666],[15.530197,154.849793,33.642098],[19.783493,148.991944,39.163895],[22.025681,145.243317,41.402947],[33.061203,141.553681,40.774018],[36.946396,143.760620,40.547150],[42.348374,143.807160,42.211586],[42.908127,135.466614,39.655793],[45.703964,119.287964,35.352700],[41.191818,126.687012,34.553337],[31.565231,122.363617,32.407334],[35.767868,127.696137,34.350106],[26.835434,131.877899,38.114685],[34.097397,132.892823,37.060349],[29.468796,139.413819,40.456078],[20.093613,139.752198,43.892380],[9.157761,121.202790,38.025376],[5.904099,120.667176,38.038422],[7.515671,109.051789,31.194947],[4.293442,96.278565,23.637719],[-1.237747,95.542450,21.650406],[-6.662796,83.319336,11.726357],[-8.220962,91.820221,8.929551],[-12.319778,92.049866,6.558579],[-13.850479,96.185303,10.831910],[-17.069107,95.657563,13.596016],[-9.819168,106.532868,18.965615],[-12.475113,105.049012,18.738182],[-10.082046,112.952698,25.221650],[-2.088211,117.267212,29.581139],[1.654953,111.184998,30.959580],[4.164902,107.784546,30.086655],[-1.071487,110.526032,28.215187],[-4.248001,104.385468,21.641533],[-4.345230,109.641205,23.041222],[-15.679336,102.569794,18.792809],[-21.431778,106.008728,26.254845],[-18.310379,114.781220,33.171753],[-6.595352,113.949860,25.023819],[-21.439346,97.204926,18.069176],[-22.210647,88.867890,11.913575],[-17.818008,86.822693,5.506401],[-18.508377,79.893982,-0.401847],[-14.436661,85.196228,1.384835],[-10.380997,87.262909,3.894921],[-15.476395,88.177338,4.323136],[-20.106338,84.528717,6.793198],[-11.674637,98.961487,12.399788],[2.959580,68.694367,6.772843],[6.154160,72.161805,7.620247],[6.771225,86.067108,16.973320],[3.671982,84.054261,16.247460],[-1.653824,81.836823,14.291527],[0.859421,89.631348,19.216317],[8.975693,95.941132,22.828354],[19.741074,89.517151,13.045555],[19.608933,81.279053,6.297875],[28.296738,82.966553,4.149224],[31.319077,90.614930,9.357354],[30.737656,99.567505,16.158623],[27.247971,95.870026,14.492119],[26.001083,101.966065,20.214661],[23.968063,71.923462,-3.025184],[21.337021,65.185303,-6.394111],[26.873276,54.656723,-15.639381],[29.627243,53.097046,-15.499519],[27.143845,49.705445,-18.567894],[24.499558,52.612412,-16.007881],[28.496323,74.933838,-2.360458],[10.720322,89.318482,17.508767],[15.252548,88.138794,14.633225],[24.773911,78.813690,1.943489],[14.964707,70.220856,1.151276],[10.997482,78.845673,9.634766],[39.436325,131.999451,36.789071],[40.000473,141.855286,41.389191],[40.805954,145.686035,39.901215],[30.900803,143.989899,39.722466],[35.113144,144.396241,38.589905],[23.486374,148.151276,34.331124],[14.620896,145.453369,44.776688],[36.753525,146.848969,29.197457],[37.320969,144.309632,32.370774],[33.282517,149.866852,26.699227],[22.539780,155.135102,20.406716],[17.991013,158.091217,18.015068],[13.334946,157.197754,17.999443],[14.058884,156.241730,24.921402],[9.927902,155.291443,22.409851],[5.676315,153.767304,28.747475],[-2.399979,151.626953,42.019364],[11.377915,147.018189,43.164238],[3.630722,145.082123,46.604805],[-2.224869,145.538575,48.549858],[-1.700149,155.959503,38.570732],[-8.211441,156.307068,44.180603],[-5.622391,151.680847,45.834977],[-9.146805,151.656952,44.969979],[-8.391739,165.408875,39.133858],[-9.850845,172.630555,34.977814],[-11.360489,160.625153,40.224335],[1.672287,164.402802,31.265946],[0.716416,158.824921,33.811348],[5.005173,162.234803,25.996498],[12.774033,159.542664,16.100869],[17.040207,161.966248,16.859642],[8.120651,156.549347,22.089653],[2.952438,150.660797,31.341401],[3.345078,154.628235,29.711701],[6.535324,159.106934,23.301117],[-5.280350,170.513916,34.457619],[-5.781448,157.026032,43.157723],[-2.725540,147.706391,46.682259],[1.984116,142.604126,47.482720],[-0.960892,139.389435,45.685601],[-4.447586,138.744843,45.740319],[-6.797378,131.567902,40.473305],[-8.385330,125.116486,35.204193],[-1.923111,130.463013,38.139977],[2.711350,127.758820,41.130753],[1.579453,133.926483,43.571396],[4.315903,131.639008,43.812943],[18.347824,130.938752,40.650620],[-1.907425,135.589630,42.197373],[7.085556,133.457367,44.578606],[3.834824,136.968628,46.336838],[9.797775,140.310364,46.822037],[-3.746536,143.152832,48.706475],[-12.398147,131.849823,46.090012],[-14.354324,114.974427,30.352250],[2.972885,145.284546,40.901307],[2.062912,146.797913,36.095162],[10.029892,158.906708,18.200440],[51.447556,140.842316,46.604248],[51.350632,157.864228,24.459145],[6.004868,179.587097,13.155701],[9.046066,171.707978,17.018029],[8.587814,168.535279,18.025956],[5.421616,172.329468,17.747605],[-1.656082,197.615601,9.386864],[-2.989639,203.013001,8.555069],[-7.062515,226.646515,12.299721],[-4.049576,233.323487,8.493813],[-5.281753,226.373017,10.784584],[-4.293716,223.259461,5.948151],[-1.433792,217.598938,2.649865],[-3.508499,213.834412,5.767685],[8.494492,210.626984,8.753449],[11.812851,200.418335,13.558693],[9.152512,222.421570,7.320244],[10.570664,239.149292,4.875542],[14.081772,236.548432,6.655526],[7.897995,252.286194,0.091256],[24.428269,264.462067,5.645325],[25.729660,249.158631,5.162827],[22.596970,251.506714,5.583847],[20.029770,236.127228,7.425560],[12.202072,224.543091,8.223763],[13.474045,218.520020,9.661713],[17.911850,212.256867,11.514069],[12.602646,211.625000,10.695488],[28.949936,206.249695,6.098236],[26.027207,198.250428,10.662705],[46.696945,197.793396,-12.796104],[51.292404,200.430817,-17.525123],[56.644943,198.142243,-18.022850],[53.109360,196.568573,-11.625282],[59.488876,195.156800,-7.114463],[63.798325,195.572327,-12.535088],[61.389023,195.645630,-15.132835],[63.195969,196.505768,-18.370933],[44.442551,191.259919,-8.389686],[47.490769,191.012268,-9.377189],[16.203110,201.215912,15.158318],[12.234177,190.771607,15.125641],[15.036057,189.754486,17.436066],[24.248764,179.487061,19.385231],[28.422653,172.160096,19.832177],[26.040573,167.690766,21.725495],[32.611801,161.400330,22.074944],[46.509384,149.672760,29.101517],[43.923264,146.892517,30.921227],[35.589584,169.416687,13.644303],[45.557663,159.751007,17.401131],[41.266342,161.654236,19.890229],[21.641586,178.700440,20.015061],[17.697983,179.897003,19.634995],[14.333237,178.522370,18.161965],[10.719711,180.495331,14.932503],[12.755539,173.933411,17.793785],[23.461533,211.161103,10.438248],[25.425034,220.555146,7.524750],[29.787888,229.729584,3.286583],[26.000473,227.011109,6.470246],[19.320480,226.146271,9.063797],[22.986191,222.639710,8.752869],[23.765305,235.796387,6.771157],[32.420456,200.537232,2.851838],[31.102463,193.677582,5.945404],[35.943100,190.817902,2.090836],[39.986496,191.031098,-2.804702],[37.315781,202.087952,-3.308303],[42.694748,198.213654,-9.801521],[36.036606,210.735352,-2.999748],[34.954514,222.362030,-1.392311],[37.454697,222.950928,-5.234497],[39.102341,213.626557,-7.825950],[45.484238,241.924744,-25.723275],[44.367172,250.152710,-24.686745],[47.125351,225.542664,-24.403695],[44.992172,213.969208,-16.924126],[42.535446,213.219422,-13.166771],[46.296677,209.755402,-17.143304],[41.305710,221.194062,-12.539741],[40.833420,247.268433,-15.369194],[37.891464,244.287323,-7.740394],[39.647080,254.199494,-12.710899],[43.163010,263.362152,-22.229455],[44.701584,259.218964,-26.407692],[43.091049,254.889130,-22.117454],[42.499069,268.516449,-19.616951],[39.842087,261.685425,-12.799705],[38.629990,267.515473,-8.667946],[33.416855,271.413422,1.179482],[31.700363,276.657776,4.285736],[28.878830,274.724030,5.663460],[25.784897,291.980896,6.972527],[29.236435,288.738617,7.097290],[32.462326,292.431061,6.559060],[36.844467,299.257050,1.626351],[36.830917,282.903778,-2.045601],[32.107163,286.038575,5.464241],[30.772873,270.723053,4.298516],[25.630783,273.539002,6.068657],[22.020737,302.950074,5.366814],[9.838669,294.864868,-1.778946],[11.435166,302.281586,-0.953865],[5.583481,305.547852,1.432091],[-1.070328,285.215485,-4.065780],[-3.425064,278.673462,-5.058410],[-2.263382,268.795197,-5.354370],[5.281845,271.878235,0.607521],[9.033005,267.583802,-0.243103],[9.161240,259.278778,-0.632599],[5.508103,254.882843,-1.032623],[-1.627762,256.018189,0.944687],[-6.275528,267.332398,-5.563835],[-5.191849,273.266754,-5.091125],[-8.301346,283.581726,0.184716],[-3.308060,261.220673,-5.223480],[1.223984,258.759247,2.170266],[-10.233353,268.017365,-2.149772],[-10.792251,292.815461,4.057297],[2.036850,247.896820,0.326973],[-0.786880,237.452423,1.059426],[-2.120071,241.771729,5.235756],[-7.039505,232.990998,8.805039],[-10.356155,222.283203,6.672577],[-4.847244,235.338929,8.980797],[4.195053,242.572327,-0.031288],[4.852951,238.333832,1.041352],[7.493454,235.385834,3.469384],[0.962998,223.992615,2.048180],[0.641098,213.890198,2.740090],[2.643356,208.429810,4.068436],[0.034470,208.767243,3.457238],[7.009445,218.766419,6.579705],[3.075791,217.252991,4.229370],[-1.669510,228.612000,1.942002],[2.093674,234.178925,0.665490],[-2.825149,229.734497,3.685547],[6.570053,260.605194,-1.451919],[3.201828,254.709534,-0.035453],[0.659470,253.151093,2.614685],[-1.395584,252.886414,2.894051],[2.301193,263.388153,1.821083],[5.077316,267.653321,1.045250],[2.595078,266.838990,0.829018],[3.175522,272.507080,-2.460777],[4.220749,278.599305,-3.528495],[10.548508,285.347687,-0.202194],[16.051010,284.502350,2.980744],[12.374008,276.603699,1.134995],[20.536972,294.001343,5.053368],[-1.334732,274.176880,-5.557769],[4.153549,294.145630,-2.412788],[1.710190,284.017395,-4.501915],[14.274948,298.529053,0.458062],[20.109421,317.310089,2.281136],[16.355576,308.779084,0.884461],[10.735520,305.072357,-0.152290],[8.026718,317.155548,6.412995],[16.543320,315.178376,1.516396],[-0.835159,309.739014,5.695092],[37.494675,260.919098,-7.106849],[36.802536,269.489716,-4.585052],[33.616074,261.660157,0.034050],[31.497421,215.003693,2.367562],[38.346298,229.441223,-7.341163],[36.351059,240.478455,-4.192237],[30.340073,260.232666,3.394722],[27.395554,241.285675,4.644951],[40.948349,228.465607,-12.650734],[40.453598,234.951691,-12.683312],[36.435898,228.963044,-3.907188],[32.218918,241.689576,1.141579],[20.104843,212.961670,11.336373],[12.769211,247.495941,4.093659],[18.243759,253.833191,5.014275],[15.709519,258.000153,4.079316],[14.318894,261.983124,2.958786],[19.631088,248.490692,5.782013],[-9.659866,235.047242,-1.013000],[-9.403091,245.871308,-3.959533],[-7.449905,246.045929,-3.950485],[-7.643326,256.437714,-5.390670],[-15.384842,236.652832,0.037957],[-18.408951,236.230408,0.936554],[-19.110000,226.307770,3.183258],[-15.636307,219.792084,4.761368],[-27.183609,216.271118,4.005806],[-35.393997,218.107300,0.641983],[-43.582474,226.980194,-5.524009],[-48.352615,224.045807,-6.187179],[-58.336014,222.998322,-6.584083],[-73.307022,222.477784,-3.726791],[-12.332779,221.673645,4.340279],[-15.855484,211.889862,7.225212],[-13.569351,198.111908,12.321526],[-12.163101,210.452545,11.973267],[-15.436966,204.534729,9.063942],[-24.483658,199.421906,10.290123],[-22.725784,210.435608,7.524773],[-34.932022,202.589081,6.773293],[-42.448685,202.535279,5.283677],[-44.307022,210.141327,2.262894],[-48.334366,205.569550,8.326294],[-50.655594,205.102021,13.273919],[-52.505264,197.266510,27.967095],[-54.745987,196.090912,33.991753],[-54.751724,184.797577,38.585480],[-60.203995,186.277191,43.650795],[-61.729996,188.597565,43.051758],[-62.552933,181.255860,46.894249],[-71.978958,164.684113,46.928307],[-79.270157,156.356812,53.971856],[-72.751785,154.510010,60.439312],[-68.979935,157.085968,56.802216],[-60.295181,145.734192,54.793694],[-63.505875,157.756165,53.525010],[-56.121353,166.649567,45.708619],[-65.097977,164.722199,52.733231],[-63.540909,171.804261,49.912819],[-60.355240,178.340699,47.171708],[-57.353165,180.681702,43.911438],[-51.311905,187.260193,33.029580],[-50.976028,199.014038,19.668213],[-48.961502,194.339112,16.691948],[-46.274063,182.430451,19.514031],[-47.866348,174.241394,24.818482],[-48.636978,171.898407,28.729279],[-48.280411,161.896668,33.971817],[-48.961868,170.627655,36.837418],[-49.746475,168.753632,39.572518],[-49.795608,159.997437,41.858124],[-59.404800,168.477021,48.177925],[-55.585098,173.195893,44.313485],[-49.810745,175.581024,37.031037],[-49.800674,185.932129,28.340523],[-49.003006,177.180512,31.315239],[-47.690384,196.851654,12.322449],[-46.347366,187.111847,16.853707],[-39.353836,180.916596,16.543343],[-36.871780,180.861817,14.390648],[-31.586563,177.237336,14.403397],[-28.816727,172.513855,15.862870],[-21.281326,166.396485,19.366906],[-19.419327,177.082733,15.905579],[-32.879959,171.576172,17.911980],[-36.034683,174.324463,19.433098],[-32.922684,164.833924,28.011765],[-34.932938,162.726075,30.591454],[-29.969009,155.950714,38.740944],[-32.112747,173.206818,15.686654],[-42.932632,181.539185,17.697358],[-45.522598,175.440369,21.626580],[-39.609146,173.505555,22.263810],[-48.568191,185.506623,21.684166],[-47.028519,164.634949,29.522156],[-45.577347,169.316254,24.969574],[-42.435684,191.367035,11.397026],[-35.656875,183.071991,13.270134],[-39.315506,186.935578,12.457169],[-66.780228,169.250000,50.450638],[-70.290542,164.732788,52.557061],[-5.400650,251.729340,-4.877205],[-13.814529,271.685150,1.197991],[-16.361893,276.366364,1.844162],[-17.581375,269.019654,1.417443],[-21.332596,264.933258,-0.629333],[-25.940201,253.857697,-3.115303],[-21.797989,233.337555,0.742775],[-29.188309,222.468720,1.776307],[-20.613968,216.263275,6.015122],[-15.755447,286.626709,2.214547],[-19.422500,299.359040,-1.655670],[-24.399124,305.041077,-5.537300],[-26.202042,317.041840,-6.254844],[-33.556229,328.979157,-11.801857],[-28.668228,338.089997,-6.139381],[-37.934891,338.629731,-14.255378],[-37.290909,347.761505,-12.870460],[-39.173843,354.901276,-12.067955],[-38.278885,369.038483,-7.281028],[-34.091568,370.623322,-8.327644],[-28.819778,368.448822,-10.958137],[-23.438248,364.327240,-7.025520],[-20.955459,368.091706,-7.820031],[-13.716446,372.858185,-9.135215],[-2.701248,379.589691,-1.219383],[0.725571,378.720490,-2.339874],[4.545212,383.897858,0.785561],[13.087265,384.459748,0.664055],[-1.391128,373.852326,-3.686905],[-7.658157,373.997467,-5.704467],[-10.613174,371.773957,-7.543281],[-13.618790,366.849640,-5.695633],[-9.079727,362.681916,0.440232],[-15.601578,354.726288,-2.116600],[-10.882156,356.075959,0.249726],[-10.798233,351.629059,2.443360],[-15.747269,351.915131,-0.084900],[-10.541580,349.060639,5.421212],[-7.202469,355.345734,4.049149],[-4.435074,353.890045,4.061898],[-0.084366,353.017060,0.605683],[7.815781,347.119538,-2.207405],[12.650375,344.029938,-0.115806],[3.938583,344.236542,1.759926],[8.125534,343.312653,1.990174],[5.463852,339.987030,4.459229],[7.529404,340.407135,6.472351],[2.874680,334.345612,6.890694],[0.413864,324.960724,9.826752],[-3.829239,325.908600,10.148896],[-9.667068,327.105744,8.519425],[-11.913284,335.899872,8.086441],[-26.024734,331.307282,-3.845924],[-27.880386,343.510712,-6.332725],[-25.261551,350.221772,-6.496086],[-20.199966,351.027802,-4.402404],[-19.398209,350.125031,0.443184],[-18.088272,350.544098,4.397797],[-7.436050,342.359345,9.307328],[-5.204056,343.423249,6.501587],[-3.424698,338.376129,4.378861],[0.530136,344.732025,-0.365631],[-6.471023,347.302155,6.785180],[-11.458328,342.815277,8.157639],[-3.000625,342.326081,1.863877],[-3.393204,348.540131,3.403794],[-1.209000,338.546479,2.731835],[-24.040481,342.332978,-2.027435],[-18.642532,335.418122,4.011246],[-5.793960,336.927948,9.857438],[-8.648331,339.168000,10.739266],[-15.961014,341.509247,6.439667],[-15.524063,348.321442,7.940819],[-22.515640,333.612641,-0.485260],[-17.656509,330.184723,3.890602],[-21.919205,348.125641,-0.677589],[-19.840286,345.674164,3.885704],[-5.533157,318.856537,8.964257],[-11.189224,315.070710,6.678948],[-11.830337,306.843262,5.748185],[-14.785843,302.106659,3.087044],[-15.853287,314.244751,3.603463],[-11.082779,300.865479,5.318360],[-8.557693,300.429596,5.376488],[-2.510879,317.506501,8.877724],[5.702255,320.233612,8.461274],[9.328659,325.699860,9.421044],[4.731247,333.509796,9.128426],[17.349106,332.150360,10.994736],[2.656296,341.765290,3.053017],[4.181015,347.356964,-2.294876],[5.775864,359.318085,-2.714065],[1.396286,361.192231,-6.087135],[-5.867203,368.818451,-3.856407],[-8.714432,366.531342,-3.372657],[-5.209366,361.233307,1.801888],[-2.522049,368.307221,-3.668602],[-2.701492,364.521881,-1.670829],[2.712570,357.309174,-1.809105],[-25.289078,371.411896,-12.373161],[-21.552383,374.694184,-13.537849],[-12.904129,375.572541,-9.452095],[-5.466141,378.541352,-2.823524],[-7.804459,384.110260,-1.846206],[-32.775345,334.070710,-10.903297],[-41.203262,329.670075,-17.893470],[-42.563553,339.170441,-18.203071],[-45.130997,341.889374,-20.454460],[-53.290787,360.255463,-26.584007],[-57.785477,361.908173,-31.457084],[-59.771255,371.118866,-31.446022],[-58.611771,383.274384,-26.391075],[-57.031448,390.404023,-22.082664],[-60.880386,399.690888,-24.067100],[-39.880081,344.768891,-14.706901],[-44.330826,352.341400,-17.413078],[-42.234268,360.626923,-12.969108],[-46.543289,359.441986,-18.294334],[-45.624649,368.082856,-14.671226],[-47.295792,381.501862,-12.438682],[-45.654556,387.818573,-8.626106],[-49.785171,395.555756,-10.502784],[-52.858108,400.583771,-12.685845],[-48.382461,400.846466,-6.976081],[-42.260269,393.398712,-3.530685],[-39.736221,388.722138,-1.866569],[-41.332840,370.082917,-8.815330],[-52.608475,364.765473,-24.541328],[-46.665542,329.460419,-23.152427],[-57.591080,326.817231,-33.570366],[-62.728042,324.850678,-37.960183],[-66.742264,332.431549,-41.774147],[-79.300796,332.682038,-50.670646],[-85.452286,322.732270,-53.136970],[-92.608658,328.715180,-57.837532],[-95.586014,319.584076,-57.533363],[-103.529678,324.202607,-61.382301],[-122.719681,329.800751,-67.868766],[-131.100113,314.396271,-66.629509],[-135.352432,322.465790,-69.305763],[-135.191727,310.164795,-65.666084],[-153.249466,295.516083,-51.362068],[-156.966446,294.947937,-47.816079],[-156.062271,294.765778,-39.074897],[-156.944107,301.823944,-39.112983],[-161.138565,296.056702,-42.434272],[-160.176651,299.209565,-50.774192],[-166.656875,307.012635,-48.451454],[-165.657059,313.527954,-53.499885],[-163.157974,308.641419,-55.638420],[-163.413772,317.567108,-57.987815],[-160.223526,317.781098,-61.078590],[-143.687454,339.022126,-71.229667],[-139.142776,341.270905,-71.915901],[-138.126907,330.658173,-70.725303],[-127.326736,332.771393,-69.436119],[-114.341019,332.901215,-66.348777],[-116.853592,343.093476,-69.093896],[-115.457229,348.084259,-69.626838],[-106.584854,356.553925,-67.697960],[-100.035660,364.152497,-64.995140],[-87.889664,350.266754,-57.788261],[-90.829849,347.527314,-59.353859],[-82.897110,347.553681,-54.470161],[-80.743118,341.862152,-52.427665],[-84.172378,336.694733,-54.210656],[-91.330154,335.486542,-58.162574],[-97.820755,343.585297,-62.423317],[-99.393021,328.687348,-60.822792],[-111.652725,351.943207,-69.054618],[-106.074112,335.463776,-64.401330],[-102.950210,342.212616,-64.421409],[-96.053360,348.370087,-62.114128],[-149.336746,322.490692,-67.290947],[-152.868912,315.175721,-63.727760],[-153.309280,307.091309,-60.294747],[-155.844559,300.960633,-55.360359],[-158.285049,308.155732,-58.600303],[-158.097427,293.966065,-41.642372],[-160.421890,296.540039,-39.784614],[-139.549881,319.128754,-68.626762],[-163.911026,302.561585,-48.784294],[-118.684891,315.444672,-63.526970],[-107.358780,320.333344,-61.641930],[-99.195450,312.287232,-57.225426],[-87.574966,316.303131,-53.246193],[-91.750931,314.367401,-54.797081],[-128.517166,305.595490,-62.796380],[-131.391006,298.819184,-58.700310],[-120.373062,296.144928,-54.149589],[-125.242081,295.545197,-53.895500],[-132.332840,293.581482,-52.735940],[-138.119705,290.863831,-49.105201],[-142.312088,289.753174,-46.534553],[-140.270950,288.061585,-45.188789],[-136.083938,290.447083,-37.397621],[-126.817154,295.358246,-35.378593],[-122.744156,287.646057,-29.414970],[-114.954605,287.799408,-24.913383],[-106.433060,286.556580,-20.259910],[-110.087295,279.373505,-20.659782],[-103.104996,275.632965,-16.848854],[-94.834671,278.756501,-12.672539],[-90.108475,283.505799,-10.155738],[-75.243606,280.445099,-0.310684],[-75.219375,288.650757,0.378418],[-72.611404,287.926453,2.904259],[-66.382461,296.692932,13.490700],[-70.031204,302.530548,7.376671],[-71.900528,297.396027,4.453736],[-78.177505,297.267395,-0.213310],[-85.829849,290.016022,-7.556739],[-84.430313,280.948761,-7.169654],[-90.606094,292.575714,-10.066612],[-91.780594,297.366059,-10.810081],[-102.430069,295.672180,-19.207177],[-104.384903,283.099640,-18.135078],[-103.300979,279.341126,-17.499916],[-98.054397,287.368866,-14.747399],[-95.329605,285.180024,-13.523368],[-100.769302,291.312409,-17.421531],[-86.188614,300.276215,-6.693000],[-82.314468,299.987061,-3.593040],[-85.803970,312.388062,-5.007881],[-97.339859,309.082764,-14.915519],[-94.847488,304.963806,-13.197837],[-87.496658,305.677430,-7.253471],[-79.061600,287.466553,-2.294136],[-91.314407,273.987213,-11.265557],[-92.331497,264.945649,-12.995826],[-115.927505,264.381653,-20.533226],[-120.919876,266.857758,-23.056450],[-123.538345,264.284516,-24.679756],[-131.026260,270.364502,-29.838402],[-140.155960,269.701752,-35.767952],[-136.875259,258.688843,-33.268104],[-132.229263,254.741669,-29.946618],[-132.386001,258.756745,-29.068153],[-137.111099,263.067017,-32.420112],[-99.294632,269.727143,-14.883232],[-103.604568,268.668640,-17.514793],[-101.744766,262.496430,-16.524284],[-109.803726,259.663391,-19.464058],[-108.391006,271.711365,-19.128990],[-120.025284,273.740479,-24.445504],[-111.341019,274.697266,-20.944511],[-118.422378,278.266785,-24.595756],[-128.570633,277.894532,-29.805503],[-138.390091,279.029114,-35.766594],[-137.664444,274.906311,-34.549934],[-141.808731,269.473175,-37.839836],[-125.001358,269.833252,-26.517601],[-112.999832,271.479065,-20.689949],[-65.496719,276.641266,11.249672],[-62.076858,275.422150,15.830887],[-63.980301,267.441651,14.173905],[-62.831558,272.031708,15.892029],[-64.246475,275.023316,17.726342],[-61.284378,281.736206,19.739472],[-61.974991,281.417176,17.167885],[-62.288589,288.479126,21.452179],[-62.522232,292.995850,20.585442],[-65.300735,304.421814,23.370125],[-71.659439,308.835907,24.545372],[-71.405044,313.175171,25.705483],[-77.218277,319.634369,34.281792],[-79.710892,318.840241,34.229439],[-87.823929,314.206513,29.592217],[-90.662308,303.135254,25.808670],[-92.880569,303.047425,33.222229],[-93.465652,287.825959,30.469345],[-91.734878,266.160279,25.339920],[-93.398392,258.903321,24.416779],[-96.689407,256.520356,23.091370],[-103.173233,260.620270,23.316704],[-100.760940,252.371979,20.396309],[-104.113602,249.330536,16.864167],[-106.418899,243.971527,13.551293],[-111.455643,241.480164,9.011155],[-120.536209,234.379456,-0.036010],[-117.272354,240.022522,4.825646],[-122.462479,241.694611,4.191140],[-121.274979,249.759247,8.725518],[-128.173355,254.342438,12.992005],[-124.620193,267.539765,20.476059],[-127.752823,270.778138,23.365952],[-129.766495,274.228119,27.480225],[-125.180923,282.605591,32.647110],[-124.839493,276.018891,26.427071],[-118.711197,280.978546,34.059807],[-112.619217,274.419434,28.559403],[-115.763931,263.371735,21.976998],[-117.310928,267.787415,24.816315],[-117.498306,254.944825,14.883004],[-119.007950,260.298523,18.713074],[-122.467544,259.902802,16.049477],[-121.994888,268.437195,21.621941],[-116.508743,270.533753,27.318726],[-119.346756,274.447449,28.471917],[-114.180923,255.891877,15.576279],[-110.881058,254.746308,15.316628],[-115.341385,249.522766,10.994584],[-110.016861,257.899201,17.804322],[-125.648453,245.551422,6.560318],[-128.027359,246.801270,8.662514],[-128.967056,245.307099,10.172715],[-130.071304,254.346161,16.010758],[-130.148270,250.765808,17.590416],[-128.265213,238.554016,19.442459],[-128.284073,227.158051,16.332955],[-128.168533,219.729370,12.602570],[-127.827957,206.014221,3.897423],[-129.053848,197.527863,0.632943],[-128.028946,188.708985,-5.534683],[-128.463699,173.787323,-10.280327],[-131.254959,171.145264,-7.741172],[-130.345596,167.097901,-11.783288],[-132.986221,160.560211,-11.135994],[-138.174942,149.900147,-4.288894],[-135.737442,147.289215,-7.540336],[-134.346329,136.853638,-15.349800],[-124.336929,134.061524,-18.565193],[-120.002945,134.734589,-25.802696],[-112.236709,134.263520,-34.943519],[-106.389236,133.744294,-40.603767],[-110.086685,136.605042,-41.608925],[-112.945633,138.572510,-40.395042],[-117.252823,136.607086,-40.451759],[-123.031509,135.531311,-38.690179],[-119.375198,134.629059,-38.578010],[-126.420730,132.091858,-35.130241],[-122.261001,133.486451,-29.414497],[-129.724380,130.586212,-28.786980],[-130.391006,132.013733,-32.849678],[-107.951919,138.111725,-40.923027],[-102.714676,135.610901,-41.206260],[-100.962845,133.182465,-38.436042],[-106.593948,133.758301,-32.224556],[-116.842911,135.118103,-35.767311],[-114.346207,134.111847,-39.884575],[-115.750015,135.090973,-31.452644],[-136.836197,132.330780,-14.860527],[-140.182022,133.164643,-4.889579],[-142.141556,135.826905,-3.827362],[-139.610611,138.483765,-4.387466],[-141.112381,160.058503,-3.792656],[-138.109817,169.154114,-4.896194],[-130.109146,183.059784,-2.686927],[-130.460403,195.103699,2.106820],[-136.402176,192.126435,4.153382],[-137.138504,199.911072,8.449044],[-140.630875,197.740418,7.574837],[-145.015945,193.728913,5.416939],[-150.421646,190.692322,4.157219],[-153.245193,183.614350,3.024109],[-157.238907,188.592255,1.910340],[-161.089676,190.987549,-0.150062],[-157.658462,196.412110,2.071846],[-152.320450,196.332398,4.577149],[-152.520462,203.863312,6.957077],[-159.597549,201.418915,2.614502],[-158.056839,209.843872,6.771058],[-162.646438,214.159424,6.724686],[-162.087906,227.973664,16.569779],[-154.494522,228.789124,19.046051],[-150.916275,226.958771,19.265473],[-153.935257,236.085816,22.384331],[-146.137894,256.018494,36.187539],[-147.284256,260.089997,39.002312],[-152.689285,270.145844,50.748818],[-161.664322,251.134400,34.315895],[-159.290115,250.232544,32.009232],[-153.536758,247.160614,28.267685],[-154.492020,253.444916,33.544602],[-147.850906,269.270172,48.084252],[-153.019668,264.937897,45.122536],[-158.895645,262.375428,46.144944],[-149.934769,180.980622,3.002404],[-150.373794,173.228180,2.127625],[-146.884842,166.329590,-0.387260],[-148.501358,160.136505,0.046509],[-143.731766,155.704621,-1.664642],[-143.398331,148.188172,-1.081810],[-148.609817,139.275055,0.904465],[-142.092056,134.740723,-1.972114],[-145.934158,137.637329,3.374627],[-136.044510,142.487091,1.587906],[-135.897110,146.930146,4.801163],[-133.850540,150.293885,9.288475],[-129.926102,143.872528,18.121193],[-133.440750,137.145722,19.304108],[-137.754227,132.745087,19.741417],[-142.462356,135.441284,18.625504],[-155.622757,120.890259,23.360474],[-163.741897,115.878479,26.019509],[-175.478287,103.276978,32.473679],[-182.397720,102.147553,35.103127],[-194.766678,82.111115,45.181084],[-192.933426,77.695801,46.870560],[-191.430740,69.864502,52.254090],[-187.310013,64.135895,61.325856],[-194.424393,59.230194,64.067566],[-198.077530,55.685105,68.377213],[-194.820633,56.373047,71.756970],[-204.344681,49.687027,78.605271],[-210.134537,46.015366,83.271996],[-225.396805,39.468155,87.611393],[-231.112259,37.592575,82.387871],[-248.423599,39.704941,81.030053],[-264.084427,46.068039,83.939595],[-281.156387,53.346054,93.077565],[-282.904617,54.911896,96.676114],[-273.497513,54.398178,102.525711],[-277.930496,58.095383,112.529865],[-278.856583,63.357209,116.865981],[-290.576065,68.512146,118.019039],[-287.908279,70.605957,115.552441],[-286.560318,73.329743,109.082310],[-287.726822,72.880402,104.094159],[-298.378738,72.026947,110.752434],[-298.125992,71.602265,114.637082],[-307.554947,67.211487,122.354120],[-312.056167,63.631806,129.300363],[-309.464126,57.564286,120.057305],[-289.813370,63.606812,104.512970],[-280.435623,58.371064,106.998366],[-282.053665,59.746018,109.170815],[-290.267349,62.337952,107.811432],[-304.986526,62.669617,112.875370],[-316.917374,57.183167,123.216356],[-321.291275,59.039994,126.934570],[-292.493301,72.549622,111.079076],[-289.120438,69.533570,120.999508],[-294.446243,72.644043,121.504463],[-288.851822,75.347626,134.730222],[-293.271744,80.041992,133.393630],[-296.154190,79.182068,136.147265],[-298.101578,82.447113,129.076155],[-290.322525,83.674988,123.941640],[-282.745132,83.079377,121.269704],[-289.025467,81.335480,128.431074],[-283.095718,68.478302,124.825452],[-275.979019,70.420868,126.553134],[-276.440567,68.306885,123.288121],[-270.194412,60.975037,119.426285],[-266.143082,62.539673,121.932378],[-260.690567,52.816132,103.091807],[-266.909561,51.252701,97.589716],[-272.672989,50.883637,95.560103],[-265.752457,54.994934,103.126702],[-272.719864,57.844971,112.840512],[-277.443252,52.761505,97.738823],[-268.181473,47.683380,88.904885],[-253.820572,41.327011,84.770840],[-273.441666,72.262879,127.969343],[-271.224747,76.733460,135.198703],[-278.853958,81.098145,136.315903],[-284.940201,85.906769,143.793538],[-289.125015,90.388306,148.692561],[-296.116897,100.033783,145.267559],[-293.613785,99.380921,143.565901],[-292.624100,97.007386,138.384663],[-277.367264,84.864899,125.127805],[-274.227676,81.847565,121.296567],[-271.019424,82.024231,118.961724],[-259.950149,83.317047,117.814623],[-253.570389,80.251862,115.374457],[-265.131363,79.914978,110.340530],[-275.036087,79.121064,109.967328],[-281.314712,81.529145,113.164578],[-287.570694,82.850006,116.226144],[-290.044083,84.131989,120.290519],[-273.321304,80.646668,111.888295],[-265.520157,81.591156,115.763622],[-265.765091,87.022431,120.983628],[-271.921463,87.500672,122.054293],[-269.394913,91.194641,135.295605],[-258.089981,82.515625,129.250519],[-251.903580,79.507843,124.799075],[-241.272171,73.544617,121.948497],[-251.565933,79.981293,118.807238],[-235.305801,74.061219,90.245976],[-255.379776,73.377655,92.499630],[-261.419998,70.820984,88.789368],[-268.208816,69.464936,89.640263],[-272.076065,68.367127,90.044676],[-274.402786,67.226441,86.981476],[-276.801407,61.645508,81.553982],[-281.649307,54.599655,88.731808],[-289.467911,57.870240,90.500401],[-290.981827,57.989624,93.188372],[-288.081619,60.562897,98.152272],[-287.656265,56.775162,95.394081],[-286.458084,60.888825,101.945898],[-278.342361,55.555451,103.634135],[-301.048599,61.198731,90.799300],[-292.910965,63.951660,85.924729],[-295.803543,69.671265,87.350861],[-295.141556,71.419373,90.298699],[-293.998733,62.334992,94.183564],[-295.569961,60.410828,93.655892],[-295.248794,59.129731,91.446423],[-289.744217,63.180847,95.948218],[-279.329422,70.715821,96.681923],[-292.262527,70.629120,103.832280],[-286.805191,66.087921,97.878159],[-291.168716,60.339081,87.875874],[-283.977798,58.764786,85.294320],[-289.099625,66.145905,84.270825],[-285.645767,67.064331,83.972989],[-283.410904,68.983399,85.934323],[-290.453201,70.681122,91.638726],[-287.333328,68.227234,99.528092],[-283.019485,67.911469,93.963826],[-275.344009,72.020111,96.583681],[-269.008133,73.269654,96.790072],[-273.009415,75.113678,105.770431],[-276.847183,76.308411,108.780048],[-282.859817,74.737152,111.227526],[-277.145462,74.353150,107.205081],[-284.394607,73.227051,110.780854],[-241.712173,75.297791,96.538580],[-258.019791,80.722443,113.899522],[-257.913711,83.430695,121.379851],[-258.348892,83.564789,126.473806],[-249.108902,77.211640,103.568188],[-247.136185,74.242371,93.030407],[-277.669693,67.900238,92.924284],[-282.836197,69.555146,89.449463],[-281.713394,73.110260,100.848229],[-275.660477,74.328705,102.907080],[-288.542068,67.739655,94.404353],[-284.801285,90.351624,130.650118],[-287.784988,98.311737,137.106152],[-280.211746,96.776581,135.126106],[-271.409561,92.643647,133.718413],[-284.943313,94.616150,132.185798],[-279.543472,90.700592,127.186468],[-275.918472,89.841919,125.019660],[-272.084732,92.899903,131.072284],[-273.467483,92.081208,127.194916],[-280.876968,94.810761,130.810820],[-289.912796,99.400452,146.812905],[-286.188553,97.915192,146.224549],[-290.419998,88.983033,148.111054],[-278.311478,85.003998,142.028788],[-274.699966,86.710022,141.165732],[-263.591385,80.676026,136.103501],[-275.230850,92.890351,140.659153],[-266.424759,88.572083,135.067643],[-267.838394,87.489991,137.097727],[-269.470169,84.351899,138.655760],[-257.243240,80.197998,131.305157],[-284.508011,83.428650,134.310612],[-288.474441,72.102967,132.553540],[-288.264297,69.559143,129.200406],[-291.955032,69.927399,126.237416],[-294.103348,69.384827,130.881431],[-278.411453,79.990265,131.015196],[-278.557144,82.044251,127.061072],[-271.560440,81.607788,115.239739],[-216.524917,43.504502,80.824147],[-162.355972,108.061768,28.617661],[-140.106888,135.597809,-1.446304],[-124.570999,145.856415,-2.128509],[-119.431900,149.297211,-2.300903],[-114.607437,151.778015,-2.474784],[-110.697830,150.206574,4.680153],[-96.746597,127.787751,6.334053],[-97.088211,125.009186,12.376679],[-93.125320,117.808167,6.404938],[-87.272598,126.063263,12.062661],[-76.842972,139.597168,16.726410],[-74.368973,145.234375,20.140145],[-77.465958,142.972534,22.242348],[-84.411819,152.016144,35.610672],[-95.392471,151.522309,38.033936],[-89.175857,151.098908,45.820008],[-95.982254,147.710297,50.141053],[-102.609695,144.998749,51.670121],[-112.240188,139.644318,54.363114],[-122.186722,127.825959,58.004486],[-125.924148,123.779419,61.305970],[-131.138443,130.566223,73.673386],[-136.778641,121.386689,74.980187],[-150.761490,107.384674,80.590683],[-149.332046,105.300934,78.189667],[-161.248672,93.223511,82.667313],[-171.422439,85.982422,87.919049],[-175.023697,77.283326,85.344242],[-197.438492,53.948166,86.190525],[-198.060318,53.460694,78.398438],[-187.679153,68.625672,93.754532],[-196.995560,61.797180,100.140110],[-207.909622,55.677231,108.637498],[-220.594437,58.404023,118.831298],[-223.672012,63.298065,118.265767],[-234.490921,67.626953,124.825429],[-238.521377,66.916779,128.805019],[-247.023514,70.140351,131.131688],[-247.943069,67.249604,131.483781],[-262.872330,76.538086,134.993072],[-261.447708,62.744416,125.167586],[-254.589065,61.597962,124.349694],[-255.222122,54.085083,107.483126],[-263.736648,57.838394,109.649821],[-256.293838,56.979599,112.493970],[-255.480972,59.192261,118.816682],[-272.257217,73.732086,128.870477],[-267.840835,73.477661,131.594359],[-268.810623,67.880738,127.748453],[-263.817337,65.343170,128.285828],[-272.396072,64.780732,123.745808],[-157.864822,93.810242,79.580731],[-147.436111,101.769379,73.412114],[-152.438370,95.646424,74.316178],[-154.393936,90.874634,71.018391],[-165.405899,80.914185,75.186695],[-173.756180,71.981873,62.766720],[-167.881912,77.027405,58.897358],[-155.315628,87.673249,55.474022],[-147.557938,95.396393,51.576477],[-134.300064,109.735199,44.632592],[-127.880386,116.013489,48.666954],[-122.593765,122.332306,47.522240],[-124.864456,120.751984,53.939614],[-118.092239,132.248688,54.082611],[-114.657486,135.204529,45.697029],[-111.752701,139.067505,45.207512],[-107.786880,142.780884,48.321320],[-130.641922,113.499909,55.151627],[-136.331497,106.683045,54.250138],[-143.142593,102.008026,66.868843],[-139.762710,102.989777,52.647583],[-167.927139,76.467804,62.221913],[-165.216080,78.630982,64.716820],[-161.748489,82.670899,69.852734],[-163.522720,88.339753,81.475167],[-164.277725,84.037049,78.132855],[-176.540848,72.870545,82.371052],[-176.921890,71.016602,79.274891],[-169.000564,76.051422,70.722153],[-187.417129,61.993714,83.216973],[-177.745621,68.824311,71.981369],[-187.689102,61.233795,79.208901],[-196.020035,54.820618,81.476609],[-182.551712,64.999054,71.589402],[-187.305130,61.459351,71.678276],[-131.602188,125.739777,72.162613],[-134.117142,118.964569,70.705918],[-139.209854,111.563538,71.265034],[-139.140945,109.581177,69.169331],[-138.492203,104.966736,59.294262],[-135.255020,113.385254,66.608475],[-141.357315,111.940674,74.120343],[-101.270950,151.055146,33.005783],[-100.919693,146.886292,23.991135],[-103.624405,148.848542,19.958657],[-104.537979,147.085053,12.790070],[-107.997024,151.339203,13.231484],[-106.292129,150.661682,19.075760],[-107.891739,151.446503,21.927109],[-111.814041,151.712128,20.760422],[-115.343216,150.942078,20.642762],[-118.633682,140.500397,24.877350],[-124.573196,134.573548,24.582688],[-132.583023,126.054535,25.219483],[-138.709488,123.198792,24.603432],[-140.918655,112.797272,30.497422],[-145.357681,113.342591,27.970024],[-153.327469,106.455719,30.116303],[-159.762039,96.198181,36.150811],[-167.852310,89.543488,39.749657],[-181.171890,82.701874,43.617676],[-189.513809,67.758881,54.617340],[-177.836563,72.229828,55.651497],[-185.665787,67.956604,55.980301],[-112.698257,155.365876,8.371369],[-118.547989,161.152710,7.081551],[-112.673477,154.135681,1.270394],[-109.215774,151.518250,9.341652],[-118.142837,158.450531,12.378449],[-123.008499,152.060303,2.097779],[-118.360794,158.594422,3.266655],[-124.202774,154.620209,9.447251],[-128.680984,151.710450,8.261910],[-124.036331,154.077912,5.725838],[-129.216080,148.749817,3.309067],[-130.449905,150.025452,13.673508],[-125.548111,148.643402,16.828980],[-118.390030,153.298859,17.023270],[-119.542862,160.894928,9.178383],[-131.819534,146.390869,17.295494],[-134.206924,129.424866,22.440354],[-125.865921,140.619294,20.696091],[-145.672745,128.943055,20.850602],[-151.356644,118.707978,24.014176],[-124.958145,152.334412,13.089394],[-99.781631,139.525025,25.985291],[-98.776321,132.053772,19.971825],[-98.402603,128.222016,16.048615],[-97.546707,129.715271,13.417534],[-98.505569,121.790558,15.079079],[-99.303970,123.443726,17.893769],[-100.096573,125.411652,21.011963],[-100.869522,126.774811,20.331925],[-103.051468,128.442139,25.452019],[-101.901321,133.310944,30.360878],[-94.249283,135.604920,26.386574],[-87.581802,140.170716,25.109276],[-95.520340,148.501953,30.937760],[-94.190506,150.893830,33.834427],[-103.438858,131.335663,25.786103],[-94.871475,118.860199,6.559815],[-95.415359,118.511292,9.424210],[-93.112442,119.433350,10.707665],[-90.746414,127.600678,18.443970],[-96.831741,128.648194,23.709076],[-102.059524,129.660462,27.653168],[-90.419937,131.579224,21.885567],[-85.858536,135.843811,21.760979],[-84.680374,132.678772,17.801918],[-82.568619,140.278260,23.031975],[-87.107071,143.921479,26.798973],[-104.737076,150.168854,36.549004],[-103.347183,147.037567,43.790314],[-100.458694,150.410828,39.307137],[-108.219192,144.173493,40.596215],[-106.802933,149.744232,33.483010],[-111.044632,141.690827,35.428200],[-118.511185,135.077851,28.433426],[-126.355484,125.543915,29.875023],[-136.148392,115.185852,31.571564],[-149.015518,103.969635,33.735367],[-160.468399,91.532440,40.385132],[-155.527603,93.029877,41.999627],[-179.708267,77.963776,47.600274],[-167.116897,84.838410,44.693543],[-114.452347,149.335480,23.159874],[-115.914932,135.151184,31.984543],[-117.265457,131.745850,35.301125],[-120.568863,124.326721,40.682778],[-124.376236,120.033112,43.797799],[-119.370010,128.135376,47.548844],[-116.644974,132.130860,41.146988],[-121.820755,124.344879,35.938378],[-126.925369,118.541474,39.144776],[-119.812332,127.838440,34.611336],[-130.321548,119.272461,32.769692],[-135.160416,111.036072,38.222916],[-104.260818,151.686249,33.733986],[-104.037674,152.312104,27.696427],[-109.346817,151.852997,27.059342],[-106.648147,153.846924,29.570839],[-77.982071,153.142853,35.587441],[-86.704971,152.396393,40.796891],[-91.453506,147.539063,56.199067],[-86.279983,152.274689,62.641526],[-82.391617,154.481446,63.855835],[-78.981644,155.197022,63.732930],[-76.697220,155.060883,63.713597],[-78.426956,152.512055,74.442776],[-81.513992,166.284577,86.633988],[-77.553055,166.547913,88.918503],[-78.579117,154.045594,89.351551],[-76.914993,149.386963,82.434967],[-84.319900,149.832947,94.765398],[-83.557815,144.822724,92.949110],[-79.947830,153.079132,69.124001],[-81.686172,144.690186,26.065331],[-84.635513,149.583100,31.271424],[-93.212479,121.216187,2.885750],[-93.506485,122.939484,-1.027076],[-89.215958,122.005707,-10.899316],[-83.062759,126.094818,-26.332328],[-85.379776,127.792176,-24.193779],[-83.543960,130.297791,-30.621254],[-79.993912,131.709229,-30.605903],[-81.566482,130.780670,-31.309532],[-90.925735,135.498291,-38.402900],[-97.124710,136.748230,-39.935447],[-96.067215,134.439637,-40.276298],[-90.705887,133.000641,-36.164955],[-95.189651,134.468781,-32.848884],[-99.102554,134.601410,-27.858177],[-93.150406,134.792328,-29.270378],[-86.996658,132.946747,-35.257072],[-90.914810,117.888825,3.598198],[-84.034622,122.256623,-2.469032],[-80.862869,119.854401,-13.846688],[-84.382950,117.231446,-14.987617],[-84.699417,118.769684,-17.955619],[-82.633621,122.489044,-22.529731],[-84.100235,134.537049,-34.401451],[-83.980179,139.558747,-30.375831],[-89.801956,142.445099,-31.604591],[-94.154495,145.668305,-29.647056],[-93.208816,148.476166,-23.126258],[-90.100784,150.663575,-17.338112],[-96.000381,159.073670,-15.383140],[-93.725601,151.963929,-19.120659],[-108.848587,164.347718,-22.416573],[-114.133621,166.308136,-25.841941],[-116.666519,173.264405,-23.020866],[-119.697281,176.640351,-23.273719],[-129.177383,173.807984,-21.006965],[-128.454544,163.514893,-24.349205],[-130.916641,145.470307,-21.635368],[-128.899856,141.539246,-28.202049],[-129.142593,134.955231,-34.731086],[-128.073929,133.216919,-35.872399],[-131.349258,136.108826,-24.254234],[-134.427994,132.346863,-22.488365],[-133.179947,129.427185,-20.201470],[-136.407425,130.168640,-15.680092],[-134.019119,130.552857,-23.590004],[-127.953750,130.402863,-26.518379],[-120.178543,134.327027,-36.703239],[-132.892715,132.197052,-28.108421],[-128.360062,152.414978,-26.487281],[-130.828934,162.060791,-14.328514],[-130.484939,161.116120,-21.741645],[-130.766556,153.294251,-23.594093],[-132.025772,151.288147,-15.383140],[-134.735794,155.802491,-9.792579],[-133.174759,145.254334,-13.724953],[-99.490372,153.339844,-23.413368],[-82.659500,143.523468,-19.175072],[-88.439041,144.623474,-24.786613],[-81.369644,140.498444,-22.891717],[-87.538162,136.432251,-35.573646],[-93.284256,139.698090,-35.183921],[-96.959061,145.066071,-31.959434],[-103.742813,152.300324,-30.288948],[-104.037613,155.143280,-27.621788],[-113.250076,154.419129,-30.625023],[-103.349930,143.057923,-34.115806],[-108.175064,140.780426,-37.655450],[-120.734085,138.075714,-38.690147],[-127.724869,138.321503,-33.002708],[-126.131302,145.545227,-30.238259],[-116.671829,141.161072,-36.462684],[-118.760086,167.481751,-25.643516],[-126.608597,164.864991,-24.718987],[-127.406326,174.353485,-23.354423],[-119.928421,172.234742,-24.426567],[-124.469559,182.092713,-23.050270],[-97.575943,147.701050,-30.180320],[-161.130447,170.635742,0.801674],[-164.304153,173.180725,-0.919929],[-167.310806,177.099640,-3.447013],[-167.226089,193.969391,-4.692627],[-163.822342,198.208985,-0.135299],[-172.632828,207.946778,-0.193603],[-166.743179,216.620514,6.599152],[-164.263504,220.888520,11.170456],[-167.424148,223.063111,13.401680],[-170.641739,222.220429,13.949181],[-170.049942,228.210053,18.540490],[-165.322281,248.927735,34.537934],[-171.056595,245.024903,35.890274],[-165.432754,253.984253,41.504532],[-174.088089,243.129059,38.802597],[-176.622574,239.985199,39.936394],[-168.919815,252.111939,53.040604],[-167.209854,251.703888,57.325600],[-161.269668,249.044098,56.330750],[-169.693252,237.677307,51.752320],[-159.012466,234.002198,54.923729],[-161.176834,228.402741,54.269402],[-159.130752,226.266297,56.565087],[-152.992935,238.519776,59.695694],[-149.810501,244.768158,62.709126],[-146.747940,254.949341,65.948788],[-143.725906,260.737824,70.264817],[-137.574356,267.412293,80.751847],[-134.081314,274.186127,87.601815],[-130.013565,283.649811,95.804917],[-128.915542,284.366425,99.796185],[-127.816055,280.330719,110.217911],[-126.693863,287.544281,107.432448],[-122.243545,293.800415,117.691387],[-117.751480,302.875702,127.050968],[-117.903519,304.899872,125.828507],[-117.366775,307.318421,122.837284],[-121.893204,296.296418,116.185578],[-124.129593,294.770935,111.073308],[-122.170608,307.376862,111.223901],[-125.757950,296.737000,105.417488],[-154.010391,243.729950,57.980549],[-162.988785,240.362274,53.473534],[-165.950088,257.007233,57.657975],[-161.490250,265.436005,60.011074],[-158.867752,269.474793,66.260674],[-154.224625,277.851776,70.565804],[-153.214798,271.016388,71.879078],[-148.928177,276.714630,75.560269],[-145.459915,283.994232,80.850087],[-149.805679,282.673462,78.586167],[-145.099075,291.045960,73.993462],[-133.596573,311.555695,94.508639],[-135.833511,307.235596,95.381966],[-131.705704,312.919312,100.287503],[-122.125381,329.720917,105.961474],[-117.271683,334.850251,115.844770],[-119.341568,326.326935,112.963124],[-121.554092,330.406525,110.631853],[-124.364334,325.076386,108.320711],[-119.163834,322.101288,113.120801],[-114.961929,330.458466,117.878311],[-109.569351,326.102387,126.639079],[-99.128250,338.594818,133.458595],[-96.622757,353.638886,127.434689],[-90.356888,357.109101,127.189803],[-89.841019,361.916962,122.760602],[-89.003738,368.498139,114.290630],[-93.075271,368.179108,106.431837],[-86.904800,371.596405,99.050681],[-90.973953,366.463532,89.600705],[-97.340896,357.362885,81.569371],[-81.300613,356.600983,60.407982],[-74.421768,355.205841,56.007599],[-71.192703,351.477265,50.634507],[-69.702347,346.958161,46.588433],[-70.216934,339.879669,42.352524],[-65.173416,332.423981,38.246338],[-65.887161,327.974396,35.762688],[-59.034805,339.375519,29.288231],[-57.213089,343.830109,34.444832],[-57.017654,348.597748,29.697258],[-54.461502,364.168427,48.227654],[-57.420242,366.082550,53.920250],[-51.365921,373.085236,54.920479],[-43.427994,376.974884,50.287339],[-51.244461,383.212677,37.081734],[-49.544266,376.647614,38.698609],[-51.018936,367.650849,37.878197],[-53.150284,364.612458,34.265740],[-54.902847,355.773468,32.785775],[-56.336014,356.594940,29.131371],[-54.961258,352.676361,35.317383],[-52.077042,362.598175,40.611321],[-50.659317,367.196076,42.570511],[-53.695694,367.946259,51.176339],[-48.800003,369.697602,43.048111],[-42.548416,377.673004,45.909600],[-50.457901,379.031159,38.451302],[-43.877945,375.446320,44.519928],[-47.536514,373.217133,41.384751],[-54.330032,354.000153,39.295159],[-54.794510,355.652375,42.069024],[-57.677566,343.966278,37.730103],[-60.724075,329.074372,30.665200],[-59.179397,334.002167,30.550713],[-61.579971,334.111176,35.302925],[-62.621780,337.836335,38.385590],[-69.023392,364.836823,63.805684],[-69.935257,368.983124,71.260479],[-63.041092,376.635956,77.145237],[-58.443619,379.627045,76.251316],[-52.590530,379.790436,66.913300],[-47.873855,381.570282,64.618836],[-45.243973,381.001618,57.795227],[-42.808548,382.344757,53.423226],[-76.449417,364.954377,70.267407],[-84.007400,365.135651,76.815762],[-88.768265,361.403107,76.289318],[-90.822098,363.838776,83.673684],[-86.038895,368.852265,87.141861],[-79.627457,371.020417,84.390431],[-63.843765,379.199311,85.608384],[-60.737259,382.440216,91.624358],[-49.789932,388.080353,84.011238],[-52.221146,387.016327,92.359171],[-46.781998,389.065522,89.374028],[-31.752396,393.368073,101.442467],[-32.075333,394.382416,96.904101],[-29.133194,405.438629,86.106102],[-32.313187,402.298188,83.790856],[-36.414139,413.320771,88.576588],[-40.052017,422.842316,84.453797],[-44.399429,433.347992,87.888699],[-45.014175,437.513398,87.680294],[-87.797134,370.209565,94.022622],[-82.679581,373.803559,102.820338],[-83.688980,371.854828,111.109154],[-74.095474,370.619965,116.058701],[-84.365127,368.773102,116.360724],[-70.672562,352.465790,131.916763],[-59.117203,366.223175,126.253994],[-56.161636,359.899323,131.850009],[-57.390640,371.136505,122.192680],[-53.815323,369.563141,124.259916],[-46.658401,383.906037,109.966218],[-46.168899,386.398529,105.456478],[-39.898086,387.168366,107.936353],[-26.822586,395.093720,108.935894],[-24.663834,389.324066,117.607190],[-25.688003,401.640778,103.868105],[-24.625015,405.961457,102.309712],[-23.091751,412.150788,102.860480],[-23.851700,408.246857,94.948401],[-26.736404,402.291107,96.816178],[-32.530594,388.725678,108.072281],[-28.404800,396.468293,104.103440],[-22.577774,415.867462,96.642136],[-19.453812,420.977570,91.061928],[-21.475967,417.433808,93.831295],[-24.014480,406.550690,90.557503],[-51.354324,370.863617,124.193721],[-33.909744,350.762604,150.193324],[-28.058853,347.111908,156.007393],[-0.500381,342.193024,162.648354],[-4.007217,337.488617,165.881028],[-8.746719,336.241242,167.261589],[-24.094437,331.945160,167.332615],[-23.870560,335.368256,167.999794],[-29.692459,338.655976,164.676503],[-31.742935,343.924530,157.288311],[-37.466263,345.285492,153.236889],[-46.172562,349.448883,145.657418],[-50.025040,343.508026,147.970452],[-55.015762,323.543061,158.298218],[-59.856338,322.963227,152.827666],[-69.138809,317.543915,151.462000],[-67.181656,323.836274,150.249461],[-67.550125,330.176483,149.355198],[-70.365799,337.581330,146.975262],[-75.926407,349.111176,132.707961],[-81.551346,356.396515,128.359605],[-73.756607,361.726654,124.421216],[-72.420669,346.057404,135.741868],[-68.612015,346.059174,138.901810],[-68.297684,341.593842,145.139521],[-58.985123,347.712555,139.880427],[-61.532974,353.430634,137.004836],[-63.217361,357.694245,131.946170],[-67.161026,351.527863,134.546896],[-62.018997,338.463349,144.565327],[-54.625931,342.119965,144.956595],[-55.620193,346.657746,140.943823],[-56.354568,353.673737,136.235851],[-51.138748,354.623383,137.509062],[-47.927444,360.099518,134.728586],[-43.195877,358.182404,139.530274],[-40.113113,350.125336,148.137823],[-64.787552,350.049286,139.344235],[-66.031204,340.853607,145.469304],[-62.579178,330.982025,147.899825],[-61.857437,326.205231,150.119225],[-70.652359,333.608673,149.585230],[-57.644913,329.771881,150.647696],[-58.465103,338.914215,144.733693],[-18.401199,346.994599,157.819050],[-24.443008,341.601593,163.285538],[-14.450333,344.331513,160.293244],[-8.007339,340.750031,163.556404],[-13.620315,338.079315,166.716118],[-26.945450,337.498139,166.507210],[-28.543167,351.129853,152.252306],[-21.923172,356.175873,150.721037],[-15.772415,359.036835,150.399620],[-21.839065,363.584259,144.795351],[-34.821365,384.865631,115.792529],[-42.668533,382.622162,113.848024],[-49.080459,379.403351,115.856878],[-45.353592,376.945526,121.049376],[-30.659622,374.104645,130.150324],[-31.354385,366.998261,137.173944],[-24.403580,360.842194,146.132672],[-30.142532,360.543183,144.476878],[-36.709427,365.986542,135.965313],[-37.589859,373.144379,127.739820],[-35.572403,361.070038,141.449995],[-27.719681,370.085541,135.747280],[-41.141861,378.793854,120.198818],[-52.110977,374.259919,120.519781],[-14.787430,351.694672,155.719632],[-15.648147,354.641510,153.207832],[-9.213882,348.036286,158.768948],[17.740646,337.176422,161.513100],[18.505173,343.839020,155.796013],[-60.706741,372.519257,118.560876],[-62.987076,365.612458,124.392899],[-68.591690,365.033905,122.863350],[-65.281998,368.984223,120.256508],[-66.354202,374.317108,113.820964],[-61.247574,377.470063,111.457248],[-57.733597,380.695587,108.404367],[-50.775894,386.238373,101.241625],[-55.984146,384.735443,98.475226],[-56.780411,376.847748,115.823016],[-70.618057,372.274933,78.142296],[-60.455154,381.645356,87.016076],[-45.127701,389.111237,80.108181],[-34.269424,393.724335,78.142704],[-42.305862,387.817780,68.316258],[-44.623306,384.056427,62.978997],[-42.672500,385.199433,57.758145],[-50.530044,384.245758,73.473015],[-85.611709,359.857392,69.189972],[-70.740616,356.399323,55.095757],[-62.286758,358.458954,50.543740],[-57.944656,361.053864,49.523384],[-59.582535,354.917450,45.419381],[-56.001419,357.177765,44.389687],[-64.407120,363.231476,57.713425],[-62.579300,368.224762,62.024189],[-73.041641,361.098175,62.420792],[-94.014542,360.154267,123.073770],[-100.544937,353.611054,124.509825],[-102.052750,348.294342,126.692908],[-106.689896,340.729828,125.186922],[-113.577591,342.903778,115.968715],[-117.943008,337.687897,106.643893],[-118.220718,339.466950,102.454789],[-113.430435,339.944672,84.516632],[-113.077225,335.238251,74.610081],[-105.446121,341.539582,68.020539],[-102.987320,346.214753,71.248993],[-95.988968,352.204621,72.079300],[-92.390091,343.499359,59.002217],[-104.229385,335.094879,59.198929],[-104.567337,327.834381,54.064164],[-107.506302,327.062470,56.237603],[-117.958389,298.619873,45.964211],[-120.920486,294.041901,44.056961],[-125.932205,295.728577,46.581398],[-125.913040,307.540009,60.340004],[-113.714615,327.850983,65.861611],[-113.163345,332.308441,70.352528],[-97.840408,340.943634,60.608471],[-99.994644,345.320587,66.821446],[-85.205704,355.747650,62.591397],[-83.194229,351.642304,54.349739],[-83.717667,345.891938,47.776581],[-80.537125,346.003266,45.865876],[-73.472977,339.863434,41.901154],[-74.386490,346.471711,47.707184],[-76.876968,351.829132,52.641892],[-78.423965,340.879120,41.190766],[-80.512283,351.926178,53.233788],[-116.020218,340.759857,110.375609],[-123.407242,325.562226,98.099268],[-126.979324,318.014313,92.416144],[-133.836563,308.645844,87.944928],[-138.994583,300.571442,81.461457],[-136.243729,300.696869,78.400952],[-149.241897,286.332703,74.259816],[-155.403885,274.295533,71.917775],[-158.908340,269.174195,58.987900],[-163.143875,260.253937,49.968987],[-160.205032,263.239716,49.371079],[-149.685745,284.879059,78.493866],[-126.796402,320.935211,98.578883],[-128.285049,319.730805,101.683613],[-117.495254,336.877961,114.217391],[-111.027786,336.676178,121.906361],[-112.552994,341.820343,119.427806],[-168.411575,253.339569,50.316475],[-173.420914,235.581879,27.594384],[-180.279678,223.588349,26.806092],[-181.696243,219.544525,24.963066],[-184.109451,210.423920,5.166764],[-190.073318,205.599640,8.748001],[-182.085647,205.578949,13.897255],[-165.526749,201.083008,12.767060],[-162.405533,201.228028,15.744339],[-159.352310,195.866486,17.820877],[-159.670975,190.495728,18.639527],[-157.889114,191.192841,21.813263],[-157.204483,187.944916,21.431969],[-157.669327,179.915345,17.983643],[-162.005630,180.855530,15.789551],[-175.188919,179.205262,-2.124565],[-172.598587,170.139923,3.222161],[-172.829544,170.114319,-1.892166],[-170.246963,202.795899,11.604844],[-171.798172,205.991303,15.283135],[-171.051041,207.502777,21.332993],[-168.124893,207.206238,34.305199],[-175.236282,204.627533,42.825310],[-173.210831,201.316773,51.833146],[-174.589859,199.748078,54.712807],[-160.990799,190.337799,60.722695],[-151.259659,187.454468,60.641140],[-155.382522,192.480988,53.373093],[-149.550186,185.974549,62.337109],[-148.889114,183.137970,56.642228],[-158.458755,169.425812,50.671532],[-160.756973,165.734070,47.230202],[-161.502762,162.733521,39.333680],[-165.725906,154.712097,35.855690],[-164.640640,153.923432,32.792725],[-162.013809,154.605133,29.334130],[-162.886795,147.460938,26.541512],[-151.788284,145.502808,20.103188],[-156.846329,133.574463,21.707878],[-149.252884,134.628144,19.861550],[-163.808914,128.979920,24.383057],[-170.235611,121.802979,27.341996],[-175.660904,120.945984,30.610169],[-191.647354,113.718415,48.747292],[-194.961990,106.796784,48.425713],[-193.215530,115.114167,56.137070],[-178.388321,139.366547,50.884011],[-186.227981,127.679535,57.343041],[-174.686294,145.910736,51.426941],[-166.910293,157.241150,45.783997],[-166.158646,158.980530,50.475594],[-178.224136,138.037049,46.536415],[-183.741104,128.023590,46.783715],[-184.804764,124.249787,44.413056],[-159.220047,232.641053,20.123864],[-157.664749,246.571350,28.299668],[-162.969009,245.463288,29.441231],[-163.580765,182.618805,-1.651138],[-159.429886,179.623535,1.779389],[-132.357925,186.388977,0.215760],[-133.920425,164.087464,-9.240960],[-139.012710,132.503876,-9.888099],[-127.276810,213.594513,-7.067619],[-128.555801,232.110474,2.757874],[-128.164993,229.858246,6.905106],[-127.860672,227.085938,13.508095],[-128.853470,240.871491,13.465981],[-127.789932,215.777161,7.927193],[-127.899979,224.805756,5.025162],[-113.572586,245.903687,9.980378],[-94.757278,269.467072,28.201508],[-94.277115,279.453217,30.001831],[-91.178299,273.545136,24.888901],[-75.054153,313.637574,31.152268],[-77.358414,314.604920,32.467423],[-73.767044,301.361237,26.599251],[-64.840103,295.695160,23.282265],[-63.412796,297.270050,22.177903],[-69.248306,302.889618,22.916314],[-64.221634,288.142395,22.148812],[-70.042679,296.837220,24.648995],[-68.680740,294.161835,23.448388],[-74.674332,291.856140,22.401223],[-81.345901,301.169709,24.416634],[-67.451431,283.184723,20.601250],[-80.564285,309.376343,29.348214],[-87.897354,309.205567,26.715142],[-87.102920,295.793488,20.254876],[-89.748672,305.679962,25.530060],[-91.942154,289.789490,26.336022],[-90.117325,288.790650,18.825005],[-90.572098,279.292908,16.612465],[-92.176773,284.165497,26.497696],[-89.948929,297.349060,22.447876],[-73.986832,307.830841,29.147240],[-66.599014,285.110321,10.799538],[-63.852615,294.578156,18.379692],[-78.156448,306.687439,1.725441],[-77.088394,310.810242,3.176728],[-81.976272,320.644806,1.006661],[-88.302750,320.792755,-5.505783],[-93.495743,314.562836,-12.042320],[-100.179947,316.996064,-16.778770],[-108.168045,325.431366,-21.913078],[-109.792801,321.307831,-23.747322],[-122.643204,309.100952,-30.827293],[-110.082474,315.388642,-24.590141],[-113.324478,308.205048,-27.329536],[-120.278213,304.773316,-30.805946],[-126.454788,300.299286,-34.058204],[-121.938003,297.362702,-34.391609],[-113.087234,295.734680,-26.716484],[-103.259415,302.205201,-20.640464],[-102.798660,307.801026,-20.562050],[-99.358108,312.378113,-16.663963],[-105.081192,315.385224,-21.426232],[-100.067520,300.941742,-17.784172],[-107.140579,304.217682,-23.904655],[-107.469437,307.226380,-23.350044],[-117.937942,300.791107,-31.904060],[-117.208328,297.701599,-30.923820],[-70.086319,265.110657,4.421784],[-71.224319,253.184845,4.980759],[-76.411941,250.790131,-0.940078],[-78.921890,246.401276,4.229828],[-80.215774,238.489472,0.297715],[-84.820267,238.460205,2.917954],[-86.176102,238.150605,12.910431],[-85.136856,229.129822,8.425957],[-84.692703,220.088257,3.934182],[-83.762405,217.698792,-1.734123],[-75.972671,215.509949,-4.468437],[-72.753799,210.202301,-3.172500],[-69.669998,207.113404,-0.433830],[-66.923233,204.577698,3.361901],[-65.300796,210.597260,8.440033],[-67.047378,220.399384,4.801209],[-59.267898,214.175659,18.841393],[-57.546829,211.311920,21.727166],[-59.808365,208.446472,26.042855],[-61.046829,203.990357,31.491776],[-58.976639,201.485718,34.461686],[-65.916702,191.019959,25.418915],[-66.410843,189.692139,21.573037],[-66.430130,185.151001,12.546646],[-73.611893,177.268769,31.481827],[-71.760879,182.071564,25.872536],[-70.201309,185.495056,29.536896],[-68.727493,186.860596,34.460419],[-70.677566,180.035187,37.917809],[-70.511124,172.611878,42.030060],[-66.003494,173.895203,47.928131],[-68.513504,171.407654,45.427567],[-64.775040,182.659516,45.003823],[-72.386368,168.971436,38.924225],[-73.640274,162.723908,43.997544],[-74.586258,161.308106,46.909264],[-76.521683,156.707581,40.205552],[-81.373306,153.207123,48.035134],[-81.114151,154.473969,52.635468],[-80.774917,154.003022,40.878754],[-86.463760,150.653443,52.215126],[-87.689102,149.762329,57.454148],[-74.317886,153.865021,32.600869],[-74.032730,151.460205,27.871094],[-74.391922,160.967133,30.032235],[-72.981399,169.203308,26.615487],[-74.257889,166.225525,34.727990],[-73.593704,172.876190,34.609970],[-72.023575,182.030579,32.498513],[-72.242813,160.579865,21.213234],[-72.230789,154.963929,19.605156],[-72.919021,145.130097,10.266823],[-75.003616,138.548127,7.310341],[-75.042251,139.552399,11.646790],[-75.728226,148.666046,28.905243],[-74.099991,158.349427,36.718827],[-62.220413,197.531342,37.731255],[-59.535965,193.373719,39.727227],[-56.850784,198.820893,35.100113],[-55.920364,203.149811,30.535195],[-58.164505,206.006226,29.105973],[-52.382950,211.480194,11.129769],[-49.812637,212.734803,5.495591],[-38.823379,215.540741,0.292199],[-43.272232,219.268708,-2.361648],[-45.763260,214.759888,0.028679],[-48.888077,220.336365,-3.989082],[-58.828140,220.946228,-1.148376],[-59.579239,218.717194,11.504288],[-57.658279,216.950867,13.485466],[-67.172378,221.377289,2.474709],[-70.050796,212.158844,0.944466],[-69.866959,218.109253,2.308831],[-73.055191,220.756684,-1.569770],[-76.749832,222.047699,-3.673507],[-82.136978,214.558533,-4.898338],[-79.958389,213.360321,-5.812881],[-78.581131,224.390686,-4.852172],[-81.399551,225.972199,-3.065513],[-82.799393,226.685028,-1.979240],[-86.089126,237.680359,-9.132377],[-87.389603,243.043488,-11.596916],[-92.765518,244.450470,-15.724083],[-103.557022,240.166901,-19.434867],[-97.160721,232.764130,-20.303093],[-100.003921,235.423310,-25.520439],[-101.269302,238.730072,-28.843041],[-97.999222,241.075684,-34.185158],[-90.807388,258.060486,-40.644340],[-99.227127,261.590638,-45.396507],[-107.216202,259.543671,-46.842414],[-106.842728,255.636841,-44.019463],[-121.096817,260.727570,-48.754525],[-120.698318,252.854126,-40.665443],[-122.109695,256.871125,-44.912071],[-128.236099,257.054505,-42.717292],[-132.090713,256.464020,-39.512580],[-134.641189,256.875092,-36.876731],[-113.464798,256.627106,-45.705818],[-125.119827,266.966248,-51.595039],[-137.147171,269.000428,-46.986183],[-140.742874,274.739899,-45.358299],[-142.599136,276.288391,-42.390480],[-139.881058,288.278412,-39.768577],[-141.066238,281.697785,-39.769768],[-142.257217,279.302368,-43.404686],[-138.538162,284.645478,-36.596916],[-131.553604,283.345032,-31.693077],[-124.095291,282.804993,-27.658943],[-130.909561,291.914063,-35.226814],[-123.615066,294.625092,-34.421302],[-142.165420,268.253235,-39.436241],[-141.917129,270.715058,-42.687050],[-140.883438,264.744812,-36.823005],[-137.536514,261.475861,-39.862861],[-137.067886,264.418152,-44.278114],[-130.978958,266.377930,-49.497490],[-130.252640,261.747010,-46.718971],[-91.189163,261.033326,-41.695732],[-95.140152,256.152802,-40.304863],[-92.953934,244.658661,-36.921348],[-89.238968,244.821930,-36.302040],[-104.368790,238.748444,-21.501457],[-88.453873,234.325409,-10.741020],[-89.074417,230.280762,-20.878929],[-83.775223,229.442536,-21.842125],[-76.861526,227.326721,-17.590156],[-75.503189,224.545471,-13.816291],[-79.572342,224.925415,-10.374427],[-81.345169,227.342682,-13.857063],[-92.668594,230.675873,-16.278892],[-73.771622,222.771790,-9.362434],[-83.718399,228.563874,-10.253013],[-80.811478,228.521607,-4.549598],[-83.209122,229.482422,-7.257209],[-79.825394,232.582642,-2.554443],[-78.933975,236.743988,-1.364791],[-76.867752,231.120636,-22.056175],[-87.125320,233.429230,-28.342430],[-91.151443,237.653595,-32.413276],[-97.501358,236.923340,-30.310204],[-90.534683,233.546723,-28.350167],[-97.878067,235.468415,-16.518304],[-94.911331,231.954621,-15.177528],[-93.629471,233.642945,-13.602241],[-79.998306,236.879029,-3.675697],[-79.839737,243.917939,-4.218956],[-77.050308,241.520508,1.284996],[-81.148147,234.820191,-1.161369],[-83.860733,229.735962,4.559128],[-83.577286,232.062043,0.524216],[-83.354568,239.458557,1.293595],[-53.500381,221.692139,-4.986892],[-52.146377,216.989746,2.832283],[-54.284683,211.542816,16.788292],[-54.169083,206.533051,22.783257],[-66.848404,184.723419,40.249436],[-64.446670,189.989533,40.977311],[-64.933304,193.047608,36.795212],[-66.741592,189.776215,30.936501],[-71.257034,177.312744,20.672562],[-68.423355,179.313416,15.165436],[-67.036270,186.421814,17.658799],[-73.963272,199.400482,-5.449791],[-76.906814,204.541870,-5.830536],[-83.524551,205.643524,0.117897],[-82.413406,196.658264,-1.067421],[-77.119522,187.428437,-5.379028],[-73.747513,179.750611,-6.746238],[-75.382095,178.634156,-6.235603],[-73.451736,172.883271,-7.445579],[-71.979751,159.306305,-7.918129],[-75.743240,164.380585,-7.449257],[-79.341019,160.157959,-5.709251],[-83.054520,157.388916,-6.999200],[-74.353836,157.314209,-8.580085],[-72.493423,151.500611,-8.068275],[-71.182876,150.314423,-3.987457],[-74.571426,139.570191,-4.517997],[-71.049087,148.903199,2.710793],[-69.209549,160.132172,6.104355],[-68.780167,165.655518,-3.445945],[-76.875259,153.556763,-8.608543],[-80.858047,189.270539,-1.891601],[-81.235550,181.373963,-1.246643],[-84.277237,183.120179,-0.579361],[-90.646255,187.718170,-1.030807],[-94.907059,193.970917,-0.842743],[-93.155655,197.883728,1.799683],[-95.456497,209.312592,5.702950],[-88.943680,209.950531,6.208771],[-91.178299,220.112610,10.029808],[-87.426590,218.192963,7.165924],[-86.485367,229.714600,10.812683],[-88.504471,232.377259,13.317528],[-94.259781,219.160462,9.671959],[-98.031631,224.963105,9.945763],[-100.033218,207.030732,1.722588],[-107.351883,201.111359,-4.374214],[-98.340958,192.143128,-4.312194],[-99.990738,189.161957,-6.128769],[-103.964004,178.798004,-10.630378],[-106.397232,188.022827,-8.076377],[-110.095962,204.881806,-5.133598],[-115.638931,215.052735,-7.752906],[-120.021622,219.972901,-8.708839],[-125.993301,213.367188,-11.322929],[-127.054947,206.331024,-12.117714],[-126.165970,201.240784,-15.953316],[-125.039566,197.694062,-17.895729],[-126.627762,188.024628,-19.714149],[-127.228836,181.021546,-21.497658],[-127.347854,189.157837,-13.014686],[-126.860245,195.988221,-10.610894],[-127.320328,203.063507,-4.578788],[-125.734817,222.788330,-6.897789],[-111.798050,220.394440,-1.489265],[-110.275162,214.696595,-2.369064],[-107.614944,207.545075,-2.229629],[-103.021011,217.003144,3.893677],[-104.701675,229.721009,7.779282],[-99.848526,234.451783,12.579720],[-97.403274,246.171326,18.834748],[-94.724136,249.928925,20.828659],[-86.462845,243.960816,13.601189],[-87.341690,255.649781,10.418480],[-82.193924,263.821198,8.555657],[-68.216812,260.082367,11.066231],[-65.212784,261.687744,10.529633],[-64.191299,267.340271,11.499009],[-67.379532,264.644501,12.684891],[-67.882522,256.372528,8.093239],[-70.924881,251.277069,5.957085],[-73.545608,248.969483,6.016381],[-72.263748,253.973175,7.992531],[-93.114883,230.688568,13.354737],[-96.843460,232.613709,13.357476],[-94.977066,238.329804,16.073052],[-91.536819,249.768311,20.895958],[-89.313309,249.160157,19.419594],[-86.053360,244.525849,10.872231],[-86.517776,248.198822,6.970948],[-84.617691,248.589264,4.769303],[-82.382217,253.255921,5.539811],[-74.580826,245.627686,3.198105],[-87.784622,258.495301,15.168068],[-87.860184,253.167847,17.864380],[-89.743240,263.989441,22.136467],[-105.965103,235.435517,9.648888],[-112.645767,228.017090,1.177933],[-115.200210,235.038544,2.893181],[-120.366897,228.138977,-4.446266],[-123.410843,223.632752,-7.040245],[-127.346390,222.909821,-4.361953],[-127.710525,233.879547,1.230393],[-117.548172,228.191468,-3.173027],[-128.985184,237.620453,6.530671],[-125.054336,217.257599,-10.106651],[-103.069961,199.784455,-2.861007],[-107.695694,194.177399,-6.619789],[-127.012955,218.667237,-7.071693],[-127.271988,207.405182,-2.012115],[-126.650406,196.678772,-16.019509],[-127.712479,181.826294,-17.998787],[-119.704239,206.632904,-14.007301],[-118.704361,196.300354,-15.670280],[-117.552688,187.554138,-17.027076],[-117.505264,179.788636,-19.829490],[-109.686111,173.254334,-15.713189],[-103.770706,163.746735,-18.127967],[-112.488846,181.641510,-13.412239],[-109.535171,185.071289,-10.336647],[-114.185013,192.091309,-11.572564],[-115.657486,206.475312,-10.627632],[-118.932327,211.033417,-12.072425],[-123.815994,212.366242,-12.780021],[-111.707596,191.728821,-9.561882],[-108.882339,176.383026,-13.330590],[-95.202103,176.906311,-8.742759],[-92.935135,165.822327,-10.610191],[-103.604874,167.972657,-15.248039],[-94.908462,162.570710,-13.062233],[-123.527298,201.618042,-16.980964],[-89.515518,239.034424,16.408516],[-68.955887,189.881562,-2.346817],[-67.232010,192.014801,2.430993],[-68.044449,183.565399,-0.619209],[-67.172623,178.602570,8.757393],[-70.418411,169.473114,14.483971],[-65.877090,195.218689,14.421593],[-66.638687,182.614350,4.404900],[-70.076919,183.858948,-4.061615],[-72.968521,185.383728,-5.833541],[-71.120254,179.310425,-6.140586],[-69.188797,173.379578,-4.630706],[-71.464004,173.568878,-6.859916],[-134.996170,294.945740,-55.272621],[-141.877823,292.781922,-52.220101],[-146.458633,296.761292,-55.234521],[-141.100296,297.895081,-57.833137],[-123.769119,302.117981,-59.605049],[-115.708877,289.603546,-53.534706],[-118.480911,281.887024,-54.123466],[-121.433365,293.769287,-54.078392],[-124.246719,278.644165,-54.793633],[-138.711990,282.453278,-47.810997],[-135.266617,288.788147,-49.383384],[-140.108658,285.554962,-44.845344],[-134.324356,284.659058,-51.100776],[-127.956619,287.083802,-54.059623],[-127.963577,292.585114,-52.784188],[-122.870621,272.430024,-53.856515],[-128.665115,272.791352,-52.709449],[-134.715225,274.883637,-50.286583],[-112.152786,269.376404,-51.516273],[-117.897842,263.600861,-50.535148],[-116.438614,275.784394,-53.492988],[-114.104507,281.217163,-53.353111],[-107.986954,290.452545,-52.154197],[-101.302078,289.239685,-50.679298],[-100.958938,277.177491,-49.453453],[-96.091751,267.490601,-45.958839],[-90.890884,275.903931,-45.401207],[-85.288895,267.419190,-41.162346],[-80.139603,266.180664,-38.343498],[-72.269058,270.495606,-35.171959],[-73.323318,262.197846,-33.682655],[-76.092178,250.926056,-32.084999],[-78.835342,243.941956,-31.412727],[-74.061478,234.958405,-24.015130],[-83.001602,237.198090,-30.432930],[-80.340591,239.085663,-30.132423],[-84.502090,252.594818,-37.012840],[-79.366959,257.325531,-35.743370],[-107.327957,264.721649,-49.008873],[-107.907120,276.708588,-51.468925],[-100.193252,272.085541,-48.389808],[-71.380875,316.459076,-43.552330],[-67.057632,304.808777,-38.859947],[-70.933853,302.349396,-41.150962],[-74.239151,292.990509,-41.173301],[-85.510391,287.353852,-45.254509],[-88.148941,293.737061,-47.694053],[-95.499039,288.517670,-49.082009],[-96.527664,295.953553,-50.822883],[-93.016128,302.140534,-51.930030],[-104.222916,305.720764,-56.320045],[-88.624344,303.143799,-50.691734],[-83.155594,292.888825,-45.504112],[-82.199539,300.702881,-47.300804],[-57.414017,334.666657,-33.657249],[-49.504593,338.538300,-25.671760],[-59.152420,352.282685,-34.728218],[-53.631363,350.598725,-28.845924],[-65.588516,372.279389,-37.851295],[-66.729935,381.193573,-36.883094],[-71.571426,399.376618,-37.366279],[-76.496231,398.502411,-42.787315],[-82.902237,402.215912,-47.631096],[-82.055801,407.397919,-45.351005],[-91.512955,417.437470,-50.701194],[-92.534683,434.833954,-46.100013],[-67.700333,396.179291,-33.866722],[-65.522110,404.809052,-28.390007],[-67.918838,411.071381,-28.931434],[-69.449234,420.345490,-26.678506],[-61.351944,409.718170,-21.287376],[-37.586685,330.645233,-14.827325],[-40.633072,317.519684,-18.033929],[-35.558365,308.065033,-14.013497],[-29.535904,306.558777,-9.572868],[-28.220230,296.996125,-8.279854],[-28.190567,283.060700,-7.287956],[-20.375320,294.858673,-2.487587],[-30.441482,314.743683,-10.352928],[-22.236404,277.375122,-2.157234],[-26.426712,267.081391,-4.826187],[-30.119888,275.382263,-8.173881],[-34.687637,279.277558,-11.630226],[-36.939102,268.290284,-11.622566],[-39.397842,256.155823,-10.633201],[-32.658035,240.132172,-4.117889],[-31.180496,245.689728,-4.536415],[-41.701370,243.774628,-9.276893],[-43.549576,235.124207,-8.027595],[-54.812576,224.363526,-8.232934],[-63.490188,221.365357,-1.380088],[-61.148086,224.702607,-10.316475],[-69.982376,224.734314,-13.032234],[-70.294693,227.762543,-15.902656],[-57.925430,228.059876,-11.617393],[-66.991897,222.556824,-8.651573],[-34.213638,227.620453,-1.588142],[-27.595657,232.306641,-0.138656],[-24.400589,239.973481,-0.504699],[-31.204971,260.722016,-7.061866],[-44.403763,311.473908,-21.231590],[-46.417496,304.702271,-22.669349],[-36.995987,293.722504,-14.584969],[-42.706192,295.422333,-19.125984],[-39.164200,284.803925,-15.305885],[-58.263443,294.796540,-30.911659],[-62.911636,289.249726,-33.357689],[-67.577957,316.286835,-40.879890],[-59.814224,308.123871,-33.931084],[-66.245499,321.797211,-40.541100],[-56.323379,314.163422,-31.669579],[-53.047623,302.805664,-27.946618],[-45.351089,319.517365,-22.044320],[-51.465103,319.314911,-27.589988],[-70.556290,282.174958,-36.782844],[-65.986954,267.767487,-30.843849],[-63.144241,261.262421,-27.297539],[-59.069107,256.668946,-23.380561],[-64.277786,247.806305,-23.642555],[-66.332840,240.851990,-22.267784],[-68.283340,237.366913,-21.911613],[-66.595474,275.576020,-33.106239],[-58.556656,270.020050,-26.665275],[-59.512649,265.039246,-26.055854],[-48.677200,257.913666,-16.976661],[-49.115494,248.659241,-14.697914],[-43.877823,249.631012,-11.765220],[-35.927994,250.337494,-7.657432],[-42.311172,261.973419,-13.618858],[-53.249893,269.969513,-23.094887],[-52.333511,275.073883,-23.461677],[-39.873550,270.026520,-13.681114],[-66.641250,285.879975,-35.247673],[-39.067703,276.218109,-14.125969],[-50.498306,290.753327,-24.478172],[-7.186294,235.352997,1.382012],[-5.583450,238.497773,6.418290],[-2.450210,244.822907,5.291848],[-4.306656,245.404419,3.818070],[0.548874,300.797180,1.542618],[24.835373,328.573578,5.385865],[22.061447,336.489411,10.711899],[27.219162,331.596161,6.941971],[33.159836,327.895111,10.590660],[44.930466,328.570954,-4.541366],[44.879013,338.035919,-3.685005],[53.606125,230.874665,-37.171013],[57.828842,202.295014,-24.031044],[55.964340,205.950836,-26.009132],[74.345810,212.384278,-41.509178],[78.241318,217.769989,-49.139473],[67.980576,214.090027,-41.112129],[77.641159,210.268708,-37.591728],[64.072312,197.966095,-0.371627],[71.480759,198.710450,-11.893272],[67.980332,222.054596,1.317002],[64.809738,213.466248,4.102684],[68.902878,227.753662,0.871033],[73.089218,231.463562,-5.637397],[78.274460,241.937867,-14.751579],[80.019272,232.498108,-19.383888],[78.845810,265.242035,-8.255500],[77.979416,264.986969,-1.847427],[79.935837,250.932404,-15.754966],[82.472275,249.837250,-22.550834],[82.151230,239.372406,-23.969535],[85.539719,230.071595,-32.798683],[99.204331,244.812989,-40.981347],[93.928635,245.499848,-38.460929],[92.521286,251.371125,-35.203483],[88.484787,250.027832,-32.933754],[86.257309,254.752381,-29.407463],[85.652695,261.106690,-26.558082],[81.394455,261.257782,-14.818504],[84.236862,256.554871,-25.239509],[87.150375,269.159577,-12.545189],[81.662094,267.966339,-7.468849],[83.490158,267.780274,-15.967079],[111.994187,242.347290,-53.311638],[110.598984,239.875885,-51.494835],[106.565598,241.690125,-47.525962],[102.921860,241.431458,-44.987358],[102.676132,252.194794,-42.703956],[125.145249,262.854706,-64.711372],[155.177902,257.005493,-89.339119],[146.545456,240.810639,-81.069465],[151.589401,243.140320,-85.613700],[150.490158,244.700623,-89.825172],[153.852036,269.260956,-86.137657],[154.061325,267.222870,-90.258400],[152.213913,269.448059,-95.005989],[153.772873,271.280518,-96.885109],[159.438828,279.858612,-108.525123],[160.737351,273.309754,-102.232689],[163.393723,270.086457,-98.165459],[164.375717,269.987976,-94.007331],[169.612412,272.874482,-91.661903],[160.690048,269.540680,-95.402749],[156.114731,270.273438,-91.663551],[154.286850,262.983521,-85.810096],[136.643601,332.615082,-112.318062],[139.679245,356.316132,-113.735923],[143.154160,359.641815,-115.465843],[152.061325,364.007477,-119.344337],[160.839829,360.604462,-123.358818],[162.157028,372.099457,-120.942878],[182.831528,377.918610,-129.783470],[183.844254,370.705841,-127.977959],[168.330185,376.013581,-124.145210],[157.047165,372.925324,-119.223945],[146.527756,366.916596,-116.371513],[164.633591,384.445221,-122.703071],[167.741928,389.111420,-123.692192],[173.279526,395.988861,-125.355034],[180.201492,399.266022,-127.667717],[171.430893,402.869294,-123.364402],[173.409836,410.640717,-122.598442],[172.235764,420.568390,-118.923606],[170.504990,425.729523,-117.913414],[156.937973,427.476960,-110.421348],[161.983750,439.932221,-109.612175],[155.447250,436.329071,-106.639062],[160.989365,448.965302,-106.057885],[155.534897,449.425629,-102.157493],[155.252670,454.670746,-99.542320],[148.320114,455.164521,-93.447624],[142.863999,457.972565,-86.540794],[147.405625,463.380341,-86.678933],[141.295700,469.975312,-79.885551],[164.728500,480.429047,-96.970574],[180.241348,509.036652,-96.926826],[186.949387,513.135346,-100.266335],[193.539383,516.808808,-103.353996],[208.100205,528.438629,-108.953530],[194.881088,527.929840,-99.058830],[200.965775,521.057892,-106.975945],[181.019272,516.405976,-93.914497],[177.264816,528.160797,-82.391136],[166.818344,524.200226,-72.899513],[168.709519,534.078705,-69.131141],[169.173447,541.876740,-60.355874],[167.429916,544.116242,-57.898201],[159.224411,536.747895,-53.483834],[154.048996,530.576325,-51.513238],[151.042709,523.035736,-52.381050],[144.153977,513.099762,-51.815971],[148.245041,509.086823,-61.926307],[159.838669,512.934967,-75.470283],[160.171127,509.713044,-78.716499],[163.511337,508.873139,-82.863334],[149.671616,488.740631,-77.411842],[144.366562,489.814850,-72.792930],[134.759262,482.172943,-64.985221],[130.455124,473.283295,-65.084312],[126.489548,463.701935,-65.433128],[132.734665,466.857025,-71.234886],[135.494980,471.770111,-72.249839],[140.745773,464.044831,-80.151894],[133.517136,462.970978,-73.269996],[125.219284,459.229828,-66.282295],[121.818344,458.145966,-62.336677],[115.110458,446.488495,-59.733696],[120.016953,448.231659,-65.658821],[116.723374,433.850251,-68.705163],[119.514877,422.562104,-77.841011],[111.595688,418.983490,-69.897331],[111.387619,408.087982,-74.489555],[113.312851,404.878510,-77.439521],[117.821762,384.632477,-91.307380],[112.661972,367.235321,-90.852851],[106.456711,357.801239,-86.968834],[99.884812,358.655732,-78.520378],[91.379929,357.943146,-68.421669],[86.793198,344.147065,-67.036064],[127.735886,445.394257,-77.046593],[130.487290,439.620148,-83.098534],[136.217331,446.712372,-86.300254],[139.211533,441.021454,-91.565101],[143.096604,433.021027,-98.112648],[148.056687,430.488007,-103.216255],[158.587631,422.431732,-111.920266],[164.939316,421.697174,-115.691032],[124.787155,430.000397,-80.224556],[135.233627,429.057709,-91.164817],[141.876572,427.404206,-97.770668],[149.981552,425.219025,-105.096672],[157.013718,401.754059,-116.696739],[163.205307,408.612519,-118.520988],[156.080734,413.376740,-113.802224],[164.773911,413.427399,-118.245735],[136.630112,431.845002,-91.676078],[133.464157,436.496125,-87.646507],[128.112106,433.133515,-82.036491],[123.128342,435.298920,-75.963616],[148.055954,480.283173,-81.525857],[144.442856,480.828156,-76.275902],[136.919296,478.130646,-69.149757],[140.043381,481.888764,-70.016838],[154.601791,481.082794,-88.225654],[165.149094,487.604767,-94.452995],[151.035324,486.234223,-80.084434],[141.787277,475.543610,-77.716850],[159.545090,523.195160,-67.138206],[149.907395,514.844452,-61.137733],[151.458847,517.863739,-60.540414],[153.166611,522.972748,-56.047294],[161.040939,534.483979,-56.427452],[160.808334,531.816315,-58.443138],[159.727646,526.377961,-64.313270],[171.110886,540.718232,-64.697091],[158.343796,517.568451,-68.172599],[174.876938,494.551361,-98.852348],[184.823380,496.026032,-105.608818],[207.532333,510.152314,-114.692863],[203.364273,511.041962,-111.574699],[217.541550,519.092743,-117.489097],[232.662766,528.781708,-123.141595],[233.767258,526.039582,-124.795936],[233.192764,516.954865,-126.893943],[223.906204,503.750946,-124.566108],[225.913223,496.913117,-125.990593],[218.145981,495.725495,-122.826607],[212.315292,486.928131,-120.513572],[192.061417,479.459931,-112.052238],[192.192185,485.334076,-112.165916],[185.460251,487.958222,-108.408929],[181.012253,489.530854,-105.379509],[173.368149,488.338898,-100.671531],[220.697373,517.882599,-119.916908],[210.896500,508.961945,-116.951759],[197.946213,496.756867,-113.184181],[193.897415,490.050141,-112.473534],[205.968308,489.111420,-118.111045],[209.257248,500.667755,-118.123161],[211.688309,496.527985,-120.006172],[226.915787,516.666596,-123.696769],[226.402390,509.162079,-125.003181],[188.833603,494.492157,-108.765037],[188.093125,502.289276,-104.860588],[193.908371,509.691986,-105.030205],[207.973953,524.908600,-110.174050],[225.131149,531.157379,-117.143898],[234.965378,534.508149,-121.885460],[245.787521,544.920929,-123.802513],[255.044876,552.910492,-125.098289],[246.315964,551.263092,-123.419625],[258.105240,566.786652,-124.083046],[279.858872,573.816437,-127.988746],[287.642899,577.783844,-128.182107],[292.866257,582.190399,-128.794868],[300.612259,587.617340,-129.610405],[310.670151,595.549836,-130.754998],[318.554978,601.755463,-130.884087],[321.239273,600.153778,-129.831306],[333.913071,610.393891,-129.075431],[337.622971,608.935883,-126.802116],[346.437424,618.208832,-126.604194],[355.734390,625.660614,-121.767281],[356.983017,627.722077,-115.647972],[362.415146,637.434662,-116.697059],[361.085281,633.425202,-112.887124],[360.730148,641.064667,-106.127906],[358.726364,646.710297,-113.663719],[355.743271,646.356476,-116.871132],[347.513138,646.121125,-119.444374],[340.571304,643.935822,-121.125328],[333.715164,641.314606,-122.010064],[334.211746,647.762299,-122.041542],[338.713577,663.675690,-118.654609],[338.741806,668.127350,-117.063943],[323.224136,657.005036,-114.999000],[325.677750,652.441864,-118.094123],[320.334885,648.216278,-118.073326],[324.228348,643.910065,-121.209343],[327.200424,641.088593,-121.363502],[325.094223,637.872162,-121.773536],[337.802109,631.630646,-129.244636],[333.955734,623.545685,-131.192268],[339.732407,619.223969,-129.782647],[319.953629,637.723236,-121.044533],[316.643784,639.290314,-120.688210],[312.559616,638.883393,-119.299842],[331.644730,670.767975,-112.058342],[324.146835,668.538300,-108.104378],[325.256577,674.820038,-103.765373],[330.504746,683.112274,-103.769905],[343.539536,699.149384,-100.776635],[343.474289,691.470002,-106.065986],[361.071152,694.610443,-109.809211],[365.642227,699.301178,-109.246452],[379.651322,710.158783,-111.262840],[382.224869,707.467011,-110.999337],[387.581314,708.683747,-111.409843],[407.603867,712.980072,-114.014900],[392.798905,701.887360,-116.349449],[415.717362,708.446320,-114.493812],[416.279556,702.466278,-112.724435],[403.573197,689.342926,-112.363838],[398.886490,690.808075,-116.220833],[400.083176,694.696747,-116.796380],[393.682755,698.829743,-117.146125],[405.652573,694.658478,-114.775735],[409.711563,710.329010,-115.153419],[409.897110,706.873139,-115.599495],[423.551560,717.406769,-113.229744],[424.097946,721.096405,-111.974022],[427.270554,710.408234,-109.882104],[427.169266,709.067841,-106.988914],[438.649628,721.474945,-93.749473],[458.352493,741.879975,-96.443565],[460.951386,751.590668,-100.111245],[456.521713,752.159638,-103.260978],[448.514633,767.390473,-95.622627],[439.383743,764.863190,-94.492454],[432.225113,760.880402,-96.649726],[426.652664,755.280060,-100.679070],[415.835404,749.022492,-101.631463],[425.177048,750.816010,-104.134742],[412.299637,735.060334,-109.130149],[401.445755,726.165680,-110.211250],[402.862503,719.544098,-112.569526],[395.347305,716.413483,-112.323112],[388.036240,722.034027,-108.343346],[383.424759,721.750214,-106.792717],[372.356033,721.762543,-101.195411],[348.451279,713.855561,-90.909188],[339.484970,707.560334,-89.526573],[333.554031,699.112091,-92.967033],[322.125595,688.166718,-93.112495],[329.944321,692.217255,-96.326652],[348.663437,694.561066,-106.963371],[357.192825,694.983979,-108.276023],[360.384812,701.179474,-108.676460],[367.946243,716.003144,-103.057136],[344.476120,707.566742,-94.171577],[337.964768,699.094818,-96.793296],[347.727799,705.470673,-98.526741],[346.343369,696.594940,-104.364037],[347.122177,689.528290,-106.978860],[405.523605,745.325775,-99.448784],[420.756394,755.039399,-97.464562],[410.869248,751.640107,-94.470207],[429.379501,762.315644,-89.495903],[429.958603,762.704987,-84.306511],[440.997238,767.047089,-83.375282],[428.654251,761.178925,-77.279625],[401.938309,749.510651,-75.410866],[393.545059,744.370636,-71.081199],[398.176895,746.036408,-69.753975],[382.035721,735.338593,-63.441398],[367.137253,726.952545,-60.379402],[380.224106,729.345246,-59.343788],[380.500351,726.852204,-59.288185],[391.447861,728.377961,-62.303962],[402.369095,733.915741,-65.539955],[396.898209,728.075714,-65.649620],[396.550461,721.170441,-68.106544],[398.494980,717.939423,-70.816414],[400.973831,709.533783,-77.878181],[405.173935,706.965058,-83.630317],[405.807572,691.868134,-98.072548],[398.791641,684.594330,-100.653465],[397.400284,681.758026,-108.915947],[404.592545,689.453888,-110.152305],[393.365097,680.358795,-113.464073],[394.876999,684.192353,-115.182335],[406.002426,703.530670,-88.578163],[398.532974,698.152008,-89.046593],[387.081131,721.392060,-63.442909],[385.446732,730.674591,-60.207924],[376.922135,719.271149,-58.846107],[372.547592,715.160614,-57.835183],[368.301865,708.468659,-59.055915],[352.265518,699.011261,-53.025550],[346.802109,694.488312,-51.698616],[346.699082,698.795807,-51.181953],[340.402146,694.197541,-49.060677],[334.123093,694.104401,-45.911857],[328.859390,692.072419,-44.285088],[325.772690,692.444245,-44.125053],[317.210495,686.121979,-41.729789],[309.455368,682.925507,-41.029152],[309.415695,675.305512,-38.217476],[320.162644,685.011994,-41.533943],[310.414658,679.761078,-39.120414],[316.798813,680.863556,-40.506263],[316.769119,666.805451,-46.775857],[316.478134,668.945038,-44.264839],[312.271317,666.700043,-42.048851],[304.909805,658.288605,-40.924995],[308.292221,667.906098,-39.934364],[313.726944,671.922455,-41.771110],[303.843155,659.496735,-39.348793],[303.290329,648.278534,-47.353309],[307.402634,647.260224,-52.160362],[316.077683,644.407135,-65.981529],[329.573624,649.253815,-76.348335],[332.183090,651.052765,-77.190895],[334.902451,654.638886,-73.985740],[349.573288,654.359406,-85.631797],[349.277146,648.945038,-89.043510],[356.995834,656.083649,-89.296531],[356.898666,651.031098,-93.894310],[353.485550,646.338349,-94.798606],[355.453140,645.357392,-101.234977],[345.977707,632.132721,-101.604362],[340.410172,629.286652,-100.917306],[340.086289,618.495453,-107.351845],[338.639816,607.289093,-118.222985],[320.405350,589.810944,-123.475640],[311.731461,581.471283,-122.527154],[305.711228,575.709198,-120.876945],[304.742966,573.530365,-120.554435],[306.343277,572.042023,-117.194664],[304.482926,570.490448,-113.422905],[308.993149,570.314362,-116.511390],[315.921036,564.972077,-123.364846],[318.379471,556.286469,-127.936393],[318.194687,551.739777,-129.191949],[315.671860,544.976837,-130.631492],[311.923691,539.815644,-132.398613],[309.739975,538.992340,-134.879020],[307.106705,534.508454,-134.052087],[302.941177,530.556000,-132.322029],[296.069687,526.087616,-137.270257],[299.228165,529.908478,-137.869133],[295.081558,530.744965,-139.629325],[303.092239,536.632965,-138.144371],[302.414993,530.751435,-136.288353],[331.622910,619.806122,-101.621833],[326.351853,616.363068,-101.015481],[329.885880,613.191559,-105.009559],[324.332169,622.602509,-95.543190],[318.664902,621.049225,-87.622245],[310.470841,618.766449,-82.177177],[298.067398,612.721466,-75.165733],[293.176285,608.026764,-73.911140],[278.868881,602.107270,-65.296120],[275.525040,605.106171,-54.529381],[270.082108,605.689423,-47.410469],[265.915451,602.689850,-46.731544],[260.297745,595.551239,-46.001548],[248.064804,580.039765,-45.943230],[244.012497,582.451142,-38.419838],[236.527207,576.269257,-35.191948],[233.788132,572.677216,-33.999992],[237.441757,580.129669,-31.678581],[235.256455,582.730011,-25.356560],[233.089493,584.475251,-20.532783],[238.351914,590.846466,-22.858146],[250.998093,605.556732,-24.007698],[253.780045,610.635895,-23.176689],[246.711228,609.013031,-19.603889],[250.982132,619.540558,-19.429557],[245.199661,617.507782,-15.951515],[240.269821,616.084381,-14.533882],[238.729141,611.198883,-13.238670],[229.871384,601.607636,-9.444694],[224.621231,597.640473,-7.752251],[216.040634,588.305817,-4.312667],[206.254013,579.174164,-1.305671],[191.556015,570.445832,0.566910],[198.544907,575.049408,-0.422760],[180.965531,553.963166,7.169846],[178.991348,548.003022,8.778305],[169.433457,537.901947,11.918999],[171.794357,546.718598,9.102669],[166.926560,530.194245,14.340439],[153.869187,520.178925,16.079018],[150.195236,514.648102,16.873093],[143.202927,509.680695,15.836495],[146.007065,524.195221,10.519112],[139.495773,515.479706,9.347252],[125.141831,490.947724,9.068283],[123.151718,483.170929,12.166657],[110.468369,450.868805,9.141518],[107.311936,447.059052,5.514031],[93.824631,429.176117,-16.089714],[91.649582,424.697052,-18.917946],[93.427475,426.176728,-30.711570],[100.258286,435.530243,-38.557212],[106.027817,444.013398,-44.179833],[106.783188,448.057160,-41.425072],[116.989853,466.384613,-47.128532],[121.055161,471.749176,-50.724403],[125.297714,476.257538,-55.516503],[123.792343,479.125946,-49.985389],[128.435837,485.820832,-53.138756],[125.451035,484.810883,-47.775932],[132.225083,495.181488,-51.032936],[129.849533,497.372895,-41.872322],[132.179550,504.416107,-36.111763],[126.945603,499.242585,-29.120491],[131.762619,508.510224,-27.731163],[137.190903,514.669953,-35.691032],[140.922531,523.041352,-33.203697],[145.105576,526.170868,-39.289787],[153.134812,544.060944,-28.987007],[147.049912,537.583588,-23.895256],[144.498642,536.153290,-15.181039],[155.149765,550.776581,-13.778526],[159.227219,552.612519,-4.210388],[154.590561,547.962860,-3.216545],[153.858566,539.993134,6.135369],[146.203171,529.933075,6.767952],[148.238510,535.826203,3.733826],[149.383164,529.840180,9.761055],[154.670456,528.109772,13.361824],[159.778244,533.168000,12.854218],[149.812424,522.698761,13.664513],[154.190964,535.416901,9.452271],[168.205368,555.087189,2.135880],[159.521347,549.502777,1.450486],[166.360825,559.449372,-6.610054],[176.205490,568.452240,-10.994194],[170.787705,566.281037,-18.972435],[176.589035,571.786347,-26.333290],[177.668259,572.279328,-31.952995],[187.270035,581.932892,-35.407128],[181.603256,574.789032,-39.509468],[178.331223,569.220185,-44.636055],[169.513535,558.890778,-43.310508],[161.413071,548.302582,-42.071220],[155.369797,539.250702,-42.503914],[154.539536,534.511322,-47.531517],[144.523544,521.955719,-44.238868],[149.156113,524.562592,-49.442192],[163.844772,547.958100,-47.849891],[169.688461,551.481049,-53.702751],[174.866074,552.725128,-60.143364],[173.356735,559.079560,-50.650657],[192.065018,578.715180,-56.612556],[201.257889,588.324921,-58.227836],[204.816971,593.740082,-55.971061],[212.640915,603.174958,-54.521629],[217.341782,608.678620,-53.687461],[213.244858,606.661957,-47.154258],[221.563126,615.695893,-44.647544],[222.466934,616.888031,-39.409462],[204.695999,599.452179,-30.348381],[195.117539,589.944794,-26.276451],[194.285599,588.648896,-23.726326],[189.409805,582.333100,-18.948021],[187.931076,578.156586,-12.878349],[182.813187,577.095856,-20.199180],[174.580490,569.751068,-18.703453],[192.378494,587.419648,-33.955040],[215.040878,607.372162,-50.788169],[202.068771,593.356781,-50.787056],[196.184860,588.684113,-46.372551],[194.293808,588.017182,-41.820304],[186.322739,578.145172,-45.063697],[190.651688,581.060639,-49.711602],[179.817124,567.823578,-50.580574],[181.915512,577.084442,-23.372231],[199.107834,594.198822,-32.447823],[201.927292,596.661774,-38.173515],[208.739029,602.785797,-43.798942],[209.271469,603.958222,-39.676597],[189.586807,584.808075,-28.311119],[178.178818,560.171723,-57.129448],[191.968491,546.456330,-84.818658],[181.318344,527.280487,-87.859169],[181.194748,524.981781,-89.317924],[173.131210,520.958405,-84.457206],[188.874375,539.507355,-84.876838],[179.869370,538.700836,-77.606529],[183.459549,536.936371,-81.156608],[182.474960,545.131256,-75.570594],[175.722580,531.273285,-77.240898],[179.880081,552.343659,-64.527015],[189.845810,556.637543,-74.034080],[184.865433,562.377106,-64.105507],[188.953110,562.137665,-67.606025],[187.734177,552.174164,-75.767356],[217.572617,572.147797,-92.395271],[227.637131,579.464142,-97.260200],[225.305588,572.154206,-100.103828],[220.821671,563.805268,-99.560325],[216.260208,565.085175,-96.309776],[195.875137,544.930512,-87.916175],[216.602097,560.798065,-97.319938],[219.941757,557.793793,-103.564903],[221.852707,553.673127,-107.592765],[221.332871,544.425812,-111.355401],[211.970688,539.011078,-107.039300],[215.759232,530.056244,-113.412835],[227.093552,537.323700,-117.651817],[237.687760,544.382965,-121.149116],[248.979416,567.315644,-119.440452],[257.068466,572.226532,-121.879295],[263.146896,581.391327,-121.509269],[256.230576,580.148041,-118.488746],[266.710312,590.362030,-119.779304],[254.344864,592.359833,-110.188424],[241.518051,586.118378,-105.690575],[246.025498,598.577179,-101.165459],[249.258896,606.612336,-97.867256],[240.810471,603.751923,-90.689811],[221.404434,599.448090,-73.133766],[226.550003,608.174652,-69.822075],[211.531235,596.989228,-62.526512],[220.022873,607.444733,-61.085716],[197.860092,581.252106,-62.599739],[190.840744,573.279389,-61.414924],[183.250351,566.081635,-58.312309],[188.736435,559.639374,-69.314918],[195.898422,562.944428,-75.571800],[196.896317,557.420258,-81.739587],[193.848801,570.511689,-67.914222],[234.224716,601.759430,-83.319770],[232.483261,602.441986,-81.154823],[237.279831,606.311493,-82.903541],[248.753830,613.978546,-88.455223],[254.500137,620.773102,-88.052605],[265.035477,634.043671,-88.662881],[278.558853,644.355744,-92.505500],[289.646530,663.367951,-84.401085],[296.564591,671.755951,-82.824791],[305.091782,673.081513,-90.991966],[313.134201,671.235382,-99.916267],[312.040909,668.715668,-100.716987],[313.418778,663.890656,-103.327981],[298.079941,652.832489,-99.508415],[297.879166,658.034638,-97.638374],[289.900009,653.488983,-94.717323],[288.819199,657.923065,-89.248619],[294.277634,652.043427,-97.598976],[280.661087,634.802582,-102.176429],[284.506577,633.084320,-106.588340],[283.475998,625.081879,-111.179084],[275.021347,614.145722,-112.578086],[276.374252,622.193695,-108.046486],[272.784317,626.253998,-102.684791],[296.988693,644.204071,-107.481620],[296.250229,640.381806,-109.761863],[311.959946,653.207978,-111.252938],[315.281876,651.914765,-113.862388],[304.001694,641.984467,-113.466987],[314.383438,645.362763,-116.958580],[305.905472,638.444611,-116.449670],[305.325760,632.171479,-119.121895],[294.763504,620.009308,-117.802238],[288.132401,616.670075,-116.657051],[281.533463,616.176972,-115.287727],[299.284531,635.557099,-114.512138],[291.836594,632.904267,-111.708366],[287.501877,624.616669,-113.907615],[298.130142,667.479218,-89.168510],[304.716995,658.415985,-100.578240],[279.129593,651.656098,-85.468941],[272.355148,640.211212,-90.197242],[268.768234,643.216889,-83.013725],[255.987229,634.545868,-77.447380],[253.496079,635.681305,-72.587089],[250.919907,636.121796,-68.171470],[240.158249,623.040802,-70.490746],[228.353989,613.209320,-66.116478],[236.169205,618.062653,-71.295860],[239.727646,627.027680,-64.094673],[252.834366,644.328888,-56.086265],[236.342209,629.931977,-45.783378],[247.188736,638.991547,-38.270317],[246.087937,636.626557,-33.381248],[237.955460,625.591767,-24.041160],[240.092087,625.616181,-21.758064],[238.280716,619.757294,-17.176674],[222.258072,604.850251,-12.390983],[213.390488,593.134125,-6.900689],[205.790848,584.444611,-3.585807],[242.819992,632.293549,-29.379966],[214.712875,606.710541,-24.024162],[212.705155,606.719635,-29.637199],[217.275375,611.571259,-33.741951],[213.612167,608.281037,-35.536857],[239.106888,632.523896,-43.565697],[239.242050,632.360077,-40.169090],[233.685349,627.240692,-47.803856],[242.911850,635.119232,-53.777427],[226.582718,620.035370,-48.799813],[231.622055,623.829193,-53.396766],[231.052963,621.998444,-56.578437],[231.225693,619.838898,-61.281501],[223.888840,613.551850,-58.109307],[243.781784,632.190827,-62.500664],[253.979233,643.226593,-61.596748],[244.370041,634.933930,-58.229973],[220.033371,610.363800,-22.341728],[221.571549,609.859284,-19.193626],[220.566177,606.419709,-15.256965],[230.688339,619.908722,-24.276680],[231.514664,616.986298,-18.705101],[228.147904,620.967133,-31.587883],[228.532608,622.552094,-38.738365],[232.868454,626.150421,-35.927528],[228.965531,620.445160,-28.280541],[239.816696,631.852631,-34.760643],[245.160568,637.786408,-51.528099],[256.657822,630.988739,-82.549340],[247.736649,615.600067,-86.003929],[270.671768,649.510529,-77.961006],[289.224411,666.383515,-80.353798],[269.499863,651.578705,-73.731193],[285.283615,668.248566,-72.124275],[288.663437,672.811982,-69.611702],[281.130051,668.640839,-60.448678],[274.519455,663.475739,-51.162071],[275.012009,662.321015,-42.887977],[258.112290,648.347382,-39.941780],[259.050217,647.881195,-36.150520],[253.096054,638.713349,-26.929039],[262.258988,641.519440,-24.813820],[269.818710,649.833405,-28.443046],[272.009720,654.406586,-31.784980],[284.414444,668.342011,-40.359810],[293.059891,672.346100,-38.571296],[288.014237,665.280548,-34.274345],[281.163284,658.926422,-31.529548],[278.501816,631.330597,-35.333091],[291.785782,644.284699,-39.242469],[296.438614,639.860993,-47.562797],[284.786484,627.001129,-45.330970],[299.023850,625.508149,-63.263711],[298.175369,623.293305,-64.440818],[307.759628,632.969940,-68.564811],[309.616257,635.136628,-67.479515],[306.133865,638.980866,-59.079704],[299.629715,634.414765,-55.904595],[300.368454,629.477387,-62.662117],[314.519974,636.302155,-74.391883],[315.434464,639.444550,-70.231742],[303.394058,632.218109,-62.504249],[316.780838,628.748932,-79.945304],[324.777725,627.178559,-86.518028],[332.917801,636.045685,-86.112831],[347.971787,641.382965,-94.917091],[347.382095,644.912812,-90.318185],[337.226151,637.263520,-88.591102],[326.945267,633.794648,-83.374183],[316.337448,635.673127,-76.078041],[347.485062,639.478669,-99.467674],[342.257584,635.699128,-98.264488],[337.515061,631.708832,-98.037284],[291.530319,639.438874,-42.581963],[289.489792,631.108368,-47.281120],[272.456680,615.464508,-41.313148],[277.831558,611.560822,-51.466163],[267.269302,620.063629,-32.258904],[267.337784,622.081818,-28.733467],[262.390579,619.889618,-25.881004],[260.564041,615.200836,-26.752128],[262.541489,610.292206,-35.030052],[261.246353,602.814789,-41.626030],[252.939285,597.582550,-36.023994],[243.494400,593.458466,-27.877525],[254.452744,607.691986,-28.817330],[258.495651,611.499726,-29.991844],[255.745316,616.379669,-23.148216],[248.203903,623.767182,-17.579476],[253.408890,633.560150,-21.876548],[242.603562,588.323273,-31.127433],[248.109360,589.379975,-37.212684],[254.600418,590.106354,-43.638038],[265.990708,627.827118,-26.067649],[275.522507,634.435273,-29.711738],[280.303909,634.938629,-33.292534],[271.198929,627.300629,-28.944679],[273.640335,626.386750,-33.681312],[261.545578,634.119843,-22.125938],[258.262100,633.981476,-21.423942],[256.927719,629.602021,-20.277565],[256.962326,623.001435,-22.112037],[265.239487,640.036469,-23.772042],[275.921860,645.178437,-27.156517],[273.581436,648.178315,-26.633263],[292.390366,628.622162,-53.018394],[285.503647,638.201081,-37.707696],[286.785782,642.276154,-34.698570],[285.211655,646.832550,-32.228660],[282.233505,638.773712,-32.672081],[292.471329,647.656525,-36.312980],[300.558212,651.954865,-42.331367],[280.754379,651.359772,-28.344032],[283.351242,657.061982,-30.152794],[290.188217,654.155182,-33.143455],[296.376846,657.052826,-36.174827],[290.294937,662.513459,-32.282905],[289.313156,659.090119,-31.641349],[303.099777,671.785797,-36.258964],[297.931778,670.258271,-35.417762],[302.240341,675.561554,-37.450187],[296.567246,665.155732,-34.152427],[301.405472,662.670746,-37.387794],[306.408188,671.080292,-37.666511],[280.585953,662.541901,-35.540474],[269.431778,640.850434,-24.834205],[257.631882,640.351776,-25.624778],[254.951431,642.775360,-31.285348],[245.895279,628.732697,-21.116676],[253.156510,645.572480,-47.283456],[263.646805,654.549958,-50.146629],[257.419113,649.191559,-52.896171],[270.729935,660.281830,-56.093605],[271.837937,660.461518,-61.003166],[274.542038,661.942108,-64.148903],[266.143784,656.128022,-46.187461],[251.979935,644.130036,-43.094185],[281.321915,662.838593,-74.469688],[297.403366,678.780732,-74.067741],[289.241715,674.640229,-65.684303],[301.781967,685.375458,-65.243446],[301.319779,685.246308,-62.202736],[297.429367,681.739533,-54.694358],[295.682083,679.616974,-50.257545],[266.864365,654.941437,-39.068855],[271.231003,657.450653,-37.163749],[277.945114,665.392365,-46.110130],[285.712326,672.562470,-54.027961],[281.852615,668.999115,-49.435402],[288.145554,674.598358,-58.388618],[292.220566,677.538056,-63.676933],[302.193375,682.646271,-44.411583],[301.057633,678.754914,-40.576011],[311.955368,688.973542,-45.234398],[328.346054,700.141510,-48.733757],[337.445603,709.415802,-55.432945],[337.554489,710.512787,-58.518913],[340.722733,713.304535,-62.047280],[350.191879,719.835480,-66.836906],[359.293991,725.747711,-70.033715],[368.696823,731.576508,-73.302987],[368.531235,731.759308,-78.038643],[377.946396,737.127838,-83.366142],[392.209732,744.843476,-85.766670],[395.804855,747.152680,-82.140190],[401.020462,749.595124,-78.893943],[387.124161,741.943695,-74.392738],[365.911514,728.783661,-65.354896],[356.808609,723.150238,-63.614067],[361.876175,721.772553,-57.070594],[366.107376,720.514557,-55.664848],[367.281693,718.875580,-55.668327],[366.746140,710.929718,-56.144172],[364.968796,713.612946,-55.609123],[351.714615,718.969635,-59.348335],[350.640671,716.568756,-56.156914],[345.826492,709.938080,-51.627511],[323.299851,693.831330,-45.345726],[334.486923,703.472565,-49.457862],[331.540390,703.965241,-51.352562],[331.167404,697.737702,-46.236367],[349.814713,706.558930,-50.493156],[356.227188,707.612274,-53.357124],[357.630051,713.004975,-53.029029],[360.659165,706.080048,-54.849937],[344.474899,702.437104,-48.800590],[344.643326,706.558503,-49.755500],[355.840988,714.802155,-53.238624],[358.984757,701.622773,-56.943931],[380.442307,738.619477,-78.078071],[295.591354,677.980866,-44.304344],[261.646774,645.574189,-70.744285],[261.946701,649.233673,-65.566125],[260.184952,650.160004,-59.974632],[270.407181,655.288117,-69.573326],[269.349289,656.503205,-65.566079],[248.396835,611.745575,-90.878654],[258.218033,617.618012,-96.685096],[263.617233,628.126740,-90.466133],[255.368637,625.955475,-86.354820],[276.475327,636.366242,-95.700813],[281.057999,641.650727,-94.982552],[289.024216,645.488495,-98.176567],[289.182510,651.094574,-95.643974],[269.041458,632.749359,-91.688087],[266.154953,624.029938,-98.640907],[252.021622,601.489533,-104.344993],[261.032272,614.874482,-101.817360],[261.303421,603.658417,-110.086891],[255.102280,595.853180,-109.892449],[280.469162,598.683991,-123.114524],[275.750870,589.235871,-124.421899],[295.807022,589.228669,-129.361747],[290.578903,590.201264,-128.595360],[308.047592,597.954926,-130.631706],[252.260880,596.199189,-108.023704],[234.219895,548.379547,-117.974846],[241.499558,550.273529,-121.393563],[234.525040,537.618866,-120.435783],[210.453690,556.056061,-94.342109],[208.272995,548.162812,-99.209283],[192.753220,537.163056,-92.073448],[188.708237,528.129486,-93.935966],[195.655319,542.721527,-89.997047],[202.842239,550.276581,-91.199913],[198.780960,539.138031,-96.370659],[213.145432,549.261566,-102.923545],[205.872208,538.883026,-102.371895],[161.206101,538.862336,10.517945],[95.392929,434.547821,-22.380561],[99.498886,442.728974,-25.167228],[95.677109,432.988251,-28.000175],[98.010361,427.518586,-1.787834],[88.568955,413.727021,-13.194023],[84.280075,405.531037,-16.355949],[84.209763,406.451020,-21.327416],[85.968063,410.936005,-25.857765],[84.835739,406.366547,-29.187294],[83.624802,398.931244,-31.978187],[81.898850,399.787445,-24.047539],[89.002060,406.830475,-3.841011],[92.251633,423.926422,-14.707496],[89.826035,421.241730,-23.126060],[88.633225,416.676911,-28.105217],[91.476364,420.495575,-32.063316],[96.116318,425.328339,-38.858787],[89.753525,413.398896,-34.974540],[95.881333,416.068756,-46.290841],[99.589279,427.567658,-44.923485],[101.831589,428.327729,-49.139274],[108.586166,436.313568,-56.021080],[107.555039,440.641815,-50.948723],[111.159775,444.056000,-55.080528],[116.280991,453.308075,-56.974556],[121.751389,468.448517,-54.323937],[127.893906,475.243256,-60.520698],[130.816269,486.446930,-56.926735],[136.316330,494.120026,-59.094505],[142.305344,498.727631,-63.853263],[150.458908,497.290131,-75.443733],[140.352951,492.918915,-65.990196],[132.854782,484.533051,-61.165046],[126.528122,469.998383,-61.833503],[122.471787,463.694123,-59.611931],[113.782272,453.538300,-52.346641],[110.075119,449.152130,-48.664650],[105.295151,439.281220,-47.273094],[103.675583,421.622284,-57.233407],[105.453964,420.364472,-60.787223],[100.403061,408.064057,-60.061577],[96.766708,398.759125,-59.189706],[89.551743,407.235077,-39.464027],[99.112351,419.770905,-50.116966],[95.944138,411.290558,-49.689445],[103.175339,426.477875,-53.152824],[86.212753,406.411469,-32.649925],[85.193833,398.126313,-36.090812],[89.302475,394.921601,-46.722129],[100.953781,402.829804,-64.102577],[98.062912,384.432465,-68.796653],[102.107346,384.245880,-74.383018],[102.062973,375.747040,-77.270988],[108.522141,371.218720,-85.922753],[94.427414,369.159088,-69.216728],[95.606796,385.186615,-64.709023],[88.085251,378.624115,-54.174400],[93.961533,389.271332,-59.626487],[91.198837,369.682099,-64.014686],[95.632797,430.410065,-11.071418],[131.466416,504.102082,7.268799],[133.689926,505.167389,9.768120],[130.309738,494.876923,13.046669],[139.436875,509.034455,13.510582],[160.717209,523.780915,15.798996],[174.017624,540.199005,10.879174],[215.514847,567.268280,-8.518135],[217.541428,567.928559,-11.148536],[226.324936,577.202423,-17.532737],[220.025711,573.817292,-10.039329],[212.484879,567.529206,-6.710258],[204.939957,558.490021,-3.630493],[198.795609,556.855378,-1.463951],[207.983231,567.457367,-5.194191],[214.144150,573.358734,-7.623268],[220.157303,582.033234,-9.457344],[224.947983,585.572785,-11.564033],[229.663254,584.430268,-13.584190],[234.145126,590.325714,-15.224876],[236.008591,596.856171,-15.461494],[240.413925,596.924591,-18.120979],[247.804367,604.549469,-20.966896],[241.155594,602.887787,-17.288276],[235.282486,602.061188,-13.154091],[230.623154,591.529023,-13.345420],[224.492050,592.177887,-9.092979],[218.568802,591.691437,-5.457428],[204.485214,577.136444,-0.707939],[238.866013,592.704926,-19.329430],[245.390091,598.948456,-25.835731],[241.747452,594.389862,-22.841865],[243.108017,597.940644,-20.491844],[225.124649,579.173554,-12.021141],[228.932785,575.702423,-22.867592],[221.333969,565.395600,-21.904136],[216.431625,563.213776,-16.903633],[214.946976,555.330902,-22.329185],[212.593216,548.741303,-26.777153],[217.289414,553.827057,-28.259437],[224.035385,554.539704,-37.047203],[236.644272,564.881317,-45.754127],[234.910507,567.608673,-41.263588],[229.546555,557.597931,-41.582328],[229.391861,567.329560,-33.689170],[221.505325,556.397003,-31.927528],[221.712265,560.787812,-27.516762],[230.565598,582.767243,-16.121849],[219.326889,569.460236,-15.029731],[211.577683,584.153412,-2.693206],[216.751328,592.551056,-5.511940],[222.739517,598.793183,-7.662330],[253.569473,573.193390,-61.060478],[260.519699,571.502045,-70.290855],[260.209885,567.222443,-72.637428],[250.804672,562.008393,-65.886741],[253.687363,559.573822,-75.667579],[260.503677,558.415375,-80.228904],[262.999924,552.349091,-84.594108],[269.357224,551.362519,-90.474968],[274.716049,557.036042,-91.800331],[286.966690,561.191742,-101.141487],[281.688034,538.572235,-108.207069],[282.983841,532.631501,-112.426018],[287.484726,530.440277,-116.825966],[291.716416,529.932282,-120.806282],[299.334763,529.261566,-128.804695],[289.800247,520.508210,-133.763511],[285.209091,526.181244,-140.852317],[292.891068,542.932831,-140.301079],[291.739151,548.631684,-139.153923],[279.793930,549.769135,-136.866722],[285.278580,551.316803,-137.611443],[278.670334,559.430024,-132.716941],[268.815140,555.274567,-131.009423],[274.720261,554.406647,-133.667854],[258.665634,544.328278,-131.529854],[252.466934,532.434357,-132.512886],[250.131760,539.786713,-129.104073],[260.414932,549.654877,-129.823265],[268.655716,545.797333,-134.801567],[270.495285,535.601105,-137.893608],[267.085983,524.833588,-138.385399],[264.122482,515.684723,-138.363091],[256.025925,506.786957,-136.533470],[251.655930,497.686920,-129.247566],[256.660904,499.561737,-128.031471],[260.711899,504.426361,-120.568535],[250.596329,498.286286,-113.836158],[244.113236,496.615876,-105.495217],[239.176804,488.069001,-107.606681],[233.103836,484.551056,-110.563011],[226.289658,481.754731,-111.800545],[198.368759,478.645722,-113.883186],[189.995529,473.935334,-110.050087],[181.736954,472.842438,-107.952049],[191.865738,464.507904,-112.656242],[195.413193,459.070526,-116.635398],[227.459335,457.425751,-114.091774],[227.482224,461.302338,-103.342842],[219.439591,463.181366,-108.290687],[222.302048,463.722199,-105.523826],[220.184555,467.342560,-105.964562],[212.039047,466.044770,-109.872566],[207.397019,469.464753,-110.625619],[218.362229,480.415985,-114.746711],[213.317398,475.257233,-112.167839],[211.724106,481.246064,-117.458564],[208.160507,476.239167,-113.610588],[201.770279,473.660370,-111.885688],[201.581101,469.304169,-110.629921],[206.342514,466.678681,-111.519218],[212.841568,463.543305,-114.728889],[213.909866,460.696991,-117.540414],[219.610336,461.428009,-113.705192],[226.703995,486.181427,-119.812965],[233.995438,486.416230,-114.518364],[239.483322,489.048371,-111.628730],[240.610245,490.556732,-119.044380],[250.071060,496.327362,-117.251365],[252.977280,497.607514,-121.517006],[248.273575,494.593781,-122.076576],[275.562882,511.300263,-131.576439],[273.453598,520.276642,-115.121482],[283.743576,524.045990,-120.336998],[293.592239,527.384796,-124.739937],[256.309219,510.056183,-106.981285],[258.658798,505.129486,-115.805854],[253.529739,506.922577,-106.877251],[243.790085,491.972321,-102.838371],[244.102066,496.776276,-102.496696],[241.244949,491.150360,-109.153176],[289.118271,522.309784,-128.187599],[274.773819,512.851288,-126.536827],[273.910294,514.642121,-121.944023],[277.593399,553.555573,-96.351341],[249.523636,544.284027,-78.140800],[244.302292,533.494782,-78.625892],[235.213669,536.702790,-70.244819],[213.194748,519.354706,-60.486581],[209.590561,517.139740,-55.430503],[209.727524,509.793854,-62.160942],[202.163773,505.156342,-57.461021],[209.051682,505.161652,-63.149361],[211.127670,500.539582,-64.549797],[214.877670,504.285065,-66.064797],[216.725815,525.774628,-57.197898],[221.390427,537.774140,-50.974876],[233.703049,548.806000,-57.253730],[226.426407,551.759308,-45.743950],[218.458725,543.934357,-42.714776],[211.691879,537.120148,-40.677848],[203.682785,531.120758,-31.366584],[196.520706,523.607392,-28.660850],[194.905838,525.221161,-20.275764],[198.289871,532.916352,-20.206291],[195.889023,528.994477,-18.580543],[197.410355,526.862824,-15.913002],[200.813522,529.014679,-8.979103],[201.923081,530.990448,-2.270767],[199.406021,526.919159,-3.497947],[201.033676,526.056366,-9.822715],[196.461289,521.062653,-8.670326],[200.045761,524.391266,-12.103889],[195.375687,520.045258,-13.170845],[193.549271,517.937226,-18.169777],[196.448441,522.699982,-17.205376],[220.791947,532.292511,-57.935661],[219.438126,525.288239,-63.189918],[226.025406,539.198395,-57.045417],[232.525284,544.282502,-60.918160],[248.300858,552.284760,-74.705909],[255.297226,546.133881,-81.588768],[251.787430,559.284149,-71.434532],[248.404892,568.295075,-58.439949],[250.075882,556.575043,-73.839135],[242.368485,549.152314,-70.738732],[222.844162,529.014374,-62.974571],[230.481705,532.925873,-67.120689],[235.422379,540.426117,-67.965568],[227.206589,535.695832,-62.317314],[239.030838,532.293427,-74.536354],[239.470993,525.961396,-77.770973],[245.652451,520.093537,-86.194099],[242.239395,515.918244,-81.509956],[250.330673,507.846711,-81.704690],[245.117478,504.446991,-79.628044],[237.290726,506.100312,-75.801994],[246.744766,498.270111,-82.857124],[246.385147,494.544525,-82.228416],[249.511337,488.597809,-96.907188],[247.520035,480.458222,-93.850532],[246.850083,475.419953,-90.722634],[242.774368,471.632294,-89.931205],[236.941422,466.331208,-95.568718],[232.089829,457.956574,-105.826607],[234.199234,456.141266,-97.307014],[240.573502,452.090058,-98.433082],[246.962235,444.998322,-106.184028],[248.810959,440.860199,-105.319176],[244.946823,442.622101,-111.440132],[245.956131,436.277191,-111.261879],[246.818863,430.536530,-108.519874],[243.685501,425.420197,-110.440422],[239.501419,423.001740,-112.343147],[219.255661,409.876618,-111.933144],[219.405625,403.859162,-112.330849],[220.485886,401.228180,-109.976402],[224.343704,394.020172,-112.295631],[219.315445,387.540680,-112.269661],[214.637467,382.978607,-111.598962],[221.051682,381.559479,-116.121742],[216.171280,377.319001,-116.074272],[206.407028,380.290680,-108.720466],[208.366989,387.316498,-107.027154],[205.244553,391.404572,-104.607475],[212.317459,392.393280,-107.776313],[210.991715,403.820954,-104.592950],[218.905350,409.073273,-107.885124],[226.304855,412.360077,-106.631065],[234.306778,417.090302,-110.240624],[232.542618,415.442658,-107.721626],[237.583084,422.992768,-105.025154],[237.842911,419.207245,-106.464943],[248.365616,435.889435,-103.308113],[248.398972,440.269684,-101.122856],[246.770187,434.964875,-102.115883],[244.739060,429.573151,-104.323616],[237.996506,431.881928,-100.050896],[228.138779,425.036469,-100.481376],[221.952133,419.934967,-100.781517],[219.479782,416.070710,-100.456887],[220.803482,412.731293,-103.642204],[231.208206,417.705902,-104.616265],[219.093308,409.789643,-104.515389],[232.382919,421.242218,-104.441444],[240.236374,420.374359,-108.006324],[223.772537,412.485382,-113.044029],[213.323929,398.448944,-107.281135],[216.557846,405.130646,-107.582450],[201.219681,377.669953,-107.908288],[194.140213,380.143586,-101.872902],[179.787064,389.514679,-89.319603],[175.701767,387.268463,-87.204460],[182.339462,386.519440,-92.091392],[176.397080,379.290680,-91.146553],[192.503189,369.389984,-105.991829],[199.874863,365.379608,-112.280846],[196.753830,362.687409,-112.221534],[193.460281,360.975800,-112.696541],[186.553391,372.875214,-101.030525],[186.899552,365.657685,-104.152581],[204.712448,372.161103,-112.896920],[198.908249,375.054108,-107.458488],[205.346390,366.918610,-116.506309],[243.285507,432.297577,-113.204095],[242.592728,438.356476,-114.529609],[237.016464,438.573090,-118.344201],[233.147629,440.400544,-120.232154],[216.044479,430.783478,-124.454658],[192.331070,423.644562,-124.294868],[191.676468,430.576813,-123.412437],[198.090988,437.272675,-123.337181],[207.228745,446.931366,-122.500283],[206.265061,456.522431,-119.491006],[214.607315,443.544770,-123.981315],[212.732254,434.547455,-124.650948],[227.087296,442.244232,-122.159614],[222.528061,457.743683,-117.227378],[227.068192,451.335297,-119.482963],[236.873917,449.615326,-115.643882],[237.509720,452.159699,-112.154106],[236.054398,445.853241,-118.073356],[208.836655,440.972931,-123.967873],[197.815170,431.389191,-124.082878],[207.927170,437.145844,-124.352775],[225.338852,447.960114,-121.250480],[219.784287,442.307160,-123.785881],[218.303360,453.235443,-121.084801],[213.375260,454.015107,-121.027549],[236.803208,430.798981,-117.308723],[248.610916,436.109345,-105.711677],[245.151962,426.986359,-107.325616],[230.206589,448.640534,-94.200691],[225.645493,451.811554,-91.058098],[231.693283,465.285248,-86.677894],[240.683579,468.670502,-92.256950],[232.192734,453.874543,-94.940483],[228.833267,461.900360,-98.877372],[230.426468,460.119843,-96.364846],[227.850968,459.887909,-91.963966],[229.895554,456.201935,-91.927803],[226.080765,464.820710,-102.382531],[229.690354,464.826630,-99.885232],[240.068924,475.680817,-101.954155],[228.069321,475.342926,-107.455254],[223.878708,478.667084,-110.422753],[241.453415,470.222016,-96.030479],[225.681687,466.779755,-103.788749],[236.025314,468.583039,-100.232490],[241.437332,472.403229,-98.633217],[246.497452,488.457367,-101.536750],[240.170456,485.147248,-105.530450],[252.460190,501.473481,-84.211570],[255.639511,539.127655,-85.897972],[258.211655,529.871979,-95.204628],[262.690903,531.640656,-100.140053],[246.861893,512.963837,-92.981422],[245.082321,516.762116,-86.770988],[269.755417,546.443940,-94.057107],[276.945175,543.460419,-103.420341],[268.035233,535.379975,-102.003243],[268.979904,528.016999,-105.926751],[262.414169,522.296357,-103.825340],[259.037033,520.300324,-102.211784],[247.910874,511.284577,-96.148674],[254.246292,517.258210,-99.641883],[249.432694,516.061982,-94.721688],[254.718948,525.963532,-94.995414],[246.090561,505.277680,-97.278222],[245.929825,502.011383,-102.087730],[247.182236,499.043915,-97.983116],[251.307907,497.511750,-95.393226],[252.592636,496.417328,-93.750373],[254.494461,504.621613,-86.098823],[254.905747,501.095795,-88.670356],[253.025192,497.224396,-87.219123],[254.093826,503.617524,-90.999656],[253.895126,507.892060,-87.421394],[246.826401,510.880219,-81.414817],[246.136490,513.836457,-85.718025],[247.466110,511.609528,-91.128135],[261.661057,513.447785,-109.354469],[257.083634,525.584503,-99.023399],[275.517502,524.616791,-112.605446],[268.698441,515.768891,-114.148262],[270.255142,522.946015,-109.746040],[275.164230,535.007782,-105.953300],[291.557480,550.222504,-108.602256],[289.174149,556.566559,-105.243400],[291.045517,557.991059,-105.828392],[311.960098,561.040253,-112.686088],[318.102158,565.965180,-117.290519],[320.250870,562.195954,-117.670448],[318.331345,553.921662,-120.982536],[310.816147,546.700470,-121.399559],[300.342667,538.861969,-119.211602],[299.515793,535.935211,-120.631645],[300.578293,545.506806,-115.826896],[293.054672,546.488983,-110.891487],[289.364945,536.911896,-113.670830],[315.920975,548.589447,-124.020942],[320.281571,554.726654,-123.969871],[313.145462,541.333466,-129.156715],[317.666672,548.435883,-126.438102],[310.464279,541.854950,-124.257011],[303.370499,535.650605,-124.505622],[287.133072,522.808930,-139.561760],[288.849655,520.394379,-136.697228],[297.140549,525.680085,-134.907859],[307.204117,535.772431,-129.128990],[312.191818,568.496979,-121.465660],[314.388931,568.624237,-114.469123],[317.049973,565.980133,-114.843635],[311.242966,565.448395,-111.647942],[310.244339,567.726044,-111.396385],[303.977646,565.316071,-109.559806],[304.957504,562.425751,-110.043206],[320.872299,561.335846,-120.045463],[315.320725,555.231720,-117.674141],[276.948410,549.484101,-99.118232],[281.366928,547.633820,-104.445243],[322.024948,621.596344,-90.726204],[332.231125,628.005951,-96.999107],[316.572952,623.097931,-83.185981],[307.223831,621.915192,-77.035545],[305.562943,626.069489,-73.359550],[305.744064,629.545319,-69.379219],[306.236374,628.143891,-72.437782],[297.430344,619.339081,-70.523872],[279.245621,606.320649,-59.679435],[324.670029,624.072541,-89.313164],[337.280106,633.296967,-92.900520],[329.579880,626.413544,-92.537223],[330.782669,628.495453,-91.221595],[339.126755,613.676544,-110.562416],[336.825058,607.426606,-114.064094],[323.785660,591.893891,-121.451484],[330.972427,608.752411,-107.499092],[328.600052,599.863678,-113.180503],[327.758041,602.835968,-109.527397],[317.836411,603.659394,-102.079277],[313.839432,608.989777,-97.156135],[304.215164,590.294403,-100.185188],[306.263992,595.903351,-97.994514],[309.826309,585.806488,-106.856880],[302.820450,586.879792,-100.471061],[293.011673,576.434479,-97.525749],[286.043900,571.122345,-93.917274],[281.265732,568.824494,-91.208671],[280.397812,562.335602,-93.418449],[276.348435,564.310456,-88.889747],[257.693466,562.802338,-77.155250],[266.670639,561.776825,-82.988121],[267.864578,556.204621,-87.114159],[316.658524,617.094025,-88.237754],[307.650925,613.399018,-82.924813],[309.421341,603.273468,-97.080787],[317.322159,598.241669,-105.442498],[317.798660,594.621979,-107.772133],[314.610336,587.795563,-110.216241],[318.366013,588.636017,-113.678474],[330.939072,599.856354,-115.856225],[324.243637,595.496613,-112.573494],[309.379196,581.149506,-111.256858],[305.919479,575.197663,-114.893059],[311.005417,580.720612,-114.894463],[310.859604,579.834565,-118.714699],[319.897751,588.104706,-120.227409],[322.825882,591.374604,-116.741219],[327.732956,654.341095,-67.195564],[311.562576,646.813263,-56.958717],[322.034561,654.274689,-60.842827],[326.626450,661.968598,-58.107154],[323.588425,672.781586,-49.047187],[331.017990,678.952912,-50.660789],[340.955490,678.610810,-57.502098],[343.213364,674.822357,-61.647469],[362.295395,690.524384,-64.773597],[343.483292,686.659149,-55.118904],[350.286484,694.604462,-55.255882],[332.806656,676.835480,-53.273033],[333.878189,671.180695,-56.812584],[339.552567,668.775482,-63.497062],[345.198349,669.691864,-68.022453],[347.852738,667.070038,-74.207557],[355.629868,667.877594,-82.233238],[366.403336,670.114350,-86.941063],[371.492203,667.118561,-91.912498],[375.906448,673.767426,-90.341957],[381.373215,675.703766,-92.212684],[389.602646,678.243256,-96.554665],[396.706070,681.452790,-105.173318],[346.935227,673.707550,-66.346519],[357.169998,671.146088,-78.752662],[360.846909,670.711212,-83.390632],[368.268631,677.519867,-83.581550],[361.192337,675.068390,-77.817588],[374.314011,680.414887,-86.556175],[381.520310,686.706452,-86.344673],[388.685227,691.016815,-87.835304],[394.671738,693.562226,-89.970070],[390.318558,703.057099,-76.222129],[389.121170,698.984528,-78.359336],[377.875900,705.688996,-65.234093],[379.405808,716.913666,-61.610771],[398.263382,700.896576,-83.927605],[398.362839,703.802887,-81.766777],[380.579483,710.889191,-64.059211],[393.186447,708.193085,-73.542305],[387.249313,705.825104,-71.334694],[404.116440,698.751801,-91.773857],[394.900192,687.389191,-93.348580],[392.415787,683.268463,-94.687173],[394.593826,682.575409,-97.430122],[384.389908,680.176972,-91.425148],[367.919052,675.370270,-85.395500],[351.769577,669.139069,-75.181282],[314.443466,641.158478,-66.832145],[324.033341,647.698944,-70.434959],[356.182114,693.147553,-59.323296],[350.830277,682.896210,-61.562919],[345.311203,681.845856,-58.344337],[370.343826,717.383332,-57.273033],[374.795303,724.177094,-57.755898],[383.398880,722.184967,-60.655006],[367.503098,703.918000,-60.320259],[360.212052,698.891388,-58.817466],[381.396134,702.271698,-69.696022],[369.408280,693.720124,-67.672874],[382.375809,689.594574,-81.751228],[390.552933,696.242340,-83.084251],[379.783493,695.185395,-74.285972],[373.689652,684.873871,-79.624824],[376.679916,689.475312,-77.190239],[378.567398,730.882416,-60.240487],[389.295059,736.925080,-62.554176],[396.176163,736.722626,-62.705772],[414.434311,738.885895,-69.423913],[450.240448,769.481781,-85.835411],[454.622528,769.551483,-86.479622],[463.180847,763.754059,-87.295341],[464.028290,761.348297,-85.110801],[455.678665,754.770844,-79.949730],[445.020981,749.612885,-78.225426],[447.929947,755.864350,-76.339653],[438.299713,754.336579,-73.413887],[443.628830,760.395844,-72.864570],[450.065094,764.196320,-74.995308],[442.902680,763.992585,-74.858818],[452.636475,768.405182,-79.738700],[457.264557,767.661835,-80.561851],[461.000626,763.025238,-80.246132],[457.346649,763.300263,-77.475181],[452.427597,762.291230,-75.186638],[455.895447,765.800324,-77.699501],[445.787232,767.680024,-80.100135],[460.700363,766.471955,-82.560737],[434.395676,757.125824,-71.096138],[424.390640,753.199677,-68.899955],[420.451096,747.285248,-68.224266],[433.672440,759.302338,-71.922264],[434.865173,763.008942,-76.314033],[425.417404,756.614533,-71.105781],[412.799790,753.819428,-73.828285],[418.029312,752.173737,-68.641426],[418.903488,755.062287,-71.857353],[413.418320,750.479706,-68.136711],[404.235428,743.814240,-64.947227],[406.043533,739.086945,-65.103492],[392.491684,741.470917,-66.117469],[415.079605,747.449982,-66.824104],[409.922409,745.508881,-65.706277],[412.606094,742.159272,-66.768470],[398.383530,742.978974,-65.417260],[434.815903,764.392243,-80.486626],[419.115524,758.114411,-84.246940],[417.395554,756.919525,-79.133491],[441.035050,763.873932,-97.429725],[448.042847,729.192597,-94.512992],[448.208084,730.755463,-92.121269],[449.754852,739.176544,-86.187905],[458.357010,744.687348,-88.026069],[449.334076,730.563629,-98.496147],[435.908157,717.920197,-107.027672],[437.616196,723.617890,-109.193626],[428.573807,724.503937,-110.471306],[426.852249,726.007050,-110.755973],[420.172592,726.284760,-112.056785],[413.583756,724.239899,-112.513711],[407.198074,721.815522,-112.494148],[410.390762,729.380402,-110.797767],[419.325577,736.709870,-109.554695],[426.487442,747.420685,-106.321282],[434.979920,756.956757,-102.607598],[448.701935,762.807953,-100.587562],[437.865982,719.378510,-96.879692],[437.900238,719.211884,-103.965583],[420.488693,708.411835,-112.982934],[412.491043,696.858673,-111.218544],[423.578812,705.871613,-101.572578],[428.824112,711.018097,-98.824455],[430.645004,714.486847,-94.781456],[429.911423,719.725495,-90.625938],[422.085739,722.356537,-82.584114],[416.994553,703.259857,-95.519432],[411.255112,707.381195,-89.555549],[403.210190,687.936005,-102.745887],[422.749710,706.649079,-96.618263],[409.765946,697.215485,-96.067451],[426.593521,721.301483,-86.345298],[435.390061,731.568024,-84.202400],[434.876984,742.134003,-77.533516],[439.703995,738.048188,-81.705436],[444.251526,732.882416,-87.833442],[439.014649,727.236298,-89.500297],[422.689804,705.805451,-110.031701],[400.325211,713.431855,-112.465172],[399.633743,714.912140,-112.154122],[411.783432,718.235199,-112.282647],[417.120529,715.552277,-114.143272],[367.643021,703.790802,-109.787559],[374.805435,702.602082,-110.308999],[382.528397,705.045258,-111.784935],[378.598984,698.426117,-114.895820],[367.386215,686.830963,-117.541648],[349.685623,673.031464,-118.303093],[355.534500,678.674103,-117.784904],[343.331223,679.572602,-112.635383],[350.581619,679.810089,-115.892541],[366.797592,690.365692,-115.748437],[352.927994,684.917450,-113.768531],[344.975357,686.019074,-107.706825],[364.226395,691.566681,-113.996940],[337.368454,682.771637,-105.794198],[335.198502,685.894440,-104.734077],[383.273789,698.371369,-116.214485],[321.567795,670.621369,-104.015557],[336.486801,678.367890,-108.875633],[325.896256,664.094269,-112.819649],[337.413345,671.454560,-114.941216],[345.654801,666.459442,-119.364112],[340.640854,655.986420,-121.027778],[342.079788,653.939606,-121.302406],[353.610733,663.020661,-120.337700],[349.481125,655.776154,-120.372704],[360.822403,658.499054,-118.355735],[363.529282,657.843476,-116.940330],[360.382523,648.889191,-112.329551],[365.861221,653.426361,-104.537132],[357.960831,659.308014,-88.505058],[366.068985,660.502472,-93.537651],[362.448624,664.629853,-87.363121],[364.767624,657.585053,-94.631294],[344.961929,660.143708,-79.872413],[350.136948,662.293122,-81.734123],[361.619644,652.404694,-98.198524],[359.852524,645.551911,-108.365074],[358.466568,649.401276,-114.664941],[360.484024,648.083161,-106.730644],[355.683670,650.165680,-116.656288],[350.240341,649.262482,-118.415321],[341.813248,650.307343,-121.227806],[350.903946,652.387909,-119.372886],[358.312180,644.486359,-105.308326],[361.764267,636.944306,-109.202080],[354.806717,642.035858,-102.402717],[358.535690,676.432221,-119.063743],[352.263840,668.220124,-119.860649],[362.283554,670.091339,-120.376075],[372.480362,671.145722,-118.852089],[388.607529,678.920929,-115.859947],[387.481033,673.346711,-112.140113],[367.946518,678.443024,-119.867057],[377.889084,689.841400,-118.181266],[379.600510,686.009369,-119.228860],[387.597427,689.313690,-118.535637],[395.511002,695.395294,-117.566063],[383.985123,680.133637,-118.151894],[382.208786,682.513336,-119.103080],[375.248764,678.252411,-119.859947],[395.530808,710.075043,-112.967582],[353.751938,665.886078,-120.204795],[366.075546,669.027619,-119.802620],[357.762863,662.618317,-119.937278],[331.692856,650.252289,-120.945655],[362.384384,639.547272,-109.244866],[358.747208,641.063996,-119.956291],[353.812393,633.446015,-126.942222],[349.291428,638.516754,-126.902413],[345.157028,634.936249,-129.007790],[337.306046,622.075775,-130.979287],[345.371811,638.531647,-127.016365],[350.864090,642.829377,-122.964103],[354.985001,641.644074,-122.617653],[361.854019,640.109528,-115.154930],[299.207871,575.055085,-124.969566],[307.473526,570.251129,-121.990776],[303.041947,571.960114,-123.430534],[298.174667,566.392060,-132.056144],[310.190598,555.256562,-134.339347],[313.264938,562.190766,-128.127311],[304.644333,562.452545,-132.801078],[304.570175,567.963410,-128.461052],[302.525833,576.223053,-123.807212],[305.592697,579.905426,-125.205604],[310.766831,588.968476,-128.565102],[313.139938,586.128083,-125.685691],[326.737259,601.543854,-128.279304],[351.018021,620.500336,-119.589805],[352.971329,623.265351,-115.633217],[346.273483,619.171234,-111.839683],[358.513321,639.129059,-105.615730],[357.655014,631.469696,-111.495140],[346.869400,623.267731,-109.943017],[320.512406,594.576630,-127.452186],[304.560684,586.149018,-129.042092],[293.692856,577.991547,-127.638589],[211.547897,522.283173,-111.872886],[199.875931,515.328095,-106.761299],[193.892380,502.246064,-109.133628],[157.630966,463.991974,-95.325051],[180.879349,461.749115,-111.007958],[168.121140,442.792633,-112.148613],[164.716354,426.728730,-115.060691],[168.714523,453.198151,-109.315681],[161.537827,454.576142,-104.195991],[172.391770,459.592743,-108.343666],[150.709763,464.080780,-89.385719],[150.877365,476.384308,-86.917030],[177.645126,392.960785,-127.633217],[187.054855,397.658295,-130.173622],[185.512497,405.554962,-127.629341],[191.535721,404.915924,-128.872491],[194.727768,418.220246,-123.904900],[200.466965,416.324311,-123.906060],[207.154068,412.218964,-122.166573],[214.917893,404.129059,-122.375924],[219.544846,401.303131,-119.068779],[221.760513,394.661835,-122.884164],[215.891129,396.013642,-127.113427],[213.797012,390.046967,-129.709343],[208.200699,391.559906,-132.159248],[190.057633,400.284760,-130.120690],[186.634201,389.212860,-131.158821],[192.655838,391.360993,-132.265800],[199.514114,389.452729,-133.057152],[202.674423,383.728852,-133.102318],[198.929215,394.847138,-132.283317],[221.591171,389.401886,-124.859474],[226.162521,391.567414,-116.675697],[224.152481,396.573517,-114.181373],[216.062241,411.251374,-115.951393],[225.584641,417.480744,-116.293206],[232.450394,420.487030,-114.966622],[231.799484,433.708283,-120.570168],[218.035599,406.669464,-110.791710],[225.477707,388.171173,-115.712334],[223.963364,383.017670,-118.987632],[219.635544,384.038483,-125.864097],[225.391831,388.446625,-120.425560],[222.666275,382.692353,-122.442436],[220.449875,378.120026,-121.327598],[218.448685,375.889984,-118.968788],[210.059769,370.449921,-117.673454],[214.776779,409.314972,-117.004189],[207.903610,414.424530,-121.142952],[203.031143,418.926056,-124.067649],[196.919785,422.195587,-124.512107],[212.421219,413.015534,-118.681725],[216.662033,399.440644,-124.730568],[177.587875,409.923004,-124.186973],[183.905991,419.060639,-122.408974],[176.428879,420.616669,-120.145378],[175.371323,425.009857,-120.005531],[184.854080,434.032379,-120.887153],[184.412613,424.226349,-122.715995],[206.689804,381.374115,-132.209358],[186.470383,354.787323,-105.968406],[185.051682,347.023957,-105.084938],[193.170639,336.738068,-109.746804],[195.776169,340.280609,-114.949531],[190.530747,329.359223,-117.076896],[186.936691,333.916169,-121.678352],[173.189865,334.560944,-124.638252],[166.999680,351.339081,-126.240379],[165.820908,345.766510,-125.963478],[163.438339,356.889496,-124.747902],[171.174973,361.056122,-125.952613],[177.738388,339.684113,-125.673973],[182.706925,341.011200,-124.755500],[186.581467,343.718476,-123.708382],[179.761490,347.628937,-126.165062],[175.470932,357.912079,-126.548653],[172.060410,351.071564,-127.098014],[193.036942,333.711212,-118.229774],[191.221085,343.482819,-119.925637],[190.338852,352.028229,-119.499946],[183.676651,356.606720,-123.574867],[192.051621,360.743805,-117.243675],[191.413254,357.432404,-115.685051],[194.861344,350.660981,-114.078910],[195.054459,345.916840,-115.108604],[195.486313,345.628998,-112.765983],[194.099350,352.065949,-111.247261],[191.636246,345.821015,-109.255653],[194.331772,341.722199,-111.260521],[186.199967,350.238190,-105.413108],[192.603104,356.536896,-113.449456],[187.464798,349.724701,-122.475258],[186.961472,358.494660,-120.301124],[189.683426,362.363739,-120.742027],[184.226914,364.789093,-123.869057],[194.802536,365.444550,-125.181130],[200.296890,367.443878,-126.301262],[207.691788,369.540680,-125.508583],[204.299973,373.612091,-130.540123],[209.347458,376.180329,-130.138130],[192.290360,369.971894,-128.921653],[197.030716,369.215851,-128.528222],[173.939621,367.447052,-124.511147],[170.151840,369.114716,-123.685066],[178.027817,363.918671,-124.710442],[179.580765,366.530304,-124.870308],[186.754929,361.354523,-120.735131],[200.184921,364.099762,-120.794502],[209.838852,369.045441,-121.499200],[213.458847,374.002045,-126.095008],[185.479965,358.301789,-104.782234],[192.053299,355.885041,-108.726493],[192.110092,359.359162,-110.381340],[182.913651,364.951691,-102.575798],[179.510300,354.008271,-101.319114],[175.640366,346.006867,-100.750283],[180.967819,335.597809,-103.611000],[180.454117,322.664032,-104.806358],[177.895249,318.289704,-101.154168],[182.651322,315.281800,-97.326729],[184.776383,308.466614,-94.340690],[181.468979,297.463684,-96.878884],[180.360214,303.276154,-106.106666],[172.472458,311.014771,-110.543465],[169.837387,314.427643,-111.919517],[163.413315,313.960480,-115.807014],[161.348496,318.468598,-116.499642],[161.107407,327.288849,-120.399940],[166.624924,331.268647,-123.109367],[183.857529,326.654023,-117.764030],[178.151108,320.969025,-112.287545],[176.122360,319.204438,-108.928733],[189.575821,326.888459,-108.210197],[192.183090,328.000153,-112.536369],[195.688889,331.827484,-113.164132],[193.562485,329.621857,-110.349128],[189.628555,330.410797,-107.877357],[180.239792,330.186432,-103.720147],[184.558365,340.698334,-105.433128],[190.437973,333.728180,-108.782006],[195.876267,336.237946,-112.230110],[162.585556,324.415924,-119.178338],[162.968125,321.713410,-117.448951],[172.971420,324.698700,-118.426338],[175.763779,322.896454,-116.297523],[182.408829,305.975647,-101.527290],[184.035507,298.720093,-102.211129],[184.562363,295.785034,-100.238305],[180.774674,303.542328,-96.559715],[181.220505,308.741181,-98.368385],[180.236923,312.975006,-99.648506],[174.931931,315.949250,-107.424904],[179.679306,311.888367,-102.400108],[177.860153,320.010041,-103.484962],[168.982224,319.510895,-113.943092],[172.910812,318.150177,-110.749932],[174.269211,358.801667,-97.482917],[168.281723,393.699921,-78.795890],[141.420334,437.473725,-30.672996],[137.520737,441.127961,-24.855262],[140.255905,429.510895,-33.294548],[143.970871,421.678681,-40.826820],[147.675461,431.130646,-39.177253],[148.128830,439.007294,-35.634742],[160.580063,443.263764,-44.546058],[162.683457,437.749787,-45.593834],[169.161240,427.486542,-55.708824],[165.613693,422.766938,-62.761100],[164.306259,419.163361,-63.439706],[168.171433,430.303192,-66.319176],[165.763229,435.771088,-64.319450],[166.138352,428.990387,-62.492806],[165.353439,438.990021,-60.191749],[164.866867,438.467743,-58.587471],[163.771347,444.951203,-53.173942],[165.603684,446.733368,-55.012413],[166.219528,442.160065,-48.798088],[151.275131,441.173127,-37.828057],[167.332321,440.628144,-51.381401],[169.462570,433.754914,-53.785866],[166.178269,433.863495,-58.518608],[166.536118,426.896454,-60.954644],[155.122360,433.327362,-43.020042],[164.485825,422.601837,-53.517067],[155.788620,418.878998,-50.405143],[155.132492,423.557953,-47.280616],[151.287949,437.725861,-39.159447],[134.179916,431.662934,-24.540977],[134.987656,416.088837,-35.456977],[127.200424,399.758454,-34.396476],[138.691940,391.462921,-46.742317],[147.267746,386.166169,-52.505455],[149.066574,384.834320,-54.636451],[146.320847,384.375885,-59.762687],[149.506149,388.514374,-61.914909],[151.460617,384.233918,-65.647911],[167.008774,386.160431,-80.173286],[169.072983,374.151520,-89.776421],[170.021652,364.339264,-93.649894],[170.179978,351.417816,-96.477378],[163.880539,353.815766,-91.400810],[159.751328,355.624176,-84.553520],[166.841416,357.917816,-92.457725],[169.051987,371.614838,-91.857231],[135.139450,402.995087,-40.966804],[146.420517,408.305756,-49.336204],[138.691513,400.107331,-44.710197],[136.038498,440.277314,-22.225441],[132.985336,431.494294,-20.361367],[131.049790,425.342377,-22.766395],[129.853256,423.850678,-20.683036],[125.665390,413.537079,-23.364128],[125.924179,416.997101,-13.304802],[128.410141,425.068940,-9.051139],[125.126511,418.935089,-6.990135],[115.932419,408.203644,0.035035],[116.734360,416.257599,2.045235],[111.442246,413.355500,4.613961],[107.468613,394.523651,5.668839],[108.079392,399.827118,5.329491],[109.945297,393.300995,2.116814],[117.534104,404.377350,-4.518478],[102.505966,396.123810,8.495224],[102.301560,386.771332,10.346321],[102.822434,383.253449,9.547593],[96.550461,377.403168,15.903595],[90.444748,384.334503,16.792351],[82.668381,384.738678,15.940339],[79.681015,386.978852,11.359833],[73.589035,386.678315,15.641915],[75.092026,385.105683,21.617409],[77.655197,389.750031,34.213570],[75.187729,392.917878,31.106903],[81.312851,394.081086,33.940621],[79.973557,400.219940,32.824349],[78.446091,401.817047,31.674828],[81.796005,417.679718,32.824730],[87.631210,412.321259,35.128189],[82.011948,405.499604,34.361901],[81.591538,387.374298,40.868813],[79.304123,381.062836,38.373658],[80.641708,376.735443,34.874932],[87.550644,363.083771,34.080681],[95.241440,361.610382,39.387673],[90.930283,365.123749,36.942589],[97.789841,354.253449,36.003868],[86.586655,363.658539,31.822579],[89.238266,362.732270,24.494889],[83.095932,369.189667,37.465485],[82.892685,377.721772,25.368164],[85.481125,381.041474,19.888054],[78.728378,383.252961,21.244423],[81.943771,376.300812,29.385834],[84.969101,370.130219,30.115403],[77.304978,382.246308,26.166245],[78.387619,380.940461,35.308716],[74.258225,385.158173,29.417725],[86.921311,376.488007,21.841027],[83.813461,411.573395,33.211380],[84.690781,391.865204,38.883301],[74.768601,387.177033,6.088547],[70.609787,387.389862,17.367653],[69.591416,388.481110,23.687714],[64.926499,392.476349,28.878365],[68.298691,394.561676,31.826432],[73.658127,391.944001,30.332840],[72.856064,398.230378,32.382981],[71.047287,389.376129,27.783089],[63.590073,393.512665,21.418015],[63.718552,395.392609,27.628037],[68.080917,404.386261,28.132492],[66.742111,398.242585,30.857590],[78.259995,406.919159,31.182648],[79.344711,421.756073,31.536957],[80.013962,426.964814,31.193261],[82.962265,438.031769,30.590859],[86.819992,446.124420,35.689629],[81.899277,442.986237,33.766533],[79.497238,440.923249,31.559143],[75.318222,450.624665,37.288834],[76.684555,451.828827,40.237694],[79.618088,450.085663,40.213143],[83.718186,452.108795,41.384148],[93.935898,444.492157,33.582817],[98.714096,447.155976,36.889885],[100.622238,446.898102,39.156098],[100.385361,440.438690,44.352631],[91.758774,428.701325,30.197815],[89.421799,426.078583,31.430367],[80.413315,436.093720,29.463387],[81.716232,423.843415,33.282814],[81.985336,426.705841,31.655030],[83.725876,424.958588,36.887459],[93.521774,425.914765,33.914528],[100.960190,445.959198,43.925064],[101.674973,440.147919,37.200608],[101.085678,441.394074,34.571671],[98.059128,441.819916,33.295632],[90.767441,441.517304,31.422753],[82.792893,431.181610,30.367928],[90.773483,433.643586,30.005333],[87.657639,435.710358,30.598923],[86.107651,428.324799,29.482010],[79.751877,454.174530,42.591172],[97.971665,451.198700,42.492409],[98.625351,451.230072,46.370514],[98.802414,446.765290,50.309334],[99.126999,430.007355,38.742653],[93.855576,427.816437,43.098114],[81.544968,424.278473,45.819924],[85.045151,415.292084,51.806954],[82.903732,419.116425,48.788048],[92.223984,408.224823,53.429329],[97.883347,403.002961,55.748925],[103.944992,400.053803,57.806923],[110.371384,395.957672,63.417096],[116.901047,393.637604,67.285447],[90.795395,407.307892,58.406758],[95.177963,404.908417,61.035836],[86.131638,407.748505,68.703980],[82.267685,421.605988,44.802697],[91.407089,414.149201,44.190781],[89.279892,414.669098,37.603905],[84.008164,420.703339,37.376000],[93.757431,408.235199,45.174546],[91.142075,412.413910,39.621735],[86.804123,407.572174,37.015320],[82.465805,398.259735,37.558724],[95.992416,399.639313,48.449166],[98.457321,399.005463,51.510949],[103.460983,388.507111,56.711586],[105.446762,384.003327,57.873471],[99.875229,373.472016,50.381607],[100.490036,367.623627,46.419999],[96.817307,367.022065,44.442582],[92.822434,367.965790,41.667740],[97.788071,377.769135,53.665573],[99.224106,380.492096,56.129898],[93.178696,394.759491,45.735230],[90.197617,383.189789,50.343041],[89.236801,387.224762,46.808617],[97.950302,383.651642,55.359787],[95.202011,373.453156,47.759461],[98.361923,394.175324,50.962006],[94.729843,392.562348,48.573319],[93.482285,410.883698,47.817658],[96.622055,402.521393,50.239708],[81.612961,425.712799,49.599938],[79.114487,428.030976,53.512566],[72.571640,433.067780,60.155026],[78.873825,441.067047,63.008995],[91.210068,444.061920,59.536473],[98.605576,436.710114,46.629128],[95.829819,434.584687,49.223084],[93.181931,436.266449,53.297921],[90.255722,429.739350,48.756768],[83.175766,434.034088,57.049317],[82.753098,438.828583,60.947640],[88.136826,432.630829,53.315880],[90.133530,441.234528,59.410775],[95.264023,443.215302,55.336480],[94.356674,448.803009,55.533493],[87.539414,459.485565,50.078499],[83.445358,462.315033,49.417069],[85.289902,466.691071,46.049668],[86.380417,469.031708,43.406922],[84.109421,466.257111,51.904190],[89.011215,456.492768,53.574952],[85.947800,455.179230,57.407410],[90.542465,447.165619,59.496708],[85.644821,443.924042,62.286580],[82.509628,458.280793,45.910965],[85.228195,456.173920,44.984459],[90.949814,455.632111,50.493431],[94.473923,454.174836,48.469323],[89.265488,454.756806,44.534668],[96.505661,450.931977,51.824616],[76.414291,421.046357,55.656235],[76.126999,424.562531,54.544243],[79.486130,422.468476,49.852272],[98.845383,430.444672,33.832001],[96.395126,427.546601,37.847321],[92.178024,426.260834,40.839836],[84.923874,425.131134,44.680581],[82.306137,424.447480,39.632988],[92.624680,449.479462,39.699974],[77.729477,443.164887,31.999649],[78.107773,445.562104,35.571999],[84.272446,389.481598,9.099289],[72.486618,386.905487,1.371712],[65.514084,384.210663,0.124184],[57.470444,380.405854,-2.331749],[55.553635,381.943024,1.594757],[62.106064,384.732331,5.157830],[55.232834,385.764069,6.635926],[59.751145,389.200898,10.870682],[62.176865,402.165619,12.264397],[67.955063,409.802094,16.899758],[65.154404,386.213349,7.961350],[50.998825,350.169464,-11.405327],[45.230454,352.102021,-6.469047],[40.319199,356.749420,-3.253669],[33.054184,362.516144,0.753998],[32.825729,368.223664,0.527161],[31.639877,372.868866,0.289147],[30.267929,377.280121,1.230408],[32.126450,383.883332,5.703850],[27.385178,381.080536,3.601113],[36.928940,369.519989,-1.090057],[36.059189,358.042694,-0.804924],[37.601791,352.765168,2.278054],[40.818039,350.472443,-1.884063],[42.164169,360.378510,-6.378044],[49.866745,369.388581,-12.033271],[52.264206,373.890900,-10.749855],[54.002731,377.391815,-6.475257],[30.491623,340.629364,10.795098],[11.285751,331.594330,10.565880],[14.494309,338.763275,9.620667],[16.676621,341.691498,9.542756],[13.722580,341.748993,10.281121],[15.336105,335.300995,11.478852],[14.639694,354.063080,-2.049446],[18.280686,354.924897,-0.596290],[20.693649,360.306610,-2.200637],[25.596726,359.584809,2.163834],[13.512253,346.414032,-1.827896],[10.810715,355.162628,-1.793777],[5.091538,352.359528,-2.118950],[20.918442,372.807587,-7.910881],[8.767136,368.401032,-12.371986],[9.681198,366.427826,-11.391105],[3.806442,366.254914,-12.034782],[5.703659,363.228363,-10.481926],[2.473374,363.895417,-9.960884],[16.758103,367.672577,-5.871666],[20.473129,364.042694,-7.282981],[24.405014,363.593598,-2.578743],[24.043320,369.564728,-4.777084],[17.785263,368.652558,-9.621421],[18.294907,361.735810,-3.245926],[-0.148086,370.069672,-5.166626],[21.593186,375.496796,-3.431999],[19.369431,380.829315,-0.286308],[17.316696,385.541535,2.536095],[21.177170,390.259919,8.061814],[15.089157,390.449677,4.350891],[16.574082,372.352814,-10.450126],[18.196701,376.188996,-5.275817],[23.154709,381.598297,2.424866],[29.065476,410.904450,14.039215],[27.484238,416.226105,11.813446],[-130.317764,422.888642,-76.013024],[-118.402420,415.747162,-70.692863],[-124.582840,415.360321,-74.327171],[-143.264786,439.464569,-79.109139],[-180.130875,466.042023,-81.873298],[-180.018570,458.937043,-83.585960],[-184.054581,456.004914,-83.996758],[-191.443619,463.519928,-82.854408],[-193.455337,457.144379,-83.446525],[-192.684646,449.460480,-83.782402],[-197.019302,439.721344,-82.570763],[-186.377640,435.668305,-83.689720],[-169.066788,437.921112,-85.352211],[-153.916580,436.151459,-83.079124],[-159.525650,445.253266,-83.427253],[-161.968643,436.968903,-84.621452],[-165.290176,450.853974,-83.927987],[-170.415665,455.346100,-83.826302],[-162.669510,453.536591,-83.048637],[-171.663040,441.945221,-85.004264],[-175.132156,452.380463,-84.450676],[-182.121658,449.262116,-84.530143],[-184.256363,438.964753,-84.553535],[-188.762283,468.726654,-81.839744],[-199.861893,476.471344,-82.554802],[-204.053604,477.092682,-81.285179],[-207.221207,480.742218,-82.694252],[-212.591385,484.410187,-87.097802],[-222.383804,487.102387,-85.213462],[-217.473709,484.273163,-80.179115],[-224.244400,486.688935,-79.598991],[-224.918960,487.461457,-74.878502],[-223.718948,486.401459,-72.765190],[-219.657547,482.188141,-74.839576],[-212.790604,480.585480,-78.875480],[-215.211258,476.770294,-78.699302],[-233.071243,474.412628,-71.580024],[-232.021255,481.137238,-67.405052],[-245.801834,468.361420,-63.864219],[-249.232071,468.589020,-55.956947],[-237.096390,471.509430,-53.264320],[-223.874649,469.695893,-52.238975],[-213.121780,470.519684,-50.872169],[-217.172073,482.235443,-54.705055],[-213.094375,485.740082,-54.279701],[-226.563248,484.688813,-57.786644],[-233.110550,478.996247,-55.197564],[-228.704361,479.431061,-71.457985],[-223.286453,476.841523,-75.665977],[-224.438736,483.121674,-71.075843],[-240.110245,478.835114,-60.719307],[-246.884170,473.799164,-56.614373],[-246.648025,473.608734,-58.959785],[-250.887833,468.290497,-57.494972],[-243.877762,472.220551,-64.047416],[-239.139480,476.043244,-55.190330],[-240.241409,478.860382,-57.614524],[-233.193008,475.266388,-54.217277],[-227.287491,476.182831,-53.432335],[-236.008682,481.380158,-58.368217],[-216.971390,483.215119,-77.685783],[-200.822952,483.820404,-88.675575],[-207.125076,484.920868,-89.277427],[-217.190750,489.066559,-90.671577],[-220.883438,487.637055,-88.018318],[-238.871780,493.060578,-87.011879],[-232.198440,491.987641,-89.439965],[-224.367813,493.339325,-93.144737],[-216.943375,493.657196,-93.269036],[-229.210892,498.989411,-95.549034],[-236.555923,498.674408,-94.701606],[-232.670792,494.643524,-92.517128],[-237.015213,491.825165,-79.075279],[-239.777481,494.945099,-74.032905],[-240.659683,493.012604,-83.397728],[-233.698196,493.597199,-71.394264],[-223.293960,494.132416,-64.144416],[-218.560013,496.545563,-59.789895],[-214.485306,499.499237,-56.669349],[-236.000503,497.889557,-69.360894],[-230.657791,499.773163,-66.054344],[-247.979996,499.767853,-73.619499],[-235.597793,491.793610,-76.336602],[-225.937515,493.178192,-66.651162],[-226.754288,490.246552,-71.089608],[-224.373917,490.470734,-66.197715],[-221.605240,489.252716,-61.045936],[-224.817642,487.788300,-60.171120],[-225.385635,487.475067,-68.447548],[-225.598465,487.678986,-64.168556],[-203.913101,480.591217,-85.259377],[-200.724197,480.411835,-86.317146],[-183.515518,473.157379,-84.212181],[-170.020645,467.984772,-81.810402],[-191.742081,476.821198,-85.802665],[-242.304397,512.123078,-70.666482],[-253.137710,516.619660,-74.156089],[-240.508499,520.289826,-67.616783],[-247.354874,527.151276,-69.201591],[-255.866165,524.979035,-75.825738],[-260.429581,532.997406,-74.390175],[-262.337356,541.978180,-71.409477],[-266.931717,551.561676,-70.946739],[-262.442337,553.016388,-69.272850],[-275.292068,550.947541,-74.862480],[-284.135574,549.249237,-78.909523],[-269.906265,547.254975,-73.688743],[-276.014419,545.699677,-77.738960],[-259.144729,537.800141,-71.648277],[-267.597916,532.615570,-78.940269],[-271.263565,541.048188,-76.682518],[-278.359695,538.938202,-82.846611],[-264.447830,537.073517,-75.408882],[-260.314468,524.626007,-78.293419],[-265.229385,526.336457,-82.089317],[-263.552078,528.072113,-87.018318],[-263.894058,530.902191,-87.929451],[-255.998184,531.028717,-92.983528],[-257.356094,528.085175,-93.486808],[-262.272842,523.545563,-94.410545],[-266.976211,520.750397,-91.241874],[-272.367325,515.657135,-84.400535],[-261.641434,513.476166,-95.239570],[-246.827835,508.285736,-97.408134],[-249.079727,500.439240,-91.773429],[-260.887955,506.619782,-90.925331],[-265.055496,509.509491,-89.894204],[-269.897110,510.369477,-85.523583],[-269.261001,507.221466,-81.318398],[-266.615555,506.926850,-78.718330],[-265.001663,519.225190,-78.409019],[-266.579788,515.997650,-92.777214],[-261.561783,519.674164,-95.738273],[-247.513138,518.116364,-98.127281],[-249.778274,513.100800,-98.151680],[-237.033768,514.883576,-97.555381],[-264.310440,526.103974,-87.228431],[-263.814712,524.760651,-91.898536],[-268.930801,522.893158,-84.294777],[-270.853653,519.951020,-80.333229],[-260.088516,526.938568,-78.107322],[-266.561478,529.638275,-81.136085],[-269.489029,533.970307,-87.970146],[-267.092728,529.889923,-82.552787],[-277.166458,537.271332,-83.918724],[-248.649002,533.348053,-67.463676],[-253.127334,539.330597,-68.295723],[-256.373428,548.758820,-67.660835],[-264.188980,563.084381,-70.112800],[-258.581985,565.568512,-68.045234],[-249.282303,564.136750,-62.338203],[-251.280228,560.553315,-64.925759],[-241.031082,551.262299,-60.336845],[-250.939773,554.805451,-64.808952],[-243.000809,534.720612,-64.562294],[-246.657791,561.474091,-61.228752],[-247.138321,572.686982,-58.557533],[-251.849563,571.814301,-62.048394],[-259.657242,570.567597,-66.512062],[-235.247940,558.255463,-53.828224],[-234.903580,567.481903,-48.356498],[-232.576614,566.559967,-45.256401],[-225.878799,569.165131,-38.009880],[-225.258194,564.940949,-39.068992],[-223.735855,551.408905,-47.201851],[-210.960342,543.308441,-38.321083],[-202.806534,541.076935,-30.373481],[-199.854324,536.916230,-30.222725],[-201.098099,545.544586,-26.553001],[-212.632339,550.533783,-33.555427],[-216.060379,552.471161,-37.801232],[-221.724075,560.836396,-37.368279],[-213.054153,554.835846,-32.926200],[-216.304581,564.173554,-31.622520],[-223.263077,573.866120,-33.434929],[-224.446365,577.059418,-32.297737],[-238.518692,576.982758,-46.067619],[-244.056595,573.737519,-54.998466],[-245.056229,578.485504,-51.779884],[-233.466812,580.678253,-39.467309],[-221.585892,578.707550,-28.851478],[-216.602005,569.098114,-29.329109],[-217.060684,573.002350,-28.245948],[-220.019791,578.247467,-25.188011],[-217.394180,577.171295,-21.790414],[-231.308243,571.609711,-42.986732],[-238.244034,572.873017,-49.018136],[-216.647293,545.263153,-43.745582],[-215.555862,548.086579,-39.678733],[-202.071609,526.293854,-39.306434],[-201.134231,515.986847,-43.921196],[-222.538834,554.533356,-44.921684],[-229.453873,555.932282,-50.174599],[-239.137833,557.497589,-56.766838],[-259.823440,547.133332,-69.069206],[-236.169266,528.014923,-62.636406],[-234.433121,532.791291,-60.246879],[-227.475601,530.710968,-56.242561],[-234.431290,535.605927,-59.943748],[-193.090164,511.245331,-40.797081],[-188.073379,511.625336,-33.475578],[-193.569839,504.841095,-27.504098],[-188.380325,516.102997,-32.878044],[-182.610306,524.661530,-20.177360],[-181.404678,532.089569,-14.438331],[-181.607498,537.826630,-10.699394],[-179.144852,535.692047,-6.421669],[-189.056412,554.259003,8.700562],[-180.545120,557.319123,17.578659],[-172.731094,557.004792,21.228806],[-175.542129,549.877777,15.807648],[-174.006302,542.478363,11.906418],[-176.026321,536.761444,1.198151],[-183.069473,545.139801,-0.939788],[-179.541092,546.453705,9.422219],[-178.806534,543.015107,5.078087],[-185.078750,548.843598,5.351487],[-168.067764,543.287079,18.772698],[-167.788589,534.740570,12.987603],[-171.154800,532.204621,5.108933],[-172.457840,551.634308,18.879044],[-186.419083,560.807648,15.168587],[-186.999466,554.955353,11.719185],[-183.654983,544.867462,-5.545166],[-221.587173,587.556061,-22.176902],[-240.436661,599.882782,-34.606529],[-249.698807,606.289093,-43.049354],[-254.781387,611.002594,-45.889443],[-266.490311,613.054108,-55.349449],[-265.401993,598.200898,-63.139427],[-260.641189,590.718781,-63.732093],[-250.745071,587.813080,-53.692833],[-254.380813,593.025910,-54.609962],[-233.741775,591.260712,-34.665443],[-231.170242,591.411530,-30.845497],[-241.308792,597.063446,-39.322639],[-247.954971,598.182526,-45.566658],[-248.743423,591.857148,-49.003670],[-254.835953,586.003022,-61.226417],[-237.554642,588.422516,-39.522148],[-257.823990,607.493622,-50.198005],[-257.937027,601.163422,-53.610817],[-273.042313,608.926911,-63.424415],[-269.037063,602.610138,-63.269020],[-251.778030,602.202851,-46.819893],[-272.911636,602.169159,-69.033028],[-279.773758,607.892243,-73.237786],[-285.983169,610.165924,-77.099556],[-289.767105,615.661286,-76.588249],[-289.995926,618.362030,-74.717903],[-266.863602,596.343476,-66.174232],[-277.253494,608.876068,-67.922539],[-284.995621,614.127106,-72.263527],[-278.159988,617.235749,-63.682777],[-280.713089,624.596222,-63.011483],[-276.359817,629.623444,-57.884591],[-287.164688,629.331024,-66.887214],[-281.477615,632.834259,-60.542961],[-290.242020,632.383515,-67.346748],[-293.170792,642.695893,-65.520042],[-290.944839,643.820282,-60.863777],[-290.302627,652.534882,-51.968391],[-294.474441,655.136383,-54.930473],[-300.943680,659.194184,-57.901100],[-302.851944,665.765045,-54.764488],[-307.341019,668.797455,-57.876396],[-306.632706,676.113068,-52.810646],[-286.367691,685.921967,-34.974418],[-287.473404,695.526947,-35.092979],[-290.267044,698.906159,-38.042884],[-294.215774,699.145722,-37.616006],[-308.526504,710.429474,-45.160561],[-313.157364,712.854157,-47.214378],[-319.878372,715.807099,-50.793068],[-314.781692,710.026276,-49.140266],[-312.078812,695.053192,-49.774025],[-308.090286,689.469879,-49.614235],[-312.083511,698.002899,-49.043922],[-324.518875,707.935944,-55.600044],[-327.268570,712.739533,-57.198464],[-344.963150,718.264740,-66.609048],[-343.585342,713.973542,-68.537926],[-343.851211,708.457245,-70.634758],[-344.568008,702.250824,-72.308082],[-341.412247,700.393463,-70.579460],[-329.713272,694.597626,-64.813423],[-331.690018,690.574982,-67.291191],[-323.555374,686.122101,-62.679390],[-310.119644,679.950898,-53.887733],[-312.232437,687.858734,-53.305381],[-317.216141,695.941925,-55.001976],[-334.288834,711.152191,-61.557366],[-329.136001,709.374115,-58.286308],[-322.083023,701.943451,-55.507743],[-334.745987,708.871613,-63.939415],[-325.281509,701.817292,-59.114036],[-321.832657,691.802338,-59.677269],[-331.731460,699.504120,-64.949577],[-335.142959,704.679840,-65.722175],[-321.257828,679.647736,-63.983848],[-330.614273,675.410981,-77.379966],[-319.878616,673.392853,-68.635337],[-319.577591,665.556610,-73.178215],[-310.830215,658.632538,-70.062050],[-303.969437,658.321991,-62.600074],[-305.861832,654.674225,-68.040184],[-338.090591,687.927948,-74.201149],[-342.976944,686.059113,-79.989326],[-347.067764,686.362580,-83.638679],[-352.299454,686.556183,-89.403526],[-355.586441,690.547211,-89.726754],[-370.344375,699.547577,-97.699546],[-376.317154,704.317597,-100.279168],[-388.150650,712.359223,-105.564019],[-394.870865,710.179413,-111.360420],[-389.470230,705.206330,-109.428611],[-396.834244,702.228730,-117.736320],[-398.505508,702.804352,-120.720147],[-398.778702,704.371125,-126.208337],[-394.986954,702.733307,-127.300468],[-401.975601,710.243683,-131.131309],[-397.187271,717.903839,-137.085136],[-389.186539,719.096955,-134.466240],[-382.086929,717.349640,-131.220956],[-383.839249,724.395417,-129.587334],[-368.333145,725.079010,-123.615974],[-365.786026,718.261628,-121.407601],[-367.947159,716.980194,-122.420052],[-370.563003,724.646637,-124.737648],[-403.022110,721.235138,-138.645013],[-402.516739,724.528595,-139.286796],[-406.131119,717.367951,-135.730279],[-425.859756,729.170807,-138.871971],[-441.864273,742.920197,-142.431939],[-442.595962,747.423310,-146.310113],[-428.834244,735.982270,-143.738212],[-428.768570,740.003815,-145.882438],[-421.909439,734.995453,-144.216911],[-411.132706,728.830658,-141.779075],[-392.793472,724.776642,-134.904961],[-390.919693,731.686859,-131.939843],[-380.192520,725.438629,-127.537072],[-418.437759,735.063080,-143.880790],[-430.366592,744.808258,-147.110833],[-423.008438,749.051239,-143.366845],[-419.689346,753.039826,-143.319084],[-420.704849,756.754792,-143.553367],[-420.630997,760.528656,-142.340446],[-412.634292,767.119660,-133.973321],[-408.066299,769.195282,-128.763511],[-384.908951,757.151337,-118.570991],[-378.417007,757.671418,-110.855217],[-374.007339,751.844940,-112.431572],[-371.041153,745.009796,-115.430275],[-373.075821,742.257477,-119.338357],[-386.842300,751.006867,-125.271278],[-396.268814,758.031525,-128.217309],[-391.350845,758.582978,-123.481056],[-402.427750,759.244782,-132.071571],[-407.863541,756.537628,-136.904747],[-405.033096,771.559540,-122.477592],[-402.174332,772.195649,-116.842568],[-392.487198,768.309357,-111.632698],[-388.983902,765.642975,-112.466697],[-399.058487,766.643158,-122.988502],[-382.823746,761.216828,-111.502389],[-384.237808,764.543793,-106.075630],[-391.084488,768.224518,-103.698188],[-391.500015,767.534882,-100.114724],[-381.257828,761.755402,-92.870903],[-376.467911,756.448822,-84.777244],[-379.365616,756.339569,-84.860467],[-381.687881,754.907013,-85.301780],[-394.296890,754.251068,-92.631050],[-398.545181,768.569001,-99.523918],[-387.925064,764.245819,-94.600532],[-396.921036,770.845490,-109.518852],[-405.847061,746.873200,-138.775138],[-388.666763,741.070649,-131.203392],[-390.808243,746.189911,-130.721794],[-413.052139,741.785553,-140.137993],[-410.027359,733.246735,-141.454430],[-402.726944,733.785614,-137.406335],[-390.870499,735.771698,-133.367973],[-385.905044,732.538666,-131.279197],[-380.682754,730.272614,-129.214776],[-403.613418,738.230683,-136.303399],[-414.690933,746.688935,-140.595787],[-417.227066,737.650177,-143.542747],[-397.606827,735.254181,-134.347496],[-407.718765,750.929535,-138.844872],[-395.677872,752.277191,-131.097709],[-410.569839,748.336823,-140.607627],[-433.042740,758.707306,-147.309562],[-437.860855,757.629059,-148.689872],[-441.823624,763.575348,-149.215172],[-446.147720,767.010041,-149.481805],[-459.754043,771.098053,-147.366233],[-462.801041,778.309479,-138.443108],[-443.464615,781.033478,-121.667640],[-433.097793,780.295624,-117.704872],[-432.809341,781.927521,-121.521690],[-430.065201,780.459931,-130.710685],[-415.100845,774.940399,-127.253197],[-419.184097,773.016999,-133.694069],[-417.874527,777.023163,-125.096412],[-421.541641,779.145844,-118.388543],[-414.040665,775.176056,-109.139443],[-427.069351,776.945038,-112.742379],[-422.312271,772.644318,-109.115533],[-430.347916,773.687592,-113.213050],[-409.866592,775.045929,-120.068230],[-425.040176,780.146271,-123.988732],[-424.691421,779.379914,-116.405587],[-453.065567,781.203583,-127.369346],[-463.598892,778.624115,-134.476341],[-451.516861,775.193146,-147.916985],[-438.552017,768.539276,-147.234703],[-430.289810,762.946503,-145.885276],[-430.288956,768.681916,-143.552940],[-417.536270,764.634247,-138.723777],[-421.679825,769.610260,-138.187706],[-431.171890,735.200104,-141.943809],[-435.912247,736.039032,-138.531762],[-418.276749,729.338776,-141.527549],[-444.534195,743.933808,-140.386650],[-404.289932,718.799591,-137.257317],[-379.138565,702.037567,-103.791557],[-373.394668,696.265107,-101.126640],[-358.321670,693.852448,-88.517356],[-361.316421,706.419586,-83.752052],[-360.353653,709.816803,-81.030296],[-359.194839,714.418488,-78.605187],[-369.246719,721.621796,-82.832298],[-377.286880,715.392975,-91.614036],[-375.262833,709.245758,-94.302346],[-389.296768,716.465180,-102.220588],[-397.298721,721.703400,-106.330636],[-404.653702,727.992890,-108.470375],[-412.733658,738.455109,-110.395607],[-406.737320,741.309052,-103.325218],[-426.373184,739.179413,-124.839867],[-430.267715,742.057526,-126.307899],[-437.458267,746.336090,-128.517541],[-461.012833,776.246796,-130.214135],[-459.912369,771.337372,-130.395774],[-460.226089,764.094513,-133.927940],[-451.775040,750.323456,-138.139579],[-454.269668,752.752961,-140.324883],[-460.578018,760.365998,-140.935876],[-459.142837,760.336274,-145.060661],[-462.496109,767.019989,-144.746269],[-458.445816,765.119538,-148.502617],[-463.019180,765.057221,-141.632317],[-463.586197,767.207917,-136.925346],[-458.311905,758.127716,-137.750999],[-422.265762,742.762848,-116.437019],[-434.139419,746.216217,-124.096641],[-410.783340,740.168976,-107.175438],[-412.442520,734.733673,-112.018577],[-421.860977,739.034149,-119.318473],[-415.220352,729.815583,-120.415168],[-423.029434,729.600678,-126.227089],[-419.778213,727.315705,-125.229103],[-433.708877,733.370758,-134.897332],[-425.511734,726.589020,-135.005912],[-413.981216,731.474762,-117.882958],[-417.213882,720.405182,-125.956428],[-422.157852,724.197113,-128.390130],[-415.249161,717.668000,-128.878044],[-426.538711,727.228424,-131.647347],[-416.170547,722.228363,-123.251213],[-409.212173,712.675629,-125.123039],[-406.371841,732.023407,-107.711816],[-396.117203,727.899323,-100.115410],[-397.678726,732.561127,-100.082955],[-397.196792,736.004608,-97.433815],[-393.252701,741.323578,-92.419670],[-392.226944,746.237641,-90.096931],[-390.419449,751.142609,-90.082801],[-399.977066,751.811127,-94.916908],[-397.893204,747.209381,-93.623283],[-401.688980,744.831208,-98.075310],[-388.584732,720.346405,-99.150917],[-386.421768,723.849335,-94.240181],[-378.747085,718.633026,-91.242317],[-372.519546,728.210297,-82.521828],[-375.610855,735.086945,-81.666314],[-391.403091,742.586090,-90.194481],[-369.906998,731.284943,-78.972282],[-379.252701,722.743134,-89.344658],[-368.305191,709.714203,-87.401863],[-368.298355,716.781647,-83.804588],[-370.409195,703.092560,-94.335442],[-329.412369,684.419831,-68.902992],[-332.505875,680.328583,-74.941170],[-324.981583,671.532440,-76.120521],[-343.898086,680.400544,-85.931907],[-345.061905,675.999543,-88.655174],[-347.365494,668.714753,-92.869255],[-353.303970,667.289093,-99.240303],[-357.836807,670.642731,-100.588768],[-377.057754,677.538483,-115.031471],[-376.257461,677.807831,-112.834083],[-378.224625,683.926972,-111.580360],[-368.193619,690.176606,-99.592933],[-361.610977,682.996125,-97.432899],[-363.233047,693.648285,-94.777443],[-366.174820,665.137970,-110.597893],[-354.156875,651.538300,-106.813530],[-361.059830,662.106171,-106.809350],[-356.278335,655.487763,-106.297967],[-362.202408,668.822602,-105.800560],[-351.424698,661.859101,-100.829903],[-336.248672,674.401947,-83.492379],[-338.661392,664.951630,-88.357704],[-342.448990,661.941559,-92.214180],[-325.509109,661.239289,-81.000435],[-320.127701,663.569428,-76.814079],[-323.335037,652.831024,-82.318245],[-323.863968,648.032379,-84.153251],[-307.113174,629.837494,-83.224418],[-305.565384,630.963471,-78.142250],[-299.123062,631.943451,-73.840508],[-289.507767,636.819367,-65.286872],[-295.786087,647.928315,-63.013862],[-298.596207,654.964997,-60.301307],[-303.526932,647.741059,-71.147956],[-297.156998,641.338654,-69.091972],[-301.624893,635.804291,-73.607979],[-295.690140,650.861176,-59.650337],[-292.018997,625.600800,-70.304603],[-294.499893,622.223053,-73.874611],[-285.466873,618.430146,-69.080940],[-301.387405,628.577118,-75.564231],[-302.453445,627.115509,-77.748527],[-296.845352,622.164032,-79.375755],[-293.511246,616.521698,-79.569313],[-333.947037,658.072113,-87.485618],[-334.270523,652.718964,-91.015754],[-324.495071,642.835358,-90.545220],[-318.268814,638.907257,-86.334571],[-311.890213,632.839814,-84.835212],[-308.408096,628.709198,-85.246055],[-305.049026,624.827607,-83.726875],[-299.534988,621.400177,-81.719322],[-303.650589,608.695404,-85.168495],[-292.779556,610.739106,-79.965751],[-327.477737,653.767304,-85.142906],[-335.148819,667.359101,-85.334358],[-343.531387,658.878083,-94.975837],[-331.288834,647.069794,-92.959756],[-330.742569,641.131989,-95.001426],[-328.389114,669.490876,-80.185310],[-355.978042,701.761811,-80.596855],[-355.908218,716.897187,-75.924720],[-355.133560,709.401093,-77.196785],[-355.958633,705.794586,-79.038215],[-359.981216,721.996979,-76.465751],[-353.771133,729.830231,-70.354148],[-354.726822,737.700653,-69.819679],[-352.435928,743.898285,-74.095619],[-368.349258,756.563935,-92.814720],[-377.661148,761.820404,-98.120689],[-385.889175,765.931794,-103.975074],[-372.658340,758.589081,-99.251701],[-360.054947,750.966461,-94.995781],[-360.828262,750.056549,-98.647712],[-351.324844,745.049591,-93.450645],[-342.036758,740.164093,-87.743187],[-330.171524,732.638092,-82.546120],[-321.214004,726.047150,-80.215751],[-314.430130,720.113373,-79.921548],[-306.443985,713.291962,-78.313896],[-311.586685,712.725190,-85.767356],[-314.775650,711.987030,-90.192634],[-316.669754,708.830231,-95.102806],[-327.810257,710.612641,-103.217827],[-350.046524,710.953766,-114.924446],[-351.603287,715.001923,-116.403633],[-372.911270,716.672699,-125.906608],[-385.526749,713.516022,-133.605095],[-333.966202,735.983673,-80.344734],[-340.259048,739.859955,-79.390373],[-332.344009,735.018341,-77.605369],[-328.334610,731.115876,-68.795524],[-329.896988,730.985932,-65.905388],[-315.192581,719.748810,-55.388191],[-317.496597,722.918183,-60.694267],[-308.297989,715.737030,-53.889244],[-311.906021,720.133271,-61.893501],[-283.329727,699.489716,-52.018226],[-275.250931,693.597504,-50.728982],[-279.185562,696.239777,-57.968834],[-267.461868,687.321625,-54.370918],[-264.264236,684.015229,-56.687416],[-283.067642,698.375458,-63.294349],[-277.103226,692.898774,-63.899925],[-277.873184,692.175385,-66.743493],[-276.421280,686.033783,-72.513543],[-288.272598,692.505219,-79.888054],[-289.644363,684.285919,-88.366920],[-285.900955,678.763398,-88.640098],[-284.648147,673.208527,-88.226875],[-269.523758,670.732209,-79.636010],[-279.917801,674.815827,-86.188972],[-283.014664,682.256256,-83.648307],[-277.211685,679.843109,-79.705391],[-271.753311,685.414887,-67.210548],[-264.780289,682.762299,-60.715965],[-291.519668,705.482392,-63.779533],[-287.709122,702.964814,-58.361626],[-310.077042,719.484955,-64.432853],[-316.502701,723.566010,-75.715812],[-314.515213,722.884064,-71.233360],[-302.356155,713.995087,-65.333473],[-308.909073,717.663300,-73.852287],[-302.601700,711.916107,-74.206596],[-288.923233,701.108612,-69.961509],[-293.843643,702.838959,-74.998115],[-289.780594,698.129242,-75.596336],[-296.154556,700.685395,-80.612754],[-306.170486,711.173065,-80.864250],[-302.455704,713.985993,-61.498497],[-321.408768,727.091523,-68.198265],[-359.239883,751.272309,-91.027885],[-347.382339,744.072052,-86.916496],[-361.833755,752.836518,-89.685768],[-347.620010,744.424408,-83.785514],[-364.226334,753.681977,-87.795417],[-343.344131,741.362091,-77.744789],[-351.246597,745.152069,-78.404991],[-378.041763,761.414032,-94.640434],[-365.067642,752.716767,-83.891380],[-362.103653,733.950959,-74.648491],[-360.459244,728.710541,-73.450615],[-355.382461,723.438202,-71.771904],[-366.973526,732.784455,-76.595695],[-352.325577,702.766388,-77.223411],[-302.167190,707.407624,-43.378700],[-301.431351,709.197296,-46.919700],[-300.129471,710.516938,-51.791282],[-285.337173,700.356415,-47.683906],[-269.190201,688.950898,-44.226768],[-296.352005,703.780793,-41.442680],[-289.972854,694.403656,-35.550209],[-300.120865,667.793671,-50.849922],[-294.249100,668.216767,-45.945290],[-282.324173,670.197846,-35.125068],[-269.863296,662.728974,-26.158867],[-266.581497,658.569977,-24.931404],[-260.356277,652.072602,-22.460701],[-268.482559,653.754853,-30.159829],[-275.742569,652.507660,-35.910164],[-279.010452,651.444123,-39.430122],[-275.690323,643.227753,-41.539360],[-281.905777,636.934540,-57.137260],[-273.078812,628.230439,-54.550850],[-270.262222,642.538666,-35.465492],[-267.523392,656.837189,-27.428581],[-270.384476,670.100312,-27.829399],[-261.942642,671.747223,-21.153740],[-254.084427,665.394806,-17.427635],[-263.782242,675.685456,-22.448784],[-267.031082,674.691742,-23.944572],[-272.548904,681.309418,-26.302346],[-289.763565,680.074982,-36.815528],[-289.840713,677.802338,-37.946357],[-283.277481,673.299530,-33.393257],[-281.601395,677.241730,-32.674554],[-274.672623,673.002655,-29.536125],[-271.461624,682.764008,-26.830422],[-283.291092,690.417816,-31.648323],[-276.339493,683.895722,-28.257866],[-281.439346,681.022126,-32.273384],[-289.230423,675.730072,-39.448494],[-295.347916,680.523835,-42.717048],[-301.321060,684.905732,-46.045860],[-298.508743,677.848358,-46.191032],[-288.308853,669.392670,-41.124305],[-303.045669,674.022492,-50.561897],[-275.530411,692.756073,-41.337547],[-270.469009,687.796967,-35.343956],[-283.656021,696.863617,-39.621910],[-259.768021,672.559540,-20.667579],[-267.711136,666.761933,-26.313972],[-257.326919,658.601288,-21.004325],[-257.300674,663.293061,-20.180839],[-253.509048,668.123139,-18.516762],[-255.174026,673.893647,-24.984474],[-267.889603,684.454621,-31.070594],[-260.326858,680.312226,-31.897880],[-265.131363,680.557160,-27.154670],[-296.572342,663.944123,-49.948539],[-285.816177,660.604950,-41.499138],[-293.132034,658.749115,-49.303016],[-285.564224,656.498139,-43.767708],[-284.611282,647.559296,-50.141471],[-282.807266,644.301056,-50.396415],[-286.342972,638.902985,-61.961770],[-269.256546,622.990082,-53.806831],[-260.313736,618.020356,-45.271110],[-245.835892,605.646149,-38.061912],[-232.275528,600.215851,-26.328880],[-231.599075,604.812043,-21.014717],[-236.673477,604.897675,-29.048301],[-229.701797,595.790741,-26.354042],[-227.307449,595.846711,-23.168968],[-219.441299,599.422211,-10.244590],[-213.384537,589.345917,-10.958229],[-224.148453,598.086762,-16.024086],[-238.663101,603.510285,-31.894204],[-253.767288,612.244721,-41.530143],[-264.720657,619.490082,-50.976356],[-284.554153,651.886811,-45.203880],[-276.045608,667.712616,-29.281379],[-289.674209,646.659699,-57.386406],[-270.736587,587.900666,-69.734581],[-273.516739,581.172943,-72.201225],[-271.112015,573.694855,-72.738105],[-276.572037,567.713837,-73.276298],[-270.137771,558.834259,-71.053794],[-285.467911,568.546112,-75.970649],[-288.404495,578.942047,-78.403556],[-298.472916,583.165924,-80.480233],[-309.034012,595.369477,-85.916206],[-304.910110,596.927216,-91.060218],[-307.854141,591.681916,-93.740913],[-296.102737,591.003693,-99.638145],[-290.557571,587.541230,-100.512580],[-274.301224,586.156769,-101.850990],[-261.799637,578.780243,-100.177803],[-259.622513,580.004669,-100.093025],[-251.133743,572.203217,-98.763786],[-248.782974,565.372650,-96.272210],[-266.922562,562.557343,-101.715690],[-260.118484,553.211212,-101.215340],[-249.781326,546.814667,-99.292350],[-239.590591,547.302948,-96.889702],[-242.731583,554.133149,-96.159661],[-248.052261,551.527497,-98.679206],[-261.299942,567.660492,-99.117088],[-252.770645,562.286469,-97.704644],[-256.264542,555.595246,-100.465768],[-256.445145,570.139740,-97.530723],[-252.039993,569.557648,-97.354820],[-263.683670,576.618500,-99.071846],[-265.429153,574.876923,-98.980720],[-278.725235,582.897797,-100.460304],[-283.006729,585.849457,-100.589332],[-281.535782,573.419525,-102.066780],[-273.801102,565.144745,-102.219871],[-282.321915,562.466889,-100.562202],[-278.386001,546.825775,-95.099205],[-282.531509,545.436920,-91.731330],[-278.917068,539.553315,-86.948433],[-290.884903,548.709259,-87.871727],[-282.742447,541.550202,-84.460334],[-281.139480,555.967682,-99.196388],[-270.017044,553.260407,-100.726005],[-267.621414,557.003937,-101.721550],[-274.455826,562.716584,-101.884971],[-273.123428,567.671051,-101.905419],[-273.958328,575.152191,-100.704399],[-272.009903,580.202057,-99.789070],[-291.046768,580.459565,-100.833046],[-295.434097,572.964203,-99.111808],[-304.685806,574.451142,-95.584846],[-299.726944,563.817292,-94.738670],[-305.622574,569.043854,-92.761070],[-304.324844,563.542389,-90.543068],[-313.471451,576.879731,-83.460015],[-313.344437,580.462616,-89.631553],[-314.586746,585.050324,-88.412376],[-311.696915,586.504792,-81.914283],[-309.206741,579.383332,-81.511146],[-312.298050,573.379792,-84.858575],[-301.800247,559.572419,-83.957618],[-284.029678,554.997284,-78.380180],[-300.041580,556.627961,-86.656929],[-299.556106,557.180756,-89.745735],[-295.670669,555.463166,-92.002540],[-288.486771,554.105439,-95.098534],[-290.359207,550.322419,-91.247596],[-293.424454,550.900910,-84.182045],[-293.879166,553.576874,-81.802681],[-286.037735,551.462616,-78.965416],[-292.484268,558.712738,-95.969047],[-299.245499,569.719513,-97.357994],[-284.619400,569.843293,-101.588662],[-293.764236,566.263642,-98.707100],[-308.215530,570.333039,-84.728920],[-306.898270,564.223419,-86.232154],[-310.594620,576.456391,-91.775138],[-304.936172,585.453217,-96.428047],[-302.668899,592.199128,-97.121758],[-299.496109,585.817597,-98.675743],[-310.308487,569.729523,-87.368385],[-311.416763,584.202607,-91.910926],[-311.210403,593.253693,-88.269371],[-313.870132,592.019623,-83.751930],[-310.268814,592.712189,-82.293998],[-314.869156,589.363373,-85.731269],[-305.732193,564.653168,-83.608131],[-241.357681,561.587128,-95.178703],[-240.570999,564.634674,-96.460945],[-240.327713,557.821808,-94.759346],[-232.641434,559.870758,-94.640693],[-227.210709,556.308319,-93.377388],[-234.329483,566.219696,-94.631248],[-245.506912,571.715973,-97.605079],[-264.102859,594.812348,-100.235801],[-270.494583,591.346405,-101.791405],[-279.711563,604.368500,-103.941749],[-276.938187,609.133026,-103.465295],[-290.694229,619.604401,-107.621055],[-297.258072,618.425202,-109.047386],[-299.469864,614.296357,-109.708337],[-275.847305,577.676728,-74.012260],[-279.699661,580.906098,-75.726005],[-283.341202,583.987946,-78.905906],[-287.513565,591.463532,-79.596534],[-291.536453,594.658295,-81.734016],[-284.624710,600.641815,-77.271934],[-296.030105,606.175263,-81.378379],[-301.913895,603.005036,-84.030418],[-302.676285,592.050995,-83.213249],[-300.558487,597.465424,-86.117317],[-294.317276,597.896942,-81.856193],[-303.686600,598.276581,-88.699806],[-305.228165,602.233612,-88.958168],[-300.258072,599.999604,-99.667503],[-294.459732,595.079926,-100.524116],[-289.923477,591.307648,-100.948997],[-311.552811,607.731110,-91.865089],[-313.053421,610.033600,-98.124595],[-314.666824,618.335602,-108.358253],[-324.726150,630.388459,-113.362388],[-313.990311,623.427643,-111.988548],[-308.753799,623.437531,-112.291100],[-313.607376,635.341156,-114.496360],[-323.665176,643.644318,-117.241371],[-365.894668,674.289826,-125.930825],[-372.760147,686.619294,-127.765922],[-361.444229,680.786957,-125.662010],[-369.822769,687.603058,-126.898368],[-367.447281,691.842377,-125.671623],[-373.259170,693.499726,-126.641945],[-379.306045,693.283600,-127.994285],[-390.175552,696.744171,-124.459175],[-392.540176,696.800995,-121.878029],[-397.459244,701.809967,-122.863060],[-362.744766,668.323334,-124.114402],[-373.959122,684.193085,-127.269447],[-375.923843,682.228363,-125.621238],[-385.217667,692.893891,-125.096763],[-386.461807,691.270356,-122.864112],[-383.484146,686.989228,-114.752083],[-390.470230,695.875824,-114.873115],[-390.192032,698.233429,-112.813758],[-321.606216,632.017914,-114.710975],[-330.758316,642.039093,-117.501197],[-343.204849,652.281464,-121.033271],[-341.919693,647.455109,-118.896660],[-354.219009,654.391144,-118.399361],[-362.855362,660.396881,-115.019128],[-371.345108,672.320099,-111.098671],[-371.657730,670.617157,-116.380485],[-382.969009,685.121369,-117.235969],[-382.846817,690.274445,-111.426979],[-371.208877,685.590912,-104.158699],[-375.733658,675.745209,-119.174720],[-369.309708,668.910675,-119.346458],[-363.460464,662.426728,-118.220360],[-365.442886,663.457001,-112.760353],[-375.521988,678.214020,-122.859535],[-363.328873,665.521332,-121.895164],[-383.966202,686.762909,-120.518119],[-379.760391,681.372528,-114.748787],[-354.489151,662.604828,-123.630226],[-333.396500,639.026337,-115.887565],[-339.233414,640.264984,-114.792092],[-350.365250,652.360138,-119.011619],[-344.484878,642.524811,-113.768333],[-345.405411,640.590302,-109.398262],[-348.333267,645.537628,-104.342018],[-303.851517,600.618439,-94.157539],[-305.462051,603.316193,-98.197105],[-297.318252,598.537445,-100.972161],[-293.528763,597.615265,-102.861442],[-311.529739,619.650971,-110.580574],[-300.547867,610.363983,-108.500191],[-292.569717,605.033234,-107.136833],[-287.817642,602.860993,-105.910072],[-289.104874,596.299103,-103.806312],[-314.507034,615.918061,-106.260750],[-316.512894,616.197846,-104.909629],[-299.440628,605.696503,-106.214654],[-294.776504,588.821503,-82.639763],[-294.567276,592.653595,-84.333076],[-288.415420,588.079865,-81.524452],[-266.002762,577.984833,-68.287757],[-260.557083,583.232086,-65.126381],[-248.610794,533.561920,-95.927360],[-253.655594,534.995575,-95.534584],[-261.275406,533.080414,-91.591836],[-258.835953,541.359711,-98.084907],[-252.039871,530.200836,-94.744652],[-253.733658,523.599396,-96.508186],[-267.787979,601.279816,-101.040214],[-269.441177,609.109772,-101.102227],[-282.340774,623.526642,-104.485131],[-287.628738,621.750336,-106.611778],[-294.912918,634.520233,-108.073875],[-303.180862,645.973358,-109.399223],[-289.156631,634.037079,-105.570793],[-294.957840,659.002533,-102.916847],[-280.361343,662.251068,-91.835090],[-288.216324,644.815766,-100.966027],[-288.000015,642.854523,-101.291542],[-296.860245,654.657379,-105.138038],[-299.619156,652.504059,-105.193000],[-303.793594,658.561371,-107.617866],[-307.967361,657.062775,-108.131126],[-312.410416,664.734772,-110.630699],[-316.763199,662.386322,-110.994804],[-318.116348,667.786591,-112.607002],[-321.475174,676.429047,-111.932945],[-313.111221,674.769623,-107.700402],[-303.286697,664.656830,-105.695304],[-293.841568,664.637421,-99.586540],[-306.255081,676.149384,-102.709953],[-293.372818,673.942047,-94.551948],[-285.304825,671.714875,-89.398797],[-301.079849,659.850006,-106.115348],[-320.014542,661.273835,-112.680016],[-308.641983,644.984955,-112.260978],[-325.041397,652.949677,-117.366325],[-320.095352,644.761872,-116.350213],[-313.505386,644.762665,-114.170616],[-297.828384,631.698212,-109.592125],[-307.138809,633.631623,-112.651176],[-304.609817,624.464508,-111.552132],[-290.898453,639.631256,-104.729973],[-311.335586,649.954071,-112.257270],[-296.549087,647.863617,-104.509605],[-294.414627,648.919342,-103.428917],[-305.104629,652.869538,-107.592811],[-327.373367,648.971649,-118.382301],[-338.400040,662.347626,-120.691505],[-342.759537,670.092499,-120.563758],[-343.170792,666.901642,-121.476219],[-350.753433,679.262055,-121.777382],[-355.247085,683.998444,-123.025902],[-360.814468,691.915741,-125.963813],[-371.120132,697.775421,-127.924614],[-387.532364,703.984101,-131.733787],[-391.301407,710.364899,-134.555474],[-370.370010,700.027069,-128.320382],[-365.963394,703.995941,-126.624565],[-363.355606,697.722565,-126.548577],[-348.785171,692.215729,-121.100624],[-349.237564,701.540253,-118.485863],[-338.602554,695.189484,-114.628959],[-321.722183,681.901581,-109.988778],[-319.003982,685.179535,-106.984794],[-339.663223,679.632843,-119.388343],[-337.686172,682.586396,-118.098442],[-331.642593,681.675751,-115.413841],[-335.232681,688.504731,-114.922233],[-346.584000,687.188935,-121.214103],[-344.339371,691.991608,-118.837425],[-362.684341,711.864350,-121.993446],[-356.655167,712.826996,-117.567360],[-363.714737,708.506562,-124.110832],[-372.655044,712.035126,-127.821145],[-354.606094,700.079804,-121.955497],[-390.650162,713.386689,-135.280174],[-380.543350,702.996186,-131.150367],[-374.167862,696.490631,-127.281960],[-360.299454,685.987702,-124.108345],[-354.409073,667.823700,-124.357766],[-344.423355,656.929840,-122.236809],[-332.885879,648.524628,-119.559166],[-340.019791,659.735016,-121.514045],[-347.806167,663.779938,-123.016945],[-353.167007,672.090180,-124.058663],[-365.429092,680.098725,-126.744530],[-326.822159,657.048554,-117.340859],[-325.897537,659.156342,-116.383186],[-328.975357,673.912934,-116.032066],[-333.740982,672.523835,-116.282936],[-326.055984,674.857209,-114.663659],[-334.024307,662.276825,-119.037483],[-257.846817,597.887909,-98.082939],[-254.259476,587.693695,-98.054374],[-256.318863,582.621186,-99.249961],[-246.457657,585.110016,-95.893486],[-238.042862,585.753571,-92.296775],[-237.707291,578.826569,-93.744453],[-239.879349,592.163483,-91.506126],[-238.724991,573.515534,-95.168633],[-282.448685,641.717926,-99.044015],[-275.431534,636.626068,-96.428337],[-270.581863,631.265778,-95.146476],[-259.859451,627.512909,-90.556892],[-259.734329,624.792145,-90.547187],[-261.304459,621.754975,-93.351173],[-260.943619,617.485260,-94.933098],[-257.335464,607.144684,-96.170967],[-270.997574,620.294159,-99.857704],[-253.662491,614.088776,-91.821571],[-247.782669,617.100617,-85.884452],[-245.393387,620.587311,-85.690376],[-235.270462,614.245087,-81.827186],[-244.925735,622.562836,-85.060081],[-252.793777,626.413849,-88.767831],[-250.200027,628.884308,-86.112587],[-252.475967,641.562531,-81.288322],[-248.925064,644.691559,-75.512245],[-248.294632,646.561188,-73.362129],[-247.274429,651.300324,-72.162986],[-258.387955,654.166840,-77.618263],[-261.310257,650.768769,-83.365135],[-276.346329,656.012055,-92.414268],[-270.966934,662.864838,-83.312935],[-250.660293,606.668061,-92.816978],[-242.180252,602.684113,-89.276054],[-235.420669,609.428498,-81.185035],[-186.708938,603.455353,11.489434],[-248.241287,620.751557,-27.530861],[-249.885330,625.224640,-26.574546],[-255.849991,622.473175,-36.032844],[-256.344559,625.738739,-34.808921],[-237.790970,632.069184,-13.326286],[-247.355301,648.689728,-16.022819],[-233.880020,643.697113,-8.673133],[-229.108292,633.190277,-8.328300],[-220.041458,626.874298,-4.451118],[-218.766800,622.789032,-3.968437],[-249.632889,646.300690,-15.208274],[-251.507095,645.437653,-16.257866],[-254.456802,654.727448,-19.337272],[-251.076858,654.009674,-18.060402],[-256.024856,651.464753,-18.146537],[-263.638016,658.191437,-22.549202],[-251.490372,643.677155,-18.526008],[-262.016739,640.826630,-28.115211],[-255.787491,647.500153,-20.910728],[-245.941971,650.472809,-15.262870],[-244.899185,659.878388,-14.100273],[-240.262405,664.260041,-24.258873],[-247.352798,671.439423,-31.001519],[-245.488235,670.913178,-34.079231],[-236.862259,664.338715,-32.396949],[-225.286758,654.948456,-34.054054],[-235.165359,663.055085,-38.640495],[-246.562515,671.771820,-44.015312],[-259.573868,681.893280,-47.885017],[-255.497574,678.061920,-50.641380],[-253.433609,677.427460,-42.923851],[-265.747330,686.611786,-47.775291],[-261.985855,683.475190,-39.814369],[-257.835525,679.551178,-34.449913],[-254.537308,678.234711,-40.714195],[-241.076126,667.886811,-38.183281],[-220.501846,650.645539,-30.699516],[-227.919815,656.819428,-29.209480],[-218.230606,648.206391,-25.877769],[-240.839798,662.485688,-20.098869],[-234.204666,654.463898,-13.818489],[-233.884659,660.720185,-26.408485],[-227.300979,654.333405,-21.840110],[-212.029007,640.796295,-16.117057],[-226.680496,645.328766,-7.577278],[-218.074234,634.416046,-1.523246],[-214.942154,633.367035,-1.281433],[-213.836441,629.626313,0.507668],[-201.622024,619.849823,5.170243],[-212.829910,619.161164,-0.796157],[-215.683487,625.360688,-2.184234],[-211.071670,624.554962,1.003823],[-207.653274,624.350373,3.241509],[-201.713577,617.464081,5.998383],[-230.089554,653.613434,-16.293739],[-217.325577,643.462982,-13.319603],[-219.547806,642.951874,-9.785302],[-207.121231,629.768219,-2.405662],[-205.962662,631.314789,-5.974800],[-199.555069,623.635224,-0.673835],[-194.976883,624.527130,-8.144677],[-187.726334,616.571747,-2.926551],[-202.811172,630.130829,-7.789573],[-207.820206,627.506378,1.006691],[-201.211990,622.124176,2.817040],[-187.068252,611.976960,4.128640],[-178.192276,604.341706,5.736603],[-169.033279,597.587006,4.717476],[-179.548233,608.061859,1.500313],[-174.079605,604.843842,-1.325866],[-251.652664,672.989167,-27.373420],[-238.109756,653.794586,-10.828849],[-241.494766,653.166596,-11.771202],[-245.164932,658.013764,-13.216836],[-235.778580,648.918671,-8.864723],[-232.837173,648.422516,-7.919227],[-227.842300,643.120758,-5.405273],[-241.394485,637.406708,-11.759880],[-278.326736,639.465668,-49.612251],[-266.337295,636.595063,-36.178138],[-211.722732,603.722260,-2.036255],[-202.646255,601.916779,4.950783],[-192.182205,599.261200,8.760704],[-188.721023,600.503571,10.055237],[-206.233658,606.901947,3.507721],[-206.899002,602.617218,1.636086],[-216.442093,595.546906,-9.551765],[-210.248733,598.692780,-3.627136],[-183.129104,578.958161,13.462311],[-185.970779,576.924286,9.535256],[-193.117630,576.477631,2.501786],[-189.874344,578.689545,5.973114],[-196.014175,584.942047,3.014901],[-197.070511,582.349091,1.208420],[-197.664017,595.939606,7.409638],[-194.684402,592.216400,8.831704],[-189.040298,585.016205,10.810913],[-193.284256,585.317353,6.644287],[-184.468704,572.886566,8.187348],[-172.638931,565.544586,19.642243],[-168.850479,517.796173,-9.569526],[-179.422134,520.811920,-18.162468],[-177.733841,522.673920,-15.694877],[-175.711319,525.423737,-12.082237],[-166.812820,519.814545,-4.665268],[-174.126114,513.912995,-15.673835],[-176.554642,511.399628,-18.046241],[-191.887771,509.305390,-24.739341],[-178.723953,517.781281,-19.620644],[-185.063370,509.723603,-21.906242],[-168.711868,511.219696,-12.418160],[-170.452835,506.270539,-15.572868],[-175.334183,508.293061,-17.766090],[-160.887527,551.632904,25.415566],[-159.793533,544.451630,25.762223],[-153.020340,539.102875,28.498635],[-160.500687,537.820710,22.354409],[-159.642410,555.847626,27.107415],[-158.642959,563.348908,25.014725],[-163.566177,578.717560,20.121346],[-167.146011,554.641510,23.400696],[-166.599380,563.501435,22.520234],[-161.320450,568.078156,22.236748],[-163.951187,573.661225,20.997643],[-148.885879,512.171906,18.542443],[-150.106766,517.786042,21.284295],[-148.245560,519.110443,27.623001],[-137.844131,512.963898,33.847039],[-133.569290,513.650482,36.996674],[-127.738846,511.563080,39.049584],[-118.517715,501.132782,40.128502],[-113.170975,487.263092,41.037964],[-116.263138,487.055024,38.565071],[-114.062271,477.905915,37.037476],[-117.710709,477.568634,31.250588],[-123.607132,484.544281,27.933548],[-130.135574,492.215485,24.964920],[-129.293594,474.900727,12.674828],[-135.560257,477.118622,4.404473],[-139.570877,475.080536,-5.021797],[-145.506119,483.053009,-6.693855],[-147.755508,480.773590,-13.266822],[-158.493667,496.394684,-12.509636],[-154.895279,496.773712,-7.575660],[-125.382278,481.076752,22.206490],[-108.254349,465.625458,35.359558],[-104.779068,465.304779,38.918930],[-111.051590,461.741669,26.054863],[-114.911697,464.775299,23.395623],[-112.474563,469.497711,33.162011],[-109.405472,470.374726,38.273362],[-103.403519,470.347809,42.625206],[-98.979202,469.617340,43.128403],[-92.343094,470.050812,43.293068],[-79.247940,468.219757,31.773537],[-81.589920,483.261444,25.205941],[-83.733230,490.830536,12.586861],[-82.798355,487.985138,9.196358],[-84.077591,487.520905,2.534111],[-78.210464,474.214508,0.455994],[-79.363846,474.319001,-2.857307],[-78.902725,469.049103,-7.812996],[-75.768204,463.111298,-6.967903],[-78.097977,476.621003,5.702202],[-107.059219,473.495819,41.932503],[-101.996963,453.284760,29.423272],[-106.325027,452.788483,24.495804],[-113.625137,453.191986,15.454949],[-109.834732,443.777924,13.596337],[-114.925552,450.578095,11.471878],[-112.569778,442.491547,9.429016],[-120.927933,458.197724,8.341706],[-126.128311,458.045929,-0.181587],[-134.747635,467.585114,-4.248169],[-133.457046,472.965424,2.972023],[-119.693985,466.621003,18.833039],[-118.089493,471.455902,24.857354],[-128.969253,466.292084,3.376992],[-124.062881,465.749726,11.128312],[-110.172134,453.011933,19.405610],[-171.165359,498.502655,-19.885475],[-162.976456,495.652741,-16.239662],[-160.552322,489.659333,-18.327157],[-169.687271,494.618012,-20.916969],[-175.441055,497.694245,-22.226478],[-153.800491,488.417450,-13.802513],[-163.887894,485.908783,-23.469917],[-144.336990,465.737336,-15.555214],[-133.091812,448.337128,-12.536216],[-128.085037,452.383698,-5.703186],[-129.607498,458.788666,-4.169937],[-119.348831,449.065644,3.002343],[-137.105240,460.483307,-11.005973],[-141.630081,469.550080,-11.208351],[-188.885452,498.390900,-42.550407],[-163.410171,474.042328,-30.683235],[-158.586014,473.698883,-27.277702],[-161.150650,453.795868,-26.954476],[-160.917251,459.645783,-26.216316],[-157.525894,453.141693,-24.307487],[-150.082291,457.973358,-21.065315],[-148.867569,451.838471,-21.174400],[-141.433426,456.786530,-15.896186],[-136.990372,449.944733,-14.897942],[-124.441971,450.546540,-2.823265],[-153.176041,445.848664,-25.749122],[-155.440994,440.061249,-36.096748],[-155.104446,441.964081,-34.514657],[-157.191788,433.947724,-39.511589],[-166.033462,442.463349,-41.038140],[-175.678116,456.881317,-40.739799],[-185.683548,456.894623,-44.558494],[-201.255630,446.542084,-51.546501],[-211.111587,448.618500,-53.396096],[-217.379593,446.579193,-55.213402],[-223.534988,445.650116,-57.626533],[-230.766739,447.969757,-57.798133],[-215.499954,451.302521,-53.735664],[-152.161087,422.174530,-42.916100],[-152.460342,410.883698,-44.186027],[-150.689102,399.430268,-44.217888],[-144.470596,403.455475,-39.557060],[-132.974258,407.663239,-29.276330],[-133.180801,406.831330,-23.500938],[-135.569534,412.060150,-23.485344],[-128.663711,414.712067,-19.754784],[-125.456375,418.696137,-18.710731],[-132.678299,422.051911,-22.980110],[-135.717605,418.517426,-28.383827],[-124.362137,422.258820,-17.305580],[-124.239578,426.523163,-14.594123],[-131.353775,427.737580,-19.890907],[-125.850296,402.806183,-20.105262],[-121.847366,390.257904,-23.270837],[-117.624832,393.084687,-18.932014],[-119.853226,397.501557,-21.933982],[-112.165176,396.505097,-12.924415],[-109.156998,387.632904,-12.409752],[-112.795181,378.648407,-17.120506],[-111.035171,375.636994,-20.636345],[-105.137161,372.160309,-16.617576],[-103.757400,400.006745,-2.872772],[-100.590591,409.748810,4.902642],[-103.686905,410.422028,1.631615],[-100.414444,419.542939,10.483445],[-97.865616,413.017487,9.688141],[-93.000625,413.398590,17.279313],[-92.577896,420.247589,21.868485],[-80.830032,403.347077,25.554131],[-95.304275,410.570099,11.280327],[-92.124588,408.278290,13.405861],[-86.518936,397.830170,14.332146],[-87.792984,407.255707,19.243241],[-82.602249,390.881440,15.901406],[-94.175003,397.971161,6.530114],[-88.579849,386.957733,7.849045],[-90.294144,378.266754,2.339692],[-80.272110,377.870636,13.723313],[-85.890274,373.124115,5.803902],[-89.817886,368.773529,0.202263],[-100.786636,364.529999,-14.512977],[-106.397659,357.075531,-19.763543],[-116.590591,344.004425,-26.496101],[-127.739761,326.197602,-31.161857],[-140.149185,320.988373,-41.952827],[-139.162796,313.683350,-37.963508],[-131.573624,311.824005,-35.051186],[-124.737991,316.584931,-30.762931],[-127.334732,319.609101,-32.771659],[-131.688431,320.784211,-33.949958],[-132.695816,316.904938,-36.101326],[-137.529617,318.641693,-39.552330],[-124.138565,320.856781,-30.961083],[-101.033890,359.373322,-15.381890],[-96.492569,362.598847,-10.291618],[-93.300064,364.912323,-6.111053],[-90.587662,329.806061,-6.827598],[-86.945328,326.781647,-3.581504],[-75.932754,328.474030,10.981514],[-70.905411,321.117218,11.150330],[-77.981155,337.763398,13.667519],[-82.663895,335.393952,9.369332],[-83.578018,331.380890,1.608445],[-87.708084,335.568817,-4.000640],[-91.862015,339.868744,5.239708],[-93.111404,344.270905,2.297043],[-91.680191,350.563996,0.675423],[-91.703079,353.610871,-2.233520],[-90.498367,359.690949,-0.811195],[-90.898697,364.259186,-2.114227],[-87.216019,364.745758,3.267693],[-83.299087,363.496857,8.396851],[-80.226761,369.441010,11.836571],[-74.967361,380.055207,20.144448],[-76.514358,388.836029,22.494515],[-73.806778,399.722565,27.162300],[-72.148758,398.635956,28.045929],[-72.373794,402.806061,33.828705],[-71.449295,407.322846,37.222916],[-74.992386,404.410004,41.378670],[-78.510208,396.029694,24.347641],[-81.296463,399.880341,23.362770],[-73.062271,391.466706,24.888222],[-71.320084,392.662140,28.074562],[-71.000503,390.398041,32.820053],[-73.990311,394.952607,34.732094],[-58.496170,390.772003,41.844941],[-54.646194,391.391632,44.775528],[-53.468277,389.738556,40.539994],[-47.816055,389.917267,44.226639],[-46.105972,393.645111,52.563034],[-43.212662,388.782196,48.372239],[-41.586319,386.369965,49.439423],[-51.014908,372.397248,36.725754],[-54.907852,367.618256,31.643059],[-64.271194,358.763398,20.854500],[-72.710953,368.599152,17.902176],[-79.495560,365.090424,12.374276],[-74.321182,361.689667,16.630707],[-82.368240,355.492218,11.289467],[-86.869461,355.013886,7.644455],[-90.550003,346.864960,8.383095],[-87.709976,359.478119,4.110382],[-89.303604,355.074189,3.743111],[-71.942703,382.610810,21.901688],[-75.358658,369.212982,16.434601],[-76.389297,352.911042,15.529419],[-78.663589,347.003998,14.884125],[-65.894913,352.249909,20.347153],[-62.124039,350.240265,23.362603],[-60.378921,344.987030,25.044754],[-71.823807,397.957550,30.052338],[-74.766006,400.299530,36.947144],[-74.666946,397.769928,37.721054],[-63.173233,392.430268,41.234414],[-58.904800,392.089081,44.263985],[-61.859024,388.993561,39.208306],[-90.700882,341.190949,-5.191169],[-91.821670,339.563385,-7.872291],[-79.884170,329.833405,6.845040],[-96.757767,330.225922,-11.922477],[-94.093643,352.463532,-7.820488],[-94.720352,376.697113,-3.350242],[-92.647903,387.389496,3.671372],[-98.698929,368.983063,-11.593284],[-114.120010,374.399140,-25.168403],[-127.437393,366.440827,-36.568550],[-132.182632,362.597077,-41.236381],[-138.966324,352.642792,-49.729164],[-150.812576,366.583283,-51.996238],[-153.934830,374.224335,-51.412895],[-161.299271,376.161957,-53.595269],[-169.766861,375.380402,-56.197029],[-166.592667,368.555207,-57.151481],[-179.989090,372.073578,-59.025627],[-190.338150,389.066193,-59.013221],[-193.607620,394.539215,-58.954399],[-185.129166,398.958710,-57.845390],[-196.735672,403.480927,-59.933982],[-196.742142,421.103424,-57.629784],[-191.391617,420.490998,-56.376014],[-186.083572,427.216217,-52.425621],[-187.770706,432.314545,-51.732109],[-193.447281,440.724091,-50.897667],[-201.146255,438.648041,-54.369957],[-205.616531,442.618439,-54.201225],[-210.009659,440.475800,-57.766930],[-206.668899,436.285736,-56.863121],[-214.868362,435.004975,-57.984871],[-218.563064,435.827484,-62.692512],[-216.624893,435.942169,-66.506462],[-228.673721,448.087250,-69.241569],[-232.635330,453.855622,-71.570625],[-228.904007,458.353669,-75.620689],[-238.712479,465.278961,-70.042381],[-241.052688,461.289582,-67.859504],[-247.635818,463.706879,-61.735344],[-245.398880,458.332550,-55.163337],[-240.147171,454.269928,-58.636406],[-236.918838,451.104340,-58.117027],[-233.412735,448.127472,-60.172721],[-223.965469,443.871308,-59.983360],[-224.263504,441.582367,-65.041069],[-212.454788,443.000092,-55.621360],[-215.715713,437.505036,-57.471489],[-221.747696,439.440277,-59.654670],[-221.594009,438.029023,-61.328956],[-236.470901,450.678253,-62.557885],[-242.739883,454.649384,-60.989036],[-242.250503,457.061127,-65.032722],[-236.814773,454.790680,-68.857079],[-235.213455,458.417328,-72.169624],[-221.015579,442.274323,-59.207878],[-194.156631,449.820465,-48.715965],[-173.735733,447.660248,-42.692253],[-161.933975,428.682343,-43.436943],[-174.979385,417.877594,-53.948112],[-169.278274,414.289887,-52.447654],[-166.274917,418.618012,-50.642540],[-169.022842,420.162812,-51.061638],[-159.571121,419.623993,-47.318245],[-158.246048,422.584565,-45.796577],[-160.264725,425.483002,-43.986900],[-179.177627,444.756073,-45.290459],[-174.743545,443.800751,-44.136894],[-167.949905,434.162812,-44.183098],[-249.104751,460.207489,-58.191566],[-243.044632,454.895722,-59.515343],[-195.589004,433.865998,-54.144188],[-204.198685,426.163849,-60.260323],[-198.688370,423.268891,-57.491127],[-202.842117,423.406037,-60.640724],[-206.703689,425.735443,-67.278785],[-208.126114,432.388214,-70.350456],[-190.693069,427.014801,-54.263420],[-200.958084,430.936249,-58.112297],[-206.567093,433.025055,-58.172859],[-187.128189,418.045258,-58.972161],[-197.237869,410.956696,-60.913963],[-192.595779,416.544770,-61.084312],[-163.805313,381.801606,-53.115746],[-168.376724,388.287445,-53.762657],[-165.874344,393.449677,-52.203789],[-156.043167,396.347443,-47.461297],[-143.656937,399.450714,-39.791343],[-133.251541,400.627777,-32.045997],[-135.919815,395.506501,-35.152473],[-121.485428,394.696991,-25.335915],[-127.210525,372.750397,-34.772042],[-134.496353,379.771393,-37.137291],[-146.738235,385.923310,-44.063911],[-150.138260,395.648468,-44.649421],[-158.535171,391.729279,-49.867042],[-152.183609,385.274567,-47.215995],[-107.048660,368.333954,-19.407508],[-109.727676,361.533539,-22.580360],[-114.527420,352.386200,-25.791801],[-121.804581,336.578034,-29.082847],[-115.658707,369.178131,-27.395837],[-115.309769,361.502106,-26.935142],[-123.006973,359.370270,-33.051200],[-117.873978,355.425812,-28.627708],[-122.018387,348.142365,-30.089286],[-121.795730,363.100190,-31.729423],[-126.464126,354.265717,-33.951729],[-131.233108,342.464630,-34.955422],[-140.923111,347.360077,-44.352470],[-139.895462,349.563813,-51.007133],[-144.652420,355.066010,-51.517982],[-159.049332,362.845490,-56.281593],[-158.663895,368.097260,-55.738243],[-164.182022,371.388275,-55.501519],[-165.442337,365.683625,-59.290535],[-169.981338,363.692108,-61.557685],[-183.809891,355.744965,-63.478004],[-196.486893,361.826081,-65.740593],[-203.682388,365.193756,-62.609428],[-200.677933,362.317963,-68.138298],[-203.489395,363.822785,-70.029869],[-206.026077,366.325836,-73.411003],[-198.769485,374.004181,-83.948769],[-193.579971,377.326203,-86.948326],[-187.591995,385.476410,-89.484672],[-179.574051,382.963288,-90.508567],[-176.607071,378.074005,-90.489814],[-169.396561,374.845734,-89.552589],[-154.033951,368.644867,-84.887153],[-149.581619,384.530182,-86.961723],[-152.558914,380.367157,-87.515281],[-144.888870,395.501801,-85.434089],[-160.104202,398.688996,-88.182182],[-168.131302,401.105927,-88.889473],[-179.131851,418.000580,-88.733666],[-186.020035,423.392304,-87.793251],[-191.885696,420.377777,-87.536522],[-196.206741,425.027619,-85.259452],[-199.229141,416.015961,-86.394447],[-204.367508,403.399506,-85.427284],[-213.630630,396.405060,-78.530937],[-216.670608,397.920014,-74.022743],[-218.041275,388.396454,-74.192588],[-220.240127,391.824066,-68.024452],[-218.397110,396.893586,-68.449165],[-221.109329,386.520111,-63.774879],[-218.084854,383.201325,-61.715767],[-208.015823,373.594330,-61.303672],[-211.256668,384.657257,-61.403679],[-197.937881,385.396454,-59.841987],[-197.634109,380.106964,-60.311409],[-197.096756,375.467072,-60.299554],[-209.739517,368.510773,-62.922783],[-212.017959,367.445282,-65.334266],[-217.081192,371.023407,-66.555107],[-216.193252,373.280426,-62.750465],[-220.691666,378.275727,-63.067161],[-222.178726,379.956208,-65.760444],[-221.894485,384.197357,-68.580590],[-205.175552,380.950775,-60.660148],[-201.177566,408.985749,-86.490074],[-196.877518,390.968781,-88.342857],[-199.341751,384.802704,-86.320488],[-210.651565,399.446381,-81.105323],[-203.429397,393.139801,-85.817330],[-208.657669,392.889862,-82.569221],[-215.344803,383.418122,-76.739555],[-219.573807,375.028046,-68.469535],[-211.026321,377.462494,-78.969093],[-205.909134,375.690399,-81.645591],[-211.278946,374.403900,-77.714943],[-209.766495,383.934845,-81.013497],[-204.897354,387.237336,-84.361335],[-199.443375,377.472321,-85.093544],[-140.847916,382.982392,-84.145713],[-136.363968,375.973236,-80.394645],[-133.382950,371.448822,-79.426628],[-135.579239,352.879608,-76.427147],[-137.210342,348.835053,-75.233207],[-122.076675,371.182038,-75.683494],[-114.961441,358.292633,-71.277946],[-107.060684,365.282440,-68.660179],[-140.753189,369.178803,-81.630685],[-140.144546,351.238739,-76.830146],[-143.382950,356.485627,-79.385032],[-147.132584,403.015473,-85.643760],[-150.798782,409.913910,-86.057731],[-154.704849,413.059052,-86.654441],[-161.032608,418.066193,-87.361091],[-165.358292,412.402191,-88.029427],[-139.299332,403.881928,-82.793815],[-186.253921,369.888214,-86.387169],[-188.604568,354.445649,-82.672584],[-190.512771,344.790131,-74.652046],[-181.058121,345.228180,-78.442498],[-167.472427,343.577973,-74.393318],[-158.065872,342.904633,-70.210853],[-154.368973,341.850556,-66.128884],[-148.228287,340.187043,-67.883842],[-148.990799,344.166901,-69.853035],[-152.181778,344.763764,-72.003593],[-162.994949,348.917633,-80.020241],[-156.964798,358.644257,-84.432930],[-147.161148,361.441742,-82.409736],[-154.234817,364.165436,-85.099953],[-148.413772,355.071808,-80.361000],[-151.707352,350.581269,-78.329979],[-168.879043,363.155854,-87.629525],[-173.413040,357.794648,-86.431877],[-154.794021,346.101715,-74.561409],[-208.293533,365.217804,-67.671608],[-214.388992,370.347687,-70.235557],[-201.686172,357.357209,-66.105233],[-194.884415,359.628998,-65.148079],[-189.436722,351.945221,-62.803535],[-185.689957,345.409882,-60.994789],[-179.064102,343.040924,-60.488563],[-184.959366,342.608185,-62.560981],[-178.481521,341.321869,-66.594062],[-192.354141,343.508759,-70.564965],[-182.640518,342.530243,-73.717750],[-169.663589,343.664765,-58.898124],[-166.038223,342.550629,-59.902702],[-165.444351,351.876740,-57.791603],[-172.014053,346.232392,-58.274361],[-182.401993,348.292389,-60.528358],[-175.003555,349.949128,-59.531715],[-163.996414,347.766022,-56.610664],[-164.078201,355.881745,-58.215461],[-174.397049,341.907013,-62.194999],[-160.332962,341.586212,-65.222694],[-153.687454,339.986847,-63.909172],[-155.680740,341.509674,-59.439216],[-150.026871,340.649933,-53.003990],[-147.591934,346.238068,-54.001565],[-143.356399,343.983246,-52.301628],[-141.475723,338.266632,-50.266136],[-140.867142,341.993012,-48.182029],[-142.702774,330.974579,-45.840385],[-145.228592,331.823761,-38.144691],[-144.255508,337.787323,-39.918296],[-133.959305,331.066376,-33.711433],[-140.968155,325.711701,-35.811546],[-143.239395,323.798737,-38.777031],[-145.227554,326.918427,-38.179817],[-145.985550,328.047760,-40.533195],[-140.958633,322.599945,-40.303962],[-157.870804,331.381867,-53.213035],[-164.661209,321.491547,-54.438484],[-162.626785,323.967011,-51.139488],[-166.878616,315.043610,-50.125312],[-167.077347,312.447174,-45.830513],[-166.534866,305.882325,-43.050010],[-163.721817,299.751343,-42.494880],[-163.491531,301.509400,-40.696083],[-164.996048,319.168732,-48.716758],[-160.229568,325.076996,-50.055015],[-156.045669,322.812958,-47.561561],[-148.732803,323.760956,-46.578117],[-148.201126,316.114991,-42.027092],[-149.148880,311.636109,-40.138481],[-144.066299,299.099152,-37.783363],[-152.828140,295.426941,-38.359275],[-147.679581,297.420868,-37.967002],[-139.898453,293.859040,-37.398552],[-140.973892,290.708283,-38.589271],[-152.505630,291.587067,-41.640403],[-150.916946,291.299439,-44.589439],[-150.319168,292.083222,-39.005195],[-143.694595,321.002961,-43.582252],[-127.907608,308.017823,-33.030021],[-163.673233,316.275177,-45.933708],[-157.383804,312.364380,-42.461113],[-159.473038,307.302857,-40.613197],[-164.167679,308.309845,-42.376579],[-161.759109,325.019196,-59.467033],[-154.909073,323.653412,-65.344490],[-153.118423,336.885590,-64.357444],[-155.393326,338.409455,-58.984184],[-142.048660,342.575714,-71.779365],[-146.836868,336.578461,-70.091316],[-144.213821,325.757355,-46.274529],[-148.741226,329.232025,-48.887565],[-148.953812,333.590424,-51.134880],[-155.580521,336.218964,-54.193596],[-158.447769,334.224335,-58.616630],[-158.674698,328.052521,-62.735756],[-155.164627,332.522065,-65.561729],[-142.231338,326.428864,-44.597541],[-143.442581,334.439484,-50.279854],[-141.861893,334.327851,-48.175193],[-137.837662,336.969696,-36.050056],[-146.732559,333.620697,-41.418922],[-143.001297,336.444672,-46.030082],[-144.599075,340.309418,-42.949684],[-152.802383,341.365937,-55.680000],[-151.674087,348.629486,-54.062721],[-157.416763,341.872406,-62.509071],[-159.511246,343.170929,-59.360740],[-162.067825,344.199677,-57.198616],[-154.605301,345.322602,-55.381112],[-174.049332,341.533600,-69.626579],[-174.633499,342.497284,-73.435875],[-178.427505,362.764740,-63.067071],[-155.269546,353.966950,-54.960167],[-158.381119,350.105988,-55.051368],[-139.960586,345.321869,-49.786857],[-136.734695,353.573273,-46.223976],[-137.587906,349.582489,-41.462410],[-133.120438,356.331574,-41.387642],[-137.718704,344.201081,-38.589332],[-129.424454,349.003022,-34.764167],[-128.190567,339.706879,-32.545967],[-123.014480,339.763764,-30.066566],[-109.353409,352.347931,-22.096168],[-99.534256,380.560761,-7.136100],[-102.367813,383.772980,-7.512733],[-103.685623,375.957367,-13.531228],[-106.032425,378.820343,-11.945488],[-112.042251,376.782624,-17.995735],[-116.224136,387.968476,-17.972786],[-121.501175,387.514435,-27.393959],[-128.202957,391.179901,-31.517295],[-128.640213,380.315827,-33.446067],[-123.258499,383.482636,-29.899361],[-120.230972,383.007538,-22.703132],[-120.328995,385.363556,-21.433067],[-118.279861,381.430573,-26.516533],[-116.362076,378.414582,-25.599266],[-115.415237,378.883271,-23.841270],[-120.050979,371.618317,-30.222848],[-115.009354,378.448578,-19.634727],[-130.213516,405.714936,-20.635734],[-127.916031,402.163849,-23.480354],[-126.228287,400.564545,-26.631324],[-151.340530,442.403290,-25.784095],[-145.545303,448.607270,-20.274726],[-148.004166,438.967255,-28.449607],[-120.194900,400.551911,-19.391456],[-114.663223,405.400482,-12.674018],[-111.320084,423.974152,-1.854591],[-113.934769,432.410004,-0.925689],[-126.195633,439.926728,-11.176841],[-119.462723,434.591278,-8.166557],[-135.720657,440.225251,-17.708337],[-134.505264,431.768524,-22.166314],[-145.123611,435.016327,-30.282844],[-146.855423,432.937592,-33.561959],[-133.581924,435.167206,-18.645210],[-141.851211,444.575592,-19.286201],[-142.459732,439.627961,-21.916511],[-144.534622,444.606720,-21.549659],[-145.466263,440.455780,-25.429557],[-141.482315,436.922333,-23.382377],[-117.885025,439.278717,-1.962249],[-121.604202,443.601837,-3.934814],[-112.768570,438.980378,6.474396],[-95.821060,417.744232,15.532486],[-85.606460,422.201935,30.398659],[-86.723831,433.287690,30.281807],[-93.183060,431.485321,25.652947],[-89.158462,422.853363,27.244606],[-94.960892,429.368073,23.226998],[-109.772476,407.285919,-6.763252],[-100.712845,389.289643,-3.849998],[-108.225296,400.543000,-7.465080],[-70.878860,398.208466,53.412682],[-75.046219,392.774994,58.433586],[-72.313797,389.279328,58.436383],[-68.700821,388.927094,57.306214],[-65.348892,395.581086,65.776738],[-60.555069,403.354279,71.572235],[-41.089432,408.811920,72.284027],[-39.927444,404.831024,70.068341],[-41.962051,403.901520,66.534542],[-41.302017,397.195282,60.646229],[-44.103836,396.238007,57.597527],[-50.525711,392.367279,48.387566],[-53.990677,393.601410,53.306748],[-63.217789,392.748017,59.030247],[-70.328384,389.400544,55.213463],[-53.807632,401.012299,66.773007],[-50.482010,395.845368,56.394341],[-55.354324,395.132355,57.689766],[-41.577469,390.834320,53.599190],[-64.927017,395.514191,45.786614],[-66.798050,397.795197,47.745675],[-61.663345,391.730866,54.285233],[-44.781509,408.358002,69.602703],[-45.369400,400.658356,62.219365],[-49.342056,405.771210,68.774399],[-49.805740,400.321259,63.028111],[-57.254166,398.418488,64.734055],[-48.069656,394.952179,54.176270],[-74.123611,394.020294,63.865738],[-69.161880,394.068512,65.195889],[-70.387710,401.732025,52.844635],[-49.629288,415.722077,75.974331],[-53.384720,412.525605,76.284974],[-56.594742,414.469635,79.536595],[-47.543960,411.311920,72.410950],[-44.373733,422.155915,77.702916],[-47.580521,431.389740,77.901200],[-46.518143,420.402619,75.420685],[-43.635635,412.752838,72.359089],[-38.477432,418.109894,83.293980],[-41.495254,418.341400,78.736596],[-42.226334,413.769135,73.880837],[-36.582107,399.429596,73.014336],[-37.219742,396.988678,69.898320],[-39.601761,394.329499,60.222573],[-38.877640,413.166352,83.171845],[-38.135269,407.105805,77.822571],[-35.647354,407.410614,87.051407],[-67.564529,417.109284,81.432145],[-68.718521,415.489228,79.157933],[-70.515518,417.178925,75.498276],[-65.440750,418.401642,82.935864],[-63.255020,414.826386,80.756882],[-53.068375,416.923920,76.896325],[-42.849747,445.528656,87.379574],[-30.748794,455.557343,96.592049],[-29.064163,448.495453,97.739743],[-26.485672,439.337067,96.621436],[-30.006485,437.549774,97.404442],[-27.064834,452.222687,96.009581],[-36.695755,458.306610,94.551035],[-37.409561,450.415802,97.013476],[-39.747513,447.666535,91.310458],[-36.308121,441.410553,95.116948],[-33.217789,439.686859,97.943087],[-35.299698,446.186310,98.462204],[-40.639175,458.058686,92.299836],[-38.800186,449.026520,95.919377],[-29.059219,462.938141,99.924466],[-34.665787,467.922150,97.236380],[-38.467483,472.155915,93.562724],[-21.972061,455.393036,98.804324],[-20.374405,454.143280,107.074851],[-20.428848,445.844269,110.015860],[-19.907486,431.627961,117.666780],[-20.504532,432.705414,115.068419],[-20.424820,410.002716,119.684970],[-21.058670,415.333161,115.574976],[-21.302322,425.103363,113.229267],[-19.000503,457.160126,115.242619],[-15.862198,444.512482,121.475781],[-17.194595,448.095185,117.710222],[-18.824661,451.668610,113.056497],[-21.276016,461.723664,108.024392],[-21.560379,428.068329,97.616806],[-21.549271,434.625885,105.129078],[-21.063919,450.739044,98.462872],[-5.714920,448.720612,143.721236],[4.291428,437.049042,141.503977],[12.262497,435.100983,144.719736],[13.315476,438.391388,148.083508],[17.712326,441.147370,153.816216],[25.453598,440.131012,155.208371],[29.896164,434.528107,146.839394],[24.045578,431.054169,144.567955],[22.494980,425.483002,143.227259],[28.261643,427.497650,142.227635],[32.475510,426.915314,139.803599],[36.579514,405.307038,133.831778],[32.397324,400.561127,135.981439],[30.498764,391.749359,135.375160],[22.611740,397.183503,139.805842],[20.633530,383.392121,136.964663],[15.895310,394.849457,140.124361],[-1.448807,401.089997,139.263600],[-2.720108,408.793366,137.865990],[1.807541,412.811188,138.816788],[-2.593460,424.845856,135.973978],[5.157211,439.566254,144.216414],[0.653854,439.856476,140.884396],[-1.926712,443.912384,143.060513],[0.169235,448.885651,150.880206],[-3.760757,454.609650,150.013438],[1.813278,454.654084,155.210621],[11.269272,453.648774,161.359009],[6.515366,464.823395,159.743710],[11.560410,458.926728,162.341988],[11.616196,466.439850,161.810611],[13.007492,470.985321,161.839981],[26.454575,473.931671,160.982952],[22.322861,474.681855,162.924576],[17.797592,470.501740,162.773655],[29.684311,480.516022,164.665566],[25.720322,485.535065,161.326634],[37.043381,488.161469,161.899739],[44.622360,492.621430,154.717865],[50.864670,493.344940,153.989701],[53.716049,492.756806,144.539091],[65.556137,496.356720,121.621641],[61.253281,492.621979,132.391106],[61.666855,502.118561,123.253658],[56.381210,500.859406,130.837102],[53.069443,508.858979,128.793329],[53.997849,512.207367,127.978422],[53.739670,516.675568,125.759815],[44.917709,515.928192,129.153879],[46.988083,528.516510,134.424616],[55.710739,529.810395,127.472745],[55.268356,532.682160,124.824874],[52.855148,544.145294,118.642774],[46.276474,551.084503,115.378797],[40.818649,566.509796,111.304697],[39.693222,570.797943,110.140851],[47.243881,509.142121,131.821556],[43.872421,513.691559,133.329282],[44.792221,513.723419,140.536377],[44.350449,512.865937,147.278397],[45.305344,505.462067,161.326977],[45.995285,499.262055,165.913117],[45.911179,496.548920,161.434414],[42.912277,492.293488,160.529244],[43.297104,488.921112,159.674046],[33.710007,494.990326,157.724984],[29.455124,495.548981,161.961766],[28.551071,497.251190,161.584267],[26.755783,497.112274,156.095105],[23.359116,496.645172,156.102051],[15.644821,491.094391,157.862114],[11.448837,482.878083,159.851735],[4.788498,482.097748,156.989594],[-0.197159,474.024506,155.001152],[3.371201,460.768036,157.682717],[-2.423050,486.486176,151.886073],[-6.111587,498.141999,145.591999],[7.221054,473.653107,159.451596],[16.098251,481.735932,161.245251],[22.554916,488.861359,159.395062],[27.000290,492.772431,157.523552],[38.864304,491.753815,161.452507],[48.951584,496.888031,158.086598],[49.752182,489.933625,150.380600],[43.856796,508.454743,155.190239],[51.077500,496.047577,153.580502],[50.063156,500.551667,145.581631],[48.199509,500.629547,151.944790],[46.574509,508.101654,145.058245],[50.479355,494.530732,147.226950],[55.694748,494.559174,139.956814],[50.494919,502.937165,140.586663],[53.562424,501.613251,134.927328],[48.078049,507.111542,138.064885],[53.129318,504.261139,131.802574],[48.436203,499.637909,158.091477],[48.242233,498.696320,160.701306],[44.964462,495.758942,154.654454],[53.638474,488.431305,147.209431],[62.619431,478.429169,138.097182],[55.981308,477.594391,150.854546],[58.405502,470.567475,146.744549],[57.045822,463.289460,147.941517],[46.981491,467.420685,159.169060],[36.548142,465.864838,162.948421],[32.620407,468.000519,164.326722],[32.747788,474.149689,165.604729],[31.240036,476.031586,161.979157],[37.862534,478.286042,160.790429],[39.291245,476.783539,160.617630],[44.169357,476.938813,157.600182],[44.354721,475.992279,159.089032],[48.705063,473.117646,159.063362],[54.616745,464.662079,150.672520],[45.295578,479.563446,161.126065],[41.446213,483.924897,164.990685],[33.964462,484.790436,164.103562],[27.991684,477.379547,164.680523],[44.623947,485.265351,161.686444],[48.750839,481.351166,159.667008],[51.141708,476.483185,155.508801],[50.506821,482.562958,156.068058],[47.368515,489.552826,152.902333],[55.454880,475.352509,151.909359],[54.053085,472.362336,152.305920],[50.920517,469.978852,153.060452],[47.921921,474.224823,154.449509],[40.847641,479.738495,163.651532],[37.731979,475.434052,164.905194],[48.582504,471.265290,159.863411],[44.594467,471.090607,163.523838],[36.447189,471.971527,166.267659],[45.584702,473.920563,162.391003],[47.861862,464.480683,157.710617],[39.702255,460.477326,167.042336],[32.065720,461.391510,165.949967],[26.070419,458.649811,166.329155],[24.115952,455.336457,166.963223],[29.342758,449.843170,168.990765],[29.832321,446.827851,167.309540],[33.752182,444.494294,165.335362],[32.360153,442.256806,160.047215],[36.164291,440.920929,156.287438],[45.242233,439.519989,144.814160],[45.055832,444.227021,160.417160],[40.193771,444.345612,164.652359],[33.293442,450.256806,170.654976],[32.197495,453.038544,170.617089],[36.374558,447.135102,169.085083],[39.297531,464.172089,162.646920],[40.158249,468.036896,162.156243],[17.429245,466.544586,162.848122],[21.079697,460.460236,164.509934],[19.008896,455.274750,165.037369],[20.670334,451.605805,165.638821],[18.179916,448.230988,163.216423],[9.894943,443.706696,152.862654],[12.025375,446.418671,157.714501],[5.234116,446.861664,153.301464],[6.670883,450.086151,156.906033],[22.595810,467.814179,162.981606],[31.386154,463.753693,164.609841],[53.739670,456.400238,153.582579],[54.113571,442.907257,136.957852],[50.890244,436.853852,123.205407],[49.591599,434.446564,119.985022],[52.052658,436.752838,107.276309],[51.014084,432.490937,95.845858],[52.168869,440.227875,95.024090],[53.983139,444.823090,97.333552],[45.871933,442.888703,78.154160],[48.073532,447.084870,74.031033],[55.118576,459.190522,81.257840],[68.512131,456.863190,78.584904],[74.483261,459.987641,79.886547],[76.718369,464.651215,81.442974],[80.019638,464.600495,78.905991],[77.253830,460.629120,76.277619],[86.121689,472.386811,64.907494],[90.259873,479.632843,64.152535],[88.663010,486.811188,61.328743],[82.595017,495.999482,65.038803],[80.566025,497.544220,55.681023],[77.958664,501.187043,52.043747],[75.446762,506.053376,50.114350],[91.138168,481.812226,61.813622],[79.984909,466.450104,69.938900],[82.446274,474.561493,79.132172],[79.440292,477.462311,83.265850],[78.756333,472.193512,82.898095],[70.641525,477.737580,84.518841],[69.342331,488.899262,91.496697],[65.199692,483.874237,90.810835],[63.231064,477.257477,85.546818],[65.674484,471.993378,84.621727],[66.814865,467.824616,80.756897],[67.283127,461.916291,81.277359],[62.564926,475.452790,85.607258],[63.985214,472.412628,88.868416],[66.948715,466.597565,89.318802],[66.238632,464.075592,84.230339],[64.100632,461.514679,84.311528],[63.083847,459.207672,81.920750],[65.424729,470.126252,103.162047],[63.712326,472.196076,94.934767],[65.009506,481.206757,94.043908],[66.227036,490.276581,92.341328],[65.868637,495.329804,91.341030],[81.727097,509.287995,73.389187],[82.702072,503.142121,70.091374],[81.040085,499.769623,58.945240],[80.304611,516.315094,75.963715],[80.436447,507.130951,79.892674],[78.013474,522.720673,80.359219],[77.748215,513.071015,83.060219],[74.417099,535.438935,84.874012],[73.791916,539.959137,74.573174],[71.172104,543.692902,71.251179],[73.251083,540.494660,80.990994],[69.988937,545.742646,80.137410],[66.309677,548.861176,89.701367],[62.044357,539.169342,108.452428],[64.993942,525.908234,114.271642],[68.223557,517.632721,113.652501],[69.065292,512.416962,109.633134],[68.271286,501.973908,104.936415],[60.315964,507.259919,123.292891],[57.782456,507.616486,126.667159],[59.486191,513.507355,122.186932],[66.757004,517.785614,117.970072],[64.393540,523.737641,120.140845],[58.315231,526.100617,125.368495],[52.253281,529.782868,130.663014],[60.590256,526.522431,123.957637],[60.437424,530.614106,119.068121],[58.078110,539.271271,116.309235],[50.047226,525.074921,129.977976],[53.214707,523.063813,127.434677],[49.948349,519.144562,127.080363],[64.088608,517.989594,120.551055],[58.951401,505.641022,126.863915],[63.474472,502.052643,118.297672],[62.102829,499.601837,123.812675],[65.301132,481.977875,131.085181],[62.481857,472.631256,139.204701],[58.134262,456.744599,145.707779],[62.286301,484.924958,136.238839],[64.841904,489.766388,128.435564],[64.509873,473.171967,134.432779],[64.337875,461.468293,130.076189],[61.272446,453.975922,135.377130],[57.036911,450.676178,145.700014],[61.979660,466.973847,139.886898],[64.126999,464.120453,133.071938],[59.913864,456.104340,141.405901],[64.979660,502.309174,113.328328],[67.499619,496.191986,115.882358],[68.867722,493.955780,111.211606],[68.050888,496.395905,99.807192],[66.860581,502.066620,94.025431],[67.416000,502.680878,92.092005],[67.941574,492.574128,118.666178],[67.697678,486.058686,121.943661],[69.037827,487.803437,115.352525],[68.510056,478.909027,116.901844],[69.427963,484.719086,109.287702],[67.834335,487.836396,100.379341],[65.677719,488.221405,93.444765],[67.875168,477.727082,103.824101],[68.467941,477.152253,111.113501],[66.138535,467.669464,110.960146],[65.786057,463.657318,116.663433],[62.042404,451.704682,128.524001],[63.165329,454.270111,124.136300],[59.026474,449.057953,137.283005],[58.672836,445.517365,127.079070],[55.621079,445.810944,142.403271],[63.236618,455.484711,116.259135],[63.016403,459.028168,108.690611],[59.242478,459.276337,94.173180],[54.732407,453.433808,89.417061],[52.238144,456.085480,83.438862],[51.517868,456.063080,79.766842],[49.071457,452.586090,80.277317],[62.696823,461.890168,103.991005],[66.590500,478.105500,127.287159],[67.447189,475.888275,122.085641],[67.320908,471.946015,118.292185],[65.877182,467.869599,126.208225],[65.593369,463.668976,122.390080],[58.191635,543.032807,111.721320],[65.140671,533.113434,104.518256],[66.537888,523.207123,110.310419],[67.121384,520.303681,105.058012],[67.733261,512.219940,100.990073],[67.933701,508.200287,100.455243],[68.301315,498.324738,103.970015],[62.922958,540.688080,100.598542],[69.713852,537.102448,93.989449],[65.997360,527.887421,99.701443],[66.488449,517.807404,95.879395],[70.286362,523.210724,90.860110],[64.643295,549.257233,96.716227],[67.156418,515.606842,93.602929],[66.984177,508.232514,93.980179],[70.810532,506.964997,91.643879],[66.419296,529.153717,94.807526],[65.258286,534.783295,96.424631],[64.474228,538.351105,95.849469],[61.822312,543.305146,97.469967],[72.132248,541.260224,85.719067],[72.111313,539.068451,88.967335],[73.000290,535.389557,88.566704],[68.774399,541.851471,94.439539],[66.967209,546.749298,94.736836],[71.360825,532.505402,91.348099],[75.542587,527.367157,84.320214],[74.422104,518.017060,86.675980],[66.585495,519.725251,94.209988],[67.646286,548.177216,72.943356],[65.697739,550.462860,77.861992],[61.409409,554.316803,86.266224],[76.541123,532.410675,79.164479],[77.224716,532.199616,74.283570],[76.946335,532.705719,68.129582],[78.519333,522.766327,61.908577],[81.680344,507.853974,63.081265],[79.387863,522.579804,64.334134],[79.927231,521.467499,68.742562],[75.885605,534.269074,65.919743],[77.021958,529.598175,63.080876],[76.922531,513.895600,56.594262],[64.365769,470.272492,93.141404],[62.078598,465.668732,96.384537],[66.983078,463.596222,92.579115],[59.339707,461.125397,85.538994],[56.025253,460.146454,87.514214],[65.386032,468.074066,84.010083],[71.848862,459.495758,72.426289],[50.794724,440.356598,90.370037],[47.045273,443.661103,81.839066],[48.191513,432.907746,75.911995],[53.297348,453.866608,70.908463],[46.065292,441.990265,75.680970],[54.809494,441.538849,109.840360],[60.194260,449.631806,112.234673],[59.425583,452.896210,103.636637],[51.740036,435.852997,111.490784],[54.273422,439.760712,114.128724],[60.864060,448.497650,121.307598],[57.105820,443.515778,125.862916],[59.164169,488.369232,139.446982],[55.733444,481.088593,149.284748],[30.217148,491.154694,158.232933],[-5.514480,442.142731,136.082418],[-1.257400,436.630524,137.214541],[1.974472,429.199738,137.931612],[6.607651,422.785981,139.905085],[7.644577,432.661347,141.247334],[10.555527,428.042450,141.343411],[17.144516,432.394806,144.668578],[22.416916,435.597260,148.594305],[22.829819,420.773957,142.759409],[25.629196,406.600861,141.572243],[27.486435,398.264801,138.256201],[26.219406,414.648224,142.015694],[30.507187,409.840607,139.670399],[31.280014,419.891815,139.654076],[-0.250687,556.459198,121.374142],[1.522568,551.110321,122.848097],[13.843186,548.575226,128.633798],[15.605515,544.449738,132.690306],[9.366440,531.573883,142.637049],[-0.340225,523.292755,142.911490],[3.807297,529.288178,142.322142],[20.155014,536.411042,139.419398],[13.138229,536.542816,138.808136],[22.827377,528.286225,141.186343],[20.110581,524.493805,140.937310],[15.070358,522.823029,140.744852],[6.981064,522.314240,142.463835],[-8.237808,505.373017,139.491537],[1.831589,505.835785,144.524399],[1.193833,499.933747,148.631953],[3.841416,511.011444,144.343325],[1.855698,512.932038,141.256775],[-2.945389,509.166962,139.133778],[1.598984,517.893647,142.287440],[5.350632,517.229706,142.374895],[9.338974,516.755158,144.133442],[13.897202,517.656769,143.478636],[11.798264,512.953400,145.185467],[11.220566,520.727021,141.890744],[8.256027,509.961945,146.311430],[16.413315,508.407685,146.391413],[5.204941,512.812165,143.988787],[22.686752,505.643036,150.377188],[12.486435,500.823700,152.028424],[7.028183,498.411286,152.096926],[1.353684,494.397187,151.736626],[7.764328,492.146881,155.324196],[13.274033,497.119477,154.601712],[22.676865,500.460907,154.077404],[29.993698,502.092499,157.067768],[37.640061,515.733490,151.532450],[37.065231,509.796601,157.951992],[33.219711,508.160797,155.570130],[28.406845,503.826264,154.257943],[9.848374,505.589997,147.393877],[-1.906875,516.862274,142.661509],[-8.854935,508.150238,138.759076],[4.065292,523.570832,143.351668],[14.483139,533.034760,142.509060],[14.619248,530.281281,142.414765],[8.104721,546.421540,129.306953],[6.944748,536.512909,137.094834],[-9.525284,567.813141,99.853032],[-8.593582,568.057709,91.829710],[-14.997452,558.558747,100.123696],[-13.551346,563.318878,95.934243],[-25.016617,553.745636,99.378287],[-32.831131,556.031403,96.923146],[-38.023453,545.463837,85.330857],[-36.851334,554.863983,94.913371],[-37.376175,548.280976,84.222577],[-28.400711,555.274750,82.483429],[-21.238296,559.004303,84.111714],[-20.505081,556.936982,79.293423],[-12.855728,560.464264,78.743485],[4.040329,567.561310,72.387852],[17.683701,576.160187,109.318735],[22.261643,577.386933,112.475094],[22.623337,572.899018,113.575311],[23.392380,567.096466,115.908516],[21.298203,565.958710,116.773556],[30.058029,576.824311,111.856667],[25.430832,576.698151,113.371926],[20.977280,580.407379,111.499470],[30.679978,551.323700,124.538566],[25.031418,549.708344,127.779836],[17.102951,552.753998,124.385391],[16.633469,555.954804,120.979662],[13.674973,564.788849,120.245676],[7.117172,564.147003,124.380515],[11.691269,566.186982,119.544330],[2.437302,567.521759,116.267553],[-1.113541,567.862030,111.759650],[-0.821426,565.058136,118.985977],[-5.179214,565.881806,111.156609],[-2.462967,569.338715,107.828262],[-8.773270,568.664215,108.364938],[-6.781875,571.538361,101.621521],[7.698471,567.713349,117.724663],[13.369309,572.183380,111.972705],[3.796311,573.965302,102.146086],[3.072739,571.220795,106.897184],[-5.936600,571.378144,105.521422],[1.145126,575.466400,99.920016],[6.809799,578.240265,99.908978],[10.505356,579.354523,102.996329],[1.705307,575.854889,94.902806],[9.705979,579.831513,90.153347],[15.902451,583.131317,95.552056],[15.009262,580.783539,107.383192],[15.281967,582.423676,101.377346],[9.657700,580.439972,95.801392],[-1.613724,571.327484,88.350274],[23.002548,557.081024,118.659446],[40.185776,548.337555,124.135485],[42.589951,551.146515,118.904083],[32.999069,556.067047,117.047538],[42.748825,571.118561,92.835522],[36.975693,576.562958,83.365853],[33.336166,580.315583,87.570923],[24.529587,584.135712,95.333857],[72.506516,459.281525,67.296456],[77.934616,463.345124,72.434674],[68.910202,455.945465,66.244023],[56.396835,453.937836,68.738301],[65.374252,429.013398,73.395691],[74.799118,420.150482,62.972180],[72.428452,419.457428,70.132355],[64.136337,430.494294,66.255684],[69.314133,426.634491,62.473927],[68.798081,429.411225,60.964631],[62.941940,432.640595,65.066281],[65.293076,436.504303,63.376294],[60.286667,448.571564,66.581231],[76.172653,457.821808,64.442688],[81.699265,463.558747,60.165425],[84.351730,467.950775,59.548855],[86.040268,470.731781,54.885987],[91.595078,482.605683,57.316063],[83.115036,493.278351,58.996636],[90.642929,474.454865,59.282410],[72.523789,403.201508,74.512940],[56.638901,408.196503,78.848465],[60.079880,411.274811,81.135247],[67.383103,420.296112,75.286431],[62.534958,416.863922,78.817395],[57.828903,423.432526,75.831002],[49.489060,426.267182,80.320046],[54.467819,411.268036,75.117112],[54.684067,403.959381,75.417801],[51.997543,405.657318,75.041569],[47.805466,411.064179,79.496430],[46.603684,415.213227,76.891423],[47.643906,419.311371,76.743351],[52.829880,421.822419,75.716767],[51.963608,418.265473,73.643814],[53.659409,407.013642,75.368779],[58.671494,419.880280,75.361637],[53.599777,398.934052,76.877861],[49.573227,403.216034,78.996582],[52.252976,395.043122,83.034390],[51.154160,398.991791,88.037972],[54.141892,396.183380,98.832459],[52.529282,394.928070,108.836323],[52.036667,387.875824,113.346060],[50.006149,385.321930,117.982225],[45.230209,382.268280,124.529084],[43.641098,390.289826,128.062662],[46.170883,398.617951,125.623902],[44.613022,407.048065,127.349259],[47.648239,409.785736,123.481195],[43.101547,418.064789,126.942748],[46.444504,418.919037,122.416959],[48.329514,423.055024,117.983948],[49.659714,431.835846,114.845055],[46.885483,430.944916,122.423117],[45.511826,432.330536,127.789411],[31.082260,438.207489,152.199713],[35.953476,435.462921,145.184754],[40.593552,440.085846,151.859614],[49.152146,440.162445,139.795229],[37.561936,432.292450,139.224155],[44.327805,434.482636,133.751131],[48.523911,436.780487,130.906774],[50.756210,443.593781,149.536883],[52.627854,446.184235,151.592377],[52.382370,450.249054,155.759156],[45.033859,461.954987,161.033623],[37.822922,455.099884,170.639725],[34.759384,456.573212,170.153168],[41.578598,451.301544,169.529419],[45.579697,447.379914,165.602276],[42.124252,456.960297,168.642353],[47.812363,452.773407,165.790314],[48.671860,446.040436,159.484314],[50.314438,458.845612,157.346203],[30.986374,431.714020,143.506216],[37.782883,428.620880,135.713382],[41.768601,436.555451,141.614256],[46.645798,426.508026,120.850874],[43.485458,421.524750,126.215537],[39.484177,411.389923,131.563524],[41.107895,390.827057,130.729436],[36.947189,418.292206,134.285367],[42.051987,426.681488,128.938962],[35.757797,424.506745,136.572670],[43.035385,398.380951,129.592791],[37.993210,380.326508,132.119532],[41.133286,369.716095,132.633778],[35.013107,367.630280,136.409573],[30.787216,360.567963,141.467419],[22.852158,359.900055,141.600663],[21.556442,362.041107,139.957951],[14.070480,362.299897,142.987847],[-1.591507,366.133942,141.614842],[-14.043899,368.560761,138.472655],[49.851730,426.750031,113.411275],[52.269333,418.777802,107.451716],[49.105148,403.031586,82.506554],[53.580429,396.267670,93.364022],[52.576950,408.814240,99.849394],[51.969589,420.492585,101.043442],[51.580124,419.776886,96.705614],[51.033981,426.581513,97.628836],[49.013962,431.671051,88.162644],[45.735947,431.786469,81.650048],[50.053146,431.098175,75.739979],[53.200913,424.642243,80.316285],[46.143601,419.410309,80.580044],[48.384567,415.231964,86.644017],[49.150925,407.654511,85.866070],[51.356674,426.518830,102.026532],[51.088364,431.135651,108.117892],[51.288010,425.162079,108.844084],[52.448349,408.301239,95.736056],[52.728317,402.260102,105.086415],[51.434189,417.290802,113.037235],[52.256394,408.957001,109.936823],[49.908188,413.256195,118.685404],[49.089401,405.286469,120.821645],[48.296860,388.740326,119.974911],[51.113632,401.130463,115.159198],[50.866562,393.832306,115.052664],[55.668320,391.567719,92.652909],[56.536850,391.192536,83.100602],[57.819931,392.624726,80.221608],[61.695114,406.941132,79.326332],[68.584702,404.338227,74.185074],[71.580673,411.184723,68.848999],[74.971848,415.625824,62.992955],[66.212082,403.763825,76.496514],[83.354660,406.862458,87.751786],[85.128830,400.278900,85.909962],[80.615463,397.687409,84.997364],[91.145981,406.196808,88.035710],[59.807175,381.147309,106.458174],[54.405319,381.721955,113.497339],[56.957260,379.351410,112.397604],[56.553696,386.350312,104.396534],[53.928879,389.954132,107.190660],[61.926132,383.576569,99.130242],[61.103439,379.920807,107.629137],[57.442795,363.672089,137.094304],[59.455368,368.288605,131.365662],[54.708664,365.654572,135.621452],[52.384140,366.490998,133.199882],[53.442246,370.810944,126.791685],[52.413132,356.292755,144.888701],[49.245468,361.169648,139.047636],[49.316330,365.807343,134.074276],[110.189255,304.323304,137.498360],[97.778305,314.869690,152.404995],[90.630661,328.192414,149.438312],[93.330246,330.162812,145.139523],[91.185043,337.336579,142.758662],[87.213303,332.671784,148.436102],[97.831040,322.988617,145.578875],[100.520737,315.826752,147.414276],[101.671921,319.223908,143.691069],[107.718735,314.728089,138.781302],[103.239853,298.253662,146.221754],[110.029282,293.258637,141.744481],[112.427109,288.357514,138.147644],[113.854477,289.724305,135.674764],[116.897202,280.755829,127.971318],[117.237656,275.682465,128.211394],[105.587326,298.465302,146.486534],[108.149094,292.515747,143.223683],[107.719650,286.959748,137.549170],[103.472397,290.430939,139.159644],[115.496750,279.941742,131.957667],[111.804245,286.304962,138.339041],[101.635117,295.125428,142.866070],[101.121323,292.549347,140.857602],[109.197312,280.924286,131.931690],[113.068710,280.304169,133.403008],[115.408920,271.881501,126.797900],[109.558945,273.178406,126.470510],[107.202866,270.449341,125.758155],[105.515122,282.807953,132.684981],[101.687668,285.367310,136.357079],[108.457504,297.468018,143.780045],[100.526962,306.310395,151.494681],[104.172836,304.498871,149.167115],[71.926254,312.764679,167.156445],[67.363693,320.782868,163.819905],[57.821213,312.509613,170.846608],[59.794541,304.625855,175.777249],[55.934921,303.749054,178.302575],[49.580185,311.171082,176.246281],[53.405747,301.937287,178.719582],[51.710434,306.061585,178.366032],[65.010788,291.322480,178.566735],[28.164169,312.395447,173.270134],[27.003098,318.560150,170.332573],[26.086777,316.094818,171.689919],[32.459458,311.465058,174.293567],[31.383896,318.945710,169.254136],[38.490585,320.541779,171.443512],[37.256394,313.282257,171.250557],[36.145126,317.544098,172.065552],[63.451645,310.652161,170.353665],[77.210434,309.716889,166.424412],[80.251511,314.772614,162.645832],[73.394638,321.236298,161.378758],[42.456772,312.335450,175.575119],[11.996506,311.836975,175.887410],[10.504135,319.141877,172.910575],[-4.118240,308.937775,179.526265],[-10.919876,311.285370,179.363079],[-14.110306,303.220612,182.638409],[-35.794266,303.633911,180.502681],[-40.060928,296.520691,180.983799],[-40.098099,303.822174,178.420178],[21.808457,311.966858,179.426159],[12.219345,277.753113,191.236084],[-1.440140,273.751770,189.592293],[-13.646072,288.425904,186.868843],[-18.680069,291.967987,185.264721],[-13.999649,294.219971,185.380944],[-10.037918,300.045349,183.469948],[-4.478531,296.651001,184.781811],[-2.932632,301.563324,182.811589],[0.772080,293.496857,183.950135],[7.694016,303.761475,179.734181],[9.241623,300.932221,181.939198],[12.056809,297.777680,187.046959],[13.000839,310.436554,177.457310],[-20.069046,299.566315,183.578839],[-29.643875,299.197937,182.202282],[-34.454544,296.083130,181.706173],[-39.704117,287.459412,181.175465],[-44.208389,286.957093,180.931740],[-43.037002,293.616547,180.366471],[-47.476150,278.351349,180.146187],[-51.390213,271.107270,179.210743],[-50.757828,276.330750,179.024395],[-59.156509,269.841370,171.804657],[-67.163528,255.527863,168.729626],[-70.755081,256.713501,163.776204],[-69.445755,266.684418,163.859211],[-66.937698,261.325196,167.634816],[-59.070145,278.229828,168.612145],[-63.466080,283.729798,166.105206],[-66.310501,278.940705,165.273396],[-64.500625,289.670288,164.410019],[-59.205276,307.843537,163.783039],[-56.121048,300.894928,166.123589],[-60.148758,320.526276,153.768032],[-64.101211,273.969727,167.055050],[-67.934036,274.624390,164.653542],[-68.656326,274.952973,160.340420],[-71.226395,249.721527,161.419480],[-68.960159,244.587464,169.817063],[-71.925186,243.253754,166.236367],[-73.098831,237.298127,165.436882],[-70.893814,218.513977,142.644316],[-70.401749,218.527588,146.793061],[-73.345840,210.060761,152.934126],[-75.230362,205.548432,157.780007],[-73.660416,214.769928,157.173851],[-77.944778,208.482209,166.680001],[-76.852676,215.095917,166.621075],[-73.450577,213.052307,172.977893],[-76.840591,204.226990,171.672696],[-81.335159,182.629364,158.505280],[-81.030655,180.958741,161.557362],[-82.646561,177.905274,153.297928],[-82.030228,175.667176,150.018292],[-78.038895,176.803467,143.963009],[-75.259781,189.701691,144.448607],[-75.445450,187.324982,138.175704],[-81.894974,189.593170,128.735123],[-90.740555,193.391968,122.531342],[-91.412369,189.286621,123.165284],[-93.460037,184.273072,121.796975],[-94.989090,174.576264,125.509629],[-93.905716,175.321442,128.546898],[-92.714920,167.069886,132.813033],[-91.169876,167.394013,134.095115],[-86.217972,161.509308,133.925079],[-83.038528,158.459839,130.073348],[-90.355423,160.585877,118.198089],[-91.326675,163.357880,120.038059],[-92.734817,165.162293,126.601217],[-94.320206,169.149384,126.170042],[-93.652908,164.938599,114.735701],[-85.642837,171.729615,102.675198],[-85.593582,178.657593,105.354266],[-83.137588,184.722992,105.300574],[-76.995804,185.838654,100.966778],[-79.445816,197.755829,104.253296],[-82.630447,199.846466,105.530053],[-90.007461,195.763672,102.262648],[-94.783768,196.050476,98.407240],[-98.279983,195.071686,96.625758],[-96.844009,203.315918,100.480267],[-100.968643,196.196900,97.870007],[-101.139908,204.024170,102.680844],[-104.436722,191.625733,97.035506],[-124.573929,173.522370,92.488764],[-123.446060,168.519409,89.678894],[-123.968155,162.962464,86.051484],[-125.262039,158.225891,82.874489],[-126.106033,157.328614,80.433743],[-122.246475,155.531861,74.294342],[-128.771072,158.130524,75.191132],[-125.426163,158.195343,75.576836],[-134.798355,163.639221,83.869515],[-137.833084,167.263153,88.252808],[-137.411880,169.800598,83.929322],[-139.949234,177.656250,79.274121],[-142.745315,179.309784,80.968110],[-149.735367,179.833924,82.490689],[-154.741531,178.257904,89.652844],[-144.388382,180.086914,95.644774],[-146.745804,185.592743,107.156209],[-145.089126,183.578003,104.222077],[-147.756058,188.311829,108.895033],[-148.797745,188.153809,105.036869],[-140.954605,210.596955,113.357154],[-130.902603,204.809388,111.167814],[-129.684769,200.166291,110.891260],[-118.257217,200.133972,105.590493],[-121.521561,203.018006,107.457444],[-124.513565,207.188141,108.777654],[-129.004288,213.361786,110.002974],[-143.610489,216.122437,110.797035],[-144.430252,222.860382,107.109797],[-145.359573,217.311524,98.119206],[-142.722610,235.614502,89.213604],[-147.939285,230.129517,81.583065],[-151.288284,226.413513,77.036263],[-155.017898,210.716889,77.793278],[-155.504104,212.970826,75.813561],[-153.291275,207.411591,79.993222],[-149.030105,216.041260,83.637707],[-145.050613,216.885163,107.302037],[-146.565262,199.497101,109.906049],[-147.373489,198.214051,103.380221],[-148.567764,194.143250,99.390173],[-148.995376,201.713044,89.710848],[-149.945572,191.368622,95.912117],[-152.431900,183.595581,95.118021],[-157.895340,195.089936,79.567227],[-159.734451,205.086243,73.532723],[-158.779617,221.824219,59.756203],[-155.878860,226.505310,60.546616],[-152.995254,231.594940,62.344185],[-150.098892,235.857727,66.228058],[-147.094498,246.559662,67.887291],[-145.896072,242.673340,76.417061],[-142.744400,247.401154,81.245537],[-140.931045,238.286957,94.976309],[-138.194717,247.845764,94.483086],[-138.678848,245.818177,96.959233],[-142.415115,236.986908,108.050418],[-143.308853,228.759400,108.114044],[-135.719314,230.641053,110.485841],[-122.456253,245.454804,113.223009],[-113.870254,258.579865,118.292674],[-120.081253,266.751923,117.235455],[-116.393997,265.701630,121.107195],[-141.197525,242.518738,88.451043],[-141.609634,246.565888,84.654957],[-137.001358,260.613098,86.980019],[-135.297806,268.655762,86.718338],[-133.350967,268.329224,93.338534],[-138.300796,252.351837,89.595261],[-149.730728,183.305664,102.303713],[-157.643387,179.247132,85.215443],[-158.153519,186.861664,64.561325],[-160.759170,179.838806,82.794312],[-161.356644,182.267731,76.109433],[-164.967728,181.718262,78.548851],[-170.875625,188.400299,77.329613],[-176.601883,193.962036,73.826294],[-179.185501,202.689240,68.250298],[-185.863113,202.095215,63.859166],[-181.663162,205.027710,65.664219],[-182.539505,210.595917,57.660859],[-171.145401,208.710816,63.411900],[-174.040542,206.212189,65.386082],[-183.981644,203.015961,66.411305],[-183.869034,197.762299,68.048607],[-134.650467,210.450745,111.555579],[-147.619156,191.378601,110.583539],[-145.192215,190.170197,112.000543],[-146.259903,195.457856,114.775428],[-140.261490,191.425049,108.229004],[-138.894485,189.402222,103.377770],[-137.529678,183.590607,97.068842],[-141.757889,195.444794,116.032421],[-135.075333,193.780915,117.008757],[-135.206131,192.175873,115.527210],[-133.436355,194.893616,116.565648],[-133.445999,199.224060,113.531145],[-129.053360,193.428376,110.856017],[-127.985733,188.049622,109.066448],[-130.101150,176.260468,98.323141],[-135.036453,169.415436,95.055628],[-137.188431,169.697785,93.976815],[-139.072159,179.902100,91.666350],[-140.220169,181.499482,94.059403],[-139.209488,184.413452,97.566140],[-125.501663,193.440857,107.058295],[-123.675247,189.523774,103.555094],[-123.876419,196.691376,106.835646],[-109.556839,209.673035,109.069210],[-118.029617,206.748505,108.340397],[-117.652420,219.017365,112.349214],[-121.467239,222.440979,112.072035],[-123.266617,228.961762,112.314114],[-106.262466,214.983490,110.534192],[-99.850662,223.128784,111.721974],[-95.222977,226.419281,112.663727],[-89.306900,220.012909,114.190344],[-88.345840,212.870148,111.727013],[-88.962295,210.633087,110.182818],[-85.008377,203.420594,110.427591],[-84.340469,209.904297,112.538691],[-87.164505,203.167511,114.067047],[-89.065567,207.667054,119.655310],[-86.903702,214.798310,117.633929],[-87.376968,219.494263,120.723060],[-87.155167,219.778534,123.983346],[-84.594375,234.313111,129.274284],[-82.462173,233.783509,132.937848],[-78.693680,239.332886,135.296451],[-84.083511,229.000367,130.365396],[-84.080215,237.946534,131.313052],[-83.872818,241.610108,124.260214],[-86.783401,247.221100,124.748089],[-94.180496,231.030762,114.978106],[-88.730484,223.045288,115.591026],[-84.886673,223.084565,115.367993],[-85.154434,207.587982,109.728544],[-83.568680,216.314301,114.504060],[-98.300064,228.791779,113.218872],[-90.258926,239.914185,121.727417],[-84.464065,242.585877,127.355952],[-84.688248,236.132386,125.183322],[-86.121841,228.686341,122.664363],[-114.960220,239.691132,116.267240],[-112.240372,263.986206,120.452849],[-93.349625,247.146515,120.769034],[-89.924271,249.938080,125.138205],[-93.478531,256.164215,124.269176],[-88.929092,259.940033,129.605010],[-88.593399,266.026398,131.740003],[-90.549026,265.126862,130.621637],[-100.473221,260.896485,122.103519],[-97.294388,261.680970,123.579261],[-90.293716,277.371003,134.627653],[-85.517898,262.729645,128.255264],[-83.841568,271.981568,137.088055],[-82.949661,279.814759,140.570689],[-83.140518,283.766815,142.413540],[-80.822098,278.292389,135.206071],[-83.039993,265.589234,128.033409],[-83.510574,272.571869,130.412684],[-85.438797,275.492005,132.421012],[-88.936294,284.037781,137.847777],[-90.946182,285.909180,137.573096],[-94.892776,289.509857,135.353437],[-95.309891,299.856903,137.674010],[-98.820022,302.608857,136.422138],[-102.170975,307.810028,132.780448],[-104.149429,303.301331,131.533645],[-106.042923,312.013275,130.821401],[-110.611709,316.952301,131.455902],[-107.205643,323.584626,132.999316],[-105.768753,323.027924,133.972908],[-101.131912,331.711396,134.843482],[-101.875931,341.041413,130.124113],[-105.179336,337.485016,128.001943],[-115.068252,318.890778,121.646206],[-117.474319,311.201996,120.667641],[-90.517227,346.915558,132.467495],[-89.745865,330.147248,135.728418],[-97.278702,320.437043,134.385373],[-104.343216,330.795380,132.812176],[-113.564224,315.360230,126.478297],[-108.304886,314.465241,131.210356],[-112.521561,296.297730,124.793172],[-113.131058,284.476960,121.435066],[-123.056167,284.403260,121.789059],[-128.633560,273.985260,116.783886],[-134.121048,263.899597,111.049240],[-130.518814,272.237946,107.393361],[-125.311844,286.415497,114.614165],[-125.373001,286.334137,119.109697],[-121.274979,296.852784,123.106661],[-131.105850,271.600525,102.279351],[-131.497696,273.152283,97.235501],[-135.036514,258.864746,97.776215],[-134.685623,261.861298,93.490210],[-136.849075,254.100891,103.246344],[-136.416092,256.600190,109.471072],[-133.472061,261.123352,113.152673],[-128.223404,268.479950,116.024966],[-123.734024,268.248993,115.331166],[-118.415970,276.428437,117.907719],[-113.403641,276.973542,121.132576],[-115.273209,283.992188,120.121536],[-119.783890,279.462250,118.359434],[-118.481033,284.896027,120.454271],[-109.096084,283.029816,125.111410],[-104.811661,286.153168,130.725502],[-101.233902,277.681549,127.885223],[-109.038345,276.849396,126.476298],[-106.611893,279.331024,128.602426],[-109.197220,299.971924,127.523440],[-102.056961,317.348542,132.732001],[-101.407059,322.290253,133.502554],[-98.484512,329.466767,134.305184],[-97.462173,337.438202,134.320189],[-93.641067,336.256623,134.280457],[-94.464371,327.204254,134.749471],[-94.613724,278.595093,131.232429],[-111.076309,233.854370,116.240212],[-113.320084,235.733979,116.349141],[-117.493851,251.895661,115.757334],[-132.112747,184.611389,111.964208],[-132.733169,178.027253,106.942831],[-129.786209,177.213990,106.303773],[-132.487381,172.790406,101.729393],[-130.693497,174.513214,102.441492],[-134.735794,172.981537,101.014094],[-136.410171,172.985291,97.864275],[-132.207779,171.627503,94.258046],[-134.404739,179.161805,105.198983],[-133.757828,184.683594,109.819048],[-134.020401,189.339234,113.547243],[-137.037552,191.577759,109.732496],[-143.496353,201.683014,115.934899],[-145.052200,203.246704,112.891403],[-143.017959,208.842865,113.588413],[-139.748245,203.179596,115.261184],[-136.424759,187.085053,101.776101],[-130.432083,160.785340,81.031784],[-134.866653,164.087067,76.688584],[-146.303055,171.897644,71.044735],[-149.861771,173.150421,67.110630],[-147.897232,181.338837,61.971795],[-148.352127,184.611573,59.161896],[-153.610794,173.509796,60.951863],[-158.483902,140.515503,82.438614],[-169.877396,123.609101,87.114624],[-177.386063,108.341156,92.105860],[-182.097000,109.349213,91.384806],[-177.171280,120.325348,87.001824],[-182.062637,116.112580,87.348503],[-164.543228,142.425751,79.578987],[-174.499588,128.839447,83.088150],[-177.485611,128.919495,81.228707],[-162.486343,139.994202,81.706292],[-181.083755,107.499054,92.397780],[-169.960709,128.349671,85.218823],[-143.067215,170.058380,74.034565],[-145.730179,178.331421,69.227951],[-145.389358,181.780304,70.598072],[-146.571487,182.406586,65.665768],[-113.413223,162.429108,85.110394],[-98.917068,155.903351,82.351620],[-82.069290,173.220276,91.490399],[-89.870376,170.143616,91.532540],[-92.573013,164.472962,88.319729],[-106.593338,161.210968,85.126324],[-105.802505,147.504578,76.361515],[-108.571243,142.384095,60.162285],[-116.960709,145.291046,65.220158],[-121.557815,142.150360,68.242684],[-118.733475,149.296723,68.468373],[-120.274429,153.658783,78.465260],[-117.354202,157.746491,81.984288],[-84.974991,153.836823,69.104195],[-82.441177,160.205048,81.637875],[-87.678421,155.717591,77.074936],[-90.764786,159.321259,84.908883],[-88.696915,163.965699,88.438839],[-96.819534,153.620758,80.088517],[-91.374771,153.620850,75.263638],[-88.680862,152.683289,70.029107],[-83.451858,154.180176,73.347103],[-104.300735,148.640107,77.651184],[-91.646500,149.005585,64.871369],[-98.647964,146.162873,64.779389],[-90.672500,147.659180,58.597412],[-106.792496,142.925415,54.963929],[-100.477615,144.850403,56.982682],[-111.662735,140.975403,57.513169],[-117.650406,136.890717,59.120022],[-123.703384,131.416016,63.393452],[-126.576736,135.086609,69.410748],[-126.276565,139.625946,71.346867],[-121.627396,154.362641,72.086716],[-126.470352,149.731140,72.475537],[-130.268997,139.282288,74.329907],[-145.850784,125.428406,82.137562],[-152.284561,124.578705,84.720333],[-158.255447,114.444428,86.742413],[-170.562027,109.971405,90.705555],[-168.027847,108.048889,90.320980],[-179.489090,96.668976,94.413929],[-174.204422,98.402130,92.700264],[-177.113296,88.423554,93.206370],[-179.744461,76.963288,90.625935],[-149.609756,112.596711,81.821030],[-159.587417,104.447693,86.099415],[-141.060074,121.836121,78.696263],[-137.405044,129.330628,77.899407],[-146.516617,119.965668,81.742283],[-102.416336,186.531311,93.818016],[-109.761917,184.613495,94.675881],[-106.797745,179.212860,91.189379],[-97.214859,171.252289,89.152565],[-97.948318,189.829285,95.219517],[-89.446854,189.165070,100.486185],[-84.716019,184.497254,98.658356],[-78.811722,191.970124,104.005976],[-101.671768,180.713227,91.104632],[-97.283890,178.788819,92.235033],[-94.339798,186.606324,96.535427],[-87.493057,173.745362,93.134318],[-78.267044,179.550873,93.884219],[-79.724808,184.071198,96.977587],[-79.518265,191.046021,99.906292],[-77.331375,192.367554,102.103739],[-77.048538,187.353607,98.248940],[-75.589310,174.473938,97.522887],[-77.705826,165.172577,93.999262],[-80.536331,158.751557,93.474530],[-81.417374,150.842591,92.417330],[-84.644424,164.264130,98.237917],[-92.119583,160.244416,101.170615],[-92.754471,153.688111,98.403237],[-90.002396,147.962372,95.665360],[-93.474808,143.917206,97.019619],[-93.560013,151.071900,99.053248],[-94.926590,156.861451,102.151425],[-94.185745,147.799836,105.512291],[-86.804825,157.390930,97.211920],[-74.713943,179.888855,96.331063],[-74.943924,171.276734,93.608515],[-76.105545,172.796357,91.069851],[-78.306900,168.932740,88.429448],[-76.096878,176.619690,92.226773],[-75.266434,180.389221,94.895604],[-75.622391,167.858155,93.324126],[-77.401321,160.099152,90.756510],[-110.268875,167.389923,87.013535],[-102.631607,175.507019,89.246418],[-115.783218,171.223053,89.704459],[-80.907669,201.774659,106.178231],[-79.860794,198.767243,106.247017],[-86.537002,196.892487,105.419613],[-93.950516,202.830567,101.180409],[-95.145401,211.503937,105.055752],[-98.198624,217.032898,108.388531],[-104.520523,210.750641,108.148249],[-109.311417,202.365448,105.221447],[-117.875137,193.543000,102.279551],[-112.310806,189.700165,98.407444],[-118.464554,178.578736,94.449006],[-122.001297,183.327362,98.566515],[-128.668533,174.225067,94.209860],[-132.753311,162.834473,85.254128],[-135.825516,165.933808,87.901173],[-128.275101,168.402100,89.003376],[-92.195572,221.239716,111.708440],[-112.621719,215.128723,111.813624],[-93.688003,158.637970,111.154853],[-90.261429,156.352875,116.488733],[-92.620926,151.966156,114.220626],[-94.787857,150.730744,109.528558],[-94.771622,174.200043,118.387352],[-94.000320,168.282990,118.833519],[-94.784378,166.258271,110.071291],[-93.976578,181.739075,115.438209],[-92.564041,180.038880,110.912246],[-90.689957,187.912506,111.702890],[-94.544388,177.403992,116.197844],[-94.085281,169.418457,108.726139],[-93.691482,167.013764,105.957178],[-91.612076,172.738617,107.440679],[-93.220779,186.527954,115.481247],[-91.083816,195.312897,117.321428],[-86.831741,199.599121,124.083785],[-86.101089,193.120697,125.202689],[-79.705643,194.390930,129.814497],[-90.477310,162.952912,129.477116],[-92.326614,172.383911,131.391992],[-87.674026,174.793152,131.546070],[-82.910965,167.842224,136.163262],[-87.853470,164.412720,135.375264],[-82.181900,161.754334,134.536393],[-83.648697,156.989502,126.353757],[-82.753799,174.115815,134.296955],[-79.316910,179.082367,134.898136],[-77.659378,178.595032,135.498895],[-77.092605,173.175537,139.383841],[-78.375564,184.515473,135.017512],[-81.793106,182.718994,131.295953],[-85.737686,182.167145,129.012112],[-93.240494,181.763794,125.109378],[-90.725479,181.235810,127.330689],[-74.769791,223.341706,164.310818],[-74.788223,223.517853,167.810673],[-72.734634,226.543824,158.836190],[-71.745132,224.476532,152.968493],[-71.158890,239.226624,155.977150],[-72.159927,236.725891,159.908821],[-74.217361,212.894379,135.638621],[-73.703140,203.486512,138.791383],[-82.073624,202.124756,127.196697],[-78.276871,199.639771,131.443764],[-76.418777,193.546936,136.226680],[-74.520401,195.169129,141.219958],[-77.281143,218.745209,131.547131],[-82.463760,212.063721,127.199092],[-89.297378,206.292328,122.957937],[-91.266678,195.103516,120.278932],[-89.677933,198.499237,122.710109],[-72.434708,203.871949,142.444125],[-71.789688,205.759095,145.950846],[-73.459366,200.877655,147.972910],[-75.608597,200.031494,155.012436],[-77.826980,190.188446,154.596878],[-79.079361,187.983979,156.585007],[-77.857437,187.105072,150.609574],[-76.472793,186.517334,147.064993],[-79.033096,192.264862,162.283589],[-78.464065,201.944397,166.088871],[-78.364761,206.491028,169.544026],[-76.677505,212.187378,171.094792],[-63.860733,256.738434,171.441666],[-62.382156,248.954254,175.986809],[-55.532852,247.039612,174.647515],[-51.789810,255.775086,176.124123],[-53.106338,265.496735,178.750210],[-55.618729,266.996643,177.329525],[-44.924148,267.863037,178.503189],[-39.474808,276.416779,180.791489],[-39.159012,267.748444,180.142109],[-29.983841,267.863922,183.751465],[-30.408707,274.485565,183.785992],[-24.494339,274.808014,185.781166],[-18.218826,282.044953,186.912011],[-36.681229,285.850739,181.924248],[-44.698624,275.680237,179.626175],[-25.606460,280.334961,185.099155],[-42.148575,257.552033,178.361718],[-47.346634,256.831696,176.387104],[-52.200638,248.285126,174.792023],[-47.047562,249.458680,176.044903],[-56.047623,237.858795,173.620289],[-50.130264,239.048371,175.252739],[-45.315628,245.621308,176.824707],[-36.055069,252.344361,182.215690],[-13.900528,279.901429,189.080758],[-48.675064,264.010712,177.546734],[-58.749161,258.010102,176.974190],[-55.837601,263.648438,178.173722],[-69.977310,259.459565,165.502255],[-55.955521,289.310944,168.699345],[-52.840958,301.191071,168.346283],[-53.258133,310.036408,164.712361],[-58.375687,290.620484,166.963284],[-62.066360,295.065644,165.092007],[-46.117325,294.813172,177.416293],[-46.724136,285.509613,179.834278],[2.800522,278.634247,191.765374],[7.015976,282.301941,192.225899],[16.714218,271.870911,191.069321],[6.153183,265.839630,195.955490],[3.153916,266.727265,197.497300],[-2.602432,255.240876,200.305252],[-8.738235,252.610474,194.078133],[-6.443375,247.930786,201.430581],[-1.328201,246.718384,201.700440],[1.640000,252.435364,199.735741],[7.730820,256.669525,196.848404],[0.761337,259.348633,199.216080],[-2.482864,250.975098,201.196373],[3.940048,245.212860,201.206031],[0.563583,241.066986,202.784829],[-6.619034,238.462250,203.793999],[-12.039749,238.204529,201.154076],[-16.406631,233.903748,198.096596],[-30.039322,227.971619,193.187195],[-29.032242,236.763428,193.295220],[-25.092972,233.735474,192.616616],[-24.869827,224.550721,193.345978],[-21.352798,233.122650,193.222382],[-27.809524,223.658173,192.662903],[-17.614578,226.959168,203.581261],[-21.629288,226.818634,195.587281],[-25.610123,215.994294,201.852120],[-28.036941,200.652191,201.158501],[-30.639969,204.554688,201.394287],[-35.199539,200.492340,198.643402],[-31.205826,197.698090,199.033173],[-31.498855,208.759552,195.832390],[-25.475601,211.152619,203.710755],[-32.523147,206.242340,199.552010],[-28.507522,213.420471,196.427826],[-36.049698,211.872895,190.496483],[-41.507645,208.473572,192.481736],[-44.096878,203.334259,191.130921],[-48.893753,204.181305,190.185386],[-51.976089,197.111908,189.141602],[-54.152115,213.703858,179.342743],[-49.335586,217.320435,181.406207],[-52.927566,221.411896,176.479195],[-50.973038,228.395142,176.052739],[-32.780960,212.681183,190.110596],[-38.458206,202.293701,185.213168],[-37.924759,206.947113,187.821160],[-35.739578,205.837921,188.022072],[-31.707046,209.638428,191.681229],[-26.763321,217.915253,194.718887],[-30.185501,214.354950,191.412987],[-31.744949,218.090821,191.829415],[-22.812393,241.769196,192.016503],[-21.793289,264.532105,189.674027],[-19.442947,265.758057,190.516945],[-6.686233,267.015503,189.448510],[-5.151443,262.080780,191.740715],[-13.289627,251.386444,191.009056],[-10.253982,252.717621,192.270462],[-16.011612,274.482300,189.543984],[-22.332046,271.908936,187.111831],[-12.476944,277.333100,189.345154],[-20.710586,237.662445,192.285767],[-17.797500,235.954895,194.297043],[-38.301895,214.816559,193.186736],[-46.730545,203.886475,191.804177],[-49.989029,210.198120,185.855210],[-44.383194,224.833100,182.910912],[-38.759964,223.886261,191.362542],[-38.299026,219.931732,193.360146],[-34.900101,220.684113,193.244110],[-42.193252,212.788117,193.346405],[-44.488479,213.069397,191.663933],[-43.932876,221.419861,185.846206],[-27.734268,219.004059,192.470253],[-15.650894,224.743775,205.952660],[-10.465103,207.012665,206.244666],[-13.817703,202.435730,204.982178],[-8.175369,201.498169,205.261765],[-7.038040,199.443116,202.535797],[-12.128677,197.008759,199.929078],[-14.940689,183.746064,197.365967],[18.072434,302.290711,184.148648],[23.733383,260.921997,193.061135],[30.756577,284.560211,188.637925],[27.531540,277.840302,188.789078],[22.342575,293.743103,185.066067],[28.313034,291.848572,186.243332],[34.492844,276.529663,192.738778],[37.879196,278.919739,188.658059],[39.362106,269.665589,189.382645],[39.968979,270.738526,185.739724],[51.789475,266.173401,185.481484],[54.690354,263.926789,184.915593],[52.653793,270.813813,183.321614],[57.441696,269.055146,176.140286],[60.030258,258.998261,176.779518],[60.873642,260.519562,175.628403],[63.833847,260.991211,173.916316],[55.492661,268.136383,178.546528],[44.059982,267.644684,186.488511],[39.765061,267.223267,186.593735],[37.860153,270.046418,194.080826],[29.712509,274.632325,190.255532],[27.446762,260.883728,193.292633],[54.332810,245.960175,188.726662],[65.307053,236.388123,189.551110],[54.897446,223.893006,190.575692],[18.370407,228.340760,203.632950],[29.162705,223.889069,208.274239],[24.023056,214.938111,210.146324],[23.498337,225.814637,205.040871],[16.573471,221.332978,205.791886],[18.024399,215.875550,207.667298],[17.039658,204.912415,210.326073],[21.389694,206.838867,211.987366],[23.021408,211.670838,211.465439],[5.741562,203.981446,206.470635],[9.154770,206.687561,209.875695],[3.688034,208.670716,209.592270],[11.235642,216.424652,207.295510],[-5.494949,217.630921,207.853554],[5.125839,201.291565,202.690789],[6.951889,200.061188,198.262383],[3.051499,198.903992,197.725571],[-3.578201,197.780335,196.950988],[8.194443,181.732300,200.654625],[18.717575,181.183777,202.429901],[15.449875,179.460755,204.342530],[21.603745,179.947235,203.603455],[28.069199,168.494599,200.112870],[24.184006,168.875275,203.245758],[32.217514,167.416657,200.776840],[27.175888,173.545655,203.870217],[33.537033,175.921204,199.712304],[30.614670,179.881043,201.440545],[25.383713,176.991913,203.295754],[13.840866,182.942322,201.674187],[11.966782,181.538849,201.376717],[6.434067,185.059998,203.372094],[-0.865799,200.468720,197.680855],[16.974167,207.444855,212.620064],[10.104538,210.947113,210.741166],[0.141892,220.955475,206.138352],[-36.604202,164.672058,190.958039],[-41.473709,173.784119,186.605842],[-42.661331,180.049591,183.225087],[-36.504837,182.070679,184.405289],[-33.137833,185.838684,186.943749],[-33.695022,191.613953,191.387161],[-37.043533,196.396729,195.911644],[-38.297684,197.282898,193.641373],[-37.762955,194.458130,186.096047],[-37.672806,180.256226,186.371277],[-42.667618,182.995789,181.408638],[-44.659317,187.952790,174.286655],[-48.919144,186.175293,170.279778],[-56.800552,187.980744,184.655529],[-56.938980,190.165802,184.589032],[-64.300796,190.979554,179.818409],[-79.507706,181.829804,164.708310],[-44.081985,173.795502,181.324631],[-42.439651,170.584137,184.124104],[-48.182938,175.594117,175.543667],[-44.709976,176.913269,182.063424],[-52.229751,183.432862,167.679379],[-54.816177,180.940705,163.904004],[-53.080276,184.763520,166.811470],[-56.944412,182.956940,162.990860],[-60.565628,183.835968,167.494679],[-65.616165,182.176483,156.458283],[-64.491470,179.717743,152.401177],[-67.083938,169.170227,147.385472],[-42.250015,141.413880,188.451134],[-39.449600,192.707337,182.092549],[-36.965225,192.122559,189.629876],[-33.658401,190.957733,186.119239],[-37.395035,190.489106,181.903828],[-20.022781,209.500824,203.748359],[-21.740250,198.896576,202.424118],[-16.248672,198.114441,202.648919],[-21.596390,193.582184,197.323830],[-22.122330,192.916291,192.788292],[-28.786392,191.839112,193.269349],[-23.923111,194.173981,198.961876],[-16.950455,194.898194,194.689728],[-17.354629,192.856171,193.455429],[-17.663650,188.484650,194.533409],[-23.224441,177.057892,194.280266],[-30.517776,175.434388,193.794281],[-33.707474,177.496216,191.168587],[-33.231094,180.029877,187.082871],[-25.194351,178.646332,191.116326],[-20.408829,179.404145,193.098084],[-21.190750,182.707611,195.062157],[-34.348465,171.213623,193.601616],[-35.795059,169.079987,192.819481],[-28.298782,189.839905,188.619193],[-27.619156,191.651673,189.190789],[-22.507400,190.803040,191.816825],[-27.459000,182.433716,191.776566],[-18.682144,213.738617,206.627312],[-20.998978,219.676178,204.953781],[-16.568863,216.163269,207.318924],[-34.061905,203.761780,191.276490],[-41.690750,201.505524,185.610531],[-45.140518,195.902893,182.501183],[-41.835831,196.942841,181.473969],[-41.405594,190.759857,178.052105],[-38.472122,197.850586,184.111515],[-45.377823,199.105805,189.067200],[-49.031387,197.383637,190.933983],[-32.954727,133.140992,195.122261],[-37.942276,139.235535,191.322579],[-40.037796,136.550141,187.471451],[-37.309036,147.803589,192.759636],[-37.966629,110.929688,189.325348],[-37.011734,112.896241,192.512711],[-49.375564,90.176575,182.868828],[-56.172562,86.747834,177.194855],[-58.821060,78.016632,175.602955],[-61.371963,65.492279,175.305092],[-64.976272,66.341370,171.193795],[-64.104751,60.280823,173.827942],[-69.243606,49.936234,170.902470],[-61.641250,45.762390,173.305062],[-62.488296,38.579941,172.277474],[-62.209244,29.653473,171.599522],[-67.842544,32.172684,169.697052],[-57.422989,25.408829,173.054734],[-43.031875,14.654419,175.578640],[-36.384720,14.910355,176.242592],[-35.573379,-1.657501,173.445309],[-39.146622,-10.642242,172.456890],[-32.883682,-7.347366,171.789692],[-27.629654,-10.687454,170.354275],[-22.014297,-1.416351,171.538220],[-21.125992,-6.356720,170.247750],[-19.889603,-7.839035,171.834053],[-21.148575,-20.135101,167.428940],[-22.336380,-24.784744,165.622822],[-23.404434,-29.785782,164.623040],[-22.326980,-33.610916,166.451588],[-25.185379,-40.523620,162.016739],[-24.018997,-45.045288,163.878563],[-26.302627,-52.358261,160.064381],[-27.606766,-59.671280,157.905758],[-27.203079,-71.839897,167.693024],[-26.192886,-67.990883,170.406273],[-23.100479,-43.438018,175.055981],[-20.792251,-57.975204,175.369156],[-16.855850,-54.579742,175.312901],[-16.933853,-40.581131,178.473450],[-21.636185,-43.783508,177.329159],[-21.573868,-34.038543,177.633171],[-12.289505,-42.757492,176.875901],[-8.588577,-47.385971,173.733368],[-1.935989,-40.917862,170.244793],[-5.161026,-73.367080,162.693524],[-3.875137,-78.096634,161.364560],[-1.271072,-89.405922,159.024819],[-2.869095,-97.043556,158.325859],[-2.708938,-109.159340,154.385312],[-1.447647,-114.565895,147.573672],[-1.224319,-119.086044,143.627421],[3.913071,-108.615623,144.894617],[7.574509,-101.177238,147.533648],[10.221176,-101.986099,148.260106],[12.607468,-103.989776,149.366778],[16.629929,-106.499374,152.324038],[18.080307,-96.287613,157.038914],[18.813461,-108.485122,155.216442],[22.621933,-103.865371,163.662037],[27.447983,-107.304702,171.441605],[25.664047,-106.323135,168.729294],[30.511398,-127.651458,170.835541],[40.594711,-127.368034,160.796990],[42.379868,-130.687492,155.398686],[50.441025,-138.258804,145.818325],[54.448227,-141.282737,143.022557],[48.776230,-153.779781,142.485024],[45.470810,-167.901758,141.096897],[43.256333,-180.541485,142.573895],[44.275864,-206.245851,131.255224],[43.308151,-204.534194,135.424801],[43.395981,-219.606729,128.458226],[43.921555,-229.625614,124.184920],[42.041916,-240.371616,125.320486],[41.806687,-247.047176,133.095802],[41.406845,-259.506958,130.710238],[39.107285,-259.244568,139.899735],[36.879257,-259.022007,142.735239],[34.881638,-261.479706,142.495360],[31.520615,-278.966476,136.602829],[24.997421,-277.660850,131.264468],[26.582077,-294.456390,127.901164],[13.562729,-298.720520,110.771778],[15.599045,-313.468010,109.361432],[18.329758,-314.755226,110.781540],[26.707382,-344.445327,110.698532],[32.491867,-342.750015,117.179939],[35.349533,-343.224106,118.098234],[36.584396,-334.376938,120.610230],[36.290085,-319.719284,125.202045],[33.956650,-323.914459,123.940415],[32.306748,-329.725403,121.000985],[25.008713,-329.098983,113.202970],[22.883041,-333.741043,109.761077],[19.176560,-310.294738,112.646417],[18.836289,-300.204239,115.217254],[22.759384,-313.070533,116.039828],[37.729355,-331.631347,119.919572],[29.021652,-321.627304,121.033916],[29.809067,-332.894958,117.691919],[22.420029,-321.932235,112.301738],[35.346481,-329.876175,122.419187],[35.029465,-242.438812,147.548077],[33.146958,-240.218696,147.721651],[32.433579,-232.736889,149.281638],[28.054733,-233.058120,144.799935],[21.385788,-227.864887,138.634154],[13.085007,-226.975067,129.949640],[8.499619,-229.795963,119.915951],[6.691147,-230.395603,117.914773],[4.541306,-245.523723,113.046545],[0.211777,-243.314338,111.562156],[-5.863968,-259.427166,108.091925],[-10.843033,-249.381393,112.476311],[-16.437027,-240.883449,118.382854],[-22.239944,-243.373089,123.396766],[-27.589188,-259.162811,126.472338],[-35.144607,-250.413795,138.801495],[-37.321670,-250.851631,139.517224],[-32.516861,-238.106376,138.788945],[-24.613296,-219.606567,133.690572],[-23.264358,-211.254010,134.913255],[-18.321182,-206.762812,129.817443],[-15.875748,-188.893196,132.951338],[-20.439590,-178.250530,145.218939],[-16.599869,-165.556192,145.785393],[-12.287857,-153.252853,145.838934],[-10.469742,-146.773754,146.159451],[-15.807876,-127.311859,155.039807],[-22.900528,-136.843933,156.591641],[-22.720657,-146.212417,154.786896],[-16.829117,-144.332496,151.979540],[-22.967117,-158.284347,152.503107],[-22.074417,-166.452255,149.712437],[-33.017105,-196.597580,149.311243],[-27.177261,-201.095436,144.818358],[-28.013138,-234.513389,133.224078],[-29.241348,-217.575174,141.791874],[-28.859512,-212.065050,143.639328],[-24.846207,-199.093212,143.035729],[-21.779129,-188.355014,143.499957],[-19.801346,-181.708697,143.215115],[-24.187332,-206.122775,138.388781],[-19.135452,-193.361799,136.342846],[-17.447708,-182.627917,138.631874],[-31.877884,-187.440744,150.421496],[-36.014419,-183.452753,150.820778],[-36.467117,-196.768289,148.878668],[-38.847366,-195.904423,146.766119],[-39.672623,-185.602121,147.310770],[-42.100601,-195.095769,141.293129],[-44.075943,-184.358653,137.939940],[-41.842300,-178.488676,130.469180],[-37.664017,-171.014488,118.348901],[-37.791763,-174.747926,121.918377],[-40.130936,-175.417774,126.972763],[-38.242813,-186.446543,148.915739],[-35.754593,-168.111801,152.978117],[-38.771805,-176.943185,149.247599],[-37.063553,-164.927126,152.323777],[-35.139786,-158.615299,155.079506],[-34.649551,-152.872043,156.303719],[-33.616653,-143.999618,158.196278],[-31.015701,-147.847839,158.148308],[-31.699600,-137.544033,159.959523],[-31.397964,-127.695594,161.387104],[-28.253555,-123.826454,162.081044],[-29.879654,-117.231804,163.577820],[-32.455093,-122.071022,160.568131],[-32.904556,-132.366031,159.688374],[-35.932693,-135.768764,154.261742],[-39.223526,-148.167804,148.196711],[-37.592422,-152.178459,151.550108],[-38.816910,-151.566375,132.804820],[-38.561844,-143.362278,134.542946],[-38.639053,-145.307125,137.105215],[-37.633255,-135.483265,150.593951],[-38.115250,-131.631912,147.995856],[-34.265396,-116.839721,156.565194],[-35.398636,-113.149269,153.528313],[-30.814407,-103.456375,162.816723],[-29.637588,-97.009620,165.062485],[-29.000259,-88.793495,165.907242],[-25.014480,-81.694160,170.663628],[-27.624100,-84.021629,168.654522],[-23.178482,-76.648987,171.655709],[-10.313553,-82.339866,163.287476],[-28.193802,-110.134277,164.786393],[-30.155472,-109.392929,163.957772],[-26.634415,-114.592842,163.375756],[-22.602676,-99.315994,165.182061],[-15.592911,-114.370605,158.259316],[-14.267715,-98.710869,161.629471],[-10.129349,-91.513488,161.351830],[-26.632889,-98.598900,166.831089],[-28.880630,-102.977073,165.645218],[-21.392898,-89.383499,167.512776],[-16.060684,-90.078155,164.579689],[-13.161758,-71.728981,168.535386],[-5.029434,-119.840332,152.929743],[-4.275650,-121.292831,150.927868],[-6.970596,-132.420971,148.508046],[-4.481460,-142.252392,136.250476],[-4.724869,-151.842125,133.061614],[-0.155777,-156.175899,129.659522],[2.534042,-163.967939,127.718515],[-1.818924,-166.473741,126.677902],[-1.525467,-178.774130,123.237534],[0.607773,-182.282632,122.479626],[5.606918,-191.436067,124.982860],[4.510727,-199.060355,121.701695],[7.404587,-202.338151,125.837379],[9.833542,-200.189795,131.193739],[16.896896,-215.181253,135.644961],[24.650681,-222.059004,143.517929],[30.482285,-215.493862,152.551459],[33.943894,-220.316398,153.419140],[36.748703,-224.240843,151.965351],[34.612534,-229.726185,150.951657],[31.771896,-224.254455,151.384026],[38.659897,-249.447330,144.039294],[37.080002,-235.589519,149.009600],[40.257675,-243.183502,142.965838],[41.025559,-240.396560,141.748495],[41.109238,-247.134994,138.112866],[42.141281,-242.390030,132.068915],[39.584458,-230.824249,148.129572],[41.073532,-219.362669,148.457499],[42.283798,-210.429073,143.736805],[42.890915,-210.752668,136.246982],[42.996811,-193.419439,140.961123],[42.161240,-196.832233,149.496519],[41.188217,-192.244491,154.376625],[39.941330,-189.348160,156.867337],[38.225144,-181.860047,159.772583],[32.722763,-188.665683,159.958210],[30.979538,-195.453385,158.083077],[31.263352,-206.526737,155.588635],[27.915024,-212.106672,150.219845],[32.742661,-213.261501,154.775502],[35.495651,-213.522875,154.740258],[40.342331,-207.668452,152.437113],[34.035446,-205.541017,156.547959],[37.654770,-207.910185,155.000367],[34.935166,-193.551708,158.872605],[36.037949,-182.860598,160.854615],[42.709824,-220.338562,137.920067],[42.673081,-225.329435,132.340512],[42.800339,-226.553339,127.295110],[38.835007,-216.647043,152.372790],[10.502426,-190.335897,132.445495],[9.863205,-180.519334,132.186768],[10.444382,-170.816641,133.104028],[7.770249,-173.868387,130.843300],[4.490646,-163.991184,128.946567],[4.388596,-152.446380,131.288068],[6.730820,-157.507461,132.351708],[10.828232,-160.218105,134.367724],[14.830429,-164.516712,136.918418],[14.998703,-178.466240,135.363332],[4.871750,-143.714973,134.104722],[7.343063,-145.638740,134.639284],[9.357895,-134.797207,138.640803],[13.763107,-139.956489,140.692025],[15.869125,-157.582016,138.648489],[18.932236,-160.181480,141.896462],[19.916062,-143.000667,147.205983],[21.129501,-147.008957,149.299151],[23.576523,-139.917484,157.119255],[26.445419,-135.321209,163.460495],[18.984116,-171.989395,140.529889],[20.290146,-161.908043,144.826153],[23.296005,-163.939129,152.727963],[22.329331,-153.526375,152.105875],[24.518540,-154.403782,156.793389],[27.099350,-159.408168,160.214585],[33.843002,-160.731723,165.485733],[33.308701,-150.963604,167.464333],[36.551254,-158.360225,165.517731],[40.179916,-148.256462,160.690628],[41.637802,-157.930114,152.443600],[40.978012,-169.438801,156.387272],[42.000961,-167.038437,150.032219],[41.202622,-182.753152,155.344677],[37.325180,-136.010200,169.820435],[38.486008,-142.825119,167.279156],[40.245041,-134.187252,161.587418],[41.398300,-149.209175,155.100865],[42.644272,-148.258465,151.789488],[42.353867,-136.802929,154.404984],[33.788620,-174.312471,163.169621],[34.036545,-182.678001,161.380188],[27.804916,-175.468120,159.062043],[25.746201,-191.555909,152.988266],[25.070358,-204.716878,147.916993],[19.348374,-197.567383,139.260806],[39.527573,-158.960216,161.821568],[17.275803,-170.979252,138.298474],[19.087998,-178.047729,140.305546],[21.226547,-168.438991,146.710167],[29.527207,-162.684684,163.049019],[30.968552,-168.092176,163.074917],[29.586166,-176.551183,160.860016],[25.769028,-172.884956,156.212517],[24.590561,-177.556043,153.276228],[22.884628,-187.715208,147.676796],[20.763107,-191.697335,142.233300],[17.819931,-180.785052,137.898848],[12.364914,-148.055019,137.527771],[-3.165787,-124.329887,144.486466],[1.447495,-117.302627,141.935959],[5.141708,-114.129875,142.553347],[9.147141,-106.773575,146.052821],[13.183762,-117.472320,145.778561],[15.840317,-115.335380,148.820597],[17.177597,-148.185535,141.948639],[10.757431,-117.496338,143.951201],[7.509506,-118.428337,141.741530],[-1.402481,-124.527588,140.990071],[-4.981949,-136.740181,139.243294],[15.025375,-131.174225,144.162272],[8.510300,-187.178549,130.581792],[2.178879,-187.989879,122.008701],[1.544235,-197.724254,119.910563],[-1.688370,-209.963245,117.767466],[-1.416946,-191.079784,120.607673],[-6.195267,-202.653302,119.788875],[-4.297012,-178.122215,124.341742],[-9.770462,-176.611620,129.203650],[-14.329361,-189.020700,130.787367],[-6.322891,-177.040420,125.950711],[-12.336014,-177.212906,132.187121],[-11.947159,-167.105846,135.577717],[-9.296341,-163.786586,132.782692],[-10.502029,-154.971901,138.769795],[-7.747024,-155.058979,134.259693],[-7.439529,-146.841484,137.622939],[-5.275223,-159.604732,131.031341],[3.940720,-178.523369,125.145779],[1.464157,-173.248092,124.921251],[-5.861771,-124.099342,151.796097],[-12.049087,-128.527290,153.405491],[-20.636978,-128.075584,157.086132],[-26.097122,-130.000518,159.641755],[-28.683121,-144.953003,157.945099],[-30.823990,-170.572082,153.484848],[-31.362869,-178.524692,151.976096],[-33.555801,-178.136232,152.160965],[-8.727676,-132.812435,150.526825],[-7.203873,-108.056389,157.057598],[-11.363602,-107.643264,158.210770],[-21.123550,-116.320274,160.522957],[-29.836502,-134.348781,160.328175],[-33.282608,-158.802154,155.872734],[-38.461319,-133.410522,145.300347],[-43.410049,-136.995784,134.955778],[-47.884598,-126.077179,142.868706],[-41.959183,-117.905296,141.992800],[-35.882889,-113.533180,147.097767],[-35.818924,-111.009353,145.546383],[-38.679153,-95.233986,148.307333],[-41.889603,-90.929611,152.287993],[-42.381241,-77.836715,157.109841],[-32.375503,-66.688842,154.794835],[-31.422500,-73.731086,152.736697],[-28.433304,-70.993797,155.978390],[-27.528458,-69.578483,160.730732],[-25.511490,-73.119819,171.865651],[-15.449356,-69.007393,170.810528],[-18.653152,-66.198715,172.957131],[-12.009720,-62.849365,170.771870],[-6.171463,-58.919952,167.117897],[-7.738113,-69.076011,165.087132],[-29.692459,-75.886825,153.678269],[-28.301651,-64.242233,156.068344],[-37.486221,-68.298317,157.591637],[-44.177811,-53.360702,165.869187],[-42.953140,-32.791992,169.608719],[-25.322220,-28.285186,164.669342],[-26.098709,-34.497726,162.952404],[-31.671341,-58.356048,157.667141],[-38.336868,-45.628524,164.965447],[-33.443985,-38.971191,164.820137],[-29.614090,-28.898803,166.478901],[-29.651504,-57.761612,157.387017],[-33.263077,-47.935180,162.400925],[-30.010818,-49.761841,159.688603],[-26.238968,-45.439666,160.584828],[-28.185074,-37.935211,162.566979],[-38.307144,-79.944832,153.969654],[-30.787857,-86.288986,152.052227],[-29.414932,-79.565979,157.664894],[-31.811844,-82.655670,150.929640],[-33.996780,-76.265884,152.314711],[-33.546097,-84.972450,149.955494],[-36.387527,-87.983574,149.544855],[-34.874588,-94.787491,147.825280],[-33.245682,-93.943672,148.793045],[-32.283096,-94.341797,150.469151],[-31.179703,-88.579635,155.077546],[-29.349197,-83.437851,162.699761],[-33.784012,-102.006462,148.166897],[-34.735855,-106.673675,152.084929],[-32.213638,-96.555275,157.542488],[-38.188797,-133.285400,137.630053],[-36.779068,-118.368721,148.290984],[-37.010635,-122.839454,142.753876],[-38.155594,-136.159599,139.644865],[-38.135879,-125.031997,139.170500],[-38.412735,-118.771789,141.102244],[-30.852005,-122.679962,162.515225],[-34.176285,-189.196348,150.661196],[-33.694839,-201.575735,148.487793],[-44.084915,-190.585933,137.841082],[-39.244156,-204.178055,145.128277],[-33.840408,-216.695308,145.411429],[-38.012894,-208.438151,146.090563],[-38.923477,-219.530054,144.089844],[-40.556167,-212.163734,142.723626],[-41.190262,-222.420723,140.386404],[-43.735916,-213.120229,123.766658],[-42.936355,-203.791443,124.486260],[-40.475113,-195.039184,120.539984],[-39.020584,-183.250476,112.397300],[-37.555374,-184.218368,117.160925],[-38.685440,-172.637617,114.412724],[-40.941055,-181.578895,111.145247],[-39.434341,-189.829309,109.008419],[-38.259903,-195.634996,107.150841],[-40.926590,-199.826564,102.470282],[-43.129043,-197.893538,103.452423],[-51.654556,-202.244675,110.156675],[-51.254532,-208.505789,106.434261],[-55.248184,-221.564373,105.443089],[-63.575210,-221.127515,116.272502],[-55.432083,-210.731881,110.943229],[-60.038528,-211.899616,116.779179],[-38.721329,-209.093093,98.500666],[-43.221695,-205.886318,99.155327],[-45.340286,-214.463640,95.348071],[-49.645035,-214.689491,100.496891],[-57.905167,-233.800163,102.769480],[-55.453323,-246.652889,89.745369],[-54.634537,-252.470684,86.124417],[-49.701370,-251.851051,82.347123],[-46.954788,-255.265625,79.546807],[-45.474319,-267.666076,73.974476],[-50.244156,-264.971847,76.339772],[-53.716690,-260.886429,81.168705],[-56.309646,-259.707988,83.521405],[-59.457352,-272.280357,79.408577],[-61.390823,-280.318275,76.786976],[-63.100113,-276.346763,77.398800],[-65.590530,-290.756195,73.965607],[-67.125137,-292.576866,72.294857],[-66.623550,-299.740707,73.040886],[-69.098038,-303.233444,70.222187],[-60.143021,-309.414657,70.313984],[-55.432693,-317.363083,62.794464],[-55.463943,-340.531814,57.853169],[-51.605728,-339.874801,54.559014],[-51.443741,-330.562912,56.137932],[-55.715164,-331.064148,59.701897],[-51.287125,-316.116790,59.041573],[-56.933060,-306.837608,66.692269],[-56.366165,-302.293007,67.174920],[-60.357071,-301.125518,72.511124],[-63.347488,-298.206283,74.010376],[-43.516250,-305.346023,59.702526],[-42.337234,-310.025215,59.543351],[-46.417740,-320.540374,55.641686],[-48.850174,-325.901840,55.321747],[-46.163772,-332.068374,53.443283],[-46.348770,-344.082245,50.920967],[-43.515457,-336.478241,53.175835],[-39.614212,-339.132812,55.373658],[-29.860123,-348.438598,73.954384],[-30.006973,-343.350174,76.784516],[-29.330215,-354.269180,74.327019],[-28.491287,-372.280792,71.451199],[-30.262955,-372.068145,63.583256],[-44.511001,-365.996093,48.723656],[-44.817154,-358.934982,49.161217],[-47.677261,-355.979370,49.626198],[-42.313614,-359.322570,50.276047],[-39.406875,-351.565277,53.711525],[-42.110672,-350.833343,51.466652],[-35.978897,-353.803665,56.827935],[-35.984451,-338.592056,59.502259],[-34.219009,-335.315109,62.636753],[-44.848770,-349.556884,50.389656],[-34.289200,-364.463684,57.320321],[-33.105057,-357.065048,59.824089],[-31.313736,-358.899185,62.683796],[-30.755997,-355.926483,65.045929],[-31.011490,-340.759536,69.148728],[-29.933304,-362.592529,66.289544],[-41.122208,-330.688369,55.865540],[-36.964859,-326.187072,61.433148],[-33.619644,-326.526184,66.659645],[-34.839554,-316.467094,68.616623],[-35.600540,-306.461754,70.800915],[-38.720596,-302.773544,67.106560],[-35.696915,-294.241462,74.945137],[-42.068497,-297.067131,63.983910],[-38.342178,-314.342148,63.783574],[-42.342300,-318.251342,57.704110],[-47.719314,-337.686615,52.393784],[-49.142349,-314.421005,57.745118],[-44.367386,-312.147651,57.691201],[-50.921890,-301.268989,62.548737],[-53.264358,-293.436584,67.310650],[-48.128982,-296.898834,61.835923],[-44.750625,-295.619812,62.067849],[-58.484085,-292.141113,73.094693],[-47.643631,-303.089935,59.707154],[-48.728714,-345.775177,51.578255],[-61.183182,-350.284912,65.323235],[-74.374832,-354.777435,62.742958],[-74.776260,-356.257766,59.226853],[-74.552811,-347.569565,57.455262],[-73.097061,-361.847290,48.602929],[-70.573624,-361.479828,40.084832],[-71.723465,-353.384674,44.386635],[-60.552261,-330.790344,67.109036],[-59.095169,-345.518814,63.166657],[-63.407303,-341.190460,69.274475],[-66.760879,-338.607528,70.932061],[-66.952896,-329.363006,71.704022],[-71.067520,-335.273849,68.902466],[-74.354874,-342.749054,63.198017],[-73.035354,-341.815048,66.122498],[-69.047989,-344.340362,69.844075],[-65.305191,-345.801010,69.802704],[-63.600845,-332.288055,70.327542],[-65.314651,-332.847305,71.312413],[-60.967178,-321.953781,69.163880],[-64.250748,-323.262214,71.731736],[-65.710831,-318.130630,72.554886],[-69.398636,-295.098869,67.095856],[-70.903702,-293.408683,61.311589],[-72.894546,-293.813461,58.677262],[-72.043411,-298.636253,57.687233],[-72.112137,-305.003486,55.018189],[-72.655350,-312.653427,61.055874],[-74.049026,-329.674347,55.630677],[-72.039200,-337.684845,45.990242],[-69.965958,-328.937683,42.148400],[-65.907669,-325.551300,31.628991],[-65.380325,-329.919265,24.014229],[-68.602920,-342.502456,14.447358],[-73.300247,-339.941192,16.357155],[-78.822098,-340.774978,16.080063],[-82.565506,-341.754348,15.754670],[-87.951553,-351.428512,9.757821],[-90.357925,-342.252838,21.511551],[-94.561844,-336.953384,32.056458],[-93.607681,-316.130714,51.760498],[-106.742691,-316.391456,58.910275],[-112.172073,-304.528816,63.187428],[-114.908218,-296.589584,64.881745],[-109.293838,-281.553184,81.937237],[-104.312210,-275.032097,91.684554],[-107.274429,-272.806923,90.176819],[-100.446426,-258.484035,104.647206],[-104.215103,-261.497909,99.714852],[-120.857071,-248.821621,80.327122],[-112.823135,-218.914957,95.379206],[-114.098953,-214.195701,93.711956],[-115.869400,-204.667599,94.093119],[-120.976944,-211.344059,81.420002],[-119.286758,-202.133984,89.261723],[-125.207657,-202.373651,80.682049],[-123.032059,-197.141480,85.882100],[-129.354996,-189.639848,83.463726],[-130.581131,-192.793461,78.529675],[-132.687393,-197.821223,75.901753],[-133.685623,-204.589981,72.560032],[-131.895157,-205.217480,73.983971],[-129.499893,-213.129177,70.794297],[-128.570450,-220.753387,67.264389],[-123.364029,-206.688287,79.800766],[-122.369278,-216.399185,77.256993],[-118.952835,-216.642255,83.425759],[-120.538528,-225.104154,78.305035],[-114.795425,-217.708597,91.079720],[-115.788467,-228.119514,87.833283],[-117.704361,-232.534446,83.539715],[-122.840042,-240.871273,74.068737],[-129.586319,-240.519466,59.881436],[-119.929459,-229.157741,79.093514],[-124.366470,-228.001800,70.956566],[-129.295792,-234.647529,60.698079],[-129.525955,-227.955928,62.335362],[-132.133255,-221.820038,63.543606],[-135.854080,-208.357391,67.781025],[-133.611160,-203.004958,65.680870],[-129.766128,-203.859145,61.185452],[-126.217056,-201.958049,51.326035],[-125.875687,-195.721464,54.482567],[-126.078995,-194.242683,48.794861],[-127.861526,-192.393876,45.975029],[-142.399063,-211.059876,35.607087],[-144.324295,-214.393203,32.150597],[-141.902603,-205.741304,24.110703],[-138.839126,-205.486550,19.435196],[-137.779861,-200.909968,16.735131],[-139.332596,-190.885194,20.367112],[-140.463638,-185.592477,23.029969],[-148.283584,-182.273386,28.658547],[-143.570511,-183.794172,24.732407],[-145.540970,-221.141040,3.365883],[-137.158157,-227.362003,2.122750],[-136.510513,-239.999721,-2.810424],[-138.715164,-243.446705,0.727768],[-142.510818,-230.670284,16.230881],[-137.533218,-229.723266,19.986542],[-133.061050,-222.275367,24.608940],[-128.745071,-220.171026,29.096070],[-130.059524,-221.725443,25.821854],[-128.182876,-214.424446,31.058175],[-130.199356,-208.860225,32.946412],[-131.331375,-200.436283,38.509415],[-134.061294,-202.880330,37.275368],[-138.560440,-209.512316,35.230935],[-144.834549,-205.438754,38.243843],[-143.798172,-225.667568,21.931137],[-143.381729,-223.743541,20.993813],[-145.101700,-214.983312,27.683503],[-145.078812,-217.758779,28.320023],[-141.837173,-224.372003,25.233681],[-141.976761,-235.160644,15.608757],[-136.900406,-233.010170,1.040406],[-137.357376,-223.264877,4.654618],[-138.966263,-213.018434,17.253418],[-139.309708,-232.884338,-3.892143],[-137.384109,-233.276661,-2.309883],[-137.983292,-239.726139,-7.340919],[-136.563736,-240.542728,-5.729766],[-136.808670,-259.898002,-16.820701],[-141.667251,-229.173385,-2.459289],[-141.776382,-236.483455,-7.476188],[-144.163284,-231.088993,-3.086639],[-149.182938,-241.623550,-4.100502],[-145.797867,-244.819328,-10.386512],[-150.336136,-251.204376,-8.337806],[-156.734634,-258.038051,-3.951423],[-155.658462,-266.085113,-10.836372],[-159.308914,-263.569908,-4.642555],[-164.808121,-286.259941,-14.771659],[-176.487869,-298.264610,-19.956886],[-178.615250,-299.269180,-24.205970],[-178.017227,-300.178291,-42.172142],[-178.255997,-294.516449,-28.434074],[-178.669144,-288.194214,-26.944252],[-178.636001,-283.671547,-32.572914],[-179.338699,-292.460540,-51.686424],[-178.121231,-304.786598,-56.248436],[-178.096207,-307.721351,-51.218574],[-174.344803,-326.810226,-36.317100],[-171.992752,-324.359070,-34.609062],[-179.231766,-308.219200,-28.855874],[-179.005142,-305.178085,-36.979774],[-178.376480,-316.594307,-48.007194],[-180.144180,-311.295143,-35.048180],[-180.034439,-322.486244,-41.623268],[-178.615677,-327.262191,-41.205345],[-179.550369,-313.224632,-32.881965],[-176.545730,-319.385086,-32.848121],[-176.937210,-327.175247,-38.580726],[-179.160660,-311.678367,-41.844459],[-178.350235,-295.106491,-45.950401],[-177.964798,-292.082031,-33.578422],[-179.410477,-302.190033,-29.057060],[-179.042129,-283.624763,-22.635048],[-179.536758,-273.480858,-13.123191],[-180.607803,-266.108261,-15.901085],[-179.837417,-255.680988,-9.154213],[-178.891983,-241.726700,-13.839988],[-179.747146,-244.410957,-3.708183],[-178.384537,-233.870079,6.405465],[-179.384842,-254.150951,-5.088722],[-177.191360,-250.644901,2.973740],[-177.149490,-240.701076,7.653595],[-172.014969,-235.096367,15.121933],[-178.962479,-259.677162,-6.135337],[-177.909073,-292.229927,-19.458107],[-176.213943,-290.711204,-15.181739],[-172.659073,-297.718826,-17.861626],[-168.184830,-284.069290,-10.705055],[-171.320938,-286.111801,-10.968834],[-171.669083,-277.898544,-6.358894],[-170.852371,-268.830841,-1.674118],[-168.233902,-269.363937,-2.405288],[-163.998428,-265.892646,-2.418258],[-167.308731,-292.255294,-16.638329],[-170.316788,-296.000534,-17.179893],[-175.458145,-272.026291,-4.640350],[-177.898453,-257.395633,-1.020782],[-178.650040,-281.692222,-13.897407],[-178.451187,-277.099876,-10.092201],[-177.431412,-282.361755,-10.928154],[-173.519119,-282.411140,-9.117042],[-162.436294,-271.420746,-6.995796],[-161.012527,-286.481964,-18.458549],[-153.434952,-276.803001,-20.331169],[-148.491104,-276.774894,-25.517906],[-151.903519,-289.524452,-30.140846],[-154.522171,-298.310150,-32.408958],[-162.981216,-308.671844,-30.266548],[-161.775101,-302.771934,-28.022316],[-165.849380,-304.735649,-25.685845],[-157.868179,-288.272422,-23.179496],[-157.603836,-270.854385,-11.709556],[-148.418594,-235.585849,-1.583305],[-148.020889,-226.340639,2.936013],[-150.263321,-216.276792,11.475274],[-149.751114,-206.507035,16.484627],[-135.856644,-246.123367,-6.508064],[-137.808731,-193.901903,21.203598],[-138.437088,-186.970508,24.309609],[-140.606766,-186.453940,32.116074],[-145.230179,-198.401163,38.891083],[-144.666946,-206.981785,32.115754],[-137.668106,-172.020544,36.148270],[-137.525833,-171.230657,32.439133],[-140.831802,-179.209282,26.919831],[-144.641739,-176.398801,29.275650],[-138.518387,-179.038553,29.359780],[-138.473038,-188.642484,26.425232],[-134.243423,-202.208172,71.331875],[-132.230240,-197.960929,72.403653],[-127.336868,-195.456159,68.467530],[-126.027847,-195.908319,62.684582],[-127.544754,-202.422779,58.134587],[-126.247452,-187.380216,61.172074],[-126.175674,-182.093954,60.395626],[-126.204544,-186.837230,52.684739],[-131.570572,-173.896187,57.188851],[-127.177811,-169.227190,65.164898],[-126.974197,-162.813579,68.495274],[-130.670059,-162.833599,65.383217],[-141.458084,-176.580204,59.426880],[-141.966446,-183.649221,55.134957],[-139.809524,-183.769931,55.338135],[-127.822891,-183.870858,52.454171],[-130.166641,-192.956905,44.140732],[-131.128860,-185.597257,49.542473],[-135.348526,-183.598485,50.782853],[-137.224930,-176.704294,58.817604],[-132.896683,-169.161907,61.273640],[-138.427383,-169.575365,64.510579],[-140.075577,-168.873277,63.942898],[-138.709122,-159.804645,69.352524],[-134.619034,-132.412025,83.161759],[-136.770157,-133.908306,80.068489],[-134.427322,-123.786941,85.285206],[-132.896805,-113.405266,89.682190],[-132.144180,-97.256828,89.789841],[-130.113418,-86.775474,92.714468],[-131.848221,-99.726814,84.717179],[-121.943252,-65.427658,90.711184],[-121.234085,-61.745498,88.641964],[-120.596268,-55.290771,96.164376],[-119.405350,-45.972809,98.806815],[-120.125015,-44.236938,96.699746],[-122.674942,-35.599685,97.862608],[-119.687576,-35.488510,99.892430],[-118.301895,-39.341827,106.864298],[-119.961990,-46.868408,104.249682],[-123.563248,-60.153488,109.271682],[-126.750503,-73.649284,104.217894],[-129.527908,-84.932975,99.157540],[-127.856949,-75.884010,100.014527],[-131.099197,-95.963531,95.890921],[-116.903580,-111.418289,112.162220],[-114.427261,-101.468963,118.233450],[-114.253189,-108.568382,119.170059],[-106.479751,-116.933761,129.741623],[-111.601578,-115.625511,121.609330],[-115.597000,-133.281078,107.935950],[-118.909073,-131.514328,104.318818],[-114.242081,-141.569641,110.769647],[-116.587723,-139.250099,104.377653],[-116.866104,-151.949100,103.526806],[-119.153702,-155.825840,94.428963],[-120.140701,-164.782444,88.557602],[-122.538772,-180.320866,79.650971],[-124.601761,-183.253402,82.224491],[-124.744888,-188.388429,73.215802],[-124.821243,-189.295431,67.268010],[-126.794205,-175.596977,61.648964],[-126.359024,-169.476673,75.961831],[-124.146744,-163.475837,83.072209],[-126.390945,-180.909951,67.012532],[-126.617874,-175.885854,70.864476],[-124.522598,-175.519415,74.228100],[-120.573501,-172.437113,84.376019],[-124.751175,-158.970565,85.390377],[-123.360000,-147.079872,91.932066],[-122.938431,-143.598167,91.157103],[-124.505691,-148.713451,82.257904],[-125.555801,-147.443397,78.952496],[-123.786514,-153.406765,89.788275],[-125.020218,-156.905464,84.451893],[-125.685135,-162.647304,73.758423],[-126.991165,-154.505512,73.016953],[-128.138626,-157.810436,69.630947],[-131.014053,-157.289783,70.130654],[-129.130203,-152.760872,73.001149],[-133.652237,-151.855621,75.057850],[-122.299942,-166.023260,83.512848],[-125.263626,-159.118213,79.206929],[-125.719742,-158.428268,73.784054],[-125.734695,-163.666317,79.656960],[-126.579727,-169.834871,67.981644],[-121.794937,-173.637373,79.668961],[-122.953995,-181.737468,74.406952],[-124.233902,-181.769258,70.804989],[-119.089249,-117.555542,106.217862],[-118.859756,-127.231025,105.737858],[-120.753372,-125.472122,99.911633],[-122.560135,-137.051136,92.142363],[-124.323196,-132.352684,88.545594],[-130.771316,-129.133873,85.767441],[-135.797806,-142.379131,78.959542],[-132.939957,-142.582061,79.421360],[-127.996048,-138.439201,81.532696],[-128.936294,-146.394550,77.162060],[-127.061050,-147.563320,77.172463],[-124.008316,-139.158786,86.524254],[-125.917129,-132.476024,85.866814],[-137.915726,-147.508232,75.572792],[-132.598526,-125.394920,86.544072],[-131.305130,-116.943062,90.493025],[-128.499710,-100.198570,98.438221],[-126.990311,-105.685569,97.507103],[-131.535416,-104.714668,93.718502],[-127.094253,-125.373886,88.943779],[-120.293594,-112.476921,104.076729],[-124.044327,-109.036377,98.461415],[-124.582535,-123.079452,92.346684],[-126.646194,-115.696342,93.528931],[-122.103653,-108.354423,101.245583],[-122.462356,-117.361519,97.837967],[-117.231705,-120.202980,111.269082],[-120.675491,-134.123344,99.594403],[-121.763931,-144.874405,96.469109],[-118.163223,-146.469795,99.427735],[-122.930557,-62.462066,111.456104],[-124.700027,-73.118034,108.598601],[-121.993851,-76.191002,109.815489],[-118.947464,-79.024315,111.046282],[-120.530228,-89.884666,107.582755],[-116.997818,-77.546180,113.981486],[-115.811294,-86.428566,115.519974],[-111.092178,-96.675369,124.813940],[-106.393997,-93.238136,132.410731],[-100.860611,-73.202995,142.243731],[-97.988052,-75.121307,145.535616],[-94.889175,-78.297279,148.767931],[-89.799698,-77.782051,153.281826],[-82.092850,-47.160370,160.334813],[-90.821365,-70.383423,153.221735],[-97.736404,-62.742477,146.600386],[-102.347916,-67.092987,140.399474],[-101.638260,-96.002037,138.972897],[-96.065445,-85.153228,146.956318],[-103.032913,-80.363815,138.853211],[-117.838394,-71.319076,113.481347],[-115.714798,-63.604889,116.740344],[-121.377640,-64.981552,113.679324],[-124.701004,-92.810760,103.907526],[-128.252334,-41.413650,96.375666],[-126.889114,-29.669601,102.798779],[-122.773209,-43.493759,93.895859],[-129.438614,-34.318664,101.610697],[-118.265396,-39.338882,103.754784],[-117.170975,-32.763809,105.721579],[-118.005813,-33.126007,103.285193],[-122.812942,-66.494278,92.731690],[-122.973770,-62.015503,97.890763],[-125.651016,-67.160949,104.626242],[-126.598526,-76.636299,93.558838],[-125.664078,-68.386291,100.770779],[-122.951919,-56.499511,106.249734],[-137.921890,-149.138576,59.504689],[-135.083145,-134.009155,64.920369],[-139.745682,-144.089084,66.420002],[-140.621414,-147.051769,67.173184],[-139.708816,-145.469829,72.689816],[-141.032486,-153.512405,64.683041],[-142.126907,-168.378927,59.923748],[-140.465469,-165.330814,50.961777],[-136.116959,-160.899517,43.259484],[-143.056595,-180.432367,53.528412],[-142.618362,-189.592587,33.961060],[-141.607986,-182.143690,37.284447],[-144.006668,-188.050589,42.711525],[-138.484207,-178.725296,32.499962],[-141.920303,-176.736648,43.050995],[-142.025711,-172.091180,49.644463],[-142.671890,-174.144748,52.333207],[-143.832413,-185.614377,46.403992],[-139.867630,-157.061504,68.777882],[-138.305679,-133.914577,74.579319],[-137.394668,-129.124496,73.526730],[-132.831375,-115.588852,74.754555],[-127.749344,-105.040153,73.742398],[-128.167129,-117.918579,62.837334],[-134.327530,-118.732391,54.786782],[-137.475174,-120.128311,54.800270],[-134.602798,-126.202949,50.930252],[-139.819229,-155.829433,58.158059],[-141.536331,-160.975292,58.910859],[-136.018326,-147.953346,56.398766],[-130.503860,-124.613388,52.475129],[-128.339798,-122.325988,55.077660],[-127.550552,-117.501175,57.826950],[-127.781937,-123.162254,56.952210],[-129.736832,-128.418052,58.309327],[-129.558548,-116.462997,56.368668],[-138.042557,-137.334327,67.918175],[-135.994278,-167.058305,65.834866],[-136.616409,-160.066501,70.407734],[-125.784500,-192.602325,61.807690],[-126.311294,-187.324270,78.943375],[-125.460709,-181.310909,88.484661],[-125.418716,-182.331893,91.442145],[-127.506363,-191.038064,86.160733],[-122.102371,-189.140677,92.250643],[-119.679275,-190.788325,94.159575],[-117.544021,-193.752871,96.803152],[-112.105606,-192.068191,106.661276],[-102.985000,-198.218831,117.509030],[-98.047500,-198.136445,121.995388],[-95.037063,-188.348366,126.869656],[-90.295730,-198.596494,126.249395],[-84.509842,-191.030484,130.114019],[-83.577042,-179.612808,133.746184],[-79.737015,-170.431678,137.043785],[-75.695084,-166.714748,138.334605],[-70.838943,-155.606178,141.557198],[-70.619034,-170.729377,136.550400],[-66.770401,-160.810817,139.177239],[-63.617264,-166.634067,136.193734],[-58.667618,-164.267542,134.975071],[-52.247391,-179.760446,123.081956],[-48.796280,-169.348837,124.719394],[-44.113418,-172.039438,115.766153],[-41.023392,-160.444732,121.621719],[-43.461502,-165.877546,120.067700],[-53.666763,-168.710947,130.117980],[-55.653946,-165.753709,132.856019],[-63.667862,-156.671932,139.802397],[-55.874527,-149.378532,139.168379],[-61.644607,-141.229862,143.973553],[-56.186539,-138.263427,142.871851],[-60.334976,-132.058353,146.529698],[-64.601150,-131.364441,147.881003],[-67.158096,-129.646728,148.789471],[-72.371597,-131.431038,148.490273],[-77.057815,-126.408714,149.566637],[-81.996963,-113.439056,151.401408],[-88.257522,-100.695541,150.781023],[-96.946854,-106.081001,143.765074],[-94.695999,-91.033065,147.624760],[-80.451309,-78.662491,158.535416],[-61.806106,-80.292274,161.546128],[-58.684769,-74.659973,162.884190],[-62.870376,-61.578064,165.751587],[-58.776749,-49.633438,168.150940],[-52.057693,-42.153991,169.334328],[-55.112869,-32.846252,170.566677],[-53.375442,-17.714859,172.122193],[-48.062698,-15.846985,172.436928],[-49.226883,-6.358825,173.654503],[-41.852188,4.300705,174.904728],[-40.420303,-20.818573,170.925942],[-47.536575,-36.468963,169.906353],[-33.941055,-13.607101,170.363579],[-41.944290,-3.615875,173.999112],[-43.654556,-13.845977,172.557534],[-49.653885,-32.489258,170.586079],[-48.283523,-49.955307,167.675293],[-47.161758,-62.045700,164.499718],[-66.255813,-23.973983,169.280877],[-70.572403,-29.975891,167.479996],[-72.502273,-39.266952,165.996609],[-61.786331,-41.055648,169.010662],[-65.952225,-51.895263,166.998318],[-77.847977,-56.861511,162.302597],[-71.566971,-48.036026,165.552971],[-65.029739,-33.145645,169.143822],[-66.090164,-45.064712,167.596596],[-67.563003,-59.839935,165.529126],[-73.092117,-70.761062,162.277367],[-84.226395,-76.334419,157.042961],[-76.173050,-66.396270,162.077103],[-80.537308,-67.709961,160.062412],[-91.007645,-98.464737,149.376088],[-80.741104,-88.625122,156.433842],[-76.254715,-81.051750,159.643895],[-69.199844,-79.526809,161.196068],[-60.922745,-86.909767,159.994156],[-46.264358,-70.747245,161.925038],[-47.536331,-87.023628,157.285435],[-47.507339,-80.728836,159.438038],[-49.580215,-91.290680,156.830131],[-65.922439,-146.890571,143.392525],[-68.183121,-142.408119,145.170391],[-73.192764,-142.438476,145.583695],[-77.026993,-138.345718,146.532456],[-80.725479,-136.734329,146.271592],[-85.142105,-134.642139,145.451653],[-83.232132,-123.744842,148.718237],[-89.739090,-124.884735,145.934449],[-83.779190,-104.336319,152.479126],[-67.386978,-180.503644,132.586398],[-88.283218,-176.295532,133.433331],[-92.713943,-176.463033,131.655310],[-90.795547,-170.042110,134.325725],[-84.560562,-159.253322,139.446820],[-81.246658,-161.035980,139.671198],[-120.304031,-168.018524,94.693400],[-120.161453,-166.697563,102.920239],[-117.429581,-158.145805,107.332342],[-108.690079,-155.485477,122.597846],[-106.211929,-156.152878,125.606425],[-106.596512,-142.899643,127.471743],[-108.592789,-141.174240,125.143793],[-110.320145,-139.636070,121.550613],[-113.594864,-148.961982,115.310856],[-112.936355,-153.695270,117.535991],[-122.496353,-175.892219,89.069024],[-128.621719,-195.438507,70.509274],[-107.192215,-259.224315,97.633603],[-109.610611,-269.180404,88.963269],[-111.456741,-263.502868,88.955365],[-115.034805,-261.133285,85.036511],[-119.742935,-261.308136,78.011311],[-123.884964,-257.068443,77.361294],[-123.536392,-259.210582,76.361267],[-129.657730,-263.433716,64.361931],[-116.732986,-278.274574,72.184571],[-117.970901,-274.964523,71.842430],[-118.744827,-266.809913,73.745770],[-126.185806,-267.832306,62.264580],[-132.809341,-270.387657,52.280907],[-112.832779,-268.960472,83.697091],[-123.715591,-271.465164,63.831334],[-128.505752,-290.334800,48.499360],[-130.497208,-302.625976,44.088761],[-127.118118,-308.237762,47.203507],[-133.877334,-303.196594,37.948281],[-131.708267,-294.428779,42.438530],[-135.712723,-295.741836,32.260163],[-137.220230,-303.988510,30.321343],[-129.204483,-284.448425,48.918389],[-135.448013,-284.137787,35.432633],[-137.380508,-289.050995,27.678765],[-133.437637,-287.481247,39.123604],[-131.160416,-290.755211,43.696732],[-137.500687,-282.787040,27.830323],[-139.790665,-283.912979,21.827393],[-143.687393,-284.376259,21.161576],[-144.378006,-280.409164,27.840981],[-138.344986,-285.760750,20.215386],[-138.485672,-287.550018,16.311837],[-139.262405,-290.289299,10.155594],[-138.929336,-292.426468,16.460534],[-141.242691,-300.914344,13.536400],[-143.242813,-309.442924,14.258583],[-144.590774,-310.582359,8.733788],[-142.431900,-304.251983,7.285393],[-141.758438,-305.325164,-0.417625],[-138.185806,-296.738197,24.760003],[-142.729202,-313.708267,18.428948],[-137.701614,-291.808761,25.291954],[-72.674393,-328.555328,49.784645],[-72.382889,-313.211410,56.663041],[-71.538040,-307.821747,49.446465],[-70.438614,-311.523117,42.266892],[-73.526382,-310.224670,41.705368],[-72.119522,-318.023506,33.340226],[-75.332352,-328.718322,24.466774],[-70.228348,-312.513084,44.765122],[-71.134170,-320.280487,48.004486],[-73.613418,-306.180343,47.041047],[-80.849747,-302.434135,57.149559],[-94.854935,-311.294700,58.034577],[-103.097671,-315.492889,58.916165],[-104.236160,-311.378624,63.282402],[-109.815201,-308.862823,61.983200],[-71.950760,-308.794769,60.902405],[-70.720291,-300.679985,62.852253],[-72.848282,-317.900543,63.736557],[-73.782059,-324.253235,61.439640],[-74.452896,-336.827499,59.283524],[-71.092728,-316.579597,68.613491],[-72.029251,-329.690155,68.084416],[-69.597427,-281.088463,73.035576],[-65.697403,-274.497421,78.888764],[-67.826675,-287.612983,70.050812],[-68.435379,-284.793167,67.206330],[-69.055008,-283.412025,67.566231],[-66.300857,-282.720794,73.003765],[-66.134903,-280.074638,74.587483],[-63.249161,-270.764694,78.233475],[-58.976028,-262.369575,83.200020],[-62.448929,-263.893051,87.488675],[-67.434524,-269.348480,88.871903],[-83.697952,-273.395202,96.152430],[-80.923538,-267.578193,100.275914],[-87.439346,-267.240051,101.665959],[-87.041092,-262.528724,105.376839],[-89.449539,-255.326984,111.183041],[-96.314529,-265.331985,101.953440],[-101.609268,-253.885017,106.693837],[-91.388138,-217.195987,120.824234],[-87.483780,-213.573036,122.872663],[-85.396316,-200.202593,127.141206],[-107.600174,-251.962047,102.301356],[-114.298599,-253.523769,94.300623],[-115.402298,-250.954792,92.359240],[-115.057693,-246.155307,90.423771],[-109.127396,-248.091713,101.452151],[-103.810501,-238.687801,107.202576],[-105.524429,-234.502952,105.911576],[-107.061417,-229.313770,105.518011],[-109.661453,-229.983905,101.245875],[-113.892227,-233.062347,92.330742],[-108.949478,-216.391432,104.334280],[-111.944534,-207.920372,101.400868],[-110.972671,-205.263252,104.388291],[-114.857498,-197.521431,99.728733],[-108.630264,-202.686310,108.994492],[-106.641128,-242.670326,103.598427],[-104.256485,-246.849418,106.550929],[-99.089859,-228.322132,114.025443],[-93.975235,-227.284977,117.388110],[-94.976822,-214.542490,119.862650],[-93.301285,-196.981738,125.346332],[-95.693375,-240.439537,113.465548],[-100.073318,-239.660930,110.855384],[-100.330459,-246.473118,109.615447],[-98.799881,-217.402370,116.594174],[-95.797073,-206.480697,121.407486],[-104.028519,-226.495481,109.803712],[-106.745987,-215.772260,108.448017],[-105.599014,-203.079023,113.266556],[-102.323257,-217.485914,113.506904],[-100.783829,-268.203796,98.228491],[-103.733230,-280.652343,87.602124],[-102.001663,-298.011718,74.580151],[-87.200882,-287.484413,82.445584],[-76.833633,-271.904144,94.662215],[-100.783768,-276.456085,92.941311],[-104.202103,-289.814209,80.600666],[-108.034439,-288.761940,78.201378],[-63.794266,-260.240509,93.754279],[-67.489761,-260.836487,98.191594],[-70.798843,-262.292938,100.411192],[-76.275711,-258.558036,106.264723],[-88.743606,-239.569359,115.967134],[-91.528580,-230.920971,117.573720],[-94.656509,-254.350429,110.246083],[-73.553787,-262.230926,102.175845],[-66.981644,-254.438385,102.522513],[-66.540298,-229.248134,115.140080],[-69.167923,-231.807560,115.570794],[-71.345291,-248.006057,109.370705],[-81.102554,-242.922203,114.827726],[-77.587417,-254.014145,109.555660],[-80.994522,-260.159828,106.915101],[-84.463577,-255.130378,110.911738],[-85.519180,-246.522808,114.036072],[-79.119278,-228.324623,119.777804],[-76.227127,-230.205745,118.728849],[-74.990555,-241.592888,113.833054],[-70.506546,-255.237869,105.356858],[-62.207168,-267.613144,81.696381],[-67.859024,-273.858123,82.190895],[-72.022354,-281.121597,75.688477],[-73.936783,-289.671562,67.350872],[-79.172012,-293.984100,66.709381],[-83.625198,-301.996811,60.246735],[-106.870621,-303.361282,67.723793],[-48.125259,-262.100837,76.390171],[-45.025772,-261.651870,77.468918],[-47.512100,-247.976467,82.887196],[-40.903274,-255.575882,83.872418],[-44.342239,-253.560234,81.570347],[-40.225296,-263.755218,81.896916],[-43.273453,-266.668976,76.931363],[-38.208694,-277.106109,78.770089],[-33.478531,-281.152145,81.773617],[-32.794937,-287.062454,84.601071],[-33.693985,-291.664573,86.170906],[-37.420914,-281.617164,94.011504],[-37.447647,-283.575973,100.420216],[-41.016250,-284.078201,109.533133],[-42.872391,-302.606125,114.148736],[-39.635147,-305.333984,106.086874],[-37.976944,-306.774490,101.323052],[-36.330582,-319.187935,97.529282],[-36.668045,-343.173141,98.360371],[-34.300064,-327.445587,88.213917],[-35.230057,-341.250274,92.831379],[-33.349747,-341.533996,87.217469],[-32.478226,-334.328125,83.084507],[-30.787918,-330.851989,78.945977],[-30.469803,-332.901687,75.574543],[-31.789078,-341.675842,81.768109],[-30.683487,-362.521820,84.608040],[-32.067093,-353.976150,85.717961],[-34.310562,-352.051895,92.058348],[-37.408279,-333.898040,101.002320],[-31.606521,-329.973953,70.823429],[-35.590713,-320.645302,94.443241],[-35.617264,-311.441192,90.644768],[-36.080521,-308.106941,96.310490],[-32.922745,-313.587364,82.326428],[-32.302627,-302.997482,80.782227],[-32.640823,-310.651252,77.050011],[-32.086197,-315.238670,78.609356],[-36.722916,-298.417076,90.593256],[-36.277481,-304.126770,93.783080],[-36.349136,-291.492454,96.574761],[-36.581131,-285.283622,96.704768],[-38.282120,-296.885009,102.128056],[-37.540176,-290.024070,92.112946],[-36.843521,-300.045105,98.277710],[-35.223526,-326.511703,92.002430],[-31.073440,-325.195663,78.737080],[-36.760940,-276.230491,98.295960],[-38.276321,-269.840263,103.617485],[-36.294327,-266.138282,94.218104],[-40.009781,-269.182991,80.567318],[-40.633072,-273.388466,108.983053],[-42.868179,-264.416153,115.996637],[-45.000687,-267.403312,120.295830],[-45.504837,-251.349403,124.381028],[-45.339859,-244.947700,127.130952],[-45.669205,-237.088363,127.716954],[-45.311355,-226.895425,131.135777],[-45.365982,-219.012298,132.329556],[-35.607254,-209.819819,146.928431],[-45.514908,-218.180370,128.534798],[-43.089310,-217.356592,121.448675],[-39.065933,-231.935730,111.977908],[-45.000381,-237.907123,124.386007],[-41.987198,-240.336860,117.764129],[-45.239273,-243.027507,124.026323],[-44.990494,-250.439960,122.384986],[-44.331558,-255.675235,120.051503],[-41.901688,-226.552482,118.100671],[-44.051285,-224.255987,123.754350],[-45.756973,-228.615543,127.362299],[-33.635086,-279.701210,87.655491],[-37.068802,-279.612449,92.418833],[-45.114578,-273.747490,70.670041],[-47.662552,-270.754501,71.973355],[-43.181106,-277.397415,70.559739],[-40.610733,-280.190155,74.118126],[-37.481155,-285.271599,76.181416],[-32.933609,-298.450226,78.908871],[-33.781143,-308.869255,73.939957],[-32.561294,-319.471458,72.973332],[-33.899551,-320.126327,86.352959],[-62.451065,-228.138851,111.833266],[-45.639542,-203.950067,102.505148],[-38.299515,-203.134822,102.208928],[-37.279556,-201.635934,105.946475],[-37.644852,-202.376469,109.103948],[-40.927994,-203.973774,118.805900],[-39.918350,-217.046148,114.240422],[-38.822159,-206.740423,112.371647],[-36.492935,-217.615205,105.994159],[-35.736587,-219.453550,98.024752],[-44.954666,-226.253702,90.754353],[-35.212601,-227.971851,100.255118],[-34.228775,-235.407268,96.900364],[-36.800125,-233.208187,105.659407],[-37.652237,-242.749088,108.664630],[-39.527725,-245.085922,112.455758],[-38.153030,-225.318092,109.624844],[-37.791946,-194.503221,111.499936],[-41.810623,-186.611109,109.169780],[-49.460220,-190.043570,113.930776],[-54.010330,-186.005051,122.151349],[-55.327896,-199.727544,117.177900],[-59.373978,-205.015355,119.683031],[-45.259537,-191.601103,107.584496],[-43.658951,-184.132823,110.310947],[-41.256363,-172.615965,113.247799],[-43.147415,-176.177334,112.771875],[-46.530044,-184.377598,112.878535],[-59.397415,-195.502118,123.769269],[-61.739395,-203.135528,122.557785],[-67.928482,-203.722482,125.208024],[-77.553055,-191.423026,130.665952],[-79.393875,-185.702243,132.384203],[-63.185928,-198.116963,125.159441],[-58.148880,-187.367174,125.903526],[-57.219070,-178.626745,128.578004],[-60.220535,-181.807768,129.303437],[-64.254288,-183.063221,130.627539],[-66.551895,-192.989364,128.326413],[-73.300918,-190.347665,130.723104],[-70.556839,-191.494799,129.962443],[-75.372940,-178.970258,134.489823],[-38.018814,-189.328159,115.098026],[-39.962662,-186.038936,122.628481],[-43.125320,-194.308676,128.037146],[-42.409500,-187.396236,128.989423],[-45.367447,-207.367651,133.932856],[-44.653580,-202.302168,135.770533],[-45.030472,-195.761079,134.167068],[-43.842667,-182.408693,135.551712],[-45.374344,-206.517598,130.517755],[-11.521194,-144.377273,148.980250],[-14.956985,-156.412735,147.531493],[-7.739700,-140.722545,142.247103],[-16.328262,-169.516649,143.633320],[-13.339004,-165.168003,139.674033],[-15.090958,-174.098159,138.374926],[-4.578018,-247.816860,110.263785],[-6.927505,-242.229606,112.443655],[-9.133133,-233.662483,115.578866],[-8.568558,-227.774118,116.707503],[-1.377457,-226.778555,115.246232],[-0.499100,-231.199836,114.429281],[0.061081,-213.314363,117.251697],[6.946274,-221.709556,120.045742],[1.576523,-222.262127,116.236960],[3.117478,-234.939720,114.646751],[2.829697,-218.662428,117.267166],[4.127609,-209.529368,119.530404],[13.825485,-217.930273,132.685104],[11.052170,-215.459490,129.765011],[9.850021,-210.030502,128.846563],[7.640610,-210.608783,123.898332],[5.427780,-215.074243,119.845955],[12.733200,-209.379759,132.961774],[-2.846329,-234.191978,113.807355],[42.466110,-233.676944,127.349703],[42.565659,-233.673767,134.154728],[42.511093,-225.607137,139.274456],[41.809921,-225.144540,143.717680],[42.237290,-233.464023,138.244452],[43.781174,-243.692527,121.426735],[42.518112,-249.337486,122.901665],[44.960251,-205.617107,130.040492],[46.054733,-184.309572,135.274183],[44.371689,-194.282608,135.124326],[45.876022,-193.873954,132.522243],[46.630539,-201.367531,128.894222],[48.352646,-208.882666,124.971257],[54.785935,-209.812051,119.675072],[60.545029,-202.473671,117.773331],[66.198532,-210.332283,104.831423],[68.663742,-203.358879,104.594464],[73.410751,-200.712659,99.901387],[80.068527,-197.075782,97.458817],[90.509262,-194.236014,107.307909],[94.488144,-194.485270,110.452280],[98.625717,-191.478305,112.481316],[92.271774,-185.823361,112.212068],[92.365158,-176.636230,115.220628],[87.372116,-172.841919,110.869164],[92.571274,-159.389888,121.018621],[98.166062,-161.754490,123.481597],[100.785935,-160.782055,122.697127],[102.415268,-144.717727,126.486438],[101.021713,-140.601593,131.174190],[102.183640,-131.676613,133.020515],[101.120407,-125.838775,137.106707],[99.413193,-125.614090,138.636370],[99.653305,-116.154304,141.836445],[97.848557,-114.672996,143.086066],[99.400803,-107.438743,144.842091],[93.521774,-103.334388,146.418885],[88.756333,-93.536819,144.882887],[87.649338,-100.863060,140.734261],[87.597153,-107.890274,138.053275],[91.447067,-118.036461,136.961286],[96.296127,-120.665237,140.523188],[95.191635,-109.927910,144.711968],[91.562912,-109.855377,141.102501],[97.213486,-107.260444,146.018572],[99.679855,-98.799446,147.159430],[103.571457,-86.627372,143.364493],[98.787644,-93.380989,149.483626],[101.115585,-83.805359,148.450240],[98.957016,-76.297790,153.152268],[83.928085,-109.413559,137.395303],[89.309067,-126.039673,131.575613],[96.412766,-145.646476,129.772630],[98.543198,-146.577713,129.931407],[100.540085,-146.696109,128.993258],[96.710556,-138.111797,133.588572],[96.559494,-132.976112,135.649383],[98.492355,-132.777710,136.389906],[85.890244,-110.760040,136.372307],[84.799973,-102.235412,139.895556],[100.213486,-134.112968,134.896019],[98.910202,-140.425380,132.869939],[84.403061,-84.519668,147.341769],[86.597336,-83.732635,147.825606],[85.673508,-91.236580,144.281207],[88.244248,-83.743713,149.364579],[85.630600,-77.398147,150.244881],[85.638596,-66.715789,154.782902],[82.862045,-59.358581,157.377915],[82.806137,-67.021545,154.668431],[77.667954,-75.205414,154.045021],[94.546921,-70.517601,159.353066],[92.050339,-80.115036,156.163597],[88.563400,-75.343559,154.379479],[92.197128,-75.924583,158.328884],[90.629807,-70.815078,159.837296],[94.903000,-63.754852,161.003342],[99.463181,-63.388916,155.323769],[102.320053,-72.004829,149.280510],[103.115097,-62.974350,148.621117],[103.824143,-47.724731,149.361967],[101.687790,-51.860305,153.266247],[99.050095,-47.063965,158.545044],[98.803330,-36.566681,159.909629],[101.406418,-30.597458,156.359322],[112.371445,-21.681991,139.451611],[110.538010,-31.261886,139.992394],[112.915634,-31.087509,135.600373],[115.903183,-35.030288,126.725924],[116.512680,-25.344589,130.001130],[120.985092,-26.795974,124.475407],[121.563645,-24.062530,123.176374],[101.668808,-63.979141,151.672099],[94.155441,-52.946182,164.226914],[91.425400,-40.987442,168.724499],[91.804428,-25.623474,170.540493],[89.217636,-22.042831,173.292843],[79.600510,-4.023987,178.990914],[80.263779,1.521180,180.824479],[81.312729,12.206940,181.322438],[76.422470,19.658402,184.290573],[78.681442,23.271866,184.227856],[79.197678,42.671006,181.952549],[79.547836,49.499909,184.442948],[71.148361,52.040055,186.534225],[73.800095,41.398484,186.065750],[75.195908,32.701279,185.964188],[68.555222,32.503800,183.016632],[66.772934,29.117386,180.273144],[69.431931,-2.079773,175.934887],[77.296616,-25.174392,169.555588],[81.208359,-37.258270,165.446556],[77.985764,-45.592468,164.096833],[70.554123,-44.233108,166.088257],[76.780686,-53.037231,161.981347],[69.093918,-55.989105,163.093178],[75.312424,-91.962982,149.259352],[79.531906,34.163513,182.305813],[84.434494,-1.553787,178.655762],[82.906235,-7.069076,178.631382],[85.371506,-9.158783,177.275635],[103.798325,-22.241485,153.908318],[103.979477,-12.763412,154.133541],[107.036362,-13.672088,149.811917],[111.666000,5.943360,146.054686],[120.332260,4.406845,135.330971],[123.038010,4.887665,131.952768],[127.446335,-1.847702,129.025555],[130.153427,-2.409652,123.640337],[128.288620,1.358231,124.758327],[133.143234,-4.260971,117.449228],[137.221420,3.724198,111.700712],[138.389450,0.101837,105.301262],[137.480942,5.819840,97.092307],[138.782700,10.117081,96.616679],[135.646164,17.101059,105.640950],[142.823837,25.420792,93.543274],[138.555954,24.970429,100.793455],[132.323532,18.888031,113.869699],[134.462204,12.838501,106.130968],[133.890488,13.069840,113.088754],[132.826218,1.105439,116.521568],[140.465256,12.317551,89.622239],[142.989365,8.486801,80.056752],[142.965805,4.354081,85.373822],[144.541306,-10.973098,85.302487],[145.390366,-15.007309,93.729292],[136.047470,-20.065323,98.258622],[134.922470,-16.916168,101.449313],[130.632309,-12.231796,115.433176],[128.124558,-15.078750,109.525162],[127.625839,-9.694961,114.121534],[122.047287,-14.883606,112.621060],[124.088242,-17.744049,104.002718],[127.303940,-19.720260,103.496701],[124.579575,-22.336273,99.414423],[126.858627,-24.468765,97.543860],[131.886765,-25.434128,96.958769],[136.450791,-28.347564,95.011576],[137.981613,-27.542373,95.711926],[145.897812,-27.955200,91.237572],[151.342209,-21.210434,83.961266],[151.258835,-19.296585,81.125447],[147.336960,-15.106582,80.616974],[145.761643,-10.308380,79.544442],[146.980209,-2.059417,80.007161],[148.334702,-16.218811,86.943779],[147.872543,-21.791610,89.009091],[142.956467,-21.427551,92.794232],[130.142441,-22.896316,99.549164],[130.457199,-14.917282,109.332460],[123.682053,-13.102066,109.544464],[122.762802,-27.859405,97.107499],[120.166428,-27.561340,103.348112],[118.724838,-36.570327,97.781725],[113.745041,-63.024780,87.520749],[112.634750,-72.753242,87.004002],[116.382675,-78.047470,94.697855],[112.678574,-91.683899,85.901467],[111.692185,-87.816841,84.372391],[108.028977,-97.411544,75.072377],[110.816635,-83.799423,79.920914],[112.468002,-73.592964,82.978764],[112.730820,-77.380905,76.764786],[115.692429,-56.671081,87.045075],[118.269577,-54.846374,84.031025],[122.221359,-53.749511,83.534932],[131.376877,-37.758423,82.444516],[135.207443,-27.997055,84.653046],[140.026047,-29.745742,84.388268],[133.982773,-27.363189,90.269583],[141.263046,-29.163986,92.625744],[110.973068,-85.487045,82.159932],[115.297470,-74.789512,74.291851],[119.737167,-76.636245,72.880135],[115.768173,-83.217453,69.319458],[104.464462,-112.540855,68.114975],[108.364548,-100.540481,76.830574],[106.751450,-110.636093,73.390740],[117.595749,-112.866630,90.503691],[109.787460,-112.339309,97.721823],[108.027084,-113.256271,107.818323],[108.191147,-118.988296,108.198178],[111.025192,-118.798950,116.460824],[108.658493,-127.970504,107.393242],[110.920029,-128.280243,113.148599],[108.166977,-131.201385,116.022896],[105.810227,-132.780029,119.569731],[104.597885,-129.757690,124.754567],[103.654648,-132.352516,128.183091],[104.097763,-122.307151,130.921378],[102.927353,-121.264267,134.481911],[105.908188,-119.110748,125.054918],[105.071823,-112.625564,130.666167],[106.295517,-104.955948,129.682044],[106.377304,-99.832969,130.649055],[103.571091,-103.301269,138.141282],[103.421188,-74.720169,146.255452],[105.072739,-90.572403,137.656073],[107.092392,-93.092178,131.812468],[110.828476,-100.160164,123.895090],[110.083908,-98.239532,107.111238],[110.314133,-105.676887,99.838459],[111.888352,-91.276924,106.272938],[114.644150,-96.079475,99.619318],[118.874619,-101.894928,92.753197],[118.849716,-97.802665,93.136296],[117.850693,-109.363907,87.883046],[113.307602,-86.024231,106.532249],[112.407028,-100.210106,99.755606],[117.854660,-100.711128,95.893381],[117.649643,-105.315254,94.084931],[113.458176,-110.327072,93.765892],[109.508041,-101.734497,117.306256],[108.122788,-107.829467,124.876542],[110.606003,-107.240303,119.453994],[110.943588,-113.592643,120.229090],[107.726303,-122.410080,120.140635],[110.598007,-107.157142,122.582564],[107.707382,-114.929062,122.718102],[101.489609,-104.484146,142.436531],[110.873947,-124.049148,116.344062],[110.300705,-118.901519,119.126523],[108.409592,-109.698555,104.269144],[104.391342,-117.533195,68.304062],[103.147690,-128.149475,64.885292],[106.043564,-129.887199,68.734082],[104.137192,-142.234665,63.742493],[102.509628,-138.895111,62.186058],[97.833237,-145.582454,52.037026],[100.504868,-135.366966,46.551995],[98.791611,-146.980686,40.842537],[102.715195,-131.906479,46.388276],[111.377182,-120.994545,50.465180],[107.798325,-118.400909,51.796173],[107.932419,-104.655403,60.718205],[113.674179,-112.828621,55.198349],[112.024582,-127.879699,47.712319],[109.606186,-132.808136,44.485421],[111.338425,-138.625103,42.938866],[117.152084,-124.309875,52.561707],[119.180588,-131.029846,51.344704],[119.333847,-118.383453,55.817452],[123.510117,-118.758072,57.176270],[131.067978,-100.099815,63.739056],[131.632736,-93.563591,65.882595],[114.646225,-95.660560,63.627949],[112.501083,-93.868667,64.751522],[110.155502,-97.306114,64.057183],[124.471359,-70.493637,76.317097],[131.573837,-69.134704,74.090962],[130.660080,-77.442909,72.835740],[130.098740,-83.906257,70.701153],[129.240097,-92.891494,67.716504],[125.349838,-78.391876,73.634152],[127.922836,-81.457641,72.334038],[131.601486,-75.223999,69.572129],[131.123642,-63.742202,69.469307],[131.211289,-59.993820,49.330704],[131.498947,-71.071518,45.569374],[132.393784,-66.415573,49.698166],[128.339523,-90.443039,35.989746],[129.899277,-96.123405,35.837227],[128.322373,-100.505165,32.674080],[130.413071,-122.414528,29.962807],[130.739365,-124.941620,34.141419],[131.048203,-118.207725,38.906754],[131.397446,-124.625320,39.694497],[131.109360,-109.619056,45.532807],[130.570664,-104.857795,42.301468],[130.911850,-104.313987,37.872849],[131.246201,-78.918731,43.081124],[131.318527,-89.749771,40.710755],[130.286423,-101.492553,35.220658],[131.246140,-94.317260,41.450226],[130.531479,-102.453598,45.793198],[132.525864,-111.167900,53.595986],[130.578781,-115.480667,58.296894],[126.169418,-122.225044,56.167282],[128.846054,-147.410652,45.625687],[129.481247,-153.239433,43.041146],[129.724472,-163.606434,38.304161],[131.451462,-110.252083,59.676884],[132.667587,-117.377334,49.680947],[133.007675,-132.280861,45.041451],[132.584702,-128.216873,43.848259],[131.974960,-147.905811,31.524979],[130.693405,-141.541923,29.585335],[129.583481,-141.581138,22.140427],[128.891403,-140.295429,20.683953],[127.403916,-124.406654,24.132256],[125.455246,-116.817405,24.961541],[113.202194,-113.598053,15.664338],[117.440659,-99.978164,23.025834],[112.218613,-95.709800,19.270943],[120.729965,-90.439277,28.707772],[114.561386,-79.870842,25.243149],[106.626022,-93.301483,10.630509],[113.550095,-81.383400,12.412941],[125.982102,-77.062156,13.110299],[125.493637,-82.175552,9.502571],[129.754196,-90.709045,7.381134],[124.828781,-93.887840,3.174691],[124.082626,-105.565231,-2.107170],[111.321335,-100.639549,-0.815071],[119.654160,-108.732414,-3.958252],[114.144516,-115.400726,-7.834312],[106.055832,-111.610573,-5.775146],[103.492661,-124.173141,-11.013771],[98.442185,-132.994163,-10.765037],[100.155808,-133.085880,-13.282295],[98.279282,-140.046131,-14.438621],[100.370712,-141.001945,-17.673149],[98.094162,-154.041507,-22.862327],[96.143967,-156.501926,-21.000709],[97.186081,-165.604892,-15.871864],[101.841721,-168.412088,-13.091668],[101.052475,-177.685348,-16.925132],[104.675949,-171.991207,-9.441871],[103.269577,-182.877867,-14.518592],[107.501694,-197.380313,-13.555427],[100.528732,-201.703048,-25.567604],[95.024094,-198.909300,-29.065284],[93.344956,-192.811648,-28.338264],[93.381333,-185.779882,-26.246421],[94.718918,-170.549938,-20.487541],[95.558151,-159.133392,-18.646783],[105.509262,-153.648849,-25.583351],[104.988205,-159.426456,-28.147316],[116.427170,-158.726036,-30.760810],[115.597336,-165.775234,-33.758004],[127.046005,-172.615959,-36.614128],[134.804367,-189.487166,-43.538826],[131.691086,-191.426316,-45.314308],[129.761093,-199.872953,-49.250358],[126.145981,-189.645718,-45.279152],[121.026169,-181.242940,-41.184806],[115.469406,-177.452541,-37.928627],[109.799790,-173.268011,-35.691658],[103.890976,-176.161064,-35.604287],[104.419418,-166.850038,-31.389443],[98.234360,-164.539804,-29.084861],[93.337692,-172.718017,-25.693763],[94.903854,-176.327888,-21.271034],[91.732346,-182.822597,-29.671120],[94.352341,-167.150860,-25.154075],[120.921188,-171.165779,-36.468559],[124.004929,-180.647490,-41.068473],[112.025681,-160.496288,-30.991371],[90.676682,-194.749363,-31.735710],[98.062607,-197.315974,-27.027443],[91.363083,-209.386189,-34.472770],[89.667221,-206.818369,-35.519477],[87.546494,-213.940679,-41.219276],[99.446457,-223.161771,-27.750785],[101.837326,-210.825284,-22.306022],[102.289108,-228.898273,-24.436791],[107.770004,-222.918684,-19.313209],[107.406540,-230.987816,-21.739021],[101.610886,-241.504280,-28.283806],[98.512192,-243.413376,-32.476509],[97.265366,-247.233043,-42.189949],[95.199509,-246.250889,-43.599296],[84.548020,-242.173423,-49.538734],[83.566757,-245.933422,-53.277488],[82.426254,-256.371986,-55.478431],[80.338547,-270.969078,-63.015084],[80.186020,-278.847023,-66.371544],[84.789536,-269.692985,-67.012703],[86.922592,-265.766403,-66.945121],[87.188156,-243.467476,-47.012077],[84.038193,-257.928917,-52.405571],[87.450852,-265.348335,-51.625038],[93.349228,-263.589645,-49.434593],[93.334519,-270.657417,-50.697639],[86.660874,-254.884514,-49.862831],[94.156479,-255.352695,-46.911125],[97.261582,-258.679180,-44.104957],[97.471115,-256.747486,-37.428933],[96.306015,-268.603286,-40.903587],[96.391647,-265.404800,-46.776695],[90.459580,-275.608505,-52.621040],[92.743210,-281.044548,-52.354393],[94.993271,-273.979538,-45.230980],[94.474228,-282.673568,-43.442588],[97.792282,-293.781768,-39.186302],[104.266281,-293.802414,-34.131385],[100.906601,-289.102981,-35.867179],[110.093308,-292.472496,-29.111015],[116.762802,-287.819305,-21.135292],[120.452866,-275.560226,-15.367638],[122.114975,-275.749588,-11.841911],[121.295517,-281.734176,-11.080804],[122.142868,-276.439949,-9.420646],[122.223801,-266.227150,-4.941917],[120.386887,-264.877395,-3.824600],[110.142502,-266.506691,-3.181549],[114.822678,-259.925667,-2.085495],[124.762070,-251.858795,-5.431778],[117.867111,-257.398342,-17.422828],[114.708664,-241.376739,-17.589805],[117.294418,-247.860050,-16.689797],[126.308579,-235.670448,-1.385093],[127.242111,-232.504959,2.476311],[127.235153,-229.663295,6.414124],[126.854416,-223.620414,11.106919],[127.732773,-222.538723,10.041634],[127.498642,-218.732670,13.557198],[124.406479,-223.882431,11.631546],[127.827316,-211.862545,17.020081],[128.736191,-202.823196,20.930901],[129.852951,-205.504380,17.524559],[127.660690,-196.905947,24.045044],[118.793015,-195.837992,23.511696],[109.627670,-184.445518,25.282654],[105.640183,-189.074568,23.051262],[95.805832,-180.362920,25.386719],[95.144150,-186.329054,22.736504],[100.360642,-183.743808,24.905220],[93.984299,-193.315243,20.066597],[89.370590,-197.313504,22.763939],[91.088608,-183.317165,30.631005],[90.991806,-182.539650,33.798371],[94.238571,-163.759220,40.950653],[95.368454,-156.964958,41.420578],[96.105515,-156.268997,39.104638],[91.115463,-195.132044,21.129799],[91.785446,-187.412919,24.921616],[92.777756,-177.874216,30.233078],[97.009567,-167.606151,31.222710],[99.810349,-158.512100,34.357788],[105.659042,-156.389156,35.176613],[109.537277,-155.258465,36.551041],[110.441574,-172.140937,30.026764],[103.561691,-168.267000,30.393105],[107.659165,-169.301899,30.366539],[94.736374,-175.196348,28.907875],[98.355881,-171.861057,28.866478],[98.408615,-196.089919,19.898995],[97.475815,-204.715748,16.337387],[104.507065,-202.781843,17.837540],[108.046188,-221.431669,11.082360],[113.374008,-230.683155,7.764939],[119.608688,-231.362629,7.626793],[118.236679,-239.958938,3.969109],[124.402268,-252.127498,-0.051490],[125.832260,-247.250389,-1.234787],[126.503830,-233.033825,6.927933],[116.126450,-222.608389,11.243065],[119.432541,-216.191116,14.405556],[111.872910,-212.446407,14.505448],[107.895126,-196.925073,20.185685],[114.584458,-200.888878,19.838356],[122.079270,-198.966719,22.945374],[123.919602,-247.759853,1.452584],[126.371445,-243.166458,1.372033],[126.007797,-240.021949,3.810769],[124.706650,-236.229664,6.144188],[126.001145,-204.171142,20.989357],[119.201706,-250.148319,-14.981071],[121.969406,-253.258495,-11.117012],[125.028244,-257.120815,-3.669700],[120.001694,-254.822921,-0.976997],[104.259995,-226.499849,9.617134],[99.872604,-227.374521,9.820977],[94.443222,-225.441961,9.058480],[105.927597,-242.427734,4.245598],[106.822067,-257.791076,-0.455642],[115.224350,-248.797332,0.844986],[89.891220,-232.213321,5.345330],[87.826523,-242.416752,1.502983],[76.971359,-262.428489,-3.865120],[76.965927,-275.437698,-10.367988],[75.849167,-284.903007,-13.784980],[82.234543,-283.115806,-12.456718],[84.899765,-284.689468,-11.169181],[87.200913,-275.466301,-7.740074],[98.303391,-294.100097,-6.948494],[95.661850,-311.782020,-11.826896],[90.404404,-325.756561,-17.591011],[97.148666,-363.296035,-27.282432],[100.997788,-358.651291,-27.150703],[108.505844,-356.073730,-34.240852],[106.290939,-363.302993,-37.797233],[103.859909,-355.447860,-40.784431],[99.993881,-366.644531,-45.333244],[94.685715,-375.383026,-51.449440],[96.707077,-382.952942,-48.223748],[94.059433,-385.402145,-51.654595],[90.755844,-389.850189,-56.632531],[87.750656,-391.881637,-59.802773],[82.272385,-389.757126,-64.650932],[82.636154,-383.491821,-65.341149],[71.743027,-377.720932,-69.473213],[81.462814,-367.643310,-66.360298],[86.394211,-356.115570,-63.455101],[88.414353,-346.373016,-62.428292],[94.400986,-344.101837,-52.057075],[92.984909,-324.396682,-56.476951],[91.522385,-317.762230,-58.252830],[89.427353,-303.235954,-57.496544],[93.289780,-289.988762,-47.215583],[92.484360,-316.876228,-56.231910],[92.749375,-320.214653,-52.687202],[93.593125,-322.784439,-50.950660],[95.105454,-326.380340,-48.747734],[99.669724,-309.832557,-40.788902],[98.141159,-300.914581,-40.313102],[92.300888,-303.986328,-47.733193],[92.289780,-301.373901,-49.897942],[93.092819,-293.493545,-52.266685],[94.287460,-295.987060,-43.851493],[93.868393,-290.583954,-44.028892],[102.865708,-307.300735,-37.257637],[108.039841,-305.702263,-31.949318],[118.764145,-294.235717,-18.127601],[120.511521,-285.244789,-14.163658],[97.241318,-312.954277,-44.003822],[93.919785,-316.039863,-48.842995],[98.241440,-322.947052,-44.842277],[95.066330,-337.151901,-50.225517],[93.903793,-332.995117,-53.004098],[96.743576,-333.703338,-47.511421],[99.921372,-336.192154,-44.369377],[103.551987,-339.803100,-40.225640],[107.844895,-352.962555,-36.183677],[108.322067,-354.775879,-31.348976],[106.359970,-356.392639,-29.712257],[108.890854,-348.867050,-29.535530],[100.654648,-345.263015,-44.257988],[96.237167,-344.545654,-49.005592],[92.196518,-348.386490,-58.370018],[90.642563,-360.614563,-60.193885],[96.913681,-362.854156,-49.189324],[102.619553,-351.295700,-41.968650],[94.033066,-360.027191,-52.974739],[91.236008,-379.869156,-57.816734],[87.612595,-379.192108,-61.893333],[88.467209,-362.428039,-62.243721],[94.461960,-368.311874,-51.854957],[91.954514,-365.742355,-57.356117],[93.196396,-377.717697,-53.928321],[101.460983,-327.967834,-42.518516],[109.706894,-341.750259,-33.390251],[111.886032,-336.088241,-28.290016],[109.975632,-343.839752,-28.806252],[102.101547,-350.598343,-25.415794],[99.361435,-349.982452,-23.888603],[110.055710,-347.254043,-32.004921],[109.708359,-328.982101,-33.326211],[112.209274,-331.847686,-30.097435],[105.271164,-330.385025,-19.734810],[100.028183,-323.874298,-16.155006],[97.972031,-327.572159,-16.933754],[93.243271,-322.993049,-15.420494],[99.505844,-334.443481,-18.984810],[102.382614,-341.739013,-22.556923],[108.111923,-332.290970,-22.172691],[96.051682,-338.852157,-19.627235],[96.327683,-348.260879,-22.525291],[91.572495,-307.350113,-56.909370],[77.064133,-384.945739,-67.696540],[83.839035,-373.264297,-65.249351],[65.282639,-379.524078,-73.882499],[65.008774,-361.379821,-77.688697],[69.272812,-350.708206,-72.418922],[69.165451,-352.998520,-82.015831],[70.849411,-353.485580,-83.302955],[74.038498,-342.558288,-81.696983],[92.998337,-323.627411,-79.606224],[93.820480,-313.131866,-77.797599],[97.050522,-304.028450,-76.458961],[101.651413,-305.478203,-79.705376],[108.914475,-314.179863,-84.811561],[108.466538,-330.513305,-88.231254],[115.926132,-340.187988,-91.053215],[111.732956,-344.166687,-91.186546],[115.187546,-349.670913,-92.283851],[104.106796,-350.174347,-90.870582],[99.596054,-360.152206,-89.337989],[104.168015,-366.386352,-91.486199],[106.280014,-373.517975,-92.295799],[93.683701,-382.198700,-90.454277],[88.783249,-385.130508,-90.368843],[83.469956,-381.395752,-90.027031],[78.312729,-383.959472,-90.542854],[71.416550,-384.524429,-91.380867],[67.734360,-385.875946,-91.194572],[63.827255,-384.505905,-88.382209],[62.313095,-377.576446,-83.815498],[67.813522,-360.595230,-83.909736],[79.511582,-352.936264,-86.115578],[81.714707,-346.186035,-85.039024],[66.300034,-358.396698,-80.935113],[63.533310,-367.316833,-80.666664],[64.806748,-370.315200,-84.685615],[67.805710,-374.657898,-88.256355],[71.575119,-373.124542,-89.343238],[72.294724,-362.966644,-87.092995],[77.647690,-365.842178,-88.213203],[82.947495,-370.140152,-88.883598],[80.511582,-359.528564,-87.608360],[88.267563,-360.658386,-86.578697],[84.917954,-352.690384,-85.407570],[92.431625,-349.833038,-84.421257],[96.351425,-354.750259,-87.135810],[102.007492,-372.134216,-91.177819],[96.305161,-366.543167,-88.851143],[88.276169,-371.355926,-88.261223],[77.589218,-376.523422,-89.716301],[91.370834,-356.575546,-85.884224],[94.773666,-342.677276,-83.540977],[92.275864,-336.119491,-81.673606],[92.173569,-344.839599,-83.308189],[101.193894,-333.892761,-86.033592],[66.985458,-352.893432,-76.692100],[107.611557,-349.861984,-91.942482],[95.166977,-332.237396,-81.721977],[106.393784,-325.395996,-86.541984],[105.623642,-342.858215,-90.095055],[96.624619,-314.422317,-78.604118],[74.667648,-330.134659,-78.498985],[76.685349,-308.275825,-72.040414],[78.133164,-315.429588,-75.940757],[84.780258,-303.411728,-75.958610],[96.330551,-291.191757,-73.311042],[102.042954,-285.101715,-74.200524],[106.583237,-295.783165,-78.758172],[107.948166,-302.695991,-80.857033],[101.406906,-298.786667,-77.626640],[98.388657,-287.724281,-72.865364],[94.576828,-303.572151,-76.034477],[89.100266,-317.030372,-79.890739],[87.245957,-311.359161,-78.552132],[85.663864,-320.982361,-80.517311],[78.593308,-323.669365,-78.715339],[76.529343,-332.904037,-80.184929],[86.760361,-331.898361,-82.727592],[80.006699,-340.150451,-83.261299],[84.695053,-339.022003,-84.097786],[84.403427,-332.693680,-82.893745],[90.219101,-301.694580,-76.564766],[85.387375,-290.246940,-73.143699],[81.481308,-299.219421,-73.649772],[74.667832,-311.780822,-70.673530],[81.123337,-316.026741,-61.040321],[84.461105,-305.868553,-58.667320],[81.315109,-307.950706,-75.861458],[74.148056,-321.108696,-74.028587],[73.268906,-318.438446,-70.080117],[70.329880,-337.584121,-73.613213],[71.260300,-339.762314,-78.435234],[72.185166,-327.347534,-72.569236],[76.034042,-315.534813,-63.832450],[75.140915,-329.780273,-66.132790],[76.791611,-332.257675,-65.453483],[72.639084,-350.606064,-69.045616],[73.461655,-323.057907,-67.614708],[88.782456,-319.553741,-60.336586],[82.941086,-329.482452,-62.632759],[82.415695,-339.309005,-64.237724],[77.244858,-341.719925,-66.300941],[72.396103,-333.740707,-69.220970],[73.390549,-277.152008,-8.851402],[71.100510,-279.820358,-3.666465],[68.088120,-292.389488,-4.513908],[62.506271,-313.805832,-13.929206],[60.282395,-321.767830,-15.990547],[59.063461,-339.112594,-23.303993],[60.978378,-340.645401,-27.272529],[61.988449,-329.961853,-23.747551],[61.816208,-321.771393,-19.341316],[63.790268,-311.789619,-16.460609],[68.930588,-315.101349,-22.111717],[75.218369,-314.206604,-21.984596],[79.111862,-321.316337,-22.774650],[85.503281,-325.051941,-20.042991],[86.695908,-336.211654,-21.839363],[84.472519,-345.566864,-25.500999],[84.990158,-356.089737,-27.729546],[78.601059,-363.784073,-33.393455],[78.106125,-369.589004,-35.115120],[85.057602,-377.192581,-33.326286],[92.230332,-390.024902,-34.870369],[96.724716,-379.752212,-32.441719],[67.065170,-309.695930,-18.987037],[68.161057,-327.931915,-26.293708],[58.855759,-347.604187,-27.189476],[57.585922,-353.791305,-27.361290],[56.735397,-365.130706,-24.607658],[56.176499,-366.732177,-22.248726],[53.251145,-377.724273,-21.000892],[55.900192,-383.292663,-26.511192],[54.501694,-370.434082,-21.144477],[51.831223,-372.191711,-18.155541],[56.773605,-366.063080,-33.890937],[62.042465,-359.757660,-33.497505],[62.232102,-365.369751,-34.803886],[66.628159,-368.459015,-34.953956],[71.408493,-371.089096,-36.396400],[74.688583,-365.434677,-35.131813],[73.049973,-374.709274,-37.452018],[76.687485,-376.113662,-37.456642],[85.963059,-382.619613,-34.617103],[84.633469,-392.901367,-37.857414],[73.612045,-395.373626,-43.935752],[61.590012,-408.876190,-45.672112],[52.378525,-426.396560,-44.801353],[49.695297,-427.873367,-44.086494],[46.852768,-425.196273,-43.753425],[41.891647,-431.445205,-41.730233],[44.510910,-419.846542,-40.259361],[47.492111,-410.343170,-41.453300],[45.564926,-414.805603,-38.671531],[48.599411,-401.062881,-38.398521],[47.945725,-405.662964,-35.610328],[53.033005,-405.717727,-29.660270],[49.604111,-419.638824,-26.364647],[48.414047,-422.203384,-23.062950],[54.887619,-433.901611,-13.900184],[59.782944,-442.658065,-8.484199],[66.630783,-431.182190,-4.382599],[73.806870,-410.559539,1.996010],[74.106125,-404.615478,-3.346367],[76.653000,-391.816955,-3.747375],[76.083786,-397.262054,-2.073257],[79.943833,-399.936950,11.208115],[82.689072,-398.426803,17.782296],[85.238693,-395.527725,23.715508],[86.098251,-394.854095,26.414482],[88.092270,-387.990188,32.111008],[87.028488,-384.788635,38.891106],[86.433823,-361.231613,47.047852],[90.471726,-357.370742,46.919785],[93.142563,-351.902221,43.885804],[94.929733,-338.567169,44.845635],[92.881699,-348.300964,37.797402],[92.174606,-348.036544,34.982964],[89.252915,-353.621154,27.298157],[86.443100,-352.874283,20.631340],[85.778671,-363.531677,19.057045],[80.781723,-366.982116,11.988816],[82.675644,-365.969528,1.313713],[81.357468,-362.691086,-1.051719],[81.819565,-356.771789,-0.393852],[81.494675,-354.710312,10.016571],[81.902023,-354.739349,7.356797],[88.272324,-334.826675,6.265602],[88.690476,-331.394455,8.617394],[88.406235,-331.487854,6.264229],[90.389877,-323.580375,10.131142],[89.166062,-323.030670,7.511300],[86.044968,-343.424621,3.370995],[84.656357,-353.658706,1.782166],[85.318649,-350.445602,4.322037],[86.651291,-342.458084,5.338318],[79.393234,-343.245788,0.417900],[76.417404,-339.562835,-0.374046],[67.232712,-338.779648,-3.751724],[57.715622,-333.268921,-16.097938],[57.413132,-338.156601,-18.286781],[55.733994,-345.907867,-15.500160],[53.699265,-359.731598,-15.354087],[53.986008,-355.549530,-17.839164],[53.958908,-360.815521,-19.276100],[52.562912,-367.254898,-18.925468],[53.635971,-371.125213,-13.844474],[56.895126,-381.241989,-11.155738],[69.681015,-380.704040,-5.919304],[72.712875,-385.528259,-5.494682],[78.338974,-376.032745,5.714966],[79.556015,-368.626159,9.416748],[80.408615,-363.184890,6.774117],[80.592026,-373.792083,0.098465],[80.866440,-370.416916,-1.146713],[71.176132,-368.454467,-4.502021],[61.443771,-378.312652,-8.556877],[59.057785,-364.800872,-9.017663],[57.441086,-357.561371,-10.025993],[65.105942,-350.003021,-5.315803],[59.584885,-346.957260,-8.468514],[65.879624,-372.011505,-6.542564],[62.317551,-363.134262,-7.194587],[72.479721,-358.943206,-3.583351],[71.912399,-345.431579,-2.543502],[74.323410,-353.036575,-2.317146],[54.753098,-362.297165,-12.812278],[58.433518,-342.153167,-10.512856],[56.833786,-338.533004,-15.968177],[56.397751,-351.195892,-11.532035],[61.828415,-350.707733,-7.005546],[79.198105,-370.939880,5.104302],[78.038864,-382.477432,1.006218],[87.457504,-376.927292,27.145127],[91.347519,-360.480575,34.832756],[85.279831,-371.102600,18.976342],[89.733383,-358.417709,29.101838],[89.700668,-369.895233,31.793320],[51.213486,-380.666107,-16.597068],[50.859726,-392.830551,-16.470405],[54.180222,-387.301284,-22.758950],[51.083237,-388.325317,-20.932060],[50.866684,-381.256576,-18.991035],[49.813828,-393.616028,-19.505378],[90.934738,-338.541473,31.215485],[87.839584,-340.356903,23.690148],[90.089829,-333.561783,29.517853],[90.208298,-309.319191,21.338150],[91.941879,-306.074005,19.551331],[95.574082,-297.280670,19.428131],[95.347702,-301.061874,16.395470],[93.893967,-305.161178,13.535851],[91.881027,-315.701675,10.958672],[90.882858,-303.194122,11.571099],[94.736557,-296.765236,15.078308],[96.572250,-294.616661,18.525177],[91.437241,-298.468132,25.751564],[92.479599,-295.636520,24.394692],[93.963852,-279.408973,33.392449],[94.217636,-275.419082,36.845284],[95.855942,-273.273910,45.923989],[98.553757,-271.597572,55.071625],[99.005356,-287.096771,56.239281],[94.568405,-292.611931,43.132912],[94.289230,-301.517196,41.891854],[92.431625,-310.125534,36.551392],[90.095566,-305.820076,29.038872],[89.804672,-318.606613,28.733712],[90.574692,-300.799324,28.629914],[91.450119,-293.184478,30.729309],[93.025925,-284.173858,35.601075],[94.142990,-281.318618,40.576592],[92.175095,-292.875000,35.397339],[92.091232,-314.939392,13.434212],[87.320541,-329.599518,11.196907],[85.549423,-338.831176,8.653267],[83.464584,-344.579040,13.565361],[83.042587,-350.631698,14.333359],[85.754624,-335.613556,19.690461],[88.057114,-333.791778,24.558754],[83.677292,-354.720321,15.981026],[82.921860,-347.496002,8.337777],[85.459152,-332.823272,12.888153],[88.946518,-319.295822,15.532769],[88.327683,-317.382438,21.109040],[86.231674,-328.551941,19.036957],[88.364731,-319.762390,25.132607],[92.933334,-337.914215,36.570717],[94.728867,-331.362274,42.457100],[93.917160,-337.892196,39.479905],[96.315109,-322.483986,50.071068],[95.897202,-323.360603,52.418312],[94.177048,-328.454208,55.195526],[90.103684,-331.507446,55.560883],[92.597275,-332.038406,56.062127],[89.488937,-342.413147,52.932625],[92.184494,-339.797683,53.466500],[85.827316,-339.047500,51.197724],[67.868027,-340.889282,40.356179],[61.818100,-347.808166,35.974587],[62.408554,-357.502227,34.494057],[58.747421,-351.943100,34.336914],[54.466354,-361.137787,32.095154],[54.010727,-372.051346,28.758927],[50.619736,-370.548599,30.398636],[51.255966,-358.282882,35.912766],[53.403977,-352.981765,35.829430],[56.364975,-350.148407,35.130448],[60.726853,-341.609710,37.248536],[63.168259,-339.927704,38.407540],[92.470505,-323.630142,58.596260],[82.612961,-319.620033,55.045975],[94.932785,-313.191612,61.741459],[95.720993,-313.943290,59.625309],[98.428208,-300.308960,56.596688],[96.584641,-306.189140,49.212571],[94.574387,-321.367729,58.006665],[95.656540,-317.573547,46.100243],[97.298935,-309.820266,53.914750],[95.198044,-336.723953,48.029961],[93.212509,-344.300537,49.093605],[91.315292,-350.249649,48.906090],[91.447983,-365.457748,40.612854],[89.954453,-375.468887,34.785393],[84.711838,-384.223159,20.111596],[83.302353,-382.024109,16.308175],[82.467636,-378.312835,14.472481],[79.958969,-380.023651,9.990952],[80.780136,-390.742553,11.488388],[77.750717,-391.228622,5.533142],[77.996506,-384.826828,-1.971847],[76.416489,-385.598785,-4.189384],[75.004990,-389.780746,-5.422065],[73.996994,-396.029693,-6.046653],[68.394760,-394.180710,-7.701027],[58.947739,-392.038788,-10.294349],[61.862778,-401.263824,-10.131965],[67.283005,-405.693100,-7.843055],[53.208603,-388.718490,-13.748893],[76.549118,-397.844284,3.833863],[74.836228,-405.273361,1.644455],[77.385300,-387.192291,3.634797],[92.910507,-354.695236,40.980446],[83.754379,-379.004257,42.258263],[77.601608,-408.714645,8.212487],[74.406723,-422.087707,6.215233],[71.596420,-429.626114,2.762642],[76.431809,-426.806381,11.241616],[78.169418,-436.388275,14.651207],[79.011215,-427.531006,15.278466],[78.173264,-415.795013,11.776177],[81.420273,-409.655029,17.040955],[83.200546,-412.038635,23.731087],[80.400681,-407.236236,14.355782],[83.279160,-406.631317,21.326577],[82.884262,-415.872665,25.573738],[82.547958,-408.227615,32.661774],[86.278305,-397.422638,33.177796],[84.961777,-404.597336,29.591294],[88.431137,-386.394180,35.512551],[85.001511,-394.895034,36.711434],[80.289780,-389.954940,39.899178],[81.483872,-377.670242,42.757393],[83.377976,-366.995498,45.235657],[85.804733,-399.618591,28.192315],[82.194199,-418.995193,27.300484],[80.905258,-418.853531,30.124642],[78.938461,-411.001724,34.233689],[75.804123,-409.291794,35.493561],[77.505417,-397.985885,37.987175],[71.777634,-397.158874,36.126595],[67.532150,-379.453766,34.073861],[61.985520,-366.624984,32.605317],[68.019516,-349.932434,38.604332],[86.231308,-348.089218,49.280487],[94.005478,-334.581466,53.353691],[66.814926,-367.249298,35.214966],[77.273361,-347.830230,44.615944],[68.251816,-396.214203,33.817971],[74.678513,-379.400390,39.167397],[70.970688,-370.631118,37.301117],[80.356430,-366.193954,44.184449],[72.148972,-359.612838,39.362046],[76.959152,-355.956085,43.012963],[64.786362,-414.949295,29.805031],[63.152512,-421.192856,28.632531],[58.155014,-427.482666,25.289673],[54.330917,-419.984131,21.986443],[41.523483,-435.714019,15.790284],[46.820847,-435.225891,17.810471],[54.435349,-412.641342,22.045754],[47.799912,-403.693252,20.085511],[38.765305,-414.457962,19.824654],[39.282578,-406.411865,30.574852],[41.673996,-401.214416,35.447335],[39.293564,-400.808044,41.812729],[31.693039,-425.809799,47.110558],[30.840500,-427.526489,51.716317],[29.219956,-435.617737,47.536988],[29.173447,-434.688247,53.006157],[29.153061,-442.256271,61.188149],[32.142990,-431.216140,65.671757],[30.767075,-441.651275,67.008595],[32.127426,-437.112045,70.514817],[34.022812,-424.445526,71.138245],[34.331040,-431.709030,80.933194],[33.255783,-440.390426,79.826691],[25.907517,-437.772812,86.292996],[21.415329,-440.358123,88.619378],[18.355759,-437.641693,91.683228],[10.160202,-445.235214,93.272509],[-4.697281,-442.864807,95.900702],[-8.570267,-443.850113,97.850962],[-12.450699,-427.101837,98.760945],[-14.446731,-426.044204,100.060368],[-14.109146,-407.394684,98.159752],[-19.644729,-398.135238,104.412859],[-17.535660,-393.222076,100.690480],[-23.652481,-369.517822,107.729971],[-27.281021,-364.227859,112.224074],[-29.040176,-353.980407,114.846572],[-22.309280,-346.198944,105.859425],[-23.987747,-327.680877,109.454024],[-21.694229,-329.666809,106.301004],[-22.551468,-315.507797,109.021317],[-23.568680,-293.449852,115.245346],[-27.127762,-304.072220,118.269991],[-31.103897,-306.234863,123.505626],[-30.916031,-319.461120,121.066667],[-24.751541,-302.564689,114.747210],[-26.085098,-315.913360,114.048200],[-28.833084,-327.305313,116.675308],[-32.917557,-336.719650,122.047952],[-38.024734,-339.112396,122.221276],[-34.580154,-340.850570,122.792426],[-30.580154,-366.734237,116.269032],[-37.034988,-348.656860,120.896187],[-38.521316,-343.677536,119.501632],[-40.409378,-336.916992,115.697863],[-40.462601,-327.809234,109.483275],[-41.204788,-325.872680,115.635664],[-41.861038,-316.371605,116.368389],[-41.898697,-306.081634,120.116103],[-43.285477,-302.955566,116.419301],[-43.380875,-299.529762,118.566459],[-39.957291,-290.186584,129.467527],[-39.508255,-267.808983,135.200596],[-36.497330,-259.936516,137.413493],[-39.182754,-255.430694,137.985571],[-41.598526,-262.278625,132.661450],[-42.596939,-255.447139,131.546107],[-41.908096,-246.133491,134.383494],[-40.275833,-236.444538,139.577347],[-44.540481,-266.279892,124.842065],[-44.700699,-274.028633,119.060690],[-41.320938,-272.465789,131.194189],[-45.172623,-260.573700,124.328095],[-36.782730,-299.096283,130.735174],[-38.195022,-292.128952,131.822582],[-38.887771,-279.114769,133.806566],[-37.630508,-275.370598,134.964778],[-35.813248,-273.316086,134.817508],[-32.671402,-271.823578,131.318497],[-30.672867,-282.925674,127.113037],[-34.712112,-291.245735,131.498808],[-38.945938,-302.159515,128.914984],[-38.936233,-308.841217,127.759093],[-37.548477,-316.798172,127.802781],[-30.937271,-296.935623,125.348852],[-26.487442,-285.921478,120.970326],[-29.662186,-266.047821,127.791489],[-33.292374,-260.713699,134.006472],[-24.286331,-269.217453,120.671415],[-16.233841,-272.070564,111.584652],[-9.718765,-279.506340,105.157151],[-6.559158,-278.313301,104.855851],[-4.071365,-282.623268,104.363989],[-0.216446,-287.421982,104.786515],[13.508774,-281.702110,114.129522],[17.013046,-275.016754,120.447309],[13.341049,-262.670021,117.886593],[14.653916,-260.492790,120.553366],[13.501145,-252.868305,121.305529],[11.299729,-240.336971,121.558537],[9.848862,-227.473497,122.839498],[12.254868,-232.476280,126.715488],[14.017807,-243.360641,126.805402],[20.309677,-248.930275,132.856381],[25.108933,-241.624027,139.696780],[30.519699,-246.259151,144.885386],[34.308396,-251.432289,145.177431],[36.742111,-250.212661,145.285612],[21.591782,-238.447220,136.514820],[15.172836,-241.747703,129.293931],[15.780197,-256.742920,125.450279],[17.516586,-258.798088,128.071702],[22.752426,-262.286789,132.311245],[31.511765,-252.970665,143.869309],[18.720932,-271.415992,125.935733],[19.788681,-265.981743,128.709255],[22.771896,-283.259750,127.576208],[23.776169,-295.784248,124.986938],[23.552048,-300.295135,123.113750],[13.894028,-291.644752,112.436858],[27.252426,-269.920410,135.053682],[29.980576,-266.888878,138.745846],[32.169724,-263.684059,141.120903],[29.195603,-257.842041,140.616728],[25.651230,-259.266739,135.877274],[-3.490677,-299.867340,101.981362],[0.004440,-301.661377,102.796397],[4.967331,-313.074669,103.718861],[1.913132,-315.164451,101.985075],[-2.260879,-325.903137,99.039830],[-5.375564,-315.414795,99.777739],[-1.721756,-312.409134,100.994603],[-12.756607,-289.937820,104.563397],[-18.178909,-280.299843,111.459408],[-19.129227,-292.002609,110.117549],[-15.035416,-255.708072,113.918980],[-13.324417,-260.228630,111.705759],[-8.424881,-256.077396,109.546114],[-1.912796,-265.724655,107.019805],[1.981125,-252.413761,110.568046],[2.373154,-267.758522,108.439134],[4.264389,-278.502838,108.102686],[0.069931,-276.561065,106.300649],[10.879685,-284.225082,111.682860],[12.555100,-271.266830,115.254872],[-2.581863,-255.634285,108.589357],[10.491562,-253.127540,117.128669],[7.017197,-238.143947,116.905510],[-13.243057,-277.718963,107.745348],[-10.287125,-265.032272,108.497110],[-33.940262,-319.998298,125.774000],[-35.850296,-320.290779,126.914033],[-36.773331,-330.921219,125.121072],[-38.483353,-331.776901,123.783435],[-36.686844,-338.871780,123.426929],[-34.213638,-328.493408,124.303288],[-37.979629,-324.531860,126.014076],[-40.554703,-324.076873,119.261669],[-39.677139,-318.822204,123.578412],[-37.532669,-307.228813,129.271184],[-33.301651,-304.552986,127.440152],[-35.286209,-308.075126,128.758913],[-31.450760,-349.406067,118.974573],[-28.300186,-340.319992,114.735117],[-25.798721,-353.721161,110.301213],[-29.196854,-378.266510,114.801537],[-24.866409,-382.727874,109.435923],[-33.375198,-390.624832,112.620887],[-30.111832,-392.785019,114.174234],[-31.008499,-398.059189,112.683963],[-28.009354,-403.969742,112.590746],[-24.362686,-407.686142,110.871622],[-26.824417,-421.787643,106.899982],[-25.801651,-427.365677,105.253233],[-24.837662,-436.690765,94.679989],[-28.754104,-409.506820,93.956423],[-34.650589,-389.023910,105.657545],[-32.586258,-384.381942,115.117289],[-34.500809,-390.753158,108.498063],[-35.250015,-382.499649,106.137901],[-36.359817,-365.787994,104.852715],[-38.332474,-359.717376,112.810041],[-38.519180,-351.604919,105.524380],[-39.889175,-337.948181,107.755002],[-27.031021,-425.683654,97.295380],[-25.700271,-418.764541,109.264021],[-26.049026,-429.338897,101.134076],[-18.661209,-429.794067,107.180030],[-21.064041,-435.344925,106.707546],[-20.636795,-446.701507,99.944676],[-17.826004,-450.170562,102.310236],[-11.320877,-455.216674,102.416500],[-8.991226,-463.835724,100.719746],[-11.389175,-464.973144,100.241858],[-14.866714,-460.695648,98.752003],[-13.082291,-468.495758,93.481047],[-14.627151,-470.923156,88.375267],[-12.839920,-480.771698,86.590897],[-9.199966,-478.424926,93.038138],[-3.051102,-477.366943,97.199337],[2.816696,-470.996826,93.018980],[-5.776016,-450.970840,96.554135],[-1.311966,-441.229965,94.875451],[10.850998,-460.873504,90.254483],[14.773300,-443.781997,92.195568],[20.432114,-445.297241,87.632199],[16.545639,-456.831482,87.239781],[12.881577,-473.688171,84.992691],[14.949265,-489.476989,76.644543],[10.190720,-500.462860,82.088704],[14.940048,-518.268432,80.682125],[17.544357,-513.097900,70.124916],[18.455673,-509.539489,68.640042],[21.578537,-502.829529,67.971196],[26.432541,-504.990387,64.960026],[27.411057,-503.305145,62.298714],[24.728623,-499.026184,67.707062],[25.655319,-486.950744,70.108296],[20.980087,-490.166717,71.404713],[18.769455,-486.076629,73.201725],[13.067856,-494.528076,78.384236],[18.673081,-501.674041,69.987336],[15.040939,-513.045410,76.592450],[10.500168,-508.202911,85.043534],[14.045822,-506.411956,76.707459],[17.460800,-495.895691,72.902810],[28.705307,-487.852600,66.162659],[27.728256,-488.396454,69.060177],[23.895187,-480.155945,71.553273],[20.691147,-480.394958,72.979748],[17.286484,-479.672241,76.287697],[17.283188,-472.653137,78.924832],[19.705979,-461.620880,80.890805],[21.655014,-454.325531,82.396454],[25.016647,-452.875732,80.371113],[31.246201,-446.936401,80.004849],[32.445541,-445.673370,77.882450],[21.804001,-467.688598,76.153031],[24.333420,-466.821289,75.081974],[30.139755,-457.671936,77.527485],[27.465683,-458.735138,62.294499],[28.931137,-450.069946,63.982323],[27.566818,-442.602783,54.358719],[32.514938,-440.763138,41.921135],[28.433396,-450.969391,44.508912],[29.907883,-451.547607,37.409027],[27.067551,-446.655822,28.958626],[26.082199,-457.575042,16.875245],[28.404587,-466.181274,13.502816],[33.593063,-468.543792,11.932373],[27.081650,-482.067535,11.810837],[37.940598,-486.779388,12.374924],[51.977097,-476.414062,18.281990],[50.728684,-486.856964,17.418717],[52.496445,-491.839019,17.901749],[56.679672,-499.884124,19.384140],[59.810349,-498.056854,19.253113],[61.872116,-496.704590,17.724366],[65.314743,-489.125946,15.142792],[68.336411,-471.284027,8.821045],[72.141708,-465.641113,12.298378],[72.820908,-465.816375,15.487130],[73.974106,-457.318695,20.451165],[68.014877,-455.787841,25.560624],[78.696091,-434.669662,25.674569],[75.653183,-445.745346,24.239128],[75.312302,-440.480865,27.211151],[74.889633,-434.667251,29.164185],[74.102402,-450.060989,24.551216],[72.121445,-450.131118,26.190613],[67.668076,-476.926178,10.297226],[68.819016,-478.489837,15.173371],[72.107590,-466.904236,17.627488],[63.603012,-491.286346,18.735573],[56.122971,-483.167480,19.099083],[60.329514,-491.646545,19.691681],[60.464096,-499.770935,14.579338],[59.225754,-503.419891,18.257653],[54.769882,-512.942901,16.186646],[49.800705,-523.915680,18.638527],[42.996689,-528.917724,23.672669],[45.369248,-530.612976,22.811806],[48.305161,-526.400451,21.162323],[58.369553,-501.422882,11.247979],[57.992722,-496.612426,7.585778],[50.704147,-500.690094,1.206566],[53.420822,-489.291870,-0.624092],[45.310166,-487.221588,-7.473823],[43.167587,-496.256988,-5.529754],[34.037827,-502.846985,-12.419410],[33.670090,-495.676269,-22.162376],[34.876389,-483.476989,-26.350135],[38.465317,-473.551300,-22.943840],[39.738327,-462.501251,-28.042625],[42.261215,-454.658874,-27.361976],[44.908737,-444.419922,-28.715568],[46.141708,-436.391525,-30.434532],[48.429672,-425.795334,-21.145958],[42.612351,-448.728607,-30.610649],[35.737351,-487.129852,-20.005287],[37.634201,-487.329773,-15.805290],[39.858139,-494.656585,-9.158302],[34.275314,-496.025879,-16.822761],[53.573227,-473.704864,-4.946556],[60.145126,-475.204193,1.678765],[64.701645,-474.250610,6.203179],[55.600998,-479.468383,-1.372261],[42.120407,-475.772918,-15.742469],[40.273361,-488.046905,-11.774757],[47.370163,-476.082580,-9.996758],[39.622543,-474.597168,-19.768745],[40.404282,-465.677307,-22.394996],[46.702622,-440.334930,-21.995689],[47.410690,-433.463714,-23.355461],[47.699509,-432.683685,-29.068641],[46.097702,-439.873474,-25.101173],[47.839584,-443.839554,-19.016060],[53.464584,-443.047531,-13.376472],[45.091049,-454.087433,-18.529168],[53.033737,-469.308685,-6.720207],[42.579331,-465.893066,-18.511146],[66.166123,-442.561401,-2.986686],[69.363205,-440.805191,1.387658],[43.510056,-450.228729,-23.724113],[40.179428,-504.028991,-5.358123],[46.517258,-509.925567,2.012810],[38.996323,-512.541382,-2.857940],[41.187851,-529.217315,10.194146],[50.925522,-519.257202,15.467667],[44.828354,-532.226227,19.210106],[50.061447,-516.234832,11.299721],[55.623154,-505.472595,10.238945],[63.710251,-488.906707,10.391808],[62.939804,-483.512237,7.477700],[71.609482,-462.417572,9.496781],[61.551010,-464.626465,-0.867363],[74.760727,-452.419647,11.370629],[78.138962,-440.861694,17.262673],[80.597702,-427.392730,20.804154],[80.474472,-421.605438,16.986496],[75.909409,-451.648376,14.432152],[77.543991,-443.353042,20.258271],[79.645920,-434.109955,22.865364],[26.671616,-447.656311,49.614663],[26.932358,-452.104889,58.558167],[31.011887,-433.338623,44.913880],[31.043930,-445.580627,70.728341],[31.699692,-456.036010,76.053563],[30.251145,-451.666870,79.116146],[17.237656,-516.791931,71.237248],[6.305466,-492.942535,87.226380],[6.665268,-504.648864,88.868950],[15.753464,-448.662872,90.666005],[8.916672,-491.123077,84.246235],[3.687058,-455.698394,93.509589],[-12.293899,-439.950531,100.121773],[-12.977188,-446.506897,102.405550],[-16.651565,-437.001892,105.687737],[-16.252518,-446.079193,104.641306],[-18.568924,-443.918991,104.817500],[-13.850540,-442.504501,102.710766],[-15.663711,-431.051056,101.966641],[-16.341202,-421.352173,101.656832],[-18.561539,-418.616073,105.271223],[-21.543167,-416.861023,108.783834],[-23.120499,-400.451629,108.924922],[-18.714981,-435.547058,107.021062],[-23.936600,-434.501312,102.724896],[-23.649795,-440.020950,97.965161],[-25.855118,-427.711853,92.864487],[-25.518875,-421.340820,88.750714],[-23.422989,-433.954345,85.403466],[-24.536087,-414.356689,80.727333],[-23.920364,-427.275451,76.421208],[-25.336319,-430.666443,72.055924],[-31.403030,-435.360962,61.477780],[-28.875625,-430.610229,65.922467],[-33.542129,-434.013946,57.848267],[-23.024063,-432.138626,80.069561],[-29.289810,-398.995102,91.336251],[-28.690567,-390.855468,85.134560],[-26.670059,-396.387176,81.149674],[-27.097549,-385.526519,75.404812],[-28.611099,-385.099777,69.838185],[-33.398575,-393.790298,55.628495],[-35.801285,-396.493469,52.761933],[-52.375015,-406.632187,51.278008],[-31.217300,-384.946548,93.658903],[-31.570999,-374.489975,92.264214],[-33.531143,-373.055099,98.371138],[-33.594314,-365.545135,96.218113],[-35.862137,-351.766632,97.552616],[-27.551651,-407.371978,89.101700],[-27.163711,-403.062408,84.734894],[-26.297745,-395.324386,76.677521],[-25.358841,-406.625732,80.183743],[-24.546768,-415.074066,77.761025],[-29.371597,-424.251831,64.749657],[-33.244034,-415.626861,56.212654],[-34.826431,-406.175293,53.845040],[-40.153091,-407.060974,49.783425],[-50.646683,-404.141052,49.959694],[-47.268814,-417.913162,50.634293],[-57.217667,-416.452209,55.906777],[-51.808792,-413.268036,51.664856],[-36.600540,-406.161361,52.131966],[-29.888687,-408.321655,63.480484],[-30.855972,-401.421447,60.078305],[-32.550308,-404.375427,57.151513],[-30.768082,-414.045807,61.469742],[-28.677139,-395.689239,69.272660],[-29.850540,-401.105591,63.669011],[-28.240860,-402.604889,69.794869],[-26.135269,-405.678787,74.969368],[-25.126419,-412.865585,110.589695],[-20.389419,-408.291473,106.190919],[-16.469559,-407.848404,100.703202],[-10.104202,-425.386688,97.324545],[-11.520157,-407.328354,96.932425],[-15.670181,-393.841476,98.384241],[-11.590042,-375.403259,95.665768],[-15.028580,-379.212600,97.808888],[-12.298782,-358.535080,96.735300],[-10.072525,-347.735489,96.609063],[-6.614700,-340.745132,96.751744],[-6.128372,-329.509399,97.674179],[-3.448807,-340.149551,97.262843],[-5.360245,-365.613067,95.440260],[-9.705887,-367.975967,95.511124],[-4.192581,-379.435531,94.734194],[-0.869400,-374.374542,95.728245],[9.817490,-387.423645,98.341442],[13.798447,-375.788391,100.861300],[21.669479,-390.815445,100.218699],[18.773666,-405.371917,97.982460],[24.154160,-408.147705,96.669094],[29.162827,-403.314529,97.059586],[34.941696,-423.779693,87.948815],[33.839279,-415.909057,92.809845],[24.249252,-418.856796,93.779248],[18.897995,-428.216690,93.685433],[15.834458,-427.455475,94.762413],[21.981003,-431.447174,91.222968],[27.759323,-432.660904,87.229813],[28.854355,-424.934799,89.453900],[35.601242,-419.322296,74.884507],[38.797775,-406.817184,84.813973],[38.817612,-400.204849,90.549939],[36.717880,-405.914230,95.231989],[34.900925,-401.966659,98.490187],[30.523728,-397.548645,99.067503],[27.401230,-393.023452,100.086918],[25.149582,-398.815811,98.682656],[36.905136,-417.910812,87.149250],[34.288864,-432.089157,83.465378],[33.659348,-428.336837,86.750328],[32.504562,-426.077087,88.339295],[10.114975,-421.170379,95.944907],[5.717636,-423.519546,95.600157],[-1.295669,-414.617691,95.230132],[-4.297989,-411.420440,95.233940],[-12.563370,-391.260421,96.404139],[-6.971023,-432.871521,96.130461],[9.706101,-436.376373,94.412142],[-1.645462,-430.564682,95.241776],[-1.638687,-359.666702,96.504773],[6.504624,-349.782470,100.231583],[11.352707,-338.397796,103.910330],[22.991806,-352.250213,106.689431],[32.350937,-358.576950,111.519992],[35.687241,-357.140381,113.047161],[37.810104,-371.605972,107.615210],[32.984299,-372.977722,107.769470],[28.908371,-373.735870,104.832302],[26.833908,-350.680130,109.106459],[28.534409,-365.482299,106.788865],[33.945053,-361.013641,111.644285],[35.703049,-365.867157,110.525894],[23.803146,-378.589599,102.803551],[29.486496,-358.377029,109.429366],[33.055283,-346.702224,116.215479],[34.779831,-351.640533,115.074722],[37.397507,-353.590194,113.162942],[37.559555,-358.775451,110.350917],[41.355881,-357.100189,102.841509],[45.132187,-337.047516,102.606644],[40.202744,-336.888092,112.329907],[40.511948,-322.620910,114.584041],[42.785996,-324.882812,109.220058],[44.028793,-313.043884,108.196699],[41.320847,-313.549408,114.450645],[39.445297,-306.801803,122.180743],[37.642502,-303.284691,128.989956],[34.964462,-304.450699,130.088716],[29.856491,-304.654594,127.253147],[27.791000,-316.857673,121.890645],[26.874191,-306.676902,124.539494],[30.235153,-293.012077,131.781604],[33.724838,-299.019424,131.869571],[38.434677,-281.499267,134.598931],[35.637436,-275.077072,138.623095],[35.556442,-267.355888,140.833580],[38.708359,-270.271484,137.099363],[34.350632,-280.482383,137.315086],[34.695297,-289.862068,134.997350],[37.764084,-287.078483,134.426563],[36.108627,-296.980659,132.800526],[40.258286,-288.918647,125.620566],[43.658371,-264.699829,115.186941],[45.061569,-255.952564,116.100903],[43.297592,-252.651390,120.086419],[41.830063,-263.031791,122.697286],[41.927414,-256.521061,128.038422],[41.084946,-269.366760,127.843873],[41.972885,-274.091018,119.384647],[40.610397,-276.841827,127.332999],[39.576767,-266.267349,135.795188],[39.869797,-284.175270,128.411072],[37.168564,-273.599144,138.259957],[37.807846,-265.433426,140.178339],[42.220383,-260.533950,120.478434],[42.718063,-277.391220,115.894640],[40.530197,-297.587463,122.265612],[42.686508,-297.251609,113.541469],[43.337937,-305.645157,110.621313],[38.153549,-295.598274,131.157184],[36.633530,-308.784019,128.196362],[37.457321,-324.304184,123.045610],[37.745896,-316.956230,124.213316],[34.290451,-314.380706,126.635836],[46.358078,-330.851165,101.504748],[47.505051,-336.854248,97.365942],[48.179794,-342.696411,94.058846],[49.424423,-356.591552,84.833924],[46.489121,-359.867370,90.405310],[46.588974,-365.286529,87.334282],[44.770981,-379.118805,82.776947],[46.668076,-370.468460,83.341595],[41.896835,-390.383667,83.519822],[38.678330,-392.749389,96.779995],[36.185715,-392.829971,101.803440],[30.034897,-389.504898,101.237772],[37.823898,-367.281189,108.640909],[36.034775,-374.547912,107.871554],[34.830063,-380.748687,105.989276],[40.404160,-373.774627,100.862915],[42.495346,-366.377746,97.436125],[43.918930,-358.834243,96.370280],[42.770310,-384.033737,89.244690],[21.326096,-343.209076,107.211747],[14.878281,-335.471634,105.745127],[21.210678,-333.944381,108.530831],[17.198959,-320.683883,108.783164],[10.215195,-317.121460,106.037169],[9.792465,-304.256820,107.724736],[3.142685,-297.688507,104.815653],[8.238999,-290.619224,108.839109],[3.569870,-290.906013,106.062581],[8.204208,-327.339813,103.565821],[1.845505,-326.462005,100.590668],[0.806625,-342.035675,98.587418],[8.673447,-367.985382,99.608328],[8.168076,-378.031311,98.489251],[1.941391,-365.343200,97.240662],[3.222763,-353.244507,98.542826],[-21.624100,-379.766220,104.370629],[31.323959,-437.807068,83.831238],[33.590256,-416.494095,50.813034],[35.900742,-409.634079,48.370964],[39.620346,-394.166549,50.824028],[41.012680,-392.126754,41.758110],[42.663010,-382.815109,41.701950],[44.907578,-380.108917,38.392052],[45.389206,-380.582626,36.007401],[47.267380,-372.002380,36.505112],[45.900925,-367.425613,46.538315],[49.737900,-352.358642,52.080284],[51.073654,-351.021515,42.364510],[49.052841,-361.801330,39.502007],[48.399033,-371.949478,32.686425],[46.452438,-379.734955,30.701943],[47.174545,-383.548523,26.731354],[45.241928,-399.201187,20.866875],[48.572861,-356.517654,48.706635],[42.509750,-381.165771,46.590905],[43.987656,-375.683365,49.809853],[40.239792,-395.484604,68.118821],[39.210556,-401.451568,75.039624],[39.884384,-399.720245,80.438591],[39.902756,-399.519592,86.416886],[51.290390,-356.581329,72.892769],[53.944199,-344.661483,72.110825],[54.595627,-338.496231,80.336872],[54.146958,-331.415878,85.787251],[53.343857,-327.915359,88.573136],[56.220993,-312.860481,85.829632],[54.887009,-315.553802,88.507332],[55.741623,-309.514030,88.180283],[52.201889,-308.455543,93.764443],[54.272080,-297.630890,92.165667],[52.298081,-290.795486,96.234234],[55.343735,-291.104187,91.531466],[60.327072,-284.453689,85.438591],[61.614365,-277.557510,84.078133],[63.809799,-265.129043,87.787781],[65.419907,-255.170913,88.827870],[67.248276,-251.326263,86.445744],[73.112656,-230.238075,86.857499],[71.320419,-229.834060,90.556540],[67.995041,-229.173240,93.869007],[73.163315,-217.125917,93.257935],[69.507736,-215.070974,97.606701],[63.646958,-210.643154,109.342714],[62.484970,-224.017109,104.957646],[60.684433,-231.299766,106.046328],[56.691452,-248.978027,106.326658],[56.149460,-260.263344,99.879956],[57.533981,-264.284706,95.283751],[58.447556,-266.340110,93.161635],[61.320847,-267.121101,89.920710],[55.171127,-275.168213,94.929345],[51.666794,-273.967422,101.400416],[49.145493,-274.087272,105.163084],[49.417648,-285.101669,102.458161],[45.655075,-284.681175,108.444368],[45.215439,-304.396148,107.194682],[46.677048,-318.991790,102.832636],[49.986740,-314.862190,96.694741],[48.097702,-301.998871,102.288815],[49.207077,-296.446289,100.968218],[44.004868,-294.536255,110.244532],[42.108933,-287.362709,116.703598],[43.991562,-275.312706,112.718020],[45.769272,-272.661827,109.744727],[46.438583,-266.512878,110.716694],[50.913010,-265.609100,106.125812],[52.496018,-256.763008,108.356158],[53.986313,-249.898716,110.006610],[43.232895,-285.051895,113.495247],[56.315170,-279.022751,92.341536],[61.763596,-273.548233,87.937104],[59.534470,-286.408867,87.279850],[63.174179,-270.141555,78.133549],[62.452988,-280.381714,70.480561],[61.659348,-284.382736,71.143795],[62.009873,-288.348350,64.600785],[60.379624,-296.275459,67.468735],[58.177353,-313.121238,65.184044],[58.516953,-308.312095,59.953072],[56.899277,-318.385986,53.789872],[58.391403,-313.008613,53.276200],[60.953171,-311.913772,50.327889],[60.390793,-307.017906,53.162331],[61.050217,-298.587730,57.561615],[64.208847,-290.082184,59.411026],[63.881333,-285.768402,62.121922],[64.202316,-269.876907,74.231217],[68.117661,-258.272758,74.965863],[65.404587,-258.715248,87.158898],[68.387436,-249.916168,81.984719],[70.759995,-239.102501,86.088482],[75.163010,-231.448684,84.144940],[79.215073,-219.435831,88.832131],[82.960068,-207.533727,95.066409],[75.687424,-222.342325,88.157280],[77.020493,-219.295162,88.839951],[77.510544,-208.916093,93.407494],[77.683884,-199.619962,96.838932],[74.322189,-206.294376,96.528868],[79.681564,-208.876029,93.131056],[83.338547,-200.502046,97.522459],[72.428635,-237.718342,82.983063],[78.002670,-251.048114,77.026356],[84.704086,-259.870651,79.092797],[84.182358,-271.813781,74.034241],[86.571335,-280.724952,72.545273],[89.654953,-291.889976,70.446457],[90.739548,-299.013832,67.987618],[90.397690,-310.372642,62.602456],[91.996872,-318.314560,60.220124],[78.971726,-261.200454,73.940071],[81.439804,-268.695747,72.873391],[75.661850,-268.973091,68.651917],[68.298081,-288.706337,58.664608],[68.498825,-306.512840,51.381966],[58.927109,-319.002639,48.221070],[56.956894,-321.412109,50.070404],[54.280625,-331.503540,50.185868],[53.770371,-336.511062,46.471276],[50.177597,-348.927520,48.004738],[63.043442,-307.055404,51.154297],[64.774704,-310.007347,49.343789],[66.584519,-300.259529,53.639557],[62.684372,-299.838653,55.045456],[79.292221,-277.494262,67.608261],[74.592636,-285.831131,61.076805],[77.591843,-286.772873,62.653664],[77.236801,-295.412330,59.463086],[81.966171,-298.374214,62.102398],[72.081284,-311.827514,51.139496],[65.655991,-321.068031,45.036629],[57.526535,-337.240890,39.741669],[59.020676,-338.747513,38.314072],[62.095627,-331.643066,40.845650],[79.495468,-244.352806,80.479508],[82.832810,-233.998485,86.378453],[76.961228,-242.208824,79.938748],[74.425095,-240.277496,80.520390],[77.959335,-232.101227,83.876839],[78.669052,-224.762043,86.750775],[91.345749,-215.087230,100.700013],[94.420761,-214.750936,102.699810],[104.726669,-185.990278,98.874289],[108.236984,-177.276106,96.200093],[105.482712,-162.245487,108.101065],[107.079514,-151.444355,109.096237],[105.650070,-146.464138,114.260964],[110.392136,-132.049331,113.522220],[88.529892,-214.162443,98.661065],[82.937180,-218.739580,91.521693],[87.864975,-204.198579,101.078066],[92.460800,-203.780135,105.807299],[102.320419,-182.593430,112.200450],[103.124924,-181.124742,107.201073],[106.009506,-174.864921,101.546919],[103.762985,-181.140580,103.837738],[100.836472,-189.321071,112.204273],[102.268845,-163.319828,119.303217],[99.410629,-166.047697,121.599809],[103.188767,-157.569256,118.039192],[104.554062,-145.851158,117.605787],[103.339707,-145.178779,123.106800],[102.758347,-170.047508,115.803865],[104.018234,-170.744220,108.619847],[104.203964,-160.677910,112.544730],[87.795395,-229.086273,92.677988],[94.762070,-239.035865,92.379044],[90.734299,-242.316497,89.932410],[87.186447,-242.890575,87.432137],[91.094101,-232.715343,93.896168],[70.638596,-247.315593,78.866394],[72.442062,-255.526920,73.733719],[64.699631,-263.069671,78.963383],[75.692062,-259.380981,72.671143],[66.668503,-278.676017,64.096638],[64.299484,-279.243942,65.734013],[65.637192,-267.200775,72.687893],[61.188156,-294.544380,61.480484],[59.857102,-300.133926,64.926667],[59.075363,-306.499839,56.212243],[61.652146,-276.882255,78.747982],[57.821396,-302.264908,81.710472],[57.033554,-303.054680,87.658665],[50.323105,-322.918907,94.627579],[50.515793,-333.128204,92.128622],[48.890549,-365.464889,80.397248],[52.777695,-343.913727,83.382592],[52.113693,-351.233764,79.580151],[50.940415,-358.574096,76.635235],[48.622543,-369.429825,73.483586],[47.045639,-351.119674,93.246191],[52.439316,-336.485611,87.461304],[38.115036,-410.162338,81.436810],[37.407333,-408.403900,69.700707],[31.422714,-428.001877,56.979195],[34.409470,-418.768768,63.707566],[37.343674,-405.481628,64.026993],[38.887253,-399.016327,63.306099],[36.344711,-409.017685,60.062764],[40.444931,-392.279663,57.346482],[38.462387,-400.080154,46.530716],[40.614975,-389.654449,45.433945],[42.214584,-394.935318,38.022622],[43.658859,-389.134445,35.190453],[44.234238,-386.539520,31.811791],[44.323349,-388.362808,27.500870],[38.962265,-406.497726,26.645981],[37.847885,-421.124603,38.039559],[33.655075,-428.609298,30.575837],[35.300400,-422.174408,20.354630],[32.845200,-426.069763,24.544114],[36.975327,-414.037185,28.461525],[39.036057,-415.986816,35.371682],[35.788803,-413.605819,43.041001],[40.420578,-408.916534,37.649743],[39.025498,-413.334396,38.875100],[40.025253,-409.970245,34.543091],[35.399155,-421.774688,30.095147],[34.190598,-422.676315,42.767411],[68.008835,-409.537307,32.343674],[73.790268,-406.161773,35.922722],[76.406357,-419.447784,32.651131],[78.794724,-421.704605,30.912270],[79.561020,-426.473053,28.631730],[66.030258,-420.869476,30.209740],[71.858994,-415.830627,33.318024],[72.982956,-423.650726,31.912980],[57.356125,-439.541702,24.580895],[52.988754,-432.587417,21.647744],[41.747299,-448.293686,15.177170],[33.793991,-456.929992,13.496552],[33.363083,-452.950531,14.356690],[29.493942,-452.855743,15.823960],[30.353745,-443.339050,17.143372],[32.780014,-435.338104,17.482094],[27.725021,-444.368667,19.119027],[32.338913,-430.682998,19.818680],[27.344040,-442.086425,21.635292],[29.251938,-436.134979,24.482491],[30.920151,-437.669601,29.837029],[33.120346,-441.099701,36.427559],[27.688583,-441.395981,25.904419],[34.540024,-439.584884,15.762894],[38.351425,-435.501419,15.494675],[37.660019,-423.571136,17.774773],[40.325852,-418.251098,17.746720],[43.307907,-422.261444,17.049828],[44.455368,-409.488678,18.522896],[38.265976,-452.472839,14.116082],[41.372421,-456.659240,14.709694],[48.248093,-460.774475,18.502770],[37.999680,-473.876404,12.079056],[29.572189,-482.297760,11.303315],[55.714829,-478.441406,19.476647],[59.240708,-463.610412,23.571694],[61.481003,-475.058380,21.388726],[63.428208,-468.922180,22.756730],[67.415512,-463.915130,23.618218],[69.445480,-470.686126,20.550560],[66.886521,-476.527557,20.177933],[62.299362,-482.348449,20.109002],[65.997971,-482.618744,19.114663],[68.368637,-479.171631,17.481697],[54.145493,-460.910278,21.780571],[45.745590,-448.630890,17.123986],[37.877670,-459.678741,13.176209],[44.209519,-472.017791,15.257676],[38.512924,-467.686737,12.769020],[69.699143,-425.973648,31.058678],[63.297409,-429.787353,28.457131],[61.922714,-403.767975,28.436974],[49.865463,-425.645492,19.408982],[48.169052,-408.545273,19.397248],[58.744553,-390.639190,26.424889],[48.411545,-394.092453,22.084259],[48.284653,-388.380752,23.696618],[55.674179,-401.159286,23.760659],[64.648300,-390.894622,31.321946],[57.910568,-381.824569,27.650528],[51.449936,-386.734588,24.438958],[50.085495,-381.335602,25.848427],[51.229172,-375.488861,27.824822],[79.243576,-403.005462,36.513230],[82.842270,-402.160278,35.067925],[48.622604,-411.766601,-21.452858],[50.874252,-416.953384,-16.420295],[51.259506,-428.746063,-16.854362],[51.360214,-410.475967,-30.870842],[48.724228,-418.797043,-32.388283],[47.183762,-429.509262,-31.364997],[41.528977,-437.682388,-35.483604],[37.249741,-449.099136,-36.817146],[37.060837,-445.745453,-39.785789],[41.945908,-442.348556,-43.713935],[46.340744,-443.880462,-45.359459],[48.829086,-443.640777,-46.989997],[53.640366,-434.730591,-48.399040],[48.543991,-426.679504,-26.901359],[50.012741,-420.701751,-29.741493],[44.303024,-422.038452,-36.912391],[41.013962,-431.376144,-39.367408],[45.996018,-438.292617,-44.363259],[46.914658,-414.368255,-35.298683],[43.578659,-431.384323,-43.304542],[46.143479,-419.100845,-42.477531],[81.707749,-400.592407,-40.621788],[78.652756,-403.232635,-42.044334],[91.070053,-415.206573,-37.913719],[82.995957,-422.800323,-40.562737],[82.125168,-437.730240,-38.206337],[83.087143,-440.238525,-37.558342],[72.534104,-468.800079,-38.926292],[60.367722,-476.991882,-42.487465],[60.554611,-464.279602,-43.457177],[60.795456,-456.850311,-44.206963],[64.275375,-452.923279,-42.383004],[64.883835,-460.939087,-41.456398],[67.052841,-467.262085,-39.729928],[72.366623,-460.702850,-38.171287],[69.848068,-457.397155,-39.241371],[65.371750,-445.017547,-43.107002],[58.938950,-448.023208,-46.780693],[55.450974,-452.032226,-47.594032],[55.743515,-461.361084,-45.545982],[78.185288,-460.741913,-39.159629],[83.458969,-454.055450,-42.880958],[78.550888,-464.156158,-48.776725],[77.589768,-461.254333,-53.277244],[78.159897,-454.646057,-55.741813],[74.820908,-474.675201,-45.939583],[69.741196,-482.590332,-47.019966],[64.553269,-488.159668,-42.449867],[57.008957,-499.997070,-44.204430],[55.280014,-502.475860,-45.811959],[50.683945,-507.023681,-45.501167],[67.822617,-482.667602,-51.462562],[60.985275,-495.166351,-44.691368],[58.176926,-494.959503,-43.362007],[50.297653,-494.745697,-43.488823],[48.666977,-499.552917,-43.440986],[41.709213,-504.026855,-41.784172],[48.884873,-506.866821,-44.002647],[61.803574,-484.402130,-42.101570],[64.847641,-479.173217,-41.001992],[68.854233,-474.381378,-39.747062],[55.691818,-486.673156,-43.674476],[47.693344,-480.157592,-44.433082],[50.822373,-478.787018,-44.667305],[68.997604,-482.969207,-42.307991],[70.561936,-477.163482,-40.073296],[73.482895,-475.474426,-41.238151],[78.810837,-464.779998,-42.040123],[75.741318,-465.864868,-39.235023],[79.486862,-464.218567,-44.494712],[76.193222,-457.800598,-37.771125],[85.175705,-441.294998,-38.349769],[89.543564,-421.913391,-38.018760],[95.342270,-411.429413,-39.027778],[94.253647,-415.384842,-42.861763],[87.800766,-417.513611,-52.171150],[86.652573,-413.864837,-55.933799],[91.947006,-407.296722,-49.591331],[85.635727,-404.645767,-59.949653],[86.256516,-408.441009,-58.461143],[80.553696,-418.476349,-62.282112],[82.307785,-423.935867,-59.555566],[84.555527,-441.125595,-50.076622],[86.395187,-441.424743,-45.520561],[86.430954,-443.065399,-42.957741],[77.332016,-395.684128,-67.139930],[69.632797,-387.738022,-70.545601],[65.896469,-388.059494,-72.969993],[67.596970,-373.925445,-72.053033],[61.847336,-375.205581,-79.516014],[61.206345,-381.900940,-79.902443],[61.336899,-404.878616,-77.718132],[64.177353,-395.319076,-74.474846],[62.675400,-406.798980,-90.651497],[66.518723,-403.314712,-92.892158],[61.462326,-391.209182,-86.020469],[60.660629,-389.704559,-81.327157],[60.079392,-402.843002,-80.900322],[60.374069,-406.918564,-86.214073],[60.573105,-415.496566,-89.107231],[62.507431,-417.288757,-91.751258],[61.436936,-426.643570,-92.232994],[59.319382,-443.608368,-92.638984],[57.402329,-441.166931,-89.413810],[56.800278,-438.710968,-86.950783],[58.172470,-431.306106,-87.453041],[59.217026,-418.188446,-80.636985],[59.163193,-420.887619,-86.974617],[58.494003,-421.227935,-83.096702],[59.243515,-412.965286,-83.433708],[56.000839,-441.568023,-81.389610],[71.562912,-438.616790,-98.001854],[66.154465,-442.025039,-96.852868],[80.965439,-440.792587,-101.056968],[82.576889,-439.153503,-103.504554],[73.647263,-443.072967,-112.112724],[69.194565,-450.055298,-112.186241],[66.536240,-453.702697,-115.006904],[70.559555,-451.671402,-116.614647],[70.272995,-457.723175,-114.842933],[77.990463,-446.588958,-113.058387],[84.206833,-446.618606,-108.927833],[94.133835,-431.363235,-113.641533],[88.979904,-424.298141,-116.657890],[95.088303,-423.773864,-115.747078],[98.390671,-409.997970,-120.420875],[103.672775,-394.612152,-127.470055],[107.441147,-390.427093,-130.935051],[109.683090,-390.529525,-133.780174],[110.998581,-387.574829,-137.717430],[111.391708,-379.211013,-138.921990],[110.601120,-374.531433,-138.075646],[95.552780,-434.325500,-114.398964],[73.530625,-447.350326,-116.162605],[74.293320,-442.451919,-116.294990],[72.924973,-442.223739,-114.536767],[75.720810,-437.158218,-116.216102],[86.199570,-437.021164,-112.154609],[88.326828,-434.976089,-112.280006],[92.964829,-410.971771,-120.024513],[83.737412,-412.737243,-120.727105],[82.778183,-415.261169,-118.277290],[81.763840,-419.104294,-119.689857],[98.845810,-400.134063,-123.989235],[97.887741,-392.083053,-127.682640],[101.836472,-382.370315,-133.298256],[94.437241,-374.862167,-137.288476],[91.442368,-397.137909,-126.474908],[86.478012,-406.637222,-122.965508],[87.080307,-409.158874,-122.454597],[91.505783,-403.366058,-123.894142],[90.637070,-385.955383,-130.413276],[89.224960,-392.407318,-126.091728],[89.186997,-396.906936,-126.002251],[93.017136,-384.036483,-132.961464],[90.599777,-379.221252,-133.692390],[92.924912,-381.906646,-124.102318],[88.818527,-397.793426,-120.976219],[87.546005,-408.146225,-116.820550],[86.793015,-417.120865,-112.940697],[88.057480,-426.578033,-100.297660],[84.705185,-432.245987,-99.969474],[77.515488,-428.651916,-96.617271],[61.556931,-436.497299,-93.662223],[79.186020,-434.187362,-97.941780],[84.412521,-425.759353,-97.201316],[83.023972,-422.802505,-95.752266],[79.396103,-410.857818,-93.573402],[70.561386,-414.151504,-94.609291],[66.004440,-434.736633,-96.014930],[86.812851,-431.755066,-102.150902],[95.547226,-401.072570,-111.080436],[101.697250,-390.880081,-108.860069],[107.647934,-377.838638,-108.298973],[107.146225,-383.085296,-105.059013],[106.327561,-387.483978,-101.109596],[102.340256,-395.670639,-104.352943],[100.718674,-398.040512,-97.322532],[93.041245,-399.224655,-92.327552],[82.624985,-399.556961,-91.584144],[81.638779,-403.612167,-91.992790],[94.451950,-416.268844,-102.004449],[97.589218,-404.927871,-97.752098],[98.578232,-404.925964,-101.873024],[93.754562,-404.997986,-93.409614],[88.488693,-411.300857,-93.331916],[90.361130,-413.225784,-94.427894],[93.700729,-410.528381,-96.035698],[93.377915,-417.109955,-100.277168],[89.142197,-427.286117,-102.282006],[89.979050,-424.804245,-104.573066],[92.514450,-417.112426,-106.322685],[90.294052,-385.726715,-125.755745],[87.925034,-397.555069,-123.830941],[91.446518,-391.127227,-121.294334],[90.458542,-380.226852,-130.563592],[90.504624,-374.832290,-130.373009],[99.906540,-376.854828,-118.886161],[97.757004,-385.534164,-116.995185],[101.439438,-383.385849,-113.716560],[66.660935,-456.634857,-116.708046],[73.014267,-464.285186,-109.897133],[77.185654,-456.198059,-110.001640],[78.783859,-470.801208,-104.679039],[79.509750,-473.971435,-106.045434],[77.895126,-479.134369,-108.369682],[81.949326,-475.667938,-112.848091],[79.438095,-482.202697,-115.927467],[77.286240,-488.953125,-118.340309],[72.793320,-494.336792,-113.884514],[71.704392,-500.633697,-115.689110],[69.093552,-497.458618,-111.428047],[62.774399,-502.806640,-111.769691],[57.529831,-497.369781,-115.648002],[61.494919,-489.575775,-113.985467],[65.665939,-495.433960,-109.861229],[80.437851,-457.290405,-106.787040],[85.281662,-450.455215,-107.382454],[93.656235,-449.241165,-114.145714],[101.401779,-446.696075,-125.933526],[103.259567,-446.772552,-134.733178],[100.029526,-454.670257,-132.510277],[96.521652,-466.551849,-133.244621],[102.378037,-464.025726,-139.269402],[107.829331,-480.496826,-133.640709],[108.210434,-487.306884,-130.573158],[112.464218,-497.353332,-122.244880],[119.074753,-498.471039,-120.260583],[115.219467,-505.380890,-117.899376],[121.605820,-505.562072,-113.581414],[117.810104,-510.820129,-111.921699],[112.906906,-514.734527,-116.112297],[109.411240,-529.001342,-113.953910],[113.901535,-524.530639,-104.336280],[110.376145,-534.157104,-103.043525],[112.545883,-536.895965,-101.140495],[113.369797,-545.122802,-106.107506],[101.055222,-556.468994,-104.903176],[93.774887,-558.369018,-106.216346],[86.702988,-557.244201,-106.799018],[89.262009,-558.042389,-110.105279],[86.070114,-558.509430,-116.054741],[91.157028,-557.744079,-114.316887],[83.580368,-559.312317,-121.712700],[96.563889,-557.948791,-108.275948],[78.271835,-555.133697,-104.628090],[79.220871,-558.612365,-109.969688],[76.347519,-559.258362,-108.109612],[74.876999,-562.377807,-109.536262],[75.625595,-562.275482,-114.494744],[79.577805,-559.830597,-113.689629],[112.596726,-531.352905,-101.094795],[114.621018,-509.735931,-116.223701],[97.154709,-519.567138,-125.989587],[88.307968,-529.579162,-120.418281],[90.781967,-521.893585,-126.283134],[80.487473,-529.062347,-119.575248],[82.003098,-523.469146,-123.362434],[81.447373,-520.484039,-124.406044],[74.126206,-520.493499,-120.211372],[68.915573,-506.894867,-115.510398],[56.583908,-510.469909,-114.608909],[64.819809,-507.335388,-112.608055],[61.844833,-515.863952,-114.123207],[61.739182,-524.210968,-113.666833],[61.034165,-532.178009,-110.663781],[64.059250,-542.286712,-106.319831],[70.735275,-541.110901,-110.171807],[77.180771,-545.278503,-109.300805],[84.484421,-548.461334,-106.759971],[84.535202,-552.464569,-101.828392],[85.704636,-555.150360,-103.258431],[90.990952,-556.864196,-104.379387],[98.176193,-554.546814,-103.876015],[99.561997,-547.013488,-109.031623],[100.216110,-537.803436,-115.060707],[101.047165,-533.090454,-118.057960],[100.751816,-530.744934,-120.015403],[110.215012,-520.954590,-117.222236],[102.466293,-550.702179,-105.223808],[104.687363,-551.881164,-104.785088],[104.459580,-545.273712,-106.813897],[104.771286,-537.039764,-114.735160],[103.271347,-541.207641,-112.341927],[106.705307,-544.820648,-104.463203],[109.583664,-538.731140,-102.528755],[110.984726,-540.719665,-102.552055],[107.417221,-535.494079,-112.335334],[107.335007,-540.185608,-106.022377],[81.383347,-545.416961,-109.571205],[91.318466,-554.232361,-103.471031],[95.856918,-550.834228,-107.240929],[71.567856,-536.670532,-112.495353],[80.300156,-534.194793,-116.447837],[80.828842,-540.336914,-112.476219],[72.760971,-533.219055,-114.942544],[75.980698,-526.248993,-119.381203],[68.853134,-532.704193,-113.348732],[67.375778,-523.407715,-115.026268],[71.092636,-528.257568,-116.184426],[65.190292,-511.785064,-114.097221],[68.449692,-515.807525,-116.382484],[101.977341,-525.935211,-122.344581],[106.305100,-532.588043,-116.140571],[105.724411,-524.977234,-120.092950],[95.670395,-525.974853,-123.119117],[95.486435,-545.655151,-109.381676],[89.518173,-548.657684,-107.536339],[92.410141,-535.424987,-116.003181],[106.301682,-512.251129,-123.854194],[103.802475,-518.464813,-124.188210],[99.416428,-511.430633,-128.517860],[91.939499,-516.451660,-128.721672],[80.219711,-513.770324,-123.700570],[100.240097,-475.328796,-135.960746],[93.671982,-470.034851,-130.583534],[87.392075,-477.580078,-126.205406],[83.499863,-481.502380,-122.513207],[81.908554,-480.621307,-118.432563],[87.273605,-473.311828,-120.724403],[86.194687,-470.616638,-116.124092],[94.980332,-462.860077,-125.741081],[96.884018,-462.121063,-130.331993],[97.204819,-456.734436,-124.749214],[97.818955,-469.070221,-136.053338],[91.698105,-480.431488,-133.203149],[92.290207,-494.469940,-132.545295],[94.383225,-508.972900,-130.121696],[98.074448,-494.117767,-132.453240],[98.844650,-484.933654,-134.264396],[104.043320,-477.616211,-135.338920],[91.650803,-485.754547,-133.258857],[81.267502,-489.292083,-126.840935],[77.129013,-500.772491,-123.759147],[83.207749,-497.259216,-128.349435],[85.560471,-489.240478,-130.381492],[77.640915,-506.829254,-123.733575],[85.346481,-506.574310,-128.166405],[73.910141,-511.860107,-120.028527],[88.527512,-480.397522,-129.982093],[67.358750,-463.403473,-114.717460],[75.350693,-479.709533,-106.169777],[72.215622,-479.718292,-106.070213],[68.078781,-489.117614,-108.759025],[68.427414,-493.824371,-109.389702],[71.935471,-486.466278,-108.031837],[73.085800,-487.529785,-109.428933],[58.936813,-487.020996,-115.833610],[48.268356,-487.539947,-101.646110],[45.974533,-493.826477,-96.177406],[44.057602,-502.817810,-88.585640],[44.674667,-501.727874,-93.482795],[49.594528,-513.212097,-105.486764],[51.104233,-508.890289,-112.017219],[51.565598,-521.967987,-106.107689],[53.221176,-528.058929,-95.654350],[46.271164,-509.223724,-96.358726],[46.905808,-496.303772,-102.932685],[50.202316,-494.870605,-111.910302],[54.222092,-486.804229,-115.287285],[51.669724,-487.173217,-112.603996],[54.898117,-492.790161,-115.947732],[52.201096,-496.296539,-114.721107],[54.922043,-499.960022,-115.693412],[49.991135,-499.316711,-111.539818],[47.922043,-501.291046,-104.326286],[49.254562,-487.457702,-108.638221],[62.486618,-483.090789,-113.408226],[62.765244,-476.784698,-114.103325],[59.691696,-476.697448,-115.342857],[61.070786,-465.831878,-115.222985],[63.716538,-467.435638,-115.265389],[57.733811,-469.620392,-114.322915],[56.009628,-483.381073,-115.833274],[53.343491,-477.169555,-113.037804],[78.539475,-445.990249,-101.887062],[75.794052,-442.198105,-99.695320],[63.182724,-450.089996,-96.715981],[65.238388,-414.465393,-92.998268],[64.329636,-429.110061,-94.395134],[69.123825,-427.478851,-96.106865],[61.971176,-391.573242,-77.796470],[91.524338,-397.247528,-53.765068],[99.068527,-396.273025,-39.950615],[100.811203,-389.601593,-38.594566],[98.368027,-397.578079,-42.757423],[88.330795,-402.813873,-37.987648],[93.430649,-397.064499,-35.766578],[97.900070,-393.587112,-36.992439],[95.450485,-390.970016,-35.177330],[98.814011,-368.592071,-29.531135],[93.231064,-363.524200,-26.877861],[91.197067,-372.893463,-30.237617],[90.062119,-361.102661,-26.664695],[85.285019,-364.624389,-29.502586],[92.415756,-348.845642,-22.484199],[103.566574,-371.665542,-32.597618],[100.513168,-385.127487,-35.617638],[102.077866,-384.433304,-39.503884],[101.632309,-381.736679,-41.502647],[103.254074,-376.093567,-33.921836],[104.484726,-375.067535,-37.690224],[105.738205,-363.578842,-31.486961],[106.308029,-367.161606,-35.241294],[102.640244,-380.940063,-35.903495],[84.776352,-370.642822,-31.672813],[90.812302,-379.731277,-32.308418],[92.458176,-405.256393,-36.708198],[94.930771,-404.922256,-37.115501],[96.530747,-405.515014,-40.491081],[95.200119,-407.347793,-45.097572],[93.420822,-413.916595,-37.530189],[94.916672,-394.866455,-48.032829],[94.134506,-417.999084,-39.943122],[91.216782,-426.215439,-43.828530],[91.710800,-425.530670,-40.261848],[86.593247,-437.063324,-38.439994],[86.252487,-429.587539,-37.807228],[89.860275,-428.246978,-38.349754],[91.708298,-422.059005,-38.292396],[75.062058,-452.914703,-37.812400],[75.443833,-447.655349,-38.237724],[75.625351,-437.484558,-40.903954],[79.622421,-430.351288,-41.321693],[86.575974,-396.446090,-37.697532],[54.021713,-374.428283,-33.459098],[55.627182,-373.438904,-28.311256],[65.349045,-324.485168,-24.224648],[71.104965,-318.509109,-23.492149],[74.998825,-329.348007,-26.263450],[77.313339,-333.088028,-26.518379],[80.597275,-341.946975,-27.077476],[71.687424,-334.671844,-27.723748],[72.141586,-287.173431,-13.266945],[72.194077,-298.707634,-17.540611],[77.065048,-301.487075,-18.981880],[65.657150,-303.328186,-14.398811],[66.032883,-297.607330,-8.952858],[67.355698,-293.062500,-10.057853],[69.274887,-288.269500,-10.461143],[68.466782,-296.471183,-14.315269],[77.230698,-255.519840,0.552124],[95.829392,-243.918556,4.739846],[92.167099,-250.066158,1.444504],[95.034409,-266.301109,-0.375709],[94.328903,-275.481956,-2.898147],[96.776596,-275.804413,-2.582382],[97.387802,-285.536628,-4.585678],[80.573837,-285.729919,-13.924034],[78.233566,-267.103767,-7.119392],[81.223007,-273.087562,-9.845956],[85.674606,-260.447868,-4.539001],[84.888535,-271.407371,-8.244026],[89.727036,-256.856689,-1.243476],[95.731796,-258.294723,1.421936],[82.822617,-254.984993,-3.403442],[97.964829,-251.032032,3.470421],[97.869064,-263.393295,0.571518],[86.340744,-251.507103,-1.607162],[91.060410,-215.527855,11.134034],[85.824936,-223.153724,11.223969],[83.352585,-234.096222,6.161843],[83.693771,-242.287388,1.598519],[80.718796,-240.346290,6.835320],[79.983261,-247.915607,14.737397],[79.949814,-242.327934,11.373368],[77.583298,-253.943706,8.977990],[75.109909,-261.108902,3.796852],[73.819748,-267.472458,-0.848228],[74.715744,-270.034996,-5.762756],[78.181320,-250.040832,4.427864],[80.554611,-246.838356,1.580422],[71.603867,-289.725631,2.001732],[68.690903,-295.616478,-2.018707],[63.901962,-309.013519,-9.560493],[65.211350,-308.417251,-6.501258],[63.917343,-326.752578,-5.533638],[61.495102,-330.661087,-8.289895],[62.029709,-335.133438,-6.992897],[60.824265,-322.077743,-12.086418],[59.058945,-331.978683,-12.889213],[66.739060,-333.182983,-3.633186],[67.651291,-310.990516,-2.575149],[63.025131,-314.582954,-9.403176],[70.930832,-283.666877,-0.725006],[75.602524,-262.715858,7.050934],[72.634323,-274.647712,0.829300],[77.202377,-262.887886,11.126259],[91.117905,-220.994142,9.368370],[87.581528,-221.639564,10.081200],[86.738937,-232.835628,4.487229],[107.533859,-233.968635,6.780693],[124.024948,-241.918590,-6.839515],[122.965256,-266.677444,-10.776497],[120.407028,-263.061531,-15.011833],[115.899399,-267.092537,-20.606666],[119.165939,-270.873565,-17.033897],[105.637863,-281.971405,-30.799949],[98.284226,-282.013168,-37.296867],[96.932785,-277.489357,-38.498664],[93.591721,-285.346367,-52.134300],[81.230209,-291.698044,-57.789070],[82.933579,-300.263679,-58.103920],[79.178391,-311.245926,-61.216209],[90.077744,-289.773422,-55.056907],[94.211655,-282.397430,-47.856437],[94.785568,-275.097221,-49.507270],[97.487229,-268.973671,-37.233407],[101.350449,-252.704422,-31.074119],[105.319443,-250.102638,-27.701774],[106.590744,-263.945633,-28.110588],[113.503586,-258.800316,-21.503013],[111.411057,-276.761253,-25.786918],[116.145615,-280.755653,-21.064019],[102.522080,-275.137626,-32.915657],[98.983139,-254.062126,-33.785134],[98.301193,-248.834072,-34.297325],[99.682236,-269.320442,-34.657783],[81.164963,-270.296821,-57.370018],[83.908493,-271.890587,-54.460090],[79.456162,-281.508362,-58.984672],[77.347519,-288.250625,-63.048057],[76.320358,-298.055877,-63.220039],[78.793076,-299.921005,-60.303520],[79.700974,-287.219711,-58.585884],[77.104172,-300.507980,-61.928596],[80.301621,-269.848297,-60.594001],[78.698654,-281.695678,-64.718682],[81.160324,-282.035782,-68.370171],[84.814499,-276.805603,-69.244560],[86.029709,-279.645645,-54.519723],[83.953110,-286.834686,-55.996467],[84.382248,-250.940921,-51.082771],[87.790756,-236.196003,-44.678460],[90.987045,-224.452207,-39.335106],[96.895737,-233.982715,-39.030586],[98.402207,-227.460354,-33.765922],[84.973679,-231.969940,-48.718589],[88.027451,-233.090824,-56.137321],[89.091721,-238.670349,-58.998024],[87.878342,-253.787342,-63.779457],[89.415329,-264.591606,-67.074760],[83.517319,-258.020748,-62.004295],[82.310166,-257.651382,-59.613823],[84.871079,-257.281967,-62.973075],[84.596176,-243.548652,-56.149743],[85.270920,-233.850750,-52.372140],[96.530625,-241.563770,-41.825431],[97.930405,-239.348129,-37.863716],[101.101120,-222.589374,-24.642403],[100.273117,-237.120327,-28.353218],[104.341965,-213.506199,-19.348991],[87.871079,-224.654346,-41.766090],[95.210007,-211.566892,-32.498191],[99.331589,-217.332979,-30.840446],[99.374130,-212.412019,-29.896904],[96.774460,-223.025966,-35.226814],[89.777207,-205.017595,-46.073983],[92.321091,-214.951822,-51.564949],[97.747238,-223.774624,-53.752388],[96.117600,-232.962269,-56.554176],[97.625351,-238.594597,-58.409080],[91.546616,-242.931705,-61.077232],[98.826584,-249.632435,-61.439338],[98.478500,-255.650654,-63.277763],[101.168747,-259.234989,-65.113045],[104.840378,-259.992874,-66.793815],[98.006271,-275.638336,-68.929298],[99.816879,-242.896984,-59.511955],[101.631027,-231.333759,-55.762519],[109.144333,-232.628650,-58.373680],[123.725754,-226.485700,-58.917428],[126.644638,-217.691131,-56.347802],[124.545944,-199.946342,-49.301597],[134.965134,-199.948311,-49.058067],[136.531662,-179.156753,-37.679115],[136.368210,-167.058405,-32.603645],[144.647995,-166.748281,-32.148948],[151.023483,-163.972669,-39.547355],[156.408005,-154.159382,-50.258918],[151.533066,-157.141754,-44.520424],[141.286118,-157.587845,-55.723335],[130.491379,-157.769714,-59.487236],[123.783920,-156.671375,-61.263970],[123.792465,-173.746963,-67.591087],[130.015488,-200.554464,-74.936959],[127.245041,-202.279051,-76.560554],[130.389633,-215.830496,-79.687553],[127.613999,-228.496620,-85.517387],[127.958298,-242.588749,-89.809974],[123.395615,-228.882961,-87.576637],[118.863449,-238.935993,-94.068992],[118.377976,-251.288505,-99.279152],[116.909165,-252.496799,-102.273597],[116.511093,-270.922760,-108.219047],[117.908127,-278.456375,-107.291665],[117.117905,-292.398727,-108.918847],[121.372666,-288.804039,-104.412194],[124.609177,-300.225944,-101.585807],[128.435776,-297.051002,-96.804252],[134.570297,-280.432495,-88.632988],[134.894455,-289.889076,-87.289727],[136.514511,-289.140472,-84.241783],[137.342026,-288.020118,-81.465477],[133.432663,-283.028839,-75.504966],[131.103012,-271.934585,-71.434227],[140.827133,-256.198028,-67.622718],[144.553269,-248.212597,-67.975929],[135.255905,-246.648521,-64.210319],[141.071396,-226.776418,-58.066490],[142.939499,-215.141779,-53.489373],[135.254807,-207.885831,-52.076256],[140.725144,-250.940929,-65.939994],[144.303757,-239.316990,-62.851570],[143.064438,-256.160965,-74.532844],[143.504929,-256.779819,-71.716743],[140.836716,-261.967193,-79.116539],[141.974594,-263.238334,-76.256019],[139.481796,-275.923027,-80.040672],[138.360153,-274.378555,-82.686332],[135.021835,-266.130127,-88.161080],[133.764755,-256.630699,-88.550560],[131.380661,-251.829021,-89.831642],[124.583664,-248.952053,-93.258369],[123.226059,-242.535389,-92.183082],[120.605271,-253.813591,-97.540580],[124.725998,-256.531322,-95.160972],[121.673630,-274.713081,-101.864983],[130.792587,-270.949051,-92.912986],[126.729904,-273.646774,-96.926887],[126.314011,-265.158790,-95.819603],[120.801804,-264.599922,-100.268914],[132.603500,-232.232086,-84.684227],[134.507858,-235.960491,-84.764916],[135.331284,-219.205139,-79.203819],[140.336166,-193.470604,-68.480187],[139.324570,-181.136821,-65.367500],[133.473190,-185.962516,-68.828880],[135.101547,-201.441745,-73.530937],[138.125595,-197.566877,-70.966072],[139.852280,-257.979370,-81.438164],[136.707443,-242.617069,-84.149726],[139.109604,-251.280605,-82.514518],[137.391464,-263.693512,-85.150077],[141.047104,-264.679199,-71.632317],[142.407456,-262.404579,-72.573205],[141.188095,-269.891250,-75.252266],[139.203476,-279.029281,-77.701500],[136.313828,-283.066604,-76.589836],[136.555893,-289.614113,-79.963981],[138.443466,-235.567016,-61.332283],[146.090256,-235.717334,-63.322777],[146.055527,-225.755106,-67.523735],[147.237351,-213.930658,-62.949607],[148.048447,-214.761852,-59.851067],[147.985581,-214.336609,-56.611305],[147.419113,-223.822817,-59.721229],[145.692673,-230.351032,-60.121254],[146.920761,-229.582538,-64.079811],[145.423264,-243.218677,-66.028602],[145.651718,-239.350544,-68.619316],[125.165268,-275.303039,-71.661171],[123.755661,-245.447208,-64.052560],[117.473190,-239.661762,-62.351417],[133.356186,-222.287101,-57.306175],[124.853745,-251.325519,-65.480079],[117.858017,-254.221096,-66.785362],[113.251328,-268.483177,-71.017814],[120.517075,-276.303726,-72.684700],[131.478928,-263.980804,-68.759850],[142.864365,-254.600879,-68.176551],[129.068405,-259.842369,-67.257545],[130.804245,-252.156059,-65.449836],[130.199814,-245.525463,-63.706825],[143.327500,-248.286346,-65.769630],[127.850083,-277.775329,-72.775138],[118.737167,-297.035568,-79.429771],[121.170212,-307.167129,-82.653984],[116.322312,-306.510879,-83.032966],[116.252976,-312.832031,-84.809945],[126.388779,-218.151920,-82.240273],[124.144455,-214.191963,-82.144844],[119.487351,-214.771562,-85.592491],[114.784409,-219.708389,-91.217872],[112.109299,-217.639484,-94.058937],[109.717026,-212.859638,-99.017463],[108.567062,-200.452591,-94.718849],[108.966416,-198.151816,-89.201759],[107.958237,-194.228827,-92.450997],[106.860581,-183.424267,-89.184532],[107.753647,-180.819101,-84.637947],[107.962631,-175.398916,-83.001014],[110.806687,-175.887632,-78.912742],[107.945541,-167.217085,-80.323510],[109.320847,-151.374164,-74.634269],[109.055344,-152.240654,-79.316429],[110.353684,-139.872417,-72.050483],[126.725388,-128.240677,-48.770134],[137.627487,-133.960342,-48.225517],[138.228439,-126.415069,-46.039756],[136.454514,-119.356682,-43.083290],[141.759506,-113.431556,-44.241920],[150.485275,-104.537460,-41.967979],[160.856247,-108.320938,-48.245445],[165.874558,-115.066452,-53.747688],[159.099411,-115.260193,-49.932655],[156.055527,-121.299324,-52.403679],[146.342270,-119.722679,-47.782493],[143.278488,-120.804489,-47.501610],[139.858078,-123.248710,-45.818885],[140.497238,-133.025234,-48.554954],[118.895004,-135.519428,-55.572975],[116.181259,-111.512687,-49.075676],[117.441391,-105.831985,-44.912529],[124.699509,-107.941932,-40.818855],[129.548508,-107.397445,-38.822120],[133.334702,-110.144539,-39.386696],[136.056931,-109.068680,-39.061424],[143.748886,-104.139824,-39.936791],[146.076462,-102.157890,-39.508842],[139.071396,-90.418960,-33.535775],[139.230820,-100.112335,-38.541938],[137.506760,-97.482925,-36.964271],[134.812851,-99.711784,-35.452263],[130.508041,-85.865272,-29.462455],[118.245651,-86.242698,-34.735512],[118.001877,-73.384147,-28.876060],[116.338120,-75.166275,-31.990319],[113.857346,-87.888633,-43.083641],[113.922836,-78.728210,-40.911872],[114.432724,-81.339279,-50.655311],[114.516770,-86.372322,-57.583946],[113.383774,-82.641563,-58.880775],[110.623947,-87.521537,-63.938057],[106.326584,-79.647979,-59.401894],[106.020432,-90.838707,-65.028053],[111.948166,-77.612892,-58.077003],[114.690354,-72.215637,-52.292534],[115.108505,-76.414062,-52.218849],[113.986008,-48.774093,-39.497596],[110.944016,-40.303589,-37.970771],[110.009018,-28.589721,-32.326943],[106.622360,-14.970749,-24.633995],[110.848374,-7.363159,-20.232307],[109.714096,-0.195617,-15.929451],[94.102707,-2.662597,-10.238427],[89.310166,-2.672561,-9.773888],[88.734970,-9.917297,-13.002006],[84.450119,-20.309662,-19.431084],[87.989548,-20.502258,-18.541389],[100.115341,-44.073562,-36.872566],[90.912216,-33.179016,-25.165855],[101.001877,-20.243469,-24.009773],[96.296616,-20.981842,-21.432533],[100.174118,-11.685913,-18.674903],[87.795700,-32.209549,-23.915154],[91.786484,-26.538910,-21.962730],[93.601853,-15.799225,-16.699333],[93.909592,-11.861755,-14.573310],[91.670944,-8.480743,-12.301109],[91.207565,-19.755676,-18.154258],[98.361069,-3.472641,-13.060508],[108.105087,-33.559509,-35.781334],[102.861740,-27.334076,-29.399102],[107.493576,-37.893921,-37.643349],[110.359848,-51.410705,-44.734367],[114.831284,-60.750686,-45.028984],[103.916245,-39.260864,-36.268486],[95.696457,-39.706588,-31.430366],[88.644394,-44.481796,-29.514198],[84.282822,-41.674972,-28.362938],[85.544541,-28.705719,-22.736045],[102.653977,-81.055664,-57.480339],[108.031113,-75.160438,-57.692863],[108.573288,-82.431892,-61.790154],[149.687485,-99.009437,-39.511253],[158.216599,-98.938034,-43.504203],[165.580246,-102.785698,-50.751854],[168.216110,-94.446602,-53.381187],[166.986618,-88.518074,-53.905693],[171.435166,-81.335884,-54.453331],[168.643234,-82.169510,-54.945366],[167.362473,-71.180916,-52.944649],[161.573532,-85.537437,-47.170311],[169.642258,-90.073547,-55.908348],[165.130478,-74.065117,-52.927955],[161.750595,-75.214134,-50.287712],[160.199326,-77.699493,-47.796394],[158.536728,-90.680099,-43.340004],[152.882492,-85.084678,-37.220070],[149.864243,-81.676895,-34.904350],[148.020371,-68.753921,-31.591056],[141.050217,-60.769149,-26.091392],[145.063156,-57.811157,-28.643440],[132.769638,-58.607559,-23.166618],[134.262619,-62.736984,-25.019630],[138.075546,-63.780288,-25.189019],[129.349716,-77.913917,-26.469688],[125.777939,-71.846283,-24.273735],[124.182053,-61.053283,-20.311882],[127.488999,-62.162399,-20.256462],[127.735275,-54.714019,-17.256004],[138.332932,-51.399994,-22.976081],[141.563278,-43.512771,-22.696266],[141.085617,-38.440231,-20.899270],[146.781235,-31.170593,-24.354042],[141.524765,-30.665725,-18.060463],[149.638046,-39.388229,-30.169044],[152.043564,-47.153625,-34.743080],[157.902817,-71.321434,-44.854301],[154.347824,-61.839142,-38.691749],[156.286301,-51.005981,-40.382194],[162.584274,-56.067230,-48.316215],[164.624497,-53.649246,-46.232948],[162.076035,-41.316894,-40.402870],[159.467148,-54.989410,-46.079262],[158.986313,-65.714325,-46.678535],[170.270981,-48.198974,-33.139274],[168.260056,-35.870224,-28.024025],[171.429672,-33.579132,-17.203727],[182.741806,-30.650085,-17.474739],[182.507218,-41.330444,-19.437478],[185.139114,-34.648391,-23.414711],[192.149033,-29.571960,-24.764061],[193.731339,-42.825424,-28.134620],[199.156387,-34.711960,-23.011651],[205.833969,-38.507461,-22.574410],[211.667130,-41.478164,-22.448875],[213.420181,-36.058014,-20.831031],[222.221756,-35.151596,-20.673713],[230.434921,-42.233337,-13.716255],[229.367355,-53.126159,-15.432502],[227.693375,-57.149765,-16.287208],[227.770584,-60.207489,-11.789895],[224.434342,-63.000610,-14.801323],[223.688004,-67.339157,-9.369941],[220.026505,-70.304390,-1.566337],[210.143784,-65.270462,-2.274002],[196.818619,-69.868309,1.221146],[181.028916,-65.683517,-4.807670],[171.429855,-73.502273,-8.751808],[173.275559,-76.380096,-9.342048],[170.004990,-80.616546,-8.783851],[175.350754,-91.929809,0.219788],[175.792709,-97.217331,1.895295],[176.553940,-97.000671,7.713189],[178.891770,-99.361709,12.776421],[188.363144,-90.904007,6.629837],[187.994705,-88.246231,-5.546608],[187.880600,-93.155037,-6.235527],[186.999954,-100.887085,-3.045021],[192.342545,-106.535949,-4.181686],[195.959519,-109.810890,-8.212776],[197.195358,-110.717689,-11.249932],[203.439255,-118.332161,-16.842231],[205.324692,-119.112129,-22.727256],[204.875015,-120.949890,-25.229774],[192.127426,-126.319542,-34.498680],[192.747452,-130.730049,-39.434333],[186.271591,-135.066990,-39.755714],[178.833481,-138.602333,-38.015937],[175.698532,-149.615757,-33.336297],[176.699326,-147.426147,-21.762169],[176.157028,-144.769725,-17.250846],[170.946274,-142.770878,-11.721153],[172.207810,-135.700824,-7.648811],[170.178208,-117.235893,-6.310478],[170.796433,-112.627563,-7.180885],[169.655563,-104.738632,-6.402336],[174.158920,-100.931991,-7.239952],[174.315781,-95.981994,-4.415763],[173.141953,-94.329033,-7.222588],[176.913681,-102.594299,0.292366],[179.626969,-105.355797,9.081185],[182.951065,-106.774627,10.870003],[187.865677,-111.550766,6.156083],[192.958756,-114.481613,0.313408],[194.952744,-116.794204,-3.040298],[199.546982,-117.034134,-7.158012],[200.078659,-119.958915,-13.754143],[192.407364,-112.518165,1.053925],[188.579788,-106.703712,2.381699],[180.838730,-104.524933,12.584626],[185.633499,-106.801506,7.775429],[190.492020,-116.033073,-5.343544],[188.385758,-116.934646,-10.500846],[179.712814,-108.018379,-0.052635],[181.919174,-109.665298,6.188279],[185.618973,-112.577728,4.967286],[182.396774,-111.606811,-0.935592],[189.685745,-114.604637,0.460457],[170.417648,-132.378467,-5.143226],[171.080246,-137.210243,-7.768425],[167.737778,-137.943206,-7.985954],[164.078232,-136.156940,-4.919448],[166.070175,-142.623977,-7.847129],[162.727707,-149.647495,-0.713371],[164.334458,-149.937618,-10.506294],[157.760849,-152.139217,-9.469490],[153.737412,-146.591736,-8.848671],[152.061875,-142.792766,-7.105064],[146.931809,-134.129608,-4.653854],[144.196396,-127.945350,-1.953491],[147.669602,-129.666717,3.407868],[148.212570,-125.928695,8.644371],[152.412888,-127.235115,8.531815],[152.769516,-124.517898,14.768479],[154.713547,-114.655121,4.209595],[157.396103,-112.880539,1.241280],[157.716477,-105.453178,0.296914],[158.342758,-112.807724,-3.862037],[161.187912,-112.431266,-5.083923],[159.150803,-118.941398,-3.537094],[165.601791,-128.511726,-4.456466],[166.954758,-117.377998,-3.475761],[170.177719,-124.665161,-3.920791],[163.837265,-121.515609,-4.443397],[168.621872,-114.172928,-4.409835],[166.639816,-108.679496,-4.409950],[162.596787,-105.978798,-5.136177],[162.295700,-97.618927,-5.167129],[156.777329,-99.491981,7.800438],[155.990646,-108.439804,18.273766],[153.673691,-119.130249,11.853173],[157.316513,-102.889091,4.524269],[154.298203,-109.602684,6.090477],[166.191391,-99.899414,-5.598854],[159.232041,-98.297256,-2.680969],[157.341965,-98.831825,1.926590],[156.856552,-97.913292,11.784073],[154.748825,-104.835472,10.207047],[157.931809,-99.552849,19.758103],[160.620712,-103.679222,29.579773],[168.153244,-88.624740,25.387802],[167.391647,-90.982307,29.294121],[167.594345,-82.843429,30.769669],[155.161789,-81.438972,39.579285],[154.953964,-72.605705,44.206643],[152.409836,-65.690033,48.865570],[159.090866,-65.226745,49.519020],[158.055771,-60.194549,51.612915],[157.580856,-57.875396,50.630616],[155.295822,-54.329239,53.829461],[152.232895,-49.211715,55.836831],[149.966110,-43.795379,59.090405],[147.431503,-45.673935,58.610859],[143.112045,-39.088501,61.152069],[146.557236,-56.296493,52.542565],[145.136093,-47.914947,56.259629],[149.450180,-54.558639,54.852387],[162.461350,-70.931869,44.484482],[163.020798,-68.370994,44.943161],[159.251511,-65.414047,37.356629],[161.124619,-65.148636,30.325089],[159.172775,-53.463669,33.659005],[163.273972,-62.350219,28.516693],[169.656967,-65.020508,21.478554],[170.691940,-62.453064,20.746529],[168.319565,-63.885238,18.554940],[170.330673,-68.353088,19.681679],[170.032578,-72.021454,21.794762],[169.485214,-77.434585,23.173867],[169.844406,-79.746551,22.862915],[166.111679,-84.180854,20.527626],[162.146835,-89.967628,19.747216],[160.197067,-89.196045,16.150795],[158.350571,-90.981140,12.352005],[156.976853,-94.105240,7.397149],[156.196274,-85.411422,5.603920],[155.714096,-72.920608,7.337372],[156.246079,-59.818634,4.775406],[158.089401,-55.965408,3.972504],[156.229843,-38.151169,15.878098],[157.695480,-34.462082,16.793938],[155.865341,-28.868087,22.083809],[157.553696,-24.536697,23.715699],[157.119614,-19.331436,27.982460],[166.954086,-24.012405,24.542824],[168.544357,-32.792312,21.881180],[175.811630,-39.778366,17.446198],[175.682907,-45.139251,14.674691],[177.304001,-47.698852,9.867539],[174.534226,-49.122589,9.730309],[175.114670,-52.196319,4.303719],[171.244003,-51.486953,5.466950],[162.545822,-60.680557,-0.939369],[169.629562,-62.329422,-1.438209],[165.378281,-88.484939,-6.358848],[160.971726,-91.619682,-4.232605],[156.328781,-90.557098,1.744660],[155.988632,-82.063751,2.210297],[157.352890,-83.628898,-1.149261],[159.300095,-80.582489,-3.512443],[161.894394,-84.329361,-4.461372],[171.496750,-88.583557,-9.111869],[169.654343,-69.092880,-5.509620],[178.392624,-56.163818,-7.005912],[181.260056,-53.044571,-6.322837],[183.571793,-43.969955,-3.117752],[181.622421,-37.331833,-1.689895],[175.613388,-28.310241,4.236939],[176.093186,-26.013443,4.037156],[173.957077,-22.700927,8.404679],[172.294846,-17.360397,13.327835],[170.265793,-13.008682,19.065880],[173.775986,-15.488159,11.862984],[173.223618,-11.305618,17.234146],[168.184799,-8.523025,24.399567],[160.037521,-3.072998,38.112008],[157.418625,-0.653534,43.249031],[160.463486,1.209000,42.092530],[156.424240,3.962235,49.299958],[156.112900,8.162735,55.841164],[153.667954,13.594452,64.706368],[148.603134,14.255188,66.806836],[149.277573,18.183503,73.957730],[143.359421,21.977646,88.045571],[140.960312,16.232148,89.394108],[142.440048,12.072464,82.411866],[145.012802,2.672699,75.477242],[146.168503,0.761063,69.618248],[150.621506,-11.407745,56.352890],[149.982163,-12.492630,52.408089],[147.254746,0.538513,61.012795],[147.776474,-3.812393,60.321907],[148.653366,-5.194091,66.338738],[145.749130,23.634735,87.316956],[155.482041,22.224396,77.177174],[159.059738,18.613831,70.464051],[166.023239,15.153977,63.393502],[169.383286,12.926346,57.908783],[169.464829,16.359986,58.509865],[170.613815,16.909882,44.219956],[172.917771,20.059601,43.146691],[175.463181,23.724152,45.863396],[177.151779,23.722855,43.511696],[183.348343,21.172470,28.469292],[184.665451,15.195328,30.278801],[184.973282,19.538102,21.889435],[188.429215,8.034073,22.749817],[191.588394,6.452195,15.822861],[195.460922,-1.055389,14.472100],[200.249100,-9.462661,12.549103],[202.242081,-18.172073,6.826401],[204.961716,-24.776504,2.925095],[203.521896,-30.277862,-1.554290],[200.842301,-39.000534,-4.471969],[193.255386,-43.315674,1.539269],[186.723404,-35.002014,4.219185],[186.453903,-45.103378,-0.312866],[186.345413,-51.821457,-2.840080],[181.178208,20.906433,36.167130],[181.826309,14.781342,35.915795],[184.377121,12.419190,32.270470],[186.303970,4.855133,26.062943],[189.903946,-0.381378,21.780869],[192.600083,-1.426819,18.377701],[186.977463,10.071839,26.095108],[152.894516,18.392441,72.395569],[156.094101,12.620880,62.602414],[160.412949,13.295227,61.281914],[162.762741,9.028015,53.554505],[162.313339,4.622620,45.840416],[164.375839,1.910218,40.342461],[170.724838,7.312897,47.661011],[170.539291,12.958618,52.363228],[166.110275,7.268586,50.394425],[168.024765,11.131790,56.542710],[168.885117,5.514649,47.536484],[170.480148,0.541748,37.294754],[174.638474,2.989991,31.060357],[174.852646,8.353623,34.941643],[177.284104,5.196015,31.104149],[181.923538,0.676850,26.524186],[183.934830,1.682541,26.481514],[180.688950,7.559128,33.150513],[173.923752,-2.338302,28.123101],[177.655991,-9.946975,20.657639],[176.220200,-12.707153,14.305779],[174.711716,-19.609955,8.226509],[179.539627,-19.738769,8.469796],[186.692246,-25.674743,7.408036],[177.631210,-15.836914,10.224068],[179.832169,-12.473633,17.189003],[177.654038,-1.188614,25.155335],[174.769089,-6.180938,24.892327],[183.280716,-7.645630,19.366120],[186.684372,-11.466171,14.819222],[187.333664,-6.517502,20.078438],[189.497299,-5.586898,19.908188],[178.148056,-24.508239,4.257454],[169.973129,-7.655166,23.725319],[171.278854,-3.295913,29.646744],[151.417404,29.026764,91.395020],[154.327316,24.898758,83.508877],[164.067368,22.644867,77.950951],[163.214646,28.975388,86.288979],[163.737167,30.232605,76.751831],[157.250839,36.043701,97.857319],[161.156906,31.936524,87.344937],[156.934250,36.011154,85.616192],[163.632248,25.684082,63.950482],[160.621506,32.355545,65.178093],[164.404404,34.207321,63.230503],[158.155808,32.625702,71.145703],[166.771958,25.418778,74.161187],[162.650437,19.171936,71.458466],[159.339096,24.447296,83.296147],[164.203232,25.298203,57.630921],[166.531418,23.031189,52.911248],[169.635910,23.780945,48.829193],[171.801804,27.209427,51.751198],[173.101120,28.217682,50.306450],[166.612351,26.758820,54.564766],[169.630173,29.955246,55.904694],[167.595749,38.051209,56.568894],[156.574875,47.636887,71.282757],[153.232590,51.952927,76.733590],[151.495041,49.150498,80.040200],[148.401535,47.024933,83.816014],[148.411728,49.592285,89.313118],[147.291306,51.801010,98.477534],[145.457260,53.714325,103.734925],[143.962021,55.032059,109.343832],[141.167221,55.243042,113.853272],[138.846115,57.673981,120.779098],[142.549057,46.392624,119.899737],[150.669174,38.857025,110.733230],[151.072556,37.060456,109.323903],[144.243027,37.059906,107.892430],[132.067490,37.809983,119.455692],[134.656845,26.971802,109.783359],[158.509567,26.450531,87.844509],[149.987900,31.436066,98.061757],[144.704819,30.993073,97.994881],[145.889877,35.409149,104.532023],[140.158249,29.080948,101.588751],[135.882004,31.713852,110.044734],[139.838547,34.625397,107.496950],[155.246323,34.116745,104.817862],[155.473801,29.824250,97.590001],[149.345444,34.956452,106.517878],[145.417282,39.120423,114.910667],[137.538010,40.104065,117.881334],[131.937241,41.865845,123.256767],[125.376083,39.873719,129.167565],[122.005722,31.428177,148.148093],[129.283432,8.982865,125.519131],[135.441391,9.576630,119.029746],[132.264816,11.272309,124.978698],[133.156906,15.155258,126.156827],[130.217209,21.655457,131.765547],[130.488937,20.626892,123.366584],[140.586350,41.739670,121.639172],[130.823898,32.753922,118.510278],[130.460983,25.050400,119.538300],[130.503769,21.319413,120.443893],[129.765976,31.461014,120.482078],[128.286057,27.105866,124.042410],[122.613327,31.318558,136.606447],[125.034836,29.516815,131.041934],[125.979721,27.350510,140.310446],[124.363937,24.586350,144.379738],[125.820541,25.869919,143.418064],[129.254746,23.156952,136.757553],[131.029709,18.610977,132.172929],[146.278549,40.865280,116.753170],[141.420090,44.798233,123.286996],[142.119187,60.542725,103.205700],[137.553574,69.711029,109.267281],[134.051499,73.522827,105.919203],[123.736679,76.984986,104.493576],[121.623093,81.277191,105.001580],[125.960312,85.613648,100.222762],[120.274033,85.663910,106.200117],[119.867539,87.138947,113.586265],[117.897019,94.375794,113.485520],[114.860947,105.473114,116.859747],[116.569321,97.206482,120.209484],[111.962509,116.017121,120.891019],[111.107468,131.387818,117.357214],[114.489182,122.941284,113.716279],[117.887131,113.539185,110.222916],[109.738754,122.199829,118.631104],[113.136215,112.600800,114.670802],[115.730820,105.904999,111.624872],[116.966416,100.588166,110.329670],[118.629501,92.181824,107.775810],[122.291977,94.057953,104.817515],[120.355026,106.036194,107.348149],[116.082626,101.744171,112.808562],[122.452194,77.659699,111.284590],[122.510605,78.572296,117.116482],[122.738999,80.435822,121.798897],[126.459702,80.495972,128.802960],[123.658798,82.371125,134.354422],[122.526962,84.133667,133.424851],[120.088181,82.282196,123.967072],[125.618637,80.411591,123.768330],[116.324631,88.332184,133.133769],[126.380356,74.444519,131.875141],[121.137802,72.265351,141.932484],[128.456955,64.580567,134.012171],[124.902329,61.146454,138.504099],[123.750351,58.534455,137.213786],[127.281784,54.670456,137.655372],[121.753281,51.681137,142.993885],[119.662216,49.892289,142.139727],[118.438645,46.036179,141.476044],[124.350510,44.097657,132.580709],[116.772812,60.229584,145.900422],[120.347946,62.230347,143.927357],[120.137131,67.025849,144.221184],[122.327988,63.914276,141.093510],[115.579514,62.799042,149.945612],[109.098679,54.690186,155.987973],[114.052902,48.344178,148.144650],[111.048752,45.991974,153.902604],[113.462875,41.223435,152.149821],[119.801315,33.571595,150.710522],[111.486618,60.650849,153.766835],[115.588059,56.041611,151.006094],[120.151535,53.729416,146.284256],[120.970810,55.368653,145.891419],[114.862595,51.364899,147.626280],[121.102646,59.522202,140.018662],[124.865463,75.035767,109.531794],[133.638352,74.910797,111.288691],[131.894028,72.309479,121.761447],[130.835007,65.619080,129.514701],[129.895187,59.859284,133.350071],[128.780563,57.566346,131.185091],[132.570053,59.411759,129.921249],[134.272629,55.836945,123.861611],[129.832810,76.947419,116.711995],[129.623764,78.000275,122.469008],[133.123093,75.088440,115.914420],[136.069321,66.996918,115.415265],[139.681198,62.451050,110.117290],[141.344711,57.032975,115.284827],[135.330856,58.773117,126.259506],[132.269455,53.074082,130.248106],[134.848557,49.535355,130.837712],[136.073227,45.540695,128.144659],[125.422897,46.856171,134.256247],[129.239853,48.843491,135.971431],[124.646347,52.656922,142.407927],[135.320175,47.529602,130.456520],[130.178208,50.697617,136.480976],[133.962692,65.344910,123.069380],[143.868698,57.892777,98.361504],[141.564438,62.501343,102.279593],[146.945969,53.627121,90.264262],[162.040512,37.725098,65.970074],[152.222397,43.379761,79.311367],[151.438217,46.949646,79.068428],[146.665817,45.424439,87.656166],[146.348312,42.860733,96.538826],[145.041428,45.056458,113.126918],[147.625290,42.570084,113.590797],[151.255478,40.568024,102.565762],[160.322312,32.496979,93.613800],[159.285446,32.037506,97.730864],[158.709213,30.081864,96.968861],[154.943039,37.105423,104.962819],[152.244187,39.917847,105.826956],[161.411850,29.220932,91.232998],[161.914169,26.803650,86.019234],[155.217880,37.282257,91.664589],[139.454025,49.752442,116.954912],[137.069809,50.848526,123.218645],[151.288071,41.158158,81.589192],[155.450302,40.940522,74.768288],[161.243576,36.562393,67.233704],[155.509018,35.398926,77.390110],[151.934982,39.126053,84.480206],[154.661789,37.708390,76.021687],[166.592697,22.267289,74.313641],[165.079514,25.363907,80.329430],[149.764816,23.810807,83.651631],[164.869309,-1.073639,35.252556],[163.407883,-5.456772,32.037285],[167.538437,-10.420379,24.464730],[163.408798,-10.595779,29.372399],[162.685227,-16.831207,30.057946],[166.660507,-18.723983,24.617096],[173.618820,-24.069275,14.562157],[171.341538,-20.660019,19.096184],[174.831223,-68.763374,-8.984521],[175.419785,-60.512985,-7.084710],[178.255783,-64.010986,-8.349739],[181.100235,-57.288269,-7.152763],[184.528183,-57.206085,-4.597198],[188.502426,-57.396240,-3.154190],[190.439011,-55.834594,-2.243309],[195.752426,-59.765518,-2.892585],[198.471726,-57.324386,-3.735115],[200.927475,-51.644058,-5.597770],[211.876907,-39.294967,-5.198532],[203.891770,-37.650985,-6.306030],[191.783493,-59.738327,-2.690406],[193.835007,-65.305252,-1.868179],[199.196030,-63.631622,-3.353126],[202.900406,-58.649643,-6.737099],[203.858414,-55.084518,-8.234764],[183.724960,-69.945953,-1.180450],[186.674820,-64.198074,-2.828758],[189.830124,-45.944717,0.891663],[205.609787,-47.884857,-9.611458],[205.132126,-41.374862,-8.043160],[201.681839,-42.702774,-6.207176],[194.376297,-47.988891,0.512436],[166.079819,-48.664184,7.389252],[162.498825,-43.871246,10.342553],[166.005295,-52.002853,4.238465],[159.591782,-63.745758,-1.074409],[154.856003,-69.390091,3.522286],[156.158432,-72.227127,-0.455322],[156.610092,-65.210830,0.903199],[166.678757,-70.119926,-4.132110],[161.431503,-50.010910,5.157242],[164.725815,-29.444671,23.671959],[167.533005,-36.186401,19.731659],[171.879807,-41.366806,17.773407],[168.986557,-47.349258,10.375702],[163.157395,-23.657791,26.614746],[155.756394,-53.017639,10.049446],[156.478989,-56.397201,12.775032],[156.788437,-52.182785,16.851365],[155.877548,-39.543914,30.510018],[154.109909,-36.067413,30.337853],[152.457382,-28.120361,32.261116],[151.829636,-22.567566,33.574067],[154.136337,-31.552841,23.543206],[153.389389,-32.942627,25.839768],[153.688828,-35.828689,25.993348],[155.428940,-43.873016,21.041726],[155.602890,-44.772506,14.332909],[155.623093,-47.614120,16.277565],[157.378403,-48.025940,9.327874],[158.894211,-43.149749,10.395363],[153.521286,-27.298462,25.939194],[153.552231,-18.175171,30.757248],[154.917648,-18.299698,28.981041],[154.290390,-9.767944,36.344559],[152.208786,-11.004089,36.089325],[150.671677,-5.744857,41.796891],[148.796738,-3.300720,52.380333],[148.963303,6.349457,55.272065],[150.028488,11.345993,61.282048],[146.695297,11.326645,68.003472],[145.173630,12.815216,74.599953],[145.247971,16.914368,76.937882],[151.234116,5.638581,52.123940],[151.805344,2.126297,47.731041],[154.693161,4.187241,50.075608],[149.702500,0.681473,47.947800],[157.488815,-12.309616,34.788826],[161.070480,-19.408523,29.456498],[155.061020,-1.716781,43.664872],[156.918625,-8.270157,38.402497],[148.295395,3.912354,54.905640],[147.686020,9.742844,62.202313],[146.466904,4.059220,66.059895],[151.720871,-16.004791,37.111443],[151.258957,-19.449646,40.122612],[150.237778,-10.556457,44.952637],[156.982956,-26.770065,44.571900],[167.478500,-27.772613,48.106354],[158.041977,-23.116516,48.808518],[153.173081,-18.073562,50.593933],[150.025803,-12.876938,49.497811],[153.534653,-26.012802,42.121071],[151.396225,-18.765777,46.672547],[152.048630,-23.749145,41.029862],[153.267136,-31.026947,35.544968],[157.037094,-35.091812,37.007714],[158.758225,-39.982345,33.111985],[158.881821,-44.958206,27.762062],[163.649460,-49.707184,27.152680],[170.309921,-58.610016,23.257531],[171.575241,-58.914200,26.792756],[169.823471,-57.385254,29.525353],[172.596237,-50.436737,33.893227],[160.567612,-38.069137,44.207482],[156.153671,-44.705505,40.623253],[159.927048,-46.454361,37.858826],[166.468491,-50.780227,37.460541],[161.818100,-52.791351,33.934967],[166.376145,-38.884353,44.206238],[167.110153,-45.720962,40.232300],[171.379257,-41.777420,42.214341],[175.289291,-40.096161,43.031174],[176.172592,-36.033615,46.715653],[176.130539,-32.832794,51.679665],[173.884201,-31.586349,56.506043],[169.151474,-32.930252,60.302349],[166.871018,-32.810028,67.569977],[163.274887,-33.989776,72.903374],[152.834885,-32.287430,84.263054],[145.812729,-30.942474,83.275326],[136.022019,-29.847305,78.989659],[132.861801,-30.636047,78.500622],[131.604111,-48.378830,76.382119],[131.532150,-51.202041,74.354794],[131.587021,-62.986969,75.065548],[131.427048,-55.994796,80.328274],[129.434616,-53.478683,83.703789],[128.487167,-61.831970,80.135563],[148.015183,-30.467071,87.844918],[152.609055,-30.390045,85.712117],[151.126572,-26.418731,86.212109],[164.520920,-27.308883,66.399857],[159.421616,-21.449676,66.449459],[164.579331,-21.707611,60.720471],[168.284042,-25.219467,60.194130],[169.000168,-31.880630,63.650708],[155.511826,-22.831054,75.180210],[151.379074,-17.300293,74.159157],[161.100083,-16.818451,63.236351],[151.691696,-33.988052,77.466057],[145.827927,-32.753311,77.526745],[137.693649,-31.986496,70.991021],[133.876877,-32.006942,70.701363],[132.214157,-33.380691,71.685608],[131.607895,-34.375015,75.036869],[131.345627,-39.814377,76.066979],[130.097275,-43.350692,66.261963],[129.649704,-56.807739,61.368847],[131.833054,-39.562698,59.072029],[127.010056,-52.241058,46.829316],[124.300339,-52.946670,42.293572],[125.979965,-59.676696,42.635155],[128.320419,-64.531189,44.227723],[126.981186,-75.143120,39.533486],[133.797470,-34.282699,64.966504],[132.620224,-37.651809,60.938080],[134.795395,-37.429153,55.233292],[165.725937,-34.036697,66.573960],[161.541062,-29.299331,73.443173],[159.672409,-32.428161,77.980500],[155.701401,-26.331344,79.244858],[158.617050,-24.105667,70.931057],[173.170090,-28.542450,50.138695],[172.250412,-36.739090,46.967499],[165.011032,-35.157547,51.511330],[156.949143,-37.846817,50.415459],[152.340561,-43.224670,50.586090],[153.007553,-49.176681,44.196160],[152.276840,-45.811615,50.702797],[153.402573,-49.396042,51.338372],[157.104599,-61.324554,44.553048],[153.567612,-53.510147,44.633141],[156.758225,-52.362930,36.271408],[155.024094,-54.673370,40.214295],[155.264816,-57.512603,42.767006],[159.413498,-62.246978,48.134301],[175.732834,-36.102737,48.247315],[174.065354,-32.984619,54.517594],[173.663010,-45.925018,38.469674],[173.963364,-44.989410,37.352738],[169.700180,-47.839645,31.587021],[174.312790,-39.399307,40.611061],[166.757675,-38.964523,37.139847],[164.669052,-60.229171,17.658043],[155.704819,-61.039459,7.734513],[163.701950,-56.876434,19.696968],[162.470261,-52.017029,24.400208],[158.354416,-49.417511,21.948174],[156.759567,-80.599159,9.528588],[161.689133,-79.351120,14.325882],[169.767624,-74.104522,19.784737],[157.088852,-68.879509,8.910859],[156.871079,-61.472580,10.151314],[165.972702,-67.386291,15.647347],[157.766220,-77.822906,10.722039],[166.250412,-71.249344,15.861695],[159.023972,-84.809471,13.230584],[159.955917,-95.658371,21.922417],[164.634140,-82.377876,34.025399],[165.248947,-72.522606,40.954949],[167.786362,-77.717857,33.977738],[161.910690,-71.244339,32.333519],[158.805710,-57.308716,32.791420],[161.860031,-69.471718,30.346184],[165.468979,-75.946388,38.697503],[168.675461,-80.809913,28.449074],[165.864060,-73.694862,25.066948],[165.379562,-75.136543,28.084481],[170.227219,-85.152298,27.392975],[166.896225,-65.919677,23.149414],[165.485825,-58.194503,29.590699],[149.617172,-105.477211,25.424286],[145.642136,-110.634971,15.774750],[138.847092,-105.610161,8.298149],[141.837387,-118.188423,3.445603],[144.176437,-114.780082,10.219345],[147.436203,-107.425758,22.072312],[147.705551,-118.334488,14.461251],[150.600815,-122.812126,15.963112],[152.130356,-120.231163,19.166947],[156.857895,-110.616043,27.580353],[153.226364,-114.778114,24.165306],[150.661667,-114.880088,21.435318],[154.480820,-118.955291,19.311562],[139.338486,-112.391464,4.179131],[150.854660,-128.946525,9.817559],[157.839707,-125.068596,1.309204],[158.616196,-140.306503,4.955330],[160.315659,-143.425762,4.952095],[156.471298,-142.475395,3.808876],[153.315598,-137.299122,3.672699],[151.600327,-133.312362,4.923630],[153.697617,-128.917335,5.133675],[155.874497,-128.650833,3.714539],[157.961899,-132.644211,3.157761],[150.780380,-135.093349,3.025467],[149.184311,-128.424484,9.451783],[167.610886,-143.881687,-11.098625],[169.272019,-149.576469,-17.953530],[176.755966,-152.246074,-20.969078],[174.474594,-153.980938,-20.310295],[176.272690,-146.684086,-36.951225],[193.191391,-143.937778,-46.119590],[195.438980,-147.837421,-46.649284],[195.134659,-154.423946,-43.475242],[187.555771,-154.583522,-44.096382],[182.664871,-146.141765,-42.492454],[180.764786,-153.314670,-44.620553],[182.002792,-164.315643,-47.855660],[179.614212,-166.720861,-48.770424],[181.036911,-174.980230,-51.429741],[182.067612,-176.883979,-52.385078],[173.059799,-177.290855,-52.470315],[176.309067,-178.087276,-55.537803],[177.277390,-175.763265,-59.853416],[183.185440,-174.983274,-61.220528],[188.408890,-173.586731,-60.135078],[195.485489,-168.700605,-56.582862],[200.121475,-165.965458,-53.617165],[199.245041,-166.265480,-46.840324],[200.587814,-159.419704,-44.797950],[202.500687,-158.924675,-47.131324],[199.789688,-148.462749,-46.691871],[186.036728,-143.529743,-42.511589],[183.454941,-138.398750,-40.223366],[198.401322,-157.201255,-43.513176],[196.847031,-161.207634,-43.494926],[190.308853,-164.786537,-46.191261],[199.701187,-163.806148,-45.043190],[196.425400,-166.499702,-45.321647],[195.522934,-172.241634,-51.192817],[190.226853,-173.748487,-49.501106],[185.020981,-176.791208,-54.100914],[194.428757,-170.599516,-47.282295],[195.161911,-171.014940,-55.049172],[205.112808,-154.086353,-54.314079],[204.293839,-147.426773,-57.554069],[198.862991,-143.595508,-59.549156],[193.331558,-153.591621,-59.285362],[184.243698,-157.942661,-60.796043],[171.063400,-148.796814,-60.325111],[166.727097,-148.862442,-58.795982],[169.014267,-154.724956,-59.014015],[162.253647,-158.438152,-52.775413],[167.725449,-163.940067,-55.698890],[165.111130,-165.660715,-52.587410],[169.303391,-171.212827,-56.271537],[177.201279,-152.481041,-60.987129],[168.784897,-139.985820,-61.794914],[200.141770,-160.046177,-55.087852],[197.971024,-155.085407,-57.481712],[186.100601,-167.782356,-61.868370],[173.866562,-164.241672,-60.529060],[169.319443,-160.276802,-58.049827],[175.069931,-159.368114,-60.919488],[180.316330,-164.249160,-62.208870],[177.113632,-166.209398,-48.049247],[172.457382,-170.398941,-47.080436],[175.983750,-164.864748,-46.243644],[172.524155,-166.147669,-41.101326],[173.268662,-164.777471,-33.301384],[163.693527,-167.805408,-34.068489],[162.794479,-168.982904,-37.306205],[163.048447,-168.953296,-47.465156],[157.193955,-140.049331,-55.926400],[148.987656,-145.465568,-51.664467],[144.329147,-142.986511,-49.321495],[142.459519,-144.182056,-49.654869],[143.059494,-151.986576,-52.340385],[146.091110,-156.934608,-50.713432],[151.740280,-148.572159,-51.071664],[147.196579,-149.576313,-48.488273],[159.169235,-150.706886,-53.173515],[156.867294,-160.485645,-46.067466],[154.350021,-160.915580,-42.606193],[166.283981,-172.933874,-47.988045],[162.772202,-170.134969,-44.771934],[165.842026,-170.683370,-37.718910],[178.806290,-170.729896,-62.599678],[193.232254,-163.355896,-57.921135],[201.973160,-162.627659,-51.821052],[166.560715,-171.537418,-52.801536],[170.316086,-169.759466,-38.718498],[168.916977,-172.634697,-44.331215],[177.003708,-156.326675,-42.189994],[178.582932,-153.304924,-43.539070],[179.140488,-159.868843,-46.277092],[176.889755,-135.318016,-34.629081],[175.436569,-133.599907,-30.007682],[173.271164,-130.638870,-19.034019],[178.053696,-113.102142,-16.376731],[180.357559,-111.501136,-6.282852],[177.242966,-108.368652,-8.593071],[175.045273,-107.830986,-11.978508],[172.954636,-109.539291,-12.487313],[184.019699,-116.654312,-17.406105],[188.445664,-120.159935,-23.199730],[188.512619,-123.735367,-28.404518],[176.902207,-129.467079,-30.255134],[186.480118,-129.482521,-35.430275],[182.267105,-118.372398,-22.079644],[179.289169,-118.762497,-21.873024],[183.068344,-125.111206,-29.821464],[176.618454,-122.068870,-21.321342],[179.730759,-124.061111,-26.926612],[180.431778,-130.098190,-34.824241],[197.123032,-121.645347,-29.478187],[194.284226,-119.591812,-22.935936],[194.553177,-118.644745,-8.603416],[203.310959,-121.641655,-29.045677],[192.814377,-122.203499,-28.831916],[191.108048,-105.308212,-10.696479],[194.386276,-106.024193,-16.614784],[194.232071,-102.163734,-20.320504],[193.508408,-99.793930,-25.243066],[191.321396,-96.683899,-29.703895],[188.170517,-91.155876,-30.346763],[182.719284,-80.387237,-34.625785],[183.930222,-79.337372,-26.618522],[180.709244,-70.348991,-25.243553],[186.483811,-71.565948,-17.478386],[189.941513,-77.550369,-14.466652],[186.435745,-77.676498,-17.126899],[188.499222,-80.141716,-13.949531],[188.255325,-87.882461,-9.822212],[188.993057,-84.378769,-9.688408],[190.337845,-85.987899,-3.067863],[191.654617,-83.625541,-6.621589],[191.144272,-99.509613,-11.758018],[188.135208,-87.160377,-14.471397],[187.414353,-83.007171,-15.450477],[188.988114,-90.567955,-17.398384],[188.298996,-88.320823,-22.029869],[192.317673,-98.849807,-17.826943],[190.691574,-94.252426,-23.507133],[188.871201,-94.939224,-8.477714],[197.254105,-111.297683,-17.700859],[175.212082,-76.683021,-7.878776],[178.961350,-72.826957,-2.210823],[178.460312,-79.023239,3.070023],[177.604904,-85.127777,9.422699],[176.742783,-90.773124,12.142960],[178.812302,-94.153984,13.321030],[176.117294,-91.769447,7.615441],[176.751206,-87.649322,10.453286],[178.229782,-66.398208,-7.904809],[225.000321,-66.291351,-7.118995],[225.369705,-57.255081,-6.509895],[227.805649,-58.968246,-8.167534],[229.727738,-49.565033,-9.127357],[230.634384,-48.769760,-12.808204],[211.679306,-47.305114,-7.579490],[218.461289,-49.501877,-6.848701],[227.725968,-39.409668,-7.177375],[227.366379,-33.169662,-5.980949],[227.771713,-30.286697,-6.538200],[229.135513,-33.404571,-11.281791],[224.941422,-21.259735,-4.137718],[216.364792,-12.942199,-7.606620],[213.353317,-9.055862,-5.350998],[209.548233,-1.711654,-2.055923],[205.636765,4.386200,-1.318626],[215.127915,-3.487152,1.316819],[208.902908,6.518830,4.419197],[211.313553,-1.746429,10.596627],[215.862564,-9.184631,8.765931],[223.789688,-19.381790,-0.480545],[220.089218,-11.207458,-1.242317],[222.652725,-18.628784,-7.594917],[215.768082,-3.350891,3.034630],[210.075974,5.238541,8.389649],[218.516647,-8.442047,4.478089],[213.581650,-1.047516,8.116310],[207.437180,8.793930,7.228371],[228.911881,-40.592865,-17.172340],[217.684738,-44.249405,-6.083793],[222.755905,-46.444153,-7.030082],[215.898972,-34.408828,-3.011528],[215.635697,-22.256225,1.651665],[211.488266,-27.334915,1.160195],[210.791885,-33.054641,-1.884796],[222.438461,-36.444687,-5.455444],[224.592209,-26.343475,-2.902893],[222.034744,-20.631042,0.599457],[229.951157,-38.859588,-8.937980],[227.942032,-48.503952,-7.004631],[166.763535,-50.686645,-39.904243],[167.262314,-37.463180,-31.371986],[165.093674,-33.992553,-32.100121],[166.611313,-20.528457,-15.042335],[158.527146,-1.395187,-12.560890],[162.629257,-3.460022,-6.777276],[157.259995,5.552597,-8.642387],[171.106125,2.592011,-2.125335],[171.945236,10.989685,3.344025],[167.981918,10.661927,4.659348],[171.621079,14.756577,8.737732],[169.081589,17.091065,11.897599],[164.630661,22.589630,21.775078],[167.304489,26.005341,26.731079],[163.905319,36.681519,36.782425],[167.974045,33.671341,31.898323],[169.538193,38.383957,32.195641],[170.546860,40.313034,33.446961],[167.863388,45.997559,44.791016],[167.837937,42.993698,38.062523],[162.853317,32.682953,33.518700],[158.867172,29.314026,29.845818],[155.534897,34.983811,35.956200],[152.679611,34.680420,32.513474],[147.256577,41.113144,36.060990],[146.416916,45.081787,43.883751],[143.237290,51.694229,57.153771],[164.906906,49.425522,51.168129],[166.689926,47.505402,52.367630],[171.117600,41.905609,46.671006],[176.870102,35.792649,36.871933],[176.506882,37.020691,34.079102],[151.202377,40.922943,42.735016],[158.770737,36.520432,38.544037],[150.906662,48.609909,55.803933],[147.236374,54.429322,64.792649],[166.061936,45.807617,42.838303],[157.314560,44.941666,49.225823],[162.554306,50.097153,50.719086],[162.168930,47.387039,48.010788],[172.573166,40.779480,36.169167],[171.139938,42.775009,43.223893],[153.393173,42.754990,47.530007],[148.254868,37.769257,29.317223],[144.543625,30.721024,18.649880],[143.185104,23.479431,12.514710],[139.619431,16.452256,13.622872],[139.925217,8.417496,7.702820],[138.090439,-0.891342,4.722046],[134.149765,-5.517273,4.504006],[128.254257,-9.576065,7.784760],[125.584702,-4.164291,12.566361],[127.099594,-1.012848,14.865837],[129.381638,10.302567,22.496109],[138.514145,26.719086,26.824028],[141.347397,34.726136,30.676857],[145.351975,40.402985,34.273178],[142.211533,38.272568,33.443482],[126.422653,23.834259,33.914643],[129.259018,16.985306,28.496766],[126.337692,11.260453,24.615548],[123.765366,5.464859,19.423180],[120.494309,4.766220,16.838478],[115.422409,13.154358,14.242806],[115.214523,11.343033,9.753868],[117.569687,13.784821,2.315148],[117.877365,18.763214,4.379822],[118.038925,23.319458,4.772171],[118.299790,34.141144,11.948632],[117.696701,34.033127,14.709046],[118.040695,40.733628,17.179406],[116.934860,43.127381,21.963501],[116.786118,54.027771,29.081299],[110.851669,68.082703,28.385445],[110.577194,76.952362,34.676461],[113.795944,72.950226,32.002526],[115.529770,85.701905,42.281800],[115.933762,94.775238,50.270150],[113.678208,100.874695,53.616585],[111.382614,102.281128,53.536972],[111.297714,110.246918,58.869923],[112.268295,115.205475,63.836838],[107.403122,129.397980,71.758881],[105.778793,134.233246,74.695839],[104.884018,135.240082,73.425427],[106.645554,135.562714,72.610390],[106.447556,137.630799,77.519638],[107.389328,133.018952,75.469292],[111.083908,125.823975,85.685429],[112.485825,113.545716,76.679402],[111.960739,117.293213,75.243771],[113.200302,116.360108,70.028584],[110.142929,126.033387,72.297760],[110.037888,130.744232,85.741398],[108.128647,137.959168,84.822506],[108.755905,137.772461,94.190466],[103.641525,150.604889,109.887929],[98.563583,158.890656,117.043258],[91.363876,160.656800,132.930601],[95.285202,158.873108,137.855200],[96.638413,151.330750,135.994738],[97.290085,154.681641,138.727271],[95.634812,146.814576,147.843741],[98.747543,136.686402,150.351628],[99.090866,125.999390,151.012484],[96.997910,117.711365,151.249527],[98.636887,111.700379,153.458611],[100.578659,110.035492,149.511427],[102.552048,104.178559,148.816988],[105.073959,97.787751,146.732079],[110.672165,92.047638,154.554943],[110.827927,93.982758,152.369772],[117.581467,88.946747,142.278578],[120.660690,85.484619,138.991578],[120.297104,80.385712,140.576922],[106.176621,72.234680,162.034172],[101.363083,65.343109,167.832672],[98.160202,62.397095,168.679097],[97.567917,59.453995,169.109272],[89.532639,62.089844,175.990116],[85.926804,60.195618,178.856411],[75.840927,62.416657,186.382332],[79.990341,67.189972,186.003875],[86.594528,66.069550,180.447186],[95.685104,67.355713,173.513802],[110.961472,68.052246,156.706894],[109.144760,63.414368,158.519055],[113.894028,90.436035,138.772023],[117.962998,86.081330,133.782675],[113.329758,97.134369,134.510421],[111.042404,105.824250,135.178049],[107.423691,115.502472,141.117600],[104.965073,116.602265,145.617415],[102.002609,124.891510,148.944483],[101.124924,130.175263,148.941523],[104.964584,95.642609,150.181010],[109.798264,104.039643,139.638390],[104.380722,107.111939,146.869154],[110.677109,95.562409,141.165892],[109.423142,92.698883,145.605797],[108.106247,100.063355,143.550177],[97.473984,136.305024,152.281470],[91.429184,136.371582,153.458519],[94.960800,142.037293,152.917742],[92.455979,147.410187,153.917988],[89.592087,154.245850,156.177380],[92.008041,154.362183,153.003317],[83.304123,167.509949,156.863446],[77.049729,168.143311,167.685463],[77.099533,157.569001,170.117066],[70.972702,149.398041,173.646477],[68.647568,155.379914,175.188328],[63.636826,131.524414,186.603591],[65.126450,120.629425,187.629982],[52.890488,129.635559,195.224800],[51.173569,128.065247,199.672043],[58.653061,135.174225,189.958664],[56.330551,130.608185,192.633850],[79.061936,166.909241,160.685700],[83.742844,154.740509,156.608776],[85.690476,152.770996,155.746605],[89.284958,142.227082,154.169815],[93.035690,128.535309,152.735304],[90.184250,136.361359,155.684601],[96.198776,155.821442,141.002625],[93.081711,163.294068,138.542923],[90.390549,164.816376,135.188831],[92.451828,159.201813,134.861517],[91.244064,160.157349,143.936009],[94.340988,147.411469,151.637713],[89.464462,159.726288,154.871399],[85.994797,167.360901,154.347344],[87.627304,168.412323,149.918595],[89.356308,168.502167,144.323378],[90.738876,166.717865,138.260992],[91.938278,166.154816,133.203223],[93.154038,166.257996,124.717398],[97.143784,160.105103,123.125071],[88.969956,164.575165,142.096947],[90.507187,159.152436,148.281908],[90.009384,160.408722,152.811781],[89.535141,171.589508,141.853953],[85.489792,174.691559,150.708580],[82.850632,177.891877,156.934700],[74.429062,178.918793,170.149426],[83.745285,181.708741,152.743714],[94.098068,153.601746,144.501248],[94.745896,154.141785,130.523839],[97.629440,150.086151,132.188578],[104.535202,143.951172,125.200912],[100.707810,144.268769,127.291432],[107.216965,140.696747,120.101046],[106.597275,138.603974,123.275018],[102.795761,139.525879,126.328271],[102.129318,148.360443,126.879329],[97.835434,156.510773,129.318525],[107.132309,144.038056,111.200794],[105.667954,146.374604,115.847784],[111.413742,133.851776,110.841498],[114.856186,124.793122,110.061364],[116.619858,121.690583,104.100701],[116.021774,123.142426,100.633107],[117.180161,119.604828,96.091805],[111.025498,134.446381,100.688931],[110.258652,132.288849,91.818741],[113.033188,127.092957,94.219271],[113.931564,118.711182,86.644513],[115.735642,110.631317,82.790043],[113.720688,112.392609,80.295746],[115.740158,90.542786,64.048417],[114.983505,84.184418,55.684044],[117.197739,85.744904,45.777115],[117.310898,74.221924,40.872216],[116.019760,80.712616,56.076226],[114.443100,71.322449,47.248513],[114.033737,66.934876,43.433747],[114.072312,55.439591,37.835053],[114.330979,51.305893,33.104721],[114.135300,48.601654,34.496155],[114.446030,42.237137,30.382439],[115.560104,39.474182,30.847580],[115.134689,30.412903,24.437600],[114.911728,24.744004,20.232117],[114.578232,34.606171,24.043541],[114.377426,45.154831,29.877976],[114.376389,76.116211,48.918335],[114.781296,81.497498,50.698639],[114.731735,73.611725,45.242165],[116.312180,67.949677,38.235878],[116.558151,61.644593,33.674935],[115.937119,66.897309,29.079903],[121.596176,63.327240,54.070664],[124.998886,71.110199,64.760929],[133.654221,61.095307,64.903839],[136.419357,59.372910,69.512925],[141.586044,64.474823,82.489888],[143.418381,66.005280,85.730034],[151.122849,62.022736,75.881249],[153.932053,59.566620,73.965474],[154.792526,57.438080,64.914967],[158.717758,53.854798,57.872498],[160.232712,54.324448,60.541401],[172.280502,39.278748,46.687981],[176.244370,31.624771,42.418984],[164.000290,47.353501,60.057881],[159.772507,52.750962,66.431912],[154.357285,59.521851,69.901535],[156.729416,57.585617,67.596146],[150.764389,54.381348,63.698151],[143.090073,60.949372,75.723439],[149.359909,61.362274,73.387215],[140.655136,59.896683,73.474556],[136.437302,49.426819,55.909516],[137.760300,53.230622,61.278244],[135.178452,55.156586,61.588951],[138.104477,57.087311,67.576519],[134.655258,50.926865,56.954567],[122.229843,85.620331,71.557114],[120.340134,80.344422,64.798039],[120.328720,92.017975,74.260655],[116.225205,101.176972,75.207108],[117.835312,82.263794,61.779019],[130.083359,69.729462,67.646275],[131.032089,73.981415,72.628449],[127.450485,85.101654,76.596585],[124.953537,96.741730,83.412094],[123.889023,102.123261,92.410118],[126.126633,94.320435,89.585343],[123.268479,103.192627,99.461861],[127.396530,89.472321,83.076043],[134.817124,67.472504,84.488583],[137.461289,65.953583,84.666905],[143.617233,66.850403,92.165034],[143.827255,64.718354,94.180151],[150.437180,61.131287,81.791569],[146.538559,65.258515,85.780209],[144.435532,61.243470,94.031138],[140.458237,68.568055,93.909388],[136.997604,62.508881,76.489735],[133.322800,69.075226,82.619900],[134.420456,64.874695,74.122330],[133.249802,65.876770,68.491299],[130.303146,78.723938,77.334546],[132.533188,71.308167,77.412117],[130.394394,75.321045,92.894001],[130.229599,73.074738,97.455670],[132.408493,71.122223,97.826992],[136.293747,72.795136,109.370482],[124.104050,96.657288,101.807373],[126.569321,89.607239,96.419680],[128.999252,83.149109,89.711254],[131.465683,75.808747,86.208744],[129.034042,73.842285,102.956038],[127.373276,76.791107,99.764815],[129.689194,81.586151,84.031300],[127.576889,80.167816,72.969113],[123.375534,96.614563,80.012211],[123.845200,101.792328,87.502785],[120.691574,111.808838,97.953114],[119.915878,112.249329,105.655941],[109.067185,138.052796,116.278018],[103.082382,149.570923,122.113903],[119.264633,98.623780,77.697323],[119.241196,110.931794,87.094239],[114.376572,102.160248,71.343361],[114.005661,100.098755,65.600747],[113.065170,108.052826,69.992287],[114.090866,103.493103,64.461254],[116.104782,101.421540,58.105156],[114.898605,105.294434,58.152974],[114.314255,97.664307,61.023133],[114.570969,89.471772,56.291771],[116.817673,95.694886,54.644562],[114.850571,90.259919,60.186127],[116.650620,83.807038,48.430359],[110.602402,136.168488,105.755374],[107.073715,142.938752,99.585789],[109.991989,131.478577,78.577111],[111.849167,125.091950,74.884056],[115.022629,24.533646,16.219239],[117.407456,25.860779,10.225441],[115.840561,16.602967,9.508362],[114.627304,20.033417,16.028969],[116.482590,20.089295,20.868416],[117.801132,28.938004,27.648926],[120.108444,42.396576,38.609352],[117.445908,50.870362,40.621048],[124.864914,45.839936,46.167374],[120.875717,55.416291,47.674584],[125.601364,59.439438,56.281380],[127.854233,49.268372,51.043007],[119.397751,18.160431,24.083168],[118.632248,9.673462,18.289482],[121.575546,-2.060470,12.531189],[117.058151,-7.449402,3.389214],[118.125900,-15.724167,-0.331939],[116.830246,-16.372284,-3.867515],[116.045334,-27.434097,-13.154457],[115.710556,-38.689865,-22.716668],[116.431625,-51.442245,-22.999611],[120.453964,-11.171051,5.375039],[130.435898,23.622147,33.607201],[133.280319,21.152161,27.412720],[136.944321,35.341904,38.967781],[139.207321,22.571289,20.639893],[135.104172,14.107056,18.301384],[128.920822,4.550095,18.361176],[129.281906,0.018555,14.112999],[133.518417,4.724335,13.043457],[138.882553,-5.484832,1.189057],[142.057358,-13.976806,-9.460334],[127.736069,-16.492691,3.232872],[124.868637,-24.209671,-1.220756],[122.247971,-21.584579,-0.191459],[125.254685,-33.611877,-7.465339],[127.335739,-39.258072,-11.478614],[127.225876,-45.027450,-13.923088],[131.195908,-47.897812,-18.142051],[136.248032,-38.594574,-16.989555],[136.153000,-46.776153,-20.431602],[137.106247,-30.386642,-13.375999],[127.203049,-28.560226,-4.371269],[131.587265,-33.024521,-11.006187],[144.025009,-8.566665,-8.936927],[143.397934,10.913636,2.146042],[148.031113,33.835053,20.706925],[144.944809,36.554505,27.771355],[137.018417,-21.680938,-8.206810],[137.448532,-16.501602,-5.723381],[119.020493,-35.576049,-11.465461],[118.618698,-46.253616,-17.035377],[117.010117,-36.983520,-15.013832],[119.497727,-18.469528,-0.350959],[117.456345,-25.459228,-7.919274],[116.264328,-36.197967,-16.811027],[120.868942,-29.505615,-6.352424],[121.737045,-36.021621,-9.859733],[128.962143,-22.679458,-1.850555],[130.126450,-10.475921,5.340737],[133.730881,-15.921890,-2.922187],[164.076767,18.775452,15.765480],[159.311203,13.192627,10.276795],[149.998581,28.847473,13.939949],[146.744003,29.308426,14.127968],[159.397324,18.654831,16.785202],[154.735458,25.889344,20.038979],[152.388474,26.671082,14.695084],[150.623337,32.615830,21.459916],[154.181931,31.154633,27.529221],[157.307114,28.252518,27.416268],[156.074570,19.153199,13.877320],[157.540939,24.189133,21.672692],[160.337082,24.858048,24.567299],[164.311875,11.790207,10.240227],[162.352524,6.515045,6.003235],[162.209580,11.540009,10.436699],[166.864792,15.361985,9.645493],[154.618088,19.187455,9.942871],[154.769455,15.151474,-0.160263],[141.615708,-3.875900,-1.868545],[145.498703,2.783417,-5.620285],[146.628769,-6.435699,-11.904350],[151.001511,1.164444,-13.000648],[150.666916,-5.977874,-16.789344],[153.699753,-0.974167,-17.040474],[156.129379,-6.090042,-20.379875],[146.747116,-12.670486,-15.097725],[156.180954,-17.150467,-27.482002],[159.006516,-11.482147,-21.574958],[156.366745,-10.404388,-23.180717],[154.621994,-10.121200,-22.358925],[155.635849,0.370819,-15.360191],[155.026291,12.163315,-5.090545],[159.045761,6.262802,-3.589737],[152.222885,11.086609,-7.708610],[150.086228,8.088089,-8.474418],[160.825607,6.681748,3.540879],[166.902084,4.882584,5.078942],[168.996384,-0.446441,1.984932],[165.146286,-0.815170,2.358788],[165.228928,3.631577,5.286232],[153.024338,4.347214,-12.937141],[154.485886,6.746949,-11.144905],[150.152573,19.522873,1.284348],[162.325180,-11.325332,-15.383979],[164.754074,-23.049560,-23.753395],[164.952622,-26.573379,-26.875068],[159.708847,-22.386642,-30.432289],[157.893845,-22.231674,-31.180611],[155.265854,-35.280060,-36.099144],[157.736984,-29.260894,-34.677650],[160.802170,-32.264206,-35.960212],[168.623032,-28.011001,-17.876565],[168.373215,-3.740997,1.117653],[166.463547,-7.858276,-3.725525],[165.817795,-12.455200,-9.562538],[162.929733,-64.985428,-50.596855],[169.905197,-64.842300,-46.487266],[174.160019,-80.888504,-52.304024],[186.428909,-108.437072,-56.434532],[190.074448,-115.551704,-56.816444],[207.419174,-122.498344,-48.912881],[210.529312,-125.738159,-48.061791],[209.672043,-130.166023,-46.579811],[209.244064,-125.072372,-39.743797],[205.487900,-126.208862,-39.982841],[204.429581,-131.174202,-45.072212],[207.284989,-136.091304,-48.701164],[199.737900,-139.978256,-47.286491],[195.315323,-136.488712,-44.710183],[199.406601,-128.583099,-41.432060],[200.861923,-123.490089,-35.129936],[207.508560,-120.304786,-29.321418],[196.953079,-104.884445,-26.264579],[197.633560,-107.684250,-21.584953],[204.606003,-115.305923,-27.443473],[196.798599,-104.532112,-31.884118],[197.005112,-105.772453,-35.815376],[193.302078,-100.945190,-34.433891],[195.093918,-105.915916,-40.071571],[192.641647,-109.099769,-48.546211],[191.853073,-112.625694,-53.657722],[196.351761,-116.426567,-52.224648],[199.793411,-113.281662,-44.778679],[190.228409,-101.952766,-42.691093],[188.123337,-103.725174,-49.771537],[187.678085,-96.266487,-40.580055],[191.133316,-98.463722,-34.960777],[178.661362,-79.333343,-44.918801],[173.542954,-65.988403,-42.216881],[168.548996,-59.382599,-43.485940],[174.329575,-73.918495,-47.470390],[179.917191,-89.925392,-51.635582],[183.999008,-100.426544,-53.741752],[167.620651,-64.775924,-50.240837],[181.618271,-75.565483,-29.437751],[177.897629,-65.315490,-31.307212],[173.492966,-52.945541,-26.416465],[175.380783,-53.763717,-23.204109],[188.383408,-54.164871,-24.659402],[194.053269,-53.993103,-28.512107],[200.148972,-54.017944,-28.995308],[213.040726,-50.725219,-24.632484],[218.922135,-37.927719,-22.358818],[200.667771,-44.504913,-26.625435],[189.122391,-42.035080,-27.608284],[186.761154,-42.955856,-26.357216],[211.568527,-45.922241,-23.942390],[202.679733,-51.340835,-28.561700],[195.230728,-51.214096,-28.964348],[217.297135,-42.670211,-23.195488],[215.450668,-55.467315,-23.854087],[204.391831,-57.725189,-27.767190],[208.949722,-61.236389,-24.830040],[216.113052,-63.115921,-20.468666],[224.795670,-57.099884,-19.576011],[228.813706,-49.031280,-18.292289],[224.832443,-40.151535,-20.885200],[225.084152,-47.371887,-21.937935],[219.611160,-49.780639,-23.165260],[178.488388,-63.061523,-25.384758],[180.897904,-62.476486,-21.008384],[179.223953,-53.514511,-19.379387],[184.460312,-90.139541,-42.663276],[181.899490,-83.755615,-42.377861],[185.933701,-98.354103,-47.957573],[181.902481,-88.904945,-48.104316],[206.597122,-117.988258,-42.513084],[204.359024,-113.812004,-35.233955],[208.111221,-120.600288,-44.920021],[210.883530,-128.614166,-47.739846],[208.388352,-122.385635,-33.548088],[209.446793,-120.952514,-37.631736],[172.187668,-90.378082,-56.531303],[176.821396,-92.059044,-55.712196],[175.483139,-93.981567,-56.929649],[181.566849,-102.831543,-57.264076],[177.437912,-102.843231,-58.155861],[185.222458,-110.895515,-57.830726],[191.885483,-123.397873,-57.546791],[185.386185,-119.107162,-58.953621],[190.056412,-136.429710,-60.506385],[182.962753,-140.028827,-61.824410],[164.583176,-136.875457,-60.453193],[156.079941,-133.378120,-55.288017],[151.509079,-126.566871,-52.452766],[192.256821,-129.480163,-58.771492],[199.592636,-133.054062,-58.480339],[188.607742,-141.392257,-60.972358],[208.162796,-134.089756,-56.364205],[209.580002,-137.001671,-53.385643],[209.388718,-129.575157,-53.709205],[202.341599,-121.215995,-51.703865],[196.518936,-120.735115,-54.439445],[205.917771,-149.521812,-50.290123],[205.106644,-143.050979,-49.750312],[207.899429,-140.799064,-51.146293],[205.913071,-149.314953,-56.091697],[207.616409,-145.477703,-52.451545],[206.120560,-140.641399,-57.604835],[208.357651,-141.402084,-55.955040],[206.805496,-149.518223,-53.161842],[203.669388,-158.577041,-50.240273],[201.224960,-138.078769,-58.935768],[205.085281,-128.089363,-54.866661],[197.796707,-128.211532,-56.865746],[184.427933,-150.346306,-61.297967],[153.704453,-21.034805,-27.532692],[145.725327,-20.474350,-18.307502],[154.706894,-26.548935,-31.303871],[149.588974,-20.999405,-22.708366],[151.692734,-30.288482,-28.888238],[158.479843,-16.437118,-26.982521],[145.100754,-48.394912,-26.851127],[147.852463,-57.437927,-31.153999],[150.142136,-66.589416,-33.294166],[153.738388,-70.346466,-37.367118],[157.665329,-79.889190,-42.527229],[152.132187,-75.476593,-35.754112],[128.653366,-71.205223,-23.781623],[130.573105,-75.059128,-26.364540],[129.282761,-61.149002,-20.459739],[132.543625,-65.474212,-25.262291],[120.988327,-73.309936,-26.648292],[122.139511,-65.163894,-22.548653],[119.416367,-57.109893,-20.837349],[115.113205,-72.649017,-33.873588],[115.888718,-61.266617,-27.015785],[115.447556,-49.199630,-25.982658],[115.049423,-50.052505,-30.435127],[114.654526,-64.296508,-34.714378],[115.043442,-53.589203,-38.729362],[115.073288,-59.701400,-40.705223],[114.289353,-71.705131,-41.931892],[134.983139,-90.425293,-33.218315],[134.122604,-84.139091,-31.445518],[133.341843,-76.189964,-28.773124],[140.124252,-80.882789,-30.579506],[168.722946,-109.973144,-54.414467],[170.612778,-103.007766,-55.032783],[172.347580,-125.766128,-60.002967],[177.823959,-123.419731,-60.444236],[168.442673,-133.079433,-61.039268],[172.234604,-111.259765,-56.796196],[177.683579,-112.095352,-58.784050],[139.618454,-107.446350,-41.341408],[124.699265,-92.533264,-33.719337],[128.645371,-92.727180,-32.507270],[120.199997,-112.592148,-45.305427],[118.355637,-118.986107,-49.886894],[122.528793,-124.576950,-49.191352],[129.764572,-123.168960,-45.168098],[125.057297,-117.541748,-44.502189],[119.491196,-223.697775,-88.206750],[116.535019,-239.211414,-97.024665],[113.987656,-238.338054,-101.103173],[110.493576,-228.016304,-105.523368],[105.557846,-231.801937,-111.928306],[104.574265,-216.405473,-109.790214],[108.974045,-215.999345,-105.974572],[109.787644,-216.210302,-103.767082],[109.818588,-199.314793,-101.048836],[109.647812,-190.867807,-101.299888],[87.786667,-184.412236,-90.001426],[88.486923,-195.699477,-94.630119],[81.215073,-201.398477,-90.128059],[74.327438,-219.474546,-93.375892],[72.747849,-208.831441,-88.744407],[70.450546,-219.681787,-91.962318],[90.941879,-193.709417,-97.193214],[82.179978,-209.125768,-94.346474],[80.261093,-218.262726,-96.399056],[79.064926,-211.981718,-93.192375],[87.091599,-215.750768,-102.249412],[108.663498,-206.352862,-104.697288],[105.429001,-201.025725,-106.157539],[107.187241,-216.309332,-108.098350],[109.591049,-205.248030,-101.774772],[110.020981,-191.389836,-98.349800],[109.016220,-186.210288,-100.844017],[110.463364,-177.720289,-96.732720],[111.085678,-170.101703,-94.467476],[107.428391,-170.454609,-86.648307],[106.927353,-178.934206,-87.847175],[110.382126,-177.635767,-94.572242],[110.355759,-184.982920,-97.528923],[108.769638,-178.539772,-98.287010],[111.576157,-223.829031,-98.683036],[113.632858,-226.266798,-95.499046],[112.638901,-239.378841,-105.569938],[108.691147,-231.821628,-109.493003],[113.139511,-247.613861,-108.157342],[115.364548,-253.123817,-106.549369],[114.426682,-258.017872,-109.100045],[108.400803,-253.017006,-112.973442],[108.794785,-242.955284,-111.110588],[124.990585,-188.920493,-72.630241],[119.874130,-178.816566,-71.510002],[115.624252,-178.576902,-74.698296],[111.736191,-164.556183,-73.767922],[109.832871,-156.905151,-74.256355],[109.050827,-150.454548,-77.282203],[122.582260,-163.413715,-32.994621],[119.781540,-153.841247,-28.395927],[113.569565,-144.818309,-24.435936],[136.589401,-134.014511,-13.871681],[133.799118,-125.202560,-9.274986],[129.588791,-123.866073,-9.851860],[129.111313,-117.141876,-6.013321],[122.743210,-117.158348,-8.178246],[118.464707,-118.133438,-9.228035],[125.884934,-126.812851,-13.228553],[121.662521,-131.666244,-17.477882],[122.019150,-135.844696,-19.450570],[111.437119,-126.039177,-13.004249],[116.241684,-126.577789,-13.793464],[114.902023,-133.968948,-17.714805],[121.811569,-125.813842,-13.935951],[110.386337,-139.896778,-20.639412],[107.585495,-135.054683,-16.410835],[106.861557,-144.336361,-21.081352],[109.414658,-148.773163,-25.352028],[102.218674,-157.097011,-27.126457],[103.181381,-145.570385,-21.508736],[101.020432,-150.618103,-23.425286],[111.841965,-151.835918,-27.850547],[105.419052,-131.060859,-14.661049],[102.294968,-134.246414,-15.693962],[129.278549,-141.236988,-20.020378],[132.267685,-156.052795,-27.241813],[132.878647,-167.811363,-33.213662],[136.077805,-157.570526,-27.636894],[144.746018,-161.853470,-29.927987],[148.576584,-162.199352,-31.475151],[135.082993,-146.465557,-21.781837],[130.342148,-133.795444,-15.125816],[111.332077,-221.720104,-55.202781],[122.571030,-214.610128,-55.102058],[114.521347,-211.938652,-52.244225],[120.292526,-205.238784,-51.236153],[105.601059,-196.226931,-44.480980],[107.054672,-188.861553,-41.577889],[99.209030,-174.174396,-34.766227],[93.275009,-185.559089,-37.610940],[93.482651,-176.352413,-31.010521],[95.232407,-176.382379,-33.444023],[111.671738,-184.434482,-40.308448],[111.394394,-193.967788,-44.627403],[117.103378,-183.778670,-41.168953],[97.120834,-176.528833,-35.189079],[97.201645,-183.786954,-39.195198],[99.860031,-194.126371,-43.447777],[112.475571,-205.416860,-49.137504],[101.082443,-220.911152,-52.587547],[97.771286,-214.778188,-50.479027],[93.951157,-206.883110,-48.822609],[91.049057,-192.363396,-38.347329],[89.264328,-199.705492,-39.105522],[89.925583,-201.050549,-43.534675],[88.369614,-205.709716,-38.673500],[91.432419,-206.425049,-48.189583],[105.344040,-220.358953,-53.015205],[103.967697,-207.069698,-48.020744],[100.690598,-210.865626,-48.962562],[88.882553,-217.902641,-50.860588],[87.087753,-226.919775,-52.397163],[86.587204,-221.168054,-48.420463],[85.944687,-223.998607,-46.498512],[87.439255,-210.324848,-43.472496],[92.361496,-225.503057,-54.892341],[91.619309,-233.690250,-57.752418],[90.176315,-252.374336,-63.917671],[92.620407,-264.595764,-66.856788],[97.312241,-265.656227,-66.186959],[131.407028,-133.286705,36.000100],[129.923508,-134.394710,25.323380],[130.955368,-111.907859,33.170594],[129.594956,-109.469848,30.832230],[129.211533,-127.796516,25.292756],[132.977097,-123.288002,50.823441],[131.322312,-129.428192,51.733971],[129.429428,-139.303234,48.536782],[130.791550,-145.631550,44.950531],[125.932053,-131.724319,52.545189],[132.561875,-112.980835,56.397133],[129.127731,-129.183952,52.974541],[132.310593,-124.210396,53.306488],[131.923813,-52.621521,55.039597],[131.882736,-55.875183,55.810028],[131.454086,-40.890823,62.510861],[130.671799,-44.662582,54.236481],[131.117050,-50.909012,52.671364],[132.139572,-69.829628,50.988907],[130.085739,-74.169983,52.876313],[130.275131,-94.072265,48.051796],[130.520981,-98.370979,49.971352],[131.425888,-100.536018,54.364029],[131.724228,-95.845649,59.152161],[132.107956,-99.126259,60.532662],[131.658127,-82.870331,68.311169],[131.606064,-83.269935,65.460347],[132.184677,-78.133239,46.720345],[131.938889,-83.853035,44.105599],[130.820358,-89.459663,45.907242],[130.163864,-64.057495,57.293290],[130.137619,-70.248336,62.544777],[130.886521,-81.177841,62.098004],[129.678269,-67.430008,58.484421],[128.856857,-69.855484,76.769284],[120.247177,-68.871895,76.085240],[115.146713,-66.880478,79.770768],[126.731186,-97.348739,66.102936],[125.054672,-91.195213,68.376866],[115.346054,-104.375633,59.877812],[111.488388,-102.539070,60.317685],[111.378098,-107.133178,57.739758],[122.667709,-102.159248,63.720013],[128.386704,-105.300956,62.888070],[119.890732,-109.003982,59.766701],[122.545151,-128.401680,53.496369],[117.502976,-136.578895,48.400681],[110.056870,-147.314457,39.702408],[100.452255,-150.372265,37.751793],[98.121384,-156.071235,36.295006],[95.692978,-164.493532,34.178475],[93.765732,-167.823526,36.287156],[103.298081,-114.384948,63.559830],[100.475876,-131.085907,50.364220],[99.921005,-130.760788,54.045533],[97.776962,-141.296371,49.719590],[101.320480,-131.657013,60.832569],[100.089096,-131.606903,57.224938],[102.362778,-121.494507,62.963944],[105.768906,-126.970848,47.377373],[105.749191,-116.825386,53.664002],[105.290634,-111.786361,58.328118],[102.614121,-121.827415,54.009087],[95.034165,-157.882644,43.573731],[97.626755,-145.146030,44.689103],[107.554978,-115.509590,73.993321],[116.820358,-122.838333,85.270203],[112.343125,-119.651146,90.289427],[106.968796,-130.056747,96.976899],[107.327805,-127.471344,101.433070],[107.412460,-133.857868,102.396635],[110.092514,-139.420887,108.566478],[106.457932,-145.354080,90.648825],[106.954636,-152.082153,84.141289],[108.624130,-156.785782,78.377098],[113.438583,-152.123287,75.914959],[111.009445,-147.688625,79.979866],[115.996750,-134.962593,80.552445],[115.153000,-126.821968,84.787835],[116.561508,-122.085098,81.848145],[110.458542,-131.546165,72.792622],[116.880417,-126.605316,82.373120],[116.005600,-134.366840,77.593033],[115.331589,-128.106094,78.606034],[113.753891,-148.995189,70.951695],[113.796616,-139.907287,73.315499],[114.694077,-151.657085,72.061726],[116.142136,-139.950405,77.629670],[115.207016,-140.752304,79.255730],[115.385666,-143.874550,74.432438],[108.003708,-145.710964,85.117367],[108.149826,-122.230636,96.967350],[109.765732,-119.633316,93.966545],[117.736862,-117.319534,84.907879],[112.400803,-133.075405,84.152596],[109.543686,-144.976829,82.962738],[107.494980,-130.431457,93.078890],[108.520798,-129.160499,91.101151],[109.741806,-116.614731,76.703743],[112.231369,-117.864853,79.096089],[108.664108,-92.976486,72.094536],[108.509018,-93.550842,74.070626],[111.117905,-102.906334,81.594521],[116.731735,-86.288055,93.204022],[118.915451,-78.279876,105.518753],[118.628159,-90.953972,99.926024],[119.368698,-94.591484,96.931044],[120.343918,-76.984276,101.117495],[119.095993,-63.101196,112.193572],[118.133347,-52.609497,116.897390],[120.626083,-65.705490,105.487053],[121.100510,-66.740753,107.393504],[117.292832,-68.703102,98.329733],[113.309982,-76.439499,89.196350],[115.091904,-64.028656,94.058014],[120.450424,-77.186012,103.941491],[114.336166,-104.200027,85.550816],[116.081711,-95.808960,90.100558],[120.110031,-85.000457,101.028647],[110.348068,-87.958038,72.057789],[112.832810,-83.618850,70.918126],[111.437729,-80.810882,77.844315],[107.607834,-98.987747,67.236653],[102.635056,-117.987137,58.813973],[124.498886,-28.310424,95.432301],[128.332993,-30.452148,93.553692],[122.262680,-37.273712,91.024084],[120.410080,-35.202942,94.729447],[130.620407,-37.441574,88.098820],[129.699021,-43.402939,87.042126],[128.319016,-47.867737,85.861946],[130.636887,-50.545273,83.759735],[131.220139,-44.003692,84.107518],[129.142014,-35.363815,90.733496],[122.977219,-41.868774,88.540608],[117.549240,-48.878647,89.220086],[120.606796,-51.247909,84.648556],[120.573349,-42.454986,89.483338],[121.305710,-13.824585,117.651826],[118.989304,-31.254028,105.361414],[119.061997,-31.961273,108.157093],[120.747971,-30.352844,117.782662],[120.640427,-45.147064,111.859724],[120.614243,-56.167968,113.177395],[121.217758,-53.056320,111.566802],[118.636948,-55.622757,104.074078],[117.592087,-43.555801,101.673352],[117.888046,-39.236847,101.086081],[116.484055,-48.229049,93.098830],[115.406967,-53.821762,93.106575],[118.172165,-49.030624,103.744873],[121.025192,-57.668869,109.027046],[116.341782,-54.664535,97.901270],[119.054550,-39.632995,107.621812],[120.436386,-23.203949,107.957219],[137.088730,-7.565643,107.200281],[137.245163,-2.110641,108.797536],[141.869248,-10.974258,99.580414],[140.293503,-8.213867,102.898524],[134.029831,-14.317459,105.309025],[133.829208,-12.923416,108.296208],[135.427841,-6.140960,111.082769],[133.772080,-8.582504,116.761868],[130.903671,-5.800827,124.431063],[127.682358,-4.963195,128.539069],[133.018723,-11.752945,115.027214],[126.842697,-6.382644,121.002647],[123.610581,-8.631073,115.141735],[92.122910,-54.340591,165.166481],[76.797104,-83.965576,151.236403],[83.951218,-79.181564,149.440867],[74.243027,-68.078071,158.136277],[92.041367,-88.381752,151.770310],[94.383408,-90.078727,152.530217],[96.389084,-84.365349,153.885960],[96.169968,-100.527710,148.744900],[98.568833,-178.595621,116.923068],[61.282883,-212.246488,113.991981],[56.027512,-216.474596,116.850306],[45.685471,-223.921713,123.398141],[49.415207,-197.368553,127.617324],[55.754990,-182.285236,128.608992],[62.447495,-172.543991,127.644887],[67.955063,-175.245418,121.795119],[77.411179,-153.025272,121.277915],[82.499985,-155.314171,115.728783],[84.088669,-158.409027,114.109241],[88.911850,-161.494598,116.222390],[88.104050,-154.916797,117.970489],[56.774399,-164.437610,134.300038],[52.962387,-177.329845,132.151766],[48.777329,-183.484552,133.055492],[51.213425,-167.232353,136.529155],[61.749497,-167.533859,130.225988],[58.395554,-151.062042,137.763768],[62.844711,-159.275425,132.203300],[66.730820,-141.977523,135.617708],[73.555283,-137.475559,131.759362],[89.157211,-142.334385,124.144715],[91.271042,-136.962803,128.217650],[86.594223,-130.497726,127.851653],[84.049729,-128.097671,128.779898],[80.714218,-132.211845,128.513848],[77.114182,-123.436676,134.960068],[78.044968,-134.526336,129.324826],[70.583969,-122.297905,140.078722],[63.455307,-139.320339,138.509098],[61.723801,-126.458282,143.652272],[47.360336,-127.957611,150.258221],[50.130112,-125.492180,149.348496],[45.530625,-113.001564,154.388157],[44.869309,-126.829338,152.301806],[43.679062,-128.524475,153.325446],[42.658493,-113.587425,157.667992],[39.317612,-120.535232,166.838623],[37.903732,-130.630607,169.826191],[37.047592,-123.880027,172.551605],[36.016525,-130.704635,171.731358],[62.020737,-118.787948,145.931832],[56.706040,-125.788971,146.355591],[56.709824,-118.097938,148.489815],[70.832871,-103.903915,146.840186],[77.126572,-100.321945,144.852744],[71.636704,-113.779754,142.702256],[77.082260,-112.790107,139.574200],[87.191269,-117.233802,133.944131],[84.313950,-119.790344,132.578857],[55.957443,-107.900757,151.497366],[62.308090,-107.068527,149.402819],[2.231125,-99.221847,150.377200],[30.604843,-91.756988,178.986943],[31.770126,-96.883636,178.627373],[30.628830,-103.129402,176.341393],[31.114304,-115.981254,173.807118],[34.656967,-121.826263,173.613831],[39.734543,-108.694641,168.146096],[40.982407,-96.176902,164.570134],[43.082993,-102.838340,158.787270],[44.825302,-107.308860,156.034264],[49.803452,-112.721649,152.443528],[58.319199,-100.796852,152.685875],[68.675095,-97.746734,149.865057],[71.138046,-84.362777,153.628405],[62.500534,-89.805267,154.837334],[56.619370,-88.610748,156.595260],[51.575363,-77.855941,160.583550],[48.734543,-83.618904,159.789994],[43.936203,-75.873176,163.288105],[40.116196,-80.160606,171.811314],[38.455185,-85.799637,177.849774],[38.037521,-99.810653,176.716828],[33.890610,-104.591995,177.379257],[35.587998,-94.066536,179.151169],[32.752976,-89.001487,180.155663],[30.851791,-78.190391,181.050099],[34.929733,-68.042968,183.806336],[38.353378,-57.266876,182.885655],[39.807846,-56.217712,176.628235],[41.780991,-63.190368,167.619866],[43.152084,-68.030121,165.321643],[39.715317,-68.982078,176.070141],[39.030075,-66.964477,179.468556],[37.805771,-66.681381,182.702767],[33.374924,-74.544433,182.777942],[37.416062,-75.203552,181.576134],[37.684677,-85.433197,179.395012],[35.280197,-83.009971,181.053486],[38.452316,-79.807502,179.284710],[41.082932,-74.564430,166.719925],[47.346481,-71.188179,162.995781],[43.892258,-60.857483,166.190754],[41.571579,-49.710098,170.676587],[42.142075,-39.287216,172.001538],[41.115463,-44.447647,172.212239],[38.721848,-34.042450,186.148682],[37.265549,-34.504898,188.377587],[37.082993,-24.385711,190.409821],[33.843796,-24.692184,191.176407],[31.511276,-10.905151,192.947457],[28.821091,-7.037536,191.963120],[29.168869,0.076935,193.344330],[30.694016,4.990998,195.078591],[33.078964,9.074936,195.924073],[36.284897,6.936325,194.728783],[39.047226,-2.296600,190.934861],[41.841477,9.030457,179.754979],[51.350266,12.105851,177.344502],[56.394089,26.223069,179.480248],[64.200485,39.441773,181.593026],[53.695908,37.241425,181.288769],[52.770310,47.012665,183.621727],[47.738022,65.468384,189.695549],[42.125595,62.054535,190.054466],[39.554367,36.241577,187.570809],[37.411728,46.054215,196.434204],[34.677292,48.018997,199.628579],[29.432846,39.464127,197.643898],[32.637741,34.654496,198.159737],[35.690537,37.830460,197.522614],[32.036850,44.151444,198.941750],[63.800461,-1.382873,175.943047],[63.556870,-7.941879,174.917508],[58.831040,10.700135,177.401001],[65.664902,15.363068,178.418365],[37.265854,-9.375091,192.413529],[40.250351,-26.094543,178.066825],[40.881027,-28.438690,175.691700],[43.053940,-30.294723,173.114212],[43.962143,-36.276733,171.601197],[43.719467,-45.424743,169.640357],[38.907822,-26.859436,187.738587],[34.001938,-15.405792,192.640938],[39.597702,-1.307754,184.991513],[39.467331,11.387436,184.169040],[40.514389,9.961151,181.465008],[36.901840,-2.058227,193.769204],[32.944443,-2.372970,194.644532],[40.429367,-4.383484,181.300393],[42.308884,-2.665680,178.541573],[40.287338,-40.262085,175.396683],[40.545456,-51.216781,172.983780],[39.151413,-41.841644,181.816208],[35.789902,-58.549575,185.187264],[31.350815,-49.671158,186.981934],[32.790817,-32.633606,190.121247],[32.251633,-60.623260,185.260235],[29.795334,-58.013290,183.903542],[30.587265,-68.604698,182.907085],[27.390061,-82.276054,176.620678],[29.611984,-88.958976,178.659974],[27.876816,-93.989433,175.535710],[21.716843,-91.452354,164.708187],[15.244919,-84.430969,156.365292],[16.198105,-72.214218,159.676289],[13.270493,-69.551719,158.290055],[12.775864,-60.540954,160.578877],[4.815720,-65.613800,161.263920],[-1.024979,-65.505813,162.855923],[9.369736,-79.198288,154.225506],[7.188645,-88.666656,151.430670],[12.334885,-85.082298,153.761814],[15.154465,-96.014381,153.470927],[9.464890,-91.874092,150.733628],[0.288864,-97.125877,155.705208],[43.529831,-53.997757,167.884858],[50.758896,-68.773597,162.794369],[56.555100,-67.452133,162.457652],[65.786240,-55.792724,164.168564],[66.190903,-38.007843,168.776379],[77.459213,-37.537140,166.503704],[59.733688,-56.251739,165.237420],[67.285446,-79.068786,156.929558],[65.807968,-69.449775,160.555890],[63.091782,-77.786094,158.589096],[59.808334,-73.879669,160.357434],[50.454514,-55.514755,165.878392],[46.857773,-55.028778,166.573944],[40.739609,-62.727371,169.819493],[39.082749,-101.003883,171.740696],[40.006882,-97.381370,169.037331],[40.875900,-76.612610,167.245587],[43.952255,-93.677444,159.905545],[44.815109,-83.487610,161.399231],[42.556015,-84.121330,162.983647],[41.743881,-87.810043,163.637131],[52.104294,-92.471779,156.554047],[51.747055,-104.647026,153.618685],[37.538071,-115.268585,174.190270],[38.406601,-116.908355,172.323780],[35.715317,-111.387802,175.908635],[38.175217,-105.989128,175.475602],[-18.236709,-35.663238,179.576191],[-10.513077,-48.948120,174.375374],[-22.739395,-35.837768,174.030156],[-20.149002,-28.038299,179.874484],[-18.865799,-16.730484,181.955445],[-18.493362,-9.395782,182.526242],[-18.969131,-6.408233,176.364121],[-18.165237,8.526429,177.306569],[-20.007461,0.250534,172.961285],[-20.328812,-13.817779,170.418728],[-21.248672,-24.324722,172.341027],[-20.947281,-24.811493,176.628231],[-30.540420,12.747589,176.488709],[-34.127457,7.714508,175.216252],[-44.802750,25.951447,176.173794],[-49.937149,34.768814,175.363293],[-51.310562,43.618668,175.792298],[-30.784256,1.272080,173.632363],[-17.125748,9.420105,180.329094],[-15.658646,22.536225,182.417122],[-22.827652,30.475312,183.584999],[-17.728897,32.658463,182.501758],[-25.256729,32.352417,183.825642],[-25.719314,24.584839,181.544979],[-33.632339,20.729889,177.398491],[-33.123855,34.600357,179.245091],[-38.661331,24.058396,177.011711],[-41.811111,35.196488,177.590233],[-33.745315,71.754639,185.589512],[-34.803055,100.206269,193.478539],[-33.945755,110.300995,194.023316],[-32.217300,118.010498,194.353928],[-29.240738,129.739289,197.648163],[-29.589310,127.518921,195.639313],[-35.910721,131.804474,191.637841],[-36.575882,122.479676,191.948487],[-37.864395,123.752228,189.282158],[-32.556839,63.864044,184.556950],[-30.344009,64.904389,187.896462],[-28.639664,40.691391,181.775284],[-33.005081,46.223023,180.836949],[-31.354996,58.799332,184.081704],[-41.184952,45.690644,179.091385],[-28.887039,17.987625,178.297535],[-23.173172,22.686585,180.966805],[-28.668289,29.483719,180.564015],[-24.157120,43.682343,186.938729],[-22.466080,53.811570,190.496216],[-21.489395,75.030335,194.999709],[-18.976272,80.258301,196.269027],[-10.750870,80.151215,194.502633],[-1.240311,83.884949,203.748185],[0.509567,81.307373,203.776177],[8.483017,98.060028,205.210389],[16.175766,94.349701,208.371712],[22.462143,90.412842,206.001778],[24.322556,91.396637,207.673203],[29.168381,86.859467,205.296227],[30.067856,88.028900,206.190934],[26.250839,85.416779,201.536866],[18.662460,88.892182,199.899079],[16.478195,91.554474,200.608055],[14.171311,95.998047,203.771172],[12.507980,94.295990,203.718009],[4.968002,84.959503,203.570130],[10.726059,82.310211,202.862420],[7.257248,74.467377,201.359009],[15.063645,66.991791,194.616555],[18.096115,76.431580,196.857956],[21.568649,72.809143,197.133927],[21.285324,80.650086,198.588517],[11.205246,78.290741,201.598740],[7.766892,64.496277,199.520478],[8.805100,62.971222,198.573769],[11.778305,53.040222,192.584251],[12.246201,63.257874,195.387955],[19.002426,58.199143,193.251801],[17.157944,46.685349,189.570618],[14.105759,31.462113,184.571789],[12.757736,22.309464,182.078419],[11.279953,14.801194,180.396263],[11.661972,7.006821,177.856804],[9.948044,-14.473282,171.933140],[8.690720,-6.039978,175.195034],[7.008225,5.068543,180.007729],[1.189011,5.198593,185.655232],[-1.754776,-1.291549,185.494805],[-12.019119,9.715607,189.212822],[-11.098404,28.337509,192.454628],[-9.167984,37.304184,194.436264],[-11.028335,38.440872,192.626480],[-14.269668,47.576462,186.643883],[-12.381912,46.811402,187.463035],[-13.623306,30.931748,186.757248],[-12.633682,29.857285,190.606476],[-11.624710,44.322968,188.772751],[-14.692154,32.143219,183.457249],[-15.352005,37.405823,184.050438],[-8.892532,24.981827,192.290429],[-7.520706,10.046204,188.722321],[11.753098,-8.877868,173.236634],[7.023178,13.250809,182.815892],[-3.595474,19.414765,190.469010],[-1.006424,8.713044,187.947937],[1.224289,14.352204,188.489594],[15.345932,61.718994,193.128502],[-1.146500,74.148621,202.193123],[-3.323135,68.989991,200.444947],[-6.911087,65.390778,196.868698],[-6.547623,52.587998,197.417076],[-1.789139,57.671784,198.516892],[2.665512,60.991638,198.679703],[6.827011,55.403092,197.524109],[1.330673,48.701935,196.236854],[13.330856,39.503754,187.133103],[8.146713,49.102372,194.827538],[11.280197,41.917084,188.993050],[5.047287,43.954438,195.120133],[-5.382034,58.942078,198.447800],[-8.569046,68.273285,192.416068],[-11.411575,68.249390,191.354050],[-17.007584,50.536606,187.656594],[-20.433914,57.333069,191.344139],[-15.714310,63.536896,190.237061],[-11.433487,58.085480,189.030274],[-4.294998,73.485840,199.960624],[-7.474136,76.464783,194.075538],[-9.098221,49.903382,194.698998],[-10.048477,56.009140,190.671134],[-17.769913,42.959122,185.690888],[-21.260818,41.770371,186.488305],[-5.263016,79.945862,197.524697],[2.076584,70.387604,200.792954],[-1.888199,66.752289,200.432206],[15.977463,82.024201,198.872345],[14.077805,77.982483,198.933777],[22.164597,91.253784,201.308190],[17.904587,93.379334,203.210976],[-14.682754,75.145935,193.296089],[-19.081924,71.228455,194.189301],[-14.998550,20.631165,186.973282],[-13.454056,17.886658,189.688133],[-15.835098,12.156372,186.154129],[-17.412918,0.689286,184.041607],[-15.000259,6.300324,187.614350],[-8.753128,-12.684295,183.727059],[-14.297806,-12.222870,184.379620],[-15.735550,-1.613495,186.060097],[-13.252212,2.212586,187.363587],[-22.211319,9.798172,175.976490],[-24.835953,15.022644,178.375512],[-19.292557,-14.343811,180.304696],[-1.184646,-9.659866,182.817582],[5.058884,-6.924026,177.379456],[2.526901,-4.824768,180.555123],[-25.996963,-58.322570,161.050110],[-26.555984,-63.216232,165.538170],[-24.528091,-48.129821,169.521592],[-25.631729,-58.115722,169.368660],[-24.198440,-53.097305,173.569233],[-25.172928,-66.050659,172.416500],[-22.655289,-53.906479,175.670262],[-23.088333,-65.194473,173.933144],[-23.913101,-10.971222,169.054070],[-21.862259,-13.075500,168.464253],[-24.157730,-19.716537,166.499207],[-28.841080,-21.285446,167.873421],[-55.378433,35.999054,174.165871],[-51.834244,110.344330,181.990010],[-42.310623,117.430207,187.044281],[-47.371048,120.543244,184.825493],[-53.930130,115.886017,184.791634],[-51.995499,104.062409,180.886532],[-54.589432,104.604126,180.429490],[-59.471084,91.794098,176.328171],[-50.386246,160.410279,177.256531],[-53.713150,166.246765,171.479405],[-52.995254,161.667572,172.017197],[-60.663345,158.773346,163.991677],[-67.110672,154.085419,160.810498],[-67.080643,149.164399,162.503106],[-64.332718,154.084565,162.405507],[-59.719192,158.238953,167.277874],[-63.635025,148.892914,169.572422],[-51.885757,159.989472,172.975937],[-59.593460,153.879334,171.631695],[-60.695145,149.276917,172.355339],[-56.214859,169.499909,165.651150],[-58.699417,165.217621,163.766220],[-69.952286,158.712097,149.117966],[-66.105423,160.211029,157.647522],[-74.319168,154.049927,145.531182],[-72.321426,151.545990,156.679757],[-71.677811,147.353577,158.491536],[-69.530533,146.405426,158.815697],[-72.064834,137.529023,163.648564],[-71.272049,135.480927,167.560482],[-68.164200,135.673615,170.571400],[-70.053482,128.791138,169.587853],[-64.966873,124.118927,170.833447],[-71.057144,109.155121,168.811219],[-76.376358,95.911133,165.749264],[-83.335037,84.605683,159.427872],[-87.782059,80.851563,156.647160],[-91.343582,89.766510,159.105820],[-95.053116,84.181763,155.112339],[-85.585220,114.707093,150.321862],[-89.664200,116.175507,138.871151],[-89.260330,110.228821,136.220420],[-92.787491,107.793732,129.118996],[-91.971573,105.470612,128.473919],[-94.539688,104.993042,125.789367],[-99.225662,104.367310,128.144076],[-90.619522,112.220368,134.065201],[-89.208145,111.848664,134.462741],[-93.352920,113.346100,135.923205],[-97.148636,125.194031,132.531240],[-92.318741,131.864899,137.067310],[-93.677750,133.027771,129.613508],[-86.163101,141.797760,134.705943],[-80.190506,148.132752,134.271926],[-82.579422,144.449555,123.895103],[-84.218765,141.546173,119.631075],[-96.010391,128.548340,131.157796],[-101.510879,121.425659,122.092817],[-88.760574,119.515595,140.953503],[-86.020279,123.140656,144.508381],[-83.132950,128.899445,148.576674],[-79.423355,130.536316,150.137335],[-80.383194,141.925598,150.151205],[-82.230179,144.731079,143.221482],[-79.314102,146.301514,148.519057],[-78.425918,149.387543,144.172741],[-71.332962,154.421143,156.100518],[-73.366287,140.407105,156.397034],[-76.274979,143.231232,154.610787],[-75.927750,136.300049,153.815781],[-76.434952,135.046021,157.221497],[-70.726700,142.989136,161.549973],[-76.786087,147.583710,153.037573],[-81.197220,126.308625,149.031428],[-82.527786,124.512848,145.829857],[-82.908951,122.760132,145.571143],[-86.943313,116.636841,139.455811],[-84.325088,119.818604,147.224175],[-78.902054,130.877045,154.951886],[-77.824661,126.601746,159.695832],[-91.762833,128.548462,139.010111],[-83.971939,141.414032,144.090128],[-76.724991,152.054688,138.929144],[-77.518692,151.013825,130.592924],[-93.632095,117.938538,135.594706],[-96.654190,122.976410,134.304724],[-83.170792,133.832245,147.932894],[-79.788467,135.530365,152.975741],[-86.549637,134.353760,143.958521],[-95.953689,110.039215,133.423143],[-89.236954,109.122254,147.089550],[-94.918899,100.649933,139.604029],[-89.659866,109.912445,143.656170],[-86.321121,116.059174,140.916455],[-94.499466,100.421723,143.673649],[-90.296036,99.042206,153.217102],[-87.030716,107.684418,153.266028],[-86.444717,106.960450,156.232018],[-78.934952,123.959595,159.462731],[-74.896500,116.970551,167.658852],[-70.859146,115.120758,167.957878],[-76.993912,102.381562,164.924405],[-81.136490,93.507843,161.952408],[-86.065445,86.294373,159.021561],[-90.288406,85.933686,159.030449],[-89.580398,95.469330,160.339386],[-85.427627,106.608612,161.564019],[-93.164444,90.250885,155.312291],[-83.944839,106.269684,163.885037],[-77.512710,117.954865,166.888240],[-79.482437,114.196381,166.175721],[-82.403213,104.034241,164.416211],[-68.318436,123.036499,169.068314],[-77.526565,122.560211,164.982247],[-81.180496,124.827545,152.972906],[-75.145584,124.302796,167.678276],[-66.725601,95.209992,176.025296],[-70.977493,85.855866,173.578003],[-66.699173,89.279358,176.158917],[-61.096939,99.863526,179.335747],[-55.875625,108.145356,182.045971],[-59.992020,84.580292,174.662793],[-64.726395,71.539917,171.005921],[-68.589981,62.446289,168.329433],[-69.227981,72.750183,170.157597],[-64.814712,77.913361,171.926361],[-70.241959,81.290833,173.759499],[-65.431473,81.639191,172.945580],[-80.758987,58.469513,165.278424],[-83.444595,53.147370,163.264153],[-86.093887,48.196045,161.264874],[-90.167068,42.866944,157.314995],[-90.927139,50.868210,152.722187],[-95.076187,41.553986,145.602662],[-77.949295,75.608887,168.161377],[-81.939957,81.909027,161.491921],[-87.348648,76.840943,155.476139],[-84.635757,80.214234,158.189766],[-74.125931,89.976776,169.387658],[-80.820206,74.640015,164.620354],[-88.084366,60.660218,156.249134],[-88.345474,50.409760,159.019852],[-96.905289,82.722840,149.315298],[-97.923416,83.515930,146.043635],[-94.773331,89.913971,149.268238],[-90.607010,72.936371,153.091931],[-90.266922,65.383637,151.938843],[-84.508804,75.371460,158.780827],[-94.756546,80.373749,155.895409],[-95.196426,73.368286,154.258271],[-63.103592,101.105042,178.626839],[-66.831680,140.653382,170.264588],[-68.368973,161.283905,142.744105],[-74.166702,166.894104,148.098736],[-77.857437,167.837006,149.347987],[-80.092728,169.406525,147.129919],[-79.380752,170.488312,144.166436],[-77.695206,164.616425,142.072047],[-75.662430,162.117646,136.916618],[-75.551163,163.879334,143.201725],[-69.935684,163.124634,141.235014],[-70.772476,168.571656,147.627091],[-66.352554,175.904114,150.225277],[-79.514236,145.976441,118.954322],[-79.855057,143.568299,115.698350],[-79.268692,159.298340,132.039767],[-79.771133,155.332611,128.344006],[-84.984573,151.391663,123.225733],[-79.523392,149.280701,121.729760],[-86.676895,149.025269,120.370746],[-84.029800,142.093598,108.082218],[-78.795853,140.070313,108.076120],[-75.170730,132.446259,76.957398],[-72.938980,130.694336,74.725048],[-70.906448,128.747376,72.316662],[-67.524307,126.543030,65.331177],[-62.989700,125.250489,59.002659],[-63.643753,120.266602,53.409333],[-71.876968,135.399659,64.325993],[-70.953628,132.087952,71.650654],[-68.758255,131.127625,73.145672],[-63.464310,131.123444,69.634278],[-46.728775,137.779145,63.405098],[-51.563370,136.372864,59.955086],[-47.845169,136.418824,54.877671],[-43.186844,137.633515,51.948532],[-55.273209,135.062226,66.336254],[-57.988663,132.007019,67.376656],[-54.202225,133.691193,66.425328],[-55.910599,130.156433,62.736672],[-57.804459,124.603058,56.158585],[-63.005997,133.058228,69.710362],[-62.640274,133.742646,67.131131],[-67.795120,135.310700,60.738289],[-51.045303,135.820496,53.893692],[-40.833755,139.414795,60.981526],[-21.069412,134.540406,48.814270],[-32.096023,133.520691,48.679154],[-38.753555,123.850495,39.068268],[-36.242752,135.566559,57.463295],[-30.198013,138.027649,55.105378],[-30.786636,130.114991,42.245850],[-38.420914,116.326447,29.199433],[-32.182754,110.180939,29.008759],[-24.272903,101.523499,23.456856],[-18.981766,121.673065,39.971245],[-46.773270,101.047638,19.908753],[-50.207046,92.515808,15.903588],[-44.060379,99.231842,19.964722],[-37.192825,111.789063,27.046242],[-54.306534,96.227661,35.137391],[-52.734329,94.491242,29.140984],[-49.822037,98.890534,30.694199],[-59.177078,90.458924,33.927758],[-61.207229,75.444153,23.063157],[-61.728531,71.640137,18.430016],[-64.988907,57.881256,9.411072],[-64.299454,58.726456,2.568001],[-63.534317,54.213059,-0.827880],[-63.610367,63.715210,12.966515],[-65.965103,62.363892,18.385956],[-69.046585,69.943543,26.328934],[-72.821182,68.730439,26.576256],[-64.429275,79.048310,29.471764],[-61.458755,79.097199,27.260346],[-66.517654,68.295838,23.853402],[-66.413528,81.853882,31.743470],[-59.323257,77.483368,12.420388],[-56.732376,77.789460,8.553643],[-52.461197,73.063172,6.903908],[-48.704849,80.250580,10.692055],[-43.765579,83.447968,12.962418],[-36.411758,95.443329,20.719872],[-43.023758,78.724976,10.430123],[-34.333877,89.284211,17.056099],[-44.140762,70.897126,5.663124],[-30.799881,98.364044,22.578514],[-57.320755,83.193695,16.265824],[-53.674454,92.392151,20.721474],[-54.506546,89.765717,25.621796],[-57.824112,81.503662,21.319863],[-56.392898,83.110169,12.327446],[-54.159927,88.724518,15.144059],[-53.418106,84.051544,11.380707],[-77.072647,84.064423,34.165917],[-80.172012,88.651703,40.927552],[-83.948257,80.924530,39.038041],[-86.445022,83.228546,43.280594],[-90.583450,75.770813,43.368843],[-92.884354,88.428009,53.430313],[-89.510757,84.345063,48.482247],[-83.465591,91.444641,46.148423],[-92.515518,79.644471,47.502839],[-87.655167,73.708771,37.049141],[-84.526199,69.545502,30.828568],[-80.618423,71.185578,28.443314],[-74.313675,61.006440,23.408539],[-69.540420,59.312363,20.284645],[-73.209427,40.203507,11.324875],[-68.470352,47.236527,8.772324],[-94.130142,73.067597,43.985611],[-89.129471,73.836884,39.034829],[-78.394119,70.884247,27.078782],[-82.452164,56.537278,22.170372],[-76.717361,44.604477,15.640595],[-72.547806,50.054688,16.522934],[-77.079727,48.482941,17.701264],[-90.760513,64.323029,33.017464],[-92.200577,68.442505,39.118996],[-97.484451,52.553192,31.082100],[-97.354385,61.577759,37.165688],[-98.744522,69.752625,42.430870],[-94.320877,63.186463,36.921318],[-122.184463,8.925766,8.658165],[-120.459122,20.056458,7.007943],[-121.085770,26.036347,5.344010],[-154.514419,-48.079590,-19.818809],[-158.754410,-58.200073,-20.991265],[-152.059769,-65.875030,-18.907387],[-157.148758,-73.900612,-20.801155],[-165.839065,-85.257286,-20.822746],[-172.927322,-91.701881,-21.311332],[-196.050918,-93.312980,-29.521919],[-200.246048,-98.275535,-31.672386],[-206.744522,-105.059570,-33.897010],[-211.903458,-111.918914,-35.436134],[-213.932571,-117.607971,-38.190834],[-208.380997,-119.578811,-36.403038],[-198.706802,-124.679573,-18.641060],[-192.993301,-119.404937,-19.909965],[-196.075577,-116.266411,-18.075126],[-193.869827,-101.575599,-20.829322],[-198.525467,-102.189811,-27.289909],[-197.905228,-98.891639,-30.354911],[-202.450638,-97.147033,-29.122704],[-209.775589,-112.044166,-36.923867],[-210.396011,-107.553924,-29.473899],[-201.569656,-90.542038,-19.997795],[-198.850723,-91.410827,-27.639351],[-193.557999,-92.503822,-27.228996],[-185.451980,-77.430290,-23.587852],[-185.082474,-71.306892,-22.999611],[-187.607315,-68.105674,-21.715431],[-183.416397,-63.864746,-21.284965],[-175.739761,-67.147125,-15.330253],[-168.775772,-67.113250,-14.772499],[-166.111160,-65.987533,-18.639991],[-157.932083,-52.904281,-20.082847],[-161.062942,-69.864395,-21.885353],[-163.874466,-78.729149,-21.581398],[-157.475784,-66.605148,-21.592765],[-160.779251,-55.565124,-18.990730],[-162.961014,-56.563598,-15.461723],[-163.631851,-64.944183,-20.404686],[-151.370315,-41.846786,-18.306205],[-143.949295,-46.712753,-12.490348],[-147.811417,-37.042190,-16.184929],[-143.430923,-30.921371,-13.639045],[-147.785843,-28.203079,-17.378288],[-150.801407,-34.598938,-18.069786],[-154.143448,-38.569519,-14.275886],[-153.209976,-36.721374,-17.482704],[-153.995499,-41.662368,-18.780311],[-156.752945,-25.507599,-1.362877],[-150.291275,-20.352905,3.112671],[-152.771377,-18.380844,3.252106],[-145.722610,-16.756820,4.017929],[-144.967239,-18.502639,-1.988411],[-142.167190,-9.499054,-4.455001],[-139.347977,-3.522552,-11.531288],[-136.540054,-7.249237,-11.195228],[-130.897720,-7.566650,-4.508567],[-128.964065,-0.819961,-2.258270],[-124.082779,2.896653,6.808915],[-120.465042,8.529328,11.253029],[-123.427261,11.849655,4.250740],[-124.832352,15.792496,-0.107772],[-131.752090,22.210266,2.585617],[-133.895828,17.250794,1.896073],[-133.725235,13.085831,-3.562011],[-128.539871,12.773712,-3.232574],[-127.735550,9.664749,-2.747955],[-132.679886,2.393219,-7.230552],[-127.518814,3.797180,-0.744392],[-124.048233,14.353195,1.074974],[-130.172073,16.377549,-2.076011],[-133.052200,17.411698,-0.620803],[-128.039078,23.992935,1.697922],[-124.962417,25.038910,2.825760],[-136.697830,8.502732,-0.995025],[-131.982864,11.939698,8.320954],[-133.862259,3.546326,10.936844],[-135.539810,5.431534,15.038361],[-138.890762,6.873841,16.556977],[-138.367630,-1.219253,12.280983],[-129.877273,-13.145401,-1.872970],[-157.066788,-46.118103,-18.021156],[-159.943558,-47.634582,-11.081704],[-162.133011,-46.578460,-8.178047],[-169.539932,-52.628479,-12.117592],[-175.509354,-61.300583,-16.357750],[-172.831436,-63.213653,-13.095222],[-185.218094,-62.366317,-20.057716],[-187.929275,-62.300674,-16.700401],[-189.700638,-67.721115,-19.414161],[-163.109512,-51.055893,-10.119285],[-170.739151,-65.974640,-13.042137],[-166.060684,-57.433426,-10.903390],[-168.576309,-57.649353,-10.984398],[-166.379104,-50.247467,-9.684945],[-157.373306,-41.278457,-7.947868],[-165.596146,-45.202972,-8.955680],[-166.909500,-30.038681,-10.489479],[-171.034500,-32.470886,-10.515953],[-174.846268,-32.064834,-7.529564],[-178.840164,-39.155136,-8.122535],[-185.339981,-44.122284,3.999367],[-191.610611,-52.784744,7.200920],[-201.620193,-63.046646,5.800339],[-205.244095,-60.013290,4.805954],[-211.099197,-67.392059,4.042771],[-208.478104,-58.242889,7.139840],[-209.196976,-58.890686,10.379105],[-205.951431,-55.826034,14.368706],[-195.788711,-48.213119,7.914330],[-200.067459,-50.459839,7.391076],[-191.489883,-32.729889,17.663674],[-176.221817,-19.777603,14.063683],[-178.781753,-27.366348,9.331330],[-183.448501,-37.084640,7.165718],[-185.092605,-36.020660,9.640503],[-191.138260,-37.535247,11.034226],[-195.350967,-44.580032,8.993378],[-197.526810,-43.531601,11.108735],[-195.801224,-54.112762,7.985527],[-185.118240,-24.996505,17.824135],[-181.481827,-22.048309,28.311959],[-186.198318,-30.857269,39.824570],[-187.736160,-17.969879,44.111756],[-190.826736,-15.886902,47.856400],[-188.958084,-10.191421,50.240158],[-192.240127,-18.594452,53.239777],[-189.057022,-11.397979,53.019806],[-187.895096,-23.613998,62.909481],[-185.967667,-25.686447,63.388626],[-178.982071,-29.538940,57.582497],[-174.788772,-30.586898,51.975060],[-174.199844,-21.726471,56.754731],[-160.951187,-12.360809,47.914750],[-166.618729,-28.723526,45.630638],[-168.533340,-36.619384,43.657143],[-170.617081,-57.429382,30.179444],[-173.998306,-64.071106,31.810372],[-183.223587,-81.049095,43.048378],[-187.231644,-91.055290,44.118287],[-186.672439,-91.624176,41.372910],[-189.962112,-104.148422,39.004280],[-197.552322,-122.073608,47.365662],[-200.431167,-131.546158,44.906395],[-200.265274,-126.345291,48.709938],[-207.889664,-130.947525,39.531639],[-206.252212,-139.407737,39.809990],[-204.620987,-134.641849,43.672913],[-181.988052,-80.283256,38.993454],[-180.770706,-79.412628,36.445755],[-175.507339,-77.301483,26.847405],[-169.047867,-71.186866,18.209244],[-171.696548,-68.000053,24.011132],[-178.105606,-72.531913,35.217553],[-177.996658,-22.884491,61.003891],[-172.657608,-15.430969,60.342572],[-173.861587,-13.376922,62.214425],[-183.438248,-5.435211,56.651192],[-182.889725,0.568466,54.928452],[-181.468948,9.544495,49.072731],[-172.673172,27.642853,51.048691],[-157.016861,39.724884,52.447770],[-152.709061,46.287751,54.645050],[-176.580093,23.137711,52.959999],[-180.119217,7.088364,55.762253],[-178.442825,19.148148,53.874970],[-171.138809,32.262345,62.020668],[-173.671951,26.618973,60.521035],[-172.455704,25.781845,61.394070],[-169.721451,31.925431,63.808407],[-165.915848,29.599808,63.517628],[-172.535293,31.046463,58.693402],[-167.941238,17.481232,59.931290],[-158.966507,17.908997,67.636662],[-150.615799,21.918351,68.199692],[-149.710342,15.505432,61.574555],[-143.526382,15.877732,55.849617],[-146.839798,9.277558,53.039780],[-142.503250,-15.360870,35.491280],[-138.736709,-6.672119,40.361794],[-138.917374,-23.576950,35.079193],[-134.031387,-18.770431,42.703209],[-135.148270,-23.951660,43.753159],[-133.261551,-17.350952,50.397057],[-131.688431,-17.102127,54.752098],[-132.788467,-18.518264,56.135369],[-129.405472,-7.552322,58.214638],[-129.035110,-9.326004,60.106697],[-130.265823,0.583176,50.165696],[-132.553177,0.766281,46.900574],[-143.698074,24.520310,64.455738],[-151.530167,25.581909,71.053643],[-153.154434,28.064011,71.315419],[-156.534378,29.926926,67.448586],[-162.562393,25.329544,63.099862],[-162.090774,38.547287,67.139641],[-165.778091,39.770584,67.246407],[-156.818191,44.800232,70.592179],[-155.175430,21.217881,69.745705],[-127.033401,9.752716,54.717034],[-129.541885,16.232605,52.504227],[-128.919998,-6.376602,52.284600],[-131.671463,-14.082702,53.519616],[-131.594131,-8.470718,46.200829],[-134.596817,-11.156585,42.434563],[-127.822464,-0.191879,52.716614],[-137.156509,7.042389,45.703331],[-140.666824,8.453217,46.893616],[-135.895706,-1.762634,43.329567],[-132.332901,8.974945,48.659859],[-175.450271,21.705429,59.860188],[-174.957413,15.844406,57.835190],[-172.591263,12.964737,57.253685],[-175.865555,5.878327,55.839898],[-176.654800,12.501419,44.352288],[-174.579727,9.814225,42.062287],[-185.978409,-2.792068,51.658173],[-183.029007,3.702240,53.926735],[-181.042557,6.921601,46.078659],[-177.019241,18.949341,48.772728],[-179.414871,1.449738,42.038498],[-184.786270,-0.579132,47.033951],[-185.516739,-5.127121,54.733612],[-186.671036,-7.591385,45.849450],[-184.135696,-8.011459,43.885781],[-182.470047,-17.019409,42.131279],[-184.874893,-31.220443,37.694741],[-178.075333,-16.582580,38.435051],[-179.163528,-20.952774,36.686745],[-176.257217,-14.821014,31.098389],[-179.526016,-17.965454,24.898186],[-179.544449,-11.186248,41.150849],[-167.254837,2.065384,34.719109],[-168.003128,5.197327,39.127022],[-166.209000,10.828812,41.390908],[-170.512588,18.000214,44.691780],[-161.642166,19.164597,43.122956],[-161.441055,16.615860,40.077233],[-164.071182,4.855484,27.693489],[-160.936233,6.288590,13.600403],[-160.978592,-1.935577,5.215912],[-159.548477,2.936631,8.444512],[-148.077652,7.261963,11.432763],[-140.132950,24.185181,24.608239],[-135.307571,24.330887,26.403580],[-137.118545,18.191712,21.900185],[-129.952286,20.032624,20.800446],[-129.899856,16.185547,15.975846],[-138.205521,13.815735,19.212967],[-132.852981,10.800309,16.762558],[-157.380386,20.554261,27.096901],[-156.651260,18.773712,21.467957],[-154.908218,25.403244,26.495758],[-148.704483,39.407837,35.249390],[-145.281631,42.506897,36.009133],[-144.446731,49.921265,42.793747],[-148.834732,42.894593,40.108353],[-150.129227,46.571747,48.359879],[-146.743606,35.883866,30.891709],[-150.758926,28.439377,25.503106],[-154.633377,21.357376,21.535523],[-151.337356,30.883499,28.055893],[-136.960586,29.367462,29.384545],[-131.422684,33.231049,32.369584],[-127.076065,47.227280,39.934578],[-122.404983,46.192459,34.784851],[-124.310684,39.881806,23.815979],[-122.420914,44.650406,30.278008],[-126.495804,32.860627,27.398941],[-128.823807,33.961136,32.050133],[-143.220474,29.031052,26.663865],[-132.726089,22.694565,24.176361],[-128.470779,39.297394,35.747063],[-137.375076,43.186539,36.782868],[-132.461563,42.454941,37.486153],[-164.060013,9.853257,37.730889],[-165.760574,0.006974,23.836838],[-166.654556,-3.420730,17.678307],[-168.114090,-5.241501,19.332245],[-167.043899,-8.718902,6.211113],[-168.821915,-14.297088,1.879723],[-164.874466,-31.553772,-9.764244],[-161.444900,-23.152237,-6.704063],[-165.956375,-23.745376,-7.976616],[-155.248611,-9.829071,1.195145],[-159.903030,-30.370575,-4.639038],[-168.963455,-20.754806,-4.545517],[-178.146500,-30.276489,4.981705],[-172.358292,-21.104660,1.232026],[-174.781387,-23.400284,5.858391],[-173.217789,-11.943512,19.914742],[-172.760696,-9.035125,25.198937],[-167.299820,-0.763717,28.372284],[-159.997452,-18.797393,-4.897491],[-147.211136,-15.483596,5.887268],[-153.099014,-4.664200,3.983757],[-157.777054,-4.873214,3.249718],[-149.076309,-11.632599,6.847824],[-161.765762,0.476517,7.715805],[-164.646255,-6.274475,3.824402],[-164.191910,-14.584137,-2.624885],[-164.102737,-0.538299,11.507653],[-159.998794,10.665680,18.848771],[-160.710220,-15.507095,-3.539047],[-177.359329,-13.309799,39.163514],[-182.948501,6.635056,52.487404],[-180.804336,-26.255127,61.735875],[-179.676956,-19.720916,62.740082],[-174.428665,-9.083603,62.476494],[-177.231949,0.252152,56.343048],[-168.456497,-13.212524,54.620743],[-170.212417,-4.113571,62.339856],[-166.562820,-3.195999,61.939358],[-163.941360,4.570954,64.239529],[-160.858169,5.916474,63.335553],[-163.283951,-0.868606,60.925553],[-167.173965,1.596268,63.007920],[-161.763687,20.735047,63.841011],[-171.308670,4.583222,58.805088],[-164.119888,8.768875,64.684666],[-157.832718,6.516754,60.526093],[-154.261246,5.329315,56.304108],[-162.753982,-7.205459,53.007065],[-164.733658,-11.693206,51.291619],[-156.501175,-18.383835,40.188729],[-162.092361,-27.802627,40.366051],[-161.317154,-32.096512,35.675942],[-161.181900,-36.575622,30.770844],[-161.668045,-44.027069,23.667763],[-166.349441,-56.446502,22.561547],[-166.527359,-63.594360,18.157372],[-169.006180,-58.937179,25.455513],[-166.080948,-45.168472,31.877907],[-165.263016,-36.234756,38.445252],[-156.729629,-12.752517,43.792534],[-151.123855,-19.672653,33.963028],[-154.515152,-22.274276,35.283715],[-152.924332,-29.943725,28.078919],[-155.230179,-29.839370,29.810059],[-155.254043,-32.908783,26.924172],[-154.078323,-2.746429,48.803078],[-144.346512,3.386902,45.409607],[-142.635818,0.926773,42.538620],[-141.039017,-1.229873,41.389847],[-142.083938,-19.812637,34.117936],[-147.562515,-6.440963,39.906304],[-181.014786,-20.442703,19.004464],[-174.040420,-19.663025,10.546265],[-181.311355,-36.590789,3.740021],[-201.936966,-48.352523,14.792221],[-205.978104,-58.832702,15.876900],[-196.104874,-60.206146,26.294541],[-210.927444,-65.102554,13.246384],[-202.053116,-48.589737,11.064591],[-202.770767,-57.130752,18.478920],[-190.696426,-44.522247,27.514008],[-190.953201,-49.580597,29.494065],[-195.472122,-38.435394,14.873650],[-198.192459,-46.796890,20.030938],[-196.732315,-41.385818,19.161820],[-186.427078,-28.552505,26.069947],[-178.702835,-20.533447,33.368500],[-182.516922,-28.999160,33.737648],[-188.304764,-42.964035,32.441895],[-183.182266,-28.945404,30.976075],[-186.931839,-34.898712,28.574623],[-187.427139,-39.438049,30.280754],[-188.114578,-28.461898,22.625084],[-191.013382,-34.834808,23.387329],[-194.846084,-37.688888,18.093560],[-208.165115,-60.155441,5.282547],[-171.535477,-39.354431,-13.978462],[-175.068985,-37.585739,-11.697197],[-175.464493,-46.397674,-16.291175],[-171.693741,-43.536804,-14.870018],[-168.119400,-36.173279,-12.334999],[-160.158584,-38.391388,-5.127281],[-161.435318,-35.689773,-5.697013],[-176.725784,-78.374298,-16.423545],[-173.222183,-76.410652,-16.661674],[-179.085953,-77.310241,-17.309745],[-181.652420,-78.451896,-19.646156],[-187.907242,-88.309143,-22.243539],[-186.039444,-89.974197,-18.160194],[-182.812698,-89.559204,-17.034172],[-175.492203,-86.833168,-19.463523],[-176.912491,-82.498619,-17.252662],[-168.663528,-80.935898,-21.310905],[-168.209976,-72.964805,-19.987465],[-175.345230,-72.800018,-15.295860],[-180.740433,-71.693908,-20.363868],[-195.013626,-85.964950,-27.082679],[-191.048721,-85.926872,-26.979546],[-217.122513,-120.273407,-36.692772],[-217.417984,-116.218712,-27.412194],[-220.459183,-113.017029,-17.587928],[-222.539688,-113.661026,-13.108268],[-225.064285,-114.503746,-5.517341],[-239.809708,-133.907444,-8.303474],[-238.443252,-135.664119,-9.558586],[-235.894424,-132.871116,-9.471229],[-240.608536,-143.496345,-16.590049],[-233.340835,-124.288498,-3.693382],[-252.742203,-126.098846,-0.291420],[-257.346207,-135.159801,6.568886],[-253.307693,-140.419487,18.579720],[-248.083450,-137.549324,22.712052],[-237.082657,-139.881515,33.595909],[-228.570389,-142.773468,34.696602],[-228.826370,-147.312385,34.844399],[-229.680191,-147.933387,32.982506],[-233.896500,-146.779712,25.845185],[-229.888321,-147.310825,17.042618],[-235.126541,-147.966102,18.160866],[-237.812088,-151.773655,14.370163],[-242.595352,-155.313945,10.604981],[-250.600784,-155.792949,5.443032],[-266.850845,-156.695862,1.646439],[-273.315567,-155.768261,-9.113029],[-273.597610,-155.597480,-14.339836],[-267.046951,-145.581127,-7.781746],[-260.130997,-136.560455,-1.095565],[-262.090591,-143.448349,7.429116],[-260.658707,-145.604274,12.531510],[-252.981766,-145.000183,21.260216],[-253.173965,-156.723770,21.151329],[-250.915604,-152.165359,26.353638],[-251.584488,-148.955265,26.003312],[-249.610306,-140.996692,22.968521],[-248.260147,-148.109939,29.427437],[-245.368362,-147.815166,27.339051],[-240.540298,-149.052261,20.733261],[-244.662247,-151.533184,19.339676],[-247.208572,-153.493324,19.259148],[-247.875564,-154.055443,12.773949],[-246.378982,-156.067714,8.187592],[-241.625198,-151.836857,14.716477],[-258.034927,-156.912704,1.216195],[-245.041763,-141.707100,29.620659],[-240.594070,-144.275543,35.212189],[-234.768753,-144.965038,35.952973],[-236.664444,-146.286384,34.740319],[-243.426346,-145.767940,33.088433],[-239.206436,-146.340473,26.863022],[-228.167923,-146.851963,23.019875],[-224.176529,-148.038009,33.495972],[-210.044083,-125.545944,36.962479],[-212.934280,-120.280082,33.802277],[-209.815994,-115.807586,34.518319],[-205.681595,-110.225296,34.801728],[-204.970779,-114.767212,35.629700],[-204.767349,-106.352081,41.934700],[-205.789200,-111.353218,46.238747],[-207.793411,-114.726387,52.330193],[-202.753860,-118.331581,52.913697],[-225.719314,-137.790950,33.087113],[-232.488785,-137.168480,31.190781],[-232.216751,-128.583946,27.377083],[-233.887710,-132.273323,27.319817],[-226.187393,-130.161110,30.120621],[-229.413589,-122.227630,28.828583],[-241.598648,-120.951645,17.235573],[-249.336563,-132.754181,17.901993],[-246.343155,-123.361007,13.479714],[-244.589615,-131.292312,22.277214],[-239.120499,-126.088310,23.806153],[-237.246780,-127.232032,25.584717],[-221.051224,-145.126228,35.276566],[-217.072647,-145.245857,34.533829],[-202.965713,-143.303878,29.335610],[-205.514847,-139.290527,28.790604],[-209.570633,-143.926254,28.188050],[-214.573318,-144.585483,29.636948],[-219.051834,-145.187889,26.388276],[-232.956070,-148.903747,16.038849],[-229.471695,-150.536323,14.370629],[-224.113663,-147.813919,14.105202],[-213.089615,-161.193027,13.987137],[-211.859329,-151.259620,16.376374],[-212.883255,-145.474853,25.220765],[-217.205154,-145.807632,14.543831],[-215.661392,-143.252201,15.977974],[-216.655594,-143.061653,17.397118],[-223.510879,-144.948726,18.561600],[-214.836990,-176.820417,8.678467],[-213.951980,-187.166779,6.221802],[-214.375137,-193.495794,6.461197],[-219.217483,-196.994946,10.439156],[-226.567215,-194.895021,19.010674],[-223.211319,-182.050003,23.733376],[-223.628616,-183.706885,29.646813],[-224.794083,-189.432244,32.010743],[-222.382522,-196.883889,34.988472],[-227.449234,-192.329650,32.033707],[-228.873733,-191.748904,29.951508],[-230.772659,-200.873714,31.333680],[-230.299332,-210.665301,33.213616],[-221.641617,-203.473885,37.782296],[-217.909195,-202.854353,38.090645],[-219.557815,-208.190777,30.091462],[-211.224441,-204.219076,33.891472],[-211.552994,-207.073139,25.008912],[-203.857681,-207.975959,14.837838],[-210.857620,-214.569542,15.250901],[-209.975113,-220.989780,14.526810],[-200.352066,-222.316589,12.758431],[-198.421524,-227.067407,12.214425],[-199.247452,-238.330478,12.379769],[-199.226883,-243.834144,4.988434],[-199.512833,-248.996498,0.015068],[-195.342361,-242.917534,-10.162071],[-206.040848,-250.741153,-30.829551],[-214.598953,-257.376697,-38.278863],[-222.862259,-262.908584,-36.401054],[-224.302872,-259.896919,-33.275902],[-225.249893,-250.695392,-29.969490],[-225.445145,-239.999904,-24.347420],[-231.247330,-244.209697,-29.966149],[-242.811355,-246.608658,-38.383720],[-248.962601,-242.336342,-34.285835],[-248.864517,-229.131576,-31.793342],[-249.184830,-222.147329,-30.024299],[-250.442032,-214.783586,-24.024559],[-254.850967,-220.663610,-8.258461],[-256.122330,-223.951557,-6.610832],[-257.411209,-228.688556,-7.713875],[-255.936233,-232.483677,-7.789100],[-244.335586,-228.934868,-4.774849],[-242.395157,-234.370536,-13.250496],[-244.765152,-239.449062,-16.202644],[-244.807327,-243.515499,-21.584083],[-246.382034,-246.233806,-24.574012],[-245.911453,-247.440468,-33.243325],[-238.692215,-244.445614,-28.259239],[-238.213150,-247.587883,-33.142265],[-233.798904,-243.686542,-29.597938],[-243.668533,-247.171013,-30.093055],[-240.208450,-240.479557,-22.311485],[-236.338821,-239.571674,-24.770652],[-224.742325,-227.519071,-15.278633],[-229.763565,-228.021763,-16.860145],[-228.148331,-222.669014,-12.819176],[-221.937454,-212.698267,-4.137176],[-224.709183,-208.695663,-2.545036],[-216.832046,-205.794161,2.229905],[-233.290604,-205.028468,21.237564],[-232.837540,-204.580987,27.004746],[-232.188492,-208.284486,31.108033],[-220.193680,-212.724954,23.940689],[-212.731216,-211.508957,18.429894],[-212.196609,-217.504877,15.107445],[-220.114151,-223.045845,16.657624],[-227.883438,-229.402733,17.239861],[-232.770889,-233.240493,16.893547],[-234.409317,-213.823888,17.346215],[-236.038406,-216.587322,19.949852],[-235.182022,-229.148357,15.482834],[-236.106705,-225.256035,16.740754],[-235.194290,-224.569828,20.795372],[-236.324234,-220.580774,22.468285],[-235.680557,-214.125234,22.489899],[-209.476456,-229.746540,15.802788],[-201.996597,-231.367019,14.836365],[-204.236404,-240.598480,16.914040],[-202.987198,-248.700809,10.691376],[-202.903763,-254.866935,3.400780],[-202.005325,-253.090316,-2.713379],[-197.632584,-247.074211,-7.884666],[-201.147293,-250.979904,3.728928],[-202.081436,-241.067386,14.822136],[-200.244827,-234.825100,14.292542],[-207.534073,-239.500980,17.876748],[-209.627029,-248.638740,19.841149],[-206.269424,-250.955116,16.432518],[-206.137100,-257.096267,12.008843],[-207.488907,-262.120643,9.379731],[-206.693497,-261.962410,5.650071],[-209.640396,-264.720504,6.231972],[-218.659378,-265.794761,-9.505714],[-219.667984,-264.907287,-14.338462],[-214.992569,-264.097992,-22.567451],[-210.900162,-262.892189,-6.698143],[-206.271622,-258.704014,-3.671310],[-201.318252,-249.391143,-16.699516],[-202.384903,-252.478000,-11.731956],[-207.574417,-258.163437,-13.823021],[-220.979507,-217.623213,19.285439],[-221.740311,-221.292518,17.478989],[-218.362930,-209.692889,26.502594],[-233.768570,-232.362465,-19.777488],[-236.703506,-233.476642,-18.534858],[-234.896194,-218.572088,-5.890274],[-226.967605,-213.416057,-5.500488],[-235.641739,-207.148140,2.367081],[-231.764664,-212.848644,-3.950325],[-235.076248,-212.483366,-1.151756],[-244.677688,-225.270960,-0.991111],[-247.009109,-217.178892,5.457520],[-253.421463,-222.864309,-1.153022],[-251.265762,-217.452690,1.864075],[-250.266922,-213.702804,4.276009],[-249.322708,-215.953394,5.484635],[-247.367203,-206.487132,7.697197],[-249.906998,-203.986919,4.933831],[-247.664810,-188.598177,6.774727],[-244.136368,-177.989862,4.784066],[-242.220230,-181.221911,12.078812],[-244.906814,-184.925080,11.375306],[-239.714371,-179.245016,11.495766],[-237.156448,-183.199295,9.070076],[-233.946670,-176.475315,7.235520],[-240.994217,-176.539978,10.946511],[-244.278274,-179.874227,9.881211],[-242.735123,-201.925317,9.631371],[-241.718521,-195.645022,9.896431],[-245.289322,-199.571598,10.248162],[-247.467605,-199.350716,8.686791],[-246.355362,-189.429049,10.337075],[-242.003433,-189.106761,11.461098],[-244.712173,-208.703937,8.294388],[-252.111099,-216.298832,-10.210762],[-248.520889,-203.290047,-13.318016],[-249.975601,-194.842828,-15.156761],[-252.953018,-189.611278,-16.809913],[-263.714126,-184.023513,-23.697151],[-268.257278,-181.360487,-26.401130],[-268.969314,-181.535878,-33.988273],[-272.235123,-175.466898,-26.926262],[-273.709488,-172.140978,-29.861458],[-270.745987,-176.643278,-33.610680],[-256.361404,-167.420015,-30.757454],[-244.944412,-154.228042,-25.208625],[-232.413834,-131.363662,-20.339348],[-232.514419,-136.599655,-26.984398],[-230.968399,-137.329658,-30.877952],[-221.297378,-126.192688,-35.625511],[-249.856827,-213.527050,-5.128975],[-248.653274,-198.738734,-12.478645],[-249.406692,-212.382473,-2.288665],[-252.213638,-224.300991,-0.624488],[-236.218887,-225.014929,-10.581504],[-231.822037,-219.776016,-9.698937],[-252.560867,-235.560554,-8.195931],[-252.910843,-243.129368,-16.402276],[-256.182815,-235.498619,-9.476829],[-262.306412,-232.649967,-13.634040],[-261.894180,-228.033985,-14.078744],[-247.845230,-235.468982,-9.159843],[-248.830521,-222.721285,2.188378],[-249.352188,-229.327137,-2.264457],[-259.017654,-222.581390,-15.463493],[-262.787552,-231.800533,-17.382469],[-250.268326,-237.965950,-32.738900],[-249.448868,-217.952038,-28.601478],[-254.470230,-220.982408,-24.170158],[-228.161331,-235.490974,-46.748771],[-225.133804,-221.464639,-46.616279],[-225.975906,-210.222370,-43.567649],[-219.346817,-216.230304,-48.443107],[-214.666702,-205.989131,-47.632469],[-204.601211,-198.077847,-43.278114],[-201.186661,-199.445538,-44.608055],[-193.943863,-190.297100,-43.760705],[-191.865616,-192.619967,-46.771492],[-186.632217,-195.255683,-50.720146],[-173.894424,-197.704083,-48.288032],[-169.811539,-195.570178,-45.819831],[-213.548111,-199.300141,-45.438514],[-206.988602,-191.677983,-40.215080],[-201.459915,-193.675428,-40.903877],[-215.328201,-214.310527,-48.973121],[-203.435501,-212.190632,-48.887138],[-205.684341,-203.838784,-45.686195],[-210.804581,-216.521846,-48.268592],[-206.172073,-209.423249,-47.324501],[-220.562576,-223.740873,-48.963523],[-211.203873,-234.766365,-46.626565],[-211.096084,-228.972957,-48.433464],[-209.610428,-245.593486,-39.089759],[-210.239639,-240.910705,-41.740135],[-205.097244,-239.953651,-37.028556],[-196.978897,-236.557007,-38.771492],[-188.450943,-246.388828,-38.473411],[-182.820816,-252.623974,-37.084999],[-184.745010,-261.465660,-44.787849],[-189.028946,-260.537063,-48.289986],[-191.019180,-263.959877,-52.405204],[-186.539932,-266.746780,-51.937996],[-187.493362,-274.568405,-56.618873],[-188.652725,-280.808860,-59.925392],[-184.326065,-282.428390,-57.779716],[-181.722488,-283.265411,-53.109093],[-184.768936,-276.190262,-55.032844],[-178.554336,-285.327896,-42.867165],[-179.700882,-283.968803,-47.593879],[-178.917129,-268.283134,-35.591468],[-178.499893,-272.973945,-34.702354],[-180.831680,-267.979339,-19.201943],[-180.285110,-273.845962,-21.244575],[-178.266006,-285.976158,-39.020805],[-183.514114,-292.433563,-62.447883],[-181.837845,-292.760551,-61.403099],[-180.624527,-292.796096,-59.349037],[-179.868179,-297.327476,-60.987678],[-178.756607,-303.448585,-62.982231],[-178.146927,-311.864181,-68.204277],[-179.582107,-313.262588,-70.847145],[-178.054153,-319.331810,-72.517831],[-177.055740,-319.136291,-70.267128],[-176.983597,-317.494331,-66.468605],[-177.492813,-313.124984,-58.689766],[-205.023880,-237.380405,-45.592765],[-206.665054,-235.323013,-49.631172],[-207.758743,-246.831836,-57.315666],[-205.720291,-252.415168,-56.361549],[-203.024429,-250.614963,-50.707177],[-192.856766,-237.752666,-37.310402],[-196.225906,-249.373714,-46.068031],[-192.670792,-248.905872,-43.514503],[-189.961075,-257.120804,-46.507423],[-195.542862,-257.671001,-50.845039],[-197.813064,-263.381630,-55.229774],[-200.202957,-265.974220,-57.933647],[-204.231399,-264.028167,-60.895393],[-207.074234,-267.282028,-70.419488],[-208.487442,-262.436699,-70.375237],[-209.596939,-260.333900,-74.101402],[-208.897354,-252.093658,-65.167060],[-208.772781,-242.727298,-64.086692],[-206.476761,-228.167736,-54.307090],[-205.488357,-224.740493,-58.960183],[-205.901871,-224.021141,-50.884086],[-204.629471,-218.579591,-50.243966],[-207.770096,-223.852192,-49.046745],[-208.652542,-220.296720,-48.473442],[-215.184830,-225.944946,-49.526283],[-207.494705,-228.979145,-49.732994],[-206.926346,-233.689838,-53.406669],[-208.552078,-239.596508,-58.404060],[-203.609756,-257.323791,-55.645027],[-207.466690,-257.101013,-63.899131],[-208.326065,-243.230247,-57.356606],[-205.586746,-238.758857,-48.328895],[-199.832901,-244.989921,-44.458915],[-200.125503,-235.538273,-38.568077],[-219.776688,-237.161476,-49.546196],[-224.985123,-235.330574,-48.023735],[-229.126114,-225.446609,-45.065956],[-237.226334,-226.258461,-39.914727],[-234.381363,-233.362030,-43.103294],[-241.594498,-231.471176,-37.778190],[-240.804947,-242.261234,-40.735512],[-242.367874,-223.701355,-35.766014],[-241.528274,-217.067394,-35.930015],[-243.542129,-213.050901,-38.382972],[-242.332291,-211.426369,-42.952766],[-243.356705,-208.036305,-48.812737],[-235.251175,-198.196194,-45.282280],[-230.912857,-182.894916,-45.641334],[-228.997757,-175.747890,-41.699501],[-226.334488,-167.287151,-38.403419],[-221.871353,-156.429210,-32.044029],[-220.882645,-160.308258,-26.183418],[-212.225967,-149.940578,-19.984336],[-214.323196,-159.300720,-20.187370],[-210.367325,-156.225971,-19.024559],[-203.946854,-150.826416,-18.271783],[-204.716324,-159.658321,-19.389030],[-191.932999,-148.753887,-16.216102],[-186.195389,-149.846828,-18.496711],[-191.922317,-160.251304,-21.793510],[-188.748855,-157.849186,-21.945594],[-180.421585,-158.098072,-28.755212],[-181.809158,-151.630668,-22.556755],[-170.881851,-144.535827,-25.178489],[-177.084671,-143.658004,-19.897789],[-159.926773,-140.571727,-26.886360],[-163.866531,-138.594619,-26.180275],[-223.013016,-157.136139,-36.198860],[-222.058853,-168.371595,-25.931084],[-217.343643,-157.868671,-22.339470],[-213.746231,-164.985593,-20.676018],[-228.818130,-179.377937,-31.537284],[-224.459732,-169.716604,-28.771507],[-218.675552,-168.473722,-22.829612],[-225.886490,-167.193960,-33.524070],[-240.864883,-212.548296,-38.196815],[-234.907120,-203.409745,-37.206489],[-231.838577,-200.235189,-36.158821],[-230.772049,-192.495368,-32.835991],[-230.363968,-187.715361,-31.355430],[-228.116165,-181.839213,-29.598625],[-223.875198,-180.545237,-27.088279],[-233.613174,-197.814794,-36.301659],[-232.922989,-191.823287,-35.514289],[-245.880997,-214.303426,-33.858268],[-246.952957,-218.762920,-31.477577],[-236.640091,-219.549642,-39.398415],[-238.145950,-249.805782,-40.442330],[-233.771805,-252.803856,-41.969764],[-227.267044,-257.501243,-36.269798],[-224.147537,-259.217159,-42.563285],[-229.810562,-252.457756,-46.335807],[-230.593033,-247.774250,-47.053382],[-235.749649,-243.505253,-44.239006],[-235.786453,-247.538864,-44.310783],[-226.764664,-254.089149,-45.646737],[-220.846329,-245.431644,-48.083702],[-222.902359,-241.108696,-48.799675],[-215.639786,-239.466270,-47.969185],[-214.614700,-244.125145,-45.129860],[-207.702530,-252.207180,-33.140648],[-201.967178,-215.250417,11.201561],[-199.148758,-212.495819,9.469078],[-203.267776,-210.702396,12.455872],[-197.241592,-208.376029,8.712151],[-194.532364,-199.479721,19.310006],[-190.781082,-208.363208,-0.305778],[-191.286514,-223.288694,-17.851295],[-192.608719,-231.694297,-17.317802],[-195.671036,-239.037460,-15.907310],[-200.082596,-245.506057,-20.089546],[-202.465347,-243.305710,-29.398094],[-198.267471,-232.192718,-30.357383],[-198.368484,-232.662346,-36.177955],[-188.689712,-229.307975,-26.745644],[-190.225418,-228.684448,-22.912330],[-195.701126,-234.397609,-21.837975],[-198.101883,-239.025375,-22.436577],[-193.523758,-237.394211,-10.838127],[-193.192825,-230.479118,-3.977844],[-192.790787,-224.226497,-3.563537],[-188.344437,-203.414836,7.157235],[-181.269485,-207.590987,5.106369],[-179.198379,-214.632002,5.362366],[-178.776016,-219.947759,-3.882621],[-179.372146,-227.001812,-17.083000],[-181.751602,-220.131864,-16.259758],[-182.789139,-224.231186,-20.969764],[-179.867020,-229.517307,-20.512275],[-179.233963,-251.944225,-27.847145],[-180.836685,-245.880821,-31.440911],[-185.066543,-242.091606,-33.349983],[-182.548355,-237.540828,-28.549644],[-183.172623,-230.630672,-24.745002],[-184.402054,-218.728332,-18.613182],[-189.707779,-221.002788,-19.366676],[-184.265640,-215.037262,-13.697792],[-188.046707,-215.474336,-13.893777],[-189.182815,-214.258077,-10.675759],[-187.813675,-209.083960,-4.959800],[-182.308304,-215.571790,-12.438224],[-202.028763,-238.019638,-34.467460],[-204.888077,-243.538631,-34.089958],[-185.797073,-226.791177,-22.648750],[-189.420059,-226.550682,-20.627006],[-178.864822,-233.241474,-19.950599],[-181.373428,-210.617605,-0.880363],[-179.095047,-218.070160,1.878968],[-181.381241,-213.722540,-7.493020],[-185.866897,-210.083387,-7.705818],[-183.442581,-209.452982,-3.901413],[-179.462051,-220.657953,-9.790947],[-203.502151,-203.876463,22.696640],[-200.538834,-204.590165,16.885804],[-186.008743,-193.730869,19.167710],[-180.846573,-188.586826,23.889962],[-174.891617,-181.550117,29.614014],[-174.442642,-191.070558,27.432633],[-176.476334,-190.157723,23.564469],[-180.094620,-199.425988,13.525315],[-185.403030,-198.708133,12.735566],[-182.376968,-198.815042,12.218827],[-185.283829,-203.353779,6.842789],[-189.727188,-198.886199,14.871186],[-179.698379,-193.076010,19.095932],[-176.954483,-195.635390,20.106408],[-177.269241,-198.868066,18.862587],[-178.133072,-212.040897,12.049942],[-177.150223,-220.688562,15.038742],[-174.943558,-214.308712,21.916664],[-172.876297,-204.097537,27.141442],[-170.037063,-202.540083,30.265969],[-173.227615,-218.754270,21.927620],[-169.276199,-211.638945,27.046593],[-175.884659,-210.949267,20.504197],[-177.783768,-205.460952,15.825776],[-173.903213,-200.981415,26.588082],[-169.446426,-190.017952,35.400322],[-172.705887,-191.064516,31.399483],[-176.994949,-186.112476,24.933556],[-182.022537,-187.065350,27.892586],[-184.890762,-189.156576,28.722748],[-185.022964,-187.117760,37.099198],[-188.701675,-188.513189,36.061875],[-181.908768,-185.452974,34.458481],[-179.180191,-176.592756,37.027779],[-184.151565,-179.582523,37.681221],[-177.675552,-174.441475,37.810006],[-175.789383,-176.360672,34.498375],[-177.450027,-181.982626,30.178643],[-190.367935,-193.156050,26.410286],[-229.846451,-155.808696,12.713509],[-233.831009,-165.028593,10.901093],[-233.234268,-170.279947,8.252633],[-230.866287,-170.657385,7.334977],[-229.736099,-182.715895,6.143326],[-225.160904,-182.456711,6.547074],[-216.813858,-187.113264,5.248368],[-214.928970,-200.583902,3.188347],[-226.674820,-187.331547,29.949555],[-228.735123,-190.041008,27.365998],[-226.492874,-160.697975,9.736130],[-216.779617,-155.206051,13.601548],[-222.905777,-167.021217,9.976258],[-227.755752,-171.711136,8.023964],[-224.099747,-156.195503,11.010445],[-208.838272,-146.343780,28.338219],[-211.704117,-153.575924,28.458435],[-214.476883,-160.922023,29.455933],[-214.688248,-168.861679,31.966851],[-208.594803,-169.796779,29.315789],[-204.346695,-174.135862,23.587525],[-199.341873,-167.143058,23.621102],[-210.179947,-167.273204,31.511765],[-211.794083,-159.327308,31.411263],[-208.218216,-153.802646,31.127472],[-208.537247,-162.001598,31.767784],[-204.086807,-153.930980,30.185639],[-212.528274,-165.870720,32.372200],[-216.576004,-164.745453,27.518814],[-213.731460,-156.875366,23.631760],[-212.055313,-155.641601,18.003991],[-214.320755,-166.486278,12.106430],[-212.258621,-166.419233,14.697014],[-214.909500,-162.070198,21.434670],[-211.201980,-148.929580,19.947503],[-210.740433,-147.672741,24.336663],[-214.734573,-142.494819,36.852280],[-248.028274,-128.501594,-6.467064],[-229.914749,-116.459572,-0.384712],[-226.811111,-114.511123,-1.762489],[-216.613113,-102.691696,-10.300041],[-215.800674,-104.171417,-14.696846],[-205.247208,-96.987808,-21.763970],[-212.659988,-105.879776,-21.672783],[-229.168899,-120.467209,-5.151207],[-232.453567,-127.598373,-10.057762],[-228.694534,-127.683975,-21.213691],[-225.939163,-122.464821,-19.055015],[-221.570694,-124.214798,-29.824760],[-227.853287,-131.019684,-27.142356],[-226.355240,-132.344356,-33.314247],[-233.428116,-131.232048,-17.529029],[-237.659622,-140.492160,-22.616294],[-242.228348,-143.226471,-15.209388],[-242.682999,-138.394584,-11.370567],[-248.400284,-135.253074,-10.902626],[-255.681839,-134.655857,-8.696006],[-259.799026,-140.056381,-12.012992],[-240.417862,-145.081440,-19.860786],[-252.208755,-141.496864,-16.433845],[-251.293899,-134.449066,-10.311638],[-259.694656,-145.213279,-18.763450],[-264.853531,-145.943985,-16.025673],[-271.777786,-153.237106,-19.133461],[-266.258133,-145.403438,-11.996285],[-265.506424,-149.217483,-20.402870],[-271.653885,-155.222889,-22.282570],[-274.048172,-157.042091,-21.257545],[-273.481216,-162.280616,-14.038353],[-270.106155,-169.223787,-17.359672],[-263.160049,-178.795055,-16.489891],[-259.689468,-183.738744,-17.567604],[-255.280472,-188.908627,-20.937187],[-274.974502,-159.276947,-15.700813],[-273.980789,-168.262853,-20.847267],[-276.082352,-161.929836,-24.292305],[-272.768448,-167.546112,-30.149482],[-274.984329,-162.685569,-26.791755],[-270.173416,-157.507129,-25.471992],[-263.886368,-151.496269,-23.188637],[-260.061172,-153.500618,-24.497642],[-253.182571,-156.786178,-24.998512],[-248.102493,-148.336208,-19.047280],[-245.871536,-152.571239,-22.831565],[-254.115188,-162.445099,-28.185615],[-258.294327,-161.792103,-27.649543],[-257.116470,-148.106693,-21.263908],[-129.516189,-57.190353,5.507004],[-132.294998,-57.696930,5.867554],[-135.982986,-61.755356,3.854462],[-137.526993,-71.581344,6.359581],[-130.517837,-66.705795,6.890923],[-125.852798,-76.199958,-0.163093],[-124.668472,-89.655998,-7.810402],[-138.935074,-80.889480,6.980782],[-135.633682,-81.819351,8.168488],[-131.089615,-90.348457,4.880379],[-134.510025,-95.007599,4.813347],[-132.457413,-101.653373,1.566399],[-138.696670,-116.297668,-2.853706],[-141.131119,-125.044502,-7.093193],[-137.528030,-132.353672,-10.427909],[-136.130936,-141.535492,-14.361458],[-141.983047,-140.182316,-15.011924],[-146.825821,-147.357769,-18.807518],[-160.133560,-147.484974,-29.062034],[-163.010391,-153.583877,-31.849311],[-162.774795,-146.614952,-29.551948],[-172.936539,-153.471565,-29.676353],[-166.120560,-153.991935,-32.501976],[-180.471512,-163.974344,-32.636178],[-173.853775,-173.799930,-41.333839],[-172.520462,-175.848219,-42.248985],[-174.657547,-168.951259,-37.628456],[-183.495376,-170.707622,-35.621040],[-193.839004,-175.394832,-31.756065],[-196.628311,-184.914289,-36.944587],[-198.403030,-190.336462,-39.758384],[-186.647415,-184.707536,-43.688621],[-188.978409,-182.575378,-41.227821],[-190.831131,-179.901640,-37.919212],[-180.207535,-179.134514,-42.214256],[-186.903458,-168.514221,-31.663856],[-200.529007,-178.744510,-32.196754],[-205.371109,-170.359792,-25.578560],[-211.232132,-170.651695,-24.070793],[-207.797500,-177.891946,-30.657066],[-209.750381,-188.233515,-37.939918],[-200.331741,-186.277687,-36.955513],[-196.096329,-174.579519,-29.867271],[-218.068252,-191.315877,-37.826072],[-225.273575,-188.128286,-30.964744],[-231.217850,-205.931429,-38.220237],[-235.298294,-208.342617,-36.995491],[-238.847427,-213.248251,-36.855705],[-237.180008,-214.106691,-37.546745],[-231.887710,-216.108028,-41.755012],[-215.837173,-199.374951,-44.887886],[-219.488357,-197.778911,-41.731849],[-229.114151,-198.985315,-36.090370],[-224.865799,-196.095241,-36.511024],[-215.519974,-195.289826,-42.363243],[-213.198868,-184.278756,-33.913124],[-215.529495,-178.392311,-28.041252],[-221.252273,-185.003886,-30.307671],[-220.464859,-178.147178,-25.976417],[-178.071426,-154.479210,-27.845893],[-172.111709,-161.123569,-34.135978],[-156.208206,-153.842292,-25.208549],[-152.695755,-148.503204,-21.224983],[-161.443741,-164.352089,-31.893577],[-153.530472,-156.430648,-24.064872],[-159.521011,-166.473953,-30.976936],[-150.057449,-149.216804,-20.158501],[-164.779739,-173.444547,-36.598991],[-175.599441,-180.529353,-44.797447],[-176.317764,-190.795918,-48.905616],[-177.719620,-187.116738,-48.381782],[-180.853042,-194.208706,-51.876930],[-169.555130,-188.556397,-43.657081],[-165.055740,-177.899160,-38.122505],[-173.227737,-181.625832,-44.358802],[-169.314834,-170.414364,-39.075218],[-137.741165,-95.714149,4.531052],[-137.245071,-86.765526,6.869385],[-138.734329,-108.745399,-0.158523],[-140.969681,-102.605583,-0.063522],[-145.275406,-106.272880,-6.014579],[-150.844925,-102.332428,-4.101913],[-146.956924,-97.635093,-1.866333],[-157.641800,-90.954460,-10.203376],[-152.402115,-81.854896,-11.952736],[-150.412552,-78.160972,-12.693794],[-144.540176,-98.848533,-1.930275],[-145.375687,-85.006027,2.127045],[-145.792129,-87.720001,2.014237],[-147.729141,-87.883743,-0.053703],[-150.768082,-84.022545,-7.941063],[-147.276871,-77.261200,-8.102211],[-146.629776,-92.082702,0.533768],[-142.777969,-93.450256,1.485726],[-141.144668,-87.546440,4.495156],[-135.901749,-74.260849,8.027626],[-127.061844,-127.232269,-14.121544],[-125.746841,-117.505058,-13.521980],[-124.753921,-125.403686,-23.137779],[-125.687393,-113.407013,-23.577644],[-128.744522,-117.366218,-44.445167],[-127.721756,-118.411743,-47.883172],[-126.455582,-119.979759,-50.873726],[-126.923538,-132.845352,-58.250831],[-124.814163,-133.048092,-59.622017],[-127.895523,-142.711876,-62.663643],[-128.843887,-149.889076,-65.624978],[-129.863174,-139.039497,-55.211662],[-129.434952,-120.169235,-40.503181],[-129.675552,-128.911865,-47.519371],[-129.438003,-134.633533,-42.943489],[-130.014175,-134.069893,-47.507881],[-128.430862,-134.478676,-56.379982],[-128.708389,-128.328323,-51.482293],[-129.445084,-143.348526,-59.928825],[-130.948135,-148.729126,-57.227165],[-129.510208,-154.435535,-50.457206],[-130.372879,-163.915964,-54.854591],[-124.626541,-146.031337,-26.354850],[-125.478775,-148.727401,-24.300560],[-125.241959,-160.822090,-29.271446],[-132.294632,-150.738968,-18.440849],[-126.274307,-178.511945,-51.446418],[-129.193924,-189.531824,-63.141487],[-132.727432,-189.733312,-72.934486],[-132.474197,-173.762952,-72.921180],[-129.789261,-179.563759,-80.820579],[-131.844864,-175.093328,-76.876106],[-131.786209,-184.184563,-80.983680],[-131.249588,-193.222210,-85.339256],[-128.514419,-193.698155,-86.518455],[-123.822281,-179.048860,-79.316490],[-127.795608,-186.223807,-83.514427],[-132.481338,-197.321029,-84.785728],[-132.823135,-188.447544,-78.799919],[-132.946304,-195.915263,-77.614296],[-133.057999,-183.338476,-73.454506],[-124.923111,-174.074346,-45.325721],[-124.664444,-169.668447,-40.789040],[-124.543960,-161.594154,-35.130516],[-127.069290,-171.046882,-30.247215],[-128.635818,-165.895439,-26.254066],[-132.330704,-171.004379,-26.190620],[-139.655655,-165.114462,-24.381126],[-138.480789,-151.140377,-18.605476],[-145.477432,-164.073518,-28.321785],[-147.526688,-161.941517,-27.177147],[-143.661758,-158.126194,-24.469887],[-135.993545,-166.101398,-23.724601],[-133.115677,-160.222824,-21.897804],[-130.453628,-159.261139,-22.435859],[-129.714310,-177.453247,-30.355522],[-131.154495,-188.872062,-34.036018],[-127.461319,-186.253898,-36.476402],[-124.696487,-168.267833,-35.749275],[-125.037308,-185.042782,-41.203254],[-125.910782,-175.037500,-34.230034],[-125.082046,-173.370273,-35.871452],[-125.359024,-191.152878,-42.269172],[-130.673965,-171.370405,-58.919685],[-126.525223,-170.446336,-48.520042],[-132.685684,-172.663408,-68.385643],[-131.773392,-158.086532,-60.401589],[-125.109756,-166.232286,-42.312660],[-132.320328,-167.743494,-63.787559],[-130.935562,-153.668098,-62.894142],[-129.544144,-162.915676,-73.003502],[-126.158646,-157.783081,-70.973594],[-130.675735,-168.870714,-75.480552],[-128.186050,-167.914434,-75.960350],[-113.292618,-193.182722,-80.991233],[-111.768997,-184.957039,-77.434593],[-108.514908,-191.294925,-79.388374],[-129.334610,-176.220985,-79.705131],[-132.656509,-178.111133,-68.137718],[-126.926956,-162.486858,-46.422233],[-130.880875,-152.150837,-54.280677],[-130.488113,-141.925300,-50.868020],[-128.250015,-145.182705,-43.926460],[-125.382461,-153.125427,-38.826011],[-126.166641,-138.864608,-19.070991],[-124.483108,-145.744148,-29.239082],[-125.007522,-144.660328,-33.730720],[-124.653458,-155.512203,-36.246940],[-128.017776,-148.865165,-20.365898],[-135.392654,-122.881164,-6.307380],[-135.730423,-110.897133,-0.851074],[-131.886063,-111.645340,-3.064125],[-158.106583,-209.862669,-57.276741],[-162.879959,-204.391233,-52.665550],[-162.998428,-181.341511,-39.185920],[-160.058243,-192.354318,-45.874870],[-156.229324,-218.554519,-61.769081],[-147.087173,-175.446008,-34.760856],[-147.688370,-168.080530,-31.089836],[-146.157425,-179.907384,-36.074883],[-143.820389,-192.915090,-37.884895],[-153.496109,-205.452953,-53.515266],[-149.472488,-207.621812,-50.327354],[-138.908523,-235.128616,-50.884239],[-133.015945,-224.741052,-48.469322],[-129.509476,-219.911623,-48.424415],[-140.520767,-209.793391,-40.768196],[-146.554947,-215.959562,-48.215676],[-134.449905,-214.253904,-42.814247],[-137.794449,-216.667957,-43.042549],[-136.948563,-225.093574,-46.949684],[-152.164688,-209.386635,-54.203498],[-153.303665,-216.981264,-58.257393],[-150.442215,-184.639764,-40.698234],[-148.467056,-186.216669,-40.406396],[-131.867142,-224.801035,-93.257621],[-125.452469,-251.237869,-92.349891],[-124.388870,-245.509018,-83.251945],[-123.716690,-253.380237,-82.543357],[-124.355911,-247.954094,-74.911888],[-130.823807,-233.072159,-95.864006],[-130.065689,-248.058910,-104.928749],[-124.397476,-254.576133,-113.287864],[-121.826492,-260.367630,-115.969765],[-120.350113,-250.056469,-110.297035],[-123.767593,-241.205833,-106.782920],[-129.273514,-245.459991,-107.476020],[-118.010574,-241.584083,-104.885705],[-120.672745,-240.777885,-105.733894],[-118.508987,-208.150404,-88.838798],[-124.796219,-227.764846,-100.304130],[-128.295364,-224.517677,-98.701103],[-127.568252,-235.227024,-103.773002],[-118.694290,-228.040027,-97.690895],[-100.776749,-210.157819,-88.078530],[-99.452530,-221.847505,-93.226814],[-102.928970,-224.251524,-91.865287],[-104.475174,-232.290641,-95.189033],[-109.088394,-229.193702,-93.697654],[-100.500564,-226.988601,-94.432792],[-99.950821,-240.805248,-101.844414],[-102.558182,-237.928589,-98.737892],[-124.201736,-277.701889,-123.642295],[-121.318558,-318.149788,-121.791573],[-120.385086,-346.370254,-126.773567],[-123.107498,-327.713333,-111.352729],[-125.794998,-320.788360,-104.745476],[-129.201492,-314.342560,-98.825477],[-128.940079,-303.140228,-92.063301],[-132.239517,-304.601623,-90.921943],[-130.949417,-292.229789,-82.883781],[-136.658279,-298.534866,-85.666130],[-143.348709,-289.052772,-79.254357],[-139.216690,-282.900497,-74.555915],[-139.303055,-272.169426,-68.386879],[-139.007461,-263.327636,-64.009040],[-142.405105,-254.507202,-60.551292],[-139.231460,-248.479847,-57.183799],[-129.420364,-243.146183,-59.916710],[-126.117935,-239.205494,-63.383964],[-125.745193,-228.115291,-60.994377],[-126.786148,-222.861990,-53.755714],[-128.636429,-235.522670,-57.350883],[-130.599014,-235.971775,-55.650093],[-135.570694,-239.964622,-54.226158],[-136.327408,-244.222782,-55.839576],[-142.471084,-267.221977,-66.182594],[-146.257828,-268.217033,-68.043220],[-149.953934,-274.321220,-73.273521],[-148.101822,-281.310272,-75.585533],[-144.718948,-277.643936,-72.261619],[-148.618667,-291.749565,-82.284538],[-148.410965,-261.589180,-66.361458],[-146.755813,-257.241691,-63.322654],[-149.500137,-255.413253,-64.441002],[-146.576736,-239.075599,-55.067833],[-146.299271,-248.595413,-59.297783],[-142.050064,-234.821926,-50.873634],[-141.121048,-244.152733,-55.211799],[-121.466568,-314.012733,-115.042473],[-122.607315,-303.327789,-106.060036],[-123.856705,-311.176918,-104.932426],[-123.322098,-317.066139,-108.310524],[-126.672623,-311.119888,-99.530647],[-129.094070,-291.737930,-83.785942],[-124.589981,-303.694687,-99.042000],[-123.638138,-300.444969,-100.480446],[-123.165787,-293.400383,-98.899818],[-124.925552,-297.258239,-93.708076],[-124.245499,-286.420883,-87.315452],[-124.534439,-280.576980,-83.558586],[-126.604629,-283.195228,-81.173942],[-124.415115,-255.895553,-90.944984],[-125.360428,-267.037964,-99.565635],[-126.220718,-269.512672,-104.461158],[-126.493790,-274.569702,-111.170479],[-124.573563,-284.862709,-114.874519],[-123.874832,-273.811287,-93.847206],[-123.880752,-261.907661,-90.838554],[-123.366409,-272.332809,-86.030755],[-123.570633,-279.742653,-86.935951],[-124.185928,-270.983978,-79.567071],[-123.690689,-282.514915,-103.431831],[-128.733902,-268.092285,-115.581582],[-128.139297,-264.629013,-116.105187],[-124.548599,-267.283134,-119.333061],[-127.410232,-257.507454,-113.695809],[-128.713943,-252.074634,-110.390586],[-129.710098,-252.939445,-108.193658],[-128.611343,-260.634056,-107.585472],[-128.380569,-257.178566,-104.126488],[-129.166031,-262.585319,-113.174919],[-123.779617,-259.895508,-77.336982],[-124.589981,-260.990776,-74.041069],[-130.000076,-268.536438,-69.761070],[-129.557266,-280.340133,-76.322227],[-125.393936,-249.309852,-68.527000],[-127.107986,-242.228157,-62.493232],[-130.019485,-256.834640,-64.462623],[-127.134781,-257.662121,-68.254631],[-125.283401,-235.723610,-71.395591],[-126.213760,-231.949535,-78.335365],[-127.355545,-224.630182,-77.159141],[-130.350113,-224.428451,-87.662010],[-131.416031,-217.921768,-85.892112],[-126.666763,-217.247621,-69.196145],[-125.901382,-228.257457,-70.726936],[-132.325088,-205.850970,-79.824134],[-129.746719,-200.466716,-69.759956],[-126.471146,-238.909939,-87.486931],[-126.844681,-292.309967,-86.587471],[-166.130447,-290.112976,-99.311653],[-176.974747,-300.126304,-111.896980],[-172.888260,-306.935013,-110.993034],[-179.300491,-310.878296,-118.089013],[-174.701309,-313.709434,-114.934472],[-179.002884,-322.654739,-122.574821],[-191.117081,-327.881241,-126.734413],[-195.484207,-324.423935,-121.424004],[-194.155472,-333.749633,-122.078651],[-197.701492,-324.959259,-106.561439],[-197.340774,-322.944549,-101.243934],[-193.053055,-339.578918,-120.571220],[-188.823440,-350.282028,-124.116738],[-189.612076,-345.199676,-127.569999],[-191.319900,-336.285904,-105.765236],[-193.553360,-338.146484,-116.385521],[-193.577347,-335.760803,-110.159568],[-183.719864,-350.849533,-112.983482],[-188.220718,-342.233673,-108.940330],[-188.589676,-349.020904,-118.599572],[-191.805069,-332.722519,-126.889259],[-183.214676,-314.186790,-121.946464],[-190.995438,-323.891739,-125.112541],[-188.975906,-315.803260,-121.997032],[-182.741043,-322.733314,-125.583442],[-153.250442,-296.905945,-88.312370],[-160.033096,-250.349708,-78.670341],[-164.774856,-244.912052,-79.466941],[-172.434952,-238.378189,-73.040763],[-174.691055,-244.992206,-76.025138],[-169.860367,-251.992878,-84.237403],[-168.102493,-257.090664,-87.935356],[-172.497269,-271.802169,-97.122445],[-174.678055,-285.472854,-104.863900],[-181.396500,-285.541298,-106.518304],[-180.130447,-291.823608,-110.148704],[-182.416397,-299.899566,-114.636024],[-180.547195,-307.525955,-117.615608],[-180.493545,-299.329025,-113.913810],[-183.837540,-289.848327,-109.252083],[-190.908707,-297.800811,-112.833885],[-191.777359,-291.481987,-109.344444],[-202.939896,-282.857269,-99.437050],[-202.302505,-278.811248,-97.286872],[-194.923843,-287.521354,-106.031623],[-198.532669,-276.071571,-95.972802],[-192.761795,-274.075096,-93.020241],[-194.041214,-281.614654,-101.639443],[-189.780960,-286.594848,-106.321114],[-184.078140,-282.568664,-103.464805],[-179.026871,-280.747314,-102.819496],[-174.008438,-276.847038,-100.478096],[-184.967361,-305.225708,-117.469887],[-172.221451,-257.421833,-86.816795],[-177.223831,-275.548164,-98.491890],[-179.845535,-269.522537,-91.024482],[-183.985489,-272.473365,-92.371299],[-170.606216,-261.573875,-90.650871],[-173.501358,-265.836990,-92.435188],[-180.358414,-253.796280,-78.429359],[-185.904373,-251.793216,-73.805931],[-189.677383,-244.066547,-67.412910],[-190.345291,-238.160015,-63.998741],[-191.780899,-229.671344,-62.485680],[-185.940567,-240.357170,-65.124733],[-182.276626,-232.453506,-60.977562],[-177.058487,-218.355959,-55.467095],[-182.523392,-225.245744,-58.235588],[-190.362320,-233.600959,-61.954078],[-188.872574,-228.349449,-60.488166],[-184.481521,-220.298605,-57.917411],[-176.610855,-236.206821,-67.698341],[-181.824356,-239.154346,-65.308601],[-170.749222,-233.035434,-69.988227],[-165.331070,-239.058788,-75.392708],[-165.315872,-263.650390,-89.692054],[-168.877640,-265.184700,-92.908806],[-164.188492,-252.991371,-84.354637],[-161.448563,-245.678417,-78.698296],[-158.331680,-259.325824,-78.868950],[-153.216202,-278.942085,-77.553078],[-158.565384,-288.579216,-88.881279],[-164.288284,-285.436798,-95.739784],[-168.990433,-288.352150,-101.873741],[-172.199905,-286.991691,-103.958747],[-168.649490,-275.232628,-96.658577],[-164.963089,-277.395775,-93.560279],[-159.979751,-279.144119,-87.532249],[-157.460831,-273.441475,-82.057273],[-161.215713,-265.072929,-85.131660],[-171.114456,-274.940445,-98.537269],[-156.056473,-249.812534,-72.966087],[-153.373794,-230.395462,-62.654258],[-194.052322,-243.460834,-68.216163],[-204.572708,-245.231449,-75.355125],[-204.360123,-251.613628,-78.657570],[-193.248306,-247.316330,-70.367820],[-205.680618,-293.926887,-92.999534],[-204.726700,-291.324585,-99.576927],[-201.464981,-309.849983,-108.560707],[-198.731583,-316.660339,-115.208107],[-191.868240,-308.896911,-117.863900],[-196.312698,-308.242622,-115.606239],[-199.153946,-301.681556,-111.101829],[-197.439773,-314.603523,-116.836891],[-172.258072,-368.960312,-101.937980],[-172.878067,-370.569778,-110.290032],[-174.711685,-369.973877,-117.963310],[-177.554581,-362.226745,-116.606147],[-171.720535,-363.296142,-88.179679],[-173.080337,-367.969116,-85.289650],[-173.580582,-360.672790,-78.028633],[-175.565445,-367.448211,-74.668678],[-177.944107,-375.248947,-73.325676],[-177.504288,-372.277481,-66.982461],[-176.428848,-361.957153,-59.999245],[-179.255752,-361.529220,-65.022087],[-178.322098,-358.153076,-67.903923],[-175.240738,-354.323700,-72.474540],[-174.545303,-348.620315,-73.706596],[-176.428543,-333.733169,-66.284294],[-179.881851,-319.786659,-74.109748],[-176.560501,-329.071365,-75.737175],[-172.864578,-357.071380,-79.818168],[-171.651688,-357.580444,-88.053047],[-172.286697,-365.989013,-97.437828],[-172.373550,-361.936294,-96.577079],[-172.984451,-350.318710,-87.028954],[-175.139603,-350.148178,-90.990333],[-179.006424,-343.437149,-87.400032],[-182.602188,-338.745941,-89.704521],[-184.946731,-340.437698,-101.820961],[-180.797378,-346.311950,-98.515098],[-179.100601,-346.480148,-93.523765],[-185.550308,-336.550872,-94.765389],[-180.589737,-349.254730,-104.004936],[-187.736771,-334.414200,-99.147042],[-174.091507,-375.944305,-89.021934],[-176.165359,-376.443481,-80.058526],[-170.502273,-389.015182,-130.232766],[-168.176712,-396.311065,-134.205314],[-169.675918,-390.411758,-126.526069],[-168.710953,-395.606445,-125.091987],[-166.717789,-402.812347,-134.866294],[-174.051041,-351.976425,-131.803979],[-161.760391,-376.356277,-137.963737],[-163.659073,-365.382644,-132.002770],[-157.104141,-362.795471,-126.300896],[-152.254410,-351.045959,-116.487938],[-144.313125,-351.460296,-116.492684],[-148.548721,-343.644897,-111.503411],[-136.147476,-342.170364,-111.376594],[-133.458633,-335.387222,-108.077903],[-130.922623,-337.400589,-109.792687],[-138.170242,-350.233520,-115.464562],[-139.726211,-368.540268,-125.688087],[-146.595718,-359.256775,-121.188424],[-156.191788,-371.659942,-131.752938],[-155.345108,-347.182693,-115.077767],[-156.608475,-352.427978,-118.793938],[-162.613602,-354.376373,-123.516822],[-163.899185,-345.076049,-118.642723],[-156.256790,-331.940338,-106.759437],[-151.022781,-336.207763,-106.984504],[-144.852737,-328.485656,-102.628944],[-141.189590,-318.469803,-98.204338],[-140.905228,-331.559677,-105.358666],[-148.130936,-334.742279,-105.866784],[-144.150223,-342.298095,-111.145882],[-151.173660,-382.040741,-135.694817],[-145.781998,-394.568817,-141.392449],[-152.522537,-397.269088,-144.236809],[-149.519424,-403.536010,-146.585106],[-154.090774,-401.173767,-148.240440],[-150.441910,-413.762970,-153.981713],[-145.841568,-416.343780,-155.049736],[-145.022720,-409.421203,-148.467765],[-148.784561,-412.364959,-153.078149],[-149.392898,-399.991836,-144.333427],[-130.596878,-445.676223,-134.247459],[-129.968887,-453.578369,-151.004539],[-129.279068,-451.490844,-142.380669],[-126.251846,-456.359100,-144.524955],[-127.643631,-455.123993,-149.699241],[-130.042679,-450.603210,-160.437615],[-138.430374,-442.822509,-156.549675],[-135.876175,-444.805389,-135.553399],[-147.302444,-442.319870,-139.587211],[-153.794876,-438.722702,-131.841149],[-156.583694,-436.504135,-133.026741],[-157.218094,-432.924865,-135.046197],[-155.749649,-429.798477,-138.428642],[-128.071915,-446.241440,-163.234581],[-122.815750,-453.272796,-165.972252],[-125.065445,-446.514328,-164.564109],[-114.428726,-446.709930,-159.531335],[-106.274368,-443.635406,-158.829674],[-106.375076,-436.927459,-157.370689],[-108.328201,-430.058975,-155.230431],[-112.592178,-427.468887,-153.537774],[-120.752457,-427.234192,-153.423180],[-129.931473,-430.821029,-157.964347],[-136.186661,-436.264297,-161.291741],[-139.057327,-425.181167,-158.455804],[-138.056778,-413.695190,-151.188774],[-134.167068,-424.944900,-155.947349],[-129.009964,-415.672119,-149.060905],[-119.574661,-407.667724,-145.912347],[-121.505081,-389.566467,-138.829704],[-123.965835,-396.884231,-140.960807],[-130.474686,-400.894882,-141.440483],[-123.437088,-414.691284,-147.610038],[-121.654495,-410.977844,-146.419640],[-120.717483,-423.046463,-151.281059],[-115.842728,-420.561996,-150.807151],[-112.597793,-410.869140,-149.687492],[-109.578567,-421.416244,-153.151237],[-113.184585,-417.799667,-151.120842],[-105.011856,-431.951706,-157.959923],[-123.500198,-446.010986,-164.051323],[-129.764297,-439.428863,-163.045434],[-123.060928,-438.424637,-159.725548],[-119.717178,-432.676941,-155.787713],[-111.007828,-443.827194,-158.021324],[-116.299515,-429.904831,-154.296288],[-116.027725,-438.301834,-156.734794],[-71.023819,-435.742019,-183.095512],[-67.734695,-435.824249,-177.840081],[-67.873611,-427.270492,-173.427848],[-70.850052,-417.165405,-171.310142],[-69.291641,-410.737350,-168.883232],[-66.478470,-411.395416,-168.246239],[-65.292801,-407.057007,-168.301781],[-67.006729,-400.830658,-168.554588],[-64.551041,-436.309219,-174.730767],[-62.070267,-436.749099,-173.269554],[-54.936050,-428.754532,-169.541985],[-51.093277,-425.302795,-173.368278],[-56.133011,-418.885238,-170.566917],[-59.563492,-419.777069,-168.745446],[-59.000809,-429.661178,-169.589898],[-65.332840,-425.299865,-170.379723],[-64.372146,-417.766113,-168.490348],[-54.065689,-419.987716,-172.690514],[-47.052261,-422.427231,-186.897026],[-42.511551,-414.719497,-194.363518],[-45.622940,-409.196670,-193.339256],[-38.762649,-413.407531,-197.613975],[-34.082718,-424.286743,-197.103233],[-37.253799,-436.531265,-192.229698],[-31.401565,-447.291259,-191.403771],[-31.493179,-453.731903,-189.039941],[-26.100540,-440.592361,-196.514184],[-16.781082,-445.823410,-197.960197],[-15.239944,-442.904190,-199.159813],[-11.515823,-447.211242,-199.207145],[-23.964676,-448.403518,-194.867028],[-30.034683,-431.189834,-197.405265],[-18.015945,-429.129684,-200.038903],[-15.591812,-427.745865,-198.060784],[-14.214554,-429.751510,-190.589927],[-23.212723,-412.191955,-182.834923],[-18.265701,-418.463302,-188.791833],[-17.680679,-418.455963,-192.238273],[-22.303177,-435.684051,-198.801628],[-15.965652,-435.957260,-199.822837],[-8.999405,-448.182495,-198.870019],[-7.827347,-458.204590,-201.276329],[-7.202957,-452.922790,-199.287315],[-13.847366,-459.631408,-202.400597],[-19.063003,-462.063842,-201.292596],[-12.930008,-434.612884,-198.283531],[-11.213211,-442.934982,-198.928978],[-14.605484,-427.554001,-193.357109],[-10.452408,-441.299957,-195.852989],[-11.599075,-439.589584,-192.522728],[-14.444839,-438.993835,-186.346184],[-22.548599,-430.764541,-199.949852],[-45.886612,-415.434539,-191.319054],[-60.608597,-406.093826,-172.596061],[-61.104996,-408.104202,-170.670494],[-65.150833,-397.165985,-171.734399],[-54.591568,-410.589950,-180.167260],[-50.001907,-417.195434,-184.430320],[-57.819168,-412.400314,-171.947137],[-45.545608,-436.117050,-175.136590],[-48.533890,-433.655288,-171.910270],[-57.443252,-435.886352,-171.183465],[-45.198257,-441.424408,-171.968499],[-42.646316,-441.194961,-175.335563],[-37.116409,-446.044616,-185.675956],[-35.548050,-444.493667,-189.683433],[-41.063248,-438.395569,-187.496513],[-34.046707,-454.253326,-184.153527],[-40.905899,-445.537445,-173.895744],[-52.600357,-434.023559,-170.419700],[-47.617935,-429.631118,-177.795463],[-48.825882,-423.625534,-181.547508],[-44.660599,-431.154968,-186.235345],[-42.457107,-429.163833,-190.756951],[-11.795425,-468.173034,-210.034875],[-7.651077,-463.512695,-204.973656],[-7.804886,-467.343261,-208.170434],[-9.909988,-479.589630,-216.428155],[-19.926529,-477.871277,-219.036919],[-19.370682,-472.773376,-213.683922],[-14.378616,-484.352783,-222.898124],[-23.947464,-479.446747,-220.027519],[-26.200455,-478.444519,-215.642510],[-33.238968,-484.706207,-220.838554],[-31.018143,-487.641693,-230.832542],[-22.998245,-486.322021,-226.361260],[-29.061661,-484.162506,-223.022483],[-30.302627,-481.169403,-211.760460],[-32.084549,-483.155609,-204.566307],[-35.640579,-489.160705,-208.840294],[-36.120376,-491.152527,-201.225181],[-36.508316,-492.203430,-197.227928],[-34.692154,-484.688385,-185.976097],[-35.610550,-483.811798,-180.177055],[-44.009476,-476.256988,-173.771415],[-50.789078,-478.920990,-176.954430],[-47.789688,-475.101318,-174.368493],[-46.176712,-500.956665,-181.663567],[-39.768631,-495.907898,-180.486779],[-37.752640,-493.573486,-181.825676],[-37.146988,-494.090027,-187.670127],[-36.833572,-483.504150,-178.033745],[-38.467972,-480.559448,-175.920280],[-41.941849,-484.193115,-176.631371],[-46.011795,-493.857696,-178.688652],[-47.489883,-485.867645,-177.292656],[-39.694229,-489.205352,-177.927055],[-42.831253,-500.557159,-181.951957],[-40.659927,-504.537994,-189.611137],[-45.531875,-513.734832,-189.794579],[-40.548843,-511.286041,-196.483665],[-48.262833,-520.608398,-193.350517],[-54.418960,-520.911987,-194.684075],[-47.902664,-532.211609,-200.317436],[-50.751846,-531.294861,-199.766258],[-43.835525,-538.935302,-203.855614],[-42.277237,-545.344146,-203.399620],[-36.576675,-553.717712,-205.569847],[-35.565201,-555.924652,-202.833397],[-48.712784,-524.557739,-196.138909],[-45.515396,-520.344635,-195.136741],[-41.007767,-539.141967,-207.174889],[-44.023209,-533.382110,-203.848350],[-46.742813,-510.127105,-185.841331],[-50.518082,-500.950958,-182.208000],[-51.898880,-495.492706,-181.646386],[-53.935684,-514.377472,-189.551933],[-57.650101,-525.291595,-202.301658],[-51.171707,-515.785125,-189.236718],[-32.946304,-478.207245,-186.412102],[-35.005142,-487.120910,-193.260368],[-35.839249,-471.286560,-175.683739],[-28.676407,-477.258636,-204.712578],[-32.685379,-481.533600,-191.837243],[-30.296158,-475.598968,-192.501182],[-34.436111,-473.728027,-179.100731],[-27.563919,-472.891235,-199.630821],[-24.642715,-474.521515,-210.225608],[-10.437271,-485.001739,-220.230767],[-8.086136,-484.835876,-216.724847],[-15.697952,-439.546371,-172.560967],[-3.827469,-413.203827,-151.961509],[-25.691055,-396.361602,-161.084037],[-23.766617,-405.307098,-163.824700],[-25.593277,-406.309433,-167.346093],[-20.359634,-400.930572,-156.729728],[-14.997269,-402.562378,-153.216027],[-30.779312,-389.379867,-163.542840],[-25.920914,-408.495163,-170.504448],[-37.337845,-382.284378,-181.886254],[-40.754227,-373.445984,-189.765374],[-40.449051,-374.205154,-183.227013],[-41.570694,-371.804321,-193.257377],[-41.653213,-373.963928,-195.963829],[-42.668350,-349.197647,-149.752281],[-40.546158,-349.620544,-147.145500],[-50.031265,-336.521270,-165.930718],[-46.157608,-347.781311,-175.034141],[-44.849686,-353.721634,-179.155632],[-42.792435,-362.661438,-179.276726],[-42.238785,-368.021652,-183.006492],[-40.016006,-367.939270,-169.259483],[-42.204910,-359.430587,-164.867547],[-44.144607,-352.937835,-169.045555],[-39.500687,-373.528503,-175.615227],[-50.900894,-336.620300,-154.546715],[-48.375503,-337.995605,-148.834434],[-46.623184,-336.558624,-145.097375],[-45.303177,-326.155792,-138.341301],[-47.424820,-315.744056,-134.789605],[-42.697464,-296.563751,-121.338708],[-30.680740,-276.180603,-108.661110],[-19.575455,-267.771751,-108.172859],[-14.756180,-273.049263,-111.481254],[-19.103104,-276.291115,-109.222068],[-27.370132,-288.116874,-111.995628],[-30.139664,-297.461128,-114.882072],[-36.139419,-308.365020,-122.092552],[-18.107803,-261.405502,-108.852623],[-34.692337,-285.003044,-112.113518],[-34.751297,-295.472427,-116.053352],[-40.641250,-295.367431,-119.215873],[-43.514847,-308.429779,-127.494530],[-43.121597,-317.329048,-131.384087],[-40.638931,-286.990112,-116.337104],[-44.601822,-289.430648,-120.846229],[-61.560989,-292.970550,-140.775718],[-57.220840,-285.935219,-133.591041],[-53.314468,-285.524734,-129.177497],[-48.688858,-285.056160,-124.376075],[-50.461868,-296.698707,-129.931053],[-49.589676,-303.583282,-131.642952],[-52.458389,-313.278518,-137.901269],[-54.631424,-300.679977,-135.113579],[-57.447769,-280.106552,-132.748314],[-52.813614,-276.647117,-126.707603],[-49.504349,-271.665634,-122.873054],[4.632980,-339.179657,-136.669488],[9.443466,-332.788650,-150.936088],[8.077377,-340.105072,-145.024162],[10.706162,-343.954773,-150.991447],[13.028488,-341.594696,-157.582450],[20.117111,-345.868133,-168.068718],[21.614243,-341.631317,-176.377923],[11.607651,-333.282150,-157.768486],[14.008896,-333.102371,-164.387719],[12.819809,-322.789154,-165.284507],[23.604599,-327.250427,-189.296775],[17.542099,-335.806503,-170.027092],[17.478989,-328.003158,-173.800193],[12.983200,-327.723053,-164.370721],[2.470200,-328.958236,-133.117806],[-7.154495,-313.539482,-121.502403],[-21.598892,-305.061157,-117.226677],[-26.637955,-296.022079,-114.107017],[-18.358353,-294.262954,-113.458320],[-21.138382,-286.623802,-111.150184],[-25.316177,-269.078079,-106.643898],[-14.298172,-309.595451,-118.426262],[-1.033584,-315.914886,-126.516426],[2.935288,-316.952499,-132.718606],[5.315292,-315.222633,-138.790153],[7.591416,-316.447670,-145.086541],[8.338791,-313.728538,-148.008140],[6.737900,-303.424843,-144.322655],[9.524277,-303.731277,-158.337334],[10.362045,-309.283203,-159.275810],[11.622666,-319.890869,-162.248832],[10.717331,-323.647812,-156.160942],[9.703537,-300.536392,-162.830650],[-0.103592,-321.158081,-128.869926],[4.283066,-328.402084,-136.390678],[-0.701553,-336.424637,-129.889000],[-3.733902,-337.780319,-127.859733],[-7.985245,-336.685348,-125.996528],[-7.702530,-325.295715,-123.626916],[-11.658584,-312.838211,-119.669548],[-12.209061,-322.608406,-122.069496],[-21.221573,-321.775375,-122.292442],[-26.039749,-307.340698,-117.711509],[-18.372757,-315.721862,-120.748604],[-16.131485,-332.422058,-124.751183],[-5.520584,-324.653351,-124.492347],[6.428818,-329.857696,-141.797478],[27.434555,-326.372772,-194.930015],[30.530625,-350.573806,-192.872123],[37.646530,-374.338318,-189.537804],[31.957199,-388.251312,-175.566581],[27.687058,-388.905883,-168.488456],[23.007797,-402.829208,-157.895317],[23.616501,-422.519943,-157.417625],[26.122971,-428.960418,-159.416679],[31.584824,-441.801330,-164.441460],[30.609604,-434.926590,-163.351432],[40.388718,-455.567840,-170.997796],[51.301987,-455.291992,-177.874382],[61.010605,-455.926758,-184.602317],[68.039230,-463.537414,-186.976280],[61.769516,-449.963958,-189.224113],[58.541855,-444.806076,-188.676750],[56.927780,-449.094223,-184.531150],[32.548142,-427.483902,-165.492088],[38.606979,-423.467636,-173.142449],[42.450791,-424.169708,-177.986443],[44.172897,-430.406143,-178.527215],[58.814377,-439.183761,-190.809105],[94.579086,-452.088287,-204.095147],[90.902329,-453.541717,-201.816643],[34.506760,-381.242233,-181.694390],[17.746689,-389.169571,-152.955314],[15.653977,-409.467178,-151.284081],[14.890732,-415.373840,-152.172447],[8.595383,-414.813690,-150.684350],[17.286850,-425.184677,-155.159904],[13.056564,-426.174316,-154.636985],[18.454697,-434.936355,-157.988518],[21.966843,-449.128967,-162.026390],[25.978134,-465.519836,-165.215844],[24.145981,-391.461166,-162.493766],[32.023300,-342.278976,-197.780510],[36.485764,-299.578941,-201.795829],[32.242539,-294.616783,-198.890831],[31.741867,-306.206428,-199.449547],[28.267319,-296.804863,-196.405174],[22.456772,-310.505111,-191.820457],[18.816879,-307.993599,-187.906426],[22.025131,-293.683021,-190.349968],[17.042648,-289.374977,-184.780907],[23.858994,-304.804474,-193.147300],[85.839340,-342.765884,-206.743278],[46.615219,-287.362297,-195.325187],[16.310532,-219.512235,-167.945945],[21.429367,-234.354770,-177.820518],[25.560104,-222.850010,-177.038444],[34.459824,-241.630687,-185.537102],[41.121689,-239.226329,-174.741569],[25.854721,-232.622108,-180.934777],[26.934189,-247.053302,-185.779564],[34.312729,-253.672939,-191.350274],[41.353378,-262.324852,-192.651452],[41.662155,-252.062431,-185.423363],[23.595688,-238.513168,-180.940941],[2.755173,-212.517425,-147.143180],[0.493515,-204.016905,-140.182458],[-0.612320,-201.943356,-136.706231],[7.973557,-197.901867,-148.110466],[2.472946,-204.524677,-143.837670],[15.368149,-185.056886,-152.408622],[16.723496,-195.501520,-157.938714],[8.052475,-208.157881,-151.898246],[-0.952347,-216.826593,-138.724540],[2.334824,-223.298561,-150.418297],[0.090927,-220.038810,-144.083459],[-10.125625,-219.848854,-112.928016],[-7.420792,-227.741108,-119.785271],[-11.942764,-241.480102,-116.099342],[-15.514603,-229.135574,-109.533715],[-29.617630,-243.224632,-99.268608],[-26.406753,-257.049011,-103.674386],[-28.920303,-258.628174,-103.462410],[-15.758743,-248.306122,-111.872413],[-9.024124,-253.239616,-120.560615],[-9.213943,-248.230350,-120.308326],[-7.477676,-239.793258,-121.871055],[-9.231583,-242.080616,-119.495155],[-20.956863,-251.213325,-106.724480],[-10.046219,-226.756712,-114.342903],[0.806503,-261.003402,-148.877617],[1.324326,-267.785202,-148.494683],[-6.282181,-300.630119,-120.494103],[-10.431717,-291.874710,-116.044152],[-9.871841,-287.506569,-116.111581],[-57.048050,-309.616157,-140.789177],[-59.746536,-309.720718,-144.502037],[-83.039261,-294.924011,-173.394035],[-81.673904,-302.581794,-174.785393],[-84.368301,-302.844024,-166.465142],[-82.408829,-306.650314,-171.406395],[-75.735733,-338.224456,-174.391044],[-87.403458,-299.202614,-134.202064],[-80.080215,-325.323135,-167.689232],[-78.855362,-337.537841,-162.316520],[-77.948501,-344.043869,-162.221061],[-76.780838,-351.656067,-164.174522],[-74.522964,-351.410171,-174.728843],[-72.728714,-361.512710,-175.951896],[-65.054275,-369.016235,-183.912681],[-56.642898,-367.554123,-192.055566],[-70.239700,-359.581878,-180.425164],[-81.274490,-369.095199,-160.446891],[-85.170425,-364.266876,-158.554405],[-82.725845,-374.459625,-162.481346],[-79.044754,-383.341613,-165.114738],[-78.176956,-394.255478,-168.166710],[-75.189834,-405.467651,-170.010795],[-74.980850,-412.617569,-173.499351],[-81.629227,-388.536651,-167.764275],[-87.098404,-371.517822,-164.199517],[-90.474502,-377.086105,-178.063346],[-87.940079,-380.051300,-176.931237],[-89.291519,-385.487121,-185.320427],[-86.954178,-388.756668,-185.484032],[-86.974502,-378.912292,-169.591240],[-85.840591,-387.590316,-177.298545],[-84.546036,-375.044525,-163.568748],[-78.013382,-369.840988,-161.893852],[-74.664688,-368.717163,-165.801446],[-71.494278,-379.065399,-169.809379],[-69.313248,-387.689438,-170.157647],[-64.701004,-389.672302,-177.018699],[-53.391739,-399.573333,-187.997948],[-61.558243,-384.989074,-183.407799],[-59.279678,-371.415786,-189.403373],[-56.616836,-382.026916,-190.217309],[-65.076858,-362.270919,-185.235161],[-52.438553,-382.133026,-194.382377],[-47.769302,-381.855880,-197.158805],[-42.579971,-395.063644,-198.485984],[-43.797134,-382.488739,-198.266411],[-39.076065,-385.509613,-198.929192],[-26.420486,-400.986648,-197.674186],[-31.706436,-390.312271,-195.458519],[-48.617752,-391.270797,-195.640831],[-43.839126,-404.641403,-196.661216],[-39.615250,-401.733856,-199.008691],[-33.156631,-413.878311,-199.695061],[-52.009109,-392.592102,-192.000389],[-51.813797,-376.399841,-195.302269],[-65.419266,-382.695282,-179.106560],[-68.379654,-380.336456,-175.609001],[-70.318313,-369.265152,-177.859124],[-82.939529,-313.325432,-162.088189],[-74.153519,-397.379196,-167.786919],[-77.296524,-379.439560,-164.099022],[-74.169144,-380.086868,-165.772668],[-86.851822,-399.708130,-196.460442],[-73.701797,-428.638061,-209.262230],[-79.007645,-424.621429,-212.774560],[-76.921402,-419.089508,-207.380578],[-80.381973,-413.858596,-206.493003],[-85.760635,-421.876037,-211.562249],[-99.203201,-421.938751,-209.545036],[-104.148086,-415.570984,-204.490440],[-110.977554,-399.640045,-191.657249],[-111.117203,-396.097702,-192.031486],[-111.310867,-388.313446,-189.584556],[-108.568741,-394.761367,-193.835411],[-105.855545,-391.936279,-193.304130],[-100.810135,-390.884445,-192.656792],[-90.667740,-399.474533,-197.024589],[-83.583206,-413.579986,-206.892449],[-89.485245,-416.900833,-208.469413],[-101.252029,-411.682037,-203.352349],[-98.633194,-403.760818,-199.702294],[-107.222305,-383.906524,-188.758628],[-113.485733,-377.818542,-184.594872],[-115.283401,-373.270782,-181.740929],[-116.532425,-374.631271,-180.564354],[-108.772659,-387.811630,-190.567742],[-117.959793,-369.200409,-176.511985],[-117.461563,-366.164612,-177.028282],[-115.408157,-364.862701,-177.080864],[-110.994522,-373.070511,-182.645317],[-120.017776,-358.500213,-171.338616],[-119.126785,-358.008926,-172.468590],[-121.135025,-351.985092,-167.633049],[-120.878616,-344.849746,-164.667442],[-118.326370,-344.960830,-166.714836],[-115.820389,-352.426971,-169.651603],[-112.029556,-360.614776,-173.972343],[-105.023758,-354.643219,-167.618187],[-103.157852,-365.875686,-176.482261],[-100.376297,-363.730438,-173.866050],[-120.571609,-345.072708,-161.160331],[-119.055801,-358.783630,-162.648278],[-119.591446,-349.879730,-159.910514],[-117.240494,-350.526458,-146.415978],[-117.966690,-356.363434,-154.787895],[-116.910232,-363.984573,-157.030296],[-119.088821,-365.394516,-170.752952],[-120.516006,-354.660370,-165.008812],[-75.151443,-420.203659,-203.941093],[-94.469864,-388.427490,-190.064995],[-105.313919,-379.564102,-186.117668],[-107.065689,-369.839401,-180.318565],[-107.438431,-285.023346,-120.751381],[-108.396622,-277.326637,-117.728355],[-107.243057,-274.252609,-115.720253],[-99.428360,-291.066162,-121.705543],[-83.576919,-142.520572,-103.590110],[-90.650650,-145.528846,-107.624824],[-83.219803,-130.237365,-95.669288],[-86.143692,-112.017036,-82.882255],[-77.410171,-104.526916,-83.239097],[-73.590591,-96.728111,-81.438392],[-67.514114,-97.266685,-87.134483],[-79.651626,-98.180961,-77.865974],[-61.461136,-94.935226,-90.224800],[-55.778213,-93.378135,-92.579933],[-52.187759,-92.093048,-92.753639],[-44.960464,-68.802810,-81.597161],[-43.930679,-63.958023,-79.372918],[-48.023636,-65.011612,-78.214303],[-51.148392,-61.241974,-72.459404],[-61.522232,-110.627388,-98.763816],[-58.356766,-113.425491,-101.904655],[-49.601761,-120.263015,-100.515419],[-46.100967,-113.017296,-94.806221],[-47.390579,-106.079017,-95.465843],[-44.742325,-99.616844,-91.637733],[-54.192459,-115.469886,-103.480415],[-51.451187,-98.221862,-95.705558],[-47.580398,-92.493187,-92.353982],[-47.547317,-84.936783,-89.404029],[-52.163467,-108.168083,-99.955804],[-58.499466,-96.892860,-93.296669],[-56.266922,-115.946273,-103.902382],[-54.960220,-107.526413,-100.051826],[6.785507,-37.690658,-62.261696],[-4.589737,-41.797928,-51.784965],[20.565903,-71.485542,-96.185234],[31.472641,8.091919,-34.373146],[32.431748,3.814301,-32.298012],[37.447434,-5.661544,-33.193672],[40.231613,-10.719574,-35.781303],[37.071640,6.644501,-27.238473],[39.771774,4.044083,-28.152504],[39.030686,19.851456,-19.798515],[43.159470,7.102524,-27.019204],[49.081894,18.873596,-24.201088],[54.238693,3.121674,-38.014488],[59.457687,8.891678,-38.488243],[61.879379,9.372666,-39.635139],[34.613205,5.811356,-28.805015],[32.877670,20.774384,-23.412835],[32.895798,13.753571,-26.885856],[35.546860,-4.420776,-33.151635],[32.978562,-7.269958,-36.219902],[26.149338,7.555390,-46.927757],[29.458664,5.507355,-44.839424],[28.585312,-4.244903,-50.620155],[26.187241,1.510834,-50.416160],[23.531906,3.275482,-50.121406],[22.981979,-4.086227,-54.662681],[23.565842,-10.456283,-58.292060],[26.605087,-7.785278,-55.399635],[30.419602,-23.706924,-47.781318],[31.609848,-23.873779,-45.300483],[33.173691,-30.818924,-47.127679],[30.755478,-38.972915,-52.735756],[29.482346,-29.047836,-57.669593],[29.517990,-16.378051,-53.205345],[31.079147,-13.195282,-41.314384],[29.120468,-17.137680,-57.283302],[26.190231,-13.709030,-59.490028],[27.741196,-14.285034,-58.417366],[24.550156,-20.662445,-64.690300],[26.323410,-31.253830,-71.343041],[28.971542,-35.223343,-71.357048],[28.990219,-40.118728,-73.875465],[27.544296,-49.781143,-81.921989],[29.253586,-64.527984,-85.367576],[29.368271,-53.898727,-76.305473],[29.228195,-65.554855,-76.333152],[29.611679,-74.461654,-71.938087],[29.489060,-64.074432,-81.063682],[29.560043,-64.894714,-66.876289],[29.519760,-57.432876,-64.801002],[29.544357,-50.546386,-66.234153],[29.394882,-36.855346,-63.776664],[29.340134,-43.194732,-72.807090],[29.272141,-30.641449,-66.996040],[29.366684,-24.972442,-61.290077],[29.915573,-35.384735,-57.609199],[30.061325,-36.953537,-53.606727],[30.494797,-56.158813,-60.449196],[29.817185,-46.827850,-59.078636],[28.412644,-60.394821,-86.879387],[29.120102,-49.975891,-78.618660],[28.280747,-30.811432,-69.751930],[27.987412,-41.071289,-76.543312],[32.864365,-47.385528,-54.600471],[30.702866,-47.814041,-56.723350],[32.981857,-19.384369,-41.935661],[32.839157,-0.626434,-33.447197],[30.632919,5.436737,-40.677467],[30.161057,-4.934890,-45.300254],[31.303940,-108.118499,-80.608696],[49.305527,-101.598983,-85.403892],[56.905136,-95.173065,-88.329918],[66.095139,-89.833343,-86.481820],[64.027695,-89.304054,-87.229760],[59.690415,-102.058914,-91.511802],[56.569687,-107.334099,-92.610512],[54.822556,-99.496872,-89.345543],[30.017807,-95.736274,-84.511161],[52.840683,-214.607206,-98.962898],[53.308945,-220.197624,-103.005836],[52.713364,-231.061313,-101.970406],[54.429855,-220.871231,-95.618279],[52.964951,-221.245529,-99.456581],[92.441025,-205.759195,-103.731727],[96.816269,-192.025584,-101.946174],[101.945480,-202.354223,-107.117179],[97.735153,-201.509465,-106.265175],[95.053574,-209.673048,-107.935997],[89.393356,-235.485248,-112.674400],[89.016220,-247.263191,-115.555717],[82.754990,-248.072826,-109.494712],[71.259201,-248.079830,-103.048913],[71.153122,-265.927421,-108.873237],[66.659348,-264.036377,-107.944511],[59.872177,-268.659080,-110.128425],[68.213669,-277.473205,-111.528968],[66.275192,-248.247127,-102.375511],[62.763168,-244.349216,-100.766197],[68.622666,-239.742744,-99.332878],[60.518234,-232.421695,-96.708015],[57.409042,-241.282901,-100.708290],[53.384567,-235.616066,-101.963340],[52.917343,-247.695392,-106.733955],[56.169235,-244.755977,-118.801491],[58.028854,-239.458473,-118.993827],[57.343796,-239.770134,-122.073937],[59.114426,-232.632354,-118.101661],[54.534958,-229.298759,-108.455208],[55.270554,-218.624170,-107.975608],[52.553452,-230.349743,-104.256324],[59.576340,-202.365426,-115.386070],[53.057419,-247.158718,-112.264595],[59.646286,-248.617332,-103.093666],[72.461777,-237.675827,-99.477302],[75.330856,-245.503349,-103.356301],[76.868820,-228.347900,-98.288612],[80.802475,-231.105758,-101.980888],[81.954025,-242.367752,-106.823205],[79.209458,-247.137962,-106.108421],[91.141647,-271.702827,-121.297874],[86.583298,-264.079002,-116.822105],[89.663925,-265.975708,-119.602729],[93.563461,-258.000751,-119.474540],[102.098007,-253.611870,-115.836816],[112.020249,-278.255279,-112.493721],[118.908798,-268.321792,-104.081230],[105.861191,-244.075500,-113.078240],[92.446762,-250.021457,-117.937356],[97.189072,-249.600170,-117.784875],[76.933884,-330.411880,-140.295982],[72.195725,-328.104797,-139.997948],[67.322434,-329.234848,-139.528680],[67.908615,-326.323730,-140.800438],[77.380417,-322.181198,-144.001885],[84.305893,-317.353286,-146.257286],[80.774765,-319.761688,-144.836937],[66.706162,-329.242843,-136.428765],[70.130661,-324.196472,-133.391122],[64.048630,-321.188263,-132.979851],[63.256638,-323.791549,-138.216392],[63.369187,-319.556282,-139.564843],[60.965195,-309.864380,-139.433648],[58.085251,-312.519249,-138.079430],[49.205429,-303.603164,-135.143943],[49.309006,-305.432861,-132.295509],[53.871872,-309.626335,-130.765876],[47.336777,-296.899841,-126.573433],[43.165817,-288.209678,-128.295463],[43.172653,-288.020462,-135.448722],[40.952377,-276.810951,-136.492851],[49.524338,-283.466400,-138.936973],[51.974594,-279.092766,-140.887931],[41.182663,-266.409507,-149.433892],[42.219772,-273.250854,-153.778465],[38.546860,-275.967788,-158.452965],[39.006943,-290.483391,-170.615959],[38.274582,-285.084533,-171.277855],[34.813706,-266.070419,-157.462272],[37.628403,-280.827064,-164.321282],[35.985214,-274.931373,-164.618066],[34.731369,-260.319450,-151.021722],[41.421066,-263.060020,-145.449760],[42.630539,-265.217109,-140.929893],[43.593552,-268.288917,-139.648491],[44.975327,-272.235580,-139.045006],[37.908737,-275.841049,-131.589790],[47.380478,-280.423683,-123.832557],[48.605942,-286.945633,-122.848091],[51.858139,-297.125740,-123.399575],[52.762375,-288.610458,-119.428215],[51.072861,-281.328155,-118.171334],[49.438522,-276.706894,-119.042214],[52.140122,-267.218521,-113.176414],[48.911789,-265.451675,-122.865348],[44.756088,-270.873970,-125.730690],[42.611679,-261.063354,-126.413536],[35.511154,-244.629749,-124.513084],[37.882431,-224.053074,-121.543511],[33.043015,-224.866625,-121.389427],[34.554001,-230.373840,-122.082161],[31.739060,-242.641338,-124.620018],[26.976242,-231.186279,-128.514000],[31.277146,-249.618206,-127.536430],[33.401718,-257.271980,-129.595298],[36.135605,-260.976822,-128.189751],[37.349533,-267.776024,-129.644387],[34.890976,-263.304420,-131.180336],[38.883164,-262.868805,-137.987572],[35.739914,-264.373916,-134.109733],[40.109238,-267.574356,-137.280296],[40.305710,-276.812774,-129.218788],[31.841049,-253.702602,-131.413445],[31.699082,-248.986366,-135.542779],[38.063767,-273.712661,-134.585319],[39.144028,-280.269111,-134.401360],[28.922470,-229.872665,-123.752449],[31.521347,-232.644153,-123.044563],[50.439072,-262.332359,-117.214790],[48.462204,-259.876892,-124.617561],[51.776779,-255.730915,-123.648216],[46.649521,-250.998718,-125.804725],[41.665146,-248.551773,-125.674324],[54.041306,-240.898616,-126.360985],[55.206589,-243.387760,-125.652870],[57.093491,-227.081127,-123.966195],[56.518784,-212.545347,-122.819572],[57.009445,-199.836023,-120.611656],[59.123398,-206.968641,-120.524193],[54.515366,-249.304271,-123.885902],[54.482407,-250.274570,-120.059272],[49.126022,-254.888660,-125.281211],[50.133774,-261.339454,-121.861686],[52.631821,-259.925232,-110.352914],[61.308090,-264.305633,-108.413154],[66.035751,-256.070457,-104.982552],[56.590012,-256.757301,-106.416755],[53.368576,-255.278202,-108.146537],[51.861069,-255.231456,-113.021064],[52.645432,-253.013939,-116.150795],[59.659226,-254.093925,-104.645501],[49.743454,-268.878730,-118.096184],[61.805832,-321.380241,-134.982383],[56.704025,-314.068268,-136.043877],[54.611130,-311.981506,-133.813865],[65.740341,-316.389633,-129.481880],[71.955551,-316.022621,-128.223655],[59.989243,-317.568290,-132.534004],[36.894028,-257.249992,-143.849815],[33.626145,-258.067768,-133.460289],[48.255173,-272.523575,-141.815971],[39.827561,-283.864883,-131.639000],[50.523666,-303.252693,-135.970666],[46.023666,-295.755417,-135.348625],[62.047104,-286.255127,-144.925895],[53.603439,-280.549492,-153.856498],[44.935715,-279.095077,-156.045525],[48.170700,-289.594131,-159.966301],[43.580246,-296.773651,-166.198144],[42.780686,-299.281219,-169.186546],[47.127182,-303.115600,-168.040214],[50.058701,-310.370971,-171.507530],[52.771591,-311.391243,-170.341881],[58.125534,-319.333313,-173.368522],[61.577927,-311.674736,-168.041466],[64.369125,-319.474937,-171.570916],[65.695969,-310.538322,-166.092155],[74.193283,-318.230674,-166.982598],[78.368820,-318.708038,-165.119407],[50.878403,-302.701782,-165.502679],[62.188339,-302.909416,-162.288720],[66.538559,-300.633728,-159.683922],[60.359360,-287.416351,-154.850701],[47.366989,-295.140541,-162.387444],[55.227585,-299.708564,-162.148705],[60.032761,-297.336075,-160.521934],[55.930100,-287.096428,-157.382317],[67.681259,-293.745056,-147.895378],[74.828232,-302.687317,-152.631524],[75.328476,-305.388267,-156.285087],[81.252243,-312.650352,-157.617759],[84.430649,-318.863517,-159.036584],[87.893967,-317.860412,-155.127923],[85.729050,-313.815094,-150.484460],[92.357895,-323.084846,-148.048852],[91.907639,-327.826126,-146.511467],[89.708847,-336.322815,-146.292168],[87.150375,-344.345230,-145.774284],[108.676987,-347.103592,-146.795829],[109.676499,-353.038437,-144.269860],[100.659836,-345.147888,-145.128227],[106.861679,-352.863693,-143.165276],[84.110642,-332.637893,-145.654319],[73.625900,-326.157501,-142.687585],[80.937851,-310.952278,-147.067466],[87.592819,-323.830871,-145.762017],[70.645798,-307.954628,-162.549370],[68.984116,-296.914985,-153.805810],[69.182663,-299.658477,-156.905053],[55.946091,-304.741424,-164.421165],[57.490524,-281.668571,-149.966056],[70.904038,-316.557151,-142.316948],[81.011582,-337.979217,-144.544700],[76.524399,-331.024398,-143.545251],[86.776840,-363.446594,-140.206566],[86.319321,-363.031021,-136.228141],[84.553757,-357.913299,-137.527183],[84.131333,-359.357635,-139.193169],[111.587021,-422.986145,-159.585655],[108.651596,-439.354995,-149.430566],[116.481064,-517.811248,-103.387321],[118.123337,-520.395202,-102.765449],[115.832993,-525.119873,-101.801018],[117.710007,-529.109039,-102.533775],[114.672470,-531.550567,-100.783639],[115.571091,-517.582855,-105.201271],[111.729538,-522.185974,-113.471290],[114.232102,-516.164306,-112.782417],[119.639328,-512.087524,-104.723030],[123.615585,-529.765625,-106.636863],[124.978623,-538.418518,-108.288032],[124.827561,-542.507477,-110.911248],[116.376999,-536.248840,-103.848716],[83.857895,-583.403839,-104.246590],[78.048325,-574.658996,-93.579292],[75.093430,-570.959747,-92.436836],[74.369370,-571.482544,-88.405128],[67.319931,-558.482544,-90.856392],[59.875961,-543.870331,-98.256401],[53.516770,-529.265686,-102.572624],[54.228439,-518.359131,-113.233680],[55.001877,-527.481140,-110.356652],[63.281662,-545.709564,-103.513954],[67.300400,-553.473846,-99.791389],[72.756577,-554.009491,-98.069755],[72.768967,-557.838195,-97.689415],[73.844101,-560.451873,-101.606315],[74.999008,-563.218567,-104.356179],[74.946396,-561.877014,-97.763313],[80.464035,-582.054107,-107.550041],[85.072128,-579.019134,-99.084069],[84.739304,-575.055023,-95.767021],[81.625534,-571.043762,-94.227775],[81.083176,-572.575592,-104.088326],[81.826584,-571.055572,-98.986458],[70.447617,-563.583557,-92.496040],[67.685532,-557.894165,-96.166787],[69.907517,-557.753296,-96.865257],[73.739365,-561.323822,-95.733513],[72.048020,-563.867004,-94.346702],[79.284592,-567.043945,-94.493126],[81.927536,-569.294708,-95.680580],[75.513962,-566.729980,-94.054192],[64.691635,-551.807556,-98.967521],[56.414841,-532.838684,-107.827568],[57.347397,-537.971832,-103.089776],[59.834641,-536.615143,-107.096199],[66.208176,-555.297760,-88.640922],[71.320297,-565.029693,-84.442421],[76.550095,-575.764312,-81.530677],[76.163315,-576.060058,-85.685279],[90.456894,-590.143982,-79.609871],[92.812790,-592.991760,-76.462440],[94.155502,-592.621734,-83.044044],[78.626633,-575.259765,-62.305352],[75.009750,-568.868286,-72.034141],[71.791245,-561.179901,-76.190971],[72.846420,-550.806518,-77.037223],[70.528366,-561.647857,-81.782905],[68.499375,-555.949310,-82.688240],[74.811630,-565.298217,-68.642006],[84.393784,-585.134948,-71.143440],[82.121994,-590.913971,-87.229225],[79.609909,-583.444153,-83.912025],[80.394455,-588.433258,-89.438148],[75.894028,-574.539520,-91.203895],[81.496933,-589.613434,-96.800651],[78.043808,-582.365265,-91.927696],[83.499436,-635.135467,-114.166267],[79.639023,-621.878753,-95.466927],[85.020981,-628.840545,-85.624580],[85.125595,-631.485016,-90.271446],[106.807785,-646.569580,-18.643318],[108.358688,-647.868622,-26.298713],[109.867661,-651.292785,-16.026466],[103.473129,-640.269684,-32.500419],[115.709213,-668.338226,-68.249932],[106.662583,-666.777160,-91.438011],[107.708847,-664.476654,-83.829277],[97.765976,-650.027130,-82.517235],[100.198715,-658.223785,-93.366539],[93.789658,-646.910736,-88.650825],[94.678696,-651.704101,-97.422416],[93.581589,-651.802398,-102.644416],[90.406784,-647.138702,-106.582223],[87.486801,-642.921081,-112.043068],[91.417893,-652.768707,-118.826316],[89.496872,-649.348694,-123.106133],[84.525375,-638.355072,-121.770164],[83.200668,-635.835937,-138.285270],[76.713669,-623.223633,-149.222343],[78.231918,-624.720855,-141.781426],[72.820908,-612.874145,-148.838310],[71.744309,-606.340576,-132.877021],[68.425339,-589.762939,-131.541482],[65.430954,-580.109832,-148.525291],[76.812485,-620.015716,-119.159568],[81.099716,-630.220337,-131.851936],[76.735092,-620.068298,-133.088386],[103.038254,-656.512878,-80.576256],[134.684677,-726.155548,32.542260],[148.284165,-731.899749,4.529717],[162.361801,-794.882110,-70.194131],[172.032761,-794.892730,-40.900428],[171.947312,-788.302520,-41.037300],[150.788010,-794.886871,-95.615242],[161.221787,-794.847809,-110.129235],[159.306442,-794.900665,-119.898156],[156.799973,-786.986419,-129.153343],[157.735642,-794.812286,-127.763740],[158.879501,-794.873260,-113.492363],[159.340012,-789.785186,-118.240776],[162.699204,-780.959320,-97.843650],[164.685593,-773.892303,-84.413261],[165.274399,-772.063141,-80.377983],[167.985825,-772.609588,-66.406547],[167.107773,-771.403900,-65.625038],[168.607041,-771.731659,-58.648246],[165.736069,-769.816131,-43.122704],[167.549912,-771.258392,-44.235145],[167.204880,-771.122223,-35.436042],[167.758896,-771.035736,-26.491798],[162.845261,-764.641327,-26.641030],[163.708237,-761.954986,-14.104210],[168.842026,-766.292267,-3.886535],[166.442490,-762.965912,-6.652580],[168.734116,-761.847015,2.746025],[163.149887,-756.756622,-6.708686],[162.582260,-752.365204,-0.920280],[158.223190,-754.951202,-26.998436],[159.887314,-752.139251,-46.838752],[159.419113,-744.643524,-61.531364],[160.330917,-752.962555,-71.623664],[158.685715,-759.020599,-83.616906],[150.407944,-739.427520,-86.581382],[153.872360,-745.359710,-84.566948],[155.694321,-740.623077,-74.413795],[157.589340,-749.287689,-78.093941],[153.890122,-759.582733,-95.746818],[155.788742,-766.980926,-97.307335],[153.357956,-768.876617,-107.997261],[157.325302,-758.813263,-87.680641],[160.544541,-767.808441,-81.598777],[161.193833,-757.589019,-70.929435],[161.090744,-753.752960,-63.589821],[161.688217,-758.725738,-53.455223],[162.722519,-769.920929,-73.397301],[163.688034,-772.758209,-88.187538],[162.632370,-771.656707,-88.644127],[161.513413,-772.129059,-97.509864],[160.095017,-772.206573,-103.698860],[159.862229,-773.556060,-107.617927],[157.784836,-772.649994,-114.521310],[157.572922,-774.485748,-118.991479],[160.652512,-778.463653,-106.975731],[157.907028,-766.240692,-90.682731],[158.346787,-769.883575,-92.477455],[155.839707,-770.426178,-102.327964],[159.361801,-771.134369,-95.631126],[165.294296,-778.945587,-83.044822],[166.945480,-771.613128,-70.599586],[163.885300,-769.681244,-64.566017],[164.296921,-769.564117,-61.719429],[162.602768,-764.444732,-61.078819],[160.420273,-770.298065,-85.570732],[161.512741,-766.049652,-74.464759],[161.652207,-758.430328,-62.957847],[161.640671,-760.860382,-40.372276],[162.917954,-765.103851,-33.854087],[163.118027,-764.693145,-52.212654],[160.984848,-757.572174,-44.685737],[156.393417,-749.835663,-27.283974],[158.384201,-753.490204,-35.514427],[157.568344,-745.915069,-40.592582],[159.265793,-743.380035,-52.833458],[157.768295,-739.833526,-63.379112],[157.971787,-744.503875,-71.555931],[156.005539,-737.229339,-67.319694],[157.765061,-738.507782,-55.776603],[154.646835,-732.100494,-59.582482],[149.953415,-723.552581,-49.568612],[155.533127,-743.361847,-33.007835],[153.915268,-736.631988,-36.274406],[149.351730,-726.235626,-34.184608],[171.496628,-772.265716,-38.613273],[172.312790,-773.839203,-38.981926],[172.130173,-779.719452,-40.268058],[171.294846,-772.574676,-44.323585],[169.800949,-772.251007,-53.652351],[169.369492,-784.508575,-57.783806],[173.275986,-774.149139,-32.293724],[173.757370,-772.928558,-26.205452],[169.897141,-774.306427,-54.787071],[165.615158,-770.429229,-50.727546],[56.558334,-794.936310,-160.247062],[-250.154678,-769.592376,-7.414024],[-256.024917,-794.885406,-62.119866],[-254.217361,-768.675934,-74.105888],[-245.314590,-761.820465,-70.090080],[-246.521988,-765.204864,-64.236946],[-244.488663,-761.097198,-59.142768],[-245.937942,-765.878997,-50.461158],[-246.547806,-766.021942,-59.193398],[-242.972977,-756.772857,-56.916191],[-242.294388,-755.126983,-63.997017],[-244.079300,-760.511505,-52.102134],[-245.422378,-764.794952,-42.714317],[-230.823440,-734.867340,-78.186027],[-232.660354,-758.743255,-115.460884],[-225.517654,-754.074066,-124.438042],[-226.034561,-748.452606,-119.418252],[-220.382522,-750.446869,-132.173867],[-215.146072,-749.108795,-141.213860],[-211.309524,-747.720306,-147.111503],[-175.372024,-758.753448,-200.284324],[-159.853042,-746.602203,-204.487266],[-153.289322,-745.429352,-208.970115],[-146.799759,-755.608917,-218.608207],[-141.879715,-749.011200,-217.935691],[-139.905411,-755.659210,-223.368157],[-137.232559,-749.698150,-221.168725],[-127.965774,-755.362762,-229.179374],[-117.150711,-747.866913,-228.425193],[-110.219070,-742.665435,-226.557183],[-108.621841,-752.637481,-233.631707],[-101.182327,-741.338104,-227.310569],[-81.134903,-732.379669,-225.922966],[-95.005875,-731.578033,-222.600914],[-102.060257,-723.254791,-216.839043],[-81.565140,-736.418731,-228.097252],[-103.852676,-734.880951,-222.215508],[-110.539627,-727.978180,-216.987632],[-113.731888,-736.846771,-221.058616],[-95.489273,-737.487091,-225.866111],[-132.601272,-772.279571,-244.112541],[-132.849563,-773.260589,-245.617179],[-122.349380,-779.163543,-247.516167],[-68.905105,-772.667022,-254.687034],[-71.195084,-773.859100,-255.121177],[-83.507217,-773.425018,-253.399284],[-79.898453,-772.456268,-252.402398],[-79.198929,-774.390533,-254.007989],[-113.440445,-773.566864,-249.063133],[-106.792007,-778.058075,-249.877434],[-104.336563,-773.111847,-250.169334],[-100.660721,-772.174102,-248.711082],[-98.714981,-773.065094,-250.699760],[-94.917251,-776.543182,-251.710869],[-92.896194,-772.798736,-251.319054],[-89.173111,-771.311126,-246.921197],[-69.472549,-764.131500,-246.943657],[-86.720718,-762.222442,-244.228935],[-70.749466,-760.068023,-245.022819],[-56.608780,-764.951996,-248.731042],[-46.142288,-759.551056,-247.145042],[-41.904495,-757.221222,-246.854485],[-40.134964,-764.287384,-251.402122],[-20.984146,-755.195343,-248.095024],[-30.183975,-738.608673,-236.484672],[-17.014969,-740.591095,-238.096061],[-8.688187,-743.309906,-239.059350],[-5.844253,-712.578094,-231.586724],[-15.407913,-712.164459,-232.215995],[-21.664322,-743.536407,-240.104637],[-16.942459,-758.154510,-250.150689],[-7.417923,-758.600494,-248.955680],[-3.141983,-754.261505,-245.891197],[2.659470,-744.461273,-239.389855],[-2.609390,-746.155426,-240.163841],[-14.357010,-747.366180,-242.800102],[-14.265030,-754.138641,-247.308129],[-53.068924,-759.225982,-246.011802],[-67.532242,-757.043609,-243.643791],[-55.898636,-753.463958,-243.374139],[-50.983292,-746.001007,-240.519311],[-50.493729,-740.134857,-237.460838],[-37.979080,-746.121734,-240.575004],[-34.443436,-731.450409,-232.642753],[-19.555069,-736.137909,-235.880027],[-11.957413,-726.686493,-232.949456],[-11.231460,-733.134918,-234.800102],[-88.145767,-769.568634,-245.846214],[-96.801285,-761.798248,-242.619926],[-99.109451,-765.083282,-242.968163],[-110.843826,-770.006866,-240.643516],[-121.074295,-765.575042,-235.667747],[-122.082229,-769.424896,-237.204583],[-127.210342,-771.074676,-237.460351],[-110.985428,-760.313690,-237.044060],[-92.733780,-770.250824,-245.143333],[-99.635879,-770.182953,-243.813438],[-106.312454,-769.206817,-241.839898],[-106.489273,-771.305267,-243.364250],[-95.967422,-771.372833,-246.127037],[-115.879288,-772.045807,-246.874382],[-120.757217,-772.632293,-247.401269],[-124.779556,-772.023224,-245.500419],[-123.281143,-774.086273,-247.543633],[-94.853653,-754.074798,-238.893516],[-88.491104,-748.831573,-235.561913],[-88.555618,-742.852752,-231.705345],[-94.538711,-748.704559,-234.051263],[-102.531998,-760.431610,-240.746696],[-99.773209,-756.604278,-239.605552],[-110.693313,-754.995392,-234.555412],[-116.091446,-759.332061,-235.051231],[-103.509048,-748.100555,-231.262565],[-74.836014,-755.593109,-241.956811],[-70.700333,-750.541168,-239.884728],[-78.921707,-743.310089,-234.295586],[-80.071365,-749.840301,-237.122857],[-81.974747,-754.807831,-240.393914],[-67.955948,-744.321685,-237.625389],[-58.259964,-739.128753,-236.436822],[-60.354202,-731.075714,-231.583550],[-61.778152,-712.651397,-223.464317],[-61.709488,-718.544037,-225.271294],[-55.044205,-731.082489,-232.214379],[-55.944778,-724.175689,-228.936669],[-56.209976,-717.322540,-225.981834],[-37.112930,-710.889801,-228.744133],[-20.561417,-718.692291,-231.598442],[-13.918167,-722.613495,-232.341973],[-18.681290,-708.424408,-231.688897],[-22.416336,-694.357269,-226.501031],[-26.380264,-710.366180,-231.084983],[-32.765762,-702.362243,-227.911796],[-37.690384,-689.836487,-222.088890],[-43.096573,-706.696685,-226.268669],[-33.122085,-690.145202,-223.335869],[-27.179520,-689.924072,-224.458214],[-31.816910,-697.582153,-226.370323],[-31.161270,-682.235260,-221.808250],[-45.381302,-726.035736,-229.852166],[-38.674332,-724.681671,-229.663293],[-39.753433,-717.480560,-228.385887],[-31.395096,-722.858185,-230.063408],[-30.763626,-727.945831,-231.433648],[-19.493606,-730.332061,-233.771660],[-19.445328,-724.962188,-232.323814],[-51.023758,-718.437896,-226.992393],[-45.114883,-716.263275,-227.169456],[-49.593033,-712.118011,-225.559105],[-60.146316,-747.743866,-240.490593],[-70.129227,-740.899078,-235.233361],[-74.079544,-731.609344,-227.150689],[-66.392471,-732.098724,-230.499015],[-85.775833,-715.175567,-218.426263],[-69.078689,-702.499115,-219.230827],[-73.690872,-712.773407,-220.800652],[-68.789444,-720.489593,-224.318535],[-169.706619,-771.336578,-212.515221],[-162.802627,-770.667877,-216.715661],[-167.748306,-756.298431,-203.689843],[-150.018814,-765.663665,-221.828117],[-141.875625,-770.603180,-230.744407],[-137.880264,-771.065948,-233.592980],[-130.114334,-770.071991,-234.855858],[-128.813736,-763.266937,-231.996850],[-135.774124,-762.194732,-228.366203],[-120.998367,-755.784576,-231.994439],[-142.192825,-772.874603,-243.919823],[-146.922317,-774.248687,-243.479149],[-159.094986,-772.056244,-233.746116],[-159.721268,-773.645172,-235.657402],[-155.116409,-787.093658,-241.576316],[-137.858292,-794.889129,-244.734643],[-146.823501,-795.108917,-243.243493],[-137.956497,-782.599151,-244.954216],[-129.092972,-794.872894,-245.843407],[-127.608658,-786.546539,-246.353508],[-153.950638,-777.692352,-242.073846],[-141.558548,-775.032562,-244.429069],[-155.818436,-774.782806,-240.848930],[-153.128921,-772.613311,-241.348229],[-152.793045,-772.160553,-238.692558],[-140.518143,-771.936676,-239.086174],[-165.896438,-771.721527,-223.955162],[-157.086502,-757.686371,-212.578544],[-137.012894,-768.233612,-231.185265],[-146.188187,-764.938751,-223.752617],[-170.489029,-765.491852,-207.049003],[-170.923965,-770.472931,-209.097679],[-187.363663,-771.378692,-195.912194],[-188.284622,-772.538482,-196.706994],[-174.548538,-782.865814,-215.070672],[-171.916885,-795.117889,-217.544060],[-166.932266,-785.871246,-225.750999],[-168.945999,-777.876251,-223.036461],[-166.689651,-772.679718,-225.487236],[-155.212662,-769.097259,-220.935142],[-157.300613,-766.508209,-217.510399],[-160.110245,-771.255401,-221.931999],[-173.849808,-774.422271,-216.216819],[-172.588455,-772.048431,-216.365899],[-177.367264,-771.897918,-210.266167],[-175.982437,-770.930145,-204.379600],[-181.752151,-771.581756,-202.894860],[-175.556534,-769.539642,-203.749505],[-181.895706,-770.446563,-197.032372],[-187.194534,-770.429107,-191.017723],[-177.940933,-763.930084,-199.913322],[-186.787491,-768.133270,-190.419883],[-182.863479,-772.459564,-203.899132],[-153.439957,-771.741729,-231.652031],[-162.447891,-778.848419,-231.916314],[-181.145645,-780.180328,-206.509849],[-185.675125,-775.791107,-200.701561],[-193.353348,-773.126007,-190.232017],[-194.612137,-763.940582,-179.964898],[-196.129288,-769.134124,-178.399377],[-198.795303,-768.742279,-174.420861],[-194.837417,-770.523407,-183.793327],[-196.280716,-772.814850,-185.977013],[-200.232925,-770.982269,-178.585044],[-203.913528,-770.951751,-173.282372],[-202.080765,-772.972992,-177.502189],[-191.083938,-769.433441,-184.852685],[-192.474563,-771.088897,-189.056664],[-167.748306,-751.432831,-200.304313],[-148.491226,-742.669098,-210.421409],[-143.475479,-737.711700,-209.943412],[-128.970718,-744.342437,-220.653252],[-120.100296,-730.825409,-215.724694],[-132.903824,-730.477997,-209.476097],[-139.323501,-734.782867,-209.999290],[-134.710281,-727.751129,-205.230431],[-145.027725,-730.434356,-203.047143],[-154.902542,-730.665802,-196.689934],[-147.901993,-734.095916,-205.061607],[-165.975845,-728.474701,-185.368553],[-131.382278,-733.458770,-212.318138],[-115.844864,-725.350128,-213.409783],[-147.108658,-750.554046,-215.424339],[-142.951553,-747.059478,-215.976005],[-127.063125,-749.471283,-225.953880],[-157.962479,-732.065094,-195.762748],[-154.016678,-738.013397,-203.687400],[-161.794388,-739.794525,-198.386529],[-92.172806,-704.260101,-213.461968],[-99.935989,-651.110687,-196.231590],[-98.019974,-645.972076,-195.752647],[-97.813980,-641.550628,-194.476067],[-91.288528,-628.456176,-191.514976],[-102.300308,-597.060302,-173.575370],[-111.840408,-575.293579,-156.604087],[-125.595413,-551.982177,-136.114830],[-128.389969,-560.863434,-134.381492],[-131.539078,-568.061065,-134.769035],[-129.513748,-569.260620,-133.488137],[-131.703628,-571.786865,-133.416175],[-134.592911,-580.553589,-133.927971],[-142.714371,-585.592987,-134.735649],[-142.948501,-582.652984,-140.367730],[-147.155655,-584.952392,-140.712547],[-151.905350,-587.785583,-138.762565],[-157.713699,-590.114807,-136.059594],[-151.257828,-592.221313,-130.750953],[-159.870560,-598.167572,-124.728692],[-150.915970,-595.677826,-125.740760],[-149.274551,-594.018158,-128.458244],[-147.981521,-595.830291,-129.988197],[-150.512649,-600.335663,-131.962272],[-134.061233,-583.290161,-138.966148],[-132.165481,-575.835754,-133.633079],[-135.931351,-579.285217,-133.339149],[-134.523392,-573.937072,-135.306328],[-138.739700,-579.696777,-136.656303],[-129.869400,-557.325958,-141.442863],[-140.241836,-576.215515,-143.548333],[-143.210037,-580.844848,-142.366813],[-149.352310,-581.461090,-143.810386],[-156.625076,-565.736511,-155.171684],[-152.950271,-572.224090,-150.005485],[-146.415970,-572.229797,-148.458977],[-120.728897,-554.187927,-134.569298],[-125.793533,-568.967743,-137.079490],[-127.046646,-561.926849,-133.232171],[-251.369888,-767.861053,-64.713523],[-254.974502,-769.186126,-59.821128],[-253.778580,-768.566497,-52.663063],[-248.820084,-767.210296,-74.755088],[-249.782120,-767.964142,-82.846947],[-255.911575,-769.055328,-82.712059],[-249.542679,-768.392486,-105.293663],[-249.349625,-769.671661,-109.365715],[-244.679275,-769.531891,-115.195243],[-245.976822,-772.456817,-115.468209],[-240.997085,-770.963836,-121.570869],[-240.495071,-768.683624,-118.751992],[-233.685684,-777.458709,-133.493034],[-226.474625,-782.150299,-144.181480],[-224.227981,-789.521881,-147.218590],[-210.808487,-770.954071,-163.823387],[-204.974380,-778.274566,-174.511314],[-217.727554,-779.046112,-156.482353],[-219.417129,-783.608490,-154.419305],[-209.453873,-783.130768,-168.436394],[-213.548843,-788.698578,-162.491692],[-200.890579,-795.052459,-166.087334],[-213.408401,-795.054046,-162.017541],[-213.432327,-795.128814,-152.558739],[-221.123733,-795.073272,-151.252160],[-227.386246,-794.961822,-142.304039],[-209.345413,-794.886627,-167.662162],[-175.363602,-795.080108,-189.816917],[-193.476211,-794.970306,-188.818535],[-216.379837,-770.539215,-155.066277],[-220.334549,-770.053070,-148.103080],[-222.643448,-771.583893,-147.192253],[-226.024795,-770.321685,-140.987236],[-217.904495,-768.674102,-146.915948],[-233.405777,-789.678863,-134.060464],[-246.274612,-767.170685,-32.911598],[-230.645584,-707.220184,-39.015617],[-226.939163,-703.476959,-51.681678],[-227.817032,-698.408172,-43.715660],[-228.128494,-694.899963,-37.959297],[-223.653091,-691.014679,-52.109307],[-220.694046,-694.499267,-67.646064],[-220.281265,-679.931549,-44.276725],[-221.406509,-679.615051,-34.020912],[-225.949112,-696.430725,-49.560264],[-229.521805,-716.421783,-51.889671],[-225.230850,-700.135284,-55.867683],[-227.774673,-710.816559,-55.557075],[-227.747574,-717.953888,-62.220055],[-223.969253,-712.035186,-72.605995],[-221.307083,-707.591095,-79.993066],[-219.180923,-699.551635,-78.618476],[-241.551834,-756.339630,-88.563499],[-230.727188,-703.455688,-34.433174],[-227.324966,-691.112854,-32.748893],[-218.743729,-676.413299,-10.972297],[-213.176407,-668.066436,-9.942712],[-216.611832,-673.075470,-0.682220],[-215.401260,-672.598358,5.205956],[-211.401932,-667.750580,2.158089],[-218.848648,-675.637909,-22.334922],[-228.039322,-695.318512,-14.710472],[-224.609268,-688.900177,-10.375679],[-230.675430,-702.599029,-9.102302],[-229.490982,-702.929779,-0.033584],[-222.232681,-682.792602,-14.955742],[-218.234085,-675.860779,-2.719299],[-224.548965,-693.897735,8.218773],[-223.379043,-690.460418,10.466965],[-218.371597,-682.126739,22.455307],[-217.544571,-683.207458,28.111740],[-216.251297,-685.262146,36.662796],[-220.530838,-686.298126,18.243523],[-223.470413,-693.564819,19.821717],[-222.864395,-696.573761,28.356362],[-218.655655,-690.987091,34.833413],[-216.426773,-695.189880,44.932618],[-164.809646,-635.422271,29.505364],[-187.570206,-701.081756,80.145516],[-197.488907,-704.063385,72.418560],[-205.874283,-709.048004,65.720082],[-215.444839,-711.452362,54.823609],[-214.339004,-703.762481,53.016724],[-210.979446,-703.961242,57.704911],[-213.523575,-698.035705,51.886605],[-219.547439,-697.978912,39.868225],[-221.813064,-700.010650,35.149414],[-225.028152,-707.762787,31.936554],[-216.664810,-718.621795,56.915917],[-222.749466,-722.093170,48.992310],[-223.324722,-718.782867,44.997254],[-229.124344,-714.366302,27.375336],[-219.359512,-723.363067,55.830910],[-223.335159,-726.666473,49.665078],[-224.441849,-733.753875,51.738831],[-229.276993,-737.785919,42.998162],[-233.008987,-735.909942,31.099511],[-185.179275,-717.769684,101.061020],[-199.738663,-698.232635,67.107979],[-202.516189,-703.629272,67.141194],[-208.703506,-698.820434,58.841160],[-190.372513,-714.556854,89.470837],[-189.755813,-707.109619,83.437844],[-183.994339,-713.049102,97.530785],[-179.276871,-712.658477,104.579831],[-177.379166,-716.891815,110.527193],[-217.284805,-705.954376,48.968735],[-220.704605,-711.294891,45.157082],[-224.778580,-714.504181,38.008873],[-225.684769,-704.463592,25.729035],[-232.386246,-711.026153,6.571320],[-235.226456,-715.079742,-0.522316],[-244.006363,-773.894195,46.230095],[-239.305679,-732.724090,3.078217],[-239.196304,-740.900543,13.589913],[-228.584000,-734.240326,41.348717],[-230.020157,-727.864471,34.066735],[-226.948990,-722.691803,39.368386],[-179.582901,-632.747558,-35.180015],[-174.456192,-626.672027,-39.098732],[-222.137466,-683.690948,-4.308250],[-179.970535,-655.358673,22.195382],[-203.112503,-678.505523,45.704148],[-207.844681,-683.157867,48.114739],[-200.787796,-681.259460,52.909653],[-196.921707,-683.106598,58.582024],[-183.246780,-634.282348,-16.168007],[-180.302261,-630.918701,-11.244972],[-180.847610,-631.974029,-8.440895],[-185.314712,-638.672119,-5.393028],[-189.957901,-644.865753,-8.168007],[-151.278458,-712.184295,137.792357],[-144.107681,-716.986114,147.734061],[-155.127273,-701.800049,122.874729],[-133.683487,-713.452057,149.661518],[-137.718765,-724.269439,158.033986],[-146.150772,-710.214691,139.177731],[-138.727615,-717.501190,151.713358],[-142.718338,-727.189178,157.387886],[-133.705948,-707.829010,140.651514],[-138.131973,-708.345977,140.698107],[-125.643448,-707.198700,140.369238],[-133.371780,-767.138397,174.688847],[-137.738113,-762.336273,172.135350],[-123.424759,-766.749603,179.810933],[-130.152176,-682.233642,125.541802],[-128.954300,-687.292083,129.660860],[-121.375870,-684.013549,133.294645],[-121.564529,-694.901550,138.707262],[-125.391495,-690.721100,134.283781],[-128.028213,-697.611633,134.574763],[-124.058731,-672.958465,122.815674],[-129.913772,-675.341278,119.941762],[-119.222549,-668.190094,121.582751],[-116.146438,-672.449432,127.674587],[-103.517532,-668.338379,129.252273],[-121.501358,-678.204712,129.337260],[-146.986709,-633.229553,48.850670],[-125.078873,-629.137726,64.693104],[-126.383682,-626.311554,59.251801],[-117.278824,-622.717407,62.136319],[-105.425857,-617.866913,66.678162],[-150.331558,-628.212005,37.827416],[-155.589493,-630.532104,34.892601],[-140.007461,-620.740692,38.571312],[-131.304336,-620.417114,46.446480],[-122.065323,-615.594238,48.049218],[-147.769485,-621.797912,31.835892],[-143.471573,-627.313934,44.274956],[-139.005447,-628.320312,50.314301],[-132.381729,-628.858612,57.387177],[-73.228287,-579.070007,38.782898],[-73.327408,-571.780426,33.837288],[-74.537979,-561.432861,28.439759],[-82.531937,-563.436615,31.410195],[-77.645706,-560.039734,26.845604],[-87.588577,-562.979217,24.237297],[-89.513748,-562.503143,22.212334],[-92.321426,-556.494171,20.330132],[-106.896805,-553.855194,17.966492],[-130.914322,-552.155975,15.873391],[-128.897110,-545.190002,17.731415],[-132.021255,-544.881714,16.757912],[-64.309097,-567.641906,28.769761],[-61.530411,-558.815002,29.178940],[-60.044449,-555.139953,28.406342],[-48.446182,-548.137054,37.842507],[-44.336990,-545.799499,41.649826],[-42.878128,-548.523651,39.808083],[-41.923721,-545.886200,44.145401],[-40.256241,-542.401031,48.380677],[-41.100784,-539.696167,45.717698],[-38.544021,-532.637176,57.791123],[-38.782425,-530.247894,54.381554],[-36.113052,-528.420959,65.431214],[-31.425857,-521.911377,74.599408],[-29.787613,-523.605713,75.894719],[-23.154739,-528.621460,84.758290],[-17.062149,-524.346374,89.006218],[-9.762833,-540.669586,96.994610],[-24.868240,-522.958557,82.023163],[-39.679153,-533.736572,51.883873],[-38.735123,-539.572570,53.450592],[-37.343582,-533.860748,59.838211],[-33.860306,-535.951507,60.053559],[-33.101334,-530.765899,64.595635],[-34.657669,-539.524627,71.634762],[-34.592239,-542.767425,66.304898],[-32.218460,-550.923675,69.354874],[-30.323868,-557.872650,72.868794],[-30.917862,-562.652496,71.322098],[-28.320572,-560.953155,81.572827],[-26.378677,-573.519684,90.066363],[-22.159500,-581.311340,100.699641],[-21.238052,-552.522857,94.732420],[-17.903458,-542.331421,93.876324],[-16.584732,-533.449279,91.751305],[-13.104446,-537.430450,95.020125],[-20.120682,-533.968933,89.165631],[-24.348770,-539.128357,86.092595],[-27.171158,-542.493713,82.698460],[-30.264786,-548.805877,76.652398],[-32.466385,-543.367035,75.345707],[-27.751053,-531.625061,80.122212],[-21.571731,-563.862365,97.630320],[-21.729996,-575.013031,100.237374],[-26.578689,-565.721740,89.076699],[-35.052750,-545.377746,56.260231],[-39.807754,-549.478668,38.459626],[-37.160904,-545.110107,47.556923],[-35.574722,-544.090027,51.199654],[-34.251419,-554.267395,58.061356],[-33.691421,-562.198425,61.946587],[-33.131912,-571.719604,65.326023],[-32.091263,-567.762268,67.729710],[-30.655533,-578.683685,69.678669],[-28.460525,-588.905304,67.108975],[-34.824173,-590.653381,56.139153],[-37.857559,-591.740143,46.395287],[-40.662796,-589.086914,40.268814],[-40.841629,-587.484802,38.275505],[-43.613174,-583.140869,41.437165],[-44.367630,-568.863281,32.418320],[-40.942825,-574.327667,27.807717],[-55.217667,-568.793670,28.869370],[-60.601089,-573.608581,34.274811],[-60.722793,-568.767914,33.731659],[-57.013626,-575.353149,30.592385],[-34.277054,-537.612182,64.968483],[-33.889725,-550.094696,61.342358],[-36.504837,-547.073425,46.505890],[-37.685867,-549.820678,40.059006],[-68.218094,-567.853149,30.741310],[-65.792740,-559.324981,25.857712],[-88.547745,-581.696563,37.366242],[-76.985062,-579.883911,39.786995],[-82.654007,-575.643676,40.893860],[-87.814285,-570.274170,41.912377],[-77.675064,-573.462372,36.551842],[-90.377640,-566.134338,41.052544],[-88.639480,-563.393585,34.497139],[-89.914749,-562.986664,32.439278],[-97.467605,-563.900879,40.203476],[-101.854935,-566.252807,40.723618],[-104.588516,-569.075622,36.986588],[-105.018692,-569.993683,39.930581],[-105.912369,-572.655182,34.806389],[-101.321121,-569.093902,29.394326],[-105.223221,-572.534118,28.882271],[-96.111465,-567.037445,26.483971],[-89.509415,-563.441772,28.749886],[-85.221390,-562.127289,29.738572],[-81.610672,-565.705414,32.950730],[-98.515518,-565.510193,42.126580],[-93.385879,-564.833679,42.272499],[-82.712845,-683.826385,146.372843],[-84.078628,-688.769806,148.231448],[-79.575027,-693.108825,150.542168],[-70.301224,-689.470855,151.556731],[-76.298050,-686.047546,148.722666],[-43.269546,-695.939117,163.428147],[1.227280,-664.328186,154.131020],[-6.901016,-661.364807,152.357300],[-14.325149,-661.943237,152.345398],[25.331223,-662.864898,147.615933],[29.661484,-665.969421,149.162819],[34.399643,-667.870636,148.800471],[35.174484,-685.595337,159.772705],[40.799484,-689.480468,159.437039],[32.143112,-661.403412,144.150969],[26.477585,-659.351074,143.919299],[29.921372,-659.379730,142.910059],[29.375595,-655.197815,147.431668],[12.771469,-666.504486,153.115155],[17.456345,-653.202270,139.755860],[14.921066,-655.650390,142.146714],[6.004990,-652.601227,147.446621],[5.224167,-656.279571,144.836131],[4.011154,-640.182007,152.184504],[-0.792190,-634.821777,144.571247],[-7.321121,-628.439087,134.498081],[-8.804336,-622.831299,130.161344],[-3.808670,-620.742370,131.776030],[0.549606,-629.599945,141.761027],[-2.181900,-626.693481,137.238597],[-7.568375,-638.969207,139.833495],[-9.795303,-637.407104,134.785673],[-13.473038,-635.697540,127.496482],[-17.739334,-626.804077,120.845996],[-18.940201,-621.903778,116.254664],[-17.146805,-632.216186,122.269156],[-18.943924,-632.926452,114.939918],[-138.021255,-602.765564,19.690552],[-133.305679,-600.034240,23.292626],[-132.542313,-594.011749,18.163369],[-130.683792,-588.206451,14.537545],[-144.846207,-594.774475,1.310845],[-136.025528,-593.021026,12.335801],[-139.744034,-599.154449,13.197243],[-139.317154,-586.914734,0.890503],[-134.448501,-582.798858,3.827126],[-120.419937,-577.636810,15.840889],[-123.668716,-571.874084,11.000252],[-122.114883,-584.169708,22.165520],[-124.040542,-587.203766,20.859833],[-124.418350,-583.172729,17.946122],[-128.594192,-582.605621,11.334717],[-127.324173,-578.403106,11.210244],[-128.593826,-574.044311,8.112931],[-129.554214,-571.374633,7.993531],[-129.266495,-575.771179,4.200684],[-126.997635,-567.230438,1.912270],[-116.242569,-530.325195,32.260353],[-112.089859,-526.773529,31.525093],[-110.684708,-528.418640,34.489190],[-103.951004,-516.633178,29.445977],[-106.348587,-524.186432,24.489106],[-107.509292,-534.143402,31.825844],[-110.976822,-535.580047,31.472741],[-102.206619,-531.256042,31.262528],[-101.005875,-536.448669,30.455414],[-105.844925,-539.253540,31.516381],[-100.644119,-542.695221,30.884499],[-96.987381,-541.273834,29.565491],[-97.611038,-548.494354,29.722130],[-104.043716,-552.761688,19.306107],[-98.183914,-555.044250,19.264161],[-96.982559,-527.579803,29.028611],[-93.916397,-524.361328,25.468171],[-102.120926,-525.463897,33.105889],[-95.110000,-519.823852,27.870400],[-96.172867,-514.044494,25.709893],[-94.356583,-511.770660,11.613533],[-93.190201,-517.096527,1.184540],[-91.276993,-515.544891,-5.687362],[-90.761246,-511.093170,-6.510826],[-89.201309,-509.909759,-0.115120],[-90.327347,-522.037933,1.813706],[-88.490311,-528.997314,8.850182],[-88.326065,-524.843261,1.031525],[-86.936355,-529.585510,6.521027],[-83.950210,-524.563324,6.133088],[-79.728104,-530.020416,15.342469],[-74.174881,-529.785705,20.734833],[-76.482620,-533.902679,21.432938],[-73.201248,-535.420166,25.792702],[-66.449234,-538.209411,30.718048],[-80.838333,-546.035156,30.350769],[-75.112381,-539.408661,29.388329],[-74.221817,-544.250549,32.192124],[-83.180435,-548.191162,31.335190],[-89.866287,-546.508056,28.708390],[-92.511001,-540.880645,26.170708],[-90.620132,-552.200226,31.227913],[-98.459244,-551.283844,26.704834],[-85.666702,-553.058654,31.490082],[-87.638931,-556.229828,23.851799],[-81.745621,-560.086639,22.110871],[-77.126785,-557.434539,21.733475],[-73.804825,-558.260284,24.167527],[-72.594803,-556.256744,22.207962],[-66.222732,-555.271789,23.008156],[-62.608536,-556.876434,24.566666],[-56.142471,-543.149963,19.241112],[-57.456558,-536.067108,19.017998],[-56.008926,-530.008148,17.813599],[-53.558548,-528.004669,16.719750],[-55.936050,-523.202545,16.528611],[-57.456070,-511.517639,15.296616],[-58.612381,-517.115600,17.236260],[-62.194717,-511.595092,18.293923],[-60.932205,-531.572052,27.665856],[-58.568008,-529.611664,21.584351],[-59.676529,-537.664947,23.882332],[-60.807754,-537.988403,27.854256],[-69.183609,-533.795013,26.992394],[-66.995682,-526.844635,28.926316],[-69.477432,-520.466888,29.266495],[-75.918777,-510.679352,27.400986],[-80.088577,-504.370147,25.432686],[-77.188248,-497.755493,27.332489],[-74.473221,-499.122406,27.270996],[-76.011856,-488.480804,25.150284],[-80.421463,-472.550872,23.032395],[-77.625992,-477.715484,21.190552],[-72.975723,-485.356628,17.967179],[-81.784439,-505.340179,22.795823],[-68.621414,-508.660766,27.356621],[-65.299942,-513.822418,26.504723],[-60.485855,-521.416900,21.805062],[-65.373794,-510.756164,22.292649],[-67.151932,-503.895935,19.242821],[-54.314651,-508.638855,16.475182],[-54.918594,-515.958831,15.976563],[-52.019058,-509.581176,18.399910],[-52.357620,-519.435272,19.382370],[-50.502151,-532.434723,25.958695],[-53.288406,-541.130340,24.560227],[-52.188675,-543.470215,27.573861],[-55.313919,-546.685821,29.335503],[-53.711563,-521.478302,16.965683],[-52.933548,-529.955627,18.456467],[-53.989151,-535.772583,18.766640],[-55.371475,-532.913238,17.464989],[-56.493179,-540.256927,18.007241],[-74.403946,-525.893646,19.839890],[-80.593277,-525.567688,12.240891],[-80.783707,-520.138031,12.633339],[-89.512405,-505.256317,3.270523],[-93.677383,-496.269836,-4.052147],[-95.585342,-492.588836,-9.571800],[-97.917801,-480.031280,-16.859153],[-99.361465,-474.361511,-19.460579],[-98.440201,-474.397735,-25.763786],[-98.974991,-464.810486,-28.954445],[-85.917007,-526.658325,3.914193],[-87.692032,-521.340210,-1.036285],[-83.985184,-517.214233,7.326058],[-74.228287,-521.149353,20.261689],[-82.552322,-513.869537,13.288300],[-85.002151,-501.070099,19.732308],[-74.626419,-517.680908,21.675469],[-79.861648,-511.348663,19.094963],[-82.871719,-506.467773,16.441788],[-85.238296,-498.430633,13.477211],[-89.002273,-489.878082,10.390320],[-88.706436,-489.766479,3.595078],[-89.187271,-490.247894,0.982300],[-87.348343,-497.371917,5.965699],[-84.551529,-507.596374,11.431458],[-87.197769,-494.595825,7.526741],[-89.538284,-497.481598,2.041573],[-86.594559,-495.868316,21.604729],[-83.243423,-499.341034,24.066338],[-62.994095,-539.149597,30.279259],[-70.301529,-549.334625,27.331932],[-77.370926,-553.001281,27.562081],[-83.490921,-555.580047,25.515007],[-81.020828,-552.293823,31.901963],[-80.879715,-549.580414,32.566857],[-85.895340,-550.644775,32.384636],[-73.076614,-548.254608,31.663369],[-68.174942,-544.305694,30.738694],[-62.011795,-544.199402,23.625084],[-59.695328,-543.792633,19.722359],[-60.553543,-548.674041,19.536087],[-67.578995,-552.585846,22.063317],[-72.632217,-554.476318,23.454827],[-80.974869,-557.816833,21.759262],[-61.168960,-551.962707,21.196488],[-86.618912,-532.328216,10.246552],[-83.289566,-533.220733,14.073151],[-89.689529,-526.784088,13.598824],[-88.488602,-513.544281,0.849518],[-104.654983,-503.319854,11.591011],[-103.136429,-507.494171,15.017510],[-103.760940,-508.216919,11.712426],[-103.111832,-516.158020,14.092461],[-102.372513,-508.342132,20.225502],[-99.427017,-506.975830,17.556435],[-101.823929,-513.255218,25.639840],[-100.552994,-514.991302,22.264885],[-102.804947,-519.386017,18.843346],[-103.344437,-522.107513,27.138977],[-101.053055,-517.812866,24.817742],[-96.851517,-514.991455,29.628014],[-98.403641,-516.265167,30.919320],[-100.200699,-521.269500,32.495369],[-145.549209,-655.343506,76.857571],[-145.196854,-639.312103,58.058449],[-154.124771,-637.818054,45.766770],[-152.945022,-646.073822,55.113198],[-133.437393,-634.578155,64.287972],[-106.215530,-622.561096,73.434231],[-116.803421,-629.151336,73.335534],[-100.656143,-623.959350,80.525235],[-149.801773,-594.610351,-7.733039],[-135.210892,-564.627960,-13.610328],[-137.353897,-564.541839,-7.739112],[-137.004349,-567.010559,-12.198234],[-128.816971,-569.238922,-1.791725],[-130.802933,-566.400482,-1.930732],[-131.760330,-563.944427,2.312989],[-132.163406,-570.121093,-5.777397],[-128.782913,-526.929046,-2.732772],[-115.356521,-533.981811,2.785447],[-115.625259,-533.805664,7.017121],[-138.112076,-533.308105,-3.404663],[-134.964981,-537.513702,-3.237297],[-134.661026,-531.378967,-0.318931],[-135.281143,-535.191620,1.052857],[-127.629410,-530.308807,-0.923881],[-105.699905,-513.419799,-19.558342],[-97.573318,-511.793091,-13.756981],[-96.154373,-512.991394,-10.843925],[-100.489639,-513.120819,-10.152198],[-109.037979,-514.885711,-15.430549],[-108.767410,-512.355652,-12.253898],[-105.895462,-514.499450,-16.626854],[-112.315384,-516.683136,-19.055366],[-121.434158,-520.974670,-25.319587],[-120.147354,-512.510986,-41.587150],[-116.482742,-503.714050,-46.322898],[-116.350235,-500.387451,-49.256904],[-116.243240,-491.790161,-55.863975],[-115.839615,-493.368164,-53.102914],[-113.616836,-497.281891,-47.936532],[-107.849258,-497.482483,-40.780327],[-105.055008,-501.337860,-33.579690],[-103.830826,-506.107086,-26.824241],[-99.641861,-506.576660,-20.724678],[-103.851883,-510.806152,-21.326057],[-108.075516,-509.996277,-28.775703],[-111.506180,-507.940674,-35.206657],[-112.127701,-512.973541,-30.260765],[-122.744095,-521.965728,-35.095833],[-116.975418,-514.688812,-34.543052],[-120.703262,-512.473938,-44.901176],[-117.457840,-502.112671,-50.170234],[-116.571670,-501.709320,-53.613456],[-128.087295,-531.285827,-70.824852],[-131.273758,-534.134704,-68.494087],[-135.458206,-539.596039,-71.637336],[-127.530594,-530.776275,-73.919899],[-110.727554,-560.927490,17.825837],[-103.028946,-558.554901,18.063683],[-109.824417,-566.202545,18.498040],[-100.446792,-563.409942,19.684868],[-98.943741,-566.114319,22.153969],[-108.360611,-569.893371,20.631554],[-108.399734,-572.593017,22.591233],[-106.606338,-574.413452,39.032120],[-105.011246,-574.768097,39.478730],[-103.104324,-581.258789,36.595230],[-97.758743,-583.047058,35.929123],[-89.451980,-577.901153,35.662407],[-102.585892,-570.297821,24.823494],[-112.901871,-577.669403,25.472458],[-108.152054,-579.184204,34.673706],[-108.058182,-575.328033,28.424530],[-118.542740,-585.173431,28.456208],[-112.652847,-584.076111,33.557862],[-119.539078,-587.914489,26.877030],[-110.276504,-548.517486,21.684777],[-94.194412,-547.351165,30.983292],[-118.810440,-548.090667,18.072953],[-126.703934,-543.045074,5.313782],[-118.923721,-544.390838,-31.462837],[-122.401626,-549.158447,-32.153617],[-125.211624,-554.548797,-44.992775],[-128.856766,-561.241913,-48.998359],[-127.453689,-556.277923,-52.098838],[-130.369949,-562.784912,-57.285545],[-125.535110,-552.387878,-51.250480],[-123.627762,-552.923553,-39.732689],[-121.149856,-548.270965,-23.957069],[-131.190323,-572.822906,-62.918419],[-101.378555,-567.979004,40.190850],[-95.181290,-570.303741,37.884865],[-97.813492,-574.555114,35.418732],[-89.747635,-575.486175,36.284386],[-83.795425,-577.720001,39.917580],[-91.481644,-567.891662,42.485032],[-80.946976,-581.880249,38.438080],[-151.344253,-594.802337,-97.722679],[-155.953934,-599.547027,-95.328804],[-154.893997,-600.522369,-94.269615],[-187.543960,-634.218658,-76.347557],[-186.654678,-631.897644,-80.471153],[-212.971451,-670.985260,-70.534416],[-194.452408,-640.835296,-85.100517],[-183.772903,-635.612457,-135.346824],[-179.033035,-607.791382,-98.238334],[-182.636429,-602.886047,-108.261529],[-180.352249,-598.254364,-107.334283],[-174.538956,-596.096801,-108.565513],[-176.211319,-601.565643,-109.404075],[-175.317154,-603.258209,-108.810539],[-179.266739,-603.795471,-110.833885],[-187.169998,-605.563659,-115.926216],[-186.321670,-602.662323,-119.902108],[-187.720596,-606.209961,-112.550911],[-167.275833,-584.814727,-108.842064],[-170.843582,-592.007812,-108.730401],[-169.837662,-591.819763,-103.755790],[-165.724319,-592.987823,-96.990364],[-170.724686,-600.574798,-96.737068],[-177.020218,-603.094757,-98.939706],[-175.853592,-605.104797,-91.623619],[-167.847610,-601.456909,-94.913673],[-169.562942,-595.220520,-98.536796],[-165.719742,-587.451812,-135.105919],[-165.108902,-581.159851,-142.191764],[-161.087112,-576.283142,-147.684075],[-170.482315,-575.022796,-146.756248],[-161.905533,-566.437042,-155.365044],[-163.270340,-559.714508,-159.351739],[-166.749344,-563.654663,-156.340049],[-168.948013,-554.991699,-160.193017],[-167.052322,-570.458191,-151.562951],[-170.991287,-568.775329,-151.123863],[-174.837662,-561.155212,-149.583763],[-158.784622,-572.854278,-150.446647],[-160.435806,-584.915130,-140.145164],[-155.041031,-585.625946,-140.836205],[-156.386429,-546.830444,-164.565055],[-160.336014,-531.840851,-167.909447],[-155.557083,-519.462677,-169.707513],[-150.434402,-516.440887,-172.788627],[-152.201126,-509.481537,-171.166833],[-154.840530,-523.874450,-170.789970],[-148.025528,-534.650299,-165.700370],[-141.649368,-529.980835,-165.594230],[-148.576614,-539.311004,-164.181266],[-152.660049,-529.912872,-169.311241],[-155.631912,-537.542389,-167.135918],[-148.354874,-548.216125,-161.788811],[-148.464249,-551.713928,-160.644554],[-142.005508,-539.094513,-161.168663],[-141.830154,-571.963134,-146.642204],[-172.969009,-614.179474,-103.013589],[-172.729629,-613.603058,-108.765312],[-170.916458,-611.521637,-115.475151],[-176.594559,-610.696289,-107.716789],[-157.828445,-607.365936,-131.513756],[-156.213028,-610.686523,-144.718926],[-154.666946,-612.842865,-149.139001],[-170.445389,-553.076599,-159.511711],[-173.062088,-551.991302,-155.877679],[-159.928970,-544.419555,-103.854087],[-146.991714,-532.561615,-93.808144],[-164.663040,-535.824676,-164.955925],[-161.086075,-521.586670,-131.902183],[-158.728104,-514.017059,-129.772880],[-162.741531,-526.003601,-130.550041],[-166.211929,-529.069641,-135.058129],[-162.234878,-523.317718,-134.334222],[-157.951187,-511.877472,-146.433494],[-154.832779,-508.618072,-140.279961],[-152.347305,-503.148712,-139.486686],[-153.381302,-505.616821,-145.085655],[-163.866043,-519.429687,-146.674126],[-155.149551,-502.712860,-113.721244],[-156.375259,-512.352813,-107.828622],[-135.607864,-509.337921,-88.870430],[-130.751419,-509.476227,-89.787086],[-123.014297,-502.526123,-90.214836],[-127.289871,-525.245636,-93.452736],[-131.175247,-525.498047,-92.177879],[-128.847061,-533.362213,-93.900475],[-125.618973,-534.022400,-93.458625],[-122.455826,-535.069977,-91.010673],[-134.319534,-537.555694,-93.246071],[-135.320022,-531.499115,-91.037040],[-131.965530,-534.307007,-93.092888],[-123.303421,-530.043304,-92.194023],[-130.308426,-500.149902,-87.023353],[-150.587601,-591.178772,-19.724083],[-153.305984,-594.419861,-24.419471],[-149.362076,-588.613159,-28.814674],[-224.064590,-684.702209,-36.220283],[-224.251358,-687.726959,-43.616417],[-213.526932,-710.937957,-113.316612],[-211.158584,-718.822052,-124.103814],[-205.471878,-715.526336,-131.626945],[-200.152847,-710.078582,-136.467369],[-193.079910,-704.756653,-142.267814],[-184.850418,-705.303375,-150.614433],[-160.985855,-692.098724,-168.888786],[-161.082413,-701.368835,-167.297234],[-166.380325,-702.800171,-163.942894],[-172.767654,-702.096893,-159.261162],[-170.427627,-705.988434,-161.372338],[-201.234207,-703.872741,-131.252235],[-196.254654,-696.979248,-137.243187],[-196.951126,-702.397491,-136.829857],[-217.771866,-719.627533,-111.557671],[-203.180191,-708.211395,-130.301612],[-207.729690,-704.539245,-118.995659],[-205.462723,-700.114654,-120.832466],[-202.569046,-699.530151,-127.109994],[-204.598526,-696.725128,-121.476448],[-203.987930,-690.203216,-122.500892],[-218.209122,-727.855133,-116.658653],[-202.904922,-720.770294,-139.563042],[-201.757461,-729.673675,-148.698539],[-208.666519,-730.671295,-137.433831],[-214.554397,-745.029937,-139.211449],[-214.353775,-736.966278,-132.044015],[-217.981827,-733.944366,-121.916008],[-214.503799,-727.573639,-124.094230],[-198.445633,-717.301300,-143.902642],[-165.444046,-664.694427,-163.702232],[-124.773086,-637.930114,-177.974602],[-111.591446,-637.897613,-186.669792],[-121.709732,-647.234100,-182.752647],[-103.568008,-646.083679,-193.071709],[-109.777237,-667.198578,-193.650016],[-108.255936,-673.156463,-195.929649],[-105.822891,-683.148773,-200.269218],[-115.300003,-659.143280,-188.764611],[-121.389419,-660.061676,-185.720695],[-128.557022,-663.868744,-182.293846],[-130.439041,-671.290954,-182.182304],[-135.173660,-674.867279,-179.920494],[-129.579971,-681.683044,-183.542840],[-122.372330,-670.161407,-186.812370],[-123.606277,-678.559021,-187.073295],[-119.371231,-673.601349,-189.155632],[-131.590164,-658.496216,-179.570732],[-184.419205,-697.988098,-149.992241],[-177.360000,-692.607788,-157.057549],[-187.834183,-676.917663,-150.329674],[-199.518570,-666.857147,-131.494103],[-200.007400,-676.434601,-133.224342],[-216.883072,-753.516082,-140.654930],[-227.167923,-766.017547,-128.450370],[-228.274063,-761.937408,-124.458320],[-232.789810,-765.328521,-119.326652],[-221.639664,-776.816803,-150.530265],[-215.623550,-773.304413,-158.183648],[-231.280105,-769.667389,-132.804863],[-238.409073,-774.212799,-126.183067],[-234.133621,-771.500152,-130.927865],[-230.042496,-774.960663,-137.976982],[-205.937881,-745.217193,-154.077874],[-187.858108,-708.140106,-149.926507],[-168.339920,-714.146637,-166.928611],[-166.653702,-685.665680,-165.343223],[-169.830704,-694.604095,-162.407493],[-175.060379,-681.708679,-160.266595],[-192.076919,-694.965881,-142.514794],[-189.753982,-699.413482,-144.461480],[-186.822647,-702.530761,-147.820518],[-201.871902,-694.058288,-127.914422],[-200.187149,-684.773285,-132.770851],[-193.135452,-684.890167,-143.512230],[-197.117996,-673.280700,-137.917289],[-198.179642,-679.900268,-136.980308],[-193.814896,-674.507202,-143.191125],[-189.305679,-744.393097,-175.912438],[-185.105484,-728.975555,-169.771813],[-176.429581,-723.645050,-172.826011],[-168.574051,-719.861358,-173.513725],[-133.440506,-710.545685,-189.659600],[-129.552017,-704.279327,-190.339654],[-129.226334,-692.779571,-185.403038],[-118.684463,-737.857086,-220.297355],[-136.537491,-741.632293,-215.507744],[-117.065018,-744.029571,-225.643731],[-71.643631,-771.316131,-249.576713],[-58.326736,-773.401703,-257.207450],[-199.762955,-697.097534,-131.914773],[-196.478226,-690.512603,-137.702598],[-182.197525,-701.348999,-151.657005],[-161.974014,-712.902618,-170.376488],[-147.813919,-714.399933,-181.348259],[-139.679520,-712.589142,-185.545646],[-139.972732,-707.958343,-181.966240],[-121.743423,-697.836853,-194.402215],[-162.018692,-680.332611,-167.891014],[-100.022720,-705.133636,-210.178856],[-104.898575,-716.775604,-212.299370],[-97.832291,-719.374664,-216.296836],[-94.450516,-714.230316,-215.658531],[-89.956375,-722.269684,-219.702171],[-83.665542,-707.008941,-217.077232],[-78.965835,-723.105804,-222.683097],[-84.193252,-726.358795,-222.747673],[-118.308121,-770.996917,-239.700982],[-121.507889,-794.861175,-246.740501],[-89.688980,-795.020172,-250.643548],[-115.696243,-795.004852,-247.439781],[-107.044876,-787.632354,-249.158867],[-94.653885,-784.408416,-251.086570],[-81.447891,-778.309356,-253.507072],[-69.866470,-777.304535,-255.354821],[-47.188980,-774.594574,-258.794853],[-41.196365,-772.503570,-258.817071],[-32.782547,-772.836151,-260.284416],[-27.775589,-774.142303,-261.628837],[-34.698807,-773.779754,-260.559745],[-36.468887,-780.670685,-259.741509],[-46.261124,-794.904754,-256.691979],[33.040512,-794.938018,-201.169426],[-10.058609,-795.004059,-251.085076],[-35.970535,-794.954071,-258.514275],[-56.999466,-794.999664,-255.280693],[-52.076675,-786.309845,-256.773857],[-59.497452,-780.826263,-256.441369],[-70.179031,-786.526214,-254.311577],[-74.478775,-795.016266,-252.859794],[-84.420608,-795.151825,-251.365319],[-78.972916,-795.034576,-242.335259],[-61.660721,-794.959015,-250.247825],[-42.544449,-795.003082,-241.880119],[-78.582352,-770.747223,-247.518760],[-71.283157,-769.944000,-248.446800],[-11.905411,-738.711639,-236.917442],[-45.558243,-752.597320,-243.836297],[-35.888382,-751.303985,-243.607506],[-1.800064,-740.468231,-236.539695],[10.009628,-738.816803,-236.588371],[8.934982,-754.682220,-247.426200],[8.461044,-759.229767,-249.795646],[8.458115,-771.023834,-253.793877],[14.631699,-772.483917,-254.335655],[18.239243,-772.381744,-254.352257],[28.999252,-768.487213,-245.147576],[25.871994,-761.457428,-244.386192],[35.880112,-766.262115,-239.443290],[41.442185,-757.807281,-232.970420],[59.402146,-770.635467,-225.126031],[71.703293,-770.048736,-215.821007],[60.567429,-771.947967,-225.690910],[62.335129,-765.397003,-221.883384],[76.152207,-766.968170,-211.645440],[53.523239,-763.210296,-227.129388],[44.803940,-765.563873,-233.309411],[52.755844,-770.713165,-229.849205],[42.083908,-771.921966,-238.179222],[45.956833,-774.270660,-245.147149],[44.784409,-776.726104,-246.823906],[38.145920,-776.554290,-251.974938],[33.545456,-775.222503,-255.378410],[32.936142,-773.612640,-253.235345],[24.472702,-775.302093,-261.727166],[32.399521,-785.157989,-256.155816],[34.931687,-789.477691,-254.207298],[39.040817,-795.173736,-250.778495],[45.798752,-795.213653,-245.744743],[44.087387,-782.683014,-247.517083],[45.067795,-787.793914,-246.690850],[55.510239,-795.065887,-238.378289],[56.043869,-783.677887,-238.427910],[68.117966,-786.853485,-229.123771],[76.247849,-783.601410,-222.804528],[29.659897,-774.000030,-257.229058],[51.999130,-772.198578,-232.283348],[56.639633,-772.586151,-231.007621],[49.811630,-773.384002,-239.576713],[52.008774,-775.029388,-241.279258],[54.423752,-773.531830,-237.745781],[63.344101,-775.568878,-232.797813],[68.396652,-776.875213,-229.011864],[57.978623,-775.036773,-236.755517],[59.944016,-773.555755,-233.974998],[41.300034,-770.214569,-237.362145],[41.170517,-772.733612,-241.393731],[5.315720,-753.720123,-246.370629],[-1.753372,-760.840728,-249.598992],[1.014084,-770.670990,-253.706750],[-3.954849,-767.008514,-252.829307],[-9.727310,-770.678009,-254.329216],[-6.060440,-771.792389,-255.726159],[8.016647,-772.080230,-255.576133],[4.275742,-772.978607,-261.722770],[12.198471,-773.750030,-263.981590],[38.075974,-773.531524,-248.434379],[38.287583,-774.469330,-251.151116],[30.173996,-771.902740,-246.195274],[-18.428360,-765.341827,-253.799430],[-155.758560,-763.023590,-216.325950],[-160.332107,-753.305511,-207.176139],[-162.794632,-772.610321,-230.878746],[-101.207901,-795.028289,-249.239128],[-106.759537,-795.051300,-248.551964],[-58.133194,-769.811126,-250.401817],[-49.823563,-765.971161,-250.312889],[-63.113968,-771.303192,-251.219902],[-53.630264,-771.076568,-252.287102],[-33.606583,-760.628021,-250.525170],[-23.106949,-761.884185,-252.209069],[-15.376907,-762.720367,-252.599449],[-46.410232,-770.288849,-252.483757],[-44.199112,-771.291351,-254.311882],[-32.982681,-771.021393,-254.746727],[-17.474563,-771.559051,-256.249443],[-30.910599,-769.823944,-253.690910],[-26.980972,-765.900665,-253.441796],[-49.010391,-772.961273,-258.050652],[-52.026871,-772.094513,-255.891563],[-27.768448,-772.152069,-259.154136],[-33.592056,-786.020843,-259.607627],[-18.302139,-772.355926,-260.246331],[-14.129043,-773.859222,-263.420066],[-8.597305,-773.573272,-263.696830],[0.686752,-774.968048,-265.664574],[7.944504,-775.125641,-266.176263],[1.310532,-773.526581,-263.981254],[21.061264,-773.492340,-261.689904],[15.897507,-782.636322,-266.804009],[23.085617,-794.846954,-262.468895],[25.366196,-783.403228,-261.157281],[16.269211,-794.850311,-266.638084],[17.092941,-775.241485,-265.991265],[6.207382,-787.588409,-265.896110],[-4.356155,-794.894378,-264.317985],[-15.443375,-795.026336,-262.532249],[-14.871231,-785.971161,-263.001152],[-24.063309,-778.465851,-262.005944],[-9.585709,-775.234039,-264.321800],[-5.935684,-782.252960,-264.461662],[-20.013748,-770.582916,-254.666710],[-19.647232,-773.559295,-262.793023],[-40.639664,-770.050018,-253.161584],[-23.356155,-794.989410,-261.009178],[19.432541,-783.656097,-265.045982],[0.202988,-734.136383,-233.935508],[7.493271,-731.707428,-233.671653],[-0.400284,-727.535614,-232.556297],[-1.571060,-716.469574,-231.636650],[-32.976395,-640.921570,-206.095391],[-28.459671,-646.336914,-209.010002],[-59.826980,-640.405029,-203.463127],[-57.029800,-628.260894,-196.692772],[-52.276138,-636.107818,-201.483178],[-44.450821,-633.314239,-200.724968],[-39.873245,-641.463989,-205.468284],[-33.528396,-566.995422,-176.340661],[-32.830826,-560.418213,-180.540489],[-29.494156,-556.065216,-183.763848],[-30.812942,-554.116516,-187.849602],[-33.592911,-556.346161,-190.673057],[-38.165604,-561.603668,-188.011529],[-40.062515,-560.824829,-197.956322],[-37.393692,-558.051544,-201.811424],[-35.563125,-557.948761,-198.120385],[-24.714676,-558.595276,-181.828331],[-18.220657,-564.480591,-182.634362],[-14.292313,-570.615753,-183.759605],[-21.235367,-570.642547,-181.788536],[-24.531509,-577.390045,-182.023399],[-12.757034,-551.131103,-190.455193],[-18.124344,-545.189972,-192.008324],[-25.609573,-537.122009,-200.136071],[-26.083450,-546.055603,-193.585807],[-23.626785,-549.166168,-189.228691],[-20.914261,-544.558166,-192.204216],[-8.199112,-549.584564,-194.261833],[-7.230606,-535.995392,-204.667564],[5.074021,-543.892883,-211.828393],[11.765000,-551.541626,-199.275506],[15.440292,-554.396698,-194.306145],[25.799118,-564.478973,-192.967919],[31.691879,-569.146179,-191.914909],[44.049790,-577.251098,-192.793663],[4.208725,-552.897613,-204.283654],[1.111984,-553.774810,-201.105797],[-0.576248,-550.666168,-202.522392],[5.584885,-551.231384,-207.279381],[8.667771,-549.509613,-208.037285],[-4.316971,-549.754211,-197.974235],[-3.815384,-543.704834,-203.895591],[-7.885818,-542.900757,-199.312828],[-11.998245,-538.711670,-199.332115],[-19.033768,-537.002716,-198.383384],[-27.051163,-529.835998,-206.151817],[-35.856094,-537.196136,-214.943809],[-40.537613,-533.669708,-216.943229],[-38.147476,-535.301178,-217.713462],[-40.507400,-527.975555,-220.512504],[-41.196121,-524.632385,-224.355491],[-41.717728,-519.044677,-226.583488],[-26.917435,-556.847503,-182.336205],[-28.503494,-562.436828,-178.499015],[-42.667190,-563.265167,-194.006035],[-44.405472,-564.343261,-192.701409],[-50.572342,-564.538910,-192.701744],[-54.592789,-564.429657,-192.327355],[-54.799637,-564.506775,-178.048545],[-50.063064,-566.463134,-172.612449],[-47.222305,-578.988434,-174.003471],[-47.272842,-568.389190,-171.158378],[-58.400162,-569.101776,-170.069755],[-53.970901,-566.586151,-170.909385],[-55.099136,-564.546417,-173.033348],[-46.486282,-566.058532,-180.736779],[-43.597061,-566.543945,-176.423729],[-36.676163,-564.510498,-176.338952],[-37.942215,-562.738861,-182.813958],[-42.917496,-565.030517,-183.854026],[-39.822769,-565.549957,-176.718040],[-48.101150,-565.935638,-190.668602],[-39.513260,-568.285705,-173.796380],[-49.847854,-565.964172,-177.843346],[-41.337173,-577.615722,-174.767295],[-33.702591,-573.074676,-176.372062],[-42.065506,-571.362030,-172.527763],[-42.180496,-583.095855,-176.995781],[-34.608780,-579.883239,-178.291771],[-30.455887,-548.322113,-196.155082],[-30.064346,-542.064117,-200.983880],[-38.059891,-537.762695,-214.384637],[-31.381485,-530.675537,-209.566093],[-33.551529,-528.210357,-213.676139],[-35.589188,-521.676239,-218.733544],[-37.623062,-521.839904,-223.470727],[-35.598038,-530.550659,-217.544181],[-38.247208,-527.844909,-222.115165],[-42.576004,-514.483154,-226.786552],[-39.402664,-518.311035,-227.170678],[-36.406387,-515.123108,-225.524834],[-38.511673,-512.293548,-229.059075],[-31.890152,-498.063904,-231.585228],[-35.580154,-498.121704,-233.075219],[-39.921524,-490.951263,-228.836265],[-41.325760,-493.382873,-227.713920],[-39.202896,-499.684662,-209.488946],[-38.335159,-498.632812,-202.127923],[-40.980606,-512.162140,-229.703941],[-42.097610,-508.474945,-230.415733],[-39.071792,-502.550171,-233.422294],[-39.386734,-507.148040,-231.826469],[-40.489822,-499.510528,-234.042015],[-38.980057,-494.473053,-234.498527],[-41.067459,-498.704162,-224.348930],[-40.712540,-502.708587,-218.269889],[-41.135391,-513.288910,-211.395013],[-41.203873,-517.299102,-203.627311],[-42.044021,-521.696838,-202.237206],[-45.515213,-525.825439,-199.615715],[-40.254593,-510.076568,-199.123284],[-39.427872,-504.248260,-200.562797],[-38.606094,-501.086639,-195.986779],[-38.702957,-500.404022,-190.188652],[-39.503067,-499.839813,-185.136222],[-41.500076,-505.637451,-224.492851],[-41.143448,-501.230163,-231.943748],[-41.662735,-514.661834,-219.215812],[-42.028763,-522.791748,-222.549279],[-41.725845,-525.624969,-217.053642],[-41.713821,-526.714874,-208.210228],[-41.733597,-532.930389,-208.486930],[-36.478042,-492.866577,-235.943444],[13.631394,-738.628021,-236.362754],[12.178146,-746.654205,-242.151787],[13.916245,-757.355438,-248.215844],[14.087021,-762.622406,-250.653680],[17.465439,-744.346588,-239.615623],[16.199265,-751.105377,-243.728722],[35.284836,-757.544220,-236.546562],[42.039108,-751.081207,-229.777154],[54.155930,-745.677765,-221.745965],[81.209030,-734.545318,-196.634391],[74.135910,-722.489044,-199.287681],[70.410263,-722.723175,-202.951165],[64.882004,-724.722870,-208.011254],[68.859787,-731.857330,-207.001885],[62.227524,-731.806549,-211.672721],[60.064194,-742.864410,-217.593437],[48.293442,-755.635101,-228.295311],[53.376083,-756.569977,-225.775566],[56.858627,-735.746063,-216.947868],[74.178818,-738.370208,-204.433648],[64.022873,-747.696991,-215.948662],[61.068283,-752.679901,-219.691277],[69.010605,-761.024200,-214.999900],[67.954575,-741.511444,-210.701409],[74.872543,-747.606720,-206.134362],[20.068710,-758.340973,-246.280601],[20.373581,-763.437957,-248.613792],[22.447678,-771.723419,-250.758018],[15.828415,-770.756256,-252.709649],[24.750839,-756.975372,-242.946647],[21.970505,-737.781341,-233.379296],[28.011826,-742.764496,-233.639549],[13.858261,-735.053070,-234.414849],[42.638840,-744.788116,-227.352562],[40.187485,-736.349029,-225.532859],[52.045456,-736.387970,-219.831688],[45.067368,-733.207855,-222.481133],[53.292038,-730.516266,-217.922966],[34.498886,-737.477813,-228.508476],[26.884689,-734.143036,-230.357353],[13.858627,-712.400787,-230.327903],[12.334580,-707.939911,-229.383416],[8.818222,-698.861206,-226.570244],[20.199448,-692.560333,-222.202812],[14.680527,-700.581695,-225.910331],[14.861191,-724.204254,-231.517936],[6.406113,-727.338043,-232.890710],[6.394760,-714.238800,-231.714500],[-3.315689,-708.084320,-231.025474],[31.564560,-728.696319,-227.498803],[35.464829,-718.658172,-224.329979],[32.637314,-711.438995,-224.173668],[32.718247,-705.934875,-222.507591],[37.347824,-723.516266,-224.650323],[41.135666,-717.004425,-221.086265],[53.396835,-721.752227,-215.727897],[31.170151,-751.977081,-235.978295],[114.026230,-780.625335,-193.207573],[119.949143,-775.318084,-188.505821],[14.530075,-730.620758,-232.595176],[-71.710953,-689.615722,-215.571220],[-51.645523,-664.051300,-213.197837],[-34.937881,-662.032409,-213.710929],[-39.879654,-669.047332,-215.795707],[-88.248245,-618.760345,-188.185876],[-96.560928,-617.759124,-185.130608],[-100.213821,-630.101471,-189.233146],[-90.394241,-611.444885,-184.250755],[-83.366287,-619.263916,-189.368278],[-81.260025,-607.830261,-184.689689],[-45.366897,-656.414520,-211.425987],[-75.970230,-629.668365,-195.441581],[-30.648880,-621.494232,-198.095482],[-29.744583,-610.223144,-193.040825],[-23.925613,-607.705597,-193.700982],[46.446884,-619.818695,-192.040459],[51.925583,-623.713501,-189.978295],[55.918991,-636.334320,-191.816337],[57.097946,-624.947754,-186.362968],[63.942246,-620.316040,-177.346429],[46.709335,-629.556915,-195.753960],[53.431137,-643.818969,-195.340690],[41.797897,-646.328064,-203.063774],[44.942734,-640.672363,-200.144706],[46.532761,-651.932281,-201.897668],[75.819565,-650.226165,-174.117364],[80.248581,-659.659546,-170.229026],[84.752060,-668.937103,-163.110863],[90.865769,-690.896972,-156.505852],[88.767746,-694.004242,-160.506280],[98.129624,-717.612091,-152.359032],[-26.577469,-597.984649,-188.415093],[-17.790176,-596.091125,-189.670525],[-17.276138,-606.772949,-194.974235],[8.262863,-583.677490,-186.972221],[-24.383194,-566.139709,-179.978905],[24.796555,-700.446350,-223.134819],[43.212265,-708.214874,-218.313012],[49.622727,-706.674408,-214.598503],[66.157639,-711.809112,-203.391044],[50.259628,-712.702789,-216.022332],[48.368149,-719.105987,-218.075921],[58.374924,-713.386871,-210.713280],[59.458481,-709.185150,-208.588708],[75.000595,-710.275665,-189.550225],[76.219833,-704.824310,-183.599052],[75.786484,-716.085174,-193.119804],[80.178574,-703.814972,-176.138298],[78.823593,-696.339813,-175.525810],[87.752060,-697.829895,-162.603722],[86.049118,-709.545685,-168.100274],[88.594772,-709.462982,-164.432458],[83.388901,-692.537140,-167.577568],[70.235642,-674.266510,-185.156211],[65.385178,-676.727997,-190.924156],[61.649582,-678.257446,-195.277946],[76.040085,-667.885925,-177.271446],[75.322067,-656.940674,-176.887352],[140.265122,-772.125152,-161.052972],[143.553452,-773.234100,-164.599052],[147.131699,-772.601410,-155.880119],[149.902817,-775.069000,-155.732934],[148.148178,-776.702789,-163.589471],[149.045029,-783.818634,-163.989647],[150.866257,-794.973541,-159.879539],[136.549545,-794.937896,-145.257561],[153.994370,-794.875457,-146.230156],[152.131027,-794.896820,-154.886956],[151.057968,-788.702179,-157.531120],[152.000107,-781.375457,-149.661339],[153.682419,-790.653106,-146.143852],[154.184616,-776.865387,-136.186211],[157.315903,-778.151642,-122.696098],[151.903305,-771.933990,-129.576043],[155.172165,-773.915313,-129.132301],[145.697434,-770.440887,-138.054741],[141.526108,-764.883514,-136.703971],[135.146103,-755.161407,-137.187585],[142.093979,-769.779205,-145.729301],[138.853928,-770.227020,-153.030816],[139.118881,-757.412018,-129.433220],[145.765000,-774.178131,-165.416894],[121.848801,-738.796539,-135.884483],[117.764633,-735.424835,-137.681114],[121.793503,-735.290802,-128.133598],[101.719711,-724.318817,-151.935723],[103.582199,-722.326568,-146.915123],[97.242416,-711.467010,-152.498954],[101.396896,-713.361114,-147.391533],[97.914780,-705.525299,-150.412834],[123.657211,-745.637603,-147.390068],[106.678452,-721.301605,-141.379173],[101.297836,-707.075470,-146.060173],[98.345932,-694.808014,-148.690208],[110.672714,-716.611358,-129.043785],[108.997299,-723.977813,-138.588218],[108.893295,-726.540680,-141.306694],[115.679550,-731.497589,-134.443473],[121.800583,-727.400848,-114.688758],[118.741013,-726.254669,-120.561943],[115.405502,-723.921539,-124.971641],[121.427902,-731.887115,-122.719062],[43.945358,-667.652710,-205.716850],[11.110336,-721.149933,-231.851922],[25.004685,-708.051056,-226.202630],[25.472824,-712.080536,-227.027794],[32.619675,-722.040619,-226.216454],[23.418564,-719.941009,-228.637840],[25.507492,-725.435272,-229.395348],[59.756333,-761.601288,-222.458642],[45.235214,-691.732513,-212.368705],[49.335373,-669.323242,-203.074090],[50.135666,-687.946014,-207.965355],[45.168381,-703.414093,-215.719566],[78.703110,-652.061676,-170.135368],[100.460068,-677.609955,-130.794533],[103.846176,-683.884613,-123.970055],[100.774399,-675.391937,-124.338402],[129.267563,-713.320038,-93.496818],[138.496994,-725.943390,-91.545494],[142.775620,-724.637848,-82.909340],[146.435166,-726.038543,-76.840110],[146.094284,-718.627594,-64.596183],[140.113571,-714.016876,-74.370613],[138.937546,-709.459930,-68.896965],[135.140305,-707.994720,-76.997001],[150.428330,-727.106353,-66.557304],[141.349167,-709.445282,-60.225899],[133.099350,-710.003692,-83.811073],[133.435288,-701.771576,-72.622459],[128.533920,-703.176788,-84.919670],[123.460373,-686.035675,-77.311059],[90.019028,-651.167389,-134.865380],[70.448105,-609.414764,-155.176841],[64.419907,-599.481567,-157.348656],[66.529831,-600.050506,-150.867515],[63.477219,-595.118316,-154.212791],[66.156235,-595.834625,-144.335929],[65.542343,-586.522033,-143.915550],[67.602646,-586.498321,-135.206750],[68.487595,-594.558746,-134.808556],[69.930283,-604.437286,-144.310905],[74.090744,-613.054290,-130.471825],[73.793930,-613.435882,-140.558769],[75.458542,-601.498291,-108.837623],[77.742722,-602.196106,-106.920357],[69.328110,-591.441162,-124.496590],[70.324265,-596.958404,-120.821205],[70.469711,-599.677887,-125.944206],[68.714279,-598.735229,-139.273949],[70.662155,-604.616180,-139.159294],[65.602707,-592.140777,-144.123405],[76.819687,-620.729370,-137.940879],[43.209030,-580.089538,-187.923852],[38.437119,-577.080658,-193.062768],[36.896469,-571.659820,-191.283531],[47.251267,-560.596161,-190.128135],[40.772080,-551.615356,-185.880578],[45.900620,-552.255188,-187.071709],[46.782944,-541.971191,-182.300346],[59.705612,-544.778778,-185.546288],[46.271896,-537.626190,-181.470359],[33.121567,-526.357391,-178.441002],[27.454025,-531.275085,-179.508873],[26.045273,-536.618835,-181.062249],[28.667465,-545.292541,-183.457360],[30.899155,-553.874389,-186.584923],[39.299606,-559.335174,-188.673516],[33.411423,-542.887054,-181.686760],[36.050217,-536.067932,-180.169640],[37.083786,-546.614258,-183.217400],[52.266037,-543.668731,-183.799003],[40.933518,-571.320068,-190.703086],[34.518662,-560.181915,-188.754632],[43.212692,-566.812378,-189.954399],[30.385666,-562.368347,-190.271843],[23.699082,-554.785003,-188.785119],[19.202438,-555.143737,-191.364709],[119.920212,-534.800659,-153.451165],[138.310715,-551.277099,-188.611839],[135.189133,-547.252746,-191.631524],[44.111740,-575.548980,-193.686271],[57.605148,-574.259338,-193.385583],[60.618210,-574.120300,-187.520013],[48.822617,-579.294738,-184.719322],[70.714768,-572.965973,-201.340202],[66.464584,-569.672027,-204.679130],[44.591110,-569.370819,-191.392510],[51.398789,-556.167511,-190.194999],[69.113144,-559.044128,-194.519585],[68.716599,-551.866058,-191.369012],[74.082382,-550.588043,-192.202171],[62.615158,-544.493316,-186.262047],[66.227585,-539.777191,-187.240380],[54.533249,-539.366913,-183.444481],[65.121262,-548.275268,-188.898034],[63.824265,-555.397400,-192.215600],[56.958603,-554.446899,-190.692315],[55.089340,-559.804901,-193.984460],[51.998703,-560.581237,-192.527427],[67.842453,-573.005798,-196.095115],[91.159348,-570.193115,-202.301200],[95.539047,-564.156372,-199.730369],[84.894943,-542.220977,-197.501488],[100.469589,-533.195678,-202.214347],[86.906479,-535.579681,-198.704522],[73.947434,-534.199829,-192.618614],[73.460678,-525.369049,-189.439811],[69.319443,-543.779663,-188.945213],[76.628647,-547.348419,-192.973106],[84.137802,-556.791076,-196.357200],[83.782211,-559.777008,-197.151237],[82.599411,-551.524536,-195.372521],[73.004440,-538.451599,-191.972648],[64.971359,-527.653869,-187.299064],[49.217331,-524.827057,-181.676628],[51.479355,-534.427185,-182.394585],[44.054123,-527.507721,-179.947564],[38.783737,-526.056366,-178.824883],[33.543442,-519.448822,-177.798943],[16.526413,-516.461242,-177.363244],[21.958786,-520.563568,-177.843284],[20.464523,-525.921631,-179.191825],[21.167954,-535.561187,-182.583244],[18.855026,-538.012298,-185.574944],[14.852097,-544.541656,-190.881736],[12.536606,-548.490539,-195.623771],[13.002365,-538.229675,-191.699669],[8.840927,-536.104461,-200.403312],[7.529709,-531.052368,-202.152000],[6.768234,-526.828460,-205.352317],[6.356979,-536.222961,-209.267723],[6.952438,-544.950195,-209.672783],[7.074143,-539.041015,-205.769615],[22.241440,-545.050232,-186.001152],[8.616379,-501.125549,-175.088981],[122.728378,-562.600158,-197.658897],[119.906845,-565.801758,-196.312645],[115.227219,-569.352752,-196.230950],[88.292160,-554.487091,-168.585746],[91.215134,-559.829834,-175.100151],[149.246323,-530.534668,-157.543419],[151.944504,-520.745910,-153.344841],[152.932053,-517.064331,-157.133232],[155.382797,-510.221313,-157.220756],[153.853745,-508.767090,-137.293877],[110.963669,-537.278473,-150.975578],[109.677597,-538.042572,-147.069847],[115.496994,-535.868774,-143.742211],[74.481918,-548.778808,-102.014702],[76.706223,-549.058166,-100.863610],[78.822312,-548.034088,-103.256446],[66.010117,-550.692108,-102.473503],[69.928208,-545.358825,-106.757896],[77.172775,-551.491577,-100.622323],[75.701584,-556.472351,-104.901313],[82.045151,-550.219116,-101.987342],[128.055771,-539.192444,-113.925346],[121.312668,-543.502136,-115.888343],[119.116257,-545.478180,-111.361245],[113.772324,-549.490295,-109.249107],[94.005966,-655.137115,-110.108193],[73.360703,-566.303924,-127.206596],[55.948593,-505.154236,-114.812324],[53.168259,-505.862518,-114.427711],[53.068588,-514.200470,-113.573875],[57.744370,-515.589904,-114.533226],[52.747482,-522.722931,-111.326851],[53.893234,-528.236602,-108.258950],[51.954086,-478.539154,-111.164192],[51.572800,-481.624633,-105.760048],[49.854233,-485.355072,-97.272911],[52.936691,-480.255096,-95.243934],[59.224716,-472.415985,-96.837196],[58.988205,-474.741668,-100.236183],[65.298386,-467.249450,-101.639289],[61.942917,-465.643829,-108.970925],[64.356003,-458.739105,-113.159080],[69.956284,-461.107422,-102.050209],[64.246445,-467.668487,-98.261178],[69.597824,-459.908172,-99.901863],[59.673752,-459.736328,-95.285835],[54.384262,-448.296875,-85.274879],[73.306748,-450.514267,-100.648415],[75.281235,-451.686950,-102.102486],[76.732834,-448.340469,-104.577462],[65.860458,-460.964996,-115.922096],[62.760666,-460.863922,-114.733604],[59.705673,-465.877319,-113.149345],[55.257492,-472.664459,-111.382011],[56.911240,-475.128112,-104.063774],[56.532822,-477.954162,-99.556084],[94.264084,-547.020874,-137.426873],[89.106674,-551.539398,-132.803306],[112.596054,-548.573303,-117.242088],[110.061264,-552.767456,-110.943108],[106.710373,-552.799041,-115.311455],[97.748032,-550.531280,-127.149513],[125.365341,-539.494507,-116.641578],[129.114365,-535.689483,-121.734626],[134.881638,-531.332428,-117.577157],[131.977341,-535.580810,-114.590890],[133.139145,-533.265503,-113.488853],[74.201218,-562.689911,-136.451011],[104.662521,-540.247009,-145.367974],[110.749497,-543.051605,-130.283379],[114.175217,-544.096893,-124.901162],[120.633774,-540.707733,-124.443276],[126.345261,-535.784485,-126.999351],[133.371628,-530.880371,-124.787835],[137.371750,-526.478058,-124.557472],[128.987167,-529.029663,-139.028465],[124.152512,-531.010070,-142.553856],[129.237839,-527.599670,-142.514061],[139.021225,-520.757049,-131.411094],[116.421433,-537.705200,-136.197624],[122.377060,-535.831329,-132.876670],[103.049667,-545.304321,-132.743782],[106.940842,-541.076812,-139.104058],[95.648300,-543.199035,-146.382164],[89.583664,-545.563354,-145.207878],[150.531662,-512.063263,-130.287468],[149.091293,-507.024627,-124.142495],[137.991745,-495.304657,-150.927665],[136.933762,-487.741852,-161.168450],[106.832993,-541.353943,-202.586753],[110.421494,-548.918701,-202.571556],[96.830856,-536.209442,-201.838433],[102.069016,-547.018432,-202.018791],[88.933579,-540.280334,-199.450248],[93.448837,-550.600036,-199.343742],[87.749741,-553.115509,-196.788780],[91.380478,-545.142486,-159.920098],[86.646591,-549.199188,-141.067436],[143.830490,-499.493652,-130.470909],[146.381394,-501.073578,-128.084801],[141.534348,-498.659729,-134.202446],[145.757614,-502.889984,-122.512336],[142.235275,-503.868896,-117.101281],[150.393967,-502.870758,-131.464608],[130.948105,-500.310821,-129.336770],[140.205063,-496.965179,-144.041618],[131.856552,-496.490936,-144.402306],[132.297531,-493.865661,-149.568931],[128.320969,-490.505737,-139.004906],[128.111252,-482.661560,-147.474328],[126.576889,-478.351837,-154.488000],[133.219528,-478.375335,-141.488884],[133.503586,-476.417022,-135.018731],[129.659470,-494.569061,-144.532096],[129.777451,-498.501037,-134.314889],[126.943405,-471.665832,-172.079490],[134.339890,-435.564514,-164.703514],[122.517868,-406.249435,-176.606437],[120.188950,-400.719101,-181.138603],[115.900742,-395.735244,-191.457940],[118.858383,-407.066574,-188.674247],[115.728745,-407.357406,-193.464531],[108.455063,-410.639770,-203.107627],[111.295151,-416.065887,-201.060234],[105.316330,-412.087967,-205.539207],[103.878586,-403.715118,-205.774589],[101.358933,-394.391418,-206.936822],[98.951035,-401.348022,-206.825859],[87.902939,-380.971084,-209.195397],[72.742416,-376.716232,-209.148429],[77.911484,-359.395935,-210.732415],[84.643784,-369.970550,-210.405144],[94.332016,-379.201294,-209.221458],[100.688645,-381.547088,-207.526847],[110.093979,-380.476822,-196.255699],[113.197189,-387.072708,-186.502739],[109.014450,-385.192779,-183.856071],[111.723129,-393.547104,-178.390312],[112.578293,-390.158645,-181.622521],[129.644211,-437.039077,-180.607109],[128.288193,-427.281097,-178.354058],[131.513901,-425.565429,-169.404534],[132.469223,-428.095581,-166.575370],[132.169541,-433.497055,-172.482232],[130.334152,-434.342804,-155.785698],[125.089951,-432.363907,-155.507255],[128.215805,-420.059646,-165.098138],[124.509323,-411.738601,-170.449975],[123.670212,-420.623718,-162.320336],[118.565415,-425.576049,-158.422783],[118.320419,-418.085647,-163.284477],[112.113815,-410.164566,-168.851188],[110.270187,-397.269867,-175.792168],[110.824326,-442.194992,-149.210686],[104.000046,-448.741684,-143.609275],[104.398422,-453.652984,-143.265953],[100.812302,-463.015442,-138.751091],[99.250717,-460.599975,-136.532281],[101.927414,-453.606964,-140.824181],[104.323959,-441.078354,-132.535682],[103.811264,-440.841720,-129.704979],[105.737229,-432.645065,-133.293038],[108.230209,-418.259201,-134.930961],[107.861130,-415.801712,-132.145897],[109.769333,-403.311310,-134.297158],[107.586716,-402.007538,-129.523216],[100.865463,-412.373062,-121.719001],[106.322495,-396.968353,-128.350258],[111.130234,-393.408264,-139.285606],[111.338120,-385.639679,-142.700004],[110.369797,-403.588119,-138.601951],[108.591904,-418.645965,-137.835168],[104.364670,-444.724930,-142.999290],[105.373947,-442.104370,-145.054405],[106.491684,-434.766937,-141.446282],[109.194199,-424.082763,-148.749443],[107.322250,-434.622284,-148.664360],[108.446457,-428.957184,-151.977043],[111.103500,-430.966690,-154.388786],[71.674545,-504.664367,-117.447350],[77.663803,-493.399994,-123.605781],[96.231857,-501.578766,-131.573388],[100.660996,-496.005554,-130.901176],[105.754257,-500.478180,-126.304161],[106.591538,-495.569793,-127.478508],[103.624313,-487.317535,-132.620445],[89.480454,-516.867187,-128.293281],[85.544541,-514.366882,-126.060250],[89.627548,-511.420288,-128.484947],[112.895981,-487.792755,-127.556144],[133.881455,-499.047668,-138.240380],[132.045334,-484.957061,-129.173515],[131.903793,-486.729919,-131.623756],[126.960068,-486.360199,-147.109367],[127.480332,-489.973633,-146.114007],[108.437363,-547.476135,-123.727227],[79.791489,-580.019073,-94.592247],[81.760849,-587.305694,-97.571922],[82.696213,-592.376983,-99.614021],[85.197556,-593.404907,-102.696388],[85.762558,-587.294159,-102.525948],[83.554001,-592.181549,-107.408226],[84.961472,-586.891205,-99.556892],[84.681931,-581.205383,-97.622627],[83.052963,-597.693237,-106.310737],[83.308823,-604.440551,-101.788429],[80.739304,-609.755920,-99.553886],[82.080063,-610.663330,-95.499412],[75.781845,-611.535095,-101.227287],[75.022385,-605.940521,-107.976249],[77.133408,-607.553650,-103.877556],[81.915512,-605.762024,-94.386604],[82.871445,-603.865356,-104.268577],[115.863937,-478.427429,-131.618539],[122.571396,-455.297058,-142.314537],[125.119187,-458.402191,-140.700738],[111.074021,-499.080902,-122.359459],[109.857956,-507.007293,-121.067833],[102.901596,-507.851135,-127.241615],[125.204270,-458.684814,-203.052604],[124.747116,-449.948135,-202.142968],[111.859177,-486.692993,-200.904809],[103.045334,-551.171478,-202.003257],[92.190720,-557.425232,-197.286094],[79.630844,-520.096313,-191.792564],[87.258103,-522.252990,-195.943412],[83.371018,-529.993133,-195.755455],[95.228012,-531.183899,-201.080804],[84.572067,-518.017975,-193.698875],[84.412094,-507.507354,-192.279900],[71.102890,-511.094421,-185.159721],[73.761276,-503.354828,-185.790763],[74.590256,-483.228820,-186.929009],[71.004013,-478.394104,-184.943138],[65.387436,-478.780578,-179.887627],[63.272995,-484.168213,-177.815391],[55.043503,-480.905487,-174.156762],[46.354172,-479.759857,-170.773888],[53.747299,-477.023437,-173.851799],[37.681015,-494.195343,-169.051628],[48.501511,-505.532287,-175.044029],[55.090622,-505.781067,-177.446128],[64.429855,-511.932647,-182.177604],[63.504196,-502.088592,-180.217369],[27.566574,-474.420288,-165.845085],[41.598679,-482.963714,-169.587578],[38.909653,-484.077301,-168.593528],[59.397507,-473.228241,-176.813012],[69.809372,-470.229614,-185.906730],[80.636154,-474.851288,-190.909600],[88.518479,-471.663177,-195.022361],[82.080002,-462.356384,-195.109917],[91.695480,-464.838409,-198.496148],[72.744003,-498.166687,-185.313958],[57.057480,-498.205658,-176.425956],[52.011154,-501.025360,-175.011284],[21.339829,-456.214782,-163.073967],[11.995651,-448.055465,-160.898857],[10.618271,-432.654525,-156.618766],[7.984238,-424.718963,-153.657859],[6.270065,-404.203247,-147.488700],[9.609421,-401.441574,-147.614464],[14.136093,-399.632995,-149.319328],[8.901230,-390.935043,-144.940666],[6.582260,-383.311096,-142.250999],[1.627426,-370.449600,-137.110649],[-0.112869,-356.936157,-133.161659],[-4.310135,-356.434066,-131.352851],[-10.132706,-356.266540,-130.967857],[-22.280289,-377.184906,-145.702568],[-34.488357,-368.004669,-152.514885],[-40.593094,-359.965942,-158.439872],[-45.218277,-348.602844,-155.065423],[-44.119217,-353.292129,-162.269798],[-17.818069,-373.860290,-141.393486],[-13.150284,-380.528686,-142.306664],[-20.021377,-385.309402,-148.203361],[-19.673721,-355.127884,-134.191643],[-23.691116,-342.973968,-131.272194],[-25.321976,-331.481918,-127.368157],[-21.209427,-329.861053,-124.980980],[-18.731705,-341.977798,-128.530388],[0.547348,-373.562942,-137.589439],[8.592758,-379.313247,-142.731163],[12.625290,-391.804062,-147.444175],[3.312058,-389.776703,-143.002800],[-10.613846,-427.174514,-160.690331],[-11.923477,-419.873977,-159.049675],[-16.774124,-422.643875,-164.685265],[0.552170,-455.533569,-162.858025],[5.168381,-441.604263,-158.949821],[17.995346,-445.895904,-160.785514],[60.115830,-534.793487,-185.535882],[67.066025,-535.267517,-188.883049],[66.869614,-520.830017,-185.977714],[51.612412,-512.900818,-179.247368],[40.973801,-514.642669,-178.321343],[23.234909,-568.673126,-196.908929],[20.009689,-565.719299,-198.270897],[19.428879,-563.576996,-197.357872],[15.280625,-562.574829,-201.088799],[10.954147,-560.751190,-202.159721],[11.767136,-557.887176,-203.997704],[11.652573,-555.586975,-203.631280],[8.924973,-555.823242,-205.647515],[16.114243,-565.437713,-199.147880],[14.072739,-567.294799,-193.950004],[5.780747,-538.465149,-213.812005],[6.335800,-530.805023,-214.800621],[6.346542,-524.702972,-216.720635],[5.107407,-525.072357,-219.036888],[3.061447,-523.208160,-218.874413],[-2.830093,-521.712646,-213.989953],[-7.719437,-520.787445,-211.652092],[6.322434,-526.261657,-212.802392],[2.758530,-517.518676,-220.933892],[-4.245804,-498.474609,-213.161339],[1.790878,-543.475494,-211.157402],[3.062851,-536.449615,-215.869987],[-1.394058,-535.794433,-212.665887],[5.709580,-532.832092,-216.787742],[3.887009,-532.443206,-217.519829],[67.142929,-565.327057,-201.776176],[61.490463,-562.762085,-199.077538],[59.231186,-559.069427,-194.881097],[64.015183,-494.235717,-179.754998],[54.652573,-489.278106,-174.280572],[69.329392,-492.998199,-183.223839],[66.101608,-484.759033,-179.731896],[71.124863,-484.496216,-184.352868],[71.249802,-466.218445,-188.278892],[45.041184,-456.431091,-173.756554],[34.493515,-450.923965,-166.986199],[21.229050,-426.115707,-156.475761],[20.055588,-413.406463,-154.297721],[22.023361,-437.118957,-159.219720],[25.425156,-437.578994,-160.318321],[36.812973,-461.552398,-168.560204],[31.325241,-455.493530,-166.114098],[58.523605,-526.663635,-184.819694],[46.669296,-520.184051,-180.712181],[34.083054,-510.195251,-175.170434],[46.562180,-496.112060,-171.705345],[48.464096,-486.658477,-171.570855],[28.601547,-492.777038,-167.983299],[28.355026,-498.587005,-169.609611],[37.763596,-499.366333,-170.189079],[34.702622,-503.359070,-171.411277],[30.226547,-484.000244,-166.658135],[21.180344,-490.195404,-168.211692],[7.538071,-465.086761,-164.518791],[-22.478104,-406.423538,-195.650200],[-21.311600,-411.810898,-198.208152],[-21.500503,-408.064407,-192.880973],[-25.603470,-399.337188,-193.156518],[-34.256546,-386.578354,-189.249015],[-25.415176,-400.265136,-189.575798],[-23.568741,-411.710113,-199.787285],[-27.859756,-404.768600,-199.695244],[44.030441,-448.342941,-173.916343],[38.270615,-441.958160,-169.728387],[38.597885,-434.416809,-171.038078],[50.171921,-439.430954,-181.973046],[45.895065,-442.641678,-176.691520],[44.458298,-409.730652,-182.937461],[40.992844,-404.030258,-180.462547],[36.809616,-393.120254,-179.336357],[34.810898,-398.552047,-175.048820],[31.564743,-402.227707,-168.982536],[37.740708,-407.757171,-175.385978],[37.159287,-415.533996,-172.783531],[30.716904,-408.401992,-166.176414],[52.973557,-397.056060,-196.241845],[49.448837,-390.146560,-195.509178],[46.551865,-382.163727,-196.368461],[44.676743,-367.169769,-202.232171],[46.595749,-360.586410,-204.324302],[42.513168,-379.616180,-192.975608],[42.389816,-393.404983,-185.079643],[49.024094,-402.595688,-189.066490],[48.283737,-407.571304,-187.704766],[52.315354,-408.808075,-191.071709],[47.740769,-419.242508,-184.905296],[61.096665,-424.021179,-195.210044],[64.046494,-408.382873,-201.957145],[62.813400,-396.931457,-205.162285],[58.798264,-387.759124,-204.874169],[59.365708,-408.164795,-197.972527],[54.264694,-406.715393,-193.901176],[54.217331,-419.617401,-190.682762],[65.123032,-418.327682,-199.559319],[59.752854,-396.780990,-202.946953],[54.643906,-385.031402,-203.305503],[48.822312,-375.922805,-201.996177],[53.265366,-374.363266,-204.420525],[57.788803,-379.169326,-205.176873],[-2.279800,-264.817917,-133.773980],[-3.792740,-275.757042,-124.585823],[-7.232376,-268.631187,-120.166908],[-5.386917,-267.266830,-123.388329],[-8.856094,-259.113502,-119.956154],[-2.320755,-260.412063,-136.538169],[-5.720840,-252.799892,-126.960656],[-5.096573,-243.503650,-127.854271],[-7.266495,-275.098488,-119.847771],[-6.224991,-287.524536,-119.849785],[-2.773819,-303.310905,-124.288887],[2.559067,-283.492614,-138.162194],[-1.727676,-276.468704,-129.146766],[-1.559891,-282.470199,-127.294990],[-3.268326,-293.056945,-123.820610],[-4.270096,-260.149185,-129.261651],[-28.255569,-311.544388,-119.816476],[-30.504166,-325.829757,-127.871223],[-28.530533,-339.164032,-132.476783],[-35.506119,-332.927231,-134.478874],[-38.763870,-348.375869,-144.627281],[-31.547317,-368.754989,-149.087578],[-37.902725,-362.826294,-153.878654],[-25.930740,-376.524994,-148.412621],[-21.501724,-369.652252,-141.512993],[-29.216995,-361.688949,-142.826805],[-32.372208,-357.902679,-143.523705],[-25.443375,-351.849746,-136.182396],[-42.820022,-352.419464,-153.222923],[-28.209061,-397.214782,-165.157738],[-8.340652,-406.628906,-150.997154],[0.923142,-398.801086,-145.734520],[-1.290848,-387.297882,-141.897117],[-9.130142,-389.005737,-144.345147],[-4.342728,-392.783020,-144.450004],[-12.825394,-392.036255,-147.172661],[41.240341,-465.679290,-170.583031],[28.499069,-459.327240,-165.960197],[29.502976,-445.682052,-163.817466],[40.846726,-469.834320,-170.215873],[52.761887,-449.955551,-180.512108],[53.175400,-433.700439,-187.392387],[56.206833,-434.320007,-189.989586],[68.848679,-426.112762,-200.048027],[67.924912,-436.758865,-196.836724],[71.510849,-420.693390,-203.117547],[76.062851,-421.644622,-205.831016],[68.044907,-409.718292,-204.565910],[71.132431,-409.568344,-206.225059],[80.858322,-424.135147,-207.129143],[78.355087,-416.362487,-207.229942],[80.311752,-396.473953,-207.638298],[63.978623,-383.830215,-206.530723],[65.973862,-376.871124,-207.698997],[61.988144,-370.218826,-207.306022],[64.543564,-394.672119,-205.964654],[73.426010,-387.552292,-207.759728],[70.765976,-400.670807,-206.793327],[80.879685,-407.467926,-207.448814],[54.282822,-365.515732,-205.995842],[63.114487,-357.438171,-209.031669],[87.810959,-431.647720,-208.201377],[99.060349,-442.623764,-208.022880],[91.158188,-437.972961,-207.997154],[104.289902,-433.326080,-206.446862],[107.065170,-427.455551,-206.043419],[101.712753,-420.816696,-206.756492],[90.472275,-430.119674,-208.446252],[83.008103,-420.878112,-207.513206],[92.007614,-406.707397,-207.267693],[91.175095,-396.892608,-207.695763],[95.636582,-391.184234,-207.805351],[83.456162,-392.264862,-208.171715],[94.490708,-437.858963,-208.547570],[113.620102,-426.177948,-202.380944],[119.063645,-432.849792,-199.352441],[118.594833,-426.571365,-196.530937],[112.491623,-431.931427,-204.830956],[108.972458,-423.434372,-205.208886],[117.037216,-419.705871,-195.467553],[124.482285,-426.315216,-185.931541],[125.842026,-416.620010,-178.440789],[119.026657,-419.615844,-192.437768],[122.620896,-417.912918,-185.447410],[122.793076,-409.156158,-181.709800],[97.677109,-412.487793,-206.818809],[80.402878,-428.132126,-206.338035],[84.105087,-440.398346,-203.439293],[84.851059,-360.713348,-210.696709],[87.664169,-357.729339,-210.315910],[82.339035,-359.071609,-199.508720],[82.133286,-362.604736,-196.975976],[85.510849,-362.958267,-199.011773],[94.484482,-369.743530,-195.209098],[93.426010,-373.853561,-190.253350],[97.739792,-378.187851,-186.644860],[94.653427,-379.270263,-183.898888],[91.922531,-378.508163,-180.711052],[84.864121,-365.100479,-180.350242],[79.094040,-359.271881,-195.938072],[85.590500,-368.218612,-182.327232],[87.420578,-370.596496,-187.729058],[84.239487,-366.514892,-192.640740],[86.469406,-366.903701,-195.828544],[90.237473,-368.203979,-196.114892],[80.112106,-359.194030,-187.075004],[80.624802,-362.005829,-192.866784],[75.455307,-353.970138,-193.025933],[90.552353,-373.412811,-188.163140],[70.036606,-338.474075,-181.356469],[66.923447,-333.218811,-179.287315],[71.028366,-331.438537,-173.880790],[75.472702,-337.690582,-173.876152],[75.985153,-343.485595,-177.838341],[64.410568,-329.991333,-186.382043],[61.148361,-325.255386,-184.865746],[66.243515,-321.528701,-192.768272],[61.224228,-314.872245,-191.242668],[63.127243,-320.511383,-189.394889],[53.083481,-315.150955,-181.401208],[48.088791,-309.151214,-178.809685],[43.321152,-302.677261,-173.863914],[54.298569,-317.689308,-175.158593],[53.131333,-317.218345,-179.085929],[49.068344,-311.767372,-175.058221],[67.419663,-336.446411,-187.600761],[59.423386,-325.050781,-178.381097],[100.027695,-349.141952,-162.396233],[103.253281,-355.369934,-160.142845],[103.714401,-364.908127,-160.727470],[106.182968,-360.000747,-156.630944],[105.639694,-374.506271,-159.021386],[106.618393,-381.116302,-157.633964],[107.678940,-395.926101,-157.438835],[108.128525,-402.415405,-157.169853],[106.880600,-412.261474,-159.951286],[107.349106,-413.009826,-163.119866],[107.070908,-401.781067,-172.191154],[102.712570,-393.499420,-175.530937],[97.277451,-388.071792,-173.323814],[88.816818,-368.835647,-176.126945],[91.830856,-363.976974,-172.396751],[85.909775,-361.769760,-176.943229],[105.419846,-381.753875,-184.978325],[111.703476,-382.613693,-193.493705],[104.375656,-370.825760,-200.246148],[105.441757,-375.328628,-202.074821],[110.746323,-383.985489,-197.303032],[100.467575,-367.071045,-204.724815],[92.380356,-356.378387,-208.142631],[91.977768,-365.905731,-209.931756],[96.572250,-377.887283,-208.965417],[97.431015,-371.553878,-208.377923],[94.861313,-362.778564,-208.521019],[102.559555,-375.493530,-205.284202],[102.622971,-368.615509,-198.834069],[92.560898,-363.061264,-200.264549],[92.655930,-356.851379,-203.052360],[99.150986,-362.927597,-203.175895],[94.229843,-356.024948,-205.514396],[98.730332,-363.325912,-201.071800],[103.659714,-387.382324,-180.102074],[96.937424,-386.412506,-176.818992],[98.759995,-384.680359,-180.694054],[109.157333,-421.572998,-158.330833],[109.728195,-413.665878,-152.200493],[105.805954,-405.618484,-161.129875],[103.334641,-399.072479,-165.379264],[101.395310,-396.627639,-169.391228],[100.626145,-394.567291,-172.170219],[104.551804,-392.665207,-162.301567],[100.492050,-361.095077,-164.438531],[96.963364,-358.685074,-167.789422],[93.481674,-354.182403,-169.842827],[103.291550,-380.790252,-162.185600],[95.525803,-370.658828,-169.222587],[98.892929,-364.111099,-166.681266],[109.112045,-410.624160,-155.331291],[108.407272,-384.388321,-153.634728],[28.416977,-365.922165,-180.122613],[31.701035,-363.551834,-186.456443],[22.953598,-355.238739,-173.043480],[19.799423,-349.431457,-165.858818],[16.860092,-359.223602,-157.852897],[15.503342,-365.438781,-153.320366],[17.321762,-369.803344,-155.980767],[25.829025,-380.556137,-170.447929],[22.747788,-374.519760,-167.581718],[27.069016,-371.822601,-175.534629],[-3.407974,-500.625152,-190.076530],[-6.697647,-488.721100,-188.960411],[-9.855789,-456.451202,-201.177972],[-13.413162,-452.251861,-199.223321],[-8.051834,-469.316253,-175.306237],[-9.121414,-473.123840,-186.277122],[-9.918655,-464.908935,-185.125878],[15.188889,-523.822235,-180.029350],[15.595078,-534.037109,-186.702903],[12.682541,-530.853363,-188.702965],[10.063095,-529.342285,-193.279136],[2.004318,-512.794342,-190.140465],[6.358444,-523.423340,-199.848777],[3.222763,-516.612274,-200.827965],[4.875961,-521.189789,-212.809319],[2.071335,-514.235107,-217.250878],[-1.448746,-505.851959,-205.673760],[8.127609,-526.662780,-196.269706],[7.995712,-523.890838,-190.909385],[-0.055069,-509.944366,-195.751824],[-5.433609,-491.952758,-193.431968],[-6.119522,-484.123901,-194.699394],[-3.815750,-500.635589,-197.334343],[-2.276321,-504.703979,-200.232353],[1.798874,-512.703827,-204.016503],[-3.400528,-500.086670,-205.154747],[-4.202225,-496.270874,-203.222619],[-5.265579,-493.740448,-212.059562],[-2.461929,-508.088440,-225.041558],[-6.317276,-510.706756,-221.590844],[-1.397232,-517.789520,-218.116722],[-1.302688,-513.341736,-222.476280],[-5.885391,-519.060272,-213.659966],[-13.499039,-514.890350,-214.202264],[-23.825760,-509.349426,-219.380211],[-27.468887,-515.444763,-216.116173],[-32.586197,-517.599365,-217.977349],[-16.438675,-502.501800,-226.587211],[-20.654007,-501.249603,-226.460716],[-17.099808,-499.078430,-231.682304],[-25.314712,-492.154693,-236.077140],[-32.602310,-495.063049,-235.678856],[-28.101150,-497.740966,-230.986626],[-33.164505,-501.220855,-230.128716],[-27.433487,-494.105255,-236.167717],[-23.273209,-495.979156,-234.380150],[-19.669815,-507.356994,-220.365929],[-11.876053,-510.013763,-219.441704],[-9.819290,-505.091430,-227.388633],[-18.215164,-495.436187,-234.866233],[-13.800125,-494.465240,-233.399711],[-19.604935,-491.963257,-234.534813],[-25.049515,-488.151153,-230.880027],[-29.929520,-491.785034,-236.045555],[-8.015762,-499.082275,-230.782341],[-6.747818,-503.722290,-229.825493],[-12.446976,-496.926635,-233.603905],[1.476425,-513.164428,-211.283470],[-15.639786,-519.354797,-210.046074],[-20.481827,-516.372772,-212.512292],[-16.206131,-528.534912,-204.068597],[-4.843948,-529.686859,-209.828331],[-2.579544,-537.329773,-210.321159],[-21.969986,-531.351776,-202.573295],[-22.129593,-553.728088,-185.265312],[-19.522293,-523.792206,-206.457757],[-23.616226,-521.604461,-209.234520],[-29.505081,-522.345825,-212.623131],[-6.269180,-499.338989,-222.379966],[-31.078750,-506.958923,-225.472375],[-16.712967,-489.548187,-226.792106],[-21.189590,-483.924041,-224.576928],[-10.939041,-493.912262,-225.017541],[-20.316543,-423.175979,-178.343376],[-25.826370,-409.358673,-173.644279],[-18.377029,-425.217010,-183.778831],[-17.532791,-429.501007,-183.299462],[-9.759598,-460.756195,-173.321891],[-2.303238,-446.344665,-161.131736],[-5.204727,-485.939331,-208.399070],[-13.170730,-490.065857,-223.827232],[-7.454483,-496.262542,-221.094413],[-37.231583,-497.071899,-235.612846],[-33.510208,-485.115417,-211.597557],[-35.932083,-486.895202,-218.318809],[-37.643265,-492.734100,-212.651696],[-33.581558,-537.993377,-208.430047],[-26.601822,-503.902588,-225.203605],[-3.684585,-508.976928,-225.537255],[-8.102371,-529.709594,-207.016320],[-3.943924,-560.112060,-190.137687],[-1.118179,-558.392822,-193.709496],[-12.359451,-556.845031,-187.686730],[-8.572403,-582.894226,-186.109917],[-18.772415,-585.194336,-185.435905],[-18.813614,-580.393890,-184.276269],[-30.308548,-509.507660,-222.646722],[-67.648147,-558.233398,-172.348442],[-60.950271,-561.608825,-172.413414],[-66.114639,-560.506469,-169.827903],[-60.048111,-562.512664,-191.527458],[-69.136490,-557.162750,-198.096214],[-62.375503,-561.311279,-185.292534],[-75.930069,-553.139465,-184.937278],[-64.311600,-547.701507,-222.032859],[-62.347366,-545.002136,-213.981805],[-60.305740,-547.923553,-209.740257],[-59.295425,-556.785247,-204.363456],[-44.642105,-547.116241,-201.026971],[-45.983963,-540.784027,-202.170127],[-50.413834,-537.426605,-202.069267],[-58.344742,-540.791198,-207.438470],[-60.123611,-528.541900,-207.691277],[-49.884476,-543.234985,-201.913841],[-54.793472,-542.712158,-204.292351],[-57.631668,-544.977050,-206.221184],[-37.318619,-561.174072,-195.763023],[20.620285,-640.867218,-209.362298],[-86.283523,-560.987243,-157.974022],[-99.191666,-551.987823,-149.317375],[-90.783646,-552.138092,-157.042931],[-106.604813,-542.816467,-154.601432],[-103.906326,-545.712799,-157.842400],[-99.973343,-549.395019,-151.648980],[-103.075455,-546.781463,-153.747857],[-102.589554,-548.664520,-148.874107],[-89.034988,-555.579529,-155.355552],[-82.038284,-558.639984,-160.355369],[-80.620743,-565.216064,-161.817100],[-93.613968,-553.036804,-152.203484],[-102.342056,-516.824585,-176.082848],[-99.018570,-507.551727,-178.972343],[-100.689407,-512.278900,-179.901971],[-127.062637,-616.670105,-170.343835],[-142.755936,-545.848571,-159.057335],[-130.802872,-497.980774,-182.743645],[-131.118301,-491.761078,-185.510093],[-144.660049,-499.974060,-177.097283],[-131.716812,-486.511810,-186.567834],[-112.690079,-475.350769,-178.566520],[-116.618912,-485.466766,-185.104210],[-123.810867,-486.129394,-187.063835],[-135.626907,-496.554535,-182.698814],[-137.010879,-493.412964,-183.060142],[-151.632095,-499.989227,-157.425591],[-148.660354,-497.041412,-146.173729],[-143.685074,-487.555450,-143.979058],[-140.119522,-482.126190,-149.357261],[-148.994034,-496.096222,-139.618187],[-148.972305,-491.321655,-130.878166],[-157.842239,-514.095977,-139.666252],[-157.286575,-512.903534,-135.594536],[-114.538040,-509.559051,-168.464287],[-117.963272,-510.078766,-169.951469],[-106.912430,-507.691040,-166.485801],[-108.296341,-513.408447,-162.379388],[-110.479751,-510.005279,-165.451377],[-103.640030,-514.265686,-164.614007],[-117.252273,-514.957885,-164.961480],[-123.859329,-553.967651,-133.628930],[-123.283890,-546.500335,-135.447808],[-115.280777,-531.958435,-144.120446],[-105.461014,-533.993835,-155.315331],[-109.143936,-534.886535,-149.140893],[-108.715835,-527.418609,-151.633628],[-115.098099,-528.329498,-147.502281],[-112.308609,-531.742065,-146.910575],[-103.382278,-526.111786,-159.844413],[-106.198990,-530.782684,-205.561577],[-111.492996,-527.811523,-208.698448],[-105.688431,-541.042328,-170.235435],[-106.508499,-519.468414,-156.969688],[-110.737747,-523.685699,-152.395805],[-125.219986,-535.236389,-149.540733],[-136.723892,-544.551330,-154.882957],[-131.033890,-545.724762,-148.601432],[-128.123123,-549.650482,-143.541343],[-123.190811,-497.267059,-182.237236],[-125.498733,-492.004150,-185.307426],[-115.990372,-468.018005,-170.475669],[-132.590713,-468.703216,-159.694877],[-146.538956,-431.637619,-154.159020],[-151.721817,-422.840530,-152.207389],[-157.722305,-406.872009,-149.403771],[-161.910477,-398.916320,-147.115838],[-164.205582,-385.540039,-144.969810],[-158.759109,-384.641800,-141.073448],[-153.897659,-387.375518,-140.014366],[-167.348282,-384.782577,-144.433739],[-172.419693,-373.615707,-141.620629],[-172.320938,-382.703476,-138.867211],[-177.761429,-370.597320,-136.200829],[-174.178177,-374.134781,-140.118797],[-171.152969,-371.463058,-141.392234],[-175.723465,-367.273040,-139.816398],[-172.289871,-359.674286,-135.860313],[-177.978653,-354.925308,-136.309715],[-182.552872,-345.741913,-132.640649],[-187.914017,-342.289200,-130.767831],[-188.983780,-328.301407,-86.643043],[-187.813492,-329.062576,-82.320335],[-180.770218,-338.895263,-84.107063],[-174.892349,-340.682739,-81.771828],[-180.597183,-329.126739,-77.799172],[-174.908157,-337.897018,-72.738929],[-174.403702,-338.309677,-76.686851],[-173.511612,-345.948608,-78.746026],[-184.090530,-332.985626,-81.209373],[-175.335586,-331.365158,-74.848487],[-175.208206,-343.695648,-84.160530],[-181.452530,-333.700439,-80.396186],[-186.374344,-327.150589,-77.656074],[-190.081619,-322.864547,-77.393211],[-184.405899,-324.468414,-76.350364],[-188.902847,-313.260276,-72.296639],[-184.669510,-305.401657,-69.033195],[-190.469986,-301.349388,-68.549934],[-191.675552,-292.656952,-64.961770],[-195.712356,-285.912658,-65.376442],[-200.759781,-281.930305,-70.134575],[-194.198807,-271.925682,-57.030479],[-197.793655,-275.540191,-61.415641],[-194.586319,-279.288604,-60.593818],[-193.231399,-288.824424,-63.999183],[-186.941177,-293.194755,-64.106315],[-180.520401,-301.976432,-65.696846],[-190.150345,-317.834030,-74.477897],[-193.955704,-318.612579,-83.440895],[-190.959488,-327.435592,-91.391503],[-177.259170,-327.490417,-61.807014],[-178.150284,-320.734489,-55.350196],[-176.904922,-320.594406,-66.155937],[-176.487442,-324.339508,-71.811745],[-183.061478,-314.951927,-73.241539],[-177.577103,-332.650421,-62.412773],[-179.697464,-334.011276,-56.735985],[-179.387344,-338.776855,-51.480735],[-179.704361,-329.139267,-45.334938],[-175.375564,-333.735519,-41.855613],[-169.333389,-331.611114,-40.091606],[-164.626419,-339.541382,-46.988700],[-170.699112,-320.198875,-32.395623],[-166.862808,-319.057548,-33.779091],[-179.586502,-347.990799,-61.960274],[-179.901932,-348.173462,-58.112617],[-174.505386,-364.342361,-59.857658],[-179.704605,-353.962051,-62.255134],[-178.609634,-350.919311,-65.416908],[-177.873184,-378.523651,-73.388984],[-177.038162,-339.992080,-48.190971],[-172.628189,-337.726410,-43.834388],[-167.671646,-339.019394,-45.161872],[-172.251602,-347.080856,-49.700783],[-177.391678,-348.979385,-53.990242],[-175.446976,-344.547134,-49.659477],[-174.350906,-356.448990,-55.509056],[-104.283401,-504.694030,-168.866386],[-99.924515,-500.105957,-173.713249],[-106.616226,-537.082031,-177.408775],[-167.232254,-528.556976,-159.399316],[-156.315506,-513.518005,-167.834190],[-152.659866,-502.985290,-168.871177],[-156.351761,-508.553497,-164.677209],[-144.396622,-485.672363,-138.652794],[-145.956375,-444.573227,-106.489433],[-145.688370,-437.991668,-108.847375],[-146.547745,-435.116455,-105.640495],[-144.008072,-433.927063,-106.998252],[-143.742142,-418.762176,-91.528404],[-147.102859,-430.158188,-99.303428],[-143.941299,-425.410293,-96.483711],[-135.256485,-420.913284,-103.124673],[-136.879227,-404.525512,-103.529930],[-142.387588,-401.169159,-103.320382],[-139.869949,-390.131134,-95.673729],[-136.649917,-398.587448,-100.020134],[-133.522232,-410.613632,-101.183144],[-134.282669,-419.967132,-104.788613],[-134.033035,-422.804397,-110.997337],[-137.337784,-419.011673,-110.463448],[-138.213821,-426.039840,-114.304192],[-133.883926,-417.358810,-106.098289],[-133.953750,-412.307968,-104.648704],[-134.627151,-416.558166,-107.902046],[-150.379166,-393.819977,-97.791084],[-145.488357,-381.779739,-89.970574],[-151.362442,-383.130310,-89.644844],[-154.530472,-374.721771,-80.819664],[-173.237015,-381.315887,-72.840171],[-169.431412,-386.895111,-78.600410],[-173.090286,-389.477554,-79.678840],[-171.045303,-394.581680,-83.553169],[-174.649612,-401.199524,-91.200233],[-173.832718,-410.046951,-98.151954],[-173.194290,-416.532379,-112.211540],[-172.310440,-414.202820,-100.748726],[-168.018143,-412.918731,-98.515464],[-163.126785,-412.620422,-100.976768],[-158.610306,-402.750030,-97.711723],[-158.161026,-409.803741,-102.313179],[-150.963882,-404.275863,-104.033104],[-150.072525,-410.421447,-106.952949],[-144.151626,-420.222000,-111.103325],[-166.217483,-386.552704,-80.309242],[-156.202225,-387.565109,-89.269477],[-147.120804,-397.935241,-101.555336],[-146.376236,-406.056869,-105.685554],[-143.220779,-415.532577,-109.288490],[-137.685440,-413.090637,-107.579262],[-175.498489,-385.801452,-77.214286],[-173.626358,-396.644348,-85.738243],[-174.974319,-403.897049,-96.631203],[-174.718521,-406.715957,-104.022956],[-174.133072,-409.797363,-111.701576],[-170.303177,-422.338852,-108.624611],[-171.766495,-420.924438,-110.176705],[-171.918716,-421.138946,-114.583428],[-168.712906,-427.501297,-115.662300],[-176.069107,-387.858047,-80.253044],[-170.986404,-371.787735,-64.785225],[-151.786209,-357.649353,-66.861946],[-145.932144,-358.102325,-71.919747],[-152.931290,-362.652359,-70.049705],[-147.607315,-365.974121,-77.719734],[-141.052750,-370.000412,-82.352914],[-141.974075,-359.106140,-75.176933],[-137.194473,-352.718246,-71.636437],[-157.619766,-368.770858,-71.578132],[-164.894668,-368.131866,-63.142601],[-161.653091,-399.862899,-93.484169],[-166.923050,-405.892059,-93.572715],[-170.942093,-404.504287,-91.423530],[-173.341202,-408.729187,-95.915382],[-146.886856,-440.712677,-103.682441],[-149.388931,-434.049316,-97.978920],[-149.544449,-436.954666,-93.715355],[-149.601089,-441.470367,-90.159431],[-148.088150,-450.363205,-81.048027],[-147.396377,-449.285934,-77.020729],[-148.044205,-452.932647,-89.820121],[-107.930130,-503.328857,-168.657005],[-106.810867,-497.751495,-171.323906],[-103.915115,-490.482757,-173.678886],[-106.903580,-490.257904,-174.635276],[-104.298233,-486.621826,-173.548240],[-99.583084,-493.785370,-175.526360],[-97.893875,-494.954498,-177.273461],[-92.117325,-492.806701,-198.017143],[-89.855362,-487.911743,-202.123954],[-99.641495,-501.156463,-217.409202],[-101.242569,-504.915558,-220.150993],[-104.000870,-476.081390,-172.575493],[-98.879104,-449.356750,-167.618187],[-117.878982,-359.862991,-133.066795],[-114.727188,-371.931488,-144.577903],[-116.500259,-395.959045,-144.103387],[-107.379043,-422.444397,-155.293542],[-106.000931,-414.087845,-159.683037],[-116.954239,-367.972046,-162.817894],[-121.232864,-330.855682,-128.167473],[-122.984817,-319.662437,-130.558281],[-122.409805,-325.012954,-150.445091],[-125.519791,-315.534355,-140.272026],[-124.096573,-313.950882,-140.944786],[-120.016128,-313.327789,-141.232659],[-116.423721,-322.641075,-152.542106],[-118.209732,-326.215423,-155.068840],[-120.107803,-328.422210,-154.457725],[-123.406753,-325.405563,-146.741050],[-87.395096,-364.705108,-160.010216],[-89.089859,-368.229110,-166.138055],[-90.991959,-359.842651,-161.330345],[-93.788589,-362.935440,-168.497857],[-91.877823,-386.042984,-187.245110],[-120.438125,-468.686767,-179.336480],[-120.019913,-465.405487,-172.031913],[-117.156692,-471.566955,-179.943780],[-142.839249,-442.642379,-134.360130],[-148.106094,-438.870208,-129.160850],[-154.519119,-435.898559,-123.873177],[-159.834305,-433.098861,-120.345742],[-165.067459,-430.688614,-118.397194],[-161.257034,-433.006180,-124.365365],[-159.885574,-433.817932,-129.522331],[-146.773209,-435.214370,-122.799751],[-141.541092,-437.746673,-126.539040],[-145.989517,-442.996597,-136.807976],[-158.810440,-428.716186,-111.503746],[-165.263016,-426.073456,-109.928444],[-167.361954,-419.934524,-105.001075],[-164.418716,-418.855697,-104.629509],[-158.337173,-416.305099,-105.410316],[-159.077164,-424.917572,-108.891731],[-84.838211,-546.366333,-201.598533],[-82.823868,-548.288971,-195.750053],[-80.761612,-549.920166,-192.187066],[-75.657425,-553.167419,-198.548516],[-66.333755,-559.079529,-187.982780],[-63.169205,-560.836578,-192.528740],[-97.468948,-535.556671,-217.621667],[-102.089859,-530.567688,-232.648888],[-78.476761,-543.514221,-225.205620],[-79.437454,-541.229370,-236.442132],[-87.792374,-537.927307,-233.038688],[-77.578934,-531.609253,-239.340355],[-80.208145,-522.758789,-239.831841],[-74.109695,-525.623230,-234.308922],[-77.655899,-539.434509,-241.813072],[-73.721451,-541.717743,-239.876305],[-78.725967,-540.574707,-240.118705],[-93.211075,-519.556457,-238.817253],[-88.228409,-518.613678,-239.988823],[-99.233169,-525.064789,-239.165214],[-54.405411,-533.564148,-202.214775],[-54.990066,-528.717651,-200.987602],[-54.541763,-525.039764,-197.991082],[-39.906937,-537.405060,-211.106254],[-36.720047,-532.723510,-218.469078],[-39.263565,-523.446655,-225.204704],[-43.061294,-529.683960,-204.639732],[-76.230179,-468.160797,-231.255821],[-78.975235,-468.309234,-224.472770],[-81.588516,-474.950226,-220.991233],[-82.788223,-467.070800,-215.742912],[-81.742020,-461.450927,-217.135856],[-86.968399,-456.252563,-208.252800],[-89.357437,-451.944977,-205.234032],[-90.423965,-453.841125,-198.879235],[-90.967178,-442.729812,-219.510948],[-64.539200,-467.981659,-209.529564],[-63.718460,-467.974945,-203.896569],[-64.902969,-477.081787,-208.210686],[-74.120071,-469.424072,-233.879479],[-62.732315,-466.090454,-200.628837],[-63.844437,-461.240844,-199.050712],[-77.312088,-413.752655,-199.611718],[-78.480484,-412.209488,-202.448174],[-74.689468,-423.698700,-200.012260],[-73.472671,-423.979522,-181.089135],[-74.214676,-427.716705,-186.518089],[-83.106827,-399.796234,-191.947868],[-82.067520,-406.379608,-187.794488],[-84.771927,-393.842621,-181.990715],[-65.128189,-450.492035,-189.483788],[-67.189896,-450.136306,-193.110406],[-32.778519,-393.184570,-198.938316],[-39.224014,-395.574585,-199.360253],[-81.858353,-457.887451,-219.916374],[-86.249466,-452.318817,-213.044488],[-65.344192,-457.571106,-213.545372],[-65.517410,-461.094207,-203.328758],[-75.025467,-417.437484,-178.255425],[-69.594131,-427.000778,-175.782647],[-81.887588,-398.324417,-174.668419],[-83.056778,-395.654342,-175.178918],[-85.255081,-383.593261,-168.282493],[-82.355606,-393.582794,-171.404564],[-57.381790,-351.073303,-191.072258],[-51.788528,-345.824234,-189.288169],[-54.792923,-337.940902,-187.273582],[-60.598404,-326.596206,-184.592521],[-57.205582,-327.934662,-181.937919],[-53.383865,-336.614120,-185.123405],[-44.225723,-360.121978,-188.747825],[-42.975296,-367.353958,-191.113487],[-47.283401,-345.962707,-180.229087],[-51.659317,-333.978790,-175.780907],[-50.850235,-338.428497,-181.715721],[-54.463638,-329.198364,-176.778495],[-49.405838,-338.107040,-173.084222],[-55.700455,-323.215416,-169.212762],[-48.272476,-346.884597,-185.698631],[-44.156998,-365.848617,-193.354760],[-45.633072,-368.136322,-195.620231],[-47.139908,-356.529571,-191.265251],[-55.323257,-350.171158,-191.228141],[-52.423355,-363.026581,-193.900200],[-46.559646,-372.063965,-196.581077],[-48.838760,-359.204345,-193.424981],[-50.594986,-354.378189,-192.113365],[-68.005386,-334.853042,-184.810508],[-73.640091,-330.837814,-180.505699],[-64.834305,-318.513733,-182.729760],[-51.614517,-454.741790,-176.792381],[-47.804397,-450.116455,-172.515557],[-51.957291,-450.790191,-176.475090],[-51.567459,-468.408752,-176.294975],[-40.476334,-436.829223,-189.629173],[-37.016250,-425.838699,-194.738792],[-75.808792,-362.516021,-163.943626],[-77.364944,-358.430633,-160.828728],[-71.175613,-375.092544,-172.947502],[-73.082168,-369.011352,-172.099815],[-75.651810,-356.765335,-168.515251],[-81.969742,-359.610382,-156.986076],[-89.419510,-477.270721,-201.068780],[-86.666641,-464.647766,-206.052117],[-89.673843,-465.131286,-199.980034],[-91.450088,-455.601288,-189.970420],[-93.123611,-447.054413,-186.350853],[-98.927261,-439.329254,-167.898186],[-97.921829,-444.859298,-168.811180],[-95.926468,-443.150741,-176.834405],[-91.362991,-453.493652,-195.397759],[-90.462540,-458.468536,-197.320244],[-97.704849,-435.589523,-205.260216],[-92.991714,-445.183456,-198.157036],[-102.672439,-421.433426,-208.031028],[-91.902054,-428.483337,-214.641868],[-98.658401,-429.390289,-213.062309],[-94.208450,-431.166320,-215.578667],[-77.244461,-429.130096,-214.282464],[-80.023514,-418.603012,-209.690544],[-84.422500,-429.409286,-216.188958],[-94.665054,-401.698288,-198.833946],[-86.937454,-394.770279,-192.296592],[-83.121597,-403.557754,-198.108757],[-111.392654,-336.197204,-161.449517],[-90.561661,-367.887451,-168.917625],[-68.215652,-341.340957,-184.167442],[-63.145401,-350.173675,-188.129296],[-70.804947,-347.156448,-180.824821],[-76.777542,-326.466278,-177.646050],[-80.061661,-316.556854,-173.706048],[-65.760391,-323.946457,-184.598473],[-60.601700,-331.965545,-186.557274],[-60.724991,-338.712921,-188.129417],[-70.557327,-324.763458,-183.887321],[-63.419021,-339.070770,-187.364494],[-31.331253,-378.228378,-156.360710],[-36.334061,-370.293167,-159.694145],[-32.625809,-381.608215,-161.127739],[-88.977554,-289.003318,-144.058250],[-90.770645,-284.647178,-127.243431],[-91.638077,-275.398422,-127.883293],[-90.813614,-279.530105,-136.878410],[-90.672500,-278.918449,-143.521660],[-88.348221,-285.795334,-159.099540],[-88.119278,-275.104736,-165.598565],[-85.455765,-268.032730,-166.677880],[-85.854263,-274.296440,-167.762200],[-83.390579,-243.858711,-157.904991],[-87.028335,-232.202713,-151.780357],[-87.730118,-247.292907,-157.934502],[-93.924087,-250.602413,-154.685265],[-97.409744,-244.351173,-144.943688],[-96.545181,-248.310356,-140.191552],[-94.345718,-258.417988,-145.034356],[-93.011551,-266.876907,-143.471275],[-95.331314,-254.060341,-126.893974],[-93.842483,-260.619110,-123.500756],[-92.299942,-270.706619,-130.787696],[-93.578384,-265.038749,-134.514579],[-89.850113,-276.593788,-158.723716],[-91.342911,-272.329849,-150.761497],[-91.675857,-268.201179,-157.966301],[-94.151626,-258.572010,-154.314995],[-90.348587,-262.457939,-161.922813],[-91.641250,-247.389385,-155.807640],[-96.172623,-245.912822,-149.500572],[-92.456985,-261.507019,-158.738121],[-89.065445,-276.553482,-163.519127],[-90.058609,-238.030845,-152.825310],[-82.254043,-233.508281,-153.808860],[-88.447586,-287.901840,-154.559379],[-87.566910,-296.521469,-149.836541],[-89.419327,-288.393921,-133.190438],[-87.653641,-297.932907,-141.531913],[-100.819168,-282.070137,-117.138207],[-99.803116,-286.127281,-118.859291],[-118.024185,-272.179039,-120.384559],[-121.981583,-271.886192,-121.753257],[-126.117203,-247.924747,-110.023903],[-63.498794,-316.851707,-180.394554],[-67.610855,-316.791710,-182.838585],[-69.208023,-307.456054,-179.753135],[-68.960037,-303.270469,-177.583488],[-61.999344,-315.544922,-176.569358],[-59.196854,-316.351097,-169.846856],[-63.164505,-305.501800,-165.624900],[-75.876968,-306.238334,-179.375236],[-73.217850,-294.428695,-175.627739],[-86.416397,-286.364586,-167.846641],[-73.957901,-317.463546,-182.071922],[-68.968887,-297.256004,-172.767051],[-73.906814,-287.146988,-169.389457],[-74.986648,-282.346420,-164.667137],[-73.336563,-275.433197,-156.400933],[-75.073807,-267.342117,-155.550010],[-74.998733,-263.265220,-154.243278],[-72.673965,-236.892620,-146.922997],[-79.390274,-235.585445,-153.752708],[-75.514664,-228.466304,-147.882409],[-81.642410,-225.149900,-150.130027],[-95.328628,-239.955688,-149.664360],[-93.445084,-232.925605,-148.642449],[-91.763199,-217.402301,-142.990715],[-75.833206,-212.708427,-144.624778],[-73.597854,-213.564886,-143.751152],[-68.292618,-212.273466,-138.096702],[-63.196548,-208.468470,-130.708015],[-64.021683,-216.675319,-133.556709],[-58.461502,-221.761411,-126.497764],[-61.066116,-230.495598,-131.348991],[-68.253067,-238.726200,-142.502372],[-56.720840,-252.839218,-127.855812],[-56.780594,-247.341743,-127.407188],[-51.516678,-252.349006,-123.515526],[-52.961563,-241.067756,-123.848869],[-51.825760,-235.434051,-122.373588],[-58.068008,-236.994602,-128.079430],[-55.627518,-231.454826,-125.231025],[-72.634720,-218.397274,-143.644706],[-94.127151,-211.377485,-139.004356],[-91.628311,-207.964150,-138.390068],[-88.416641,-195.617370,-133.561271],[-81.370376,-206.568472,-140.961907],[-78.031509,-208.033315,-142.535698],[-74.747635,-205.317682,-141.830041],[-72.597549,-197.648965,-138.805230],[-72.159866,-203.727700,-140.456596],[-83.355667,-220.884033,-147.706535],[-80.449051,-242.790306,-156.187553],[-85.221634,-250.625820,-160.275230],[-82.314468,-251.744827,-160.247459],[-78.862015,-262.562843,-158.619743],[-78.880447,-266.631073,-160.616142],[-79.049942,-250.054962,-155.598748],[-84.213577,-257.272972,-163.027642],[-87.651565,-257.894470,-162.387292],[-81.970596,-257.433624,-161.890159],[-81.817276,-264.842949,-165.700248],[-78.063858,-277.733650,-169.329490],[-80.504227,-267.776321,-166.086753],[-77.554397,-274.234543,-162.314689],[-81.863357,-270.341423,-168.320397],[-94.515213,-256.639244,-147.707329],[-98.294754,-238.044872,-143.173912],[-98.252212,-238.931266,-138.336907],[-99.123855,-232.776527,-139.545372],[-99.312027,-226.307689,-138.406426],[-100.580398,-222.846025,-134.202491],[-95.961197,-231.922584,-145.416649],[-96.331497,-219.782863,-140.767631],[-93.289932,-225.735521,-145.986930],[-100.401199,-205.412471,-130.123864],[-95.756790,-194.900920,-129.759956],[-99.188980,-192.008837,-125.470315],[-94.627823,-175.396797,-121.226845],[-97.102371,-174.564846,-118.683464],[-94.828995,-162.703350,-114.922676],[-92.480423,-158.705349,-114.215981],[-90.287308,-156.439666,-113.582009],[-82.142715,-158.284607,-114.842811],[-78.047745,-141.939510,-105.490471],[-81.735733,-148.676349,-108.198753],[-85.552627,-153.098083,-110.954827],[-82.628616,-165.972898,-119.554008],[-99.351334,-173.412615,-114.998391],[-101.831192,-174.383209,-111.003379],[-102.055008,-186.019177,-117.691536],[-101.720108,-202.763681,-119.013024],[-101.514053,-209.136625,-129.917976],[-101.161270,-217.306652,-131.610558],[-97.607498,-232.376579,-116.899070],[-96.855362,-241.422538,-121.844688],[-96.026077,-242.167225,-111.942863],[-95.277481,-251.874424,-114.679039],[-95.127212,-251.233207,-118.762504],[-96.762344,-247.585754,-135.281974],[-98.294144,-235.858463,-130.136833],[-95.269363,-256.258762,-133.642692],[-99.938919,-220.011648,-124.638084],[-102.271133,-206.779459,-125.131706],[-100.044205,-209.866939,-115.357841],[-101.256851,-191.123160,-108.958183],[-101.878067,-194.916135,-114.726768],[-99.851150,-217.300359,-135.216515],[-97.883316,-200.587103,-130.821525],[-102.803665,-192.185550,-119.725167],[-100.646622,-188.678811,-121.800423],[-102.113663,-199.979816,-125.416496],[-102.481277,-201.443119,-123.273094],[-91.402359,-184.800287,-127.101754],[-92.071670,-199.305767,-133.946296],[-96.298599,-210.782639,-137.183067],[-99.643692,-229.347076,-136.013694],[-95.663406,-253.958881,-139.653129],[-99.331924,-204.566130,-108.937646],[-99.227493,-196.864578,-103.914818],[-99.149124,-188.109586,-100.118904],[-101.238846,-185.311671,-106.565971],[-102.401016,-184.405459,-112.479592],[-98.305923,-194.019080,-97.736168],[-84.405777,-287.013183,-171.370872],[-82.574173,-277.197197,-170.199760],[-78.025406,-282.741813,-172.192558],[-75.643814,-286.210724,-172.330804],[-87.860733,-315.544494,-139.726860],[-90.316788,-299.448967,-129.571969],[-112.927139,-281.854370,-122.913827],[-126.521927,-310.415214,-132.271034],[-123.364090,-311.958709,-126.636634],[-151.631668,-327.118118,-102.471397],[-147.010025,-321.912048,-99.511010],[-143.249832,-314.079384,-95.816673],[-154.434463,-316.686065,-99.221275],[-153.470840,-305.154586,-93.025123],[-147.570877,-307.463180,-92.672676],[-149.832046,-315.504173,-97.233329],[-117.508133,-293.965744,-130.822624],[-121.582107,-289.326835,-129.171287],[-120.267105,-281.141334,-125.278160],[-109.932632,-335.379409,-159.853843],[-111.771255,-327.787597,-155.662681],[-119.698990,-352.064590,-169.483605],[-116.952408,-357.786987,-172.907281],[-118.300735,-343.030700,-149.546715],[-99.639053,-264.583770,-112.128838],[-104.648025,-265.155975,-110.958671],[-108.069351,-253.746696,-106.141014],[-104.424698,-248.876484,-103.628135],[-110.760025,-251.178802,-105.754905],[-109.568497,-262.903503,-110.651985],[-111.088211,-218.991163,-90.107582],[-117.280289,-220.753778,-93.468910],[-113.019058,-201.060424,-84.024879],[-106.942520,-206.296581,-84.604287],[-109.251419,-202.575160,-83.567894],[-128.408890,-214.445896,-94.531837],[-132.334793,-215.506603,-88.737800],[-131.540970,-209.532375,-89.967460],[-129.020035,-208.366130,-91.781929],[-133.004837,-200.476539,-82.832512],[-132.755997,-243.708175,-57.505668],[-125.330337,-239.651973,-67.091622],[-107.287918,-241.513771,-100.139137],[-129.430252,-230.826378,-100.867439],[-130.528580,-237.040897,-102.355842],[-131.002640,-226.823501,-97.554542],[-130.428909,-242.171604,-103.334571],[-129.570572,-243.616760,-99.865273],[-129.969620,-186.949287,-83.649070],[-129.852249,-183.866691,-62.368217],[-132.533829,-183.220494,-69.459159],[-125.492569,-214.000593,-62.819572],[-125.956802,-204.714592,-62.926078],[-124.510696,-202.841392,-52.856422],[-125.192398,-219.496206,-60.275016],[-124.879288,-212.470815,-53.818398],[-126.062698,-197.068785,-60.472877],[-124.951309,-185.720981,-50.214348],[-125.849686,-197.876452,-43.757698],[-128.109024,-208.266945,-44.681236],[-125.044937,-205.818482,-48.735420],[-127.642959,-218.852245,-49.941764],[-124.857986,-202.067336,-57.104179],[-127.482071,-202.125339,-89.513221],[-126.905899,-88.139846,0.415360],[-127.942276,-80.266693,3.728135],[-129.757400,-102.797393,-1.152786],[-129.659500,-80.785537,5.436356],[-132.510940,-77.679428,7.786133],[-141.334976,-119.611870,-4.886436],[-143.466690,-117.429062,-5.681327],[-145.721756,-115.392975,-8.291206],[-151.630813,-111.180252,-10.186851],[-163.572220,-126.839424,-17.383751],[-160.069168,-131.376892,-22.597511],[-169.785477,-138.070686,-21.465492],[-199.103409,-167.799816,-25.153954],[-196.509842,-160.178768,-21.307243],[-199.726517,-155.726829,-18.066566],[-213.444595,-167.405073,-21.400032],[-204.959061,-163.279625,-20.944725],[-189.281326,-204.442361,-56.180763],[-188.420181,-208.949008,-59.038597],[-191.684585,-215.926178,-61.943016],[-194.731766,-213.206819,-60.046867],[-197.138016,-214.095047,-59.479225],[-208.022659,-234.867721,-60.053520],[-204.148086,-226.259609,-64.223366],[-201.569778,-228.798351,-68.544807],[-195.123978,-209.474558,-57.296486],[-196.574966,-202.706410,-51.734382],[-199.809402,-209.926655,-54.332496],[-202.760879,-218.077242,-58.141166],[-201.993301,-212.489515,-52.929100],[-201.627640,-204.732479,-47.623527],[-181.055618,-200.993050,-54.316384],[-177.004532,-207.561086,-51.794639],[-168.926773,-217.002121,-58.429466],[-166.879227,-234.118896,-71.516105],[-166.610184,-208.898433,-53.984353],[-170.419510,-207.145033,-50.966087],[-162.220596,-226.982982,-68.462837],[-183.998672,-201.260409,-55.348962],[-207.874100,-235.089374,-45.842231],[-202.921768,-238.514473,-44.257438],[-208.610672,-237.183914,-42.705070],[-204.434952,-237.706718,-40.109672],[-193.670364,-229.047149,-33.415062],[-189.515091,-231.868255,-31.814538],[-196.484390,-229.005493,-32.235832],[-106.307876,-225.151750,-91.691185],[-68.679275,-291.258545,-160.174554],[-69.499222,-282.914238,-153.799309],[-66.783646,-293.485847,-156.843072],[-62.277176,-302.160476,-145.806603],[-60.171829,-311.918503,-147.665397],[-63.531265,-302.453415,-159.793297],[-66.588699,-302.143203,-172.972587],[-66.437515,-298.022484,-164.043267],[-64.218033,-299.363678,-153.648857],[-61.785965,-307.658439,-154.226005],[-68.319046,-273.038673,-147.764488],[-68.682022,-265.832931,-146.808677],[-69.253250,-256.029266,-146.310417],[-72.279312,-257.497024,-150.147300],[-71.964920,-245.254497,-148.074029],[-67.723709,-221.667776,-139.422508],[-66.956558,-242.446930,-141.352928],[-57.392532,-226.563478,-126.203453],[-50.641495,-229.107368,-119.346215],[-49.305801,-216.925193,-111.595711],[-48.806351,-209.765317,-106.582696],[-47.838272,-237.951351,-114.493400],[-44.758865,-245.322628,-111.423913],[-47.929886,-250.490608,-118.044227],[-50.478287,-242.893257,-121.770942],[-50.322586,-195.097143,-111.885826],[-51.495315,-214.433687,-117.895196],[-50.124283,-205.955831,-112.106880],[-51.834793,-226.464973,-120.996833],[-48.193375,-223.569145,-110.377083],[-48.988846,-202.168089,-98.198173],[-48.893570,-191.111190,-100.031944],[-48.480057,-188.683762,-94.467018],[-49.090347,-192.568156,-107.144447],[-48.057571,-180.149868,-102.650521],[-48.187759,-178.753854,-95.349083],[-47.548294,-182.373973,-89.736351],[-46.079788,-182.566528,-86.614540],[-45.348648,-189.608561,-87.111581],[-38.533951,-187.891155,-84.728996],[-17.809830,-177.158485,-92.372825],[-24.012283,-180.816330,-89.759636],[-24.856583,-172.984449,-87.233650],[-47.460831,-190.545281,-89.657310],[-48.008560,-197.379703,-91.337013],[-38.072708,-209.380166,-89.449424],[-41.281204,-204.822846,-88.349617],[-37.964859,-197.806151,-87.054192],[-42.139419,-193.460585,-86.323585],[-45.341568,-178.197735,-85.044060],[-45.604751,-164.215219,-85.020455],[-46.226578,-164.786237,-88.847252],[-45.371841,-157.689529,-89.847190],[-46.334366,-154.578029,-98.512856],[-47.966080,-161.188728,-103.043388],[-48.704666,-154.458858,-103.212318],[-50.355728,-138.812923,-104.368232],[-66.747452,-134.745460,-109.255104],[-72.313858,-135.632118,-105.742257],[-61.776199,-136.598522,-112.288002],[-63.795486,-145.641987,-115.948478],[-70.591446,-145.082657,-113.035453],[-73.472488,-157.065422,-118.405021],[-66.599625,-155.372829,-119.834496],[-68.200149,-175.576885,-129.405587],[-65.086990,-175.786907,-128.514107],[-65.318069,-184.284583,-130.194847],[-58.606460,-177.900324,-121.250679],[-60.152298,-179.208662,-123.585609],[-56.702347,-187.582184,-119.373512],[-79.075455,-125.930023,-95.032096],[-80.180862,-110.894035,-84.945977],[-41.995804,-182.812914,-84.161949],[-44.821121,-170.997656,-83.859642],[-45.306839,-153.483539,-94.399849],[-42.447952,-133.795440,-90.966697],[-42.560928,-139.056656,-89.613655],[-42.592117,-124.484756,-90.733880],[-47.851639,-129.904892,-99.577630],[-48.468765,-124.023689,-99.919197],[-52.591751,-130.345337,-105.699699],[-55.665298,-122.900497,-106.739387],[-58.411880,-126.130371,-108.470604],[-51.425186,-134.365043,-105.251167],[-43.039993,-111.879944,-90.350929],[-40.219681,-110.061439,-85.081428],[-48.242630,-141.336208,-100.444465],[-45.087112,-131.467270,-95.240516],[-45.116897,-143.763828,-95.820290],[-44.274856,-155.489776,-82.818245],[-38.106338,-156.696380,-78.447441],[-30.280655,-158.188614,-79.966789],[-21.729874,-164.135080,-86.019661],[-25.367325,-161.799064,-83.382942],[-42.743118,-163.049408,-81.140144],[-43.885452,-160.197483,-81.551902],[-42.328934,-168.917875,-82.011070],[-39.577957,-167.680736,-81.028649],[-39.460037,-178.423082,-82.879890],[-34.762100,-167.653043,-81.275002],[-33.497146,-171.988014,-82.850776],[-37.149246,-176.098612,-82.625450],[-33.446060,-180.842114,-84.802543],[-35.001175,-159.792804,-79.042854],[-48.676285,-191.877238,-103.399208],[-50.484329,-184.898769,-111.295509],[-49.515518,-169.003675,-107.023994],[-48.155044,-168.857803,-104.387047],[-47.039932,-170.118742,-92.761421],[-49.812759,-148.145469,-103.498787],[-46.418899,-172.702415,-86.620842],[-30.903763,-149.121036,-76.624443],[-34.788956,-151.940796,-76.880775],[-36.027969,-143.317753,-75.187691],[-33.641800,-129.993744,-72.019172],[-26.895889,-139.082153,-74.740837],[-16.829666,-142.460529,-80.987510],[-13.791031,-138.689262,-83.143364],[-10.265579,-148.483726,-90.261512],[-12.185440,-145.283527,-86.631797],[-7.345169,-148.267933,-95.384224],[-5.039810,-158.398285,-104.212791],[-5.528213,-163.853824,-106.398247],[-6.335220,-186.022684,-116.176659],[-6.735977,-192.657617,-117.451591],[-7.938248,-200.413442,-116.173469],[-12.871170,-195.485123,-104.660134],[-15.779861,-203.987337,-102.758491],[-12.916763,-207.227683,-106.487892],[-8.755386,-209.584322,-114.963630],[-3.692215,-192.047681,-125.340600],[-0.365494,-191.576973,-133.790062],[2.031174,-192.252692,-138.545463],[6.971054,-184.915868,-142.075767],[10.500900,-169.430956,-139.773643],[6.641770,-160.429882,-129.660469],[5.153793,-153.443367,-122.701927],[6.433212,-138.572319,-117.030357],[12.132675,-134.660385,-123.521766],[7.177719,-171.842939,-136.320672],[12.635239,-175.474817,-145.165276],[16.691391,-180.490618,-152.072564],[19.009445,-181.916063,-154.782493],[21.512131,-180.162823,-155.259789],[15.450607,-163.966572,-143.408593],[17.728073,-155.124145,-140.724144],[27.380905,-155.016182,-142.314904],[29.754624,-156.757652,-141.148643],[24.974472,-153.741760,-142.524895],[-10.756912,-198.831168,-108.765541],[-18.802505,-210.190592,-101.567360],[-4.395645,-141.603279,-98.293160],[-7.558365,-156.511699,-98.367057],[-1.808975,-154.768886,-108.468728],[1.032150,-152.594917,-114.183723],[1.683090,-156.502197,-118.114570],[-2.573868,-160.274772,-109.958076],[-1.331680,-170.002897,-120.013329],[-3.517227,-172.183801,-115.739097],[-3.366959,-181.578407,-121.822044],[0.299667,-178.006485,-129.005531],[-1.604202,-187.511724,-129.325798],[-31.811417,-145.091484,-75.244011],[-25.711990,-122.096161,-70.155723],[-29.496719,-130.827133,-71.719108],[-33.857742,-140.574585,-74.159233],[-26.455887,-146.717540,-77.418724],[-19.850113,-143.768325,-79.267845],[-16.169815,-159.702278,-88.021965],[-19.053116,-148.917999,-81.621972],[-12.004410,-159.619171,-92.022865],[-8.836685,-166.695919,-101.008552],[-11.080582,-176.010252,-100.933006],[-32.214432,-113.137428,-69.198555],[-35.298477,-125.249618,-73.056694],[-38.556717,-118.335884,-78.807380],[-40.596939,-129.656814,-84.079094],[-41.070755,-124.917518,-87.765419],[-43.268936,-145.534698,-88.732872],[-42.615311,-147.950100,-81.668037],[-42.637649,-150.760227,-80.452934],[6.298081,-71.087013,-82.787223],[8.946396,-69.392761,-85.263923],[16.183884,-64.568130,-89.488243],[11.986374,-59.624572,-82.278695],[7.556137,-65.040207,-81.120567],[4.152451,-58.560592,-71.162712],[2.591660,-79.394470,-81.067192],[9.309799,-50.342132,-73.660270],[14.748276,-75.323616,-94.823356],[14.256088,-85.025627,-100.232841],[15.970688,-85.767563,-102.349908],[31.342392,-113.801292,-97.792671],[31.720444,-121.597671,-102.297660],[31.718186,-121.439453,-99.492820],[49.823715,-137.339492,-100.793541],[33.491013,-148.064109,-100.040748],[40.550827,-154.745361,-103.053016],[45.408432,-159.011200,-106.824867],[36.433945,-158.043735,-103.693809],[34.059372,-165.845258,-107.371528],[33.038925,-158.376312,-104.964759],[31.250046,-162.564651,-108.456520],[-63.519546,-290.068908,-144.432640],[-66.301834,-279.265678,-146.057731],[-67.067764,-288.049011,-151.749717],[-64.794693,-262.426986,-140.535606],[-61.441543,-247.398395,-133.710594],[-65.680801,-250.429771,-140.486992],[-48.327774,-231.590839,-113.449348],[-31.731094,-249.121341,-100.401542],[-9.677444,-185.660398,-107.792015],[-6.185074,-171.147052,-109.021965],[-12.222122,-184.683407,-102.555657],[-18.617691,-200.358453,-98.676612],[-18.924881,-190.519010,-95.532020],[-22.016495,-186.662912,-92.438530],[-32.257400,-189.821863,-87.198539],[-35.621841,-192.143185,-86.130012],[-11.546280,-224.107488,-111.771217],[-20.229996,-242.392421,-106.635215],[3.527756,-369.167999,-137.709405],[13.601914,-354.931228,-152.808404],[11.137070,-377.036422,-144.846641],[13.893112,-383.673385,-147.976159],[14.588791,-377.081146,-149.116905],[7.124985,-363.847717,-140.276116],[23.376694,-400.186203,-158.962730],[18.292038,-395.787307,-153.079216],[28.391647,-416.503204,-161.876670],[-12.421768,-359.495041,-132.884803],[-2.860550,-367.787445,-135.031883],[-7.062393,-354.987976,-130.482598],[-5.190079,-369.179413,-135.369407],[-1.708023,-379.470642,-139.027183],[-6.099869,-377.580505,-138.971214],[-12.571304,-372.347595,-138.556022],[-3.100845,-322.073883,-125.781441],[62.354721,-312.309982,-205.438682],[55.335068,-300.437561,-204.279930],[52.466049,-305.905807,-185.661613],[51.229660,-296.275573,-193.231133],[46.475510,-291.970771,-186.981346],[42.870407,-278.868148,-191.105706],[42.920700,-267.361129,-186.758599],[43.277512,-275.189407,-196.687706],[45.103195,-293.700493,-182.496911],[40.466171,-292.104149,-174.560784],[43.067673,-288.104431,-181.468926],[41.720261,-281.989982,-180.812828],[43.859299,-285.524765,-186.795738],[43.075913,-295.480606,-177.964927],[41.067307,-297.350349,-173.503289],[43.894760,-301.653495,-177.020623],[49.099045,-301.154762,-184.318261],[40.772324,-295.562133,-169.347587],[53.572739,-302.039581,-191.540550],[57.294479,-308.883087,-190.302636],[39.341843,-277.054596,-175.644494],[48.602280,-275.601471,-151.488029],[49.625595,-274.169288,-148.479789],[49.326950,-272.971389,-145.220147],[57.608322,-281.214683,-145.417564],[60.885910,-287.398430,-142.738639],[54.952805,-279.448227,-143.132804],[41.387680,-282.654678,-159.767814],[44.728806,-289.114128,-161.275108],[62.334641,-292.698921,-157.551507],[74.342758,-301.816017,-148.609551],[84.450058,-312.878288,-153.529290],[71.674973,-299.958137,-145.670006],[80.013596,-307.835975,-149.416833],[71.881699,-304.400772,-143.427880],[77.736191,-311.327003,-145.085015],[68.364487,-297.653518,-143.675927],[65.430954,-299.918968,-142.001214],[66.151962,-292.673561,-144.474938],[63.969833,-288.918724,-149.713493],[43.310898,-292.268814,-129.546380],[42.094772,-290.726570,-132.002906],[41.798142,-288.722519,-134.044441],[45.549484,-298.282371,-133.553444],[48.087387,-302.718383,-130.523368],[55.037399,-304.427498,-124.792793],[62.908249,-312.015396,-126.769706],[61.548386,-316.754852,-130.916451],[75.779831,-314.228645,-126.895820],[69.358750,-307.532966,-122.791694],[86.162338,-314.148094,-129.726677],[92.344162,-317.033790,-129.550332],[95.525009,-317.224556,-127.116233],[84.787705,-349.350677,-137.866936],[93.573593,-348.726959,-130.477562],[90.352280,-343.101913,-134.599144],[93.250961,-325.364868,-129.537148],[87.899826,-327.200103,-132.661232],[80.815598,-321.390892,-130.751992],[2.293076,-292.719200,-133.602211],[3.229355,-298.314834,-135.400138],[-0.221878,-298.147232,-128.607461],[5.187973,-253.859775,-162.618339],[3.750961,-257.796852,-157.884698],[6.245468,-262.082351,-165.058922],[6.985886,-259.488022,-167.241233],[8.200791,-248.650726,-166.032708],[11.774643,-254.623329,-171.884086],[13.233017,-244.373989,-170.672906],[22.038254,-246.106216,-181.007561],[22.169052,-257.125602,-183.212028],[27.459885,-265.554748,-189.245414],[31.326523,-257.684818,-191.372673],[31.325119,-273.070938,-193.357475],[35.083786,-274.104805,-196.115715],[41.847153,-271.451408,-197.222466],[41.939133,-276.752639,-198.874657],[44.054489,-280.569664,-199.769250],[43.340622,-267.877762,-191.275933],[38.761276,-265.377304,-195.925438],[39.055222,-269.611526,-196.751854],[25.072434,-274.446304,-189.097404],[29.415329,-285.149292,-194.957573],[35.393051,-281.312347,-197.838006],[22.057541,-222.136921,-174.584832],[29.364975,-234.207599,-183.126152],[28.132370,-220.185800,-176.231560],[30.790329,-207.431395,-168.836326],[21.850632,-212.903532,-170.697808],[16.402939,-210.387317,-164.664177],[18.356003,-203.686650,-163.595208],[20.636826,-201.214594,-164.081016],[24.777939,-199.425952,-165.257438],[26.508041,-210.577688,-171.538078],[32.343125,-229.734676,-179.925865],[36.968918,-210.983567,-165.247734],[31.755112,-218.603449,-174.166191],[38.854050,-226.551729,-171.060540],[34.189560,-226.227361,-176.409629],[42.836472,-255.164249,-183.820793],[38.598251,-252.371505,-189.211692],[36.637802,-253.408809,-191.014184],[-5.383316,-225.851255,-124.987419],[-5.501846,-216.402523,-123.787804],[4.906601,-238.857502,-158.614190],[-22.955459,-219.487629,-100.652855],[-28.525772,-228.906295,-98.157188],[-32.526016,-230.236759,-95.850776],[-35.112808,-229.117149,-94.685158],[-40.211197,-239.422680,-100.522636],[-43.473038,-239.731414,-106.080665],[-46.025711,-226.230816,-101.079095],[-45.640518,-234.095089,-107.875419],[-47.153335,-224.578144,-106.100822],[-22.061722,-227.403133,-102.766381],[-27.803665,-235.904728,-99.463081],[-19.487320,-232.871536,-105.767250],[-37.353470,-228.466304,-94.444923],[-35.097061,-240.496540,-98.043953],[-42.857315,-226.870426,-96.244346],[-27.885147,-219.400430,-96.802436],[21.940659,-188.730209,-159.438470],[33.493210,-191.807164,-156.395408],[26.577988,-193.901137,-162.907066],[34.543076,-164.958790,-132.661735],[34.375412,-157.080780,-129.033882],[31.830551,-154.205043,-134.811882],[40.674057,-220.358347,-164.157281],[41.155075,-229.110317,-165.915459],[35.034775,-249.649894,-161.155876],[55.132553,-282.895889,-116.208733],[60.378525,-280.690567,-113.905495],[56.420456,-272.687416,-112.067330],[54.413315,-269.239120,-111.777687],[40.753220,-229.680435,-169.049798],[39.806503,-208.935466,-153.831291],[38.978623,-202.044602,-149.902702],[35.109787,-217.839695,-149.719596],[32.134628,-248.319351,-139.014549],[35.984787,-255.720554,-140.083763],[49.686020,-228.736644,-124.627189],[44.073349,-220.170168,-122.477378],[41.268173,-238.975761,-168.458152],[40.538071,-264.919471,-177.611564],[38.100693,-268.821167,-172.004906],[41.444199,-268.825134,-180.844841],[35.575546,-271.459800,-166.310723],[42.311081,-271.880096,-184.856681],[42.302536,-279.155937,-182.649316],[37.125351,-267.183448,-154.231498],[33.874069,-262.655670,-160.373131],[39.941391,-284.800918,-162.830742],[58.389511,-309.528541,-208.400535],[62.978195,-314.328048,-208.447258],[55.422165,-304.160583,-207.335929],[63.597214,-328.559936,-210.906913],[90.686752,-415.192657,-207.250115],[93.910019,-421.164215,-207.391533],[112.859726,-400.756042,-196.383049],[118.500839,-397.977813,-187.142541],[116.139267,-391.428848,-187.689018],[110.479721,-389.243576,-199.121269],[109.023972,-393.027023,-201.320457],[106.236801,-400.563308,-204.480461],[106.630478,-406.199661,-204.265678],[106.560227,-390.811477,-203.602593],[102.003830,-389.978485,-206.965508],[117.677353,-396.582824,-181.128898],[97.062912,-449.320022,-206.509941],[105.361496,-461.513611,-205.463006],[38.631821,-356.123825,-200.833977],[26.191025,-354.439819,-180.998008],[28.917526,-358.702652,-184.477226],[74.354477,-442.633194,-198.578758],[64.213181,-445.587433,-192.379753],[82.784653,-452.115112,-199.061211],[88.039291,-438.904663,-206.407493],[78.344467,-432.846039,-203.039757],[4.015122,-359.321472,-136.713097],[-0.138382,-342.213897,-130.728050],[6.754685,-351.052795,-139.515098],[91.135727,-375.758835,-175.054711],[93.521103,-375.261139,-171.357017],[97.661667,-387.066147,-169.813743],[98.471481,-384.934616,-167.733848],[91.195236,-377.580749,-179.107751],[117.196091,-443.896728,-203.923545],[122.815903,-452.564209,-203.742576],[125.882675,-447.654342,-198.149253],[118.549179,-456.390930,-203.850731],[96.748947,-429.524826,-207.853782],[105.981613,-373.693954,-196.482659],[100.724228,-370.160278,-195.841454],[108.165695,-378.214538,-191.817619],[61.617355,-328.587616,-182.271171],[64.264877,-327.319732,-175.940391],[70.809433,-322.295761,-170.920372],[75.760727,-333.669830,-172.124566],[65.053452,-324.707290,-173.706688],[78.265427,-381.765121,-209.233697],[118.247604,-401.737426,-175.507255],[120.184067,-408.726303,-170.188622],[124.372604,-415.808441,-166.138542],[116.412521,-402.917190,-173.703788],[124.271103,-409.921142,-176.404015],[129.677475,-421.181106,-166.569267],[108.766586,-412.621978,-165.244012],[105.865585,-406.484054,-167.754479],[104.980454,-405.535614,-165.010032],[123.379440,-454.777832,-184.502251],[124.520920,-469.181671,-169.909173],[124.447922,-465.877350,-175.871056],[137.814133,-551.404083,-186.833214],[109.963486,-372.908859,-150.951011],[112.385910,-368.058273,-144.201957],[111.683579,-366.465973,-141.241173],[108.140305,-376.931442,-135.826042],[102.261093,-390.082687,-129.032798],[107.041000,-384.224441,-133.245353],[97.587692,-424.668380,-117.101632],[97.957199,-417.075042,-118.485954],[90.599167,-440.483200,-110.472435],[88.352768,-439.499145,-110.595222],[90.000351,-449.456329,-109.172417],[92.980637,-446.659286,-112.443504],[88.197556,-458.262756,-108.770561],[87.813217,-462.409454,-110.784690],[92.422104,-459.318634,-118.167640],[98.074936,-448.203354,-120.210563],[92.217697,-454.886230,-114.549095],[83.416916,-470.786163,-108.962440],[85.812546,-455.761261,-106.474526],[83.495773,-465.225586,-105.899467],[80.104965,-464.267456,-104.954795],[71.833481,-474.813873,-106.539986],[77.581589,-464.650818,-105.871620],[105.372421,-428.778869,-129.198738],[101.786301,-434.617202,-122.471290],[101.969162,-441.711670,-124.623664],[103.212265,-437.756775,-126.248191],[97.753891,-436.818939,-117.924691],[79.829208,-431.817871,-117.916619],[82.145371,-426.364807,-118.851356],[79.529404,-425.850097,-117.510872],[81.612778,-421.021850,-116.897331],[85.319565,-409.138946,-119.810845],[78.516770,-430.653228,-114.960884],[78.346298,-430.435562,-117.279259],[76.514145,-435.883331,-113.872323],[84.547409,-429.424530,-108.553062],[70.545578,-446.716797,-115.487892],[73.497177,-419.559585,-95.540901],[73.037888,-409.355621,-94.080833],[67.300766,-466.848541,-113.731361],[69.788986,-479.627533,-107.233253],[71.462082,-456.599518,-104.540337],[72.383652,-456.598724,-101.385277],[99.923691,-394.746414,-94.416252],[105.080429,-388.512726,-96.771461],[113.644760,-365.160461,-94.588691],[110.434189,-363.993271,-93.006676],[105.985581,-356.608932,-92.223321],[111.228073,-355.095718,-93.168633],[117.735520,-357.733093,-96.535514],[121.250473,-346.950042,-98.827430],[119.355637,-350.397186,-102.396247],[117.229355,-346.099975,-106.069923],[109.770187,-326.576690,-114.086556],[116.457382,-334.164520,-107.862099],[113.712021,-319.385780,-111.152809],[125.446396,-317.411262,-99.640771],[129.487106,-317.687538,-93.725761],[131.074387,-313.051635,-87.650383],[127.707871,-305.399429,-82.618584],[124.223190,-306.289108,-82.446312],[130.434738,-304.992195,-83.351219],[132.999069,-293.923729,-79.525398],[126.366867,-297.599167,-79.500557],[134.168076,-301.593658,-87.150596],[127.897934,-308.477836,-96.983558],[117.310776,-348.768707,-92.944770],[122.686936,-341.221115,-96.454765],[123.770615,-337.133011,-98.600654],[125.955856,-330.709961,-95.554771],[129.435104,-320.052131,-91.151481],[128.447250,-319.040138,-89.061927],[126.980393,-327.170959,-93.312446],[113.282211,-327.705719,-88.239906],[123.801315,-327.985641,-90.458337],[123.199326,-320.322975,-87.191170],[120.062607,-333.523086,-90.698051],[123.463486,-326.881012,-101.254814],[119.742294,-321.577041,-105.556663],[119.708359,-334.959686,-104.671258],[122.063461,-339.299682,-101.462059],[125.700852,-327.255508,-98.193382],[122.227646,-340.070236,-94.740150],[119.630478,-348.267410,-95.063637],[97.035935,-395.638977,-92.604805],[93.246262,-391.357132,-91.368156],[88.075302,-393.426895,-91.433296],[75.580307,-397.305557,-92.266731],[98.527268,-402.783355,-106.021492],[106.007797,-419.647430,-128.735160],[102.991806,-416.557403,-123.869621],[84.837509,-414.548874,-121.288200],[84.033615,-419.125793,-120.587577],[102.313828,-367.760452,-118.868766],[94.312973,-363.150467,-129.133964],[90.419785,-366.056823,-132.345238],[89.815781,-356.549911,-133.834160],[88.419418,-368.870681,-134.601311],[81.897629,-341.665298,-139.700279],[89.021958,-338.089828,-135.084953],[82.052719,-337.391082,-138.991936],[91.653671,-330.406326,-131.693138],[79.738937,-340.186203,-141.769311],[79.562363,-340.920929,-143.141349],[103.809555,-359.735244,-118.588157],[110.328964,-358.464477,-111.491539],[107.171372,-351.959411,-115.300651],[105.294602,-348.028747,-117.155616],[101.982041,-339.733734,-120.937935],[96.557907,-333.936798,-126.511497],[111.159348,-348.365875,-111.579644],[98.799057,-355.675262,-124.889381],[115.252731,-356.776748,-93.456596],[91.983872,-363.844787,-87.360405],[117.194687,-354.201996,-104.445809],[115.127609,-365.220047,-101.093392],[117.102646,-359.641418,-99.601814],[109.681687,-373.997024,-94.372215],[114.250839,-368.001831,-97.225181],[102.653916,-395.503082,-100.487145],[60.018906,-412.264908,-79.692712],[63.601669,-410.592590,-74.913734],[67.802353,-410.769073,-71.693917],[73.030930,-427.417862,-67.294349],[73.895676,-437.893509,-65.047905],[67.424545,-429.745041,-70.375557],[69.216904,-420.029327,-70.017158],[63.062729,-422.654983,-74.631645],[61.311691,-415.782287,-77.115287],[59.145004,-425.207519,-79.096397],[72.370285,-410.494278,-69.085426],[57.314682,-432.452163,-82.664558],[55.465134,-459.402649,-75.265403],[58.630478,-478.094909,-61.672294],[57.946274,-489.954406,-55.785194],[56.398666,-493.583679,-54.981086],[60.348312,-466.809356,-66.136161],[56.571701,-468.804779,-68.901589],[59.342758,-457.526916,-71.263221],[75.616379,-468.334198,-51.554283],[64.998520,-490.528045,-45.564415],[62.009567,-494.762115,-47.559166],[55.921433,-478.946014,-43.762062],[55.553818,-445.894317,-48.582100],[42.797958,-453.279907,-44.808159],[39.049057,-449.804916,-42.663993],[42.492294,-472.024017,-43.978889],[31.036728,-494.973388,-32.564720],[30.081162,-493.399475,-29.992286],[26.203476,-511.595977,-22.778083],[26.694687,-514.963897,-18.929573],[31.201950,-505.173248,-19.093315],[33.127731,-492.733825,-25.554466],[36.765122,-475.849090,-26.170112],[34.639633,-476.892914,-29.387016],[34.988144,-463.469787,-33.390281],[36.481064,-456.148987,-34.903008],[38.208481,-456.443176,-41.869468],[56.827194,-433.606384,-49.100640],[55.896713,-429.917144,-48.595283],[64.745834,-420.233627,-47.865074],[71.236191,-415.464019,-45.421501],[59.310349,-419.767944,-47.534950],[53.448776,-441.330398,-48.914589],[61.799790,-423.770630,-48.535286],[66.570664,-424.746673,-46.734353],[70.096359,-432.963928,-43.699226],[35.616806,-455.392578,-37.730201],[31.700607,-508.873199,-14.259224],[30.206711,-511.978241,-15.813179],[28.455185,-518.540802,-13.654777],[30.057602,-528.009399,-3.662651],[31.024460,-533.961883,2.297348],[37.270432,-531.327392,6.493103],[40.510910,-535.114196,16.607323],[40.678146,-525.436828,6.389206],[38.961472,-517.106720,-0.515930],[27.054306,-534.119659,-17.501625],[30.592087,-545.125854,-14.858360],[22.761093,-541.447021,-4.428535],[24.551560,-539.841064,-1.205940],[25.976120,-529.970154,-9.029457],[31.668564,-518.604431,-7.820945],[25.318100,-518.500396,-19.078285],[25.883652,-536.431762,-3.498535],[23.878525,-532.514465,-11.696586],[27.015732,-543.842315,-11.901023],[27.775009,-550.745147,-8.930870],[22.508286,-547.481140,5.341599],[23.560715,-544.634735,-5.604599],[31.584458,-564.142059,-0.115600],[30.662460,-567.972320,7.359795],[32.337937,-573.244751,14.425553],[31.603989,-575.480652,20.926377],[31.630844,-579.900665,22.484475],[27.077500,-583.267730,22.928597],[11.445236,-589.414306,35.652649],[7.022263,-582.040497,43.300141],[5.992294,-571.909393,49.021607],[7.360825,-577.665497,42.766266],[10.336716,-577.016937,38.589531],[16.603806,-582.533661,30.640564],[21.760971,-582.819427,28.572373],[25.510361,-580.235626,33.226647],[29.158005,-574.922790,38.838066],[27.933579,-572.695160,40.898934],[27.925278,-569.456665,45.052063],[26.635666,-578.055633,38.922417],[27.982956,-574.402527,42.640686],[22.510666,-550.327789,1.039742],[21.988937,-549.534942,12.723801],[25.158798,-544.970092,9.096314],[28.036911,-540.802307,6.760056],[21.284226,-553.423340,9.912262],[20.016159,-553.263946,14.731835],[18.034714,-554.695373,22.029862],[32.845932,-543.964599,17.308319],[21.494797,-565.506073,33.406876],[21.515732,-565.945282,30.542633],[11.186936,-584.157135,35.189064],[7.510361,-583.791412,41.473236],[15.829270,-573.314911,43.654679],[20.505478,-578.483764,35.122551],[18.336716,-574.584228,42.117394],[25.747971,-574.342529,44.637635],[22.247666,-575.559936,43.062180],[14.130722,-584.027832,31.702576],[29.280014,-581.668182,14.761849],[36.382797,-584.531250,9.131516],[34.706894,-577.748596,5.977188],[37.350021,-578.478576,4.391716],[35.633774,-572.127655,1.748253],[32.929672,-576.299652,16.221260],[32.257858,-576.385162,9.736718],[32.636643,-571.547485,5.635003],[24.790634,-555.597839,0.702431],[27.331162,-561.237030,3.957825],[28.928452,-566.898864,9.362702],[25.040207,-566.380401,16.480553],[23.101608,-562.096801,13.634125],[21.811752,-557.122619,10.819046],[18.354172,-557.021667,19.545418],[16.435959,-557.117950,25.219292],[18.794907,-562.397339,25.542550],[29.969711,-540.539154,-18.518028],[33.080979,-539.385162,-21.810783],[37.091904,-539.808746,-18.867836],[36.032944,-543.261535,-14.912605],[43.037766,-534.779998,-23.664192],[43.685227,-536.057464,-18.964271],[34.104233,-536.885956,-26.428596],[29.330734,-535.398987,-21.599662],[30.217697,-526.201019,-26.969963],[27.176621,-508.525268,-26.983360],[26.044296,-514.468872,-24.182671],[24.537277,-524.967071,-18.455131],[28.065476,-527.180420,-22.616859],[32.649033,-512.527099,-10.269493],[28.260727,-504.420471,-23.633918],[32.922714,-480.174011,-31.300545],[32.084396,-484.386444,-32.907920],[33.375534,-484.370300,-35.478065],[50.533859,-453.421661,-48.235649],[47.187485,-453.668335,-47.523811],[49.284775,-463.752777,-46.863427],[46.664963,-463.053802,-47.101326],[44.462326,-462.048980,-46.238807],[46.158005,-469.973694,-45.699410],[43.543808,-482.574676,-42.879081],[45.553757,-491.671508,-43.154365],[66.826950,-440.609237,-43.027535],[61.805039,-436.610321,-47.089653],[58.298203,-437.580902,-48.594963],[67.118393,-431.579681,-44.795693],[70.415695,-445.118057,-41.208564],[49.758896,-470.009918,-81.522056],[46.128464,-482.827697,-82.262169],[46.435471,-483.769928,-79.885887],[45.490402,-490.507751,-74.867592],[49.343735,-481.566620,-74.058204],[54.571518,-487.477142,-60.852516],[47.406662,-503.281036,-55.937065],[40.935715,-518.409637,-49.641395],[38.965439,-521.670410,-46.077018],[38.250595,-532.535064,-37.136100],[44.473984,-533.153961,-33.355461],[52.504074,-531.975799,-35.983390],[58.787460,-527.359405,-31.439659],[73.041916,-533.669098,-37.425575],[70.689194,-538.761078,-43.343666],[79.689804,-542.612884,-42.836494],[85.063034,-545.635528,-40.331565],[83.965744,-545.845062,-46.325126],[71.205429,-542.514801,-48.016670],[73.427109,-544.803528,-54.548545],[61.298081,-541.551056,-55.683526],[53.525192,-539.046051,-54.507835],[43.547348,-534.792511,-42.090416],[56.583298,-538.532135,-62.867195],[62.905014,-540.457245,-68.019509],[82.542832,-545.631103,-64.220893],[78.713913,-545.554565,-59.471902],[71.771958,-544.058410,-62.630409],[59.760300,-539.753967,-64.102073],[65.721420,-543.120880,-53.332801],[70.100571,-543.541412,-50.756203],[66.110214,-539.625824,-45.974022],[62.058273,-537.158416,-44.199760],[66.633103,-532.182678,-38.929679],[86.693222,-546.460022,-30.977089],[81.063706,-538.411499,-29.089531],[76.882309,-533.475189,-24.988716],[73.682297,-529.482818,-25.343223],[71.147446,-532.528503,-26.729744],[76.442062,-537.988739,-23.742592],[74.781479,-539.521942,-26.625068],[69.717819,-536.910370,-28.498298],[74.471054,-544.038208,-27.712075],[64.263229,-544.198486,-24.135246],[66.867844,-538.484741,-28.768959],[61.034836,-532.107788,-25.082450],[56.014816,-533.102844,-15.671028],[52.756088,-531.188446,-17.160393],[48.228684,-531.621978,-29.595863],[53.047104,-529.413818,-28.906914],[60.712631,-524.311889,-26.065391],[63.290695,-527.383728,-26.281532],[66.696274,-529.148773,-27.698234],[69.922165,-525.198242,-24.941719],[73.765122,-527.635376,-25.998848],[70.582138,-524.327606,-26.938119],[71.424057,-526.329498,-32.601829],[64.019211,-523.245483,-27.092598],[63.194138,-523.888366,-29.769157],[68.076767,-524.930053,-34.116172],[63.608627,-535.200653,-27.284599],[70.950058,-543.894104,-27.721977],[71.954819,-549.121216,-25.644798],[76.093491,-531.285919,-30.124382],[81.239304,-541.100128,-37.246650],[78.125412,-539.488250,-39.626503],[76.219162,-533.914154,-34.761131],[48.269760,-534.521545,-39.305290],[47.974655,-537.375305,-45.313087],[55.676193,-540.404358,-51.057823],[39.668015,-533.545685,-34.631631],[36.224411,-534.067718,-30.889259],[50.848984,-533.717834,-13.652198],[55.043564,-531.063842,-15.681297],[53.881027,-539.391845,-11.418571],[62.188278,-553.671264,-16.232322],[61.128647,-546.290680,-18.113273],[61.488937,-535.650726,-25.021980],[59.005356,-534.628601,-19.987327],[59.516708,-552.374176,-13.026130],[51.354904,-537.213104,-8.900840],[53.364853,-533.810089,-12.169929],[45.887009,-538.584228,-9.846429],[58.563706,-544.418182,-14.137413],[57.556381,-549.625641,-12.457069],[54.636398,-550.217163,-6.843834],[49.604599,-537.649688,-8.066932],[39.832565,-524.499756,-56.405479],[42.386704,-516.285064,-68.485008],[39.256821,-522.544433,-55.106560],[39.655625,-520.223663,-52.705986],[39.887558,-517.571045,-59.918357],[40.880295,-513.705475,-63.979911],[42.824448,-506.210022,-71.871972],[43.920151,-498.136291,-72.704856],[43.452133,-496.657470,-75.985253],[91.645798,-564.256439,-24.879463],[91.380173,-560.055816,-22.982704],[88.021225,-566.836242,-22.625999],[89.489792,-565.857910,-26.649910],[67.491257,-558.878235,-17.383995],[65.453720,-557.647278,-13.931663],[77.922104,-573.588989,-17.006828],[76.752670,-576.879394,-20.289895],[78.975998,-572.642975,-28.989814],[78.587326,-570.046692,-33.989479],[76.072434,-570.312164,-47.198937],[76.267197,-567.838958,-49.899223],[77.917465,-568.872772,-40.927528],[80.306198,-571.705230,-19.790184],[84.686569,-568.410797,-22.757194],[82.162644,-568.130035,-27.907310],[80.902146,-567.320953,-32.631752],[65.104172,-553.805847,-2.085876],[68.502243,-557.875824,2.215287],[72.217392,-561.354309,3.037964],[80.553940,-573.259155,-10.293312],[77.584763,-575.992370,-13.554344],[76.727097,-586.444397,-17.368797],[82.162705,-581.207367,-9.917289],[77.318222,-580.693329,-6.721885],[74.275681,-581.787506,-5.908157],[56.660263,-551.344970,-0.354217],[44.295395,-564.092804,0.364594],[48.177658,-559.035186,1.408799],[43.618637,-553.214172,-0.222328],[46.911240,-567.424957,2.544739],[52.370102,-562.386718,1.747467],[55.809006,-554.264435,7.123009],[66.184860,-558.348968,5.755936],[71.770676,-563.539398,3.016816],[52.011337,-557.409668,4.918991],[77.177414,-404.966781,-66.977729],[81.172775,-408.865112,-63.384330],[76.796799,-421.201935,-65.207420],[69.961716,-397.898300,-70.775475],[79.399948,-400.242660,-65.641792],[86.679916,-428.224197,-50.258522],[84.541000,-426.239380,-55.533821],[80.321945,-431.152328,-60.750007],[77.058029,-438.410217,-62.218452],[75.423630,-447.832550,-61.397483],[81.000900,-447.573211,-54.794929],[83.455917,-446.329437,-50.391121],[82.903610,-452.994781,-47.194969],[81.254562,-453.769165,-51.188270],[82.593918,-436.858307,-56.293998],[79.683579,-443.721557,-58.147667],[92.899643,-338.752289,-59.318122],[81.298081,-345.241638,-65.045097],[90.157517,-334.105423,-61.765022],[89.498520,-329.916900,-61.557121],[92.183518,-324.525695,-58.908424],[93.251572,-331.108291,-58.863624],[79.302902,-276.970382,-60.491569],[116.262314,-302.089851,-23.444252],[116.715561,-309.120880,-22.039405],[115.245712,-317.194198,-23.031669],[109.363266,-323.416244,-19.453224],[118.015244,-300.450874,-20.168754],[117.865646,-303.833618,-18.604255],[115.054428,-313.750938,-20.270759],[93.173264,-330.881057,-17.818917],[85.877426,-318.019684,-18.253547],[90.653061,-314.044632,-14.194191],[79.007736,-311.289894,-20.318641],[77.502976,-317.790458,-22.554512],[92.776413,-303.373474,-10.401268],[90.730820,-302.412315,-11.229515],[84.887680,-301.391403,-14.876381],[94.258041,-285.138633,-5.088997],[89.745529,-346.192093,-22.470161],[75.144577,-346.948272,-30.592521],[69.993027,-347.070633,-30.838371],[68.101242,-360.974548,-33.388497],[72.078476,-354.245498,-32.489479],[75.761704,-357.570846,-32.928413],[78.999375,-351.405136,-30.051124],[63.068527,-380.575363,-37.999778],[59.866867,-396.701858,-41.069419],[64.208786,-400.435058,-44.622947],[66.411423,-379.166412,-37.923958],[58.388046,-376.839172,-37.622413],[61.661301,-389.406509,-39.443153],[66.560959,-395.610595,-44.062889],[56.829880,-408.220276,-42.947319],[53.848068,-416.180557,-43.497795],[49.638107,-410.694244,-42.920601],[50.977707,-404.094742,-42.271339],[55.335434,-391.375992,-40.572181],[51.322128,-395.194946,-33.662346],[54.574631,-396.987137,-29.085777],[53.932053,-404.360382,-27.527717],[52.981552,-404.827728,-25.328514],[49.240708,-408.058441,-22.581779],[52.148239,-411.154602,-27.752128],[50.892807,-391.769363,-35.428825],[49.227097,-401.832672,-40.428703],[38.720505,-440.609970,-41.076118],[49.891953,-402.965744,-17.856330],[48.858627,-411.701919,-19.565162],[53.808273,-398.204788,-24.384224],[50.390854,-396.346557,-21.363227],[49.528366,-399.557037,-20.469963],[79.038864,-375.325332,-2.396927],[84.107407,-344.033340,1.930275],[85.509018,-333.480453,4.090912],[85.381088,-321.993431,5.953186],[90.757370,-314.024307,9.798035],[91.592941,-296.745460,13.345368],[97.234482,-289.471100,21.515557],[93.920273,-292.810951,23.914429],[80.001511,-327.410034,2.930214],[72.493881,-331.728683,-0.341194],[84.871384,-307.718452,8.957886],[63.410996,-397.019836,-90.127754],[66.835800,-395.075622,-92.500709],[78.462753,-388.691421,-91.056205],[72.403000,-370.296219,-69.241783],[67.528793,-362.822204,-72.733741],[70.181198,-363.374084,-70.258004],[78.183334,-358.731689,-66.761421],[75.528549,-351.742202,-67.435631],[90.319931,-352.724197,-60.946236],[75.758713,-299.508987,-67.088539],[74.394516,-310.154556,-66.354973],[119.480759,-341.297271,-92.557350],[109.309616,-283.794632,-75.911445],[114.041245,-294.289528,-78.568962],[124.631882,-287.515732,-75.875023],[98.186264,-278.588249,-69.873191],[104.806381,-273.147857,-71.420265],[105.486618,-285.493370,-75.659721],[87.876572,-277.451149,-70.061241],[90.111801,-283.712600,-71.857658],[108.920761,-272.998207,-72.364326],[105.704208,-268.102394,-69.970710],[109.359055,-252.296665,-65.309640],[110.374497,-258.173187,-67.468803],[115.597397,-246.121147,-64.073448],[106.148300,-250.006206,-63.551018],[112.685654,-243.593990,-62.780586],[102.953720,-240.090988,-59.246026],[120.029587,-234.435699,-61.200356],[128.145615,-226.356853,-58.867729],[132.565292,-240.273094,-62.908622],[125.584091,-238.319217,-62.628044],[146.691696,-217.463415,-55.305717],[147.160874,-210.528630,-52.588142],[138.351242,-211.188530,-52.746421],[143.257614,-202.785763,-48.408470],[139.294602,-200.012603,-48.503379],[144.533859,-191.655529,-43.769172],[147.480698,-195.459898,-46.600441],[149.416794,-186.348734,-47.614555],[148.792282,-201.918312,-55.677238],[147.480759,-203.630742,-60.911750],[147.809494,-203.290144,-50.260750],[148.934677,-201.339030,-52.638572],[137.484848,-196.359570,-47.071678],[146.971848,-180.678858,-38.710151],[148.582871,-183.607740,-41.547798],[147.096237,-195.759054,-60.414222],[145.681015,-203.158168,-65.089439],[148.402268,-185.473752,-53.279228],[144.432785,-180.286561,-37.784278],[146.861313,-168.626249,-33.319999],[148.659104,-167.816555,-34.787590],[76.566330,-348.121917,-84.229241],[69.732102,-341.705154,-76.242256],[68.624375,-347.610367,-74.317071],[68.646347,-348.356781,-79.148765],[72.311691,-343.647995,-69.269386],[92.413315,-301.054458,-54.622978],[92.346909,-292.905319,-54.211464],[91.921738,-309.654983,-50.010917],[92.238449,-307.776382,-54.087165],[107.179184,-319.033241,-34.644493],[112.573349,-321.176201,-29.494133],[104.743881,-328.074157,-38.501289],[113.328720,-325.707077,-23.778222],[110.229416,-337.603500,-26.319114],[114.839035,-316.071922,-25.803382],[114.121750,-323.863479,-26.492714],[113.736008,-310.188781,-27.211921],[111.653305,-297.500206,-27.907508],[116.478256,-197.896136,-46.995353],[121.872727,-196.301741,-47.547004],[146.534592,-152.906036,-24.798226],[143.536362,-155.707943,-26.927223],[141.889328,-148.248268,-22.591316],[144.192001,-145.137401,-19.314140],[143.580856,-137.952343,-13.103569],[149.915329,-151.751995,-20.915474],[151.746506,-148.380428,-14.836799],[157.248398,-155.916095,-16.201103],[156.557053,-161.438610,-24.639657],[152.042526,-158.908092,-27.009330],[95.897141,-257.808574,-46.604179],[87.554611,-220.090221,-41.430183],[99.375229,-300.772148,-9.061210],[109.353623,-310.278145,-14.860649],[104.187424,-310.971428,-13.771873],[105.721909,-301.019066,-11.637657],[106.634934,-292.846786,-9.193214],[108.013718,-319.449493,-17.264106],[114.402878,-306.238464,-15.772042],[116.350205,-296.958664,-13.310829],[116.376267,-286.032715,-9.460594],[111.099716,-288.723633,-8.789727],[106.211289,-280.048546,-5.656135],[113.963852,-274.445724,-5.534858],[119.335251,-276.102234,-7.156914],[119.781723,-282.710441,-9.825157],[118.753464,-296.304275,-16.285682],[105.746384,-288.491089,-7.583519],[113.822739,-301.673790,-13.646629],[96.648300,-302.787330,-9.224372],[94.359726,-288.947105,-5.770530],[79.744736,-290.562271,-15.430473],[92.131821,-295.856117,-8.691017],[79.139145,-300.470314,-18.178413],[71.527451,-278.523513,-5.731056],[64.194809,-336.403778,-27.855233],[66.987473,-337.646499,-28.735084],[75.103745,-339.254867,-28.957130],[61.339646,-350.790817,-31.027397],[59.511276,-351.756225,-30.231392],[57.020310,-362.055465,-32.291053],[65.143845,-349.158401,-31.556678],[57.097275,-346.174072,-20.044731],[56.750107,-355.522934,-21.343071],[55.436447,-347.619842,-17.769509],[72.153244,-293.275543,2.785935],[74.632919,-278.545150,6.594597],[70.117783,-312.959503,-0.384445],[73.622971,-313.782020,2.223221],[75.184555,-317.961624,2.972222],[83.636398,-243.499664,21.204064],[82.266953,-239.882007,18.900452],[85.500717,-234.150814,24.806168],[90.203964,-226.843849,30.575913],[101.433029,-214.519838,40.481270],[101.747360,-228.843910,36.348503],[92.106491,-236.141819,29.664254],[86.665451,-237.142406,25.544045],[80.511459,-253.142986,16.160706],[79.298813,-262.127250,13.838768],[83.626755,-265.865745,17.083519],[84.786301,-272.684822,16.351174],[80.220444,-282.352974,12.021813],[76.428452,-296.453476,6.752915],[78.637070,-276.047851,11.772416],[74.336472,-294.691909,5.175713],[89.340805,-260.527694,21.289925],[97.495957,-265.231460,23.972039],[99.620407,-276.814201,24.202401],[98.256088,-282.331115,24.410515],[97.217392,-288.598289,19.419037],[94.936203,-288.445305,17.010613],[93.333420,-275.007446,19.097489],[99.775620,-271.101394,29.194458],[98.303879,-273.878486,22.440621],[96.698044,-251.585346,27.358376],[89.595078,-249.222744,24.660469],[82.697312,-256.186996,18.087685],[97.765183,-245.881874,29.543274],[102.285080,-240.839698,33.930642],[105.073898,-237.946182,39.476052],[104.553818,-238.841610,41.788681],[101.778732,-231.432735,50.337990],[107.488815,-211.277692,47.876374],[104.948288,-216.912258,42.279877],[99.231796,-204.734044,41.997269],[94.974594,-210.483897,37.617333],[92.003342,-206.510679,35.732903],[103.452927,-231.070686,37.211594],[105.306992,-230.978088,40.076119],[99.825852,-253.325432,40.248925],[98.418869,-254.405353,42.780465],[98.262680,-257.607078,51.740158],[95.703964,-269.590179,43.631249],[96.417954,-275.866127,30.574181],[100.620651,-267.882316,29.425858],[101.193161,-260.732711,28.246262],[102.513413,-255.957500,33.027352],[103.885971,-248.085392,36.236412],[103.342087,-245.947162,34.514923],[101.336655,-258.438057,34.399079],[96.196701,-265.892746,38.833245],[98.011826,-264.025032,35.583413],[97.143417,-260.415786,44.993920],[103.342209,-248.405887,37.990494],[100.075974,-288.445114,60.299767],[95.834091,-292.974830,69.437432],[91.085861,-282.060951,74.150242],[96.473435,-298.969032,66.771965],[98.042648,-300.758369,60.524701],[96.982407,-301.782028,64.384823],[94.417221,-307.374382,64.533356],[100.421433,-244.064586,44.539803],[99.242600,-243.658634,48.042740],[99.156845,-261.050018,55.785180],[101.832382,-262.521499,65.779175],[102.139877,-254.343998,67.033348],[103.163803,-252.242817,72.442112],[102.188156,-258.192932,74.361878],[102.064072,-266.512321,69.241173],[103.515122,-246.914169,72.440182],[98.585007,-267.366394,54.915421],[86.316208,-258.321998,20.376358],[86.350937,-245.575908,23.614373],[93.537827,-221.552572,34.217568],[81.281845,-238.201927,15.258896],[82.095688,-231.926872,13.976616],[83.264084,-227.964428,13.001786],[85.733078,-215.591524,18.222588],[86.548935,-215.966884,15.350136],[101.963791,-211.045463,14.766991],[96.469162,-212.037924,13.502503],[93.273972,-203.434753,15.807946],[90.954636,-207.319271,14.504212],[88.130722,-205.471542,19.326317],[89.542709,-191.479937,28.323075],[87.503525,-203.910880,26.755928],[88.588364,-199.711598,30.154557],[87.234543,-205.097067,23.703362],[84.288437,-229.154113,22.650498],[93.964890,-197.086030,18.362625],[88.383957,-213.046995,13.903588],[55.604233,-366.810989,-30.737419],[54.458725,-377.063751,-36.604789],[57.904404,-371.325424,-35.946174],[55.515061,-383.663559,-38.889167],[52.182419,-384.067154,-34.695823],[52.632797,-383.371750,-37.340614],[55.055283,-384.758041,-29.097329],[56.067734,-379.896805,-24.012138],[55.421982,-391.626129,-25.314918],[123.888413,-266.138221,-7.032219],[113.576279,-213.231876,-12.207420],[106.756333,-207.745225,-15.983009],[108.438889,-211.230636,-15.633720],[110.500778,-193.545698,-10.264213],[109.808884,-159.692993,0.112877],[113.279038,-167.707122,-0.453529],[113.598251,-155.200809,3.246041],[119.406967,-156.888405,6.155503],[116.497910,-148.987171,7.110291],[124.688278,-155.285598,11.972741],[118.371689,-161.503746,4.148255],[118.354355,-170.951807,1.645218],[114.981918,-185.982417,-5.577674],[118.325791,-180.363205,-1.355621],[128.049484,-174.714306,10.478981],[129.231918,-165.802332,15.770760],[130.464829,-151.661033,23.622994],[127.076950,-129.083427,22.269196],[122.586411,-134.609379,15.713524],[105.256271,-139.590748,0.415490],[108.919785,-140.980827,3.268471],[104.594956,-149.351875,-2.834373],[100.070664,-147.540302,-7.792137],[96.562119,-150.551269,-17.336219],[97.386032,-149.892048,-12.010093],[97.676560,-140.290249,-11.002617],[119.315109,-139.550003,11.752114],[123.886826,-148.384651,12.956627],[127.107773,-164.755411,12.394768],[114.815903,-142.354595,7.602639],[108.834396,-152.103256,0.869011],[107.623398,-169.703157,-5.361580],[109.953232,-179.245716,-6.225662],[127.423447,-138.706196,19.106552],[127.359726,-148.272194,16.625328],[129.025559,-150.411228,18.455849],[118.750473,-123.037643,17.132538],[109.861740,-116.448471,11.777146],[110.399155,-107.767883,14.811676],[113.263352,-88.828499,21.733704],[110.789597,-84.081329,18.180962],[108.050888,-87.400009,10.632996],[109.929367,-84.325798,11.189904],[108.901108,-90.836082,4.858467],[107.633957,-89.338379,7.148331],[104.900498,-97.768661,5.754341],[106.548325,-96.834556,1.619622],[117.047836,-85.955749,7.837555],[110.289169,-95.389351,1.852044],[119.928818,-89.549797,4.921036],[122.246811,-93.160980,2.780655],[122.621811,-76.985420,12.940483],[107.774338,-94.172577,13.925980],[103.935837,-104.622535,6.190186],[101.576584,-112.126213,0.320420],[101.759384,-121.391525,-8.486656],[101.885178,-113.260208,-3.588745],[99.820297,-123.383735,-7.371894],[98.804306,-130.365600,-7.487663],[99.852524,-130.868278,-3.964050],[99.517502,-136.634670,-4.840217],[103.805954,-103.024978,0.942360],[109.041245,-103.872581,-2.313667],[105.133957,-105.173820,-2.447212],[104.576401,-110.829933,-5.005500],[102.338791,-113.950523,3.795594],[103.268601,-117.987159,4.207955],[102.103500,-125.509636,1.350899],[102.221909,-131.599395,-0.456474],[99.965683,-119.858261,-4.192108],[106.968186,-100.320350,12.926857],[105.476425,-112.535072,9.092415],[109.898666,-128.611015,7.175515],[113.115585,-125.391967,11.111496],[132.140732,-148.096943,42.039467],[132.681931,-147.343166,35.341133],[132.415329,-133.708355,48.456574],[130.031357,-180.285714,13.022553],[131.437485,-195.054378,14.818154],[130.222824,-195.269717,22.579972],[130.148117,-191.258860,10.610947],[128.085983,-188.895161,6.937302],[124.564804,-199.059008,0.545586],[116.006333,-191.786414,-6.375328],[124.990524,-180.631097,4.799881],[120.396774,-167.502514,4.585183],[118.441147,-204.604741,-5.659912],[112.153732,-230.912231,-17.423301],[107.282822,-240.598705,-24.340599],[118.900253,-239.332126,-13.801384],[120.108261,-229.807758,-10.856208],[115.632248,-227.562290,-13.704750],[121.764023,-237.903965,-10.393638],[123.938706,-232.141494,-6.209526],[124.914291,-221.136329,-3.744316],[122.036667,-213.592443,-5.118133],[103.784165,-202.297142,-18.281074],[103.592148,-194.904124,-18.093437],[105.249008,-190.318939,-14.445182],[96.408737,-181.341258,-21.577766],[96.193710,-159.243118,-16.604698],[100.245407,-191.279712,-22.891304],[104.923386,-165.811945,-6.949577],[102.106979,-160.960693,-10.487175],[98.738571,-157.391475,-12.628654],[105.643784,-180.350444,-10.594444],[108.909165,-187.812414,-10.033867],[106.675095,-153.699882,-1.362594],[96.325546,-162.958793,-25.697258],[100.530014,-164.169525,-30.358955],[91.901108,-182.630533,-32.870536],[90.406235,-190.903369,-33.907966],[93.434189,-195.723450,-43.743797],[111.995285,-252.451347,-21.868644],[128.216843,-219.907655,6.632676],[127.656540,-220.486536,2.709267],[126.039169,-230.647701,-2.139198],[131.919418,-182.559124,18.798905],[132.373520,-169.272587,28.356957],[132.525314,-160.902740,34.957466],[132.123398,-177.627212,23.295861],[131.849472,-187.922723,20.487717],[128.309799,-175.141546,32.854256],[126.662216,-169.229337,35.900383],[122.958786,-155.584251,42.137322],[113.347824,-150.632835,40.261513],[123.263596,-136.274250,50.520958],[117.155075,-141.703148,46.279694],[126.429733,-161.315521,40.068543],[123.748520,-171.578430,34.576744],[121.572128,-182.253527,29.712433],[125.971359,-187.474911,27.685471],[130.318833,-183.137108,27.394318],[128.849228,-187.040713,27.104744],[130.269028,-167.630611,35.331627],[131.250900,-172.320602,30.460099],[106.179428,-144.158806,39.930436],[105.697556,-137.730022,42.602173],[101.310776,-143.942749,40.716790],[123.599350,-146.498382,46.062821],[126.838852,-149.537456,45.059044],[132.960190,-145.252342,39.723236],[132.009689,-159.416362,26.866707],[132.624252,-164.046673,27.780579],[131.567917,-176.432804,19.392327],[124.148239,-257.929023,-2.338073],[122.365830,-230.249996,-8.469352],[127.892380,-210.738679,3.854370],[125.675034,-210.824366,-0.288910],[127.405991,-199.806055,4.067818],[129.298752,-201.788206,7.637497],[130.222763,-205.298731,11.374108],[115.079941,-183.857986,27.263741],[119.694931,-187.229371,27.273400],[118.475266,-177.954004,30.843056],[131.321579,-197.928571,17.296379],[129.505661,-213.445654,12.898583],[89.656906,-222.881576,-53.221611],[120.944992,-261.240677,-68.568473],[133.571701,-303.655052,-84.755638],[132.011582,-309.680664,-90.221412],[130.939682,-302.482406,-92.854911],[122.977402,-312.593872,-102.914482],[121.135483,-299.282371,-105.369850],[120.410263,-308.756263,-105.718255],[114.357102,-306.339248,-111.457985],[102.867539,-320.344330,-120.833824],[100.211228,-328.377670,-122.764686],[110.933212,-301.644462,-114.452095],[100.912460,-304.130203,-122.562019],[97.802353,-303.365860,-124.523720],[94.559555,-292.181350,-124.819374],[89.781723,-315.417228,-130.119453],[100.584702,-291.171783,-121.448570],[106.595871,-290.835128,-117.432717],[124.871384,-331.604416,-93.148536],[96.013779,-333.868393,-147.083427],[96.686081,-326.027359,-150.469628],[91.508774,-320.133514,-152.031120],[101.258835,-336.231277,-147.688988],[103.862412,-335.947754,-149.387260],[107.300339,-342.800644,-149.100090],[105.692795,-342.662155,-146.719993],[105.689743,-344.363800,-153.358390],[103.545212,-347.269088,-156.245385],[98.049484,-343.994796,-162.258782],[112.111923,-362.332519,-146.338524],[111.499924,-359.080185,-143.477043],[107.427231,-370.705566,-155.779441],[109.993759,-363.279419,-151.824608],[96.700546,-337.907531,-158.941216],[94.238510,-345.715728,-166.643760],[89.471787,-338.919983,-167.534447],[92.597092,-337.745498,-163.713829],[111.030869,-355.090606,-147.635948],[108.815598,-351.661621,-151.527154],[105.680161,-385.820816,-160.114219],[142.258713,-245.315258,-77.396629],[140.799667,-236.971100,-78.760765],[139.748947,-226.942321,-78.059227],[141.131455,-215.006130,-73.779411],[143.987778,-240.540298,-73.526985],[148.841171,-193.203371,-47.756904],[138.409653,-278.338592,-75.891014],[138.359787,-270.391967,-72.590461],[132.600876,-279.468124,-91.502601],[108.054428,-267.173996,-114.429192],[100.967880,-265.710396,-117.643852],[102.440781,-279.950050,-118.970848],[94.915329,-279.082840,-122.403176],[106.652084,-282.096374,-116.791314],[112.276657,-266.035949,-111.787635],[96.089951,-262.955192,-120.076393],[93.534653,-273.149986,-121.671303],[97.230637,-274.760215,-120.922631],[92.649887,-237.475151,-115.115211],[92.266892,-219.015371,-109.388116],[92.963608,-228.628479,-112.935310],[131.156845,-276.263290,-93.029274],[127.595200,-288.658477,-97.692039],[137.263168,-229.224949,-81.073539],[137.598557,-210.066746,-75.117485],[143.630051,-232.462001,-73.980690],[144.395249,-213.529266,-69.461540],[145.811569,-215.335184,-67.094825],[142.643845,-221.714012,-73.569267],[144.816513,-186.923381,-62.172081],[143.863999,-174.708677,-60.256248],[145.895981,-179.543468,-57.746360],[148.183457,-179.736835,-52.735206],[110.430405,-214.770588,-96.222297],[111.950241,-208.464605,-90.041298],[119.187668,-204.284615,-82.019600],[122.407211,-199.208690,-77.667991],[114.064438,-201.289634,-85.681785],[119.369919,-190.485794,-76.438621],[110.808151,-189.002062,-83.970375],[92.411911,-311.199455,-128.770271],[116.463608,-320.416176,-86.750175],[119.139755,-286.311538,-76.196373],[93.347092,-279.343063,-70.651649],[82.979416,-301.815452,-125.336616],[76.863510,-306.688804,-123.808540],[81.657761,-289.194290,-121.166710],[95.927414,-215.152246,-110.262153],[103.368088,-178.383957,-98.831750],[95.884689,-155.786590,-84.184013],[96.836655,-149.691093,-82.207893],[103.911301,-148.713268,-87.982917],[103.616684,-139.529018,-83.909309],[114.080002,-140.666256,-81.817466],[113.771591,-148.312095,-86.900108],[111.820236,-158.291660,-90.830376],[111.133835,-171.337711,-92.995491],[111.808640,-164.794416,-90.710640],[105.381149,-161.376922,-92.766533],[104.682175,-156.077099,-90.962593],[109.139816,-145.173004,-88.240715],[109.367111,-154.237873,-90.449287],[112.321335,-151.670662,-89.086631],[112.774704,-143.379238,-86.980354],[114.052658,-141.450611,-85.154609],[109.722031,-168.244051,-94.805641],[105.395065,-175.108917,-97.616325],[102.869248,-166.976652,-94.277076],[101.991684,-160.008266,-90.905495],[111.199326,-163.978571,-92.879707],[69.633164,-207.451806,-87.489128],[65.786240,-198.296480,-83.985618],[63.182480,-199.122821,-84.378227],[58.370468,-190.710707,-83.328331],[60.801804,-178.880066,-79.361641],[57.660202,-176.888714,-81.458076],[57.739853,-164.536234,-79.521156],[74.322556,-155.028640,-71.389320],[80.734909,-143.804180,-69.839882],[89.508164,-161.613533,-81.670585],[100.479294,-166.193308,-92.651527],[98.034409,-181.950059,-98.158104],[81.689987,-185.716606,-85.047280],[84.070175,-189.685121,-88.565834],[77.852280,-203.624830,-89.040855],[70.448654,-191.087742,-81.982216],[63.142380,-184.763991,-79.999366],[79.313217,-193.596968,-86.443809],[78.480209,-180.387590,-81.167015],[74.679550,-179.786445,-79.406974],[70.138657,-177.299101,-77.645744],[74.201523,-193.700192,-83.906914],[67.524765,-184.654735,-79.670967],[90.617722,-133.750076,-70.885093],[96.273911,-129.704574,-73.044961],[96.159775,-123.053299,-70.369912],[111.886765,-115.301544,-77.177773],[111.860581,-131.029037,-72.459999],[114.469833,-130.877823,-78.438164],[114.287460,-136.576778,-83.332389],[111.789780,-137.769474,-75.624032],[111.157700,-131.882507,-70.145668],[111.256333,-131.990753,-66.770469],[112.572006,-126.828705,-61.562065],[115.073349,-134.708431,-60.808693],[111.755661,-135.476436,-66.241127],[111.710190,-119.628868,-67.165733],[111.406906,-126.076675,-65.181373],[112.218674,-115.469886,-58.811943],[114.684250,-107.704635,-49.902916],[113.103989,-102.581299,-51.722877],[113.567001,-87.392830,-49.552696],[113.358872,-90.323791,-46.632438],[112.173081,-111.540283,-62.154045],[110.728378,-97.965599,-69.324165],[103.048447,-107.517242,-70.639747],[95.395920,-99.863342,-59.361259],[103.536179,-99.647346,-67.505317],[108.635849,-90.260208,-65.792930],[113.591538,-92.851860,-63.427360],[115.613144,-120.439186,-54.074119],[92.462448,-137.463970,-73.612617],[97.845383,-139.527099,-78.551048],[103.287888,-129.867363,-79.675987],[106.869736,-125.799293,-81.167030],[114.500351,-121.242660,-76.313285],[112.495957,-136.009819,-85.006385],[110.777329,-134.569553,-84.859535],[107.609482,-134.834427,-84.918876],[114.140427,-118.470138,-73.187278],[114.019577,-123.760414,-79.463890],[111.504746,-122.672821,-80.547081],[108.881149,-123.958900,-81.389991],[95.575913,-173.352409,-92.445335],[92.025803,-180.337696,-92.676765],[86.286911,-160.396362,-78.882164],[82.442856,-163.520237,-77.531425],[73.388657,-169.272361,-75.762489],[71.105698,-152.502514,-70.257637],[64.618027,-161.082069,-73.156196],[79.075852,-164.438219,-76.143242],[81.586472,-152.158729,-72.990533],[75.841965,-165.706508,-75.289833],[91.957443,-164.969749,-85.565697],[66.918869,-214.973467,-89.528556],[62.329697,-213.713522,-89.133979],[60.701889,-206.427066,-86.992333],[55.532456,-207.221891,-89.979606],[65.890427,-209.331042,-87.684105],[59.382492,-200.525455,-85.554725],[54.810349,-193.363191,-87.540046],[56.672531,-165.572618,-82.699302],[58.080917,-154.695587,-77.543266],[76.430222,-144.686145,-68.909538],[83.884506,-143.929725,-71.267433],[60.245407,-153.159904,-73.862159],[55.768967,-175.126457,-85.118934],[55.609055,-182.423186,-84.562950],[57.640671,-151.860077,-80.170616],[58.608811,-137.808323,-77.913140],[60.619492,-138.010956,-83.600547],[62.300156,-127.529190,-83.360496],[58.772385,-145.395851,-74.862907],[59.757614,-142.966671,-72.785240],[62.275803,-154.443374,-72.427375],[59.075302,-130.326439,-72.442985],[60.455856,-132.184246,-69.893563],[59.882736,-120.620102,-70.382531],[61.966049,-99.518661,-67.708824],[62.279038,-107.919891,-74.702461],[66.894699,-100.740638,-87.266014],[66.153977,-106.806671,-90.743858],[64.701462,-100.983864,-91.011116],[64.305283,-108.275970,-93.407463],[60.386765,-118.072967,-75.016945],[59.074265,-128.264244,-74.212623],[82.628403,-173.622156,-80.939965],[87.643356,-175.030002,-85.603401],[69.366135,-170.913604,-75.550361],[65.346420,-180.036535,-78.373512],[66.404892,-163.580021,-73.480903],[62.899887,-168.598224,-75.658592],[60.227036,-169.209327,-77.221077],[57.368515,-158.798877,-84.210579],[58.594711,-165.106956,-90.520713],[61.756455,-157.493583,-94.482597],[64.101730,-146.918522,-104.530205],[62.082077,-155.441726,-108.644050],[59.878403,-155.684707,-109.580772],[61.126694,-141.128139,-105.428170],[63.751328,-130.517898,-102.074715],[62.609909,-123.699806,-99.962516],[53.954025,-117.613296,-95.576943],[59.581162,-125.435966,-100.488792],[62.973374,-142.949104,-105.276040],[64.508041,-146.909721,-101.897575],[64.108872,-149.025856,-96.791847],[60.729843,-149.741470,-89.199058],[63.616501,-141.419105,-92.550500],[65.210434,-131.609321,-91.550850],[59.497666,-145.573997,-84.187005],[53.005173,-155.676117,-108.577903],[52.451767,-240.231800,-105.646324],[52.617294,-242.185486,-108.992744],[56.181992,-234.393684,-113.305962],[54.977036,-229.497043,-98.105293],[58.856247,-220.158867,-121.534996],[58.672226,-213.877237,-115.258720],[55.200424,-247.458419,-104.276344],[40.239365,-254.671600,-126.357506],[44.966232,-242.748096,-125.414132],[39.917465,-234.710354,-123.495796],[51.039230,-239.363250,-126.076744],[57.735886,-232.118530,-123.480644],[56.749741,-219.324938,-123.455619],[49.626755,-215.367687,-123.000343],[43.618271,-197.834046,-116.877906],[54.517197,-228.033195,-124.576316],[33.744003,-248.846031,-125.364373],[29.695969,-243.865688,-127.831382],[34.430649,-255.613258,-127.575203],[41.095444,-266.944503,-127.600608],[47.439865,-273.624099,-123.810615],[30.306320,-169.556534,-111.823829],[28.830734,-175.630287,-118.438713],[29.860764,-169.489690,-117.909829],[53.894882,-247.958213,-125.733758],[58.520615,-212.361904,-121.651589],[57.341538,-205.129557,-121.482322],[59.051071,-228.135528,-117.263618],[57.148789,-233.262649,-98.038993],[57.039536,-219.812822,-93.077140],[54.002060,-203.409454,-91.320290],[55.737534,-198.514834,-101.218742],[56.951401,-189.825709,-100.499337],[56.032639,-179.553188,-92.925514],[56.564682,-168.349930,-86.644706],[54.231796,-189.773775,-93.679115],[53.512192,-191.719077,-91.427070],[54.895249,-179.215233,-89.208549],[54.272080,-185.687450,-87.851493],[55.861740,-199.080053,-87.461952],[53.346604,-202.246034,-94.620216],[53.769211,-198.770828,-95.881660],[53.375229,-206.550531,-98.562935],[57.801865,-191.359181,-106.697228],[66.304062,-144.518486,-68.731269],[66.792465,-134.267627,-65.939949],[71.559555,-130.778915,-63.985862],[68.710678,-144.965206,-68.229973],[73.239060,-144.627803,-68.165336],[62.308701,-136.365295,-68.905220],[66.020859,-122.419189,-63.458915],[63.979660,-110.239677,-61.571128],[66.828720,-110.548996,-59.640632],[62.882248,-92.746139,-56.896858],[69.669052,-75.554535,-45.571418],[73.015183,-63.606735,-39.341789],[77.241928,-69.432258,-40.169090],[84.387802,-76.890030,-42.587257],[97.964707,-74.520034,-49.481147],[110.311020,-75.609306,-58.141227],[92.792832,-55.871872,-36.929969],[80.913559,-26.331527,-23.349480],[75.846970,-34.892669,-28.633598],[83.936081,-9.527038,-14.959648],[87.660751,0.729508,-8.811668],[81.820297,3.263398,-10.965156],[77.157089,22.415680,-3.725578],[70.326340,24.242203,-7.676292],[70.721848,17.227417,-10.044334],[70.871018,20.473374,-18.361106],[72.312241,23.151581,-5.799553],[70.512558,41.417038,-2.451927],[73.506088,52.443299,-5.785720],[73.387924,53.004425,-7.680717],[70.975632,51.124420,-14.413902],[68.108261,54.008942,-15.325706],[56.672226,74.657959,3.841576],[54.537949,81.362580,10.384194],[49.109848,76.830353,10.916619],[39.522202,83.746247,14.216195],[39.031723,75.696411,10.043007],[37.201828,75.977204,8.104782],[42.198715,54.912705,0.001030],[44.575791,50.222611,-3.092018],[41.716843,44.806534,-5.113678],[47.215317,67.419312,5.687546],[41.400681,62.146851,3.879151],[37.253037,63.203980,3.060189],[35.055039,61.649109,-0.431244],[33.947434,72.861176,-0.879181],[35.246750,55.080796,-2.232238],[34.651779,46.074158,-7.303566],[34.040512,48.987503,-7.219291],[32.972153,42.269348,-14.414833],[33.366562,35.859421,-15.142494],[32.695969,33.807862,-19.418374],[37.110947,49.488816,-3.357025],[69.171433,20.201203,-12.430915],[96.452744,-63.332992,-43.458000],[100.904892,-52.626129,-41.930702],[107.149277,-54.782654,-46.160088],[109.838791,-56.772857,-47.851341],[112.244614,-60.360428,-48.458397],[105.468002,-69.324493,-53.400367],[102.514816,-70.340995,-52.088752],[103.676865,-58.840378,-46.799156],[75.658066,-79.661689,-44.589576],[70.947495,-83.167206,-47.830131],[64.963425,-76.271484,-49.382331],[64.254624,-84.077530,-66.364189],[66.564377,-77.066162,-80.891746],[65.200791,-70.968612,-79.831840],[60.673264,-60.154388,-76.302360],[65.554550,-53.023666,-72.221367],[67.693588,-55.549637,-60.305320],[66.638291,-68.955932,-65.273094],[63.839707,-69.270492,-54.783821],[63.133286,-80.094818,-59.292152],[66.094833,-78.624366,-71.472420],[67.672653,-73.313560,-74.292488],[63.157944,-56.678848,-74.868675],[66.120834,-61.153824,-75.607856],[67.651291,-61.596862,-72.914100],[67.918625,-62.530151,-68.251030],[67.022751,-69.422867,-77.556633],[64.433396,-78.086265,-82.727974],[62.886154,-67.279174,-79.036583],[57.849411,-71.579513,-79.300713],[57.594772,-81.955101,-83.531929],[61.315842,-86.601059,-86.044181],[57.290756,-54.228912,-72.733039],[49.095627,-51.315506,-64.125328],[39.943039,-57.718567,-58.749702],[53.651657,-52.673370,-69.283867],[46.743027,-63.599106,-66.823951],[56.484726,-68.735252,-77.618705],[53.261215,-68.076233,-74.027687],[53.617539,-79.865829,-80.217933],[53.428818,-91.465629,-85.275322],[45.396591,-76.013641,-71.142663],[43.043991,-59.124054,-61.274299],[32.188095,-67.643264,-64.104194],[41.402084,-68.825538,-64.258140],[46.906052,-86.482742,-77.474007],[49.384262,-90.309074,-81.150871],[45.772507,-98.301719,-81.065727],[43.389572,-87.442642,-74.330940],[41.513229,-81.233894,-70.162757],[38.221665,-71.131416,-64.185020],[50.019394,-72.793091,-73.378197],[35.983078,-70.205734,-63.711998],[32.236862,-77.253975,-68.254020],[30.498032,-84.379890,-74.013420],[67.934067,-92.604850,-83.562173],[66.642990,-101.694336,-84.519630],[64.869003,-102.182983,-79.718193],[62.002731,-93.132583,-61.455879],[62.838364,-93.801826,-66.706169],[61.318833,-102.492019,-64.716011],[61.942612,-113.384323,-64.575524],[60.808884,-119.967796,-67.458503],[60.633347,-111.285057,-67.620979],[65.318466,-95.711212,-76.317741],[62.948288,-123.231155,-65.697350],[114.014084,-99.606369,-47.562432],[116.087875,-90.513961,-39.455117],[119.001938,-97.423416,-39.535484],[123.343491,-83.759582,-30.482750],[120.725571,-92.157196,-35.770668],[115.503891,-84.416870,-37.882820],[114.678085,-67.651825,-34.312339],[114.977158,-72.044677,-46.960960],[90.822739,-147.336651,-76.262260],[86.251999,-126.532226,-65.781517],[88.108322,-120.000663,-63.899223],[90.101364,-107.005401,-58.694664],[90.662888,-100.483207,-56.292534],[85.764694,-105.132560,-55.696632],[78.954575,-107.363998,-55.143272],[70.626511,-126.446808,-62.780906],[111.301987,-108.208725,-74.015831],[113.827927,-112.046440,-73.030647],[112.884079,-102.757599,-69.608238],[107.779648,-101.444473,-70.962349],[113.996689,-110.433029,-70.447425],[113.209274,-104.252479,-63.907249],[109.958176,-103.148323,-72.149040],[108.143906,-109.805710,-74.851310],[109.072006,-114.641411,-77.263099],[105.799912,-116.748138,-76.620063],[99.123154,-102.067550,-64.146141],[97.612839,-114.870765,-68.047447],[114.010849,-97.049728,-63.815681],[113.310654,-96.522575,-59.776863],[112.823715,-100.857254,-56.189019],[112.394150,-108.464401,-57.706215],[102.854355,-93.111885,-63.741752],[98.432480,-85.308525,-54.722893],[99.292099,-90.703499,-58.486153],[92.852219,-87.293190,-51.801018],[86.077316,-93.380981,-50.732872],[82.137253,-83.100815,-44.719078],[66.887070,-90.975540,-52.707313],[63.340134,-87.230133,-54.053506],[64.235947,-82.782264,-51.757621],[85.926376,-82.360359,-45.590263],[89.253769,-79.102112,-45.977501],[95.995896,-79.462433,-50.067146],[81.293564,-67.575607,-38.524147],[81.411301,-100.260635,-52.118966],[73.839646,-109.013786,-56.390159],[68.722336,-101.600204,-55.515983],[69.809189,-114.076072,-59.338264],[77.014145,-102.486572,-53.135093],[77.390610,-91.425117,-48.717460],[72.431625,-99.712127,-53.209756],[113.223374,-156.333339,-87.962211],[113.816025,-145.928199,-83.781608],[112.108505,-144.667057,-67.846016],[113.444687,-151.951629,-67.892190],[115.586350,-158.622955,-67.608757],[113.338059,-171.328727,-74.123726],[119.771591,-161.160736,-64.924797],[118.936325,-145.514759,-59.245262],[123.046799,-141.412094,-55.702995],[130.047714,-136.731006,-51.369866],[131.540634,-143.717910,-53.764961],[136.937424,-146.715370,-53.116737],[140.552597,-139.981373,-49.432107],[146.376755,-139.823814,-52.200538],[151.131271,-140.741615,-52.784065],[164.223251,-142.646099,-59.662330],[144.298142,-131.095855,-51.225381],[149.337692,-134.921173,-52.576454],[122.090683,-177.525539,-69.697258],[83.935471,-124.480011,-63.817237],[76.824387,-128.111816,-63.297280],[82.461289,-110.892067,-57.105278],[80.597885,-122.193000,-61.499046],[78.980148,-132.684299,-65.183448],[73.213486,-119.330764,-60.416389],[83.382797,-91.610916,-48.897683],[79.975266,-87.053398,-46.425300],[70.829208,-89.221840,-49.861976],[132.230576,-92.958267,-32.191520],[166.525131,-29.103134,-26.168296],[178.721542,-45.825119,-17.531471],[182.650528,-45.935669,-19.850959],[180.504685,-40.279434,-17.054542],[178.541306,-70.669792,-36.463279],[174.933396,-60.961197,-35.429406],[172.087082,-51.630981,-31.365135],[171.727829,-55.656311,-36.576377],[180.843521,-111.091354,-58.598564],[181.172897,-124.728828,-60.516792],[173.619736,-100.292213,-57.374565],[184.009903,-131.016716,-60.586265],[176.101059,-141.598148,-62.688087],[175.742111,-134.235328,-61.903312],[175.451767,-106.384224,-57.851982],[161.420639,-129.881874,-58.305915],[158.710800,-125.853119,-55.847602],[122.973984,-100.808761,-38.581230],[131.403000,-96.918373,-33.776664],[153.946701,-113.384155,-47.365944],[165.052597,-123.105163,-57.125160],[168.146225,-120.238121,-56.569999],[160.231125,-37.874481,-39.671150],[158.054123,-35.730392,-38.352395],[157.970566,-46.835113,-42.796287],[161.237229,-45.952072,-44.074119],[168.930405,-15.453354,-7.790977],[174.671738,-11.921096,-6.744011],[182.698929,-21.804855,-18.511467],[190.357895,-21.522598,-21.118415],[197.545151,-19.761642,-12.209373],[207.937088,-14.251144,-11.250435],[203.465256,-6.009979,-5.366623],[205.235855,1.212799,-2.321350],[201.641098,8.693894,-1.301986],[198.651993,8.957352,-1.213615],[192.547440,17.687760,3.453438],[194.801041,14.378067,0.975754],[188.880295,18.656784,4.426064],[185.215622,17.562058,6.733498],[187.996964,22.369217,7.728104],[181.776077,28.438889,15.616745],[184.484177,27.438034,15.178887],[188.042801,25.064591,15.320267],[187.301743,14.857590,18.216706],[194.575119,17.131241,13.160233],[188.700913,22.689484,16.714112],[189.806107,15.850022,15.969391],[199.733933,6.579239,11.919388],[199.228226,16.712403,9.356621],[190.979874,22.952774,11.402512],[194.553879,19.627793,11.994294],[205.187027,8.657975,10.106423],[201.965622,13.460114,10.183289],[201.982132,14.025437,5.807618],[204.050858,8.839875,0.698563],[194.751541,19.012329,7.197129],[180.764511,21.224137,11.926308],[174.449143,16.662949,14.776696],[178.635605,29.139130,16.743851],[175.124436,31.523514,20.445061],[172.113449,34.563156,26.537743],[169.522507,26.901871,26.642830],[172.561569,28.737397,24.296372],[175.199692,20.375412,16.762307],[175.099472,23.842270,18.504258],[171.528549,19.808457,17.901627],[183.349808,23.283753,9.724190],[178.250107,33.261307,22.919907],[183.527329,28.967911,19.696053],[180.441116,32.276337,27.013527],[176.264084,36.994980,30.381371],[183.221420,26.942658,22.544609],[209.053513,-17.603592,-13.087243],[217.350021,-22.948501,-15.337318],[222.796311,-25.367798,-14.242744],[226.241135,-26.776947,-11.585334],[202.609451,-15.795166,-8.995598],[186.485397,-31.489792,-24.665565],[188.857926,-33.184402,-25.956565],[200.780197,-29.141525,-19.048133],[205.490067,-32.840805,-19.039941],[208.406143,-31.757476,-17.349586],[202.172897,-25.601776,-14.756996],[208.584000,-27.660247,-15.253105],[215.435318,-28.016006,-18.373542],[212.199478,-24.932327,-16.463722],[212.210892,-17.642639,-13.416984],[206.919479,-22.263351,-12.677299],[169.774033,-11.331100,-3.813583],[173.022446,-12.896164,-5.124405],[171.057785,-6.819565,-0.952827],[172.605454,-18.772445,-7.648033],[176.487473,-20.875656,-9.739189],[148.817062,-153.574855,-46.972848],[149.376999,-158.383476,-46.370460],[146.159104,-165.115425,-53.587959],[146.333542,-171.907270,-54.533333],[144.413193,-164.502685,-56.806495],[149.714890,-181.599333,-43.846672],[148.957504,-179.148494,-39.975288],[150.122666,-174.144752,-43.622399],[149.976669,-168.515220,-38.215629],[149.306442,-169.492393,-45.860298],[135.212631,-168.121980,-61.828895],[128.091538,-169.641718,-64.605491],[174.735825,-174.111873,-59.844490],[183.238907,-171.985534,-62.514091],[170.519516,-176.003914,-53.469810],[175.833115,-155.422451,-36.067985],[175.098557,-158.306759,-38.403908],[172.263840,-164.112163,-31.232139],[177.413559,-154.989746,-25.539878],[176.553757,-157.174610,-25.657005],[176.267502,-156.392540,-30.858880],[173.936386,-158.027652,-24.822181],[166.191147,-160.266765,-26.368522],[167.509689,-156.213646,-22.944099],[161.113693,-152.438373,-9.108421],[158.648300,-161.086563,-22.920173],[159.619187,-157.199600,-18.329826],[159.699143,-154.939426,-14.029182],[165.150559,-153.662140,-17.317878],[164.740341,-145.614330,-5.114105],[159.739304,-163.834045,-27.560829],[159.041672,-165.588991,-31.587334],[158.449997,-166.167774,-41.822593],[149.650314,-159.867569,-29.787498],[154.454697,-163.241226,-34.185814],[153.349167,-162.832313,-38.889534],[151.270065,-164.211364,-35.852668],[170.182480,-154.624855,-22.555687],[168.574570,-160.591415,-27.395164],[112.973923,-67.015991,-51.718666],[107.991135,-45.014892,-41.647285],[109.540024,-63.776977,-51.767326],[87.352463,-70.663124,-40.962334],[91.991684,-66.865982,-41.885032],[84.057236,-55.575088,-33.678367],[77.206650,-39.357803,-29.686638],[72.482773,-55.645172,-36.935051],[69.516525,-65.983551,-42.396614],[66.421677,-65.972046,-44.916298],[64.508103,-69.326034,-48.962349],[87.973740,-53.350341,-33.128517],[88.991684,-62.463623,-37.744758],[65.672714,-42.235656,-41.136741],[67.569687,-23.403213,-33.031364],[68.070297,-27.644668,-32.036248],[69.492050,-14.249450,-25.075431],[69.757004,-4.861511,-21.073021],[68.696274,2.313538,-20.790641],[70.317429,5.053757,-27.621559],[70.542893,4.642716,-33.332359],[70.216477,-0.645019,-36.251945],[69.938522,-1.668625,-41.521476],[68.629624,-10.323166,-27.693946],[67.592575,-23.882461,-41.405541],[66.348496,-34.753204,-42.301597],[66.713364,-28.665542,-37.429908],[66.979172,-37.801513,-48.105233],[68.825546,-40.452621,-58.637046],[68.341782,-40.974334,-63.293907],[69.344223,-28.242065,-57.764061],[67.641708,-26.316345,-59.050605],[56.225144,-16.175613,-52.254311],[53.840622,-20.845947,-52.882958],[49.008408,-20.058975,-47.642692],[49.427353,-38.950073,-57.964562],[52.952805,-36.604934,-60.161949],[58.039230,-31.533569,-61.579048],[65.994797,-45.546814,-68.453987],[67.152207,-51.651992,-70.043144],[60.357041,-51.156646,-72.087867],[58.815842,-40.907959,-66.449760],[57.085800,-45.904312,-68.268333],[52.102280,-46.277359,-64.559150],[60.569443,-24.382324,-58.863578],[62.713913,-41.886764,-67.413765],[53.154648,-5.778473,-42.861427],[43.215439,-13.454879,-38.326408],[40.022812,-24.237671,-42.416648],[43.234604,-27.233642,-45.751197],[68.800400,-19.165054,-52.546821],[69.376999,-18.399475,-48.825477],[69.523117,-11.737716,-44.698280],[69.678391,6.611176,-38.271675],[70.742783,20.088379,-30.656562],[72.233322,22.313553,-25.406334],[68.998032,7.989685,-19.347145],[70.836716,-10.208053,-22.053933],[71.348862,11.697113,-29.021797],[69.793076,-26.606643,-53.919304],[69.625229,-31.970367,-57.896949],[67.931381,-45.485748,-55.274864],[66.307297,-58.291610,-57.149803],[68.806870,-36.758331,-53.662194],[68.422348,-51.476288,-63.372367],[67.960190,-53.382614,-68.995598],[67.827438,-38.872284,-64.037696],[65.925278,-36.990555,-64.871482],[64.242416,-23.439010,-58.636558],[57.012741,-24.888183,-57.710183],[66.468735,-60.272964,-42.886741],[64.917404,-56.920501,-45.077247],[68.612900,-49.214660,-37.608436],[72.248703,-37.756027,-31.452964],[74.801560,-22.055221,-23.708747],[71.327927,-23.612991,-26.349388],[68.863388,-34.589706,-32.958596],[67.024521,-42.500992,-37.775642],[73.176071,-10.591949,-20.177543],[64.015183,-65.046142,-51.055138],[64.599655,-54.063675,-47.858193],[65.954331,-45.367370,-48.370903],[62.713059,-80.516372,-55.094047],[97.645737,-29.854904,-27.409248],[77.421494,-51.406357,-33.591392],[75.836289,-58.428390,-36.251884],[76.698715,-11.444061,-18.739219],[79.850571,-12.228653,-18.006371],[68.391342,13.811661,-36.970558],[67.278610,21.063309,-33.740348],[62.513046,23.682877,-32.164573],[66.244858,-1.048309,-46.188240],[67.716843,-4.798416,-47.653724],[66.829941,12.331604,-38.830894],[65.220871,19.048142,-35.465156],[68.937607,-9.351318,-36.534782],[68.225327,-24.811279,-45.864402],[68.517502,-10.148513,-30.975624],[68.843674,-3.504898,-25.735389],[75.084152,0.711136,-14.293525],[70.122910,4.301697,-16.345024],[72.611984,10.064926,-11.611320],[81.375046,15.523011,-5.588470],[75.251999,8.199982,-11.039848],[74.586289,22.133072,-4.806747],[70.249741,27.664185,-12.225121],[69.747421,27.875824,-8.576179],[69.789902,35.192932,-5.459144],[71.650864,38.639862,0.263169],[72.369309,35.980210,-12.875526],[72.600876,42.782349,-8.810661],[72.521896,51.837036,-10.966087],[71.772873,36.505280,-20.211921],[70.502243,36.254288,-22.587883],[67.656357,39.186814,-23.443779],[72.139572,30.175736,-18.108848],[73.079880,44.520920,-11.206306],[68.616196,28.854294,-28.541237],[70.999863,44.153076,0.559197],[72.654587,55.107239,1.688172],[73.595139,64.435517,2.584305],[73.852951,59.472565,9.200768],[72.985703,49.598084,5.135025],[75.898483,49.210388,6.858765],[76.717148,39.373581,4.036324],[74.076279,38.892746,2.500138],[83.596909,20.958023,-1.963859],[91.384323,26.867295,5.136498],[93.602768,39.006485,11.174401],[99.661362,23.136734,2.741883],[114.799423,16.592881,-3.359733],[117.189194,10.657364,-4.854011],[118.186142,4.271836,-5.823654],[117.256821,-6.898666,-14.862144],[116.825974,-18.560775,-12.467125],[113.041489,-21.771835,-26.434623],[115.082077,-16.863006,-21.986869],[114.293381,-8.170532,-18.316673],[111.387497,3.210831,-13.400002],[108.139267,4.459580,-12.890663],[108.391159,13.573960,-6.903602],[97.878281,16.068878,-0.905624],[93.948166,11.094315,-2.702942],[90.421250,5.619477,-5.754959],[91.848923,19.583206,1.861321],[95.211777,23.477112,3.970993],[87.514267,12.952912,-3.325798],[92.685471,1.102265,-7.823310],[96.161362,7.265534,-5.604118],[110.992539,13.144760,-7.446067],[114.872360,4.393448,-10.817619],[102.020249,8.751236,-7.577964],[107.867233,-26.973205,-32.087883],[109.417221,-16.148910,-25.893455],[116.639450,-20.673446,-19.900871],[117.090012,-13.597076,-17.226738],[72.447739,56.303009,5.230950],[71.399338,69.370209,-4.696655],[63.637558,80.862213,2.557915],[61.050461,65.617218,-5.517997],[60.934677,72.920807,-0.748039],[47.441940,82.785462,15.646271],[51.563278,96.576630,23.122620],[48.345444,98.476166,24.413651],[54.304123,106.501252,28.610276],[50.960678,108.809967,30.659249],[52.988327,94.304901,21.043755],[60.693894,104.284516,22.902687],[58.299118,92.904419,15.885498],[60.747971,84.187012,6.910462],[63.705551,86.434540,6.616768],[68.998215,80.628662,0.699402],[70.921860,77.865967,-0.170662],[72.335861,73.680786,-1.219139],[73.675888,67.871216,-0.000778],[74.283066,78.538544,7.559235],[73.129257,67.928070,9.948441],[73.847092,72.360077,8.065308],[73.526169,90.977509,20.672402],[73.516464,98.005951,25.988961],[74.717514,94.983704,17.974358],[74.562851,100.011811,17.605553],[74.357102,88.026093,10.714745],[70.825974,96.898529,11.821320],[71.932419,103.507416,17.050583],[74.937546,103.700318,23.924012],[73.205734,95.439942,12.339997],[73.168503,85.203247,18.316269],[74.369980,83.552124,10.600014],[70.281967,92.209015,8.713166],[67.531296,84.662537,3.535660],[72.841904,87.215424,6.789757],[73.709519,81.884583,5.055802],[67.669052,95.138306,11.242508],[74.013901,80.244446,18.625847],[76.134506,78.074311,19.526894],[82.864487,81.513275,24.403168],[91.358078,109.553742,42.852570],[90.541550,112.427216,43.383179],[90.231674,96.391419,34.524544],[84.050949,94.205536,31.603638],[87.776108,93.866608,32.155930],[73.395126,70.028015,11.989716],[75.082138,69.608704,14.387795],[52.032089,86.582032,16.318390],[45.636276,103.221131,26.747933],[43.224960,109.373230,28.308266],[40.880051,118.313324,29.380135],[38.542099,113.723877,25.471337],[40.445480,111.413513,25.403542],[58.242539,133.705811,44.742829],[55.793442,116.445771,34.847474],[59.880051,119.525086,35.224274],[66.931870,61.783387,-10.710792],[64.666245,67.473114,-6.303146],[68.824021,71.552521,-4.609794],[70.884445,60.346375,-9.931739],[69.688950,63.044709,-9.455421],[73.024765,67.114197,-2.542640],[81.551621,25.476395,-0.997635],[107.192001,-8.112869,-20.492165],[107.131760,-1.557983,-16.254539],[114.037155,-39.974685,-34.747123],[115.245529,-38.867508,-31.560173],[115.179794,-40.562790,-28.589805],[114.090378,-33.633743,-31.685279],[115.515061,-26.444153,-26.256371],[116.433090,-25.578247,-17.647392],[116.380295,-19.218292,-9.114433],[116.984970,-7.736236,-5.537971],[116.545212,-11.595367,-2.838363],[118.201401,-0.461883,10.468026],[115.904038,-29.625213,-25.960334],[141.743759,-21.281952,-12.690179],[124.839157,-12.568374,6.586731],[125.525620,-46.670883,-14.253822],[118.019211,-63.982162,-24.707466],[117.987961,-5.803833,-10.965477],[116.213181,5.225464,4.223328],[117.990585,14.399536,-0.970382],[113.359726,49.023026,15.196503],[115.950424,48.884873,16.477806],[115.638413,62.441681,25.967392],[116.751633,59.817993,26.308190],[117.151596,51.739151,20.266350],[117.830368,43.126129,15.775246],[116.638840,39.489868,11.203850],[117.474716,30.948563,7.436531],[116.133652,22.526169,1.394738],[114.776169,35.578415,7.892029],[117.352768,54.419068,25.307717],[115.272812,36.941956,22.652787],[114.983566,55.005143,39.852860],[114.666550,63.591126,44.288788],[113.655686,61.708985,40.688515],[117.749497,58.885926,45.745102],[116.470444,69.816956,50.301751],[118.613571,71.165345,54.525948],[130.035874,57.140015,58.908226],[116.462814,-2.720520,0.004998],[115.774948,4.790894,7.837647],[123.706894,14.614228,26.265587],[122.279038,23.368790,30.376809],[123.583847,30.834839,35.633934],[126.362839,36.925614,40.840294],[131.010422,33.868317,41.109002],[127.021042,19.166519,31.148346],[145.021652,20.845475,6.543404],[149.698288,24.073639,6.910607],[152.320175,23.011582,7.720368],[152.836777,17.797852,0.301705],[136.648300,38.487412,42.476014],[139.776291,41.941315,43.133759],[138.852951,47.383698,51.780899],[133.604050,45.706070,51.336075],[126.765610,41.615372,44.403618],[123.103256,40.164673,40.470124],[143.319199,44.933533,44.282990],[133.066330,40.496628,46.245049],[111.144089,122.830536,80.468647],[99.376511,123.412262,60.940461],[104.675156,125.723542,66.458714],[103.478439,118.342835,60.794018],[102.245407,92.145417,43.546189],[106.926987,98.792145,49.717842],[111.543869,95.018830,47.963578],[103.337875,107.030548,53.357857],[108.390854,121.605103,66.248837],[98.135178,112.040497,53.253312],[98.557785,106.947296,50.725838],[99.714340,94.644287,43.806176],[97.203049,85.452057,36.895394],[93.968063,84.560456,33.825173],[92.454819,85.253144,32.415078],[90.155869,86.133942,29.233193],[81.022141,74.975678,20.337540],[80.738754,62.030274,13.942078],[76.783371,66.441437,14.122223],[76.562180,55.627625,9.595406],[90.829514,41.020142,10.988633],[107.002304,43.475785,11.665474],[105.006699,36.272599,7.883088],[105.256149,22.829254,-0.029533],[100.407883,35.097245,8.769585],[87.978500,23.421830,2.019364],[86.142502,38.352127,6.835785],[83.818466,39.683945,6.189972],[109.509384,36.028687,6.860222],[108.742233,22.645706,-0.930946],[112.946274,25.278366,1.234383],[111.663193,19.633255,-2.835029],[83.314865,49.480744,9.528435],[86.766220,59.597306,14.759568],[88.184921,62.069825,16.768052],[90.754624,63.049500,20.222115],[93.832871,62.569916,22.547768],[97.008103,75.645722,31.445435],[106.378586,72.381104,31.870964],[98.912155,66.454590,27.098046],[106.267258,54.624298,19.247971],[102.846237,49.332505,16.317521],[96.470383,36.387635,10.146927],[105.005356,59.472153,22.940728],[110.143906,54.909516,18.798623],[113.420273,62.132752,24.297791],[86.649094,65.839844,17.329399],[92.918625,75.107148,28.177460],[89.089584,73.664643,22.240151],[113.173325,88.611725,43.330727],[101.097275,83.002381,37.140396],[107.015549,80.614777,37.497651],[151.343674,15.275376,-3.392395],[148.773605,14.254364,-2.595687],[116.959458,71.596070,34.952485],[116.869309,78.243225,38.687088],[116.818833,64.861878,31.048920],[115.889023,72.807984,33.254532],[86.532150,48.755020,10.715538],[89.349899,49.586258,13.535454],[93.984665,53.358399,18.020646],[98.712204,50.890549,17.649689],[97.326584,61.212952,23.417855],[69.149887,7.921814,-17.027214],[69.138291,15.783936,-14.419395],[71.984970,20.792542,-23.261955],[46.059677,-49.076446,-60.376092],[42.305283,-38.675613,-51.110389],[40.183945,-50.095733,-55.587211],[45.914475,-11.222839,-39.357170],[38.827988,-34.732269,-47.705422],[42.916184,-48.789047,-56.906334],[45.914536,-32.528473,-51.214927],[71.687607,31.752518,-22.455284],[55.636398,15.092926,-31.838417],[49.963974,25.039505,-21.669731],[47.152023,30.475647,-16.390632],[45.881516,16.458664,-23.163308],[8.220932,-1.246444,-41.947837],[-13.477798,0.540146,-29.197944],[-14.377762,-12.535263,-34.984947],[-10.872330,-16.110336,-35.897026],[-7.120804,36.165772,-10.849723],[-12.560623,47.633042,-11.914254],[-10.596878,42.552277,-10.050743],[-15.657730,47.701401,-17.441307],[-18.075210,55.262741,-16.885887],[-15.779434,55.223236,-14.442451],[-10.283035,48.118882,-6.849480],[-12.359329,54.840927,-9.070320],[-3.094986,34.826096,-10.827293],[-26.680313,39.271836,-25.336174],[-24.749344,37.019516,-27.221367],[-27.198868,16.940415,-37.006004],[-29.724625,30.308914,-29.437553],[-29.152786,25.065613,-33.061424],[-22.443985,33.500702,-28.662239],[64.911301,31.386383,-28.533683],[33.545822,28.321228,-18.173851],[36.068100,28.103394,-16.173867],[34.660996,34.987152,-13.187873],[55.505478,64.207184,-2.372749],[59.185471,56.398392,-10.434410],[47.825363,57.437470,-0.881652],[44.937607,41.702515,-8.125770],[54.968247,54.409180,-8.223762],[55.722214,36.011887,-20.469871],[60.851059,51.872223,-14.402671],[64.621384,53.579544,-14.948769],[66.321213,47.151520,-19.612754],[48.162827,46.326691,-7.568046],[74.433823,109.335205,35.139687],[72.390671,116.542176,27.658112],[64.977524,118.673249,30.714882],[65.814926,104.101715,19.141701],[69.597214,104.300476,17.346047],[71.355332,109.861023,21.759362],[24.672470,142.190461,42.313210],[17.630112,147.487671,42.710060],[21.433640,152.286499,24.367630],[16.119248,156.511292,19.313118],[25.830307,149.766938,25.120911],[13.075302,169.598419,17.321946],[20.283737,172.381440,20.521798],[3.955979,189.075287,8.733399],[10.705002,184.778046,13.834725],[7.571701,187.108948,10.695931],[1.526169,192.192414,8.517357],[-2.918899,194.127686,14.804177],[-7.627701,207.169220,22.786599],[-10.293899,209.404267,19.583901],[-11.022598,216.885590,7.560440],[-13.340103,210.277253,9.323845],[-3.749344,208.310456,18.425827],[-7.000198,209.366547,20.938126],[-5.772293,213.736695,16.884011],[-4.975174,218.616547,12.077683],[-7.666458,214.615326,17.238053],[-8.992935,218.203003,14.536408],[-4.261063,211.847351,15.384720],[-6.344559,204.624909,22.483704],[1.418442,180.693604,16.635117],[-2.903763,176.880555,27.557984],[-5.215042,177.312683,29.927132],[-9.539078,182.266785,30.180642],[1.508164,168.343994,29.058083],[-0.544632,167.079010,32.579132],[-4.208450,159.947510,39.044037],[-0.835892,182.656678,19.428223],[-3.476089,185.332581,22.889733],[-7.334061,186.440308,26.694458],[-9.160416,190.779602,25.637757],[-8.429153,200.385742,23.564843],[-10.451553,202.365662,21.308487],[-12.988174,196.242615,18.424561],[-11.836563,202.586640,17.414620],[-11.659378,195.868378,21.931481],[-11.731399,188.279724,26.143113],[-6.327835,193.280274,22.697762],[-8.096817,196.126068,23.589631],[-5.820511,199.850403,20.461335],[-4.381058,193.400360,19.500763],[-12.241531,227.429779,1.715218],[-8.534317,225.374817,11.452271],[34.792709,251.761872,-2.331855],[36.771408,251.748658,-5.836410],[28.651962,261.624848,4.460198],[33.679001,298.022675,6.484635],[69.458664,45.780457,-19.019233],[65.517441,41.441300,-22.850808],[63.583481,41.500443,-22.298683],[59.569870,44.460160,-18.358711],[60.530869,34.019135,-25.128152],[38.746323,40.249161,-8.055061],[39.492600,31.307801,-13.455772],[-6.811172,64.927246,3.736740],[-5.768875,70.589722,6.835534],[-27.868484,89.929993,15.536660],[-27.121963,81.952637,9.473748],[-32.921280,82.936859,12.266518],[-10.067337,79.879273,0.794274],[-16.117508,77.298218,-4.059837],[36.328598,80.122498,6.285378],[38.196701,84.573914,12.919281],[37.809921,95.768677,15.683396],[40.822128,94.141602,19.894013],[39.650131,103.029877,20.991440],[37.242539,87.181702,11.122261],[45.436142,86.438416,18.047669],[34.790268,81.886994,4.915276],[35.150375,69.191101,-0.227623],[1.661911,120.582337,36.200890],[-1.154312,122.770478,33.349739],[-4.886917,126.399262,34.196083],[-7.276688,119.580139,29.446862],[-4.035293,118.431153,28.731751],[3.366318,118.471192,36.099739],[-7.314285,104.294464,18.092469],[-7.544266,97.483857,13.284737],[-5.059830,94.519318,17.867165],[-2.222793,101.051667,23.531433],[-10.746475,94.408173,8.785149],[-13.450577,77.022858,-4.061523],[-12.445511,70.558167,-6.514351],[-29.602554,16.624283,-37.521904],[-35.616348,-8.619186,-48.756492],[-50.173538,-18.487503,-45.586280],[-51.868729,-29.917846,-51.898583],[-46.363846,-21.972595,-49.179039],[-47.035599,-8.196457,-41.005790],[-34.080704,-24.455322,-59.138008],[-28.243667,-28.511902,-58.577751],[-30.643570,-42.174652,-64.635841],[-31.440689,-51.791946,-67.202873],[-32.347916,-57.905380,-69.176232],[-37.159866,-58.744232,-76.093255],[-36.154678,-53.451584,-72.984764],[-44.919937,-46.017502,-66.523872],[-32.295486,-38.740814,-65.430931],[-37.796463,-25.041763,-58.121101],[-45.663284,-34.068863,-57.715508],[-45.904434,-28.493972,-53.773002],[-41.557876,-26.064178,-56.297477],[-30.371658,-25.708557,-59.112663],[-30.936355,-74.830246,-62.861473],[-30.430191,-67.311065,-62.299308],[-25.697281,-61.203399,-53.086403],[-27.483719,-48.977737,-55.067924],[-29.862991,-48.167343,-63.719947],[-26.156937,-37.171142,-55.468132],[-25.879532,-31.573730,-55.003152],[-24.059158,-24.387161,-50.486778],[-27.050003,-12.666443,-50.617881],[-30.455398,-17.483978,-54.523368],[-24.836868,-38.381042,-51.207893],[-25.392898,-49.163543,-51.054710],[-27.639297,-56.540725,-54.758461],[-27.494461,-66.587188,-55.876075],[-29.245804,-56.284408,-59.150444],[-31.029678,-59.522934,-65.595283],[1.259018,55.055237,-0.957100],[-9.985000,11.901718,-22.425941],[1.559799,16.981339,-22.566688],[67.947495,-69.742149,-74.001075],[65.316635,-87.837051,-71.904518],[61.950119,-101.601623,-61.273826],[59.750778,-126.889267,-76.565620],[31.728562,-2.191940,-35.984214],[42.591904,100.165924,23.591530],[49.761704,70.832550,6.512848],[44.229294,72.429291,9.640931],[63.314438,94.561798,13.270264],[80.899277,86.778351,26.682885],[79.144577,100.747376,33.326607],[84.480148,102.929901,36.219994],[83.058884,110.254334,40.223595],[78.038132,117.886628,42.712563],[89.261154,108.059479,40.341278],[76.067062,91.002198,26.581841],[78.125107,85.116944,24.499871],[88.103012,78.146729,23.854180],[95.948593,96.872986,42.502770],[94.070786,99.365235,41.990654],[95.031784,106.603119,47.440346],[93.548081,110.158631,47.408486],[72.173142,123.616913,33.647629],[69.403427,123.047150,32.318703],[73.474716,127.391327,39.459786],[73.053879,131.678559,42.915635],[69.545151,135.139496,44.245881],[72.124130,140.530732,51.189606],[66.418747,142.714264,49.990784],[72.610886,144.596436,53.428902],[66.789719,146.960724,51.442383],[68.416733,146.937928,49.042298],[71.602829,152.468109,44.797043],[70.453171,147.418305,45.606530],[65.444077,148.540039,47.045624],[63.278671,149.188507,48.410797],[71.126083,128.512940,37.545800],[74.006516,124.348542,42.378670],[74.569504,128.484680,46.723549],[66.128220,155.106201,42.052674],[79.062851,179.248200,38.411530],[76.257675,148.638764,43.327736],[82.564621,147.210205,42.308846],[85.075729,140.959076,48.784500],[73.655625,165.855896,32.201889],[86.546677,156.688507,40.730820],[95.025253,163.321930,35.178078],[96.525375,162.195587,35.366799],[98.981613,169.781311,33.676354],[101.373093,173.437287,33.240738],[105.626145,178.336975,34.553414],[96.607590,176.953980,34.663613],[103.797592,182.266602,33.538819],[114.512131,195.006043,46.180924],[117.393601,197.336396,44.569382],[111.569016,203.148957,54.754013],[116.536850,198.588013,48.380165],[118.690292,255.766754,87.219410],[118.726914,265.719544,93.055502],[118.390000,264.079163,95.732075],[117.918686,257.619080,90.600027],[122.096848,240.237549,95.877209],[125.584641,240.656647,104.429621],[125.134995,245.179352,107.399942],[124.717819,247.670716,111.305046],[124.505173,258.677918,114.330452],[121.659409,277.125367,115.889924],[120.066452,281.834473,113.368832],[118.652695,281.861359,105.855117],[118.066147,291.259644,106.618808],[119.391281,300.246399,108.608738],[121.150620,304.586243,109.539791],[120.455856,273.387055,107.329034],[122.703659,267.248261,111.506182],[121.220932,258.515656,101.445759],[121.825546,264.034577,105.822346],[124.780747,254.808686,112.977838],[122.896774,248.992890,102.353861],[123.016342,262.790558,109.245255],[118.089340,290.027436,112.972405],[116.716782,297.549256,116.381582],[118.921616,291.834076,118.144153],[120.684067,292.657898,126.166674],[120.582077,295.369629,131.788062],[119.505722,288.791077,130.133251],[117.740402,296.008576,133.618201],[118.568100,301.434754,134.490854],[118.620712,297.293000,123.024899],[119.132736,302.961426,132.219620],[105.884140,313.878968,140.797234],[166.360031,352.906220,139.093026],[169.093063,345.196381,133.751562],[168.138168,353.496430,142.150774],[169.712692,352.326691,146.137604],[170.617050,352.570282,148.730730],[171.743393,344.286286,146.197985],[172.605393,333.959137,140.223156],[173.921005,329.896698,135.708626],[175.371750,325.281769,135.068871],[176.755600,328.715729,138.220480],[173.085434,334.242707,131.961357],[170.924240,343.935089,141.660546],[170.381455,345.986664,139.283097],[171.309311,340.409333,133.385918],[149.827377,308.978394,122.713167],[152.017807,300.758850,120.352315],[148.956650,287.895661,115.313478],[148.939316,275.797058,106.942859],[154.988876,290.586762,112.957893],[151.402207,277.134034,105.089486],[155.206589,288.785828,108.914673],[160.265000,303.395935,106.313139],[159.959274,300.362549,100.983920],[163.261704,301.951294,99.685435],[167.259140,311.249420,107.467556],[169.089646,311.524353,109.148897],[168.727158,301.696991,102.428458],[165.356003,298.799225,97.073197],[166.755905,279.385498,80.808678],[172.154526,301.657288,107.339945],[170.439804,315.821106,113.908143],[167.272324,318.332794,112.899228],[164.689560,317.221039,113.336930],[163.774033,311.704285,109.200676],[162.819382,308.226532,105.993630],[157.061142,294.088318,110.804737],[158.702927,299.458222,106.783605],[164.003769,315.631592,116.492735],[162.257980,309.255371,122.303453],[162.750229,313.964600,125.971733],[160.386643,318.455414,129.467631],[160.532333,302.807679,120.717439],[159.540695,299.377777,116.387058],[153.067917,290.214203,114.849968],[151.936020,294.246125,117.708607],[155.949387,297.361542,118.950894],[158.789291,304.913117,123.167879],[157.899704,297.183930,117.549898],[179.879227,288.617676,94.908789],[182.743973,298.919983,104.031987],[186.427017,295.464630,93.202248],[188.985336,300.293122,97.318795],[91.136887,122.839936,51.155709],[81.668869,129.260865,50.434266],[76.216171,128.535462,48.221688],[76.694748,137.104126,52.125931],[73.566391,136.317139,49.211968],[77.079758,143.045136,54.157608],[79.676682,141.995240,50.283562],[85.010605,140.576783,53.361603],[75.827805,144.017731,52.663353],[80.439072,143.523896,44.995163],[85.392136,138.754425,57.158234],[94.809311,139.095703,59.613522],[89.506760,140.152436,58.813134],[78.950791,140.254547,54.654740],[83.722336,140.972748,56.105194],[24.903000,115.247040,30.583863],[22.577255,119.933472,33.713166],[28.633103,112.040009,26.917611],[19.602585,104.961548,25.483513],[19.796921,97.297913,19.492020],[64.256027,156.770630,34.260521],[57.362229,163.071259,34.244896],[59.960373,165.683411,30.527344],[65.964829,160.003052,27.823517],[56.635483,153.513123,43.833008],[61.097458,153.008942,44.473061],[65.770371,156.085205,38.595017],[68.142624,158.613709,40.359703],[66.890183,168.657990,22.066071],[71.759262,170.258210,15.243805],[75.645432,175.635407,10.682770],[81.637924,180.026886,7.086533],[85.158920,184.565247,4.539093],[85.220810,181.200287,6.226128],[93.202683,189.382630,8.050278],[88.683823,184.234345,7.995552],[69.520249,176.857941,17.639550],[56.213242,175.253052,29.109787],[51.073288,168.922058,31.728508],[59.233627,171.055359,28.905152],[49.860458,168.417023,30.028809],[52.086655,177.063446,28.674263],[54.869064,183.856598,27.578743],[52.467758,190.116211,23.563660],[54.880112,189.944184,25.625008],[56.593369,196.762207,23.485299],[61.477890,185.544220,24.345284],[61.666184,178.384491,24.903344],[58.521347,178.690125,27.324913],[58.783981,190.733307,25.219857],[75.399155,171.973694,11.565323],[82.069992,187.200562,6.641701],[79.782517,195.883881,8.752823],[85.136215,207.871338,4.892037],[77.382248,216.859070,10.407120],[80.552719,223.973572,7.973557],[79.379013,233.878571,9.262764],[79.339462,244.063294,10.079354],[81.377915,247.835572,9.475441],[88.494614,251.922943,6.151329],[93.974045,269.528656,7.748444],[101.095810,272.481201,4.321740],[101.103012,262.078949,1.535469],[89.257736,243.228852,3.922753],[101.607834,323.154572,9.495484],[115.368820,306.332886,5.856530],[115.379257,314.962159,16.937699],[112.661362,318.008393,15.790413],[109.119187,320.674225,9.726906],[108.560227,331.539765,25.196831],[106.126938,338.736115,31.028077],[108.788803,338.703034,34.009545],[112.327500,331.671418,30.939331],[120.434311,352.206208,32.315224],[160.851608,327.029267,27.672219],[169.401047,338.541291,21.033776],[169.768601,341.999604,21.615685],[178.804947,334.753571,19.602005],[180.083115,338.423310,27.516465],[188.040451,336.426239,31.542138],[185.251145,337.585419,31.092842],[84.927780,143.617218,44.213807],[88.979294,141.225159,49.585099],[90.986984,144.603669,45.636040],[93.234970,152.647797,39.771447],[79.442734,160.386475,42.891793],[71.727280,165.056916,39.547219],[75.260727,169.057709,41.240197],[79.789108,175.600159,41.302658],[75.795822,164.437958,43.119439],[87.292709,172.149414,39.471321],[80.066391,180.821869,28.288758],[84.478745,188.625458,26.824982],[83.496994,182.411042,23.370499],[83.120834,175.505585,12.154145],[81.140854,184.279663,35.791146],[83.125412,185.844147,38.051468],[79.994370,182.091217,31.037072],[83.850937,189.016419,30.602265],[119.291428,223.356507,4.793785],[118.183273,245.845520,8.797448],[121.193833,247.353089,11.794594],[133.278732,239.226380,12.670075],[127.719833,230.862549,8.427666],[120.416733,229.999726,5.982872],[122.096787,216.707367,6.328774],[124.401840,223.219117,6.370598],[128.075913,221.983612,8.509354],[130.455856,220.259735,12.551484],[125.761398,217.480530,8.355790],[125.580490,217.243103,10.857712],[125.942429,240.107727,10.255013],[119.297653,240.132904,8.768364],[125.374863,247.593384,13.472916],[130.360214,242.565827,12.537239],[110.520432,235.573212,4.793724],[108.836594,240.744324,2.523468],[111.972824,232.341950,5.241761],[109.454758,229.114838,4.326920],[103.791000,226.343201,3.764946],[133.194748,223.416321,12.337868],[96.547287,240.006134,0.756874],[116.613083,255.151642,-1.093650],[121.899216,258.360352,1.949608],[118.199692,252.773163,5.906090],[-64.074112,28.707276,-16.099632],[-67.008560,21.905365,-20.375237],[-75.426773,24.074051,-14.925956],[-74.282608,23.555573,-8.846885],[-74.731705,18.185257,-4.312912],[-73.486343,24.792466,1.916336],[-70.349319,37.427079,2.326439],[-68.954117,44.888947,-2.456840],[-73.070938,25.752091,-3.454116],[-72.829056,32.923905,-9.764045],[-74.006241,27.830277,-14.541404],[-71.364090,30.920853,-13.696418],[-59.289200,34.802872,-12.974540],[-71.241714,35.359467,-10.175850],[-61.506729,15.310837,-25.250038],[-74.263260,25.368073,-16.854850],[-70.612076,17.952881,-22.204673],[-67.117569,9.913193,-28.215538],[-70.438370,-5.949127,-37.820167],[-78.404617,10.410965,-21.934410],[-76.980484,7.088105,-6.604225],[-85.503860,20.923600,9.423981],[-91.137710,31.008957,14.462197],[-85.272232,36.019806,14.486222],[-79.828567,39.830612,14.511689],[-84.211807,59.698746,24.484574],[-88.671585,64.141693,30.563866],[-85.783340,51.035157,20.449959],[-88.987869,48.929459,21.409966],[-91.895340,53.738358,26.019799],[-93.935684,43.436615,21.320420],[-100.324966,24.193589,15.880028],[-89.824966,14.998993,8.349266],[-83.574112,15.085266,6.411698],[-88.025650,1.448822,2.320229],[-88.466141,-27.653625,-10.476432],[-101.032974,-0.718292,1.571923],[-105.422317,-1.623687,2.261193],[-109.478714,-7.698288,2.864128],[-108.516739,-22.352798,-8.588096],[-104.815933,-21.783722,-8.744698],[-96.850235,-10.754104,-2.316757],[-92.095840,-23.070083,-7.515831],[-87.355240,-15.938949,-5.567703],[-89.651810,-10.508911,-2.589813],[-90.929336,0.148728,2.432770],[-94.985855,3.666169,3.816391],[-100.092789,-9.752838,-2.681800],[-94.128494,-9.956283,-1.769432],[-106.021133,-10.107925,-2.774551],[-84.040787,-1.743927,-0.404266],[-79.133499,-5.401626,-12.180779],[-79.224747,-2.611557,-15.958427],[-79.783951,-0.310180,-22.201774],[-82.930618,-9.385894,-31.541130],[-80.240311,0.300492,-27.637535],[-81.587417,-5.556488,-30.543388],[-79.621841,4.600235,-24.116035],[-77.101211,13.341828,-17.065513],[-82.656875,-13.681839,-8.112846],[-83.792068,-12.450882,-5.965744],[-81.021500,-0.663665,-1.860946],[-79.538956,-2.514892,-6.059814],[-76.698746,8.435150,-9.267341],[-79.458816,-6.218933,-10.012597],[-95.404434,53.561997,30.026352],[-101.791153,42.857483,26.469902],[-101.253921,34.501877,22.007393],[-102.838211,30.680481,20.779015],[-104.269180,35.794693,23.375573],[-98.193924,41.652314,23.871796],[-76.490677,19.147995,3.931404],[-70.656875,41.788056,9.008332],[-74.256241,28.490647,6.331177],[-67.572281,47.093857,-3.379348],[-81.402237,33.122071,12.379860],[-77.570633,30.690903,9.930642],[-53.990066,48.336258,-6.432152],[-56.019241,60.201996,0.843247],[-50.558304,54.511933,-3.615623],[-36.694473,129.711945,50.326058],[-30.617081,140.877503,58.213963],[-20.876785,143.426209,54.863739],[-22.336136,146.436768,55.197647],[-20.483047,152.284333,45.560059],[-30.489761,144.076477,49.177513],[-33.833084,145.818878,46.111359],[-41.047012,141.511628,45.172188],[-22.556534,149.050324,51.434220],[-38.242691,143.037598,45.037087],[-35.069473,142.140107,48.772423],[-34.483841,142.466980,53.872254],[-25.871292,145.797425,54.312775],[-32.438919,142.045136,57.669609],[-36.874466,138.578858,59.880364],[-76.388809,131.396210,87.372616],[-75.548050,128.527558,79.380841],[-76.979996,126.619385,80.653366],[-80.125259,122.153565,78.919743],[-112.493790,106.835297,103.183472],[-57.279678,86.319092,28.676018],[-3.613479,58.987824,1.641243],[31.066879,63.058625,-9.120720],[33.956528,63.035523,-5.351768],[30.681625,71.114624,-4.818107],[39.883164,69.632050,7.491074],[27.673508,62.507172,-10.720283],[42.278183,79.598908,13.689095],[43.156479,90.769837,19.817780],[-19.011001,-59.694915,-50.091468],[-42.072037,-35.563720,-62.774482],[-49.095108,-44.197632,-61.600181],[-38.796646,-41.034897,-67.156746],[-32.873184,-33.351638,-63.823310],[-34.459366,-45.331344,-68.505027],[-37.664810,-45.738983,-69.646737],[-34.851028,-39.588516,-66.836770],[-36.306106,-33.642288,-64.070259],[-94.061355,-112.110412,-87.242927],[-98.773453,-124.479103,-85.531914],[-96.636429,-112.557708,-76.625343],[-97.852310,-114.040588,-83.421836],[-96.281326,-103.091758,-81.706504],[-94.662308,-103.100784,-83.535393],[-92.078323,-102.929344,-83.539009],[-97.944656,-116.275848,-87.276863],[-96.504593,-114.585090,-88.437873],[-95.818680,-102.147964,-72.076454],[-94.304153,-93.234703,-63.920616],[-94.786636,-86.206520,-69.864494],[-96.014847,-97.276695,-76.748252],[-82.169021,-85.427513,-73.040870],[-86.965225,-88.263771,-78.361030],[-90.295242,-88.937828,-78.448921],[-94.995193,-92.260948,-67.078666],[-93.233414,-73.479026,-62.183494],[-92.627518,-74.602630,-57.729316],[-92.052627,-87.156662,-56.311059],[-90.392715,-89.570831,-48.968879],[-91.328018,-97.923088,-54.296334],[-90.777786,-93.502800,-47.137124],[-91.647903,-100.522621,-49.427543],[-92.221512,-87.070656,-38.092186],[-92.779739,-73.463592,-29.983482],[-97.023086,-85.938461,-33.475121],[-101.701248,-79.736648,-31.496635],[-104.240799,-74.126823,-30.306495],[-107.843948,-90.792419,-37.823234],[-105.478958,-100.570190,-40.761985],[-110.446182,-102.532737,-43.767891],[-110.604996,-112.065040,-48.002128],[-115.763687,-121.514274,-54.209983],[-119.658646,-121.393898,-55.185264],[-106.938980,-113.699073,-46.962165],[-106.663040,-127.262329,-52.781471],[-94.880325,-120.294716,-53.902565],[-102.677872,-104.949783,-41.797310],[-100.926956,-114.495453,-46.004844],[-93.375320,-117.818947,-55.616111],[-90.589859,-74.989158,-33.660026],[-89.580276,-56.761978,-24.066414],[-88.157303,-64.099243,-32.543190],[-87.469559,-63.044967,-36.852851],[-89.110245,-77.173683,-41.798378],[-87.001236,-58.821518,-33.583290],[-102.782669,-90.448517,-35.667991],[-115.826431,-90.601021,-43.020057],[-118.057571,-82.327575,-39.523979],[-120.711868,-85.400154,-38.815742],[-124.396805,-88.336265,-34.342460],[-125.350418,-84.515793,-27.548180],[-125.111954,-80.294967,-21.583671],[-122.665298,-75.589821,-29.014640],[-123.693741,-73.831543,-23.753746],[-123.928665,-69.690406,-18.770698],[-122.436661,-62.963272,-17.438728],[-123.847122,-70.298263,-8.991264],[-115.953689,-98.502937,-45.567909],[-122.133621,-99.727279,-44.404304],[-123.891067,-113.185821,-50.097161],[-118.499100,-96.514351,-45.177879],[-129.196670,-112.457771,-35.533134],[-128.265152,-105.269302,-33.905662],[-126.381973,-99.095131,-36.164360],[-126.775894,-107.059318,-42.802605],[-118.272171,-102.372093,-47.616692],[-99.216934,-62.680465,-24.382103],[-92.998306,-102.707908,-46.908761],[-96.879715,-123.077049,-52.729591],[-99.335403,-109.340088,-43.962516],[-98.500687,-98.629287,-39.294670],[-99.935684,-86.977218,-33.729546],[-94.702408,-126.732719,-73.160148],[-94.861709,-131.466461,-73.816017],[-95.472305,-111.007309,-71.809852],[-96.637100,-124.913139,-78.100517],[-94.581314,-144.723049,-78.221016],[-98.902298,-133.132572,-88.039878],[-98.830093,-132.584148,-93.644371],[-97.173965,-145.944408,-103.655998],[-96.096207,-139.020275,-101.116340],[-98.378677,-123.151657,-90.536323],[-96.300674,-120.956237,-92.031608],[-94.018875,-117.876625,-90.227684],[-93.236526,-123.988563,-94.005212],[-88.272049,-123.717621,-91.201805],[-85.937027,-121.228683,-88.950630],[28.187241,-24.648056,-65.752693],[22.603928,-63.496307,-91.791482],[22.364975,-53.361648,-85.630485],[31.629013,-84.098121,-72.150857],[32.825363,-96.584770,-74.803993],[39.922714,-93.240760,-73.546608],[38.284897,-85.576080,-70.651558],[35.202683,-85.497223,-70.574745],[36.955612,-96.271537,-73.717231],[33.865952,-100.669616,-75.742576],[30.392502,-99.135475,-78.538353],[55.759873,-144.146633,-105.534523],[52.662338,-145.131103,-104.941536],[48.080063,-146.882839,-103.411126],[36.989121,-151.441379,-100.586677],[36.901047,-142.995804,-96.214943],[64.640854,-139.078621,-102.467476],[65.916367,-132.619434,-97.375099],[66.218186,-124.146003,-93.925407],[66.012741,-123.684044,-96.372399],[65.064865,-140.909774,-97.248802],[65.816208,-130.841476,-99.594047],[64.892868,-125.176887,-99.196251],[67.583115,-85.125190,-81.580482],[67.330551,-92.129944,-79.264717],[67.768417,-79.394088,-78.525169],[31.965073,-135.569233,-115.793663],[32.455429,-134.011013,-107.310859],[26.660507,-100.558983,-111.143043],[26.498581,-106.764557,-114.251930],[35.273728,-158.923572,-125.183159],[35.085190,-168.640926,-133.031379],[3.414475,-136.138183,-110.611992],[-1.196854,-117.625396,-95.191368],[0.966721,-114.382217,-98.096122],[5.539230,-107.406562,-102.895561],[9.137070,-100.937431,-104.330497],[9.825668,-110.840820,-109.593284],[9.394943,-118.961540,-112.295036],[13.126694,-117.161438,-116.701516],[-0.169449,-106.123550,-92.232689],[25.866074,-165.859348,-148.343711],[22.280502,-170.734409,-150.592919],[22.639145,-131.096283,-129.821571],[25.447922,-135.352497,-131.988670],[27.923630,-131.616630,-127.806466],[24.698105,-128.437141,-128.258736],[78.400375,-117.689346,-59.391044],[84.407578,-64.878647,-37.467338],[59.257370,-172.375568,-113.578194],[61.646042,-172.163486,-103.057518],[59.358872,-179.124258,-101.204827],[61.713181,-176.906902,-108.126075],[60.566086,-176.399297,-113.972802],[60.416000,-184.059385,-115.138771],[62.316818,-172.982464,-110.353050],[62.544174,-165.580232,-109.535057],[63.184067,-161.557167,-100.359321],[59.908798,-168.820411,-95.883415],[62.979538,-158.778995,-106.678260],[61.414414,-160.733608,-110.118721],[9.978806,-157.821453,-133.550911],[4.653183,-161.125930,-126.597618],[0.794663,-184.762288,-133.145790],[3.460312,-182.166889,-135.982171],[3.943955,-169.988659,-130.116661],[0.272629,-146.807857,-109.875801],[-6.932510,-140.008850,-93.435661],[-15.739761,-130.049682,-77.892112],[-13.421097,-128.380188,-80.128868],[-16.669510,-120.555069,-74.174446],[-15.828140,-111.762916,-72.179283],[-16.690201,-99.582229,-67.483482],[-18.570206,-131.720977,-76.072410],[-9.293716,-135.025573,-88.370644],[-23.856583,-125.253029,-71.808937],[0.489853,-168.456569,-123.176139],[-13.195694,-155.863678,-89.108940],[-14.132950,-174.491125,-95.444801],[-15.770706,-186.962543,-97.883812],[13.138718,-97.033226,-106.871193],[7.464829,-87.777771,-94.186424],[7.623337,-76.818367,-87.865394],[4.991074,-83.429939,-87.622001],[4.424851,-92.788986,-92.568626],[0.463974,-90.850174,-84.822898],[2.810654,-126.629287,-105.847634],[5.978867,-129.703125,-112.332496],[9.794357,-126.121345,-115.649666],[6.883774,-119.771774,-109.540641],[-0.115738,-132.936035,-103.524407],[-3.667374,-129.066940,-95.089042],[-24.189773,-112.245186,-67.754417],[-29.851822,-116.851738,-68.565773],[-26.979996,-115.414360,-68.072425],[-20.934830,-110.093254,-68.635948],[18.471665,-167.514751,-147.416191],[46.481735,-184.525186,-114.713905],[49.840866,-194.880240,-118.048286],[30.123520,-179.969927,-153.400291],[-38.248611,-140.964191,-76.450889],[-40.059097,-139.670910,-79.066963],[-37.062698,-126.418037,-75.297935],[-41.150162,-138.509567,-82.774406],[-39.455826,-130.401809,-79.583656],[-48.836685,-181.715626,-107.010948],[-47.225357,-171.420667,-99.334312],[-46.716385,-162.768665,-98.841606],[-51.826553,-206.378495,-116.403741],[-57.132339,-208.775670,-121.844734],[-58.932327,-199.664552,-122.659736],[-59.653335,-210.176994,-125.348228],[-53.475967,-195.960593,-116.554879],[-69.284012,-181.287391,-131.755455],[-71.424576,-174.799667,-128.293160],[-74.317276,-184.014867,-132.196755],[-34.492020,-78.267349,-73.545936],[-41.133133,-72.604377,-82.680183],[-43.603104,-81.464050,-86.716911],[-47.153519,-97.562271,-93.461723],[-53.880020,-150.645424,-111.026513],[-57.868851,-146.722721,-114.678779],[-55.567642,-81.990493,-85.526527],[-66.125503,-90.563675,-83.231988],[-52.378921,-71.505745,-80.223396],[-52.805313,-81.718483,-86.871360],[-58.267593,-70.877922,-74.524834],[-64.746353,-125.431717,-105.187797],[-64.891800,-103.248672,-92.742576],[-74.254898,-116.544510,-92.943107],[-77.557938,-156.472084,-115.723640],[-67.799271,-165.753744,-124.750084],[-63.376602,-157.855312,-121.347588],[-60.919327,-147.409542,-117.247018],[-61.261307,-159.485893,-120.851632],[-57.657303,-156.017479,-116.028801],[-64.859878,-165.788889,-124.911567],[-66.017471,-119.244301,-100.946877],[-21.053238,-99.764145,-64.846931],[-18.201553,-85.781082,-60.494529],[-38.647171,-52.913086,-74.160743],[-84.505813,-38.624756,-51.256828],[-87.078873,-83.601341,-76.679252],[-93.778274,-83.275901,-70.962532],[-80.246597,-89.122993,-72.783699],[-33.062332,-199.771321,-89.228370],[-24.721268,-200.439270,-94.669700],[-40.365372,-228.475151,-95.313072],[-44.961563,-224.860658,-97.648506],[-40.431656,-219.161609,-91.617576],[-43.882461,-217.348865,-92.439079],[-45.370376,-205.892642,-89.668861],[-46.916214,-209.329589,-92.238670],[-54.301041,-167.017482,-113.327903],[-57.649124,-168.035795,-118.438224],[-64.658584,-200.485688,-131.329673],[-60.908218,-194.276390,-125.738121],[-68.509720,-196.628230,-135.999473],[-72.104446,-193.676599,-137.082268],[-77.122940,-192.522024,-135.733116],[-74.919693,-195.307863,-137.664878],[-69.224258,-193.764477,-135.942315],[-78.305679,-224.877390,-149.580131],[-62.270279,-164.996795,-123.049064],[-98.448929,-149.695656,-103.745125],[-96.530655,-161.134792,-112.486442],[-99.566971,-141.453548,-93.837043],[-97.668716,-131.740013,-82.926368],[-98.899185,-142.141098,-90.533607],[-95.621597,-144.851253,-83.001808],[-95.625076,-132.063640,-77.467674],[-95.657303,-156.895523,-77.111702],[-95.950333,-156.909706,-85.883004],[-97.978287,-204.903457,-101.477821],[-47.121353,-217.434524,-97.405159],[-48.053360,-214.711679,-101.037376],[-73.237503,-168.592830,-124.374596],[-83.966019,-174.808942,-123.587913],[-90.399856,-176.351890,-123.222572],[-85.016312,-183.485504,-128.014244],[-83.531631,-190.368301,-132.368507],[-80.090347,-173.727579,-123.981880],[-77.918655,-164.962522,-120.379830],[-91.007278,-168.646671,-119.864174],[-86.529129,-132.451721,-96.634193],[-90.426712,-134.019375,-100.071068],[-94.819473,-128.732940,-96.732461],[-94.740921,-134.593261,-99.844856],[-90.362503,-140.056255,-104.252327],[-96.960586,-130.567451,-96.051124],[-72.516495,-126.206253,-100.119682],[-98.608475,-142.079460,-99.333107],[-94.935928,-147.031410,-72.917381],[-96.310135,-156.052284,-71.825035],[-96.149429,-144.250774,-65.596824],[-97.645096,-114.589172,-47.406273],[-101.178055,-140.851772,-59.128212],[-103.127945,-124.513031,-51.140862],[-121.951797,-114.349083,-51.863777],[-115.901260,-107.835708,-49.288781],[-121.061966,-104.439789,-47.638970],[-124.398819,-120.808166,-53.702507],[-118.776016,-110.768867,-51.115364],[-123.269363,-139.741325,-62.815269],[-117.679031,-151.162388,-66.704963],[-115.094131,-144.267143,-63.117912],[-125.335342,-146.112392,-65.641487],[-118.435928,-135.100666,-60.329246],[-113.774917,-129.251236,-56.313164],[-110.687637,-131.502533,-55.884178],[-110.216568,-139.307487,-59.128685],[-94.411636,-69.950103,-27.353279],[-97.067520,-71.532180,-27.583397],[-99.014297,-53.463653,-20.859398],[-94.272110,-45.923568,-17.096733],[-92.121719,-29.870056,-10.534385],[-98.732437,-39.999069,-15.063255],[-102.471084,-29.438690,-11.438514],[-106.436172,-31.920318,-13.738075],[-105.363052,-44.280441,-19.505577],[-109.073074,-29.199920,-12.198448],[-110.730545,-25.540970,-8.971382],[-112.747940,-35.535080,-13.657493],[-115.525284,-40.435730,-12.641914],[-120.948257,-49.823303,-7.552253],[-120.570816,-55.649948,-14.495553],[-122.565506,-55.176834,-6.504615],[-122.379837,-50.396896,-3.485283],[-121.370743,-42.121765,0.484894],[-119.548721,-35.795578,1.882340],[-116.541214,-26.228195,3.450058],[-119.198807,-29.320175,4.996369],[-122.349991,-18.988937,7.513459],[-124.444412,-26.817917,5.673417],[-125.982132,-34.274856,4.660569],[-123.460342,-37.477264,5.087021],[-126.116287,-55.784851,3.316674],[-117.842728,-23.256637,6.541474],[-116.837967,-12.741531,10.140519],[-117.037369,-4.730941,12.164673],[-113.093887,-1.584518,13.038865],[-113.018753,1.978638,14.144402],[-108.910782,3.810318,12.900170],[-103.003128,8.850571,8.478989],[-102.541885,2.921372,3.784882],[-100.949539,11.394577,8.307244],[-98.857437,17.926331,10.931610],[-96.819229,11.832215,7.376480],[-92.855850,23.776825,12.047837],[-120.668350,-21.902862,7.916054],[-116.581314,9.025986,14.483788],[-123.177627,-47.277435,0.808075],[-113.753250,-34.644439,-11.388679],[-111.026016,-36.012100,-15.559959],[-95.999649,-32.575241,-11.414116],[-97.077164,-22.119110,-6.976310],[-99.730972,-22.958908,-7.781974],[-79.174332,11.872498,2.651749],[-78.403091,5.908188,-2.078354],[-73.349930,5.746125,-28.373893],[-133.783523,-136.046039,-12.344795],[-129.347977,-122.071678,-38.545570],[-124.766861,-134.853409,-27.485649],[-124.756058,-129.640655,-20.763740],[-125.141800,-134.262027,-20.459404],[-125.327652,-134.950226,-30.903572],[-127.514114,-117.790374,-31.571632],[-128.158707,-125.748764,-36.027839],[-126.310135,-152.441864,-23.905601],[-135.864334,-151.490879,-18.126213],[-131.263687,-209.366934,-42.208382],[-129.111954,-197.892194,-39.117607],[-150.760574,-198.645196,-48.378807],[-134.625137,-193.536352,-34.493095],[-139.841995,-190.052043,-33.481758],[-139.829605,-176.627390,-28.824287],[-142.908340,-180.121343,-32.633079],[-145.345047,-205.544205,-43.759422],[-144.091812,-219.062074,-45.839698],[-135.338882,-207.644271,-39.539528],[-139.030167,-200.331353,-36.904091],[-141.771988,-197.789209,-37.456398],[-185.433060,-208.179817,-58.099235],[-221.636185,-174.794725,-25.121254],[-217.194229,-152.285564,-24.565652],[-213.104263,-139.154350,-29.367454],[-208.783340,-129.982925,-27.202720],[-209.880508,-128.781997,-33.004249],[-202.742142,-127.411964,-18.527763],[-200.624161,-131.535209,-19.905601],[-203.581802,-134.695911,-18.840614],[-197.663956,-137.837375,-21.289681],[-191.178909,-138.605434,-15.876731],[-187.414688,-134.297992,-14.304725],[-186.704178,-137.796837,-13.735572],[-193.199173,-138.152858,-18.823707],[-187.748428,-131.172752,-18.014000],[-185.186844,-121.096489,-20.501243],[-180.702774,-118.157142,-17.804008],[-174.519546,-112.896637,-9.687812],[-171.148086,-103.610984,-16.827416],[-180.010086,-105.655281,-19.841987],[-186.478592,-116.376724,-21.019188],[-186.919998,-103.891090,-18.686851],[-188.800979,-94.613350,-18.371620],[-194.165726,-107.618004,-18.533516],[-188.585586,-111.681320,-19.797767],[-191.003921,-106.193145,-18.045677],[-187.895096,-98.553512,-17.187370],[-181.601150,-96.576835,-18.979667],[-175.759964,-98.536819,-20.401695],[-158.381119,-94.116386,-7.077537],[-154.645950,-97.114517,-2.559478],[-153.189651,-99.357437,-2.549606],[-155.328812,-94.876854,-3.467109],[-164.627273,-97.174904,-14.448616],[-161.334915,-89.493972,-16.682930],[-167.101456,-92.823555,-19.325447],[-149.999954,-116.455459,-12.238884],[-148.347305,-107.605758,-8.182319],[-163.710037,-118.536598,-10.117775],[-158.690506,-111.469673,-6.610206],[-169.126297,-116.411804,-6.714027],[-168.658951,-110.479599,-5.428321],[-174.744827,-110.976623,-15.344307],[-179.621963,-120.270050,-11.803413],[-186.846817,-142.216072,-14.895455],[-188.715408,-122.048965,-21.728233],[-191.940750,-132.353592,-21.118584],[-195.667618,-127.833854,-21.593879],[-194.963943,-132.165893,-21.961204],[-181.557083,-112.493644,-19.875343],[-175.870865,-108.412056,-17.548958],[-187.915970,-129.411941,-19.608284],[-203.206558,-143.110191,-18.907631],[-201.958633,-146.562538,-18.432731],[-205.864883,-134.627643,-18.752021],[-208.765579,-135.867920,-20.388786],[-205.177566,-127.103470,-20.851936],[-211.298477,-142.668819,-20.627967],[-214.572342,-138.484443,-33.566108],[-214.200027,-133.722412,-36.008491],[-213.086502,-120.380417,-39.053337],[-216.236587,-123.732193,-39.728600],[-215.849930,-128.496948,-39.532997],[-223.222977,-141.043735,-41.227592],[-219.343216,-136.336460,-40.040107],[-233.048843,-153.897632,-44.241524],[-234.842789,-152.569416,-43.777458],[-234.649429,-165.420389,-45.461250],[-227.401932,-165.011093,-41.155555],[-227.095535,-150.629608,-41.962120],[-223.072647,-135.704738,-40.859871],[-227.877273,-142.249328,-41.522942],[-227.974686,-137.991131,-37.845055],[-217.776749,-141.174267,-36.356056],[-217.419937,-146.703731,-32.770820],[-222.565384,-145.829158,-39.773704],[-225.660599,-158.042114,-39.566703],[-231.082107,-159.778484,-43.228279],[-212.692398,-147.002716,-20.940269],[-194.372452,-146.770313,-15.615928],[-195.850235,-142.944446,-17.143165],[-180.225723,-133.216018,-12.644432],[-173.771683,-123.100708,-8.695549],[-174.027847,-118.633163,-7.572456],[-176.468277,-117.957931,-9.097221],[-182.033401,-125.563118,-11.830284],[-180.874039,-127.905815,-11.048180],[-159.286026,-121.507301,-15.268136],[-190.672500,-166.548565,-26.915062],[-169.747391,-163.872253,-37.074211],[-166.149307,-160.530540,-35.308662],[-161.178848,-156.032306,-31.017997],[-156.322403,-142.335018,-25.091804],[-166.761063,-131.281936,-18.738838],[-172.783829,-135.267334,-16.630531],[-172.798904,-128.295562,-11.998222],[-168.674942,-121.900291,-9.826088],[-178.751358,-139.151962,-16.264244],[-185.150955,-128.440887,-14.519050],[-170.426712,-99.748275,-18.353600],[-170.111832,-104.503151,-14.298668],[-198.976211,-114.567146,-19.729241],[-200.131973,-121.213783,-18.519691],[-208.317032,-142.775932,-18.313209],[-230.557388,-147.948826,-43.035164],[-116.059036,-64.771103,-29.294929],[-112.712173,-152.375198,-65.590232],[-96.432815,-164.424465,-76.680076],[-96.871841,-173.647382,-82.227378],[-143.256607,-203.261449,-40.695518],[-144.416946,-136.360881,-13.260246],[-144.638626,-129.826873,-10.479606],[-148.434891,-124.308502,-13.306587],[-153.168533,-136.120956,-20.988227],[-154.701919,-126.548423,-19.093025],[-153.874649,-130.533348,-20.276085],[-155.879166,-122.984329,-17.277229],[-153.616104,-143.470054,-21.664314],[-147.136429,-130.879745,-12.778846],[-147.988907,-138.758087,-15.404060],[-126.599686,-73.186470,2.229164],[-132.838333,-63.938507,6.981263],[-125.007645,-112.812713,-16.055122],[-125.297378,-111.023262,-20.615273],[-125.508560,-97.125175,-19.793541],[-126.755264,-96.889511,-28.448005],[-126.165359,-90.776115,-24.711097],[-124.134781,-77.501068,-12.470269],[-123.141006,-63.783264,-12.141670],[-119.334183,-62.681488,-22.557441],[-124.807571,-97.551651,-39.400520],[-119.887039,-88.399742,-41.453422],[-125.754776,-93.237610,-30.638283],[-127.169815,-105.606117,-27.692009],[-163.236221,-103.731872,-4.002922],[-163.390762,-109.095466,-4.236496],[-158.571670,-105.717621,-3.284538],[-165.552872,-102.980163,-6.188919],[-168.005264,-104.238891,-8.768852],[-160.657669,-86.091697,-18.132531],[-156.186294,-227.903061,-66.182762],[-142.321487,-222.798721,-46.154686],[-232.464615,-188.132353,-36.755699],[-228.987625,-177.029937,-36.166908],[-233.357864,-192.596334,-42.361808],[-235.775284,-200.808994,-39.116524],[-240.513565,-207.073625,-48.708382],[-232.332229,-178.207584,-47.659767],[-228.275284,-169.433084,-41.989601],[-240.648392,-159.809784,-44.798042],[-236.013321,-149.218017,-39.208000],[-232.222183,-146.916607,-41.713157],[-238.836136,-154.916328,-42.130363],[-244.307022,-156.024814,-29.982720],[-248.348099,-162.436107,-32.351478],[-250.725296,-171.705896,-41.511802],[-246.265030,-165.245659,-42.161811],[-242.402420,-156.588276,-37.691917],[-202.016739,-119.770195,-20.736656],[-204.073196,-120.011253,-25.453880],[-199.563614,-111.013504,-23.151680],[-200.693497,-109.546035,-27.286598],[-202.663650,-105.396232,-33.846244],[-204.701309,-116.624031,-32.266334],[-202.873855,-108.096138,-33.152397],[-209.688675,-115.732956,-37.639625],[-193.644058,-80.699264,-24.162773],[-196.967178,-81.930366,-18.449333],[-196.662369,-77.569328,-13.116539],[-193.906082,-69.485786,-5.443206],[-195.135452,-65.176910,3.595078],[-197.615127,-72.366348,2.249230],[-197.207474,-75.874298,-6.855781],[-201.701797,-85.669700,-13.989494],[-213.378311,-98.209488,-9.937019],[-215.287552,-98.656311,-2.064415],[-219.267044,-92.589187,3.909790],[-221.326797,-85.528938,1.657738],[-225.910232,-85.266411,2.553986],[-224.971878,-82.377693,4.603844],[-223.101395,-80.191963,7.549271],[-223.332291,-85.862144,11.547783],[-223.000015,-101.172805,20.061226],[-213.581009,-104.065437,30.273270],[-216.681106,-112.586349,33.121651],[-213.732010,-114.098236,34.733696],[-219.998123,-124.514137,31.000946],[-217.367020,-129.606605,34.007233],[-224.445328,-121.643791,30.874962],[-220.394546,-117.587059,32.309067],[-231.141434,-117.090919,24.636887],[-233.118118,-106.965713,15.722329],[-227.963516,-104.614937,18.526429],[-221.898697,-113.415123,29.138245],[-216.959122,-101.420311,24.983857],[-241.867813,-110.166534,8.046189],[-242.314041,-110.158920,1.835190],[-244.449661,-122.031707,-2.485351],[-236.421707,-123.895523,-2.696556],[-235.949295,-118.446830,-0.312713],[-242.722671,-114.349975,-0.046234],[-237.417007,-100.892898,5.504349],[-238.420608,-102.798942,3.508614],[-233.320206,-94.749908,3.512940],[-230.584366,-91.582931,7.704193],[-229.456680,-95.976783,11.885956],[-248.636673,-123.848648,-2.568740],[-248.472244,-120.241127,0.578003],[-246.427444,-115.572944,4.529023],[-254.247574,-128.894531,3.885323],[-250.946731,-124.991104,7.281365],[-249.199051,-123.876007,9.551339],[-255.708267,-138.678856,14.234787],[-256.602188,-136.076378,9.810189],[-237.046951,-108.374977,12.823426],[-233.657181,-96.787086,7.773255],[-219.856521,-140.418583,34.167786],[-208.009476,-88.405121,-0.413124],[-200.958084,-79.273422,-0.601493],[-201.825943,-83.031425,-8.096092],[-210.604935,-89.030327,3.352509],[-202.565201,-79.964416,1.672081],[-201.284500,-73.991836,4.395813],[-204.448624,-69.415992,5.432534],[-206.517532,-78.911224,4.905129],[-207.813980,-84.050529,3.821038],[-199.233963,-69.031295,5.209443],[-188.977066,-52.768951,3.809639],[-206.558853,-91.061874,-12.289177],[-190.002212,-78.593277,-25.178947],[-193.763931,-75.359039,-17.201851],[-192.357071,-69.637840,-12.575142],[-189.677872,-60.749054,-4.867355],[-187.742081,-55.661377,-2.709877],[-179.820450,-37.394073,-1.506691],[-184.728165,-48.646881,-3.098343],[-185.348831,-52.889373,-10.549476],[-183.445572,-51.153869,-13.647529],[-183.538528,-55.290939,-17.125160],[-180.558975,-52.705215,-17.854942],[-180.510696,-62.041137,-19.997520],[-176.052322,-52.842071,-17.492485],[-180.076919,-55.538498,-19.388984],[-227.529678,-121.621544,-14.136146],[-239.880691,-163.649227,-47.136833],[-244.149551,-175.187170,-50.757804],[-244.939773,-181.008538,-52.783912],[-251.362320,-192.261178,-57.373039],[-255.827042,-191.731066,-54.606758],[-252.635635,-198.843246,-56.678246],[-246.032425,-204.908692,-54.670952],[-248.194595,-203.719909,-51.607872],[-250.702164,-198.758644,-41.926582],[-252.146866,-195.835085,-35.904427],[-257.780289,-190.055056,-30.951713],[-261.530167,-190.494163,-43.619987],[-253.046585,-197.080070,-45.257988],[-260.495682,-191.557924,-48.270469],[-256.836441,-185.887012,-48.758400],[-251.062637,-176.586040,-46.091408],[-244.745132,-167.345495,-46.363884],[-264.901565,-185.275939,-29.825080],[-255.376602,-194.025872,-40.181694],[-251.789810,-199.955693,-53.502372],[-257.875870,-193.359212,-53.029106],[-247.854324,-181.772745,-52.630653],[-257.107010,-195.142134,-51.286857],[-250.948929,-182.082409,-50.715629],[-240.532547,-172.090435,-49.345329],[-237.415604,-184.076926,-51.886848],[-234.669693,-185.544962,-50.465919],[-233.986099,-192.378280,-46.966865],[-237.546463,-198.519965,-50.860023],[-234.668838,-190.343375,-49.280616],[-255.346634,-175.578220,-39.740654],[-257.067703,-171.692838,-34.035423],[-269.056717,-175.786960,-33.730003],[-262.176529,-185.398958,-44.113441],[-264.200882,-182.112163,-39.538459],[-264.705521,-186.430723,-41.620185],[-262.021377,-187.853339,-46.261955],[-266.093704,-185.068771,-35.271293],[-239.550979,-192.102376,-54.096306],[-243.367020,-205.179442,-54.742302],[-240.092972,-202.333831,-53.472848],[-221.169632,-129.395889,-39.018304],[-218.531265,-128.317901,-40.221031],[-236.374405,-145.003540,-31.714637],[-240.039200,-149.661461,-31.293327],[-255.607193,-138.040592,-12.498161],[-257.111160,-133.171581,-4.411651],[-220.769485,-80.828796,2.072808],[-217.975418,-72.490226,5.710564],[-221.054153,-79.701324,9.986954],[-217.471084,-76.077545,11.930001],[-220.778763,-89.996345,15.753640],[-213.924515,-86.527710,19.674202],[-209.771927,-89.806167,25.329979],[-218.436539,-95.306160,20.270562],[-215.796524,-69.692154,9.460953],[-214.417251,-66.721603,7.205315],[-218.920792,-75.809562,3.437577],[-214.378433,-91.159774,4.241822],[-217.131058,-80.486778,2.566399],[-191.371719,-49.702667,32.060265],[-194.393448,-59.605819,29.158448],[-198.490494,-69.024536,27.774170],[-201.026504,-73.922363,27.405655],[-202.362747,-71.816810,24.330811],[-207.356521,-77.817802,21.569794],[-215.892715,-80.375915,15.555581],[-211.436417,-70.865196,15.503006],[-195.421951,-59.975555,31.609955],[-195.858536,-51.555557,35.831856],[-201.519607,-55.913635,38.437607],[-208.038284,-55.577194,43.925919],[-197.811661,-47.021072,59.785077],[-192.036270,-41.383331,60.394440],[-193.995926,-40.259109,62.465393],[-180.731888,-35.836960,54.837410],[-170.915298,-36.733474,46.368157],[-170.704178,-43.920379,43.453011],[-170.974258,-53.154113,35.539269],[-177.425918,-53.242050,46.753998],[-184.015823,-46.550750,50.318108],[-175.513626,-47.670578,47.181832],[-173.628738,-50.949936,43.733193],[-175.246353,-36.046966,49.436860],[-180.531387,-49.682739,47.729309],[-175.998733,-60.257171,42.367760],[-180.786270,-70.196937,45.299462],[-182.630081,-67.445892,47.405388],[-184.706192,-71.372810,47.739830],[-185.626419,-59.429825,47.117165],[-194.177872,-61.622238,49.235070],[-188.777298,-57.130462,48.313546],[-191.604263,-49.181534,55.250336],[-194.253067,-50.526748,55.763489],[-214.424026,-64.687683,48.987336],[-212.296829,-61.872360,45.546418],[-210.710770,-65.575103,41.286110],[-212.842605,-60.895416,52.142632],[-210.659866,-61.171188,53.967369],[-213.624466,-75.237266,50.131676],[-217.741043,-76.706627,47.778908],[-215.383133,-87.808510,44.107315],[-211.228409,-93.317238,42.790863],[-206.891617,-92.059776,37.223549],[-203.849747,-81.517997,28.993882],[-205.679581,-87.833717,32.340210],[-206.611465,-97.764335,35.335785],[-204.668350,-103.431930,37.215874],[-204.296768,-107.662750,35.203041],[-208.858353,-98.286552,43.105050],[-213.577957,-101.347068,49.946579],[-213.086929,-96.277786,53.226250],[-205.557205,-89.635307,50.108788],[-193.275955,-97.881736,47.611382],[-191.403580,-91.901970,47.011063],[-192.943619,-89.541610,47.446198],[-186.889480,-85.012939,46.027558],[-194.481155,-108.272834,47.970475],[-198.601578,-117.823059,50.985726],[-189.105545,-100.806770,40.652146],[-191.267532,-107.236068,43.757271],[-189.760696,-95.625267,45.420693],[-200.481888,-108.352134,52.281746],[-196.523636,-112.804992,48.935814],[-198.708328,-101.233375,50.378182],[-191.594192,-73.621284,46.523476],[-184.400101,-77.506134,46.131676],[-188.559219,-80.281822,46.489052],[-195.335586,-73.668106,46.533043],[-194.109146,-66.260330,47.624794],[-196.028152,-78.273933,46.409676],[-205.559769,-78.176330,48.565300],[-216.111526,-74.634140,50.486321],[-200.974319,-71.124931,48.701195],[-198.808975,-59.607696,52.334511],[-201.233597,-66.177643,50.179078],[-207.561783,-71.223327,50.192612],[-208.745926,-66.009720,52.181885],[-206.283340,-57.974655,55.469117],[-200.234939,-77.626136,46.980225],[-217.216507,-92.647979,50.667916],[-215.743179,-97.528305,51.235825],[-216.256851,-94.295852,47.914475],[-218.362503,-88.563644,47.315941],[-218.287796,-84.867584,49.344078],[-216.603714,-78.379409,49.985505],[-216.546707,-83.723594,49.736702],[-215.760208,-90.981941,51.126557],[-217.799881,-89.293579,50.376015],[-206.411270,-99.430175,39.452996],[-209.220657,-86.892730,38.874497],[-213.316482,-73.440063,41.316864],[-213.288406,-68.948784,42.389092],[-207.056167,-78.338951,35.858574],[-205.672745,-82.502556,33.958901],[-202.363174,-76.002792,31.580635],[-200.387771,-73.283287,30.047364],[-196.526260,-64.488708,30.004937],[-203.960586,-72.115318,34.284035],[-203.268997,-63.747986,36.499749],[-199.075027,-65.821914,32.788575],[-198.655716,-59.373321,34.729058],[-187.798416,-41.176712,57.024346],[-177.122696,-40.647110,48.756554],[-205.429275,-71.486160,21.114281],[-242.245376,-137.106025,25.902977],[-247.653641,-146.045929,30.691254],[-241.877334,-133.121692,24.637909],[-218.358353,-100.927719,1.628014],[-225.794144,-106.903274,2.234932],[-219.112381,-96.798378,4.110291],[-226.119766,-93.466812,1.617035],[-229.712479,-89.037231,5.661591],[-224.872269,-87.852783,1.312287],[-215.935379,-96.654854,2.887467],[-231.560318,-111.617164,1.689721],[-237.499588,-109.101402,0.708725],[-234.324417,-100.034866,1.700592],[-226.830582,-103.783264,3.009049],[-230.709732,-102.018127,1.542626],[-229.044205,-92.272720,1.564606],[-223.363357,-107.668457,0.600693],[-220.245132,-107.713081,-5.614791],[-213.517349,-85.788597,4.625046],[-209.495865,-78.602562,5.087632],[-215.247940,-73.827324,3.136834],[-213.618484,-67.372085,4.408722],[-197.868667,-62.059295,6.644402],[-157.326675,-36.446212,-4.164520],[-148.464065,-25.182388,-6.840400],[-147.856827,-21.156768,-12.830360],[-142.495010,-10.614578,-13.875831],[-150.816238,-29.481811,-5.329788],[-152.463638,-34.511322,-11.827736],[-150.549759,-28.807815,-16.258217],[-145.624100,-21.670395,-16.760826],[-147.184280,-21.248413,-15.955422],[-140.104263,-21.710052,-14.078697],[-142.849075,-35.629150,-12.180275],[-152.599747,-31.735336,-4.180191],[-147.001236,-21.440658,-0.366668],[-148.665604,-22.832458,0.791069],[-155.802139,-28.395462,-1.125900],[-153.111526,-28.331176,-0.973915],[-154.736526,-57.888931,-20.212532],[-148.092544,-51.957214,-15.704903],[-143.377640,-21.322036,-16.177987],[-141.167374,-13.968506,-14.671501],[-144.639053,-14.113144,-14.294731],[-142.802933,-8.424499,-12.061912],[-143.916824,-10.977325,-10.585792],[-146.006973,-17.227218,-7.803138],[-139.984756,-2.507080,-5.735359],[-141.054520,-11.859848,1.987511],[-146.007217,0.717743,10.880242],[-144.321792,7.426270,13.583390],[-151.263138,0.739884,7.133347],[-139.681961,-7.553177,7.209053],[-143.008743,-7.199249,9.875992],[-142.249649,-2.058075,12.275132],[-189.303726,-42.734604,8.889458],[-182.864761,-27.641693,12.960122],[-189.858414,-31.679565,15.066903],[-157.921341,12.392670,16.465355],[-160.844131,14.235871,32.452370],[-155.261307,13.015473,15.466721],[-152.585647,18.553101,19.119179],[-201.116714,-55.898056,5.770203],[-187.279922,-44.480682,7.056130],[-191.858169,-36.690597,41.466858],[-200.212479,-39.994201,45.685082],[-201.678360,-38.612899,49.299012],[-196.358841,-32.840057,60.133129],[-198.747940,-38.988372,61.198849],[-200.038345,-46.266311,60.493786],[-203.573685,-45.791504,58.673504],[-208.149246,-51.864898,55.247780],[-210.919754,-56.203476,51.814843],[-201.821304,-38.291961,52.375580],[-209.227737,-53.369766,48.672203],[-202.765518,-41.242019,55.391312],[-204.730545,-46.016739,47.362503],[-197.775711,-45.504577,41.265107],[-191.059036,-40.204834,39.021012],[-202.908768,-48.887207,43.276520],[-181.130508,-55.519989,47.267159],[-216.013748,-72.851402,44.988243],[-213.930496,-67.714660,51.647278],[-215.982559,-70.256210,49.503296],[-217.889603,-81.079597,45.862900],[-178.992447,-43.175522,-12.428779],[-157.844192,26.782791,43.914467],[-158.585586,32.316071,48.923333],[-167.001236,34.409912,51.926834],[-163.847854,18.929810,44.420998],[-162.948013,25.091858,46.654900],[-170.335892,24.619065,47.607796],[-173.597977,18.969208,45.880806],[-158.085525,28.498062,46.513588],[-155.544693,34.581757,48.360611],[-147.229507,57.057709,58.274762],[-152.055740,44.212113,51.772622],[-154.385086,34.037812,41.718590],[-151.181473,35.386856,33.853424],[-157.417129,24.815506,36.532479],[-153.397171,49.666992,73.741944],[-150.573013,66.792847,75.765202],[-146.018814,71.369294,81.189339],[-204.330765,-122.010872,44.482582],[-209.703812,-139.513542,39.245629],[-212.740860,-135.290344,37.003083],[-204.405472,-138.034065,38.702164],[-209.240005,-142.018791,37.119522],[-208.776749,-141.483471,31.348763],[-204.748428,-136.915451,32.992463],[-221.970962,-132.523781,32.776696],[-207.897293,-93.601928,30.324677],[-205.792374,-83.422912,26.040825],[-242.094009,-108.336387,4.052636],[-266.115799,-146.029686,0.562409],[-271.633865,-154.652858,-3.430442],[-269.031509,-153.202846,2.781929],[-265.756302,-159.072841,-27.125419],[-250.372452,-162.184810,-29.608177],[-274.557938,-170.325269,-27.410469],[-268.883011,-177.057100,-19.894204],[-267.412735,-146.850414,-3.031379],[-261.448624,-138.397308,-6.174324],[-256.213211,-149.831306,19.362679],[-263.439651,-149.366352,10.731469],[-248.650772,-155.089607,9.668106],[-258.133682,-156.569507,6.646332],[-270.830704,-157.863460,-4.554359],[-265.787430,-153.869552,8.949585],[-266.627029,-155.531776,6.416268],[-252.199722,-155.958870,13.570328],[-257.120560,-154.561363,19.268319],[-259.281448,-157.042129,12.773674],[-261.100784,-156.191295,13.977524],[-264.527115,-156.350788,6.670861],[-250.593887,-156.141292,20.674111],[-255.927383,-157.361183,18.456787],[-265.829910,-180.925085,-20.573661],[-249.676224,-199.263071,-58.970817],[-253.300796,-196.602367,-58.140236],[-272.929764,-157.812149,-8.064384],[-270.828934,-161.142227,-11.045677],[-265.519180,-168.616913,-13.722389],[-255.811478,-179.791002,-10.790596],[-250.437088,-183.829571,-8.133873],[-249.940628,-189.631856,-10.429512],[-252.299087,-185.965185,-11.924278],[-263.175430,-158.505035,-4.235206],[-260.271072,-160.454479,-5.452873],[-248.502273,-200.592757,-17.453849],[-248.415787,-200.250545,-24.936470],[-249.145035,-199.138277,-30.761741],[-247.923294,-205.534696,-22.684303],[-248.411697,-212.110244,-27.298729],[-251.304031,-213.642248,-15.447578],[-248.766128,-209.191517,-21.024513],[-249.183975,-208.419149,-15.011924],[-267.593887,-181.122238,-37.153999],[-266.912918,-182.879420,-38.184547],[-238.825760,-179.494856,-51.062980],[-248.310135,-192.409865,-57.620858],[-246.163589,-195.594384,-57.907005],[-244.881790,-200.490992,-57.645805],[-247.608780,-203.361956,-40.727181],[-245.287918,-209.733143,-38.505134],[-246.757095,-206.998133,-32.463630],[-245.325821,-207.644769,-44.527122],[-251.547256,-192.582251,-18.084999],[-253.361404,-192.698772,-28.289192],[-250.912186,-195.930145,-28.680626],[-242.619888,-175.246481,7.737847],[-242.910904,-170.621181,5.911057],[-240.360733,-164.091018,8.834984],[-236.414627,-164.795953,10.957741],[-237.204422,-170.170328,10.911934],[-239.719437,-170.501764,9.635514],[-236.099014,-171.231767,10.437317],[-230.059219,-196.952034,3.482949],[-231.005203,-203.488593,1.061486],[-234.568069,-199.824324,4.532402],[-241.157364,-208.363290,6.664505],[-242.651504,-214.782289,4.439743],[-232.843826,-186.356076,6.325882],[-224.234268,-194.542274,3.272057],[-218.100418,-192.324745,3.622345],[-224.911026,-204.110243,-0.572784],[-226.694839,-190.206993,4.873673],[-224.717789,-202.001854,12.337662],[-231.395096,-204.016135,17.156586],[-229.311233,-214.586900,11.101227],[-229.292129,-194.856456,22.247979],[-230.933121,-196.733582,27.915863],[-215.180679,-193.079439,4.020180],[-247.849625,-187.577333,-3.966880],[-248.259842,-191.762640,-4.408050],[-250.082107,-200.278703,2.297234],[-246.058365,-179.200229,-0.762848],[-249.033584,-175.215353,-3.705268],[-248.916763,-201.150822,-6.579003],[-249.179092,-207.232841,-8.091163],[-250.427627,-205.067275,2.222611],[-256.180130,-219.990085,-20.228370],[-260.407486,-225.937299,-18.223472],[-259.817154,-236.550972,-22.658393],[-250.676346,-244.092682,-31.677711],[-250.604813,-242.191185,-15.247841],[-251.112015,-245.537262,-27.488000],[-257.548721,-241.225727,-16.697975],[-258.503128,-240.252453,-21.527259],[-263.289505,-235.574012,-16.392617],[-262.232742,-237.867912,-16.967950],[-255.960403,-235.623707,-27.151664],[-258.516922,-229.512214,-22.875953],[-228.442886,-236.475166,-23.283456],[-224.470047,-233.096046,-18.890968],[-220.694229,-236.857528,-15.880867],[-218.153885,-240.581867,-10.775657],[-216.360184,-235.060653,-4.740478],[-215.081619,-228.017685,-2.033950],[-215.744644,-224.861772,-0.612991],[-219.479019,-226.149601,3.445481],[-215.762222,-215.601219,-2.110275],[-218.969375,-221.370329,-8.170524],[-218.523941,-226.564403,-9.387321],[-222.858169,-222.804918,-11.824989],[-222.490250,-227.539007,-13.860985],[-215.116959,-219.156978,-4.435814],[-216.289261,-227.416141,-6.462196],[-216.762527,-234.249767,-8.544029],[-223.980850,-219.581190,-10.143409],[-216.513504,-216.336078,-4.391029],[-217.582535,-210.589754,0.626557],[-218.450210,-210.255926,-0.960060],[-233.130386,-215.903120,15.009400],[-222.662186,-216.021574,3.299790],[-224.942032,-221.962177,6.257157],[-228.489517,-225.298805,9.836968],[-232.261795,-234.155426,14.443314],[-226.436417,-233.094227,10.691361],[-220.469253,-249.725235,17.040543],[-217.575760,-254.439075,18.467774],[-216.338272,-256.734546,18.424721],[-211.629959,-255.930607,19.703400],[-212.654678,-241.597229,18.830613],[-214.323440,-266.671302,-0.174865],[-216.297806,-253.163078,1.822075],[-218.070511,-244.337104,-5.300842],[-219.769546,-248.248649,-13.485649],[-208.496536,-260.239891,14.145478],[-215.394974,-263.740158,6.479203],[-213.083023,-265.091949,9.071534],[-210.324173,-264.970695,9.204102],[-212.416397,-261.515800,16.789688],[-213.653152,-260.964775,14.695748],[-215.258865,-258.940582,5.291474],[-214.519913,-254.797805,12.541123],[-214.091019,-256.970691,9.857758],[-216.256363,-254.793098,20.775315],[-223.025162,-242.683525,-22.882103],[-220.482437,-245.191322,-19.013588],[-221.166153,-254.569858,-22.532081],[-220.470901,-264.007187,-24.985237],[-219.611893,-266.042740,-19.748542],[-217.181229,-266.138519,-22.417884],[-214.369400,-260.425964,-34.869209],[-211.308243,-260.261367,-22.936485],[-207.710403,-256.126861,-23.107093],[-206.960464,-253.769729,-27.289177],[-218.491348,-260.337089,-39.609199],[-220.468033,-263.208053,-37.470481],[-219.635208,-265.686721,-26.813575],[-221.573074,-262.656463,-28.614174],[-222.611160,-251.744960,-25.995567],[-217.530594,-262.989944,-35.164513],[-220.396805,-256.638012,-19.054496],[-229.250625,-250.410148,-33.525306],[-234.177444,-250.811165,-36.691673],[-219.819412,-252.341724,-9.622520],[-218.232559,-251.390754,-2.766914],[-219.844620,-255.642616,-9.006721],[-216.446792,-265.962951,-4.688682],[-215.682266,-265.371704,0.739167],[-215.996841,-259.882065,-1.125305],[-216.306412,-249.280914,11.444115],[-216.705154,-243.252460,8.758568],[-220.090713,-242.860557,11.502930],[-226.451370,-243.639702,16.393799],[-216.179886,-219.579731,-1.597877],[-215.296280,-234.937046,2.794533],[-217.550857,-244.344230,0.581993],[-215.470047,-247.181015,5.583222],[-217.312942,-231.991722,4.478333],[-216.568191,-235.768646,6.027054],[-215.344253,-246.897808,7.771630],[-215.834671,-238.983879,4.303131],[-217.991226,-266.615722,-16.673195],[-214.946609,-265.643257,-8.473640],[-222.926834,-249.101818,18.948990],[-222.226395,-248.567524,20.549942],[-216.280716,-249.655712,21.586945],[-226.122513,-242.619728,19.369667],[-221.556595,-245.688358,20.557640],[-229.410110,-236.470447,18.076989],[-230.401138,-221.465967,11.212616],[-218.784866,-232.164646,16.843071],[-219.106949,-227.925941,16.305611],[-230.347916,-238.049503,15.049042],[-229.618179,-239.169368,17.177330],[-231.259781,-232.526092,17.873131],[-196.744949,-233.513530,7.586411],[-191.844864,-218.294763,-7.294075],[-196.463760,-240.759964,-1.687065],[-196.502334,-235.874134,2.800064],[-194.442276,-226.071993,4.011414],[-196.698807,-228.264641,9.427308],[-194.771622,-237.182922,-3.948112],[-191.323318,-227.948791,-16.621758],[-179.291641,-242.405906,-26.401039],[-216.733353,-198.831025,1.787255],[-217.971451,-204.572305,0.592240],[-194.805191,-209.935489,5.026314],[-192.443863,-205.665760,6.166657],[-192.942398,-212.528373,0.066529],[-195.689285,-204.682424,11.180680],[-195.925491,-217.196872,7.709008],[-196.179947,-222.726770,9.879868],[-193.894729,-218.405502,2.336724],[-191.280716,-220.526249,-12.754890],[-192.024979,-190.416765,35.527962],[-199.287308,-189.442631,33.356049],[-190.127762,-186.219645,34.609162],[-195.610916,-181.062069,28.565247],[-191.233658,-176.164892,27.083214],[-188.179642,-173.740308,29.223839],[-183.787613,-170.464540,34.953003],[-187.953079,-178.299940,31.322243],[-191.235062,-173.283142,23.584473],[-226.099441,-211.845388,27.840630],[-231.552444,-212.396352,30.549889],[-233.438370,-216.112022,27.018708],[-234.464615,-214.007705,27.830620],[-229.985306,-221.906397,19.925431],[-234.392410,-227.309118,19.052308],[-178.379104,-231.858947,-12.200554],[-178.690689,-226.907602,-5.389701],[-179.476089,-238.406212,-4.782188],[-178.874832,-242.980560,-23.238624],[-175.335892,-239.643024,10.589280],[-172.798782,-246.321697,9.379830],[-171.150467,-220.991405,21.999733],[-175.669388,-230.337867,14.437737],[-175.744522,-220.836351,18.324341],[-180.352310,-203.443657,10.196259],[-182.644546,-203.457921,7.695649],[-177.339371,-230.520870,11.587990],[-179.447830,-233.892093,0.275376],[-178.697708,-224.200323,-9.359230],[-179.115982,-223.888883,2.373711],[-146.046585,-188.408242,23.562401],[-145.352371,-204.972761,13.026650],[-142.646133,-217.297567,5.159363],[-142.505325,-223.811832,0.782914],[-144.672073,-212.208940,8.711464],[-138.903335,-217.635599,6.211998],[-138.914627,-211.415890,9.580330],[-138.517654,-224.039333,2.454758],[-141.364212,-219.047426,18.178551],[-137.979141,-214.201168,10.618950],[-138.094803,-205.313957,13.374192],[-141.978531,-206.688406,11.145104],[-139.936966,-200.330377,14.919365],[-143.227798,-196.095853,16.982582],[-136.605606,-168.178167,36.260857],[-138.659561,-165.083275,45.913613],[-140.212173,-168.540163,32.297959],[-133.860550,-152.374099,46.736435],[-137.018570,-156.513138,50.820572],[-133.810806,-150.727344,44.042069],[-130.231521,-138.392776,50.131028],[-131.831192,-145.311405,48.198800],[-135.297562,-132.471325,48.197503],[-132.690018,-140.845443,45.852723],[-131.805252,-130.827308,49.556260],[-128.880936,-129.049995,53.898377],[-131.915665,-137.014862,56.384812],[-130.008926,-132.724220,50.848275],[-132.507339,-107.919899,59.691170],[-128.342850,-99.087860,63.824635],[-125.795303,-105.894516,65.897610],[-124.839126,-97.422943,70.722760],[-125.163101,-93.860305,75.390534],[-123.102920,-81.796997,78.475182],[-124.706619,-71.006965,78.950982],[-128.938736,-67.247039,80.667393],[-132.873062,-63.661483,86.364396],[-130.638748,-49.265564,93.117401],[-121.738418,-47.654297,92.927845],[-120.403091,-53.759994,93.117424],[-124.291092,-62.921905,83.039505],[-122.097000,-67.565796,83.439034],[-122.080521,-71.689094,83.639252],[-123.670547,-82.822830,80.870636],[-128.767837,-88.685768,87.815575],[-124.778091,-83.239799,84.205262],[-127.115433,-92.943130,81.769749],[-128.703995,-104.115455,76.494290],[-124.352310,-42.032715,94.482399],[-125.685196,-51.858368,88.961380],[-122.040665,-60.133896,86.781556],[-122.952652,-52.516693,89.539444],[-124.230423,-56.597412,86.211758],[-138.741653,-54.397140,98.546744],[-141.392227,-66.777603,92.877894],[-140.849075,-57.542236,98.051096],[-137.193680,-62.485473,91.349366],[-140.135025,-78.510414,83.016594],[-133.029861,-71.342773,81.415238],[-125.214432,-78.660530,75.575348],[-123.451248,-79.960525,76.982933],[-124.749466,-86.834427,72.586644],[-123.763077,-87.665382,74.462357],[-126.191177,-90.336570,69.426911],[-125.036819,-95.462127,69.028447],[-126.086197,-100.632560,64.940358],[-128.631607,-92.034332,67.523754],[-127.176224,-83.754600,72.557980],[-133.324295,-85.290359,73.230465],[-141.606033,-103.229171,68.004799],[-131.287308,-97.880912,64.136776],[-137.230667,-113.010742,58.514973],[-138.643875,-110.370170,61.148339],[-144.107742,-112.207855,65.035454],[-145.687088,-102.816360,73.546727],[-131.323685,-89.315864,69.692253],[-128.805313,-79.687874,74.353062],[-137.301773,-82.475738,78.055172],[-143.730118,-77.511078,87.651024],[-144.568497,-70.528694,92.346663],[-127.341629,-58.902969,85.103669],[-126.489212,-107.677269,63.033913],[-129.980789,-108.131530,59.935624],[-127.559952,-106.687973,61.523915],[-126.765762,-113.176391,62.712178],[-131.230606,-121.096748,67.211357],[-134.475418,-114.822632,79.103009],[-115.985855,-27.511581,109.292884],[-116.239578,-21.399109,108.584778],[-118.141128,-13.221435,109.615996],[-115.948990,-4.672897,113.778056],[-112.738785,-2.591461,115.642548],[-114.298111,4.009476,118.746458],[-128.342239,3.874802,121.946720],[-129.240921,-1.871093,120.772599],[-126.871658,-6.720123,119.049042],[-128.367569,-13.080688,116.085181],[-125.316666,-17.748153,109.814055],[-127.789627,-16.644012,113.121576],[-122.559341,-14.992141,110.056259],[-121.932876,-6.614944,115.361302],[-122.130569,5.320862,123.316598],[-118.397659,3.949417,120.431399],[-115.016312,-7.853637,112.423081],[-116.708267,-15.678833,109.092570],[-113.879776,-11.760772,112.704893],[-106.633621,-14.436798,135.895392],[-101.515396,-13.919723,138.930863],[-108.460525,-13.456802,134.340930],[-102.020279,7.833054,141.749812],[-104.536697,6.429474,137.113168],[-101.772598,13.987580,141.123701],[-87.951187,25.235581,153.250262],[-87.637894,29.322419,154.421772],[-82.860794,38.420990,158.621231],[-76.550491,49.760819,163.463765],[-73.961746,50.640381,165.032498],[-71.206497,60.783783,166.827446],[-69.620010,69.246735,169.043255],[-74.688858,73.830445,170.874657],[-73.327835,71.925751,170.621205],[-78.644974,66.879700,168.301289],[-76.135635,60.468018,165.860939],[-80.870743,51.474945,162.614987],[-88.808914,38.412674,157.387265],[-92.976089,27.378144,151.669821],[-92.795792,33.385407,153.263583],[-92.810745,39.831772,152.068034],[-97.571182,28.425064,144.782860],[-95.682815,26.880341,149.270651],[-71.785782,43.093720,169.269387],[-72.895279,48.289612,166.523606],[-76.755142,32.636017,165.298718],[-82.383255,27.358200,158.722577],[-76.456985,43.051026,163.249997],[-68.233292,45.579514,171.495308],[-73.604019,29.875885,167.064469],[-68.732559,22.811798,168.628426],[-79.530655,26.349320,163.089913],[-74.948563,19.095032,165.372280],[-69.533584,17.865021,168.137761],[-61.912369,16.904389,171.376938],[-56.904129,9.891327,172.619400],[-103.062515,18.623688,133.558689],[-97.570877,34.368698,142.079228],[-102.470901,26.984650,133.924000],[-103.737381,36.913102,137.092769],[-97.084427,47.749100,143.323763],[-106.320999,59.703385,141.972573],[-98.698746,42.038803,140.537840],[-99.970657,46.723328,142.303851],[-103.372330,54.051316,146.170540],[-53.834793,74.273682,180.192265],[-46.987625,71.752869,181.153626],[-51.647537,61.255799,178.242157],[-48.199295,47.541306,177.098797],[-42.008499,61.663208,181.135666],[-37.810074,61.090882,182.435978],[-39.914810,75.136353,184.464722],[-35.475540,80.508942,187.077568],[-33.095840,78.539429,189.383422],[-48.099625,87.136994,183.732293],[-39.480118,83.347016,185.797379],[-35.517166,87.796753,190.108330],[-37.742691,93.146210,187.806893],[-37.093338,96.881012,190.496445],[-38.027542,101.919281,188.896309],[-42.241287,92.969239,186.043648],[-30.988357,98.587982,193.856720],[-192.051285,-230.202385,-10.535148],[-234.977066,-221.441654,23.188256],[-230.601944,-217.705965,23.469666],[-226.668899,-207.239615,36.033677],[-211.753616,-196.523359,35.467804],[-205.599319,-191.281885,34.117661],[-225.438187,-212.001669,8.171547],[-218.978653,-203.753725,6.060524],[-221.716873,-206.792598,36.053772],[-227.417313,-204.214927,35.748757],[-225.691727,-188.393801,21.776406],[-221.947647,-183.157088,20.950997],[-216.839004,-173.007951,19.962479],[-214.557022,-175.969860,16.151184],[-212.484268,-180.626035,10.933213],[-216.496048,-184.170696,15.463440],[-212.990127,-180.224731,8.797226],[-212.226028,-174.470230,12.253693],[-218.765518,-171.218734,24.470665],[-218.231705,-172.046190,29.791336],[-218.178299,-176.641397,29.912766],[-220.042129,-179.005317,29.832840],[-222.888138,-179.982007,27.346672],[-220.059097,-174.849437,28.631310],[-205.826675,-185.450582,30.795067],[-200.291946,-183.340648,29.159607],[-210.604385,-183.531797,28.456520],[-212.819534,-170.624679,31.517693],[-216.581558,-191.402068,32.493706],[-215.261063,-186.191310,29.947258],[-218.628738,-182.798395,29.843117],[-206.869644,-178.822361,25.099450],[-211.119949,-178.620868,26.836327],[-226.567154,-258.645046,-41.864326],[-218.500137,-254.073589,-43.897087],[-206.463089,-233.171127,-65.914268],[-203.743790,-233.045078,-69.989479],[-204.445145,-238.790970,-72.840950],[-202.012283,-240.360519,-72.739067],[-209.347061,-254.190399,-74.074730],[-207.877579,-253.226410,-79.156425],[-207.820694,-272.042091,-87.439552],[-202.292862,-292.706993,-80.561485],[-196.629471,-308.673393,-79.851295],[-204.232071,-294.103668,-86.621696],[-199.517044,-306.209526,-84.737541],[-193.673477,-315.022621,-78.076591],[-195.967667,-302.523216,-75.055259],[-193.438858,-302.069397,-70.653251],[-192.980972,-311.980583,-74.802925],[-193.683975,-296.497200,-67.810142],[-198.795242,-291.036819,-72.997276],[-201.387955,-290.845298,-77.361199],[-203.989456,-273.431289,-68.670616],[-207.919449,-273.910164,-78.853935],[-207.134781,-283.826133,-86.449470],[-208.320450,-274.865532,-85.259056],[-204.910232,-276.766647,-73.701698],[-203.836685,-284.016052,-77.673805],[-209.514847,-266.182022,-78.829460],[-190.801895,-323.482658,-80.821709],[-189.193436,-281.397064,-101.356301],[-189.180862,-270.310249,-89.113762],[-183.769180,-265.482277,-85.489418],[-152.269058,-268.579117,-73.067817],[-135.022110,-284.023979,-76.010200],[-134.588760,-294.320907,-83.034202],[-137.742569,-290.066444,-79.734199],[-135.797867,-272.884704,-69.222831],[-132.418289,-278.547279,-73.577919],[-208.079361,-243.002388,-69.214103],[-207.919449,-248.644001,-75.183999],[-206.468338,-243.045532,-73.604988],[-206.380569,-249.689682,-77.736886],[-204.722000,-260.410843,-84.804176],[-196.244522,-298.359482,-111.337548],[-203.830521,-288.305298,-100.953849],[-201.746170,-291.836586,-104.687005],[-201.714432,-302.850227,-108.194282],[-136.027542,-306.219017,-91.026421],[-140.973465,-307.031501,-91.683891],[-126.628067,-272.430320,-75.459663],[-195.597488,-256.583450,-78.431175],[-203.313370,-266.192337,-88.592460],[-207.849930,-260.853126,-83.921043],[-206.730728,-270.419876,-89.749260],[-177.915970,-242.629680,-71.219551],[-158.169815,-239.205448,-72.921135],[-132.432083,-258.617969,-63.676002],[-136.319717,-261.544929,-63.546928],[-181.336746,-263.346084,-84.802055],[-189.780411,-261.718071,-81.403038],[-187.998611,-257.637924,-78.261665],[-189.462723,-250.970802,-72.589317],[-179.916336,-320.318931,-43.348854],[-179.997513,-326.810638,-50.288948],[-180.296768,-337.605514,-54.628700],[-166.818497,-346.739883,-49.732063],[-162.088211,-354.327606,-55.402580],[-161.634964,-342.240112,-50.228341],[-152.599563,-337.751968,-54.914497],[-151.286453,-327.812744,-50.895012],[-146.631790,-324.910934,-51.964790],[-144.945938,-321.372360,-50.328926],[-155.270401,-343.560119,-55.795036],[-147.387833,-331.018432,-55.191902],[-143.107681,-325.136429,-52.646614],[-141.420364,-324.066528,-50.022651],[-143.941788,-331.346023,-56.497306],[-165.640762,-356.917160,-55.292915],[-156.739517,-308.606346,-36.046211],[-150.263138,-301.037346,-37.318107],[-148.684891,-291.794906,-33.358085],[-145.372879,-294.538696,-35.327293],[-142.427383,-297.863609,-36.248559],[-145.128616,-282.559440,-29.839500],[-146.732925,-270.105270,-23.140480],[-147.271255,-280.691818,-28.462669],[-143.104019,-304.155998,-34.773933],[-146.334366,-301.789528,-25.406135],[-147.765640,-298.428596,-19.336479],[-150.175369,-298.639114,-8.794822],[-148.745010,-290.894409,6.250527],[-147.880386,-284.076408,14.333001],[-148.331802,-296.442474,-2.412475],[-145.302566,-295.691971,-1.524429],[-141.287308,-292.939888,2.043145],[-113.073746,-323.954040,51.378846],[-110.800979,-325.928222,50.945992],[-113.467361,-332.533661,44.970909],[-105.717056,-325.210479,48.796173],[-108.906265,-333.946930,41.715500],[-100.066055,-326.500183,44.266404],[-96.074173,-326.151245,42.694832],[-99.598465,-317.900016,53.657242],[-109.621231,-323.288543,53.349038],[-109.528335,-315.000160,58.249985],[-114.618973,-315.852722,53.997521],[-121.902603,-315.176544,49.234230],[-123.614212,-310.714676,50.371415],[-127.443130,-301.916183,48.506134],[-121.830948,-292.066261,58.127343],[-121.054825,-285.169410,61.422367],[-123.468033,-303.971206,53.253289],[-116.767837,-295.061851,63.436390],[-118.132584,-305.633255,57.602806],[-114.757706,-329.368637,47.676621],[-108.595047,-340.660217,35.002266],[-104.805008,-333.957504,39.697640],[-97.717605,-336.646438,34.413071],[-100.599808,-341.491272,31.407395],[-99.109329,-347.222900,23.986199],[-98.918472,-357.517791,13.474038],[-94.698135,-362.676101,3.650162],[-90.453750,-364.138504,-1.498626],[-88.053482,-364.620147,-0.739669],[-86.873978,-367.858093,2.332734],[-83.363357,-374.080414,5.078530],[-73.976700,-374.704117,3.523270],[-68.296158,-384.368225,1.007035],[-61.847427,-377.224441,7.816597],[-54.949356,-368.144333,16.109597],[-57.167374,-368.519134,19.860054],[-56.010818,-365.787246,18.121186],[-60.908340,-350.052337,22.486313],[-65.150528,-346.873886,27.646340],[-69.027542,-349.165695,33.841538],[-66.256485,-354.076461,30.250115],[-68.920059,-360.545746,35.059922],[-68.042740,-373.344116,34.014344],[-68.972488,-377.422500,36.918152],[-73.371963,-373.548492,50.918175],[-74.450821,-356.623092,54.660912],[-69.926346,-346.144363,36.631562],[-73.071426,-348.534179,48.597382],[-73.962967,-335.652939,54.068879],[-69.387039,-337.163879,36.866753],[-73.783829,-332.251968,65.295041],[-61.895157,-363.578506,23.860222],[-62.503189,-375.311432,26.896477],[-59.985245,-370.177490,22.495629],[-61.908890,-386.492096,27.700638],[-58.531875,-386.260711,22.886162],[-54.544876,-386.025299,19.888894],[-56.745743,-382.829071,11.500954],[-59.716385,-387.008712,11.562844],[-52.566238,-389.264846,17.198807],[-54.093765,-392.680374,20.721802],[-57.574417,-394.914184,23.940750],[-55.521988,-378.451385,19.593804],[-52.836685,-386.616836,13.746773],[-63.375992,-379.865341,3.782654],[-62.547562,-388.590561,7.962616],[-62.332962,-400.309448,10.477875],[-61.393753,-411.095611,5.902428],[-60.605545,-407.287170,12.905693],[-60.645523,-413.677719,12.312004],[-57.554642,-416.781768,14.456231],[-52.886063,-407.154571,13.350243],[-48.905777,-409.918121,16.871048],[-49.124344,-414.446762,15.265282],[-47.151321,-417.232483,17.988465],[-44.521622,-431.317962,19.049797],[-44.754654,-426.842971,20.841927],[-46.876968,-420.614547,21.550019],[-48.389053,-412.891327,20.115570],[-46.012894,-429.137726,25.185837],[-51.791214,-415.091797,14.348351],[-48.591873,-424.762359,15.960495],[-46.664871,-431.206665,17.313027],[-46.086929,-424.852112,17.485398],[-52.357925,-400.675522,13.243851],[-54.918533,-394.433044,12.410859],[-52.560379,-393.842514,13.280182],[-57.067215,-411.339904,13.910805],[-87.951736,-380.059631,5.074036],[-77.676163,-382.141784,3.457833],[-88.779678,-385.521469,5.940232],[-92.702225,-349.350189,15.986649],[-89.696426,-356.077209,6.627770],[-81.690384,-354.277878,8.454003],[-77.980179,-359.847351,7.202294],[-64.751541,-372.978195,4.020935],[-70.420914,-363.167694,5.751999],[-76.326248,-369.491775,4.769547],[-83.000320,-360.861755,5.660904],[-86.419815,-355.125320,6.165886],[-66.143936,-376.699966,2.735451],[-69.329239,-371.159317,3.763352],[-114.014603,-293.294548,67.772980],[-119.061844,-287.335716,63.378994],[-111.458389,-278.327057,81.299534],[-178.767166,-356.490677,-60.350456],[-175.924698,-342.966705,-68.860985],[-177.027603,-385.369018,-80.326057],[-175.954971,-394.721115,-87.716363],[-146.924148,-428.212692,-113.498223],[-150.055252,-413.718200,-107.884864],[-154.098770,-420.879898,-108.926796],[-203.605484,-304.080978,-100.448997],[-203.937393,-300.406471,-101.732658],[-201.695511,-312.848221,-101.507972],[-200.371963,-313.123909,-95.322593],[-197.771927,-325.212387,-111.796226],[-201.144668,-314.631233,-106.977455],[-198.714188,-320.761589,-112.870750],[-194.497696,-316.988472,-120.391197],[-188.964493,-303.579849,-116.151803],[-186.274917,-331.786941,-129.233986],[-172.983292,-321.736213,-115.940803],[-174.714981,-336.699203,-124.044243],[-171.849014,-333.488540,-119.686928],[-169.365677,-339.993881,-120.444008],[-180.681045,-328.713562,-126.279701],[-188.228348,-333.524887,-129.536294],[-183.856033,-336.664245,-130.160134],[-178.948624,-274.741226,-40.768822],[-181.138321,-276.916015,-47.828804],[-182.258011,-262.519294,-42.490211],[-184.158157,-269.317299,-50.349998],[-179.606094,-256.683601,-32.315467],[-181.016800,-268.015083,-43.606544],[-180.905350,-256.176407,-36.253502],[-180.033035,-249.711105,-31.647026],[-179.242142,-260.270889,-29.095360],[-180.345535,-260.452400,-16.421058],[-180.303238,-259.902290,-22.525673],[-175.207229,-252.533443,4.463402],[-146.598831,-258.143718,-17.149482],[-140.257339,-265.206558,-22.881981],[-142.316238,-256.401130,-18.868493],[-140.097244,-273.027740,-25.268791],[-143.103226,-274.809471,-26.811210],[-148.560684,-268.457969,-20.284935],[-144.586197,-262.286300,-21.143669],[-144.076126,-251.483268,-15.891380],[-145.884781,-250.571850,-13.581825],[-140.305740,-249.696781,-15.188072],[-140.781265,-245.442630,-13.004661],[-143.943252,-241.459659,-10.115211],[-139.450943,-257.394336,-18.493446],[-136.358902,-246.998260,-9.923835],[-136.655350,-252.001186,-3.616119],[-141.867264,-261.357582,5.907814],[-144.256546,-269.939850,0.990395],[-138.120804,-265.399009,-3.052024],[-137.134109,-261.290085,-5.221206],[-136.772964,-257.493213,-0.657554],[-136.818008,-252.759605,5.630822],[-137.733047,-243.630264,18.677475],[-136.554459,-242.124611,10.573494],[-144.699539,-240.122532,29.572197],[-146.493057,-239.475376,33.442604],[-145.914444,-240.263538,38.908402],[-146.950577,-259.032173,29.045723],[-142.575149,-247.065895,39.831711],[-121.110794,-243.734977,78.568856],[-122.713455,-254.104263,79.136078],[-125.897598,-243.379081,68.514225],[-126.786880,-250.118011,69.052510],[-129.584000,-255.314743,65.597889],[-135.400406,-240.011459,50.749421],[-140.858658,-230.352775,49.445801],[-143.667801,-235.051510,44.010353],[-137.702164,-222.025991,45.056679],[-130.520096,-216.582355,44.943589],[-127.161270,-209.356334,44.795754],[-126.203445,-203.451875,43.125168],[-135.345291,-235.013061,52.868134],[-140.185196,-239.811104,45.277855],[-145.027237,-233.320293,40.685883],[-141.526565,-250.830318,40.919373],[-135.057510,-245.658149,51.123680],[-134.134659,-250.632095,53.855484],[-139.428299,-255.742016,45.286881],[-136.922562,-259.023655,50.663185],[-139.720840,-265.544815,45.633217],[-141.839798,-275.366546,36.879860],[-140.341080,-268.430771,43.837685],[-143.219070,-265.344429,37.628525],[-145.284866,-254.426471,33.244492],[-134.188125,-260.319961,56.864952],[-135.892898,-263.924949,53.959336],[-136.141312,-245.317581,12.285263],[-135.778030,-237.149444,14.934845],[-133.867752,-233.599521,18.445671],[-131.860489,-224.201917,36.040429],[-129.461929,-218.535370,38.351235],[-128.137894,-213.673441,43.681382],[-129.016739,-199.444935,39.846856],[-127.203689,-205.908403,37.868088],[-134.094742,-228.752937,20.808388],[-131.805679,-227.888866,22.645722],[-134.471146,-238.598190,17.714928],[-131.891434,-231.486465,23.802803],[-133.234207,-232.928806,26.120957],[-169.483658,-357.930862,-55.275993],[-149.618667,-312.961494,-44.298332],[-150.581924,-370.931488,-80.435310],[-142.523025,-374.981125,-85.497231],[-152.266189,-377.933456,-86.052299],[-140.441788,-348.416061,-68.282402],[-143.766067,-350.539200,-68.477882],[-134.984695,-340.910339,-60.937400],[-131.766800,-346.797043,-56.170387],[-132.282181,-338.731353,-51.773445],[-133.483719,-342.036422,-51.031135],[-135.016983,-334.089111,-52.514671],[-132.635879,-391.363220,-89.740013],[-133.681473,-397.604873,-94.616401],[-134.205093,-404.061859,-100.478065],[-133.840469,-383.480301,-87.725532],[-135.828201,-380.440200,-88.555214],[-164.498611,-375.740173,-72.489587],[-144.056961,-387.478607,-94.149284],[-143.463150,-309.988998,-43.018822],[-147.032608,-305.044296,-40.739418],[-146.016250,-311.928009,-44.606666],[-152.296402,-309.615501,-40.534523],[-161.929764,-322.277107,-39.512138],[-175.643753,-303.798690,-22.769096],[-173.531875,-307.888160,-24.494590],[-169.957107,-310.398277,-26.262642],[-169.734756,-306.675377,-24.284309],[-138.969192,-355.926162,-73.916908],[-146.502457,-354.623230,-43.887687],[-145.282120,-364.414398,-52.947868],[-148.707291,-376.858596,-53.904152],[-148.714249,-381.047790,-27.233238],[-146.557022,-378.246826,-19.135017],[-148.269913,-369.002060,-19.672753],[-144.744217,-369.302307,-9.616447],[-142.709305,-377.938125,-9.942070],[-138.927933,-369.808746,1.299439],[-138.124344,-372.159195,-0.175239],[-126.569778,-365.878387,9.594292],[-125.050796,-376.595001,1.978737],[-120.840408,-367.048706,10.636628],[-118.062027,-370.403076,8.042809],[-119.447098,-381.985107,-2.103691],[-119.209854,-388.571838,-7.557945],[-116.650040,-396.387542,-15.700126],[-112.368118,-414.610656,-35.028236],[-110.629043,-406.884399,-30.157951],[-125.987259,-415.961029,-33.357170],[-133.033768,-415.775253,-33.711479],[-132.421036,-409.175811,-28.000146],[-141.432205,-406.866211,-33.667183],[-144.504898,-398.052932,-32.361808],[-150.205032,-397.968719,-40.324272],[-150.734756,-396.428634,-41.113000],[-121.860977,-412.508087,-30.102134],[-127.437759,-406.119705,-23.950570],[-121.954605,-399.579498,-17.699913],[-125.687210,-401.299713,-19.545693],[-127.306900,-384.498291,-5.594528],[-122.627396,-382.788818,-2.958282],[-130.136490,-376.865051,-0.917175],[-132.149673,-371.852569,1.804711],[-125.130386,-390.280945,-9.496467],[-136.573318,-412.819900,-33.099815],[-133.139114,-402.062439,-22.804192],[-137.919388,-405.095291,-28.471672],[-114.788711,-374.401458,4.129387],[-150.085892,-373.852462,-31.199806],[-111.279434,-354.441574,22.304085],[-114.908707,-341.958358,34.763832],[-130.214615,-354.301239,20.681298],[-138.596817,-351.488403,10.310097],[-140.404678,-360.250854,5.008431],[-146.127518,-343.357834,1.854882],[-147.326675,-335.627655,3.447976],[-135.555557,-364.145889,9.135178],[-148.527969,-393.955261,-67.207206],[-150.536575,-394.425049,-57.156883],[-148.727432,-411.352829,-79.777794],[-152.250076,-415.648483,-77.033607],[-152.380813,-421.991256,-83.210243],[-150.589065,-421.922271,-85.876640],[-151.641128,-426.884567,-88.714256],[-152.549454,-425.631988,-84.324653],[-131.248794,-357.701858,-62.644661],[-131.354019,-363.590255,-66.476158],[-136.078567,-405.344619,-89.656929],[-140.326126,-402.960754,-84.721641],[-139.680923,-414.894363,-92.952980],[-132.988968,-395.566833,-89.113273],[-168.104996,-398.028244,-87.044334],[-166.714126,-391.582046,-83.782203],[-139.342605,-421.695633,-97.884269],[-135.888321,-414.994812,-97.089378],[-133.366043,-402.599151,-95.204078],[-150.992508,-401.586425,-47.075630],[-150.509537,-409.733368,-53.459861],[-178.194534,-367.313705,-69.184150],[-178.902481,-367.796432,-66.418937],[-174.971512,-316.050857,-29.616066],[-132.832352,-330.449615,-45.864373],[-145.818130,-339.090973,-60.686851],[-142.832474,-311.141914,-40.702416],[-140.074234,-290.067192,-31.142144],[-140.326187,-232.129791,9.002526],[-137.847244,-226.845384,6.245659],[-141.814651,-160.949833,35.702088],[-163.199722,-172.105325,47.217560],[-168.053543,-174.433664,44.026635],[-173.829910,-153.697281,40.613976],[-177.851028,-154.812786,37.460366],[-185.456314,-150.172455,30.560311],[-175.938309,-161.648658,40.182076],[-172.057144,-160.110466,40.919098],[-187.173172,-150.626949,26.609154],[-191.007645,-151.368385,24.637886],[-192.549026,-141.612045,24.453209],[-193.694290,-147.997463,25.080307],[-199.177811,-139.131809,28.006966],[-200.249954,-147.037643,28.853676],[-202.545486,-135.652664,27.503868],[-202.618545,-132.955944,29.483292],[-200.298904,-128.246292,27.049523],[-197.092544,-122.607658,23.471657],[-197.209854,-125.149215,23.209671],[-193.578812,-121.565803,20.903519],[-193.423294,-115.170677,18.454247],[-190.186783,-109.896064,16.188195],[-188.687149,-104.718704,14.503739],[-190.918411,-106.694771,16.112938],[-188.392044,-97.291938,14.758576],[-185.989517,-93.036445,12.714013],[-178.957352,-93.427635,20.531769],[-187.267288,-98.561500,12.901665],[-183.080704,-94.587600,14.282174],[-184.853958,-110.425987,17.290627],[-183.576980,-113.416183,21.833146],[-180.520462,-101.061195,21.650490],[-181.603165,-95.963112,17.032418],[-184.833938,-94.276458,12.358887],[-185.765091,-103.031151,14.230538],[-172.470962,-146.936908,41.570427],[-157.502273,-184.961142,35.729157],[-194.548294,-160.541511,23.487992],[-181.878555,-181.053444,38.153489],[-186.935928,-181.270362,35.750809],[-148.802627,-78.472557,88.682190],[-148.490066,-70.722747,92.497496],[-151.619278,-73.987823,90.060074],[-165.206497,-142.895061,58.022835],[-158.968338,-123.505562,68.753353],[-165.737015,-109.119232,54.712639],[-164.826370,-96.373047,42.712357],[-164.330459,-90.388160,36.283493],[-166.486343,-100.343368,37.627205],[-164.625198,-88.689727,31.917847],[-166.612869,-91.129242,29.800179],[-167.521744,-101.189987,34.818985],[-168.682388,-109.349617,37.103928],[-167.970413,-112.445068,43.235772],[-182.408646,-138.456745,31.017823],[-178.367935,-85.367309,24.568642],[-183.208389,-90.307411,22.783623],[-186.473343,-93.851333,21.400093],[-183.952164,-88.744751,28.875977],[-187.259720,-94.722534,29.344902],[-187.971878,-96.608658,33.462395],[-188.848526,-99.051597,27.180123],[-190.979813,-105.112884,23.672379],[-193.720596,-112.387306,19.903222],[-193.503189,-114.377105,33.936669],[-196.769668,-121.236656,24.966149],[-197.217178,-123.315094,41.579049],[-178.070328,-89.240173,22.246254],[-183.488907,-92.116874,18.692894],[-185.416336,-89.319450,36.374573],[-183.013565,-85.272316,34.116394],[-177.872452,-80.966682,28.556862],[-180.847183,-112.424415,26.380211],[-190.622146,-103.693428,19.564034],[-194.305435,-117.196647,39.278534],[-192.099075,-110.556419,36.644730],[-195.076858,-118.968757,42.754219],[-197.240616,-122.493271,29.436287],[-199.946915,-128.999466,39.247925],[-201.493057,-130.506576,46.728287],[-203.538589,-129.789123,46.312615],[-206.411453,-125.462532,39.324623],[-204.748062,-122.839889,41.726227],[-203.625137,-125.711609,48.516510],[-204.675918,-110.547119,54.759278],[-209.940201,-104.130813,55.568413],[-206.259476,-97.372986,53.170830],[-210.882767,-108.659912,52.924469],[-207.803116,-112.440765,54.651574],[-144.210892,-37.457901,102.138892],[-140.778152,-24.551040,105.407282],[-138.660354,-21.587051,108.641946],[-147.506424,-45.293701,96.544173],[-143.102798,-29.281219,100.939518],[-145.580093,-34.225586,91.928587],[-148.927994,-45.590011,82.410244],[-144.929459,-30.767975,86.518856],[-141.572403,-20.707901,94.484841],[-138.374161,-8.719452,93.304037],[-134.108780,3.215821,92.133145],[-143.721512,-29.293182,96.944218],[-140.842117,-18.188614,100.246395],[-139.153580,-11.954727,102.520825],[-137.827652,-7.362793,107.989776],[-133.174148,10.978043,111.879872],[-136.354690,-0.645599,107.089415],[-131.570206,10.296906,96.173167],[-129.623855,16.606720,93.251433],[-134.957413,1.020844,97.435196],[-134.959976,1.799958,104.327141],[-138.092117,-9.033996,98.220284],[-140.590042,-19.074127,103.513541],[-150.915359,-52.544738,80.778523],[-150.946060,-53.968292,87.574654],[-147.767044,-41.666320,88.353226],[-148.933121,-47.631958,92.636105],[-153.704178,-63.517990,78.647698],[-125.340042,3.179932,123.323654],[-130.043960,-8.016357,118.834575],[-132.195206,2.803437,116.343790],[-133.875259,-8.174621,115.579016],[-136.209061,-4.004623,110.863516],[-131.159744,12.896210,107.424176],[-131.089249,15.192124,116.209951],[-127.966568,13.205231,121.145503],[-127.233536,17.741516,121.052254],[-124.823929,12.353546,125.866840],[-122.794815,30.167115,124.508919],[-117.232681,36.484177,132.300446],[-118.393814,19.697037,130.907098],[-122.201858,16.279129,128.940702],[-121.558060,11.728852,126.660218],[-119.975052,20.634171,131.186495],[-123.225967,20.669586,127.541804],[-130.514297,18.780854,114.419355],[-128.886429,21.732910,118.302884],[-125.297562,31.084626,120.922413],[-120.299087,41.893891,116.668385],[-125.026993,32.709198,118.824649],[-122.197830,39.103089,123.300442],[-119.073074,40.627259,127.469974],[-118.375259,48.953202,126.129478],[-114.026199,55.777161,130.986575],[-114.168838,50.292542,132.652887],[-108.755997,55.982971,139.319001],[-109.653580,68.556641,132.929396],[-117.853287,50.484299,123.569977],[-116.338699,50.796509,118.399231],[-121.179581,43.149384,121.947272],[-109.986404,68.370636,129.307042],[-109.151260,62.024567,112.455617],[-112.980057,56.597534,115.709439],[-114.599380,50.845291,110.564861],[-108.224991,62.829438,109.409878],[-114.128250,58.835755,128.368604],[-108.089432,51.840668,143.633368],[-106.699295,46.139435,142.631161],[-160.552078,-90.142296,69.837094],[-160.870743,-95.451996,71.320397],[-113.272598,59.144287,123.635139],[-119.864822,41.090485,108.490717],[-116.783829,44.218140,105.756730],[-123.408584,31.607392,101.242960],[-125.821243,27.287461,101.081787],[-125.748489,27.101166,106.363628],[-123.173843,34.138398,112.763285],[-127.337723,24.347702,112.267042],[-127.670608,21.133057,102.295645],[-118.255569,45.740204,114.917826],[-134.067459,-109.954757,83.052506],[-135.861099,-124.131897,82.332463],[-133.738052,-111.431305,86.461060],[-138.934402,-94.229591,71.556836],[-133.814285,-96.878280,65.839386],[-140.590225,-88.070488,77.228756],[-160.168899,-77.194954,49.521782],[-158.910782,-75.550216,55.479340],[-156.784927,-64.962829,57.042153],[-154.906387,-57.735428,59.447632],[-154.867691,-61.284317,66.362839],[-155.875320,-65.343002,64.964814],[-154.605362,-51.652679,54.114014],[-161.284988,-88.973106,63.336689],[-159.796219,-69.902939,46.449433],[-161.606155,-79.028999,39.746514],[-149.215835,-49.000839,43.221497],[-144.704300,-47.985061,33.877358],[-147.359207,-53.727981,25.639542],[-146.550064,-50.719879,24.340256],[-154.945694,-54.682617,18.962380],[-150.121719,-47.904419,21.104905],[-160.267227,-47.696212,18.926415],[-156.891617,-42.802322,19.237816],[-141.578201,-38.924225,28.588898],[-142.283401,-43.470688,30.304909],[-157.582962,-39.435791,21.721901],[-153.219314,-40.574020,21.281838],[-147.287979,-27.831848,29.494675],[-145.257278,-19.726562,32.903321],[-135.511612,-20.947738,39.371483],[-137.690445,-29.933120,49.543305],[-134.302933,-19.129104,58.359364],[-143.983841,-33.608032,28.701355],[-144.335647,-38.926086,26.186959],[-140.009659,-36.364792,32.552979],[-140.379776,-37.838455,37.152649],[-136.761307,-28.302932,37.332672],[-139.499527,-33.372909,31.240418],[-138.211929,-26.802490,34.041024],[-137.335159,-28.322021,45.069847],[-140.809769,-35.172653,48.312256],[-142.359939,-40.329590,42.839730],[-147.577103,-42.342712,48.786812],[-150.140030,-40.472274,53.581818],[-152.228531,-42.308532,56.553467],[-145.340469,-27.737198,62.417420],[-142.662613,-20.131576,66.749726],[-138.562515,-18.353698,64.164482],[-139.645706,-26.400436,57.320763],[-133.993057,-11.230087,66.807766],[-152.827835,-49.292007,48.143601],[-147.692459,-34.142257,57.646195],[-142.763382,-34.162430,52.526444],[-161.492935,-54.311233,17.126236],[-159.993301,-57.651321,16.285683],[-143.870254,-44.132141,39.712365],[-144.046890,-20.886200,70.010983],[-172.542984,-77.457962,22.293045],[-164.049637,-64.158874,15.904366],[-156.914932,-60.837722,19.334885],[-150.034988,-56.045593,23.213295],[-154.086258,-61.341263,23.340271],[-150.293472,-59.231277,26.267571],[-149.975479,-55.325363,35.274369],[-154.002701,-63.320297,33.785164],[-153.882339,-63.659271,31.674675],[-148.894058,-51.240905,22.237130],[-143.495743,-42.706375,25.442032],[-143.375625,-45.550064,27.133461],[-163.321426,-21.921982,45.920731],[-168.794693,-20.796646,49.320725],[-171.164871,-30.012527,48.324517],[-150.505691,-30.742126,27.440712],[-147.663284,-17.451980,33.836068],[-148.681473,-11.961013,36.755944],[-144.269852,-6.986068,38.249138],[-196.787125,-40.108032,62.654385],[-188.278946,-13.825622,56.934174],[-187.493912,-19.119507,61.363118],[-186.416580,-12.298538,58.518814],[-191.694168,-25.748138,61.656868],[-193.144363,-32.740188,63.373539],[-197.108169,-29.883270,54.837799],[-195.398270,-25.134689,50.806977],[-195.420120,-27.275512,47.560181],[-196.506119,-34.712036,45.065758],[-188.080032,-28.325439,42.142601],[-193.083633,-29.388809,44.625565],[-189.612564,-16.865829,45.773758],[-185.320694,-35.087066,60.622815],[-189.259231,-33.634353,63.641384],[-179.218338,-13.801300,62.575737],[-179.651382,-60.078827,46.865822],[-215.175552,-80.717331,42.488228],[-203.873917,-115.057876,38.419480],[-204.012039,-108.314521,40.358231],[-204.596451,-115.245926,45.708054],[-205.966812,-118.318092,51.462510],[-203.831680,-105.682251,53.983925],[-209.265457,-103.025688,33.741433],[-207.460709,-102.247978,34.874115],[-211.518997,-109.594566,35.222710],[-199.977676,-130.521400,25.893029],[-204.002273,-84.998565,48.741852],[-196.391739,-92.975410,48.246498],[-194.173477,-166.865953,21.604309],[-185.605728,-189.749543,34.944085],[-213.326614,-165.607414,17.738007],[-212.610000,-170.666374,11.983422],[-234.460159,-154.681602,12.737801],[-239.075149,-158.867050,10.500626],[-251.471817,-161.610229,-1.324714],[-213.000931,-185.687289,9.509606],[-220.225906,-175.257642,8.254738],[-244.850967,-161.569912,5.548508],[-245.760330,-172.426235,0.633576],[-165.605057,-6.315719,59.051365],[-159.524856,-0.921402,55.689270],[-139.305862,19.406937,55.309540],[-136.027298,11.636765,47.850281],[-125.979446,3.196411,56.913338],[-120.299637,16.997956,75.194241],[-126.081497,1.142350,63.119919],[-123.834732,11.650345,61.500897],[-123.001175,8.223221,70.109208],[-125.644546,0.662110,66.323445],[-129.104385,-7.718719,63.338684],[-134.221268,-23.163345,51.066140],[-117.850906,26.669648,79.742340],[-121.263565,19.598175,72.864823],[-118.832901,28.472458,75.796715],[-121.230789,24.973862,66.474171],[-135.599258,27.812821,60.926228],[-129.090652,25.090119,57.243958],[-131.088333,36.145523,66.854882],[-126.857498,36.896866,66.102280],[-121.222793,41.269669,70.887158],[-121.957718,45.491791,72.556992],[-118.283951,46.359604,75.786412],[-116.393143,48.152405,79.215336],[-118.842667,38.316803,73.163590],[-116.720535,37.327744,79.618691],[-114.960647,37.320374,83.665772],[-116.698318,52.679001,79.633881],[-120.055313,31.553788,69.663670],[-122.956863,33.200028,65.944401],[-123.012344,49.501450,74.901642],[-127.890396,39.910294,68.519013],[-137.774795,35.348404,70.789685],[-129.982620,41.235077,71.184109],[-127.418533,47.058167,75.516083],[-142.376297,44.299942,78.677388],[-143.811722,45.912812,77.807495],[-134.589493,52.563324,84.074528],[-134.509781,44.496781,79.146927],[-147.499405,45.527191,74.538296],[-126.771805,31.910660,62.740956],[-138.494827,38.802155,75.185776],[-141.415298,41.653870,78.010392],[-149.109878,36.145813,73.997815],[-150.449539,61.073578,84.955758],[-98.000137,94.188080,138.822739],[-97.363907,91.907776,131.090110],[-94.824356,97.711029,129.757763],[-92.164627,104.317017,134.125452],[-96.862381,94.299378,143.278056],[-101.717056,88.354340,108.684409],[-99.580643,92.743195,113.593049],[-97.082779,93.775452,122.299003],[-95.432022,99.556366,122.769223],[-128.320145,24.733490,116.883723],[-110.900528,16.170517,125.299758],[-107.700943,49.297791,143.705073],[-107.798172,35.531769,136.740790],[-112.433792,41.182144,139.939976],[-113.031326,45.681717,136.302579],[-117.497696,29.827591,133.691924],[-114.992386,34.024308,136.697613],[-116.450394,27.251053,133.890692],[-112.531326,34.109558,137.469468],[-109.655960,23.741761,129.359070],[-111.892227,38.716507,139.642008],[-112.685135,27.540573,132.851739],[-116.478470,13.362351,125.292761],[-111.675064,8.250397,120.883892],[-109.548416,7.894059,121.921006],[-99.201675,16.710999,145.506554],[-115.029434,-31.074493,125.916936],[-127.177017,-82.814911,104.360995],[-122.279983,-101.365364,102.962466],[-118.370315,-97.193695,109.959917],[-104.813125,-75.425491,136.118487],[-106.515091,-86.532478,132.736962],[-109.113357,-81.772270,127.723731],[-108.881607,-71.399925,128.743301],[-106.724563,-64.231567,132.666994],[-115.577103,-71.747657,116.492313],[-113.116592,-80.912643,120.784522],[-110.004227,-59.408813,126.602888],[-109.443619,-50.262405,126.626003],[-112.572952,-59.743896,121.035333],[-44.401016,81.458680,183.836453],[-53.203079,79.715668,180.844502],[-58.320755,68.772065,177.594067],[-59.425247,63.905274,176.809681],[-77.559585,15.648621,163.801537],[-65.393204,14.423523,170.026265],[-72.015396,3.146591,167.104092],[-69.240494,-5.609787,168.584412],[-65.047256,-8.837463,170.186627],[-61.579178,-19.539261,170.817578],[-58.307571,-20.526336,171.402244],[-73.354141,-5.218460,166.574555],[-78.236465,-15.749862,163.882935],[-79.865250,-32.252411,162.335961],[-75.213028,-30.105514,165.121277],[-78.434402,-43.429321,162.617279],[-74.255813,-17.742431,166.013760],[-69.671707,-22.036987,168.113263],[-89.231033,-10.379348,154.024403],[-96.853042,-3.555420,144.098933],[-99.000870,-1.412155,142.376877],[-104.272476,-1.712097,139.113943],[-99.513504,-15.664474,140.586460],[-62.887649,3.931183,170.992737],[-59.605606,0.544358,171.911011],[-51.007095,11.194306,174.161591],[-50.711014,3.027726,173.949685],[-55.959000,-10.289947,172.548104],[-84.553970,14.292710,158.659653],[-78.980240,-4.448425,163.017163],[-73.765945,9.087921,165.977654],[-75.763687,-1.178238,165.092896],[-84.868667,-0.421356,158.171547],[-92.898270,1.343735,148.571587],[-88.213150,15.476319,153.274723],[-92.376663,15.174134,149.210547],[-86.408401,15.911850,155.390271],[-89.231216,5.049500,153.291842],[-97.488296,17.649430,147.216875],[-100.920364,5.934632,142.737275],[-94.689529,8.083664,146.715096],[-78.623184,6.964463,163.000161],[-58.798721,-63.365020,165.497704],[-52.486160,-56.110290,166.880574],[-53.853470,-73.515258,162.915993],[-50.309769,-71.612159,162.879609],[-42.368912,-60.129913,163.088951],[-36.661697,-103.874748,145.759962],[-40.837173,-106.626587,145.485155],[-45.658707,-106.534546,148.818238],[-37.740860,-111.870590,143.496468],[-53.287857,-100.669250,154.897347],[-55.332779,-84.430710,160.257286],[-63.432876,-99.233947,156.821255],[-1.505325,-128.964775,139.575552],[2.511337,-122.499664,140.111033],[-97.858353,-95.687217,144.002821],[-100.727188,-116.324875,138.495995],[-103.798172,-126.014396,133.963370],[-99.810562,-123.970764,138.728686],[-100.575088,-138.483238,135.440563],[-99.234512,-152.007316,133.489263],[-97.684402,-165.274976,131.447960],[-99.499283,-171.795311,128.334669],[-104.516006,-132.601616,132.115261],[-102.283951,-111.348968,136.736580],[-107.338882,-105.400818,129.405488],[-94.184524,-114.857055,145.045721],[-88.094314,-111.326812,149.239151],[-95.147781,-126.191627,142.362420],[-119.792129,-255.603157,84.780751],[-112.725723,-257.314571,91.993912],[-90.556412,-20.206329,152.960747],[-93.076431,-28.318573,150.311562],[-88.996353,-32.614837,155.356728],[-108.266861,-36.974365,128.586957],[-112.272903,-31.507904,128.320528],[-113.655228,-41.821731,124.903754],[-117.075271,-50.395416,120.402270],[-116.886734,-41.489364,122.304401],[-113.770706,-122.677055,116.129703],[-108.759476,-124.853927,124.870630],[-111.246231,-128.620048,120.022510],[-109.491104,-131.804794,122.836102],[-112.399490,-138.154541,115.923748],[-114.561905,-146.499000,110.620664],[-106.591385,-131.799713,129.064487],[-114.015518,-137.566761,111.777086],[-120.582779,-155.736782,91.748356],[-119.017349,-162.014496,95.476845],[-121.485672,-174.027233,99.977362],[-119.718704,-177.434141,100.877352],[-116.248733,-159.978233,111.433612],[-123.184463,-175.244754,94.340853],[-136.006912,-121.123428,78.785218],[-133.184708,-177.669347,54.339478],[-137.977249,-13.850006,109.452551],[-136.751114,-27.477523,110.550939],[-131.477310,-20.765747,113.361534],[-133.230545,-15.946212,115.419347],[-130.394974,-14.184005,116.633192],[-135.833694,-20.465759,112.316484],[-119.356705,-21.494964,105.852119],[-112.567886,-22.617675,129.593199],[-107.743362,-29.621200,130.885453],[-120.615250,-28.421203,102.227173],[-137.925247,-142.034980,44.007431],[-135.912247,-147.226581,42.252884],[-118.169021,-166.982603,106.985936],[-122.593643,-182.031667,95.544310],[-111.933670,-183.355762,110.126514],[-106.780411,-177.459984,119.420996],[-99.927933,-181.122103,125.574530],[-129.394791,-169.642557,61.573433],[-134.731521,-208.014214,59.402588],[-131.999588,-212.273561,52.027848],[-127.906448,-209.598933,49.322663],[-137.882217,-216.059112,51.497795],[-140.211075,-218.366373,54.823120],[-138.481216,-214.180778,61.202717],[-136.826736,-208.877803,62.255726],[-140.432144,-221.915914,48.492875],[-129.498184,-208.579967,53.477089],[-136.865005,-216.285812,63.479473],[-142.572830,-228.137516,47.434403],[-136.756607,-228.684002,54.856842],[-140.280716,-223.673191,54.289391],[-141.862991,-226.491737,45.582344],[-148.009476,-245.872947,29.551628],[-147.240860,-241.771824,35.425858],[-148.720901,-250.417885,29.815430],[-149.493973,-253.646255,24.445046],[-146.211868,-245.216140,25.570511],[-137.844131,-280.731979,28.992463],[-135.684158,-235.837997,26.293534],[-142.903946,-233.899757,35.005867],[-138.976883,-238.502174,26.802308],[-136.358902,-227.987919,36.762726],[-140.532608,-226.601761,42.130669],[-126.785599,-205.675009,50.872612],[-112.794266,-290.102859,71.344258],[-98.025711,-289.774513,83.191662],[-91.152481,-283.617172,88.767544],[-91.332046,-288.974792,83.016701],[-92.597610,-277.745842,93.953087],[-98.590652,-280.454849,90.591866],[-96.685440,-272.060356,97.279435],[-92.430618,-268.492141,100.447682],[-89.480789,-279.052665,92.609005],[-82.770767,-277.295677,91.870184],[-50.084183,-223.535370,96.603453],[-53.149429,-224.283672,100.622986],[-51.641250,-237.987182,90.614352],[-52.990982,-231.661918,95.376738],[-46.596756,-220.903621,93.555249],[-43.860306,-221.119709,92.575838],[-37.084305,-218.611828,95.878760],[-36.682876,-209.542874,100.684725],[-47.137405,-232.444397,88.949952],[-44.899490,-232.853878,88.412793],[-44.873978,-243.430927,84.804722],[-34.513077,-242.136486,90.596684],[-34.271133,-234.826820,93.538626],[-36.570511,-225.806822,94.019604],[-34.697647,-227.937385,96.067036],[-36.367264,-235.691829,91.358534],[-43.244461,-214.018024,95.108710],[-35.533218,-217.653780,102.797581],[-134.456436,-192.938904,45.520043],[-141.397659,-189.948844,51.001374],[-143.578140,-187.999423,50.431000],[-144.680252,-193.752534,45.324524],[-143.121536,-199.295136,43.886353],[-140.541275,-200.836786,42.626191],[-139.869949,-193.213392,47.871949],[-142.999954,-191.329234,49.459862],[-132.476822,-212.060939,30.765648],[-136.774124,-220.339153,26.794098],[-131.384842,-216.457349,27.818184],[-141.378067,-216.895561,31.496170],[-143.861526,-219.839166,28.621689],[-127.582474,-215.892095,34.054871],[-127.117142,-212.295154,36.621949],[-144.977859,-198.811047,42.077210],[-142.785965,-205.779683,39.652306],[-142.631180,-228.780460,20.900742],[-140.715896,-195.649765,26.621743],[-143.220901,-199.008509,31.298447],[-95.442093,-301.145187,70.581871],[-83.006302,-284.115623,83.512547],[-75.776626,-278.120407,84.403038],[-77.345352,-275.138221,90.994456],[-80.596512,-286.320816,78.056809],[-87.065201,-293.925010,73.837632],[-90.446243,-301.346748,66.324410],[-99.979996,-307.936668,65.462101],[-98.681839,-299.924980,73.069401],[-107.100845,-297.354698,72.287419],[-102.530289,-305.093322,68.306950],[-71.007889,-287.712761,64.061409],[-108.624161,-353.041839,23.108445],[-138.145828,-378.131515,-7.317237],[-142.587479,-380.688980,-12.295601],[-144.627396,-381.645874,-15.916298],[-134.293777,-375.997451,-3.206817],[-141.325882,-375.558395,-5.746070],[-131.664810,-386.152359,-9.486305],[-145.112503,-254.079292,15.376091],[-140.962967,-246.224716,19.725731],[-142.132034,-257.417667,40.268067],[-128.503677,-258.226383,68.874634],[-135.177322,-266.696434,53.986992],[-139.085403,-273.553985,42.404549],[-117.493790,-244.549263,85.632862],[-110.093277,-242.899360,98.191739],[-109.064102,-238.988197,99.550183],[-117.274734,-238.123676,85.205639],[-109.227920,-257.381077,96.348622],[-102.154617,-191.203831,120.355475],[-105.130875,-186.652085,118.284625],[-110.095352,-191.214447,109.982699],[-105.209854,-171.298412,122.901738],[-108.140518,-171.475067,119.062823],[-112.467911,-169.695667,112.928334],[-117.231827,-179.635482,102.447476],[-114.570389,-166.397995,111.286646],[-102.912247,-149.770767,130.601259],[-101.782242,-156.729702,130.095795],[-89.624283,-133.860260,143.793057],[-59.417740,-115.386955,151.685500],[-67.267410,-120.907119,151.262682],[-48.883621,-162.520073,128.317830],[-47.881546,-154.329521,130.924404],[-44.355484,-145.888496,131.679205],[-40.518021,-137.840828,133.283610],[-38.969559,-139.524696,134.091330],[-52.583450,-151.678013,136.422326],[-50.722977,-138.020805,140.161166],[-52.793716,-125.579673,145.807450],[-40.590774,-144.773136,129.740250],[-39.740555,-143.805980,142.214281],[-40.320450,-148.494487,144.983811],[-41.513260,-157.510883,140.332266],[-43.622452,-174.161516,138.297810],[-41.985733,-164.169084,142.540507],[-40.358414,-157.313289,146.150948],[-43.056656,-176.748724,141.101046],[-40.691604,-170.642421,145.898434],[-43.018143,-236.322952,133.560615],[-39.556595,-240.942714,140.167294],[-37.269913,-236.231876,142.492758],[-39.861526,-252.999302,137.414001],[-32.116836,-224.252321,142.984774],[-36.123855,-223.329012,144.909592],[-37.847244,-229.116592,143.571202],[-34.943924,-229.120018,143.768011],[-34.789810,-238.946102,141.315270],[-39.555069,-232.937885,141.565939],[-93.486832,-140.906822,140.123019],[-96.293716,-136.645134,139.321175],[-95.805923,-156.944717,134.838634],[-95.914200,-177.409004,129.675681],[-92.357132,-150.557605,138.551937],[-88.854019,-145.726955,141.365588],[-85.282974,-147.493591,142.298745],[-89.178604,-160.717968,137.518181],[-71.209183,-114.455215,152.901316],[-65.843826,-94.852668,157.917778],[-57.194961,-96.650604,156.963471],[-61.163162,-111.834198,153.137936],[-51.215591,-105.903244,152.377114],[-51.552750,-113.198250,150.029017],[-54.661392,-111.982727,151.563685],[-46.935379,-115.879341,146.368420],[-76.759781,-112.391105,152.855833],[-79.897598,-121.758850,150.163185],[-72.796341,-230.301452,117.749313],[-71.071731,-213.213356,123.022830],[-68.936417,-218.306940,120.584387],[-80.455154,-223.734911,121.152176],[-64.696548,-209.179050,121.988356],[-83.265640,-218.465257,122.244303],[-76.270401,-213.359134,124.054870],[-74.152237,-212.947721,123.854661],[-79.886429,-206.236780,126.180291],[-38.713455,-159.332508,125.025588],[-39.651138,-149.147293,128.304584],[-38.940140,-155.273758,131.915574],[-41.471634,-164.658334,135.582348],[-38.335770,-161.914268,127.950247],[-39.582229,-170.246879,114.944977],[-41.750503,-167.491594,117.818982],[-39.457901,-166.710783,118.728883],[-39.526810,-158.780483,123.141652],[-41.450699,-152.428741,125.642762],[-42.864822,-150.575042,127.279040],[-42.998123,-157.685730,124.109834],[-130.264908,-197.433978,80.133702],[-130.775406,-193.724773,80.640175],[-75.294144,-157.219433,141.379473],[-58.656082,-239.977558,99.924857],[-63.065445,-252.037639,99.054829],[-57.007461,-245.093986,94.096646],[-64.680191,-239.201881,108.388064],[-63.060074,-245.854774,102.546795],[-46.495987,-239.203792,85.827683],[-48.409378,-240.773563,85.900006],[-34.202652,-274.327049,89.935358],[-33.465652,-273.763206,83.871258],[-37.692093,-271.621124,95.422799],[-37.250076,-263.760467,97.850642],[-36.133743,-251.639480,87.011681],[-33.789688,-254.822422,88.170483],[-33.236954,-260.319420,87.837475],[-33.128128,-269.314483,85.804070],[-35.259781,-275.594200,81.720601],[-35.123123,-261.053657,85.258786],[-41.483169,-241.791942,87.435360],[-33.620132,-244.263183,92.657656],[-33.792496,-249.761268,93.919770],[-34.812454,-251.996730,96.679966],[-36.932327,-255.471302,102.415934],[-38.228470,-257.931595,105.902713],[-37.439590,-265.629181,101.776257],[-36.988113,-260.035934,97.618267],[-33.444595,-255.067280,91.883347],[-33.355545,-265.253456,89.042233],[-57.994766,-274.896988,78.072873],[-59.210220,-285.784591,75.144318],[-56.178055,-267.563278,80.294457],[-60.227188,-267.665603,80.525311],[-54.705521,-272.557769,76.735588],[-56.261673,-278.210693,75.906105],[-55.908584,-282.783416,73.713360],[-49.030655,-276.271309,70.321591],[-48.735489,-285.705497,65.871827],[-47.114517,-276.270118,69.201657],[-44.521377,-282.331917,67.018963],[-47.383743,-282.910621,66.347729],[-61.899734,-292.227997,74.532433],[-63.881729,-283.063362,75.891884],[-57.577896,-255.565864,87.368630],[-40.601028,-293.440818,108.358549],[-43.882400,-294.108528,117.297910],[-43.881058,-281.655517,122.343259],[-43.921768,-290.802437,119.961299],[-44.659012,-277.953499,120.817159],[-43.721573,-285.003555,116.223218],[-41.986404,-250.086834,118.021974],[-40.660660,-256.566513,112.363434],[-35.810623,-242.855400,101.791205],[-35.134292,-299.645355,87.168614],[-32.545547,-300.686454,83.083912],[-32.853897,-282.177368,83.169739],[-33.389664,-289.868919,79.625061],[-32.397293,-296.241111,81.705811],[-78.084000,-149.071586,143.516390],[-42.011978,-125.070839,139.184689],[-39.723221,-131.267234,136.003916],[-37.682815,-242.084575,141.221123],[-31.401382,-251.039985,133.367805],[-26.496841,-235.316028,130.908476],[-22.136856,-228.289955,127.609267],[-17.384964,-230.039890,122.061145],[-14.280228,-228.705528,119.666930],[-13.344070,-231.235492,118.386348],[-8.022476,-213.108993,118.773328],[-10.214554,-218.003650,119.020325],[-12.234268,-212.324436,121.670936],[-15.611954,-212.855346,124.730885],[-9.081436,-193.324856,123.595350],[-15.108841,-205.847642,126.051830],[-6.174698,-191.830496,121.828933],[-8.933243,-205.059903,120.613881],[-29.964004,-244.956836,132.493602],[-26.702408,-157.968525,154.774063],[-25.957291,-168.311233,151.736157],[-25.731644,-186.699233,147.035038],[-20.503799,-256.470459,118.737179],[-20.772903,-275.480964,115.280552],[-25.601334,-274.178840,121.526440],[-36.533951,-285.025146,133.482249],[0.168442,-144.600311,133.732785],[0.095078,-130.986175,138.316767],[7.898483,-129.397728,139.414452],[21.240524,-128.269050,153.456124],[26.772324,-121.878982,167.516316],[34.341843,-134.821579,171.066952],[37.937424,-153.315406,165.436787],[36.383835,-148.392471,167.728276],[34.836838,-141.611187,169.747605],[32.343796,-142.226001,168.806836],[30.054306,-139.667404,167.558827],[30.453476,-150.806892,165.544285],[42.535874,-180.762164,145.922642],[41.845200,-184.428986,152.247456],[39.596420,-172.963331,159.767182],[38.736496,-160.348365,163.175625],[36.827316,-167.048496,163.670048],[19.797714,-283.052368,123.290446],[18.341110,-290.300224,117.819922],[16.238876,-289.487098,115.231695],[15.700424,-195.125180,135.420700],[13.687363,-195.180117,134.166440],[20.518417,-219.812229,138.754128],[27.578659,-147.478531,162.622113],[21.960983,-115.492645,159.480629],[23.454208,-127.134460,159.227127],[18.013107,-134.664070,146.620100],[18.570419,-120.875976,151.003918],[20.250839,-118.460281,154.812882],[20.029282,-84.874458,162.557503],[28.298996,-67.435531,180.156262],[24.833725,-75.892601,172.956284],[24.822556,-63.740051,174.812989],[20.546494,-76.505790,164.537175],[18.335922,-84.411422,159.906651],[19.350876,-54.223571,167.222298],[17.483139,-44.188308,167.570935],[19.671738,-41.048797,170.361996],[23.257065,-31.481414,178.269326],[25.155502,-32.197601,181.977303],[25.741684,-7.430420,187.477440],[27.301499,-23.112655,187.238442],[29.150192,-16.108307,190.565529],[31.044357,-24.627731,190.650696],[30.665939,-39.434250,188.323159],[26.235703,-38.807068,182.367394],[25.886459,-50.369186,179.367653],[24.143234,-43.562011,177.697277],[29.722092,-50.649688,185.310261],[21.519150,-44.456329,172.514527],[22.314438,-62.921600,170.190163],[20.295761,-60.685104,167.120762],[18.788376,-70.665321,162.774060],[16.816330,-58.183746,163.673500],[14.021469,-52.046982,163.128735],[11.030014,-41.894119,164.827515],[13.205124,-18.366485,170.786671],[11.700363,-29.475723,167.559304],[14.750595,-27.951568,169.210171],[14.439255,-39.766952,166.401440],[7.839401,-45.145370,164.783368],[2.095993,-55.055465,164.047589],[14.146164,-3.905792,174.889012],[20.165939,1.235932,181.387627],[22.817368,-0.032211,184.347786],[26.107834,2.086609,189.925133],[15.846726,24.089493,183.238991],[14.323227,14.525620,180.177876],[16.595688,16.811661,181.910061],[22.201096,13.847824,186.979248],[16.686691,-3.975250,176.422337],[15.084580,7.536881,178.481724],[31.609787,14.660324,196.543929],[39.051499,21.518463,186.172303],[47.575913,12.441361,178.075508],[49.604111,27.171906,179.806095],[42.867050,18.317643,180.270359],[40.919968,25.156769,183.259961],[38.847397,11.605973,187.931748],[37.936142,18.753006,193.360604],[38.006027,7.459122,193.379753],[35.017441,16.576569,196.239692],[26.878037,11.292038,192.341240],[22.567673,21.623841,189.316513],[25.907089,21.065583,192.955222],[24.561325,29.993637,192.810089],[26.730637,39.940201,196.097496],[28.538803,54.029801,198.642189],[34.524582,54.032761,200.392189],[36.886643,55.189926,198.495789],[38.298508,60.747315,193.431557],[39.576340,60.766632,191.459946],[42.989243,68.926422,191.807289],[45.686325,73.428315,192.352097],[45.279587,76.550202,195.190293],[44.220200,78.061310,197.537917],[40.395249,81.950257,202.818299],[45.439316,78.603791,201.612389],[47.147812,88.285462,199.694122],[40.082993,91.352875,202.112740],[38.169846,98.867432,202.869225],[18.282822,116.827851,208.345787],[19.954819,120.399659,208.517960],[18.711166,125.605316,209.587319],[1.125107,136.531891,209.373855],[5.742355,139.111389,211.805252],[9.072128,139.675446,212.047676],[6.239243,149.671418,209.133553],[1.259018,153.317414,208.323143],[8.469467,151.164246,207.074738],[9.757431,160.106110,207.219796],[12.027817,157.149109,207.875992],[8.750961,168.590851,204.133072],[1.987412,170.470703,203.947396],[11.142685,170.978424,205.900116],[15.852951,172.843842,205.811379],[7.165390,178.535767,204.324532],[3.634384,179.612061,202.141983],[1.864426,177.860810,203.930389],[-3.340896,180.220673,198.737107],[10.718796,165.162049,206.386567],[4.484360,162.362122,204.919716],[3.110214,167.302155,202.196274],[4.833481,155.483704,205.749259],[-0.772720,156.833893,205.755387],[-5.301834,154.282105,206.648522],[2.023361,148.207642,209.011185],[-3.677811,148.670899,209.243058],[-0.452896,143.763184,210.872330],[7.667893,144.085053,210.451256],[36.477036,47.813950,198.495629],[30.559921,33.845902,197.847870],[33.247299,25.136628,197.675850],[35.484726,25.340988,196.862503],[36.656723,31.751313,196.066848],[37.769455,30.007859,193.077820],[42.261887,29.919709,183.047852],[41.926743,40.461136,185.544175],[47.876816,34.941544,181.639813],[47.836228,48.938721,184.892620],[38.439743,38.233445,190.662735],[45.371323,26.835739,180.708390],[45.625595,41.492035,183.753952],[29.171677,20.840058,195.513047],[19.895432,36.154526,189.796341],[16.919907,39.444779,187.644188],[21.533371,52.714295,194.563355],[24.675705,63.992310,198.167794],[16.687119,31.000809,185.624318],[20.848618,47.375260,193.097062],[27.208420,71.176331,199.925934],[32.317062,63.277375,200.835389],[35.529038,62.701996,200.160102],[36.940109,66.263703,198.718727],[38.298081,69.519837,195.370232],[39.778366,70.832276,193.787972],[38.531967,76.901429,195.910721],[35.167221,79.302918,201.047455],[14.320786,103.911560,208.360176],[13.863266,107.655915,208.770745],[8.079941,107.958191,208.694931],[5.320236,118.043305,209.976128],[13.492233,112.756470,209.549225],[19.097702,108.076783,208.375786],[19.479538,93.436402,208.683426],[36.236984,71.830780,200.267075],[32.661301,71.933594,201.681733],[26.508286,79.454071,200.868683],[34.716171,-37.877807,188.985154],[33.323837,-47.572723,187.780663],[37.871018,-39.776260,186.442894],[36.015061,-47.934250,186.719841],[38.376694,-46.805282,184.167014],[28.853500,-110.466400,172.705738],[39.793930,48.939072,189.390511],[42.712204,48.406479,186.767968],[49.076706,73.630799,193.398041],[61.869858,78.193726,195.430519],[61.364609,72.228882,196.023232],[76.464218,69.555939,188.289284],[74.719040,65.542633,186.882386],[77.828659,54.504776,185.166333],[70.485520,56.981766,187.999268],[65.935349,51.521347,187.048195],[69.982773,42.004502,186.607163],[84.227646,45.724259,181.401261],[94.537827,50.857392,174.809662],[95.193955,55.510437,172.278004],[74.786667,49.025727,184.864201],[81.178696,43.606522,180.829876],[74.023300,67.767334,189.445275],[64.295395,58.953247,188.371003],[58.277023,63.547058,186.902748],[60.301865,59.035843,185.943978],[58.405625,54.041703,184.784356],[69.055344,67.027069,189.859818],[68.710190,69.754608,192.927384],[53.689438,75.126618,198.312020],[57.412277,71.800659,193.550629],[52.186264,74.272858,194.688637],[52.957382,68.354065,189.224602],[57.041184,68.150116,190.432503],[61.738205,66.671875,191.419320],[62.877487,69.682129,192.519738],[-21.374893,-25.315216,168.376599],[-27.993545,-51.858703,159.056816],[10.603256,32.217514,186.017472],[6.075180,35.740189,191.972245],[-1.199051,39.666046,194.553963],[-2.830521,28.922364,192.285271],[3.435959,35.968720,193.459679],[5.050400,23.646164,188.454522],[11.612106,28.880112,184.256695],[-7.558304,43.659485,195.893563],[-5.672989,42.214218,195.898606],[32.503464,83.191101,202.368882],[35.407944,84.098206,204.484230],[5.940903,-19.283355,172.149998],[5.852768,-34.204147,167.368523],[2.125046,-45.895889,166.025196],[10.506088,-53.549057,161.892296],[1.285141,-39.553528,168.164002],[2.731308,-23.546570,172.671948],[0.380112,-24.305801,174.481770],[-6.558243,-26.358337,180.125744],[-10.467361,-31.333923,179.322949],[-17.651077,-25.445419,181.543282],[-17.018448,-13.392074,183.631398],[-20.764236,-37.643173,178.407608],[-7.620071,-39.588546,176.251526],[-3.636368,-12.902527,183.207093],[-3.001724,-20.787689,180.469815],[9.751022,-22.778564,169.605865],[28.118393,-188.349970,156.834206],[27.964462,-199.556014,154.009068],[30.243271,-182.151208,160.043835],[32.859543,-124.746635,172.680939],[41.102768,-118.109375,161.039536],[41.932419,-100.994301,161.033276],[43.988571,-115.107780,155.093312],[48.338547,-168.014215,138.225354],[43.968735,-164.151157,144.416939],[42.712875,-161.898742,148.161333],[44.464707,-180.240438,139.076657],[44.403305,-147.979313,148.381001],[45.972946,-146.736797,146.858757],[57.876450,-187.090243,125.468345],[53.320419,-197.791312,124.617396],[61.798264,-186.246068,123.032106],[64.036362,-179.178240,123.773400],[65.502487,-202.252228,110.280092],[65.239609,-191.516805,118.176041],[62.820786,-204.667294,114.735247],[70.602707,-186.941858,111.633219],[75.678452,-188.617246,104.219239],[78.099960,-189.945542,100.842587],[66.602585,-183.587445,120.034633],[41.612778,-205.676989,148.966904],[45.327133,-248.077652,118.875703],[58.187546,-238.085533,109.741764],[58.252304,-255.456649,97.552521],[67.598984,-245.796570,89.631546],[69.860886,-237.379345,89.688618],[70.123154,-229.855339,91.892416],[62.536728,-244.937126,94.430033],[63.122238,-249.160946,92.329684],[59.962692,-242.604973,101.011708],[56.303330,-234.820980,112.631721],[55.226181,-223.018331,116.046919],[47.069992,-231.586364,120.769045],[50.678330,-219.018818,120.579656],[51.873276,-238.820175,116.035801],[52.044907,-244.232589,114.418633],[59.209641,-232.052063,110.739961],[60.968613,-220.358944,111.230541],[59.817429,-221.922777,112.875527],[42.356491,-192.732098,148.207299],[69.859970,-178.972313,117.428589],[72.699265,-176.807005,114.387340],[78.483627,-180.637015,104.591906],[79.071640,-172.510954,107.892782],[80.292526,-176.126583,105.508194],[81.333176,-163.411884,111.563413],[73.434860,-159.305607,122.625961],[76.720261,-173.264595,111.250968],[73.353378,-166.817655,118.910268],[79.246018,-163.810381,113.315945],[81.702316,-169.129593,108.617877],[83.890549,-166.959430,110.086649],[79.939194,-155.847946,117.265856],[82.241684,-145.941078,120.822510],[83.970261,-139.463539,123.257512],[93.257553,-143.341819,127.567830],[85.903977,-144.083797,121.225436],[84.148911,-149.046180,118.646221],[75.671127,-145.143413,126.496423],[66.091782,-155.079151,131.461378],[70.125168,-147.194828,130.947382],[68.963730,-159.701725,127.487392],[77.794052,-20.834594,170.887139],[79.793076,-22.133651,171.291233],[77.272690,-9.786926,174.357486],[82.101303,-16.177414,176.160920],[82.616684,-24.903366,173.007626],[85.756638,-21.065445,175.419094],[88.341965,-32.275375,172.278832],[86.537399,-39.710724,169.712727],[86.985520,-46.960968,166.839039],[88.457382,-56.515014,163.814499],[75.190354,-9.537887,173.755822],[68.575302,-18.133682,172.920548],[73.621262,3.933716,176.634556],[72.712448,8.176010,177.329155],[70.904465,15.598465,178.428975],[70.917587,20.583832,180.314145],[68.364670,23.029755,179.513638],[73.396896,21.063080,183.712200],[71.769089,31.468964,185.704644],[74.611435,25.517258,185.335820],[75.254868,-1.964264,175.388520],[75.320725,14.963944,182.983071],[77.317978,2.731919,180.035130],[78.646652,12.554077,182.883274],[57.019394,41.400086,182.029534],[67.074570,41.513733,184.980950],[61.685837,50.217987,183.293930],[65.829025,62.665924,190.310524],[88.474350,-64.588928,159.934842],[85.581894,-57.457702,159.160923],[81.364121,-52.330398,160.467835],[82.293137,-46.407806,162.638169],[84.079941,-45.002823,164.154629],[83.664719,-52.583908,160.161362],[91.354904,-64.827758,162.439473],[96.995590,-54.151825,160.986924],[95.574204,-35.899460,165.197815],[98.901108,-23.869964,160.722588],[94.468369,-24.464630,167.143052],[109.054367,-21.869079,145.361855],[111.433579,-6.609405,143.885796],[113.701218,-3.829269,139.971495],[106.271103,-39.613556,146.673106],[109.314560,-74.977264,126.755473],[109.809799,-94.036285,122.687810],[109.461289,-92.305580,119.069152],[85.622910,-61.977371,156.889058],[59.474716,-41.558853,168.598095],[70.451401,-32.956573,169.290722],[65.891953,-14.339904,173.706818],[56.400131,-11.335495,174.247399],[48.223312,-27.448364,172.310040],[49.291611,-12.947418,174.364319],[45.191879,-16.106125,174.821995],[47.941330,-3.479278,175.927735],[45.230698,-1.370224,176.962185],[51.655869,-2.647522,175.586136],[48.347214,-39.594467,169.843277],[42.307907,-15.842498,176.395642],[40.728623,-16.530258,178.442185],[39.570419,-10.856353,184.096878],[39.767563,-22.657226,181.495491],[39.113999,-19.232208,188.876931],[38.904953,-11.758178,190.029908],[38.680161,-199.787795,155.962239],[22.484604,-211.669337,142.285777],[18.572495,-205.718942,137.772829],[17.827866,-194.031813,137.362090],[37.634506,-343.201111,116.539264],[40.156357,-345.889343,109.918239],[34.274216,-389.888076,102.802309],[10.858627,-395.462585,98.010678],[4.335251,-396.380096,96.420868],[-1.855240,-391.996093,94.872700],[0.593491,-405.321350,95.501892],[-7.029861,-423.537719,96.148686],[-10.405533,-398.003006,96.101128],[-6.236099,-388.989914,94.936215],[-10.273270,-379.012985,95.231785],[-7.928116,-374.534515,94.906079],[16.743515,-403.497345,98.147065],[8.705673,-404.336731,96.854744],[-9.412735,-290.450355,103.046614],[-14.018448,-303.005188,102.416136],[-19.531814,-308.096519,106.901973],[-18.236099,-322.665832,103.483382],[-21.341324,-302.595192,109.975768],[-6.375931,-298.591812,101.728104],[-13.377090,-321.154983,99.399647],[-14.687088,-315.384437,101.115113],[-11.474808,-310.246093,100.249119],[-9.490738,-318.684005,98.971096],[-10.271683,-330.431381,97.577296],[5.883835,-256.410179,112.512641],[5.665573,-266.151733,110.718222],[11.493820,-263.776016,115.671017],[19.932602,-361.537994,104.469883],[25.198471,-366.615814,105.021452],[15.918991,-357.111023,103.875969],[15.442612,-346.209793,104.858538],[10.488449,-349.515091,102.275549],[-13.755752,-341.825943,98.178467],[-17.833023,-341.880386,101.097979],[56.284897,-325.706161,80.294243],[57.285568,-325.379715,74.096375],[56.439438,-332.057586,67.276135],[55.959824,-328.353241,59.881127],[52.860703,-337.666107,52.284691],[51.249130,-355.598266,65.270165],[53.144089,-342.151214,58.268990],[53.660751,-344.455078,65.478547],[56.047409,-334.657608,74.900837],[57.514267,-325.224716,70.513474],[56.947556,-326.283935,64.172272],[58.106369,-313.589309,73.203152],[57.439499,-314.833343,78.430710],[59.277817,-299.184829,74.688977],[59.243149,-292.703758,79.452221],[60.843857,-282.970337,79.367859],[58.124313,-295.762024,87.679894],[56.844467,-319.832321,58.367817],[-33.697281,-284.952926,131.498576],[-41.656265,-314.658455,111.939084],[-40.318375,-333.447570,111.129005],[-38.716019,-320.874794,104.963349],[-37.282608,-354.354843,118.571525],[-39.374344,-349.464523,113.465272],[-35.904983,-347.463028,121.927220],[-35.370438,-356.551437,120.195880],[-35.110062,-362.261688,119.391997],[-12.809219,-349.079284,97.330613],[-16.611099,-349.484466,99.376507],[-16.847916,-359.967804,99.594849],[-22.700333,-359.762054,106.277173],[-18.847671,-359.871948,101.566849],[-19.525650,-372.906585,102.075467],[-20.759781,-343.769897,104.107567],[-14.171951,-363.360840,97.573172],[-1.019180,-382.756485,95.194247],[-15.694839,-386.482925,98.358057],[-17.604385,-372.479477,100.025227],[5.185288,-412.866302,95.999514],[18.005844,-413.771270,96.751900],[37.514694,-398.294967,97.922820],[-28.491104,-409.908035,110.409027],[-30.404373,-411.413223,106.395690],[-31.864944,-406.293899,106.171103],[-32.242081,-404.615555,104.582484],[-30.184952,-410.388916,98.430445],[-32.206375,-396.107467,98.721939],[-30.235611,-414.685302,103.409468],[-32.043838,-400.462463,109.971295],[-23.474563,-385.764816,107.799138],[-26.945511,-396.984573,112.667624],[-28.255569,-391.355896,113.469163],[-35.286514,-380.488571,111.700658],[-32.833023,-363.827987,118.649975],[-37.159439,-364.020340,114.603663],[-35.107620,-367.036041,118.131826],[-36.867874,-370.617950,111.782774],[-36.078873,-377.704605,109.255100],[-34.450943,-380.842605,102.627072],[-31.068497,-370.083831,88.298043],[-27.165970,-384.873153,80.156655],[-27.754104,-380.237121,74.157177],[-29.602127,-376.683136,65.590889],[-31.386063,-376.426941,60.032353],[-32.293228,-385.276092,57.613190],[-30.521866,-388.318191,61.049622],[-29.662308,-386.598510,64.437775],[-33.873733,-383.445221,55.356148],[-39.331375,-376.370010,50.946587],[-42.727188,-371.804794,49.134537],[-29.996475,-381.833114,87.792042],[-28.116287,-416.326172,68.085244],[-24.817764,-421.668335,74.845318],[35.913010,-415.482605,91.054882],[36.035446,-425.088058,83.589093],[40.846542,-395.302505,76.851185],[42.221848,-388.673095,67.018685],[44.622177,-382.278167,77.336563],[33.474777,-407.391174,96.212992],[41.754257,-376.135711,96.002383],[41.103745,-363.739135,101.629372],[43.567368,-347.389099,102.277155],[42.765854,-389.107299,72.819985],[46.094711,-375.327026,66.247185],[46.266403,-373.401123,61.239476],[49.565659,-363.182403,69.624806],[46.707443,-370.970367,59.099793],[47.271469,-362.946579,44.614266],[43.768662,-380.432892,57.349694],[44.996384,-373.260528,42.482315],[16.770432,-387.645599,100.243668],[-24.297012,-426.297546,107.696311],[-21.870926,-425.248199,108.869507],[-32.255997,-372.541259,117.308070],[-31.507034,-379.937973,115.860598],[-34.283646,-373.157043,116.631532],[-21.245132,-447.101059,79.671803],[-21.824783,-441.435943,80.350430],[-20.077469,-459.650482,79.639058],[-20.179459,-466.177887,78.135956],[-22.851761,-442.728836,75.714474],[-17.565201,-468.664093,82.473362],[-18.070206,-461.917053,85.230961],[-15.873062,-463.592315,91.524245],[-16.892288,-473.598968,82.519287],[-3.548660,-484.847778,95.474844],[2.486801,-486.662323,92.392373],[-22.652725,-445.936004,93.239235],[-19.286575,-456.131744,88.717751],[-19.456009,-456.459167,84.434582],[-21.104874,-450.630310,95.176537],[-20.893265,-450.087158,88.471066],[-22.010086,-441.598068,84.104981],[28.575607,-414.954055,93.485117],[-13.427750,-453.082061,103.304486],[-14.042496,-456.932769,102.248888],[-1.554947,-453.101776,94.693457],[-0.845718,-464.580017,94.758662],[3.085190,-462.008453,93.228022],[7.187424,-458.662201,92.356158],[5.944870,-471.229675,91.461308],[2.944931,-475.903656,92.886864],[-7.716873,-453.057190,98.285069],[-4.672012,-467.139068,97.442917],[-9.008621,-473.012359,97.704314],[-5.334122,-491.894409,90.719345],[-7.052688,-495.650543,89.416165],[-9.362381,-490.784240,88.647538],[-12.890884,-485.622253,86.312912],[-10.551895,-506.088653,89.358509],[-9.653580,-514.430206,90.683686],[-34.387161,-538.903869,55.947029],[-43.818130,-541.008300,39.164276],[-48.214310,-541.926971,31.022995],[-52.895828,-547.317413,32.122986],[-44.859329,-544.204742,40.265389],[-41.596451,-534.083954,44.823677],[-45.380447,-525.737365,30.717247],[-44.966812,-514.036956,28.985817],[-43.307266,-507.300354,30.627167],[-47.210770,-503.675018,23.029023],[-53.566238,-496.037140,15.355828],[-53.937515,-479.033966,13.043641],[-50.300918,-472.930420,18.075890],[-49.868729,-462.535095,22.627182],[-47.506302,-462.842926,24.506821],[-44.361893,-457.954590,23.689095],[-48.931595,-445.142608,19.504944],[-56.980301,-434.926513,15.938858],[-57.660049,-438.017791,10.437081],[-51.453323,-429.586685,16.171769],[-53.265884,-435.433059,17.530404],[-53.498917,-445.087921,19.097382],[-54.244949,-439.713714,18.422837],[-43.411514,-447.887817,21.743630],[-49.770645,-512.528473,22.031601],[-46.536636,-535.787201,32.412972],[-49.197891,-535.678528,28.341683],[-47.649795,-525.450988,27.295464],[-51.482620,-528.900512,22.642136],[-57.946976,-550.098755,23.160096],[-63.050918,-523.712738,28.203995],[-87.864517,-494.833893,17.865815],[-87.264786,-490.736664,22.536812],[-80.472732,-483.442840,26.699837],[-83.919083,-473.493927,25.272591],[-87.257034,-468.075195,23.708672],[-85.580276,-480.682434,25.153740],[-75.920425,-492.742187,26.523018],[-80.184952,-498.534973,25.509301],[-81.640213,-490.995758,25.756157],[-90.206802,-488.344879,16.338128],[-91.101639,-483.975525,13.019349],[-90.263870,-482.817993,4.946534],[-90.525833,-462.173614,-7.495994],[-91.220108,-455.221618,-4.646293],[-89.775589,-488.480285,19.935906],[-88.229568,-483.669708,23.094635],[-91.876358,-477.838897,20.703591],[10.679428,-471.115173,87.999417],[6.429794,-485.790924,88.040741],[21.179489,-517.866638,65.921360],[24.499191,-511.937133,65.100037],[23.609543,-530.230285,52.965004],[13.546616,-541.035614,43.433365],[12.294541,-536.375732,39.821091],[13.806503,-538.433654,37.825066],[12.427780,-546.674560,37.807785],[16.010483,-548.818786,34.497071],[23.809311,-543.276855,33.698334],[37.856491,-540.697784,25.475159],[33.613266,-539.776519,29.974244],[24.879624,-538.813415,31.313317],[23.546311,-533.805206,28.927719],[21.308640,-539.265350,33.178826],[16.457504,-536.085693,34.486374],[19.573959,-531.073547,28.356789],[16.420700,-528.089630,28.492051],[19.642136,-544.186218,36.732895],[13.381088,-521.425964,26.435219],[39.235153,-536.222503,26.653847],[34.236618,-542.486694,30.037133],[31.378525,-546.119934,24.801812],[28.036179,-546.721252,29.554619],[28.322800,-545.292450,31.894486],[32.826584,-544.913330,28.678337],[10.247299,-513.416229,26.737679],[8.893967,-514.571045,31.317551],[10.057724,-517.529358,36.487809],[14.459458,-518.937774,44.249703],[13.996384,-497.190368,21.138665],[19.616623,-487.585510,16.731804],[14.564011,-488.168304,22.799691],[13.366989,-487.747619,28.131150],[16.095871,-478.061920,26.189225],[16.059738,-478.512207,29.211335],[21.728439,-478.678558,42.181824],[22.355637,-472.041046,38.705422],[23.810166,-473.418182,43.789246],[23.980332,-467.040008,47.041863],[23.788315,-466.474823,49.827431],[25.950852,-458.361328,46.219056],[27.694626,-445.349472,47.394852],[25.122910,-457.665527,54.286393],[25.023666,-462.676544,56.289986],[26.189865,-464.981109,43.258454],[19.133164,-478.497680,36.512467],[15.556687,-489.868774,38.521035],[13.608505,-489.896087,32.596825],[9.997299,-501.747741,28.502274],[10.932297,-500.376037,33.267807],[15.666489,-500.576660,43.965836],[17.393845,-491.625824,42.894677],[16.469223,-479.587799,22.882584],[21.344223,-467.748016,33.971085],[19.232895,-464.608093,27.560860],[21.767929,-457.138214,21.752678],[22.918747,-458.851532,19.409005],[18.727402,-467.302246,24.346764],[19.531723,-505.104309,17.798920],[27.177658,-507.316070,16.805306],[27.395676,-516.170837,20.023079],[52.300278,-510.903808,20.689080],[48.125351,-521.697082,21.527352],[38.695297,-520.063446,21.424927],[34.436020,-528.638366,24.460404],[31.887802,-522.220642,22.499062],[41.954880,-523.633758,21.873368],[21.687668,-510.516998,18.617119],[20.643234,-492.707214,15.273339],[23.470322,-488.948669,13.915062],[29.808823,-490.816742,12.724495],[32.900131,-483.860595,11.183770],[22.661667,-453.410461,22.868203],[20.980820,-458.205200,25.915886],[24.227585,-450.490081,26.175476],[21.882614,-458.789428,28.474762],[18.197556,-471.213440,30.251786],[19.841416,-465.283355,22.038475],[18.102341,-479.727478,19.461480],[21.234482,-481.022766,15.672142],[23.409775,-473.133972,15.270264],[24.843308,-480.279510,13.063637],[18.150009,-524.080963,73.518212],[19.370712,-538.633148,72.079079],[20.233200,-544.465515,69.290062],[16.522263,-538.020721,73.970127],[15.669785,-532.541290,77.705658],[26.140671,-527.323486,58.348679],[24.996140,-530.171692,54.828377],[24.389389,-533.381195,60.225846],[24.382553,-527.749481,61.497063],[5.082871,-554.125152,72.518776],[4.798447,-548.908355,70.291924],[5.344528,-558.443512,57.701519],[5.428024,-553.213257,60.934773],[5.603317,-546.383300,66.922577],[7.706711,-549.797790,61.966553],[9.841843,-577.523651,62.752568],[10.506210,-604.780517,55.180039],[14.138962,-586.494384,75.937237],[14.398117,-582.777038,84.065785],[13.759750,-578.909668,89.534424],[12.568466,-575.313690,86.363251],[17.800339,-592.765930,90.220330],[19.136765,-602.409912,101.408133],[16.937546,-599.488525,104.484192],[20.056931,-599.239196,87.418347],[18.130356,-596.285309,75.193524],[18.290817,-595.019317,83.324334],[29.000107,-474.757507,67.655880],[26.339035,-464.192199,40.609208],[29.722946,-454.107544,40.683792],[29.522202,-478.705475,69.539914],[28.735947,-488.639862,67.556885],[27.723007,-496.347442,66.331704],[25.797104,-533.629547,56.708130],[25.372604,-538.961059,58.303639],[21.671799,-523.235016,65.332833],[20.765976,-528.249389,68.594880],[7.249130,-563.288421,52.226952],[6.257797,-574.850158,51.260254],[8.171738,-578.652527,54.318337],[9.309921,-585.612579,49.623772],[10.005905,-589.488891,45.982659],[10.198715,-589.573974,40.218811],[15.758225,-598.116852,41.789803],[12.425583,-592.113586,36.876213],[17.264755,-598.380920,38.441162],[20.941879,-599.800110,34.958542],[18.968186,-595.535217,29.915436],[26.178208,-598.873474,27.417900],[32.296616,-602.510772,30.028412],[39.275620,-602.722473,28.356499],[36.146591,-599.162658,24.834633],[38.810227,-593.755676,19.842331],[35.401474,-592.685455,16.803131],[38.714890,-589.067444,14.540909],[33.729904,-585.497406,10.851319],[33.203598,-589.835846,14.308953],[26.151596,-595.371063,23.184937],[18.614487,-591.457214,27.315461],[18.768662,-586.120178,25.835495],[24.594956,-584.954193,19.261925],[24.331955,-586.834381,18.858025],[25.497788,-591.156036,21.050072],[17.140854,-587.619720,27.493073],[14.799423,-592.993255,33.011132],[32.287705,-595.437042,19.926850],[40.267380,-577.422973,3.562165],[26.462082,-602.432739,33.474953],[31.344589,-578.421264,27.301789],[29.413925,-578.031555,35.321198],[24.530258,-569.107422,39.055725],[25.639572,-571.343811,32.148423],[28.236984,-579.999023,32.667900],[21.509506,-572.439911,46.853791],[20.116501,-565.925110,54.020775],[25.398789,-570.291900,49.222550],[-0.358902,-505.072509,88.847554],[5.370468,-541.723327,76.047654],[11.529404,-572.847229,81.214718],[20.757492,-602.969024,94.281283],[30.867478,-620.679626,80.671124],[34.955673,-617.091797,89.881014],[28.650681,-611.440735,80.487439],[26.736374,-624.089355,75.813378],[31.046494,-625.301239,70.836014],[40.234604,-627.664795,62.105736],[48.362045,-633.155670,61.712349],[55.583908,-635.711029,56.414284],[63.818344,-637.639373,47.428315],[40.926254,-641.204803,95.985529],[48.647446,-625.394104,44.430756],[57.211716,-629.564697,41.648636],[29.475144,-613.758667,45.363991],[21.401474,-610.630981,49.534584],[-23.244888,-543.525634,89.137139],[-19.167068,-607.646881,107.211488],[-23.730545,-582.898254,97.249926],[-27.635635,-578.323608,84.523873],[-29.121780,-568.885803,79.896981],[-29.942398,-570.709137,75.884003],[-31.227432,-573.027527,69.395817],[-27.697586,-583.130157,79.084931],[-29.498306,-577.649963,74.125080],[-29.119034,-586.239044,69.472405],[-27.723892,-592.045440,63.621006],[-25.212601,-596.621002,59.141255],[-28.414139,-596.829162,57.796025],[-24.570206,-598.987976,62.020649],[-19.831375,-600.384613,66.887967],[-20.263931,-598.288696,65.857529],[-25.146927,-592.784637,67.888054],[-24.343338,-591.200195,85.510445],[-26.248611,-588.351959,77.110203],[-20.940384,-596.589233,74.342350],[-20.220596,-597.586944,84.170170],[-22.807266,-596.316467,61.794934],[-25.532181,-583.253479,91.795397],[-22.067459,-593.616699,99.804909],[-20.005142,-604.705414,103.772169],[-19.972305,-604.387268,98.652728],[-16.808060,-613.012329,98.797692],[-13.945938,-612.815765,85.833481],[-13.186722,-610.457153,84.137551],[-21.324600,-608.984344,80.322461],[-29.663711,-604.839691,72.305542],[-39.963150,-600.848266,63.278248],[-31.211929,-601.226532,65.896286],[-44.484634,-602.582580,64.754582],[-56.069290,-601.960724,62.602856],[-63.146866,-598.952545,57.183602],[-69.204727,-600.431091,58.157711],[-80.916336,-594.366943,47.729317],[-80.307632,-599.725921,54.326813],[-66.691177,-594.120697,50.711327],[-60.491836,-593.520538,49.628434],[-56.217300,-596.718902,54.538727],[-48.271744,-598.777527,58.167946],[-66.410049,-588.738311,44.178261],[-53.662735,-589.064026,40.608757],[-49.345901,-592.700012,47.114937],[-47.142105,-589.417694,41.173508],[-37.478714,-593.842041,50.931221],[-28.423782,-594.350464,56.888604],[-33.019180,-592.863830,51.897309],[-44.165542,-593.474334,49.272789],[-40.075699,-597.374664,57.498185],[-31.977676,-595.467437,55.162529],[-19.524002,-603.509155,71.675103],[-15.377640,-604.966827,77.298565],[-53.950638,-586.020263,36.370209],[-44.834549,-584.554809,32.950020],[-42.081497,-582.794769,32.683213],[-41.791092,-586.019043,34.895729],[-42.452469,-581.297180,28.969170],[-22.477798,-621.789215,98.028714],[-17.237808,-623.423736,101.659359],[-19.224075,-609.582153,102.202229],[-14.639297,-615.521270,89.241078],[-16.853470,-621.792999,97.390093],[-12.810501,-616.672729,92.514866],[-14.121780,-619.749023,95.357571],[-17.924576,-618.762085,103.199194],[-12.670975,-613.898437,89.260823],[-13.696243,-609.601501,86.326310],[-16.578750,-607.570007,92.592818],[-17.516861,-604.272583,90.184414],[-22.130142,-596.831482,93.419375],[-25.484878,-588.400665,86.458809],[-24.793350,-588.426269,91.647513],[-44.971756,-574.476013,39.776421],[-44.940384,-577.123657,35.327004],[-44.378616,-580.552124,37.778321],[-44.393326,-567.618774,36.544419],[-41.490799,-559.378143,33.854447],[-47.819290,-553.832824,31.651818],[-49.920242,-552.976410,32.346749],[-51.938064,-561.398620,28.277085],[-63.577286,-561.444519,26.596512],[-68.093582,-575.651062,35.046189],[-69.660293,-581.457641,38.556900],[-83.310501,-586.894043,40.894089],[-92.787308,-589.008697,41.719353],[-97.651749,-596.316467,46.344933],[-43.917984,-554.891449,29.088379],[-38.857559,-557.106842,29.153565],[-40.013443,-554.733032,29.534256],[-41.230240,-567.370483,23.071778],[-44.250442,-560.836334,25.205399],[-40.737625,-560.418914,24.447182],[-38.566543,-560.519836,25.542199],[-39.869217,-571.392395,24.882248],[-56.971146,-564.885742,29.384484],[-61.081375,-563.063629,30.632065],[-62.370621,-567.916626,29.923127],[-41.236099,-577.180633,26.734597],[-43.732620,-578.158477,26.544060],[-41.470535,-573.199951,24.284233],[-40.965835,-564.403839,47.873017],[-35.189834,-563.756805,59.368801],[-39.058365,-566.272827,53.386780],[-43.290237,-569.676910,45.410088],[-31.939529,-584.740112,65.189331],[-38.448318,-573.185424,57.149422],[-39.546280,-577.282715,55.075119],[-36.908768,-583.703033,58.020966],[-37.930069,-589.005981,51.862358],[-41.877701,-585.698883,44.244362],[-41.402176,-586.131439,39.801865],[-37.969864,-589.846100,45.072274],[-43.795059,-575.700317,44.906411],[-41.746414,-582.344513,49.038147],[-17.325271,-602.017700,72.631497],[-16.126724,-607.656616,79.017029],[-21.477676,-599.405761,98.389801],[-4.983353,-637.345398,142.651347],[-4.236526,-643.110504,146.930848],[-23.657974,-568.357116,95.456768],[-25.873062,-556.091461,88.020375],[-28.237930,-552.424621,80.602883],[-33.808426,-533.209472,69.892949],[-31.866348,-526.592560,70.949192],[-31.108108,-529.003479,74.693360],[-33.656509,-538.557678,74.660832],[-25.655838,-548.147827,86.273365],[-23.913284,-555.341919,91.773352],[-39.810928,-528.291412,47.908135],[-37.235733,-513.399780,47.802109],[-34.049820,-516.770721,60.595208],[-42.930923,-528.988128,38.116707],[-43.006363,-522.942688,34.748757],[-40.840347,-513.633758,37.711815],[-40.828995,-493.205566,33.736191],[-36.737076,-465.406891,32.411850],[-34.993790,-472.412231,37.410271],[-33.850052,-477.992645,42.691788],[-42.704422,-441.889618,21.424637],[-44.997513,-441.064926,19.788216],[-59.838272,-421.163055,13.458161],[-59.893265,-423.268448,8.243821],[-74.013809,-419.040603,-0.960167],[-88.137894,-400.187027,6.902886],[-93.999100,-398.297256,6.787896],[-94.376541,-403.463882,8.119889],[-91.766556,-398.589187,7.655198],[-92.195267,-392.380340,6.725998],[-60.504532,-359.314346,10.213318],[-57.117813,-359.345474,11.959267],[-55.450210,-361.756881,14.380989],[-56.294632,-359.005294,16.698960],[-56.977554,-353.521835,15.868599],[-57.218643,-354.327087,13.116074],[-64.433853,-361.083099,6.686585],[-62.972061,-353.219330,10.899002],[-67.112076,-352.045974,10.496407],[-74.827591,-356.097610,8.447525],[-54.700210,-369.199493,13.021164],[-53.643021,-421.865234,27.741661],[-49.904251,-433.709259,30.164864],[-36.903396,-526.781952,62.912106],[-34.275467,-524.219482,69.979241],[-33.043655,-519.187317,68.028645],[-37.044876,-524.710266,56.448288],[-38.181656,-520.537201,48.174424],[-19.568313,-503.990204,84.818329],[-16.666092,-501.533539,85.609829],[-21.503616,-514.091583,85.282708],[-14.699356,-508.227417,88.176209],[-15.216202,-516.435333,90.179072],[-34.289261,-492.693268,73.891014],[-29.794510,-488.861236,72.593392],[-37.782486,-487.028961,71.648018],[-27.875381,-483.230072,71.362687],[-25.237015,-480.470611,73.188126],[-34.037369,-459.476593,61.463982],[-34.537247,-468.818268,63.392273],[-30.485855,-466.188629,64.765629],[-32.173416,-477.389953,67.135186],[-41.277725,-432.562408,52.357849],[-43.870376,-426.809143,51.264603],[-42.916031,-414.303772,49.608040],[-40.072037,-421.341324,50.739312],[-45.173172,-410.380005,49.302781],[-31.627273,-519.067383,72.279946],[-5.063431,-480.844757,96.801033],[-27.633438,-470.755310,68.433037],[-29.008621,-460.869568,65.677021],[-30.479019,-555.133789,73.055928],[-38.337112,-554.076660,45.598366],[-42.277969,-561.756775,41.463631],[-52.060623,-556.920471,29.295105],[-46.846146,-572.199524,25.333786],[-47.888565,-565.697418,25.629425],[-22.528885,-509.444427,85.031720],[-42.931473,-479.236297,69.497948],[-39.742813,-480.796783,69.729393],[-46.302383,-477.538482,67.681794],[-49.063248,-472.969635,66.082608],[-40.679581,-474.008148,67.187012],[-44.385574,-482.716034,67.862870],[-37.660965,-485.529663,60.363026],[-35.676346,-490.764679,65.154862],[-37.175796,-492.682525,71.706314],[-58.911575,-417.783691,32.666504],[-56.545914,-410.914261,26.727188],[-58.117813,-427.882995,35.780266],[-59.567581,-409.126648,30.401329],[-63.610123,-405.076797,34.060746],[-62.307144,-415.677795,35.817376],[-60.761612,-434.173828,62.723381],[-66.308853,-411.496856,63.772503],[-71.282425,-402.836334,57.407639],[-68.763687,-411.068222,61.883870],[-68.307144,-404.635727,62.998204],[-72.077164,-381.753616,47.814019],[-74.259292,-368.069488,53.977517],[-69.270279,-391.841491,42.032860],[-67.469986,-381.325943,33.934525],[-74.833633,-371.530700,58.378456],[-74.433243,-360.684951,61.785290],[-74.270218,-373.302261,60.075497],[-72.153458,-352.543594,65.864796],[-69.093155,-353.168426,68.482167],[-72.741348,-303.556205,51.134087],[-73.795364,-299.001297,54.305855],[-75.481521,-302.110679,51.824227],[-76.152969,-297.168388,59.871403],[-90.053116,-305.170204,61.178200],[-74.182022,-292.293983,63.852650],[-59.607254,-451.358734,54.076592],[-53.396011,-450.656875,19.160302],[-55.037552,-452.204376,13.390175],[-54.975723,-446.340805,17.006333],[-55.829849,-444.572784,13.947625],[-55.805130,-453.098144,11.305527],[-58.957291,-443.518951,6.876717],[-59.213638,-430.431259,8.386879],[-58.177139,-430.295349,14.331803],[-92.175186,-468.235748,20.797280],[-93.875320,-460.725921,19.323555],[-95.610428,-459.958130,11.508896],[-92.955521,-459.228637,4.695732],[-93.288162,-479.759979,16.893303],[-91.925369,-482.599426,20.004532],[-93.708633,-472.326935,18.697243],[-92.499649,-465.037964,5.133759],[-95.464737,-465.384155,15.164559],[-94.862198,-470.679901,15.106560],[-95.883499,-455.049469,16.320321],[-96.257339,-452.473114,13.171364],[-95.378616,-451.665985,8.005860],[-94.987198,-447.270706,17.800850],[-93.399795,-434.227722,15.130616],[-39.847000,-448.803878,27.720581],[-41.967789,-448.218490,31.588303],[-56.254349,-430.745865,16.428269],[-65.552994,-389.595413,0.709504],[-35.940201,-493.790497,44.656731],[-70.511734,-515.943542,29.232323],[-72.414200,-508.703033,29.218094],[-69.103165,-512.411651,29.444374],[-66.456802,-519.917297,30.670311],[-41.156021,-557.850189,38.108330],[-38.692642,-553.418243,33.548645],[-36.592056,-551.252533,48.496598],[-35.789139,-466.703674,36.799080],[-51.415481,-486.358123,16.281227],[-47.841995,-467.957336,25.406701],[-50.411209,-496.872986,18.297936],[-53.401077,-463.861572,13.976151],[-56.218765,-460.406830,10.290505],[-64.837112,-467.549743,5.816117],[-77.638809,-456.816436,10.000718],[-52.499466,-455.550567,19.527855],[-50.657669,-455.045776,21.670624],[-5.460342,-505.604187,89.775151],[-6.539749,-472.575012,98.857323],[5.459885,-530.519165,79.254742],[6.239121,-535.875549,74.324784],[34.074326,-629.159759,113.691531],[37.575119,-637.038055,109.517718],[31.112473,-632.272857,115.005451],[32.714523,-637.792816,115.877649],[30.185043,-628.212494,114.303702],[32.544846,-653.981476,134.246000],[31.593674,-652.892669,131.184385],[39.555893,-653.613006,127.025523],[13.564987,-639.275421,147.731566],[10.733566,-635.509308,146.570115],[16.649643,-648.064178,153.167046],[28.157822,-638.585205,129.258576],[38.467270,-645.180206,111.470195],[45.927170,-653.040985,118.396269],[50.810654,-653.789795,111.953675],[46.903183,-656.725952,123.903393],[42.611862,-645.285339,105.434779],[61.688278,-664.789673,115.303426],[54.355148,-657.498962,113.606777],[66.405930,-665.793731,107.031753],[60.957871,-661.492157,110.031010],[66.127792,-669.100647,114.647977],[65.854904,-671.913574,119.246581],[70.826096,-672.326355,109.931852],[69.815903,-676.823730,118.426890],[73.819809,-671.019653,97.246193],[63.751938,-654.937469,83.781838],[59.913925,-648.451996,75.557534],[61.961594,-647.751037,69.860325],[57.639755,-651.802520,89.245224],[51.935043,-647.837585,90.631522],[53.280014,-651.142700,98.146759],[45.562485,-643.799682,92.452557],[55.897324,-607.068206,23.460320],[57.767075,-602.833130,27.368538],[61.384873,-602.224853,24.566559],[62.879990,-607.544342,20.983567],[57.018479,-600.796508,27.409539],[52.686203,-599.194854,26.341439],[52.840622,-603.270416,29.756104],[52.169724,-606.865966,28.975762],[55.661789,-602.686828,29.572197],[44.267929,-600.757538,25.582665],[41.246384,-594.515106,21.665657],[55.608505,-597.983123,22.649750],[130.295151,-720.665313,29.103157],[133.219956,-720.370575,23.100144],[147.459091,-737.019745,26.891915],[147.454880,-741.276214,36.865296],[152.094406,-748.436126,39.322319],[156.132980,-747.577728,27.329735],[160.882431,-751.275543,21.718529],[169.000473,-760.341583,12.588456],[149.829270,-737.421539,15.391671],[161.949387,-750.893524,15.149918],[152.173813,-741.820160,22.199448],[163.708054,-764.120819,-19.009575],[167.292954,-768.090912,-14.422035],[168.441330,-770.989532,-19.705528],[172.365830,-771.975677,-26.456123],[173.696945,-784.260650,-29.328025],[169.445541,-770.946930,-12.085212],[170.173142,-770.631561,-5.716308],[170.685532,-769.303985,7.116402],[167.723557,-758.841461,16.181740],[158.708664,-752.009857,29.952073],[152.818710,-744.809601,31.656029],[159.757492,-771.913299,58.200928],[161.214523,-771.478546,50.287445],[157.896774,-769.104889,52.803299],[162.101547,-770.569977,45.386856],[159.082199,-762.388641,42.622826],[155.210373,-770.365387,58.308377],[157.111923,-771.402008,57.647103],[157.998764,-756.776947,37.825898],[62.191513,-701.895233,142.722857],[66.657028,-695.395996,136.025147],[49.769028,-712.792511,154.248581],[10.710617,-684.332428,165.480267],[16.869919,-671.053833,155.436375],[19.646958,-665.667999,151.129414],[22.185288,-678.298370,158.592396],[29.445664,-675.842804,155.478699],[29.833725,-688.644592,163.427628],[35.332077,-678.955322,155.716854],[19.882065,-688.815704,166.078949],[1.934494,-680.390411,165.170227],[1.173935,-672.023102,160.344681],[-5.052566,-668.250457,158.187951],[8.055649,-676.428222,161.449925],[-35.567703,-701.737121,169.682377],[-38.933792,-711.523346,173.912987],[-32.225540,-712.042572,176.343163],[20.117050,-718.489166,171.818051],[17.722092,-712.548797,169.233685],[14.817673,-719.254669,175.047146],[24.810837,-721.527069,171.024052],[31.222580,-722.983917,168.214169],[39.269028,-721.739349,163.607705],[48.396103,-727.818145,163.844574],[40.479233,-731.062652,169.375515],[2.462509,-720.394867,180.626973],[60.179855,-771.682098,174.030190],[64.262436,-770.357269,169.828545],[66.440537,-771.847015,171.008995],[77.238022,-773.885406,173.986042],[82.419174,-772.311920,163.849102],[82.337692,-771.338165,160.708451],[83.816757,-764.699981,156.417534],[87.671250,-761.991485,151.898650],[91.913986,-769.417450,150.527081],[96.694565,-770.512115,145.630093],[98.970688,-767.003936,141.029202],[95.616867,-759.437103,141.490153],[99.652878,-761.702423,136.412630],[100.439377,-752.129181,130.832302],[104.369003,-753.502227,121.414274],[105.898789,-748.802765,113.590343],[106.036972,-753.621185,117.800523],[102.655441,-764.777923,134.572148],[103.102158,-759.847809,129.340876],[105.182480,-759.852142,125.172623],[93.434311,-762.245697,145.928851],[82.696091,-755.165069,154.134625],[89.844162,-771.902008,155.413823],[87.594101,-773.237701,165.709228],[83.768479,-773.037018,168.900383],[87.032639,-770.780060,156.274529],[116.728317,-780.731231,129.584462],[107.272446,-786.676788,141.289145],[111.334030,-795.140716,135.374945],[93.151108,-794.951751,86.997925],[16.894272,-794.966766,73.011238],[132.866562,-795.025665,71.554253],[127.683945,-794.922577,111.151477],[123.790878,-794.980255,118.919010],[115.475327,-788.331939,130.753933],[131.899155,-794.829315,108.628780],[118.132553,-773.512726,126.747047],[122.910996,-773.277252,119.583187],[119.558212,-772.138397,118.184478],[122.929672,-775.615143,121.317987],[128.998154,-775.099395,112.987152],[134.255966,-782.128448,106.079644],[141.570114,-794.959442,96.649247],[130.338730,-786.691009,111.157946],[127.239060,-773.806732,114.657147],[11.741745,-633.809021,137.134916],[21.170944,-547.222717,34.448502],[36.759262,-535.425049,10.237290],[57.741135,-527.340851,-20.167793],[58.555893,-528.652710,-18.822410],[59.998703,-526.865265,-22.338768],[62.332260,-524.524841,-24.918602],[26.223679,-547.676056,16.498223],[27.679794,-503.036224,-27.447792],[33.532700,-496.451660,-35.374305],[42.269272,-533.875122,-29.134040],[57.230393,-461.343078,-6.015525],[50.928208,-454.707061,-12.118279],[49.296127,-468.457855,-10.376579],[58.576523,-451.940948,-7.451744],[65.309860,-447.710525,-2.539909],[69.566086,-446.586853,2.798195],[73.960373,-440.741882,7.768181],[73.688095,-433.088897,6.714714],[63.658310,-456.446136,-1.504905],[67.627915,-457.306335,3.419381],[40.901779,-504.722900,17.280426],[48.084946,-504.071472,18.313950],[46.113571,-491.967834,16.870095],[43.672897,-486.079681,14.880181],[43.558212,-481.210174,14.577134],[55.696823,-507.662689,20.253456],[56.910996,-508.857544,18.471482],[51.739182,-518.701660,20.738190],[50.940720,-515.989990,21.256462],[43.942062,-516.623016,20.507912],[35.701767,-512.265228,18.594521],[41.775864,-497.626861,15.955330],[45.837875,-499.471527,17.447686],[19.848374,-500.288421,16.824654],[27.776413,-496.608795,13.355278],[33.540085,-499.199707,14.215538],[36.330063,-493.038513,13.476715],[30.752609,-582.527282,11.818207],[40.609238,-583.041351,8.935837],[42.750229,-576.683716,4.461190],[44.278549,-590.275177,19.902581],[46.075668,-582.861145,14.922158],[46.913681,-575.484192,9.014069],[49.163254,-572.785919,7.670670],[51.419357,-569.230163,3.075661],[51.203354,-564.754028,1.556244],[49.108261,-596.867798,21.368935],[53.115830,-597.624084,16.950371],[59.042221,-599.847076,13.891152],[24.271042,-568.003967,22.646363],[49.582810,-555.000793,4.786057],[53.364609,-551.270660,6.233124],[51.095871,-552.133636,5.690255],[62.236679,-555.044098,7.611153],[62.535080,-553.886688,6.325989],[81.123520,-542.474426,-22.637794],[78.063706,-537.233673,-23.203271],[60.170151,-560.909912,4.519570],[53.276596,-580.237365,9.642136],[55.742600,-578.001495,3.292824],[53.821945,-616.516449,25.432480],[83.746384,-605.106506,-5.725814],[81.126083,-597.272064,-6.914497],[87.895249,-604.625152,-15.495155],[87.069748,-607.949218,-54.900444],[78.216171,-575.809112,-72.240060],[74.953964,-571.562957,-77.650948],[88.975083,-637.412170,-84.399208],[89.171921,-611.421203,-68.718589],[85.413742,-614.941467,-69.451011],[88.379624,-611.556183,-72.905998],[88.177414,-608.236358,-75.499673],[86.438095,-613.777832,-62.943444],[78.497849,-604.884094,1.079338],[78.776718,-600.331299,1.555245],[129.897141,-676.464782,-12.101371],[140.483383,-703.935516,-47.764045],[143.931015,-711.683563,-48.825065],[144.477097,-712.986725,-42.646705],[147.163864,-719.387603,-38.979057],[147.139633,-722.437896,-29.079582],[145.016464,-717.092621,-23.457206],[143.395065,-709.977874,-30.788581],[142.917465,-709.258575,-39.017479],[142.088486,-706.092437,-38.304710],[143.567795,-709.479156,-24.055839],[143.901108,-713.930511,-18.142173],[143.069687,-713.931793,-11.446907],[144.986801,-715.329315,-32.769828],[153.123886,-736.443695,-75.923699],[151.030991,-725.862823,-46.090035],[47.571701,-639.650665,76.934349],[55.191086,-642.945892,71.285691],[50.844833,-642.713440,78.751511],[36.470993,-628.791809,70.129815],[63.261459,-643.659393,59.257904],[55.614060,-639.863372,64.151619],[43.257431,-639.494049,84.434845],[55.240952,-647.464782,82.761300],[51.583237,-719.975311,157.326241],[80.414597,-740.860138,151.518679],[86.570969,-741.484405,146.226564],[97.601303,-694.205658,70.495064],[96.647690,-697.357086,79.788014],[99.265610,-705.924774,83.179051],[97.477646,-704.149810,87.464539],[98.068894,-714.417877,105.037236],[97.162399,-717.463043,112.737478],[87.946579,-715.206756,130.204411],[109.613144,-727.805145,72.625378],[115.003830,-729.852020,63.205216],[127.783920,-735.911712,52.552773],[128.359238,-744.091034,63.202038],[129.199387,-754.513580,76.465916],[131.138779,-755.494842,74.516446],[132.852768,-758.814666,75.250504],[133.536240,-747.760711,62.586380],[144.652268,-774.929840,92.576367],[143.265915,-773.033844,92.475209],[147.045212,-773.376922,88.701260],[148.420578,-772.577118,83.200955],[37.884873,-633.411560,77.793763],[112.960983,-733.871490,75.047432],[107.266647,-725.871734,75.652138],[108.439926,-732.340057,83.589722],[104.902146,-720.233062,73.773423],[119.739487,-735.051544,62.635067],[112.170090,-741.363128,88.663842],[116.006394,-743.706878,83.603108],[119.815354,-743.692535,75.239476],[118.551315,-739.399566,70.348446],[124.017990,-736.762726,58.097092],[124.744675,-744.302887,68.183346],[125.253037,-757.116180,86.614109],[123.074570,-748.030487,76.263169],[83.950668,-684.610107,90.044695],[81.145126,-677.544281,86.132058],[96.494797,-740.494293,130.347301],[98.850144,-747.024810,130.985608],[97.560227,-749.376312,135.146543],[101.038132,-742.264312,121.420856],[102.956162,-743.942291,117.379518],[88.152756,-753.543914,148.922152],[91.780075,-747.739471,142.077853],[93.988205,-745.649261,138.556271],[92.465927,-756.081329,145.027933],[105.457871,-703.442047,49.463524],[112.151779,-753.028351,105.224614],[124.400681,-768.874237,103.101046],[119.879013,-770.922088,114.250218],[116.524338,-770.663543,119.716319],[114.190903,-764.917328,119.022674],[119.559311,-764.842926,108.548584],[130.952011,-772.272247,99.858176],[125.032517,-772.155792,108.705772],[133.367294,-773.052887,103.387516],[138.756943,-773.190094,97.899454],[122.529343,-770.860748,109.362304],[176.816391,-771.668914,3.747025],[174.668808,-774.271942,-21.477914],[161.750534,-794.922027,-30.280784],[143.314682,-729.158905,18.644188],[137.389145,-726.161834,26.815613],[142.030502,-721.868255,4.327065],[138.448898,-720.563385,11.442734],[165.509262,-791.369903,-84.769172],[166.435532,-794.902008,-79.268638],[165.312241,-794.827850,-86.618446],[162.410629,-794.910797,-84.972709],[163.646347,-794.882477,-96.919670],[161.611618,-789.161773,-106.670677],[168.369553,-794.853546,-66.413246],[167.309189,-783.464813,-71.740165],[170.650620,-794.847137,-50.235985],[169.776962,-794.840606,-56.145378],[169.077866,-794.900360,-61.454017],[177.530319,-794.972747,1.502198],[162.139938,-794.976227,7.042946],[155.184311,-733.059356,-52.358360],[157.508225,-738.452423,-51.192192],[151.943710,-728.786773,-40.429176],[140.554978,-717.082428,-78.407646],[155.219589,-771.615509,-114.210472],[155.284714,-772.698639,-124.214668],[148.982346,-771.741424,-140.487419],[151.883896,-772.653167,-138.386711],[149.126145,-772.540680,-149.729789],[151.341293,-774.255706,-147.185478],[151.540085,-776.257599,-148.606560],[153.431320,-774.216583,-136.924614],[144.127060,-771.313751,-148.877831],[134.435959,-769.212616,-159.539330],[132.832504,-770.014557,-162.699394],[134.823837,-771.231537,-163.036767],[138.785263,-773.578521,-171.058006],[129.659287,-773.203216,-178.264396],[132.724045,-787.275665,-177.583946],[147.007553,-778.137970,-166.167442],[143.793137,-786.580230,-168.462516],[124.834274,-785.862457,-184.209649],[123.515427,-795.087188,-184.247642],[133.123398,-775.294403,-177.794975],[140.576828,-774.994842,-171.501091],[122.618637,-772.195953,-177.697868],[120.947556,-771.139923,-176.317192],[132.790878,-795.072052,-176.747765],[137.903977,-795.247223,-172.595024],[146.612473,-795.113739,-165.548210],[101.919174,-758.981903,-185.400108],[98.802109,-767.108368,-192.895317],[91.286728,-774.189361,-210.387870],[87.462387,-716.706268,-172.707145],[75.936508,-773.031463,-219.673057],[70.470749,-774.239959,-226.817527],[64.171188,-773.292633,-230.002587],[28.342392,-772.829986,-251.560631],[34.663742,-770.689911,-242.110435],[29.073349,-795.017120,-258.151481],[73.630905,-794.913482,-224.249322],[156.854233,-740.301056,-43.832161],[150.196701,-734.052887,-24.025825],[151.039414,-736.912811,-14.692436],[153.325607,-742.066436,-11.586631],[154.817795,-747.146087,-21.573478],[81.452438,-590.764312,-26.997673],[76.906662,-583.644622,-19.073951],[77.869003,-579.121002,-30.125953],[78.577377,-584.151092,-28.545814],[79.926376,-586.839721,-32.288978],[82.340988,-588.485351,-51.659462],[77.397751,-581.208130,-38.915763],[76.703842,-575.705139,-39.046853],[74.893723,-614.530426,-118.913551],[77.645310,-612.639740,-96.548927],[88.887985,-610.047546,-65.804390],[81.171982,-583.239258,-79.315895],[82.067612,-582.494659,-75.074028],[79.242355,-577.800049,-53.412422],[76.942185,-576.214660,-43.380073],[79.649765,-567.639038,-17.992790],[80.347946,-550.231598,-26.474281],[33.834335,-530.896484,-31.659050],[30.497177,-516.404083,-29.843423],[35.303574,-517.649475,-37.922432],[38.787705,-520.408325,-42.797218],[35.963242,-528.667633,-40.136238],[37.120651,-509.081939,-39.581855],[38.996994,-495.660736,-40.198616],[39.353500,-486.735809,-40.827843],[37.884140,-475.863952,-40.861610],[35.888474,-476.906280,-38.893455],[35.496201,-464.299347,-38.547813],[33.234848,-471.647430,-34.206337],[30.198166,-504.678650,-31.430061],[33.280014,-508.210602,-35.150962],[30.814560,-491.216125,-29.192131],[42.501694,-497.561371,-42.022026],[52.349472,-468.419403,-45.443885],[32.703537,-478.530273,-33.915428],[34.568039,-461.264984,-36.666877],[39.464523,-437.020187,-38.570396],[49.166550,-435.032287,-18.790794],[53.778916,-413.196151,-14.177009],[51.981857,-400.992828,-15.033851],[65.469589,-416.191223,-7.187950],[68.505356,-431.732650,-2.453285],[69.646713,-417.873718,-4.821746],[71.158249,-409.352493,-5.644882],[71.621018,-414.541824,-3.278656],[61.944138,-410.169388,-10.123039],[57.391708,-420.812637,-12.342491],[55.900803,-401.181488,-12.609245],[70.405197,-427.472610,-0.736641],[60.932541,-430.370453,-9.158333],[69.802292,-444.848755,27.939469],[63.799179,-451.996246,26.481896],[64.587082,-439.601822,27.802597],[70.179550,-438.260421,29.036133],[59.260788,-452.033905,25.134240],[87.219589,-383.912841,27.433976],[90.025070,-375.979553,38.301262],[87.863815,-375.361023,41.920037],[89.575241,-364.609176,44.339981],[76.177536,-392.665054,38.676659],[78.344772,-380.526642,41.244027],[75.302719,-455.016967,18.250092],[71.790939,-460.483001,22.509072],[54.184128,-453.177246,22.733033],[61.394882,-440.006103,26.657196],[56.853195,-488.578247,3.122857],[35.158432,-516.480346,-4.920120],[36.151169,-502.400940,-9.816398],[24.510788,-533.225250,-15.148933],[23.881333,-537.351074,-11.370872],[53.179978,-459.404846,-8.904899],[42.199875,-403.894729,20.678284],[36.792343,-414.808838,23.550743],[41.135300,-399.713730,24.762780],[41.312607,-397.225692,29.313614],[43.003647,-397.021179,22.984085],[54.397629,-377.981537,27.196267],[57.970749,-363.466934,31.619774],[31.815292,-447.317108,40.492890],[35.415878,-429.866684,40.166222],[34.309555,-438.154541,38.973946],[35.371262,-430.766250,35.291794],[69.820175,-294.453750,56.276986],[73.330734,-282.023170,62.046540],[76.326523,-277.351303,65.505146],[71.826218,-277.651931,63.594536],[73.866989,-299.544189,55.973015],[72.589951,-268.909195,67.700600],[74.298996,-247.850723,77.087849],[70.331589,-272.961410,65.798787],[68.382248,-265.356773,70.282406],[61.506455,-239.694267,98.923117],[67.493759,-223.444910,96.430142],[64.364853,-225.775612,100.441389],[81.166794,-181.448135,103.403407],[81.775192,-190.950425,100.002550],[83.118393,-174.828720,106.480918],[84.826645,-188.201559,103.024472],[87.231125,-183.733472,106.863128],[87.990585,-256.324978,82.902718],[90.743698,-255.131572,84.957642],[102.532578,-231.813324,85.047318],[100.145737,-242.688148,87.985875],[102.924301,-221.044765,89.418206],[96.242172,-207.564084,106.177691],[101.665756,-217.849994,97.144062],[100.489426,-232.167877,92.254429],[96.686936,-232.582687,95.366930],[97.556015,-225.290338,98.540814],[92.017624,-225.489904,97.213152],[98.136276,-217.448873,102.124667],[99.310654,-232.169162,94.447132],[100.495651,-220.338951,99.142567],[97.812058,-199.740654,109.372995],[99.146835,-239.833416,91.317849],[98.604050,-249.489895,87.167542],[97.456894,-241.453197,91.544690],[90.585861,-272.814598,77.668896],[88.030991,-273.015594,76.555752],[93.427475,-253.265823,86.410180],[96.903244,-256.924366,84.636078],[98.462448,-279.553230,71.801281],[96.766525,-277.433525,74.999379],[99.390427,-256.813469,82.341366],[101.360336,-248.103637,80.936890],[104.196640,-234.850200,79.252869],[103.506516,-245.806163,75.822869],[104.041306,-226.152551,73.124489],[104.748337,-214.145376,76.849106],[105.632736,-208.726925,80.693756],[103.584702,-191.875107,77.357026],[102.931259,-193.414371,71.926495],[106.509262,-182.153166,69.170876],[110.266770,-189.036277,60.866105],[110.675278,-191.304443,56.601715],[97.925156,-186.950230,46.598626],[95.542282,-197.961435,41.268074],[89.413254,-192.017384,31.190331],[111.321579,-183.080064,59.471356],[111.212082,-181.250771,63.137047],[112.083664,-174.897354,63.199929],[112.673935,-169.756582,66.095993],[113.530380,-161.834263,68.217362],[112.334519,-163.806625,65.569527],[102.262314,-173.108444,53.696549],[102.517685,-155.667602,58.741822],[110.948166,-175.534012,66.846974],[112.325729,-164.015653,71.047291],[107.011337,-170.774448,74.016423],[107.059921,-158.725834,79.803349],[104.708237,-163.825775,86.373742],[104.806625,-165.937141,88.371422],[107.560349,-161.013069,97.022940],[108.373154,-165.410387,101.507355],[105.738754,-158.680046,92.357085],[109.406479,-148.062038,104.461743],[109.022080,-152.343795,105.332056],[108.226669,-141.914982,111.615950],[106.936936,-135.920993,115.909268],[109.757004,-139.834968,110.651349],[106.571335,-141.460296,96.358012],[106.965256,-145.686226,98.317423],[109.153610,-156.091362,102.163903],[105.360947,-156.150802,89.491345],[109.079819,-178.937301,67.830895],[105.114975,-161.995475,84.297490],[104.301071,-172.742752,78.094986],[104.013168,-175.073692,83.146759],[105.199021,-188.327281,84.639832],[105.898544,-176.138408,89.437004],[107.174790,-190.772695,89.494164],[107.981735,-178.078060,93.522618],[108.661423,-166.579580,98.144770],[104.303146,-175.769027,84.721894],[103.890610,-184.260995,72.240120],[103.497055,-181.626804,76.768471],[103.746750,-193.924457,67.717625],[103.571640,-201.448668,75.043717],[102.020187,-205.896656,66.821835],[101.979782,-211.630000,66.032147],[101.890732,-221.689247,64.279404],[101.163437,-234.993927,60.500573],[100.814987,-228.614082,57.796170],[100.693771,-229.686851,55.460335],[101.996079,-223.193245,55.345894],[104.333115,-216.911905,54.123749],[105.236862,-206.770482,57.846589],[107.603073,-211.242243,52.269104],[101.914108,-215.760690,60.949440],[103.245712,-211.030227,59.408154],[108.312180,-204.971289,54.310135],[108.779282,-204.905043,51.412621],[103.023239,-198.585135,66.056904],[106.343979,-193.776213,63.367394],[109.849167,-196.385634,57.179741],[104.533737,-222.442783,84.171471],[106.186203,-208.330448,86.985196],[106.326767,-210.273419,84.021733],[104.072128,-183.537641,82.002060],[103.447373,-186.198213,77.671387],[104.822800,-177.088066,74.053296],[105.337509,-223.975433,78.929413],[104.015793,-211.792655,90.674422],[95.616501,-253.279632,86.563107],[91.348862,-265.099327,81.422135],[94.396408,-269.644508,79.009198],[97.337875,-267.955284,78.702896],[95.174179,-163.460037,121.894896],[95.076950,-153.209110,125.910047],[95.386765,-171.638538,119.209402],[94.754196,-177.139599,116.770228],[100.645676,-172.695568,118.291640],[95.374680,-185.189898,114.215348],[101.743637,-204.520859,104.464695],[101.811508,-196.271164,107.943486],[99.290512,-207.619224,106.166006],[100.123581,-199.407053,108.885394],[103.225571,-199.396655,99.091368],[104.242050,-197.387956,96.052880],[106.440781,-195.876882,91.110236],[106.993210,-198.225606,87.937809],[107.528305,-185.920989,93.638274],[111.367478,-173.016498,61.707104],[106.516220,-174.030433,56.843529],[99.660690,-171.437961,51.697449],[99.196518,-163.761898,53.015969],[99.907333,-153.121803,56.040368],[95.366562,-160.460663,45.891076],[98.961777,-180.201518,49.052636],[104.931564,-181.253782,53.601555],[108.930771,-188.359848,54.162476],[109.821640,-182.378442,57.109635],[96.319565,-167.495765,48.048203],[97.808457,-153.674106,52.082581],[102.199570,-193.486659,47.597847],[107.101242,-201.036942,48.680848],[89.435288,-204.390896,32.378121],[87.781113,-219.145239,28.380059],[86.105271,-215.255319,24.740754],[83.738571,-226.397216,19.842522],[90.034348,-216.819189,31.704476],[84.834580,-219.684227,19.914986],[103.284531,-205.546588,44.169228],[106.804001,-221.387186,45.468781],[105.977951,-230.604404,44.267296],[106.234238,-221.127449,48.687958],[95.847031,-225.920910,34.434693],[93.859116,-128.739258,134.484973],[97.930283,-154.791450,126.359974],[48.376450,-144.497268,145.445128],[3.891220,-77.197525,158.407769],[3.976853,-91.281509,151.900624],[0.196945,-91.100067,157.777405],[5.279953,-82.618362,154.685395],[5.357712,-100.079330,148.044957],[0.717758,-107.243370,148.122122],[47.536362,-95.544357,157.475776],[21.363693,-31.971771,174.724400],[23.480454,-10.860946,182.785588],[21.088425,-12.899139,178.750252],[20.053635,-25.551712,174.369625],[18.621079,-28.908065,172.166703],[16.294479,-18.169098,172.353234],[2.591049,-74.637001,159.941468],[8.705429,-62.140228,160.401955],[10.848129,-66.853500,158.319481],[8.135117,-72.123314,157.303067],[115.323593,-147.295982,75.309140],[108.150131,-143.733673,67.138947],[104.973190,-155.690124,61.093022],[107.884873,-163.620010,61.279778],[111.409226,-151.696090,68.204171],[105.367416,-70.689567,140.778468],[103.869125,-40.782211,150.338032],[107.367294,-41.148269,144.015232],[108.231186,-58.713379,137.462303],[109.111862,-70.475013,132.286765],[109.531174,-79.142761,130.969216],[108.553879,-71.853080,134.044928],[106.869370,-69.988922,137.305127],[105.612351,-62.332946,141.694117],[105.441391,-82.247863,138.209122],[109.845871,-85.139106,128.459279],[110.550278,-94.254013,126.634097],[107.092575,-82.990646,133.768901],[107.016342,-29.639892,148.096581],[109.437912,-38.240570,138.926558],[112.223862,-40.871856,131.661173],[115.654343,-43.363968,122.687023],[112.687851,-51.989349,124.253835],[112.998154,-62.155563,118.198239],[114.630905,-55.118881,118.446978],[113.875351,-66.207840,114.660401],[115.486862,-62.419601,114.387947],[115.922653,-74.225853,109.130348],[115.374069,-81.937782,106.382856],[120.318039,-71.231277,107.310819],[113.479843,-77.610412,110.397400],[109.823105,-52.651245,131.695321],[108.722336,-54.202743,135.050282],[108.817551,-44.174713,137.400984],[110.445419,-46.691101,132.687019],[110.223923,-65.000671,124.144512],[110.501816,-73.812217,120.260264],[109.414353,-83.837967,123.919115],[109.054550,-62.395141,131.583417],[110.725632,-61.751571,123.805719],[119.589340,-45.036194,119.218028],[121.456650,-39.113311,117.677069],[120.644760,-22.817001,119.267548],[121.093430,-14.438583,120.770433],[120.009018,-23.017975,112.309778],[121.104294,-15.124481,126.358097],[120.653122,-20.671524,127.245601],[114.404892,-23.057983,134.602818],[115.909592,-15.188659,134.132999],[120.999130,-33.746444,121.370593],[119.522934,-33.102844,124.020628],[113.906235,18.273514,150.224348],[111.162705,31.581086,157.282757],[107.862961,40.277008,162.981690],[114.306137,37.861740,156.813565],[105.076584,54.552155,161.113957],[100.188767,53.838486,167.130646],[106.998154,58.922226,159.630089],[104.761154,61.781617,161.802163],[96.623032,-17.084167,164.071236],[94.538681,-11.190475,166.834393],[87.521591,1.940506,175.268837],[94.211044,-1.168914,167.019173],[83.981308,15.962372,178.604813],[84.585434,27.372193,177.623101],[85.757187,35.305863,175.975903],[95.787888,45.676087,172.851601],[102.682724,29.558884,161.518338],[98.652695,29.102417,164.719475],[96.620834,27.377915,164.697777],[94.075729,35.027420,169.982743],[89.167648,40.446778,176.455868],[103.679123,24.068894,158.978047],[110.576889,19.311631,152.818522],[90.710373,30.187775,170.942864],[88.514633,20.136734,173.253476],[95.586777,11.408737,165.293068],[94.327133,7.648804,166.693394],[87.198715,36.495499,174.927636],[100.125107,48.645798,170.032700],[103.959335,44.998535,166.932801],[102.910446,41.475983,166.605458],[104.092270,49.689957,163.720276],[106.228562,45.235657,164.421795],[89.392624,-11.746658,173.698647],[120.598679,0.189820,132.402167],[120.394150,-10.832046,129.721988],[117.626022,-7.183670,133.446089],[122.170334,-2.061660,129.101820],[123.701645,0.673111,132.400699],[127.629196,5.889511,125.488117],[117.922226,2.662247,135.786573],[137.853867,19.238159,99.284222],[159.988388,9.888077,56.057595],[170.527146,13.693726,45.885079],[171.750290,5.230851,42.123436],[179.596512,17.889344,39.210541],[171.380722,12.525864,41.611542],[172.972824,8.475434,37.128235],[121.143784,-3.200180,128.385839],[131.742539,-8.750183,120.128548],[156.977341,-17.346924,67.740303],[150.245163,-14.503570,74.083119],[151.890122,-9.594818,74.508973],[153.199753,-8.623901,71.785172],[148.053452,-2.855636,73.043999],[158.494248,-13.557266,64.283451],[154.045761,-10.209671,65.397122],[156.234055,-13.286712,69.658776],[123.035385,9.107636,132.157453],[117.452683,10.410370,140.916088],[113.191879,10.164643,144.479453],[116.632919,16.143463,146.529244],[89.176315,-48.087890,167.475510],[108.535019,-94.675491,128.781647],[110.302353,-97.974388,126.044538],[111.004624,-127.788818,87.717297],[109.138046,-100.513168,111.817388],[110.004807,-92.936081,112.093836],[109.921982,-84.978340,117.500672],[111.020615,-82.038818,114.064683],[112.381455,-74.909073,114.051814],[88.519638,-41.029602,169.842774],[84.413986,-37.474456,168.418953],[81.718979,-32.351349,167.844056],[85.187912,-28.899139,173.369378],[51.897324,-18.538315,173.247452],[105.565170,-6.341186,152.706170],[100.962937,-2.321060,159.017365],[99.553452,4.587494,160.945237],[104.216477,19.247818,156.966244],[103.682175,2.654969,156.124127],[106.090805,12.038239,154.319504],[109.078354,8.044602,150.058329],[106.306809,18.820740,154.418888],[109.441940,14.891419,150.099703],[112.370834,23.863129,153.772072],[95.682175,-44.716781,164.653656],[61.193588,-28.327270,171.359124],[106.152207,-151.290794,94.908692],[94.206650,-178.839435,43.222367],[92.385971,-195.423888,38.352822],[96.158859,-178.422069,46.283516],[91.492233,-190.995030,37.271805],[92.850449,-172.505922,38.752533],[92.758225,-178.546360,39.810677],[120.099838,-90.440307,66.985760],[122.610825,-62.220352,79.619530],[131.061386,-62.594238,78.546658],[119.100388,-78.862190,30.508301],[114.215134,-71.683777,25.006180],[119.073654,-67.745071,22.054444],[124.542343,-59.637588,25.769379],[123.212387,-57.207870,30.907769],[123.465378,-57.325897,37.740502],[127.791672,-46.451034,47.792145],[124.514816,-50.526794,40.386956],[127.918747,-44.032409,39.180787],[131.116806,-46.055526,35.668641],[133.719956,-41.827575,43.082360],[140.793015,-44.775863,54.580216],[130.725632,-41.457596,52.653458],[138.533859,-37.712082,57.811226],[139.505417,-41.018112,55.148682],[131.530380,-40.367263,41.996430],[130.882065,-39.549606,45.821900],[132.774887,-37.721756,48.071274],[134.600327,-38.002395,48.283814],[136.161972,-40.097671,49.480370],[121.293930,-64.661972,34.189560],[111.345749,-79.055267,18.911065],[110.544296,-80.992271,15.557236],[113.227951,-73.614372,19.776528],[121.664108,-71.417183,17.332459],[124.860703,-63.735336,21.578362],[126.949143,-61.149185,22.788994],[127.095810,-57.738632,26.634034],[140.814011,-35.305084,65.132924],[149.319077,-34.882888,70.542469],[153.971298,-36.184845,64.075802],[154.018723,-38.834991,56.119591],[135.767380,-32.765365,67.136349],[135.318710,-35.914306,60.819603],[135.045334,-24.104828,97.366103],[141.357407,4.637513,90.624226],[139.937607,-1.766479,95.060692],[142.241928,-6.790176,98.859080],[144.813339,-11.150650,91.209902],[151.656540,-3.748687,41.709885],[165.574875,21.535675,58.977959],[166.936142,19.853272,53.971505],[161.113327,29.110459,64.562577],[156.735947,55.112580,71.436798],[151.125473,58.292816,81.206391],[169.424667,32.410599,56.055695],[171.469162,37.217713,50.065545],[114.799667,-203.156272,-8.861213],[122.026413,-188.595550,0.102936],[118.645126,-155.864273,40.681328],[116.824509,-165.338607,35.836686],[112.527207,-161.789016,35.307198],[115.957626,-175.070827,31.219155],[129.666977,-79.661590,57.000527],[129.515244,-80.625427,53.805741],[129.874008,-53.089523,66.657647],[118.555954,-63.393982,79.067009],[120.158249,-85.246475,98.469199],[131.257919,-32.059738,84.935177],[131.739609,-28.878326,89.389897],[130.805832,-27.011642,93.751921],[125.294785,-12.582870,108.821947],[121.919235,-8.798385,118.575920],[133.234055,-46.951202,39.687821],[132.593491,-53.975738,34.350563],[128.301743,-53.181534,29.092339],[130.609482,-56.218094,29.892022],[136.474533,-49.060028,45.267968],[141.260666,-52.658401,49.773171],[140.139694,-55.814193,45.239365],[145.549545,-60.507232,48.431404],[147.406113,-76.221389,38.438530],[150.086411,-74.144142,42.315956],[152.812668,-82.813942,38.200310],[152.434433,-90.852638,32.405945],[148.538132,-89.375427,30.040764],[146.194016,-89.279106,27.675705],[141.761215,-90.922638,21.298249],[133.752426,-78.865471,18.005356],[138.030869,-93.677810,14.830193],[143.064743,-100.967712,17.526329],[146.668442,-99.893089,24.354073],[149.556687,-94.150657,28.790490],[156.078476,-92.010063,34.117302],[156.369553,-61.929657,52.344704],[156.434860,-100.465217,31.595887],[160.553940,-101.169067,31.841858],[164.704453,-95.287803,31.369690],[163.098251,-99.043838,30.109314],[162.520004,-91.299354,33.151360],[159.446640,-89.693565,35.301300],[134.577377,-95.667602,9.611443],[134.219895,-88.281273,13.445298],[133.333664,-57.461410,33.810021],[137.767563,-68.343811,32.672020],[150.057175,-81.312149,37.478798],[143.641770,-83.952041,27.331910],[136.844528,-55.468048,41.439492],[129.905441,-64.218933,23.810852],[125.880844,-72.254409,15.957894],[131.114426,-68.441566,22.655854],[137.877976,-78.054985,23.952477],[143.989487,-75.533333,34.188805],[131.807358,-63.669632,27.080941],[138.245896,-64.024551,36.222939],[141.595505,-63.758453,39.658913],[146.571701,-69.305740,42.367127],[133.013962,-108.399551,0.764351],[136.814804,-120.672386,-4.685325],[140.168015,-120.937462,-1.567154],[135.745224,-108.471275,2.913735],[162.361191,-147.783153,2.765229],[160.220261,-148.738826,2.049248],[159.627060,-151.171261,-2.812118],[155.274460,-143.060978,0.498093],[129.242355,-87.501678,9.169396],[130.926499,-100.180732,4.005539],[148.255417,-84.784012,32.515160],[159.520554,-76.123504,41.624291],[163.322067,-67.785690,42.657143],[160.524094,-80.902603,37.748932],[144.006516,-34.211197,72.054715],[160.379624,-34.571121,64.101677],[167.146774,-33.781814,57.296509],[158.669968,-35.546127,58.984929],[159.006943,-34.240966,75.468071],[154.609909,-34.462417,71.169533],[145.725388,-38.601196,63.416050],[155.811752,-114.532333,23.694733],[156.483383,-107.864669,29.163659],[158.732468,-107.400032,27.166092],[165.532578,-94.360305,29.131096],[165.983444,-72.527481,37.393525],[160.649582,-67.256027,38.536827],[153.488693,-56.059433,54.752022],[168.549973,-43.603531,33.160859],[161.816086,-44.965011,29.824341],[161.594895,-16.756225,59.112339],[155.982041,-17.092224,54.719185],[154.205734,-13.076141,58.824330],[161.191391,-130.040931,-2.280243],[157.143479,-119.521553,0.855172],[154.255478,-123.249267,5.407196],[153.604416,-119.021805,8.097336],[174.725144,-82.169914,-5.622238],[172.880722,-85.729011,-9.552208],[174.054733,-86.782242,-7.969490],[116.921860,-72.126526,29.964638],[124.032578,-63.535064,38.811211],[121.202438,-62.075134,31.036736],[116.648972,-66.337204,28.604676],[122.957810,-69.918411,36.702866],[121.164353,-62.533020,26.658562],[116.652390,-66.707214,25.591317],[125.181198,-111.366554,-4.208297],[129.719284,-109.324188,-1.427841],[100.788681,-119.431343,0.212922],[126.556259,-146.343589,-23.562553],[124.168381,-156.394447,-29.331504],[138.679245,-141.235183,-18.214637],[146.233444,-139.100525,-11.541648],[140.015183,-132.982078,-11.609214],[142.594101,-129.554535,-6.387124],[95.813278,-195.697210,-44.464698],[125.152756,-213.379347,16.830140],[103.621018,-266.488723,-2.337471],[104.488937,-234.944267,75.131020],[103.083908,-240.122902,68.868035],[101.063583,-248.020660,61.733086],[99.717697,-248.547413,55.756569],[105.011948,-231.264576,78.117993],[98.630295,-248.230503,49.795029],[99.797348,-239.956253,55.334572],[106.011032,-217.023723,83.138848],[102.685532,-209.316375,97.654101],[101.102890,-213.025062,101.896403],[93.129074,-310.271835,63.652859],[100.391586,-269.704818,25.864510],[95.886765,-271.042244,34.547173],[100.797836,-279.784233,62.972294],[99.876328,-284.630203,65.069088],[101.625168,-271.776664,66.157029],[100.399643,-276.200020,68.721955],[56.413864,-329.804397,45.170662],[69.626083,-331.239837,44.143624],[68.194687,-322.835724,45.649468],[74.168503,-322.925567,48.883324],[85.607773,-305.888481,61.851258],[81.142380,-330.140976,51.159150],[84.785080,-328.582336,53.280518],[81.498764,-338.879608,48.918297],[74.238693,-340.269363,44.034706],[76.085556,-332.911590,47.242760],[84.429062,-288.980880,67.730870],[100.436752,-266.488327,74.223061],[93.874497,-293.024666,70.055127],[95.014816,-279.353149,74.826661],[96.895859,-282.474937,72.804730],[97.537460,-291.185966,68.444954],[54.191635,-341.355011,41.088379],[76.305649,-312.962257,53.255669],[95.269638,-312.038231,44.832573],[91.861496,-322.438575,34.974144],[101.955368,-254.410465,30.622223],[84.938706,-355.821991,47.570450],[89.331772,-351.524078,49.582199],[77.668625,-369.243255,42.153038],[86.465012,-366.772308,44.981179],[84.089035,-340.145599,10.952858],[83.883103,-360.481216,2.329491],[50.298081,-357.071045,60.808266],[48.104782,-360.489166,52.532402],[60.717575,-322.310791,45.031884],[64.016525,-320.420173,44.912056],[100.494736,-273.256538,61.305367],[88.839951,-223.045881,8.565979],[99.233994,-242.974487,5.555733],[103.115952,-233.738098,7.582360],[80.023239,-253.933372,-2.106521],[83.684494,-280.714607,14.214798],[90.236618,-284.574928,15.899178],[87.131699,-294.221183,13.018364],[81.685410,-293.538261,10.443520],[78.733505,-305.633682,6.642861],[72.758164,-304.022316,2.906411],[109.990219,-142.612613,108.620823],[129.071518,-118.093300,27.943650],[121.237045,-106.015114,24.584679],[162.989304,-128.527054,-4.052528],[174.737473,-145.406444,-14.728096],[173.576889,-135.419838,-10.815179],[173.555161,-137.452728,-24.294639],[171.767258,-125.404800,-7.871330],[172.934982,-119.000343,-13.438606],[173.430832,-125.695579,-17.413520],[173.565292,-133.946933,-16.792625],[175.593796,-114.346183,-16.606041],[195.085922,-112.643570,-2.691986],[186.620255,-102.701141,2.093064],[185.238419,-97.607177,-4.005104],[184.416245,-96.803001,2.064110],[186.554825,-93.653427,8.323105],[185.400986,-96.638237,9.193505],[183.533432,-104.511810,11.949265],[182.972824,-99.842651,16.473763],[184.987412,-99.266349,15.734063],[185.130966,-99.601585,6.753006],[184.827835,-93.938324,-1.606445],[187.134293,-89.787986,-1.287963],[202.512863,-121.351631,-19.228386],[205.787155,-73.935844,-13.955467],[192.128769,-79.179367,-12.296760],[201.407761,-73.214782,-16.374291],[193.403732,-73.692436,-16.803779],[202.779556,-61.883011,-26.085945],[198.395157,-65.843231,-23.014854],[204.700150,-68.100982,-21.128273],[214.193253,-69.902679,-15.047660],[217.728623,-72.753151,-8.113960],[218.463760,-75.642662,-0.694908],[216.255722,-76.798576,3.752427],[212.761124,-76.837127,5.590989],[209.834030,-81.309646,9.230843],[205.230667,-84.976082,10.255661],[208.667557,-81.681442,2.659012],[213.172226,-80.313530,4.838135],[221.496994,-65.402481,-15.089608],[221.709061,-71.740516,-3.363998],[210.982895,-68.334953,-18.681709],[195.805130,-80.487869,-8.247551],[196.248673,-59.032562,-27.611335],[200.903000,-85.183212,14.626297],[195.421402,-88.410194,17.189263],[194.586075,-91.426025,15.853623],[190.301254,-94.248298,16.379105],[186.475998,-96.562523,18.108078],[186.845535,-93.894455,18.466545],[192.378830,-88.176529,5.649567],[197.657120,-89.268737,13.720299],[194.698563,-83.918579,-2.371238],[198.503647,-85.655304,5.220574],[206.497421,-82.038620,10.993729],[200.974472,-69.276077,1.241158],[214.788376,-68.891761,-0.766639],[206.012558,-79.142830,8.863472],[206.629044,-72.303962,3.029930],[212.000656,-78.001030,-3.276710],[207.763016,-75.782814,-10.128059],[204.663803,-79.898971,-4.408249],[191.707871,-92.125068,18.422158],[179.481796,-88.738899,12.687325],[208.964127,-60.169723,-5.674255],[211.411057,-56.089279,-7.342552],[221.429947,-62.070129,-5.450325],[224.503555,-64.593078,-6.001884],[221.085098,-57.731750,-6.413459],[210.567703,-10.680374,9.427849],[203.489365,-7.930694,11.913964],[208.317581,-19.852066,5.630913],[216.164780,-14.957184,5.865937],[196.834610,-14.701538,11.289116],[191.256790,-15.529419,9.547532],[198.049729,-23.587600,3.731797],[196.531204,-26.530441,3.315041],[200.808090,-29.719268,-0.559852],[189.857834,-38.086120,3.753746],[194.736496,-34.492172,0.916794],[198.749191,-35.434372,-0.803932],[190.317703,-24.786728,6.122254],[184.430679,-18.770523,10.618393],[181.980209,-18.014541,10.799920],[189.795242,-18.443985,8.310669],[186.225754,-15.491165,11.533814],[192.057724,-10.687027,15.673111],[195.032211,-6.320556,16.105339],[199.272629,-20.794555,5.776909],[161.404709,-137.511722,1.558464],[189.699356,-150.275139,-44.371269],[193.444077,-107.674987,-13.319496],[200.950852,-116.349090,-10.855446],[200.583389,-119.007484,-10.344932],[191.442825,-56.628006,-26.443885],[184.779373,-51.794250,-21.614402],[181.595383,-51.245071,-18.742668],[186.305100,-82.619857,-21.421470],[183.751480,-75.403534,-22.534202],[189.474899,-63.581329,-21.829078],[183.642990,-62.208709,-19.594123],[182.792587,-58.573593,-19.336479],[184.796616,-65.499725,-19.302346],[183.425003,-69.426513,-20.056831],[188.244949,-118.274551,-16.403877],[175.867600,-83.304214,1.280617],[176.699631,-79.504905,0.466759],[199.205368,-78.891288,8.760605],[193.973251,-77.258278,6.939507],[186.435501,-84.135521,11.258721],[183.785751,-81.290039,8.740006],[189.092423,-71.882118,1.325821],[183.926834,-74.151863,1.746628],[169.311142,-97.768623,-7.011039],[171.939682,-102.485290,-9.063514],[171.426865,-96.658439,-7.668235],[188.641739,-91.078460,17.576805],[192.064224,-84.278709,12.426117],[183.491226,-25.644729,7.190461],[181.076492,-30.194641,1.694977],[184.230118,-33.800445,2.770989],[178.716873,-32.126632,0.154343],[181.725937,-46.418655,-4.836135],[180.017227,-43.225616,-4.070556],[176.576035,-35.458679,6.818169],[176.403488,-43.276077,4.929581],[178.124680,-44.240295,9.634926],[170.546188,-31.755783,20.901261],[171.751083,-26.273666,18.554619],[173.815781,-28.642364,16.115723],[178.135300,-43.219848,13.677788],[176.578110,-36.698303,12.238747],[177.637131,-47.912094,6.882248],[175.735581,-30.246124,11.072525],[186.769913,-31.609985,5.739403],[204.394119,-0.666015,12.348549],[195.774918,3.646759,13.473870],[200.872360,-0.079544,-2.996055],[205.839340,-10.215454,-7.839668],[202.803726,-20.041244,-10.669548],[192.560806,-18.781128,-17.146783],[200.485733,-20.317962,-10.647071],[192.106827,-11.890411,-7.501258],[190.099442,-0.807022,0.450409],[185.496384,2.139801,3.217759],[179.602066,12.732910,10.887749],[177.610458,11.878174,11.195801],[179.358658,6.240296,6.828843],[181.114426,2.323151,1.208313],[177.216660,4.913361,-2.056228],[172.528671,4.535691,-2.561996],[176.333481,0.540253,-7.744300],[173.665878,-2.353714,-6.879234],[176.374985,-8.849411,-10.984260],[172.456833,-5.003204,-2.913475],[185.284989,-10.871551,-15.824318],[187.909714,-22.385116,-22.289573],[182.598465,-15.141342,-18.170768],[183.917984,-12.924179,-17.750389],[178.913193,-10.828079,-14.351997],[179.224167,-4.552826,-11.963830],[181.560501,-1.710846,-7.088371],[186.866440,-9.475082,-12.714988],[186.337540,-3.929321,-2.439605],[186.993485,-2.168289,0.241417],[193.195480,9.555374,1.065735],[187.868820,7.955872,3.481957],[178.062119,15.412201,12.983345],[188.984940,4.413666,2.324997],[195.926865,-9.192810,-3.772651],[199.995804,-6.885132,-5.346305],[191.668076,-7.254196,-2.750694],[196.251145,-12.930832,-5.471008],[197.097427,0.733841,-1.884864],[184.313858,-26.421219,-21.114555],[179.156143,-23.361847,-12.033607],[180.334152,-34.280288,-15.297721],[175.204575,-24.703445,-10.595420],[168.778977,-24.087799,-14.496026],[174.678391,-36.184128,-16.354820],[172.333420,-24.343902,-11.462289],[182.117233,3.300614,4.237130],[182.651322,6.845459,6.742615],[174.443588,13.464661,9.960541],[174.930588,9.487839,3.085236],[175.957504,3.785721,-4.162086],[180.543015,-3.027404,-10.240715],[178.573776,-13.406479,-14.192543],[184.939835,-23.382827,-21.603798],[181.586960,-22.194427,-15.162483],[177.809555,-36.527923,-15.492256],[173.717575,-42.124801,-19.301873],[169.524460,-36.611999,-22.308738],[223.029862,-53.204986,-21.735099],[217.562668,-59.536010,-22.019447],[226.550034,-32.665374,-15.861168],[180.913590,-77.041900,-37.043312],[154.496811,-91.427787,-39.795082],[147.764572,-88.534729,-35.477760],[143.782333,-86.137169,-33.129936],[144.706162,-75.568992,-30.590904],[144.122055,-70.578399,-29.209694],[137.673020,-58.637054,-23.910942],[140.940903,-74.953460,-29.206825],[121.921738,-46.645813,-15.043434],[124.416855,-38.104110,-10.213020],[221.398300,-16.125030,3.100525],[171.475693,21.680725,20.128022],[173.706955,36.785477,27.782273],[181.511734,28.476319,28.826394],[179.474564,29.906571,35.640206],[148.622727,48.787171,55.286126],[144.941879,47.921540,49.180046],[132.570541,70.826630,89.446339],[138.232956,71.831787,101.195374],[140.810043,69.129059,99.108355],[136.431320,68.318390,89.904107],[149.287583,54.715317,84.290139],[160.486923,30.523255,71.341874],[166.473801,24.177552,67.484188],[168.225937,19.681656,64.926815],[166.994309,18.994309,68.667054],[135.708359,38.386063,116.130350],[137.746323,54.765427,117.208465],[141.361130,52.712494,108.178556],[142.701218,51.066376,102.682701],[143.538193,47.316559,96.612688],[141.315476,50.197342,106.908181],[113.937302,39.376908,155.748726],[115.832932,34.891358,155.164261],[92.969101,76.639954,174.197510],[86.584946,72.427735,180.305027],[94.626938,71.279694,174.574238],[103.507736,67.849671,166.201104],[124.345566,37.897187,130.418892],[129.665634,18.811951,134.177708],[124.215866,14.291535,133.656116],[120.410263,20.101044,144.429615],[118.624130,23.812287,149.128514],[117.668198,29.480286,152.529538],[120.630478,30.421006,150.270108],[116.680283,40.965073,144.658934],[121.210190,35.067536,136.673183],[118.593979,35.777802,143.118552],[84.017441,63.215699,180.246823],[38.831284,79.984864,197.400086],[36.571030,81.296784,200.790306],[41.635971,79.530060,201.580887],[85.285568,54.704911,180.874829],[87.078598,82.088257,176.698437],[81.096787,78.491211,181.656666],[70.053879,79.637299,189.835060],[69.222031,85.869141,189.304741],[52.177536,80.062958,198.941445],[57.546494,84.074677,196.328896],[60.697312,88.204010,194.830376],[57.951218,93.862336,196.287568],[42.541733,99.379242,201.493050],[31.080124,104.685211,205.027214],[65.040756,83.171357,192.755425],[71.665329,91.993347,186.762154],[83.720444,97.401520,177.967595],[89.010788,93.600525,173.072010],[95.003525,89.129578,170.492562],[95.583481,90.099030,168.004345],[104.679672,91.637635,160.142270],[102.468857,88.667115,162.791470],[108.088425,82.062378,157.070042],[106.901169,79.780609,160.375275],[113.860947,74.617676,152.336794],[78.373154,81.236908,182.859772],[77.366074,87.043122,182.542427],[50.495285,78.021241,199.871262],[26.489670,101.988312,206.475853],[28.991196,96.037415,205.831375],[12.129990,99.468811,209.535286],[7.864975,100.455658,209.168747],[1.415085,104.615052,208.408615],[1.241989,103.026245,205.564927],[-6.266250,109.091858,204.625893],[-4.967300,107.635651,202.244851],[-2.465530,103.526520,202.107323],[4.374924,100.591278,206.399376],[-5.396377,110.171845,206.330581],[5.519821,104.199555,209.071289],[0.603745,109.036011,207.881035],[11.441147,97.494721,208.494553],[1.683518,98.322174,205.952523],[-3.896194,117.470093,206.403290],[-10.673660,112.754181,204.639717],[-11.483108,111.831208,201.175179],[-18.175796,105.805298,201.403000],[-19.487625,120.345154,202.148751],[-23.807876,138.544312,202.323227],[-12.325638,104.818909,199.968697],[-15.791092,88.253449,197.171364],[-21.104935,88.170197,198.131103],[-21.643692,81.737274,196.351380],[-21.650589,66.602234,193.599999],[-12.187820,88.858246,196.763192],[-8.013565,100.684662,200.017846],[-5.710770,94.123932,198.379798],[-2.088150,98.022248,201.662392],[-5.061844,88.004578,197.703537],[-0.020279,89.778870,204.842362],[3.893234,113.671479,208.495888],[10.889450,123.184784,209.131424],[9.950974,128.957947,209.671646],[-6.580521,126.451264,208.375550],[-5.967667,131.059784,208.403199],[-6.759964,136.631928,207.766129],[-6.023636,141.375336,208.082680],[-14.367386,133.841950,206.112885],[-19.487198,132.007294,203.640374],[-23.742081,142.796662,202.452614],[-27.287125,155.417389,198.164368],[-27.474808,164.112488,200.224853],[-22.547378,163.775482,201.470116],[-24.159378,169.402588,198.879471],[-31.141800,158.797028,195.292954],[-30.232681,151.626740,198.727616],[-36.044998,157.160004,194.441079],[-29.724869,146.514557,199.164376],[-27.952103,138.287964,199.766404],[11.760544,147.468323,207.354500],[18.349655,143.618103,205.692298],[18.890915,154.400513,205.967003],[17.890488,161.267914,205.393929],[21.145859,161.771027,203.981675],[14.181503,169.238556,205.561768],[29.279038,147.708130,207.317719],[28.940537,153.043640,205.901986],[34.186203,148.051148,201.332573],[36.570969,153.564423,202.714043],[46.967148,147.805481,198.217986],[52.122727,147.478943,193.537033],[50.234543,140.797394,196.322312],[58.828293,147.149750,188.369316],[56.606918,166.233094,187.298630],[60.564682,163.282379,184.060147],[68.415878,174.387543,173.652244],[63.912766,169.965668,178.911595],[57.394028,171.325775,186.902283],[58.402634,168.630097,186.412399],[46.392014,166.132080,192.949227],[52.651718,168.698395,191.157547],[40.594589,167.448914,196.169334],[39.351242,160.179413,199.058663],[47.645920,160.097321,193.794876],[50.497604,155.527283,193.114373],[61.192246,167.188690,181.089489],[57.460251,158.574738,187.952645],[45.675949,139.778931,202.138672],[40.344956,140.006104,201.886208],[47.154892,134.078308,201.803069],[49.001206,137.493286,200.081322],[34.742050,135.819397,202.338547],[44.922775,125.874268,203.774216],[39.842697,126.355316,206.361969],[32.007614,125.125275,209.921341],[30.908859,116.249085,206.693001],[26.422104,121.223023,208.454316],[57.839340,108.718689,199.524704],[60.557724,115.348969,198.319847],[73.403488,109.457398,186.206696],[79.013107,109.373658,176.534237],[82.077011,109.278229,173.656491],[85.177719,110.063050,168.080910],[88.240830,104.841645,165.016667],[95.930588,100.408600,166.309067],[94.834519,101.085083,160.550400],[100.321762,98.895233,161.711819],[106.099411,96.523651,156.635460],[100.982773,98.323761,154.984242],[93.521774,102.821991,160.153645],[92.512131,109.674652,161.400902],[92.053330,119.225373,159.257309],[106.253586,95.127930,159.100155],[96.394943,93.228974,168.714444],[110.687424,87.499054,153.506110],[117.395249,78.033875,145.623392],[117.672104,86.047760,144.366558],[115.098251,89.648499,149.186390],[116.214829,90.086579,145.424597],[113.061875,79.142151,151.115462],[108.535019,85.464203,156.722687],[95.098007,99.339814,168.865746],[84.434067,106.805420,169.434151],[100.018051,97.749085,164.613465],[35.019760,110.281037,204.630767],[31.387192,108.195862,205.167954],[47.098618,101.761078,200.442032],[53.280747,102.110199,198.877777],[58.203537,102.272553,197.171502],[43.427963,108.721588,202.507042],[35.615158,138.960419,201.928894],[20.398300,148.822235,205.783692],[32.471481,145.963379,202.755721],[28.592270,138.313660,207.620835],[24.454270,140.139069,207.175277],[15.196640,140.925598,209.828469],[31.743820,143.694397,206.471748],[25.595993,158.653717,206.161141],[26.919663,162.490815,204.811188],[34.151779,168.243409,199.136048],[41.753220,169.491272,197.214760],[37.777146,158.386658,201.509003],[40.895493,150.122986,202.396737],[28.746994,162.585480,201.005203],[29.832504,155.065888,202.181076],[31.893356,158.669800,200.656487],[25.916306,149.312165,207.360749],[21.776657,155.674591,205.097863],[19.466660,169.340851,202.396553],[20.088791,171.613312,205.223480],[100.118637,76.402253,168.208783],[99.401657,85.445557,167.569912],[101.303452,86.957245,163.199356],[91.448715,89.233826,174.840722],[86.524826,91.778076,178.656132],[87.127243,92.926880,177.789654],[81.048874,95.482209,182.480084],[79.603256,88.842072,181.102436],[90.595383,85.109711,174.696602],[110.425034,74.255799,156.902035],[89.953781,96.647888,173.980046],[88.836044,102.488617,172.598221],[89.319016,103.327484,169.814258],[86.369858,105.140473,168.986863],[82.850510,106.370667,177.549637],[82.528366,103.105561,180.604721],[87.519638,99.204041,176.106285],[78.132736,100.879181,184.019349],[70.643295,101.665894,190.359276],[58.432846,112.716156,199.996544],[66.870407,98.064087,191.181220],[79.119187,91.687165,181.951481],[51.433518,108.011963,200.914345],[67.256821,108.011963,193.387757],[73.392746,107.269226,187.919304],[78.696152,107.738282,182.125618],[59.314011,118.096741,193.216591],[55.755722,121.937897,194.456527],[59.035202,123.115540,192.238343],[70.573410,126.809815,179.268845],[74.017746,123.641938,177.354573],[72.237778,138.248596,174.962563],[81.076706,132.818390,170.889325],[83.183701,128.064148,167.819790],[84.147263,119.315308,167.054715],[80.027329,125.444184,173.649295],[77.689865,127.664429,175.137410],[84.569870,113.751435,168.051777],[81.124375,121.515747,172.740872],[71.950546,117.509827,180.504879],[67.143784,139.672058,179.581894],[70.719833,142.543274,175.195717],[77.545456,141.242462,172.926682],[58.080551,119.346985,198.981315],[65.987839,130.155365,184.350106],[65.697189,114.148072,190.578911],[65.869614,113.308075,193.126297],[70.292099,112.102539,183.727509],[73.343247,113.185242,179.927319],[74.672226,110.907379,179.880989],[79.369125,116.858704,175.440720],[64.432907,116.135956,188.783135],[93.952561,81.122742,172.535851],[76.278366,74.326477,187.530739],[67.394150,76.636292,192.837464],[35.873886,114.973389,205.657204],[37.293808,120.422058,207.974899],[46.093247,117.486389,204.987893],[39.486069,131.385132,203.965821],[39.076218,131.787262,201.390038],[49.988693,113.812928,203.671066],[45.560593,114.751831,204.847496],[62.263352,100.249848,194.586899],[64.691086,94.687073,192.602089],[30.216293,133.886231,209.012108],[33.584213,132.619538,208.031403],[32.511398,121.810456,209.306527],[22.584885,136.586670,209.801613],[18.829880,131.630432,211.606499],[11.520310,136.593964,212.166718],[25.879685,127.163452,211.030953],[32.837753,135.939118,206.199578],[37.355393,143.752838,201.877671],[41.089768,145.982453,202.502159],[44.643173,148.111695,200.692032],[62.189804,154.667511,183.750691],[64.129990,139.136689,184.425254],[60.945053,152.463318,185.785912],[61.186020,144.477784,186.690773],[65.913437,163.628357,176.493801],[68.949875,167.362336,172.336689],[71.882675,166.586121,169.241516],[72.816330,158.164368,170.527157],[70.075791,169.403290,173.365731],[65.190415,150.452759,180.140435],[69.657211,118.520722,183.422493],[-0.764114,161.831940,204.295411],[-5.885452,158.206604,205.492127],[-18.092911,155.711792,204.394318],[-5.331680,160.590363,203.730736],[-12.426468,167.112427,199.542672],[-4.084732,170.039856,202.766480],[-10.425735,171.073151,200.498749],[-10.860245,176.472229,200.611534],[-14.741165,177.096833,198.524674],[-7.301590,177.971680,201.351075],[-3.610489,175.184571,202.824898],[-22.956436,172.572602,196.215416],[-19.784134,166.640229,200.802078],[-17.724502,168.167511,198.385903],[-13.905716,165.168030,200.383736],[-13.662186,162.505555,203.295952],[-14.637466,156.245484,205.718009],[-19.933914,159.633576,203.319626],[-4.657608,167.239960,201.970665],[-5.672500,147.600708,209.330811],[-29.631973,177.328980,189.765679],[-8.883621,242.460785,202.074082],[-13.007461,243.274475,194.501259],[-4.011429,255.922882,199.026321],[-0.172806,268.668518,195.340401],[3.534287,276.233155,193.977814],[5.609421,275.152130,194.727776],[0.468125,264.170319,198.198235],[-2.820877,275.121674,188.304818],[-8.143875,259.174713,190.967392],[-13.751968,258.288788,190.084946],[-21.591507,254.848145,191.813713],[-17.731888,248.335144,190.999848],[-25.193375,253.320343,191.609009],[-29.538772,262.394165,184.706574],[-32.450699,252.620453,185.111317],[-37.335342,242.370209,183.932473],[-29.649307,249.602631,189.323029],[-25.897110,246.261933,192.898682],[-29.922195,240.245972,192.661606],[-31.943863,241.067780,190.842530],[-43.978348,238.799469,178.622010],[-27.614212,259.745056,186.862183],[-37.470291,257.524079,180.661580],[-57.575943,172.682190,160.809941],[-62.108841,172.708741,153.566515],[-59.515030,176.743531,155.655106],[-62.460647,176.285767,150.882161],[-65.318741,168.850861,148.058205],[-53.396988,175.502137,169.334439],[-51.038956,187.286164,169.869416],[-54.001541,186.128754,169.345303],[-55.877334,184.102936,174.492924],[-48.202469,181.186982,176.743813],[-48.474075,178.237641,174.338353],[-45.013626,191.622254,174.818444],[-49.245315,188.752961,173.165787],[-47.070938,191.019806,176.277016],[-40.443191,185.604340,180.043354],[-50.868118,191.495972,186.482857],[-51.639969,194.169007,189.032082],[-61.002396,194.588745,179.725551],[-60.582168,198.904938,178.980488],[-56.917679,209.612397,178.769307],[-56.425064,216.351685,176.481247],[-55.771622,228.502899,174.110268],[-69.503006,229.157654,172.921418],[-70.225174,219.542450,173.272515],[-66.983536,213.584137,172.871617],[-63.789993,225.258728,172.843293],[-58.136612,221.336090,174.322880],[-63.068252,205.263672,175.545452],[-59.535904,228.821839,173.140614],[-60.435623,234.713166,173.130261],[-54.517105,200.429627,184.974450],[-56.499527,194.393402,183.757241],[30.611801,170.758423,202.538155],[41.050705,175.615692,196.708496],[2.398422,181.784088,199.948723],[1.485642,184.351532,202.599121],[-1.419754,186.117096,201.643883],[-11.124283,195.582428,195.342057],[-8.892471,197.859009,196.544464],[39.083969,186.533234,196.847084],[34.419968,186.497986,198.788834],[48.413559,185.667267,191.195679],[51.143051,182.315949,187.997773],[38.285507,182.945862,195.692261],[44.584824,182.649353,191.941040],[44.322006,180.690644,194.679085],[51.483994,179.931549,190.203606],[52.723435,194.252594,185.156372],[55.669052,195.275299,188.553749],[48.708481,199.747528,195.734505],[46.473984,197.063935,192.074555],[43.211533,197.525330,195.675629],[40.611191,205.253937,201.450776],[37.124375,215.087525,204.735161],[36.740524,217.804291,207.222878],[53.851425,197.308686,193.325997],[57.989426,194.897217,183.807351],[60.801254,193.471833,178.926167],[65.889572,192.564850,175.707535],[65.104294,191.116700,174.764214],[62.642563,196.339722,180.012391],[80.810959,190.406403,166.511642],[79.771958,188.814972,162.563591],[89.302292,191.765595,163.184445],[89.656113,197.336060,162.103901],[86.271591,195.385163,165.085793],[83.066757,190.183991,163.235207],[85.615463,188.213776,158.993164],[96.818771,187.038880,156.809555],[-13.292984,180.458802,195.903939],[-15.401199,182.264771,197.107613],[-26.325577,174.590027,194.333649],[-5.028213,208.662842,206.465331],[3.128769,213.493836,209.331688],[27.847458,216.815918,210.098480],[29.046555,228.242493,206.681939],[33.494003,235.404755,205.052452],[36.503159,243.842163,202.249062],[29.712998,234.640045,204.770310],[44.302719,236.845642,203.115258],[41.259750,243.260285,201.912384],[43.928269,245.578369,199.974259],[41.187424,251.632141,199.531250],[21.235947,238.041718,199.979668],[35.247421,263.140168,196.112999],[34.623520,257.430176,197.351311],[40.266037,262.558472,194.668824],[41.710007,258.926544,192.542923],[51.811875,171.499726,191.536370],[45.664353,123.841889,204.447533],[49.217270,125.389923,200.578217],[53.049057,123.382630,199.068734],[54.379562,120.354889,202.147972],[43.595810,130.680512,200.388443],[44.129562,127.222443,200.897950],[101.589829,79.072419,166.724053],[98.014755,105.786774,156.319214],[102.326035,103.613983,151.737292],[93.333237,120.753723,157.283394],[107.006210,106.903138,144.167027],[101.308090,115.776398,149.093527],[101.137314,132.717530,144.827565],[104.521286,129.930237,139.449961],[102.553696,137.175965,135.713187],[105.986801,131.946625,123.233735],[107.213486,126.593415,131.154785],[109.124130,135.219422,120.329078],[98.080246,143.879334,145.357039],[101.939316,138.797791,142.161269],[100.235581,146.323456,141.602574],[100.026474,145.622528,137.620867],[98.672104,138.604065,147.046084],[93.262314,123.444916,156.089566],[85.455185,128.246094,164.643288],[89.727463,135.670349,157.966683],[83.010422,146.299622,163.126912],[79.978195,154.207428,168.029641],[81.776840,139.153412,168.158341],[84.931198,136.957917,162.817715],[88.199875,140.991669,158.365040],[101.691696,100.050629,152.783183],[78.933212,148.445923,170.677033],[74.347641,147.498474,172.793393],[78.017380,163.679444,167.378487],[80.028366,167.004822,157.625336],[81.617111,154.243836,161.579079],[82.118759,161.381989,156.431370],[84.615952,148.417023,159.429825],[87.856857,147.923249,154.741124],[86.673081,148.048035,155.515316],[79.569382,204.799988,185.435910],[74.688706,217.614197,188.144493],[75.412827,209.764954,180.533600],[81.120896,198.105072,182.613728],[80.402390,200.089630,185.502900],[76.513352,213.077332,185.540345],[71.665512,220.669342,179.969368],[72.436508,216.864106,174.567147],[76.476425,201.110108,170.179032],[81.618515,192.758759,174.287003],[78.240463,199.895356,178.308773],[58.648850,235.286316,189.811509],[58.837692,224.841461,189.752952],[46.140000,239.713990,190.252961],[42.425705,246.724549,190.992463],[42.801193,247.698029,189.178208],[40.506760,260.488098,187.558434],[57.119675,259.555970,184.642041],[57.951157,260.796082,179.831715],[60.431259,253.860871,179.660552],[70.947128,293.443116,174.718193],[63.150070,296.842102,177.886303],[76.058334,296.861817,171.243576],[73.006271,302.573944,170.678009],[66.807419,303.101013,172.804882],[100.107224,267.672730,135.002443],[102.494492,263.479554,129.810417],[104.804611,267.790314,127.474398],[61.382980,249.960846,184.505764],[86.217148,260.202271,171.753849],[90.974289,301.837677,158.832436],[32.374924,242.350739,202.672120],[18.301071,239.945649,199.459084],[14.463120,250.520417,196.267289],[12.859543,239.552338,200.666756],[11.306320,234.018586,202.716828],[47.124191,225.687409,193.878479],[47.128647,227.538178,204.319497],[45.988632,243.361328,195.980935],[46.916000,238.622681,196.775429],[49.653854,228.078400,198.873772],[43.493393,240.357483,190.585549],[10.328110,294.483368,188.184723],[11.367050,288.876526,190.141640],[7.661240,288.493164,190.136544],[-6.043960,283.391205,187.124543],[6.728073,293.917939,184.701264],[4.043625,292.899628,183.833268],[0.826279,279.964051,188.339714],[-0.770523,285.606079,185.886017],[-8.166824,289.395233,187.230851],[6.736862,307.038330,178.428120],[3.777878,313.413513,177.049083],[-26.718399,287.548981,184.515984],[-16.668533,309.798371,179.939923],[-27.560257,312.066193,178.258351],[-37.787369,313.533326,173.077923],[-46.700455,302.967346,173.295872],[-49.074478,309.987824,166.988499],[-42.955887,315.840729,167.476921],[-37.663467,319.596711,168.045479],[-27.292618,328.674225,167.252789],[-41.902115,331.327179,162.282261],[-45.399490,330.788300,160.079155],[-52.222427,329.610688,156.293988],[-42.079056,340.861298,154.440388],[-36.913162,338.314789,159.669724],[-54.751297,317.371674,162.266480],[-49.053604,321.516144,163.223271],[-46.754410,326.096161,162.657635],[-48.342361,316.240753,164.457863],[-28.013626,317.626313,174.429200],[-20.871780,326.272370,169.733555],[-13.131119,326.851288,170.253399],[-20.160232,330.329926,167.741974],[-4.561600,331.681305,167.884541],[3.963059,330.711212,167.896138],[7.187058,322.534088,171.941975],[19.275253,327.606781,167.814258],[23.616684,327.235688,170.159733],[27.498276,332.091523,164.438465],[28.717453,336.697724,160.128250],[35.161911,342.104950,158.388214],[39.800095,343.445954,157.884461],[33.154221,342.808869,155.557526],[32.049851,334.519257,162.748440],[29.460373,329.395172,166.220601],[43.571579,317.561188,172.515652],[37.385544,325.802826,166.887154],[36.914963,330.133332,164.216805],[39.766220,340.459320,159.742218],[35.304367,339.044953,160.897816],[44.054123,313.981690,175.528256],[33.365646,321.749054,170.400143],[20.548325,320.512482,173.523693],[10.338608,335.167389,166.185826],[-2.008316,334.370880,167.130551],[-5.544632,351.995087,156.484322],[-10.049637,355.401093,154.331208],[-5.249954,353.492707,153.013119],[-7.381180,359.575836,147.216828],[-5.600601,367.157318,140.712941],[-14.131546,364.403839,142.512726],[-14.528580,361.137360,146.159043],[-20.174271,365.200348,141.115237],[9.845200,349.230072,153.539294],[13.643845,357.155976,146.650360],[22.364609,354.237030,147.380644],[17.342880,351.655121,150.203795],[36.179855,361.770172,140.025977],[44.399033,355.540131,144.923039],[34.147141,356.089936,145.672669],[39.219650,348.654328,151.319378],[47.383896,354.638336,147.458699],[41.791123,348.108918,153.423247],[22.239975,347.265717,152.902813],[32.733811,350.634186,150.232121],[41.943344,364.529816,136.624617],[41.160629,374.165924,130.361741],[41.710129,380.368134,128.744564],[44.347580,378.592926,126.237714],[48.062302,377.242646,123.234788],[36.583420,374.264862,133.194712],[-1.313980,355.377350,150.472895],[-8.428482,373.364960,136.802656],[-13.724136,379.943024,132.116571],[-11.433426,386.304962,132.731043],[-7.825027,395.653778,136.632918],[-2.183792,393.526459,139.501864],[1.483994,393.631378,140.422671],[7.135117,393.722626,140.279799],[7.620285,379.270233,140.504181],[19.329270,369.212311,137.096556],[12.220688,369.578522,141.016062],[4.877365,364.363007,142.519152],[10.979721,380.303986,139.453806],[12.488449,383.506440,139.020182],[21.973557,378.279694,135.809067],[31.864975,386.841828,134.239566],[35.012070,380.330170,133.472412],[36.713974,391.949738,133.030363],[12.659897,387.805939,139.218256],[-5.776016,403.202729,137.358151],[-9.323685,419.161896,133.834758],[-6.912979,430.971588,132.982649],[-10.451431,434.061066,130.265161],[-15.026749,427.306732,127.754724],[-14.794571,413.195710,130.393566],[-13.362808,422.712433,130.452248],[-11.210892,405.257904,134.043400],[-10.844131,396.140534,134.396161],[-14.443619,396.193756,130.808074],[-20.263992,395.526703,121.198794],[-23.374527,404.231659,109.073066],[-22.074051,401.940644,116.136247],[-20.081314,405.166840,121.119656],[-17.489517,394.405732,126.205026],[-16.992874,407.496186,127.433000],[-18.567886,406.876679,124.442517],[-23.701736,393.715668,116.047808],[-20.679886,389.026337,122.342789],[-19.133194,381.141693,127.658332],[-17.151016,375.196320,132.348026],[-24.500992,369.541779,134.839865],[-27.699051,373.535981,129.491816],[-21.378189,372.373932,132.743799],[-29.104996,378.178437,123.982289],[-24.107315,379.083954,125.563851],[-31.380691,383.830109,116.062184],[-26.862076,384.420746,119.100087],[-30.786636,386.726044,113.106913],[-35.787613,388.651093,108.669217],[-0.915420,381.579071,138.859236],[4.066025,378.887909,140.239581],[-8.095230,381.321137,135.227323],[-4.483230,385.754547,137.564939],[7.541306,369.354706,141.399142],[-0.862137,369.770050,139.678290],[-1.065689,374.676178,138.596424],[-29.807815,398.165863,92.594899],[-34.923782,402.957489,83.032277],[-26.981155,401.268769,88.723366],[-32.104813,396.235138,88.986840],[-38.307510,390.432587,100.718138],[-43.762283,389.107697,100.193489],[-37.501541,392.934845,88.559582],[-40.820694,391.357819,84.137177],[-36.823440,392.097016,78.458725],[-37.354019,394.510895,72.061127],[-32.825149,395.449921,84.609013],[-22.761429,419.692719,101.391072],[-21.052994,436.354828,111.189908],[-21.865311,429.409882,108.124891],[-21.115311,443.049103,99.527647],[-19.970779,444.436188,94.630961],[-19.779983,434.766388,95.538195],[17.272568,425.297455,142.890828],[21.305771,412.024689,142.860693],[16.318405,407.365265,142.396902],[5.689316,406.461945,140.163998],[20.522141,406.323883,142.375756],[19.178452,388.071808,138.286593],[12.914353,398.205780,140.735773],[5.591782,356.758820,148.198813],[57.017990,336.966339,158.296749],[50.884628,345.448029,153.130686],[60.331345,342.430390,152.382756],[59.860886,339.970429,154.917252],[69.325302,333.178253,158.070629],[77.120896,332.972504,153.518380],[71.601059,339.307343,150.078371],[87.947861,322.656647,156.085057],[94.421738,318.344696,154.095696],[80.551437,327.475190,157.105828],[75.298569,329.597992,158.678017],[62.867172,334.412690,158.914852],[60.171250,372.424347,123.965696],[56.881943,371.396576,124.662576],[63.139816,378.198700,112.680404],[50.535629,373.770539,124.547928],[23.653244,368.731903,136.492331],[30.845932,366.494110,137.890602],[-7.993973,273.846711,188.460511],[-9.019607,292.052979,186.619285],[-67.018448,283.449128,162.020367],[-66.962967,290.882141,158.124546],[-73.270096,293.716309,150.516203],[-78.963028,294.875092,151.209406],[-80.650528,293.757355,150.103032],[-82.181106,278.929138,142.902455],[-82.502518,270.074555,139.488099],[-72.951614,276.126343,148.037356],[-71.490555,270.406525,148.465302],[-70.172134,273.139862,151.965966],[-80.258560,284.884369,148.671505],[-78.919144,286.793549,149.645180],[-69.517593,290.487061,152.737250],[-69.797012,281.479065,153.456675],[-71.193558,283.660492,150.050152],[-75.503921,284.060242,148.546935],[-64.629715,298.080811,159.832791],[-63.185379,310.296082,155.787625],[-68.886490,306.624665,151.874836],[-71.427017,312.445771,152.060404],[-74.101211,307.267609,152.226063],[-75.927750,316.766999,151.762839],[-84.114639,315.576813,148.008824],[-86.656204,319.742646,141.437720],[-82.470108,319.164399,149.042567],[-78.471329,326.776276,145.207217],[-80.314957,322.958405,150.370112],[-80.208633,327.378022,142.772017],[-83.646438,319.609650,144.053608],[-74.418350,330.179291,150.086676],[-73.868423,335.303437,143.301854],[-76.837662,339.797333,137.462643],[-88.541092,325.767426,137.516273],[-82.256241,332.431549,138.100745],[-80.957962,305.953949,145.181507],[-80.826858,301.984894,144.050745],[-81.395401,296.949066,144.623799],[-81.887771,293.672425,146.857506],[-85.312759,303.921418,145.517981],[-93.153152,298.326142,138.956255],[-86.796768,311.364563,146.215916],[-86.710953,307.024872,146.641125],[-83.041580,308.167267,145.883112],[-88.302566,306.712464,145.901934],[-82.769607,300.861145,142.440171],[-80.941788,298.440094,142.870707],[-80.317093,289.972931,137.183857],[-79.618790,285.853974,135.673237],[-80.954849,287.390381,134.916278],[-87.511429,293.975617,141.735888],[-88.508865,303.104889,145.371706],[-89.981827,294.567566,141.348008],[-84.171890,284.564911,134.798252],[-82.116165,279.244355,132.257146],[-80.796951,275.506928,130.994499],[-80.901871,271.225861,132.325532],[-80.975601,270.924897,130.377913],[-79.980118,279.489563,133.037346],[-80.845352,289.700684,139.485022],[-86.896377,286.498139,138.028248],[-87.886429,276.080139,134.864131],[-82.043838,292.363861,137.540970],[-83.979690,293.664856,138.493720],[-77.892288,304.613434,150.422282],[-76.746231,308.948700,150.628401],[-71.316849,302.527069,151.605681],[-76.540726,303.731140,151.754153],[-70.297317,294.062287,151.722042],[-67.358658,298.049378,154.472115],[-67.236282,302.800141,153.258759],[-64.004837,317.071076,152.501103],[-66.994217,316.640229,151.649207],[-63.246597,312.169770,154.644799],[-59.881424,312.033234,161.239731],[-62.408707,300.637116,163.291664],[-54.305923,283.060028,172.022004],[-33.353409,230.703339,193.237999],[-17.429214,266.060211,190.712372],[-37.615677,233.157166,188.025681],[-59.500992,185.587342,182.566018],[-62.906448,183.707581,169.038407],[-71.245804,183.288178,166.101353],[-76.743729,177.903473,161.928498],[-70.832291,177.202515,156.194512],[-77.287491,172.792664,156.403820],[-74.245865,170.035157,152.048170],[-78.816666,170.767792,154.747944],[-76.002701,180.903778,166.431115],[-76.202042,186.071991,170.617607],[-61.456436,183.389862,178.842560],[-80.054947,177.706147,161.910580],[-81.978226,175.890869,157.982438],[-69.026626,185.580597,176.744633],[-64.949173,183.570038,174.668957],[-58.081558,180.039795,158.237702],[-63.613724,236.976960,174.749565],[-61.521316,246.494538,176.520474],[-72.797745,230.156067,168.875950],[-65.154617,240.278931,175.050450],[-67.313003,229.382874,173.843018],[-72.258743,220.832032,172.508828],[-46.069961,228.216980,179.515900],[-55.770157,185.781708,183.068100],[-56.418716,258.474701,177.975571],[-59.692581,250.459198,177.073086],[-68.860489,278.706604,157.392105],[-75.733536,267.519776,144.937710],[-76.469192,258.775238,142.035468],[-79.739456,262.841675,141.916376],[-84.356644,250.711884,129.812186],[-82.463211,239.299622,134.794201],[-75.476578,252.694001,140.701731],[-82.973099,245.445710,136.089616],[-77.942459,248.374390,138.069327],[-81.013199,254.351227,139.432787],[-84.139725,244.485688,124.097538],[-78.667068,274.657410,145.755394],[-69.649124,266.978302,157.355751],[-70.261978,255.373780,154.528122],[-70.241348,242.964386,150.331644],[-69.938980,234.913056,146.246903],[-72.469253,240.165467,141.803822],[-75.893326,239.781128,137.172062],[-73.375076,247.470429,141.460003],[-70.748184,250.447388,148.051754],[-70.602127,261.340699,149.646340],[-74.850784,227.044586,135.405564],[-72.372696,256.275238,145.493588],[-70.169021,228.970795,148.410271],[-95.471329,155.660340,105.343653],[-94.872574,148.220673,101.923439],[-93.789322,143.218842,99.371500],[-41.429886,328.561798,164.428624],[-29.979141,334.593354,167.301323],[-34.584915,309.662415,178.003106],[-33.689773,315.214661,174.186421],[-28.596390,324.765900,168.739190],[-91.918716,304.735627,139.988770],[-88.500320,311.519898,142.146450],[-97.474441,291.417023,134.671972],[-105.363968,296.980378,130.340108],[-99.035171,285.925110,131.985309],[-102.803665,271.013672,124.673500],[-106.611954,263.019409,121.016585],[-96.633865,275.938996,128.845968],[-102.484268,289.858643,133.085434],[-108.508316,219.786805,112.590026],[-109.548782,228.069611,114.759262],[-96.726272,159.510987,84.429013],[-110.164322,143.248474,63.233044],[-109.020401,144.302246,68.739670],[-115.191055,145.718476,64.646275],[-105.807083,149.693665,79.168187],[-111.181656,155.916596,81.688092],[-83.474502,262.615235,135.056137],[-83.593338,255.143463,133.633877],[-83.896377,250.620728,126.386325],[-83.214432,254.666260,128.161547],[-87.173172,252.398987,126.578378],[-84.292618,253.606110,126.214444],[-82.321548,262.128113,130.189207],[-83.578384,262.896759,132.998752],[-81.527237,264.848633,129.174942],[-82.542435,259.597565,127.185103],[-92.875931,312.031281,139.161293],[-95.907181,316.746125,135.720407],[-35.771255,331.905121,165.874310],[-35.551041,326.998566,165.636994],[-38.680740,323.236542,165.837357],[-79.754837,312.301606,148.366207],[-73.374832,327.052155,152.311610],[-73.232864,320.339814,152.819020],[-74.307938,366.688690,120.136714],[-89.068619,370.101166,109.698630],[-63.531509,347.216278,142.102074],[-90.813003,364.496308,119.600816],[-92.859268,365.189362,116.524029],[-99.761978,357.532624,120.941971],[-104.631363,353.304657,119.696638],[-108.481338,347.720673,120.320875],[-81.729996,342.565094,134.813774],[-84.910416,351.963776,131.043634],[-92.605118,350.603241,130.716735],[-63.369644,379.136994,106.500003],[-32.814712,378.713349,123.965457],[-33.531509,465.508271,111.800605],[-35.052811,466.943390,115.452227],[-31.822159,471.876557,116.730533],[-27.918350,475.330353,111.420647],[-26.997513,478.771210,111.956715],[-34.715591,473.309113,112.753347],[-35.660049,475.396454,98.649420],[-37.376968,482.317719,101.436921],[-40.807022,482.037628,101.173846],[-49.480362,474.437836,97.878477],[-51.229446,473.514557,107.100098],[-18.350601,519.414704,124.536397],[-19.611282,510.029755,125.006565],[-17.644302,511.097992,126.939847],[-15.703140,506.435150,131.288165],[-23.602554,507.260041,124.427558],[-11.989578,515.010163,133.665255],[-5.711075,520.710785,140.309327],[17.785446,503.749359,150.634776],[-20.708938,425.082123,94.680384],[-27.468826,421.018402,89.142998],[-33.207901,432.814789,94.490755],[-34.227310,435.650482,97.399920],[-27.438003,430.817902,97.181927],[-23.007461,425.166840,92.566241],[-29.685562,466.674042,109.367669],[-19.228653,459.262421,121.213258],[-28.753982,463.640839,125.015307],[-24.020462,462.301361,113.856935],[-20.416336,460.856598,122.244543],[-21.690811,461.000580,116.827670],[-29.310196,461.303620,118.538132],[-25.883743,461.730927,125.090731],[-14.865982,454.097382,130.307210],[-12.401932,457.772431,140.055958],[-12.148575,447.064118,128.780138],[-15.213943,451.196686,123.219763],[-24.389175,463.570465,130.162110],[-19.846878,462.378266,126.458677],[-44.260818,370.445282,128.350503],[-75.850174,373.470551,111.640688],[-78.531021,375.376374,99.667529],[-65.768021,380.060944,98.523049],[-64.078201,380.135224,102.406870],[-73.540665,375.577851,108.008185],[-78.491226,375.000214,105.563910],[-70.920853,377.249115,104.850550],[-68.670120,378.713776,94.855353],[-68.287308,376.461762,84.780079],[-67.250625,378.810822,90.926789],[-80.378433,373.792267,93.007882],[-64.431961,352.673004,46.520890],[-65.740005,390.383515,50.804024],[-62.151565,393.090729,46.433304],[-59.001297,391.911286,49.409539],[-62.072464,384.803315,32.986817],[-54.899795,385.378876,35.602028],[-56.415726,381.168000,32.834938],[-57.591507,376.780548,31.242783],[-64.951065,378.077790,25.578629],[-65.646988,373.734894,22.499703],[-68.643509,375.355866,20.914978],[-66.053604,365.120941,20.192398],[-57.002273,373.741303,30.896454],[-62.552505,373.735443,25.815003],[-59.194778,364.360321,26.260239],[-65.487625,387.161530,35.771279],[-65.034073,383.660919,30.015938],[-68.039566,385.117707,27.547821],[-69.356460,385.810395,24.923523],[-80.188919,408.629425,28.374642],[-97.233230,364.070771,111.023894],[-98.612747,363.862152,106.085699],[-100.663223,361.556794,102.546996],[-101.801834,359.255646,96.226784],[-97.519424,360.960846,89.507767],[-103.245376,351.491303,80.745327],[-97.649795,364.474396,101.507679],[-97.761612,333.301972,54.448098],[-94.061294,333.661652,51.895829],[-88.595718,351.506806,62.900895],[-88.052933,344.395294,54.429779],[-90.946976,352.469147,66.995396],[-94.193924,346.600495,63.686146],[-103.574966,323.126313,50.498169],[-69.138077,335.071442,39.403511],[-74.926712,330.736298,34.822686],[-66.274917,322.958649,32.356720],[-72.621719,321.585541,29.228196],[-63.171646,317.846344,29.922707],[-67.133194,314.295197,27.087906],[-69.711929,308.504181,23.453820],[-64.815262,310.059174,25.873978],[-62.440750,322.477753,31.323784],[-60.667190,329.421357,26.780892],[-66.674698,328.680695,17.438744],[-63.380936,326.319733,34.282067],[-62.656753,321.107148,24.045418],[-62.068741,320.952851,27.822777],[-64.395828,313.877198,19.840340],[-66.509292,302.214630,13.920327],[-69.384170,310.772187,9.300988],[-67.630081,317.975006,13.578820],[-63.725906,323.227021,21.273987],[-67.114700,312.957917,13.624215],[-62.604324,314.385834,27.222847],[-63.274368,308.999024,24.028611],[-63.517532,301.870972,21.925072],[-104.560135,356.794586,105.443209],[-106.833755,353.071686,98.563160],[-113.421463,343.602936,92.571915],[-118.646744,338.659394,94.729399],[-109.567581,347.364899,90.739067],[-104.320755,354.012482,89.706986],[-109.804153,343.055024,81.049000],[-106.790420,344.027619,74.440274],[-102.375503,359.491242,110.703988],[-100.515213,359.357270,116.550186],[-114.083877,345.905548,100.585640],[-116.783646,342.625275,102.181000],[-120.545364,334.902436,95.803893],[-113.584000,346.983124,104.716219],[-106.621231,353.645905,114.593811],[-119.214798,331.820587,81.640797],[-121.445938,331.819428,88.917370],[-123.024063,325.983551,83.882912],[-124.383072,320.031891,77.362496],[-122.711136,325.673188,80.253067],[-125.210342,314.710297,76.015061],[-125.600418,294.603974,63.649758],[-127.083816,290.585083,62.969944],[-131.905838,287.031037,61.622548],[-137.862930,280.563202,57.213196],[-142.270279,269.830689,48.250763],[-144.702835,275.461701,53.444916],[-146.765884,277.353546,55.947945],[-137.994583,286.162781,62.017220],[-130.439163,291.284302,64.926743],[-131.347183,296.173706,69.729020],[-127.641250,298.242310,68.961140],[-126.963760,304.520630,72.206372],[-125.621292,314.317963,80.795395],[-124.191360,321.096772,89.100346],[-123.390762,323.572235,87.314812],[-122.002579,329.892365,91.171481],[-120.916275,330.316376,98.347340],[-127.363418,314.190155,86.235161],[-128.203995,309.587860,81.004712],[-131.230545,306.883423,81.611065],[-135.483169,297.583588,73.659256],[-142.054642,292.281922,71.900845],[-137.905228,292.593048,69.184819],[-150.049759,279.434113,60.220791],[-151.806412,279.625916,62.987885],[-154.580276,277.029511,65.675370],[-129.961685,303.153382,75.700165],[-143.186783,284.752686,62.596295],[-125.676163,294.845551,58.565888],[-126.207901,283.631134,48.749276],[-129.260452,271.918793,31.970879],[-129.532974,263.711029,26.027512],[-127.774490,261.279724,17.041993],[-129.793716,270.110810,26.231064],[-129.703995,264.112152,20.757935],[-128.982315,278.448334,38.125313],[-128.649551,288.666169,46.969086],[-127.979324,286.996369,38.399491],[-125.222244,286.814514,37.514344],[-125.488296,291.104035,41.706704],[-127.631668,298.549012,51.708992],[-127.615494,299.656098,57.040001],[-127.593582,280.670471,56.152222],[-131.529312,276.567993,54.077217],[-129.281387,273.048218,51.552628],[-136.126907,273.102234,51.482270],[-123.057388,315.671173,65.963021],[-119.046707,323.759980,69.272522],[-120.373855,327.895539,77.486786],[-106.012894,335.029511,61.337132],[-99.766312,324.944550,49.501831],[-92.117569,328.445832,45.706528],[-89.981949,332.577362,46.170166],[-84.812820,337.575714,42.862236],[-86.070267,339.641388,45.924691],[-95.042374,325.294159,46.503250],[-93.912247,318.050141,41.241600],[-89.976517,312.358979,29.872605],[-85.488846,315.535950,30.718865],[-76.095291,328.520722,33.976616],[-97.984207,313.995209,42.483834],[-94.667435,311.852417,39.098725],[-102.004043,313.615723,44.753739],[-119.995499,287.340760,39.656670],[-116.043838,279.035523,32.945145],[-113.429459,288.906128,37.278542],[-109.970901,296.120972,40.023728],[-103.357559,299.959626,39.916001],[-101.250381,286.738953,34.748146],[-99.526688,279.476471,31.864106],[-96.368667,282.686615,31.874451],[-95.987991,301.342896,36.791733],[-101.110794,302.362641,39.961617],[-94.344681,297.977326,34.368714],[-96.421829,292.007172,34.412392],[-105.411819,284.463318,34.421120],[-110.010757,275.237030,29.155999],[-110.577835,286.641175,35.309334],[-111.279861,263.504242,21.187432],[-104.400589,267.694550,26.396988],[-108.636734,270.567658,26.720345],[-103.609695,276.148621,30.761986],[-117.930313,289.290009,40.145104],[-112.963211,299.863831,42.902398],[-105.940994,309.448059,44.605904],[-109.429275,309.700165,46.294442],[-91.271927,318.284272,37.292801],[-86.779556,320.814911,33.481636],[-79.737869,325.153778,37.413727],[-81.396988,334.237641,40.374558],[-130.210281,255.578003,20.226670],[-126.739578,241.739930,4.885514],[-93.551712,184.161011,-4.184898],[-97.463882,179.489960,-9.205818],[-96.355423,170.917511,-11.386757],[-100.000503,173.890778,-11.512626],[-123.337967,307.302857,56.368897],[-118.601334,304.010590,50.167923],[-121.027725,301.876740,49.849350],[-114.280228,313.674591,53.701760],[-118.945816,315.234345,60.173890],[-113.692520,308.424622,49.232712],[-129.150833,287.460541,41.646058],[-128.278885,293.023743,46.834603],[-125.641434,270.187744,39.659943],[-125.332474,281.040558,53.818215],[-124.842422,283.506806,52.821358],[-124.805130,289.184052,57.226128],[-126.786026,266.411743,44.695267],[-128.782852,256.991577,39.735573],[-130.416153,248.852326,34.363762],[-130.208694,240.315766,28.362915],[-130.500625,227.836701,21.367203],[-130.338699,209.924042,11.726609],[-133.573318,199.813050,6.968682],[-135.415420,210.436066,14.897843],[-138.155167,215.745270,18.156060],[-137.781875,225.699433,23.307549],[-135.482254,234.421021,28.000328],[-131.753433,220.682587,18.866639],[-129.437820,223.607788,17.628571],[-132.790420,212.161591,14.858559],[-147.425674,197.322632,6.657860],[-151.794815,212.433747,11.047715],[-145.426834,204.820038,10.519059],[-140.784195,213.856903,16.885750],[-140.151565,205.611573,12.593903],[-141.469681,221.902863,20.914368],[-139.303421,234.260529,28.135903],[-140.209610,238.062348,30.100396],[-139.727554,250.209626,36.860672],[-142.739517,255.463532,37.496285],[-139.019180,263.196045,43.321701],[-146.909805,225.959687,20.438736],[-143.741714,218.232697,18.146073],[-130.205337,200.943085,5.442429],[-126.962417,276.747345,41.329277],[-125.442093,265.345398,37.918274],[-125.853409,260.681549,35.896202],[-126.126968,261.508820,39.525925],[-126.977859,257.425537,30.229744],[-128.273209,250.654541,32.526108],[-128.638809,242.072907,25.934983],[-127.588821,251.714539,29.134163],[-128.507584,245.372010,21.595299],[-132.473953,244.118958,32.788178],[-136.923172,244.604492,34.229683],[-133.975052,252.860993,39.114609],[-131.664200,261.002350,43.279930],[-129.077408,263.544037,44.342102],[-126.618851,274.472412,51.045906],[-125.005264,274.474243,47.246346],[-133.639603,264.019532,45.040802],[-136.517166,257.540222,41.105217],[-141.293838,243.830353,32.644600],[-147.856644,245.420288,28.918221],[-146.217239,235.776673,25.328568],[-150.438064,240.987976,25.630158],[-85.615005,329.465302,38.638092],[-87.573440,329.383515,39.369370],[-89.240616,318.944245,33.454956],[-78.260330,334.166718,37.750138],[-74.647903,320.117707,29.343575],[-62.042801,373.393463,69.158375],[-59.830765,372.206574,64.227585],[-48.890518,376.673127,57.179039],[-68.253738,343.925385,18.984490],[-58.707596,346.731049,40.870110],[-43.068680,384.078522,44.759644],[-48.438919,386.817658,40.054802],[-38.994705,389.994477,74.464688],[-50.206619,443.865937,81.105374],[-69.035538,449.592316,87.874195],[-75.042679,460.392975,91.483185],[-72.361404,467.206513,85.916752],[-71.582229,465.551361,93.293661],[-70.235489,464.426728,97.224257],[-68.910232,473.461335,91.189778],[-73.744949,490.708710,95.019461],[-72.853409,495.811982,98.094941],[-63.715896,502.686554,87.075585],[-72.867447,494.057587,89.643837],[-70.414444,498.783295,90.809447],[-68.455398,505.965485,106.571961],[-70.409500,501.962433,104.409232],[-67.609085,502.655426,92.600462],[-63.420547,506.753754,96.220385],[-66.063675,507.145233,101.988558],[-68.552505,501.583649,106.836931],[-70.951126,495.680878,103.176966],[-72.804092,491.483490,100.063765],[-69.953506,501.904023,97.758732],[-69.514175,493.887360,103.125695],[-64.858169,508.365631,107.869272],[-58.231644,510.059906,99.237597],[-54.141250,509.152314,109.631112],[-37.256363,521.892609,94.783057],[-39.821915,515.989289,89.168446],[-37.730667,509.220185,72.887707],[-39.932938,510.446747,80.729157],[-41.195999,517.084076,95.329247],[-34.353042,528.002228,98.232346],[-84.209122,406.836274,23.872940],[-87.752457,413.405915,23.944817],[-72.390274,408.638336,30.806260],[-74.816299,427.274750,52.083908],[-80.894668,446.070343,58.452622],[-80.944839,448.402130,55.220070],[-80.812332,452.097626,58.766335],[-78.620376,456.874543,58.456448],[-80.242386,456.026032,65.559903],[-76.849014,457.978913,85.965794],[-69.795242,473.283356,79.857037],[-67.742081,474.064423,70.692856],[-71.310196,469.659149,76.107491],[-72.098770,467.896576,70.800858],[-76.665420,461.753266,74.098904],[-78.045425,454.917816,78.517491],[-78.223343,448.559662,72.075604],[-76.514114,447.506562,76.101326],[-75.322952,444.394440,76.928437],[-76.653274,451.127777,79.315762],[-76.712234,455.448517,88.203881],[-76.516861,440.989289,76.743988],[-78.719803,436.659088,73.683438],[-75.632889,437.714081,66.027001],[-78.353042,443.413483,71.614060],[-77.424698,444.335846,66.923581],[-79.402908,447.064484,64.580468],[-75.732498,437.115815,61.828991],[-79.277298,440.454804,56.587792],[-76.719314,461.363861,61.937130],[-77.649551,452.098297,45.854454],[-71.913223,445.444306,36.346131],[-67.721451,434.398041,31.411538],[-69.035538,433.009796,29.793129],[-68.577591,423.709381,33.189751],[-76.398086,432.113617,30.422470],[-73.655533,449.701203,39.170761],[-79.343948,441.330170,49.420594],[-78.670303,436.491242,51.445023],[-80.916641,452.991120,64.469967],[-79.407486,452.618500,70.666565],[-78.207107,457.438202,76.227230],[-76.311661,455.572968,46.054703],[-78.035293,455.025055,50.019623],[-76.110306,460.175934,55.387787],[-77.068436,461.580231,67.489510],[-73.560684,463.472626,56.493973],[-68.921097,459.720246,44.253724],[-69.184585,456.006012,40.666550],[-62.387527,439.755768,28.609375],[-63.480240,437.251252,26.007965],[-70.963211,439.576142,26.422974],[-59.336197,437.055329,25.209198],[-65.844131,437.160431,30.608376],[-67.500076,436.797089,28.099549],[-73.441299,430.890656,37.630715],[-74.952469,432.317536,41.112366],[-73.794876,441.809967,38.224022],[-76.568436,437.720734,41.983345],[-76.887955,432.295624,47.925507],[-72.204361,421.452362,43.025834],[-77.872940,445.514252,44.170708],[-75.221695,399.791107,41.090950],[-72.979874,402.230683,46.063736],[-69.267654,397.779999,44.010514],[-67.494522,393.506195,38.349244],[-73.226944,435.065827,84.753613],[-70.143692,431.270417,88.084954],[-72.309891,430.611237,88.454987],[-68.355728,426.013703,89.971863],[-63.062820,423.922577,87.869000],[-68.977981,421.688813,84.934174],[-68.760452,437.759552,83.095509],[-65.825882,435.265900,80.925759],[-68.690079,430.896088,32.107270],[-53.397842,444.885285,25.482430],[-44.340591,454.239716,22.427994],[-40.384292,459.658600,13.798577],[-42.221634,453.210053,9.932999],[-41.612808,449.878815,9.795502],[-43.697647,448.953522,16.163605],[-11.116531,458.873383,17.240899],[-37.072647,439.718170,9.036278],[-75.644485,455.711518,28.118203],[-80.005203,456.946076,31.683144],[-75.360611,448.781525,27.397293],[-32.260147,507.035981,50.248673],[-30.456863,506.262787,45.650757],[-28.678360,506.293000,36.208916],[-27.690872,513.538666,27.330460],[-25.644729,507.082917,23.589989],[-25.276993,512.415375,24.263878],[-22.529434,521.310578,28.343476],[-29.011795,508.755951,30.414162],[-27.372208,499.877777,27.894242],[-26.475784,504.410065,24.391747],[-37.145401,509.525116,62.089074],[-35.435867,519.345490,67.679795],[-63.678726,426.985565,87.850197],[-61.735306,427.199189,85.640362],[-64.644546,431.412140,82.001114],[-68.805191,434.436249,85.014801],[-51.394180,473.707611,42.207665],[-41.420730,470.890717,34.599587],[-86.372208,488.230194,-3.039169],[-92.834366,503.269379,-0.003357],[-96.291397,513.982270,7.510880],[-103.921402,526.152802,8.495995],[-111.814590,534.187470,0.838677],[-115.333206,534.061737,-8.407585],[-117.198868,533.469818,-13.183952],[-126.320328,538.721894,-23.475563],[-137.295181,545.134980,-30.854164],[-133.126846,538.893830,-30.843879],[-126.751602,531.020661,-30.468635],[-109.183792,521.892304,-11.627922],[-101.591507,507.121796,-13.406807],[-90.796585,485.113800,-14.485481],[-98.849747,496.849640,-17.776878],[-92.765701,482.589020,-20.059318],[-87.158279,467.796662,-23.370521],[-82.765274,467.929413,-16.198600],[-74.146622,451.713044,-14.791648],[-85.909927,479.208466,-11.394493],[-81.224380,470.723297,-10.861549],[-120.850479,534.388825,-18.947898],[-124.291580,532.737152,-26.048088],[-137.416641,537.027191,-39.364097],[-148.380325,544.305146,-46.909019],[-158.518875,558.216645,-47.628135],[-158.808914,562.263214,-43.436393],[-157.209549,565.046112,-37.419029],[-150.065628,556.755707,-36.238518],[-142.860794,549.136200,-34.163108],[-145.115127,553.420197,-33.264015],[-142.443497,555.527375,-30.511329],[-143.172623,559.732758,-27.484932],[-142.491836,562.488068,-23.396202],[-144.866348,568.153412,-20.240135],[-149.194778,569.085846,-26.465782],[-161.173843,586.064545,-25.366325],[-159.733902,588.365326,-19.145286],[-161.726456,593.756684,-10.077995],[-146.993973,578.143402,-0.971252],[-147.012955,577.250824,2.927994],[-141.944351,572.300019,2.492501],[-135.193558,563.565094,8.719963],[-139.881119,557.104279,24.850632],[-129.196731,545.908966,27.355065],[-143.788101,546.719330,32.603470],[-148.824478,577.212128,-13.774925],[-138.727615,563.698029,-14.615060],[-136.139053,562.670258,-10.352348],[-128.782486,555.131562,-5.933952],[-127.098648,555.588471,3.306122],[-122.666763,549.393708,11.757676],[-121.685989,545.805024,19.681511],[-129.065445,551.904023,20.358147],[-127.219742,554.244843,12.149300],[-131.540909,560.769318,5.433342],[-143.286148,573.964447,-2.603683],[-132.315262,561.624970,1.100937],[-150.999222,581.882538,-7.509056],[-155.599502,582.012970,-20.878532],[-151.237137,560.434418,-35.021232],[-152.947281,569.578949,-31.228294],[-161.036087,591.600128,-15.242927],[-173.112808,606.185944,-12.445350],[-173.752334,606.880585,-10.266914],[-183.113785,616.379303,-16.533134],[-160.575699,590.919770,1.801216],[-157.451248,589.202851,-2.603553],[-159.348770,591.493012,-6.386833],[-173.480362,604.438507,-20.643974],[-172.164078,604.346161,-16.008018],[-153.010086,555.360016,-42.995964],[-137.866531,540.192108,-36.982170],[-150.331924,550.326508,-44.655235],[-114.858108,522.873261,-20.214973],[-110.508621,512.482880,-22.370171],[-114.239517,509.546234,-30.073082],[-114.231216,498.651093,-37.473321],[-117.530167,498.403351,-41.281044],[-124.647903,504.859894,-45.277382],[-121.313858,496.692841,-46.209237],[-114.825394,474.132599,-51.154640],[-118.896438,471.316681,-55.908043],[-128.014236,471.288178,-63.153343],[-104.218460,505.466461,-18.894204],[-107.806717,494.139557,-32.511589],[-111.302750,477.994782,-45.870812],[-106.927566,468.635163,-46.248802],[-91.045120,455.662262,-35.894463],[-91.986954,462.536774,-33.295967],[-107.604690,458.989594,-51.285469],[-112.397720,461.363129,-54.496849],[-100.349869,451.725067,-47.361076],[-104.192276,461.309174,-47.047203],[-98.459305,456.609955,-43.438987],[-119.249527,464.496796,-58.915702],[-99.053238,491.095429,-22.747429],[-96.508804,482.500946,-25.770347],[-94.873306,473.851044,-29.835945],[-102.440689,482.031708,-33.887107],[-95.816849,469.955048,-33.488029],[-106.950149,481.498139,-39.358482],[-107.677627,500.801483,-27.524131],[-104.295547,522.030609,-1.340919],[-105.644913,521.015778,-5.858642],[-92.095962,504.990998,5.196961],[-87.977005,497.828095,7.236481],[-83.950821,491.622101,19.741295],[-88.755813,502.163727,21.238373],[-95.431778,515.208832,18.228066],[-113.261307,534.850556,24.754624],[-115.381180,533.944977,28.000862],[-130.040420,549.710907,24.255829],[-123.483536,544.661957,24.002770],[-112.967544,538.361786,15.617096],[-90.164810,504.705536,16.020607],[-93.010208,509.693329,12.605210],[-97.518326,517.956330,13.101700],[-106.341385,530.774750,13.930191],[-100.177139,522.661896,18.494881],[-106.122391,530.308686,17.793869],[-111.427872,535.703278,19.791497],[-118.419876,544.725922,5.153275],[-120.169632,547.002716,7.266587],[-108.994766,533.165863,8.439232],[-115.943680,540.641327,2.219490],[-125.867203,553.339142,-0.554519],[-130.759537,554.595917,-11.951362],[-122.344864,546.929047,-4.428459],[-122.081558,544.640717,-7.921196],[-125.625625,547.434296,-11.687706],[-133.941299,555.167389,-17.578804],[-132.553299,551.317658,-20.130058],[-130.874161,546.567719,-22.668693],[-133.907303,546.245941,-27.456474],[-125.610550,543.684418,-16.815803],[-83.430801,484.236786,30.373223],[-88.263016,493.514984,32.043473],[-93.362686,494.111664,38.055001],[-97.945755,500.394318,38.447762],[-103.225967,509.967865,36.898987],[-103.075638,501.099030,40.381295],[-109.462479,512.884308,38.044167],[-111.595657,512.100922,38.962586],[-117.946426,514.048004,39.557335],[-127.016006,526.904511,36.544381],[-131.008499,529.303559,36.358330],[-134.426590,537.201569,34.519616],[-102.267410,492.224579,43.146050],[-102.403824,515.593598,32.946129],[-108.782059,522.998444,32.081307],[-106.806717,524.734101,29.312920],[-110.514908,519.530121,35.078308],[-125.793228,531.749359,34.208100],[-119.866714,529.895050,33.046288],[-121.969131,535.282074,30.740197],[-134.319107,541.892487,32.337166],[-134.647964,548.226410,28.722474],[-97.617508,504.522126,36.111115],[-92.468582,500.351410,33.117806],[-91.829788,507.344757,23.979523],[-86.432449,494.254792,27.321183],[-90.629410,492.748017,-7.220237],[-94.863479,503.321198,-4.816131],[-96.452469,510.834748,1.335183],[-101.193985,520.448944,4.078179],[-108.874344,528.403595,-2.124961],[-98.101822,510.774933,-2.892158],[-102.282486,514.895844,-6.691398],[-98.559036,506.964753,-8.324562],[-96.507950,500.778046,-10.534416],[-103.643936,513.293671,-10.926628],[-124.843582,526.117646,-32.294685],[-127.181473,524.076020,-36.627465],[-120.055679,523.263214,-27.862205],[-121.889908,516.449128,-35.301262],[-130.993362,513.334809,-47.125084],[-144.173843,513.218598,-59.140922],[-146.633560,521.125458,-57.537162],[-155.527664,523.381989,-64.030510],[-167.063370,535.572602,-67.482627],[-160.986832,539.610565,-59.870644],[-155.255325,539.455414,-53.404258],[-157.191849,531.326996,-61.642570],[-149.744339,529.281769,-55.511269],[-141.008316,521.488068,-52.040123],[-141.667251,527.019196,-48.530845],[-136.688919,527.493439,-44.921028],[-168.596939,544.887970,-64.101173],[-165.650894,524.680451,-70.877006],[-160.665787,516.280060,-70.485099],[-155.093765,518.684662,-65.592186],[-138.832779,514.338837,-54.014122],[-130.488907,506.309540,-50.290062],[-131.043411,499.001862,-54.241661],[-137.363602,488.741547,-63.477211],[-131.441299,470.021820,-65.930931],[-137.498550,482.793915,-65.718041],[-143.086075,486.260468,-68.034294],[-152.281082,488.368378,-72.155586],[-155.071731,494.394562,-71.079735],[-148.062454,479.915863,-72.859093],[-141.768082,470.034882,-71.933067],[-143.436172,461.046723,-74.851997],[-151.274917,465.645600,-77.594673],[-155.176224,476.602509,-77.474464],[-163.509964,468.742890,-81.775795],[-168.764053,477.527130,-82.951591],[-186.618729,500.997101,-86.354820],[-174.715958,491.968720,-83.261345],[-193.378250,500.850067,-88.932533],[-209.072952,512.327362,-92.551780],[-216.807571,519.089753,-94.518425],[-219.057205,512.442780,-94.945015],[-225.288650,515.367157,-95.879295],[-210.626846,506.077912,-93.442588],[-211.743179,497.578339,-93.573280],[-212.586441,501.752472,-94.091408],[-201.278824,500.786225,-91.228294],[-187.620315,491.243134,-87.764595],[-179.945938,489.470307,-85.571647],[-220.097854,507.011444,-95.487495],[-226.790054,505.490021,-96.394661],[-168.704056,470.027314,-82.900047],[-182.219131,481.004120,-86.097526],[-176.139725,472.055390,-83.933632],[-175.624588,479.492157,-84.807701],[-191.932388,490.954438,-88.766746],[-195.314041,485.970917,-88.760841],[-142.091080,450.239350,-76.534767],[-142.636856,502.196503,-62.353355],[-135.266739,495.707794,-59.092002],[-126.657242,476.508149,-60.097465],[-125.274551,489.681794,-53.351600],[-122.164078,491.789521,-49.573753],[-173.948746,536.122895,-72.268242],[-181.200699,540.444001,-75.407615],[-183.371597,527.264740,-80.763511],[-192.986160,530.926178,-84.282951],[-193.405044,521.399628,-83.609566],[-192.222427,513.184784,-85.800041],[-180.735733,507.619232,-81.298576],[-166.440201,493.079621,-78.702140],[-156.615005,483.967377,-76.320121],[-168.510025,483.651032,-82.238000],[-165.142593,485.393524,-80.386390],[-156.865311,466.203461,-79.815712],[-180.960342,503.015168,-83.223442],[-184.403274,501.845307,-85.213218],[-198.482193,514.439179,-88.580497],[-202.016983,519.631928,-88.955864],[-206.722122,534.724091,-86.970375],[-203.141556,539.303253,-87.311745],[-227.235733,571.149994,-90.710624],[-223.336685,570.177216,-89.120994],[-205.052322,543.813935,-87.381782],[-196.829422,538.222443,-84.869896],[-201.131973,532.794342,-85.313575],[-194.788284,527.155670,-83.324379],[-191.960220,544.455536,-80.463523],[-192.644852,540.041901,-82.286034],[-187.813003,522.932282,-81.305458],[-185.087234,517.355500,-80.194558],[-171.188064,505.699494,-76.368385],[-166.992203,501.137177,-75.695152],[-172.288467,514.004425,-77.643165],[-178.516312,515.511628,-78.339500],[-171.923050,509.001801,-76.136741],[-180.417435,521.094757,-80.486367],[-186.232620,536.363617,-79.841209],[-174.638077,530.021515,-74.931923],[-173.340958,523.262543,-76.309028],[-171.246536,516.057526,-77.045814],[-158.021377,502.306183,-72.561836],[-166.487015,504.198578,-74.589317],[-164.799942,513.628632,-73.929344],[-154.302322,502.793976,-70.227181],[-151.316849,507.411408,-66.855583],[-165.862076,508.758942,-75.552421],[-132.143631,526.842377,-40.439965],[-131.882706,518.676361,-44.886223],[-125.164444,513.690644,-40.867820],[-150.718094,563.333039,-33.837638],[-16.112198,471.522614,24.844986],[-18.125870,463.110199,22.852883],[-20.751236,458.520966,16.502221],[-27.310623,455.916718,10.204682],[-16.178238,460.481537,19.334809],[-16.328873,465.948761,23.645844],[-38.848953,463.304596,14.697983],[-42.247085,457.287262,19.779015],[-37.978104,462.797089,9.871827],[-40.184097,457.840790,8.579636],[-33.801712,456.537384,7.808182],[-38.735367,455.395294,8.151284],[-53.609878,436.286225,20.348130],[-48.311172,440.376984,15.169831],[-30.955765,449.617279,10.162415],[-44.562454,430.172638,11.332672],[-44.170669,426.984528,10.823326],[-45.991592,434.464569,11.109940],[-48.449356,425.774689,12.968430],[-56.445633,433.171601,16.255478],[-53.450638,433.504608,17.872719],[-35.420242,410.530548,14.715393],[-37.852310,415.384369,13.470169],[-50.758865,434.045075,16.758255],[-37.820450,383.163300,-0.721054],[-33.694473,385.836212,6.016312],[-30.073013,386.696625,11.460144],[-22.902481,386.494660,8.448861],[-27.958389,384.512726,8.698105],[-20.759415,388.784516,12.848221],[-16.216568,388.385163,8.240616],[-15.943924,387.798249,5.895028],[-8.205093,385.965485,1.050156],[-15.492752,391.111664,10.967354],[-7.852554,389.565155,6.377190],[-25.574417,391.357025,15.960907],[-30.263260,393.588959,15.178147],[-23.245926,401.330902,17.997986],[-25.878799,403.535736,17.839661],[-28.677017,398.223664,16.939156],[-156.352493,429.370331,-83.848793],[-151.794693,431.275605,-82.414695],[-178.971939,423.265961,-88.003013],[-167.809158,424.484223,-87.446983],[-178.740677,430.395294,-85.855964],[-164.898270,432.772736,-84.334648],[-160.507767,423.523774,-86.706260],[-155.326187,423.062348,-85.779365],[-146.510757,414.105744,-84.275322],[-149.354385,421.984345,-84.225090],[-154.437271,444.441010,-82.243888],[-156.194717,454.013092,-81.266838],[-52.364639,385.180634,-17.446556],[-71.122085,386.299286,-40.510383],[-71.169632,377.783905,-42.577400],[-79.675918,378.539460,-50.008369],[-91.173721,376.002777,-58.882881],[-88.859390,382.631440,-56.310783],[-89.739639,396.248078,-54.524971],[-95.740250,389.766449,-59.894463],[-100.044815,404.590546,-60.139503],[-108.617691,418.400360,-63.799278],[-74.964371,379.480805,-45.815590],[-75.322647,389.776703,-43.923820],[-89.717056,404.923065,-52.547432],[-102.001358,415.957001,-59.398583],[-85.681778,396.917939,-51.290580],[-81.123978,385.021027,-50.008628],[-96.409561,415.829926,-55.099372],[-100.878677,429.978607,-55.187950],[-108.444961,437.533600,-59.270591],[-103.759659,425.245697,-58.726326],[-113.766983,424.808564,-66.185402],[-110.019485,430.478241,-62.252679],[-114.469681,444.285370,-62.074684],[-121.039688,439.686005,-67.654014],[-126.186905,435.471100,-71.607429],[-127.544083,449.248566,-69.280418],[-122.400040,449.216034,-66.169426],[-116.619034,432.632050,-66.426628],[-130.369766,431.532502,-74.569313],[-122.083267,425.203705,-71.319328],[-203.888687,465.719696,-82.443290],[-210.232803,466.187592,-81.889122],[-215.878433,469.771454,-80.396171],[-223.188003,469.787018,-77.877206],[-214.101150,460.116608,-81.186745],[-226.699173,455.984833,-76.184426],[-214.071548,445.625336,-77.095771],[-205.204361,440.231659,-79.961509],[-200.497940,439.304169,-81.661462],[-199.213089,436.199677,-80.416420],[-203.013321,433.281708,-77.451835],[-174.123367,432.746613,-84.994652],[-176.694229,437.220673,-85.086998],[-210.916763,454.110749,-81.301826],[-221.755020,456.053437,-78.233177],[-199.732742,472.829377,-81.318138],[-207.531875,475.625031,-80.307350],[-196.626297,433.388703,-81.048149],[-211.973221,448.238739,-79.096916],[-204.941849,449.049897,-81.542396],[-203.255142,453.102387,-82.673240],[-220.642959,462.520600,-79.285987],[-228.185623,463.292694,-76.129571],[-233.019241,469.260224,-72.902244],[-240.458938,471.384491,-67.893333],[-249.573135,461.930207,-55.587379],[-237.339310,456.956086,-55.191841],[-233.843582,455.027191,-55.393379],[-243.272354,467.532135,-53.591697],[-227.627579,445.734406,-65.842048],[-255.347793,502.213898,-75.829795],[-260.367752,501.672821,-80.214608],[-257.755203,500.240998,-84.383369],[-254.938980,500.640961,-88.394844],[-263.251724,507.777863,-77.299720],[-278.572098,596.599823,-103.552651],[-288.005936,609.590363,-106.300819],[-274.931961,590.003998,-102.490974],[-286.052811,596.150849,-104.437187],[-224.275833,450.769379,-74.669090],[-218.835892,442.966706,-72.761299],[-204.272781,435.061493,-77.345085],[-207.035049,433.558808,-73.584999],[-207.236282,427.748932,-71.458000],[-204.644363,420.383454,-65.534980],[-203.240066,416.005219,-63.788887],[-204.285904,406.840058,-61.747613],[-204.977737,399.391632,-60.922721],[-215.164566,397.998749,-63.510643],[-216.549026,398.266571,-65.656807],[-206.842300,410.693878,-82.946191],[-203.524368,421.702423,-82.043022],[-203.749893,391.308991,-60.270774],[-199.783218,393.492829,-60.296043],[-194.473282,373.576752,-59.904914],[-186.304703,362.315583,-63.715828],[-183.307083,359.931061,-64.012672],[-175.587784,358.347138,-62.725929],[-186.544632,387.254364,-58.123039],[-191.176651,382.496735,-59.208534],[-188.059646,369.685578,-60.004509],[-176.582596,377.056794,-58.249505],[-177.251053,366.377472,-59.335472],[-186.159317,364.692841,-61.451057],[-192.520035,365.934357,-61.182412],[-197.557693,414.506745,-62.375405],[-203.751602,422.714936,-64.730735],[-195.141861,419.540558,-61.490487],[-203.257034,410.170563,-62.947639],[-208.235550,412.777802,-64.595298],[-220.029373,440.456635,-69.379966],[-199.778885,428.586090,-82.223671],[-205.010086,431.013275,-75.555915],[-209.292984,418.902802,-71.625953],[-207.304031,422.469025,-69.189445],[-206.996170,420.108734,-67.394310],[-214.117386,405.948456,-68.401542],[-212.366470,411.820526,-72.775200],[-216.500442,401.169403,-72.063469],[-213.189773,407.825653,-75.922737],[-208.051773,416.890351,-79.538581],[-209.782059,407.773407,-64.457130],[-211.546036,401.238373,-62.394661],[-207.205276,424.109650,-75.702584],[-243.972610,460.881195,-53.729301],[-233.715286,459.516083,-53.626396],[-220.395401,461.142304,-52.869941],[-209.143082,458.815522,-51.393989],[-209.705704,454.036896,-52.446540],[-204.430313,455.138031,-50.590049],[-202.257339,469.220978,-48.815193],[-206.452835,487.595429,-52.607841],[-208.288711,494.090729,-54.568412],[-236.074478,481.971588,-60.254799],[-228.316421,485.855805,-65.122123],[-216.702896,492.548554,-59.501533],[-206.695206,475.997101,-50.912803],[-212.406509,490.717804,-55.716881],[-222.635513,486.634247,-57.753456],[-206.532242,464.469086,-49.728050],[-215.661026,463.568940,-51.384346],[-227.403702,464.808136,-52.131599],[-229.785477,455.401764,-54.676446],[-40.911087,428.419464,9.317391],[25.883408,432.030243,1.579712],[48.889572,446.167267,3.208458],[46.072800,450.566010,0.105561],[43.130295,454.252961,0.669182],[-22.120132,417.626313,13.285500],[-72.169327,451.910309,-10.598152],[-77.854019,454.837555,-18.677971],[-83.039932,461.135956,-22.124412],[-77.127151,449.319306,-21.379707],[-84.313125,458.370697,-25.792214],[-86.291153,455.032685,-30.404472],[-18.077591,387.157074,-6.834983],[-18.442886,378.165253,-12.943565],[-13.449661,386.794464,-5.371406],[-22.007950,387.479279,-3.026641],[-24.033462,385.255707,-10.462211],[-29.165420,382.145111,-1.204589],[-31.251724,379.783966,-10.189659],[-26.495743,379.269684,-14.069984],[-20.974869,380.544709,-13.946205],[-22.568680,383.088959,-12.957725],[-29.086197,381.341034,-12.691536],[-16.647293,385.216950,-10.085579],[-100.378555,466.704315,-40.485191],[-81.959244,429.681977,-36.924813],[-71.863541,412.590302,-32.846397],[-71.444717,406.368683,-34.758400],[-76.786148,406.613861,-40.417106],[-98.462234,438.045868,-50.614189],[-91.859268,423.821625,-49.147071],[-61.531448,334.397553,-37.454338],[-67.744217,347.927704,-42.903176],[-62.626236,350.355805,-38.204368],[-59.233108,342.545624,-35.315269],[-74.808304,342.620575,-48.236396],[-69.483353,344.199616,-44.345771],[-74.390152,333.977570,-47.468666],[-68.370926,366.263520,-41.963523],[-65.076553,366.104706,-38.621742],[-40.462295,376.901215,-5.663887],[-37.297439,374.705353,-4.019889],[-37.477188,378.723419,-1.784286],[-34.257400,377.594818,-2.636047],[-34.416153,363.970795,-8.763954],[-29.208633,364.086701,-8.261329],[-30.075027,372.303986,-14.022683],[-36.893936,373.015778,-5.385093],[-32.740311,344.960053,-11.616006],[-21.518448,359.294709,-5.897216],[-16.608658,363.958832,-5.133781],[-16.685806,360.401215,-3.734649],[-29.808243,361.983551,-8.139732],[-32.585586,351.020844,-11.456352],[-32.063309,340.388275,-10.564170],[-28.630447,351.624482,-9.809440],[-26.014419,352.246796,-8.487572],[-20.699600,353.063629,-5.998901],[-19.818741,321.147126,0.980118],[-20.281814,314.551758,-0.526428],[-17.023025,323.658356,3.818146],[-82.867264,425.314972,-39.676109],[-82.382095,417.546723,-42.163140],[-74.257217,468.664643,11.298378],[-79.665787,481.633759,10.120224],[-80.001175,482.900605,14.436577],[-79.598343,480.804169,19.679726],[-76.360794,473.622345,15.580826],[-77.236954,474.005890,20.661042],[-78.710403,463.573273,31.966317],[-74.140579,458.453827,25.054222],[-72.017166,448.590607,24.700814],[-92.649795,505.639679,28.339898],[-97.390640,509.700165,32.106408],[-100.783035,518.541230,28.442101],[-103.964310,525.350922,24.336968],[-96.920669,516.227509,23.724404],[-109.729507,503.307831,41.223824],[-130.693008,523.920319,37.671219],[-125.802078,517.065705,39.202408],[-117.165420,508.601410,40.605217],[-122.669021,509.949860,40.055680],[-114.209915,501.679718,41.320198],[-106.881546,488.593964,43.836266],[-97.314529,483.062470,44.302651],[-96.589371,488.572235,42.495102],[-93.611404,484.096955,42.155945],[-85.897049,478.284027,37.252655],[-83.968948,479.946381,34.588692],[-89.869095,488.268891,37.565552],[-107.936722,496.459259,42.588860],[-112.539566,491.605255,42.025277],[-149.115372,553.953461,30.129258],[-142.658279,551.473419,29.941468],[-147.547134,561.090668,25.766350],[-148.247879,565.562287,22.640801],[-153.396988,573.324311,18.783547],[-139.552505,559.884369,21.562966],[-134.800186,559.878754,15.642487],[-76.802017,470.643647,23.529801],[-79.462540,474.010895,29.300904],[-156.155105,568.594391,23.902947],[-158.103836,558.846711,27.629334],[-153.144791,560.577240,27.233849],[-152.148575,552.399689,30.114907],[-192.532425,611.847504,8.139229],[-183.946915,605.455963,9.279549],[-141.550857,482.827912,0.189568],[-152.196976,490.153778,-10.213371],[-178.178665,532.810761,-8.813469],[-89.996170,472.836884,42.015999],[-96.053116,477.964325,44.732575],[-102.161026,484.401703,44.961777],[-102.955826,476.149506,44.162590],[-106.844314,480.296234,43.715935],[-120.933853,487.800141,34.073578],[-129.803543,485.682831,19.545090],[-142.128189,491.082123,7.649613],[-149.896316,497.414399,1.771553],[-151.981399,504.530060,6.591034],[-159.193741,514.537201,6.084717],[-146.802627,498.396454,7.911568],[-133.753860,503.775971,29.178536],[-138.841812,501.369416,20.917832],[-137.475784,506.087128,25.530739],[-135.406387,508.864594,31.298790],[-139.194839,492.080780,12.613198],[-134.712540,496.231598,22.230606],[-129.080154,498.340729,29.778672],[-130.376053,504.014008,33.558892],[-129.408890,507.837494,36.956337],[-122.512344,504.207489,39.176422],[-119.787247,498.420868,38.451645],[-124.598709,493.581452,31.994759],[-140.886429,499.844574,16.530815],[-147.592178,508.502472,16.300164],[-157.554947,504.106476,-5.732528],[-146.873001,489.561432,-0.894539],[-139.296402,483.700714,5.224289],[-81.673660,468.694977,35.010529],[-147.295730,514.823639,24.738312],[-145.243057,509.939057,22.900689],[-142.003311,505.008454,20.877839],[-141.801712,511.526947,28.960747],[-156.925857,547.348053,28.584351],[-186.705276,558.400666,1.856041],[-189.933548,556.067047,5.736557],[-279.285843,592.392060,-74.003654],[-268.348221,594.771149,-67.565330],[-279.927505,598.876129,-74.430993],[-281.529312,605.826691,-74.962120],[-285.126358,596.526825,-77.758004],[-304.888504,604.979950,-85.972831],[-308.867325,607.806488,-88.489723],[-314.900772,613.424897,-90.246452],[-311.570877,613.733429,-88.275184],[-309.328018,638.009980,-77.413414],[-274.220169,636.171723,-48.526222],[-275.698257,631.668122,-53.187996],[-260.495865,625.595978,-39.928276],[-260.731888,627.959626,-37.248893],[-258.228958,629.624909,-31.318199],[-253.321182,629.491425,-26.404533],[-268.030350,626.594452,-48.430748],[-274.389664,621.958954,-58.824455],[-140.935013,568.794403,9.320839],[-144.564163,570.821259,11.848503],[-157.727920,585.866547,7.036309],[-150.962906,579.973969,5.863671],[-153.543045,579.648896,10.904892],[-152.988785,575.764618,15.560334],[-145.761001,568.076569,17.671349],[-145.181045,532.683625,-49.037971],[-145.355423,536.437348,-48.413917],[-155.156326,545.105378,-52.668815],[-149.817947,533.628510,-51.867668],[-148.331802,493.620270,-68.877967],[-144.359268,494.994721,-66.146385],[-147.885879,311.765869,-64.301094],[-150.771561,362.728485,-52.497810],[-177.852798,354.008271,-62.072044],[-168.706314,355.913849,-59.975578],[-199.120315,355.133698,-64.795890],[-201.640213,350.925751,-67.602317],[-197.160232,346.738922,-65.112434],[-193.651626,347.359711,-62.580604],[-198.835892,351.004120,-64.510734],[-107.233902,371.818940,-68.958747],[-96.748123,368.609711,-63.078987],[-87.712784,358.331879,-57.680000],[-82.512833,354.205170,-54.222862],[-73.804214,351.981293,-47.715690],[-71.675674,358.340973,-45.739051],[-85.903458,367.669831,-55.978935],[-83.618667,376.328461,-53.439567],[-72.998672,364.921723,-46.275230],[-91.177017,368.408051,-59.554908],[-98.054703,375.110199,-63.431221],[-95.887955,379.563935,-61.550529],[-110.178360,394.937226,-68.524330],[-105.360733,398.976227,-64.775291],[-112.538406,412.286713,-67.501854],[-79.341446,359.597016,-51.721183],[-188.892410,432.935578,-83.573678],[-188.091629,427.883454,-85.982963],[-243.502029,496.315766,-89.976067],[-137.131790,457.687897,-72.516349],[-185.826736,364.957611,-86.377800],[-179.816299,360.883881,-86.817360],[-177.289505,364.057953,-87.605262],[-174.310501,369.468109,-87.338340],[-164.536636,372.162384,-87.329094],[-177.371292,374.201935,-89.353584],[-184.691849,374.005402,-88.665611],[-163.145706,369.781830,-86.375984],[-176.297684,371.870270,-87.957237],[-179.097549,355.702301,-85.283271],[-178.943802,350.128754,-82.456428],[-164.069168,357.366547,-85.551232],[-160.602005,353.024445,-82.842933],[-169.049271,352.326752,-83.810142],[-173.057754,345.458954,-78.903863],[-195.591202,408.871125,-88.544136],[-193.754288,398.392792,-89.294929],[-190.003311,394.714203,-89.898658],[-183.335586,381.786408,-90.039146],[-182.713699,390.244965,-90.302269],[-176.345962,394.469391,-89.888771],[-184.260818,397.530915,-90.026054],[-177.551895,409.220673,-89.114128],[-191.357010,408.679352,-89.308235],[-170.401993,384.627106,-89.933312],[-160.065140,385.177155,-88.983680],[-153.801285,398.868439,-87.305656],[-155.998917,375.336090,-87.627983],[-164.926346,380.363495,-89.547753],[-155.250748,371.602082,-85.289238],[-211.465530,407.231964,-79.023156],[-217.863968,387.263459,-61.640495],[-219.437637,378.607025,-71.097313],[-181.701919,341.463044,-69.273491],[-200.597000,364.726044,-75.748909],[-194.998184,367.346344,-81.822456],[-203.560989,370.918549,-80.487327],[-208.422623,369.762421,-76.650261],[-191.959305,363.858490,-83.250831],[-193.503616,349.519013,-77.718773],[-195.180069,346.768036,-73.683128],[-192.654739,343.855378,-64.318351],[-188.866348,342.450531,-66.037132],[-198.559158,346.746796,-69.413536],[-196.920669,358.841095,-79.115060],[-186.101150,350.026581,-81.434272],[-197.661453,353.756684,-76.553596],[-200.185806,351.463105,-72.409402],[-206.020523,364.088288,-64.775857],[-202.008499,356.413056,-71.327568],[-201.880081,361.755951,-71.132682],[-198.908462,398.097809,-87.973381],[-135.865921,364.518769,-79.106071],[-146.287674,372.760041,-83.361015],[-141.774307,378.205353,-84.137687],[-127.111954,364.163666,-76.476036],[-120.657181,354.745941,-72.756446],[-125.898392,351.466706,-73.751197],[-132.834671,347.105866,-74.195610],[-122.152054,344.497773,-70.784721],[-133.681045,340.181488,-71.427375],[-144.419632,346.637055,-72.288459],[-135.368545,358.101837,-45.094856],[-139.008743,361.394806,-46.711189],[-140.480789,367.254181,-45.409767],[-135.677750,375.569611,-38.800468],[-139.470840,380.780854,-40.421455],[-144.016067,372.850434,-45.964180],[-149.189834,379.986054,-47.143257],[-146.142898,363.171845,-49.929893],[-149.486648,373.424836,-49.800193],[-128.585525,357.664521,-37.329277],[-97.013809,348.637360,-11.615974],[-83.015091,348.976044,12.502640],[-74.927750,343.299103,15.710900],[-66.448440,338.138092,19.597062],[-65.152969,334.652741,20.794434],[-60.539993,334.431732,27.297074],[-78.370682,334.312531,12.064896],[-92.917313,343.957672,6.189606],[-88.406387,339.307282,9.510727],[-88.541275,338.874054,-1.218544],[-84.864517,335.406647,2.297982],[-71.808731,333.580048,15.757668],[-70.733597,354.082428,17.844269],[-106.012100,332.007111,-20.217674],[-101.338577,329.478546,-15.482994],[-97.183670,324.374909,-13.143913],[-114.474563,329.354157,-26.667717],[-116.782120,321.093170,-27.531014],[-109.659927,333.133759,-21.745080],[-100.952835,339.339569,-14.933387],[-110.660416,341.065949,-22.671714],[-107.701004,340.639374,-19.899789],[-102.194046,347.471649,-15.982231],[-86.601944,341.531037,11.474854],[-82.196060,264.637696,-6.686866],[-82.674332,258.223175,-7.562858],[-85.251602,249.995850,-10.625984],[-79.904373,252.971985,-4.683212],[-82.698990,250.880127,-7.107979],[-75.468399,270.577301,-0.750503],[-69.203934,276.145691,6.227242],[-78.573074,262.367401,-4.259147],[-79.917190,278.959351,-4.195045],[-85.002518,272.958435,-8.808616],[-80.427200,272.734650,-4.158432],[-85.412552,257.657776,7.006531],[-70.531387,199.645691,-2.548278],[-80.710892,209.372498,-5.500816],[-63.316788,205.639191,16.973603],[-63.051895,213.678437,13.667412],[-60.718582,217.390686,14.786545],[-65.002701,200.771454,13.021309],[-66.176407,192.050446,9.170296],[-66.025833,199.191834,7.877892],[-67.256973,200.403229,3.003960],[-71.156143,191.176758,-4.794929],[-74.393265,194.857392,-6.255226],[-77.354874,195.168457,-6.043136],[-61.622696,210.712006,19.927651],[-63.244278,204.020233,25.355599],[-63.389297,199.422364,31.192475],[-64.083145,198.165009,26.450600],[-62.039932,204.723236,28.579018],[-60.771316,211.299469,21.321816],[-41.707840,209.840302,1.728012],[-31.470779,210.192627,4.466629],[-40.292251,205.908020,3.400986],[-39.702530,192.614807,10.370774],[-30.472244,197.167054,10.764779],[-25.455643,181.045533,14.805977],[-45.474930,200.346192,8.169411],[-31.959976,191.308197,12.278099],[-26.763016,203.575074,8.907662],[-18.673355,188.103943,13.257508],[-24.954727,190.829438,12.676529],[-38.640640,175.707276,20.206665],[-38.827774,162.627564,30.853180],[-29.291153,164.684571,23.834168],[-32.844986,167.849274,24.208420],[-29.011917,162.542755,29.196915],[-24.570999,158.709809,28.743164],[-114.683853,317.200104,-26.348503],[-124.120987,331.807648,-29.882317],[-118.470352,328.955231,-28.532692],[-111.278641,325.868073,-24.686164],[-117.400894,333.277741,-26.788475],[-114.179520,263.662354,-19.648033],[-121.133133,256.090668,-23.955558],[-117.011856,254.368958,-21.618919],[-125.052688,251.477417,-26.075126],[-107.800552,249.968537,-25.451286],[-105.851395,247.187287,-24.685524],[-105.010269,248.744171,-22.471611],[-94.805069,248.519043,-17.244285],[-92.308182,255.196625,-15.051063],[-98.119095,260.121582,-16.281974],[-109.556778,252.761383,-21.542260],[-110.251541,250.679566,-25.096794],[-107.251480,256.071808,-19.626228],[-99.410416,253.150482,-18.686821],[-103.624893,252.423035,-20.993279],[-118.267349,249.704315,-27.700798],[-111.294449,249.195862,-29.914054],[-116.588943,258.765869,-20.549842],[-125.883133,256.419709,-26.750343],[-130.975296,253.109742,-33.162559],[-126.717972,251.898529,-35.429939],[-128.666580,253.686402,-27.805183],[-123.497818,250.329438,-30.407142],[-118.224441,249.901184,-34.741172],[-116.646744,250.627625,-23.778236],[-100.751236,247.437622,-19.446678],[-101.864395,235.101990,-19.227577],[-139.550491,322.210785,-36.203209],[-113.519424,331.322113,-24.831245],[-139.414993,306.325959,-37.165855],[-142.265762,288.674652,-43.276330],[-129.113968,281.679200,-53.837562],[-134.445450,301.509888,-35.952416],[-134.329544,295.168000,-35.905662],[-105.185379,247.202393,-29.831688],[-101.276260,244.101654,-33.692558],[-107.272903,249.173737,-31.035270],[-104.794083,243.822602,-28.718177],[-112.243912,251.136841,-38.890754],[-106.290726,252.817231,-40.360771],[-100.404129,253.517029,-38.450265],[-104.853531,250.556275,-34.798012],[-138.237015,303.033387,-61.648597],[-141.523941,312.566315,-66.241203],[-86.232620,259.153748,-10.641121],[-88.390213,268.022248,-10.708061],[-96.995132,251.347718,-38.261910],[-102.520096,248.126068,-33.215446],[-78.996109,306.165009,-46.851188],[-74.932266,306.431488,-44.398185],[-79.487442,321.482636,-49.416435],[-46.528335,155.610657,35.572037],[-40.214737,147.985504,40.381943],[-34.066055,152.241913,40.780671],[-43.190750,150.082245,38.074120],[-45.038589,149.533387,39.983704],[-49.058548,154.715882,43.102707],[-50.400162,152.538941,46.244873],[-44.460525,144.367249,44.258866],[-48.348099,145.412323,48.850212],[-45.414078,140.286164,47.565560],[-55.085342,145.144165,52.897896],[-58.138016,158.143494,49.222283],[-52.609085,151.133576,48.799981],[-53.588882,161.442047,45.763642],[-44.629715,158.992859,31.502991],[-79.407974,203.845764,-5.734344],[-82.470779,209.597412,-3.283317],[-88.024490,231.441681,-10.833824],[-92.120499,208.658264,6.330399],[-85.498001,200.996399,1.919793],[-86.093094,209.955872,3.794159],[-88.528030,198.451660,2.595162],[-88.024490,190.239136,0.547562],[-83.772598,190.215729,0.269493],[-85.106766,214.377899,2.832863],[-125.122940,233.826538,-0.387870],[-91.762222,347.800873,-3.486953],[-91.684830,344.030915,-2.948600],[-79.569839,312.022003,1.046288],[-62.849014,282.768280,21.238411],[-88.226700,267.309449,12.626435],[-86.676285,268.401490,10.693634],[-81.372330,269.800110,11.019898],[-71.623306,302.492096,26.281365],[-72.290237,281.468598,18.855385],[-69.612076,270.842133,15.064446],[-76.949539,276.625580,15.414414],[-86.406631,289.965485,18.150628],[-88.253250,276.113587,13.351464],[-88.956802,292.458313,19.039933],[-78.223282,286.451142,19.255234],[-88.852249,271.521088,13.751908],[-86.861404,283.267914,15.104927],[-84.938431,273.287751,11.874062],[-129.347977,403.908295,-26.929359],[-123.059097,399.639496,-23.165627],[-160.977188,404.993805,-49.592888],[-158.779495,399.781830,-49.280677],[-167.677688,396.832550,-53.064735],[-173.289322,403.212799,-53.957389],[-179.243423,402.040863,-56.393730],[-178.135879,389.464447,-56.840629],[-173.802444,384.694184,-56.450997],[-180.632645,393.689057,-57.214058],[-176.931167,391.948090,-56.602333],[-142.947647,417.407807,-36.566384],[-139.449051,414.118744,-33.758247],[-147.259415,414.758332,-40.413581],[-146.577957,421.500031,-39.249519],[-135.622879,415.385041,-29.504432],[-133.967911,410.497040,-27.783393],[-134.615799,411.026154,-30.413887],[-138.582107,423.176544,-30.112709],[-161.053238,446.180024,-37.161018],[-167.085281,453.761322,-37.542946],[-158.956253,446.982086,-34.219780],[-164.025345,457.573761,-34.168327],[-195.875625,458.658905,-47.582725],[-192.770950,469.326020,-45.943168],[-200.574722,477.945099,-49.304054],[-183.756790,461.902924,-42.941643],[-187.352005,464.690888,-43.997276],[-196.717178,481.109101,-48.075981],[-194.695572,490.518341,-47.371285],[-198.463821,464.848236,-47.722023],[-215.379349,466.312836,-50.935295],[-214.912918,474.979340,-51.906746],[-219.107193,479.145172,-53.650322],[-181.667374,471.894257,-41.135658],[-174.409134,469.182038,-37.314065],[-182.582596,483.605683,-39.971489],[-189.029556,487.958649,-44.101402],[-199.991775,497.210480,-49.371330],[-206.301285,498.048859,-52.675789],[-196.371231,502.193512,-45.800987],[-194.579605,498.794892,-46.082054],[-203.403335,509.317963,-47.357293],[-188.235733,509.757904,-38.090981],[-189.725601,505.913849,-41.343468],[-206.461319,506.346833,-50.278038],[-216.581192,509.915924,-55.916527],[-222.104629,511.810150,-59.262199],[-230.761734,522.371430,-60.111015],[-223.104690,517.802216,-56.827751],[-224.159927,524.460419,-55.280784],[-216.165542,516.548676,-53.249443],[-216.164810,519.883942,-51.053886],[-188.081253,478.729645,-43.996391],[-177.535538,465.862885,-39.731941],[-170.676834,462.521393,-36.987037],[-223.648086,500.996735,-61.745644],[-239.384659,501.890107,-69.322425],[-212.145584,504.973908,-56.255851],[-157.021072,449.055451,-25.056343],[-151.983719,464.916474,-21.784797],[-145.389847,459.843109,-17.931785],[-162.150101,467.618134,-30.088646],[-167.379715,468.912262,-34.382560],[-152.787979,469.951630,-21.975410],[-157.869217,466.431671,-25.728569],[-162.922378,460.722016,-28.289528],[-164.332718,464.307160,-32.583198],[-147.135147,475.994416,-14.708671],[-156.640152,478.446686,-23.357872],[-134.501663,479.734040,9.083771],[-119.416580,461.812653,14.144593],[-177.979385,538.116913,-3.200676],[-141.006119,570.287567,-5.948860],[-161.517593,547.342865,-55.483757],[-172.623123,556.189606,-59.931572],[-182.280777,565.672577,-62.401466],[-173.813492,563.234284,-59.139443],[-171.627090,559.220429,-58.652535],[-176.973221,552.354767,-67.139351],[-185.732559,560.861176,-69.211403],[-197.452957,562.595002,-76.805442],[-194.208877,567.033234,-72.299049],[-207.564590,578.512604,-76.262124],[-197.290848,584.063568,-67.255638],[-199.240372,580.581757,-67.803337],[-199.977127,575.339569,-71.836509],[-214.809585,583.857086,-78.880607],[-187.353653,577.136444,-62.813469],[-189.514053,582.553070,-61.360069],[-210.872513,619.608185,-57.562218],[-218.261856,628.817169,-59.404838],[-205.022354,621.883637,-50.606941],[-206.883926,619.294342,-54.590431],[-198.585403,610.010285,-52.269142],[-200.973831,608.123749,-53.854225],[-196.190750,603.411774,-52.116127],[-187.343643,585.370026,-57.057609],[-191.191482,573.162262,-65.175027],[-139.892715,479.179108,-68.415992],[-115.132034,454.293549,-59.516289],[-241.817703,510.259857,-97.883263],[-237.939896,540.979523,-97.537056],[-240.338455,537.940461,-97.627220],[-232.236648,529.968415,-96.763557],[-240.770767,531.710297,-96.427955],[-259.867142,529.509980,-90.451684],[-271.419632,515.772736,-79.217750],[-271.934219,510.906342,-81.818290],[-258.134415,507.554474,-93.443901],[-252.725418,508.531952,-96.211052],[-134.156753,562.228363,-5.650413],[-182.557815,615.562775,-11.639167],[-200.748245,632.749909,-20.589409],[-209.360489,640.280487,-22.961998],[-215.782852,644.693512,-37.841102],[-213.428909,644.232086,-30.442985],[-219.363541,649.016754,-35.911872],[-214.115188,640.121735,-42.570549],[-215.565384,639.072419,-46.256096],[-221.430923,641.106354,-52.283821],[-216.472122,632.542878,-54.365319],[-232.393448,643.095795,-63.730507],[-237.300125,643.389740,-68.087135],[-240.969375,626.068878,-80.321922],[-257.313248,639.180878,-86.513283],[-240.388199,622.636261,-81.739159],[-237.207962,638.571137,-68.728127],[-206.655289,637.915375,-26.946846],[-248.619644,667.501435,-58.607414],[-232.870376,651.354462,-56.700904],[-228.895645,651.111115,-51.478309],[-226.999344,652.309540,-46.749946],[-237.542496,660.355316,-51.986061],[-231.114456,645.632172,-60.332374],[-238.083084,652.035431,-62.586448],[-243.490555,652.616608,-67.910377],[-254.392044,657.221588,-74.976478],[-253.323135,651.828156,-74.959648],[-268.386246,663.309235,-81.608497],[-257.518692,663.021698,-73.767479],[-252.249283,664.361542,-66.846550],[-241.911148,658.904450,-60.073585],[-257.659317,674.184784,-62.496635],[-189.040481,616.907807,-32.311088],[-232.667984,635.702118,-9.971215],[-237.182205,633.696259,-9.866462],[-229.798599,627.904938,-7.033912],[-221.372024,617.854645,-5.476677],[-222.221023,614.121735,-6.628944],[-240.756424,626.486237,-17.220924],[-243.955643,634.147126,-16.443275],[-247.294510,633.213959,-19.870155],[-266.226334,634.787751,-93.977013],[-278.062515,643.144257,-98.587532],[-265.249161,636.330780,-93.323692],[-261.915787,639.196564,-89.942161],[-274.253067,645.918061,-95.544670],[-269.957535,648.187531,-91.655159],[-266.582657,651.088471,-87.690086],[-259.410721,630.112763,-91.280983],[-268.055191,631.993195,-93.642753],[-398.712540,705.699677,-116.602181],[-407.275894,712.203461,-121.716743],[-404.443130,714.978119,-117.266395],[-390.720352,702.476288,-111.813743],[-371.707413,677.498200,-109.270012],[-366.868301,676.945893,-104.819236],[-319.274063,668.782379,-72.078117],[-311.646194,663.529023,-66.504571],[-312.058670,666.902863,-65.296684],[-313.223343,673.533112,-61.123420],[-308.467667,671.962494,-56.511772],[-314.145218,670.313080,-64.049110],[-320.039627,675.083222,-66.597068],[-315.544449,677.779145,-59.542106],[-356.655655,674.983490,-97.170463],[-360.121109,677.345124,-98.660499],[-353.555679,681.374054,-92.904075],[-353.109878,677.113251,-93.761192],[-349.323013,681.178009,-89.992714],[-320.531998,727.105439,-71.826561],[-320.013077,721.063507,-53.711158],[-329.537796,726.398590,-56.739997],[-332.666458,726.808503,-56.933799],[-337.147964,726.302582,-58.981988],[-339.793594,730.975495,-60.434867],[-338.505997,732.614899,-61.868766],[-333.099747,731.693329,-64.095756],[-344.113541,737.260956,-66.609001],[-343.169205,739.145356,-71.435035],[-346.837173,737.470612,-65.958992],[-344.368790,733.140778,-62.736442],[-349.376846,736.398712,-66.912408],[-342.357437,729.269135,-61.927574],[-343.922012,723.652558,-65.637062],[-340.338882,717.540314,-63.808876],[-338.214493,720.016022,-62.621605],[-333.204910,716.828400,-60.261421],[-327.453201,721.923676,-54.171760],[-322.824051,720.801483,-52.628715],[-317.518448,701.177643,-52.052987],[-317.365616,706.290558,-52.166755],[-329.859939,722.414826,-55.381752],[-316.748367,717.100312,-49.850151],[-311.081192,714.542023,-48.788368],[-302.246963,711.214630,-50.413475],[-303.578628,714.135956,-57.571769],[-322.383133,717.923737,-52.011711],[-270.846451,668.432831,-82.275962],[-294.376297,671.838044,-96.520713],[-323.951919,665.043305,-113.438697],[-334.055191,670.162690,-116.607461],[-324.939041,668.332123,-113.724937],[-383.513077,695.518463,-127.266090],[-380.491592,698.524079,-128.525795],[-396.155044,708.643952,-132.259987],[-386.013321,698.911347,-128.643609],[-390.402603,728.991791,-131.860283],[-397.427017,722.856293,-137.549035],[-390.631363,739.028473,-132.842155],[-399.691910,741.224213,-136.733605],[-406.665542,744.709015,-138.981590],[-374.522232,721.851288,-124.967064],[-375.321548,739.766022,-122.636924],[-375.710953,735.151581,-125.026222],[-402.329239,763.968170,-128.690895],[-381.689224,752.507111,-119.647697],[-409.420303,775.383881,-116.956306],[-414.285660,776.328034,-112.136253],[-428.459366,764.608307,-111.269539],[-431.325821,770.496491,-113.243980],[-449.526993,769.833832,-122.937584],[-445.503921,759.980683,-123.985572],[-436.507217,757.766632,-118.616630],[-441.164810,764.703583,-119.465782],[-447.541153,773.118317,-121.594033],[-457.531143,779.693329,-128.976814],[-442.076309,777.471711,-119.893609],[-438.947281,767.913605,-116.814079],[-449.608292,757.408905,-128.617134],[-451.983902,752.694184,-135.113182],[-444.749771,744.116852,-137.259941],[-444.076309,745.643708,-133.899864],[-453.873428,753.309052,-143.322929],[-454.470108,757.736969,-147.858361],[-447.416763,755.374970,-149.146598],[-444.442520,757.250641,-149.762230],[-446.332901,750.965485,-131.950126],[-452.992203,761.978485,-127.985374],[-437.498184,739.597260,-133.019737],[-409.786026,716.430146,-133.434486],[-409.407120,714.073822,-130.352059],[-405.501114,709.324128,-125.429206],[-417.443252,719.900177,-131.875557],[-415.917129,720.231049,-134.173942],[-255.456680,622.716828,-88.715324],[-208.625870,570.719696,-80.557914],[-322.356827,618.362763,-95.955681],[-303.006607,598.452668,-93.786796],[-300.023270,595.566986,-97.640510],[-304.512527,580.108979,-96.555946],[-335.871963,634.259064,-111.396721],[-347.826553,643.419342,-106.643531],[-335.646133,634.573456,-99.084907],[-333.697403,629.736054,-100.048440],[-345.820938,645.332123,-101.921348],[-345.383438,651.500641,-100.130822],[-340.176529,653.375763,-96.398704],[-339.317886,638.858063,-100.178383],[-341.800552,644.935456,-99.475090],[-317.461929,615.569489,-102.698112],[-325.203506,624.229218,-108.035653],[-332.311661,628.719879,-107.254173],[-335.041641,630.266693,-104.948037],[-339.451919,634.641083,-103.961799],[-339.752334,636.410065,-101.815498],[-320.031753,616.834503,-100.795295],[-328.763870,634.156342,-94.810081],[-320.012955,637.602326,-88.962318],[-319.384415,630.554840,-89.943931],[-312.508682,620.633149,-87.570228],[-321.426712,618.884125,-93.730842],[-319.064590,615.155487,-96.548057],[-326.925796,622.527985,-98.418374],[-312.877457,629.492585,-86.652809],[-330.785721,632.729706,-112.706932],[-340.943130,636.624359,-109.726478],[-356.286026,653.501252,-115.126443],[-355.858047,652.270600,-111.485267],[-351.617325,648.082306,-113.246955],[-316.550918,639.861237,-81.471489],[-325.419144,646.150849,-87.201622],[-307.518692,634.794892,-78.333397],[-313.016739,635.780854,-82.606102],[-302.229629,650.231781,-69.140617],[-306.205948,662.183258,-62.211937],[-328.480057,625.832123,-96.709648],[-321.105179,622.678131,-91.875405],[-327.550552,630.484589,-95.038231],[-317.455582,647.215973,-79.809379],[-309.970230,649.312958,-74.624764],[-310.936172,656.235688,-72.772758],[-307.461624,589.899567,-81.165001],[-279.476456,588.518036,-74.411766],[-281.713760,570.911835,-75.083686],[-293.431656,575.882050,-78.594764],[-289.940689,568.210358,-77.790794],[-300.731583,567.102692,-81.200462],[-291.093033,560.939362,-78.780464],[-230.465530,560.738007,-48.724342],[-223.721878,557.438996,-41.235054],[-198.861099,532.351044,-32.655388],[-198.994705,526.759369,-36.541542],[-208.675247,536.331574,-40.314552],[-206.740921,552.665375,-27.829521],[-201.121841,556.059967,-21.008904],[-300.280838,578.750214,-80.167534],[-302.709549,572.488251,-81.034980],[-254.723892,552.963288,-66.048057],[-248.860672,540.612641,-65.642585],[-246.863846,548.082428,-63.545036],[-297.829483,559.444855,-82.031228],[-253.247513,598.125031,-51.093666],[-293.630142,689.562897,-39.104546],[-296.293594,684.160004,-40.679039],[-350.932754,693.738068,-81.516578],[-349.775528,689.636566,-85.254722],[-340.562393,690.945038,-75.285225],[-333.983780,693.191376,-68.231712],[-343.825088,694.161774,-75.219520],[-240.729813,570.354035,-53.223564],[-224.674209,594.251007,-21.711143],[-201.676041,575.383881,-8.412178],[-201.830215,578.427033,-6.245903],[-207.795853,575.966095,-14.790809],[-194.345169,588.180573,6.679306],[-222.022171,625.143524,-5.211975],[-215.405594,611.551972,-2.845382],[-212.006241,610.030121,0.805420],[-238.670181,641.639252,-12.533226],[-204.542557,562.718048,-19.093284],[-210.020767,569.592621,-18.877708],[-223.796768,546.122284,-49.257790],[-207.123672,525.619965,-43.931739],[-214.115372,522.249420,-49.616508],[-200.588516,519.912506,-41.959175],[-189.064041,494.787140,-43.712898],[-191.360916,493.219086,-30.529427],[-175.325271,481.716278,-34.911872],[-185.740311,489.847016,-38.525093],[-187.131607,493.939728,-41.025459],[-227.710403,513.593781,-62.360496],[-234.737625,513.664032,-68.145301],[-225.514664,509.782318,-63.104438],[-224.335281,537.475495,-52.019630],[-233.222488,549.008942,-54.613578],[-230.211319,538.449189,-55.704597],[-223.246292,530.705536,-52.830268],[-260.451919,503.252228,-78.259209],[-262.802322,503.155793,-84.937751],[-235.743057,465.024628,-52.713905],[-193.064163,430.309784,-54.877388],[-208.547012,429.193512,-65.781242],[-210.212356,432.114960,-65.780586],[-206.475906,426.268280,-62.132774],[-206.477737,431.547943,-60.775932],[-186.667679,419.885041,-56.069877],[-181.675308,418.681855,-56.123878],[-185.568680,420.876923,-54.106498],[-173.830154,419.931671,-52.203148],[-175.885452,423.104767,-49.208183],[-178.622330,427.381501,-48.932396],[-178.764114,432.880524,-48.117103],[-167.445755,423.976654,-46.609947],[-164.850235,422.341278,-47.811851],[-152.456070,404.105011,-45.046334],[-169.376541,407.371918,-52.549766],[-162.688309,411.231842,-49.810386],[-177.991653,409.119416,-55.038856],[-188.827835,410.660553,-58.375664],[-184.823807,414.194428,-57.718162],[-159.671646,386.802277,-50.664863],[-207.526993,396.059235,-61.306297],[-188.795059,406.552826,-58.917839],[-178.764664,416.456208,-55.482353],[-197.961197,369.881440,-60.748115],[-196.379959,364.377472,-62.561622],[-138.680679,389.008637,-38.364265],[-130.866470,385.222016,-34.069007],[-122.707413,391.442169,-27.078926],[-145.281204,406.976166,-40.060951],[-223.518326,449.980622,-55.064247],[-222.426285,454.339325,-53.648994],[-213.678299,433.489106,-59.877632],[-187.227676,543.423004,-13.459221],[-164.310440,558.865815,23.837548],[-217.672928,606.112458,-6.880165],[-281.695633,692.282257,-33.560981],[-280.977981,693.859101,-36.259971],[-293.142349,704.570038,-45.865105],[-282.669693,697.457611,-42.606407],[-288.638199,664.904877,-42.834587],[-279.260513,662.660675,-35.782142],[-298.904800,702.707367,-40.054008],[-308.256790,707.404694,-44.906852],[-303.680740,705.632477,-42.364418],[-303.187088,695.690094,-44.340904],[-303.230301,689.906281,-44.504814],[-306.044632,700.722504,-45.342247],[-309.741653,700.905121,-48.371544],[-347.061661,730.755280,-65.967002],[-353.387955,725.288300,-69.992073],[-331.638016,734.278107,-74.778587],[-295.430435,694.310761,-86.142631],[-303.323807,702.343170,-87.214470],[-311.494217,703.456269,-94.408409],[-310.885635,699.919281,-96.259086],[-294.189651,685.091217,-91.705177],[-303.842056,681.397187,-98.102470],[-297.396805,685.080597,-93.624214],[-306.449356,691.615509,-97.427987],[-316.713272,689.072907,-103.381158],[-331.444046,701.510163,-107.419471],[-325.591202,697.892304,-105.154854],[-343.650284,706.648835,-112.718376],[-326.054459,691.961762,-108.362815],[-331.561233,693.932953,-110.978141],[-315.131790,699.500031,-99.787346],[-307.220169,687.134064,-97.702293],[-297.433365,681.684296,-93.470085],[-294.004532,677.878754,-92.521110],[-290.064896,678.983551,-90.382011],[-300.402908,694.534821,-90.830804],[-297.837051,709.360688,-69.686927],[-292.416763,706.379975,-55.779319],[-359.970474,737.622345,-73.577202],[-363.614761,749.567841,-78.109764],[-366.732071,743.576142,-76.826057],[-363.626480,747.832062,-76.055839],[-356.907120,742.998017,-71.338951],[-353.431900,741.760956,-69.997001],[-386.868912,738.284577,-89.007972],[-382.481827,740.269440,-84.897758],[-385.564224,729.097992,-91.068794],[-380.250137,734.166046,-86.073937],[-390.465958,733.079560,-93.772148],[-384.889786,746.464691,-86.636010],[-368.496963,751.334015,-79.388649],[-371.868667,751.343232,-80.072853],[-374.092789,747.671418,-81.130348],[-369.777725,739.496308,-78.937538],[-373.968521,741.774262,-81.047355],[-374.119888,737.583710,-80.421409],[-369.783829,753.947846,-83.053108],[-318.287125,720.552094,-84.662803],[-323.343460,716.827118,-94.590416],[-330.819717,720.671479,-98.556984],[-345.091202,727.367279,-106.206520],[-362.199234,732.649750,-116.548791],[-363.365738,729.345734,-119.177910],[-332.721878,717.057587,-103.029838],[-346.707413,719.319550,-112.416405],[-354.745621,722.093232,-116.559852],[-344.053360,712.785981,-113.202522],[-344.215347,721.522919,-109.465416],[-339.886246,729.576752,-99.360786],[-330.317032,731.019013,-85.978080],[-343.612686,739.224457,-92.009605],[-334.420914,731.203583,-91.275138],[-355.759781,743.638153,-101.318795],[-362.525528,743.728485,-108.378486],[-322.305313,721.034638,-89.033149],[-343.074966,729.363007,-102.756035],[-356.127212,736.224701,-109.091118],[-356.366959,732.435639,-112.100822],[-350.570816,737.647431,-102.323388],[-337.902237,731.034149,-95.618888],[-371.825699,756.917450,-102.806846],[-365.096573,750.656342,-103.359840],[-352.355240,743.611725,-97.279670],[-399.786636,771.264801,-105.190529],[-415.389297,769.827790,-104.872536],[-405.065567,768.317353,-99.444526],[-406.341202,766.182099,-99.521370],[-400.041153,763.243805,-96.054573],[-415.230728,772.740326,-105.948188],[-421.485367,768.332672,-107.919777],[-418.600113,758.613739,-105.956642],[-421.587417,756.636200,-109.313957],[-432.030289,753.790375,-116.887215],[-436.026749,750.469879,-122.105660],[-413.725235,764.959626,-103.372063],[-407.098038,758.561554,-99.759468],[-414.155777,753.029328,-105.278222],[-417.912491,745.494965,-110.841927],[-420.516128,749.807770,-110.790107],[-424.708633,747.883759,-115.096794],[-406.992691,753.040436,-98.855278],[-411.716934,755.284333,-101.763603],[-409.268448,750.291230,-102.401848],[-332.712540,706.822602,-108.338203],[-339.881851,706.751923,-110.894996],[-331.740494,709.829438,-106.492912],[-351.761856,709.263031,-116.368812],[-343.442886,701.895050,-114.897758],[-347.586441,680.221100,-120.829673],[-350.655044,684.734772,-122.803551],[-349.683243,686.360627,-122.575783],[-340.538467,675.435395,-118.179390],[-371.823746,682.627716,-106.846534],[-363.514786,680.792084,-100.441566],[-374.076431,692.472992,-103.328026],[-378.096817,696.032685,-104.526146],[-364.449600,698.972260,-90.577247],[-395.994034,718.021088,-109.125129],[-404.778335,724.574738,-113.501258],[-408.362442,723.275116,-117.144691],[-389.168594,692.760224,-118.936821],[-316.979385,693.535309,-101.644874],[-319.898819,699.581940,-102.965217],[-318.381851,633.170441,-115.025016],[-394.294693,698.513642,-118.467628],[-424.022598,735.197602,-125.142144],[-430.068130,731.814057,-130.876824],[-420.226211,734.316010,-122.273629],[-417.914566,735.628815,-117.556007],[-429.042496,753.557404,-145.286919],[-437.670181,748.290192,-148.122306],[-436.062271,751.839691,-148.400353],[-449.036758,751.930085,-146.606469],[-426.235367,744.656281,-145.844720],[-449.107071,778.928009,-145.104942],[-452.009537,782.320343,-141.714379],[-450.578995,784.562226,-133.582771],[-446.718399,784.592438,-129.072807],[-447.579605,783.137848,-126.237054],[-437.794693,783.121613,-125.081368],[-437.096817,779.214997,-117.983666],[-438.907364,782.201935,-121.594734],[-440.530533,773.749054,-145.322410],[-431.580337,773.834503,-141.013298],[-431.104385,776.741669,-137.965477],[-438.578384,778.656220,-140.501182],[-427.509292,777.864472,-133.717660],[-438.309219,780.763092,-137.486199],[-443.405044,783.221711,-134.945672],[-435.926895,782.596711,-128.556953],[-451.983658,765.815094,-149.974907],[-453.709610,761.705536,-149.509239],[-456.923721,768.045563,-149.268669],[-433.775162,760.636444,-115.853279],[-426.718765,761.753937,-110.552346],[-444.537613,754.036530,-126.741524],[-383.947037,759.563629,-88.068703],[-395.924942,764.014130,-93.788017],[-390.451431,762.072846,-91.193931],[-408.674820,774.977631,-113.040016],[-458.981460,777.621857,-143.472954],[-454.796280,777.722321,-145.889488],[-454.466812,784.629120,-132.715081],[-459.843399,782.328400,-136.361930],[-461.208389,781.733368,-132.768745],[-370.570572,703.544586,-128.531685],[-373.365738,708.968109,-129.022743],[-274.642532,664.225800,-30.704765],[-350.312881,716.526642,-115.769279],[-368.187271,728.233795,-122.720390],[-363.147720,720.652558,-121.407829],[-220.431167,640.143524,-5.388900],[-222.269729,637.734284,-2.766479],[-169.668167,589.268402,15.197533],[-158.401443,575.388825,20.308297],[-221.949661,552.819916,-92.103721],[-221.577896,548.447724,-90.605964],[-211.863296,541.494599,-88.284858],[-220.095962,539.200287,-91.444344],[-218.190628,530.394135,-93.476463],[-206.598526,531.244355,-87.691612],[-209.966995,526.270478,-90.918847],[-212.478104,522.006256,-93.017265],[-200.258743,511.516632,-89.801078],[-212.351334,546.268524,-89.717506],[-217.331070,549.765839,-91.071450],[-215.610550,541.134125,-89.215278],[-219.638992,562.286530,-89.547813],[-210.301285,555.752777,-86.843864],[-222.141250,559.014862,-91.333305],[-186.144546,601.749665,-44.956260],[-221.522110,629.625153,-61.597602],[-205.996475,557.359467,-84.081016],[-313.675613,576.046906,-86.528695],[-315.183243,583.349640,-84.114677],[-144.562637,327.197113,-69.353431],[-147.735733,303.669403,-60.348625],[-90.996658,286.845093,-47.348610],[-81.760879,282.347565,-42.527702],[-114.781387,296.665619,-53.554618],[-110.930923,305.541809,-57.904168],[-122.033646,308.285675,-62.304481],[-110.253433,311.814118,-60.079887],[-114.561966,301.173676,-56.354194],[-107.512222,297.049469,-52.765739],[-97.922989,299.693451,-52.331306],[-58.553177,232.362091,-14.033058],[-57.918228,237.032532,-15.731254],[-64.591080,232.167603,-16.706611],[-53.442703,242.042420,-15.183006],[-18.406570,244.098236,0.032044],[-14.246841,246.274109,-1.466209],[-18.292740,251.252381,0.307030],[-19.300003,260.462464,0.357155],[-22.729996,255.801697,-1.379997],[-21.317459,248.495270,-0.194885],[-23.729690,220.477021,3.684372],[-0.533951,263.603821,-2.662071],[19.659042,267.978974,4.954079],[20.919968,279.541291,5.674683],[17.381516,272.847931,4.084427],[12.261337,270.351410,1.004052],[9.945114,273.779724,0.593598],[5.171921,284.366089,-3.410881],[51.561081,204.668213,-20.375237],[61.957993,200.274079,-24.013329],[88.091110,223.531739,-52.132026],[75.460983,222.671967,-52.726738],[69.523972,224.835388,-50.463310],[73.275131,205.074555,-31.306663],[61.483505,211.930756,-35.238060],[71.008347,216.326020,-44.945747],[130.007004,255.153565,-69.325370],[127.316452,263.627625,-66.503486],[154.704758,255.787293,-85.698555],[154.552719,248.072205,-85.700904],[153.989487,250.587403,-84.229667],[152.076401,246.972504,-82.375923],[145.069443,240.356324,-87.237968],[19.172958,189.410828,18.354744],[33.446640,344.806732,11.896393],[28.761337,349.324005,11.969445],[29.878952,352.614716,10.183747],[33.667832,349.364655,10.876099],[36.978134,347.358124,8.741211],[26.024277,351.993134,10.724327],[-7.109146,329.748261,10.367783],[-5.782181,332.171845,10.811943],[-2.049759,333.767914,7.340004],[22.301560,356.231110,2.864174],[17.002731,343.193878,7.981514],[21.238876,343.619599,11.285241],[-10.048294,213.249634,16.609986],[-3.952530,202.929505,15.702309],[-4.842239,293.908142,1.933602],[16.630722,293.371552,2.668030],[22.385788,328.044770,5.269715],[41.242050,337.574738,2.357857],[24.289353,353.556671,8.467812],[19.662766,347.770233,8.535828],[63.299851,201.579224,2.751686],[59.336228,210.405213,10.843026],[57.133164,208.355805,13.912506],[56.918686,210.076630,16.404152],[60.556076,204.201935,20.978547],[54.468796,203.853577,19.120537],[55.886826,200.810852,12.647950],[60.703232,216.633454,16.752564],[62.866318,222.281769,15.441109],[66.745957,228.862213,15.475838],[64.725205,220.971039,17.068840],[60.119431,216.721772,13.265129],[58.523728,210.224976,18.277024],[61.604111,211.269715,18.896637],[65.397507,213.286499,18.080651],[68.345993,225.361908,15.844025],[67.924240,186.878235,17.540947],[67.093063,195.690247,18.436036],[71.242966,194.646057,14.559327],[73.718857,211.863953,13.701256],[75.152023,222.576813,11.613434],[77.003769,200.021729,10.405259],[63.257431,199.298401,20.901146],[64.983688,207.167328,18.727898],[78.216049,168.469422,19.104706],[75.395493,164.394867,21.496262],[81.851914,176.985535,8.666397],[85.531479,179.315552,10.181046],[89.390061,185.910340,15.168297],[94.924790,192.893097,11.801407],[72.689316,161.633911,25.247139],[73.390976,163.612732,19.874672],[68.637497,158.826599,28.709259],[72.573898,162.342011,31.257317],[60.773666,158.605408,34.798828],[66.759445,164.115235,23.893624],[50.447617,157.148407,33.770485],[49.078476,174.301361,24.763802],[50.693771,162.229828,33.777977],[51.028549,165.799317,25.153771],[47.554306,172.510254,5.799591],[40.354965,170.305268,8.292641],[40.264145,176.913483,4.088776],[44.964035,182.962769,-3.015640],[50.452866,185.207032,-4.689911],[48.829575,191.767121,-8.440406],[49.765000,192.344605,-5.236221],[51.655380,195.919159,-7.564079],[48.529526,197.260834,-12.773079],[47.919113,181.447510,-3.760330],[48.494370,182.316712,18.173851],[49.764145,187.354065,9.061028],[49.720627,179.251313,-0.936935],[50.311508,174.998749,14.063614],[50.357773,177.545044,10.806198],[51.329758,181.685242,4.195076],[49.506943,174.698548,27.358155],[49.705002,188.563111,19.753754],[52.247360,199.729065,18.886536],[53.186020,201.888459,17.162079],[50.193100,192.508820,8.745690],[50.208603,190.032044,1.548653],[52.651291,194.170410,0.207161],[59.012009,194.739075,-1.959869],[50.432968,192.195649,-0.097732],[50.728989,181.565674,25.341729],[49.285080,191.558167,16.169785],[50.682297,196.908936,13.636887],[51.616989,195.046387,8.391564],[59.026535,196.109436,3.636300],[51.615219,168.872681,18.819367],[51.877854,161.657685,20.961930],[50.595993,165.574829,16.536423],[47.977097,171.479279,9.674988],[44.787033,170.533081,5.934060],[57.520737,329.245331,-24.697777],[53.339707,332.106415,-16.269050],[80.362106,340.155243,-59.275230],[78.604477,363.743866,-44.529914],[76.456528,355.062714,-44.866996],[70.645981,353.223419,-32.710183],[65.452072,354.706696,-24.508445],[59.851853,354.655732,-19.274543],[62.594101,360.204865,-23.323555],[74.813278,370.912628,-33.808082],[71.204880,358.675934,-30.829719],[68.621628,360.146515,-27.455163],[66.791672,366.247040,-27.782219],[62.023728,372.973481,-28.695808],[64.301804,376.138092,-29.030433],[73.939560,379.985932,-30.521583],[68.908066,376.132599,-29.737602],[70.478928,366.865082,-29.600319],[77.391770,378.102814,-34.314170],[73.452316,374.508759,-31.574104],[81.572739,380.325043,-39.690635],[76.561264,341.263398,-52.347877],[73.692246,340.475800,-47.282508],[91.356918,347.233979,-71.899955],[94.547836,348.603241,-75.265205],[100.398483,351.390168,-80.918876],[99.240219,341.807221,-82.138329],[97.368881,329.273835,-82.971733],[108.519211,338.189118,-91.453132],[106.010849,330.835724,-90.259025],[100.606613,322.720002,-86.974983],[105.489975,318.361603,-91.285134],[110.030686,313.390900,-94.364174],[116.371201,309.555786,-98.348457],[123.022507,308.748017,-102.236213],[121.013779,300.048859,-98.735588],[124.728806,293.767823,-99.292961],[118.686875,298.724945,-97.119270],[115.719711,285.518158,-97.845315],[112.040817,293.516877,-95.593742],[105.649094,296.836579,-92.357872],[102.521591,296.425629,-90.512275],[97.086289,319.205902,-84.131660],[107.024338,309.224427,-91.615409],[102.497299,314.546509,-88.573097],[100.585800,308.876038,-87.925027],[107.497116,303.591339,-92.291542],[89.076523,323.543854,-75.967338],[91.712814,337.744660,-75.337989],[87.672531,337.363983,-70.629799],[106.698166,350.491425,-87.379875],[110.462204,353.996796,-91.274803],[113.662094,321.014557,-97.192344],[107.654038,345.107697,-89.021064],[118.159226,358.353363,-97.278251],[122.622055,351.217499,-101.799446],[124.281967,364.557953,-101.404716],[130.332016,362.125702,-106.668113],[133.202255,370.378510,-107.589592],[130.499619,379.133454,-103.610832],[140.554123,381.587555,-109.813484],[118.494797,346.032502,-98.742149],[124.950485,341.537567,-104.909553],[130.708969,339.852814,-109.032570],[144.395981,323.532746,-113.464317],[133.170883,328.965973,-108.740471],[116.997788,332.912506,-98.957786],[116.940354,343.100617,-97.123161],[130.511948,352.617585,-108.051919],[96.046677,358.719574,-73.960929],[100.829941,363.963349,-79.378273],[99.865341,438.106903,-34.093711],[104.045944,455.819550,-17.936700],[108.980820,468.065277,-13.502083],[107.601608,464.509125,-9.614692],[114.395065,478.168549,-4.129020],[114.895310,474.143647,2.179619],[104.250168,444.907990,-37.875251],[112.723801,465.545136,-36.920555],[121.593674,478.608612,-45.408729],[123.409775,489.074860,-36.023826],[127.125717,491.635224,-42.982521],[128.541367,498.219330,-36.383477],[119.295334,482.084015,-33.870674],[114.505234,475.276459,-28.307731],[115.810104,481.500092,-20.259575],[112.677414,473.990937,-23.073417],[123.620773,497.668488,-18.529441],[120.068894,491.686249,-14.367057],[122.543991,497.060089,-10.818290],[125.633652,502.781342,-6.849694],[132.463242,510.417755,1.770546],[138.060593,519.678803,2.321801],[141.634506,523.871918,5.448281],[142.179916,527.617462,1.815750],[138.156113,523.761994,-3.905494],[129.769516,509.593354,-4.113922],[136.551987,513.881073,6.256462],[120.277817,492.233734,-6.394752],[115.545395,482.587860,-9.285850],[112.627976,475.890534,-15.165748],[117.129013,485.928681,-12.698524],[113.453842,477.766144,-7.598976],[119.236008,488.932648,-3.221740],[122.717392,495.059418,-0.847931],[117.774765,483.030304,0.362053],[119.660263,479.066864,9.550782],[130.031113,509.590424,-18.599754],[122.693649,492.462677,-27.125679],[109.795273,464.614716,-28.344902],[106.397690,452.848908,-33.522087],[104.921127,456.261566,-22.193901],[122.462387,484.089447,-40.734626],[103.423264,449.599701,-27.728477],[112.012070,466.799774,-32.920952],[124.046372,493.377167,4.589730],[134.132126,518.370941,-14.098121],[140.459702,528.759369,-18.498924],[148.529343,542.081879,-10.744575],[155.232224,550.661286,-9.710579],[153.044663,542.802399,2.847123],[134.038132,516.911713,-19.267845],[149.291550,542.553315,-18.432090],[136.436630,519.609894,-23.890434],[125.495712,502.466706,-13.744239],[46.547714,309.478119,-14.715263],[47.739853,319.189179,-12.224846],[56.710617,346.315216,-16.277305],[58.040085,356.887787,-19.022804],[51.792954,359.157135,-15.842277],[60.968369,365.717743,-26.560158],[58.527268,366.110932,-24.896019],[53.826462,338.716400,-14.172432],[56.649948,338.471711,-18.700645],[61.105332,339.759247,-24.691459],[62.067368,349.597382,-21.918861],[73.097885,349.112458,-41.211219],[40.932907,364.042572,-4.928596],[21.858322,366.287079,-8.611153],[22.380966,363.404206,-6.327835],[12.186997,365.997589,-5.447883],[7.399277,361.933991,-7.907646],[11.513413,359.535797,-4.613853],[3.667648,370.311615,-9.515846],[6.989731,370.262726,-11.454185],[7.325607,377.439789,-5.270416],[76.798813,368.246308,-38.398368],[60.031540,376.139862,-26.838142],[57.595627,376.844574,-23.083152],[53.262070,371.003693,-17.014702],[48.701889,378.122101,-1.991615],[45.563767,373.844513,-3.575195],[41.840378,375.810089,-0.468650],[37.939377,379.197174,1.066826],[45.454025,381.068756,2.395012],[50.951767,384.068329,5.507027],[53.656052,387.542450,7.974701],[43.222214,366.615021,-5.480842],[36.594895,375.425019,-0.240753],[31.306931,389.275421,7.525986],[67.856552,295.181671,-55.648979],[75.650986,302.199097,-64.517463],[92.269089,314.118683,-81.113075],[90.328842,313.083680,-79.173286],[84.432968,298.703339,-75.129203],[89.157578,302.191254,-79.482475],[83.917343,306.807770,-73.492302],[94.164047,308.670624,-83.182502],[95.931137,299.260651,-85.534019],[100.093369,284.052430,-89.370385],[107.104050,278.843384,-93.958686],[108.076645,287.647858,-94.497535],[109.824936,272.212342,-94.585426],[118.057358,263.172211,-97.307580],[124.401047,257.612274,-98.571464],[130.254074,254.878022,-99.776970],[138.305405,250.173523,-99.365882],[142.738510,257.170349,-100.756126],[136.491806,259.539551,-101.538872],[112.364853,279.964753,-96.752662],[118.262192,268.050721,-98.509437],[117.840927,278.932343,-98.828544],[122.222397,271.400635,-99.952537],[136.188278,267.352722,-102.020744],[140.451645,265.889191,-101.839500],[125.158005,284.416107,-100.226173],[127.930832,279.756470,-101.044975],[130.211350,268.364960,-101.475792],[137.574326,273.341126,-102.031822],[91.062973,298.515534,-81.640403],[119.842270,256.911042,-95.980034],[94.050827,324.244110,-80.691536],[83.483872,240.964569,-68.100319],[111.000900,265.655579,-53.295921],[126.884506,268.019013,-64.778038],[127.799545,277.829407,-64.804954],[134.652756,278.717743,-71.210274],[142.755295,279.632538,-78.457115],[145.275559,294.903809,-78.396996],[146.860825,301.636078,-77.172706],[143.680649,304.316437,-75.119819],[138.582504,309.045990,-71.544579],[140.691635,316.108521,-70.971458],[132.967575,317.723114,-65.927436],[130.955673,296.054810,-69.521415],[134.750656,299.106903,-72.717277],[131.136521,304.844483,-69.101448],[133.828842,309.484772,-69.294441],[139.243698,299.040833,-75.100685],[141.446213,292.464203,-77.178596],[139.296188,290.049652,-76.946113],[144.968613,281.434693,-80.635232],[148.536301,293.579407,-79.736290],[164.126328,289.530365,-86.666374],[180.425400,289.900177,-96.775993],[183.721542,285.292115,-101.654136],[175.913071,285.196411,-109.472985],[170.285690,279.651612,-108.900108],[130.189011,269.872101,-67.556526],[131.870407,272.860138,-68.606376],[139.136765,265.480652,-74.167961],[144.579025,274.751435,-79.683526],[152.167282,273.181702,-85.334037],[149.469711,285.357270,-81.189827],[155.667526,279.652619,-84.078086],[161.115524,278.315613,-86.354850],[133.920517,274.369843,-70.622658],[154.587143,290.112793,-83.211021],[158.605026,289.796509,-84.250878],[163.716904,282.037628,-86.582603],[134.497971,287.424378,-72.532524],[80.280502,307.993744,-69.147880],[39.431748,294.504212,-4.462516],[6.700668,277.063324,0.358345],[8.334763,204.720246,9.377144],[4.060593,197.854676,6.224274],[5.050400,201.892670,6.142792],[14.157456,120.875672,36.836457],[18.972519,123.318848,36.668831],[12.743332,107.865052,29.569451],[23.545029,203.242554,12.303963],[20.469406,202.351624,14.555039],[50.841599,178.896454,4.967606],[46.605759,175.694336,0.505074],[-14.663467,177.746888,20.997887],[5.734055,166.449524,22.921509],[-14.477920,175.137635,29.432885],[-62.572159,150.109955,54.847298],[-77.055313,147.613098,71.602036],[-67.360489,175.150757,0.475998],[-68.732620,162.940308,-2.070968],[-74.200577,142.215241,-9.137169],[-77.351089,139.002472,-15.869728],[-76.116287,132.442353,-21.163337],[-76.162002,148.106842,-10.801475],[-79.146316,144.922638,-14.914070],[-80.647781,152.421143,-9.284065],[-79.485062,121.471009,-20.704795],[-79.997940,125.712006,-6.611610],[-78.604202,131.513062,3.285675],[-86.217239,124.147278,5.177201],[-80.406875,128.493164,-1.561798],[-82.202957,130.192261,9.946404],[-77.475845,134.856232,9.461922],[-75.718826,127.415039,-13.159278],[-77.747757,126.988861,-24.382804],[-80.296951,125.869538,-26.419731],[-77.307571,132.899414,-4.825691],[-76.610184,135.845246,-11.571113],[-77.315689,130.694153,-7.934654],[-75.659683,130.986878,-12.986976],[-70.549271,154.039399,9.584107],[-69.032181,169.084778,9.510590],[-69.701797,160.852875,10.784424],[-68.049087,170.772156,4.459069],[-79.676773,135.639252,-28.651390],[-79.400894,141.204987,-18.398979],[-74.973526,144.548249,-11.084098],[-117.364151,136.810761,-19.296928],[-111.525345,136.568817,-23.545143],[-102.940506,135.593689,-23.519111],[-96.219864,134.142517,-25.459922],[-92.352981,131.872864,-20.306404],[-87.986038,132.317871,-28.242729],[-88.851761,128.362397,-17.402885],[-92.440872,123.241730,-5.564994],[-98.437515,132.719239,6.128548],[-101.679581,136.836518,4.413590],[-99.672806,130.707672,-5.151229],[-106.694961,135.220429,-8.225151],[-106.275040,138.211792,-0.215606],[-107.528763,141.496949,2.141175],[-93.632767,126.202210,-9.432731],[-94.759842,131.646790,-15.866874],[-98.872330,129.770386,-9.451545],[-96.566971,127.516907,-3.985824],[-107.786941,136.259064,-19.276497],[-110.531509,142.120880,-11.010872],[-111.543594,146.781647,-5.776779],[-124.274856,141.124268,-6.671394],[-125.562027,136.359406,-12.021812],[-119.054825,141.067322,-10.055458],[-136.738846,133.916199,-5.369262],[-137.224991,131.181855,-9.018745],[-132.571670,129.813813,-17.537010],[-110.008682,143.078888,-7.898872],[-109.064041,141.098877,-4.307426],[-110.081436,146.229218,-3.387764],[-99.618667,134.581024,-17.878486],[-104.895889,133.567108,-10.363121],[-107.778885,136.122498,-15.231606],[-108.137222,135.975006,-10.747505],[-120.260330,137.949646,-14.000846],[-111.787918,138.813233,-17.599540],[-152.116348,140.720642,3.472237],[-150.140457,147.604523,7.566307],[-144.113541,145.479920,6.223420],[-147.460525,139.599060,5.323319],[-163.312515,151.411835,2.324181],[-169.241653,157.784424,1.402817],[-166.932815,153.609619,3.598565],[-168.519424,161.850067,7.181603],[-165.857803,166.188935,11.324753],[-170.148819,168.109406,7.718041],[-169.796829,166.277863,-2.293151],[-167.901016,159.695160,-0.823562],[-165.638992,154.379456,0.861481],[-165.612320,166.942841,-0.153053],[-157.482376,167.967835,1.529854],[-161.772842,160.642823,1.621346],[-172.832229,176.851136,2.902779],[-163.809769,159.093140,9.147545],[-156.703323,162.022705,11.415390],[-145.866043,158.746521,11.448960],[-145.757461,161.076081,12.662323],[-141.702469,156.479309,15.410218],[-136.918899,148.494599,17.243195],[-138.183060,140.668396,17.231820],[-149.306534,139.887848,19.272362],[-142.307693,149.497956,17.940857],[-147.572586,156.874115,20.124695],[-142.693069,156.449738,18.024071],[-141.727310,162.055847,16.735451],[-139.373489,170.389191,14.682129],[-139.987625,174.050934,18.531754],[-143.811172,172.845764,22.856270],[-138.303055,167.993958,13.388031],[-142.188370,167.465638,18.485039],[-142.595474,164.825226,13.116539],[-149.350113,162.687500,13.046532],[-155.934463,165.492890,13.086701],[-161.111587,170.754853,13.883904],[-143.070084,159.364930,14.688790],[-136.846939,150.569184,14.077767],[-140.202286,150.974305,10.123574],[-156.491165,146.930878,6.457207],[-154.433365,143.114991,4.958802],[-158.852310,146.878815,2.233857],[-151.160293,141.941559,1.838509],[-141.441177,149.011811,7.826882],[-117.505936,161.653046,10.235924],[-111.663345,154.378174,13.686028],[-110.748794,144.209900,30.738282],[-112.743729,145.186646,27.321717],[-51.626297,182.559510,36.155434],[-51.905899,167.702240,42.843270],[-35.659744,125.342591,37.359864],[-32.354568,124.037110,35.880997],[-33.834671,128.911438,41.652085],[-27.143326,105.567963,27.167984],[-33.580093,103.014649,25.145180],[-28.243790,128.358002,41.484963],[-73.666580,127.616730,74.641419],[-43.590835,135.252411,63.013222],[-25.838516,132.165161,45.396798],[-64.893631,114.172150,48.000687],[-66.549148,105.525299,42.281487],[-70.489090,122.517945,61.044808],[-78.498672,113.673859,59.968190],[30.597763,147.887726,28.389267],[17.797836,153.674103,34.027291],[28.441696,189.636231,10.348481],[49.729477,153.679016,25.198502],[48.934494,156.304322,21.448304],[70.908493,249.411103,11.128846],[72.154892,240.282105,13.703934],[69.858566,232.824829,14.477509],[74.184921,246.596863,13.126099],[75.832321,251.230774,13.136322],[83.354660,264.132660,12.086480],[78.877670,262.556519,13.259446],[78.919785,265.081574,12.200791],[79.469345,264.269745,4.714661],[81.139877,267.736908,12.869263],[75.549606,261.782410,8.223824],[76.930832,261.958069,12.309510],[78.633347,258.489655,12.931275],[73.071579,252.242340,13.124871],[73.637619,258.453217,10.398667],[85.057053,228.317536,5.534569],[93.010300,233.392334,1.644715],[91.267441,226.959229,2.200364],[88.816025,216.211060,2.143181],[92.197250,220.926453,1.492539],[86.504318,213.767365,3.599038],[94.569504,242.057984,0.653115],[87.588791,203.854554,3.562592],[66.225998,225.625763,6.599579],[64.716843,219.611542,6.446740],[72.490708,228.623413,13.128861],[70.100327,207.112488,16.082291],[76.603134,188.780884,10.858078],[73.064194,185.019806,13.814400],[87.953720,188.261261,3.461678],[92.364243,189.626770,4.228386],[98.888535,251.717835,-0.363861],[100.472702,212.827851,3.497452],[111.327255,199.703736,34.927674],[116.967880,207.842255,38.205307],[142.384018,263.623780,65.553006],[154.724838,286.922028,99.332154],[166.187668,301.949494,100.238390],[151.788254,275.885102,102.025652],[98.365830,156.407959,42.979866],[101.552719,154.225983,47.222077],[107.701157,149.267609,63.907021],[110.893967,140.069489,65.314137],[104.454636,217.346344,70.581238],[103.013535,213.493988,66.974625],[113.909042,236.148346,75.346093],[112.525070,235.581452,80.346981],[117.053085,236.479859,86.786019],[115.536972,232.017182,84.117916],[120.126816,233.024262,89.398587],[114.643601,243.217041,81.591282],[116.630356,244.692017,80.745613],[110.916855,210.296814,78.596436],[131.808640,308.817536,121.742546],[129.663132,306.236847,115.324911],[164.363999,292.268036,90.831108],[160.215622,291.609009,89.309838],[160.012436,287.326325,84.484803],[101.492966,143.457489,52.130135],[104.899765,145.768647,86.821686],[108.061997,151.641815,91.939957],[109.685227,156.435852,93.569191],[103.729294,153.487366,93.041438],[126.277939,156.861237,87.910332],[118.908737,149.624573,84.704346],[106.061081,164.292633,67.770241],[100.617050,169.158234,54.357605],[132.554916,218.548462,59.879158],[133.767929,222.132202,60.437172],[131.135605,215.211640,54.688759],[131.446457,230.451813,55.474076],[128.207626,227.471802,51.436715],[132.822556,224.465393,57.122002],[121.573410,216.452149,62.401162],[135.844162,230.891419,62.880749],[136.646774,232.615753,70.645779],[120.632126,202.922333,40.631035],[116.178574,201.411866,36.951836],[119.718735,211.041504,40.277665],[92.784897,199.495026,37.685479],[90.860825,194.041596,37.879601],[118.640732,223.314789,43.362381],[127.972092,232.240326,51.234185],[111.379501,249.100922,-0.975090],[113.619309,241.452637,5.058342],[113.679611,248.123078,2.052201],[156.303330,257.634278,0.173233],[163.330856,253.511902,6.805481],[147.491562,256.442688,3.449341],[134.458420,257.788727,8.939591],[127.478439,256.409668,9.338890],[129.504074,255.112824,13.858254],[139.832810,238.831543,16.373490],[133.487900,229.432770,11.931122],[169.076401,273.588349,36.168511],[166.814926,272.228241,40.655106],[165.719833,269.930939,43.790131],[161.999375,270.157074,34.866326],[168.236557,271.596375,47.136383],[162.369370,264.251923,40.715355],[171.009628,259.799927,54.383515],[173.073288,262.925293,59.023556],[174.698410,270.743714,64.327725],[172.816879,272.386261,58.246006],[177.403671,277.241822,69.823006],[175.735092,272.659088,68.045041],[172.136887,274.021729,52.678589],[171.501633,269.475586,56.027497],[161.736618,268.816559,37.756928],[180.377548,281.058136,54.180787],[175.325791,276.252045,60.260666],[184.775955,277.610352,46.532402],[185.122574,273.813477,40.845871],[191.571701,273.325714,46.734116],[194.790238,263.597565,34.199486],[157.159409,246.709107,34.171822],[165.762619,253.273957,45.755494],[160.833359,256.129944,39.014481],[156.737656,243.521851,34.835717],[158.725998,246.259583,46.833405],[150.343857,237.270203,34.899376],[152.405380,240.940735,39.648720],[154.401047,240.320893,38.863289],[157.779343,242.256714,38.278168],[152.552475,237.656403,32.713837],[161.768051,247.277588,41.340889],[164.977097,249.291291,50.112534],[161.685043,245.900605,43.786629],[167.378281,252.778168,48.668045],[183.173020,284.671814,72.478680],[187.161881,289.516846,70.847351],[184.227249,287.118775,83.123841],[183.459946,289.253449,89.316395],[185.941422,269.627106,33.311570],[176.412705,254.283875,17.548035],[181.680100,253.846833,13.715584],[191.382370,256.619355,21.097374],[174.135605,257.107209,6.097359],[170.928574,265.974366,10.490433],[184.945267,255.967285,12.669426],[189.611832,262.370575,13.331551],[195.038864,261.471497,16.532494],[192.397934,258.115082,18.097924],[189.072098,256.814331,15.375313],[210.462692,284.154724,16.870713],[226.561234,285.420380,16.209900],[227.270584,291.670441,16.179528],[225.513931,296.385620,17.077965],[225.821274,306.860413,21.647347],[231.546127,303.574799,20.718750],[231.759537,297.386658,17.903260],[232.861862,299.149445,21.409478],[233.776047,290.403199,19.406754],[230.789200,284.693878,17.086045],[231.924790,281.891571,18.840493],[231.222580,274.982849,22.806145],[229.965744,269.118744,27.130219],[228.988846,267.526276,31.392083],[211.471909,277.508820,42.498047],[211.280472,279.751282,46.142090],[223.374466,277.559937,27.730141],[216.312668,278.857117,32.370201],[224.245682,281.491333,25.330368],[212.226975,286.508271,30.739457],[215.438950,274.535828,40.475068],[218.860977,273.434876,35.648812],[224.220169,272.755799,30.532044],[211.104630,281.969940,33.841133],[202.108139,286.386048,34.903679],[205.747330,280.658875,40.096306],[210.853897,278.002198,38.367546],[206.548081,281.895508,45.467423],[232.557388,285.788391,19.810852],[231.692856,281.724274,21.013039],[226.669693,288.431122,22.620316],[216.817764,284.826660,29.110581],[229.802597,274.325501,25.384758],[232.669083,304.655182,24.992646],[217.143021,304.179810,31.635788],[225.024674,295.426392,24.695038],[211.531326,273.868317,21.041153],[210.590836,268.911866,23.284333],[206.862991,265.666291,23.356301],[210.563553,263.962586,28.037171],[213.536148,263.493195,29.667649],[222.336533,264.909424,27.369316],[225.695603,263.946900,41.750969],[227.423599,265.981232,40.196976],[227.846756,268.445618,45.619652],[223.089462,275.885742,48.645623],[221.812790,269.960205,38.111969],[223.083817,264.774109,45.574997],[226.533951,265.492707,45.716896],[224.155289,269.940552,52.726845],[214.937271,266.988892,25.254311],[216.185043,270.857270,22.747879],[222.410599,269.009949,23.003708],[227.353623,267.378540,26.105141],[232.167374,290.678894,16.845955],[233.778763,302.342896,21.484871],[231.407883,296.378418,21.537423],[221.609390,298.480347,27.394677],[212.808029,293.941864,16.729157],[208.525437,300.888764,16.581177],[216.433304,302.876740,20.212067],[218.029831,311.128571,24.091034],[219.490494,316.717499,28.532196],[228.167160,312.585114,25.796929],[222.452225,290.976258,16.541138],[218.147843,285.138764,17.745247],[214.247940,287.347260,17.412575],[209.841141,292.095673,15.378922],[205.048996,296.363800,14.573685],[217.120529,292.571015,17.594719],[206.198654,282.499878,14.471955],[205.639084,288.402436,13.561280],[200.017227,289.597809,13.086144],[215.602066,316.231598,107.794750],[212.115738,320.786774,102.014628],[189.191879,336.520539,99.119789],[188.703262,330.977570,89.774805],[187.901352,326.745209,81.941662],[185.952408,333.772309,93.504164],[166.351975,336.572907,86.443722],[165.547287,333.678681,80.400132],[164.382248,335.680268,74.965416],[167.062119,327.658478,73.539555],[168.129929,328.859589,78.500897],[170.295456,322.320954,70.734826],[165.341843,340.363739,90.037039],[164.149643,346.601960,94.969719],[136.402207,256.584717,15.652146],[140.696091,271.507630,-2.696434],[139.314865,277.084931,-1.674606],[117.176193,300.492401,2.778702],[119.397568,300.169953,4.455239],[120.916855,303.174164,9.871712],[117.151474,317.498078,21.817688],[121.550827,313.702393,20.972283],[123.009995,314.510987,21.937592],[124.220078,316.952729,22.215775],[133.329331,317.780670,17.654694],[139.030441,310.447571,13.784287],[128.620285,305.503723,17.076172],[124.653793,303.939667,13.930619],[133.391342,299.205353,13.946511],[130.346359,293.158509,6.813393],[139.613144,296.109253,13.099701],[138.894272,299.460388,13.481293],[136.389267,302.607056,14.618897],[131.209030,307.573792,17.421952],[125.132797,292.634980,2.064362],[120.195786,318.259247,24.287972],[112.087387,307.821045,4.250008],[83.829880,320.379425,8.177163],[85.310776,313.575928,3.661629],[86.227646,305.961762,0.433525],[81.677902,310.622376,16.243157],[156.503647,274.361267,8.656670],[175.246140,278.738983,11.661095],[181.679367,280.585877,11.786179],[161.637314,286.875672,9.472954],[163.843735,292.152222,7.950875],[155.761643,297.663117,6.863282],[148.472092,310.390259,8.943436],[198.120041,330.690949,25.688813],[201.875839,337.403107,36.491349],[205.013413,342.033722,39.395417],[204.567856,352.852692,44.264115],[210.413559,357.537384,56.997719],[209.875687,367.745331,68.579850],[215.416733,350.032685,53.359642],[201.769028,342.812043,38.483406],[199.000443,351.985321,42.402817],[201.126053,360.266877,47.707383],[208.250382,356.306549,53.010682],[195.531510,333.928192,31.431549],[191.898056,329.725190,23.475472],[185.230850,331.749970,21.933495],[170.110397,322.527375,22.821206],[193.241409,325.062165,17.286751],[189.728134,328.537079,19.443680],[205.734329,331.251801,25.288453],[208.673447,333.630951,28.585137],[215.086258,333.391327,32.272042],[215.696640,341.858368,44.699387],[215.300064,338.984223,39.999329],[207.445755,338.718415,39.005646],[205.230759,336.511017,35.996750],[210.304947,340.833649,42.571434],[214.589127,346.553925,49.181923],[210.296524,349.785981,48.746140],[218.996689,340.900544,47.585534],[222.525894,342.996064,60.311375],[193.261246,387.272065,69.111100],[193.119888,393.563996,75.842408],[188.249588,402.302643,82.478356],[179.299851,402.398102,83.054516],[167.320725,388.924286,75.958695],[172.342331,403.038849,88.503479],[177.201279,409.896210,90.475285],[171.589768,395.996613,82.374928],[165.867905,394.834503,82.737458],[158.307297,394.636078,83.428151],[182.324936,404.460907,83.319127],[175.504746,396.514679,80.994313],[171.811752,390.390351,76.740120],[157.804001,390.112152,77.775200],[158.136032,379.669648,65.025780],[177.732651,391.899933,76.107666],[180.243027,383.071625,68.378392],[171.332993,382.373566,69.054016],[173.103989,374.983734,62.600243],[162.557907,380.435578,66.682598],[149.959335,375.436249,52.823174],[146.130783,379.328095,56.072647],[141.715744,381.111359,55.056260],[141.958054,378.438996,50.792260],[158.311264,375.845063,60.164688],[138.066086,390.273529,73.594170],[146.674179,384.877228,68.154717],[141.574570,384.791169,64.859684],[136.999680,383.784760,59.612252],[152.815659,392.233979,80.040490],[165.666550,374.761750,61.307187],[184.903946,368.925324,55.673111],[180.475540,374.524384,61.152783],[190.599686,374.974030,59.411019],[194.738022,373.398285,57.749447],[199.358811,369.851593,56.307465],[204.863632,357.450898,48.285103],[203.578201,364.417816,55.951851],[198.187119,378.234101,64.563023],[195.596542,377.930207,61.565594],[205.191727,367.866608,64.023476],[189.130875,385.691986,67.028920],[186.179123,377.716278,62.333439],[177.879074,378.539215,65.341843],[198.402268,367.910126,53.792252],[219.759659,322.972626,52.423264],[226.873978,321.738739,49.955811],[229.547135,318.582184,44.748490],[225.355118,325.368073,54.321167],[231.301407,313.356049,37.190697],[219.699814,358.930695,73.423584],[215.959885,367.147187,73.318352],[216.632675,352.590668,59.094815],[216.441818,307.289551,34.151039],[202.101975,311.093323,38.880654],[210.283524,310.884064,37.051667],[228.419663,323.014191,49.469323],[226.813858,328.112091,55.187432],[224.966263,313.176117,38.793732],[227.277237,315.368073,42.146004],[203.630875,267.381409,18.159966],[197.487045,266.288300,15.002816],[200.882645,261.985962,21.665116],[205.772385,262.011719,27.016846],[206.983505,261.292145,31.627465],[207.004288,270.940827,20.146653],[214.681503,280.475861,18.979020],[222.960892,279.221863,18.232575],[221.802750,273.575348,20.433869],[227.811478,275.712311,19.371910],[229.888901,273.691010,21.241631],[196.330856,354.044770,76.826535],[193.178177,355.854645,77.977600],[187.726700,354.632416,77.339383],[184.296829,367.891754,84.556305],[182.094071,361.854157,106.249983],[179.384689,359.787201,109.183941],[207.129471,386.178986,110.060922],[218.565933,392.569123,120.086919],[220.527939,388.504364,133.220202],[233.878800,401.526093,144.077975],[240.090866,409.887848,145.919377],[246.928269,418.046845,153.865593],[255.493393,429.832306,160.505642],[255.748001,429.430146,164.528477],[259.710800,436.037140,170.550709],[257.207535,433.081086,174.721543],[261.574265,446.204926,184.793179],[263.030289,455.827118,192.221306],[257.011582,440.498017,186.503006],[252.163742,437.066742,188.469117],[238.744461,424.695954,183.311051],[232.226029,422.690522,182.279740],[225.041519,428.568940,181.342698],[224.475418,423.306061,180.059910],[221.359451,425.573151,178.970860],[216.627304,419.459687,176.498154],[204.654923,418.616486,171.692467],[206.720139,404.420441,169.713658],[211.303879,402.787445,169.616516],[211.076950,395.502594,164.618069],[207.355850,396.184296,165.418129],[205.740372,387.743317,159.703724],[216.495407,392.225067,158.929016],[207.586166,384.698822,155.202919],[208.931259,380.625702,145.758177],[219.386734,388.235382,148.069336],[230.280777,397.600190,150.094395],[236.544449,404.178864,151.136116],[242.413437,411.136750,154.064934],[227.829331,394.671112,141.962143],[222.630966,389.561737,142.802655],[216.824326,384.628632,136.121742],[212.273544,381.539765,124.429918],[207.358353,377.292755,124.634485],[203.844071,374.989716,119.639444],[200.039291,374.756501,110.615528],[210.888443,384.981232,115.050321],[210.319260,381.289948,118.346828],[215.136093,385.597870,121.126740],[212.503800,385.460480,152.238156],[200.553574,382.030976,155.822491],[188.435318,380.778961,157.527436],[189.685104,377.782868,161.377438],[183.631302,390.314850,161.931149],[182.502823,389.795624,164.600727],[177.011093,402.539399,164.478577],[178.019272,408.400177,158.306813],[178.315781,413.484894,155.125210],[178.478684,422.182404,147.024933],[180.087784,428.232758,128.477174],[175.047836,423.787079,118.303040],[172.288437,420.749420,111.608034],[177.744675,427.193634,141.299055],[178.621323,418.330048,150.644041],[176.943466,417.196747,154.274254],[176.261582,410.062348,161.159386],[190.992264,385.539154,160.060978],[185.845505,389.416107,161.033284],[185.312973,393.532563,161.614560],[180.919449,398.855927,160.779911],[179.922775,396.589264,164.972435],[178.485031,403.769196,162.285221],[186.641647,400.000946,162.977547],[201.447312,412.208588,169.922799],[182.627884,393.866059,161.009735],[202.572067,389.893586,161.956807],[192.619034,393.813568,163.607506],[197.344650,383.946747,158.513337],[192.158981,380.460724,155.670399],[186.472000,385.455109,159.959065],[222.861344,394.324921,156.667733],[227.868027,404.576630,167.290268],[226.089920,406.532379,170.590775],[233.822159,413.673981,174.399849],[235.293472,411.494721,170.747879],[246.389328,422.366913,176.433072],[245.175919,424.791657,180.736248],[250.116501,427.523346,179.610966],[254.321732,430.549103,177.782158],[259.484604,439.899506,180.893467],[242.334458,425.106415,182.734223],[208.717911,409.860627,171.887040],[215.869309,414.661408,175.225857],[227.681412,422.054840,180.997925],[228.703903,413.816803,176.228764],[226.462143,416.472748,178.332604],[221.153427,413.793244,176.404984],[219.140091,398.082367,164.503426],[221.146561,404.552033,170.215580],[217.466385,407.165558,172.706883],[222.609024,408.633332,173.364273],[226.213272,395.277802,153.069390],[239.718643,408.272126,156.802315],[235.392105,406.616852,162.822255],[231.472916,404.557892,164.023110],[239.715653,413.508759,169.325763],[239.012192,408.691071,160.481556],[255.042374,444.129425,192.226822],[250.302841,441.580536,193.470948],[247.694656,446.966278,197.416863],[242.775894,446.037506,197.257286],[240.609177,453.204377,199.663033],[236.907211,465.060822,201.484535],[234.152390,464.660248,199.624214],[235.784317,478.652619,203.941590],[241.005661,498.615876,210.430603],[271.761307,492.584198,200.390213],[273.359421,494.231537,197.659821],[275.587692,505.301911,192.531777],[274.715561,507.722809,185.315010],[273.221848,510.048920,180.535180],[274.163864,521.530915,184.531239],[272.790543,523.844574,180.715020],[270.918961,521.013642,175.392647],[269.860367,530.117035,174.803982],[269.383682,507.548554,169.891831],[268.092697,516.459198,169.401387],[267.888840,484.629364,164.944413],[266.033676,475.925751,160.884034],[265.688065,486.092011,160.431847],[262.254501,467.591767,153.963844],[252.822250,461.559418,144.450377],[266.712753,500.152436,164.084324],[268.403427,493.693940,166.414364],[269.883286,488.303681,170.204941],[273.645737,491.107636,183.270234],[271.839523,481.080597,177.948075],[271.462082,473.974762,188.739762],[267.301773,467.147553,193.991707],[266.302841,457.599823,187.188530],[259.014938,447.595490,190.754578],[258.308579,454.162445,196.661354],[261.987503,460.964508,197.309578],[249.521011,474.962067,208.349640],[249.277512,480.185578,209.916733],[251.796097,482.464508,210.537751],[246.563431,490.255402,211.891510],[255.452988,492.792878,212.581963],[257.012253,511.139313,216.098313],[253.398514,503.051422,214.745789],[250.195328,492.010163,212.638436],[249.652146,503.296234,214.521546],[242.540146,492.287323,210.810074],[238.768387,488.965424,208.107849],[243.493515,482.120453,209.344941],[238.886948,476.838410,205.911835],[244.441635,473.418793,207.238671],[240.603256,468.422150,204.351860],[251.940842,468.635651,205.789261],[253.129318,460.357880,202.352616],[256.830826,463.190644,202.212906],[253.252762,450.634796,197.722283],[257.376206,485.799958,210.188904],[269.650192,468.757111,190.049340],[270.267990,500.306977,171.297554],[271.933365,492.778229,176.464966],[273.867996,499.304962,182.655053],[273.978012,489.682221,186.841286],[273.307266,485.029816,191.065406],[274.337509,493.645294,191.986565],[275.010422,500.298188,188.194916],[270.668198,508.003022,172.959587],[272.759445,481.128022,183.878548],[268.858048,475.342194,196.661025],[264.520584,469.746247,199.647179],[229.465622,398.263520,135.098483],[220.962814,390.966584,125.937383],[225.617020,396.606781,127.637381],[210.958298,351.104584,73.011353],[190.057327,346.085968,74.911026],[166.925644,339.231842,70.128613],[169.820908,327.644196,65.346413],[178.627915,326.464325,61.694287],[172.015122,318.737519,60.233681],[180.751450,320.118622,56.192650],[171.650620,316.550202,61.446556],[197.018051,370.114350,126.308790],[202.269455,373.958527,131.068665],[207.773636,378.723542,140.067845],[214.653885,382.997528,139.361752],[204.378464,375.031708,126.680184],[197.590256,370.153900,121.597020],[191.507950,366.267487,121.264565],[192.308060,371.876679,145.457550],[192.658005,373.527008,149.476021],[192.713883,376.892121,151.916003],[197.447098,375.562470,147.891953],[194.766037,370.766388,151.744217],[197.386887,362.308380,148.034428],[179.933975,362.978058,152.718819],[188.124252,351.201508,145.912566],[176.889023,358.870270,151.891123],[193.178055,373.482270,145.551657],[198.778214,372.810883,137.375025],[174.054855,370.925812,89.786074],[182.151596,313.438965,62.410469],[188.277664,311.281617,61.065678],[176.327011,315.011689,63.373352],[179.822495,308.771424,53.896737],[210.213272,310.592041,72.676888],[205.693680,320.663300,85.098599],[199.928665,319.154999,75.747151],[176.875290,314.354767,55.644432],[176.663376,311.677460,56.253205],[194.833023,328.633026,61.072770],[194.975968,306.242157,58.858101],[227.764359,265.225464,36.986611],[220.418961,272.154450,43.999146],[225.965256,262.938141,34.831292],[162.786850,311.142639,116.061946],[160.773117,309.890839,125.516205],[123.374497,267.969300,118.800512],[121.812973,280.206330,122.945684],[120.842880,286.851136,121.435498],[116.222641,266.440613,123.358281],[121.830734,256.519654,117.435293],[119.764938,254.454956,116.687936],[122.945969,250.413849,114.300107],[118.165695,269.311493,124.659746],[122.578964,264.753022,120.433951],[121.154892,274.940979,123.647265],[120.179672,281.418488,126.537402],[121.058334,289.093598,128.571702],[122.438461,270.323822,122.055798],[115.206589,306.393006,135.758752],[24.585434,330.495514,169.031796],[9.776230,340.312958,162.719349],[11.056015,341.373383,159.719567],[24.333298,333.015351,163.259915],[21.658676,332.988556,165.371399],[3.152390,347.664826,156.570614],[0.913132,347.371491,159.132126],[115.771835,287.350067,130.331387],[114.312180,292.329285,132.572323],[121.075180,317.241364,118.526219],[118.387985,309.748139,115.990639],[116.666489,302.052307,120.307584],[116.846115,308.812409,129.753892],[116.871079,307.157624,119.279012],[117.345688,298.569916,112.616956],[128.920700,319.100190,124.626628],[128.616562,332.543793,132.542339],[123.417648,334.085663,128.842301],[125.205917,328.764679,126.347820],[158.882858,343.433930,138.624304],[121.622788,345.793549,133.677721],[123.236069,362.500946,133.380364],[132.709396,371.708100,135.990383],[129.800400,381.585968,133.265553],[129.347275,386.222443,131.728213],[136.089646,389.900544,134.328922],[139.292832,401.546234,129.874715],[135.963730,400.507294,127.366859],[125.836289,397.332428,121.954314],[144.077194,404.454499,132.947428],[127.612534,392.257294,127.510376],[127.450974,372.814057,134.127048],[131.568039,359.365692,134.958032],[140.670822,363.887055,137.227221],[153.193344,366.324982,145.948603],[150.668930,368.031342,144.026627],[151.410507,376.221039,149.054114],[149.325485,384.299897,149.147116],[147.249558,383.301972,145.502732],[147.784348,391.062226,146.898627],[147.809860,398.113068,145.267067],[147.920761,402.943817,142.260765],[135.902329,395.976349,130.796755],[143.909714,401.973664,135.202478],[143.132187,384.226654,141.341282],[140.751816,370.285492,138.853091],[130.292893,364.478852,135.143814],[146.682602,369.628266,141.568863],[147.474045,376.080658,144.074580],[144.307785,379.703217,142.264729],[141.964157,390.418061,138.958664],[145.396042,393.269745,142.014929],[145.385300,388.481842,143.141417],[137.024277,376.837494,137.661644],[135.484848,384.126435,135.887804],[119.027329,375.537384,130.157950],[115.353562,372.582001,129.777814],[109.929672,370.319916,131.041459],[105.783737,367.025971,129.589234],[103.517502,369.667328,127.493866],[110.537766,377.151581,125.937169],[113.236069,391.817047,115.379159],[107.532089,388.348542,113.704291],[98.146591,387.837250,104.629916],[89.613266,383.073334,105.902689],[92.455185,386.024872,102.305418],[87.587448,385.226593,99.669943],[82.859299,387.105744,91.300648],[69.811813,384.292694,97.671120],[106.636154,376.060944,124.894416],[100.910263,378.739838,118.162417],[97.349472,379.133026,116.079451],[99.948349,385.151276,110.440473],[90.439316,377.830658,114.792406],[85.940292,381.428315,107.882305],[82.248154,381.152069,109.043171],[83.808334,384.676728,99.466914],[108.223679,381.901398,120.349154],[97.750107,372.622773,123.261987],[87.185410,372.042450,122.855723],[85.891770,369.556732,124.959884],[79.855209,369.127167,119.806036],[72.193466,375.982331,112.171322],[68.264328,380.002655,107.811549],[62.551193,374.779999,118.571319],[72.404709,373.078278,116.264600],[65.016342,370.080658,125.444503],[74.970627,366.879731,124.187052],[83.188950,360.638947,129.488091],[83.482651,366.193940,123.649030],[94.215500,370.588715,124.819900],[91.246750,349.762482,136.099017],[94.394028,345.141510,137.861117],[76.366318,357.559845,134.449141],[83.777146,375.373932,117.581628],[79.310288,374.806732,114.209760],[75.728684,374.841950,113.126921],[74.360458,381.430207,102.075320],[79.210068,381.765168,106.862230],[76.083969,378.465119,107.864742],[81.951462,378.645417,113.125582],[96.142685,388.886444,99.520363],[96.234238,390.976105,94.368742],[88.775620,386.673554,95.809433],[95.853684,396.258820,91.674017],[95.739426,407.414887,79.963017],[102.761521,405.014130,79.392132],[100.590012,403.105011,67.887394],[91.490097,406.568390,68.438153],[96.939438,405.601593,73.623505],[89.947067,408.513520,80.028981],[110.197861,401.535981,80.371170],[114.573593,398.891266,89.590496],[113.322861,397.915009,97.803294],[114.644150,397.438874,104.461836],[114.619248,396.603485,108.073963],[112.449082,393.910797,111.875103],[121.227280,394.569245,121.175256],[115.076645,388.337311,120.466119],[117.031967,382.339325,126.569480],[104.820419,392.949799,104.303090],[118.222946,398.443390,97.926705],[124.255661,398.838654,97.675829],[117.292404,397.856110,92.151856],[120.395554,396.416901,85.801129],[113.203659,399.711457,74.168736],[116.904953,399.773590,82.001015],[109.858017,399.038239,89.864373],[95.112290,406.588837,51.484543],[94.236069,401.118317,43.881623],[90.917404,407.084381,41.031937],[90.822495,394.946381,41.622910],[81.495773,460.682099,44.372063],[83.575791,464.806855,38.951134],[82.100815,463.455170,34.882584],[83.245407,466.886139,36.712281],[88.618759,473.370880,44.328148],[90.870041,475.155365,50.506638],[89.295639,476.786225,45.828438],[88.157028,481.675019,47.378052],[79.076218,460.178803,38.898148],[76.837753,458.139862,31.224976],[158.130539,370.084198,146.716973],[154.846665,370.751679,148.118931],[155.738876,379.175812,149.146878],[169.185776,365.336274,152.970106],[172.001389,366.066742,154.817429],[178.465256,373.618378,157.345971],[170.068161,358.117157,150.382906],[186.879562,366.969208,153.302811],[191.294022,359.015961,148.629658],[193.437027,368.544464,154.203213],[184.953690,381.850983,164.652150],[176.999313,386.272126,166.173088],[171.064987,395.414887,165.929379],[170.125351,394.144989,162.319600],[175.037644,386.831208,163.676976],[176.868576,382.700104,161.729660],[182.073532,378.224762,160.549481],[185.024521,373.873383,157.580765],[190.838333,376.951325,158.149865],[192.191727,372.744538,157.385350],[182.464981,381.472565,165.540608],[186.276657,377.240387,163.204003],[171.171677,388.214447,160.785813],[168.061875,399.289521,161.213902],[167.055344,389.555329,158.631398],[166.237473,379.082306,156.340393],[171.403244,381.768586,159.066941],[169.059311,372.024384,155.459683],[164.111313,370.918549,149.919257],[159.129440,386.030182,152.788865],[152.051315,380.616974,150.045422],[151.201889,385.327118,150.025103],[153.895065,388.068940,149.274258],[153.132309,393.750519,147.699803],[149.610642,392.464569,148.197710],[157.700424,392.174286,152.112799],[163.571396,384.728485,156.118588],[165.453171,399.022797,158.622227],[167.104355,406.341095,161.393631],[161.881271,392.223847,155.976307],[169.349960,399.552887,164.704991],[173.709519,395.805268,165.889138],[178.157028,387.311371,166.413269],[161.480454,379.862030,152.827267],[176.409592,379.335907,159.776276],[165.973190,405.213227,158.089184],[165.550278,410.715851,155.193188],[166.299179,414.146393,156.057934],[175.862534,420.927399,108.976137],[164.058701,416.871857,112.659899],[169.306320,413.929291,100.281634],[197.207687,401.707856,166.721150],[179.990494,403.810211,160.325550],[180.636612,410.073944,158.706173],[181.926315,417.381012,156.283310],[130.022873,322.616974,129.264500],[134.285324,316.146942,127.721870],[131.459396,316.197724,126.488796],[132.224411,323.775849,130.496100],[130.543259,326.806244,131.590982],[173.181564,374.668976,157.343602],[190.091965,371.556610,157.398655],[174.699570,338.337799,143.464184],[202.418991,398.537384,166.681298],[198.808823,391.819367,163.272622],[184.885025,404.904999,162.557770],[199.863632,419.758637,169.492447],[184.341446,410.594940,161.614918],[192.727890,411.144196,166.484719],[202.530899,424.579254,170.046395],[209.854355,433.082856,172.301392],[215.842453,444.388886,171.302098],[218.845352,451.063446,170.264683],[221.876358,458.017487,174.868706],[220.585007,444.174103,178.552407],[216.028641,439.768586,174.684010],[219.631302,448.788544,174.562916],[211.017105,428.959259,173.959114],[215.820755,433.480744,176.163437],[249.168259,420.195893,163.726448],[254.605057,427.664704,168.623829],[251.189316,422.727021,161.465607],[251.246323,425.082428,173.213486],[237.956284,414.520966,135.311668],[244.190170,424.567414,139.711180],[249.798813,441.693329,141.688998],[244.386459,434.944672,137.220371],[238.790695,419.629364,134.227121],[235.410843,417.734589,130.725770],[247.802078,431.827423,141.495377],[235.791184,424.556671,130.110246],[257.908066,454.510224,149.100214],[263.969803,471.280121,156.711213],[264.602890,461.930207,159.513038],[268.734726,463.585297,172.807255],[265.838486,456.113373,167.210743],[265.911179,450.808808,178.500355],[263.813736,445.391877,171.163948],[262.526413,442.574250,176.261097],[261.900192,457.008576,154.979538],[267.284775,468.494599,165.673012],[270.394638,467.523835,179.002667],[269.018479,460.708100,180.845658],[271.137985,469.923798,182.646832],[229.340744,404.414826,128.220893],[227.151566,406.145356,125.130852],[227.176773,412.060395,124.435421],[218.937363,404.221588,118.163947],[215.101791,397.224701,115.381813],[227.508499,455.931183,145.162079],[224.740311,460.038605,155.281796],[223.688980,462.811982,162.830025],[221.533615,456.626679,157.418976],[223.604782,466.139191,171.134465],[225.821427,477.699677,178.229153],[222.511521,461.482514,174.026661],[227.108566,473.009857,188.765030],[227.616928,481.850006,187.751191],[228.745102,490.690399,187.917031],[234.278305,512.605255,196.508568],[236.481583,522.879608,196.618065],[236.498184,519.533417,199.136063],[225.238571,473.558441,179.955117],[221.659439,459.431061,168.655819],[221.869003,451.574738,178.247815],[223.302567,445.079560,182.130341],[224.814407,462.738617,182.914235],[226.668747,449.113129,187.576966],[236.824783,452.263031,197.844810],[238.194016,446.058625,196.202996],[239.912644,438.723236,192.936570],[233.608627,437.298920,189.649575],[233.572800,443.319001,192.427308],[226.050552,444.482086,185.595433],[228.094193,467.671601,155.576527],[226.401993,467.784455,160.553246],[246.672653,486.883637,150.229645],[245.436844,510.348481,159.810917],[242.874527,516.317902,163.223744],[239.643479,500.818695,158.025513],[239.002701,509.560822,162.820786],[237.586136,511.886078,166.409123],[238.516831,522.763886,173.003277],[240.848496,544.512543,190.393303],[236.396042,524.063813,182.609684],[239.252182,533.685028,182.658539],[234.337814,515.110871,179.575547],[231.412399,500.636017,174.169922],[228.475815,488.893647,174.388459],[227.917618,488.411713,179.563607],[232.090744,507.000946,180.979363],[236.437882,521.813324,178.448738],[233.576126,508.184479,173.574559],[229.931442,489.384552,167.319817],[227.114761,479.831269,168.826317],[232.439652,498.876129,167.643498],[235.739121,503.051911,163.345963],[242.031510,547.917328,186.553833],[241.526657,538.736725,179.875447],[242.700211,537.956452,176.402123],[242.902817,550.659943,185.425465],[241.839157,529.041840,171.524254],[246.544235,524.414521,165.116249],[250.762070,534.498383,167.882191],[253.701187,553.751923,174.385857],[266.345993,544.988434,174.171494],[255.856369,544.471466,170.764252],[261.814499,502.865815,159.427369],[264.275070,503.715180,161.996247],[265.568527,517.749115,166.787091],[263.152359,529.103485,167.303193],[263.969742,544.369538,172.097771],[259.621567,540.858612,169.835301],[261.618973,552.257172,173.683884],[266.417191,530.173432,170.357346],[258.536453,500.723419,156.692242],[255.793625,491.365021,152.818804],[258.372208,488.462555,153.161391],[262.294022,475.609650,154.509320],[262.649582,495.189362,158.262684],[262.710800,488.312409,156.637658],[261.650772,517.304291,163.404538],[257.127030,517.984650,161.912850],[252.292252,515.562775,160.695523],[248.737045,514.303803,160.555573],[252.630783,527.448273,164.891549],[255.972946,525.030426,164.135575],[259.476547,528.474457,165.810330],[257.162918,558.949128,175.479988],[268.810715,568.639496,184.026364],[268.217697,585.335053,187.638084],[265.235031,590.347016,185.819672],[259.286850,587.303437,183.471074],[261.754166,597.168671,186.261399],[255.715653,601.942108,187.609421],[256.052628,607.320832,188.619591],[260.094711,616.060822,191.639252],[263.764481,612.948761,193.308556],[268.298294,605.311554,196.531807],[266.999680,619.100495,206.003701],[268.431412,620.493439,213.601105],[270.119003,613.782440,215.921646],[263.141190,626.469452,232.572281],[263.371750,632.697968,227.672599],[257.916062,641.176239,236.135994],[252.902451,651.321137,240.348069],[256.504471,634.294342,240.961869],[251.811386,645.376923,243.763260],[249.308914,628.552155,248.066887],[244.325302,624.579682,250.153298],[240.121842,626.495575,250.549218],[237.397843,630.993195,251.113137],[226.667221,634.382050,250.272332],[218.759537,641.401886,244.904618],[217.381485,628.247711,215.098121],[219.693314,623.680634,214.722260],[222.443405,618.888825,214.363755],[221.291580,608.973175,220.933701],[221.095444,610.574250,228.815148],[223.652603,613.444428,234.364601],[235.954697,610.979340,242.673333],[236.500015,609.052155,241.177842],[243.976700,592.972260,229.919648],[243.308151,589.001801,232.971459],[240.276779,590.531403,236.297707],[241.320633,583.170868,244.504990],[243.130570,572.612580,230.738854],[239.131058,569.302216,226.458908],[239.013718,560.256623,225.765587],[239.767441,558.553986,221.389260],[240.951096,555.707184,226.218087],[235.828507,552.660309,219.874985],[238.442429,553.446442,227.279618],[234.804337,547.591095,226.507180],[236.229996,549.753510,230.829262],[229.935593,553.741547,236.022599],[231.757095,562.764435,234.777146],[235.464462,563.487091,232.030686],[236.716690,565.942475,230.662163],[237.361862,564.284699,226.085160],[241.016800,557.860871,230.257981],[237.780808,571.059784,234.849343],[233.336289,569.330231,235.927544],[226.680069,570.470673,236.075714],[223.809372,570.068390,232.676781],[223.583084,570.550385,218.517272],[229.854263,568.385285,214.381730],[231.773544,571.901215,210.967559],[231.460159,574.839081,206.061180],[237.941391,575.399323,210.525071],[225.581040,578.901825,206.010285],[230.833084,578.943268,205.345909],[223.679947,580.550385,204.669396],[222.837723,591.644074,215.050553],[221.307724,600.394928,230.534172],[224.105942,599.290741,235.993561],[226.811081,596.778656,238.578362],[229.075180,600.055573,239.810905],[240.017777,604.628022,239.541634],[242.876602,601.452729,236.721131],[220.198013,590.573456,221.185021],[220.065842,591.588166,227.320420],[219.001938,588.674530,231.966149],[228.128861,583.676606,246.624848],[230.098221,580.736054,246.854485],[224.635178,573.950043,239.638398],[221.333847,573.680268,235.264748],[240.883682,580.678803,245.564827],[235.540146,578.467804,244.199486],[230.001114,574.097016,242.538742],[233.872299,575.270722,245.059883],[230.488724,571.594940,238.413010],[235.355942,581.892914,247.052834],[219.028824,585.706391,238.942192],[215.144180,585.602875,232.863182],[216.525803,586.612885,219.940033],[212.857987,581.723419,225.813805],[215.302231,579.336762,230.569970],[214.672287,576.104462,227.332009],[215.239334,578.941864,220.550796],[215.941513,575.873871,219.732842],[213.999680,581.081635,217.225426],[216.281326,581.484284,210.238305],[213.779282,583.733368,220.162682],[220.005997,572.823578,221.017334],[221.124802,578.555085,208.914963],[218.848099,580.835846,207.072350],[219.475662,584.200165,208.289086],[217.788223,578.596649,213.108345],[220.673111,588.407318,213.931862],[226.289688,588.148957,209.198365],[213.368546,584.143036,230.774491],[217.203262,588.084565,226.371590],[216.268753,583.854950,211.649895],[219.869644,584.026215,243.144432],[226.119583,578.947724,243.555718],[224.550827,575.983490,243.987519],[219.605820,573.061798,227.830429],[224.015396,568.139313,229.706833],[225.669693,570.690033,214.660996],[223.925797,574.996552,206.800110],[228.867020,575.908844,205.105385],[216.376846,575.666535,235.373513],[220.357041,596.518830,223.411766],[221.527573,592.574005,232.149956],[230.661057,591.480316,239.303406],[236.397781,601.842560,239.902024],[236.784409,591.054779,238.589615],[240.192032,593.720490,236.549622],[224.200363,583.074189,204.067910],[228.452194,584.558991,204.626259],[229.296799,592.452729,211.589913],[234.904801,585.860565,206.734482],[233.727738,584.511017,204.403054],[239.358353,583.838532,205.789307],[235.471024,581.824494,203.698182],[228.951462,581.873383,203.193909],[237.015091,569.840058,217.247413],[236.274490,579.924103,205.278275],[243.565720,582.730622,210.051644],[246.091690,580.683747,208.926392],[246.521469,584.407013,210.558494],[243.737503,596.001007,205.737656],[246.975144,589.565277,214.697655],[240.723892,585.499115,209.826622],[245.407028,580.540680,210.702919],[245.486984,574.426667,207.899315],[247.838120,573.342987,213.122620],[249.575607,570.230316,218.368622],[248.017929,572.619232,217.502381],[247.578964,574.521027,221.928901],[248.135025,577.869660,227.128342],[251.278763,581.445954,222.388680],[250.007492,579.172211,222.558540],[256.120316,597.190155,231.452736],[254.019638,600.861908,235.627549],[255.606033,607.598481,240.340905],[260.931351,601.248322,233.580796],[259.720505,609.511628,238.179505],[267.525284,602.129486,227.263863],[269.645279,603.632660,222.992089],[269.932327,596.134857,222.098320],[271.726914,597.601960,216.318802],[271.417709,605.170380,215.533661],[270.033096,609.921906,206.655220],[266.166794,609.583466,194.856675],[268.712021,612.612519,223.172707],[266.987259,609.767853,228.615899],[262.305344,619.015778,236.202950],[260.680405,628.397003,236.923607],[266.296677,616.857880,228.319832],[249.693009,579.765961,226.284225],[246.023758,577.568207,235.575493],[247.541947,574.226166,232.097534],[242.737564,572.518402,220.118576],[251.773636,573.542206,221.327546],[253.696427,562.959626,221.984620],[258.740921,556.743561,222.631234],[254.132523,554.858979,221.317940],[257.580368,543.965363,220.476174],[254.265823,547.863983,220.234200],[251.694077,542.417511,218.493935],[249.142990,534.280732,216.747727],[251.502792,548.379669,218.364342],[255.199326,577.291413,224.327942],[241.355942,576.606842,211.791283],[245.118332,573.932770,216.009323],[243.557785,566.418488,204.826432],[244.219010,555.058197,205.973030],[245.756271,557.145722,210.465088],[245.247574,547.023651,209.099076],[250.611191,560.276093,218.423851],[247.720444,550.179901,213.189431],[243.893570,585.806183,202.800934],[242.786026,559.390168,192.357933],[245.319870,576.444001,192.467186],[246.043381,591.820954,194.961304],[244.175583,587.801850,199.121483],[245.299851,597.630585,197.402802],[248.891281,597.183869,191.635605],[226.836990,591.630951,211.847710],[224.813950,598.860382,213.016083],[221.929916,600.776215,217.770394],[221.065170,605.657563,224.352691],[220.272873,617.447541,237.283852],[217.026047,623.014862,238.595589],[217.548050,626.143586,230.735535],[218.531021,627.292816,236.038765],[217.602615,628.549652,234.875924],[214.269028,635.414032,236.117073],[217.734818,636.971405,245.466507],[220.078446,622.714814,243.427239],[221.762406,619.772187,243.690895],[229.998551,617.796540,246.999741],[232.125626,620.639862,249.229638],[224.776718,623.899018,246.553101],[227.456101,628.320587,246.698532],[235.271744,628.069733,249.578881],[239.419907,620.786042,251.119728],[225.375107,614.987641,238.598052],[221.758743,615.324799,230.929406],[220.217056,629.184296,241.637482],[223.513840,628.561982,244.305825],[223.007187,633.669159,249.244439],[220.193894,632.931122,247.388916],[221.262619,627.316315,242.615105],[218.648819,620.235138,215.213394],[218.494583,624.580963,218.424210],[217.817673,626.439301,226.409179],[217.111557,618.306855,228.697449],[216.223801,621.662751,223.273476],[217.396774,618.830292,221.669869],[221.236801,615.163239,224.150894],[214.423844,630.750763,230.141297],[214.495438,630.350739,223.738953],[213.569656,634.762482,231.696907],[214.863663,638.923065,234.309021],[216.219956,623.559296,227.664695],[243.135025,630.099823,251.022026],[246.061234,635.665253,249.141793],[244.707596,644.311676,250.694481],[247.032028,648.079987,246.816193],[245.259964,654.745209,245.171562],[248.319382,656.182160,244.360337],[242.648636,664.092804,246.657845],[236.887711,667.492524,250.107506],[234.336899,678.106659,244.900916],[231.642746,682.823090,248.939110],[229.154953,687.200836,247.662079],[228.730362,688.608490,252.713601],[221.961289,686.481903,245.000748],[223.999436,681.392731,247.060173],[219.219650,683.810395,243.438515],[233.927170,687.611542,247.643502],[239.179398,687.011750,245.614006],[240.581406,681.202607,246.286820],[231.972336,675.845917,244.847306],[240.623093,668.206024,245.626076],[236.115036,673.877472,244.007431],[238.990677,677.150482,241.626053],[241.722061,676.182831,233.578353],[239.645706,666.916840,224.771797],[240.895584,664.622467,228.809334],[244.418594,662.729950,231.489128],[246.802567,658.175690,226.735299],[249.565018,653.689728,221.773102],[246.782059,651.821381,207.587098],[244.827774,652.827912,201.729981],[242.009903,652.563874,197.495301],[244.392868,643.643097,194.432778],[247.452805,642.298981,195.647873],[250.671219,643.766388,200.093682],[253.524918,643.077790,203.457085],[254.323258,645.150299,208.595253],[259.094589,643.595307,225.729363],[261.586258,638.617890,226.377541],[260.905472,636.821137,232.289193],[256.990097,647.347260,233.353775],[254.291885,652.029938,232.252808],[255.797836,646.355011,218.835808],[251.249100,654.455048,227.442017],[253.358475,652.644257,229.458855],[249.192154,659.541901,237.086197],[249.912003,655.191986,243.225365],[249.298538,650.100922,244.604149],[248.763443,644.077118,247.611771],[249.244095,658.427094,241.186936],[240.625321,669.500641,241.336754],[238.806595,672.591400,240.497413],[240.763962,670.627838,233.566674],[260.780045,638.418671,215.170830],[264.118485,631.966889,214.528466],[262.293656,633.241181,209.936325],[264.254318,627.841095,207.878479],[268.409653,617.565338,208.781051],[266.282303,627.387482,218.897797],[267.152451,621.857025,223.228562],[264.373428,620.123444,200.717086],[257.993515,632.942963,200.528946],[257.739945,638.690216,205.994881],[258.695694,642.429779,218.123268],[261.672714,618.612946,195.436211],[255.421524,624.528351,192.896774],[257.880448,618.597382,192.030709],[256.380966,615.048004,189.965477],[247.569962,633.259430,192.172020],[238.734726,648.348114,195.056275],[237.916519,658.228669,199.273323],[227.796127,666.545380,202.088005],[222.888962,671.210114,205.502442],[218.321671,664.428315,206.999054],[215.379044,664.378327,211.987625],[221.455307,659.153290,212.832627],[224.109238,656.633820,209.080834],[226.523178,653.768708,212.260971],[224.133377,655.158661,214.747666],[223.000076,643.391388,214.830216],[220.298081,640.614106,212.945977],[225.146622,635.637482,212.220887],[221.851547,632.906830,213.016785],[225.321335,629.071015,211.829285],[227.072189,625.011566,211.291916],[220.988022,636.091706,212.008637],[215.818039,636.096833,220.417023],[213.870377,638.225495,220.752549],[211.598282,643.340729,224.381645],[211.299851,647.198700,230.113015],[213.201401,644.115021,237.417931],[216.480881,648.434906,244.800667],[228.555618,645.497162,251.317315],[231.402451,639.956635,249.083435],[224.017136,642.008026,248.153663],[220.397568,637.541352,248.676827],[220.168442,645.769928,249.729638],[216.539261,644.796906,244.116042],[227.365097,637.224335,250.056862],[241.259384,637.184845,249.615433],[239.044235,633.775177,250.905480],[217.853531,638.009064,214.718773],[214.570450,640.517792,216.772385],[212.776871,645.959931,222.438774],[215.746323,651.564057,226.641182],[213.041885,648.789887,228.079361],[214.750809,644.523041,217.706269],[216.010086,648.263886,219.978371],[215.551529,650.481415,221.820374],[212.969620,653.583222,226.323349],[212.558945,655.985138,230.975845],[214.383011,658.498566,236.144973],[212.672653,660.695221,235.067994],[215.473312,668.711335,241.447548],[211.177109,673.102875,225.693810],[214.812485,676.420746,220.038956],[218.581528,668.531342,206.466277],[220.854050,677.803864,213.723511],[221.976395,676.156769,213.795372],[222.914963,674.249848,212.846199],[229.054154,676.196625,213.438178],[231.196793,670.821747,211.771035],[233.568039,666.882782,214.592286],[237.678482,660.028900,220.080864],[239.098740,658.148468,220.654770],[243.945755,657.783173,223.492051],[245.260941,653.944001,217.085640],[238.774521,656.081818,215.282364],[239.583328,656.008515,212.508049],[241.930802,656.234467,207.535416],[240.927811,657.921723,204.081054],[233.985275,665.530182,204.951317],[230.749741,667.521881,203.801400],[228.181320,672.997834,212.000000],[250.443680,651.013275,216.690018],[244.687058,653.212982,211.682351],[218.280350,677.665924,215.968514],[219.099442,681.372589,209.961129],[228.625351,681.571076,208.265953],[232.066177,694.480133,207.901665],[217.973099,700.173249,212.613770],[214.712174,697.829254,213.640312],[211.783493,695.079071,212.686547],[211.240189,690.420624,212.537743],[207.109696,691.188324,218.173798],[207.338272,697.416046,226.577248],[210.726364,699.350739,229.329628],[210.535965,700.220673,238.686768],[202.746353,705.261261,235.796700],[205.752365,705.604828,243.752097],[202.115250,708.694001,241.074356],[203.893662,708.493927,245.203307],[203.213303,722.237641,245.511597],[201.768265,712.590180,243.737465],[199.368973,713.911103,240.149651],[202.772202,715.462860,250.379769],[206.860825,702.398041,226.981598],[199.461228,711.608307,227.043838],[198.062149,717.620392,230.030564],[198.661179,722.123932,233.661286],[200.258164,724.942047,237.997315],[202.046951,725.918122,242.190491],[208.289047,733.003327,256.643410],[209.861832,733.886322,257.116203],[207.597763,739.033722,250.859429],[209.415726,739.961029,253.220864],[205.275406,751.638031,250.230004],[208.388535,752.218170,251.475945],[207.496506,761.657807,246.791207],[208.950241,772.345856,236.408066],[214.100754,778.006867,234.843369],[212.950760,777.505951,231.249634],[216.103500,783.008393,230.094612],[218.207504,786.471527,227.997841],[214.522873,771.441742,216.950104],[219.926682,773.198761,211.542786],[213.610306,766.091156,212.414338],[207.531510,756.084503,214.875603],[207.531387,744.532990,215.478050],[206.335220,736.591278,211.219155],[208.095230,732.730927,200.914498],[211.478470,734.330780,199.592148],[213.287949,740.563996,205.807351],[217.320389,733.410187,203.210243],[219.407700,735.499543,204.681969],[225.382279,736.172638,201.868607],[228.000046,731.710541,200.288124],[232.599960,721.263092,198.783775],[244.541489,721.929169,201.670182],[244.072220,737.760346,204.817597],[243.616531,742.560700,207.428933],[252.010666,741.488739,216.147324],[253.840836,743.238617,217.600121],[256.670334,747.169281,219.083664],[261.494675,729.895539,219.053063],[257.767929,734.669281,220.362458],[220.942124,738.927521,205.046875],[228.267960,741.306916,198.295395],[223.958664,745.672760,200.710617],[223.357346,743.317047,200.762360],[224.440781,749.720124,206.620392],[219.494614,756.988068,207.513268],[217.119919,766.085541,205.921120],[219.406326,775.819550,214.202607],[221.352768,780.775360,216.452926],[222.525284,775.134430,212.689934],[226.495285,777.855439,216.553650],[224.484329,772.423310,210.672615],[227.300156,772.459320,210.586403],[232.508133,770.806244,208.680626],[233.312760,764.693268,206.137909],[231.682297,757.231354,204.441460],[235.931717,755.311920,207.134728],[232.466141,752.610993,203.474884],[228.086533,753.096772,206.792008],[220.101212,747.761933,201.796203],[226.169266,761.403839,207.049500],[221.167343,761.986908,207.803612],[223.941177,753.486542,208.000228],[220.370987,769.684296,207.288514],[230.422775,767.792755,206.369492],[226.495316,768.903473,208.617623],[223.337692,766.924408,208.058785],[230.439407,762.503144,204.830971],[229.332626,785.827607,221.585472],[228.423081,792.953522,225.072266],[230.588883,793.087738,228.755593],[229.281540,790.194611,235.129227],[224.924820,793.302155,231.887383],[227.078507,793.914826,232.057701],[220.869583,793.495697,225.595772],[221.381912,786.196625,219.823899],[219.919571,741.535126,204.885933],[214.978928,751.298981,203.401749],[215.615891,762.974335,205.998467],[210.642807,744.430512,206.413178],[207.211411,742.009613,207.791359],[208.352432,749.438507,210.017151],[207.076828,737.038239,206.472588],[208.517807,737.867401,203.421288],[208.910935,746.841523,207.576615],[211.113449,752.383881,205.489228],[209.886978,758.863922,208.538651],[213.596115,747.689240,204.082909],[221.316300,752.501862,207.115074],[215.339218,756.313629,205.488030],[229.875809,734.490692,200.286736],[241.234482,733.916779,198.649788],[237.067764,737.531647,198.665505],[245.038712,733.494843,201.044930],[235.828720,730.870819,200.004876],[230.238785,744.605866,199.200730],[231.818924,746.828339,201.407387],[200.822373,754.981354,224.821701],[198.729813,743.571137,227.995110],[200.493118,739.300568,225.979737],[201.843033,735.025971,223.536339],[197.690109,726.994660,217.529778],[197.385117,726.827179,210.163987],[200.176529,723.114472,206.260949],[199.754959,711.653778,206.920357],[201.446945,705.427155,210.044037],[203.732895,706.459015,219.041596],[208.264908,701.197541,220.220765],[203.348526,702.401764,214.631226],[196.919998,715.842133,212.216515],[198.829849,716.340790,217.242112],[197.702347,719.463776,216.378662],[197.120987,722.607209,218.514016],[197.163010,714.222382,210.298935],[197.512741,718.521393,208.001510],[199.562729,718.292633,206.205590],[196.380997,724.499970,213.393929],[200.955460,736.671112,218.061463],[201.778641,738.153351,217.302559],[205.910629,745.008881,218.112931],[201.233475,743.359406,221.457802],[199.848892,747.697052,228.242577],[204.034989,749.209748,248.474800],[203.117478,751.282746,245.770378],[204.656998,755.478913,234.506363],[207.849045,765.230255,225.553719],[205.855240,765.530609,217.499047],[203.570023,755.711762,238.685997],[200.154190,752.929230,223.206406],[201.650955,753.672028,220.796189],[205.610703,750.243256,218.523323],[201.914414,758.308014,219.958725],[207.178818,760.576142,215.712784],[208.855423,757.974274,212.217186],[210.772324,763.393952,212.881217],[208.808060,767.185150,216.435234],[205.553269,766.812226,219.837989],[217.834030,741.133759,253.246392],[224.721542,744.633149,256.509545],[222.445969,749.779755,255.805657],[225.270767,752.676300,259.494576],[232.219650,755.854523,256.145989],[235.593369,757.241608,253.459420],[245.356522,754.001007,251.578392],[244.838577,760.995270,247.794381],[241.334122,756.413422,251.024666],[228.391007,760.968476,253.006081],[223.651657,764.737030,254.001763],[223.109665,771.247589,249.404313],[223.377487,778.101837,244.486245],[216.762009,774.337860,239.165497],[219.013962,788.338166,223.152390],[221.596024,783.075959,236.063492],[217.466141,782.613495,233.312798],[221.498093,790.408234,230.175194],[225.603256,788.628693,235.754128],[232.929306,779.013214,241.018959],[229.270035,765.501923,249.666199],[232.468643,762.076630,251.305336],[225.318314,777.448212,245.457039],[226.575913,769.743134,247.566757],[222.789475,782.500885,238.371148],[224.911575,783.663483,241.352394],[209.556168,767.120575,243.496155],[213.304947,761.771210,248.184036],[214.730240,771.135041,240.825676],[209.651383,772.464936,238.409340],[220.001236,772.117279,244.103890],[213.872910,765.067597,246.255539],[222.274338,761.110382,255.893685],[222.867416,756.580414,257.443138],[218.631638,765.395783,249.319504],[220.678909,768.430390,251.152855],[227.478043,758.115204,258.137856],[228.448197,753.368012,260.740028],[226.862106,739.611847,258.176217],[223.286209,740.959259,256.698112],[218.257462,738.087433,255.008934],[228.004440,748.256378,260.246956],[237.406693,751.861420,253.939980],[232.003342,747.487336,260.550621],[248.227371,750.887360,253.592415],[252.657913,757.815827,245.677308],[254.052170,759.064606,242.230576],[252.949692,762.545197,240.113480],[254.147324,763.165314,235.641045],[252.722061,766.051239,231.389588],[252.023697,764.909211,228.501870],[240.328934,771.122773,219.440125],[235.761948,777.623627,219.550370],[231.086929,781.721894,220.353463],[234.713516,783.155793,221.769684],[233.982895,787.386444,224.133918],[232.530350,790.969452,226.875954],[232.740463,789.040619,233.922257],[235.662430,785.099579,234.363892],[236.453934,777.631745,240.547501],[236.346817,774.230561,243.366570],[231.571427,768.431183,247.488457],[236.838303,762.076508,251.315834],[234.825760,782.349884,237.603379],[242.048721,776.023102,240.885483],[239.825729,773.735810,243.750893],[238.728409,782.006562,235.818406],[246.023117,771.429291,240.763642],[250.483322,762.272797,243.088135],[250.974533,768.223419,233.568221],[247.126114,771.484833,224.873520],[248.365280,764.322541,243.540612],[248.448380,771.884491,233.549873],[247.199051,772.841278,228.297150],[243.989334,778.680329,236.316628],[245.952835,776.977448,231.458428],[240.404343,783.064301,231.718453],[237.831192,783.600800,226.045182],[238.858902,779.734467,221.784478],[243.495865,779.100983,227.027161],[236.020249,787.131745,228.839385],[244.875717,768.678925,245.322525],[210.642960,742.898651,252.503197],[210.012650,699.753022,226.462746],[208.951981,696.344574,218.242760],[213.140427,700.274018,213.097222],[210.982132,699.825165,218.612679],[221.538834,702.306122,208.225326],[228.828568,712.314118,201.030754],[238.692124,711.955841,201.362572],[229.675491,720.107819,197.481728],[224.702591,722.058747,195.238396],[220.022049,727.248810,195.453545],[226.220505,726.484406,198.257836],[241.131363,708.959320,201.524047],[249.300156,700.504059,207.474099],[252.912552,702.282257,210.213715],[248.210861,715.586335,205.601235],[245.206314,717.986176,202.762734],[241.445511,719.365998,200.098275],[247.049057,711.230011,203.943276],[249.848465,705.392060,204.440277],[236.704392,707.067719,205.070885],[231.576462,703.019379,206.202301],[240.938248,716.133332,200.215409],[244.705429,708.934540,202.133072],[230.924362,715.676117,198.735931],[223.805618,719.988495,195.663353],[227.024307,699.034455,210.356568],[197.527268,712.511078,233.457123],[197.315384,716.255585,237.301072],[206.014359,729.529694,245.685257],[207.530411,730.855988,251.666207],[210.204147,727.892792,259.981331],[213.942337,730.489716,260.829033],[219.666245,734.326142,259.090371],[225.601914,733.060211,259.672326],[229.754318,730.557953,261.753792],[233.046524,727.127594,263.260658],[217.800034,727.524384,260.831047],[199.478592,709.526825,235.552994],[201.511490,706.517487,231.418335],[206.319992,696.714997,232.891915],[209.515549,699.857758,234.735993],[206.855789,690.798798,223.817207],[208.064072,689.302643,220.338889],[210.391739,688.435334,215.565902],[213.018662,702.685028,247.994522],[218.738266,694.560639,251.742821],[227.364761,692.932465,255.291298],[227.432266,690.052582,254.849404],[243.772446,691.416107,250.081780],[248.388809,694.046540,245.943032],[249.573776,691.737946,243.376656],[252.062454,696.323273,237.963410],[253.865524,694.029389,232.402794],[254.534317,704.938507,218.788269],[259.709366,706.845795,223.524620],[265.955429,710.919220,225.843773],[265.083542,705.574860,231.905823],[262.897110,704.215851,234.494225],[258.663315,706.048554,239.077095],[255.767380,702.928925,237.950829],[255.749039,705.415131,241.908768],[249.700760,701.601471,248.973480],[243.817429,702.449616,255.668175],[238.711166,705.148835,254.968193],[236.664658,713.647003,261.660775],[235.876785,722.702423,264.645440],[229.043259,718.655793,266.587807],[218.283646,710.571564,258.057670],[202.795792,718.958710,250.785912],[205.167801,716.824250,254.168084],[205.901566,712.931122,253.075539],[208.521225,707.780304,250.142083],[221.884873,696.783661,253.136193],[224.240402,698.863129,258.506768],[231.305649,700.191986,256.682656],[235.482712,700.917511,255.230416],[239.336685,693.756073,252.989769],[235.227036,697.339753,253.119210],[232.483902,721.352997,266.804009],[233.317307,714.694550,265.843499],[234.524796,707.024018,256.967736],[229.634750,711.736176,266.447166],[231.410416,706.638581,260.677452],[224.391159,716.533478,263.221444],[227.035324,708.755646,265.155312],[220.813278,706.616120,259.681908],[219.556076,701.707978,256.991692],[220.657700,703.125641,259.632241],[225.666611,702.627167,261.729332],[215.195023,705.409699,254.438637],[211.976395,710.508026,255.907921],[229.707169,707.791413,264.380302],[233.886673,736.017487,262.089836],[232.219101,741.232819,260.598809],[230.456741,753.100067,260.006279],[239.308182,746.778229,255.996575],[244.732498,745.636566,256.685982],[241.680588,738.696808,257.127449],[246.360977,739.934174,252.252205],[248.393143,746.616608,253.184868],[250.408096,742.108918,247.164811],[256.282669,736.586396,238.622574],[261.372086,718.879853,238.288772],[262.430679,717.485627,248.177315],[252.696427,718.340729,253.485222],[249.644577,726.307770,251.066582],[243.038712,729.650849,252.896630],[239.330429,727.704560,255.787239],[239.091538,734.858734,258.135064],[235.445999,744.939240,257.711602],[237.619797,738.016266,260.139976],[240.061661,741.843109,258.224984],[249.724167,721.890290,252.971474],[240.359421,720.546418,260.127326],[235.297226,728.001374,261.780327],[247.350510,711.591278,255.950768],[257.428299,708.411103,252.907814],[260.527908,710.292572,247.392174],[260.084152,712.402924,251.718041],[245.641129,715.500214,256.366477],[260.405777,721.252899,249.680458],[253.998734,733.478546,247.236390],[250.440598,737.880890,248.727814],[240.636093,733.271454,254.944085],[253.408554,723.914643,248.254769],[258.389664,709.317414,243.056748],[261.522843,717.905548,241.232224],[261.558914,723.047272,239.966439],[262.543656,720.534394,245.488572],[260.372818,727.062714,244.392968],[257.255142,731.100434,244.481338],[253.017777,743.254425,240.705956],[256.955887,728.836335,245.652802],[260.153275,710.857575,239.187691],[261.396286,724.929169,233.144150],[260.890244,729.226532,229.360131],[264.391617,725.462250,224.367691],[264.309769,706.773163,227.018822],[259.333969,701.953217,229.321091],[250.047562,700.428681,236.005982],[247.853439,699.424713,238.480942],[244.170975,698.250397,245.306809],[241.448197,697.938874,250.016869],[243.168411,699.687287,251.971718],[240.405289,699.356598,254.900490],[244.223679,699.878022,246.038338],[246.947983,701.056061,241.853516],[244.822006,696.189362,248.484497],[246.800034,698.952545,242.347680],[235.361344,688.942841,253.156090],[217.281662,690.576630,250.901055],[220.571335,688.475861,251.507866],[220.550980,687.617829,245.825524],[213.162277,687.937714,239.141648],[215.561386,686.741791,239.514328],[215.589768,683.171723,240.606507],[214.992783,680.698822,234.961762],[210.804611,683.070526,231.282524],[212.163132,683.600128,235.032822],[211.328049,687.133393,225.937705],[212.384873,687.148651,219.375069],[215.552414,686.036225,213.557022],[210.465042,682.761017,221.483040],[210.564285,683.259491,227.384804],[225.630600,686.333466,209.495339],[219.852646,685.899811,210.770760],[213.553330,683.547638,214.989075],[215.094895,678.170990,220.213982],[215.658615,680.531098,212.892807],[228.504288,677.892121,212.369591],[232.833542,682.134980,209.345086],[238.365036,685.276764,213.133049],[244.381333,687.234711,218.174179],[247.324112,687.682953,224.961304],[246.715286,686.032746,226.591140],[246.961655,686.050995,232.849266],[247.397385,681.543610,229.750641],[246.588120,681.482270,235.723343],[241.745987,677.456757,227.498313],[240.154221,675.814301,222.682358],[235.690079,676.300019,215.977517],[233.109116,674.118744,214.623093],[240.032730,681.080109,213.910675],[245.067764,680.956696,220.948723],[240.064377,677.434845,220.900162],[246.934616,681.040802,224.785279],[231.756210,671.285004,213.141465],[234.244034,686.079682,211.057320],[234.471909,690.448578,207.352195],[238.713120,695.677277,210.652581],[243.542832,695.742951,212.445931],[250.463242,699.071808,212.559632],[250.218674,698.781586,225.523583],[249.142532,699.101654,219.050072],[236.010941,697.244538,211.160988],[241.782669,696.886078,210.489884],[236.415085,701.472199,207.590165],[241.775284,702.346161,203.324463],[241.769943,699.682648,205.197762],[245.047714,702.065888,203.325219],[212.331070,667.584687,223.422615],[214.745529,667.383026,227.607186],[211.087448,659.031830,229.189019],[211.505661,656.632172,223.592324],[212.556656,666.011811,233.859703],[214.113144,668.314423,236.137810],[216.444870,669.673432,231.095124],[219.463699,672.600861,237.203247],[214.141617,682.085175,237.838745],[218.773331,680.683930,242.304657],[226.854477,678.278107,243.921769],[227.551224,675.817231,246.246361],[218.429947,672.111542,244.293038],[218.417282,669.562897,246.878823],[223.866257,665.243256,249.945702],[232.608414,664.540192,250.620461],[237.049698,661.724030,248.665641],[232.213638,656.306671,244.942780],[220.471848,653.835419,245.801682],[215.953232,652.430939,239.236718],[220.751480,650.060334,250.037651],[228.457321,654.723053,245.372757],[235.392380,652.480561,246.037529],[226.582291,652.880097,249.334946],[226.465439,650.291291,251.035958],[237.804978,648.774323,250.329888],[238.919785,653.834015,244.713669],[241.540970,660.586823,247.343338],[218.913254,662.289032,245.124947],[215.584854,663.389008,242.375504],[216.897568,653.760163,233.524956],[223.897293,656.467560,243.397934],[228.283096,659.455597,245.600640],[222.743729,658.437775,242.988793],[219.933701,654.759125,239.190789],[219.091660,655.996674,237.983551],[216.964188,653.339997,235.647866],[216.312637,652.220856,229.478943],[213.226853,656.675141,218.219017],[218.769852,659.325592,217.642769],[225.407883,639.194916,211.764450],[223.614823,647.661530,214.910920],[224.033829,657.704499,206.400605],[226.401840,644.538544,212.223229],[228.003464,649.186310,212.300507],[227.964371,652.143402,205.283097],[226.315292,658.525544,202.669983],[241.790085,634.643524,191.845902],[244.353989,630.988007,191.268326],[251.968430,621.059479,190.616692],[243.464829,623.605500,190.725281],[234.894089,634.095002,193.900071],[231.751419,633.002594,196.404412],[228.698929,631.164643,200.849610],[226.654160,639.047455,205.098748],[227.207413,644.291718,205.618378],[230.118424,649.541169,201.979919],[238.163132,636.873139,192.970078],[238.965805,653.191376,196.667900],[232.283402,644.646271,197.923539],[234.999649,647.302887,196.291680],[254.974960,633.499543,197.262299],[250.967148,634.020478,193.871636],[241.011978,688.604218,249.179261],[246.852524,690.154267,246.027230],[243.754593,687.680207,242.336136],[243.919388,685.453644,241.367531],[251.634354,635.767487,246.007553],[251.114365,618.116425,246.134247],[249.727432,613.599152,245.948105],[244.570969,614.317292,248.301758],[243.332932,606.073334,240.959580],[252.743607,606.137116,240.744538],[255.164993,613.958771,242.921982],[249.323929,596.555695,229.720925],[245.311844,596.575470,231.394226],[245.992600,592.011078,223.279267],[245.428940,588.932282,223.544243],[245.607956,588.379853,227.605645],[250.684708,582.219208,230.851502],[250.270126,580.250641,231.834297],[248.968704,584.269196,224.374207],[249.961319,589.314545,222.682953],[246.581436,584.464142,234.564736],[245.304794,601.949066,237.247849],[256.621018,619.509735,242.777466],[255.658066,626.107819,243.466889],[258.869827,623.993988,240.546242],[267.684036,595.064911,189.917969],[271.905258,582.091584,196.115654],[272.780533,562.860871,192.547875],[275.032913,542.353241,196.287682],[275.348801,529.790985,192.087372],[275.640183,528.558869,195.217155],[275.771622,519.910370,197.559716],[274.945847,527.869477,201.989426],[273.468338,518.857880,205.351632],[272.401871,532.867157,209.502236],[269.356979,528.469147,213.670800],[272.037155,542.267182,211.475220],[274.263168,537.312104,205.214294],[271.167648,536.115937,212.290245],[270.422409,593.615937,195.464119],[273.530777,565.687226,196.932457],[272.811142,586.175751,202.930565],[273.272751,578.163300,209.695694],[272.741379,590.674103,211.164177],[272.039505,596.450775,204.603996],[272.615982,595.279328,209.246581],[271.275925,604.472077,206.951844],[269.984390,585.223053,190.925682],[271.414871,570.567108,190.420647],[270.637375,562.969818,185.792603],[271.397232,541.981293,181.006020],[269.317581,543.299103,177.238762],[273.595932,549.906952,190.888038],[273.623764,539.537690,187.379853],[273.178238,531.406342,183.393372],[272.043900,548.747773,184.988282],[271.592575,528.630280,178.167042],[274.606552,542.577851,192.865937],[274.940048,525.706269,188.483879],[275.848282,517.203522,191.877243],[275.358017,514.125702,188.570115],[274.735184,505.259430,198.285714],[269.800034,499.182038,206.143402],[272.987473,503.807648,202.433655],[274.448624,517.889923,202.507163],[269.808304,558.940583,182.931939],[267.428208,555.543366,178.453843],[264.183487,556.514618,175.925713],[260.272232,563.017487,176.778160],[266.421768,576.577423,182.917183],[263.485458,568.961823,179.133404],[266.193619,567.032868,180.402325],[255.896134,569.685028,178.620171],[263.037583,585.178925,183.333439],[258.124771,575.811066,180.261867],[250.096512,548.263642,173.948368],[254.302719,506.402924,157.657780],[259.825272,517.995636,162.696740],[199.650131,405.679108,107.625584],[199.963394,412.143769,105.340968],[195.555496,403.406830,105.347069],[191.933762,397.197235,101.609587],[196.126236,400.494110,102.439463],[196.094620,412.312470,108.894143],[194.418991,397.495758,100.651883],[198.755722,378.626435,89.377072],[206.411911,382.255585,89.648861],[208.556778,388.270356,91.452509],[215.044479,379.632660,83.893631],[214.047440,387.302704,86.726094],[210.096481,399.693573,92.588793],[204.714096,406.854706,93.110163],[206.182968,407.683686,95.742348],[202.947617,403.872040,91.011349],[208.711258,400.151093,89.618569],[181.624436,427.765473,131.741684],[180.418106,423.813690,142.344672],[182.902969,424.209992,144.241515],[180.608719,420.918061,148.462317],[186.008560,426.102387,148.297848],[191.802963,430.996125,147.642117],[196.265885,434.014557,152.022694],[207.457840,442.577179,155.210858],[211.198197,445.679657,157.644642],[216.151596,450.317902,162.291634],[219.651108,455.269928,161.427452],[218.654984,453.676911,165.488106],[210.653397,443.455597,163.419056],[202.350937,437.502411,158.755768],[196.547653,432.186615,157.276024],[184.837174,423.096955,153.063147],[206.384689,402.715058,96.913859],[203.390335,399.776215,97.856663],[193.752640,422.092926,121.016317],[191.466293,423.928986,125.928769],[202.370804,430.284027,128.736347],[185.925980,426.570832,119.471183],[188.364426,425.685028,133.079499],[198.634293,434.735260,141.708241],[186.437576,426.237641,138.435810],[245.817917,452.799469,139.490784],[258.185471,444.161957,152.645462],[262.294266,446.336274,163.041256],[257.644516,438.181183,155.663327],[253.599198,434.746491,148.829380],[256.972824,465.190094,147.991833],[260.262100,481.218476,153.096125],[253.999008,473.300263,147.500010],[256.152390,472.488312,148.522351],[252.362412,479.744355,148.598343],[248.527878,479.303070,147.592249],[269.227219,488.693695,202.678841],[271.506424,482.128815,195.598404],[267.007614,478.381073,201.102982],[261.115738,468.086151,201.804413],[270.983200,481.641388,174.506810],[269.782089,472.068451,173.036202],[267.793167,474.172882,165.664208],[259.095596,478.050141,207.048951],[259.835343,496.347626,212.259818],[264.016770,513.260895,214.417206],[266.704392,502.713410,210.353920],[269.272141,513.267121,210.702430],[266.210861,524.340546,215.486908],[258.739609,527.891754,218.344353],[255.195053,528.884003,218.439240],[265.661209,532.783905,217.160057],[264.989853,539.762909,218.708481],[260.993332,546.365876,220.922493],[260.445511,561.897065,223.378693],[268.463852,577.923554,222.285683],[271.927689,573.897675,214.483239],[272.022629,582.368012,214.661400],[266.971146,575.473847,223.421746],[264.802414,593.136261,228.876717],[264.492416,600.697052,231.183556],[262.532974,590.382721,228.576477],[257.399094,583.133271,226.218377],[252.980484,585.217316,223.848252],[265.264084,580.194489,225.276123],[261.490616,579.543305,225.769967],[255.646378,561.461945,222.774079],[258.885697,595.694428,230.743270],[251.752884,593.286042,226.715676],[255.201523,589.865326,226.376572],[269.783127,585.066986,220.596978],[266.897415,593.576996,227.163322],[262.776444,529.477997,217.812851],[267.253983,552.962067,219.429009],[265.346909,555.641877,220.932076],[263.628006,568.069184,223.644477],[268.857285,551.503510,217.744675],[259.937576,513.035797,215.902703],[253.754746,517.527436,217.094567],[247.468796,520.196015,215.344727],[247.126785,538.944916,214.043861],[244.441635,533.987885,210.987427],[252.159805,533.393708,218.293595],[271.418381,519.689301,209.352806],[271.542191,507.899140,206.287560],[266.517838,490.438752,206.887161],[262.501419,491.021942,209.790871],[264.352860,481.207733,205.161751],[271.146317,474.004853,177.945530],[252.775864,491.400849,152.154618],[249.900192,500.294709,155.101448],[199.249344,424.727692,167.680072],[215.156021,447.151703,166.585545],[238.367508,627.790558,191.884385],[246.334763,615.270600,191.223496],[239.251175,620.692108,192.659371],[234.498276,628.374909,194.014907],[228.151413,628.011689,204.811631],[226.334183,633.512970,208.745682],[231.639359,625.541046,198.250678],[243.953537,595.815827,202.827172],[245.699356,577.106537,211.173012],[230.614823,563.151398,214.934204],[236.962113,559.496674,216.127625],[225.391434,556.078705,213.581948],[222.890274,558.755402,216.061425],[223.550949,564.511505,225.850960],[219.895218,558.879059,222.760337],[226.353867,563.056794,217.239098],[226.729935,567.298859,217.327660],[223.809403,568.835785,224.182571],[231.591416,502.960358,192.530976],[232.365067,502.237580,196.773124],[230.655075,493.465485,195.068543],[233.721542,499.876496,201.152039],[239.187882,505.952912,208.539672],[235.005539,495.957306,204.168000],[234.403946,485.690216,203.371827],[230.823074,474.473419,196.710434],[229.181473,481.211274,193.564476],[231.845963,455.425202,195.193077],[231.276199,463.143524,196.129105],[229.271591,464.770966,193.322487],[225.642960,455.982575,186.061104],[227.171158,468.596527,189.357041],[225.023880,469.415009,181.799233],[233.833206,477.174408,201.606614],[231.461105,490.584809,198.375542],[231.259598,483.528107,198.381485],[234.860245,509.494294,200.226921],[239.920914,529.661408,202.608536],[242.050217,531.107758,207.198006],[236.374466,492.293183,206.173012],[221.628525,437.971588,180.301812],[228.411606,436.261139,185.326928],[232.453873,429.587677,185.860931],[237.961685,429.209626,186.773597],[244.080734,437.794220,192.481842],[217.271225,427.177155,177.197007],[247.290756,436.366852,190.731499],[236.151962,518.381317,175.276371],[242.934952,556.036774,200.713097],[242.430527,558.007843,196.630616],[243.371292,573.833527,200.226341],[249.904862,572.240326,220.426964],[253.232773,588.251557,185.601555],[275.074448,543.428253,199.606171],[274.858872,541.446991,202.616280],[270.207230,549.664337,215.757363],[273.051682,553.511078,209.870720],[273.921494,554.918976,207.008828],[273.896896,568.061249,206.272788],[261.775284,612.069245,236.784462],[246.560257,582.646698,239.381012],[245.405808,581.259186,241.873192],[240.789810,585.659149,240.407746],[248.203598,580.040497,236.627488],[242.536362,578.202423,240.429482],[239.196915,574.944855,243.024559],[234.311539,572.905243,239.734780],[238.610794,573.030060,238.094582],[232.885208,558.367401,211.356781],[230.007858,556.124665,210.611588],[228.889755,587.698761,242.043114],[238.316940,584.510163,243.088912],[232.174729,583.432099,246.640519],[246.226059,608.001435,243.392212],[233.724014,588.820343,241.005898],[219.933212,575.650238,241.069756],[215.269943,583.779572,237.714447],[213.884750,581.781342,234.017441],[218.066574,579.027558,237.621903],[217.329788,581.321381,240.796372],[221.850205,581.594818,244.993538],[252.320419,566.551178,221.537766],[258.373764,575.300141,225.033486],[248.392777,562.243012,215.662148],[247.699997,567.077973,214.114930],[239.637863,570.165436,230.369660],[222.300552,610.263764,233.421944],[224.607376,610.040192,236.869255],[227.444534,612.459259,238.415711],[216.091263,631.860810,217.742920],[220.262039,629.653961,211.879517],[215.649185,635.418366,223.261040],[214.877945,637.205597,228.532364],[218.154312,634.740021,215.454171],[221.486557,625.911042,212.388695],[236.450607,644.874787,251.507317],[238.809433,616.039093,249.308044],[243.129776,618.141205,250.491280],[222.594559,615.034638,216.962966],[223.832413,605.776276,213.886780],[238.076859,518.446747,203.628525],[242.143784,522.380524,209.805031],[243.749375,520.364960,212.170029],[244.438858,508.027191,212.824395],[247.924606,508.209687,214.705681],[232.032120,605.148590,211.256699],[234.660324,592.083161,212.405709],[231.628037,589.009796,209.387787],[224.450974,552.906708,220.066536],[222.481125,553.881195,229.347129],[225.271073,553.959687,234.193459],[230.006088,546.811188,226.994767],[228.585037,549.702912,219.889618],[226.220383,550.105439,219.952942],[223.768479,549.563752,227.853936],[227.719650,546.942414,231.149895],[226.533768,547.313385,227.314270],[232.208359,549.197480,233.874146],[225.846237,549.213837,232.847924],[231.001175,556.249115,239.491631],[227.062821,558.983185,238.226433],[223.213669,558.828827,236.154892],[229.079361,564.110871,234.438164],[226.528641,565.073151,233.543534],[224.720139,563.986237,231.954842],[221.152115,559.659211,232.692887],[223.908371,556.437226,237.502404],[227.380631,555.318756,238.070649],[228.214005,553.436371,215.586556],[220.757736,556.492218,232.789291],[236.755875,553.552399,233.344780],[240.580490,555.600006,231.063164],[237.715927,559.225373,234.382843],[237.783005,556.031647,236.665390],[234.889298,558.180451,238.437394],[232.885483,552.470734,217.489762],[233.044663,547.163422,230.171646],[238.832962,605.979462,212.680573],[237.019241,610.845856,208.856148],[261.712998,604.073761,188.394921],[265.214554,599.977021,188.946503],[262.562180,636.590729,220.318230],[273.209122,567.915009,210.224144],[228.599442,639.860321,201.026817],[232.618912,662.256928,200.104180],[233.386551,657.704499,198.390587],[228.255509,661.261566,200.566925],[230.957382,654.300446,199.899819],[222.960068,666.803925,203.216500],[215.520981,662.934113,217.109803],[216.169785,660.517609,218.815628],[214.697586,663.947113,222.919327],[211.832291,670.247956,216.479752],[212.172257,666.357514,218.357819],[214.946457,667.004059,210.502037],[213.544022,672.504425,213.439690],[212.383560,673.880036,218.392167],[211.562363,660.365570,224.966682],[217.418808,674.804169,230.389229],[218.080765,678.147370,234.384163],[215.644577,678.015900,227.926575],[210.029038,688.330414,227.220116],[208.075607,689.170441,227.989808],[206.621628,691.257782,235.142113],[208.150192,689.360810,236.369271],[211.745804,687.696442,232.520981],[207.489853,695.448212,239.551766],[211.062973,698.244294,239.847008],[215.874161,697.619416,244.627068],[213.558914,695.814179,247.512230],[212.825485,690.330536,248.206940],[216.581986,688.176667,248.617379],[211.881851,688.408173,244.584809],[209.379868,689.898407,243.169594],[210.006607,693.004914,244.865860],[220.423111,674.583405,236.076653],[224.356827,614.600006,213.622803],[226.937912,603.745270,211.780381],[218.539688,674.724701,214.517792],[215.768906,623.062958,232.325966],[217.041458,631.864533,241.302315],[223.666641,648.829254,251.286003],[247.341751,639.997895,249.267929],[225.740189,592.111725,237.584342],[222.593521,588.426850,237.793450],[236.033493,619.338349,196.079850],[271.116104,561.319916,215.299050],[269.708115,567.162567,218.827805],[274.456650,558.121125,201.397759],[273.533127,579.239106,205.448067],[273.668869,573.077118,201.352059],[274.187912,559.822785,198.529702],[233.352341,568.501068,215.360970],[236.356552,564.826508,220.460053],[234.767746,564.487946,217.603409],[219.342636,575.619721,210.440148],[246.388657,574.407807,235.069420],[242.664871,575.077118,240.472542],[232.813889,609.314972,240.495606],[240.819718,656.177216,245.448067],[230.174851,668.919098,252.215432],[241.109970,667.700165,234.716782],[242.845871,666.136383,236.113327],[228.565689,690.918915,207.208413],[218.716690,692.860627,208.319519],[222.046402,697.759674,212.417649],[217.745621,695.732636,210.479226],[223.365158,695.078766,208.057694],[221.329758,689.969025,207.552933],[217.911026,688.518219,209.004090],[240.527390,661.313019,225.178444],[224.518204,673.229157,250.445229],[232.317398,672.242890,250.950066],[229.126114,674.008271,250.006356],[224.218582,675.218476,243.487488],[223.549973,669.187104,251.043328],[219.348740,666.133881,247.831123],[223.972641,677.054535,240.957093],[211.271866,698.228974,222.814331],[218.105850,717.785675,260.397149],[212.857987,721.272309,260.890084],[223.606613,720.910248,262.331643],[209.672348,716.408966,256.804161],[207.222489,724.990570,255.286324],[222.901260,724.899689,261.259011],[226.366562,724.045380,262.339774],[218.710526,759.048004,252.503945],[217.718430,746.813690,252.871407],[249.805069,649.277191,207.149506],[217.741745,650.801361,218.442275],[212.561905,654.314179,219.553605],[214.146530,649.529145,239.107026],[212.056778,640.571442,228.571175],[237.143234,669.891510,218.486367],[240.478256,687.953034,212.499451],[247.211411,690.165009,213.778397],[247.557297,693.724457,215.489907],[252.522812,691.710846,222.586884],[254.219437,690.714936,229.177819],[250.802780,688.373261,223.149704],[248.281510,688.259735,216.411515],[251.405655,688.826569,232.256409],[247.912094,688.089081,234.533051],[250.080063,695.190461,220.262696],[243.448563,692.747284,210.680924],[237.705246,690.417633,208.463257],[253.682633,712.398407,210.617981],[250.321488,724.611481,203.372780],[254.125443,720.333039,207.921822],[259.685074,730.491486,215.316101],[263.259842,725.676300,220.914429],[266.167313,721.926056,226.836747],[268.004685,715.358368,229.615395],[264.581131,718.720917,232.472657],[262.103806,719.051178,235.935196],[262.920883,720.727326,221.190552],[266.371109,719.849335,223.969856],[260.052933,717.693329,219.212089],[259.976456,722.262360,217.216957],[258.269516,728.104035,212.535866],[254.097702,727.214630,209.191948],[261.498123,711.250885,222.904572],[259.594589,713.300202,220.342034],[257.289444,722.177704,213.443459],[253.446121,736.339753,213.387452],[241.157913,685.695771,215.630356],[245.042801,685.248688,220.804893],[252.952377,691.804718,236.141137],[250.721024,698.149262,235.115242],[251.605057,699.183686,232.353043],[256.130112,702.806794,224.783729],[251.588181,699.013825,228.651131],[251.870926,697.566620,232.282532],[226.269425,670.410187,204.804589],[218.381241,698.745941,248.226738],[207.832565,735.497589,246.471833],[206.217758,735.273163,243.072121],[200.527146,730.250946,239.033463],[206.829697,742.651703,250.303246],[204.289383,759.427338,245.458558],[209.741989,770.170624,230.568474],[212.989151,773.336640,225.483178],[216.634201,781.871247,222.389733],[217.612778,781.012909,219.120621],[210.548935,769.605072,226.883377],[203.474655,761.721833,240.690133],[206.255692,767.000519,241.424843],[205.166977,742.929352,242.269165],[200.760513,738.250885,233.578797],[204.790634,745.649994,234.947837],[203.751846,740.500031,239.408775],[205.145371,747.864777,239.384484],[203.825821,752.978180,229.842598],[204.357987,756.870270,228.505036],[212.404709,772.401337,220.201516],[210.127457,769.816864,223.424073],[198.581650,742.367279,230.915497],[203.246842,746.615204,232.153777],[202.379685,745.398957,220.252533],[205.505875,740.499115,215.980888],[199.418442,729.519318,210.431739],[200.472580,732.570832,219.552918],[198.523392,732.243500,214.486260],[204.445999,726.882904,207.042572],[203.245926,733.275116,212.192879],[206.997940,721.428742,204.086014],[208.933914,718.022919,202.945694],[207.628037,714.059723,204.076714],[211.110947,710.609589,203.529503],[216.806412,706.872895,203.862816],[215.432724,704.938935,206.262261],[209.183212,706.745514,204.920250],[207.488937,728.631867,204.529297],[212.947403,722.146088,200.275994],[209.436356,730.324494,198.618668],[213.445755,726.143280,196.696350],[216.969650,719.250458,198.779702],[217.839340,709.970917,201.724167],[224.354599,713.778778,200.183739],[217.198776,715.960297,199.618470],[219.020645,720.416779,196.524002],[215.988052,726.619538,195.293625],[215.035812,730.818085,197.289391],[221.194687,729.140656,198.740883],[224.551254,729.845490,199.764244],[202.849503,710.594391,205.191658],[238.628647,727.408539,199.801018],[233.911972,725.838410,198.445870],[234.220139,747.887604,201.917344],[234.305405,740.392365,197.735070],[239.764786,739.959809,200.716095],[238.729569,745.211335,204.313294],[193.944901,723.362091,226.768921],[195.674790,719.843415,228.334542],[196.054276,724.523529,231.642631],[195.442734,717.977997,223.912796],[200.627976,712.510651,217.652001],[201.461166,709.502533,221.272805],[200.538101,705.955475,212.949692],[196.855576,715.239106,224.155693],[196.239090,725.631134,221.848007],[198.107437,732.497040,233.046562],[195.033798,731.483673,230.733513],[195.293411,726.680939,230.585907],[193.995316,730.292389,227.342109],[193.861771,724.256684,224.707741],[207.142746,702.677155,209.739312],[222.848557,682.944977,208.766594],[225.370102,705.040253,204.985772],[246.742050,697.412323,217.286965],[227.109390,696.848297,210.918282],[243.551651,678.483795,231.147270],[243.491287,680.115570,240.960190],[230.849075,680.411896,248.279862],[237.919785,680.833222,247.893212],[236.677780,508.712250,204.311791],[234.492752,516.804291,192.905068],[244.454483,551.098786,181.788937],[244.928238,562.126313,186.876969],[211.170944,441.258820,168.052166],[189.662003,419.761994,161.846783],[197.579117,426.572419,165.128601],[196.942551,428.747711,162.545132],[204.214279,437.263153,163.312218],[204.018936,433.237824,167.450230],[188.405563,422.377472,158.386483],[183.196732,421.766144,109.361173],[216.177597,374.403107,77.527233],[213.952316,378.884857,78.121594],[212.025192,374.779511,75.824410],[150.976486,410.065705,116.820256],[143.225571,406.230988,116.225971],[246.412949,461.315766,203.520386],[249.152786,697.340668,223.371796],[253.289658,695.105255,227.731255],[233.002640,692.799652,255.429726],[230.262375,697.162873,252.868142],[267.738297,711.603302,228.572976],[266.446213,711.426117,232.331002],[260.879501,730.892548,236.100808],[261.604385,734.368988,231.686905],[261.025101,737.963471,225.350510],[260.225052,737.448334,231.903618],[255.256363,742.324250,232.008644],[253.972672,743.641144,233.710976],[252.008011,751.592682,248.860787],[253.778488,757.928437,237.924477],[247.921646,760.745819,215.861237],[246.213730,766.961945,220.775910],[249.656998,764.351776,223.691979],[252.776871,759.252411,231.666100],[255.305222,748.490204,227.020378],[252.444809,746.696930,239.702607],[255.293839,751.128388,222.779290],[252.471329,756.003449,216.535324],[247.087052,754.953034,213.658196],[252.639572,758.336151,229.561570],[251.766556,759.037384,221.780655],[253.863327,755.042450,219.785598],[258.606461,744.709992,224.629761],[254.203171,751.478913,216.734375],[259.016556,735.737274,222.445900],[243.492661,758.886628,211.517342],[237.230026,768.818695,212.478447],[233.106217,775.607941,216.375153],[231.418961,779.075898,218.113190],[241.651627,767.584565,215.170594],[236.742233,771.933014,217.340424],[238.211044,758.029877,208.391602],[244.330368,749.784455,211.008637],[246.326920,744.743439,210.626419],[252.864639,756.048249,233.786994],[252.464401,750.353546,241.125969],[250.836990,747.311493,247.240853],[260.320969,731.653290,225.217941],[254.576462,705.509064,214.561875],[254.122604,709.202423,211.627097],[257.820633,711.084992,215.116082],[257.822800,708.705170,219.854958],[245.053543,728.032013,199.480842],[245.385117,730.242157,199.749253],[251.382858,726.646942,204.343887],[249.169785,735.232758,209.050125],[248.794052,732.207123,206.842247],[263.066513,708.356598,236.054619],[251.396317,703.151215,242.931946],[257.400406,707.085419,245.766281],[248.388596,701.609040,254.276757],[252.581772,704.297577,254.690453],[254.581253,704.313507,249.643258],[216.309097,756.726776,251.259560],[212.267838,754.824189,250.756112],[204.208206,763.650849,237.649865],[206.464401,761.975251,231.593148],[242.780869,766.726960,248.516716],[239.891678,769.903534,247.781365],[230.290207,786.561982,239.723229],[224.078903,793.094696,221.787407],[225.991867,795.247223,226.721077],[244.770584,771.829743,222.793884],[237.775253,749.754853,207.372445],[212.544418,762.216156,206.527916],[213.882858,765.646515,208.133522],[218.907761,770.355927,208.192330],[230.636704,774.264740,212.092789],[243.866837,719.632050,257.636361],[241.734360,715.306549,258.725930],[240.226273,711.195465,256.604210],[251.908493,707.423004,256.871224],[250.560898,689.470429,238.919701],[227.238480,696.402253,254.181939],[250.212662,716.504486,254.680779],[256.829849,714.836701,255.103234],[254.128616,711.107880,256.436988],[199.222336,733.653595,226.098961],[196.189224,736.419709,229.398209],[202.534470,736.245758,239.981026],[197.391739,737.821320,231.823883],[222.277512,794.279877,224.088524],[224.326492,782.898041,218.130310],[237.975418,555.901703,216.634377],[219.401779,558.838471,227.609864],[220.574021,556.226654,222.179535],[227.022415,558.327240,210.390450],[193.588425,405.243683,92.727713],[197.166367,398.656464,88.293404],[194.441086,397.746674,85.024899],[189.896744,405.427094,90.786356],[185.633133,412.472687,97.641486],[205.284226,408.122528,98.894411],[197.750046,364.739106,81.805149],[201.458695,364.063385,79.991307],[208.804886,363.477997,79.154827],[213.427353,356.584992,75.694939],[206.882187,371.490509,83.446450],[201.275772,356.478119,75.601288],[211.038742,372.467499,82.759430],[217.836166,367.333161,76.731442],[216.534714,373.233795,80.483689],[214.904495,365.012055,78.065197],[217.289688,360.558747,76.014420],[219.472092,346.922760,57.308586],[193.057602,365.579010,82.954216],[186.174301,387.338044,96.324076],[184.597427,387.988434,97.628420],[188.600021,393.098236,99.755478],[186.486435,387.779999,99.481594],[202.589401,412.764740,101.886946],[197.048874,420.224640,107.964552],[201.488419,413.667389,99.519690],[190.382492,424.865509,113.813341],[126.293625,229.828247,98.390738],[126.879135,221.298432,104.456866],[126.660141,228.082276,105.182221],[127.664597,221.066895,102.174088],[126.562302,232.474549,103.726904],[124.739365,224.785187,105.449208],[125.314926,227.833496,106.115230],[122.650375,196.150757,111.785455],[116.792709,180.245636,116.885665],[109.455734,169.764618,117.530605],[107.909592,171.276978,121.439561],[102.968735,170.993378,129.164422],[112.283249,182.659394,119.513171],[106.898605,169.373566,120.197457],[100.705002,169.103516,126.725844],[104.228256,170.298767,125.771895],[122.007858,189.774597,112.629581],[93.546677,176.778229,141.813671],[97.367233,183.236206,154.768143],[93.313583,184.960175,157.509949],[81.672226,171.697205,161.980900],[74.070969,171.387970,170.285552],[79.100144,178.137757,164.254994],[81.224106,175.270539,159.180050],[75.138229,175.199066,167.232678],[140.505844,266.365357,103.342207],[137.917832,274.365662,108.497380],[188.738266,296.335297,88.238823],[175.318405,265.048889,65.277466],[222.660935,298.178040,67.651181],[228.725601,292.026886,68.551751],[217.167404,317.578034,106.656941],[195.480271,323.160187,79.083718],[162.879929,347.702668,135.501636],[164.279099,338.887421,129.819166],[208.362045,329.024689,114.765617],[203.355209,335.766327,117.020031],[197.963303,343.312104,119.514315],[207.417099,335.295075,123.095898],[207.634537,334.437043,125.418494],[93.887436,283.943116,154.982884],[58.285690,297.823609,179.546479],[53.571701,297.013886,177.005944],[53.817795,448.440094,92.216004],[51.132858,446.079010,88.611939],[57.944565,444.664460,115.439525],[65.584274,461.792206,90.453404],[59.686203,462.416901,92.371815],[70.932907,497.906098,92.339674],[72.524338,496.574982,91.624752],[68.626389,491.607148,92.099940],[75.039353,496.653229,87.032250],[75.071701,504.047760,87.213795],[80.422836,495.787934,81.753281],[83.710129,490.685273,75.110688],[86.550888,488.900605,69.580403],[85.981979,484.663605,71.666890],[83.308701,475.728180,70.177578],[82.124741,502.972931,76.754792],[83.736862,495.391144,74.957077],[83.442001,499.472443,71.534817],[85.000717,492.714081,68.953408],[78.489426,499.872895,84.103928],[79.399582,486.082367,82.712784],[81.470993,483.294648,75.068741],[80.862045,473.698578,73.949623],[81.254990,466.616852,75.527871],[80.822250,482.479523,78.228009],[80.273789,483.775116,81.756852],[74.168076,482.670441,84.107407],[72.867966,489.214875,86.993061],[76.959580,493.462128,84.738976],[80.740463,487.298859,79.799801],[81.468552,470.451569,69.962452],[66.036484,512.343232,117.772561],[62.637802,505.857941,115.397158],[67.255966,503.865692,110.186618],[67.095810,500.363617,109.507355],[68.779282,511.725556,113.444077],[-11.733169,468.021820,143.604676],[-14.994522,469.155304,138.709057],[-16.862503,468.828156,135.081567],[-14.897659,456.977814,133.780961],[-18.152115,461.880707,127.402341],[110.956833,245.570496,111.338534],[109.362412,238.070893,109.679765],[111.618210,232.627655,106.144978],[111.311447,227.051911,104.641045],[126.045944,237.851685,106.789216],[115.926865,176.119995,117.330090],[74.347092,316.735321,164.144229],[100.705124,169.369355,129.139285],[91.410690,170.855347,132.219894],[94.451889,172.422180,135.087563],[93.950119,168.404450,122.596168],[94.883774,165.246735,114.608828],[95.589096,167.597809,115.579693],[87.425705,165.591065,147.033682],[104.827866,186.624085,138.892603],[101.854050,201.263428,138.444195],[88.008225,178.415253,141.116665],[87.645859,176.253998,142.902573],[86.064682,171.634247,153.466364],[80.052536,169.369141,164.175156],[79.017929,171.667847,165.853726],[79.609543,186.433350,173.407956],[62.671799,247.172303,180.814873],[74.857041,188.243286,168.208039],[98.900375,146.336274,135.504268],[102.766525,140.693207,130.309302],[104.132980,124.305329,142.300642],[110.436203,119.456757,126.440988],[106.597458,122.919403,137.483768],[119.061752,86.157563,121.321301],[121.112534,80.900482,115.533271],[116.514938,91.824555,128.638687],[114.535996,99.433380,127.225221],[106.858505,130.129578,126.047520],[113.068100,108.791657,124.512881],[106.671188,142.953156,93.635468],[102.952316,151.620941,92.572287],[104.261459,148.630707,91.828242],[123.364182,156.651764,89.819275],[111.914780,142.933228,80.901474],[115.619125,142.836945,75.834694],[118.767380,150.824128,86.971558],[113.489060,242.168427,109.145037],[120.656601,369.500580,52.663765],[128.897507,366.343109,53.350991],[102.793320,371.940705,49.486046],[116.487167,379.667939,59.549431],[121.584335,386.022980,67.828362],[112.349655,379.079743,57.112053],[110.089218,384.731049,59.632374],[106.906296,390.244355,56.895974],[106.661179,381.165009,57.513520],[109.089462,376.572174,53.919739],[101.902634,376.638398,54.360268],[116.992722,384.863373,65.106640],[112.725144,390.406464,63.037644],[118.987412,389.097443,66.482201],[107.004013,399.257172,63.768879],[106.658798,393.712128,56.916626],[149.725327,366.526886,40.651863],[145.828354,377.540436,50.977784],[164.292038,371.425751,57.655014],[132.836350,388.576203,67.813305],[123.885605,385.063507,67.339272],[124.010117,390.027314,72.418373],[120.551315,392.533356,67.318676],[119.450546,398.427338,75.016026],[121.631943,397.315949,76.594876],[122.217331,395.933075,70.748112],[143.301315,391.064057,76.604969],[125.898361,393.643097,81.321221],[121.954086,396.386261,88.725201],[136.258286,401.237152,99.502444],[123.498703,393.871918,79.789475],[128.598679,397.019074,89.173035],[126.868881,400.324799,102.661791],[122.137741,399.347260,103.291075],[118.098618,357.299897,36.344323],[102.740280,356.535797,41.484459],[91.051560,378.656464,49.383881],[80.894516,380.370392,43.689217],[81.907150,374.764740,43.576287],[88.198166,380.880158,49.061806],[80.499802,374.361176,41.116211],[86.801743,390.328949,41.205796],[98.045639,388.969391,52.968117],[80.140061,386.317475,36.829407],[157.835617,365.780732,43.862580],[164.107224,359.881745,41.244385],[167.541733,359.185822,43.542420],[163.077194,367.538544,52.101059],[174.708298,357.531281,45.840577],[172.274460,362.181427,51.225777],[172.402512,366.631867,55.977127],[183.890091,364.462006,52.062912],[171.934921,351.668854,36.870316],[169.137131,351.944855,33.119118],[161.896164,365.707184,48.374604],[155.139572,374.185089,55.927567],[178.728317,358.834320,47.418473],[194.350540,356.363800,44.838951],[192.737259,363.653534,50.765015],[201.720841,356.565949,45.056557],[189.116135,356.909333,44.492554],[188.707901,351.590912,40.742119],[195.383011,348.083222,40.505433],[193.112320,339.174774,35.878205],[190.859512,344.078827,37.750161],[179.493973,349.988129,39.819779],[181.399002,351.345795,41.240212],[184.641800,346.730866,38.847916],[186.704941,340.631256,34.832528],[175.864914,350.250336,38.290215],[176.926499,345.561310,33.446000],[176.958786,340.271027,26.581040],[187.370529,387.921173,68.964543],[99.223435,403.409455,88.753388],[82.136521,389.509857,87.195393],[74.756088,389.921540,82.501145],[68.596848,393.322235,80.875199],[65.284104,394.894501,79.910309],[72.160080,399.197907,82.291191],[78.029282,417.979340,57.398629],[83.141464,412.313752,57.746983],[96.630356,434.503510,31.699715],[66.051315,363.277069,132.819560],[75.820725,361.345002,130.878654],[31.828415,372.894440,135.289059],[22.823105,373.768524,135.422587],[31.156235,379.177399,134.378848],[7.395676,401.713715,140.470671],[27.155747,444.501618,163.357457],[21.190659,444.303192,160.626488],[60.036911,384.820343,99.006022],[58.487900,388.510712,87.492424],[55.466293,390.628205,99.374668],[60.838181,391.963776,79.633641],[64.603317,399.366303,78.037815],[60.606125,402.684784,78.824852],[58.836228,396.001129,78.374806],[48.700607,416.686676,74.251233],[49.158005,411.679413,74.865143],[51.387802,411.176606,73.790738],[56.478439,419.317536,74.646977],[45.677231,433.939301,78.932557],[46.790146,426.878571,81.344811],[49.579086,426.136566,91.522494],[49.538315,436.971222,71.875660],[57.699143,457.907502,73.032254],[61.029404,457.839325,73.551720],[57.086289,439.346161,66.034760],[51.902756,407.756867,92.728770],[51.085678,415.064606,92.339411],[47.574082,424.744110,85.720097],[46.101181,422.612213,81.262562],[56.114609,427.998688,79.295388],[53.637192,431.814911,73.598652],[57.147446,434.769501,67.989102],[60.379074,429.957245,77.758583],[60.463303,431.366425,71.040497],[59.684982,426.050202,77.398983],[61.233139,428.375946,77.872155],[68.306076,413.554779,74.094372],[62.663986,412.932648,80.248677],[68.273911,427.032502,69.190388],[64.799484,424.718109,74.137345],[68.498398,425.922638,71.606564],[67.889633,398.334381,78.882130],[73.644394,401.919953,79.469399],[83.230148,407.988922,71.443619],[85.712631,408.417206,63.365189],[84.583725,409.330353,60.642693],[79.581711,406.102509,87.744675],[80.034348,402.457611,87.410309],[85.767990,405.201325,88.316891],[92.207321,401.214386,89.822371],[91.377487,395.965546,90.215832],[90.671433,392.880097,84.719830],[92.159042,390.986542,88.710984],[88.840439,398.537323,86.702286],[86.817062,396.797821,82.727200],[78.057968,385.918244,98.681494],[77.603378,388.289215,89.128437],[70.530197,388.376679,83.496888],[71.720566,385.996247,91.792353],[73.910874,386.816864,91.627131],[54.290939,445.548676,68.292656],[78.386704,446.783722,64.336285],[48.180344,449.666962,164.610299],[27.244797,469.162690,163.567700],[45.603256,457.135346,166.018998],[41.004624,482.242340,165.145707],[34.580856,479.950775,163.873066],[47.043991,511.722870,128.193749],[45.270004,521.587494,133.240455],[43.382248,524.824005,137.845204],[43.619675,520.841339,138.008437],[42.957443,520.207184,141.285086],[58.140183,512.714447,125.640333],[62.521713,512.741547,119.512813],[65.313522,462.971649,82.189438],[73.364914,465.538422,82.040535],[68.593796,479.987152,87.060604],[67.514145,473.467194,83.517403],[71.549667,475.176056,83.568226],[81.030869,471.737397,81.101391],[67.707382,457.342987,80.468151],[64.692429,456.747956,80.531945],[78.902329,462.709992,65.985363],[80.524277,458.275605,62.132561],[73.098923,512.027069,50.307717],[70.486313,517.560273,48.563248],[71.147812,528.324799,54.031327],[69.180893,501.180451,41.462426],[70.087753,511.469574,46.155754],[68.448227,525.744294,47.584145],[66.798081,519.028229,41.038903],[62.769821,507.024811,31.294136],[67.398117,504.657379,39.594468],[66.716843,496.571564,37.106133],[67.759628,493.968842,38.301781],[63.586166,483.298859,33.789063],[67.489365,485.800568,37.280655],[84.506699,483.159760,43.063073],[79.461350,494.065705,48.000283],[77.588242,491.892731,43.120629],[76.476853,489.057587,40.659531],[70.209030,495.187958,40.037094],[75.054672,499.378266,46.191330],[66.199570,503.108979,35.961518],[86.841354,475.565399,41.500786],[62.796372,520.653900,34.786400],[61.161911,500.300568,28.597908],[59.151596,513.970246,28.671791],[58.415085,506.766449,27.179718],[50.243637,488.936188,23.093544],[56.146835,497.912445,25.529236],[31.205307,498.590241,8.920266],[37.098374,502.473603,11.373291],[44.784653,504.745941,14.952507],[35.575546,495.036225,11.891350],[68.726547,459.269989,69.474411],[62.664475,457.077057,68.862000],[65.974289,458.328583,72.110352],[55.486862,455.665680,70.480671],[58.094223,458.932831,79.846230],[82.562241,479.436859,39.967575],[76.529221,456.164032,23.804726],[78.780197,467.418000,30.871613],[79.032211,460.572785,28.065697],[80.125900,463.049652,29.193840],[73.220566,447.617340,26.367035],[70.379746,449.139435,19.570610],[81.800278,493.050019,78.605553],[78.430283,507.606537,56.160569],[79.548630,513.179047,60.119862],[69.724594,535.392304,54.721901],[61.032883,544.297333,48.989754],[61.192124,539.336701,43.873558],[53.897263,546.693634,40.281578],[51.629990,546.097809,37.022210],[45.525192,544.128998,32.641289],[42.200363,546.736115,33.256478],[55.640183,537.986115,33.772850],[63.391953,526.101227,37.824761],[55.739365,534.361664,31.195549],[56.070236,542.350067,38.450089],[63.776840,544.899872,55.230042],[60.505478,549.839997,57.970211],[52.512741,552.638336,48.827065],[52.771652,549.277497,42.593476],[46.094345,533.281525,24.479325],[52.368637,525.206818,23.678444],[26.076279,542.441315,23.485428],[16.793015,541.494599,22.567498],[13.775192,537.515229,18.225342],[10.829880,537.795929,18.667656],[10.583786,533.897492,15.926079],[20.348312,548.143891,29.986596],[13.899643,553.808441,33.064293],[9.333054,553.325104,32.507958],[4.589157,550.399628,29.006852],[4.972275,537.941010,19.466492],[0.684372,530.809906,17.574280],[3.967087,530.349030,15.688744],[9.077683,542.380219,21.478096],[4.561325,548.240998,26.293808],[10.451584,550.686737,28.233284],[20.157822,545.748627,27.570511],[17.306931,533.909272,12.677994],[32.948593,549.440766,32.454605],[32.488388,542.927704,23.103020],[23.725327,550.116852,33.522393],[27.830795,555.027008,42.025818],[29.972153,530.459870,14.375862],[30.020554,523.697296,11.263192],[21.777451,523.394318,6.895066],[26.849960,515.155060,6.975731],[31.455429,517.497162,9.866402],[38.327500,516.258332,12.516838],[44.694626,512.357636,15.091500],[38.596298,508.609711,11.962929],[31.165268,510.444916,8.345909],[44.338791,518.172577,16.053070],[37.593613,524.964081,14.480721],[50.714096,506.272187,19.495720],[52.846726,500.302094,22.159386],[27.166794,537.680939,18.497994],[20.545334,539.458710,18.963150],[13.293442,514.007721,4.735047],[65.833969,451.056122,6.207589],[72.387131,454.287690,9.941437],[48.014816,521.805695,19.698082],[40.938278,526.821381,17.306733],[20.482590,514.826691,4.520775],[7.730942,513.761628,7.136025],[13.194321,502.981903,3.411614],[59.270798,554.734528,97.528895],[63.967453,544.446747,96.519078],[75.687851,508.341400,86.171334],[58.304794,548.390961,97.664881],[56.942062,558.094818,94.444693],[46.726120,563.107025,96.819935],[42.319931,568.466461,104.333945],[44.369919,562.685944,100.933188],[52.171005,552.124054,103.364596],[54.837265,546.801422,110.966213],[58.387497,545.953400,104.664353],[54.881455,554.910492,99.086621],[51.515183,559.035431,100.166678],[55.976669,557.705353,98.071310],[51.685349,547.648285,115.200183],[46.946579,554.439057,106.632873],[42.930344,559.099335,106.999836],[61.192978,554.163849,94.702588],[41.953476,571.451996,100.664196],[38.342209,577.686310,94.801243],[38.904648,575.006134,105.492239],[32.841660,580.466217,105.485493],[28.267014,580.177216,109.546353],[33.685715,571.060578,113.247092],[38.835922,567.896820,112.749511],[27.986862,572.037384,114.923966],[31.302597,566.962799,115.246451],[26.455368,561.452790,116.650933],[35.463059,575.115509,109.224563],[30.187912,579.160065,81.525818],[28.912033,581.848114,87.589249],[23.114121,583.213715,89.705311],[18.550766,578.876801,79.692101],[15.489182,572.579254,71.729229],[20.743942,573.293976,72.132367],[20.087570,570.744538,67.727234],[36.411301,562.264740,59.835675],[28.314621,569.533661,69.080609],[38.054794,573.046418,79.567086],[41.861008,567.671112,79.664502],[41.391953,572.400605,85.811222],[33.337265,574.894928,77.730355],[24.865341,580.529145,82.275544],[28.148056,571.481049,71.637772],[25.659897,575.086335,74.206753],[23.967880,567.589936,59.488003],[33.831467,560.410187,54.833825],[41.293503,560.109162,58.491436],[56.019577,554.630524,60.606511],[17.623642,512.591278,142.453837],[19.892075,513.568268,139.453390],[-11.077652,496.699860,141.896901],[-12.033646,504.553498,136.544465],[-8.485245,488.122223,146.710602],[-15.027786,484.472016,139.442679],[-17.524673,484.237885,135.345024],[-16.771988,478.142487,137.028127],[-13.125748,473.932587,142.391062],[-12.210220,483.165314,143.292530],[46.017136,546.988312,122.047889],[38.975998,539.489106,132.397622],[31.827561,537.778290,136.206306],[27.269516,542.848969,133.697921],[34.060715,547.082123,128.046821],[39.013413,527.822785,139.719998],[44.347336,540.104767,129.164277],[49.113327,534.197907,129.551929],[47.500900,530.798798,133.305179],[41.749680,528.436371,137.804961],[34.226914,519.326142,147.378230],[34.170944,528.427765,141.263646],[39.424484,523.272248,142.773754],[34.544846,523.896637,143.794791],[51.202377,539.714325,124.244157],[57.520187,518.581269,123.818720],[41.539047,516.257965,149.330710],[41.807785,510.110565,156.856217],[12.074814,561.509064,122.672104],[3.196030,563.429047,124.923206],[2.557175,565.594025,123.233089],[-2.149429,563.106476,124.019610],[-2.084000,560.768891,124.856009],[-24.742813,529.527130,123.028024],[-21.186355,536.773285,122.244319],[-11.522842,543.489472,124.536933],[-15.603714,545.805512,119.675097],[-12.169327,552.602143,121.790065],[-17.928726,543.124848,118.222438],[-16.628433,539.708100,123.707946],[-10.400345,548.845063,124.279395],[-26.802688,527.757294,121.719756],[-12.150650,539.374359,125.863789],[-14.561783,523.203888,127.354097],[-6.365372,545.532196,125.878628],[-17.066849,546.890290,111.041137],[-14.266861,554.163849,114.897191],[-13.808731,557.050873,108.764343],[-18.325821,552.109772,104.817650],[-16.305008,552.493866,108.971183],[17.183151,569.003205,60.468579],[13.829758,568.868622,61.075989],[11.107590,569.131989,67.328648],[-36.057510,526.708954,89.616879],[-21.809219,559.407746,92.916796],[30.669968,582.573151,94.368767],[27.470139,583.706024,99.732340],[25.345688,582.764801,105.143370],[35.166733,578.915741,102.121127],[-16.053726,561.563202,85.450631],[-20.065445,553.402985,73.357430],[-9.677444,557.618195,68.696980],[-3.318924,561.508637,68.799900],[-34.597244,550.513642,81.616047],[-25.992874,550.540619,75.044583],[0.460617,560.314301,52.631424],[6.090500,558.911042,44.797074],[6.149887,554.146698,37.391632],[2.158920,557.659638,44.942513],[-3.014908,549.184113,35.691018],[1.995834,551.884186,35.437088],[-7.231277,543.091767,31.882653],[-10.452652,535.384064,28.634865],[-14.619217,536.770172,33.731530],[0.719406,545.732575,25.758400],[-36.318375,553.313385,87.265881],[-34.558426,553.809357,84.712361],[-33.261856,555.906403,87.387238],[-23.999405,559.196381,89.949597],[-30.635940,557.736054,91.072596],[-31.622574,534.087128,69.987484],[-28.239334,541.853119,69.153080],[-29.754471,529.838593,58.450985],[-26.569290,533.118866,47.103699],[-27.436600,537.253632,60.530930],[-21.439407,528.919525,35.102471],[-18.622146,535.803315,37.800583],[-22.621475,533.898896,40.640114],[-29.335464,527.515045,51.029290],[-29.566971,516.622162,41.020218],[-29.655655,511.166596,39.957863],[-30.096512,511.080048,46.164093],[-31.232193,517.531464,52.003563],[-30.357986,522.010224,50.059426],[-32.781998,517.071564,55.791703],[-36.057083,510.687958,58.075066],[-35.840103,507.977936,55.680199],[-31.494461,522.165619,56.246186],[-8.731338,531.115998,23.385933],[-7.922867,514.653473,15.010033],[-26.420120,519.075043,29.733384],[-28.401443,516.947174,31.188309],[3.728684,571.677216,80.892334],[14.316757,577.133026,79.262734],[9.862473,570.232086,71.244908],[12.235764,579.563385,85.404183],[30.849960,567.446442,66.000874],[41.785080,565.152191,76.241349],[47.313034,562.769501,79.528347],[47.094406,563.527008,84.346184],[44.482285,566.799103,86.967350],[37.086716,566.648163,73.116505],[40.292526,562.326325,64.235760],[57.241562,557.409760,75.783165],[54.534165,559.366181,84.536812],[46.345688,560.730439,68.426663],[55.950119,556.971222,68.374077],[51.996689,558.129181,66.140023],[50.890976,541.250824,32.134713],[46.435654,539.593354,28.965271],[54.238815,530.249176,27.159584],[41.771713,537.039826,22.858460],[55.788559,508.141632,23.928467],[-2.258926,498.703156,3.870842],[-28.192825,498.294525,33.387558],[-29.691788,500.496918,40.334542],[-32.678848,496.883637,45.432495],[-30.278030,496.521637,40.362946],[-34.411148,500.883881,50.874619],[-43.140518,486.916474,55.485443],[-8.650589,433.905793,8.522080],[-20.739334,464.012848,22.116692],[-22.305923,425.657807,10.804848],[13.493698,434.624970,-3.850807],[-0.860428,346.077912,-0.610946],[11.896164,376.522553,-6.196266],[-11.391128,382.581391,-6.167892],[50.527573,398.384369,8.788224],[55.827622,392.731720,10.070244],[67.172958,404.229523,21.449982],[64.002182,396.722138,23.371148],[64.763168,390.217133,18.146195],[63.247116,390.148407,14.760010],[67.709458,387.279938,12.261620],[61.965500,386.921601,9.354897],[62.574448,398.138214,16.156907],[61.571030,395.232636,14.549462],[62.124924,381.287567,-25.159752],[61.582443,382.960419,-17.162803],[60.520249,381.054169,-23.229606],[-0.886612,357.633576,0.202668],[-28.218094,383.530060,-7.435737],[-33.059830,373.692963,-10.799842],[-37.912369,361.758515,-9.452705],[102.497727,397.364655,-69.384742],[110.388779,393.822541,-80.300514],[108.125412,401.578217,-74.303596],[103.264145,403.052033,-67.413627],[107.290695,411.510224,-68.381507],[105.465378,413.519379,-64.775596],[111.271958,431.932099,-62.595665],[106.837204,383.315888,-80.387870],[105.105454,371.837006,-82.148797],[112.358566,381.904511,-86.881507],[112.954941,392.858673,-83.547935],[125.097763,373.298371,-100.389198],[114.404221,363.193146,-93.293327],[132.514511,386.094086,-102.949410],[128.594223,388.863007,-98.903679],[123.970749,392.528290,-93.637016],[117.677719,395.599884,-86.568230],[119.889084,398.030609,-87.943290],[117.272629,405.398163,-83.413688],[120.787644,405.119171,-87.497673],[127.887924,420.894379,-88.650581],[136.423447,417.690216,-98.020759],[146.026840,420.093232,-104.333015],[133.255234,408.218842,-98.344734],[127.070603,395.563385,-96.760872],[131.992478,392.017792,-102.055993],[122.698715,399.792572,-91.394737],[128.370102,412.617524,-92.421211],[115.980942,410.863678,-79.444085],[121.041245,412.894928,-84.551551],[135.370407,452.559662,-82.533653],[128.306381,452.358551,-74.233986],[109.972641,454.760346,6.459191],[107.287705,456.411713,-1.734230],[107.005600,461.459809,-7.314903],[103.593186,449.018647,-5.037429],[101.335495,448.100434,-11.238427],[105.116684,458.906952,-12.431770],[118.444382,431.330902,7.489670],[127.417893,440.795319,8.513932],[133.974228,450.205170,11.586419],[130.570786,450.420197,14.238854],[133.739914,459.392426,19.262474],[139.699021,464.520356,18.157349],[139.717453,470.127045,19.927704],[139.155502,477.660370,20.314621],[141.584091,484.171173,20.417756],[137.963364,484.895294,20.566079],[146.057541,492.830353,20.943154],[146.264755,503.247162,19.000061],[153.045700,502.741242,20.450791],[153.408554,499.087311,21.127701],[155.335068,499.664521,16.050293],[169.342392,500.574677,1.491852],[184.010452,518.162201,2.199646],[188.302231,518.846772,-1.548301],[194.190903,520.919464,-5.464317],[191.530655,515.312043,-11.287010],[190.450638,514.417572,-14.679649],[192.152115,518.035981,-26.423210],[190.187149,514.990631,-30.347511],[184.544754,504.308991,-32.731437],[174.005295,487.398957,-26.348335],[175.811081,482.964814,-30.886329],[180.907456,482.577362,-35.307014],[180.291428,475.029084,-40.547981],[185.905838,476.436127,-44.384605],[186.978653,461.815644,-62.868217],[198.133316,463.012848,-69.456016],[215.338303,464.114411,-79.160607],[222.077988,462.522797,-84.654365],[222.616348,459.622956,-86.016014],[222.088883,457.406464,-87.669349],[226.852005,465.776642,-83.532737],[218.459976,467.119355,-78.764076],[223.039353,477.287201,-77.389579],[224.372391,484.475617,-75.738411],[216.520310,481.233857,-72.766853],[218.792282,487.423371,-72.415702],[222.259964,499.677277,-72.205925],[220.867813,502.792328,-69.869285],[217.458847,511.001435,-68.286735],[225.315018,518.665863,-71.095924],[223.050522,508.130829,-69.941490],[218.337235,514.837921,-67.798973],[224.698135,514.332245,-71.359016],[228.754715,525.085602,-69.361549],[234.206253,522.869843,-75.078926],[214.688095,487.805207,-69.883217],[215.976608,496.356171,-69.772942],[212.813522,497.328156,-67.069558],[209.522843,482.854584,-68.335228],[209.320816,490.340851,-66.222802],[202.828751,480.542633,-64.637733],[201.760330,491.686493,-60.420127],[192.595505,486.740143,-56.321693],[190.262100,488.142365,-54.403373],[188.636643,495.368988,-50.921669],[184.869461,491.911042,-41.064201],[186.505814,487.027924,-38.864587],[177.835800,489.887177,-30.336770],[181.240158,494.498261,-32.925560],[183.133103,491.243134,-36.301506],[190.873398,499.858857,-44.103248],[192.131119,505.580963,-42.693580],[202.338303,512.457978,-48.610039],[201.477799,509.939118,-51.071601],[194.322037,502.224701,-52.580040],[206.619217,492.458283,-64.456047],[200.964310,498.771820,-58.350242],[202.697769,495.691193,-59.869575],[193.373123,494.554413,-54.500496],[211.914688,468.875031,-74.735572],[207.281967,476.363678,-69.014366],[180.113510,470.644013,-44.807792],[188.102951,510.719757,-31.979698],[187.086166,509.124665,-26.873039],[180.133591,498.083588,-31.547035],[187.720169,509.996796,-17.394691],[181.889267,504.257660,-13.370720],[169.709946,489.837250,-13.275428],[165.655014,489.363983,-5.573173],[159.460922,480.252961,-6.644936],[155.003403,477.448578,0.085259],[153.564316,479.075226,5.886246],[148.759628,474.278168,13.621117],[146.153610,472.354828,16.346840],[138.428879,459.692414,16.175423],[155.934311,492.977021,13.644303],[158.556137,490.325898,8.376793],[160.747543,498.032685,10.553376],[156.754929,495.599518,13.295678],[180.327225,509.356110,-1.954460],[189.095871,514.759796,-6.816170],[174.284836,507.570954,2.698059],[167.978989,505.709015,8.878167],[167.265427,508.445954,11.309243],[166.756088,511.855561,13.292168],[171.422165,525.371064,15.506905],[160.073532,516.892914,17.035584],[175.364182,530.761750,14.128037],[180.075211,529.413666,12.617859],[180.600632,532.641877,11.244690],[186.178330,531.310089,11.112992],[189.928940,533.054901,9.590371],[193.969376,526.777680,2.367806],[196.865006,535.729706,-0.930702],[202.093155,531.816803,-4.473487],[201.554611,534.483124,-0.874427],[176.429489,524.484101,13.304604],[176.674851,514.868622,6.825684],[178.644028,513.095978,3.754074],[175.654221,517.654328,9.978844],[154.780625,502.066681,20.334107],[133.984787,468.726654,21.629540],[131.019272,460.491120,20.440926],[120.412094,450.174103,14.782280],[122.713303,446.236908,13.332940],[127.604965,454.657746,18.012749],[124.361496,443.299042,11.445321],[127.966171,473.059784,20.246613],[129.702561,466.066315,21.211792],[122.488815,468.013092,18.358223],[122.964157,463.679169,18.732422],[126.814499,459.481354,19.703713],[117.946823,453.356415,14.665261],[117.360703,458.241364,15.077576],[122.731918,429.688690,4.301026],[116.642380,422.165497,4.379555],[127.040817,432.467560,1.691033],[131.120468,435.009430,-2.954406],[134.843735,441.405304,-3.645614],[138.495834,446.730866,-8.559913],[142.816452,455.206024,-4.686599],[140.213120,452.003876,0.630837],[147.611618,464.560273,0.365837],[153.195541,470.981049,-7.022606],[152.278671,472.252106,-0.982536],[147.704514,468.323944,8.072373],[144.803635,462.927338,8.348793],[137.400681,452.455353,10.078370],[142.771408,464.325531,14.531426],[142.475205,457.321808,5.130097],[133.758957,441.103485,-0.104660],[136.360825,448.218842,5.893570],[132.361252,442.727326,5.389672],[168.715561,485.782135,-17.712716],[175.530319,495.380341,-17.740715],[182.887314,501.994782,-26.137124],[162.870834,479.824738,-14.310279],[156.047348,473.153778,-10.744316],[156.084885,465.032685,-22.707588],[150.802109,463.420075,-15.274894],[147.169785,461.880341,-7.124336],[140.874924,450.628449,-11.054344],[145.343735,457.739716,-11.718742],[142.877548,447.659027,-25.572288],[147.665939,447.377289,-30.663490],[151.944443,452.740204,-30.903404],[166.097275,455.849457,-46.626305],[169.515366,453.331086,-54.740806],[173.555283,462.123688,-50.611274],[173.422348,464.788422,-46.843788],[178.314072,468.084198,-51.318153],[173.439316,468.937287,-40.139610],[173.225693,475.761689,-33.550941],[169.755539,479.326325,-26.216927],[173.393723,490.599518,-22.335319],[179.465897,498.274811,-23.473777],[167.903977,481.716889,-21.233986],[162.424423,473.561249,-21.176246],[159.461960,471.292328,-19.497505],[156.664047,461.922882,-27.248818],[149.504074,457.312653,-22.709007],[141.740585,452.141571,-15.696388],[163.618820,466.430573,-31.160713],[178.107590,495.765717,-28.192146],[173.290207,465.999665,-44.172981],[168.710800,462.786286,-41.622367],[158.327866,450.486054,-40.712562],[182.458267,472.743622,-50.129081],[132.475327,434.605622,-7.990593],[140.870468,449.522858,-19.030021],[141.202561,445.300385,-25.922157],[155.701584,446.411347,-40.709710],[151.309860,445.265412,-35.152778],[161.696884,450.603424,-46.837867],[164.891403,450.003327,-52.487754],[174.924057,452.518830,-58.934272],[180.430527,447.008820,-66.690574],[186.241806,441.890229,-73.879982],[200.487229,442.224335,-82.864662],[202.210495,445.721588,-82.314567],[210.735672,453.123017,-85.137825],[216.914536,455.494660,-86.076500],[222.689652,455.130646,-88.436988],[214.927750,432.746186,-91.816002],[208.532242,425.856354,-90.952934],[214.748886,412.799591,-99.832344],[208.011704,412.734467,-95.062553],[213.632797,407.811676,-100.050254],[206.704147,408.874909,-94.176368],[197.301682,400.320771,-96.754799],[188.555924,390.698029,-94.841454],[203.955826,402.987580,-98.654655],[197.259903,391.549408,-99.746833],[192.580795,391.529999,-96.534706],[213.745133,424.083344,-94.355827],[219.601273,443.345429,-90.696510],[211.029526,438.726044,-88.185386],[217.331680,449.162934,-88.378486],[207.363693,429.696076,-89.201622],[198.290848,417.168183,-87.421363],[210.086685,418.999237,-92.961129],[206.860031,445.349518,-84.801063],[199.029099,434.805451,-83.417625],[197.985031,427.709931,-84.792244],[190.429978,420.705658,-82.146949],[184.503281,409.031281,-82.562309],[190.987839,398.852448,-92.886940],[200.718918,403.268280,-96.103416],[194.937210,414.975556,-85.619499],[195.808426,403.332123,-92.455208],[190.451004,402.383515,-89.075935],[195.874741,410.287934,-87.714073],[197.275253,408.124970,-89.721962],[195.226883,433.913056,-82.015983],[177.076767,440.798004,-68.128807],[171.571274,436.085663,-68.252998],[177.296799,432.199738,-72.762001],[182.751053,425.053559,-76.842445],[181.711319,418.202484,-77.915641],[193.763443,439.567780,-80.234504],[187.550186,438.588593,-77.509164],[179.073013,436.903290,-73.167976],[186.273331,426.739716,-78.309288],[234.675552,444.713227,-95.261284],[246.440994,446.064667,-98.407005],[239.741409,440.907196,-97.371345],[242.053543,436.033295,-99.557640],[234.570419,433.940033,-97.984672],[224.287735,431.554779,-96.118599],[221.278793,428.138459,-96.243370],[223.282913,437.912567,-92.898780],[173.658859,448.733368,-60.631355],[174.224594,459.341584,-54.697639],[179.673966,467.810456,-54.793907],[184.739578,458.017792,-63.014412],[187.670944,453.716217,-67.435920],[194.428421,446.802338,-77.107414],[207.732468,450.459992,-84.584328],[200.549759,448.007294,-81.006203],[191.292069,442.695771,-76.676078],[188.494522,447.040497,-72.424340],[198.978531,457.536713,-72.491127],[206.599808,458.764984,-76.543022],[206.261368,463.683197,-73.835685],[213.089981,461.163666,-78.904533],[175.760910,456.574189,-57.957145],[160.160751,447.550690,-45.210502],[162.304916,447.601776,-49.530923],[106.738999,373.975800,-5.458625],[105.150681,363.748505,-12.493553],[104.747116,355.789337,-19.515068],[107.013779,364.205109,-18.691581],[108.546860,362.130890,-23.527351],[110.596909,360.007233,-27.833900],[112.725449,372.257599,-26.836433],[108.955063,368.898285,-20.926506],[108.720566,373.437348,-14.497123],[102.322617,370.459931,4.030121],[102.423691,366.244660,-0.949775],[91.442307,366.140778,20.276970],[100.053391,370.728730,10.093140],[87.177414,370.878815,24.483239],[102.116806,360.383942,-7.250023],[101.748398,348.784211,-16.623207],[94.694260,340.444794,-6.086616],[95.696213,340.338105,-8.972816],[98.870957,341.279328,-14.627876],[109.487045,378.948822,-9.634925],[119.054550,398.358063,-17.861442],[122.231674,407.330536,-15.872856],[124.522995,405.537873,-28.829430],[132.739853,379.357025,-48.105888],[138.834152,379.498261,-54.234474],[143.106369,381.230255,-57.457252],[131.957443,391.115448,-42.254036],[142.108872,384.980988,-50.992973],[134.714646,382.718170,-47.816291],[122.768662,402.876679,-26.569755],[121.028732,394.625763,-29.417320],[123.718857,391.450409,-34.191627],[120.714279,389.774323,-31.694131],[126.051376,383.624970,-39.681099],[120.261337,364.866425,-38.786903],[127.544052,360.117951,-47.655769],[136.204575,365.008698,-55.310646],[139.629807,360.085419,-59.718055],[139.716171,364.483551,-60.242836],[142.369187,348.701081,-69.078697],[144.883774,344.908844,-72.744346],[151.846604,348.244599,-79.314567],[155.701035,359.942658,-79.146873],[152.069321,364.704621,-73.958503],[160.624436,372.531708,-81.410026],[166.830979,369.682282,-88.237068],[152.383286,353.105561,-78.360023],[150.501816,359.063690,-74.155510],[146.472153,365.193512,-67.525642],[142.552658,368.575165,-61.222969],[144.761154,373.945587,-62.210502],[141.506760,376.916901,-57.654914],[132.424851,373.200714,-49.042778],[145.645004,360.851288,-68.275902],[153.880661,339.295563,-82.175651],[148.504196,336.194855,-76.705650],[159.191025,332.978241,-85.001381],[158.782333,318.776886,-81.846443],[143.667404,324.402985,-73.155891],[143.431687,316.761322,-73.034782],[171.876511,318.138214,-87.183754],[174.285263,321.319977,-90.561104],[178.976242,322.129547,-97.482200],[176.808090,324.958222,-99.440605],[172.878769,325.973114,-92.929176],[165.325302,333.040680,-90.179298],[178.256821,324.087067,-102.539300],[174.328842,329.709870,-97.676475],[170.409531,338.154694,-96.061683],[171.136521,332.656464,-95.289085],[184.408463,312.783142,-93.035514],[182.785507,309.027314,-87.564430],[176.963181,302.425385,-82.744331],[167.643540,304.421418,-81.232293],[167.632492,290.749909,-86.313301],[173.096970,293.023194,-89.463997],[185.431900,305.238434,-91.944511],[182.352799,299.052704,-87.241219],[180.910965,300.054077,-93.435845],[184.195572,301.830323,-89.863548],[180.106369,298.021118,-95.310478],[184.938889,290.366211,-100.347908],[183.870987,291.560578,-103.614387],[183.264145,302.037842,-86.639137],[185.713211,306.508301,-89.464180],[177.985397,323.346833,-95.818458],[164.676437,324.419831,-86.312492],[164.612656,329.083466,-87.740257],[140.240769,332.069123,-70.455436],[144.103867,328.445038,-74.060936],[150.738693,324.037751,-78.315208],[135.803452,336.552277,-65.701957],[134.745346,325.392609,-65.862938],[130.535324,323.355805,-62.680061],[125.806076,315.294525,-61.272346],[116.583664,322.840668,-48.210121],[132.130051,334.116242,-61.954856],[125.697861,323.713166,-59.067146],[123.373825,332.803803,-53.432075],[122.502609,325.392426,-54.963417],[130.135849,337.177704,-59.166298],[120.959213,407.042939,-10.911995],[111.964523,400.962128,2.218552],[107.345139,404.730805,5.619881],[152.633041,398.394623,-62.442482],[152.273483,400.221955,-59.811561],[154.945358,404.124604,-62.480674],[145.801071,402.032257,-50.273445],[145.156662,397.813874,-49.965828],[150.948898,391.739899,-54.839180],[148.091599,400.957733,-52.801368],[150.305649,403.451508,-55.659402],[150.507309,387.617951,-54.905510],[151.882187,390.258759,-58.179802],[160.913193,405.191193,-70.130685],[163.094772,399.650482,-73.535926],[166.094895,403.437592,-74.833946],[161.264511,389.698273,-74.074546],[157.128281,392.041596,-69.552238],[162.652146,407.186676,-71.282342],[151.104172,391.238495,-63.054893],[154.741135,388.343842,-68.599372],[122.068100,417.348664,-2.989112],[121.478012,420.591156,-0.208458],[127.870529,428.493683,-3.607254],[127.268784,414.637177,-27.359962],[168.208542,442.494355,-60.602241],[178.862229,414.538666,-77.729591],[169.536972,409.065583,-75.044639],[160.556748,409.684723,-66.964698],[165.373886,415.451691,-68.493095],[153.647080,409.849274,-57.526725],[168.919541,414.102082,-72.499366],[156.522446,455.979340,-33.699913],[165.509262,462.174897,-38.058509],[98.066879,441.133454,-15.775077],[93.779465,430.458405,-19.872673],[100.494614,443.665131,-9.104271],[100.282456,447.077240,-17.250129],[137.808518,503.773835,-51.860450],[141.722946,512.793488,-47.718483],[135.840988,504.790375,-45.813453],[136.183823,507.739960,-42.998863],[141.247849,519.109528,-40.621972],[142.534470,517.063324,-45.808937],[156.747910,550.162690,-26.013389],[166.703293,560.581147,-30.179771],[164.532700,556.689972,-34.032555],[175.858933,567.915497,-40.572975],[157.713669,547.914276,-33.564384],[140.475388,502.176483,-57.204673],[147.164047,504.732636,-64.789451],[148.008225,501.009430,-69.979957],[166.794846,502.538727,-89.277641],[168.881699,497.762238,-91.084938],[159.512741,493.958405,-84.876670],[160.500534,491.960297,-86.672859],[168.088303,529.762970,-72.056327],[135.787399,516.867340,-27.084694],[141.641342,527.439057,-27.104210],[146.582810,533.924225,-30.305000],[165.965500,516.744355,-80.043525],[167.844345,511.154633,-85.588798],[173.514938,505.538544,-93.375419],[173.511948,515.162934,-88.370292],[150.219528,469.324250,-89.117027],[156.065720,469.301361,-94.177055],[163.446213,465.190338,-99.144096],[171.598374,466.793610,-103.851418],[162.856003,469.394257,-99.111886],[178.336777,468.592560,-106.164695],[180.921677,474.617585,-107.706673],[202.148117,483.209320,-116.311241],[207.604447,482.858368,-118.043586],[233.194656,489.379669,-122.249794],[241.048996,493.607148,-126.165489],[242.549179,497.263642,-130.504280],[250.768936,506.740692,-135.242820],[184.065415,469.866913,-107.482079],[184.595017,459.222382,-113.748314],[188.682999,453.206391,-117.083915],[196.330002,442.921173,-121.816017],[190.475144,436.962372,-121.748375],[199.275589,452.495148,-119.812461],[215.920975,486.236969,-121.499764],[243.301804,500.301972,-132.078362],[234.526169,499.120270,-129.188713],[218.570633,484.844879,-121.052284],[230.734299,493.060578,-127.189720],[249.074265,500.181610,-132.949836],[251.871994,498.904328,-131.343437],[260.814987,502.163422,-131.192544],[284.027451,516.395417,-133.509850],[280.045059,526.446625,-140.938438],[276.408554,536.925751,-139.016868],[275.590103,525.776764,-140.297355],[274.974106,519.425446,-140.357292],[270.558975,511.740265,-138.368066],[264.720780,505.408234,-134.708031],[275.067154,512.409882,-137.337974],[281.375595,515.280243,-136.545402],[265.310928,511.444733,-138.461632],[261.540787,506.612152,-136.693505],[278.216324,518.491852,-140.029655],[283.337692,537.049469,-140.087028],[285.414475,532.193695,-141.072899],[262.963638,503.585663,-127.938637],[273.758621,509.802399,-134.253838],[278.027847,518.827912,-120.789086],[267.685837,540.663727,-96.829217],[257.582199,536.909577,-89.389061],[266.859329,537.153717,-98.364723],[130.770187,334.869904,-108.563637],[138.485153,326.378022,-111.290229],[132.925278,316.326081,-109.526023],[139.679550,313.179932,-111.873726],[130.009323,321.822357,-108.018028],[125.570053,320.580170,-105.784950],[120.486862,327.875946,-102.138283],[126.001328,335.185089,-104.575234],[125.820541,314.054200,-105.455436],[121.875656,318.937836,-103.398521],[131.038376,311.739014,-108.041100],[131.499863,302.833832,-105.528481],[137.342758,292.630738,-105.220193],[140.299790,282.207489,-101.297523],[133.057968,288.352722,-101.028877],[153.441879,278.565796,-105.829460],[153.471726,282.105042,-108.614296],[149.121628,286.149597,-109.004403],[144.366013,276.532990,-100.808067],[145.720200,278.888214,-102.159141],[124.951157,296.674012,-99.998985],[137.225693,307.651306,-110.059059],[141.901840,296.278138,-108.835334],[149.144516,290.288025,-110.551232],[153.906296,309.281128,-115.632225],[155.638168,318.859711,-116.113960],[149.864975,320.794709,-114.944801],[155.606735,323.310028,-118.065697],[152.310898,299.212860,-113.903145],[159.671555,294.118042,-114.402732],[158.280075,285.426636,-111.820031],[163.687485,283.437470,-111.284599],[159.244675,312.186829,-116.414741],[165.789780,294.268982,-114.403083],[177.845078,293.309021,-109.430184],[180.234512,285.731598,-106.598594],[181.743118,295.639740,-106.475441],[175.988327,275.330567,-94.702934],[177.934006,279.374298,-95.919777],[171.039047,275.367035,-90.427773],[120.028427,488.574311,-24.187400],[195.900681,407.817475,-128.007149],[198.776657,413.048493,-125.846016],[209.834580,407.317475,-124.268441],[207.501969,404.546906,-127.463905],[203.360825,402.682038,-129.452798],[178.295883,498.756745,-19.494026],[189.771683,527.048798,5.851593],[181.698288,524.160004,9.789910],[194.346512,521.893036,-24.224281],[192.475357,519.856171,-22.564003],[191.032669,508.849701,-38.441749],[197.373825,524.450836,-34.825142],[205.601578,531.566132,-38.823875],[215.594437,534.004181,-46.782417],[212.370743,527.161896,-49.845924],[216.421341,524.046601,-58.559669],[204.754227,515.006684,-49.360176],[200.988907,528.074921,-36.637352],[194.919327,519.355927,-36.371452],[195.077835,513.834381,-40.322136],[224.185989,543.635163,-48.807594],[187.853348,512.087738,-23.490364],[195.705185,503.433686,-49.278954],[196.281723,504.988251,-48.043342],[190.639023,498.246491,-50.397469],[187.897019,495.502472,-44.277031],[185.341324,494.690094,-39.912881],[169.780014,472.082917,-33.352302],[186.936295,480.950531,-40.720192],[187.786026,482.067108,-43.367729],[183.662186,483.475922,-48.976158],[183.341232,486.998200,-49.226371],[185.279923,491.962250,-43.880165],[185.759232,489.567353,-42.350624],[185.386398,479.378693,-47.828636],[178.894211,486.539643,-32.113380],[185.460159,487.401642,-51.130378],[199.036057,486.787018,-59.169242],[185.078934,492.576569,-47.766182],[189.498093,477.792939,-56.746208],[192.054398,475.733551,-59.014457],[187.702835,470.936920,-58.709069],[182.507767,473.118073,-53.801719],[184.605148,481.564484,-51.901664],[196.336746,483.328705,-58.468605],[230.248703,505.446625,-73.736320],[229.931168,509.476593,-72.269569],[238.423813,501.103180,-79.073769],[229.848435,502.971894,-75.043633],[232.961166,519.877533,-74.936210],[241.331680,521.664887,-80.538948],[238.460983,517.466095,-78.307914],[244.281113,510.091828,-78.417046],[234.765885,512.593598,-73.939583],[231.244278,515.721161,-73.869102],[222.234879,471.325959,-78.886055],[231.097641,482.447663,-79.007866],[224.812943,489.980805,-74.860069],[231.068802,491.023712,-76.709770],[237.282547,497.621552,-78.527062],[243.107895,486.751557,-82.273429],[251.071854,490.904328,-85.764870],[249.059067,487.503327,-93.594001],[250.245865,481.826996,-88.307319],[228.084610,495.686859,-75.467186],[230.645676,475.152497,-81.505730],[238.881180,471.118378,-87.738273],[250.077957,481.684418,-91.588142],[243.241013,477.589386,-85.480705],[251.169235,494.858795,-87.143928],[240.095535,482.816803,-82.185600],[231.535538,470.082917,-83.802467],[246.965775,479.918671,-96.272575],[245.473404,481.116242,-99.338189],[234.427902,482.958344,-108.012962],[200.622574,473.868988,-65.605598],[206.337723,470.952484,-70.997185],[183.274399,475.486908,-53.288231],[181.048844,440.779999,-70.645866],[208.671890,456.215424,-80.008094],[205.040238,454.148346,-79.882072],[198.548416,451.845978,-75.676689],[234.998001,449.420075,-95.999673],[248.301163,444.918671,-101.151513],[245.504929,448.448212,-102.101860],[242.973526,450.333893,-104.978005],[242.761276,448.165314,-110.116829],[237.075272,454.779816,-99.444176],[225.126419,411.543061,-109.420571],[229.939255,421.557587,-116.879707],[228.178574,429.364167,-120.996482],[223.653366,433.944306,-123.370063],[222.248978,422.769501,-120.640649],[216.136917,425.939728,-123.805366],[214.637222,419.263947,-121.794609],[199.780777,466.822846,-111.936623],[190.945999,470.146576,-108.785759],[190.152268,468.747040,-109.015998],[197.395340,471.480500,-110.043725],[208.408066,461.149445,-117.223350],[185.973740,444.712738,-118.468468],[180.986466,451.849640,-115.093330],[176.306809,455.469269,-112.114357],[172.543076,443.733979,-113.926964],[179.264755,441.585236,-117.063606],[189.477890,418.763031,-123.334969],[154.723862,405.986054,-114.647483],[157.634812,393.193268,-118.388970],[152.128037,393.572480,-115.473014],[156.640488,387.079377,-118.681298],[147.961899,406.369355,-110.373191],[140.572983,404.803070,-105.380668],[148.723007,414.411896,-108.753334],[136.871384,388.947296,-106.757682],[147.131943,395.684418,-112.237832],[143.946030,398.046662,-109.640068],[142.167282,385.984772,-111.070198],[146.790146,383.833222,-114.122474],[159.674423,354.236664,-123.613639],[158.458542,347.762909,-123.236900],[158.582077,342.125641,-123.014610],[157.079880,331.047882,-120.417167],[147.745224,347.276459,-118.259910],[152.393295,353.938568,-120.382927],[150.232468,325.962128,-117.230842],[166.556625,338.199677,-125.214744],[170.574143,343.792633,-97.070823],[176.137009,335.670441,-100.912040],[153.258286,310.553131,-77.958810],[148.086289,316.895539,-75.495903],[171.825363,292.023896,-90.206963],[177.119492,288.482209,-94.176750],[178.179367,296.782013,-93.755714],[170.094040,291.851319,-82.575676],[156.024704,293.487763,-80.262245],[157.867600,302.116852,-79.333824],[166.065476,295.830048,-80.586631],[161.578781,291.918030,-81.383049],[169.790390,293.485840,-81.268333],[161.814072,303.360169,-80.573158],[157.361008,312.783173,-79.775962],[176.370773,293.719391,-85.939415],[178.278305,296.247467,-83.768013],[175.017319,297.582917,-81.144065],[195.496842,387.211274,-100.077171],[201.358170,387.378937,-103.299218],[205.946945,399.959992,-102.493844],[196.312485,371.679840,-108.082283],[186.903916,381.067047,-97.236199],[165.573654,378.869110,-83.601754],[162.535874,378.636811,-80.644539],[156.175827,374.608246,-75.821922],[160.593125,382.414276,-77.154747],[159.419235,366.908234,-81.759651],[159.170456,358.747589,-82.968514],[165.262070,362.678620,-88.749032],[163.663132,347.824189,-91.018715],[163.216904,343.869843,-90.038536],[159.842514,340.659149,-88.115211],[184.009598,405.314301,-83.390816],[180.939377,397.951203,-86.443077],[186.808762,413.763275,-81.473534],[158.465866,344.278595,-85.432640],[159.206833,352.019257,-86.883781],[187.260056,324.705048,-112.174050],[183.375229,322.663971,-107.739373],[171.364609,341.658966,-126.878730],[182.529129,401.624359,-85.022010],[152.164597,372.240937,-72.394127],[140.817734,360.904877,-63.304786],[139.958237,353.323700,-61.002494],[136.073837,340.296723,-64.831428],[140.722336,336.523224,-69.803062],[135.662460,347.351899,-62.621376],[138.642075,352.573944,-64.797066],[141.709274,355.731537,-67.760277],[131.320053,342.371918,-59.162742],[132.011398,346.268341,-57.466575],[138.049362,351.001679,-58.566429],[120.636704,374.993500,-36.559852],[114.172165,376.944916,-27.738609],[118.536057,385.231232,-30.411491],[114.660812,382.962921,-23.726799],[119.004318,391.770722,-26.195458],[166.743149,374.497101,-86.201698],[155.263779,329.498139,-81.534462],[151.725021,326.589142,-78.873237],[144.572556,331.871857,-73.670417],[163.429916,315.185425,-82.834159],[173.447800,306.982178,-83.166725],[179.628677,313.981659,-88.874595],[172.607834,284.700318,-91.629203],[143.368515,265.270600,-77.750419],[143.747055,257.286469,-77.817863],[149.636948,306.979737,-77.590492],[144.856247,298.961548,-76.735878],[113.625290,325.620697,-40.919822],[101.182968,343.959381,-17.513694],[98.290451,326.681671,-14.404809],[94.737595,331.898712,-9.537727],[100.870590,330.631867,-17.453590],[89.416611,325.162262,1.086533],[88.650009,318.722504,-0.069343],[90.098068,298.892182,-6.113311],[90.483200,293.989014,12.125107],[99.814438,295.372773,6.458428],[101.398911,300.370880,5.741654],[102.109970,292.007660,5.284111],[106.059738,288.950898,3.289704],[115.970566,275.959748,-2.313148],[124.145554,279.222657,-1.916580],[88.038376,262.572724,9.271805],[93.602280,256.032044,3.717614],[93.107224,299.031159,-13.403312],[87.668198,267.504883,-1.188659],[83.776108,267.333496,6.432915],[94.107163,268.960572,-11.136238],[93.981674,271.873383,-17.616584],[88.894699,275.095459,-23.889534],[90.724350,269.549134,-28.847480],[91.084885,259.080689,-32.744209],[97.225510,254.745301,-38.720956],[88.344406,272.768799,-19.467643],[86.706955,272.373535,-20.859321],[84.556137,269.497528,-14.702263],[91.257004,278.134949,-26.374200],[94.023972,278.100434,-31.192421],[95.196091,281.027832,-31.819160],[91.622666,277.916657,-24.113762],[94.273789,276.161805,-20.874916],[96.967880,275.253876,-15.706277],[93.912399,280.776917,-22.062095],[96.440170,271.781647,-15.332496],[175.112473,298.037690,-110.913246],[171.009995,304.661103,-112.306648],[165.156113,304.165680,-114.991233],[171.005112,291.721375,-112.869987],[166.715317,287.573731,-113.000297],[183.810288,286.633972,-100.097939],[180.942093,279.986847,-98.268867],[181.295029,280.810608,-102.287362],[176.619187,277.646424,-105.254463],[150.510483,261.540222,-96.566857],[147.806931,254.798859,-97.904427],[154.029526,261.339447,-92.757118],[148.627609,270.846100,-97.913383],[145.273666,263.208588,-100.267738],[149.162888,274.966675,-100.067009],[116.911606,296.673157,-51.605415],[124.411240,294.225983,-60.887153],[130.109482,282.067169,-66.943092],[92.402878,237.997528,-39.746589],[87.177963,240.556549,-35.455772],[87.481308,230.144043,-36.551994],[85.134445,238.278107,-31.936791],[85.639389,244.626526,-31.995125],[97.877365,318.863190,-16.181755],[141.837875,251.243561,-99.252891],[131.115952,249.651520,-97.422325],[125.305893,250.602845,-95.768242],[127.912766,261.609497,-100.487465],[99.493271,276.433045,-88.109001],[91.024277,267.452484,-80.156761],[96.130234,280.413544,-85.976768],[87.896835,268.944428,-77.953849],[87.366928,275.223419,-78.126594],[113.909897,303.318146,-95.101951],[86.008469,267.526703,11.004662],[92.059372,328.183625,-4.390777],[90.657700,348.781403,22.881928],[92.420761,348.350983,24.064659],[91.536484,351.986420,26.179078],[113.605515,295.607331,0.707444],[118.896652,294.082856,0.416100],[104.328476,366.041535,45.471535],[84.438706,383.055878,45.651215],[75.544357,415.995453,28.817315],[76.365952,412.156525,29.823311],[70.736801,404.732025,30.727738],[70.051132,410.362824,25.003037],[72.784775,412.952179,27.526192],[65.669602,468.806427,9.161400],[53.447861,464.489533,13.876793],[34.308579,460.432099,8.118813],[33.872910,457.435639,4.406716],[50.839584,431.972321,2.062737],[50.439255,438.020905,7.463669],[49.852951,440.807221,6.861885],[34.997666,417.080170,8.068543],[37.168015,424.912384,9.426896],[70.541245,400.194184,32.036110],[112.192612,380.181732,-17.845512],[173.816147,330.169342,-122.299705],[83.869248,323.286957,-70.021904],[81.423996,276.618378,-72.874336],[82.570175,287.906647,-74.039375],[172.144516,419.384919,-72.275673],[173.605515,425.948761,-71.367897],[168.614853,422.738861,-67.914208],[167.779221,425.033783,-54.807380],[165.832199,433.333222,-48.121818],[168.817429,435.963959,-50.301414],[164.761093,428.261505,-49.639610],[160.195847,427.143158,-48.150673],[127.396225,408.470307,-31.336662],[140.805100,381.454132,-53.262306],[136.668869,385.045380,-48.351188],[153.194687,442.041718,-103.113091],[146.218674,447.809723,-95.432823],[226.541489,462.025177,-87.973259],[235.343247,465.720307,-90.150795],[229.691635,462.594879,-93.251137],[212.722458,469.130219,-109.040459],[248.375168,504.145233,-94.977745],[282.505753,556.635285,-99.428078],[299.635086,570.357575,-108.242439],[300.856156,576.813080,-104.794198],[304.583664,580.973725,-105.862297],[293.736832,586.566010,-92.727516],[293.450516,563.688446,-133.608025],[273.348618,566.625458,-127.184609],[268.595719,565.847504,-127.024789],[267.508957,561.279206,-127.037468],[261.173569,563.625763,-126.081993],[261.420334,558.733673,-125.648780],[289.627518,557.248505,-136.154991],[313.958847,551.504975,-133.454063],[304.673050,552.575104,-137.111809],[297.889786,552.419892,-138.516899],[301.146103,558.134369,-136.191520],[294.704178,536.242585,-140.388603],[299.898239,543.839386,-139.382499],[308.524613,546.996552,-136.636039],[314.518143,547.042145,-133.177178],[262.891281,536.324005,-135.535210],[268.005905,573.026764,-126.084847],[279.049240,578.888275,-127.528251],[274.357773,578.789337,-126.592750],[262.459763,572.732209,-124.122445],[271.785019,581.776398,-125.090676],[273.084335,591.715851,-122.363091],[272.922470,572.990509,-127.208397],[284.862076,596.719452,-125.570625],[285.091843,608.227387,-120.373345],[300.738114,624.252961,-118.740776],[291.316544,623.066864,-116.647911],[313.758316,627.474701,-123.333366],[320.002701,634.611420,-121.813438],[314.746262,624.047882,-125.635810],[303.106918,616.636689,-124.416801],[285.737625,605.467560,-122.509834],[295.428330,614.326447,-122.105217],[291.400131,616.541169,-117.936424],[306.129196,621.867218,-123.001243],[310.138504,629.958954,-120.286003],[324.189194,629.650666,-126.404168],[333.854080,634.539460,-126.741874],[316.652268,616.911957,-127.842765],[326.488083,622.737885,-129.786354],[327.938309,627.298859,-128.663490],[327.882889,615.780548,-131.630638],[308.454147,604.573334,-130.089562],[295.871719,598.333039,-128.513664],[285.004532,590.834137,-127.312478],[330.628769,612.722870,-130.649757],[319.918778,608.493134,-131.486122],[318.605057,610.991547,-130.714272],[306.047043,612.802216,-126.590355],[294.667862,603.681732,-126.705376],[251.503708,491.950470,-91.556007],[241.937485,545.997895,-72.015298],[238.267502,547.659882,-66.057304],[236.851883,553.984894,-56.000023],[230.797470,550.322296,-51.524864],[209.096176,550.235565,-19.010491],[207.890030,557.167939,-11.742775],[211.397934,562.864777,-6.637046],[210.432053,537.540192,-35.395837],[200.796707,529.162934,-27.172753],[211.347275,541.590424,-31.755958],[208.628128,542.471649,-27.348167],[202.326828,541.716156,-17.373359],[197.759262,539.236359,-13.064918],[194.668533,536.375275,-8.233909],[194.182968,536.572663,-0.816124],[198.390976,532.229279,-8.752372],[196.298294,533.028839,-14.798195],[238.567062,558.178315,-54.707801],[233.720017,559.475006,-48.291359],[240.677658,567.026520,-51.016670],[242.262039,571.740265,-48.349876],[238.952896,572.467133,-41.618644],[255.304611,567.761383,-66.373100],[244.471176,556.553376,-64.295036],[257.322586,581.865876,-58.917488],[251.117600,581.824860,-48.871864],[254.106278,585.031891,-50.022499],[226.906418,563.791596,-32.063102],[233.289169,564.319184,-41.164941],[230.520889,572.183075,-28.953880],[226.292160,566.593842,-28.527122],[228.898361,604.407868,-9.824867],[225.493515,605.229218,-11.140220],[239.534470,618.335175,-15.808098],[247.283524,626.445099,-19.005485],[208.738968,591.293366,-7.681434],[184.236527,572.804657,-7.779426],[178.328415,571.958283,-16.038551],[173.265305,562.034272,-2.332183],[183.835739,569.418610,-2.721801],[190.306625,571.964936,-0.983627],[179.523056,562.903290,1.550881],[190.590134,577.260712,-7.501610],[197.602951,586.378144,-12.783821],[207.454575,593.566986,-11.263786],[210.697617,600.048676,-17.248680],[199.460037,592.155732,-20.721824],[209.012344,602.426972,-25.829399],[204.352341,594.843720,-17.451271],[196.421280,587.622101,-16.895196],[194.794998,578.693268,-5.082809],[169.560532,564.860504,-23.703865],[163.547470,559.523774,-15.271980],[164.459885,559.780793,-11.154809],[155.444260,550.435944,-19.080345],[159.211960,555.061188,-17.282707],[264.246811,575.068451,-70.889076],[268.993790,574.029084,-78.748680],[265.522781,568.393097,-79.613182],[265.671036,570.539582,-77.317894],[275.278610,570.305146,-85.446861],[271.281448,578.083588,-76.627845],[277.568222,580.557404,-81.099862],[275.227860,582.805573,-77.428428],[275.922135,589.626190,-71.952416],[291.022263,599.893402,-78.552513],[297.381516,602.687531,-83.917198],[299.733444,604.886261,-84.472221],[275.314530,600.025788,-64.195823],[270.718216,596.907807,-62.131417],[267.318192,594.752838,-54.272560],[259.076645,586.506684,-57.746986],[263.972031,591.776337,-58.484048],[256.868729,587.299225,-48.987159],[271.655136,598.631317,-56.489128],[271.486771,602.624909,-53.625084],[262.715988,591.476593,-52.300224],[267.578537,591.482270,-62.609245],[274.123551,593.723053,-66.677391],[278.586777,596.260651,-68.881660],[284.646835,597.457489,-73.768867],[267.481491,586.455597,-65.771659],[290.764481,605.229950,-74.041955],[281.937454,590.122895,-78.271721],[290.219986,593.859101,-84.993950],[297.893906,590.613800,-94.055047],[300.970780,595.186676,-94.730674],[282.540329,580.222016,-85.976661],[286.188004,576.509247,-91.556923],[288.672989,589.474396,-86.936302],[275.508041,576.526764,-82.592125],[283.988541,585.499909,-84.759407],[281.733109,610.457794,-57.557335],[285.974930,609.763398,-66.288536],[289.261368,615.371430,-62.726982],[278.174118,614.386322,-49.764534],[282.337387,614.352326,-55.325829],[287.417252,616.712616,-57.861976],[293.216110,619.653107,-61.301323],[294.680161,618.637299,-67.386711],[291.876022,614.915009,-68.137489],[294.521591,572.596466,-101.379631],[287.842972,566.781647,-98.479225],[296.356949,565.295502,-107.433815],[254.477677,602.466400,-33.270790],[262.370010,646.708527,-29.500007],[272.527634,657.306977,-35.230857],[304.754013,688.001374,-60.189521],[317.979111,698.045563,-62.834190],[318.056748,698.214936,-66.370964],[330.902969,707.358979,-63.261192],[327.617966,705.234711,-68.239159],[344.300400,715.122040,-82.713249],[344.299881,713.305451,-86.824151],[353.630386,719.566010,-88.382149],[317.701553,697.408417,-72.079841],[326.775864,704.349823,-71.983909],[330.705277,706.547516,-76.538414],[340.165146,713.894013,-73.852227],[339.336838,713.176361,-66.979087],[328.144333,703.660736,-54.767494],[326.207321,703.176361,-57.972329],[322.984543,698.625702,-50.161369],[314.100540,692.920380,-50.023399],[318.633530,698.136078,-59.246727],[308.917038,690.761261,-56.992439],[302.439346,684.157563,-47.810752],[346.663742,718.043000,-70.720512],[355.100784,723.233124,-78.963462],[355.757431,723.846283,-75.692421],[367.914108,731.234284,-80.928123],[361.662552,726.868012,-83.404427],[348.031235,718.290436,-80.714241],[360.371597,725.305085,-86.300514],[375.926437,734.324555,-89.394340],[376.918381,733.742035,-91.783317],[390.736069,741.480316,-92.901970],[401.306656,747.505951,-92.677528],[403.678513,749.976532,-89.474800],[401.798752,749.832978,-86.541832],[407.346451,752.686676,-83.108452],[390.775559,743.082245,-89.201927],[377.675034,736.399079,-86.410804],[367.773697,726.676239,-93.488197],[367.994339,723.390839,-97.178688],[351.162430,711.173004,-96.078025],[361.483811,715.858490,-99.184623],[357.170426,708.050507,-102.476646],[319.272324,697.608246,-76.319297],[308.442795,688.612885,-74.859275],[323.376114,699.247406,-80.735572],[315.084152,688.547943,-84.869773],[309.019180,673.236603,-94.690620],[325.401779,697.270050,-86.603538],[324.633682,693.974091,-89.619636],[315.209458,678.424347,-95.366752],[321.857895,682.369599,-97.953910],[316.252335,668.934784,-102.254066],[331.175552,703.712433,-84.804466],[331.110947,705.843232,-80.388206],[327.651749,684.884796,-100.515435],[247.157120,624.452118,-78.358925],[246.915512,620.826142,-82.138832],[239.468155,616.453888,-77.531396],[231.190628,605.062104,-79.368599],[309.351029,659.531281,-45.038124],[315.961319,655.544831,-53.541648],[324.253616,671.567658,-50.569099],[322.546402,663.029633,-54.103584],[329.471329,660.884430,-61.749961],[332.411118,658.242829,-68.593711],[345.006302,662.940949,-75.271324],[339.273392,659.024079,-74.533622],[341.520981,663.725312,-71.083564],[359.425522,679.001374,-72.494407],[355.041550,682.352143,-65.203744],[335.863236,699.414093,-46.821191],[338.442520,687.958954,-49.571251],[330.793137,680.996735,-48.238518],[330.430954,685.053681,-46.700401],[322.606186,675.382965,-45.405433],[337.478684,683.828583,-52.912605],[295.944229,675.004364,-77.878379],[310.903427,692.680695,-67.767708],[306.838822,688.563141,-71.297294],[298.730820,659.769135,-97.053901],[295.589066,646.895294,-103.892311],[308.916885,656.692963,-106.284294],[314.894272,658.629303,-109.458061],[279.728897,617.453095,-47.961816],[275.138016,622.180146,-38.842231],[319.569748,619.206452,-94.444908],[322.188217,614.146210,-99.074501],[325.831406,605.427887,-106.462791],[313.365311,614.310273,-93.421089],[309.003800,610.617340,-92.438592],[296.137955,597.567475,-89.335746],[306.896622,608.479889,-86.595390],[304.100388,607.126557,-87.547753],[305.024094,606.674225,-91.750129],[301.827011,607.532135,-82.168098],[215.492203,591.565094,-74.174126],[212.421738,594.496918,-66.991142],[222.171768,586.716950,-85.173881],[222.204941,590.859345,-79.759025],[220.827286,591.534333,-77.807212],[204.786545,585.050690,-67.544320],[244.940628,616.835480,-83.836021],[169.619125,564.134980,-28.795723],[202.011307,551.223908,-9.625740],[205.894394,549.803253,-15.073967],[196.941757,545.149140,-2.946273],[187.959305,539.747589,3.564598],[188.671097,536.981354,3.318268],[187.381088,534.727448,9.647271],[179.492142,535.797333,12.122948],[194.862991,534.281159,6.800721],[197.883041,535.651825,3.960938],[193.614212,536.247040,4.173348],[200.705063,534.160126,2.325325],[198.685074,530.799591,3.508011],[193.529862,532.121979,7.362755],[192.867020,540.232331,-1.771232],[192.022354,538.188752,-1.141098],[194.165909,540.382538,-7.201408],[184.814407,536.542511,7.054070],[184.195114,539.853119,6.434807],[177.125534,537.841767,11.034493],[181.235428,543.761322,7.492081],[189.277817,557.007294,4.912011],[189.249771,559.954010,5.005074],[192.259995,567.343232,2.227608],[198.746201,551.052277,-0.774017],[207.036606,555.991608,-6.937553],[199.422165,547.402802,-9.089119],[190.655502,552.236908,3.175194],[193.678482,551.066132,0.672951],[200.448837,564.836151,-0.878868],[194.417038,546.982880,0.836319],[204.248520,554.813996,-4.008880],[201.022965,550.028168,-4.988800],[197.094895,535.528961,-15.259422],[203.554031,538.321198,-23.922935],[224.239639,575.786896,-13.437950],[199.765579,570.886811,1.178215],[195.045761,564.748688,2.780587],[175.860397,554.592682,6.166184],[181.343552,558.336762,5.368622],[169.952377,548.030548,8.157814],[162.939255,547.643647,5.829522],[158.071030,542.325104,7.191109],[163.467453,514.198151,15.923859],[160.202377,505.530793,15.148026],[156.643295,506.841950,17.483429],[155.705307,509.954377,18.528443],[138.645126,499.300324,17.479393],[153.940903,494.238373,20.378022],[143.979477,472.910981,18.372254],[155.628342,493.814545,18.362008],[155.495590,487.260895,11.516587],[151.677353,480.051972,14.223000],[149.306687,479.538117,16.655854],[145.586838,535.435334,-1.950653],[149.277268,542.036408,-4.740402],[143.796127,534.526398,-8.021202],[140.772019,530.421418,-12.714332],[136.619858,522.464936,-7.312432],[132.451706,515.583161,-10.056053],[212.310928,561.812226,-9.245521],[213.229324,563.466706,-13.091836],[182.742020,506.569611,-10.166955],[173.925339,496.558075,-10.215599],[178.643051,504.301117,-6.183838],[153.560898,513.891938,17.635605],[149.242966,486.454560,18.969399],[153.349472,486.138153,16.839028],[166.070419,500.122040,5.827797],[171.935349,498.652253,-3.897316],[159.720017,485.098664,-0.149711],[161.601425,494.306610,6.801621],[185.807541,572.289887,-54.800773],[192.632034,581.450653,-53.300087],[201.840012,572.898407,-71.930809],[203.337631,571.239594,-76.485527],[210.154526,572.815338,-84.140159],[196.685837,568.213349,-70.530723],[200.443558,577.182221,-69.907783],[210.384323,581.669342,-74.529884],[212.818588,580.825898,-78.711097],[212.366348,576.737030,-82.870216],[199.497604,562.922516,-80.242897],[208.931809,564.582733,-89.179879],[209.002335,559.647675,-92.791816],[228.285446,563.112397,-107.783744],[231.545487,572.141693,-104.021324],[231.926712,557.290436,-113.123191],[238.981644,565.058503,-114.527458],[241.076950,557.866669,-118.478905],[231.666000,562.639923,-110.737007],[222.254410,540.524933,-113.611381],[224.836472,538.634491,-115.958458],[245.535111,569.862702,-116.578041],[250.443955,578.388153,-115.949730],[241.205307,573.020111,-112.474296],[247.507675,579.348419,-113.352105],[258.335098,587.373261,-116.354378],[246.405930,585.874420,-108.193824],[235.549362,589.290253,-98.051933],[235.327744,593.578888,-94.459907],[232.858261,595.570160,-89.860435],[218.730911,581.079743,-86.498588],[243.779282,604.178742,-94.185646],[249.516953,586.462677,-109.994407],[242.939987,582.090546,-107.475640],[237.279190,585.644745,-102.300254],[231.750137,577.475922,-102.547264],[237.992600,578.017914,-105.831352],[200.817581,553.618317,-88.735633],[216.852738,525.791046,-113.814262],[177.857773,478.154267,-105.957496],[169.993271,479.885834,-100.894096],[157.829453,477.639862,-92.613334],[185.292160,505.049225,-100.538292],[273.394272,599.053437,-119.231071],[262.942520,596.879792,-113.222588],[266.509934,601.470856,-113.110131],[279.798569,608.738068,-116.628639],[276.731888,608.285248,-115.231866],[266.546951,605.018219,-112.554893],[269.638657,613.078949,-109.654000],[239.935654,531.792145,-126.574485],[243.648483,524.936554,-130.219963],[250.030991,520.921601,-133.702873],[245.917862,514.761261,-132.905601],[255.931809,515.181549,-136.404777],[256.312180,509.655854,-136.945153],[255.236282,527.889374,-134.451103],[257.641892,524.308930,-135.792168],[235.791580,512.643402,-128.855995],[237.512802,507.550385,-130.096993],[250.030106,510.672089,-134.991539],[226.186600,493.395356,-126.135658],[231.501846,491.805207,-126.182380],[247.158554,531.272675,-130.355674],[286.607681,570.341523,-128.096885],[292.050369,574.067108,-127.154289],[275.138168,564.323395,-128.373832],[282.606186,562.176239,-132.306785],[289.111252,565.845917,-131.667260],[295.126175,572.349945,-127.762520],[283.771500,570.694123,-127.561410],[347.911331,623.802094,-128.305076],[343.368668,630.458832,-130.306663],[348.841416,632.287812,-128.969215],[354.006455,625.139984,-125.126916],[348.684586,617.770050,-123.275642],[355.159927,630.203034,-126.176887],[358.367600,635.613983,-123.306617],[359.052200,629.953644,-121.688835],[347.376755,628.803131,-129.595497],[352.766708,636.356537,-104.406593],[343.919571,627.319001,-104.364753],[339.746170,622.347077,-105.232368],[349.223038,628.095246,-107.810982],[348.596390,631.595734,-103.979622],[329.167954,598.650360,-124.890968],[340.615433,609.533722,-124.398231],[338.208603,606.517853,-120.694008],[345.938400,615.904145,-115.565316],[334.717392,602.922699,-123.276832],[330.642807,598.468293,-119.040078],[415.537796,709.498383,-90.261833],[413.445297,711.333527,-86.192039],[420.280045,714.398224,-88.844628],[409.084610,712.003083,-82.259895],[411.839737,715.442108,-81.601310],[413.376511,723.713410,-76.083107],[405.860458,721.490815,-73.134010],[406.647324,717.467804,-76.507835],[429.410599,739.176239,-76.028938],[435.886536,746.020539,-75.806343],[431.143051,752.616303,-70.853645],[422.763931,744.799347,-70.748086],[445.528305,768.356537,-89.256904],[452.305283,769.296723,-91.961602],[457.281983,767.600800,-95.106239],[461.591461,765.013642,-93.686866],[458.437607,764.120148,-98.228202],[461.954147,758.652497,-98.432533],[440.417679,766.717072,-89.706916],[425.677231,759.605133,-93.151603],[411.577927,743.809235,-104.238502],[409.733353,739.776886,-106.365365],[400.157486,730.412018,-108.184731],[392.665573,739.743683,-97.187706],[381.598038,733.971283,-95.915718],[408.146073,749.254486,-96.193046],[398.384873,740.405426,-100.383598],[389.945419,734.288605,-101.107171],[378.383865,729.168549,-98.798347],[380.402329,724.780976,-103.318108],[401.962448,738.233979,-104.147210],[391.644547,731.690399,-103.963859],[393.894455,729.827484,-106.168556],[432.670151,716.475617,-109.636665],[431.951401,722.163666,-111.258155],[448.933945,731.389374,-103.032142],[442.654572,731.632050,-108.535331],[450.948441,744.949005,-105.870049],[449.691666,753.921295,-104.693809],[446.854035,737.217255,-107.358650],[451.590607,739.057953,-104.844201],[456.327301,741.354950,-101.716850],[455.329010,746.770783,-104.071404],[446.327240,730.287262,-105.950859],[368.522843,706.308075,-109.438758],[368.532089,711.969818,-106.241539],[374.238022,708.240631,-110.559350],[386.891556,716.881073,-110.425973],[316.578537,672.348908,-101.505730],[317.197983,693.519867,-80.991661],[312.225937,682.806061,-88.044441],[305.630478,683.880036,-78.611168],[336.964981,645.443634,-121.151848],[368.581406,659.740631,-115.305458],[376.485428,664.062775,-113.027946],[379.395310,668.688446,-97.848838],[379.042465,670.459565,-94.846855],[373.038223,663.822235,-96.720344],[391.190964,677.616791,-100.702202],[382.091171,670.740692,-114.527427],[378.433609,670.621552,-116.541862],[386.537949,671.410431,-109.547432],[380.601853,667.088837,-104.514016],[367.342239,653.905182,-108.805839],[374.530655,660.658112,-108.238732],[369.482926,657.979462,-113.094551],[374.312790,660.714264,-110.674751],[370.191269,658.336274,-102.045052],[386.479477,688.013764,-88.737754],[372.311661,726.504059,-58.270012],[363.434616,725.608734,-60.623848],[373.244705,668.877411,-117.880378],[433.568649,731.111298,-110.659493],[439.966477,728.241852,-107.714576],[432.976120,736.303620,-109.957055],[444.712952,743.897675,-107.464440],[452.349808,759.392914,-102.570579],[443.192566,758.089081,-103.504143],[430.325821,741.121735,-108.873497],[441.556275,753.325836,-105.465629],[455.900879,738.738800,-92.002006],[461.790177,747.238861,-92.363319],[463.820999,752.344635,-93.937905],[460.928696,746.792572,-97.489936],[464.098206,753.062897,-88.268898],[464.986954,758.956147,-90.390663],[463.924912,761.235565,-93.144157],[463.321243,755.807648,-84.177925],[463.178589,754.853485,-97.867286],[442.154282,736.132477,-109.032631],[440.560440,747.314118,-107.150932],[400.511917,734.475739,-64.213951],[400.484085,740.878693,-63.900566],[401.773483,731.076447,-67.043312],[422.032761,734.034699,-75.044288],[428.288620,734.428315,-78.286384],[407.326859,726.645111,-71.268150],[429.970993,744.760285,-107.836097],[419.022202,722.156586,-111.487648],[441.104828,724.843476,-107.448647],[437.264710,726.909699,-108.362404],[443.950440,726.000031,-104.945382],[411.449143,694.964081,-104.853996],[403.382492,691.338349,-96.012413],[415.030441,699.056671,-99.750282],[380.239426,736.585358,-67.430015],[376.332016,733.296906,-63.829155],[450.741348,743.588532,-83.887748],[455.884857,746.641327,-84.412223],[460.082184,758.802216,-80.047813],[406.689957,749.564057,-69.949516],[370.887253,690.049225,-71.744087],[305.273483,687.100922,-51.640220],[321.476151,680.767609,-43.186745],[339.407303,654.915131,-79.263221],[323.766434,643.199005,-76.418495],[322.479477,638.260712,-78.147285],[331.653183,643.657013,-80.920372],[340.568985,643.295197,-86.300605],[322.658798,645.687897,-72.104591],[312.017929,612.693878,-88.686485],[356.026444,675.814240,-71.852714],[348.608505,677.423310,-63.810707],[289.560806,609.327729,-69.507301],[277.497696,603.179169,-62.424507],[301.258652,567.079377,-109.823219],[301.649887,571.164887,-110.537727],[298.665634,559.862946,-108.479638],[308.662796,549.619965,-118.107414],[302.511521,542.864960,-118.749778],[302.402664,556.297394,-111.139671],[303.437851,551.544586,-113.947075],[253.148300,528.231110,-90.803413],[249.227707,524.121247,-88.744239],[245.617661,527.051544,-82.896355],[250.947159,534.410614,-84.375496],[244.571335,553.684479,-66.832832],[307.072159,654.688813,-46.357902],[297.430252,652.547516,-37.855796],[342.446976,710.858063,-53.450935],[417.976029,700.843415,-108.852348],[191.400009,510.836457,-102.583442],[177.372116,501.942169,-95.545066],[185.008713,507.283844,-99.205223],[214.315292,584.631562,-76.270759],[221.944779,596.819916,-76.518379],[209.613876,585.645661,-72.839210],[156.545883,543.549286,-37.825920],[156.190842,496.750702,-82.120339],[173.336044,478.423065,-103.418174],[172.781967,471.788849,-104.541710],[113.867722,461.892914,10.473862],[117.041977,471.544037,10.073708],[147.232224,480.960175,18.360367],[246.610031,573.831391,-53.023140],[188.640823,545.044281,3.239212],[183.343369,505.766632,-23.204322],[182.033676,503.738434,-17.507469],[206.130966,534.763153,-30.296989],[203.562241,517.516938,-46.299675],[204.717880,526.529267,-42.051400],[202.430527,509.884186,-55.519295],[217.936508,549.968170,-33.570533],[218.136459,547.065522,-36.056572],[225.324112,552.492524,-42.673485],[252.201492,487.501190,-88.798317],[-0.066849,328.982392,8.140091],[-68.713943,484.680085,60.383034],[-66.652908,487.113129,61.012139],[-68.611160,485.058564,68.504673],[-63.097305,476.753937,61.444283],[-63.390152,476.316071,64.316933],[-68.331436,483.200836,62.728245],[-69.309646,489.674530,70.341259],[-68.985000,492.603302,74.884140],[-61.745804,500.220124,103.218974],[-63.491714,504.839325,108.388174],[-61.999649,503.308136,104.387041],[-59.133133,494.665436,103.492726],[-39.007767,496.921295,124.609029],[-39.805130,493.168793,125.386944],[-34.913101,491.331391,125.722958],[-26.673416,493.679779,125.687953],[-31.613357,486.232392,124.356352],[-38.544754,485.191681,121.990021],[-30.936417,488.046662,126.750869],[-25.439712,478.166413,120.457135],[-23.049637,473.907074,121.386609],[-26.825943,473.036469,113.867117],[-26.005386,481.307343,114.053193],[-24.020401,475.939911,114.449816],[-32.032730,483.017121,113.767784],[-31.852127,486.169953,114.811880],[-34.984939,479.843415,111.086873],[-33.323868,476.955841,114.615977],[-25.710159,485.536225,115.779889],[-26.962051,486.896454,113.853676],[-27.424881,490.274445,118.818888],[-31.808487,475.797943,114.812502],[-30.641556,479.166779,115.192198],[-38.076126,472.033478,111.603228],[-36.713577,467.609650,111.792910],[-34.088089,464.130951,115.471525],[-30.032181,466.369843,118.599098],[-30.674271,463.344391,119.936139],[-28.098648,471.518708,122.373208],[-26.340469,468.347016,124.729995],[-19.453201,469.125214,129.053783],[-21.200577,472.223969,126.083650],[-29.266861,471.299591,118.718484],[-25.462295,466.252961,128.602003],[-31.006363,462.199616,115.719848],[-50.656937,467.706269,89.168713],[-58.417862,467.748566,95.259938],[-48.782425,461.079254,83.048317],[-48.756668,466.311554,85.472573],[-46.273575,471.907074,87.091767],[-44.777725,457.370636,82.597783],[-50.029556,452.330658,82.483677],[-35.395767,478.278595,104.079844],[-32.030167,470.825287,105.628149],[-36.593643,482.352326,119.501876],[-36.104629,481.137116,113.021228],[-51.295486,479.739594,118.490535],[-45.308060,488.570099,123.844096],[-48.502273,484.922699,121.792934],[-45.814957,480.918183,120.311183],[-52.391128,478.411286,114.497741],[-52.475418,483.803131,119.546068],[-50.085647,486.629059,121.154521],[-56.669754,491.594086,105.134896],[-66.490372,498.401642,104.995716],[-68.761917,491.391571,99.592484],[-63.376114,489.007721,99.781926],[-63.198929,493.339630,102.272272],[-35.042251,472.873444,106.947469],[-36.972366,435.893830,93.211747],[-37.916397,433.539826,91.040541],[-32.728165,429.428131,90.130778],[-27.545608,428.342621,90.841830],[-26.624222,416.753876,88.724396],[-21.984939,416.578461,88.966607],[-19.381729,414.857025,89.282177],[-20.202896,410.860504,87.643254],[-21.889480,410.342926,91.109229],[-23.440506,409.289399,89.293034],[-27.364273,408.688752,89.673422],[-26.228470,412.848358,89.695277],[-32.458084,407.216706,88.984101],[-34.509842,410.762299,89.850394],[-31.886368,419.778229,88.139264],[-37.446609,424.817841,86.581581],[-71.068069,413.048249,69.141590],[-67.176224,407.667084,75.485093],[-70.295486,407.835907,72.641476],[-71.499832,400.585236,69.441185],[-73.447708,404.222870,62.969056],[-71.724502,408.522919,67.093720],[-46.419266,436.622711,82.429821],[-45.792435,430.541718,79.728287],[-42.754471,429.782990,87.819744],[-44.169021,426.650971,84.261803],[-38.805984,398.279877,65.607117],[-40.727859,388.912751,55.334801],[-38.954910,393.381378,65.976376],[-34.681167,398.011811,77.685685],[-33.068008,396.359955,78.911103],[-49.740494,386.722443,78.512852],[-45.318680,385.001252,68.582631],[-16.400467,386.023285,128.229424],[0.055954,323.922333,171.403874],[0.088913,315.678711,175.997990],[-9.614456,318.583283,175.081112],[-19.089554,316.117829,176.697285],[14.793625,329.902314,168.220131],[15.350266,320.251618,171.437016],[17.064682,319.744660,171.995514],[-4.905899,326.547150,170.500389],[-13.027237,332.363678,167.382645],[37.501145,275.779785,192.222542],[35.953049,271.070862,194.452095],[16.892746,285.698304,187.895691],[10.295517,422.103607,141.163788],[18.433579,476.661835,163.155133],[13.697128,413.627472,142.284518],[-7.776443,451.995575,143.747988],[46.884140,502.045563,163.742386],[-28.551041,397.425934,83.223240],[-35.299454,392.535004,99.450533],[-47.879654,451.641083,82.128193],[-24.327347,489.780182,119.598170],[-25.240372,491.843964,121.963228],[-22.510818,494.237397,123.180221],[-29.230606,501.548249,125.478513],[-35.086441,497.454987,126.328541],[-44.148636,493.213349,120.080314],[-33.631241,529.238007,71.227814],[-32.354935,525.327729,63.478508],[-29.412369,522.191010,44.750313],[-27.944046,527.012909,43.531083],[-26.369949,523.898957,36.559777],[-18.724258,518.875702,24.971314],[-36.080398,528.320771,83.489037],[-17.922867,513.192902,21.813691],[26.370712,530.883698,13.196801],[-31.036026,547.001557,95.527745],[-18.091141,551.439911,66.922745],[-3.067093,554.597870,45.977677],[-8.214981,554.942169,57.149269],[11.051010,558.886078,44.492516],[19.369187,558.736237,46.403504],[20.084152,565.240204,55.515534],[29.343735,561.575836,54.801407],[45.032333,550.198761,40.381249],[48.512924,552.871003,45.296204],[46.442246,556.357941,50.969872],[38.525131,549.489777,34.109894],[44.047348,553.418061,45.099427],[37.338486,557.774201,51.474625],[40.017685,555.519745,47.289551],[35.129379,553.515534,40.138947],[-44.085525,443.372284,14.054169],[49.948410,556.362702,54.834549],[35.056687,580.330109,95.230595],[35.844406,561.519074,116.051749],[-8.924271,521.787506,134.569570],[-12.495438,533.695343,126.499371],[-13.979751,494.325348,139.080811],[-17.001968,491.576569,135.029476],[-22.574661,482.850495,123.884680],[-21.513870,478.179230,125.861215],[-16.275528,500.785614,132.791388],[-20.927261,490.932038,127.633010],[-22.833389,499.556977,125.289633],[-20.636734,501.987152,125.410082],[202.298508,376.891815,70.110772],[169.578842,328.389862,22.461029],[179.919510,330.889191,17.301468],[185.324021,329.546051,17.964676],[176.238327,333.451447,18.657280],[106.046005,88.059723,42.256318],[113.643906,114.462342,65.357418],[115.068710,108.143463,62.814721],[105.800949,144.522309,89.003674],[-72.787308,158.903748,58.625134],[-70.210098,150.268097,58.106072],[-76.232315,149.591004,66.613690],[-75.803360,144.204285,67.686131],[-77.801712,148.316132,77.927121],[-77.471451,142.597870,82.243016],[-77.996780,154.792481,86.400006],[-78.997146,156.450531,80.316903],[-77.312820,137.612366,78.587609],[-61.606277,135.362915,61.607418],[-65.661941,136.232819,57.913315],[-57.102615,135.952423,56.864792],[-57.031814,137.597321,54.259331],[-106.190384,100.153260,58.248284],[-102.848709,104.463379,64.843106],[-97.631790,101.704956,63.375000],[-96.065933,107.489014,70.473702],[-91.309646,106.307404,68.547184],[-88.762710,111.989563,75.102852],[-106.563003,102.956909,62.574074],[-103.560989,106.429413,67.774735],[-108.700333,89.642487,48.866837],[-86.764236,105.753632,64.198239],[-84.018753,107.986634,63.100205],[-113.107315,89.803345,65.939221],[-114.586685,88.715576,67.562069],[-86.449173,139.908203,123.809512],[-84.147537,154.438965,124.146421],[-90.660721,149.430390,116.459306],[-89.427261,137.999543,101.659842],[-74.474258,192.806214,143.920603],[-59.666763,181.921936,156.862290],[-80.104690,99.921570,163.690789],[-69.919083,104.532257,171.267739],[-88.562271,123.222290,141.101879],[-49.588638,155.984131,177.669186],[-42.518814,162.435639,188.220299],[-50.263138,170.483704,176.966088],[-52.484634,163.044495,174.133422],[-82.303238,172.602509,153.283306],[-79.411758,191.571808,166.837002],[-70.263382,199.181824,172.452034],[-78.373489,193.765320,170.032463],[-73.368667,189.070710,174.592507],[-75.481460,194.738221,171.710320],[-68.724869,188.318940,178.199204],[-60.661148,217.444733,173.649109],[-71.666824,203.868927,171.966679],[-66.733597,207.371094,173.087510],[-78.366714,199.093537,170.224327],[-69.565689,194.642823,174.554599],[-64.025894,183.146088,160.020565],[-74.726517,216.141968,134.581910],[-71.674637,230.780884,141.392884],[-78.575638,228.734955,132.114828],[-78.090347,221.758820,130.870831],[-86.787918,214.141815,125.019198],[-88.457718,210.343476,122.124958],[-89.375625,195.376801,113.676220],[-85.858353,199.140534,111.357104],[-84.905655,221.032776,127.683412],[-83.936539,220.663941,116.363913],[-83.991714,228.678742,118.976792],[-84.931778,229.248139,117.595904],[-91.066788,227.533936,116.127623],[-84.803238,237.666291,121.062466],[-88.606705,231.522675,118.796637],[-83.924576,235.293946,121.446653],[-83.692825,213.299164,112.130632],[-85.226517,202.766724,107.931060],[-92.075088,209.987549,105.995711],[-88.115555,204.205475,107.757707],[-82.379043,201.185150,108.516567],[-93.519852,217.463166,108.847924],[-89.868423,178.900788,95.446913],[-79.147842,162.565613,83.738251],[-94.668472,267.778839,127.197645],[-106.920364,256.464508,119.734569],[-109.201004,248.286072,118.261781],[-99.833450,240.307282,116.740165],[-96.162186,239.980622,116.944877],[-101.033035,246.277924,118.216979],[-98.383743,252.222779,120.277762],[-111.602554,304.203156,127.441461],[-114.930679,293.463135,123.184477],[-114.165359,307.098877,128.969839],[-117.204361,298.098175,125.859170],[-120.860367,294.467713,124.343517],[-118.891556,290.953736,123.616194],[-124.995621,285.061798,120.597173],[-115.752273,307.661225,128.126460],[-132.685684,257.602814,113.624187],[-128.126602,254.638123,112.830700],[-123.112198,253.111725,114.470930],[-128.868057,243.062195,111.099424],[-132.493118,243.487030,111.137362],[-136.438309,247.659302,112.218418],[-137.850296,240.818940,111.532650],[-134.391678,250.560211,112.543332],[-140.510269,242.437409,110.435648],[-140.482498,245.992401,107.499696],[-136.666092,252.282257,111.804050],[-118.068008,318.621430,116.568150],[-122.726089,318.667450,108.041903],[-127.357437,319.790863,104.775893],[-126.646622,306.590058,100.412356],[-128.946976,307.551819,98.330418],[-138.477005,300.939240,92.211821],[-140.702225,299.910950,89.173046],[-140.427872,296.272309,88.958393],[-143.254471,292.973328,86.715649],[-143.146561,296.192719,84.912274],[-146.490982,289.981415,82.887009],[-139.819595,289.028443,83.807103],[-133.629593,300.554688,91.978180],[-132.701675,296.986908,90.581339],[-129.849991,302.413361,95.173256],[-127.124649,303.374298,99.879578],[-131.891861,292.614472,90.459443],[-133.846023,307.869934,97.593047],[-142.764480,280.304901,77.617749],[-138.936539,285.470124,81.723397],[-137.642349,283.169220,81.782708],[-135.601089,290.327545,85.874024],[-136.483169,293.800232,86.949433],[-145.042190,287.385620,83.242463],[-122.105118,313.647675,108.428313],[-136.111587,275.302094,82.759323],[-136.844253,279.664887,81.939999],[-140.372757,276.282074,76.306713],[-143.373550,272.857971,72.819435],[-147.835770,271.053040,71.248352],[-154.628982,264.807526,67.050331],[-162.363479,260.443940,62.835259],[-164.396622,256.777100,60.218666],[-131.629471,284.052338,90.914128],[-128.544693,278.201386,115.331377],[-131.139114,271.708100,113.279242],[-124.917068,277.863892,119.544060],[-126.349686,311.949036,102.018790],[-126.560440,301.962616,64.712143],[-164.013565,260.842499,54.904763],[-170.894058,240.270691,29.839653],[-169.041275,234.695465,23.531487],[-164.547562,237.353424,23.832207],[-161.976211,235.106079,21.578286],[-170.511368,245.299103,55.217125],[-172.773880,240.767182,53.323845],[-176.254654,238.027405,50.445366],[-180.709671,228.836029,48.462922],[-180.476700,216.990845,52.108704],[-186.174393,215.218384,48.053406],[-189.891678,207.235291,51.016541],[-182.982559,201.489197,53.726632],[-178.572220,202.459046,49.655678],[-185.520645,202.130982,50.742409],[-180.390640,203.412110,45.503014],[-183.165970,204.149536,35.194909],[-179.861648,205.831665,33.761704],[-177.421097,205.085083,39.643670],[-188.889114,203.213593,41.979973],[-194.305618,205.389893,29.162018],[-194.830765,208.700653,17.582650],[-189.740982,211.187043,14.630814],[-189.181045,215.439606,26.193970],[-181.006424,214.382996,15.492028],[-180.990188,232.386963,38.001542],[-174.892227,242.890900,44.543007],[-175.124710,241.506165,49.251870],[-170.473709,248.212952,54.397637],[-180.590225,233.039978,44.037789],[-176.566299,237.392731,33.359307],[-190.008926,203.069733,34.089493],[-185.220291,203.292572,40.291359],[-188.630325,203.076844,30.114090],[-195.020096,206.206848,20.914696],[-189.772354,205.004822,16.486237],[-184.606460,204.564179,19.777199],[-192.775894,204.136292,25.303650],[-192.700638,204.025269,32.902817],[-193.827042,206.334259,14.057427],[-190.825760,205.652100,5.576394],[-184.410721,220.295288,45.991227],[-190.526321,214.359070,37.649575],[-194.865677,208.412384,24.615212],[-191.230057,209.022309,44.945313],[-194.275528,207.616242,32.693306],[-190.366104,215.296753,31.428032],[-187.829178,217.848694,30.530365],[-178.541397,224.218872,49.963257],[-171.293167,221.286011,51.782051],[-163.757828,223.139588,54.491257],[-167.609390,234.417359,51.078736],[-168.287735,229.524842,50.717484],[-177.069351,233.194153,50.515938],[-178.734146,218.689698,51.194954],[-187.480179,206.654938,56.603951],[-188.580887,204.602112,55.045914],[-173.256302,213.299073,58.188729],[-173.069046,218.118134,53.297226],[-168.255813,213.463471,60.336003],[-166.499893,217.768067,56.769333],[-163.876907,213.494721,62.686360],[-140.933853,260.063324,75.845799],[-144.782486,253.249543,69.326039],[-138.818802,258.407959,82.124989],[-141.185562,254.464295,78.936463],[-161.958328,215.336762,62.338845],[-161.816299,203.130402,72.522808],[-169.406326,201.553711,70.030285],[-167.959000,196.388642,73.723923],[-164.582107,202.195374,71.418072],[-186.864578,219.995819,41.539269],[-185.778213,222.787537,38.889794],[-153.835586,259.626313,63.400780],[-149.573379,258.669037,64.006741],[-154.844620,249.830719,58.858284],[-145.820938,264.152619,68.386334],[-147.055862,266.924591,68.729374],[-155.266739,253.288269,59.932324],[-188.879043,203.817322,51.792382],[-185.590896,200.840241,59.994294],[-177.465896,192.361451,73.524693],[-181.566238,196.989685,71.148240],[-191.310318,204.631470,43.141968],[-182.185379,227.652375,34.048302],[-184.701187,221.882050,32.876015],[-143.414627,228.175751,92.934966],[-144.665115,237.601441,84.182106],[-147.950210,235.401245,77.748448],[-148.290054,237.173706,72.374745],[-153.011673,224.750794,68.252961],[-154.481766,223.118622,65.506413],[-158.052444,213.488282,68.576058],[-155.212601,217.308686,71.745114],[-144.915604,220.272095,93.995215],[-147.062454,211.064057,91.969124],[-154.110855,193.399964,84.734990],[-152.177383,190.886383,89.534638],[-157.493362,181.611084,87.986592],[-152.289627,202.836426,82.593975],[-149.861832,203.710846,86.156605],[-146.324417,219.887818,87.840306],[-148.064590,225.980133,82.882199],[-155.699966,201.623749,79.099617],[-146.465347,210.710663,97.604515],[-141.365555,270.314606,74.444230],[-141.089371,239.508820,100.423289],[-143.237564,229.513611,97.721932],[-143.017776,235.214112,104.216162],[-144.314468,226.534821,104.925740],[-141.298477,224.480194,109.953847],[-139.826004,219.006867,111.143700],[-135.044998,216.625855,110.721088],[-126.854751,220.872559,110.449104],[-131.238418,231.052124,110.402515],[-134.424820,223.354706,110.189362],[-123.717789,213.657196,109.971431],[-140.097000,232.706940,110.164305],[-137.134537,305.523255,88.451561],[-145.693619,291.962036,78.546078],[-126.098404,307.335633,70.331883],[-126.879166,306.033814,62.105919],[-125.276993,314.330139,68.802151],[-126.313919,302.020783,67.576165],[-114.453689,320.157440,59.292988],[-67.036087,342.185822,42.562920],[-83.203689,342.282807,44.401360],[-126.826187,278.576935,28.380547],[-129.442947,279.086274,30.587212],[-130.003982,279.811341,34.164872],[-158.920669,264.748932,66.527562],[-162.950821,261.972077,62.174046],[-193.296280,208.317627,10.887734],[-191.563553,208.794373,8.445839],[-176.403702,215.442139,10.728897],[-171.001663,218.974488,10.456635],[-174.622146,225.198029,19.599938],[-176.565323,218.193360,16.332940],[-178.091324,231.480164,29.438141],[-174.865433,211.346955,1.688050],[-183.509476,207.370575,-0.927635],[-184.748245,205.016327,9.299240],[-181.097732,202.007569,3.365296],[-178.349930,205.629731,10.779694],[-187.179275,204.501435,-1.374755],[-184.743851,202.555268,0.920319],[-183.407730,201.345703,-5.807487],[-182.355728,199.231751,-3.867752],[-174.996902,197.861573,3.199028],[-172.801468,195.356079,3.324479],[-167.635330,195.213776,6.888695],[-162.096817,194.366120,13.345292],[-162.885757,185.245392,14.705826],[-164.690506,188.198883,11.075501],[-172.005813,191.015381,2.474411],[-176.133316,193.986023,-2.793541],[-181.420303,200.336945,-7.651313],[-183.810806,204.223358,-4.161911],[-178.022537,191.885712,-10.622581],[-179.302444,192.637177,-8.282493],[-177.231888,189.968170,-6.778877],[-174.360367,190.949433,-2.090576],[-167.613418,177.991028,10.042694],[-172.804703,215.496338,6.903954],[-189.434219,207.052430,3.083702],[-164.248367,205.207733,2.811547],[-170.532303,172.164154,-4.150055],[-172.657608,178.068024,-7.698616],[-172.525650,173.251404,-4.876228],[-174.166458,175.784699,-5.212074],[-171.079727,184.914368,4.222603],[-175.696060,203.893158,8.559975],[-158.027664,201.513428,21.705758],[-156.208877,199.622284,27.099968],[-152.871414,195.526215,33.794960],[-148.325027,191.984314,36.833962],[-150.309341,190.412781,31.742035],[-142.174209,186.957276,33.356087],[-141.791397,187.642639,37.184433],[-146.174515,186.537110,41.995560],[-146.919266,187.398682,47.510834],[-145.550552,185.041657,37.977951],[-147.444839,179.631470,32.721650],[-152.286270,173.002472,31.960518],[-156.173477,168.078461,32.912247],[-157.429825,156.642121,25.675568],[-153.564346,156.361298,22.940354],[-147.881302,180.777222,23.059899],[-140.991775,179.453644,24.032250],[-142.616897,176.362397,21.029343],[-140.543045,173.152130,19.866646],[-141.193375,178.441773,25.282929],[-141.581680,182.902954,29.154549],[-142.334244,182.816559,30.485344],[-142.623794,173.046967,17.080010],[-155.793472,173.178650,16.144280],[-152.007461,177.023804,19.046303],[-164.636063,172.349976,12.786675],[-148.647659,173.780121,18.133446],[-140.249771,169.258423,12.567650],[-149.548294,166.994446,14.971428],[-151.586197,186.078980,25.361405],[-154.963577,190.913605,26.513947],[-147.366531,192.103943,45.803879],[-149.765762,189.783844,54.657494],[-147.985672,187.210083,53.009072],[-165.516434,199.770111,49.164055],[-155.909439,198.420502,44.264382],[-160.211868,203.661957,39.363617],[-159.079971,205.187744,35.749154],[-169.854874,203.195526,46.877068],[-165.231460,205.425965,37.859909],[-157.138443,204.728913,33.207291],[-155.180252,200.464905,39.413323],[-164.478653,206.839936,19.350098],[-160.141983,206.732758,25.126786],[-159.987564,205.012970,21.203858],[-163.493179,207.886292,27.336472],[-151.399795,196.351624,38.749375],[-149.019668,183.007782,70.760102],[-154.643692,183.826081,69.872868],[-144.786453,181.348908,75.417466],[-142.454910,179.383149,75.830216],[-135.617264,172.081024,80.322129],[-141.109939,173.296479,76.257252],[-139.348465,166.329163,75.449894],[-131.994766,166.201660,79.065625],[-168.483658,212.532349,3.225136],[-173.698440,201.608063,-5.169632],[-169.699356,198.536805,-3.814132],[-178.440750,197.486145,-9.230247],[-168.600845,189.571930,-7.189827],[-167.899795,184.224549,-6.314750],[-175.807510,191.645691,-10.901695],[-173.940567,182.087769,-9.763054],[-172.075821,186.909333,-9.409156],[-175.258987,183.249024,-3.406601],[-176.235733,183.331879,-6.948387],[-145.473404,189.545258,4.071816],[-142.076126,180.171479,0.388337],[-137.121963,183.890229,0.884201],[-134.858475,174.466553,-3.767860],[-145.647171,181.438538,2.321007],[-127.909744,175.790528,-14.275413],[-171.049881,162.361695,0.291497],[-140.939224,165.629547,-3.854171],[-164.640335,152.859772,5.709488],[-162.203995,148.465210,3.772217],[-150.344498,155.137482,9.613106],[-156.553177,155.098328,8.136864],[-143.977249,184.297425,28.301102],[-146.097122,177.838074,28.985833],[-155.564346,164.396576,28.409951],[-167.490982,184.193085,74.251469],[-162.301529,182.556855,83.118401],[-156.941055,179.707764,89.080864],[-153.774979,199.328369,35.785767],[-154.709915,194.795075,29.477784],[-152.524124,181.287995,96.180758],[-152.041824,178.395417,93.372466],[-148.903763,180.595917,99.830403],[-129.908401,187.464661,113.516264],[-127.113602,185.312226,105.557923],[-128.420547,182.583435,108.872036],[-130.113418,180.990326,109.701737],[-129.201431,178.444763,101.839733],[-142.535171,197.380402,117.862767],[-139.544327,197.966767,118.451924],[-131.858292,190.808533,115.648492],[-126.100296,181.684326,100.136723],[-99.757522,164.581147,86.140660],[-111.086380,146.003022,71.295082],[-113.637649,148.364533,73.994973],[-142.963577,179.411164,90.691615],[-143.419266,164.389191,74.359921],[-141.511001,157.827454,76.383816],[-138.289749,155.213501,76.306984],[-141.221268,142.363465,79.858223],[-137.985794,136.140442,78.785283],[-134.756302,149.291291,76.125626],[-132.525955,154.479462,74.986462],[-136.081192,160.314911,75.678509],[-129.317642,160.675934,76.599190],[-146.078262,141.921051,81.388649],[-154.126053,130.511750,84.756279],[-158.214981,120.973236,86.507439],[-164.541092,121.513275,87.583813],[-182.752579,99.981324,94.539837],[-205.193069,80.841492,100.752346],[-211.826492,82.991669,94.788447],[-206.979080,91.114930,88.186451],[-214.799576,83.890198,89.244954],[-212.228104,89.968537,77.736882],[-213.545792,88.603333,74.425824],[-221.561722,79.852814,75.712448],[-229.011124,70.802521,72.830796],[-229.916153,67.152253,70.016911],[-232.161880,54.709549,66.842694],[-236.287735,51.571579,68.073449],[-243.014053,48.514801,70.304619],[-244.227066,41.090775,75.650460],[-251.071548,49.411133,72.205960],[-253.852188,43.755417,77.658802],[-252.809891,45.724976,74.523552],[-260.935928,51.676148,75.290165],[-268.897232,57.533737,77.880986],[-269.930313,61.101044,79.042157],[-278.649307,58.397431,82.596276],[-275.904983,53.964997,83.621323],[-270.822647,49.263657,85.656636],[-263.237259,48.343247,78.661911],[-272.281998,55.072419,80.335743],[-231.328079,46.183060,69.017693],[-241.988663,43.442169,72.421704],[-230.308365,42.719147,71.944863],[-223.398086,44.896790,71.040299],[-226.054275,41.056641,76.355812],[-224.543960,39.713791,82.911908],[-236.131424,41.995865,72.557766],[-234.320145,37.757447,78.598175],[-234.899490,38.842408,76.037304],[-233.023147,60.138260,68.309014],[-232.720352,67.518616,74.152851],[-226.721329,74.896912,75.845402],[-232.350540,70.885926,79.648121],[-223.536941,77.589997,92.840210],[-219.054459,80.672882,90.509600],[-219.878372,76.845307,98.075734],[-225.035110,75.915406,97.169495],[-228.057999,74.051239,102.370562],[-229.428787,71.176544,110.816348],[-229.780044,69.338440,116.721748],[-237.434708,71.404053,122.195888],[-249.410416,77.370270,126.094447],[-246.480362,72.858582,129.366147],[-259.625564,78.686951,134.270256],[-255.106399,72.928711,133.815869],[-273.486404,82.168305,139.016779],[-229.791031,75.025116,98.210247],[-230.091446,75.105530,92.809552],[-235.020279,57.978607,68.523213],[-251.075821,63.405152,76.226319],[-236.142227,64.856018,74.175221],[-243.522110,60.993714,72.379620],[-196.205398,90.231812,97.030411],[-198.459366,92.593476,94.736105],[-200.999100,94.669617,90.956814],[-202.313187,97.810303,84.580830],[-208.386368,92.909912,81.842987],[-206.526321,87.444763,94.184819],[-210.089737,81.327759,98.220805],[-187.177994,99.225922,94.797732],[-190.190079,102.704529,92.010155],[-196.462906,102.116638,87.372406],[-195.150284,107.606018,82.273362],[-186.334488,118.702515,81.721482],[-193.012039,104.113251,88.946629],[-203.787735,98.580201,80.151299],[-198.114334,107.361603,76.718041],[-201.870193,103.919403,69.050305],[-203.697891,99.073883,60.674832],[-209.746292,91.293885,64.399605],[-202.911209,97.510987,55.096032],[-213.670242,84.322937,62.479851],[-216.258438,83.626374,67.852002],[-223.365250,77.092377,72.061047],[-214.546463,86.783783,70.368649],[-218.327713,79.496155,65.391873],[-219.436905,76.223877,63.049080],[-228.369766,64.692841,66.177067],[-220.934280,57.959122,61.995552],[-215.920792,70.645966,57.218552],[-227.340896,59.683670,64.444374],[-219.806595,73.516114,61.262314],[-205.125564,98.824280,67.166256],[-205.043411,98.823120,74.573517],[-191.361343,119.381684,70.070702],[-195.575210,113.350525,69.330254],[-194.318497,111.916107,53.537819],[-202.373245,95.169831,51.113366],[-197.306045,100.930237,47.547608],[-199.715042,94.906555,47.250321],[-206.470779,85.293610,51.255028],[-212.719437,71.266938,55.395035],[-211.293838,81.930176,55.354584],[-212.690689,77.601410,55.197243],[-212.696609,82.505341,57.987206],[-220.554336,69.979523,60.435917],[-193.584915,103.336609,43.830132],[-191.920730,98.925415,41.075768],[-186.549515,110.427796,38.429055],[-185.612869,115.825989,39.482659],[-182.408829,113.306061,35.132622],[-193.731583,88.152375,98.041624],[-161.561478,128.350495,86.029244],[-151.151321,141.411042,82.284325],[-150.291214,145.989350,80.918946],[-144.224075,136.983643,81.421749],[-208.474319,66.024750,106.871513],[-202.378006,71.644471,104.151249],[-204.058670,63.798035,106.210469],[-203.242874,60.735504,105.800282],[-215.569656,61.941132,112.072682],[-225.110428,66.252503,116.535613],[-219.367264,67.829956,110.197070],[-219.661575,70.477265,108.103637],[-215.696976,71.601349,106.150861],[-213.726761,74.529999,103.306845],[-214.974930,79.256165,97.221796],[-226.284500,76.532990,87.116013],[-215.905777,84.774567,84.668164],[-219.529739,81.987458,81.380276],[-226.041824,76.357239,80.121128],[-220.516983,73.130768,104.075703],[-226.736160,70.036103,112.526117],[-210.123855,61.285584,109.523446],[-209.953934,72.255036,104.622420],[-195.623489,83.599518,99.779450],[-247.832901,70.935822,85.250599],[-237.873611,68.372559,78.974476],[-245.842239,65.804871,77.555149],[-268.719437,63.634766,80.611687],[-268.715286,65.715271,83.344666],[-257.670792,68.087036,83.292534],[-274.686539,64.673737,82.678471],[-261.729141,60.450379,76.200074],[-253.013199,55.450775,72.172879],[-253.013748,53.258881,72.144390],[-241.561600,53.608811,69.388077],[-237.689041,59.247025,69.766102],[-251.448135,58.309082,72.614041],[-293.005630,69.087555,94.359417],[-289.439468,59.607254,116.757938],[-289.934341,62.567017,123.195581],[-300.247269,63.628418,128.051821],[-295.345779,62.001313,126.530059],[-302.098282,60.905701,131.002038],[-305.822403,65.606507,126.256355],[-286.576980,60.670044,119.744873],[-282.037674,67.390320,120.956521],[-283.403091,64.692139,120.244923],[-291.343033,65.587677,123.065537],[-295.572037,66.537323,122.376858],[-288.315506,67.425232,120.803704],[-295.483169,59.306717,119.274892],[-297.989761,61.969818,110.742288],[-303.162857,58.618790,116.779767],[-306.183060,56.886002,122.488150],[-311.319595,54.581040,132.246085],[-316.782059,53.625626,129.664237],[-314.626358,57.545761,135.090697],[-317.897232,60.585022,134.155219],[-308.460098,61.449646,133.092449],[-293.085098,59.592942,121.005373],[-302.085037,57.869690,129.147390],[-286.382461,60.689209,111.770480],[-282.581558,60.789429,114.451567],[-274.133255,60.527710,117.216313],[-278.005203,93.812226,142.669485],[-288.870804,94.587067,149.480891],[-287.038711,99.489533,141.801327],[-291.149856,99.775788,141.121403],[-135.131729,109.936249,60.353356],[-130.993240,115.896515,61.181519],[-153.028152,151.491211,78.385975],[-145.104568,149.670349,79.544094],[-158.948807,135.302521,84.258397],[-148.786819,164.259674,72.952999],[-153.348831,165.897461,69.680481],[-157.103775,166.146332,64.871422],[-154.635452,158.700318,73.977864],[-145.863296,156.836243,76.852421],[-159.429825,166.245636,60.270821],[-167.718765,155.318421,63.028233],[-180.920181,137.031281,59.622361],[-186.820877,127.259461,60.162075],[-194.988541,114.362030,65.235058],[-194.923904,113.586029,60.580403],[-191.287857,118.098603,73.646050],[-189.339859,117.870056,78.377312],[-176.499954,133.809784,77.903046],[-172.747574,143.527253,72.094151],[-173.643814,148.123200,60.666767],[-180.726700,136.819611,63.819649],[-177.147110,138.198090,71.808846],[-183.652054,129.480347,71.914402],[-174.717117,144.138886,67.341099],[-181.744644,134.335144,67.143937],[-184.692520,130.823334,63.587479],[-172.321487,150.489106,54.198532],[-163.154556,162.983338,53.215523],[-158.827896,168.405915,55.097542],[-167.820084,156.390534,58.760075],[-150.622757,181.489411,53.506882],[-152.478897,178.270264,47.257386],[-156.548843,170.382721,39.630478],[-170.791092,185.492524,74.061745],[-178.013443,192.087616,71.191063],[-173.941727,190.770111,68.666493],[-175.601456,194.756501,63.580113],[-181.262222,198.192719,61.655239],[-168.503494,194.168763,59.655045],[-144.625564,190.017853,40.504074],[-166.892044,185.307801,80.000786],[-171.935074,187.182679,76.345848],[-166.408401,182.835938,79.841225],[-182.016983,229.417359,45.674286],[-176.510452,207.205719,28.201111],[-178.162002,206.419464,23.030350],[-150.271072,178.403626,37.088578],[-289.826797,70.325745,87.206311],[-298.829361,71.223542,94.331110],[-305.241104,68.634766,98.960898],[-312.468399,66.222779,96.185589],[-310.962967,61.720398,100.637417],[-304.150101,60.750183,98.844853],[-302.318680,58.755326,93.963692],[-298.011551,66.989106,95.503283],[-300.194778,58.742554,94.848210],[-308.472610,60.925141,101.884100],[-309.387344,64.023041,102.638371],[-309.797439,69.654999,96.512606],[-167.452591,154.773804,40.635041],[-176.722061,129.515381,33.905938],[-166.305130,141.835022,27.609284],[-161.620743,139.962860,23.947914],[-121.148880,146.417237,20.376435],[-149.098160,163.593933,23.054627],[-153.460464,163.598755,25.877549],[-149.982376,152.713959,20.141060],[-146.138138,147.177704,18.283158],[-174.833511,136.131256,35.185440],[-185.669815,119.447113,41.859513],[-208.580948,78.944550,52.431343],[-207.737991,72.789276,52.839089],[-202.146744,71.102509,51.550446],[-212.257034,62.707520,57.409119],[-217.582962,55.504258,62.356705],[-224.522781,48.913376,66.998047],[-213.735916,49.921448,68.029099],[-216.954666,63.134552,58.909546],[-226.288834,53.304810,65.427445],[-198.785416,83.677002,46.443871],[-201.657852,84.857331,47.856743],[-202.055801,74.291596,50.271134],[-199.563919,67.604431,53.265595],[-203.808731,63.133271,56.159806],[-190.916580,96.089325,40.440369],[-183.078384,106.267426,35.018715],[-177.851089,112.481903,31.640099],[-174.822769,110.319947,30.547570],[-158.699844,126.893341,22.790108],[-166.922928,120.000092,26.169495],[-174.314102,141.485993,39.207207],[-168.641006,146.254944,32.582940],[-162.074112,151.082886,75.363995],[-167.033157,154.555512,66.070862],[-162.531021,153.882996,72.732159],[-166.304703,151.992066,70.784657],[-181.037308,123.064698,82.936470],[-185.072769,84.687073,96.790884],[-189.154434,86.578186,97.916499],[-187.344803,75.427613,96.887404],[-185.145279,73.718598,94.307164],[-196.853714,66.091095,102.004261],[-191.839126,76.864594,99.683077],[-194.738541,78.817108,100.664099],[-184.428726,87.906555,40.641419],[-172.785782,96.168244,35.097275],[-172.949478,101.007416,32.775154],[-187.188797,91.431244,39.915810],[-182.344375,86.071442,41.434746],[-175.732193,86.120301,41.370140],[-163.947037,95.858673,35.379403],[-168.444107,132.331147,26.996117],[-176.452774,126.846649,32.589684],[-138.287674,151.141114,17.641320],[-147.866836,168.504914,24.171639],[-144.672989,162.856964,19.712426],[-133.630752,229.804688,24.874344],[-157.324234,220.530732,13.295578],[-128.596146,210.474243,9.332772],[-155.208511,164.263581,1.621277],[-148.826736,150.332062,0.462105],[-154.128128,150.423615,1.548684],[-142.675674,140.870880,-1.305854],[-129.745499,166.481964,-15.550209],[-122.458755,154.352387,-28.839943],[-117.910904,156.538880,-29.153695],[-113.215164,161.696472,-27.992042],[-123.030411,166.306000,-25.217628],[-110.556717,161.532074,-27.163581],[-105.779190,150.708222,-31.698173],[-113.721146,146.758667,-32.953865],[-108.696182,145.567047,-33.372520],[-120.374710,146.927216,-32.382576],[-123.794632,139.538697,-35.310539],[-124.366104,190.381775,-20.542030],[-120.612747,191.453583,-18.795693],[-174.987808,207.301453,32.004364],[-158.040970,205.100922,25.780304],[-128.483902,250.406678,23.845024],[-152.615372,278.591828,75.385548],[-158.443313,268.117676,68.284638],[-145.578018,154.776245,9.513375],[-170.181473,98.652527,91.001484],[-165.436905,100.248200,88.723668],[-162.427994,97.945649,85.972634],[-162.214798,105.812226,87.904786],[-177.703323,84.618775,92.558449],[-185.732803,67.689850,90.180849],[-192.863663,59.877472,91.637713],[-208.199417,46.912842,95.292527],[-211.279678,45.377808,102.610966],[-217.501541,41.340363,108.226821],[-224.781998,37.510575,115.748823],[-230.487869,36.411225,124.884092],[-227.239273,39.135834,124.162552],[-235.478531,38.762711,133.518901],[-227.964920,43.915741,128.093321],[-231.384903,45.739548,131.553730],[-249.746414,50.359238,130.250117],[-251.265640,45.333298,128.419363],[-249.613907,38.254563,120.391118],[-245.518326,35.484116,117.731617],[-243.217422,38.251206,107.967308],[-246.900406,43.219010,105.203774],[-249.637649,45.844162,100.220135],[-254.759720,50.583680,103.062817],[-244.409378,40.190888,95.152680],[-238.515945,38.878907,99.689257],[-233.745071,38.555878,99.604924],[-229.093643,38.725617,100.756535],[-230.644363,37.140366,109.860265],[-239.292068,33.615097,126.205537],[-249.478287,36.698349,128.848563],[-260.691238,38.243882,138.465313],[-257.020645,34.898362,141.056801],[-267.535538,39.126541,142.992747],[-262.101822,43.450714,156.569760],[-263.194717,46.728226,154.667462],[-265.402420,47.538697,153.487206],[-268.864761,45.431061,154.869938],[-270.058853,44.836243,151.093602],[-267.071365,43.761277,157.964581],[-270.831070,37.190110,152.764826],[-271.929642,41.387909,153.656668],[-269.574905,38.427445,157.423680],[-266.115494,37.985306,158.426552],[-261.525711,37.507233,152.281361],[-258.833084,45.834763,153.188366],[-250.609146,47.286698,143.917105],[-251.761551,45.328186,147.310435],[-237.130508,46.238480,134.888151],[-238.082168,43.081192,136.836984],[-245.761185,45.004883,142.575632],[-242.648209,47.416031,136.514321],[-243.304581,50.566559,133.352144],[-250.639847,48.402115,132.705318],[-252.248550,46.865433,131.109884],[-264.287918,37.105088,141.849539],[-255.629288,37.354645,133.570783],[-246.072647,35.032135,126.071932],[-243.286453,33.785263,126.930205],[-248.643082,34.520920,131.713117],[-262.023758,41.358063,138.517249],[-265.476822,46.225067,143.810303],[-266.945267,47.837387,149.434258],[-259.771561,48.245575,149.646140],[-267.257522,42.327607,142.763075],[-270.445267,39.656586,147.743613],[-258.954605,43.719437,135.583517],[-260.063125,46.994812,140.058331],[-258.033096,48.172333,141.811980],[-246.984024,48.041779,137.147712],[-253.741165,48.159882,141.680565],[-251.076675,42.054612,127.129763],[-249.777847,38.928864,125.096721],[-242.248672,35.574234,113.546509],[-235.371109,34.185089,122.129850],[-232.982742,34.882477,118.748753],[-236.504410,36.898850,108.022221],[-255.532608,37.166321,148.669794],[-257.987686,42.881470,153.398577],[-259.564041,35.651352,147.972845],[-249.564712,34.721161,139.818585],[-242.393448,35.386551,136.403326],[-239.386063,33.786972,130.009710],[-231.212112,35.258866,121.998076],[-237.238052,36.250031,132.926214],[-248.121414,36.926346,142.647805],[-250.842300,39.311631,146.132971],[-249.239273,34.161148,135.986827],[-243.095596,39.510147,140.236914],[-250.306839,43.529663,94.761666],[-220.744461,44.926987,120.297411],[-213.727554,47.589173,112.026978],[-221.100662,41.093872,116.806405],[-203.222793,49.683106,84.495472],[-234.429581,36.662308,87.081101],[-237.320267,38.399628,95.288073],[-241.362320,37.192932,89.835572],[-259.005936,43.936554,88.503724],[-248.374832,39.834091,89.549210],[-227.629898,39.305741,94.988226],[-223.248184,39.784424,101.549824],[-211.059891,45.107758,87.329132],[-219.678055,41.434647,94.900530],[-230.845413,38.511444,92.100394],[-242.141128,39.802445,102.180819],[-245.443985,41.978272,101.319874],[-248.317581,42.005768,111.264832],[-248.794327,38.407242,117.015476],[-251.449966,45.629914,115.259075],[-252.893204,48.834351,119.427965],[-253.123794,53.363770,112.211045],[-254.075821,57.292176,117.000511],[-253.888382,60.000138,123.630062],[-255.903213,69.289765,132.743251],[-263.780533,70.524628,132.122343],[-260.861221,66.365235,130.346492],[-251.521866,49.913819,107.796207],[-260.389297,46.600769,93.631510],[-267.075027,48.360688,92.833666],[-251.425186,50.824509,127.163259],[-248.061478,53.464081,130.081028],[-250.239761,59.082932,128.505650],[-249.413162,63.136628,129.983542],[-252.606094,65.650360,129.955238],[-252.143082,42.485825,121.137665],[-252.568802,47.297135,124.089235],[-245.555496,37.901627,85.458149],[-208.957718,61.148316,57.673298],[-199.476883,61.948700,57.827565],[-194.431961,62.340882,58.872143],[-207.658829,55.982193,62.403931],[-203.304825,54.950577,65.058983],[-213.350967,48.458557,70.458222],[-209.334793,48.257752,74.333222],[-183.065079,65.065522,65.519493],[-178.776504,69.025238,61.292263],[-166.364212,81.157227,50.831513],[-172.966751,77.721009,50.622055],[-213.382706,55.531937,113.164268],[-221.577042,53.843613,121.803889],[-225.784378,56.808808,124.867905],[-230.486893,61.902222,126.547310],[-230.811294,59.018097,128.383761],[-226.288284,52.161988,126.612708],[-236.191971,50.452973,132.457272],[-241.878067,54.280136,132.104403],[-222.580215,47.466736,123.278717],[-238.756119,60.077256,131.910705],[-243.633560,65.790863,131.193373],[-147.475601,94.713318,57.983582],[-150.741531,95.603974,43.169526],[-153.897415,90.446472,49.362275],[-157.544327,88.196198,48.050721],[-162.215774,83.019684,52.468201],[-143.905472,100.634491,44.301598],[-143.028030,105.118500,36.927155],[-138.084183,110.154145,35.551125],[-156.368851,86.358612,59.079861],[-149.781143,93.319611,64.318550],[-154.672195,87.954834,61.987351],[-150.531509,114.110840,26.061997],[-156.795547,113.899170,25.770073],[-142.208572,125.629578,22.603714],[-158.609329,105.689362,29.837357],[-166.447464,97.827515,33.884835],[-162.902664,191.405823,78.272892],[-147.852676,203.103882,94.241881],[-146.521927,205.940491,106.396459],[-146.077164,212.242585,104.199219],[-114.371780,153.285736,78.923520],[-118.881790,150.486420,74.261647],[-101.848831,137.016571,31.356316],[-107.196304,136.906250,37.756913],[-106.615005,136.529602,34.970299],[-104.179947,139.055695,31.522805],[-106.237259,132.054383,31.349411],[-106.170242,144.557251,39.435646],[-107.802139,139.287079,39.440560],[-108.481277,142.773011,41.086991],[-106.099502,145.719666,34.768402],[-107.062942,146.796631,39.112221],[-103.238724,146.035279,31.613388],[-104.243423,144.493836,34.248101],[-104.659561,139.840729,33.994851],[-106.320328,133.619080,34.798737],[-94.699234,142.811859,28.466767],[-100.588882,141.474701,30.577256],[-102.991043,149.841797,31.989220],[-97.363235,133.864807,17.489708],[-101.556351,146.342591,19.962975],[-97.637710,138.107209,16.916947],[-97.437698,136.620514,13.191254],[-101.514297,141.517670,10.939286],[-96.017471,121.058350,15.287880],[-78.365433,156.855011,57.679760],[-75.057205,158.946625,57.593766],[-80.684280,202.207062,-4.644203],[-79.638321,171.373444,-3.419456],[-79.311417,180.217316,-2.338539],[-85.013199,174.988037,-2.274017],[-89.208389,175.703766,-3.734321],[-84.308304,162.645264,-4.997528],[-82.480118,168.529908,-3.329803],[-90.379410,159.381348,-11.831428],[-85.624588,150.549591,-13.838249],[-84.769119,122.172943,-19.815986],[-87.470718,124.919068,-15.968162],[-88.810928,115.534149,-8.040596],[-85.665420,117.062226,-8.856910],[-91.478104,120.121033,-4.836502],[-92.363052,117.167237,1.045304],[-90.864761,116.003296,-4.564399],[-88.329788,116.994873,-2.106536],[-87.949661,117.000214,-13.072334],[-89.963516,116.767548,-9.119316],[-114.055618,142.089569,-11.114205],[-116.891373,145.047150,-6.917961],[-73.035599,154.087708,-8.762474],[-65.212784,217.553864,9.080353],[-85.686844,260.847687,7.885430],[-80.627273,156.598603,77.855824],[-119.110611,260.744995,118.309561],[-124.545242,258.561402,114.158428],[-121.183914,275.245270,117.269160],[-113.029129,267.993409,123.089261],[-112.550064,271.114777,123.892183],[-109.630997,272.713196,125.427467],[-113.821670,99.401795,115.972752],[-122.272842,83.214386,106.601313],[-122.272415,90.065918,106.104704],[-123.085159,92.773896,102.704899],[-125.146805,76.201020,104.381939],[-121.471451,76.301819,104.899849],[-54.102249,93.062958,178.897786],[-42.347305,102.545655,186.930725],[-48.909012,112.962403,183.148083],[-28.282303,58.239121,188.188538],[-29.308182,69.268402,189.676598],[-17.849869,23.787552,180.176804],[-17.107315,18.126328,179.743275],[-19.909561,9.117234,175.771447],[-18.940811,19.293015,178.925187],[-28.037125,-1.304763,173.098480],[-23.041519,61.304718,192.042756],[-6.951553,82.713898,195.489487],[-17.187576,121.623627,203.350281],[-12.161453,125.988983,205.849160],[-20.138809,111.487854,201.517189],[-20.902786,105.301819,200.863296],[-25.622146,90.356171,195.527726],[-17.264542,116.344330,202.417603],[-21.897781,119.588959,199.178383],[-24.521744,113.948487,197.933075],[-26.789200,123.924317,196.932639],[-28.042374,110.465027,195.790779],[-24.500625,105.962220,197.978981],[-21.493362,96.285370,199.471474],[-27.893387,78.500641,192.140526],[-28.004776,94.313385,194.518311],[-32.340164,82.643158,191.172318],[-23.436233,124.529145,200.656105],[-35.253189,94.476563,192.208809],[-36.778824,103.811188,192.737000],[-29.853592,49.342057,182.628697],[-26.287247,44.344376,185.637288],[2.692429,26.174851,191.225731],[17.358078,67.201264,194.418152],[19.806992,65.746888,194.963562],[-54.395706,52.296891,175.993653],[-65.046219,53.793854,173.589581],[-84.397842,30.211304,156.640759],[-82.635696,64.767243,164.697651],[-82.496231,59.659622,165.142941],[-86.633194,50.991196,161.278256],[-114.092422,85.277954,111.635847],[-112.880386,89.176728,115.324443],[-117.470535,83.634949,110.360433],[-117.899551,90.784668,111.141402],[-106.005813,86.657257,104.173556],[-105.993606,80.734711,99.918566],[-35.735855,-30.259918,167.610611],[-23.665909,-36.171982,163.732624],[-84.817032,-88.678474,154.660920],[-79.736343,-99.804840,154.763947],[-77.014908,-102.206512,155.033387],[-71.472793,-100.767318,156.091347],[-67.990616,-112.148910,153.532313],[-129.449295,-95.642654,98.976107],[-53.440140,-88.138588,158.925972],[-28.104202,-95.157814,167.174294],[-25.822647,-89.389526,168.811722],[-19.495804,-80.112159,169.267723],[-97.482681,38.392670,141.428219],[-44.052444,-39.770324,168.706818],[-5.849869,-40.343689,174.442471],[-4.961258,-28.880142,178.856621],[-9.327347,-55.733413,171.299149],[-6.387833,0.744232,186.300003],[16.832993,54.574066,191.481438],[-18.846084,96.213013,200.092919],[1.997604,89.950287,205.329941],[-11.435684,139.150391,206.485825],[-13.030777,145.549408,205.556847],[-22.790481,152.817383,201.060273],[-23.097183,149.097382,201.407387],[13.857407,50.980164,190.589783],[27.006394,87.154969,202.944024],[-1.833328,122.643341,209.235833],[3.626206,129.319031,209.093834],[33.372421,199.485260,199.895104],[34.940415,203.436890,202.816407],[41.540329,199.408142,198.709342],[-10.581375,211.109925,205.869385],[-3.379532,210.003998,207.850861],[33.032211,200.666596,201.644477],[25.201950,203.088501,204.236809],[50.052231,211.551667,202.800354],[-53.353836,186.690125,181.510662],[135.973862,2.959366,114.432816],[138.545273,0.627335,103.359579],[135.762924,8.108429,105.590125],[-86.762283,95.221497,162.062371],[-119.633804,97.049652,93.020005],[-130.323807,86.705017,93.908409],[-127.794693,89.351624,92.625580],[-155.948807,31.161499,42.390671],[-115.237808,82.212036,47.998078],[-177.840530,19.066559,56.616784],[-177.674148,16.593491,57.840702],[-170.058670,10.496109,58.522793],[-160.498489,10.609848,66.335656],[-118.927139,43.804367,14.617089],[-112.509109,31.088440,17.777489],[-117.411148,26.760086,9.435318],[-117.219742,19.677475,13.581055],[-136.892837,4.029526,-7.992073],[-135.784927,0.899597,-9.510765],[-133.027054,6.273941,-7.026451],[-139.870315,-1.043625,-9.063606],[-136.535965,9.885849,-3.570243],[-137.397659,2.524597,-0.644302],[-136.082291,1.334229,4.127724],[-137.150406,-3.329406,6.556214],[-135.014053,1.731354,11.932549],[-152.524307,10.125824,13.133881],[-96.933731,28.583695,15.266922],[-90.308975,36.930863,16.476532],[-108.495682,26.010453,19.548088],[-104.348160,23.085938,18.253052],[-67.466873,49.115662,5.599808],[-67.256851,50.619858,0.613015],[-75.142227,17.420380,-20.638939],[-77.937332,8.023316,-24.447746],[-76.421646,18.959793,-17.943351],[-70.032669,49.589554,14.054490],[-67.046951,53.962036,12.168442],[-145.026749,35.585602,74.720093],[-155.905228,13.230500,65.701432],[-171.049637,4.189347,39.954216],[-171.353958,-4.126098,36.547211],[-181.830154,-2.181564,43.008324],[-173.311539,-2.014526,39.366494],[-171.871231,-8.090789,31.972977],[-175.531143,-13.934967,35.140450],[-147.265823,26.613968,24.583870],[-144.763565,15.406845,17.038887],[-148.148819,17.192719,18.047722],[-128.737259,26.474045,24.244858],[-125.747024,45.258454,20.740158],[-126.084976,43.346222,16.776856],[-119.270035,65.149506,32.097054],[-137.401138,-19.679611,-11.376808],[-138.821121,-26.365310,-10.339363],[-133.551590,-7.877716,-8.024208],[-138.058975,-5.964660,-12.196877],[-121.811539,-29.519546,6.335648],[-116.381119,-35.180511,-4.807640],[-116.346146,-47.735717,-17.327919],[-118.769302,-54.301651,-17.126519],[-117.191177,-43.231811,-10.258431],[-110.958389,-5.315521,9.141282],[-106.995254,2.637070,8.522515],[-114.045608,-18.493911,4.814408],[-113.908462,-10.755493,9.213433],[-106.821365,11.119202,14.617669],[-108.560135,16.268540,17.273110],[-111.682571,14.675354,16.902665],[-103.698746,-11.464431,-3.915741],[-112.174087,-21.885803,-3.400627],[-113.619522,-22.764633,-0.539405],[-83.716690,-25.410156,-15.025948],[-88.285049,-44.579849,-19.021339],[-88.780472,-36.260620,-14.461770],[-96.519607,-110.123825,-85.985467],[-125.049148,-46.774078,3.124337],[-127.914078,-42.028106,4.295288],[-129.337479,-46.609985,4.235077],[-126.081924,-41.175338,4.699372],[-131.032669,-42.379547,0.528740],[-136.647110,-42.284424,-4.803161],[-135.093643,-51.317016,-1.228576],[-132.040298,-53.425720,4.350678],[-141.613479,-56.912796,-8.411323],[-144.811233,-68.458496,-7.973121],[-141.412857,-66.012756,-3.343132],[-154.717361,-77.738800,-18.002494],[-151.325027,-71.000641,-17.641304],[-108.839676,-15.205795,-3.962562],[-118.814834,-11.533462,10.350670],[-120.721390,-10.344101,9.410950],[-165.004715,-9.867431,0.984841],[-2.266617,223.336609,2.700554],[-66.866959,447.450287,12.912575],[53.344589,277.545716,177.152192],[50.602585,279.635559,178.991734],[48.991196,280.064637,182.189083],[44.710495,234.039276,192.750069],[45.191818,234.964173,190.798272],[45.376877,230.141693,192.039757],[102.904160,138.408722,139.307677],[143.132614,46.095749,107.589610],[145.787399,43.848999,104.539656],[146.087265,43.473755,91.721320],[145.342575,48.398423,92.165944],[114.628647,89.230469,139.533814],[114.820541,70.621949,150.987631],[172.563583,1.224350,35.281754],[175.858750,14.204636,38.188477],[178.091965,-47.368622,-4.846573],[177.243515,-47.189514,-2.292015],[176.396591,-55.076339,-4.623207],[176.146103,-50.963699,0.821236],[176.876022,-38.090347,-0.658958],[160.032822,-12.247406,34.403321],[171.706711,-34.709427,43.522606],[170.022080,-25.496750,51.341706],[170.472824,-24.633484,56.049302],[163.736069,-21.948105,53.114113],[167.012863,-21.943512,55.808220],[147.817917,-5.221862,79.871750],[145.618576,-1.640091,83.192589],[141.225144,-2.370361,87.700810],[142.680893,-6.463592,85.643654],[144.349289,-6.886856,82.291401],[153.866684,-43.131454,45.458298],[164.783066,-36.901031,45.964043],[171.151779,-54.789306,28.679154],[170.582687,-54.645843,33.681275],[174.501816,-54.626205,0.521538],[172.381699,-55.952987,1.539803],[170.371201,-64.070236,-2.792129],[166.335129,-78.406593,-5.358123],[160.594467,-72.832580,-4.022270],[175.301560,-176.593382,-51.099648],[170.289780,-174.479715,-48.491508],[141.967758,-168.825477,-59.946495],[139.913742,-176.933195,-63.859307],[144.513596,-196.655467,-65.431266],[141.588730,-185.450713,-65.401023],[142.509140,-205.009432,-69.895988],[145.823776,-202.970937,-48.953010],[127.406174,-49.486648,30.791268],[126.979294,-45.941482,35.324448],[129.158859,-44.479690,36.078835],[125.630234,-52.715439,29.332672],[37.629929,-380.945511,104.561842],[37.512985,-389.932892,101.896956],[83.544968,-449.429733,-39.957588],[89.987656,-431.577514,-43.366752],[88.803024,-435.359939,-41.631797],[68.282517,-411.003021,-46.481926],[65.343125,-410.605499,-46.836311],[69.050705,-403.282104,-46.058312],[73.743271,-403.696243,-44.512642],[83.229477,-411.745056,-40.974495],[76.254990,-414.915085,-42.705864],[78.515061,-423.084915,-42.144036],[66.886459,-463.745208,-63.086753],[53.600937,-454.127624,-86.519050],[54.591660,-455.275543,-89.040459],[54.074875,-467.224487,-92.383842],[54.245163,-473.964019,-93.551582],[56.401047,-471.673858,-94.699257],[49.365219,-485.815857,-93.746360],[46.143051,-493.561065,-88.929527],[44.477646,-512.121521,-85.099480],[44.859177,-509.225708,-91.519188],[45.441269,-515.165802,-89.500969],[46.863937,-521.097076,-88.525779],[50.696945,-475.635070,-91.024849],[49.287155,-470.613342,-85.308204],[47.286362,-478.699951,-86.255653],[45.291184,-488.100006,-85.165123],[46.308212,-493.866729,-69.364036],[43.851364,-518.063507,-74.468423],[73.327561,-429.231018,-42.936897],[70.018845,-386.841247,-41.769783],[71.778549,-392.109939,-43.591209],[80.874130,-388.238128,-38.994346],[75.901108,-383.911133,-40.609214],[50.957565,-390.713791,-37.591392],[51.853439,-391.481811,-39.563637],[99.705551,-393.186371,-41.682182],[101.958969,-373.431289,-42.312111],[42.786850,-509.716491,-58.638740],[43.772019,-506.706482,-76.359794],[43.359299,-511.453491,-75.457023],[44.863144,-505.846527,-58.026573],[44.372360,-501.940246,-66.087089],[48.124191,-524.923919,-86.380012],[46.954941,-526.073944,-76.449440],[49.009018,-529.676788,-77.534721],[44.702805,-524.574707,-69.207741],[45.473557,-528.502807,-63.498222],[49.587998,-533.530792,-64.792167],[47.508835,-530.998626,-65.866752],[50.618088,-529.805114,-83.200950],[53.100388,-529.081665,-91.250465],[57.474167,-534.531341,-90.070533],[45.203720,-518.437683,-82.071434],[63.263291,-539.140136,-82.180153],[73.778610,-542.403808,-72.836143],[78.821640,-544.973663,-71.848075],[70.914719,-541.652435,-74.848457],[70.822495,-542.243072,-78.927055],[63.496567,-539.917785,-86.819236],[67.907822,-544.474304,-84.058418],[74.129685,-544.994568,-77.496696],[76.806259,-547.222351,-74.855735],[83.050888,-549.817077,-66.810447],[56.895737,-458.523712,-92.847923],[65.224289,-464.375305,-97.614784],[56.735397,-535.515075,-95.854560],[62.776230,-549.171905,-94.107475],[51.533676,-523.798797,-96.465385],[49.955185,-519.157806,-98.602013],[48.372604,-513.169983,-100.334115],[58.031906,-540.190216,-48.619392],[62.361740,-542.135467,-50.262947],[57.604294,-533.918548,-40.560905],[52.945847,-537.451416,-44.838264],[62.485581,-528.935180,-35.939201],[82.096054,-547.065887,-68.341438],[70.271774,-553.458893,-79.005944],[85.644943,-589.531707,-81.857231],[91.285263,-592.698242,-85.759468],[39.721237,-520.471649,-59.963921],[55.619736,-528.136383,-20.583213],[50.999130,-530.512542,-23.918129],[48.233017,-542.966095,-3.048690],[180.749619,-772.817840,43.071190],[179.637131,-773.855743,45.927445],[179.722641,-772.237274,41.892334],[156.009384,-772.539032,75.449452],[31.697373,-621.434234,60.657780],[16.048264,-610.011993,58.398022],[14.993027,-608.789123,59.632409],[19.607102,-608.159881,65.003632],[26.435410,-616.777862,72.303124],[29.247788,-614.195038,78.867760],[22.142136,-616.587890,66.747605],[22.740585,-617.289734,65.372593],[24.961899,-620.891845,71.181645],[26.786362,-614.004394,102.585463],[24.099228,-612.736541,104.983992],[29.679672,-575.859741,31.389710],[-34.281631,-423.235717,55.369820],[-36.729141,-417.317047,52.207993],[-58.503555,-390.886306,58.719422],[-60.362076,-411.893234,58.864182],[-63.030044,-319.042167,71.638363],[-63.398575,-310.789138,72.683442],[-65.266312,-309.725860,73.060963],[-68.249588,-307.038231,71.665100],[-71.029983,-309.907531,67.529179],[-68.714371,-314.817245,71.191075],[-67.711746,-360.279876,67.703144],[-65.123917,-364.352005,66.558396],[-69.096268,-369.710174,66.225670],[-68.314285,-381.679245,65.485798],[-67.667190,-390.268661,64.786072],[-66.470230,-372.977157,65.920182],[-70.524795,-379.453567,63.999726],[-54.577286,-431.863922,58.035782],[-83.988052,-311.247635,49.219803],[-83.451919,-317.438705,41.243744],[-76.892105,-309.115226,44.764336],[-77.604324,-317.010856,36.672600],[-74.347732,-317.365692,34.287308],[-79.424087,-328.492462,26.889412],[-84.976700,-330.765670,28.337922],[-89.205276,-336.325927,27.350373],[-79.167374,-335.850662,19.753800],[-85.105972,-337.504181,21.672516],[-89.882828,-361.111007,0.876374],[-90.534988,-372.745300,-8.155052],[-67.166824,-330.832565,34.146881],[-63.348465,-334.301010,26.301270],[-61.854935,-339.043396,22.896119],[-65.034866,-345.717514,13.411354],[-59.392593,-348.660919,13.795311],[-63.906448,-340.510513,16.627808],[-59.597549,-347.422546,19.763977],[-59.955337,-344.309051,17.426827],[-63.098709,-337.263946,19.659058],[-62.009598,-336.743423,22.049057],[-84.283768,-348.654159,10.827614],[-75.459854,-347.897949,12.317841],[-84.856644,-340.469467,18.290772],[-82.488052,-322.374733,34.199196],[-66.487381,-375.840881,31.444641],[-64.326553,-366.246231,28.219117],[-63.398941,-343.212402,25.342469],[-59.583572,-367.259689,10.029366],[-55.258499,-374.869034,11.186478],[-55.863174,-368.184967,11.296379],[-68.379532,-321.119438,71.409016],[-68.437027,-322.107277,39.233956],[-67.464859,-325.529159,26.904129],[-69.258011,-332.977813,20.152077],[-64.041519,-330.135910,26.108750],[-70.094314,-316.396034,35.417145],[-72.227676,-327.652542,24.522683],[-67.293045,-321.079269,32.665100],[-88.753006,-328.958496,34.123627],[-87.711685,-322.381187,39.733292],[-105.692154,-346.339813,28.764977],[-103.327469,-349.088714,25.028145],[-101.549209,-349.014221,24.086090],[-102.208938,-366.506805,6.261437],[-97.636063,-371.908188,-4.633880],[-105.887466,-356.967590,18.263985],[-106.759109,-365.513488,10.006127],[-106.180435,-372.390686,2.838784],[-105.424393,-380.182983,-5.359161],[-150.126907,-355.556274,-14.523018],[-150.513626,-350.507980,-22.130302],[-149.509292,-353.059585,-31.479057],[-149.812027,-344.453491,-26.976204],[-147.784927,-339.373779,-28.983863],[-150.242996,-337.716140,-22.449989],[-151.762344,-343.711776,-18.899849],[-143.038101,-365.416351,-3.829063],[-148.389358,-329.507690,-16.569419],[-148.891067,-327.549698,-10.565025],[-148.128494,-355.723022,-4.392250],[-150.333084,-339.883621,-8.717155],[-152.392044,-346.917175,-12.561836],[-152.046707,-348.293976,-9.866219],[-147.893814,-353.490814,-2.997406],[-153.311539,-340.629257,-13.902626],[-149.566360,-357.279083,-24.757576],[-149.712417,-355.079788,-28.567299],[-148.999832,-357.742096,-38.609794],[-148.085098,-356.515579,-41.266685],[-148.709366,-349.757370,-34.737678],[-148.344925,-361.075775,-18.297066],[-149.443619,-370.342102,-24.977165],[-149.902847,-366.068237,-36.040489],[-149.729751,-358.960510,-34.782128],[-149.871109,-363.423294,-30.660118],[-146.724319,-363.887756,-11.971016],[-145.736160,-364.384140,-9.274131],[-149.663345,-389.479049,-34.124626],[-143.123550,-388.160659,-21.428460],[-135.822647,-389.492813,-15.677742],[-138.646561,-397.846603,-24.170875],[-134.044998,-396.150558,-18.883110],[-130.097610,-396.582519,-16.699226],[-148.424026,-393.447159,-31.828956],[-137.911270,-383.980972,-13.678871],[-146.043960,-400.551941,-37.024116],[-145.688187,-412.531173,-44.886375],[-139.940811,-415.928604,-38.417915],[-148.340164,-388.380829,-27.521934],[-146.244339,-385.577606,-20.668190],[-145.413956,-395.885757,-31.214286],[-111.397049,-294.039413,70.543099],[-143.344131,-342.213241,-39.383598],[-129.194900,-423.978347,-40.840324],[-109.943558,-405.323425,-29.184135],[-101.095047,-404.085724,-29.920936],[-105.139664,-399.997848,-26.406807],[-112.477432,-398.835418,-20.125557],[-141.980667,-444.403030,-64.830772],[-144.380020,-450.440094,-71.337334],[-142.754532,-454.278442,-65.400734],[-142.997940,-458.845459,-68.538368],[-144.825943,-458.354156,-70.429695],[-139.973953,-455.703888,-64.581977],[-132.202652,-455.159942,-64.684501],[-138.046524,-482.541900,-82.590294],[-116.297684,-408.884231,-28.443917],[-118.321731,-403.049286,-21.462822],[-109.479935,-384.090149,-6.413261],[-111.315567,-376.595291,1.216454],[-109.628433,-428.405731,-49.014793],[-102.767288,-415.779266,-39.741783],[-100.841446,-419.284439,-40.418144],[-100.406570,-417.726257,-32.814994],[-101.183609,-421.890320,-43.144584],[-106.794815,-428.362014,-50.203071],[-110.095291,-437.150650,-57.742210],[-107.373550,-436.890594,-57.510627],[-103.344253,-456.844818,-59.404899],[-102.029739,-449.603317,-55.911323],[-111.167801,-456.073394,-74.370385],[-108.007034,-455.030761,-72.631126],[-106.428848,-477.745331,-85.815193],[-105.139297,-486.584015,-87.148994],[-104.187698,-479.209320,-83.628273],[-110.409317,-474.367248,-85.160041],[-108.633194,-466.160217,-80.996026],[-99.534317,-386.868423,-17.817085],[-100.108780,-413.681198,-33.623497],[-86.333023,-402.485229,-15.796075],[-103.619095,-433.135986,-52.747200],[-101.322647,-437.479629,-52.525642],[-97.174637,-447.414917,-43.788627],[-97.894852,-458.051910,-36.047280],[-97.783890,-450.975906,-46.359123],[-98.314896,-463.675415,-44.086861],[-97.343643,-458.813781,-40.987527],[-100.122452,-473.048279,-43.584144],[-98.449539,-471.065887,-39.602592],[-98.203384,-477.705841,-28.980995],[-97.135086,-487.365265,-25.275337],[-99.433487,-478.216827,-39.225167],[-100.285477,-485.065277,-37.235817],[-98.828628,-481.802307,-32.889137],[-101.725540,-456.791229,-26.485680],[-101.404556,-463.307037,-22.236290],[-91.602737,-459.247528,-15.054924],[-93.227493,-464.412994,-15.672371],[-92.392044,-470.884430,-12.256614],[-90.812454,-475.653412,-6.287674],[-90.471634,-481.267975,0.235787],[-90.309402,-485.976745,-0.578857],[-95.692947,-480.843902,-11.928840],[-93.073929,-486.981994,-6.058387],[-91.730972,-483.465942,-5.277595],[-90.939834,-470.297882,-8.184410],[-90.520950,-458.164703,-12.367241],[-99.716385,-468.513794,-24.594993],[-100.349258,-463.484008,-20.145118],[-98.527786,-473.181274,-17.089912],[-96.022537,-463.021362,-18.274131],[-102.105667,-451.195892,-24.842033],[-102.030044,-443.170898,-27.113563],[-100.845169,-442.629287,-25.719734],[-101.377273,-458.134704,-21.995430],[-101.061600,-451.915985,-30.308387],[-101.153335,-452.728851,-23.112495],[-102.051102,-441.847732,-31.012077],[-100.886185,-442.253265,-33.459069],[-90.523819,-472.419616,-2.776825],[-91.573563,-476.567505,8.557663],[-76.723221,-473.174926,16.545525],[-69.725174,-487.906433,14.663941],[-72.344986,-476.614105,12.688805],[-68.891922,-481.097259,11.234253],[-56.896377,-491.818664,12.903077],[-64.643021,-489.356262,11.543167],[-55.652786,-503.515533,15.322922],[-64.913834,-494.178161,13.225708],[-64.736771,-501.891052,15.682808],[-60.372818,-504.031738,14.466629],[-60.508377,-492.637359,12.005455],[-68.424209,-464.148742,5.841339],[-60.733475,-473.217193,7.398392],[-63.350662,-478.743774,8.487625],[-56.958572,-467.171081,9.110726],[-59.594925,-479.758636,9.435402],[-67.872635,-476.347076,8.928734],[-97.123855,-449.348251,-22.567955],[-98.993851,-452.107177,-33.602897],[-102.600296,-467.556976,-54.547096],[-108.165298,-483.794922,-52.587013],[-108.960525,-489.601837,-48.745109],[-97.041641,-483.507843,-20.515862],[-96.408707,-489.950134,-12.953041],[-96.177383,-490.393280,-20.117607],[-95.421402,-496.666229,-19.467018],[-94.112259,-505.371765,-12.047859],[-94.667129,-499.089569,-11.435600],[-66.237076,-530.197387,29.326134],[-62.826919,-533.727661,30.375695],[-73.255386,-497.940033,25.354851],[-69.292251,-495.713195,17.323914],[-60.001297,-509.747131,15.480103],[-46.765762,-310.164505,57.842575],[-43.126175,-289.087822,65.370663],[-46.399856,-289.670761,63.735909],[-33.051529,-354.251251,120.234935],[-29.444961,-372.217270,83.465729],[-29.958755,-355.066879,77.408768],[-33.110367,-357.292816,89.922667],[-28.475906,-366.266418,73.400284],[-37.168411,-368.908935,53.686058],[-31.900284,-339.451751,66.632378],[-32.706985,-344.941452,63.207207],[-27.842911,-377.046829,78.452126],[-67.790176,-341.478210,31.989273],[-70.952408,-377.597549,42.679413],[-69.896377,-389.612167,63.170426],[-50.049515,-404.790771,15.301560],[-61.445022,-409.655731,11.222313],[-63.398331,-395.653656,2.048027],[-83.437820,-427.853912,6.796692],[-82.668777,-459.822052,18.949135],[-86.198563,-447.411224,16.932434],[-87.024429,-455.076599,20.562943],[-95.974930,-486.705139,-11.667396],[-64.523209,-526.639160,30.182015],[-57.915420,-550.181335,28.607331],[-54.908035,-553.128570,28.735337],[-39.457718,-564.266754,26.931214],[-99.843094,-565.002258,36.016526],[-64.074600,-605.178802,66.199082],[-62.551102,-609.935943,74.000313],[-68.591934,-612.027862,76.324410],[-78.214615,-620.700836,87.410782],[-86.566849,-628.803039,97.192688],[-83.395767,-618.980072,83.258225],[-77.663711,-613.388275,76.373864],[-85.106338,-607.596527,64.495106],[-79.953567,-603.353088,59.477669],[-90.556290,-604.642822,56.756897],[-87.816788,-622.603424,87.284058],[-91.016006,-624.272857,88.213173],[-91.154800,-631.186737,98.586836],[-122.939285,-607.608429,39.175347],[-113.057632,-606.676544,45.290238],[-122.118484,-611.483795,43.316468],[-119.411514,-620.152893,56.274582],[-121.066116,-641.210510,86.895459],[-121.325027,-645.354767,92.396233],[-127.624161,-648.162170,89.681393],[-132.429703,-647.512787,83.048535],[-133.985672,-652.203949,87.927895],[-128.559463,-641.245849,78.498417],[-83.099686,-611.353515,71.604313],[-78.067398,-607.289581,66.684571],[-72.411392,-606.044586,66.196785],[-44.138382,-609.910309,76.181931],[-52.905350,-606.094116,68.837460],[-41.051224,-606.343567,71.019795],[-62.990127,-618.651581,87.567639],[-69.059280,-626.099121,97.272105],[-70.173294,-633.336242,106.876563],[-59.263931,-634.104828,108.675231],[-50.416397,-632.852905,107.896518],[-34.105362,-625.330139,99.553189],[-51.607681,-638.378357,114.556198],[-43.518448,-634.770660,110.954579],[-54.118729,-621.429229,92.417771],[-50.895218,-626.736175,100.034016],[-39.912674,-625.597198,99.210738],[-40.418655,-617.126342,88.132088],[-26.470352,-620.141235,95.071507],[-34.265091,-611.539428,80.869698],[-33.311417,-618.819977,91.692456],[-43.979690,-612.661804,80.165913],[-33.310562,-607.518554,75.223858],[-22.889969,-613.374633,86.739842],[-53.244705,-615.120025,83.129113],[-78.944839,-630.195343,100.966000],[-61.667801,-640.556244,115.792634],[-53.381912,-645.874267,123.401001],[-46.185501,-642.070251,119.648319],[-61.235611,-653.711334,129.681810],[-55.884964,-652.558166,129.836679],[-71.980789,-653.585846,126.285255],[-64.383072,-646.072570,121.397325],[-73.810440,-622.949554,91.840990],[-100.659805,-673.269561,134.551558],[-85.332596,-670.032989,135.668024],[-101.039810,-653.283508,115.301535],[-96.209488,-558.278778,18.587288],[-90.351456,-533.701996,19.934456],[-88.914322,-534.042450,16.031792],[-85.314041,-536.463348,15.672478],[-81.649368,-539.676208,22.210175],[-86.013382,-541.281585,21.411606],[-108.455582,-547.783691,25.043244],[-111.222244,-540.229370,30.220169],[-106.674393,-545.191589,28.075066],[-113.558121,-542.021881,27.505806],[-115.426834,-545.513183,22.660820],[-113.892105,-550.039734,18.364769],[-122.641067,-544.746948,18.622040],[-110.768631,-525.277374,33.650765],[-108.307571,-526.347961,29.583969],[-105.409317,-519.502685,32.962311],[-108.184769,-522.476227,31.536461],[-111.767593,-526.624084,19.137268],[-107.896744,-526.580352,10.293961],[-109.806351,-532.152618,5.686676],[-107.106216,-527.680145,6.055840],[-105.680252,-522.096771,7.666504],[-112.864273,-520.311096,0.396408],[-109.463089,-524.110077,1.998978],[-118.696548,-518.292022,-2.012298],[-106.981155,-508.647430,5.170418],[-110.176651,-510.020599,2.919709],[-109.516678,-505.541778,-0.523658],[-111.885574,-502.837310,-3.422081],[-109.989090,-502.431854,-1.134323],[-93.041641,-516.422027,22.745827],[-91.764725,-517.066986,12.811608],[-91.214004,-519.985840,7.159310],[-124.399917,-534.155273,25.600800],[-122.436539,-535.667938,26.238617],[-101.823685,-514.789215,29.654450],[-100.149673,-510.286438,24.251374],[-116.457413,-534.305420,-33.942498],[-117.748855,-541.420990,-41.211784],[-119.678604,-544.898040,-45.083320],[-117.160293,-540.093170,-35.810737],[-116.300125,-537.144958,-48.298896],[-117.628738,-535.014068,-55.421272],[-120.799576,-544.647918,-49.429237],[-128.021988,-553.209289,-55.957252],[-124.285538,-545.492614,-55.283409],[-125.026871,-547.974182,-83.858880],[-127.158340,-555.901428,-86.952110],[-156.494461,-522.484619,-102.100563],[-153.000259,-522.853943,-97.533577],[-141.310196,-526.868103,-89.209496],[-145.178665,-519.309356,-88.854347],[-141.223709,-518.620849,-88.745735],[-143.541763,-511.030822,-89.830543],[-143.803848,-523.180725,-88.699592],[-125.153030,-516.543213,-92.141197],[-151.935196,-510.887329,-95.205970],[-123.672623,-526.462951,-23.662986],[-115.235916,-528.226227,-43.569007],[-116.064102,-531.839538,-38.464927],[-121.395889,-523.126800,-37.770683],[-100.916702,-506.938812,0.662827],[-106.813919,-502.051147,-0.344642],[-98.257522,-506.586364,7.157425],[-99.622452,-498.106903,-27.798332],[-105.332046,-491.323089,-42.291527],[-123.260330,-532.862549,-66.158363],[-126.938919,-537.264129,-64.073983],[-144.316055,-535.732696,-93.631767],[-177.219070,-560.666931,-120.740394],[-176.878860,-562.522979,-117.742561],[-172.481766,-550.434906,-123.479714],[-173.651382,-554.482788,-122.001075],[-146.102615,-468.143127,-82.014747],[-132.405411,-453.200012,-130.248680],[-134.552261,-433.956268,-161.558831],[-145.661514,-429.790176,-114.883384],[-140.673233,-433.059646,-120.591241],[-153.624405,-431.426315,-116.512124],[-171.960159,-392.336822,-111.799050],[-161.639969,-411.683349,-141.999077],[-165.910660,-395.829239,-142.847039],[-164.854263,-393.740112,-145.437066],[-153.337906,-426.051132,-147.586784],[-159.020035,-410.749893,-147.121239],[-164.874588,-415.209381,-131.329445],[-167.076065,-333.339996,-114.299431],[-158.323318,-325.707733,-104.534584],[-162.327164,-329.232162,-108.544625],[-161.017471,-336.337967,-111.440544],[-156.334305,-402.229675,-149.648461],[-149.881790,-421.109482,-154.542687],[-132.653763,-411.836059,-148.020867],[-137.842178,-403.629226,-144.682793],[-129.396683,-408.355438,-145.031913],[-160.754166,-393.736114,-147.426750],[-180.834305,-353.142776,-136.011558],[-152.760086,-366.187088,-126.684868],[-168.946792,-316.383575,-109.857948],[-167.991897,-308.326034,-106.033989],[-163.757339,-316.632957,-104.027900],[-158.385330,-315.168159,-100.101600],[-163.563431,-308.786926,-101.172004],[-121.468826,-327.749557,-134.886467],[-126.920425,-298.871383,-129.966346],[-126.482437,-293.290435,-127.507058],[-125.669083,-291.660164,-129.339454],[-123.514847,-292.973663,-120.718987],[-122.712051,-295.059982,-117.810188],[-122.680923,-302.816848,-122.917428],[-109.038956,-508.057190,-87.613380],[-98.075699,-468.114624,-35.306084],[-89.419266,-516.012848,-3.045417],[-92.285477,-517.639312,-3.312431],[-90.567093,-502.596740,2.027436],[-130.555435,-553.598999,-108.912362],[-162.517410,-580.773529,-101.988762],[-167.635330,-589.946014,-100.908149],[-164.956314,-584.529236,-104.113319],[-164.397598,-582.857086,-108.983834],[-168.507828,-590.254852,-108.134452],[-164.392654,-579.622772,-109.311912],[-176.205093,-588.231414,-105.604820],[-178.509720,-584.412780,-105.022697],[-179.763748,-593.107055,-105.660209],[-180.643814,-556.606292,-125.095970],[-178.352554,-561.692047,-122.680717],[-174.919388,-605.167144,-117.534798],[-125.438248,-542.054535,-144.299218],[-157.809524,-594.269684,-129.068992],[-165.820511,-570.724395,-106.756295],[-170.627701,-571.978332,-107.528495],[-128.930740,-569.564331,-64.483589],[-63.702286,-571.494568,31.336106],[-62.333328,-630.045868,103.329485],[-36.289810,-632.571441,109.409042],[-32.470047,-635.753753,114.692156],[-23.919693,-632.893615,113.568838],[-20.773514,-630.860656,110.927267],[-30.383865,-625.451904,100.593981],[-18.764114,-625.722717,104.050301],[-19.206619,-613.494934,105.451842],[-22.974502,-626.412903,104.576939],[-19.816971,-629.031891,109.190252],[-11.071121,-631.327148,131.610703],[-17.264297,-635.639038,119.496647],[-15.585159,-637.648956,122.518432],[-17.443924,-601.913391,80.133656],[-60.449722,-662.649566,137.684065],[-48.147232,-690.068786,158.378518],[-114.035782,-711.032501,149.556057],[-119.193497,-712.567840,151.268034],[-128.706680,-712.097381,149.240155],[-40.115799,-741.394439,185.911858],[-32.492813,-727.568206,183.787465],[-37.302872,-744.891937,187.432084],[-23.720657,-726.350433,185.206425],[-20.454910,-730.546539,186.532998],[-3.745132,-736.219574,187.445771],[-24.709915,-718.964996,181.775395],[-110.019119,-767.675445,185.802964],[-86.729507,-769.499115,195.247383],[-90.123733,-769.945831,200.264191],[-79.317886,-769.311310,194.422791],[-82.575455,-767.175140,191.142158],[-86.772659,-770.857391,203.530327],[-26.918228,-775.588348,196.129113],[-23.859512,-770.813690,194.865967],[-25.760147,-769.540802,192.614518],[-31.274673,-769.264740,192.392311],[-41.056106,-768.729950,191.476105],[-42.459915,-770.353363,196.419747],[-33.892227,-772.207916,197.109665],[-82.848465,-772.124725,203.982315],[-71.232864,-775.263214,202.549530],[-53.443436,-787.306549,199.879342],[-79.033340,-786.223602,203.569435],[-67.169083,-794.826935,201.700173],[-69.745560,-793.555999,200.537049],[-82.558243,-790.463409,201.158478],[-92.447891,-790.632477,204.605278],[-95.381790,-783.563446,205.599053],[-92.257645,-787.503631,203.834290],[-95.134354,-780.448211,205.821267],[-92.629104,-788.292022,205.305222],[-93.513382,-794.375396,205.460427],[-84.665787,-794.488800,204.291054],[-84.845169,-791.410858,202.697075],[-85.268326,-779.063324,204.722474],[-86.045853,-790.048553,199.188080],[-78.333145,-790.332916,198.790604],[-68.634964,-792.334625,197.535752],[-54.785782,-793.934234,194.108506],[-50.152420,-794.026642,187.557305],[-62.704361,-780.926422,201.375824],[-65.450577,-771.041229,201.013543],[-55.096084,-731.838409,178.860016],[-36.071548,-725.075836,181.838208],[-19.477554,-624.428924,106.829699],[-61.294632,-370.714431,8.256768],[-62.609756,-370.467834,6.387024],[-80.032913,-365.386703,5.583870],[-85.429031,-369.143158,3.943543],[-84.688003,-363.515350,4.319024],[-86.168167,-358.919906,3.940392],[4.033615,-132.149307,137.851605],[-126.189529,-222.682321,69.526623],[-129.978104,-225.027162,28.929093],[-158.369827,-49.193084,17.503197],[-177.943497,-67.932159,40.339882],[-193.480545,-230.086403,-24.875099],[-220.293594,-264.889419,-32.900062],[-179.449112,-250.358322,-14.448387],[-179.223038,-280.744438,-27.619407],[-178.958877,-273.270416,-29.719535],[-148.668716,-308.768722,-22.786766],[-175.852676,-397.795700,-93.497413],[-168.501175,-387.365112,-142.948144],[-171.863663,-384.263275,-127.702995],[-125.486160,-226.721182,-65.048774],[-185.375931,-320.600631,-125.013116],[-171.422439,-300.722320,-107.286094],[-164.626724,-302.737838,-100.142295],[-160.985611,-309.135482,-99.058571],[-160.074844,-298.252769,-93.826698],[-121.460342,-303.344909,-114.367165],[-121.580459,-303.653503,-111.313683],[-122.264603,-298.184776,-107.149803],[-124.579971,-296.671280,-125.058250],[-122.643326,-305.072075,-136.041496],[-127.058975,-303.923393,-134.278556],[-124.141739,-297.361992,-132.784416],[-126.707901,-297.834015,-131.803199],[-121.958389,-320.233139,-147.941154],[-102.679642,-273.792206,-114.536399],[-129.401382,-216.648088,-77.838707],[-128.973770,-209.276509,-72.054451],[-127.094681,-230.305862,-57.047737],[-144.041519,-229.264454,-49.206901],[-108.349197,-162.569893,-68.482934],[-110.554703,-160.999969,-68.257347],[-98.313492,-167.066190,-95.441352],[-167.232559,-406.114029,-127.834434],[-240.331436,-249.062099,-35.842811],[-232.459305,-252.817005,-37.747200],[-256.597366,-175.124920,-8.871101],[-254.577774,-166.705797,-5.396927],[-256.857193,-162.465847,-5.382759],[-265.954727,-164.759592,-11.881112],[-248.808853,-167.610391,-1.180862],[-238.914200,-207.298155,-40.445320],[-234.699844,-172.767799,-47.389625],[117.648605,2.406082,-9.301200],[107.662521,-156.947223,-79.323143],[107.395493,-161.958324,-82.909263],[106.730576,-170.163137,-84.228965],[107.934433,-192.717636,-88.662651],[51.588059,-205.026736,-121.352013],[60.085617,-188.204806,-111.769874],[99.326401,-312.636734,-124.030143],[109.203354,-309.261001,-115.774070],[104.517685,-303.659477,-119.708458],[91.031967,-284.831009,-123.881508],[91.433518,-391.734405,-128.762245],[102.284775,-315.578437,-82.615043],[97.148056,-321.635063,-80.591927],[81.827927,-264.915085,-62.471336],[93.760666,-417.131454,-104.085868],[77.975144,-438.029098,-116.438545],[108.552780,-459.113037,-206.003960],[23.842331,-343.373626,-181.746758],[9.253525,-363.577896,-142.848473],[10.853134,-352.468475,-148.220482],[61.595139,-316.597664,-210.071282],[103.797043,-376.370300,-135.780449],[62.156967,-287.574218,-152.052513],[32.898789,-243.763778,-187.310081],[34.363144,-198.407567,-160.015403],[-37.069900,-381.886947,-195.394462],[-33.449905,-400.245300,-199.787376],[-32.667435,-407.712967,-199.880821],[-103.183914,-403.865005,-199.015068],[-107.395889,-403.408462,-197.430627],[-109.530960,-406.740753,-193.467491],[-108.776626,-407.560821,-197.414239],[-106.711990,-412.637329,-201.099602],[-93.620987,-452.046203,-181.113639],[-106.394852,-526.541412,-232.054466],[-104.615677,-524.576294,-236.620567],[-108.954056,-521.690277,-232.811913],[-102.419449,-531.403961,-216.726768],[-87.994705,-534.266876,-242.989953],[-42.134659,-504.829406,-185.474328],[-62.041885,-550.276886,-212.328849],[-63.154922,-556.614349,-212.055657],[-61.548111,-558.487854,-207.058006],[-55.889419,-558.037140,-199.845604],[-49.142776,-554.160064,-198.986564],[-40.620071,-555.393463,-199.545982],[-44.525711,-553.902404,-198.719841],[-52.175430,-550.906707,-201.129509],[-56.517654,-549.949524,-204.143577],[-40.565811,-507.285064,-210.776512],[-39.758255,-496.954376,-217.517570],[-38.714310,-488.947937,-224.397300],[-34.820511,-487.803436,-228.958733],[-53.490005,-464.579345,-179.889976],[-93.445389,-528.487915,-241.489037],[-18.813003,-590.586456,-187.317162],[-1.499283,-508.421478,-216.756890],[105.887009,-546.939422,-202.709222],[-67.126602,-794.923675,-253.920525],[-152.241226,-770.583526,-224.301811],[-174.739639,-789.904754,-214.344078],[-195.372574,-778.603058,-187.972404],[-193.703140,-787.407562,-189.509910],[-200.698563,-795.074920,-179.264366],[-253.751724,-778.107635,-104.812997],[-257.376602,-770.912933,-98.426262],[-252.514358,-772.083282,-106.246132],[-254.296158,-785.729034,-103.777367],[-249.579361,-794.995331,-110.340919],[-256.880142,-794.965179,-98.988914],[-232.832901,-794.932342,-134.540887],[-161.138870,-788.783233,-233.545861],[-158.950943,-794.973480,-235.833824],[-155.117142,-794.977752,-241.189293],[-148.369583,-795.017608,-236.850701],[-165.195816,-795.076507,-227.131218],[-210.069900,-664.426788,-25.185508],[-211.575394,-665.827911,-18.010383],[-215.576065,-670.860046,-16.525948],[-244.556839,-765.726837,-7.995201],[-249.894180,-768.418853,-15.515130],[-248.561966,-768.218475,-7.179756],[-246.558609,-767.466644,-10.167214],[-249.385208,-794.893036,3.220101],[-233.536453,-795.021270,6.534516],[-243.947281,-766.725372,3.268006],[-244.464004,-766.609405,-3.515663],[-244.358475,-761.325836,-12.189140],[-242.467056,-766.307342,11.813332],[-246.287369,-768.161041,12.046486],[-241.456924,-760.445099,12.910317],[-241.674271,-754.960113,12.747918],[-243.043716,-762.157013,1.348992],[-238.500931,-765.293060,35.629021],[-252.280105,-794.933502,-20.539848],[-246.845047,-794.961273,-14.856606],[-242.044571,-766.301117,-105.656807],[-245.908218,-768.020965,-102.376258],[-244.289566,-766.669159,-100.571510],[-118.901565,-769.206085,187.082154],[-116.009598,-770.494720,191.540718],[9.274704,-776.544586,189.925881],[-6.705215,-773.213836,192.852364],[-18.922562,-769.369293,191.861802],[-16.608536,-771.183502,194.305085],[-4.410965,-771.640533,192.427123],[-10.469864,-771.531036,193.320801],[14.825180,-770.056732,186.089470],[35.107346,-774.454620,185.992043],[28.817124,-779.227569,187.099587],[15.075791,-772.287750,188.840920],[4.481552,-751.415252,188.112297],[6.932724,-740.351471,186.393921],[-0.149246,-759.706329,189.729560],[-2.931717,-749.081695,188.600312],[-8.221146,-758.295440,190.865723],[-12.362381,-763.403900,190.994957],[-20.924820,-761.643829,191.599853],[-19.895950,-767.364898,191.539772],[-22.265335,-756.408416,191.363190],[14.783859,-787.628692,188.673752],[16.725449,-795.094146,188.341744],[30.730026,-789.190826,186.648124],[37.927841,-782.639923,185.618328],[49.390488,-776.438507,184.120781],[37.133164,-770.516571,181.190926],[43.155808,-768.816986,178.109646],[27.993820,-753.588104,181.794022],[21.114182,-759.625702,184.747399],[26.312424,-768.140350,182.811005],[32.118759,-765.590728,181.270298],[34.527634,-768.853729,180.902199],[27.705185,-770.435272,183.453167],[32.296005,-772.096283,185.027565],[38.095505,-772.597442,184.934811],[24.077072,-747.470489,182.408051],[26.524033,-795.030975,187.171807],[35.122910,-795.082245,186.034615],[28.468186,-773.292633,186.962326],[22.347336,-772.161407,187.768746],[24.262436,-770.017364,183.571946],[19.826035,-774.393463,188.421151],[43.597885,-794.923126,184.894818],[52.200607,-786.234405,183.878670],[51.147324,-794.828338,184.015129],[44.256882,-774.695831,184.526794],[50.378708,-772.980255,181.962243],[139.210861,-775.141143,99.437584],[143.421066,-782.143219,94.481644],[150.014023,-773.756378,85.424267],[157.200363,-774.258819,76.145440],[152.916245,-772.057769,69.304905],[146.225693,-789.287140,90.998766],[136.079514,-794.979034,98.019837],[133.259384,-774.112091,107.134430],[122.489182,-790.054962,121.344944],[116.875961,-794.958282,128.161825],[117.828842,-794.940765,119.555568],[181.331680,-783.830780,44.270295],[90.417343,-794.985138,146.783249],[102.564072,-794.999420,146.179421],[105.801499,-795.005768,131.188422],[76.886093,-794.845611,178.952122],[76.988449,-783.887603,179.314625],[75.901230,-789.855255,180.056000],[10.026596,-709.333221,169.321499],[11.211777,-691.393463,168.875386],[2.371323,-692.090820,168.620453],[-34.094131,-770.584747,196.105759],[-169.111160,-766.234588,150.407553],[-165.336258,-764.515655,152.378523],[-189.120987,-794.680877,140.234414],[-193.712784,-794.924286,136.853137],[-182.778580,-795.029205,144.997260],[-186.516312,-794.937774,139.416729],[-173.712906,-794.909332,151.718176],[-179.093643,-794.967315,141.206116],[-184.234634,-776.603546,143.453087],[-155.073929,-773.063018,164.456688],[-159.579361,-779.606964,161.590264],[-130.384415,-795.123016,182.280491],[-138.968277,-795.174347,176.047161],[-147.270584,-795.232696,170.334476],[-157.383804,-731.004547,148.171078],[-160.856094,-737.832733,149.495942],[-176.085403,-765.620514,143.900195],[-175.404861,-761.255462,142.433119],[-178.270767,-756.925079,138.607895],[-162.728409,-731.683441,142.965929],[-196.273453,-755.558807,119.095497],[-205.555679,-757.623810,110.982485],[-189.711136,-758.063812,126.993549],[-200.949478,-761.777008,119.610193],[-206.484878,-764.388885,115.751278],[-197.521927,-761.768768,122.958502],[-206.261856,-752.908050,105.612740],[-214.405594,-754.572113,96.689621],[-220.571915,-764.882171,97.898810],[-226.354874,-766.173492,88.844239],[-227.188431,-765.578888,83.442795],[-210.583633,-756.421661,104.310494],[-219.810989,-750.931854,79.494755],[9.245590,-760.845550,187.634476],[15.913986,-767.285125,185.413475],[-173.419571,-785.234466,151.761832],[-164.248306,-794.838104,158.616097],[-153.823318,-794.861480,165.824074],[-168.914688,-795.157989,155.191094],[-166.794144,-795.001617,146.645001],[-204.143143,-782.627960,128.791404],[-186.462540,-787.746734,142.151684],[-198.064346,-766.828094,131.628700],[-193.226456,-765.822662,129.141487],[-191.429092,-763.984588,129.588139],[-202.370682,-767.604156,129.128393],[-229.938431,-794.800384,109.377699],[-234.829910,-794.876190,105.512768],[-237.099014,-794.994720,103.204764],[-236.930191,-788.588470,103.135977],[-218.533646,-794.932647,111.508047],[-186.821487,-766.821991,140.061945],[-235.879532,-794.974456,76.527916],[-238.062027,-794.858734,96.101853],[-224.293228,-764.736786,89.722243],[174.911118,-794.923431,53.538842],[181.399582,-794.921234,44.368813],[167.390427,-794.957672,41.090401],[149.118637,-114.694832,-45.913704],[150.612412,-38.598007,63.318009],[151.972946,-42.588180,56.178185],[160.455063,-34.066421,17.723999],[158.440537,-28.192367,21.180367],[122.395432,-5.156845,122.130255],[36.940964,18.381195,195.002097],[34.600144,165.592499,19.092354],[118.253830,197.926483,39.577828],[22.854965,190.263092,16.684250],[82.825913,-291.347435,-72.277763],[77.608933,-296.543197,-69.561532],[90.493637,-293.821235,-74.584861],[145.060959,-224.741066,-57.604546],[142.859238,-235.098098,-60.982780],[131.223679,-37.774994,66.307080],[137.650498,-716.068206,7.500336],[136.909775,-714.212555,8.445626],[81.557602,-641.867340,-157.577171],[131.807236,456.789154,-75.552635],[22.169357,532.879731,142.142002],[-30.453323,-397.798355,-177.709617],[-24.518143,-411.699386,-177.155755],[34.413193,-795.049835,-238.564660],[27.214157,-795.079803,-253.554069],[76.703110,-774.272796,-221.745750],[-206.167496,-52.249450,58.168564],[-209.225601,-105.840278,47.937867],[-239.455887,36.976792,81.266915],[-265.126968,88.643524,125.495934],[-300.483169,94.191925,145.310080],[-292.203750,88.342926,146.392254],[-297.062820,95.454041,141.262055],[-288.029251,85.805634,139.279406],[-292.101028,87.567597,140.340966],[-292.257828,88.914948,138.282950],[-287.771744,86.473236,134.520794],[-297.784439,90.327820,145.412403],[-298.760391,98.947083,146.873980],[-296.521377,96.946015,153.020209],[-294.031387,98.883240,151.023520],[-300.778335,95.820771,149.019740],[-298.632950,91.415528,150.770903],[-298.039932,94.120117,152.526135],[-257.527603,76.190033,99.949143],[-261.294021,75.993744,100.332598],[-287.358108,73.364594,115.191043],[-290.108780,78.842804,115.016423],[-286.003555,80.298798,113.582611],[-266.790176,77.033661,105.304423],[-258.104751,78.993988,107.708076],[-282.693680,67.419770,96.223280],[-280.541153,79.523804,126.481263],[-283.617081,77.310456,130.697522],[-282.348709,73.556000,131.679754],[-276.927994,78.028809,129.799734],[-277.748855,81.832917,121.273453],[-280.115066,83.077210,116.424537],[-238.301712,75.483582,101.772189],[-233.548172,74.182434,105.711258],[-239.124588,74.532227,111.665105],[-244.943802,76.783020,108.530342],[-244.533584,76.393311,114.821170],[-235.576553,72.266449,85.407856],[-230.577347,73.780182,85.025925],[-213.213699,54.885498,62.606724],[-217.165054,41.855469,100.904431],[-199.111648,57.037659,98.753085],[-205.688736,53.288651,104.837454],[-214.174026,45.805542,110.707764],[-210.399856,52.359452,110.310499],[-223.207474,49.929398,124.136335],[-207.418594,49.289673,102.820851],[-202.702225,51.022110,95.244725],[-257.462906,40.291550,133.681197],[-265.638382,36.081635,148.791575],[-267.922989,36.358307,147.465067],[-267.632828,36.041001,156.140271],[-224.382217,37.776627,112.484346],[-235.815750,61.641297,130.497732],[-234.681290,56.397477,131.494285],[-251.245804,43.029373,147.314694],[-289.793899,66.091828,101.784567],[-299.382278,67.144593,107.560312],[-306.118240,60.375428,115.316531],[-315.818130,59.236313,121.565021],[-312.772232,63.342987,119.279758],[-305.550857,68.963471,116.572473],[-305.989456,67.012635,113.245545],[-309.377823,63.199677,115.647344],[-299.810867,70.062317,108.932113],[-312.190994,65.445465,123.467530],[-315.775833,62.840699,125.077237],[-296.540726,64.534943,107.478594],[-320.647964,61.269257,129.441903],[-319.161819,55.269593,134.563706],[-320.819473,55.872116,129.328290],[-320.524856,57.267578,133.778822],[-312.883987,54.576279,126.477795],[-318.634292,54.867417,126.722194],[-307.949173,58.641465,134.640102],[-307.444961,55.544541,132.908808],[-304.579117,56.467453,127.001534],[-306.329727,58.753372,95.561263],[-311.472916,66.311127,101.409518],[-310.662552,61.345673,95.465079],[-305.299087,65.089020,90.784268],[-296.538223,67.255219,86.789460],[-303.677994,70.875611,93.631649],[-304.471817,70.265534,97.065323],[-306.218277,67.745240,92.077664],[-297.720840,58.720063,126.949241],[-298.737686,70.871003,135.390604],[-304.920120,70.517334,137.376041],[-300.577591,69.827484,132.940343],[-314.176346,70.993103,136.819407],[-316.496414,72.627045,140.837803],[-316.895096,77.020386,142.212952],[-317.787857,81.999970,138.335057],[-309.753860,79.673859,139.323557],[-298.494522,77.559937,138.822565],[-295.714310,73.915436,137.149414],[-303.691910,76.857788,141.399542],[-308.229629,71.794495,138.664572],[-304.487869,72.432129,140.018696],[-309.614334,74.353272,140.210448],[-303.408462,70.957489,128.242433],[-304.465408,73.081086,125.274525],[-308.658218,70.589508,132.221193],[-318.335403,73.119110,134.270434],[-319.981155,78.235474,133.849478],[-317.628372,80.867401,132.246886],[-318.969986,75.956391,139.727814],[-315.724075,71.599396,133.390975],[-316.193191,75.001770,130.428357],[-305.844498,76.991028,124.448178],[-314.022842,77.914215,129.128701],[-310.232742,79.314881,127.689632],[-304.797134,81.808136,126.816525],[-302.563553,82.529633,128.696933],[-298.450394,82.924744,122.832827],[-301.233353,79.929810,121.929042],[-310.231888,81.477570,131.190792],[-313.581192,82.779572,134.257891],[-308.322830,81.567841,136.387236],[-303.956497,79.724793,139.291853],[-310.212051,71.585968,130.001192],[-297.733536,74.745148,120.624436],[-299.007522,78.010712,120.292611],[-292.891861,82.085236,117.779878],[-291.837051,75.725403,116.695185],[-293.276626,75.655762,136.569175],[-278.015457,74.915284,130.052876],[-279.229690,96.161194,140.219872],[-245.351150,58.210297,131.169945],[-139.142410,177.062897,86.680542],[-145.002823,178.997650,86.490055],[-138.128494,177.794220,81.917118],[-117.021377,149.378754,68.828820],[-114.504532,146.567414,67.548306],[-128.400406,148.033753,-26.921623],[-121.607803,185.039032,-21.599694],[-112.365250,268.417023,24.635079],[-97.053665,265.013275,26.966935],[-89.049759,265.756043,19.225281],[-124.464371,255.646576,12.619316],[-115.464798,159.675568,7.941933],[-119.317825,153.368744,71.093052],[-89.340042,-377.821350,3.581528],[-32.122452,-168.123424,154.122826],[-139.307693,-296.267364,-3.133041],[-139.047256,-174.938448,61.174317],[-212.979507,-104.224991,53.733902],[-232.666153,-757.819977,52.957482],[-200.526321,-718.400543,77.979756],[-203.559097,-727.978973,81.097103],[-242.590835,-795.021148,61.031502],[-144.019974,-706.601165,135.884603],[-153.057205,-705.263214,128.994952],[-87.908829,-558.924469,20.338517],[23.472153,-537.298523,-7.874473],[-41.197220,389.154755,63.083668],[-146.060135,137.193268,-0.536293],[-132.344009,-435.897567,-118.125999],[-76.394119,-310.715141,-180.148216],[-89.550186,-117.846008,-87.425850],[-235.663467,-769.231537,-126.109428],[-253.997024,-794.967865,-47.656105],[-159.023697,-515.490204,-164.895164],[-117.151199,-504.776764,-92.332588],[-118.748489,-493.943481,-90.444450],[-193.857559,498.809662,-31.850731],[-393.934830,738.183564,-93.679588],[-464.986954,772.055512,-137.859520],[-463.722061,773.629547,-134.119636],[-463.949844,772.156159,-142.131951],[136.344406,-795.024872,-161.116661],[5.550888,-794.893585,-265.653373],[-62.206070,-793.098724,189.427925],[-122.968033,-795.021820,-233.791649],[-100.270157,-794.944244,149.185065],[-125.819229,-795.061187,143.969063],[176.150925,-794.891205,-11.512306],[-127.794083,-795.084686,168.437287],[-111.754654,-795.095367,-213.858146],[46.773117,-794.930938,-226.982171],[-104.160904,-794.826385,173.011086],[-98.201248,-794.270355,185.906678],[-48.555679,-795.031524,-149.932243],[-20.482437,-794.864105,194.240624],[50.367172,-794.948578,112.049760],[-148.010269,-795.057769,44.428521],[-12.170792,-794.831939,139.460486],[-151.576858,-795.002472,151.716267],[24.962875,-794.980621,-22.832084]], + + 'uvs': [], + + 'faces': [[5,3799,0,0],[5,0,3801,0],[49655,3779,49644,0],[1,49643,2,0],[1,2,3,0],[3801,49655,49654,0],[6,49654,4,0],[4,49654,3,0],[5,3801,49654,0],[5,49654,6,0],[3749,8,9,0],[3809,9,11,0],[11,9,12,0],[12,9,10,0],[11,12,13,0],[13,14,15,0],[49641,28973,16,0],[17,16,18,0],[4851,18,28,0],[19,4850,26,0],[21,20,22,0],[21,22,24,0],[24,22,23,0],[24,23,25,0],[25,3658,49653,0],[49653,3658,4831,0],[24,4831,21,0],[20,26,22,0],[27,23,22,0],[27,22,4849,0],[2,4,3,0],[15,28,28973,0],[7,6,14,0],[7,14,10,0],[10,14,12,0],[12,14,13,0],[14,6,4,0],[15,4,28,0],[4,15,14,0],[7,10,8,0],[8,10,9,0],[2902,3783,50001,0],[30368,33,34,0],[35,33,67,0],[38760,30112,39,0],[39,30112,54,0],[54,40,65,0],[41,65,38754,0],[41,38754,64,0],[64,38754,42,0],[30092,43,44,0],[53,44,223,0],[53,223,45,0],[46,45,47,0],[46,47,48,0],[46,48,52,0],[48,293,291,0],[48,291,49,0],[50,51,52,0],[52,51,46,0],[50,52,49,0],[48,49,52,0],[41,64,53,0],[41,53,38752,0],[38752,57,65,0],[65,57,54,0],[39,54,35,0],[39,35,56,0],[39,56,55,0],[55,56,36,0],[36,56,35,0],[35,54,33,0],[33,54,34,0],[34,57,62,0],[62,57,58,0],[62,58,59,0],[59,58,60,0],[59,60,63,0],[34,62,63,0],[59,63,62,0],[54,57,34,0],[57,38752,58,0],[42,30089,64,0],[64,30089,30092,0],[64,30092,44,0],[64,44,53,0],[38,38760,36,0],[38,36,66,0],[49992,66,30060,0],[38,66,37,0],[37,66,49992,0],[32,33,30368,0],[67,68,36,0],[49995,28972,50001,0],[49995,50001,3783,0],[69,67,33,0],[33,32,69,0],[69,32,31,0],[70,31,38742,0],[38742,31,32,0],[38742,32,38741,0],[71,72,73,0],[38737,73,74,0],[38737,74,50,0],[50,74,51,0],[73,72,74,0],[32,30368,38741,0],[38741,30368,71,0],[31,68,69,0],[31,30,68,0],[50001,30,28883,0],[28888,30,30436,0],[28888,30436,75,0],[50001,28883,3641,0],[28883,28880,2918,0],[2918,28880,38702,0],[38702,76,49989,0],[49989,76,77,0],[77,38701,3609,0],[78,38455,3610,0],[3610,38455,79,0],[3610,79,80,0],[38700,79,81,0],[83,82,3611,0],[79,38456,81,0],[84,28902,28904,0],[85,86,87,0],[28906,28905,88,0],[88,28905,89,0],[89,28907,38765,0],[38765,28907,28949,0],[38765,28949,90,0],[91,38622,105,0],[92,93,104,0],[104,93,94,0],[104,94,103,0],[103,94,28879,0],[103,28879,100,0],[100,28879,95,0],[98,95,96,0],[98,96,97,0],[95,98,99,0],[95,99,100,0],[101,100,38763,0],[38763,100,38764,0],[38764,100,102,0],[100,99,102,0],[103,101,104,0],[104,101,92,0],[92,101,105,0],[105,101,38763,0],[105,38763,38762,0],[38762,91,105,0],[100,101,103,0],[98,97,99,0],[102,99,88,0],[88,99,28906,0],[28906,99,86,0],[86,99,97,0],[95,28879,38447,0],[38447,28879,38703,0],[38447,38703,106,0],[38447,106,38441,0],[38441,106,107,0],[38441,107,38442,0],[38442,107,108,0],[38442,108,109,0],[2927,108,110,0],[110,114,111,0],[111,114,112,0],[113,112,114,0],[113,114,38439,0],[113,38439,3584,0],[3584,38439,38440,0],[3584,38440,115,0],[116,49804,117,0],[117,49804,118,0],[118,93,119,0],[38629,120,121,0],[121,120,122,0],[414,122,123,0],[414,123,124,0],[124,125,126,0],[126,125,127,0],[167,30502,129,0],[130,166,30501,0],[130,30501,131,0],[130,131,132,0],[132,131,30489,0],[132,30489,133,0],[184,133,134,0],[184,134,135,0],[136,135,164,0],[136,164,137,0],[182,137,138,0],[139,165,30451,0],[30451,165,140,0],[30451,140,141,0],[141,140,146,0],[141,146,142,0],[142,146,143,0],[144,143,145,0],[145,143,146,0],[147,163,148,0],[148,163,159,0],[148,159,149,0],[149,159,150,0],[150,159,151,0],[151,162,28912,0],[28912,162,152,0],[38631,152,30492,0],[38631,30492,153,0],[28957,30497,30493,0],[28957,30493,154,0],[28957,154,155,0],[155,154,156,0],[155,156,38619,0],[38619,156,157,0],[38619,157,38618,0],[38618,157,125,0],[157,30498,158,0],[158,30498,30495,0],[158,30495,30500,0],[158,30500,128,0],[146,163,147,0],[160,135,161,0],[161,135,134,0],[135,160,164,0],[159,160,151,0],[151,160,161,0],[151,161,134,0],[151,134,162,0],[162,134,133,0],[137,164,165,0],[137,165,138,0],[138,165,139,0],[140,165,159,0],[140,159,163,0],[146,140,163,0],[164,160,165,0],[165,160,159,0],[129,166,167,0],[167,166,187,0],[167,187,168,0],[168,187,347,0],[173,168,357,0],[171,357,28854,0],[170,128,172,0],[170,172,169,0],[169,172,171,0],[128,30502,172,0],[171,172,357,0],[357,172,173,0],[168,173,30502,0],[168,30502,167,0],[30502,173,172,0],[166,130,174,0],[174,130,175,0],[175,176,330,0],[177,330,178,0],[178,132,179,0],[132,133,179,0],[179,185,180,0],[180,185,183,0],[30472,181,30455,0],[30455,181,182,0],[182,181,137,0],[137,181,136,0],[136,183,135,0],[136,181,183,0],[184,183,185,0],[184,185,133,0],[184,135,183,0],[133,185,179,0],[132,186,130,0],[130,186,176,0],[130,176,175,0],[176,186,330,0],[330,186,178,0],[166,174,187,0],[187,174,188,0],[187,188,189,0],[189,188,322,0],[189,322,350,0],[350,322,190,0],[352,190,30488,0],[352,30488,354,0],[354,30488,345,0],[345,30488,191,0],[193,191,192,0],[192,194,196,0],[196,194,195,0],[196,195,342,0],[198,199,200,0],[200,199,201,0],[200,201,202,0],[202,30399,203,0],[203,204,200,0],[200,204,30398,0],[200,30398,198,0],[198,30398,205,0],[198,205,197,0],[200,202,203,0],[203,30399,30400,0],[203,30400,206,0],[206,208,209,0],[209,208,210,0],[211,210,212,0],[211,212,213,0],[211,213,214,0],[214,213,215,0],[30321,215,216,0],[217,285,228,0],[228,285,218,0],[228,218,219,0],[228,219,220,0],[287,288,221,0],[221,288,38750,0],[221,38750,230,0],[230,38750,231,0],[231,38750,222,0],[222,47,223,0],[223,47,45,0],[223,44,43,0],[223,43,222,0],[222,43,232,0],[232,43,224,0],[232,224,225,0],[227,226,30320,0],[227,30320,217,0],[230,229,221,0],[287,221,220,0],[221,229,227,0],[221,227,228,0],[228,227,217,0],[221,228,220,0],[227,229,226,0],[226,229,230,0],[222,232,231,0],[226,230,225,0],[225,230,231,0],[225,231,232,0],[43,30092,30333,0],[43,30333,224,0],[225,224,30335,0],[225,30335,226,0],[265,211,233,0],[265,233,234,0],[234,233,235,0],[256,235,236,0],[256,236,30483,0],[30483,236,30481,0],[30481,236,30484,0],[30481,30484,237,0],[237,238,262,0],[262,238,239,0],[262,239,261,0],[261,241,240,0],[241,242,243,0],[244,240,245,0],[253,245,246,0],[252,246,4710,0],[252,4710,251,0],[251,247,248,0],[248,249,250,0],[251,250,254,0],[251,254,252,0],[252,254,253,0],[253,254,258,0],[258,254,259,0],[259,254,4731,0],[259,4731,264,0],[263,264,30473,0],[255,4726,256,0],[256,4726,30426,0],[256,30426,234,0],[256,234,235,0],[257,254,250,0],[250,251,248,0],[252,253,246,0],[258,245,253,0],[258,259,260,0],[261,260,262,0],[262,260,264,0],[262,264,263,0],[260,259,264,0],[245,240,4689,0],[245,4689,246,0],[240,241,243,0],[211,265,210,0],[210,265,266,0],[206,209,207,0],[209,210,266,0],[198,195,199,0],[199,195,194,0],[201,199,267,0],[201,267,268,0],[326,325,270,0],[269,270,271,0],[30462,272,30466,0],[30462,30466,30467,0],[274,273,276,0],[275,277,278,0],[278,277,219,0],[278,219,279,0],[281,309,38753,0],[283,38753,282,0],[30415,283,30417,0],[284,310,285,0],[284,285,217,0],[218,310,279,0],[279,310,280,0],[218,279,219,0],[220,286,289,0],[220,289,287,0],[287,289,290,0],[287,290,288,0],[286,220,219,0],[219,277,286,0],[286,277,297,0],[286,297,289,0],[290,289,294,0],[290,294,291,0],[290,291,292,0],[292,291,293,0],[49,291,294,0],[49,294,38746,0],[38745,38746,295,0],[38734,307,308,0],[38734,308,306,0],[306,308,296,0],[298,304,306,0],[298,306,296,0],[297,296,308,0],[297,308,289,0],[296,297,299,0],[296,299,298,0],[297,277,299,0],[299,277,300,0],[300,277,275,0],[300,275,301,0],[300,301,30461,0],[302,30461,138,0],[138,139,302,0],[302,139,30448,0],[302,30448,303,0],[304,303,305,0],[304,305,306,0],[302,298,30461,0],[30461,298,300,0],[300,298,299,0],[303,304,302,0],[302,304,298,0],[38746,294,307,0],[307,295,38746,0],[308,294,289,0],[294,308,307,0],[285,310,218,0],[310,284,309,0],[310,309,281,0],[281,280,310,0],[282,38753,284,0],[282,284,30417,0],[30417,283,282,0],[217,216,284,0],[274,276,311,0],[283,313,38753,0],[271,270,314,0],[271,314,272,0],[272,314,315,0],[272,315,30465,0],[30465,315,316,0],[316,177,317,0],[317,177,180,0],[179,180,178,0],[178,180,177,0],[330,177,329,0],[177,316,318,0],[318,316,315,0],[318,315,319,0],[320,319,321,0],[320,321,322,0],[322,321,324,0],[319,315,314,0],[319,314,323,0],[319,323,321,0],[321,323,30487,0],[321,30487,324,0],[322,324,190,0],[190,324,30488,0],[323,325,327,0],[327,325,326,0],[327,326,328,0],[192,328,194,0],[328,192,30486,0],[328,30486,327,0],[314,270,323,0],[323,270,325,0],[326,268,328,0],[328,268,267,0],[199,194,267,0],[267,194,328,0],[342,195,197,0],[197,195,198,0],[177,318,329,0],[329,318,319,0],[329,319,320,0],[175,330,320,0],[175,320,174,0],[174,320,188,0],[322,188,320,0],[329,320,330,0],[270,269,326,0],[326,269,268,0],[202,201,30464,0],[202,30464,331,0],[331,30460,332,0],[332,333,30422,0],[30422,333,313,0],[313,333,312,0],[192,196,193,0],[193,196,334,0],[336,335,337,0],[336,337,3907,0],[3907,337,338,0],[342,341,343,0],[335,343,337,0],[343,341,49805,0],[193,334,344,0],[344,345,191,0],[334,196,343,0],[346,347,348,0],[349,350,351,0],[351,350,190,0],[351,190,352,0],[353,352,354,0],[354,345,355,0],[355,345,30503,0],[30503,345,344,0],[30503,344,356,0],[356,344,334,0],[356,334,335,0],[189,350,347,0],[347,350,348,0],[348,350,349,0],[347,346,168,0],[168,346,357,0],[357,346,28855,0],[357,28855,28856,0],[28856,424,358,0],[358,424,359,0],[359,423,360,0],[360,423,422,0],[360,422,361,0],[361,421,363,0],[363,421,362,0],[363,362,364,0],[363,364,399,0],[399,364,416,0],[416,364,365,0],[416,365,366,0],[416,366,367,0],[367,366,393,0],[393,366,368,0],[393,368,391,0],[391,368,369,0],[369,3572,370,0],[370,3572,3571,0],[370,3571,371,0],[370,371,373,0],[370,373,372,0],[372,373,374,0],[376,374,375,0],[376,375,377,0],[378,377,379,0],[381,379,380,0],[380,116,117,0],[380,117,381,0],[381,117,382,0],[381,382,378,0],[378,379,381,0],[383,38629,121,0],[385,383,384,0],[385,384,386,0],[389,386,388,0],[387,388,376,0],[376,388,374,0],[376,377,387,0],[387,377,389,0],[387,389,388,0],[386,389,378,0],[386,378,385,0],[385,382,383,0],[385,378,382,0],[378,389,377,0],[383,121,384,0],[386,384,412,0],[121,122,411,0],[121,411,384,0],[38629,383,119,0],[119,383,390,0],[390,118,119,0],[118,390,117,0],[370,372,391,0],[391,372,392,0],[391,392,393,0],[393,392,388,0],[388,392,374,0],[374,392,372,0],[370,391,369,0],[367,393,394,0],[398,38617,395,0],[398,395,397,0],[397,395,413,0],[397,413,405,0],[405,413,396,0],[396,126,127,0],[126,396,124,0],[398,397,400,0],[398,400,399,0],[399,400,363,0],[363,400,401,0],[407,401,403,0],[407,403,402,0],[358,402,28854,0],[28854,402,169,0],[169,402,403,0],[169,403,406,0],[406,403,404,0],[404,403,401,0],[404,401,400,0],[400,397,404,0],[404,405,406,0],[406,405,396,0],[406,396,127,0],[170,406,127,0],[405,404,397,0],[363,401,407,0],[363,407,361,0],[361,407,402,0],[361,402,360,0],[360,402,359,0],[393,388,394,0],[394,388,408,0],[394,408,38617,0],[38617,408,409,0],[409,408,386,0],[409,386,412,0],[410,412,411,0],[411,412,384,0],[38617,409,395,0],[395,412,413,0],[413,412,410,0],[415,410,414,0],[415,414,124,0],[410,411,414,0],[414,411,122,0],[412,395,409,0],[396,415,124,0],[415,396,410,0],[386,408,388,0],[367,394,416,0],[394,38617,416,0],[416,38617,399,0],[368,366,28852,0],[368,28852,3573,0],[3573,28852,28850,0],[3573,28850,417,0],[420,421,422,0],[422,423,425,0],[425,423,424,0],[425,424,28857,0],[425,28857,3526,0],[3526,28859,3527,0],[3527,28859,426,0],[429,428,28863,0],[429,28863,28846,0],[28846,28863,430,0],[28866,28875,431,0],[28866,431,432,0],[432,431,28874,0],[432,28874,433,0],[432,433,429,0],[429,433,28847,0],[28847,433,434,0],[28847,434,3532,0],[3504,435,3372,0],[3504,3372,3370,0],[3372,436,3371,0],[436,437,3498,0],[439,438,30812,0],[439,30812,440,0],[30808,4066,441,0],[442,4062,443,0],[443,4059,23483,0],[23483,4059,444,0],[448,30667,449,0],[449,30667,450,0],[450,30666,451,0],[451,30666,452,0],[452,30631,23471,0],[23471,30631,453,0],[454,30673,455,0],[455,30673,456,0],[28787,456,457,0],[28787,457,458,0],[28787,458,459,0],[459,458,4261,0],[28779,4261,460,0],[460,4261,4192,0],[460,4192,28786,0],[28786,461,23464,0],[23464,4195,462,0],[23462,462,4196,0],[23462,4196,4197,0],[23462,4197,463,0],[463,4197,464,0],[464,465,466,0],[466,468,467,0],[467,468,4230,0],[467,4230,469,0],[469,4230,4235,0],[30762,4235,28777,0],[30780,28777,30783,0],[30784,30783,28777,0],[471,470,30756,0],[471,30756,472,0],[31167,473,474,0],[30782,31168,475,0],[30782,475,476,0],[476,475,30777,0],[30777,475,477,0],[477,478,479,0],[480,31181,482,0],[480,482,481,0],[481,482,32449,0],[32449,33350,32450,0],[32451,483,501,0],[484,501,509,0],[484,509,508,0],[484,508,485,0],[484,485,23381,0],[23381,485,486,0],[23431,32546,488,0],[489,490,491,0],[491,490,32542,0],[491,32542,492,0],[491,492,493,0],[493,492,32563,0],[493,32563,494,0],[500,32564,32567,0],[500,32567,496,0],[496,32567,495,0],[499,22018,498,0],[498,22018,497,0],[496,23410,500,0],[496,495,32493,0],[32493,495,499,0],[501,502,503,0],[503,502,28758,0],[28758,28755,510,0],[504,507,505,0],[506,504,505,0],[504,28775,507,0],[507,28772,508,0],[507,508,510,0],[510,508,509,0],[28758,510,503,0],[510,28755,507,0],[507,28755,505,0],[505,28755,28770,0],[32551,28618,32549,0],[32549,28618,512,0],[514,28626,32293,0],[515,32293,32283,0],[515,32283,516,0],[517,521,518,0],[518,519,33335,0],[33335,519,49569,0],[33335,49569,33373,0],[28608,33377,520,0],[49569,519,521,0],[521,519,518,0],[525,535,526,0],[526,527,32366,0],[32366,527,528,0],[32284,533,534,0],[32284,534,529,0],[529,534,530,0],[530,536,531,0],[531,536,33407,0],[523,33407,524,0],[529,530,33406,0],[529,33406,32284,0],[32284,532,533,0],[534,533,528,0],[534,528,527,0],[527,526,534,0],[526,535,534,0],[534,535,530,0],[530,535,536,0],[535,525,537,0],[537,525,538,0],[537,538,539,0],[539,540,541,0],[28609,541,542,0],[542,541,28578,0],[542,28578,28616,0],[28616,28578,543,0],[543,28578,33379,0],[543,33379,544,0],[543,544,545,0],[25539,545,546,0],[548,544,547,0],[548,547,28574,0],[548,28574,25557,0],[25561,25557,550,0],[550,25557,28574,0],[550,28574,551,0],[551,28574,28575,0],[551,28575,28573,0],[28573,28575,552,0],[25546,25551,553,0],[25552,553,25555,0],[25555,28572,33380,0],[25555,33380,554,0],[25553,554,28605,0],[25553,28605,28604,0],[25550,555,556,0],[558,33592,559,0],[559,33592,560,0],[559,560,33508,0],[561,562,563,0],[564,28696,565,0],[565,28695,566,0],[566,569,567,0],[49565,34991,34989,0],[49565,34989,568,0],[568,33606,49565,0],[566,35034,569,0],[571,33562,33549,0],[33549,572,33548,0],[33548,572,33547,0],[33550,34948,573,0],[574,575,602,0],[602,575,576,0],[576,577,578,0],[594,578,960,0],[594,960,579,0],[579,580,581,0],[583,591,28566,0],[28566,591,585,0],[28566,585,584,0],[585,593,28535,0],[28535,593,28534,0],[28534,593,586,0],[586,587,28532,0],[28532,587,679,0],[679,587,656,0],[656,587,588,0],[588,587,673,0],[672,589,590,0],[590,591,583,0],[591,590,589,0],[591,589,592,0],[587,592,673,0],[673,592,672,0],[592,587,586,0],[592,586,593,0],[592,593,591,0],[591,593,585,0],[601,594,595,0],[601,595,596,0],[599,597,598,0],[613,602,600,0],[601,578,594,0],[578,600,576,0],[578,601,600,0],[576,600,602,0],[33554,604,605,0],[33718,610,33717,0],[33717,610,33531,0],[33534,606,605,0],[34955,607,610,0],[33531,610,33532,0],[33532,610,607,0],[33534,607,606,0],[607,33534,33532,0],[34955,610,608,0],[602,603,574,0],[602,613,603,0],[603,613,611,0],[33553,611,28564,0],[33553,28564,604,0],[605,604,612,0],[605,612,33534,0],[611,33553,603,0],[600,601,596,0],[600,596,599,0],[613,599,598,0],[579,581,594,0],[594,581,614,0],[594,614,595,0],[34947,616,584,0],[34947,584,617,0],[617,584,33715,0],[33715,585,28535,0],[618,28535,28537,0],[620,619,621,0],[34290,621,622,0],[622,28519,623,0],[623,28519,624,0],[623,624,33989,0],[33989,624,28495,0],[33988,28495,625,0],[33987,28501,627,0],[33973,628,629,0],[33991,630,631,0],[33991,631,33992,0],[632,629,628,0],[34032,633,634,0],[34032,634,635,0],[34029,635,34034,0],[34034,634,34035,0],[636,637,34392,0],[34392,637,34326,0],[34394,640,641,0],[34394,641,28498,0],[9271,643,645,0],[645,643,644,0],[645,28510,646,0],[8951,28513,28514,0],[647,8951,649,0],[647,649,648,0],[648,649,650,0],[650,649,651,0],[651,28527,652,0],[652,28528,653,0],[655,28548,678,0],[678,28548,656,0],[657,678,677,0],[659,658,675,0],[659,675,660,0],[659,660,661,0],[659,661,924,0],[924,661,662,0],[924,662,909,0],[909,663,34980,0],[664,674,665,0],[34965,665,666,0],[588,667,656,0],[668,669,670,0],[670,669,671,0],[32189,671,672,0],[32189,672,590,0],[671,669,672,0],[672,669,673,0],[673,669,588,0],[588,669,668,0],[664,906,674,0],[674,662,661,0],[909,662,663,0],[662,674,663,0],[665,674,661,0],[665,661,660,0],[665,660,675,0],[665,675,666,0],[34965,666,676,0],[666,675,677,0],[676,677,667,0],[667,677,656,0],[678,656,677,0],[667,588,676,0],[677,676,666,0],[675,658,657,0],[677,675,657,0],[658,659,32188,0],[680,32186,681,0],[682,681,683,0],[687,28489,688,0],[687,688,689,0],[8955,946,8956,0],[8956,690,8962,0],[8962,690,691,0],[691,938,950,0],[691,950,947,0],[8961,947,703,0],[8961,703,949,0],[8959,949,705,0],[8959,705,8960,0],[8960,705,709,0],[8960,709,34457,0],[34457,709,706,0],[714,706,692,0],[714,692,700,0],[714,700,693,0],[693,694,35053,0],[35053,694,711,0],[696,695,697,0],[698,699,32081,0],[32081,699,32082,0],[32082,699,711,0],[32082,711,694,0],[32172,694,700,0],[701,32170,708,0],[702,708,703,0],[703,708,704,0],[692,706,709,0],[692,709,707,0],[707,709,710,0],[704,710,705,0],[710,704,708,0],[710,709,705,0],[693,700,694,0],[711,699,698,0],[712,697,695,0],[697,712,698,0],[700,692,707,0],[708,32170,710,0],[710,32170,713,0],[710,713,707,0],[707,713,700,0],[715,35053,34444,0],[34444,35053,34445,0],[8978,35053,712,0],[716,28472,717,0],[718,28474,8974,0],[8974,28474,9009,0],[9008,9009,719,0],[9041,720,721,0],[9041,721,722,0],[9019,28465,28467,0],[9019,28467,723,0],[724,725,28463,0],[28463,726,727,0],[28462,729,730,0],[35121,730,35122,0],[35122,730,35125,0],[731,35125,28461,0],[34929,732,31842,0],[34929,31842,35102,0],[7014,31851,734,0],[735,734,736,0],[7013,31882,737,0],[737,31885,7012,0],[739,35110,31880,0],[6986,741,742,0],[742,31858,6978,0],[6978,31858,31859,0],[6979,31859,807,0],[31911,31910,744,0],[31760,808,745,0],[745,808,803,0],[1338,747,813,0],[1338,813,1337,0],[1337,813,748,0],[748,812,749,0],[31890,800,1327,0],[1327,797,1326,0],[1326,798,750,0],[750,798,28352,0],[750,28352,28353,0],[750,28353,751,0],[754,756,755,0],[755,757,758,0],[758,31564,759,0],[759,31564,760,0],[28453,31565,31707,0],[31707,31565,28371,0],[31707,28371,28372,0],[31707,28372,763,0],[763,28372,31632,0],[763,31632,764,0],[764,765,31627,0],[31627,765,1299,0],[1299,765,1298,0],[1298,765,766,0],[767,768,31643,0],[31643,768,28366,0],[28014,28366,28365,0],[769,28015,28403,0],[28018,769,770,0],[28018,770,771,0],[771,28379,28066,0],[28066,28380,772,0],[28067,772,28381,0],[773,28394,28031,0],[28031,28394,28030,0],[28030,28394,28032,0],[774,28396,776,0],[776,28396,775,0],[28048,778,30960,0],[779,30963,780,0],[780,30963,781,0],[781,30962,28160,0],[28160,30962,782,0],[784,28389,31669,0],[31669,28389,785,0],[786,785,28358,0],[786,28358,787,0],[786,787,31712,0],[787,31713,31712,0],[31713,788,789,0],[789,788,28355,0],[789,28355,28349,0],[28349,28355,790,0],[790,28352,791,0],[791,28352,28351,0],[792,28351,28402,0],[792,28402,793,0],[792,793,28347,0],[28347,793,794,0],[796,794,795,0],[796,795,797,0],[797,795,799,0],[797,799,798,0],[798,1326,797,0],[796,797,800,0],[796,800,801,0],[31758,28350,802,0],[802,810,803,0],[803,810,745,0],[31725,804,31726,0],[805,807,31859,0],[744,806,808,0],[744,808,31760,0],[806,744,31910,0],[806,31910,743,0],[803,808,804,0],[804,808,809,0],[809,806,743,0],[743,807,809,0],[806,809,808,0],[745,810,746,0],[746,810,811,0],[811,812,813,0],[813,812,748,0],[746,811,747,0],[747,811,813,0],[796,801,31759,0],[796,31759,31757,0],[794,31757,31756,0],[794,31756,28347,0],[817,31889,31773,0],[817,31773,818,0],[28346,819,820,0],[31652,31765,31653,0],[31658,31660,31662,0],[822,31662,821,0],[826,827,28343,0],[826,28343,28203,0],[828,28343,28344,0],[828,28344,32000,0],[32000,829,32200,0],[834,833,31797,0],[835,836,28207,0],[837,846,838,0],[838,846,847,0],[28195,847,850,0],[839,850,840,0],[839,840,848,0],[841,842,32344,0],[32344,842,843,0],[32021,32020,836,0],[32021,836,31799,0],[31799,836,835,0],[31799,835,31797,0],[836,32020,28207,0],[28207,32020,844,0],[28207,844,837,0],[837,844,846,0],[846,844,845,0],[842,845,843,0],[843,845,844,0],[846,845,847,0],[847,845,840,0],[840,845,849,0],[849,842,841,0],[849,841,32207,0],[849,32207,848,0],[848,32207,28330,0],[849,848,840,0],[840,850,847,0],[842,849,845,0],[28228,839,28330,0],[28228,28330,28329,0],[28228,28329,28183,0],[28183,28329,851,0],[28183,851,28189,0],[28189,851,28336,0],[28189,28336,852,0],[853,852,31007,0],[853,31007,31005,0],[853,31005,854,0],[28185,855,856,0],[28185,856,857,0],[857,856,858,0],[858,856,859,0],[859,28340,860,0],[860,28340,31013,0],[860,31013,28230,0],[28230,31013,861,0],[28230,861,28231,0],[28232,28231,862,0],[28232,862,28235,0],[28235,862,32295,0],[1189,32295,32294,0],[1189,32294,31014,0],[1185,863,31003,0],[1185,31003,31008,0],[28338,864,865,0],[32297,866,867,0],[892,867,868,0],[871,865,864,0],[872,870,31010,0],[873,31010,32337,0],[32337,28325,874,0],[32125,32126,28324,0],[32125,28324,875,0],[876,875,28327,0],[876,28327,32349,0],[876,32349,32340,0],[876,32340,32147,0],[877,32355,878,0],[878,879,880,0],[880,879,32042,0],[32042,35086,32043,0],[32043,35086,35088,0],[32027,32017,882,0],[32030,882,32022,0],[32102,32066,883,0],[32103,883,35090,0],[32103,35090,885,0],[885,35090,884,0],[885,884,35057,0],[35057,35072,35058,0],[887,886,32077,0],[887,32077,35058,0],[886,887,32056,0],[32126,888,32338,0],[32338,888,889,0],[892,28322,32339,0],[32339,28322,893,0],[894,895,896,0],[32325,28319,897,0],[35036,899,900,0],[1031,900,32144,0],[1031,32144,1030,0],[1030,32144,901,0],[1030,901,32361,0],[32360,32361,903,0],[32360,903,902,0],[903,904,905,0],[905,904,907,0],[907,904,34982,0],[907,34982,906,0],[907,906,664,0],[907,664,908,0],[908,664,668,0],[668,670,908,0],[674,906,663,0],[906,34983,663,0],[663,34983,34980,0],[34976,909,922,0],[34976,922,35025,0],[35025,922,32135,0],[35025,32135,32134,0],[910,32135,34998,0],[910,34998,32132,0],[34998,912,911,0],[911,912,32141,0],[32141,912,913,0],[32141,913,32142,0],[914,32142,919,0],[914,919,32145,0],[32145,918,32143,0],[32143,918,916,0],[916,901,32144,0],[916,32144,32143,0],[903,32361,904,0],[904,32361,901,0],[904,901,915,0],[915,901,916,0],[917,923,34980,0],[34980,923,909,0],[917,918,919,0],[920,913,912,0],[912,34998,32135,0],[912,32135,920,0],[920,32135,922,0],[913,920,921,0],[921,917,919,0],[917,921,923,0],[923,922,909,0],[913,921,32142,0],[32142,921,919,0],[32145,919,918,0],[909,925,924,0],[925,34973,35017,0],[35017,34973,926,0],[926,34972,927,0],[927,34972,34977,0],[927,34977,928,0],[928,954,929,0],[952,953,930,0],[931,954,935,0],[935,954,932,0],[935,932,934,0],[934,932,933,0],[934,35006,935,0],[935,35008,931,0],[931,35008,936,0],[952,930,937,0],[939,938,943,0],[939,943,940,0],[940,943,32183,0],[32185,941,942,0],[942,28489,686,0],[942,941,943,0],[943,941,32183,0],[944,943,938,0],[944,945,28490,0],[28490,945,946,0],[28490,946,689,0],[8956,946,690,0],[946,945,690,0],[938,939,950,0],[703,947,35076,0],[948,937,930,0],[948,930,936,0],[705,949,704,0],[944,938,945,0],[945,938,691,0],[691,690,945,0],[939,937,950,0],[947,950,937,0],[939,940,951,0],[939,951,937,0],[937,951,952,0],[953,951,940,0],[952,951,953,0],[930,954,936,0],[936,954,931,0],[953,929,930,0],[930,929,954,0],[954,928,932,0],[956,955,957,0],[958,32191,582,0],[582,32191,959,0],[582,959,583,0],[582,581,958,0],[1073,579,960,0],[960,961,34952,0],[34952,961,577,0],[577,961,578,0],[580,579,962,0],[1074,962,963,0],[956,905,955,0],[955,905,907,0],[905,956,34963,0],[905,34963,902,0],[902,34963,964,0],[964,976,34967,0],[966,965,975,0],[966,975,967,0],[1026,968,1004,0],[970,971,972,0],[1008,973,974,0],[1008,974,1007,0],[1009,974,1021,0],[1021,974,972,0],[974,973,972,0],[1026,967,968,0],[968,967,975,0],[1014,977,978,0],[1014,978,32199,0],[1014,32199,33584,0],[33584,32199,1013,0],[1013,32199,32197,0],[980,32195,981,0],[1070,981,33562,0],[1070,33562,571,0],[981,1070,1069,0],[981,1069,982,0],[983,982,984,0],[1019,35034,33577,0],[1019,33577,985,0],[985,33577,986,0],[985,986,987,0],[1009,987,1007,0],[1007,987,28667,0],[1007,28667,28684,0],[1006,28684,988,0],[988,28670,989,0],[990,1068,991,0],[991,1068,992,0],[996,32372,1023,0],[1023,1039,32370,0],[997,1040,32330,0],[997,32330,998,0],[32322,999,1000,0],[998,1000,49584,0],[998,49584,997,0],[997,1024,1040,0],[1040,1024,1034,0],[1034,1024,32371,0],[32371,1024,1001,0],[1002,1001,1003,0],[1004,969,993,0],[969,970,991,0],[991,972,1005,0],[1005,972,973,0],[1005,973,1008,0],[1005,1008,989,0],[989,1008,988,0],[1007,974,1009,0],[1008,1007,1006,0],[1008,1006,988,0],[1010,985,1009,0],[1010,1009,1021,0],[1021,972,971,0],[968,975,1016,0],[968,1016,33585,0],[968,33585,1011,0],[1018,1013,32197,0],[1017,1015,965,0],[965,1016,975,0],[1017,965,34967,0],[1017,34967,976,0],[1014,1015,977,0],[1015,1017,977,0],[977,1017,976,0],[32197,979,983,0],[32197,983,1018,0],[1018,983,984,0],[1018,984,1020,0],[1019,985,1010,0],[1019,1010,1020,0],[1019,1020,984,0],[1020,1022,1018,0],[1020,1010,1021,0],[1020,1021,971,0],[1020,971,1022,0],[1022,971,970,0],[1022,970,1011,0],[983,979,980,0],[983,980,982,0],[982,980,981,0],[1018,1022,1013,0],[1013,1022,1012,0],[1012,1022,1011,0],[987,1009,985,0],[1007,28684,1006,0],[989,990,1005,0],[1005,990,991,0],[991,992,993,0],[991,993,969,0],[1004,993,994,0],[1023,995,996,0],[1004,995,1003,0],[1003,995,1002,0],[995,1023,1002,0],[972,991,970,0],[1027,1024,32357,0],[1027,32357,1032,0],[1032,32357,35036,0],[35036,32357,1025,0],[35036,1025,898,0],[1003,1026,1004,0],[1028,1033,1027,0],[1028,1027,1032,0],[1029,1028,1030,0],[1030,1028,1031,0],[1031,1028,1032,0],[1031,1032,35036,0],[1026,1033,967,0],[967,1033,1029,0],[967,1029,966,0],[1027,1033,1001,0],[1027,1001,1024,0],[1001,1033,1003,0],[1003,1033,1026,0],[32370,1040,1034,0],[1000,998,32322,0],[995,994,996,0],[996,994,1043,0],[996,1043,32372,0],[32372,1043,1035,0],[1035,1046,1042,0],[1042,1046,1062,0],[1042,1062,1036,0],[1036,1062,1037,0],[1039,1038,32362,0],[1041,32362,1040,0],[1040,32362,32330,0],[1038,1039,1036,0],[1036,1039,1042,0],[1039,32362,1041,0],[1040,32370,1041,0],[32370,1039,1041,0],[1039,32372,1042,0],[1035,1042,32372,0],[1037,32377,1036,0],[993,992,994,0],[1043,994,992,0],[992,1068,1043,0],[1046,1045,1047,0],[1046,1047,32364,0],[32364,1047,1048,0],[1048,1047,1049,0],[1051,1064,1067,0],[1051,1067,28670,0],[990,1067,1066,0],[990,1066,1068,0],[990,989,1067,0],[1067,989,28670,0],[1064,1051,32373,0],[1064,32373,1050,0],[1047,1050,1049,0],[32364,1052,1053,0],[32364,1053,1054,0],[28309,32307,1055,0],[49583,1055,32320,0],[49583,32320,28305,0],[1056,28305,1057,0],[1056,1057,1058,0],[1059,28306,32377,0],[32377,28306,32363,0],[1061,1060,1059,0],[1061,32377,1037,0],[1060,1061,1063,0],[1048,1052,32364,0],[1037,1063,1061,0],[1054,1037,1062,0],[1037,1054,1063,0],[1050,1047,1064,0],[1065,1045,1066,0],[1066,1045,1044,0],[1065,1067,1064,0],[1067,1065,1066,0],[1066,1044,1068,0],[1044,1043,1068,0],[1064,1047,1065,0],[1045,1065,1047,0],[984,982,1069,0],[984,1069,35034,0],[569,1069,570,0],[1070,34986,570,0],[570,1069,1070,0],[34986,1070,571,0],[978,977,1071,0],[1072,1071,962,0],[962,1071,963,0],[976,964,963,0],[976,963,977,0],[977,963,1071,0],[978,1071,1072,0],[32198,978,32193,0],[32193,1072,1073,0],[978,1072,32193,0],[1072,962,1073,0],[1073,962,579,0],[964,34964,1074,0],[1074,34964,32191,0],[1074,32191,580,0],[580,32191,958,0],[32191,34964,32190,0],[32190,34964,957,0],[907,908,955,0],[894,896,28302,0],[894,28302,1075,0],[32303,28303,32304,0],[32303,32304,32302,0],[1079,32316,1080,0],[1080,32316,32317,0],[1080,32317,28294,0],[28294,32317,28292,0],[1081,28292,32318,0],[1081,32318,1082,0],[1083,32312,1084,0],[1083,1084,28301,0],[1084,32240,32247,0],[1084,32247,28301,0],[28301,32238,1148,0],[1148,32238,1085,0],[1086,1085,1087,0],[1087,31120,1089,0],[1089,31120,1088,0],[1163,1089,1090,0],[1163,1090,1091,0],[1163,1091,1133,0],[1091,1102,1092,0],[1092,1112,1132,0],[1132,1112,1113,0],[1131,1113,1108,0],[31093,1108,1093,0],[31102,1093,31110,0],[31110,1107,1094,0],[1094,1107,1095,0],[1094,1095,1096,0],[1126,1098,1115,0],[1099,1109,31116,0],[31116,1109,1096,0],[31116,1096,1095,0],[31116,1095,31112,0],[31112,1101,1100,0],[1100,1101,31128,0],[31128,1106,1105,0],[31119,1114,1103,0],[1103,1091,1090,0],[1092,1102,1112,0],[1091,1103,1102,0],[1102,1103,1114,0],[1102,1114,1104,0],[1104,1105,1106,0],[1106,31128,1101,0],[1101,1095,1107,0],[1110,1107,31110,0],[1110,31110,1093,0],[1101,31112,1095,0],[1098,1099,1115,0],[1098,1097,1099,0],[1099,1097,31145,0],[1099,31145,1109,0],[1109,31145,1096,0],[1096,31145,31101,0],[1106,1101,1110,0],[1106,1110,1111,0],[1111,1110,1093,0],[1111,1093,1108,0],[1106,1111,1104,0],[1112,1102,1104,0],[1111,1108,1113,0],[1111,1113,1112,0],[1112,1104,1111,0],[1110,1101,1107,0],[1104,1114,1105,0],[1115,32432,1116,0],[1116,32432,1127,0],[1118,28749,1119,0],[1119,1125,1120,0],[1119,1120,1121,0],[33343,33344,1123,0],[1123,1124,33341,0],[33341,1124,1125,0],[1120,1125,1124,0],[1120,1124,1121,0],[1121,1124,1122,0],[1122,1124,33344,0],[33344,1124,1123,0],[1126,1115,1116,0],[33356,1116,1117,0],[1127,1117,1116,0],[1091,1092,1133,0],[1130,1134,28300,0],[1130,28300,1132,0],[1130,1132,1131,0],[1131,1132,1113,0],[1133,1092,1132,0],[1132,28300,1133,0],[1131,31162,1130,0],[1158,1134,31092,0],[1158,31091,30737,0],[1157,1135,31063,0],[1157,31063,1136,0],[1136,31063,1137,0],[1136,1137,1138,0],[1138,1137,30983,0],[1142,30983,30982,0],[1140,1141,32405,0],[32405,1142,30982,0],[30983,1142,1143,0],[1144,1143,1146,0],[1144,1146,1145,0],[1150,1169,1167,0],[1083,1147,1082,0],[1083,1082,32312,0],[1083,1148,1166,0],[1166,1148,1149,0],[1165,1150,1167,0],[1145,1151,49580,0],[1163,1152,1089,0],[1145,32390,1144,0],[1153,1154,1155,0],[1157,1156,30737,0],[30737,1156,1158,0],[1157,30737,1135,0],[1159,1156,1155,0],[1129,1159,1160,0],[1162,1160,1161,0],[1162,1161,49580,0],[1162,1152,1163,0],[1162,1163,1164,0],[1164,1163,1133,0],[1133,1128,1164,0],[1129,1160,1128,0],[1164,1128,1160,0],[1156,1159,1158,0],[1157,1136,1155,0],[1155,1136,1153,0],[1153,1144,32390,0],[1153,32390,1154,0],[1160,1159,1154,0],[1154,1159,1155,0],[1157,1155,1156,0],[1154,32390,1161,0],[1154,1161,1160,0],[1150,1151,1145,0],[1150,1145,1169,0],[1149,1150,1166,0],[1166,1150,1165,0],[1165,28291,1081,0],[1165,1081,1147,0],[1147,1083,1166,0],[1147,1166,1165,0],[1082,1147,1081,0],[28291,1165,1167,0],[1167,1169,1170,0],[1170,1171,1168,0],[1168,1171,1146,0],[1170,1169,1171,0],[1171,1169,1146,0],[30983,1143,1138,0],[1136,1138,1153,0],[1143,1144,1138,0],[1138,1144,1153,0],[1142,32405,1173,0],[1142,1173,1172,0],[1172,1173,1168,0],[1172,1168,1146,0],[1172,1146,1143,0],[1172,1143,1142,0],[1141,28290,1173,0],[1173,28290,1175,0],[1173,1175,1174,0],[1174,1175,1176,0],[1176,1175,1177,0],[28255,1207,1178,0],[1179,1180,1181,0],[1182,1198,28298,0],[28298,1198,1203,0],[1077,1078,1202,0],[32299,32300,1183,0],[1184,1192,1186,0],[31014,1185,1187,0],[31014,1187,1189,0],[31014,863,1185,0],[1185,28339,1192,0],[1192,28339,1186,0],[1186,32298,1184,0],[1184,32298,1183,0],[1183,32298,32299,0],[1187,1185,1192,0],[1187,1192,1188,0],[1188,1192,1190,0],[1190,1193,1191,0],[1191,1193,28240,0],[1191,28240,28236,0],[1191,28236,1188,0],[1188,28235,1189,0],[1188,1189,1187,0],[1191,1188,1190,0],[1200,1184,1183,0],[1200,1192,1184,0],[1190,1192,1193,0],[1193,1194,28240,0],[28240,1194,1195,0],[1205,1196,1197,0],[1197,1196,1180,0],[1180,1196,1181,0],[1181,1196,1198,0],[1199,1204,1200,0],[1200,1204,1193,0],[1200,1193,1192,0],[1199,1200,1201,0],[1198,1199,1203,0],[1200,1183,1201,0],[1201,1202,1203,0],[1203,1202,1078,0],[1203,1078,1079,0],[1201,1183,32300,0],[1203,1199,1201,0],[1193,1204,1194,0],[1196,1204,1198,0],[1205,1195,1194,0],[1194,1204,1205,0],[1205,1204,1196,0],[1204,1199,1198,0],[1181,1198,1182,0],[1181,1182,28296,0],[1181,28296,1179,0],[1179,28296,1178,0],[1177,1175,28255,0],[28255,1206,1207,0],[28218,1207,1209,0],[28218,1209,1208,0],[1208,1209,49577,0],[49577,1209,32406,0],[1211,32406,31182,0],[1211,31182,31191,0],[31191,31182,1212,0],[31191,1212,31189,0],[31189,28259,1213,0],[1215,1213,1214,0],[1219,31186,32219,0],[1219,32219,1218,0],[1219,1218,1220,0],[1220,1218,28212,0],[28210,28211,1221,0],[1221,32415,28208,0],[28245,32229,1224,0],[1224,32229,30875,0],[1224,30875,1225,0],[1224,1225,28252,0],[28252,30887,28249,0],[28249,30887,1226,0],[1228,1226,1227,0],[1228,1227,1229,0],[1229,1227,1230,0],[1230,31022,1231,0],[1232,1233,827,0],[827,1233,825,0],[825,1233,824,0],[824,1233,1236,0],[824,1236,823,0],[823,1236,1234,0],[1234,1236,28167,0],[28167,1236,1238,0],[1235,31662,822,0],[1234,28167,1235,0],[1234,1235,822,0],[822,823,1234,0],[1236,28176,1238,0],[1238,28176,1237,0],[1238,1237,1239,0],[28173,1240,28172,0],[1242,1241,1246,0],[1242,1246,1245,0],[1242,1245,1244,0],[1244,1243,28160,0],[28160,1243,781,0],[781,1243,49808,0],[49808,1243,1244,0],[31032,28158,28153,0],[28153,28158,1247,0],[1248,1247,1249,0],[1252,31034,1251,0],[1252,1251,1253,0],[1252,1253,28152,0],[28152,1253,1254,0],[1254,1255,1256,0],[1257,1256,1258,0],[1257,1258,31270,0],[31270,1258,1259,0],[1259,1260,30957,0],[30957,1260,4465,0],[4465,4464,1264,0],[1264,4464,30956,0],[1264,30956,1261,0],[1263,1262,4386,0],[1263,4386,30896,0],[30896,4386,4387,0],[30896,1259,30957,0],[1261,1262,1264,0],[1267,1268,28154,0],[28154,1268,30895,0],[28154,30895,4363,0],[28155,4363,4361,0],[1269,4361,1270,0],[1270,1271,4371,0],[31268,4371,1272,0],[1275,4397,1276,0],[1277,1278,1281,0],[1281,1278,31271,0],[1279,31271,31219,0],[28149,28091,28088,0],[1281,28150,1277,0],[1277,28088,1282,0],[28087,1282,1283,0],[28087,1283,28085,0],[28085,1283,1284,0],[28090,1285,1286,0],[1286,1285,28055,0],[1288,28055,1287,0],[1288,1287,1289,0],[1289,1287,1290,0],[28036,1290,5968,0],[28079,1291,1292,0],[1292,1293,1294,0],[1294,1293,5976,0],[1294,5976,5972,0],[1294,5972,1295,0],[1295,1296,28073,0],[28072,1296,5934,0],[28072,5934,28020,0],[28019,28020,5935,0],[28019,5935,1297,0],[28019,1297,5938,0],[5938,5939,5947,0],[767,31631,1298,0],[1299,1298,5948,0],[1299,5948,31629,0],[28407,5943,31703,0],[31705,1301,1302,0],[31705,1302,1303,0],[31705,1303,31700,0],[31700,1303,31702,0],[31701,5742,1304,0],[1306,1307,5749,0],[28414,5749,1308,0],[1309,1308,1310,0],[28450,1310,6022,0],[28450,6022,1311,0],[1311,6022,31550,0],[31550,1407,28449,0],[28449,1407,1312,0],[1313,1314,1315,0],[1315,1445,1316,0],[1347,1344,31559,0],[1347,31559,31558,0],[1347,31558,1317,0],[1318,31709,1319,0],[1319,1333,1320,0],[28441,1320,1328,0],[28441,1328,28443,0],[28443,1328,759,0],[28443,759,760,0],[1321,1332,1335,0],[1322,1335,1336,0],[1325,1336,748,0],[748,1336,1337,0],[755,1321,754,0],[754,1321,1335,0],[754,1335,1322,0],[1324,751,752,0],[751,1324,750,0],[750,1324,1326,0],[1323,1324,752,0],[1322,752,753,0],[1322,753,754,0],[752,1322,1323,0],[1322,1336,1325,0],[1322,1325,1323,0],[1326,1324,1323,0],[1327,1325,31890,0],[1325,1327,1326,0],[1325,1326,1323,0],[31890,1325,749,0],[749,1325,748,0],[755,758,1328,0],[1328,758,759,0],[755,1328,1331,0],[755,1331,1321,0],[1321,1331,1332,0],[1330,1331,1328,0],[1330,1328,1329,0],[1320,1333,1329,0],[1329,1333,31905,0],[1329,31905,6956,0],[1329,6956,1334,0],[1331,1340,1332,0],[1335,1332,1341,0],[1335,1341,1336,0],[1336,1341,1337,0],[1337,1341,1338,0],[6957,1339,1343,0],[6957,1343,6954,0],[6954,1343,6955,0],[6955,1343,1340,0],[1340,1343,1342,0],[1340,1342,1341,0],[1340,1341,1332,0],[1341,1342,1339,0],[1339,1342,1343,0],[1339,1338,1341,0],[1340,1331,1330,0],[1340,1330,1334,0],[1329,1334,1330,0],[1316,1344,31909,0],[31909,1344,1345,0],[31909,1345,28444,0],[28444,1345,28437,0],[28437,1345,1346,0],[28438,1346,1318,0],[1318,1346,1317,0],[1317,1346,1347,0],[1345,1344,1347,0],[1345,1347,1346,0],[1310,1308,1348,0],[1310,1348,6022,0],[31550,1349,1407,0],[1407,1349,6021,0],[1407,6021,1406,0],[1406,6028,1414,0],[1413,1414,1350,0],[1415,1350,1351,0],[1354,1353,6019,0],[28003,1356,1357,0],[1357,6008,27981,0],[28008,27981,6007,0],[28008,6007,1358,0],[28008,1358,27980,0],[1359,1358,6037,0],[1359,6037,6113,0],[1360,27978,1361,0],[1360,1361,1364,0],[1364,1361,6123,0],[6818,1363,6123,0],[6123,1363,1364,0],[1365,1366,1367,0],[1367,1366,1368,0],[1367,1368,1384,0],[1369,1370,1371,0],[1371,1370,1372,0],[1372,1370,27966,0],[1373,1610,1611,0],[1373,1600,1374,0],[1374,31472,49383,0],[49383,31472,36391,0],[49383,36391,31579,0],[1375,31579,31580,0],[1375,31580,1376,0],[31509,1378,1377,0],[31575,1377,1379,0],[27976,1381,1382,0],[27976,1382,1383,0],[1384,1383,1385,0],[27970,1385,31373,0],[27970,31373,1386,0],[1386,31373,1387,0],[1386,1387,27987,0],[27987,1387,1388,0],[1390,27961,27989,0],[27989,27961,1391,0],[1391,1392,49400,0],[49400,1392,27955,0],[1393,1448,1394,0],[1394,1448,1395,0],[1396,1395,1426,0],[27940,1397,1398,0],[1314,1402,1403,0],[1404,49410,1315,0],[1315,49410,1445,0],[1403,1404,1314,0],[31546,1406,1414,0],[1313,28447,1405,0],[1405,28447,1312,0],[1405,1312,1407,0],[1405,1407,1406,0],[1314,1313,1408,0],[1314,1408,1402,0],[1402,1408,31545,0],[1423,31545,1409,0],[1409,1410,1412,0],[27993,1411,1412,0],[1413,1350,1415,0],[1413,1415,31547,0],[1416,31547,1417,0],[1416,1417,28000,0],[1418,1351,31549,0],[31549,6026,1355,0],[1413,31547,1412,0],[1412,31547,27993,0],[1393,1394,27955,0],[1422,1394,1395,0],[1422,1395,1421,0],[1421,1395,1420,0],[1395,1396,1420,0],[1433,1419,1424,0],[1433,1424,1430,0],[1423,1430,1434,0],[1425,1424,1419,0],[1425,1419,1426,0],[1426,1419,1396,0],[1426,1427,1428,0],[1426,1428,1425,0],[1428,1427,1398,0],[1428,1398,1425,0],[1425,1398,1399,0],[1425,1399,1429,0],[1430,1423,1409,0],[1430,1409,1412,0],[31545,1423,1431,0],[31545,1431,27698,0],[27698,1431,1401,0],[1401,1431,1434,0],[1401,1434,1432,0],[1401,1432,1400,0],[1434,1424,1432,0],[1400,1432,1429,0],[1424,1429,1432,0],[1433,1411,1419,0],[1411,1433,1412,0],[1433,1430,1412,0],[1424,1425,1429,0],[1398,1427,27940,0],[1424,1434,1430,0],[1314,1404,1315,0],[1402,27698,1403,0],[1403,27698,1435,0],[1446,1436,27697,0],[1446,27697,1437,0],[1437,1438,31552,0],[31552,1438,1443,0],[1443,31893,31554,0],[31554,31893,1439,0],[31554,1439,31555,0],[31556,1439,1440,0],[31556,1440,6958,0],[31556,6958,1441,0],[1441,6953,31557,0],[31557,6953,1442,0],[31558,1442,1317,0],[1445,1444,1316,0],[1444,1445,49410,0],[1444,49410,1443,0],[49410,31552,1443,0],[31555,1439,31556,0],[1435,6939,1403,0],[1446,1437,31551,0],[1436,1446,6939,0],[1446,31551,6939,0],[1426,1447,1427,0],[1427,1447,27940,0],[27940,1447,1448,0],[27940,1448,1449,0],[1449,1393,27942,0],[31380,31381,1450,0],[1450,31385,1451,0],[1451,1468,31387,0],[1451,31387,1452,0],[1453,1452,1454,0],[1456,1455,31389,0],[31390,1457,1458,0],[27798,1458,1459,0],[27798,1459,27797,0],[27797,1459,1464,0],[27797,1464,1465,0],[27797,1465,27804,0],[27804,1465,1460,0],[27802,1460,1461,0],[1461,1460,6888,0],[6888,1460,27893,0],[27893,1460,1462,0],[1462,1460,1464,0],[1463,1464,1469,0],[1467,1469,1459,0],[1467,1459,1458,0],[1459,1469,1464,0],[1465,1464,1460,0],[1457,31389,49403,0],[1457,49403,1458,0],[1458,1466,1467,0],[1467,1466,31386,0],[31388,1468,1466,0],[1468,31386,1466,0],[1469,1467,31383,0],[1469,1470,1463,0],[1463,1470,1471,0],[6878,27927,49549,0],[6878,49549,6874,0],[6874,49549,1474,0],[1474,49549,49392,0],[1474,49392,1475,0],[1475,1379,1476,0],[1476,1379,1378,0],[1377,1378,1379,0],[1379,1475,1380,0],[1380,1475,49392,0],[1380,49392,1478,0],[1380,1478,49387,0],[1380,49387,1477,0],[1380,1477,1381,0],[1478,27928,49388,0],[49388,27928,1479,0],[1475,1476,6873,0],[1475,6873,1474,0],[1474,6873,1482,0],[1482,6873,31505,0],[1482,31505,1483,0],[1488,36389,31440,0],[31440,31501,1489,0],[31440,1489,27899,0],[1489,1490,1491,0],[1489,1491,31437,0],[31444,36491,36252,0],[31432,1492,1493,0],[1493,1492,1494,0],[1495,1494,36256,0],[1495,36256,36492,0],[36492,36256,36257,0],[36492,36257,36258,0],[36258,36261,1496,0],[1496,6255,1497,0],[1497,6254,1498,0],[1498,6254,1499,0],[1498,1499,1572,0],[1498,1572,1500,0],[1500,1572,49522,0],[1500,49522,1501,0],[1500,1501,1502,0],[1502,1501,1573,0],[1502,1573,1574,0],[1552,1504,1505,0],[1552,1505,36439,0],[36439,1505,1506,0],[1508,1510,1507,0],[1507,1506,1505,0],[1505,1504,1511,0],[1505,1511,1507,0],[1507,1511,1512,0],[1507,1512,1508,0],[1508,1560,1562,0],[1564,1509,1510,0],[1564,1510,1562,0],[1562,1510,1508,0],[1508,36278,1513,0],[1513,36278,1514,0],[1514,36278,6469,0],[1514,6469,1515,0],[36472,1516,21137,0],[36472,21137,1521,0],[1521,21137,1517,0],[37102,21130,1518,0],[1522,1518,1519,0],[1522,1519,1520,0],[1520,21119,1522,0],[1522,21119,37181,0],[1521,1517,37102,0],[1523,37102,1518,0],[1523,1518,1522,0],[37102,1523,1521,0],[1521,1523,37181,0],[1521,37181,36472,0],[37181,1523,1522,0],[1514,1515,1524,0],[1514,1524,1561,0],[1561,1524,1525,0],[1527,1528,1565,0],[1565,1528,1529,0],[1565,1529,1564,0],[1509,1529,36438,0],[36438,1531,1530,0],[1530,1531,1532,0],[1558,36445,1533,0],[1533,1534,1535,0],[1535,1534,1536,0],[1535,1536,20685,0],[1535,20685,1537,0],[1537,20685,20789,0],[1537,20789,36437,0],[36437,20789,1538,0],[36442,1538,1556,0],[1556,1538,20710,0],[1550,1539,1540,0],[1550,1540,1555,0],[1555,1540,36426,0],[1555,36426,1541,0],[1553,36595,1542,0],[1543,1544,1545,0],[1500,36594,1498,0],[1542,1547,1546,0],[1546,1547,1548,0],[1504,1548,1503,0],[1504,1503,1511,0],[1542,1546,1553,0],[1541,1553,1555,0],[1542,1543,1547,0],[1547,1543,1549,0],[1503,36275,1574,0],[1574,36275,1502,0],[36275,1503,1548,0],[36275,1548,1549,0],[1549,1548,1547,0],[1539,1550,1554,0],[1539,1554,1551,0],[1551,1554,1552,0],[1504,1552,1554,0],[1504,1554,1548,0],[1548,1554,1546,0],[1554,1550,1555,0],[1555,1553,1546,0],[1555,1546,1554,0],[20710,1539,1556,0],[36441,1556,1551,0],[36441,1551,36440,0],[36440,1551,1552,0],[1551,1556,1539,0],[1537,36437,1557,0],[1557,36443,1558,0],[1558,36443,36478,0],[1537,1557,1535,0],[1535,1557,1558,0],[1535,1558,1533,0],[1564,1529,1509,0],[1514,1561,1559,0],[1559,1561,1562,0],[1562,1563,1564,0],[1565,1563,1526,0],[1525,1526,1563,0],[1525,1563,1562,0],[1525,1562,1561,0],[1562,1560,1559,0],[1514,1559,1513,0],[1559,1560,1513,0],[1513,1560,1508,0],[1506,1507,1510,0],[1511,1503,1566,0],[36276,1567,1574,0],[36276,1574,1569,0],[36276,1569,1568,0],[1568,1569,6480,0],[6480,1569,1573,0],[6480,1573,1501,0],[6261,49522,1570,0],[1503,1574,1566,0],[1567,1566,1574,0],[1511,1566,1512,0],[1512,1566,1567,0],[1512,1567,1508,0],[1494,1492,36256,0],[1575,31520,36264,0],[36264,31520,1576,0],[1576,31512,1577,0],[1577,36497,1578,0],[1578,36497,36593,0],[6243,6502,31518,0],[6243,31518,6247,0],[1581,1582,6248,0],[1584,1587,1586,0],[1584,1586,6239,0],[6238,6239,6833,0],[6833,6239,1585,0],[1585,1586,1589,0],[1589,1586,1587,0],[1589,1587,6867,0],[1589,6867,1588,0],[1589,1588,1590,0],[1590,1588,31460,0],[36573,1590,31460,0],[36573,31460,1591,0],[1591,31460,31462,0],[1592,31526,31527,0],[1593,31527,31525,0],[6846,1593,1594,0],[6223,1594,1595,0],[1596,1597,1598,0],[1598,31457,31459,0],[1602,31469,1601,0],[1601,31469,31470,0],[31470,31471,1600,0],[1601,31470,1600,0],[31459,1599,1598,0],[1598,1599,1605,0],[1611,1603,1600,0],[1600,1603,1601,0],[1600,1373,1611,0],[1604,49970,1603,0],[1604,1603,1611,0],[1598,1605,1606,0],[1606,1605,1607,0],[1372,1609,27964,0],[27964,1609,6830,0],[27964,6830,1610,0],[1611,1610,1604,0],[1598,6808,1596,0],[6223,6813,6784,0],[1612,6080,6081,0],[1612,6081,6787,0],[6787,6081,6083,0],[6782,6083,6084,0],[6782,6084,6780,0],[6780,6084,6085,0],[6780,6085,1613,0],[6781,1613,6091,0],[6781,6091,6099,0],[29920,1615,1616,0],[29924,1617,1618,0],[29924,1618,29929,0],[29929,1618,49357,0],[29929,49357,1619,0],[1619,1620,1621,0],[6655,1623,1625,0],[6655,1625,1624,0],[1624,1625,5386,0],[5386,1625,1626,0],[5386,1626,6646,0],[6646,1626,49375,0],[6645,49375,29906,0],[49356,49355,6654,0],[6654,49355,1628,0],[1628,6208,1629,0],[1629,6208,6207,0],[1629,6207,6202,0],[1629,6202,1630,0],[1632,49377,1633,0],[1634,1635,1648,0],[1634,1648,1636,0],[1637,1647,1638,0],[1638,6222,5630,0],[5590,1641,1642,0],[1643,1642,1644,0],[5579,1644,5581,0],[5581,1644,5582,0],[6222,1638,1646,0],[1646,1638,1647,0],[1646,1647,5583,0],[5583,1647,1636,0],[5583,1636,1648,0],[5583,1648,1649,0],[1649,1648,5586,0],[1650,49433,49432,0],[1650,49432,6193,0],[1650,6193,1651,0],[1650,1651,5587,0],[1655,1656,1657,0],[1657,1656,1658,0],[1658,1656,1680,0],[1659,6190,1661,0],[1661,6190,29911,0],[1661,29911,1660,0],[1662,1664,1663,0],[1664,1665,31336,0],[29885,1668,1669,0],[1669,6064,29884,0],[29884,1670,1682,0],[1682,1670,29890,0],[1671,29891,1672,0],[1671,1672,1699,0],[1671,1699,1673,0],[1673,1681,1674,0],[1674,1681,1675,0],[1674,1675,31451,0],[31451,1675,1676,0],[1678,1677,1679,0],[1679,1659,1662,0],[1679,1662,1678,0],[1659,1679,1656,0],[1656,1679,1680,0],[1680,1679,1677,0],[5572,1680,1675,0],[5572,1675,1681,0],[1676,1675,1680,0],[1676,1680,1677,0],[29886,1682,29882,0],[29882,1682,1671,0],[1671,1682,29891,0],[1683,1684,1685,0],[1687,1685,1686,0],[1687,1686,1688,0],[1687,1688,1689,0],[1689,1688,1690,0],[1689,1690,1691,0],[31366,31367,1692,0],[1692,29246,1693,0],[1693,29246,29226,0],[1693,29226,1701,0],[1694,29895,1695,0],[1695,29252,1696,0],[1697,29250,29871,0],[1697,29871,29872,0],[1699,1672,1700,0],[1698,1700,29872,0],[29872,1700,1703,0],[29872,1703,1697,0],[1700,1672,29881,0],[1700,29881,1703,0],[1699,1700,1698,0],[1694,1695,1701,0],[1701,1695,1702,0],[1702,1692,1693,0],[1702,1693,1701,0],[1702,31366,1692,0],[1695,1696,29893,0],[29893,1696,1697,0],[29893,1697,1703,0],[29890,1670,1683,0],[1683,1670,1684,0],[1709,6062,6061,0],[1709,6061,31345,0],[31449,1706,1705,0],[1705,1706,6130,0],[1705,6130,31349,0],[31349,31363,31347,0],[31347,31363,5674,0],[31347,5674,1707,0],[1707,5674,5673,0],[1710,1708,1686,0],[1686,1685,1709,0],[1686,1708,1688,0],[1688,1708,1712,0],[1712,1708,1710,0],[1712,1710,1711,0],[31365,1712,6131,0],[31365,6131,1713,0],[1713,6132,5669,0],[31352,5669,5668,0],[29253,5668,5655,0],[1715,1714,6148,0],[1715,6148,1716,0],[1716,1717,29254,0],[1728,1731,1721,0],[1722,1721,6182,0],[1727,1722,1723,0],[1723,1740,1729,0],[1729,1740,29239,0],[1729,29239,1730,0],[1730,29238,1724,0],[1729,1725,1726,0],[1729,1726,1727,0],[1727,1728,1722,0],[1722,1728,1721,0],[1720,1728,1719,0],[1727,1723,1729,0],[1730,1724,1725,0],[1730,1725,1729,0],[1719,1718,29254,0],[1719,29254,1720,0],[1720,29254,1717,0],[1720,5663,1731,0],[1731,1732,6183,0],[1733,5645,1734,0],[1735,1736,1737,0],[1737,1741,6179,0],[6179,1741,29902,0],[6179,29902,6180,0],[6180,29902,29901,0],[6180,29901,1738,0],[1738,29901,1739,0],[1738,1739,1723,0],[1723,1739,1740,0],[1723,1722,1738,0],[1741,6178,1742,0],[1741,1742,1743,0],[1743,1742,1744,0],[5551,5642,5550,0],[5550,5642,5641,0],[5550,5641,1745,0],[1755,1746,1747,0],[1747,5638,1748,0],[1748,5638,1749,0],[1748,1749,5636,0],[5636,5639,29968,0],[5637,1750,1751,0],[30036,30004,1751,0],[1751,30004,1752,0],[1752,30004,30006,0],[1752,30006,1753,0],[1754,29988,1748,0],[1748,29988,1747,0],[1747,29988,30015,0],[1747,30015,1755,0],[1755,30015,1756,0],[1746,1756,5455,0],[1746,5455,1757,0],[1746,1757,1745,0],[1745,1757,5550,0],[5550,1757,5457,0],[5550,5457,29847,0],[29847,5457,5480,0],[5475,5474,1758,0],[1758,5474,1759,0],[1759,1760,5556,0],[5556,1760,29898,0],[49434,1761,1762,0],[5615,1763,29848,0],[5420,1764,1765,0],[5420,1765,1766,0],[5416,5499,5408,0],[5408,5499,1767,0],[1767,5499,5427,0],[1769,1768,1770,0],[1769,1770,5351,0],[5351,1770,1771,0],[1771,5429,5355,0],[5355,5429,5548,0],[5548,1772,5356,0],[5356,1772,1773,0],[1775,5547,1776,0],[29375,1776,5431,0],[29375,5431,5432,0],[29375,5432,1777,0],[1777,5432,5433,0],[1777,5433,1778,0],[1779,5339,1780,0],[1780,5339,5341,0],[1780,5341,29382,0],[1780,29382,1781,0],[1776,1781,1782,0],[1776,1782,5247,0],[5247,1782,1783,0],[5246,1783,1784,0],[5246,1784,5037,0],[5037,1784,5036,0],[5036,1784,5343,0],[5036,5343,1785,0],[1785,5343,5344,0],[1785,5344,1787,0],[1785,1787,1786,0],[1786,1787,1788,0],[1790,1789,5333,0],[1790,5333,5262,0],[5262,5333,1791,0],[1791,1792,1793,0],[1793,1794,1795,0],[1795,1794,5260,0],[5260,3707,1797,0],[1796,1797,1798,0],[5264,1798,1799,0],[5264,1799,5000,0],[5000,1799,4999,0],[4999,1799,1800,0],[1800,29381,1801,0],[1801,29381,1802,0],[1801,1802,1812,0],[1812,1802,1803,0],[1812,1803,1804,0],[1805,1804,29334,0],[1805,29334,1806,0],[1807,1809,1808,0],[1809,3673,1810,0],[1810,3673,1852,0],[4982,4980,1811,0],[1805,4976,1804,0],[1804,4976,1812,0],[1801,1812,1813,0],[1801,1813,4998,0],[4998,1813,1814,0],[1814,1813,1815,0],[1814,1815,1816,0],[1816,1815,1817,0],[5005,4988,5006,0],[5006,4988,4989,0],[5006,4989,1818,0],[5009,1818,4993,0],[5009,4993,5010,0],[5010,4993,1819,0],[1821,1820,4968,0],[1821,4968,1822,0],[1822,4966,5328,0],[5328,4966,1823,0],[1823,4966,1844,0],[1823,1844,4965,0],[1823,4965,1824,0],[1825,1838,49259,0],[49259,1838,1840,0],[49259,1840,49251,0],[49251,1840,1826,0],[1826,1840,1839,0],[1826,1839,1933,0],[1933,1839,1827,0],[1827,1839,1835,0],[1827,1835,1828,0],[1828,1829,1934,0],[1934,1829,1830,0],[1831,1895,1832,0],[1831,1832,1833,0],[1833,1832,49306,0],[49306,1834,1835,0],[1837,1836,1824,0],[1837,1824,4965,0],[1824,1836,1825,0],[1825,1836,1838,0],[1838,1836,1839,0],[1838,1839,1840,0],[1835,1839,1836,0],[1835,1836,49306,0],[49306,1837,1842,0],[1841,1842,1843,0],[1843,1844,1845,0],[29408,1846,1847,0],[29408,1847,1848,0],[1848,1847,4970,0],[4964,4984,1851,0],[1851,4981,29389,0],[29389,4981,1881,0],[1881,1852,1853,0],[1853,3673,1854,0],[1854,4883,1855,0],[1855,4883,1856,0],[1857,1858,49751,0],[49772,49773,49754,0],[49772,49754,1859,0],[1859,1860,1880,0],[1880,1860,1861,0],[1861,1862,2840,0],[2840,1862,1876,0],[1876,1862,1863,0],[1876,1863,1864,0],[1876,1864,49757,0],[4863,1868,1869,0],[4863,1869,49761,0],[4874,49761,1871,0],[4874,1871,1870,0],[1870,1871,1872,0],[1873,1872,1874,0],[49757,1877,1876,0],[1876,1877,2840,0],[1861,2840,2842,0],[1861,2842,1880,0],[1880,2842,1878,0],[2815,2821,4882,0],[2815,4882,1857,0],[1810,1852,1881,0],[1850,4964,4959,0],[1883,1882,1885,0],[1883,1885,1884,0],[1885,29395,29397,0],[2658,1890,1889,0],[2658,1889,2663,0],[4952,2663,1886,0],[2663,1889,1886,0],[1886,1889,1887,0],[1885,29397,1890,0],[1893,1892,4957,0],[1893,4957,49304,0],[49305,1894,2662,0],[49305,2662,1895,0],[1895,2662,1896,0],[1896,1898,1897,0],[1897,1898,1929,0],[1929,1898,1899,0],[1929,1899,1921,0],[1921,1899,1900,0],[1921,1900,1901,0],[1921,1901,1902,0],[1921,1902,1922,0],[1922,1902,1903,0],[1903,1905,1904,0],[1904,1905,1906,0],[1908,1906,1907,0],[1908,1907,1909,0],[1909,1910,1928,0],[1928,1910,1911,0],[1911,1912,1913,0],[1913,1912,1914,0],[1913,1914,1915,0],[1915,1914,49443,0],[1915,49443,1916,0],[1916,49298,1917,0],[1917,1918,1927,0],[1927,1918,1924,0],[1918,1919,1920,0],[1921,1922,1920,0],[1920,1922,1926,0],[1920,1926,1918,0],[1918,1926,1924,0],[1924,1923,1925,0],[1908,1909,1923,0],[1923,1909,1925,0],[1926,1922,1903,0],[1924,1926,1923,0],[1923,1926,1903,0],[1927,1924,1925,0],[1917,1927,1915,0],[1915,1916,1917,0],[1928,1913,1927,0],[1928,1911,1913,0],[1913,1915,1927,0],[1927,1925,1928,0],[1928,1925,1909,0],[1923,1904,1908,0],[1908,1904,1906,0],[1921,1920,1929,0],[1929,1920,1919,0],[1929,1919,49455,0],[49455,49299,1930,0],[1930,49299,49301,0],[1828,1930,49301,0],[1828,49301,1931,0],[1931,49301,49302,0],[1931,49302,1932,0],[1826,1933,1932,0],[1932,1933,1931,0],[1931,1933,1827,0],[1931,1827,1828,0],[1828,1934,1930,0],[1930,1934,1897,0],[1897,1934,1896,0],[49455,1897,1929,0],[1896,1934,1895,0],[1934,1830,1895,0],[1910,3095,1935,0],[1938,1937,3102,0],[38480,3102,1939,0],[38480,1939,1940,0],[49726,1940,1941,0],[1941,1942,1943,0],[1944,1943,3074,0],[1954,1945,1946,0],[1954,1946,1947,0],[1947,1946,1948,0],[38471,1950,1951,0],[1953,1951,1952,0],[1953,1952,1955,0],[1953,1955,1954,0],[1945,1944,3074,0],[1945,1954,1944,0],[1954,1947,1953,0],[1953,1947,1951,0],[1947,1948,1949,0],[1947,1949,1951,0],[1954,1955,1944,0],[1944,1955,1956,0],[1943,1956,3156,0],[1943,3156,1941,0],[1943,1944,1956,0],[38471,1951,1949,0],[1911,1910,1957,0],[1911,1957,1961,0],[1961,1957,1960,0],[1960,1957,2651,0],[1960,2651,2648,0],[1959,1958,2648,0],[1912,1961,1914,0],[1910,1935,1957,0],[1957,1935,2651,0],[2651,2650,2655,0],[2653,1962,2652,0],[2653,2652,1963,0],[2653,1963,29553,0],[1964,29551,2649,0],[2649,29551,1965,0],[1967,2062,1968,0],[1968,2065,1969,0],[1969,2065,2018,0],[1969,2018,1970,0],[1969,1970,29554,0],[29554,1970,2017,0],[1972,2016,2014,0],[29558,1972,2008,0],[29558,1973,29557,0],[29557,1973,1997,0],[29557,1997,1974,0],[1974,1975,1976,0],[1976,29566,49451,0],[49451,29566,29563,0],[49451,29563,29562,0],[1977,29562,1958,0],[1978,49453,2648,0],[2648,49453,1980,0],[2648,1980,1979,0],[1980,29567,49444,0],[49444,29567,49445,0],[29565,1999,1982,0],[1982,1999,38111,0],[38111,1999,2001,0],[38111,2001,1983,0],[1983,2001,29469,0],[1984,2003,1994,0],[1984,1994,1985,0],[1985,1994,1993,0],[1985,1993,1986,0],[29455,2645,1988,0],[1990,1988,1989,0],[1990,1989,2072,0],[2070,2072,2644,0],[2070,2644,1991,0],[2066,2647,2642,0],[2066,2642,1992,0],[1995,1992,1994,0],[1994,1992,1993,0],[1996,1995,2002,0],[1996,2002,2004,0],[2004,1998,1997,0],[1997,1998,1974,0],[1974,1998,1975,0],[1975,1998,2000,0],[29565,2000,1999,0],[1999,2000,2001,0],[2001,2000,2002,0],[29469,2001,2003,0],[2003,2001,2002,0],[2003,2002,1995,0],[1995,1994,2003,0],[2004,2000,1998,0],[2002,2000,2004,0],[1992,1995,2066,0],[2073,2006,2007,0],[1972,2011,2008,0],[29558,2008,2009,0],[29558,2009,1973,0],[1973,2010,1997,0],[1997,2010,2004,0],[2009,2007,2006,0],[2009,2006,2010,0],[2010,2005,2004,0],[2004,2005,1996,0],[1996,2005,2066,0],[1996,2066,1995,0],[2067,2005,2010,0],[2067,2010,2006,0],[2009,2010,1973,0],[2011,2013,2094,0],[2094,2013,2012,0],[2094,2012,2095,0],[2097,2012,2013,0],[2013,2011,2014,0],[2013,2014,2015,0],[2016,1971,2028,0],[2028,1971,2017,0],[2028,2017,38403,0],[38403,2017,1970,0],[2060,2061,2022,0],[2022,2063,2023,0],[2023,2063,2019,0],[2019,2063,2064,0],[2019,29550,2034,0],[2034,29550,2020,0],[2021,29546,2020,0],[38402,2022,2032,0],[38402,2032,2027,0],[2028,38403,2027,0],[2022,2023,2031,0],[2031,2023,2024,0],[2024,2035,2025,0],[2025,2036,2084,0],[2030,2026,2033,0],[2029,2033,2092,0],[2029,2092,2091,0],[2091,38541,2027,0],[2027,38541,2028,0],[2028,2015,2016,0],[2091,2031,2029,0],[2025,2084,2030,0],[2025,2030,2024,0],[2084,2026,2030,0],[2024,2030,2029,0],[2024,2029,2031,0],[2027,2032,2091,0],[2091,2032,2031,0],[2029,2030,2033,0],[2032,2022,2031,0],[2023,2019,2024,0],[2034,2024,2019,0],[2024,2034,2035,0],[2035,2051,2025,0],[2036,29548,2037,0],[2037,29548,2038,0],[2039,2054,2040,0],[38409,2040,2041,0],[38409,2041,2042,0],[2042,2041,2043,0],[38416,2043,2044,0],[38416,2044,2211,0],[2211,2044,2045,0],[2046,2045,2206,0],[2204,2205,2058,0],[2204,2058,2047,0],[2047,2058,2048,0],[29544,2048,2049,0],[29542,2049,2050,0],[29547,2054,29548,0],[29548,2054,2038,0],[29548,2036,2051,0],[2020,2051,2035,0],[2020,2035,2034,0],[2025,2051,2036,0],[2020,29546,2051,0],[2044,2043,2053,0],[2056,2053,2052,0],[2052,2053,2041,0],[2052,2041,2040,0],[2041,2053,2043,0],[2039,2158,2054,0],[29545,2054,29547,0],[2038,2054,2158,0],[2054,29545,2040,0],[2040,29545,2050,0],[2040,2050,2052,0],[2052,2050,2055,0],[2055,2049,2048,0],[2049,2055,2050,0],[2052,2055,2056,0],[2056,2055,2059,0],[2056,2059,2057,0],[2045,2057,2206,0],[2206,2057,2205,0],[2205,2057,2058,0],[2059,2058,2057,0],[2057,2045,2053,0],[2057,2053,2056,0],[2053,2045,2044,0],[2018,2065,2060,0],[2061,2062,38404,0],[38404,1967,1966,0],[2062,1967,38404,0],[2022,2061,2063,0],[2061,2060,2065,0],[2061,2065,2062,0],[2062,2065,1968,0],[2016,2015,2014,0],[2014,2011,1972,0],[2066,2067,2647,0],[2647,2067,1991,0],[2066,2005,2067,0],[1991,2067,2068,0],[1991,2068,2070,0],[2070,2068,2069,0],[2069,2100,2070,0],[2070,2100,2071,0],[2070,2071,2072,0],[2067,2006,2068,0],[2069,2068,2073,0],[2069,2073,2074,0],[2075,2076,2636,0],[2636,2076,2077,0],[2077,2076,2078,0],[2077,2078,2079,0],[2079,2078,2086,0],[2079,2086,2080,0],[2184,2081,2160,0],[2082,2081,2084,0],[2037,2083,2036,0],[2036,2083,2084,0],[2084,2083,2082,0],[2026,2084,2085,0],[2087,2086,2078,0],[2087,2078,2076,0],[2086,2088,2080,0],[2080,2088,2184,0],[2088,2085,2184,0],[2085,2081,2184,0],[2081,2085,2084,0],[2088,2089,2085,0],[2085,2089,2026,0],[2088,2086,2090,0],[2088,2090,2089,0],[2026,2089,2033,0],[2033,2089,2090,0],[2086,2096,2090,0],[2090,2096,2033,0],[2033,2096,2097,0],[2091,2097,2098,0],[2092,2033,2097,0],[2092,2097,2091,0],[2074,2073,2075,0],[2075,2073,2093,0],[2095,2012,2096,0],[2012,2097,2096,0],[2098,2013,2015,0],[2013,2098,2097,0],[2075,2093,2099,0],[2075,2099,2076,0],[2076,2099,2087,0],[2095,2096,2087,0],[2094,2095,2099,0],[2094,2099,2093,0],[2095,2087,2099,0],[2096,2086,2087,0],[2068,2006,2073,0],[2073,2007,2093,0],[2093,2007,2008,0],[2093,2008,2011,0],[2093,2011,2094,0],[2100,2101,2071,0],[2071,2101,2515,0],[2515,2101,2102,0],[2517,2102,2103,0],[2517,2103,2504,0],[2504,2103,2104,0],[2504,2104,2105,0],[2106,38036,2493,0],[2493,2107,2497,0],[2497,2107,2108,0],[2111,38025,2110,0],[2112,38031,2134,0],[2112,2134,38055,0],[38055,2134,2249,0],[38055,2249,38056,0],[38056,2249,2113,0],[2114,2113,2130,0],[2114,2130,2115,0],[2114,2115,38059,0],[38059,2115,2116,0],[38059,2116,38061,0],[38061,2116,38062,0],[38062,2116,2250,0],[38062,2250,38083,0],[38083,2250,2117,0],[38083,2117,2125,0],[38434,2123,2252,0],[2120,2252,2121,0],[38602,2121,2122,0],[2119,2118,2124,0],[2124,2125,2127,0],[2128,2127,2117,0],[2128,2117,2250,0],[2128,2250,2129,0],[2129,2116,2115,0],[2219,2115,2130,0],[2131,2130,2132,0],[2246,2134,38031,0],[2246,38031,2135,0],[2140,2135,2257,0],[2140,2257,38033,0],[38034,38033,2258,0],[38034,2258,38094,0],[2132,2133,2136,0],[2136,2245,2137,0],[2137,2245,2138,0],[2138,2245,2139,0],[2244,2140,38033,0],[2244,38033,38041,0],[2142,38041,2141,0],[2142,2141,2143,0],[2144,2143,2640,0],[2144,2640,2145,0],[2146,2641,2171,0],[2146,2171,2147,0],[2148,2171,2149,0],[2148,2149,2238,0],[2192,2150,2176,0],[2192,2176,2183,0],[38406,2153,2152,0],[2152,2153,2154,0],[2155,2178,2152,0],[2152,2178,2156,0],[2156,2178,38401,0],[38401,2178,2161,0],[38401,2161,2157,0],[2157,2161,38400,0],[38400,2161,2163,0],[38400,2163,2186,0],[38400,2186,38399,0],[38399,2186,2159,0],[2158,2083,2037,0],[2083,2158,2082,0],[2082,2158,2159,0],[2082,2159,2160,0],[2160,2159,2186,0],[2163,2161,2162,0],[2164,2162,2165,0],[2166,2165,2190,0],[2190,2180,2191,0],[2191,2180,2172,0],[2168,2174,2169,0],[2149,2170,2176,0],[2168,2167,2173,0],[2172,2173,2632,0],[2172,2632,2191,0],[2169,2174,2175,0],[2169,2175,2177,0],[2177,2175,38395,0],[2177,38395,2183,0],[2170,2177,2176,0],[2183,2176,2177,0],[2170,2169,2177,0],[2174,2168,2173,0],[2173,2172,38398,0],[2173,38398,2174,0],[2632,2173,2167,0],[2161,2178,2162,0],[2162,2178,2155,0],[2162,2179,2165,0],[2165,2179,2190,0],[2190,2179,2154,0],[2190,2154,2180,0],[2179,2162,2155,0],[2179,2155,2154,0],[2154,2153,38397,0],[38397,2153,2182,0],[38397,2182,2181,0],[2181,2182,38395,0],[2183,2151,2192,0],[38395,2182,2183,0],[2183,2182,2151,0],[2180,2154,38397,0],[2082,2160,2081,0],[2184,38405,2185,0],[2184,2185,2080,0],[2185,2188,2634,0],[2079,2080,2634,0],[2634,2080,2185,0],[2186,2164,38405,0],[38405,2164,2187,0],[2165,2166,2187,0],[2165,2187,2164,0],[2164,2186,2163,0],[2164,2163,2162,0],[2189,2190,2191,0],[2190,2189,2166,0],[2166,2189,2188,0],[2166,2188,2187,0],[2187,2188,38405,0],[38405,2188,2185,0],[2155,2152,2154,0],[2192,38410,38105,0],[38410,38408,2193,0],[2194,2193,2195,0],[2197,2196,38419,0],[2197,38419,2198,0],[2198,38419,3180,0],[3180,38419,2199,0],[3180,2199,2200,0],[3180,2200,3182,0],[3182,2200,2202,0],[3182,2202,2201,0],[2201,2202,3185,0],[3058,3185,2207,0],[3058,2207,2203,0],[3150,38469,3151,0],[3151,38469,2204,0],[2204,38469,2205,0],[2205,38470,2206,0],[38470,2207,2208,0],[2208,2207,3185,0],[2206,38470,2046,0],[2046,38470,2208,0],[2046,2208,2209,0],[2209,2202,2210,0],[2202,2209,3185,0],[3185,2209,2208,0],[2046,2209,2211,0],[2211,2209,2210,0],[2211,2210,38418,0],[2211,2045,2046,0],[2192,38105,2150,0],[2150,38105,2212,0],[2212,38105,2214,0],[2212,2214,2213,0],[2213,2214,2240,0],[2240,2214,2215,0],[2240,2215,2216,0],[2217,2233,2144,0],[2143,2218,2142,0],[2142,2218,38098,0],[2243,48986,2138,0],[2138,48986,2137,0],[2131,38032,2130,0],[2219,38032,48984,0],[2219,48984,2220,0],[2219,2220,2221,0],[2222,2221,2223,0],[2222,2223,2224,0],[2224,2223,2225,0],[38106,2225,2226,0],[38106,2226,38107,0],[38107,38104,3215,0],[38104,38637,2227,0],[2227,38637,3213,0],[3213,38637,38422,0],[3213,38422,2228,0],[2228,38422,2229,0],[2229,38420,3175,0],[2196,3175,2195,0],[2136,2131,2132,0],[2143,2144,2218,0],[2144,2145,2146,0],[2217,2146,2230,0],[2641,2146,2145,0],[2233,2217,2232,0],[2232,2217,2231,0],[2231,2217,2230,0],[2146,2147,2230,0],[2230,2147,2231,0],[38097,2231,2234,0],[38097,2234,2235,0],[2235,2234,2242,0],[2236,2242,2237,0],[2237,2238,2212,0],[2237,2212,2236,0],[2235,2236,2239,0],[2241,2239,2216,0],[2216,2239,2240,0],[2239,2236,2213,0],[2213,2240,2239,0],[2242,2236,2235,0],[2235,2241,38097,0],[2235,2239,2241,0],[2234,2231,2147,0],[2150,2212,2238,0],[2238,2237,2148,0],[2148,2242,2147,0],[2147,2242,2234,0],[2237,2242,2148,0],[2148,2147,2171,0],[2176,2150,2149,0],[2149,2150,2238,0],[2139,2244,2243,0],[2139,2243,2138,0],[2142,2243,2244,0],[2142,2244,38041,0],[2142,38098,2243,0],[2139,2140,2244,0],[2136,2133,2247,0],[2136,2247,2245,0],[2245,2247,2139,0],[2139,2247,2140,0],[2140,2247,2135,0],[2135,2247,2246,0],[2246,2247,2133,0],[2132,2130,2248,0],[2248,2113,2249,0],[2130,2113,2248,0],[2132,2248,2133,0],[2130,38032,2219,0],[2250,2116,2129,0],[2127,2125,2117,0],[2125,2124,38066,0],[38066,2124,2118,0],[2251,3543,2122,0],[2122,3340,38602,0],[2122,2253,2251,0],[2251,2253,2124,0],[2124,2253,2123,0],[2124,2123,2119,0],[2127,2126,2124,0],[2124,2126,2251,0],[2122,2121,2253,0],[2253,2121,2252,0],[2123,2253,2252,0],[2259,2109,2254,0],[2254,2109,2108,0],[2254,2108,2107,0],[2259,2255,2109,0],[2112,2110,2255,0],[2112,2255,38031,0],[2255,2259,2256,0],[2258,38033,2257,0],[2257,2135,2256,0],[2256,2135,38031,0],[2255,2256,38031,0],[2257,2256,2259,0],[2262,2261,38392,0],[2262,38392,2263,0],[2263,2518,2466,0],[2466,2518,2264,0],[2467,2264,38020,0],[2467,38020,2265,0],[2265,22591,2468,0],[2468,2488,2266,0],[22732,2267,2268,0],[2268,2267,37859,0],[2268,37859,2269,0],[37881,2271,22578,0],[2273,37852,2274,0],[2274,37852,2275,0],[2487,2275,37853,0],[2277,2278,2279,0],[2277,2279,2274,0],[2487,2274,2275,0],[2273,2280,2284,0],[2284,38288,2281,0],[2281,38288,38287,0],[2281,38287,2282,0],[2481,38285,38284,0],[2480,38284,38317,0],[2480,38317,2283,0],[38284,2480,2481,0],[2273,2284,2272,0],[2272,2284,2285,0],[2285,38280,2286,0],[37879,2286,37882,0],[37879,37882,38390,0],[37879,38390,38092,0],[2266,38092,2287,0],[2288,37883,2510,0],[2510,2290,2289,0],[2292,2291,38281,0],[29451,2293,38298,0],[38298,2293,2471,0],[38298,2471,2294,0],[2295,2294,2296,0],[2295,2296,2297,0],[2297,2296,2298,0],[38242,2298,2483,0],[37892,2299,2300,0],[2300,2301,37893,0],[37893,2301,2303,0],[2303,2301,2302,0],[2303,2302,2304,0],[2304,2302,37896,0],[37896,2302,2305,0],[38382,37896,2305,0],[38382,2305,2306,0],[38369,2312,38368,0],[38251,2313,2311,0],[38368,2312,2313,0],[2311,2313,2312,0],[2309,2310,2314,0],[2314,2310,38368,0],[2308,2315,37907,0],[2315,38368,2313,0],[2314,2308,38248,0],[2314,38248,38380,0],[2316,2462,2455,0],[2317,2319,2318,0],[2318,2319,38315,0],[38310,38286,2323,0],[38310,2323,38313,0],[38313,2323,2324,0],[2389,2324,2325,0],[2417,38289,2416,0],[2321,2322,38314,0],[2321,38314,2320,0],[2320,38314,2453,0],[2453,38314,2326,0],[2328,2439,2445,0],[2328,2445,2329,0],[2329,2445,2438,0],[2329,2438,2383,0],[2329,2383,2330,0],[2331,2330,2383,0],[36359,2333,2334,0],[36359,2334,36360,0],[36360,2334,2344,0],[36360,2344,2335,0],[36354,2335,49234,0],[2336,2335,36341,0],[2336,36341,36345,0],[2336,36345,36368,0],[36368,2340,36367,0],[36348,2338,36347,0],[36347,2338,36315,0],[2339,36340,36339,0],[2340,36345,2343,0],[2343,36345,2341,0],[2343,2341,2342,0],[36315,2338,2339,0],[2339,2338,36340,0],[36343,2344,38319,0],[36343,38319,2345,0],[2345,38322,2346,0],[38331,2348,2349,0],[38331,2349,2350,0],[2349,2351,38329,0],[38329,2351,2352,0],[2353,2354,2355,0],[2353,2355,38336,0],[38336,2355,38337,0],[38337,2355,49005,0],[38337,49005,2356,0],[20588,2357,2358,0],[2369,2359,2376,0],[2369,2370,2360,0],[20552,2361,2362,0],[20552,2362,37822,0],[37822,2362,2373,0],[2363,2364,2365,0],[2365,2364,2374,0],[48997,2367,2372,0],[48997,2372,2368,0],[2357,2377,2358,0],[2359,2358,2376,0],[2376,2372,2369,0],[2371,2367,2375,0],[2367,2371,2370,0],[2367,2370,2372,0],[2372,2370,2369,0],[2361,2370,2362,0],[2373,2362,2371,0],[2371,2375,2373,0],[2373,2375,2374,0],[2373,2374,2364,0],[2374,2375,2366,0],[2362,2370,2371,0],[2368,2376,2377,0],[2379,2425,38328,0],[2379,38328,2410,0],[2381,2382,2378,0],[2378,2382,48997,0],[2382,2381,2380,0],[2380,2381,2410,0],[2379,2410,49009,0],[49009,2410,2381,0],[2377,2378,2368,0],[2376,2368,2372,0],[48997,2368,2378,0],[2381,2378,49009,0],[2370,2361,2360,0],[2335,2344,36342,0],[36342,2344,36343,0],[2432,2384,2437,0],[2432,2437,2436,0],[2436,2437,2385,0],[2418,2449,2386,0],[2394,2386,2387,0],[2388,2389,2391,0],[2391,2389,2390,0],[2390,2415,2414,0],[2390,2414,2391,0],[2388,2391,2393,0],[2388,2393,2392,0],[2392,2393,2394,0],[2394,2387,2395,0],[2395,2392,2394,0],[2397,2386,2396,0],[2397,2396,2399,0],[2397,2399,2398,0],[2398,2399,2431,0],[2431,2399,2400,0],[2431,2400,2401,0],[22784,2403,2404,0],[2404,49012,2405,0],[38294,2405,2414,0],[2278,22758,2279,0],[48998,22784,2408,0],[48998,2408,2409,0],[2403,22784,48998,0],[2403,48998,2402,0],[2380,2402,2382,0],[38325,2380,2410,0],[2398,2422,2411,0],[2397,2398,2411,0],[2397,2411,2386,0],[2412,2394,2393,0],[2412,2393,2413,0],[2393,2391,2413,0],[2413,2391,2414,0],[22758,2407,2416,0],[22758,2416,2279,0],[2406,38293,2415,0],[2406,2415,2416,0],[2416,2415,2417,0],[2417,2415,2325,0],[2389,2325,2390,0],[2415,38293,2414,0],[2406,2416,2407,0],[49012,2412,2413,0],[2412,2396,2394,0],[2394,2396,2386,0],[2419,2418,2411,0],[2419,2411,2435,0],[2421,2349,2348,0],[2435,2422,2423,0],[2429,2424,38326,0],[38326,2425,2430,0],[2430,2425,2426,0],[2430,2426,2427,0],[2352,2351,2427,0],[2435,2423,2420,0],[2420,2423,2428,0],[2420,2428,2421,0],[2428,2429,2349,0],[2349,2429,2351,0],[2427,2351,2430,0],[38326,2430,2351,0],[38326,2351,2429,0],[2429,2428,2424,0],[2424,2428,2423,0],[2428,2349,2421,0],[2418,2419,38344,0],[2386,2411,2418,0],[2435,2411,2422,0],[2422,2398,2431,0],[2331,2383,2384,0],[2331,2384,2332,0],[2332,2384,38273,0],[2420,2434,2435,0],[2435,2434,2436,0],[2435,2436,2385,0],[2432,2436,2433,0],[2434,2433,2436,0],[2435,2385,2419,0],[2419,2385,38344,0],[2383,2438,2437,0],[2437,2438,38344,0],[2383,2437,2384,0],[2439,2328,2330,0],[2439,2330,2455,0],[2455,2317,2439,0],[2439,2317,2318,0],[2445,2439,2327,0],[2445,2327,2453,0],[2445,2440,2446,0],[2440,2451,2448,0],[2448,2451,2441,0],[2395,2441,2450,0],[2395,2450,2392,0],[2392,2450,2442,0],[2442,2443,2444,0],[2442,2444,2392,0],[2392,2444,2388,0],[2388,2444,2389,0],[2389,2444,2324,0],[38344,2438,2446,0],[38344,2446,2447,0],[2449,2448,2387,0],[2387,2448,2441,0],[2448,2447,2440,0],[2440,2447,2446,0],[2445,2446,2438,0],[38344,2447,2418,0],[2449,2387,2386,0],[2449,2418,2448,0],[2448,2418,2447,0],[2441,2451,2450,0],[2450,2451,2442,0],[2442,2451,2452,0],[38312,2452,2326,0],[2326,2452,2453,0],[2451,2440,2452,0],[2452,2440,2453,0],[2445,2453,2440,0],[2453,2327,2320,0],[2320,2327,38315,0],[38315,2327,2318,0],[2314,38380,2309,0],[38380,2316,2309,0],[2309,2316,2454,0],[2330,2454,2455,0],[2316,2455,2454,0],[2456,2308,2307,0],[2456,2307,2457,0],[2457,2307,2306,0],[2458,2464,38247,0],[38250,2461,2462,0],[2455,2462,2317,0],[2462,2461,2317,0],[38372,2460,2459,0],[2459,2460,2463,0],[2458,38247,2459,0],[2464,2302,38247,0],[38247,2302,2301,0],[2302,2464,2305,0],[2291,38283,38281,0],[2287,2288,2511,0],[2469,2489,2466,0],[2467,2466,2264,0],[2466,2467,2469,0],[2469,2467,2468,0],[2468,2266,2469,0],[2465,2469,2287,0],[2465,2287,2511,0],[2266,2287,2469,0],[2287,38092,2288,0],[2288,38092,38390,0],[2284,2281,2285,0],[2292,2471,2293,0],[2294,2471,2484,0],[2472,38316,2473,0],[2476,2477,2478,0],[2477,2296,2478,0],[2478,2296,2479,0],[2473,2479,2482,0],[2473,2482,2472,0],[2474,2475,2473,0],[2478,2475,2476,0],[38316,2472,2283,0],[2481,2480,2470,0],[38285,2481,2282,0],[2282,2285,2281,0],[2294,2484,2482,0],[2294,2482,2479,0],[2294,2479,2296,0],[2482,2484,2472,0],[2296,2477,2483,0],[2296,2483,2298,0],[2471,2486,2484,0],[2480,2484,2470,0],[2486,2470,2484,0],[2480,2283,2484,0],[2472,2484,2283,0],[2471,2292,38281,0],[2471,38281,38308,0],[38308,2485,2470,0],[2471,38308,2486,0],[2470,2486,38308,0],[2280,2273,2274,0],[2274,2487,2277,0],[2277,2487,2276,0],[2276,2487,37853,0],[22732,2268,2266,0],[2489,2469,2465,0],[2466,2489,2263,0],[2263,2489,2490,0],[2262,2490,2498,0],[2262,2491,2494,0],[2495,2506,2505,0],[2495,2505,2493,0],[2263,2490,2262,0],[2496,2261,2494,0],[2494,2491,2496,0],[2496,2491,2492,0],[2496,2492,2495,0],[2497,2495,2493,0],[2496,2495,2497,0],[2497,2108,2260,0],[2497,2260,2496,0],[2496,2260,2261,0],[2490,2489,2465,0],[2490,2465,2511,0],[2490,2511,2498,0],[2262,2498,2491,0],[2491,2507,2492,0],[2492,2507,2499,0],[2492,2499,2500,0],[2501,2516,2502,0],[2505,2503,2504,0],[2505,2504,2106,0],[2106,2504,2105,0],[2505,2506,2501,0],[2501,2506,2500,0],[2503,2505,2501,0],[2503,2501,2502,0],[2491,2498,2507,0],[2507,2498,2509,0],[2507,2509,2508,0],[2508,2509,2289,0],[2289,2509,2510,0],[2507,2508,2499,0],[2499,2508,1990,0],[1988,2512,29455,0],[2512,1988,1990,0],[2513,2500,2499,0],[2500,2513,2501,0],[2501,2513,2516,0],[2514,2072,2071,0],[2071,2515,2516,0],[2516,2515,2502,0],[2517,2504,2503,0],[2517,2503,2502,0],[2072,2514,1990,0],[2519,2518,38393,0],[2264,2519,2520,0],[2264,2520,2530,0],[2530,2627,2524,0],[2530,2524,38018,0],[38018,2523,38017,0],[38017,2523,2521,0],[2521,2523,2522,0],[2521,2522,38050,0],[2544,2522,2542,0],[2523,38018,2542,0],[2542,38018,2524,0],[2524,2627,2525,0],[2525,2627,2533,0],[2525,2533,2526,0],[2527,2526,2528,0],[2528,2538,2529,0],[2528,2529,2527,0],[2627,2530,2532,0],[2532,2530,2520,0],[2626,2520,2519,0],[2519,38393,2531,0],[2531,38393,38093,0],[2532,2626,38030,0],[2532,38030,2627,0],[2627,38030,2533,0],[2534,2533,2535,0],[2537,32647,2538,0],[2529,2538,32649,0],[2529,32649,2539,0],[32670,32672,38089,0],[38089,32672,32674,0],[38091,38089,32673,0],[38091,32673,2540,0],[2540,32655,2620,0],[2540,2541,2543,0],[2541,2544,2524,0],[2524,2544,2542,0],[2541,2524,2543,0],[2543,2524,2525,0],[2543,2525,2526,0],[2543,2526,38090,0],[38091,2540,2543,0],[38091,2543,38090,0],[2545,2620,2546,0],[2615,2547,2549,0],[2549,2548,2617,0],[37936,2550,2551,0],[38022,37936,2552,0],[38021,38022,2552,0],[2553,38021,2613,0],[2553,2613,2607,0],[2553,2607,22596,0],[2564,2562,2554,0],[22607,2554,38043,0],[38047,22607,2555,0],[38047,2555,22608,0],[22608,2555,22598,0],[22598,2555,22609,0],[22619,22609,2556,0],[22620,2556,2611,0],[22620,2611,22728,0],[22728,2611,2612,0],[2557,2612,2558,0],[2559,2558,2560,0],[2559,2560,2582,0],[2582,2560,2561,0],[2561,2560,2563,0],[2562,2564,2576,0],[2576,2564,2565,0],[2565,2614,2575,0],[37962,2567,2568,0],[2570,2569,2571,0],[2573,2572,2567,0],[2573,2567,2551,0],[2571,2569,2572,0],[2572,2569,2568,0],[2572,2568,2567,0],[2567,37962,2574,0],[2574,37962,2566,0],[2574,2566,2575,0],[2565,2575,2576,0],[2576,2575,2566,0],[2576,2566,2577,0],[2581,37973,2582,0],[2582,37977,2559,0],[2559,37977,22621,0],[2559,22621,2558,0],[2558,22621,2557,0],[2579,2580,2561,0],[2579,2561,2578,0],[2578,2561,2563,0],[2581,2582,2580,0],[2578,2563,2577,0],[2563,2562,2577,0],[2576,2577,2562,0],[2566,2583,2577,0],[2577,2583,37984,0],[2577,37984,2578,0],[2566,37962,2583,0],[2583,37961,2585,0],[2585,37961,2584,0],[2585,2584,37983,0],[37983,2584,37982,0],[37982,2584,2587,0],[37982,2587,2586,0],[2588,2587,2589,0],[2588,2589,2590,0],[37994,2591,2592,0],[37998,2593,37953,0],[37998,37953,2594,0],[37998,2594,22661,0],[22662,2594,2595,0],[2596,2595,37943,0],[2596,37943,2597,0],[2597,37955,38548,0],[38548,37955,2598,0],[38548,2598,2599,0],[2599,2601,2600,0],[37941,2601,38542,0],[37941,38542,37951,0],[2606,37939,2602,0],[2606,2602,37940,0],[37940,2602,2604,0],[37940,2604,2603,0],[2604,2605,2622,0],[2622,2605,2547,0],[2547,2605,2549,0],[2549,2605,2548,0],[22661,2594,22662,0],[2564,22596,2607,0],[2608,2562,2563,0],[2608,2563,2560,0],[2608,2560,38043,0],[38043,2560,2558,0],[38043,2558,2610,0],[38046,2609,2555,0],[2555,2609,22609,0],[22609,2609,2556,0],[2612,2610,2558,0],[2611,2610,2612,0],[2611,2556,2609,0],[2611,2609,2610,0],[2608,38043,2554,0],[38021,2552,2613,0],[2613,2552,2607,0],[2552,2614,2607,0],[2614,2565,2607,0],[2549,2617,2615,0],[2615,2616,2546,0],[2546,2616,2522,0],[2546,2522,2545,0],[2545,2522,2544,0],[2615,2618,2616,0],[2617,2550,2618,0],[2619,37936,38022,0],[2550,37936,2618,0],[2618,2619,2616,0],[2544,2541,2540,0],[2544,2540,2545,0],[2545,2540,2620,0],[2546,2620,2621,0],[2546,2621,2615,0],[2615,2621,2547,0],[2603,2622,2623,0],[2603,2623,2624,0],[2603,2624,2625,0],[2625,2600,2601,0],[2601,37941,2625,0],[2603,2604,2622,0],[2535,38053,2534,0],[2534,2528,2526,0],[2534,2526,2533,0],[2535,2533,38030,0],[2532,2520,2626,0],[2519,2531,2626,0],[2542,2522,2523,0],[2264,2518,2519,0],[2263,38392,2518,0],[2101,2638,2628,0],[2628,2638,2629,0],[2628,2629,2630,0],[2632,2631,2633,0],[2633,2079,2635,0],[2188,2189,2634,0],[2634,2189,2635,0],[2191,2635,2189,0],[2634,2635,2079,0],[2079,2633,2077,0],[2077,2633,2631,0],[2077,2631,2636,0],[2636,2631,2630,0],[2636,2630,2629,0],[2074,2637,2069,0],[2069,2637,2100,0],[2629,2638,2074,0],[2074,2638,2637,0],[2100,2637,2101,0],[2074,2075,2636,0],[2074,2636,2629,0],[2191,2632,2635,0],[2101,2628,2102,0],[2102,2628,38039,0],[38095,2639,2640,0],[2640,2639,2145,0],[2145,2639,48993,0],[2145,48993,48992,0],[2169,48992,2168,0],[2641,2145,48992,0],[2170,2149,2171,0],[2170,2171,2641,0],[2170,2641,2169,0],[2169,2641,48992,0],[38039,2628,2630,0],[38039,2630,38038,0],[38038,2630,2639,0],[1992,2642,2643,0],[2642,2647,2646,0],[2646,2647,2644,0],[2646,2644,1989,0],[2646,1989,1988,0],[2646,1988,2645,0],[1987,2643,2645,0],[2645,2643,2642,0],[2645,2642,2646,0],[1987,1986,2643,0],[2643,1986,1993,0],[1989,2644,2072,0],[2644,2647,1991,0],[1978,2648,1958,0],[2648,1979,1960,0],[1960,1979,1961,0],[1961,1979,1914,0],[1978,29562,29563,0],[1964,2649,29553,0],[29538,1963,2650,0],[2650,1963,2652,0],[2650,2652,2655,0],[2652,1962,2655,0],[2653,29552,2657,0],[2656,2657,2654,0],[2651,1959,2648,0],[2655,1962,2656,0],[2656,1962,2657,0],[1962,2653,2657,0],[2655,1959,2651,0],[1977,1959,2655,0],[1910,1909,3095,0],[1890,2658,4958,0],[4957,2659,2660,0],[1894,2661,2662,0],[2661,1894,2660,0],[2658,2663,2664,0],[2790,2664,2665,0],[2665,4952,2666,0],[2666,1886,2705,0],[2705,1886,2667,0],[2668,2667,1887,0],[2668,1887,2669,0],[2671,2670,2672,0],[2671,2672,2673,0],[2671,2673,4939,0],[2674,2675,2713,0],[49467,2678,2679,0],[49467,2679,2797,0],[2797,2679,49659,0],[2797,49659,2796,0],[2796,49659,49660,0],[49660,2892,2795,0],[2795,2892,2680,0],[2798,2682,2683,0],[2684,49495,49480,0],[49470,2686,2777,0],[2793,2688,2690,0],[2690,2688,2689,0],[2690,2691,2779,0],[2779,2702,2692,0],[2692,2702,2693,0],[2692,2693,2694,0],[49468,2695,2696,0],[2697,2696,2698,0],[2698,2699,49467,0],[49467,2699,2678,0],[2678,2699,2677,0],[2699,2698,2791,0],[2699,2791,2700,0],[2791,2696,2695,0],[2698,2696,2791,0],[2699,2700,2677,0],[2677,2700,2676,0],[2676,2700,2701,0],[2676,2701,4950,0],[4950,2701,2694,0],[2709,2703,2714,0],[2714,2723,2704,0],[2706,2727,2705,0],[2707,2706,2668,0],[2668,2669,2670,0],[2668,2670,2707,0],[2707,2726,2706,0],[2726,2707,2708,0],[2726,2708,2704,0],[2704,2708,2709,0],[2704,2709,2714,0],[2710,2709,2675,0],[2710,2675,2711,0],[2711,2693,2710,0],[2710,2703,2709,0],[2703,2710,2702,0],[2702,2710,2693,0],[2707,2670,2708,0],[2708,2671,2712,0],[2708,2712,2713,0],[2713,2712,2674,0],[2712,2671,4939,0],[2667,2668,2706,0],[2667,2706,2705,0],[2714,2721,2724,0],[2734,2716,2715,0],[49460,2717,2718,0],[2718,2719,2720,0],[2720,2719,2721,0],[2702,2722,2703,0],[2703,2722,2714,0],[2721,2722,2720,0],[2720,2722,2702,0],[2718,2717,2716,0],[2718,2716,2719,0],[2723,2714,2724,0],[2723,2724,2725,0],[2726,2725,2788,0],[2727,2788,2728,0],[2727,2728,2729,0],[2730,2729,2731,0],[2730,2731,4954,0],[1900,2731,49456,0],[49456,2731,2786,0],[29536,2786,2732,0],[2733,2732,2785,0],[2733,2785,2787,0],[2733,2787,2735,0],[2735,2787,2734,0],[2734,2715,2735,0],[38485,2735,2736,0],[2737,49461,49463,0],[49463,49461,2738,0],[49463,2738,2739,0],[2739,2738,2740,0],[2739,2740,2742,0],[2741,2742,2744,0],[2744,2742,2743,0],[2744,2743,2745,0],[2744,2745,2746,0],[2746,2783,2744,0],[2744,2783,2747,0],[49677,2747,49678,0],[49663,49678,49475,0],[49663,49475,49474,0],[49663,49474,49664,0],[49664,49474,2748,0],[2748,2764,49662,0],[49662,2764,2749,0],[2760,2750,2752,0],[2752,2750,2751,0],[2750,2760,2749,0],[2749,2764,2750,0],[2752,2751,49996,0],[2759,2752,2753,0],[2753,49681,2759,0],[2753,2752,2754,0],[2758,3037,49704,0],[49702,49697,2758,0],[49704,49702,2758,0],[2756,49999,2757,0],[2756,2757,49997,0],[2756,3037,2753,0],[2753,3037,2758,0],[2754,49999,2756,0],[2756,2753,2754,0],[49696,2753,2758,0],[2753,49696,49681,0],[2759,49680,49661,0],[2759,49661,2760,0],[2760,2752,2759,0],[49680,2759,49681,0],[2756,49997,3037,0],[2754,2901,49999,0],[2754,2752,49996,0],[2754,49996,2761,0],[49500,2761,2763,0],[49500,2763,49499,0],[49499,2763,2762,0],[49482,2762,2763,0],[49482,2763,2765,0],[49996,2765,2766,0],[49996,2766,2761,0],[2766,2765,2763,0],[2763,2761,2766,0],[2765,49996,2764,0],[49473,2764,2748,0],[2750,2764,49996,0],[2901,2767,2768,0],[2888,2768,2767,0],[2767,2754,2761,0],[2745,2743,2769,0],[2746,2770,2689,0],[2746,2689,2784,0],[2784,2689,2771,0],[2784,2771,2778,0],[2784,2778,2780,0],[49477,2780,49478,0],[49479,2773,2772,0],[2772,2773,2781,0],[2772,2781,2774,0],[2782,2775,49502,0],[49502,2775,2686,0],[49502,2686,2685,0],[49502,2685,2776,0],[2687,2777,2688,0],[2686,2775,2777,0],[2777,2775,2778,0],[2777,2778,2688,0],[2688,2771,2689,0],[2689,2770,2690,0],[2690,2770,2691,0],[2779,2720,2702,0],[2720,2779,2718,0],[2718,2779,2691,0],[2778,2775,2780,0],[49478,2780,2781,0],[2781,2780,2782,0],[2781,2782,2774,0],[2781,2773,49478,0],[2745,2769,2770,0],[2745,2770,2746,0],[2746,49477,2783,0],[2747,2783,49678,0],[2746,2784,49477,0],[49477,2784,2780,0],[2732,2786,2785,0],[2786,2728,2785,0],[2786,2729,2728,0],[2734,2787,2724,0],[2725,2724,2787,0],[2728,2788,2787,0],[2787,2788,2725,0],[2786,2731,2729,0],[2723,2725,2704,0],[2725,2726,2704,0],[2705,2727,2789,0],[2705,2789,2666,0],[2666,2789,29533,0],[29533,2790,2665,0],[2665,2666,29533,0],[2727,2706,2788,0],[2788,2706,2726,0],[2700,2791,49471,0],[49471,2791,2695,0],[2688,2794,2687,0],[2794,2688,2793,0],[2793,2690,2792,0],[2792,2690,2779,0],[2692,2694,2792,0],[2792,2694,2793,0],[2793,2694,2701,0],[2793,2701,2794,0],[2794,2700,49471,0],[2794,49471,2687,0],[2685,2686,49469,0],[2685,49469,49472,0],[2685,49472,49480,0],[49480,49472,2684,0],[2684,49472,2683,0],[2680,2681,2795,0],[2795,2796,49660,0],[2797,2698,49467,0],[2698,2797,2697,0],[2683,49469,2798,0],[2798,2795,2681,0],[2798,2681,2682,0],[49469,2697,2798,0],[2796,2795,2798,0],[2796,2798,2797,0],[2797,2798,2697,0],[2679,2799,29400,0],[2800,29400,2801,0],[2801,29400,29398,0],[4906,29398,2802,0],[2802,29398,2803,0],[2802,2803,2804,0],[2806,2804,4923,0],[2806,2805,4924,0],[2806,4924,2807,0],[4900,2813,2814,0],[2814,2813,2829,0],[49773,2829,49751,0],[49751,2829,1857,0],[1857,2829,49747,0],[1857,49747,2815,0],[2828,4920,2817,0],[49744,2817,2818,0],[2819,2818,4935,0],[49743,2823,49748,0],[2828,2815,2816,0],[2815,2828,2821,0],[1855,1856,2822,0],[2822,2823,2824,0],[2822,2824,1854,0],[1854,1855,2822,0],[2823,2826,2824,0],[2826,29387,2825,0],[2825,29387,2827,0],[1853,2825,2827,0],[1853,2827,1881,0],[2823,2820,2826,0],[2823,2822,49748,0],[49748,2822,1856,0],[2819,2820,49743,0],[2819,49743,2818,0],[2818,49743,49744,0],[2828,2817,2821,0],[4920,2828,4926,0],[4926,2828,2816,0],[49729,2811,49745,0],[49729,49745,2810,0],[2812,2830,49737,0],[49737,2830,2832,0],[2850,2833,1878,0],[2850,1878,2835,0],[2835,1878,2842,0],[2835,2834,2836,0],[2835,2836,4899,0],[4899,2837,2848,0],[2848,2837,2841,0],[2848,2841,2838,0],[2838,2841,3647,0],[3647,2841,2839,0],[2840,1865,2837,0],[2834,2840,2836,0],[2836,2840,2837,0],[2836,2837,4899,0],[2837,1865,2841,0],[1865,2839,2841,0],[1865,2840,1877,0],[2840,2834,2842,0],[1879,1878,2833,0],[3647,4888,2838,0],[2838,4888,4890,0],[2843,2838,2844,0],[2844,49778,2845,0],[2845,2846,2847,0],[2843,2847,4899,0],[2843,4899,2848,0],[2847,2843,2845,0],[2845,2843,2844,0],[2843,2848,2838,0],[2842,2834,2835,0],[2835,2849,2850,0],[2850,2849,2847,0],[2850,2847,2851,0],[2852,2851,3643,0],[4897,4895,4894,0],[4897,4894,4898,0],[4898,4894,49781,0],[2859,2853,2856,0],[2856,2853,2855,0],[2853,2860,2855,0],[2858,2856,2855,0],[2858,2855,2857,0],[2859,49644,2853,0],[2856,2858,4851,0],[4851,29,2856,0],[2856,29,2859,0],[49644,2854,2853,0],[2860,2857,2855,0],[2861,2853,49963,0],[2860,2853,2861,0],[2857,2861,2862,0],[2854,49998,2897,0],[49768,4898,50000,0],[2863,49988,49990,0],[49740,49990,49993,0],[2865,2864,2873,0],[2865,2873,2874,0],[2865,2874,49740,0],[49765,49766,2867,0],[2896,2868,2768,0],[2900,2868,49987,0],[2872,2881,49994,0],[2880,2875,2873,0],[2875,2680,2874,0],[2874,2680,2892,0],[2680,2875,2681,0],[2681,2875,2876,0],[2877,2876,2879,0],[2880,2873,2881,0],[2881,2873,2864,0],[2864,49994,2881,0],[2878,2882,2877,0],[2877,2882,2883,0],[2878,2879,2881,0],[2879,2876,2880,0],[2880,2876,2875,0],[2681,2884,2682,0],[2885,2884,2883,0],[49496,2871,49497,0],[2886,49497,2890,0],[2886,2890,2887,0],[2890,2889,2887,0],[2887,2888,49500,0],[49500,2888,2767,0],[2888,2887,2889,0],[49985,2887,49500,0],[2681,2876,2884,0],[2883,2884,2877,0],[2877,2884,2876,0],[2885,2883,2891,0],[2883,2882,2891,0],[2873,2875,2874,0],[4910,2874,2892,0],[4910,2892,2893,0],[4910,2893,4907,0],[4907,2893,4908,0],[4908,2893,49659,0],[4908,49659,2801,0],[2801,49659,2800,0],[29400,2800,2679,0],[2800,49659,2679,0],[2870,2871,2872,0],[49993,49994,2864,0],[49987,2868,2869,0],[2869,2894,49993,0],[49993,2894,2895,0],[2869,2896,2894,0],[2895,2894,2870,0],[2869,2868,2896,0],[2894,2889,2870,0],[2870,2889,2890,0],[2870,2890,2871,0],[2871,2890,49497,0],[2888,2896,2768,0],[2889,2894,2888,0],[2888,2894,2896,0],[2898,2899,2897,0],[2899,2755,3039,0],[3039,2868,2900,0],[2899,2900,2897,0],[2768,2868,2901,0],[2767,2901,2754,0],[2898,2897,2902,0],[38719,49786,2918,0],[49786,3637,3640,0],[3602,2904,3639,0],[3602,3630,3601,0],[3601,3630,3629,0],[3601,3629,48979,0],[48979,3629,48981,0],[48981,3627,3618,0],[48981,3618,2905,0],[48981,2905,2906,0],[2906,2905,2907,0],[2908,2907,3628,0],[2909,3628,3621,0],[2909,3621,2910,0],[3603,2911,2912,0],[2912,49710,2913,0],[2913,49708,49712,0],[2913,49712,2914,0],[2913,2914,2917,0],[2915,2919,2912,0],[2915,2912,2913,0],[2915,2913,2917,0],[2919,2915,2916,0],[38527,2918,49786,0],[2916,38527,49786,0],[2919,2916,3605,0],[3605,2916,49786,0],[49710,2911,48982,0],[48982,2911,2910,0],[2910,38461,49711,0],[49711,38461,2920,0],[2982,2921,38463,0],[2982,38463,2922,0],[2982,2922,38443,0],[2982,38443,2923,0],[2923,2925,2924,0],[2924,2925,2926,0],[2926,2925,2927,0],[2928,2927,110,0],[2928,110,38653,0],[38653,110,111,0],[38653,111,2929,0],[38653,2929,38673,0],[38673,2929,38668,0],[38668,38652,38664,0],[38664,38652,38651,0],[38667,38665,2930,0],[2930,2931,2932,0],[2932,2931,2933,0],[2940,2934,38688,0],[2940,38688,2935,0],[2936,2937,2938,0],[2939,2940,2936,0],[2936,2940,2935,0],[2940,3201,2941,0],[2940,2941,2934,0],[2934,2941,2942,0],[2934,2942,2943,0],[2944,2943,2945,0],[2944,2945,2946,0],[2946,2945,2947,0],[2946,2947,2948,0],[2949,2948,3047,0],[2975,2950,2951,0],[2975,2951,38683,0],[2975,38683,38511,0],[2975,38511,2952,0],[2954,38694,2955,0],[2956,2958,2957,0],[2957,2958,2959,0],[2961,2962,2963,0],[2963,2920,2921,0],[2957,2959,2960,0],[2957,2960,2978,0],[2957,2978,38657,0],[38658,2964,2926,0],[2973,38675,2965,0],[2973,2965,2966,0],[2966,2965,2967,0],[2967,38669,2976,0],[2976,38666,2968,0],[2970,2948,2949,0],[2948,2970,2969,0],[2969,38667,2932,0],[2969,2932,2972,0],[2930,2932,38667,0],[38667,2969,2970,0],[2948,2969,2946,0],[2946,2969,2971,0],[2971,2969,2972,0],[2971,2972,2944,0],[2944,2972,2934,0],[2934,2972,2933,0],[2934,2943,2944,0],[2933,2972,2932,0],[2956,38675,2955,0],[2955,38675,2973,0],[2955,2973,2954,0],[2975,2976,2950,0],[2950,2976,2970,0],[2970,2949,2950,0],[2970,2976,2968,0],[2976,2975,2974,0],[2975,2952,2974,0],[2974,2952,38689,0],[38689,2966,2967,0],[2967,2974,38689,0],[2952,2953,38689,0],[38689,2953,2954,0],[2960,2961,2978,0],[2978,2961,2977,0],[2978,2977,2983,0],[2983,2977,2979,0],[2983,2979,2984,0],[2984,2979,2980,0],[2980,2981,2924,0],[2924,2981,2923,0],[2982,2923,2981,0],[2921,2982,2977,0],[2921,2977,2963,0],[2963,2977,2961,0],[2977,2982,2979,0],[2979,2982,2981,0],[2979,2981,2980,0],[2978,2983,38657,0],[38657,2983,2984,0],[38657,2984,38656,0],[38656,2984,2985,0],[38656,2985,2964,0],[2985,2984,2980,0],[2980,2924,2985,0],[2985,2924,2964,0],[2964,2924,2926,0],[2986,38695,2959,0],[2959,38695,2987,0],[2987,2962,2960,0],[2959,2958,2986,0],[2954,2953,38693,0],[38693,3028,2988,0],[2988,2989,38692,0],[38692,2989,38534,0],[38534,2989,38532,0],[38532,2989,2990,0],[2997,2990,2991,0],[2997,2992,38532,0],[2990,2989,2994,0],[2994,3046,2993,0],[2994,2993,3027,0],[2994,3027,2995,0],[2996,3045,2997,0],[2994,2991,2990,0],[38522,2997,3045,0],[38522,3045,38523,0],[38523,2999,2998,0],[2998,2999,49720,0],[49720,2999,3040,0],[3037,49997,49719,0],[3037,49722,3030,0],[3037,3000,49704,0],[49703,3000,3001,0],[3001,3002,49684,0],[49684,3002,3018,0],[49706,3018,3003,0],[49686,3005,3006,0],[49686,3006,3007,0],[3007,3006,3008,0],[3007,3008,3134,0],[3134,3008,3137,0],[3137,3008,3009,0],[3137,3009,3010,0],[3010,3009,3141,0],[3141,3009,3011,0],[3012,3013,3014,0],[3014,3013,38501,0],[38501,3015,38500,0],[3016,3017,38497,0],[3019,3003,3018,0],[3002,3001,3020,0],[3002,3020,3019,0],[3021,3032,3023,0],[3023,3032,3022,0],[3023,3022,3024,0],[3023,3024,38520,0],[38520,3024,38519,0],[38519,3024,3033,0],[38519,3044,38518,0],[38518,3044,3025,0],[3027,3026,2995,0],[2993,3046,3028,0],[3019,3018,3002,0],[38501,3013,3015,0],[3015,3013,3016,0],[3016,3013,3017,0],[3005,3004,3006,0],[3006,3004,3009,0],[3009,3004,38497,0],[3009,38497,3017,0],[3006,3009,3008,0],[3000,3030,3029,0],[3029,3030,3031,0],[3031,49723,3032,0],[3031,3032,3020,0],[3020,3032,3021,0],[3022,3034,3033,0],[38519,3033,3044,0],[3032,49723,3022,0],[3022,49723,3034,0],[3034,49723,3036,0],[3034,3036,3035,0],[3035,3036,3038,0],[3035,3038,3037,0],[3035,3037,49719,0],[3037,3038,49722,0],[3020,3021,3019,0],[3031,3020,3029,0],[38526,2757,2899,0],[38526,2899,2898,0],[2898,2902,38526,0],[38525,38526,2902,0],[3641,38525,2902,0],[3039,2901,2868,0],[2755,49999,3039,0],[2899,2757,2755,0],[3040,2999,3041,0],[3041,2999,3042,0],[3042,2999,3033,0],[3033,2999,3043,0],[3033,3043,3044,0],[3025,3044,3043,0],[3043,2999,3026,0],[3026,2999,3045,0],[3026,3045,2996,0],[3026,2996,2995,0],[38523,3045,2999,0],[3033,3034,3042,0],[3042,3034,3035,0],[3042,3035,3041,0],[3041,3035,49719,0],[3041,49719,3040,0],[2995,2996,2991,0],[2994,2995,2991,0],[2989,2988,3046,0],[2989,3046,2994,0],[3028,3046,2988,0],[3048,3197,3190,0],[3048,3190,3049,0],[3051,3050,3054,0],[3051,3054,3052,0],[3052,3054,3053,0],[3061,3053,3054,0],[3061,3054,3146,0],[3146,3054,3159,0],[3146,3159,3055,0],[3056,3055,3057,0],[3058,3186,3185,0],[2203,3150,3057,0],[3056,3057,3154,0],[3056,3154,3059,0],[3059,3062,3060,0],[3061,3060,3062,0],[3061,3062,3063,0],[3063,3062,3064,0],[3064,3066,3065,0],[3135,3065,3067,0],[3135,3067,3129,0],[3079,3068,3078,0],[3069,3078,38489,0],[3069,38489,3070,0],[3071,3070,49725,0],[3071,49725,3072,0],[3073,3074,1942,0],[1942,3074,1943,0],[1942,3104,3073,0],[3075,3073,3076,0],[3075,3076,3110,0],[3075,3110,3077,0],[3071,3077,3115,0],[3115,3114,38495,0],[3079,3080,49672,0],[49465,3081,49674,0],[49674,3085,3082,0],[3082,3085,49679,0],[49679,3085,2741,0],[2741,3085,3083,0],[3084,3083,3081,0],[3084,3081,49465,0],[3081,3085,49674,0],[3083,3085,3081,0],[49672,3080,49465,0],[49465,3080,3086,0],[49463,3087,3118,0],[49463,3118,49466,0],[49466,3118,3112,0],[49466,3112,3108,0],[38484,3108,3088,0],[3088,3089,1901,0],[1901,3089,3090,0],[1905,3090,3091,0],[3091,3097,3094,0],[3094,3097,3098,0],[1937,3094,3092,0],[1937,3092,3102,0],[1937,1936,3093,0],[3093,1907,1906,0],[3091,1906,1905,0],[1905,1903,1902,0],[1906,3091,3094,0],[1906,3094,3093,0],[3093,3094,1937,0],[3095,1909,1907,0],[1907,3093,3095,0],[3095,3093,1935,0],[1935,3093,1936,0],[3094,3098,3092,0],[3102,3092,3101,0],[3101,3105,3099,0],[3099,3105,3100,0],[3076,3100,3110,0],[3101,3099,1939,0],[3101,1939,3102,0],[49727,3103,1941,0],[49727,1941,1940,0],[49727,1940,1939,0],[3099,3100,3103,0],[3103,3100,3076,0],[3103,3104,1941,0],[1941,3104,1942,0],[3101,3092,3105,0],[3109,3106,3107,0],[3109,3107,3111,0],[3111,3119,3108,0],[3100,3109,3110,0],[3112,3111,3108,0],[3113,3114,3115,0],[3115,3077,3113,0],[3112,3113,3111,0],[3114,3116,38495,0],[38495,3116,3117,0],[3117,3116,3086,0],[3117,3086,3080,0],[3117,3078,3069,0],[3117,3069,38495,0],[3078,3117,3079,0],[3079,3117,3080,0],[3086,3116,3087,0],[3087,3116,3114,0],[3087,3114,3113,0],[3087,3113,3118,0],[3118,3113,3112,0],[3109,3100,3106,0],[3106,3100,3105,0],[3092,3098,3105,0],[3105,3098,3097,0],[3105,3097,3106,0],[3106,3097,3096,0],[3106,3096,3107,0],[3107,3096,3119,0],[3107,3119,3111,0],[3096,3089,3119,0],[3119,3089,3088,0],[3097,3091,3096,0],[3096,3091,3089,0],[3068,3079,3121,0],[3068,3121,3120,0],[3121,3122,3123,0],[3123,3122,49688,0],[49688,3122,49762,0],[3124,3125,3128,0],[3124,3128,3126,0],[49665,3128,3127,0],[3127,3128,49676,0],[49676,3128,3125,0],[49762,3125,3124,0],[3128,49665,3126,0],[3079,49672,3121,0],[3068,3120,3129,0],[3007,3132,49686,0],[3005,49686,49685,0],[3005,49685,3133,0],[3005,3133,49706,0],[3003,3004,49706,0],[49706,3004,3005,0],[3131,3007,3134,0],[3131,3134,3130,0],[3130,3134,3137,0],[3136,3137,3138,0],[3138,3064,3065,0],[3065,3135,3138,0],[3138,3135,3136,0],[3064,3138,3063,0],[3063,3138,3139,0],[3141,3011,3140,0],[3140,38517,3142,0],[3145,3196,3048,0],[3048,3196,3197,0],[3048,3049,3145,0],[3145,3049,3144,0],[3011,3012,3140,0],[3140,3012,38517,0],[3140,3139,3141,0],[3141,3139,3010,0],[3137,3010,3138,0],[3139,3138,3010,0],[3053,3061,38642,0],[38642,3061,3063,0],[38642,3063,3139,0],[3061,3146,3060,0],[3060,3146,3059,0],[3059,3146,3055,0],[3059,3055,3056,0],[3130,3137,3136,0],[3130,3136,3135,0],[3135,3129,3130,0],[3072,3075,3071,0],[3071,3075,3077,0],[3072,3073,3075,0],[3076,3073,3103,0],[3103,3073,3104,0],[3065,3066,3067,0],[3067,3066,3147,0],[3148,38490,3149,0],[3149,3078,3068,0],[3078,3149,38489,0],[3148,3149,3067,0],[3148,3067,3147,0],[3149,3068,3067,0],[3067,3068,3129,0],[3057,3150,3154,0],[3154,3150,3151,0],[3151,2204,3152,0],[3152,2204,3153,0],[3152,3153,1950,0],[1950,3153,1951,0],[3152,38471,3154,0],[3152,3154,3151,0],[1950,38471,3152,0],[3153,2204,3157,0],[3156,3158,3155,0],[3156,1956,3158,0],[1956,1955,3158,0],[3158,1955,3157,0],[3153,1952,1951,0],[1952,3157,1955,0],[3157,1952,3153,0],[2204,2047,3157,0],[2047,2048,3157,0],[2048,29544,3157,0],[3157,29544,3158,0],[3159,3054,3050,0],[3159,3050,3160,0],[3160,38650,3161,0],[3163,3162,3164,0],[3163,3164,3165,0],[3165,3164,3191,0],[3165,3167,3166,0],[3166,3167,3168,0],[3166,3168,3176,0],[3176,3168,3169,0],[3169,3168,3557,0],[3169,3557,3558,0],[3170,3169,3171,0],[3170,3171,3172,0],[3172,3171,3173,0],[3173,3174,3175,0],[3175,3174,2228,0],[3175,2228,2229,0],[3175,2196,2197,0],[3175,2197,3173,0],[3166,3176,3177,0],[3166,3177,3165,0],[3163,3165,3178,0],[3178,3165,3179,0],[3179,3180,3182,0],[3179,3182,3181,0],[3181,3182,2201,0],[3181,2201,3183,0],[3163,3178,3162,0],[3162,3178,3183,0],[3162,3183,3184,0],[3184,3183,3185,0],[3184,3185,3186,0],[3185,3183,2201,0],[3160,3187,3159,0],[3055,3159,3057,0],[3159,3187,3057,0],[3057,3187,2203,0],[2203,3187,3058,0],[3187,3186,3058,0],[3160,3161,3187,0],[3187,3161,3186,0],[3186,3161,3184,0],[3184,3161,3162,0],[3179,3181,3178,0],[3165,3177,3179,0],[3169,3170,3176,0],[3176,3170,38677,0],[3177,38677,3188,0],[3179,3188,3180,0],[3180,3188,3189,0],[3180,3189,2198,0],[2198,3172,3173,0],[3173,2197,2198,0],[3188,3179,3177,0],[3177,3176,38677,0],[3160,3050,38650,0],[3190,3197,3164,0],[3164,3197,3191,0],[3165,3191,38648,0],[3165,38648,3167,0],[3167,38648,3192,0],[3192,2947,2945,0],[3190,3164,3162,0],[3190,3162,38650,0],[3162,3161,38650,0],[3194,3195,38679,0],[38686,38679,3143,0],[3195,3145,3144,0],[38679,3195,3143,0],[3143,3195,3144,0],[3145,3195,3196,0],[3196,3194,3193,0],[3194,3196,3195,0],[3047,3193,2949,0],[2949,3193,2951,0],[2949,2951,2950,0],[3047,38649,3193,0],[3193,38649,3197,0],[3193,3197,3196,0],[2940,2939,3201,0],[3201,3565,3198,0],[3198,3199,3200,0],[3198,3200,3201,0],[3201,3200,2941,0],[3201,2939,3565,0],[3565,2939,2938,0],[3565,2938,3202,0],[3552,3203,3204,0],[3204,3203,3599,0],[3204,3599,3205,0],[3205,375,374,0],[3205,374,3206,0],[3207,3206,371,0],[3207,371,3208,0],[3207,3208,3569,0],[3568,3569,3209,0],[3547,3210,3212,0],[3547,3212,3211,0],[3211,3212,3553,0],[3553,3212,3545,0],[3553,3545,3213,0],[3213,3545,2227,0],[3214,3222,3215,0],[3215,3222,3217,0],[3215,3217,3216,0],[3216,3217,3218,0],[3278,3218,3219,0],[3277,3219,3221,0],[3277,3221,3220,0],[3221,3222,3210,0],[3210,3222,3212,0],[3210,3209,3221,0],[3221,3209,3220,0],[3277,3220,3223,0],[3277,3223,3224,0],[3277,3224,3225,0],[38604,3309,38603,0],[38604,38603,3228,0],[3228,38603,3229,0],[3230,3229,3231,0],[3232,3233,3234,0],[3234,3233,3240,0],[3234,3240,3236,0],[3234,3236,3235,0],[3235,3236,3346,0],[3346,3236,3237,0],[3237,3224,3223,0],[3237,3236,3224,0],[3224,3236,3240,0],[3224,3240,3225,0],[3225,3240,3238,0],[3225,3238,3226,0],[3226,3238,3227,0],[3227,3238,3239,0],[3239,3231,3229,0],[3231,3239,3233,0],[3233,3239,3238,0],[3238,3240,3233,0],[3233,3232,3231,0],[3231,3232,3241,0],[3242,3514,3230,0],[3230,3514,3352,0],[3230,3352,38605,0],[38605,3352,3243,0],[3243,3352,3353,0],[3312,3243,3244,0],[32842,3244,38767,0],[3245,3246,3247,0],[32841,3247,3248,0],[3329,3248,3249,0],[3329,3249,3250,0],[32846,3252,32809,0],[32846,32809,3253,0],[3253,32809,3254,0],[3254,32809,3255,0],[3254,3255,48978,0],[3256,48978,32810,0],[3256,32810,32806,0],[3256,32806,3266,0],[3266,32806,3257,0],[3265,3257,32696,0],[3270,32627,3271,0],[3271,32636,3258,0],[3258,32636,3259,0],[3258,3259,3260,0],[3260,3259,32639,0],[3274,3260,32680,0],[3274,38082,3261,0],[3261,38082,38581,0],[3261,38581,3262,0],[3261,3262,32850,0],[3261,32850,32847,0],[3263,32849,3264,0],[3265,3264,3266,0],[3266,3276,3256,0],[3256,3276,3267,0],[3268,3269,3253,0],[3267,3268,3256,0],[3253,3254,3268,0],[3268,3254,48978,0],[3268,48978,3256,0],[3266,3257,3265,0],[3270,3265,32696,0],[3265,3270,3264,0],[3264,3270,3275,0],[3275,3271,3273,0],[3273,3271,3258,0],[3273,3260,3274,0],[3273,3274,3272,0],[3261,32847,3272,0],[3272,32847,3263,0],[3258,3260,3273,0],[3275,3273,3272,0],[3272,3263,3264,0],[3272,3274,3261,0],[3264,3275,3272,0],[3275,3270,3271,0],[3267,3276,32849,0],[3266,3264,3276,0],[3276,3264,32849,0],[3231,3241,3242,0],[3231,3242,3230,0],[3219,3277,3278,0],[3278,3279,3338,0],[3338,3279,3306,0],[3338,3306,3339,0],[3339,3306,3341,0],[3341,3306,3305,0],[3341,3305,3280,0],[3280,3325,38430,0],[38430,3325,3281,0],[3281,3324,38429,0],[38429,3324,3282,0],[38588,3284,3283,0],[3283,3284,3318,0],[3283,3318,3285,0],[38583,3285,3286,0],[38585,3286,3326,0],[3287,3293,3288,0],[3336,3328,3290,0],[32840,3290,32843,0],[32844,3327,3289,0],[32844,3289,3291,0],[3291,3289,3292,0],[3315,3291,3337,0],[3315,3337,3294,0],[3294,3337,3293,0],[3294,3293,3298,0],[3297,3295,3296,0],[3285,3318,3296,0],[3296,3318,3297,0],[3301,3300,3323,0],[3303,3301,3302,0],[3302,3304,3303,0],[3303,3304,38615,0],[3227,38615,3226,0],[3226,38615,3304,0],[3305,3302,3280,0],[3305,3306,3304,0],[3304,3306,3279,0],[3304,3279,3226,0],[3226,3279,3225,0],[3225,3279,3278,0],[3225,3278,3277,0],[3307,38616,3308,0],[3310,3308,38604,0],[38604,3308,3309,0],[3309,38615,3227,0],[3301,3303,3307,0],[3307,3308,3310,0],[3312,3311,3243,0],[3317,3313,3314,0],[3307,3315,3316,0],[3315,3294,3316,0],[3316,3294,3301,0],[3301,3294,3300,0],[3316,3301,3307,0],[3300,3294,3299,0],[3299,3294,3298,0],[3298,3295,3297,0],[3310,3317,3314,0],[3312,3317,3311,0],[3317,3312,3313,0],[38616,3307,3303,0],[3297,3318,3319,0],[3297,3319,3298,0],[3298,3319,3299,0],[3299,3319,3321,0],[3321,3319,3320,0],[3321,3320,38590,0],[3324,38590,3282,0],[3299,3321,3300,0],[3323,3321,38590,0],[3323,38590,3322,0],[3300,3321,3323,0],[3323,3322,3302,0],[3302,3322,3325,0],[3302,3325,3280,0],[3301,3323,3302,0],[3304,3302,3305,0],[3322,38590,3324,0],[3322,3324,3325,0],[3325,3324,3281,0],[3318,3284,3319,0],[3285,3296,3286,0],[3286,3296,3326,0],[3326,3296,38600,0],[3326,38600,3287,0],[3327,32843,3290,0],[3290,32840,3329,0],[3335,3329,3250,0],[3335,3250,3330,0],[3330,32854,3331,0],[3331,32854,3332,0],[3331,3332,3333,0],[3292,3333,3334,0],[3292,3334,3288,0],[3292,3289,3333,0],[3333,3289,3331,0],[3290,3329,3335,0],[3335,3330,3336,0],[3328,3336,3331,0],[3330,3331,3336,0],[3336,3290,3335,0],[3331,3289,3328,0],[3289,3327,3328,0],[3290,3328,3327,0],[3291,3292,3337,0],[3218,3278,3338,0],[3338,3339,3340,0],[3339,3341,2120,0],[38430,2120,3280,0],[2120,3341,3280,0],[3209,3569,3220,0],[3223,3342,3237,0],[3237,3342,3346,0],[3346,3344,3343,0],[3343,3344,3345,0],[3346,3343,3235,0],[3235,3343,3234,0],[3234,3343,3347,0],[3347,3345,3349,0],[3349,3345,417,0],[3349,417,418,0],[3347,3343,3345,0],[3232,3234,3348,0],[3232,3348,3241,0],[3348,3349,3350,0],[3350,419,28853,0],[419,3350,3349,0],[419,3349,418,0],[3349,3348,3347,0],[3347,3348,3234,0],[3241,3348,3242,0],[3242,3348,3351,0],[3351,3364,3514,0],[3514,3364,3352,0],[3352,3363,3353,0],[3354,3353,3362,0],[3354,3362,3355,0],[3357,3359,3488,0],[3488,3360,3365,0],[3359,3360,3488,0],[3355,3362,3360,0],[3360,3359,3355,0],[3355,3359,3356,0],[3361,3360,3362,0],[3361,3362,3363,0],[3540,3363,3364,0],[3364,3363,3352,0],[3353,3363,3362,0],[3360,3361,3365,0],[38606,3366,3367,0],[3367,3366,38614,0],[3367,38776,3487,0],[3378,3487,3510,0],[3513,3512,3496,0],[3496,3512,3377,0],[3377,3512,3506,0],[3377,3506,3368,0],[3368,3369,3370,0],[3371,3370,3372,0],[3371,436,3499,0],[3368,3371,3503,0],[3368,3503,3376,0],[3373,3376,3502,0],[3373,3502,28831,0],[28829,28831,48974,0],[28840,48973,3501,0],[28840,3501,3374,0],[28840,3374,3375,0],[30805,3375,439,0],[439,3375,438,0],[3368,3370,3371,0],[3496,3376,3373,0],[3496,3373,3497,0],[3497,3513,3496,0],[3513,3491,3510,0],[3510,3491,3378,0],[3379,3378,3380,0],[3379,3380,3381,0],[3383,32831,3384,0],[3383,3384,3485,0],[3485,3384,3385,0],[3385,3384,3386,0],[48957,28835,3387,0],[3387,48972,3388,0],[3388,3389,48954,0],[48954,3389,3390,0],[48947,3392,3391,0],[3391,3392,3393,0],[3394,3393,48943,0],[3394,48943,3395,0],[3420,3395,3396,0],[3396,3395,3440,0],[32812,3398,32816,0],[32817,3399,32819,0],[32819,3399,3400,0],[32819,3400,48921,0],[48921,48913,3401,0],[3401,48918,48920,0],[48919,48920,3402,0],[48919,3402,48907,0],[48919,48907,3403,0],[3405,3404,3406,0],[3405,3406,3407,0],[3407,3408,32574,0],[3407,32574,3409,0],[3409,3410,3437,0],[3438,3411,3412,0],[3413,23286,3414,0],[3413,3414,32584,0],[32584,3414,3415,0],[32584,3415,3426,0],[3426,3415,3425,0],[3425,23285,3424,0],[3424,23285,3423,0],[3423,23292,3416,0],[3423,3416,3417,0],[3417,3416,38788,0],[38788,38796,38785,0],[38785,38796,38784,0],[38785,38784,3418,0],[3418,3419,38787,0],[3421,38787,3420,0],[3421,3420,3396,0],[3421,3396,3422,0],[3422,32732,38786,0],[38786,32732,3423,0],[38786,3423,3417,0],[3425,3424,32730,0],[3425,32730,3426,0],[3426,32730,3427,0],[3427,32730,3428,0],[3427,3428,3429,0],[3430,3429,3431,0],[3431,32728,3432,0],[3431,3432,3433,0],[3433,3432,32724,0],[3433,32724,3403,0],[3433,3403,3404,0],[3407,3409,3436,0],[3436,3409,3437,0],[3437,3410,3434,0],[3434,48906,32585,0],[3434,32585,3435,0],[3435,32585,32587,0],[3435,32587,3405,0],[3435,3405,3436,0],[3405,3407,3436,0],[3434,3435,3437,0],[3436,3437,3435,0],[3434,3411,48906,0],[48906,3411,3438,0],[3438,3412,3439,0],[3439,3412,3413,0],[3439,3413,32583,0],[32583,3413,32584,0],[3485,3475,3476,0],[3485,3476,3474,0],[3485,3474,3441,0],[3441,3478,3442,0],[3443,3478,3484,0],[3484,3478,3444,0],[3484,3444,3445,0],[3445,3446,3447,0],[3468,3448,3449,0],[3479,3481,3450,0],[32822,3450,3451,0],[32834,3451,32833,0],[32833,3451,32826,0],[3249,3248,3452,0],[3249,3452,3453,0],[3455,3453,3454,0],[3455,3454,3456,0],[32766,3456,38782,0],[32766,38782,3457,0],[3457,38782,3458,0],[3457,3458,38597,0],[38597,3458,3459,0],[38597,3459,3470,0],[38597,3470,3460,0],[3460,3470,32759,0],[32758,3469,3461,0],[32741,3461,3462,0],[32741,3462,3466,0],[3466,3462,3463,0],[3464,48958,48971,0],[3464,48971,32749,0],[3463,32749,32750,0],[3463,32750,3465,0],[3463,3465,3466,0],[3466,3465,32741,0],[3461,32741,32740,0],[32749,3463,3464,0],[3464,3463,3462,0],[3470,3448,3467,0],[3448,3468,3467,0],[3467,3469,32758,0],[3467,32758,3470,0],[3470,32758,32759,0],[3469,3446,3472,0],[3472,3446,3477,0],[3472,3477,3473,0],[3477,3444,3471,0],[3462,3471,3464,0],[3471,3462,3473,0],[3473,3462,3472,0],[3472,3462,3461,0],[3471,3473,3477,0],[3472,3461,3469,0],[3476,3471,3474,0],[3476,3475,48958,0],[3476,48958,3464,0],[3476,3464,3471,0],[3474,3471,3444,0],[3444,3477,3445,0],[3445,3477,3446,0],[3441,3474,3444,0],[3441,3444,3478,0],[3442,3478,3443,0],[3446,3469,3447,0],[3447,3469,3467,0],[3447,3467,3468,0],[3470,3459,3448,0],[3458,3449,3459,0],[3459,3449,3448,0],[32821,3449,3480,0],[32821,3480,3479,0],[3454,3480,3456,0],[3450,3481,3451,0],[3454,38781,3481,0],[3481,38781,3451,0],[3479,3480,3481,0],[3454,3481,3480,0],[32825,32799,32803,0],[32825,32803,3251,0],[3482,32799,32824,0],[3482,32824,3455,0],[3455,32824,3453,0],[3449,32821,3468,0],[3468,3483,3447,0],[3447,3483,3445,0],[3441,3442,3383,0],[3441,3383,3485,0],[3487,3378,3486,0],[3487,3486,38606,0],[38606,3486,3488,0],[3487,38606,3367,0],[3378,3379,3486,0],[3357,3489,3358,0],[3489,3357,3488,0],[3489,3488,3486,0],[3513,3497,3491,0],[3378,3491,3490,0],[3497,28830,3491,0],[3491,28830,28829,0],[3491,28829,3490,0],[3490,28829,3492,0],[3490,3492,3495,0],[3495,3492,28839,0],[38779,3493,28832,0],[38779,28832,3382,0],[3382,28832,3494,0],[3494,3384,32831,0],[3494,32831,3382,0],[38779,3381,3493,0],[3493,3381,3380,0],[3493,3380,3495,0],[3495,28839,3493,0],[3495,3378,3490,0],[3378,3495,3380,0],[3496,3377,3376,0],[3376,3377,3368,0],[436,3498,3499,0],[3499,3498,3500,0],[3499,3500,3503,0],[3499,3503,3371,0],[3500,3374,3501,0],[3375,3374,438,0],[3500,48974,3502,0],[3503,3502,3376,0],[3502,3503,3500,0],[3504,3370,3369,0],[3504,3369,3505,0],[3508,3505,38613,0],[38613,3505,3506,0],[3532,3504,3507,0],[3507,3504,3505,0],[3507,3505,3508,0],[3508,38612,38611,0],[3524,3509,3525,0],[3366,3525,38614,0],[3508,38613,38612,0],[435,3504,3532,0],[3369,3368,3506,0],[3510,3487,38776,0],[3510,38776,3511,0],[3512,3513,3511,0],[3511,3513,3510,0],[3242,3351,3514,0],[3243,3353,3354,0],[3243,3354,3244,0],[3351,3348,3350,0],[3351,3350,3364,0],[3364,3350,3519,0],[3364,3519,3515,0],[3515,3519,3535,0],[3515,3535,3516,0],[3517,3516,3518,0],[3518,3516,3536,0],[3536,3516,3535,0],[3350,28853,3519,0],[3519,28853,3520,0],[3520,28853,420,0],[3520,420,422,0],[3520,422,3521,0],[3521,422,425,0],[3521,425,3526,0],[3521,3526,3522,0],[3522,3523,3537,0],[3528,28848,3529,0],[3524,3530,3509,0],[38611,3509,3531,0],[38611,3531,3508,0],[3508,3531,3507,0],[3509,3530,3531,0],[3531,3530,3534,0],[3531,3534,3507,0],[3507,3534,3532,0],[3532,3533,28847,0],[3532,3534,3533,0],[3529,3534,3530,0],[3524,3537,3530,0],[3537,3523,3530,0],[3530,3523,3529,0],[3529,3523,3528,0],[3528,3523,3522,0],[3528,3522,3527,0],[3527,3522,3526,0],[3519,3520,3535,0],[3536,3535,3521,0],[3521,3535,3520,0],[3518,3521,3522,0],[3518,3522,3537,0],[3537,3524,3517,0],[3517,3524,3525,0],[3517,3525,3538,0],[3517,3538,3539,0],[3517,3539,3516,0],[3537,3517,3518,0],[3525,3366,3538,0],[3538,3361,3363,0],[3361,3538,3365,0],[3365,3538,3366,0],[3516,3539,3515,0],[3539,3538,3540,0],[3539,3540,3515,0],[3538,3363,3540,0],[3515,3540,3364,0],[3218,3217,3219,0],[38104,2227,3214,0],[38104,3214,3215,0],[3216,3544,3541,0],[38106,3541,3542,0],[2122,3543,3340,0],[3543,3542,3340,0],[3340,3542,3541,0],[3340,3541,3544,0],[3544,3218,3338,0],[3544,3338,3340,0],[3215,3216,38107,0],[38107,3216,3541,0],[2227,3545,3214,0],[3214,3545,3222,0],[3222,3545,3212,0],[3213,2228,3553,0],[3553,2228,3174,0],[3553,3174,3556,0],[3553,3556,3546,0],[3211,3546,3548,0],[3211,3548,3547,0],[3547,3548,3549,0],[3550,3549,3551,0],[3550,3551,3204,0],[3204,3551,3552,0],[3203,3552,3202,0],[3546,3211,3553,0],[3547,3209,3210,0],[3174,3173,3554,0],[3554,3171,3555,0],[3555,3171,3169,0],[3555,3169,3558,0],[3171,3554,3173,0],[3174,3554,3556,0],[3558,3557,3559,0],[3558,3559,3566,0],[3566,3559,3200,0],[3560,38644,2942,0],[2942,38644,2943,0],[2942,2941,3560,0],[3560,2941,3200,0],[3546,3556,3561,0],[3546,3561,3548,0],[3548,3561,3199,0],[3548,3199,3562,0],[3548,3562,3564,0],[3564,3562,3563,0],[3564,3563,3552,0],[3552,3551,3564,0],[3551,3549,3564,0],[3549,3548,3564,0],[3199,3198,3562,0],[3562,3198,3563,0],[3552,3563,3202,0],[3202,3563,3565,0],[3199,3561,3566,0],[3566,3561,3567,0],[3566,3567,3558,0],[3558,3567,3555,0],[3555,3567,3556,0],[3556,3567,3561,0],[3566,3200,3199,0],[3205,3206,3204,0],[3568,3550,3569,0],[3569,3550,3207,0],[3550,3204,3207,0],[3207,3204,3206,0],[3550,3568,3549,0],[3549,3568,3547,0],[3547,3568,3209,0],[374,373,3206,0],[3206,373,371,0],[3208,371,3570,0],[3569,3570,3223,0],[3569,3223,3220,0],[3223,3570,3342,0],[3342,3570,3571,0],[3342,3571,3346,0],[3346,3571,3572,0],[3346,3572,3344,0],[3344,369,3573,0],[417,3345,3573,0],[3573,3345,3344,0],[369,3344,3572,0],[3571,3570,371,0],[3202,2938,3574,0],[3202,3574,3203,0],[2939,2936,2938,0],[2929,111,3575,0],[3576,38652,38668,0],[38668,2929,3576,0],[3576,2929,3575,0],[3575,111,112,0],[3575,112,3577,0],[3577,3578,3579,0],[3579,3578,3580,0],[3580,3587,2935,0],[2935,3587,3581,0],[2935,3581,2936,0],[2936,3581,3582,0],[2936,3582,2937,0],[3582,3583,3596,0],[3596,3583,3593,0],[3593,3583,3592,0],[116,3592,3584,0],[116,3584,115,0],[3585,3588,3591,0],[3591,3588,3586,0],[3586,3578,3577,0],[3578,3588,3580,0],[3578,3586,3588,0],[3587,3580,3588,0],[3587,3588,3589,0],[3587,3589,3581,0],[3581,3589,3582,0],[3582,3589,3583,0],[3583,3589,3590,0],[3590,3589,3585,0],[3585,3589,3588,0],[3583,3590,3592,0],[3592,3590,3584,0],[3584,3590,3585,0],[3585,3591,3584,0],[3584,3591,113,0],[3593,3592,380,0],[116,380,3592,0],[3597,3595,3574,0],[2938,2937,3574,0],[3574,2937,3597,0],[3597,3596,3595,0],[3595,3596,3594,0],[2937,3582,3597,0],[3597,3582,3596,0],[3596,3593,3594,0],[3594,3593,380,0],[380,379,3594,0],[3594,379,3598,0],[375,3598,377,0],[377,3598,379,0],[3594,3598,3595,0],[3595,3598,3599,0],[3595,3599,3203,0],[375,3205,3598,0],[3598,3205,3599,0],[3574,3595,3203,0],[112,113,3577,0],[3577,113,3586,0],[2927,2925,108,0],[2925,109,108,0],[2909,2911,2908,0],[2908,3603,2907,0],[2907,3603,3600,0],[2907,3600,2906,0],[2908,3628,2909,0],[3603,2912,2919,0],[3603,49784,3604,0],[3603,3604,3600,0],[3600,3604,49718,0],[3601,49718,2904,0],[3601,2904,3602,0],[49784,3603,3605,0],[3605,3603,2919,0],[2903,3640,2904,0],[2904,3640,3639,0],[3612,3639,3606,0],[3608,49989,3611,0],[49989,77,3611,0],[3611,77,3609,0],[80,3609,3610,0],[3609,38701,3610,0],[3608,3611,38718,0],[38718,3611,3607,0],[3607,3611,3606,0],[3606,3611,82,0],[3606,82,3612,0],[3612,82,3631,0],[3631,82,3613,0],[3613,3614,3615,0],[3619,3617,3622,0],[3618,3619,3620,0],[38465,3622,3623,0],[3623,3622,3625,0],[3623,3625,3624,0],[3626,3625,3617,0],[3626,3617,3616,0],[3617,3625,3622,0],[3616,3617,3619,0],[3627,3619,3618,0],[3618,3620,2905,0],[2905,3620,3621,0],[2905,3621,3628,0],[3628,2907,2905,0],[3627,3629,3615,0],[3615,3629,3631,0],[3627,3615,3619,0],[3615,3616,3619,0],[3627,48981,3629,0],[3630,3631,3629,0],[3630,3602,3612,0],[3630,3612,3631,0],[3615,3631,3613,0],[82,3632,3613,0],[3632,3633,3613,0],[3613,3633,3614,0],[3614,3633,3635,0],[3614,3635,3634,0],[83,3611,3609,0],[3609,80,83,0],[38700,80,79,0],[49786,3636,3637,0],[3636,3638,3637,0],[3637,3638,3606,0],[3637,3606,3639,0],[3637,3639,3640,0],[3606,3638,3607,0],[4894,49779,49781,0],[49781,49779,49776,0],[49776,49779,49775,0],[49775,49779,3642,0],[2853,49781,3644,0],[4854,3644,4892,0],[4854,4892,3645,0],[3650,3645,4888,0],[3650,4888,3649,0],[3649,4888,3646,0],[3648,3646,3647,0],[3647,2839,3648,0],[3648,3649,3646,0],[3650,3649,3652,0],[3652,3653,4852,0],[3652,4852,3650,0],[3650,4852,3651,0],[3645,3651,4854,0],[3653,4839,4852,0],[4852,4839,3654,0],[3655,4853,3656,0],[29368,3656,3657,0],[3657,4846,27,0],[27,4846,23,0],[23,4846,25,0],[25,4846,4842,0],[25,4845,3658,0],[3659,4860,3660,0],[3663,3662,4866,0],[3665,4868,4870,0],[3665,4870,29344,0],[29344,4870,3666,0],[3666,4870,3667,0],[3667,49961,3668,0],[3668,49961,3669,0],[3669,3670,29357,0],[29357,3670,3671,0],[29353,3672,4886,0],[29353,4886,29361,0],[1852,3673,1853,0],[3673,4883,1854,0],[3675,4838,3676,0],[3677,3676,4815,0],[3677,4815,49651,0],[49651,4815,3678,0],[3678,3680,3679,0],[49647,3680,4809,0],[49647,4809,3681,0],[3681,4809,3682,0],[3682,4809,3683,0],[3684,4811,3826,0],[3826,4811,3825,0],[3825,4811,4804,0],[3825,3685,3686,0],[3686,3685,3817,0],[3817,3685,3818,0],[3818,3685,3687,0],[3818,3687,4802,0],[4802,4812,3715,0],[3715,4812,3688,0],[3688,4818,29367,0],[29367,29366,3689,0],[3689,29366,29320,0],[29320,3690,3691,0],[3692,29324,3693,0],[3694,3693,3695,0],[3694,3695,3696,0],[3698,3699,29379,0],[29379,3699,3700,0],[3701,3702,3703,0],[3703,3702,29354,0],[3703,29354,3704,0],[1803,3704,1804,0],[3704,1803,3703,0],[3697,3698,3705,0],[3697,3705,3711,0],[3711,3705,3706,0],[3711,3706,3707,0],[3707,3706,1798,0],[3707,1798,1797,0],[3707,3713,3711,0],[3697,3711,3708,0],[5349,3709,3712,0],[5349,3712,3710,0],[3708,3709,3696,0],[3708,3711,3709,0],[3709,3711,3712,0],[3713,3707,3710,0],[3710,3707,1794,0],[1794,3707,5260,0],[3713,3712,3711,0],[3713,3710,3712,0],[29367,3689,3714,0],[29367,3714,3688,0],[3688,3714,3715,0],[3717,3715,3716,0],[3717,3716,3718,0],[3719,3718,3720,0],[3720,29316,3721,0],[3721,5537,5533,0],[5533,5537,5534,0],[3724,3723,3725,0],[3724,3725,3726,0],[3726,3725,5532,0],[29307,3726,3727,0],[29307,3727,29306,0],[29306,3727,3728,0],[3728,3727,3845,0],[3728,3845,3847,0],[3847,3729,3730,0],[3730,3729,3731,0],[3732,3731,3734,0],[3732,3734,3733,0],[3733,3734,3735,0],[3735,3734,3736,0],[3735,3736,3737,0],[3737,3736,3738,0],[3739,3740,3810,0],[3810,3740,3741,0],[3810,3741,28976,0],[28976,3741,3742,0],[28976,3742,28977,0],[28977,3742,3743,0],[3743,29256,3744,0],[28979,3744,3745,0],[28979,3745,28984,0],[28984,3745,29291,0],[28984,29291,3824,0],[3824,29291,3746,0],[3682,29291,3747,0],[3747,29291,11,0],[3747,11,13,0],[29291,3745,3809,0],[29291,3809,11,0],[3745,3744,3748,0],[3748,3749,9,0],[3750,29258,29257,0],[3750,29257,3797,0],[3751,29257,29256,0],[3751,29256,3808,0],[3753,3752,29261,0],[3753,29261,3842,0],[3753,3842,3754,0],[3754,3842,49625,0],[3754,49625,3755,0],[3756,3802,3754,0],[3754,3802,3753,0],[3756,3754,3755,0],[3755,49627,3805,0],[3805,49627,49629,0],[3804,3757,3803,0],[3782,3779,3794,0],[3782,3794,3759,0],[3759,49628,3789,0],[3788,3760,3786,0],[3786,3760,3761,0],[29267,29264,3762,0],[29267,3762,3763,0],[3768,3766,3767,0],[3768,3767,4770,0],[3768,4770,3769,0],[3769,4762,29271,0],[3770,4761,29194,0],[3770,29194,29272,0],[29275,29272,49621,0],[29275,49621,3771,0],[29284,49622,3774,0],[29284,3774,29283,0],[49986,3773,49634,0],[49634,3773,49635,0],[3784,3772,3783,0],[49991,3783,3772,0],[3793,29283,3772,0],[29283,3774,3775,0],[3777,3776,49622,0],[3776,3775,49622,0],[3778,29164,3773,0],[3778,3773,29283,0],[29283,3775,3778,0],[3784,3783,3781,0],[3784,3781,3782,0],[3780,49998,2854,0],[3779,3780,2854,0],[3780,3782,3781,0],[3801,3779,49655,0],[3779,3782,3780,0],[3793,3791,3792,0],[3785,3786,3787,0],[3787,3786,3761,0],[3786,3785,3788,0],[3788,3790,3789,0],[3793,3784,3759,0],[3791,3790,49630,0],[3790,29290,49630,0],[3785,29290,3788,0],[49628,3788,3789,0],[3790,3759,3789,0],[3793,3759,3790,0],[3790,3791,3793,0],[28972,49995,30060,0],[30,28972,36,0],[36,28972,30060,0],[30,36,68,0],[49991,49995,3783,0],[29281,3792,49630,0],[49630,3792,3791,0],[3784,3793,3772,0],[29279,3793,3792,0],[3793,29277,29283,0],[3774,49622,3775,0],[3758,3757,3794,0],[3782,3759,3784,0],[3803,3757,3758,0],[28974,3795,3796,0],[3802,3796,3797,0],[29257,3751,3797,0],[3797,3798,8,0],[8,3798,3799,0],[8,3799,7,0],[7,3799,5,0],[7,5,6,0],[3797,8,3750,0],[3750,8,3749,0],[3750,3749,29258,0],[3797,3796,3798,0],[3798,3796,3795,0],[3798,3795,3800,0],[3799,3800,0,0],[3801,3794,3779,0],[3758,3794,28974,0],[3794,3795,28974,0],[3800,3795,49974,0],[3794,49974,3795,0],[3794,3801,49974,0],[0,49974,3801,0],[3808,3752,3751,0],[3751,3752,3797,0],[3797,3752,3802,0],[3752,3753,3802,0],[3804,3756,3806,0],[3806,3757,3804,0],[3756,3804,3803,0],[49629,3806,3805,0],[49629,3757,3806,0],[3805,3806,3755,0],[3755,3806,3756,0],[3758,3807,3803,0],[3803,3796,3756,0],[3796,3803,3807,0],[3752,3808,28975,0],[3808,29256,3742,0],[3742,29256,3743,0],[29258,3748,3744,0],[3809,3745,3748,0],[3809,3748,9,0],[3739,3810,3811,0],[3812,3813,3835,0],[3835,3813,3821,0],[3835,3821,3814,0],[3815,3814,3819,0],[3815,3819,3816,0],[3816,3819,3817,0],[3819,3814,3821,0],[3821,3813,3820,0],[3821,3820,3822,0],[3821,3822,3823,0],[3822,3824,3684,0],[3684,3824,3683,0],[3683,3824,3746,0],[3683,3746,3682,0],[3821,3823,3819,0],[3819,3823,3686,0],[3684,3826,3822,0],[3686,3823,3825,0],[3825,3823,3826,0],[3739,3811,3738,0],[3738,3811,3737,0],[3737,3811,3735,0],[3811,3834,3735,0],[3735,3834,3833,0],[3735,3833,28985,0],[28985,3833,3827,0],[28985,3827,3828,0],[3828,3827,3829,0],[3828,3829,3844,0],[3831,3830,3832,0],[3829,3827,3830,0],[3830,3827,3833,0],[3830,3833,3832,0],[3811,3812,3834,0],[3834,3812,3835,0],[3835,3814,3832,0],[3832,3833,3835,0],[3835,3833,3834,0],[3736,3734,4789,0],[3736,4789,3836,0],[3836,4789,3837,0],[3836,3837,29308,0],[29308,3837,4792,0],[29308,4792,3838,0],[3839,3838,49658,0],[29261,3841,3842,0],[49625,3842,3841,0],[29261,3843,3841,0],[3843,3839,3840,0],[3840,3839,49658,0],[3843,3840,3841,0],[3731,3732,3730,0],[3730,3828,3844,0],[3844,3728,3847,0],[3730,3844,3847,0],[3845,3846,3847,0],[3847,3846,3848,0],[3848,29952,4788,0],[4788,29952,29959,0],[4788,29959,29965,0],[4788,29965,3849,0],[3849,29965,3850,0],[3849,3850,4790,0],[4790,3850,28988,0],[28988,3850,3851,0],[3851,3850,29964,0],[3851,29964,29963,0],[28990,29963,28991,0],[28991,29963,3852,0],[3852,29961,3853,0],[3853,29961,29967,0],[3853,29967,4786,0],[4786,29967,3854,0],[4786,3854,3855,0],[4786,3855,4624,0],[4624,3855,4622,0],[4622,3856,4623,0],[4623,3856,4618,0],[4787,29945,3858,0],[3858,29945,3859,0],[3859,3860,3861,0],[3864,3863,4616,0],[4615,3865,3866,0],[3867,3866,3868,0],[3867,3868,4613,0],[3867,4613,3869,0],[3867,3869,29985,0],[3870,3869,29971,0],[29971,3869,29969,0],[29969,4612,3871,0],[3871,4597,3872,0],[30378,30376,3876,0],[30380,3877,3878,0],[3878,3877,6158,0],[3878,6158,6166,0],[3878,6166,4562,0],[4562,6166,3879,0],[3880,4516,3881,0],[3881,4516,4517,0],[3881,4517,3882,0],[3882,3883,49615,0],[30403,49615,3884,0],[3885,3884,4508,0],[3885,4508,3886,0],[4573,3886,4574,0],[3887,3888,3889,0],[3889,3888,3890,0],[3890,3888,4505,0],[3890,4505,3891,0],[3890,3891,4716,0],[4716,3926,3892,0],[3892,3893,30391,0],[30391,3893,30386,0],[30386,3893,3894,0],[3894,3928,3895,0],[3895,3949,3950,0],[3895,3950,3912,0],[3912,3950,3951,0],[3954,3897,3910,0],[3910,3897,3898,0],[3910,3898,3899,0],[3899,3898,4085,0],[3908,3899,4080,0],[3908,4080,3900,0],[3908,3900,3925,0],[3925,3900,3901,0],[3902,3903,3904,0],[3904,3903,3905,0],[3905,3903,3906,0],[3899,3908,3910,0],[3910,3908,3909,0],[3910,3909,3896,0],[3951,3896,3912,0],[3912,3911,3914,0],[3913,3895,3914,0],[3913,3914,3915,0],[3915,3924,3916,0],[3916,3924,3917,0],[3916,3917,3902,0],[3916,3902,3904,0],[3916,3921,3915,0],[3915,3921,3918,0],[3918,3921,30390,0],[4728,30390,3921,0],[4728,3919,3920,0],[3920,3919,339,0],[3920,339,340,0],[3922,3905,339,0],[339,3905,338,0],[338,3905,3907,0],[3907,3905,3906,0],[3905,3922,3904,0],[3904,3922,3916,0],[3922,3921,3916,0],[339,3919,3922,0],[3921,3919,4728,0],[3922,3919,3921,0],[3915,3918,3923,0],[3915,3923,3913,0],[3913,3894,3895,0],[3914,3895,3912,0],[3915,3914,3924,0],[3917,3924,3925,0],[3917,3925,3901,0],[3917,3901,3902,0],[3896,3909,3912,0],[3912,3909,3911,0],[3924,3911,3925,0],[3925,3911,3909,0],[3925,3909,3908,0],[3924,3914,3911,0],[3896,3954,3910,0],[3926,3927,3893,0],[3893,3927,3894,0],[3894,3927,3928,0],[3928,4503,3929,0],[3933,4511,3938,0],[3938,4511,3934,0],[31282,3934,3935,0],[31282,3935,31284,0],[31282,30209,30215,0],[30228,30225,31283,0],[31283,30225,30224,0],[30224,30223,3936,0],[3937,3947,3938,0],[3933,3938,3940,0],[3940,3938,3939,0],[3940,3939,3941,0],[3940,3941,3932,0],[3932,3941,3955,0],[3932,3955,3931,0],[3939,3942,3944,0],[3944,3942,30904,0],[3944,30904,3943,0],[3946,30525,3945,0],[3945,3955,3941,0],[3941,3939,3945,0],[3945,3939,3944,0],[3944,3946,3945,0],[3938,3934,3937,0],[3937,3936,3947,0],[3947,3936,30913,0],[3947,30913,3939,0],[3939,30913,3942,0],[3939,3938,3947,0],[3930,3929,3948,0],[3930,3948,3931,0],[3928,3929,3895,0],[3895,3929,3949,0],[3949,3929,3930,0],[3949,3930,3952,0],[3949,3952,3950,0],[3950,3952,3951,0],[3951,3952,3953,0],[3951,3953,3896,0],[3952,3955,3953,0],[3953,3954,3896,0],[3930,3931,3952,0],[3952,3931,3955,0],[3953,3955,4502,0],[30524,4502,30222,0],[30524,30222,4501,0],[3958,3957,30570,0],[3958,30570,30569,0],[3958,30569,30931,0],[3958,30931,30930,0],[30929,30930,3959,0],[30929,3959,3998,0],[3998,3959,4014,0],[4014,3960,3961,0],[4118,3986,3967,0],[3967,3986,30609,0],[3977,30609,3988,0],[3977,3988,3990,0],[3977,3990,3978,0],[3978,3990,3989,0],[3978,3989,3982,0],[3982,3989,3968,0],[3982,3968,3969,0],[3983,3969,30829,0],[3983,30829,49617,0],[3980,30697,3970,0],[3972,3973,3974,0],[3974,3973,3975,0],[3979,3975,3976,0],[3985,3976,3981,0],[3977,3978,3981,0],[3976,3985,3979,0],[3975,3979,3974,0],[3971,3974,3980,0],[3971,3980,3970,0],[30697,3980,3979,0],[30697,3979,3985,0],[3979,3980,3974,0],[3974,3971,3972,0],[3978,3982,3981,0],[3981,3982,3984,0],[3984,3982,3983,0],[3984,3983,49617,0],[3982,3969,3983,0],[30609,3986,3991,0],[3991,3965,3987,0],[3987,3965,3993,0],[3987,3993,3990,0],[3991,3987,3988,0],[3991,3988,30609,0],[3990,3993,3989,0],[3987,3990,3988,0],[4496,3965,3991,0],[4496,3991,3966,0],[3966,3991,3986,0],[3963,3962,3992,0],[3962,30572,3992,0],[3992,30572,3964,0],[3993,30572,3989,0],[3993,3964,30572,0],[30929,3998,30557,0],[3994,30556,3995,0],[3996,3995,30553,0],[3996,30553,4501,0],[4501,30553,3997,0],[4501,3997,30524,0],[3999,4498,4000,0],[30571,4001,4002,0],[4002,4001,4016,0],[4002,4016,4013,0],[4003,4013,4070,0],[4005,4067,4006,0],[4006,4067,4072,0],[4003,4007,4011,0],[30554,4011,4008,0],[4010,4008,4009,0],[3897,4009,4084,0],[3897,4084,3898,0],[4009,3897,4010,0],[4008,4010,30554,0],[30554,4012,4011,0],[4011,4012,4002,0],[4002,4012,30571,0],[4013,4003,4011,0],[4002,4013,4011,0],[4011,4007,4008,0],[4006,4007,4005,0],[4005,4007,4004,0],[4004,4007,4003,0],[3962,4498,4014,0],[4014,3961,30572,0],[4014,30572,3962,0],[4498,3962,4000,0],[3962,3963,4000,0],[4000,3963,4001,0],[4001,3963,4016,0],[4013,4016,4015,0],[4016,3963,4018,0],[4016,4018,4015,0],[4015,4018,4017,0],[4017,4018,3966,0],[4017,3966,4019,0],[4020,4089,30610,0],[4005,4494,4021,0],[4023,4022,4044,0],[4044,4022,4042,0],[4042,4022,4041,0],[30691,4086,4024,0],[4026,4025,4027,0],[4028,4029,4030,0],[4030,4029,30617,0],[30617,4029,4031,0],[4031,4029,30549,0],[4031,30549,4032,0],[4032,30549,4132,0],[30684,4033,4034,0],[4034,4033,4133,0],[4034,4133,30685,0],[4037,4035,4036,0],[4038,457,456,0],[4025,4026,4024,0],[4024,4026,30690,0],[4024,30690,30691,0],[4086,30691,30704,0],[4086,30704,4041,0],[4041,30704,4039,0],[4039,4040,4041,0],[4042,4043,4044,0],[4044,4043,4045,0],[4045,4043,4046,0],[4047,4046,4048,0],[4047,4048,4049,0],[4049,4048,4063,0],[4049,4063,4060,0],[4049,4060,4050,0],[4051,4064,4053,0],[4052,4053,4054,0],[4054,4053,4055,0],[4054,4055,433,0],[433,4055,4056,0],[4046,4043,4057,0],[4046,4057,4048,0],[444,4058,445,0],[4063,4059,4060,0],[4060,4062,4061,0],[4061,4062,441,0],[4062,4060,4059,0],[444,4059,4058,0],[4058,4059,4063,0],[443,4062,4059,0],[4060,4061,4050,0],[4050,4061,4051,0],[4051,4061,4064,0],[4064,4066,4065,0],[4065,4066,30808,0],[30811,30808,440,0],[441,4066,4061,0],[4064,4061,4066,0],[4044,4076,4075,0],[4005,4004,4494,0],[4494,4004,4495,0],[4069,4070,4017,0],[4017,4070,4015,0],[4069,4017,4071,0],[4069,4071,4068,0],[4068,4071,30611,0],[4068,30611,4495,0],[4495,30611,30610,0],[4495,4004,4068,0],[4068,4004,4069,0],[4004,4003,4069,0],[4069,4003,4070,0],[4070,4013,4015,0],[4005,4021,4067,0],[4021,4023,4067,0],[4067,4023,4075,0],[4072,4075,4077,0],[4077,4079,4073,0],[3899,4085,4073,0],[4077,4073,4074,0],[4072,4077,4074,0],[4072,4067,4075,0],[4075,4076,4081,0],[4081,4076,4045,0],[4045,4076,4044,0],[4079,4077,4078,0],[4079,4082,4073,0],[4073,4082,4080,0],[4073,4080,3899,0],[4077,4075,4081,0],[4077,4081,4078,0],[28873,4046,4047,0],[4078,28873,4079,0],[4079,28873,4082,0],[4080,4082,3900,0],[4081,4045,4078,0],[4078,4045,4046,0],[4078,4046,28873,0],[4083,4009,4008,0],[4084,4074,4085,0],[4085,4074,4073,0],[4085,3898,4084,0],[4006,4074,4083,0],[4074,4084,4083,0],[4083,4084,4009,0],[4008,4007,4083,0],[4083,4007,4006,0],[4022,4086,4041,0],[4086,4087,4088,0],[4088,4087,4493,0],[4088,4493,30703,0],[30703,4493,4090,0],[30703,4090,4089,0],[4491,4115,4489,0],[4489,4115,4490,0],[4490,4115,4112,0],[4112,4117,4091,0],[4091,3967,4113,0],[4093,3976,4094,0],[4093,4094,4095,0],[4488,4096,4097,0],[4098,4423,4427,0],[4098,4427,4099,0],[4267,4099,4426,0],[4267,4426,4100,0],[4100,4425,4275,0],[4275,4425,4417,0],[4275,4417,4276,0],[4276,4417,4410,0],[4276,4410,4277,0],[4277,4410,4101,0],[4101,4102,4108,0],[4108,4102,4103,0],[4103,4102,4411,0],[4103,4411,4104,0],[4109,4104,4105,0],[4105,4438,4106,0],[4106,4438,4320,0],[4106,4475,4474,0],[4106,4474,4107,0],[4103,4104,4109,0],[4108,4103,4107,0],[4107,4103,4109,0],[4109,4105,4110,0],[4110,4105,4106,0],[4107,4109,4110,0],[4110,4106,4107,0],[4113,4486,4111,0],[4113,4111,4112,0],[4113,4112,4091,0],[4093,4486,30607,0],[30608,30607,4092,0],[30608,4092,4113,0],[4092,30607,4486,0],[4112,4115,4117,0],[4117,4115,4114,0],[4020,4114,4491,0],[4491,4114,4115,0],[4020,4116,4114,0],[4116,4019,4118,0],[4114,4116,4117,0],[4117,4116,4118,0],[3986,4118,3966,0],[3966,4118,4019,0],[4089,4492,30703,0],[30703,4492,4025,0],[4025,4492,4027,0],[4027,4492,4028,0],[4028,4492,4119,0],[4028,4119,4120,0],[4120,4119,4121,0],[4120,4121,4122,0],[4122,4121,4487,0],[4122,4487,4123,0],[4124,4123,4125,0],[4098,4099,4127,0],[4127,4128,4126,0],[4126,4128,4125,0],[4127,4126,4098,0],[4265,4129,4130,0],[4265,4130,4264,0],[4264,4130,4131,0],[4131,4139,4132,0],[4132,4139,4033,0],[4133,4033,4134,0],[4146,4134,4140,0],[4146,4140,4142,0],[4135,4136,4137,0],[4141,4138,4142,0],[4131,4141,4140,0],[4131,4140,4139,0],[4139,4140,4134,0],[4142,4140,4141,0],[4134,4033,4139,0],[4136,4142,4137,0],[4137,4142,4138,0],[4184,4133,4146,0],[4185,4146,4145,0],[4185,4145,4143,0],[30709,4193,30693,0],[30692,4144,4145,0],[4134,4146,4133,0],[4146,4142,4147,0],[4144,30616,4270,0],[30710,4278,4149,0],[4151,4290,30694,0],[30694,4290,4152,0],[30694,4152,4153,0],[4156,4310,4157,0],[4158,4308,4309,0],[4158,4309,32444,0],[32444,4161,4211,0],[4211,4161,4213,0],[4159,4209,4160,0],[4162,4167,32423,0],[32423,4167,4163,0],[4312,4164,4306,0],[4318,30826,4166,0],[4166,30827,4165,0],[4163,4164,4165,0],[4165,4164,4166,0],[4318,4166,4316,0],[4164,4312,4166,0],[4166,4312,4316,0],[4209,4213,4160,0],[4160,4213,4451,0],[4451,4213,4161,0],[4162,4161,4167,0],[4168,4181,30695,0],[30695,4181,4169,0],[4170,4169,4176,0],[4170,4176,4174,0],[4170,4174,30717,0],[4171,30717,4172,0],[4214,4173,4172,0],[4214,4172,4219,0],[4175,4219,4174,0],[30722,4175,4176,0],[30722,4176,4182,0],[30722,4182,4181,0],[30722,4181,4154,0],[4154,4181,4168,0],[4154,4155,30722,0],[4173,4221,4172,0],[4172,30717,4174,0],[4172,4221,4171,0],[4171,4221,4177,0],[4177,4222,4178,0],[4178,4222,4224,0],[4180,4224,4215,0],[4180,4215,4179,0],[4179,30719,4180,0],[4224,4180,4178,0],[4168,30695,4153,0],[4153,30695,30694,0],[4181,4182,4169,0],[4169,4182,4176,0],[4176,4175,4174,0],[4172,4174,4219,0],[4145,4183,4143,0],[4145,4144,4183,0],[4193,4183,30693,0],[30693,4183,4144,0],[4183,4193,4143,0],[4143,4193,4191,0],[4184,4185,4035,0],[4184,4035,30685,0],[4185,4184,4146,0],[4184,30685,4133,0],[4036,4186,4263,0],[4263,4186,4260,0],[4260,4186,4189,0],[4260,4189,4259,0],[4259,4189,4192,0],[461,28786,4187,0],[461,4187,4257,0],[4257,4187,4188,0],[4190,4189,4186,0],[4190,4186,4191,0],[4191,4186,4143,0],[4143,4186,4036,0],[4143,4036,4185,0],[28786,4192,4187,0],[4187,4189,4188,0],[4191,4193,4190,0],[4256,4193,30709,0],[4256,30709,4250,0],[4258,4250,4255,0],[4194,4254,4195,0],[4194,4195,461,0],[23464,461,4195,0],[464,4197,4198,0],[464,4198,465,0],[4243,4179,4199,0],[4203,4202,4204,0],[30723,4204,4205,0],[30723,4205,4450,0],[4205,4204,4206,0],[4202,4207,4204,0],[4204,4207,4206,0],[4205,4206,4217,0],[4205,4217,4218,0],[4205,4218,4208,0],[4208,4218,4209,0],[4208,4209,4159,0],[4308,4158,32446,0],[4211,4210,4212,0],[4211,4212,4158,0],[4158,4212,32446,0],[4213,4209,4210,0],[4213,4210,4211,0],[4210,4225,4214,0],[4210,4214,4212,0],[4225,4210,4209,0],[4199,4179,4215,0],[4199,4215,4227,0],[4227,4215,4216,0],[4223,4217,4206,0],[4218,4173,4225,0],[4225,4173,4214,0],[32445,4175,30722,0],[4175,32445,4212,0],[4175,4212,4219,0],[4219,4212,4214,0],[4173,4218,4220,0],[4173,4220,4221,0],[4177,4221,4222,0],[4224,4222,4223,0],[4224,4223,4226,0],[4216,4215,4224,0],[4224,4226,4216,0],[4220,4222,4221,0],[4223,4222,4217,0],[4217,4222,4220,0],[4217,4220,4218,0],[4218,4225,4209,0],[4216,4226,4228,0],[4216,4228,4227,0],[4227,4228,4201,0],[4199,4227,4200,0],[4228,4226,4207,0],[4228,4207,4202,0],[4228,4202,4201,0],[4201,4202,30751,0],[4226,4206,4207,0],[4206,4226,4223,0],[4243,4199,4229,0],[4243,4229,465,0],[465,4229,468,0],[468,4229,4236,0],[468,4236,4230,0],[4235,4230,4231,0],[4234,4231,30821,0],[4234,30821,4232,0],[4232,30821,30822,0],[4232,30822,4233,0],[4233,30822,4200,0],[4200,4201,4233,0],[4233,4201,30751,0],[4232,4233,30752,0],[4232,30752,4234,0],[4234,30752,30756,0],[4234,30756,470,0],[4231,4230,4236,0],[30822,4236,4229,0],[468,466,465,0],[4196,462,4195,0],[4195,4254,4247,0],[4247,4254,4237,0],[4238,4237,30711,0],[4238,30711,30721,0],[4246,4238,4239,0],[30715,4239,4240,0],[4240,30800,30715,0],[30715,4241,30718,0],[30798,30719,4242,0],[4242,4179,4243,0],[4242,4243,4244,0],[4238,4246,4247,0],[4238,4247,4237,0],[4247,4196,4195,0],[4243,465,4198,0],[4243,4198,4244,0],[4244,4198,4197,0],[4244,4197,4245,0],[4245,4197,4248,0],[4246,4249,4247,0],[4247,4249,4248,0],[4247,4248,4196,0],[4249,4245,4248,0],[4237,4253,30711,0],[4237,4254,4253,0],[4253,4254,4255,0],[4255,4254,4194,0],[4255,4251,4252,0],[4255,4252,4253,0],[4255,4250,4251,0],[4190,4193,4256,0],[4258,4256,4250,0],[4190,4256,4189,0],[4189,4256,4188,0],[4188,4256,4258,0],[4188,4258,4257,0],[4257,4258,4255,0],[4257,4255,4194,0],[4259,4262,4260,0],[4192,4261,4259,0],[4259,4261,4262,0],[458,4262,4261,0],[4035,4185,4036,0],[4036,4263,4037,0],[4263,458,457,0],[457,4038,4263,0],[4263,4038,4037,0],[4033,30684,4132,0],[4131,4132,4266,0],[4131,4266,4264,0],[4128,4129,4125,0],[4125,4129,4124,0],[4129,4265,4124,0],[4124,4265,4123,0],[4123,4265,4122,0],[4265,4264,4122,0],[4264,4266,4122,0],[4120,4266,4028,0],[4127,4099,4267,0],[4127,4267,30612,0],[4130,4268,4138,0],[4130,4138,4141,0],[4130,4129,4268,0],[4129,4128,4268,0],[4268,4128,30612,0],[30613,4269,4135,0],[4135,4269,4148,0],[4148,4269,30616,0],[4270,30616,4271,0],[4270,4271,4272,0],[4272,4271,4273,0],[4272,4273,4285,0],[4285,4273,4284,0],[4300,4275,4276,0],[4297,4276,4277,0],[4297,4277,4305,0],[4295,4305,4101,0],[4295,4101,4108,0],[4305,4277,4101,0],[4100,4275,4274,0],[4100,4274,30614,0],[30614,4274,30615,0],[4274,4275,4300,0],[4278,4279,4289,0],[4289,4279,4280,0],[4281,4280,4481,0],[4303,4481,4301,0],[4298,4282,4283,0],[4280,4288,4287,0],[4280,4279,4288,0],[4288,4279,4286,0],[4284,4298,4285,0],[4285,4298,4283,0],[4285,4283,4286,0],[4280,4287,4481,0],[4481,4287,4301,0],[4301,4283,4282,0],[4285,4286,4272,0],[4287,4288,4301,0],[4301,4288,4283,0],[4270,4278,30710,0],[4149,4278,4289,0],[4289,4280,4290,0],[4152,4290,4281,0],[4152,4281,4153,0],[4153,4281,4168,0],[4168,4281,4481,0],[4168,4481,4311,0],[4311,4481,4291,0],[4480,4292,4293,0],[4294,4295,4296,0],[4296,4295,4108,0],[4296,4108,4107,0],[4297,4483,4299,0],[4299,4483,4298,0],[4299,4298,4284,0],[4284,30615,4299,0],[4299,4300,4297,0],[4300,4276,4297,0],[4300,4299,4274,0],[4274,4299,30615,0],[4484,4293,4304,0],[4485,4304,4302,0],[4485,4302,4301,0],[4301,4302,4303,0],[4303,4302,4292,0],[4303,4292,4291,0],[4302,4304,4292,0],[4292,4304,4293,0],[4484,4295,4294,0],[4484,4294,4293,0],[4295,4484,4305,0],[4297,4305,4483,0],[4296,4477,4294,0],[4294,4477,4480,0],[4292,4313,4479,0],[4479,4314,4310,0],[4306,4164,4307,0],[4307,4164,4163,0],[4307,4163,4308,0],[4308,4163,4309,0],[32444,4309,4161,0],[4161,4309,4167,0],[4167,4309,4163,0],[4308,4157,4307,0],[4307,4157,4306,0],[4306,4157,4310,0],[4291,4292,4479,0],[4291,4479,4311,0],[4311,4479,4310,0],[4310,4156,4155,0],[4310,4155,4311,0],[4311,4155,4154,0],[4311,4154,4168,0],[4316,4312,4315,0],[4316,4315,4476,0],[4476,4315,4313,0],[4313,4315,4314,0],[4310,4314,4306,0],[4314,4315,4306,0],[4306,4315,4312,0],[4318,4316,4317,0],[4318,4317,4319,0],[4319,4320,4467,0],[4467,4320,4439,0],[4467,4439,4468,0],[4468,4439,4321,0],[4468,4321,4469,0],[4469,4321,4322,0],[4470,4322,4323,0],[4470,4323,4324,0],[4324,4326,4325,0],[4325,4326,4472,0],[4472,4326,4473,0],[4473,4326,4327,0],[4433,4329,4330,0],[4433,4330,4331,0],[4105,4104,4331,0],[4331,4104,4416,0],[4332,4333,4334,0],[4334,4333,4335,0],[3971,3970,4335,0],[4338,4339,4336,0],[4336,4340,4337,0],[4336,4337,4329,0],[4329,4337,4328,0],[4329,4433,4336,0],[4335,4338,4334,0],[4335,3970,4338,0],[4338,3970,30696,0],[4406,4341,4342,0],[4406,4342,4343,0],[4406,4343,4327,0],[4343,30836,4344,0],[4344,30836,30838,0],[30838,30836,4345,0],[4346,30901,30849,0],[30849,30901,4347,0],[4348,30586,30947,0],[30947,30586,4349,0],[30903,4349,4350,0],[30903,4350,30948,0],[30948,4350,4351,0],[4351,4350,4352,0],[4351,4352,4353,0],[4353,4354,4355,0],[4355,4354,4356,0],[4405,1261,30956,0],[1261,4356,4357,0],[4378,4377,4358,0],[4358,4359,4360,0],[4360,4359,4370,0],[4360,4370,28151,0],[4362,28151,4361,0],[4362,4363,30895,0],[4362,30895,4364,0],[4364,4365,4367,0],[4368,4369,4364,0],[4364,4369,28151,0],[4364,28151,4362,0],[4362,4361,4363,0],[4368,4364,4367,0],[28151,4369,4360,0],[4366,4368,4367,0],[4371,4370,1272,0],[1272,4370,4380,0],[1272,4380,4372,0],[1272,4372,1273,0],[1273,4372,4373,0],[4373,4372,1274,0],[1274,4372,31198,0],[1274,31198,4374,0],[4374,31198,31197,0],[4374,31197,4375,0],[4375,31197,4392,0],[4392,4376,4377,0],[4377,4378,4391,0],[4390,4391,4379,0],[4379,4391,4382,0],[4382,4391,4378,0],[1261,4357,4381,0],[4381,4357,4385,0],[4381,4385,4388,0],[4388,4382,4383,0],[4383,4382,4384,0],[4385,4379,4382,0],[4379,4385,4389,0],[4389,4385,4357,0],[1261,4381,1262,0],[1262,4381,4386,0],[4366,4387,4368,0],[4369,31269,4360,0],[4381,4388,4386,0],[4386,4388,4383,0],[4386,4383,4387,0],[4387,4383,4384,0],[4387,4384,4368,0],[4368,4384,4369,0],[4355,4356,4405,0],[4356,1261,4405,0],[4389,30606,4390,0],[4392,4393,4375,0],[4375,4393,31213,0],[4375,31213,4394,0],[4394,31213,4395,0],[4394,4395,1278,0],[1278,4395,31271,0],[4374,4375,4394,0],[4374,4394,4396,0],[1275,4396,4397,0],[4397,1278,1276,0],[1276,1278,1277,0],[4396,1274,4374,0],[4390,4379,4389,0],[4389,4357,4356,0],[4389,4356,30606,0],[4390,30606,4398,0],[4390,4398,4399,0],[4399,4398,4400,0],[4399,4400,4401,0],[4402,31210,31203,0],[4402,31203,4403,0],[4403,31203,31192,0],[4403,31192,4391,0],[4403,4391,4404,0],[4404,4391,4390,0],[4402,4403,4404,0],[4401,4402,4399,0],[4399,4402,4404,0],[4399,4404,4390,0],[4351,4353,4355,0],[4351,4355,30948,0],[4339,4340,4336,0],[4337,4340,4341,0],[4337,4341,4406,0],[4343,4344,4327,0],[4327,4344,4473,0],[4327,4407,4406,0],[4406,4407,4337,0],[4337,4407,4328,0],[4335,4333,4415,0],[4408,4415,4414,0],[4408,4414,4419,0],[4432,4419,4431,0],[4431,4418,4409,0],[4409,4418,4417,0],[4409,4417,4425,0],[4101,4410,4102,0],[4102,4410,4412,0],[4102,4412,4411,0],[4411,4412,4413,0],[4413,4412,4414,0],[4414,4415,4416,0],[4416,4415,4333,0],[4416,4333,4332,0],[4413,4104,4411,0],[4104,4413,4416,0],[4412,4417,4420,0],[4418,4431,4419,0],[4417,4418,4420,0],[4419,4420,4418,0],[4412,4420,4414,0],[4419,4432,4408,0],[4421,4432,4422,0],[4426,4425,4100,0],[4425,4426,4427,0],[4425,4427,4424,0],[4424,4427,4423,0],[4426,4099,4427,0],[4423,4098,4422,0],[4422,4098,4428,0],[4428,30550,4429,0],[32447,4097,4096,0],[4097,32447,4430,0],[4428,4098,4430,0],[4425,4424,4409,0],[4424,4423,4409,0],[4409,4423,4431,0],[4432,4431,4422,0],[4422,4431,4423,0],[4335,4415,3971,0],[3971,4415,3972,0],[3972,4415,4408,0],[4433,4434,4336,0],[4336,4434,4338,0],[4338,4434,4334,0],[4334,4434,4332,0],[4332,4434,4433,0],[4332,4433,4416,0],[4416,4433,4331,0],[4330,4329,4437,0],[4330,4437,4438,0],[4330,4438,4105,0],[4105,4331,4330,0],[4324,4323,4435,0],[4435,4326,4324,0],[4323,4322,4321,0],[4323,4321,30828,0],[4323,30828,4436,0],[4326,4435,4327,0],[4436,4435,4323,0],[4407,4436,4328,0],[4328,4436,4437,0],[4439,4320,4438,0],[4320,4319,4106,0],[4437,4329,4328,0],[32424,4441,49576,0],[49576,4443,4442,0],[4444,4443,31065,0],[4444,31065,31067,0],[4444,31067,4445,0],[4445,31067,31080,0],[4445,31080,31077,0],[4445,31077,4446,0],[30746,30750,4160,0],[4160,30750,4450,0],[4450,4205,4208,0],[4450,4208,4159,0],[4450,4159,4160,0],[30746,4160,4451,0],[30746,4451,4162,0],[4162,4451,4161,0],[30746,4162,4449,0],[4449,4162,4452,0],[32423,4452,4162,0],[4449,4452,4447,0],[49576,4442,32424,0],[49576,4441,4453,0],[4454,30859,28278,0],[28278,30859,32410,0],[32410,30859,30858,0],[32410,30858,4455,0],[4455,4456,30937,0],[4458,4459,4460,0],[4460,4459,4461,0],[4460,4461,30845,0],[4460,30845,31042,0],[4466,30853,4462,0],[4462,30853,30851,0],[4462,30851,28288,0],[28288,30851,4463,0],[4463,30851,4464,0],[4463,4464,4465,0],[4318,4440,30826,0],[4318,4319,4440,0],[4440,4319,4467,0],[4469,4322,4470,0],[30859,4470,30857,0],[30857,4470,30856,0],[4472,4471,4325,0],[4324,4325,4470,0],[4470,4325,30856,0],[30856,4325,4471,0],[4467,4468,4453,0],[4467,4453,4441,0],[4453,4468,4469,0],[4467,4441,4440,0],[4316,4476,4317,0],[4317,4476,4474,0],[4107,4474,4296,0],[4317,4474,4475,0],[4317,4475,4319,0],[4319,4475,4106,0],[4296,4474,4477,0],[4476,4477,4474,0],[4478,4477,4476,0],[4313,4478,4476,0],[4313,4480,4478,0],[4478,4480,4477,0],[4313,4292,4480,0],[4293,4294,4480,0],[4481,4303,4291,0],[4301,4282,4485,0],[4485,4282,4482,0],[4483,4482,4298,0],[4298,4482,4282,0],[4305,4484,4483,0],[4483,4484,4482,0],[4482,4484,4485,0],[4485,4484,4304,0],[4281,4290,4280,0],[4290,4151,4289,0],[4289,4151,4150,0],[4289,4150,4149,0],[4135,4148,4136,0],[4135,4137,30613,0],[4098,4126,4430,0],[4430,4126,4097,0],[4126,4125,4097,0],[4097,4125,4123,0],[4097,4123,4488,0],[4486,4093,4095,0],[4486,4095,4111,0],[4123,4487,4488,0],[4488,4487,4490,0],[4488,4490,4111,0],[4111,4490,4112,0],[4487,4121,4489,0],[4487,4489,4490,0],[4491,4489,4119,0],[4491,4119,4492,0],[4491,4492,4089,0],[30703,4025,4088,0],[4024,4086,4088,0],[4024,4088,4025,0],[4086,4022,4087,0],[4493,4087,4023,0],[4493,4023,4021,0],[4493,4494,4090,0],[4493,4021,4494,0],[4494,4495,4090,0],[4090,4495,30610,0],[4090,30610,4089,0],[4496,4018,4497,0],[4496,4497,3965,0],[4018,4496,3966,0],[4018,3963,3992,0],[4018,3992,3964,0],[3965,4497,3993,0],[3993,4497,3964,0],[4497,4018,3964,0],[4014,4498,3999,0],[4014,3999,3998,0],[4500,3995,3996,0],[3958,4499,3957,0],[3957,4499,3956,0],[3956,4501,30552,0],[4499,4500,3996,0],[4501,3956,3996,0],[3956,4499,3996,0],[3955,3945,4502,0],[3893,3892,3926,0],[4716,3891,3926,0],[3926,3891,4505,0],[3927,4505,4503,0],[3927,4503,3928,0],[4503,4504,3929,0],[3929,4504,3948,0],[4505,3927,3926,0],[4505,3888,4506,0],[3887,4574,4507,0],[4507,4574,3886,0],[4507,3886,4509,0],[4509,3886,4508,0],[4509,4508,30405,0],[30405,4508,31285,0],[30405,31285,4510,0],[30405,4510,4514,0],[4511,4514,4513,0],[4511,4513,3934,0],[3934,4513,4512,0],[3934,4512,3935,0],[30206,4512,4513,0],[4510,4513,4514,0],[4514,4511,3933,0],[30405,3933,3940,0],[30405,3940,3932,0],[30405,3932,4515,0],[4515,4504,4507,0],[4507,4504,3887,0],[4515,3932,3931,0],[4515,3931,3948,0],[3887,4506,3888,0],[4505,4506,4503,0],[4503,4506,4504,0],[3887,4504,4506,0],[4515,3948,4504,0],[4516,3880,4518,0],[3880,3879,4518,0],[30265,4518,4519,0],[4519,6160,30248,0],[30248,6160,6164,0],[30250,4521,4533,0],[31291,6167,4522,0],[4523,4522,4524,0],[4523,4524,4539,0],[4539,4524,31312,0],[4526,4527,4528,0],[4528,4527,4529,0],[4528,4529,4530,0],[4530,5871,4543,0],[4531,5866,4532,0],[4532,5866,5867,0],[4532,31295,4542,0],[4542,31295,4540,0],[4540,31289,31291,0],[4533,31291,4534,0],[4533,4534,30250,0],[31291,4533,6167,0],[4536,4537,4538,0],[4538,4537,4528,0],[4528,4537,4526,0],[4526,4537,4525,0],[4522,4523,4541,0],[4541,4523,4535,0],[4535,4523,4539,0],[4539,31312,4537,0],[4537,31312,4525,0],[4536,4535,4537,0],[4537,4535,4539,0],[31291,4522,4540,0],[4540,4522,4541,0],[4542,4535,4536,0],[4535,4542,4541,0],[4541,4542,4540,0],[4536,4538,4542,0],[4532,4542,4538,0],[4538,4528,4530,0],[4530,4543,4538,0],[4538,4543,4532,0],[4531,4532,4543,0],[4516,4518,4517,0],[4517,4518,30265,0],[4548,4547,4549,0],[4550,4557,29218,0],[29218,4557,4551,0],[4552,4551,29973,0],[29973,4551,4553,0],[29973,4553,29974,0],[29974,4553,29975,0],[29975,4553,4554,0],[4555,4556,4667,0],[4667,4556,4549,0],[4554,4553,4555,0],[4555,4553,4556,0],[4549,4556,4557,0],[4549,4557,4550,0],[4557,4556,4553,0],[4553,4551,4557,0],[4549,4550,4548,0],[4548,4550,4558,0],[4558,29219,29220,0],[30377,29220,4559,0],[30377,4559,4560,0],[4561,3872,3873,0],[4548,4558,4546,0],[4544,3878,4562,0],[4562,4592,4563,0],[4563,4592,4564,0],[4563,4564,30191,0],[4565,4593,4566,0],[4566,4594,4567,0],[4567,4594,4587,0],[4587,4594,4595,0],[4587,4595,4586,0],[4568,4589,4576,0],[3884,4569,30403,0],[3884,3885,4569,0],[4569,3885,4571,0],[4571,3885,4570,0],[4571,4570,4589,0],[4589,4570,4572,0],[4572,4573,4575,0],[4575,4573,4574,0],[4575,4574,3887,0],[3887,3889,4575,0],[4568,4576,4577,0],[4578,4577,4712,0],[4578,4712,4579,0],[4578,4579,4580,0],[4581,4580,4738,0],[4581,4738,4582,0],[30189,4582,4737,0],[30189,4737,4705,0],[30189,4705,4703,0],[30189,4703,4583,0],[4583,4672,4584,0],[4584,4672,4671,0],[4585,4670,4743,0],[4578,4588,4586,0],[4586,4588,4587,0],[4587,4588,4581,0],[4581,4588,4580,0],[4580,4588,4578,0],[4578,4586,4577,0],[4577,4586,4568,0],[4587,4581,4567,0],[4573,4570,3886,0],[3886,4570,3885,0],[4572,4570,4573,0],[30404,4589,4590,0],[30404,4590,4596,0],[30404,4596,30385,0],[30385,4596,30384,0],[30384,30383,3880,0],[4589,30404,4571,0],[4589,4568,4590,0],[4544,4591,4545,0],[4562,3879,4592,0],[4592,3879,3880,0],[4592,3880,4565,0],[4565,3880,4593,0],[4593,30383,4595,0],[4593,4595,4594,0],[4594,4566,4593,0],[4565,4564,4592,0],[4568,4595,4590,0],[4590,4595,4596,0],[4568,4586,4595,0],[3873,3874,4561,0],[3871,4612,4597,0],[4599,4597,4612,0],[4599,4612,4598,0],[4599,4598,5644,0],[5644,4598,4600,0],[4601,4600,4602,0],[4601,4602,4603,0],[4603,4602,4614,0],[4604,4614,4606,0],[4604,4606,4605,0],[4608,3866,3865,0],[4607,4608,29968,0],[4607,29968,4606,0],[4606,5639,4605,0],[4605,5639,4609,0],[4609,5640,4605,0],[29968,5639,4606,0],[4608,4607,4610,0],[4608,4610,3866,0],[3868,3866,4600,0],[3868,4600,4611,0],[4611,4600,4598,0],[4611,4598,4612,0],[29969,3869,4613,0],[4602,4600,4610,0],[4602,4610,4607,0],[3866,4610,4600,0],[4614,4602,4607,0],[4614,4607,4606,0],[3868,4611,4613,0],[4613,4611,4612,0],[4613,4612,29969,0],[4615,3867,4616,0],[3859,3861,4644,0],[3859,4644,3858,0],[3858,4644,4617,0],[3858,4617,4653,0],[4619,30019,4620,0],[4621,4625,4624,0],[4621,4624,4622,0],[4622,4623,4621,0],[4621,4623,4620,0],[4624,4625,4626,0],[4626,4625,4627,0],[4628,30017,4784,0],[4784,30017,4785,0],[4784,4785,4750,0],[4785,30018,29208,0],[29208,30018,4629,0],[29208,4629,29214,0],[29214,4629,29206,0],[29206,4629,4631,0],[29206,4631,4630,0],[4630,4631,4659,0],[4630,4659,29204,0],[29204,4659,4632,0],[29204,4632,29202,0],[29202,4632,4633,0],[4633,4632,4665,0],[4633,4665,29210,0],[29210,4665,4634,0],[30038,4634,4661,0],[30038,4661,4635,0],[29217,30037,4748,0],[30042,4636,4698,0],[4637,4749,4745,0],[4745,4749,4744,0],[4668,4744,4638,0],[4668,4638,4554,0],[4554,4638,4639,0],[4666,4639,30037,0],[30037,4635,4666,0],[4666,4635,4650,0],[4640,4650,4649,0],[4640,4649,4641,0],[4641,4649,4648,0],[4648,4642,29981,0],[29981,4642,4643,0],[4643,4642,4644,0],[4643,4644,4645,0],[4643,4645,3862,0],[4643,3862,3864,0],[3862,4645,3861,0],[3861,4645,4644,0],[4653,4646,3857,0],[3857,4646,4618,0],[4618,4646,30031,0],[4644,4642,4617,0],[4617,4642,4647,0],[30022,4648,4649,0],[4651,4654,4655,0],[4651,4655,4652,0],[4652,4655,4657,0],[4657,30033,30034,0],[30034,4653,4647,0],[4653,30034,4646,0],[4650,4635,4654,0],[4654,4635,4661,0],[4654,4661,4655,0],[4655,4656,4657,0],[4657,4656,4660,0],[4657,4660,4658,0],[4658,4660,4659,0],[4632,4660,4665,0],[4634,4665,4661,0],[4660,4632,4659,0],[4660,4656,4665,0],[4658,4659,4662,0],[4662,4659,4663,0],[30019,4664,4629,0],[4629,4664,4631,0],[4664,4663,4631,0],[4631,4663,4659,0],[4657,4658,30033,0],[4655,4661,4656,0],[4661,4665,4656,0],[4642,30022,4647,0],[4639,4666,4554,0],[4650,4640,4666,0],[4666,4640,29975,0],[4666,29975,4554,0],[4554,4555,4668,0],[4668,4555,4667,0],[4746,4667,4669,0],[4746,4669,4742,0],[4671,4672,4747,0],[4747,4672,30381,0],[4747,4673,4674,0],[4674,4673,4675,0],[4745,4675,4637,0],[4677,4676,4678,0],[4681,4704,4683,0],[4683,4706,4708,0],[4708,4688,4682,0],[4708,4682,4683,0],[4694,4683,4684,0],[4694,4684,4685,0],[4685,4684,4686,0],[243,4682,4688,0],[4683,4682,4684,0],[4687,4684,243,0],[4687,243,242,0],[243,4684,4682,0],[4684,4687,4686,0],[243,4688,4709,0],[243,4709,4689,0],[4689,4709,246,0],[4689,240,243,0],[4687,242,4690,0],[4687,4690,4691,0],[4691,4690,4692,0],[4691,4692,30359,0],[4691,30359,4702,0],[4702,29101,4693,0],[4685,29102,29108,0],[4685,29108,4694,0],[4694,29108,29110,0],[4694,29110,4683,0],[4683,29110,4681,0],[4681,29110,30374,0],[30374,29110,4680,0],[4680,29110,4695,0],[4701,4696,4700,0],[4700,4696,4697,0],[4700,4697,29126,0],[4698,4637,30371,0],[4698,30371,4699,0],[4699,30371,4676,0],[4700,4699,4701,0],[4695,4701,4679,0],[4695,4679,4680,0],[4679,4701,4677,0],[4679,4677,4678,0],[4677,4701,4699,0],[4677,4699,4676,0],[4687,4691,4686,0],[4686,4691,4702,0],[4686,4702,29102,0],[29102,4702,4693,0],[4671,4747,4670,0],[4670,4747,4742,0],[30381,4672,4583,0],[30381,4583,4703,0],[30373,4703,4705,0],[30373,4705,4704,0],[4704,4705,4707,0],[4704,4707,4706,0],[4706,4707,4708,0],[4688,4708,4709,0],[246,4709,4740,0],[246,4740,4710,0],[4710,4740,4711,0],[4711,4580,4579,0],[4575,3889,4714,0],[4576,4715,4577,0],[4577,4715,4712,0],[4575,4714,4572,0],[4572,4714,4576,0],[3889,4713,4714,0],[4714,4713,4715,0],[4713,4712,4715,0],[3889,3890,4713,0],[31309,3890,4716,0],[31309,4716,248,0],[248,4716,249,0],[4736,4717,30395,0],[4732,30392,4718,0],[4724,4718,4719,0],[4724,4719,4720,0],[4720,4719,4729,0],[4720,4729,4721,0],[4721,4729,4727,0],[4721,4727,4722,0],[4722,3920,4723,0],[4723,3920,340,0],[4722,4723,30396,0],[4722,30396,4721,0],[4724,4720,4734,0],[4734,4725,4726,0],[3920,4722,4728,0],[4728,4722,4727,0],[4728,4727,4729,0],[4728,4729,4730,0],[4730,4719,30388,0],[30388,4719,4718,0],[30388,4718,30392,0],[4719,4730,4729,0],[30393,4717,4716,0],[30393,4716,3892,0],[4717,249,4716,0],[250,249,257,0],[264,4731,30473,0],[4733,4735,4732,0],[4732,4718,4724,0],[4732,4724,4733,0],[255,4733,4726,0],[4726,4733,4734,0],[4733,4724,4734,0],[4733,255,4735,0],[4735,255,30482,0],[30395,4732,4735,0],[4735,30482,30473,0],[30395,4735,4736,0],[4717,4736,257,0],[4717,257,249,0],[4731,254,257,0],[4713,3890,4712,0],[4580,4740,4739,0],[4739,4740,4741,0],[4739,4741,4738,0],[4738,4741,4707,0],[4707,4737,4738,0],[4738,4737,4582,0],[4580,4739,4738,0],[4707,4705,4737,0],[4580,4711,4740,0],[4707,4741,4708,0],[4708,4741,4709,0],[4740,4709,4741,0],[4683,4704,4706,0],[4670,4742,4547,0],[4547,4742,4669,0],[4667,4549,4669,0],[4549,4547,4669,0],[4547,4548,4743,0],[4743,4548,4546,0],[4743,4670,4547,0],[4668,4667,4744,0],[4744,4667,4746,0],[4746,4742,4674,0],[4674,4742,4747,0],[4746,4674,4675,0],[4746,4675,4745,0],[4746,4745,4744,0],[30037,4639,4748,0],[4748,4639,4638,0],[4748,4638,4749,0],[4748,4749,4636,0],[4636,4749,4637,0],[4636,4637,4698,0],[4749,4638,4744,0],[4785,29208,4750,0],[4784,4750,4781,0],[4753,28992,4754,0],[4783,4754,4756,0],[4756,4755,4758,0],[4756,4758,4757,0],[4759,29187,4760,0],[4760,29187,29189,0],[4760,4761,4762,0],[4762,4761,29271,0],[4763,4777,4764,0],[4764,4771,4765,0],[4766,4765,29993,0],[4766,29993,28987,0],[28987,29993,4794,0],[4794,29993,28986,0],[4767,3763,3762,0],[29262,29263,4768,0],[4768,29263,49626,0],[3841,4768,49625,0],[4769,4760,4762,0],[4772,4769,4770,0],[4772,4770,4777,0],[4764,4777,4771,0],[4771,3767,4765,0],[3767,4771,4770,0],[4777,4770,4771,0],[4770,4769,3769,0],[3769,4769,4762,0],[4769,4772,4760,0],[4760,4772,4777,0],[4759,4760,4777,0],[4759,4777,4758,0],[4758,4777,4778,0],[4778,4773,4779,0],[4779,4773,30016,0],[4780,30016,4628,0],[4780,4628,4781,0],[4781,4628,4784,0],[4626,4774,3853,0],[4774,4773,30001,0],[30001,4773,4775,0],[4776,4763,4764,0],[4776,4764,29991,0],[4763,4776,4777,0],[4778,4777,4776,0],[4778,4776,4775,0],[4778,4775,4773,0],[4758,4778,4757,0],[4780,4779,30016,0],[4779,4757,4778,0],[4756,4757,4783,0],[4783,4757,4779,0],[4783,4779,4780,0],[4782,4780,4781,0],[4782,4781,4751,0],[4782,4751,4752,0],[4782,4752,4753,0],[4753,4783,4782,0],[4782,4783,4780,0],[4783,4753,4754,0],[4627,4628,30016,0],[4628,4627,30017,0],[4624,4626,4786,0],[4786,4626,3853,0],[3858,4653,4787,0],[4787,4653,3857,0],[3847,3848,3729,0],[3729,3848,4788,0],[4796,3849,4790,0],[4796,4790,4789,0],[4790,4791,3837,0],[3837,4791,4793,0],[4792,4793,3838,0],[3838,4793,49658,0],[4792,3837,4793,0],[3837,4789,4790,0],[4790,28988,4794,0],[3762,49656,4767,0],[4790,4794,4791,0],[4794,4795,4791,0],[4791,4795,4793,0],[4795,49656,4793,0],[3729,4788,3731,0],[3731,4788,4796,0],[3731,4796,3734,0],[3734,4796,4789,0],[3726,29307,29297,0],[4799,4798,29304,0],[29304,3831,29301,0],[29301,3831,3816,0],[29301,3816,4800,0],[4800,3816,3817,0],[4800,3817,3818,0],[29292,3818,29309,0],[3715,3717,4801,0],[3715,4801,4802,0],[4802,4801,3818,0],[3818,4801,29309,0],[3726,29297,3724,0],[5533,29298,29299,0],[5533,29299,3721,0],[3715,3714,3716,0],[3687,3685,4803,0],[3687,4803,4802,0],[4803,3685,3825,0],[4803,3825,4804,0],[4803,4804,4805,0],[4805,4804,4806,0],[4805,4806,4816,0],[4807,4816,4808,0],[3680,4808,4810,0],[3680,4810,4809,0],[4809,4810,3683,0],[3683,4810,3684,0],[3684,4810,4811,0],[4810,4808,4811,0],[4811,4808,4806,0],[4811,4806,4804,0],[4816,4806,4808,0],[4802,4803,4812,0],[4812,4813,3688,0],[4803,4805,4812,0],[4812,4805,4813,0],[3688,4813,4814,0],[29369,4814,4807,0],[4815,4807,4817,0],[4815,4817,3678,0],[3678,4817,3680,0],[4813,4805,4814,0],[4814,4805,4816,0],[4817,4808,3680,0],[4808,4817,4807,0],[3679,3680,49647,0],[4816,4807,4814,0],[4818,4819,4820,0],[4820,4819,4828,0],[4820,4828,4829,0],[4820,4829,4821,0],[4820,4821,29366,0],[29329,4830,29365,0],[29329,29365,29330,0],[29330,29365,4823,0],[29330,29341,29331,0],[29331,29341,29332,0],[3701,4824,3702,0],[3701,3700,4824,0],[4818,4820,29367,0],[4818,3688,4814,0],[4819,4818,29369,0],[4819,29369,4825,0],[4819,4825,4826,0],[4826,4825,29370,0],[4826,29370,4835,0],[4826,4835,29352,0],[4826,29352,4827,0],[4827,4829,4828,0],[29366,4821,4822,0],[4822,4821,4830,0],[4826,4827,4819,0],[4828,4819,4827,0],[3676,3677,3675,0],[3675,3677,3674,0],[4831,3674,49650,0],[4831,49650,4832,0],[4832,49650,49648,0],[4832,49648,20,0],[4832,21,4831,0],[3674,4831,3658,0],[21,4832,20,0],[3658,4833,3674,0],[3674,4833,3675,0],[3675,4833,3659,0],[4837,3659,3660,0],[4837,3660,4834,0],[4837,4834,4835,0],[3660,3661,4834,0],[4834,29352,4835,0],[29352,29372,4836,0],[4836,29372,29373,0],[4836,4829,4827,0],[3675,3659,4838,0],[4838,3659,4837,0],[4838,4837,4835,0],[4835,29370,4838,0],[4840,4846,4839,0],[4839,3656,3654,0],[4839,3653,4840,0],[4840,3653,4841,0],[4840,4841,4844,0],[4844,4843,4842,0],[4842,4846,4844,0],[4846,4840,4844,0],[4842,4843,25,0],[4846,3656,4839,0],[3657,3656,4846,0],[3656,29368,3655,0],[2857,2860,2861,0],[4848,3655,4847,0],[4848,4847,4850,0],[4850,4847,4849,0],[2857,3655,4848,0],[22,26,4849,0],[4849,26,4850,0],[4848,4850,4851,0],[2857,4848,2858,0],[2858,4848,4851,0],[29,4851,2,0],[2,4851,28,0],[3656,4853,3654,0],[4852,3654,3651,0],[3651,3654,4853,0],[3651,4853,4854,0],[2853,3644,49963,0],[3652,3648,4841,0],[4841,1866,4857,0],[4857,1866,4855,0],[4857,4855,4856,0],[4844,4856,4843,0],[4843,4856,4845,0],[4845,4856,49960,0],[4845,49960,3658,0],[4857,4856,4844,0],[4857,4844,4841,0],[4841,3653,3652,0],[3648,2839,4841,0],[4841,2839,1866,0],[4855,4858,4856,0],[4856,4858,4859,0],[4859,4858,4862,0],[4861,4862,4865,0],[4861,4865,4860,0],[4861,4860,3659,0],[4861,3659,4833,0],[4861,4833,49960,0],[49960,4833,3658,0],[1866,1867,4855,0],[4855,1867,4858,0],[4858,1867,1868,0],[4858,1868,4862,0],[4863,49761,4872,0],[4863,4872,4864,0],[4864,4866,4865,0],[4865,4866,3662,0],[3663,4866,4871,0],[4868,4876,4869,0],[4868,4869,49962,0],[4868,49962,4870,0],[4870,49962,49961,0],[4870,49961,3667,0],[4876,4868,4867,0],[4868,3665,4867,0],[3665,3664,4867,0],[4867,3664,4871,0],[4866,4864,4871,0],[4871,4864,4872,0],[4871,4872,4873,0],[4871,4873,4867,0],[4873,4872,4874,0],[4873,4874,4875,0],[4876,4875,4869,0],[4877,4869,4879,0],[4877,4879,4878,0],[4879,1873,4880,0],[4880,1873,1874,0],[4887,4881,4885,0],[4887,4885,4884,0],[4883,4882,1856,0],[1856,4882,2821,0],[4882,4885,1857,0],[1857,4885,1858,0],[4883,4884,4882,0],[4885,4881,4880,0],[1858,4885,1875,0],[1875,4885,4880,0],[1875,4880,1874,0],[4882,4884,4885,0],[4883,3673,29361,0],[4883,29361,4886,0],[4887,4884,4886,0],[4886,4884,4883,0],[3672,3671,4887,0],[4887,3671,4878,0],[4887,4878,4881,0],[4881,4878,4880,0],[4880,4878,4879,0],[3671,4877,4878,0],[4876,4867,4875,0],[4875,4867,4873,0],[4872,49761,4874,0],[4874,1870,4875,0],[4875,1870,1873,0],[4875,1873,4879,0],[1872,1873,1870,0],[4879,4869,4875,0],[4865,3662,4860,0],[4860,3662,3660,0],[3661,3660,3662,0],[4865,4862,4864,0],[4864,4862,4863,0],[3648,3652,3649,0],[3650,3651,3645,0],[3646,4888,3647,0],[4890,4888,4889,0],[4890,4889,4891,0],[4890,4891,2844,0],[2844,4891,49778,0],[2844,2838,4890,0],[4888,3645,4889,0],[4889,3645,4893,0],[4893,3645,4892,0],[4893,49781,49782,0],[4893,4892,3644,0],[3644,49781,4893,0],[4894,4895,3643,0],[2851,2852,2850,0],[2849,2835,2847,0],[2847,3642,2851,0],[2847,2846,3642,0],[2847,2835,4899,0],[49780,4900,2814,0],[2814,4901,49780,0],[49780,4901,4902,0],[49780,4902,2830,0],[2832,2830,2831,0],[2831,2830,4902,0],[2830,2812,4900,0],[2809,2810,4903,0],[2809,4903,2808,0],[2808,4903,2807,0],[2810,2812,4903,0],[4903,2812,49737,0],[4903,49737,49764,0],[49770,49764,49737,0],[2806,4904,4905,0],[2802,2804,4905,0],[2802,4905,4906,0],[4906,4909,4907,0],[4907,4908,4906,0],[4906,4908,2801,0],[4906,2801,29398,0],[2867,2866,4904,0],[2867,4904,49738,0],[49738,4904,2806,0],[4904,4909,4905,0],[4904,2866,4909,0],[4909,2866,4910,0],[4909,4910,4907,0],[49741,2866,2867,0],[4910,2866,49740,0],[4910,49740,2874,0],[4909,4906,4905,0],[4905,2804,2806,0],[2679,2678,2799,0],[4914,4951,4913,0],[4913,4949,4911,0],[4911,2711,2675,0],[4911,2675,2674,0],[4911,2674,4912,0],[4913,4912,4932,0],[4913,4932,4946,0],[4946,4948,4914,0],[29399,4915,4948,0],[29399,4948,4921,0],[4921,4948,4916,0],[4918,4917,4919,0],[2818,2817,4919,0],[4919,2817,4920,0],[4919,4920,4918,0],[4918,4929,4925,0],[4925,4929,4922,0],[4925,4922,4921,0],[4921,4922,4923,0],[4923,4922,2805,0],[2807,4924,2808,0],[4917,4918,4925,0],[4921,2803,29399,0],[4925,4921,4916,0],[4925,4916,4917,0],[4921,4923,2803,0],[4929,4926,4930,0],[4929,4930,49730,0],[4928,2810,2809,0],[2809,2808,4928,0],[49730,4928,4929,0],[4929,4928,4927,0],[4929,4927,4922,0],[4922,4927,2805,0],[2805,4927,4924,0],[4924,4927,2808,0],[2808,4927,4928,0],[4929,4918,4926,0],[4926,2816,4930,0],[4946,4914,4913,0],[4912,4913,4911,0],[4914,4915,2799,0],[2799,4915,29400,0],[4912,2674,4931,0],[4912,4931,4932,0],[4932,4936,4934,0],[4932,4934,4947,0],[4947,4934,4933,0],[4933,4916,4948,0],[4916,4933,4917,0],[4919,4917,4935,0],[4919,4935,2818,0],[4933,4934,4917,0],[4917,4934,4935,0],[4935,4934,4936,0],[4938,4944,4939,0],[4940,4942,49458,0],[49458,4942,49457,0],[1888,1889,4941,0],[1888,4941,4945,0],[4945,4941,49457,0],[4945,49457,4942,0],[4942,4940,2673,0],[2673,4940,4939,0],[2712,4939,4943,0],[4943,4944,4931,0],[4932,4931,4937,0],[4932,4937,4936,0],[4937,4931,4944,0],[4944,4943,4939,0],[2712,4943,2674,0],[4931,2674,4943,0],[4942,2673,4945,0],[4947,4933,4948,0],[4946,4947,4948,0],[4914,4948,4915,0],[4932,4947,4946,0],[2711,4911,4949,0],[2711,4949,2693,0],[2693,4949,4950,0],[2693,4950,2694,0],[2676,4949,4951,0],[4951,4949,4913,0],[2676,4950,4949,0],[2676,4951,2678,0],[2678,4951,2799,0],[2799,4951,4914,0],[2673,2672,4945,0],[2670,2669,2672,0],[2672,2669,4945,0],[2669,1887,4945,0],[1887,2667,1886,0],[1886,2666,4952,0],[4952,2665,2664,0],[2664,2663,4952,0],[2664,4953,2659,0],[2659,4953,2660,0],[2660,4953,2661,0],[2661,4953,29531,0],[29531,4955,1898,0],[1899,1898,4954,0],[2730,29534,2729,0],[2729,29534,2789,0],[4954,2731,1899,0],[1899,2731,1900,0],[1900,49456,1901,0],[1902,1901,3090,0],[1902,3090,1905,0],[1898,4955,4954,0],[4954,4955,2730,0],[1898,1896,2662,0],[1898,2662,29531,0],[2664,2790,4953,0],[4958,2658,4956,0],[4956,2658,2664,0],[4956,2659,1891,0],[4956,2664,2659,0],[2659,4957,1891,0],[1891,4957,1892,0],[49304,4957,1894,0],[1894,4957,2660,0],[1885,1890,1884,0],[1884,1890,4958,0],[1884,4958,29406,0],[29406,4958,29404,0],[4956,29404,4958,0],[1882,1883,4959,0],[4959,1883,4960,0],[1849,1850,4960,0],[4960,1850,4959,0],[1882,4963,4961,0],[4961,4963,4962,0],[4962,4963,1851,0],[4962,1851,29389,0],[4959,4964,4963,0],[4959,4963,1882,0],[4963,4964,1851,0],[1836,1837,49306,0],[1837,4965,1842,0],[1842,4965,1843,0],[1843,4965,1844,0],[1844,4966,1845,0],[1845,4966,1846,0],[1846,4966,4967,0],[1822,4968,4967,0],[1822,4967,4966,0],[1846,4967,1847,0],[1847,4971,4970,0],[4970,4969,1850,0],[1850,4969,4964,0],[1848,4970,1849,0],[1849,4970,1850,0],[1847,4967,4971,0],[4973,4972,4974,0],[4977,4978,4991,0],[4977,4991,4975,0],[4977,4975,4976,0],[4976,4975,1813,0],[4976,1813,1812,0],[4976,1805,4996,0],[4976,4996,4977,0],[4986,4978,4974,0],[4996,1811,4977,0],[4977,1811,4978,0],[4978,1811,4974,0],[4974,1811,4973,0],[4973,4980,4979,0],[1881,4981,4982,0],[1881,4982,1810,0],[4982,4981,4980,0],[4980,4981,4979,0],[4981,1851,4979,0],[4979,1851,4984,0],[4972,4973,4983,0],[4970,4983,4969,0],[4972,4983,4971,0],[4971,4983,4970,0],[4973,4979,4983,0],[4983,4979,4984,0],[4983,4984,4969,0],[4964,4969,4984,0],[4971,4967,4968,0],[4971,4968,4985,0],[4985,4968,1820,0],[4972,4985,4974,0],[4974,4985,4992,0],[4974,4992,4986,0],[1819,4992,4985,0],[1819,4985,1820,0],[4978,4986,4987,0],[4978,4987,4991,0],[4991,4987,4990,0],[4990,4987,4988,0],[4987,4989,4988,0],[1818,4989,4993,0],[4988,5005,4990,0],[4990,1817,1815,0],[4990,1815,4991,0],[1817,4990,5008,0],[4986,4992,4987,0],[4987,4992,4989,0],[4992,4993,4989,0],[1819,4993,4992,0],[4971,4985,4972,0],[49306,1832,1834,0],[1834,1832,4994,0],[4994,1832,1830,0],[4994,1830,4995,0],[4995,1830,1829,0],[4994,4995,1834,0],[1829,1828,4995,0],[4995,1828,1835,0],[1835,1834,4995,0],[1830,1832,1895,0],[1809,1810,1808,0],[1806,1808,4997,0],[1811,4996,4997,0],[1811,4997,4982,0],[4982,4997,1810,0],[4997,1808,1810,0],[4996,1805,1806,0],[4996,1806,4997,0],[1808,1806,1807,0],[4998,1814,1800,0],[1800,1814,4999,0],[4999,1814,1816,0],[4999,1816,5000,0],[5000,1816,5257,0],[5256,5257,1817,0],[5256,1817,5001,0],[5001,1817,5008,0],[5255,5007,5002,0],[5007,5331,5003,0],[5255,5254,5008,0],[5008,5254,5001,0],[5001,5254,5256,0],[5002,5007,5003,0],[5006,5004,5005,0],[5005,5007,5008,0],[5008,5007,5255,0],[1816,1817,5257,0],[5007,5005,5004,0],[5007,5004,5331,0],[5331,5004,5329,0],[5006,1818,5329,0],[5329,1818,5009,0],[5011,5326,5012,0],[5012,5326,5327,0],[5012,5327,49269,0],[5014,5013,49264,0],[5014,49264,5015,0],[5014,5015,5016,0],[5016,5015,5017,0],[5018,49258,5019,0],[5274,5020,49256,0],[5274,49256,5021,0],[5274,5021,5273,0],[5023,5021,5022,0],[5023,5022,49261,0],[5025,5026,5276,0],[5276,5027,5028,0],[5028,5035,29423,0],[29423,5035,5029,0],[5030,5031,5032,0],[1788,5032,5031,0],[1788,5031,1786,0],[1786,5031,5033,0],[5029,5035,5034,0],[5029,5034,5030,0],[5030,5034,5031,0],[5031,5034,5033,0],[5037,5036,5038,0],[5037,5038,5246,0],[5246,5038,5039,0],[5039,5038,29934,0],[5039,5040,5245,0],[5245,1775,5247,0],[5247,1775,1776,0],[5244,5042,5043,0],[5044,5242,5045,0],[6688,5045,5046,0],[6688,5046,5047,0],[6686,5220,6685,0],[6685,5220,5219,0],[6685,5219,5218,0],[5050,5234,5051,0],[29797,29798,5053,0],[5054,5053,5055,0],[5060,5057,5238,0],[5060,5238,5058,0],[5060,5059,5062,0],[5060,5062,5061,0],[5062,5063,5064,0],[5065,5064,5243,0],[5065,5243,5066,0],[5067,5068,5167,0],[5151,5294,5297,0],[5151,5297,5069,0],[5069,5296,5070,0],[5070,5291,5072,0],[5071,5072,29759,0],[29756,29586,29587,0],[29587,29586,5073,0],[5074,5073,29585,0],[5074,29585,5093,0],[5074,5091,5090,0],[29754,5137,5136,0],[5077,5076,5087,0],[5077,5087,5216,0],[5216,5087,5078,0],[5177,5149,29764,0],[29765,5079,29766,0],[5080,5081,29767,0],[29767,5081,5082,0],[5082,5081,5083,0],[5085,5086,5132,0],[5086,5146,5105,0],[5105,5145,5135,0],[5075,5101,5140,0],[5088,5142,5087,0],[5142,5088,5136,0],[5142,5136,5089,0],[5142,5089,5140,0],[5140,5089,5075,0],[5075,29758,5101,0],[5101,29758,5090,0],[5091,5093,5092,0],[5092,5093,5094,0],[5094,5093,5102,0],[5102,5093,5095,0],[5096,29578,5097,0],[5097,29577,5098,0],[29813,5098,29579,0],[29813,29579,29816,0],[5100,5099,5026,0],[5100,5026,5025,0],[5101,5090,5091,0],[5134,5091,5092,0],[5092,5094,29436,0],[29436,5094,5102,0],[5103,5102,5104,0],[5103,5104,29800,0],[5096,5104,5095,0],[5095,5104,5102,0],[5145,5101,5135,0],[5105,5135,5133,0],[5105,5133,5086,0],[5086,5133,5132,0],[5132,5133,5106,0],[5085,5130,5128,0],[5085,5128,5084,0],[29762,5084,5109,0],[5110,5109,5111,0],[5113,5115,29588,0],[29588,5115,5114,0],[49340,5115,5116,0],[49340,5116,5108,0],[5108,5116,5117,0],[29437,5108,29438,0],[29438,5108,5131,0],[29590,29594,29593,0],[5120,29590,29605,0],[29743,29605,5121,0],[5121,29604,29606,0],[29614,29728,49309,0],[29614,49309,29726,0],[29726,49309,5124,0],[29726,5124,49310,0],[49310,5124,49312,0],[5123,49312,5124,0],[5124,49308,5125,0],[29604,5126,5122,0],[5122,5126,5127,0],[5122,5127,29728,0],[5117,5116,5129,0],[5128,5129,5111,0],[5128,5111,5109,0],[5111,5129,5112,0],[5129,5116,5112,0],[5112,5116,5113,0],[5116,5115,5113,0],[5128,5130,5129,0],[5128,5109,5084,0],[5130,5085,5132,0],[5130,5132,5131,0],[5130,5131,5117,0],[5117,5131,5108,0],[5132,5106,5131,0],[5131,5106,29438,0],[29438,5106,5107,0],[5133,5134,5106,0],[5106,5134,5092,0],[5106,5092,5107,0],[5092,29436,5107,0],[5133,5135,5134,0],[5101,5091,5135,0],[5135,5091,5134,0],[5087,5076,5088,0],[5088,5076,5136,0],[5075,5089,5137,0],[5137,5089,5136,0],[5150,5079,5144,0],[5150,5144,5143,0],[5149,5177,5138,0],[5138,5142,5139,0],[5139,5142,5140,0],[5141,5140,5101,0],[5087,5142,5138,0],[5087,5138,5078,0],[5078,5138,5177,0],[5141,5101,5145,0],[5141,5145,5143,0],[5143,5148,5150,0],[5139,5143,5144,0],[5145,5105,5143,0],[5105,5146,5148,0],[5147,5086,5085,0],[5084,5147,5085,0],[5147,29822,5086,0],[5086,29822,5146,0],[29822,5081,5146,0],[5146,5081,5148,0],[5148,5143,5105,0],[5144,5079,5149,0],[29766,5079,5150,0],[29766,5150,5080,0],[5069,5070,29755,0],[5069,29755,5151,0],[5151,29755,29753,0],[5151,29753,5153,0],[5153,5152,5214,0],[5215,5214,5077,0],[5077,5214,5076,0],[5153,29753,5152,0],[5152,29753,5076,0],[5076,5214,5152,0],[5151,5153,5154,0],[5174,5154,5153,0],[5174,5153,5155,0],[5155,5153,5156,0],[5156,5157,29831,0],[29831,5157,5204,0],[29831,5204,5158,0],[5158,5209,5159,0],[5160,6671,5161,0],[49349,5161,5162,0],[5163,5162,6664,0],[5156,29831,5155,0],[5166,5155,29824,0],[5166,29830,5172,0],[5172,5168,5167,0],[5067,5167,5066,0],[5066,5167,5168,0],[5066,5168,5065,0],[5065,5168,5169,0],[5065,5169,5064,0],[5062,5064,5061,0],[5061,5064,29828,0],[29828,49351,5170,0],[5170,5057,5060,0],[49351,5056,5170,0],[5057,5170,5056,0],[5061,29828,5170,0],[5061,5170,5060,0],[5058,5059,5060,0],[29828,5064,5169,0],[5167,5294,5171,0],[5172,5171,5173,0],[5172,5173,5166,0],[5166,5173,5174,0],[5166,5174,5155,0],[5154,5174,5173,0],[5154,5173,5171,0],[5171,5172,5167,0],[5171,5294,5154,0],[5154,5294,5151,0],[5156,5153,5214,0],[5156,5214,5157,0],[5157,5214,5204,0],[5204,5214,5175,0],[5203,5175,5215,0],[5176,5203,5212,0],[5176,5212,5213,0],[5176,5213,29764,0],[29764,5213,5177,0],[5178,29763,5201,0],[5201,29763,5179,0],[5189,5187,5181,0],[5189,5181,49331,0],[49331,5181,5182,0],[5184,5182,5183,0],[5183,29761,49326,0],[49326,29761,29762,0],[5176,29764,5178,0],[5197,5178,6562,0],[5201,5185,5186,0],[5186,5185,5195,0],[5195,5185,5187,0],[5195,5187,5198,0],[5189,5188,5200,0],[5189,5200,5199,0],[5200,49335,5190,0],[5190,6555,5191,0],[5191,6555,5192,0],[5192,6555,6556,0],[5192,6556,5193,0],[5194,5192,5195,0],[5195,5192,6585,0],[6585,5196,5186,0],[5186,5196,6560,0],[5186,6560,5197,0],[5186,5197,6562,0],[5195,6585,5186,0],[5199,5198,5189,0],[5189,5198,5187,0],[5195,5198,5194,0],[5192,5194,5191,0],[5191,5194,5199,0],[5198,5199,5194,0],[5191,5199,5200,0],[5191,5200,5190,0],[5187,5185,5180,0],[5201,6562,5178,0],[5201,5179,5180,0],[5201,5180,5185,0],[5176,5202,5203,0],[5203,5202,5211,0],[5203,5211,5175,0],[5175,5211,5204,0],[6564,5205,6563,0],[6563,5205,6560,0],[6560,5205,5202,0],[6560,5202,6561,0],[6561,5176,5178,0],[5176,6561,5202,0],[5206,5202,5205,0],[5206,5205,5207,0],[5209,5208,5210,0],[5209,5210,5159,0],[5211,5209,5204,0],[5204,5209,5158,0],[5207,5208,5206,0],[5206,5208,5211,0],[5206,5211,5202,0],[5212,5203,5215,0],[5212,5215,5216,0],[5216,5078,5213,0],[5213,5078,5177,0],[5216,5213,5212,0],[5175,5214,5215,0],[5216,5215,5077,0],[5234,5050,5217,0],[5217,5218,5232,0],[5219,5220,5221,0],[5235,5223,5230,0],[5235,5230,5224,0],[5233,5224,5225,0],[5226,5225,5236,0],[5226,5236,5231,0],[5231,5236,5237,0],[29798,5227,5228,0],[5053,5228,5229,0],[5053,5229,5055,0],[5055,5229,5056,0],[5056,5229,5057,0],[5057,5229,5238,0],[5058,5225,5224,0],[5059,5224,5230,0],[5059,5230,5062,0],[5062,5230,5063,0],[5058,5224,5059,0],[5228,5053,29798,0],[5228,5239,5229,0],[29798,6663,5227,0],[5227,6663,5052,0],[5227,5052,5237,0],[5237,5052,5231,0],[5226,5231,5217,0],[5226,5217,5232,0],[5232,5233,5226,0],[5226,5233,5225,0],[5232,5219,5233,0],[5233,5219,5235,0],[5235,5219,5221,0],[5235,5221,5223,0],[5223,5221,5222,0],[5233,5235,5224,0],[5217,5231,5234,0],[5052,5051,5231,0],[5239,5240,5238,0],[5238,5229,5239,0],[5239,5228,5240,0],[5237,5240,5227,0],[5240,5058,5238,0],[5240,5236,5058,0],[5050,5218,5217,0],[5043,5042,5044,0],[5044,5042,5241,0],[5044,5241,5242,0],[5242,5241,5066,0],[5242,5066,5243,0],[5042,5244,5286,0],[5286,5244,5041,0],[5041,5244,1773,0],[5041,1773,1774,0],[5041,1774,5040,0],[5040,1774,1775,0],[5040,1775,5245,0],[5039,5245,5246,0],[5247,1783,5246,0],[5247,5246,5245,0],[1786,5033,1785,0],[5030,5032,5248,0],[5248,5032,29333,0],[5248,29333,5249,0],[5249,29333,29746,0],[5330,5009,29747,0],[29747,5009,5010,0],[5010,5011,29747,0],[5330,29747,5250,0],[29333,5032,1789,0],[29333,1789,5251,0],[5267,5269,5266,0],[5266,29377,5265,0],[5257,5256,5253,0],[5257,5253,1796,0],[1796,5253,5258,0],[5258,5259,5260,0],[5260,5259,1795,0],[1793,1795,5261,0],[1793,5261,5262,0],[5262,5263,1790,0],[1790,5263,5251,0],[5251,5263,5269,0],[5269,5263,5266,0],[29377,5263,5261,0],[29377,5261,1795,0],[5262,5261,5263,0],[5262,1791,1793,0],[5258,5260,1796,0],[1796,5260,1797,0],[5257,5264,5000,0],[1798,5264,1796,0],[5254,5253,5256,0],[5253,5252,5258,0],[5258,5252,5259,0],[5259,29377,1795,0],[5253,5254,5252,0],[5252,5254,5255,0],[5252,5255,5265,0],[5255,5002,5265,0],[5265,5002,5266,0],[5267,5268,5269,0],[5269,5268,5332,0],[5269,5332,5251,0],[5251,5332,29333,0],[5002,5003,5266,0],[5266,5003,5267,0],[5271,5028,5270,0],[5271,5270,49262,0],[49262,29422,5023,0],[5021,5023,5272,0],[5021,5272,5273,0],[5274,5273,5275,0],[5274,5275,5019,0],[5019,5275,5018,0],[5019,5020,5274,0],[5028,5271,5276,0],[5276,49260,5025,0],[5028,5027,5035,0],[5035,5027,29568,0],[5035,29568,5278,0],[5035,5278,5277,0],[5277,5278,5279,0],[5279,5280,5301,0],[5301,5280,29752,0],[29752,5280,5281,0],[5287,5281,5283,0],[5287,5283,5282,0],[5283,5289,5284,0],[5284,5292,5285,0],[5285,5299,5286,0],[5286,5299,5042,0],[5038,5288,29934,0],[5283,5281,5289,0],[29759,5289,5290,0],[29756,5290,29586,0],[5290,29756,29759,0],[29759,5072,5289,0],[5289,5291,5284,0],[5284,5291,5292,0],[5285,5292,5293,0],[5295,5294,5068,0],[5068,5294,5167,0],[5294,5295,5297,0],[5297,5295,5296,0],[5296,5295,5293,0],[5296,5293,5292,0],[5292,5291,5296,0],[5296,5291,5070,0],[5291,5289,5072,0],[5296,5069,5297,0],[5285,5293,5299,0],[5299,5293,5298,0],[5299,5298,5241,0],[5241,5298,5066,0],[5066,5298,5067,0],[5241,5042,5299,0],[5293,5068,5298,0],[5298,5068,5067,0],[5034,5035,5277,0],[5034,5277,5033,0],[5033,5277,5300,0],[5300,5277,5301,0],[5300,5301,5288,0],[5300,5288,5038,0],[5300,5038,5036,0],[5300,5036,1785,0],[5300,1785,5033,0],[5022,5302,49261,0],[49261,5302,5024,0],[5024,5302,5309,0],[5309,5302,38198,0],[5309,38198,5303,0],[5303,5304,5308,0],[5312,29809,5305,0],[5310,29809,29808,0],[5305,29814,29817,0],[5305,29817,5312,0],[5312,29817,5311,0],[5306,5307,5308,0],[5308,5307,5309,0],[5309,5303,5308,0],[5306,5308,5312,0],[5310,5305,29809,0],[5306,5312,5311,0],[5316,5315,5317,0],[5318,38165,5319,0],[5319,38165,5320,0],[5319,5320,5321,0],[5323,29501,5322,0],[5322,38194,29427,0],[5321,29503,5319,0],[29427,38195,5323,0],[5323,38195,5319,0],[38195,5317,5319,0],[5319,5317,5318,0],[5302,5022,5313,0],[5313,5022,5324,0],[49256,5324,5021,0],[5313,5324,5325,0],[5314,5325,38147,0],[5011,5010,29744,0],[5011,29744,5326,0],[5327,5326,49267,0],[49267,5326,49268,0],[49268,5326,1821,0],[1821,29744,1820,0],[49268,1821,1822,0],[49268,1822,5328,0],[1821,5326,29744,0],[1819,1820,5010,0],[5331,5329,5330,0],[5331,5330,5250,0],[5009,5330,5329,0],[5003,5331,5268,0],[5332,5268,5250,0],[5332,5250,29746,0],[5268,5267,5003,0],[1789,5032,5333,0],[5032,1788,5333,0],[5333,1788,5345,0],[5333,5345,1791,0],[1792,1791,5334,0],[1792,5334,5350,0],[5350,5334,29386,0],[29386,5335,5542,0],[5542,5335,5336,0],[5539,5336,5337,0],[5338,5339,1779,0],[5337,5336,5335,0],[5337,5335,5338,0],[5338,5335,5339,0],[5339,5335,5340,0],[5339,5340,5341,0],[5345,5344,5346,0],[5334,1791,5346,0],[5346,1791,5345,0],[5344,5345,1787,0],[5347,1784,1783,0],[5347,1783,1782,0],[5347,1782,5342,0],[5342,1782,1781,0],[5342,1781,29382,0],[5335,29386,5340,0],[5348,5541,5349,0],[5349,3710,5348,0],[29386,5348,5350,0],[5350,3710,1794,0],[29386,5542,5348,0],[5355,5358,5352,0],[5355,5352,5353,0],[1769,5354,1768,0],[5354,1769,5351,0],[5354,5351,5353,0],[5353,5351,5355,0],[5351,1771,5355,0],[6684,5356,5357,0],[5357,5356,1773,0],[1773,5244,5357,0],[5357,5244,5043,0],[5548,5356,5355,0],[5355,5356,5358,0],[5352,5358,6683,0],[5352,6683,5359,0],[5352,5359,5421,0],[5421,5359,6682,0],[5421,6682,5360,0],[5360,6682,5361,0],[5363,5362,5382,0],[5382,5383,5363,0],[5363,5395,5364,0],[5364,5395,5392,0],[5364,5392,5365,0],[5364,5365,5366,0],[5403,5366,5387,0],[5426,5387,5388,0],[5426,5388,5389,0],[5426,5389,5367,0],[5367,5389,5368,0],[5369,5368,5370,0],[5379,5372,5381,0],[1634,1636,1647,0],[1634,1647,5375,0],[1634,5375,5378,0],[5378,5375,5380,0],[5380,5375,5373,0],[5379,5622,5374,0],[5374,5626,5372,0],[5372,5379,5374,0],[5373,5375,5608,0],[5377,5608,5376,0],[1637,5376,5375,0],[1637,5375,1647,0],[5608,5375,5376,0],[5376,5630,5607,0],[5376,5607,5377,0],[5622,5379,5380,0],[5622,5380,5373,0],[5380,5379,5378,0],[1634,5378,5381,0],[5381,5378,5379,0],[1634,5381,1635,0],[1635,5381,1633,0],[1633,5381,5372,0],[1633,5372,1632,0],[1632,5372,5626,0],[1632,5626,5371,0],[5362,5396,5382,0],[49422,5384,5385,0],[49422,5385,5393,0],[5393,1624,5365,0],[5365,1624,5386,0],[5365,5386,5387,0],[5388,6647,5389,0],[5389,6647,5390,0],[5370,5368,5390,0],[5390,5368,5389,0],[5387,5366,5365,0],[5394,5384,5391,0],[5395,5391,49422,0],[5395,49422,5392,0],[5365,5392,5393,0],[5384,49422,5391,0],[5394,5391,5383,0],[5383,5391,5363,0],[5391,5395,5363,0],[5353,5352,5421,0],[5401,5360,5396,0],[5401,5396,5397,0],[5401,5397,5402,0],[5402,5397,5422,0],[5402,5422,5424,0],[5402,5424,5398,0],[5400,5398,5414,0],[5400,5414,5399,0],[5421,5399,5354,0],[5421,5354,5353,0],[5398,5400,5402,0],[5401,5402,5400,0],[5398,5425,5411,0],[5411,5403,5404,0],[5404,5367,5405,0],[5406,5405,29861,0],[5409,5408,1767,0],[5409,1767,29842,0],[5410,5409,29841,0],[5410,29841,5415,0],[5412,5415,5411,0],[5412,5411,5404,0],[5411,5414,5398,0],[5415,29840,5411,0],[5411,29840,5414,0],[5414,29840,5399,0],[5413,5399,29840,0],[5404,5405,5412,0],[5412,5405,5406,0],[5412,5406,5415,0],[5409,5410,5417,0],[5406,5407,5415,0],[5410,5415,5407,0],[5410,5407,5417,0],[5416,5417,5418,0],[5418,29864,5420,0],[5420,29864,5419,0],[1766,5418,5420,0],[1764,5420,29848,0],[29848,5420,5419,0],[5416,5408,5417,0],[5360,5401,5421,0],[5399,5421,5400,0],[5360,5361,5396,0],[5423,5422,5362,0],[5423,5362,5364,0],[5364,5362,5363,0],[5422,5423,5424,0],[5404,5403,5426,0],[5424,5425,5398,0],[5411,5425,5403,0],[5424,5423,5366,0],[5366,5423,5364,0],[5362,5422,5397,0],[5362,5397,5396,0],[5427,5502,1770,0],[1770,5502,5428,0],[1770,5428,1771,0],[1771,5428,5522,0],[1771,5522,5429,0],[5548,5429,5430,0],[5431,5430,5519,0],[5431,5519,5432,0],[5432,5519,5433,0],[5433,5520,5516,0],[5433,5516,5434,0],[5433,5434,1778,0],[1778,5434,5435,0],[5435,5434,5436,0],[5536,5436,5437,0],[5535,5437,5438,0],[5546,5439,29845,0],[5546,29845,5532,0],[5443,5441,5442,0],[5443,5442,5444,0],[5445,5449,5446,0],[5450,5451,5452,0],[29990,5453,5454,0],[29989,5454,5459,0],[29989,5459,5456,0],[29989,5456,5455,0],[5455,5456,1757,0],[1757,5456,5457,0],[5455,1756,29989,0],[5453,5452,5454,0],[5454,5452,5458,0],[5454,5458,5459,0],[5460,5459,5485,0],[5460,5485,5484,0],[5484,5485,5461,0],[5461,5462,5525,0],[5461,5525,5463,0],[5463,5525,5477,0],[5477,5525,5464,0],[5464,5465,5466,0],[5466,5496,5467,0],[5468,5467,5524,0],[5468,5524,5469,0],[5468,5469,1765,0],[5472,5470,5471,0],[5472,5471,1760,0],[1765,5470,5468,0],[5468,5470,5472,0],[5468,5472,5467,0],[5467,5472,5473,0],[5467,5473,5483,0],[5467,5483,5466,0],[5483,5473,5474,0],[5474,5475,5476,0],[5476,5475,5478,0],[5476,5478,5479,0],[5476,5479,5477,0],[5477,5464,5476,0],[5475,5480,5478,0],[5478,5480,5479,0],[5479,5480,5481,0],[5479,5481,5482,0],[5456,5481,5457,0],[5457,5481,5480,0],[5479,5482,5477,0],[5477,5482,5463,0],[5466,5483,5464,0],[5474,5476,5483,0],[5483,5476,5464,0],[5472,1759,5473,0],[5473,1759,5474,0],[1760,1759,5472,0],[5461,5463,5484,0],[5484,5463,5482,0],[5459,5460,5456,0],[5456,5460,5481,0],[5481,5460,5484,0],[5481,5484,5482,0],[5485,5459,5486,0],[5485,5486,5488,0],[5488,5486,5487,0],[5488,5487,5489,0],[5488,5489,5490,0],[5490,5489,5441,0],[5528,29845,5527,0],[5527,29845,5491,0],[5492,5491,5493,0],[5493,5494,5515,0],[5493,5515,5492,0],[5466,5465,5496,0],[5496,5465,5497,0],[29844,5505,5497,0],[5497,5505,5503,0],[5497,5503,5498,0],[5497,5498,5524,0],[5524,5501,5500,0],[5500,5501,5499,0],[5500,1766,1765,0],[1765,5469,5500,0],[5500,5499,5416,0],[5500,5416,1766,0],[1766,5416,5418,0],[5501,5502,5427,0],[5501,5524,5502,0],[5502,5524,5498,0],[5504,5498,5503,0],[5504,5523,5428,0],[5504,5428,5502,0],[5498,5504,5502,0],[5507,5506,5508,0],[5516,5508,5510,0],[5509,5510,5437,0],[5437,5510,5511,0],[5437,5511,5438,0],[5438,5511,5493,0],[5438,5493,5491,0],[5493,5511,5494,0],[5494,5512,5506,0],[5494,5506,5513,0],[5494,5513,5514,0],[5514,5513,29846,0],[5514,29846,5495,0],[5494,5514,5515,0],[5515,5514,5495,0],[5438,5491,5439,0],[5437,5436,5509,0],[5509,5434,5516,0],[5434,5509,5436,0],[5510,5509,5516,0],[5508,5516,5507,0],[5507,5505,5506,0],[5503,5517,5504,0],[5433,5519,5520,0],[5507,5516,5520,0],[5507,5520,5521,0],[5521,5519,5518,0],[5518,5517,5521,0],[5505,5517,5503,0],[5521,5517,5505,0],[5521,5505,5507,0],[5519,5521,5520,0],[5519,5430,5518,0],[5518,5430,5522,0],[5518,5522,5523,0],[5523,5522,5428,0],[5429,5522,5430,0],[5518,5523,5517,0],[5517,5523,5504,0],[5499,5501,5427,0],[5497,5467,5496,0],[5497,5524,5467,0],[5465,5464,5495,0],[5495,5464,5525,0],[5491,5492,5527,0],[5527,5492,5526,0],[5526,5492,5515,0],[5526,5515,5525,0],[5525,5462,5526,0],[5462,5488,5490,0],[5462,5490,5528,0],[5527,5526,5528,0],[5528,5526,5462,0],[5462,5461,5488,0],[5488,5461,5485,0],[5486,5459,5529,0],[5529,5458,5452,0],[5452,5451,5529,0],[5529,5451,5487,0],[5487,5486,5529,0],[5449,5445,5530,0],[5450,5530,5444,0],[5442,5487,5451,0],[5442,5451,5444,0],[5444,5451,5450,0],[5487,5442,5489,0],[5489,5442,5441,0],[5490,5441,5440,0],[5490,5440,5528,0],[5528,5440,29845,0],[5444,5530,5443,0],[5443,5530,5445,0],[5449,5448,5446,0],[5446,5448,5447,0],[5446,5447,3846,0],[3846,5447,3848,0],[3846,3845,5531,0],[3846,5531,5446,0],[5531,5545,5445,0],[5445,5545,5443,0],[5545,5532,5440,0],[5439,5533,5534,0],[5534,5536,5535,0],[5535,5536,5437,0],[5535,5438,5534,0],[5534,5438,5439,0],[5538,5537,49636,0],[5538,49636,5543,0],[5543,49636,5539,0],[5539,29312,5540,0],[5541,5348,5542,0],[5542,5336,5540,0],[5540,5336,5539,0],[5539,5337,5543,0],[5538,5543,5544,0],[5538,5544,5436,0],[5436,5544,5435,0],[5338,1779,5544,0],[5435,5544,1779,0],[5544,5543,5338,0],[5338,5543,5337,0],[5436,5536,5538,0],[5440,5441,5545,0],[5545,5441,5443,0],[5545,3726,5532,0],[5532,3725,5546,0],[5546,3723,3722,0],[3723,5546,3725,0],[5439,5546,3722,0],[5439,3722,5533,0],[5533,3722,29298,0],[5538,5536,5537,0],[5534,5537,5536,0],[5545,5531,3726,0],[3726,5531,3727,0],[3727,5531,3845,0],[5531,5445,5446,0],[5547,1772,5430,0],[5430,1772,5548,0],[5431,1776,5547,0],[1772,5547,5549,0],[1772,5549,1773,0],[1773,5549,1774,0],[1774,5549,5547,0],[1774,5547,1775,0],[5551,5550,29847,0],[5552,5551,1758,0],[5552,1758,5553,0],[5553,1759,5554,0],[5554,5557,5604,0],[5603,5604,5558,0],[5601,5558,5555,0],[5601,5555,5600,0],[5600,5555,5599,0],[5599,5555,29898,0],[29898,5555,5556,0],[5556,5557,1759,0],[1759,5557,5554,0],[5604,5557,5558,0],[5555,5558,5557,0],[5557,5556,5555,0],[5551,5552,1744,0],[1744,5552,1743,0],[1743,5559,1741,0],[1743,5552,5559,0],[5561,5559,5560,0],[5561,5560,5562,0],[1740,5562,29240,0],[5566,5606,5567,0],[29870,5569,5578,0],[29870,5578,5570,0],[29870,5570,29876,0],[29876,5570,5633,0],[5633,5571,29877,0],[29877,5573,5572,0],[1680,5572,1658,0],[1658,5572,5573,0],[5573,29877,5571,0],[5575,5574,5635,0],[5575,1654,1655,0],[1653,1654,5635,0],[1653,5635,1652,0],[5577,5576,5582,0],[5582,5576,5581,0],[5570,5578,5634,0],[5579,5634,5569,0],[5580,5569,5568,0],[5580,1644,5579,0],[5584,5582,1645,0],[1645,6222,1646,0],[1645,1646,5588,0],[5588,1646,5583,0],[5577,5582,5584,0],[5585,1649,5586,0],[1650,5586,49433,0],[5587,5577,5585,0],[5587,5585,1650,0],[1650,5585,5586,0],[1651,5576,5577,0],[1651,1652,5576,0],[5587,1651,5577,0],[5583,1649,5588,0],[5588,5585,5584,0],[5584,5585,5577,0],[5588,5584,1645,0],[5579,5569,5580,0],[1644,5580,1643,0],[1643,5590,1642,0],[5589,5590,1643,0],[5589,5580,5568,0],[5568,5567,5589,0],[5589,5567,5606,0],[5589,5606,5591,0],[5607,1639,5631,0],[5631,1639,5593,0],[5596,29855,5605,0],[5605,29856,5597,0],[5591,5597,5590,0],[5590,5597,1641,0],[1641,5597,5592,0],[5597,5591,5598,0],[49434,5598,5599,0],[5599,29898,49434,0],[49434,29898,1761,0],[1759,5553,1758,0],[5475,1758,5480,0],[5599,5598,5600,0],[5600,5565,29236,0],[5600,29236,5564,0],[5564,5602,5601,0],[5564,5601,5600,0],[5558,5601,5602,0],[5558,5602,5603,0],[5604,5603,29900,0],[5562,29900,29240,0],[5554,5560,5553,0],[5553,5560,5559,0],[5553,5559,5552,0],[5560,5554,5604,0],[5562,5560,29900,0],[29900,5560,5604,0],[5603,5602,5563,0],[5603,5563,29240,0],[5597,5598,5605,0],[5598,5591,5606,0],[29849,5595,29854,0],[1641,5592,1640,0],[1640,5592,1639,0],[5630,1639,5607,0],[5607,5610,5377,0],[5377,5609,5608,0],[5608,5609,5373,0],[5373,5609,5622,0],[5609,5610,5618,0],[5618,5610,5617,0],[5616,5617,5631,0],[5616,5631,5611,0],[5612,5616,49431,0],[49431,29850,29851,0],[5614,5613,5615,0],[5617,5619,5618,0],[5618,5619,5623,0],[5623,49430,5624,0],[5624,49429,5620,0],[5621,5620,49428,0],[5628,49428,49426,0],[49426,49423,5629,0],[5629,49423,5405,0],[5622,5618,5623,0],[5609,5618,5622,0],[5374,5625,5626,0],[5626,5625,49438,0],[49438,5625,5621,0],[5627,5621,49428,0],[49426,5629,5628,0],[5628,5629,5369,0],[5369,5629,5368,0],[5426,5367,5404,0],[5629,5405,5367,0],[5368,5629,5367,0],[5622,5623,5374,0],[5374,5623,5625,0],[5621,5625,5624,0],[5621,5624,5620,0],[5624,5625,5623,0],[5616,5612,5617,0],[5617,5612,5619,0],[5609,5377,5610,0],[5631,5617,5610,0],[1638,5630,1637,0],[5607,5631,5610,0],[5593,5594,5631,0],[5631,5594,5611,0],[5634,5578,5569,0],[5633,5632,5574,0],[5633,5574,5571,0],[5632,5633,5570,0],[5632,5570,5634,0],[5632,5634,5576,0],[5576,5634,5581,0],[5576,1652,5632,0],[5632,1652,5635,0],[5632,5635,5574,0],[1654,5575,5635,0],[5574,5575,5571,0],[5571,5575,5573,0],[5573,5575,1657,0],[5573,1657,1658,0],[1746,1755,1756,0],[1754,1748,1753,0],[1752,1748,5636,0],[1752,5636,1751,0],[1751,5636,5637,0],[5637,5636,29968,0],[1752,1753,1748,0],[1749,5638,4609,0],[1749,4609,5639,0],[1749,5639,5636,0],[1746,1745,5640,0],[5640,1745,5641,0],[5640,5641,4605,0],[5641,5642,5643,0],[6177,1742,6178,0],[1742,6177,5642,0],[5643,5642,6177,0],[4614,5643,4603,0],[4603,6178,1736,0],[1736,6178,1737,0],[4601,4603,1736,0],[4601,1736,1735,0],[4601,1735,5644,0],[4601,5644,4600,0],[31325,5644,1734,0],[6151,31325,5645,0],[6151,5645,5646,0],[29222,5647,5648,0],[29222,5648,6155,0],[6155,5648,5649,0],[5653,5652,5654,0],[31317,31311,6149,0],[31317,6149,6135,0],[5655,5670,5656,0],[5657,5656,5658,0],[5651,5660,5661,0],[5651,5661,5652,0],[5652,5661,5659,0],[5652,5659,5658,0],[5652,5658,5654,0],[5654,5658,6149,0],[5658,5656,6149,0],[6149,5656,5670,0],[5652,6171,5651,0],[29223,5660,5649,0],[29223,5649,5648,0],[5649,5660,5650,0],[5650,5660,5651,0],[5660,29223,5661,0],[5661,29223,5667,0],[5667,29223,5662,0],[5667,5662,5663,0],[5667,5663,1720,0],[5663,5662,5664,0],[5663,5664,5665,0],[5665,5664,5666,0],[5665,5666,5645,0],[5645,5666,5646,0],[5646,5666,5647,0],[5665,5645,1732,0],[5665,1732,5663,0],[5663,1732,1731,0],[1732,5645,1733,0],[5645,31325,1734,0],[5659,5661,5667,0],[5659,5667,5658,0],[5658,5667,5657,0],[5656,5657,1714,0],[5656,1714,5655,0],[5670,5655,5668,0],[6133,5668,5669,0],[5671,6135,5670,0],[5671,5670,5668,0],[5671,5668,6133,0],[5671,6133,6147,0],[5674,1711,5673,0],[31364,5674,31363,0],[5675,31363,31349,0],[5675,31349,31359,0],[31359,31349,6129,0],[31359,6129,6143,0],[6139,5676,6127,0],[6139,6127,5677,0],[5677,5678,6141,0],[31450,5678,5677,0],[31450,5677,5679,0],[5679,6125,5880,0],[5879,5680,5876,0],[5839,5681,5680,0],[5839,5680,6126,0],[5839,6126,5838,0],[5838,6126,5682,0],[5683,31324,5836,0],[5836,31324,31323,0],[5836,31323,5828,0],[5684,31538,5685,0],[5685,31538,5686,0],[5688,6035,5690,0],[5689,6030,5690,0],[5688,5690,31543,0],[31543,5690,5691,0],[1358,5692,6037,0],[5693,6007,5697,0],[5694,5695,5696,0],[5696,5695,5835,0],[5696,5835,5686,0],[5696,5686,5687,0],[5692,5693,5691,0],[5691,5693,5694,0],[5691,5694,5696,0],[5693,5692,6007,0],[6007,5692,1358,0],[5693,5697,5997,0],[5698,5699,5834,0],[31687,5701,31689,0],[31687,31689,5702,0],[5703,31688,5704,0],[5704,31688,31615,0],[31615,31688,5744,0],[31612,31616,31639,0],[31612,31639,5756,0],[31613,31612,5705,0],[5816,5799,5817,0],[5708,5707,5724,0],[5710,5709,5711,0],[5710,5711,5712,0],[5714,5713,49594,0],[5714,49594,31592,0],[31592,49595,5801,0],[31601,5718,31599,0],[31599,5718,5719,0],[5720,5721,5722,0],[5722,5721,31603,0],[31603,5723,5800,0],[5708,5724,5725,0],[5708,5725,5811,0],[5811,5725,5726,0],[5726,5725,5727,0],[5726,5727,5711,0],[5711,5727,49596,0],[5713,5712,49596,0],[49596,5712,5711,0],[5810,5726,5711,0],[5711,5709,5810,0],[5810,5709,5802,0],[5722,31603,5800,0],[5722,5800,5788,0],[5722,5788,31597,0],[5783,31597,5728,0],[5783,5728,5784,0],[5784,5728,5729,0],[5764,5731,5732,0],[5764,5732,5733,0],[5763,5733,5793,0],[5771,5734,5735,0],[5736,5737,1301,0],[1301,5737,1302,0],[1302,5760,1303,0],[1303,5760,5738,0],[1303,5738,5739,0],[1303,5739,5740,0],[5740,31620,5741,0],[5741,31620,5753,0],[5741,5753,5742,0],[5741,5742,31701,0],[5741,31701,31702,0],[31697,5742,5753,0],[31697,5753,5743,0],[5743,5753,5752,0],[5743,5752,31640,0],[5743,31640,31618,0],[1304,5742,5745,0],[31697,6013,5750,0],[5750,6013,6015,0],[5750,6015,5746,0],[5746,6016,1305,0],[1305,6016,5747,0],[5748,6023,5749,0],[5749,1348,1308,0],[5749,1307,5748,0],[5749,6023,1348,0],[1305,5747,1306,0],[1306,5747,1307,0],[1307,5747,5748,0],[5748,5747,1353,0],[5746,1305,5750,0],[5750,1305,5751,0],[5751,31699,1304,0],[5751,5745,5750,0],[31697,5750,5745,0],[1304,5745,5751,0],[5752,5753,5754,0],[5752,5754,5755,0],[31639,5755,5756,0],[5756,5755,5762,0],[5756,5762,5757,0],[5757,5761,5758,0],[5758,5761,5759,0],[5734,5759,5735,0],[5735,5759,5736,0],[5736,5760,5737,0],[5737,5760,1302,0],[5759,5760,5736,0],[5760,5759,5761,0],[5760,5761,5738,0],[5738,5761,5762,0],[5762,5755,5754,0],[5762,5754,5739,0],[5762,5761,5757,0],[5759,5734,5758,0],[5763,5776,5733,0],[5733,5776,5764,0],[5777,5764,5776,0],[5777,5776,5765,0],[5766,5765,5768,0],[5766,5768,5767,0],[5774,5770,5771,0],[5771,5735,5772,0],[5772,5735,5773,0],[5773,5736,1301,0],[1301,31703,5773,0],[5772,5943,5940,0],[5772,5940,5774,0],[5772,5774,5771,0],[5943,5772,5773,0],[5768,5765,5769,0],[5770,5769,5775,0],[5770,5775,5734,0],[5769,5765,5776,0],[5769,5776,5775,0],[5775,5776,5763,0],[5777,5928,5930,0],[5778,5985,5779,0],[5785,5779,5780,0],[5780,5908,5988,0],[5780,5988,31598,0],[31598,5988,5781,0],[31598,5781,5782,0],[5782,5781,5904,0],[31600,5904,5899,0],[5899,5898,31600,0],[5904,31600,5782,0],[5783,5780,31598,0],[5780,5784,5785,0],[5785,5784,5729,0],[5777,5765,5766,0],[5764,5787,5731,0],[5785,5786,5779,0],[5779,5786,5778,0],[5778,5786,5787,0],[5778,5787,5930,0],[5786,5731,5787,0],[5787,5764,5930,0],[5930,5764,5777,0],[5786,5785,5729,0],[5730,5731,5786,0],[5730,5786,5729,0],[5728,5788,5729,0],[5729,5788,5791,0],[5731,5730,5732,0],[5732,5795,5733,0],[5733,5795,5793,0],[5793,5794,5763,0],[5763,5794,5775,0],[5775,5794,5758,0],[5775,5758,5734,0],[5792,5730,5791,0],[5791,5730,5729,0],[5788,5789,5791,0],[5791,5796,5792,0],[5792,5796,5795,0],[5732,5730,5795,0],[5795,5730,5792,0],[5791,5789,5790,0],[5791,5790,5796,0],[5796,5790,5799,0],[5796,5799,5797,0],[5705,5798,5816,0],[5799,5798,5797,0],[5816,5798,5799,0],[5798,5793,5797,0],[5797,5793,5795,0],[5797,5795,5796,0],[5728,31597,5788,0],[5788,5800,5789,0],[5800,5723,5789,0],[5789,5723,5790,0],[5790,5723,5724,0],[5790,5724,5707,0],[5717,5716,49598,0],[5717,49598,5718,0],[31604,5715,49595,0],[49595,5715,5801,0],[5717,5801,5716,0],[5801,5715,5716,0],[49614,5716,5715,0],[5802,5709,5823,0],[5802,5823,5803,0],[5805,5804,5825,0],[5805,5825,6002,0],[5805,6002,5806,0],[5806,6006,5807,0],[6006,6004,5815,0],[5815,6004,5808,0],[5804,5819,31541,0],[31542,31541,5809,0],[31542,5809,5802,0],[5802,5809,5810,0],[5708,5810,5809,0],[5708,5809,5812,0],[5809,31541,5813,0],[5812,5706,5707,0],[5707,5708,5812,0],[5812,5809,5813,0],[5706,5812,5814,0],[5706,5814,5817,0],[5814,5815,5816,0],[5816,5815,31614,0],[5816,31614,5705,0],[5705,31614,31613,0],[5816,5817,5814,0],[5812,5813,5814,0],[5814,5813,5818,0],[5818,5813,5807,0],[5818,5807,6006,0],[5807,31541,5806,0],[5807,5813,31541,0],[5806,31541,5819,0],[5806,5819,5805,0],[5819,5804,5805,0],[5820,5710,5822,0],[5992,5820,5822,0],[5992,5822,5821,0],[5821,5822,5893,0],[5893,5822,5712,0],[5893,5712,5892,0],[5892,5712,5713,0],[5822,5710,5712,0],[5709,5710,5820,0],[5803,5823,5824,0],[5803,5824,5804,0],[5825,5840,5826,0],[5826,5840,5827,0],[5827,5836,5828,0],[5830,5828,5829,0],[5830,5829,5831,0],[5700,5833,5834,0],[5835,5832,5686,0],[5686,5832,5685,0],[5685,5832,5831,0],[5685,5831,5829,0],[5685,5829,5684,0],[5829,5828,5684,0],[5838,5995,5839,0],[5838,5682,5837,0],[5837,5682,31324,0],[5837,31324,5683,0],[5836,5827,5683,0],[5683,5827,5840,0],[5683,5840,5838,0],[5838,5840,5995,0],[5841,5995,5842,0],[5842,5993,5843,0],[5892,5713,5714,0],[5888,5846,31593,0],[5888,31593,5847,0],[5847,5903,5848,0],[5849,49601,5882,0],[5882,49601,5883,0],[5883,49601,49602,0],[5850,5883,5851,0],[5852,5862,30244,0],[5854,28128,5857,0],[5857,28128,5855,0],[5857,5855,5856,0],[5857,5856,5858,0],[5861,5858,5859,0],[5859,5860,5861,0],[5861,5860,5854,0],[5861,5854,5857,0],[5861,5857,5858,0],[5851,31299,49603,0],[5852,49603,49604,0],[5852,49604,5862,0],[5862,49604,49606,0],[5862,49606,5853,0],[49603,5852,5851,0],[5863,5886,31585,0],[5863,31585,5864,0],[5866,5865,5867,0],[5866,4531,5868,0],[5866,5868,5865,0],[5874,5868,5870,0],[5870,5868,5871,0],[4531,4543,5871,0],[5868,5869,5865,0],[5871,5868,4531,0],[5865,5869,5864,0],[5864,5890,5863,0],[5863,5890,5872,0],[5873,5874,5875,0],[5896,5875,5876,0],[5896,5876,5877,0],[5877,5876,5681,0],[5877,5878,31361,0],[31361,5878,5996,0],[5876,5875,5879,0],[5879,5875,5870,0],[5879,5870,5880,0],[4529,4527,31450,0],[4529,31450,5880,0],[5880,31450,5679,0],[5875,5874,5870,0],[5891,5890,5881,0],[5891,5881,5873,0],[5881,5890,5869,0],[5881,5869,5868,0],[5881,5868,5874,0],[5869,5890,5864,0],[5847,5848,5901,0],[5847,5901,5884,0],[5883,5885,5884,0],[5886,5887,5885,0],[5883,5884,5882,0],[5882,5884,5901,0],[5887,5884,5885,0],[5849,5882,5902,0],[5846,5888,5889,0],[5886,5863,5887,0],[5887,5863,5889,0],[5887,5889,5888,0],[5888,5847,5884,0],[5888,5884,5887,0],[5845,5872,31591,0],[5845,31591,5844,0],[5845,5846,5872,0],[5872,5846,5889,0],[5872,5889,5863,0],[5890,5891,31591,0],[31591,5891,49597,0],[5892,5895,5893,0],[5895,5892,49597,0],[49597,5892,5714,0],[49597,5714,5894,0],[5895,31360,31361,0],[31361,31360,5896,0],[5846,5845,5897,0],[5897,31594,5898,0],[5897,5898,5903,0],[5900,5899,5905,0],[5903,5900,5991,0],[5903,5991,5848,0],[5848,5991,5901,0],[5901,5991,5990,0],[5901,5990,5902,0],[5903,5898,5900,0],[5900,5898,5899,0],[5899,5904,5905,0],[5904,5781,5905,0],[5905,5781,5909,0],[5905,5909,5906,0],[31297,5989,5907,0],[5910,5907,5908,0],[5781,5988,5909,0],[5908,5780,5923,0],[5910,5923,5911,0],[5910,5911,5912,0],[5912,5987,5913,0],[5912,5913,5914,0],[5914,5913,5915,0],[5914,5915,5983,0],[5983,5915,5981,0],[5981,5915,5920,0],[5981,5920,5916,0],[5978,5916,5917,0],[5978,5917,5979,0],[5979,5917,5955,0],[5955,5917,5918,0],[5931,5918,5926,0],[5919,5926,5917,0],[5919,5917,5920,0],[5920,5917,5916,0],[5920,5921,5919,0],[5919,5921,5986,0],[5924,5986,5985,0],[5985,5986,5922,0],[5923,5922,5911,0],[5779,5923,5780,0],[5923,5779,5922,0],[5922,5779,5985,0],[5985,5930,5924,0],[31623,5929,5928,0],[5927,5926,5929,0],[5929,5925,5924,0],[5929,5924,5930,0],[5929,5930,5928,0],[5927,5929,31623,0],[5925,5929,5926,0],[5926,5927,5931,0],[28020,5934,5935,0],[1297,5935,5949,0],[5936,5949,5933,0],[5936,5933,5974,0],[5974,5937,31626,0],[31626,5937,31625,0],[31625,5937,5932,0],[5974,5975,5937,0],[5949,5935,5934,0],[5938,1297,5939,0],[31636,5950,5946,0],[5946,5950,5953,0],[5946,5953,5945,0],[5944,5954,5942,0],[5942,5954,5941,0],[5940,5941,5774,0],[5774,5941,5770,0],[5942,5940,5943,0],[5943,5944,5942,0],[5942,5941,5940,0],[28407,1300,5943,0],[5943,1300,5944,0],[31636,5946,5939,0],[5939,5946,5947,0],[5947,5948,31631,0],[5947,5946,5948,0],[31631,5948,1298,0],[5944,1300,5945,0],[5945,1300,31629,0],[5945,31629,5948,0],[1297,5949,5939,0],[5939,5949,31635,0],[5939,31635,31636,0],[5952,31642,5951,0],[5952,5951,31641,0],[31641,5769,5941,0],[5941,5769,5770,0],[5769,31641,5768,0],[5945,5953,5954,0],[5954,5953,5952,0],[5953,5950,31642,0],[31642,5952,5953,0],[5945,5954,5944,0],[5949,5936,31635,0],[5918,5931,5955,0],[5979,5955,5984,0],[5972,5976,5959,0],[5972,5959,5958,0],[5959,5960,28105,0],[5961,5969,28142,0],[28142,5969,5970,0],[28142,5970,5966,0],[5966,5970,5962,0],[5962,5971,28078,0],[28078,28036,5962,0],[5962,28036,5968,0],[5962,5968,5963,0],[5964,5967,5963,0],[5967,5966,5963,0],[5966,5962,5963,0],[5965,28055,1285,0],[1287,5963,5968,0],[1287,5968,1290,0],[5963,1287,5964,0],[5964,1287,28055,0],[5961,5960,5976,0],[5961,5976,5969,0],[5970,5969,5971,0],[5970,5971,5962,0],[28078,5971,1291,0],[5958,5957,5972,0],[5972,5957,31676,0],[1295,5972,31676,0],[1295,31676,1296,0],[1296,31676,5973,0],[1296,5973,5934,0],[5934,5973,31677,0],[5934,31677,5933,0],[5933,31677,5974,0],[5974,31677,31675,0],[5975,49613,5937,0],[5937,49613,5984,0],[5937,5984,5932,0],[5975,5974,31675,0],[5934,5933,5949,0],[5971,1292,1291,0],[1292,5971,5969,0],[1292,5969,1293,0],[5959,5976,5960,0],[5957,5958,5977,0],[5957,5977,31678,0],[31678,5977,5956,0],[5956,5977,5978,0],[5916,5978,5980,0],[5981,5980,28136,0],[5981,28136,28135,0],[5981,28135,5982,0],[5981,5982,5983,0],[5981,5916,5980,0],[5978,5979,5956,0],[5931,5984,5955,0],[5956,49613,31678,0],[49613,5956,5979,0],[49613,5979,5984,0],[5926,5919,5925,0],[5924,5925,5986,0],[5986,5925,5919,0],[5930,5985,5778,0],[5920,5915,5921,0],[5921,5915,5986,0],[5986,5915,5913,0],[5922,5986,5987,0],[5922,5987,5911,0],[5986,5913,5987,0],[5911,5987,5912,0],[5926,5918,5917,0],[5923,5910,5908,0],[5908,5907,5988,0],[5988,5989,5909,0],[5906,5909,5989,0],[5989,31297,5906,0],[5907,5989,5988,0],[5905,5906,31296,0],[5905,31296,5990,0],[5991,5900,5990,0],[5821,5996,5992,0],[5992,5996,5843,0],[5992,5843,5993,0],[5995,5840,5825,0],[5825,5804,5995,0],[5995,5804,5994,0],[5995,5994,5842,0],[5842,5994,5993,0],[5996,5821,31361,0],[5839,5995,5681,0],[5995,5841,5681,0],[5681,5841,5877,0],[5877,5841,5878,0],[5878,5841,5843,0],[5843,5841,5842,0],[5996,5878,5843,0],[5838,5837,5683,0],[5833,5832,5835,0],[5833,5835,5834,0],[5997,5694,5693,0],[5694,5997,5695,0],[5695,5997,5698,0],[5835,5695,5834,0],[5700,5701,5833,0],[5833,5701,5998,0],[5833,5998,5832,0],[5832,5998,5831,0],[5701,31687,5998,0],[5999,6000,6001,0],[6001,31540,6003,0],[5808,6003,5703,0],[5806,6002,6005,0],[6003,5808,6004,0],[6003,6004,6001,0],[6001,6004,6005,0],[6005,6006,5806,0],[6006,6005,6004,0],[6001,6005,5999,0],[5999,6005,6002,0],[5825,5826,6002,0],[6002,5826,5999,0],[31693,6008,1357,0],[31693,1357,31692,0],[31692,1357,1356,0],[6009,6017,6011,0],[6011,6017,6010,0],[6011,6010,6014,0],[6011,6014,31691,0],[31698,6012,6029,0],[31698,6029,6013,0],[31692,1356,6009,0],[6014,6010,5746,0],[6014,5746,6029,0],[6029,5746,6015,0],[6029,6015,6013,0],[5746,6010,6018,0],[6018,6010,6017,0],[6018,6017,1355,0],[6018,6016,5746,0],[6019,6018,1354,0],[1354,6018,1355,0],[5748,1353,6020,0],[5748,6020,6023,0],[6020,1352,1349,0],[6023,1349,6024,0],[6024,6022,6023,0],[6023,6022,1348,0],[6020,1349,6023,0],[6025,6026,6027,0],[1406,6021,6028,0],[6028,6027,1414,0],[1414,6027,1350,0],[1350,6027,1351,0],[6027,6026,1351,0],[6020,1353,1352,0],[1352,6025,6027,0],[6021,1349,1352,0],[6021,1352,6028,0],[6028,1352,6027,0],[1353,5747,6019,0],[6019,5747,6016,0],[6029,31691,6014,0],[6012,31691,6029,0],[6008,6007,27981,0],[5690,6030,5691,0],[5691,6030,5692,0],[5692,6030,6038,0],[6038,6030,5689,0],[31371,5689,6031,0],[31371,6031,31331,0],[31331,6031,6035,0],[31331,6035,6032,0],[6033,6032,6034,0],[6058,6060,31532,0],[6058,31532,31344,0],[6031,5690,6035,0],[6035,6036,6032,0],[6032,6036,6034,0],[5692,6038,6037,0],[6037,6038,6039,0],[6111,6039,6040,0],[6040,6048,6041,0],[6041,6049,6051,0],[6051,6049,6042,0],[6051,6042,6043,0],[6044,6043,6042,0],[6044,6042,6045,0],[6046,6045,6047,0],[31566,6047,6048,0],[31566,6048,31567,0],[31567,6048,6040,0],[6049,6041,6048,0],[6048,6047,6049,0],[6049,6047,6045,0],[6049,6045,6042,0],[6050,6040,6041,0],[6050,6041,6110,0],[6051,6043,6052,0],[6052,6043,6053,0],[6052,6053,6054,0],[6054,31329,1668,0],[6055,1668,31453,0],[6055,31453,1667,0],[6062,6057,6061,0],[6058,6061,31369,0],[6058,31369,6059,0],[6060,6059,31332,0],[6060,31332,6034,0],[6034,31332,6033,0],[6059,6060,6058,0],[31345,6058,31344,0],[31345,6061,6058,0],[6057,6062,6063,0],[31329,1669,1668,0],[6064,6063,1670,0],[1684,1670,6063,0],[1684,6063,1709,0],[1709,6063,6062,0],[29884,6064,1670,0],[6063,6064,6056,0],[6056,6064,1669,0],[6056,1669,31329,0],[6118,6109,6066,0],[6118,6066,6117,0],[6117,6066,6067,0],[1666,31336,6067,0],[6067,6068,6069,0],[31339,6106,6115,0],[6070,6071,6119,0],[6119,6071,6072,0],[6827,6822,6073,0],[6812,6074,6075,0],[6076,6075,6101,0],[6076,6101,6102,0],[6076,6102,6077,0],[6811,6078,6810,0],[6810,6078,6079,0],[6784,6078,6080,0],[6080,6082,6081,0],[6082,6077,6104,0],[6082,6104,6081,0],[6081,6104,6083,0],[6083,6104,6084,0],[6084,6104,6085,0],[6077,6102,6104,0],[6077,6082,6811,0],[6811,6082,6078,0],[6078,6082,6080,0],[6078,6784,6079,0],[6079,6784,6813,0],[6086,6107,6105,0],[6103,6214,6215,0],[6103,6215,6088,0],[6088,6218,6089,0],[6089,6090,6220,0],[6094,6095,6097,0],[6097,6095,6096,0],[6097,6096,49358,0],[6097,49358,49360,0],[6097,49360,6098,0],[6098,49360,6761,0],[6098,6761,1614,0],[6761,49360,1615,0],[6097,6098,49363,0],[6097,49363,6094,0],[6099,6098,1614,0],[6099,6091,6098,0],[6088,6089,6100,0],[6101,6100,6102,0],[6101,6088,6100,0],[6088,6101,6103,0],[6214,6103,6105,0],[6214,6105,6087,0],[6089,6220,6100,0],[6102,6100,6104,0],[6073,6086,6812,0],[6812,6086,6074,0],[6105,6074,6086,0],[6105,6103,6101,0],[6074,6105,6075,0],[6075,6105,6101,0],[6115,6106,6070,0],[6070,6106,6071,0],[6071,6106,6107,0],[6067,6066,1666,0],[1666,6066,6055,0],[6054,6055,6108,0],[6054,6108,6052,0],[6065,6052,6108,0],[6109,6108,6066,0],[6108,6109,6065,0],[6108,6055,6066,0],[6055,1667,1666,0],[6055,6054,1668,0],[6052,6065,6051,0],[6041,6051,6110,0],[6065,6109,6051,0],[6051,6109,6110,0],[6050,6124,6111,0],[6111,6124,1361,0],[6111,1361,27978,0],[6111,27978,6112,0],[6112,27978,6113,0],[6112,6113,6037,0],[6112,6037,6039,0],[6039,6111,6112,0],[6111,6040,6050,0],[6110,6109,6050,0],[6050,6116,6123,0],[6123,6116,31372,0],[6123,31372,6121,0],[1362,6121,6122,0],[6122,6121,6114,0],[6829,6114,6115,0],[6115,6120,31339,0],[6118,6116,6109,0],[6109,6116,6050,0],[31339,6120,6069,0],[6069,6120,6118,0],[6069,6118,6117,0],[6117,6067,6069,0],[6115,6070,6119,0],[6115,6114,6120,0],[6120,6114,6121,0],[1362,6122,6818,0],[6823,6122,6114,0],[1362,6123,6121,0],[1361,6124,6123,0],[6124,6050,6123,0],[5690,6031,5689,0],[5688,5696,5687,0],[5876,5680,5681,0],[5880,6125,5879,0],[6125,5680,5879,0],[5679,5677,6125,0],[31322,6128,6129,0],[31322,6129,6130,0],[6128,6143,6129,0],[31349,6130,6129,0],[6125,5677,6126,0],[6126,5677,6127,0],[5676,6139,6128,0],[1710,5673,1711,0],[1711,6131,1712,0],[1713,6131,6132,0],[6131,5672,6132,0],[6132,5672,5669,0],[6133,5672,6147,0],[5672,6133,5669,0],[6135,6134,31317,0],[31313,6136,31354,0],[6144,31354,6137,0],[6139,6138,6128,0],[6138,6139,6141,0],[6138,6141,6140,0],[6140,6141,5678,0],[6140,5678,31450,0],[5677,6141,6139,0],[6128,6138,6143,0],[6142,6137,6138,0],[6138,6137,6143,0],[31313,6134,6136,0],[31313,6144,6145,0],[31362,6145,6140,0],[31313,31354,6144,0],[6144,6137,6142,0],[5671,6134,6135,0],[5671,6147,6134,0],[6134,6147,6146,0],[31358,6147,31353,0],[6131,31353,5672,0],[5672,31353,6147,0],[6134,6146,6136,0],[1714,5657,6148,0],[1716,6148,1717,0],[1717,5667,1720,0],[1717,6148,5667,0],[5667,6148,5657,0],[6135,6149,5670,0],[5646,6150,6151,0],[6151,6150,6152,0],[6151,6152,3872,0],[4597,4599,3872,0],[3872,6152,3873,0],[3873,6152,3874,0],[3874,6152,6153,0],[6173,6154,6155,0],[6155,6154,29222,0],[6155,5649,6173,0],[30380,30378,6156,0],[30380,6156,3877,0],[3877,6156,6174,0],[3877,6174,6157,0],[3877,6157,6158,0],[6158,6157,6159,0],[6158,6159,6165,0],[6165,6159,4519,0],[4519,6159,6160,0],[6160,6159,6164,0],[6164,6168,6161,0],[6162,6163,6167,0],[6162,6167,4533,0],[6162,4533,4521,0],[4519,4518,6165,0],[6158,6165,6166,0],[3879,6166,4518,0],[4518,6166,6165,0],[4520,6164,30250,0],[6164,6161,4521,0],[6161,6162,4521,0],[4522,6167,31319,0],[4522,31319,4524,0],[6168,6169,6161,0],[6161,6169,6170,0],[6170,6169,6175,0],[6170,6175,6171,0],[6171,5652,5653,0],[6175,5650,5651,0],[5650,6172,6173,0],[6173,6174,6156,0],[6174,6173,6176,0],[6174,6176,6157,0],[6173,6172,6176,0],[6176,6169,6168,0],[6168,6159,6176,0],[6176,6159,6157,0],[6169,6176,6175,0],[6175,6176,5650,0],[5650,6176,6172,0],[6173,5649,5650,0],[6159,6168,6164,0],[30378,3876,6156,0],[6156,3876,6154,0],[6156,6154,6173,0],[5643,6177,4603,0],[4603,6177,6178,0],[1737,6178,1741,0],[4614,4604,5643,0],[5643,4604,5641,0],[1742,5642,1744,0],[1744,5642,5551,0],[1746,5640,1747,0],[1747,5640,5638,0],[5640,4609,5638,0],[1735,1737,6179,0],[6181,6179,6180,0],[6181,6180,6182,0],[6181,6182,6183,0],[6183,6182,1721,0],[1722,6182,1738,0],[6180,1738,6182,0],[1728,1720,1731,0],[1731,6183,1721,0],[1732,1733,6183,0],[6183,1733,6181,0],[6181,1733,6184,0],[6181,6184,6179,0],[6179,6184,1735,0],[1735,6184,5644,0],[5644,6184,1734,0],[1734,6184,1733,0],[1664,31336,1666,0],[1664,1666,6185,0],[6185,31454,1663,0],[1663,31454,6186,0],[1663,6186,6187,0],[1678,6187,1677,0],[6187,1678,1663,0],[1663,1678,1662,0],[6185,1666,1667,0],[6185,1667,31454,0],[31454,1667,31453,0],[1657,5575,1655,0],[1652,1651,6192,0],[1652,6192,1653,0],[1654,1653,6188,0],[6190,1659,6189,0],[6189,1659,1656,0],[6189,1656,6188,0],[6188,1656,1655,0],[6188,1655,1654,0],[6193,6192,1651,0],[1653,6192,6191,0],[6188,6191,6194,0],[6188,6194,6189,0],[6191,6188,1653,0],[6189,6194,6190,0],[6205,6206,49378,0],[1630,6205,1631,0],[1631,6205,49378,0],[1631,49378,49379,0],[1631,49379,6195,0],[49377,1632,6195,0],[49378,6196,49432,0],[49432,6196,6192,0],[49378,6206,6196,0],[6192,6196,6191,0],[6191,6196,6194,0],[6206,6194,6196,0],[6190,6194,29911,0],[29910,6203,6197,0],[29910,6197,6198,0],[6198,6197,6221,0],[6198,6221,6200,0],[6199,6200,6201,0],[6201,6200,6202,0],[6201,6202,6207,0],[6202,6204,1630,0],[1630,6204,6205,0],[6204,6203,6205,0],[29911,6206,6203,0],[6203,6206,6205,0],[6201,6207,6208,0],[6201,6208,29919,0],[29919,6208,49355,0],[29919,49355,6093,0],[6093,49355,6094,0],[6201,29919,6199,0],[6199,29919,6209,0],[6210,6217,6211,0],[6211,6217,6212,0],[6211,6212,6213,0],[6213,6212,6214,0],[6214,6212,6215,0],[6214,31341,6216,0],[6214,6216,6213,0],[6213,29909,6211,0],[6210,6211,6198,0],[6210,6198,6200,0],[6200,6199,6209,0],[6200,6209,6210,0],[6215,6217,6088,0],[6218,6217,6210,0],[6088,6217,6218,0],[6092,6090,6219,0],[6092,6219,6093,0],[6093,6219,29919,0],[6092,6220,6090,0],[6085,6220,1613,0],[6090,6089,6219,0],[6219,6089,6218,0],[6218,29918,6219,0],[6212,6217,6215,0],[6202,6200,6221,0],[6221,6197,6203,0],[6203,6204,6221,0],[6221,6204,6202,0],[5582,1644,1645,0],[1645,1644,6222,0],[6222,1644,1642,0],[6222,1640,5630,0],[1639,5630,1640,0],[1640,6222,1642,0],[1642,1641,1640,0],[1626,1625,1621,0],[1621,1625,1622,0],[1595,6813,6223,0],[6223,6507,1594,0],[1594,6507,6224,0],[6224,6507,6225,0],[6225,6507,6508,0],[6225,6508,6226,0],[6225,6226,6807,0],[6807,49114,31530,0],[31530,49114,6227,0],[31530,6227,6228,0],[6228,6227,6800,0],[6228,6800,6229,0],[6839,6799,6230,0],[6838,6230,36588,0],[6838,36588,6231,0],[6855,6231,36587,0],[6855,36587,36545,0],[6855,36545,6232,0],[6506,6233,6235,0],[6235,6234,49087,0],[6235,49087,6505,0],[6505,49087,6236,0],[36522,6236,6237,0],[36522,6237,6238,0],[6238,6237,6239,0],[6239,36521,6240,0],[6249,6241,36576,0],[6244,6242,6243,0],[6243,36498,6502,0],[6243,6247,6244,0],[36499,6246,6241,0],[6241,6246,36576,0],[1583,6245,1579,0],[1579,6245,6247,0],[6247,6245,6246,0],[6246,6244,6247,0],[1583,1579,6248,0],[6248,1580,1581,0],[1580,6248,1579,0],[6244,6246,6242,0],[6242,6246,36499,0],[6239,6240,1584,0],[6249,1584,6240,0],[6239,6237,36521,0],[6240,36521,6495,0],[6495,49107,6251,0],[6251,49107,6250,0],[6253,36592,6256,0],[6498,6256,6479,0],[6254,1497,6255,0],[1499,6254,6478,0],[1499,6478,1571,0],[1571,6478,1570,0],[1499,1571,1572,0],[6256,6257,6476,0],[6257,6494,6477,0],[6258,6259,6489,0],[6258,6489,6260,0],[6258,6260,6473,0],[6474,6261,6477,0],[6259,6258,6477,0],[6474,6258,6473,0],[6477,6258,6474,0],[6259,6262,6488,0],[6488,6262,6484,0],[6488,6484,6263,0],[6263,6484,49072,0],[49072,6264,6265,0],[6449,49075,6266,0],[6449,6266,36565,0],[36565,6266,6267,0],[6267,49078,6268,0],[36564,6268,6269,0],[6270,6446,6271,0],[6271,6446,6272,0],[6271,6272,36562,0],[6272,6304,6296,0],[6273,6274,6275,0],[6277,6278,6279,0],[6284,6283,6451,0],[6285,6286,36565,0],[6285,36565,6287,0],[6287,6290,6288,0],[6273,36562,6272,0],[6273,6272,6296,0],[36562,6289,36563,0],[36563,6289,6290,0],[6285,6291,6292,0],[6288,6291,6287,0],[6276,6288,6290,0],[6276,6290,6275,0],[6290,6289,6275,0],[6275,6289,6273,0],[6289,36562,6273,0],[6288,6276,6277,0],[6288,6277,6291,0],[6277,6292,6291,0],[6292,6294,6285,0],[6285,6294,6286,0],[6286,6294,6284,0],[6287,6291,6285,0],[6282,21148,6281,0],[6293,6280,6295,0],[6294,6292,6295,0],[6293,6295,6279,0],[6295,6292,6279,0],[6277,6279,6292,0],[6284,6295,6283,0],[21148,6283,6281,0],[6281,6283,6295,0],[6273,6296,6298,0],[6273,6298,6274,0],[6276,6274,6299,0],[36561,6297,6298,0],[6299,6274,6297,0],[6297,6274,6298,0],[6276,6299,6300,0],[6300,6299,6301,0],[6300,6301,6302,0],[6303,21124,6279,0],[6279,21124,6293,0],[6276,6300,6278,0],[6276,6278,6277,0],[6278,6303,6279,0],[6278,6300,6302,0],[6278,6302,36293,0],[6276,6275,6274,0],[6305,6304,6448,0],[36560,6448,6306,0],[36560,6306,6307,0],[6307,6306,36558,0],[6307,36558,49124,0],[6309,6308,36536,0],[6309,36536,49112,0],[49112,6310,6309,0],[6309,6310,6311,0],[6309,6311,6312,0],[49063,6312,49059,0],[6313,49059,6314,0],[6313,6314,36309,0],[36309,6314,49024,0],[36310,6612,6613,0],[36310,6613,6445,0],[6444,6613,6315,0],[6444,6315,6605,0],[6605,38260,49955,0],[49955,38260,36372,0],[36371,6316,6317,0],[6317,6345,6443,0],[6443,6345,6318,0],[6443,6318,6319,0],[6319,49236,38371,0],[38371,49236,6320,0],[6320,49236,36347,0],[36347,49236,36348,0],[36348,49236,6321,0],[36349,6442,6426,0],[6426,6441,6425,0],[6425,6441,6319,0],[6319,6318,6322,0],[38255,6322,6341,0],[38255,6323,6423,0],[6423,6338,6422,0],[6422,6338,6324,0],[6324,6338,6412,0],[6412,6338,6325,0],[6412,6325,6408,0],[6410,6408,6326,0],[6409,6410,6327,0],[6409,6327,6334,0],[6334,6327,6328,0],[6436,6330,6335,0],[6335,6330,6331,0],[6335,6331,6332,0],[6335,6332,6333,0],[6334,6333,38367,0],[6334,38367,6409,0],[6334,6329,6333,0],[6328,6329,6334,0],[6327,6410,6326,0],[6327,6326,6336,0],[6336,6326,49237,0],[6336,49237,6337,0],[6337,49237,6323,0],[6423,6323,6338,0],[6338,6323,6325,0],[6327,6336,6337,0],[6341,6340,6323,0],[6341,6323,38255,0],[6342,6341,6344,0],[6342,6344,6317,0],[36372,6343,6316,0],[6344,6341,6345,0],[6340,6337,6323,0],[6340,6339,6337,0],[6327,6337,6328,0],[6337,6339,6328,0],[6328,6339,6346,0],[6328,6346,6329,0],[6329,6346,6435,0],[6348,6435,38258,0],[6348,38258,6347,0],[6347,38258,38257,0],[6438,6347,6605,0],[6347,6438,6348,0],[6348,6438,6349,0],[6348,6349,6436,0],[6436,6349,6377,0],[6350,6377,6376,0],[6350,6376,6375,0],[6350,6375,6372,0],[6352,6351,6374,0],[6374,6373,37928,0],[37928,6373,6380,0],[37928,6380,6353,0],[6353,6380,6381,0],[6353,6381,49171,0],[49171,6381,6382,0],[49161,6382,6354,0],[6355,6386,6356,0],[49183,6396,6359,0],[49183,6359,49204,0],[49149,49147,6361,0],[49149,6361,6360,0],[6360,6361,49146,0],[6362,6394,49129,0],[6392,6363,6357,0],[6392,6357,6364,0],[6598,6365,6385,0],[6598,6385,6599,0],[6599,6366,6367,0],[6595,6367,6615,0],[6616,49144,6368,0],[6378,6368,6379,0],[6379,6368,6369,0],[6379,6369,6370,0],[6370,6390,6371,0],[6370,6371,6372,0],[6372,6371,6373,0],[6374,6351,6373,0],[6373,6351,6372,0],[6370,6372,6375,0],[6376,6377,6378,0],[6376,6378,6379,0],[6376,6379,6375,0],[6379,6370,6375,0],[6373,6371,6380,0],[6380,6387,6381,0],[6381,6387,6382,0],[6380,6371,6391,0],[6380,6391,6387,0],[6382,6387,6355,0],[6382,6355,6354,0],[6356,6386,6384,0],[6384,6386,6385,0],[6385,6365,6395,0],[6386,6383,6388,0],[6386,6388,6385,0],[6385,6388,6599,0],[6383,6386,6355,0],[6355,6387,6383,0],[6383,6387,6391,0],[6383,6391,6388,0],[6389,6390,6369,0],[6369,6390,6370,0],[6391,6371,6390,0],[6388,6391,6389,0],[6389,6391,6390,0],[6368,49144,6369,0],[6395,6365,6364,0],[6364,6365,49128,0],[6364,49128,6392,0],[6392,49127,49129,0],[49129,6591,6393,0],[6393,6362,49129,0],[6392,49129,6363,0],[6394,6361,6397,0],[6394,6397,6363,0],[6363,6358,6357,0],[6364,6357,6384,0],[6364,6384,6395,0],[6384,6385,6395,0],[6358,6363,6396,0],[6396,6397,6359,0],[6359,6397,49147,0],[6396,6363,6397,0],[6361,49147,6397,0],[6363,49129,6394,0],[6372,6351,6398,0],[6331,6399,6400,0],[6402,38366,6403,0],[49240,6403,6404,0],[49240,6404,6405,0],[6405,6406,49240,0],[49240,6406,49238,0],[49238,6407,6411,0],[6411,6407,38387,0],[6411,38387,6408,0],[49239,6410,6409,0],[6408,6410,6411,0],[6408,38387,6412,0],[6324,6412,38387,0],[6324,38387,6413,0],[6324,6413,6414,0],[6420,38386,6415,0],[6415,6417,6416,0],[6416,6417,6431,0],[6431,38350,6432,0],[6432,38350,6418,0],[6419,38351,38254,0],[6419,38254,36349,0],[6419,36349,6426,0],[6420,6415,6430,0],[6324,6421,6422,0],[6424,6425,6322,0],[6322,6425,6319,0],[6426,6425,6427,0],[6427,6425,6433,0],[6423,6424,38255,0],[6423,6422,6424,0],[6424,6422,6428,0],[6430,6429,6428,0],[6430,6428,6420,0],[6416,6430,6415,0],[6430,6416,6431,0],[6430,6431,6429,0],[6429,6431,6432,0],[6424,6428,6433,0],[6433,6428,6429,0],[6433,6429,6432,0],[6427,6433,6432,0],[6427,6432,6418,0],[6418,38351,6427,0],[6427,38351,6419,0],[6426,6427,6419,0],[6420,6428,6421,0],[6428,6422,6421,0],[6414,49197,6421,0],[6421,49197,6420,0],[6421,6324,6414,0],[29659,49238,6434,0],[37919,6434,6406,0],[49238,6406,6434,0],[6399,6351,6352,0],[6351,6399,6398,0],[6329,6435,6333,0],[6333,6435,6436,0],[6330,6350,6398,0],[6331,6330,6398,0],[6331,6398,6399,0],[6332,6437,6333,0],[6333,6437,38367,0],[6437,6401,6402,0],[6400,6401,6331,0],[6437,6332,6401,0],[6401,6332,6331,0],[6436,6377,6330,0],[6350,6372,6398,0],[6438,6439,6349,0],[6349,6439,6440,0],[6378,6440,6368,0],[6378,6377,6440,0],[6440,6377,6349,0],[6319,6441,49236,0],[49236,6441,6442,0],[6321,49236,6442,0],[6319,38371,6443,0],[6317,6443,36371,0],[6605,49955,6444,0],[6613,6444,6445,0],[6612,36310,36309,0],[6304,6272,6446,0],[6447,6446,36530,0],[6447,36530,36532,0],[6447,36532,6448,0],[6448,36532,36533,0],[6448,36533,6306,0],[6447,6448,6304,0],[6447,6304,6446,0],[6449,36565,36566,0],[6449,36566,6450,0],[6450,6451,6452,0],[6481,6452,6453,0],[21144,6454,6482,0],[6482,6454,6455,0],[6455,21146,6456,0],[6456,21146,6457,0],[6458,6457,6471,0],[6458,6471,6260,0],[6458,6260,6489,0],[6260,6459,6473,0],[6473,6459,6475,0],[6475,6472,1568,0],[1568,6472,6460,0],[6462,6463,6464,0],[6466,6465,6470,0],[6466,6470,21136,0],[6467,21136,6468,0],[6467,6468,6469,0],[21136,6470,21135,0],[6459,6260,6471,0],[6471,6462,6461,0],[6460,6472,6461,0],[6471,6461,6472,0],[6471,6472,6459,0],[6472,6475,6459,0],[6471,6457,6462,0],[6474,6473,6475,0],[6261,1570,6477,0],[6477,1570,6478,0],[6477,6478,6476,0],[6476,6257,6477,0],[6476,6479,6256,0],[6476,6478,6479,0],[6479,6478,6254,0],[6480,1501,6261,0],[6261,1501,49522,0],[6457,6458,6456,0],[6453,21144,6482,0],[6453,6482,6481,0],[6452,6481,6483,0],[6452,6483,6450,0],[6481,6482,6483,0],[6483,6265,49075,0],[6450,6483,49075,0],[6450,49075,6449,0],[6487,6485,49068,0],[49068,6485,6486,0],[6495,6486,49107,0],[6485,6487,6493,0],[6485,6493,6250,0],[6489,6488,6456,0],[6456,6458,6489,0],[6489,6259,6488,0],[6488,6490,6456,0],[6456,6490,6455,0],[6488,6263,6490,0],[6477,6494,6259,0],[6259,6494,6262,0],[6494,6492,6491,0],[6491,6492,6252,0],[6491,6252,6493,0],[6493,6252,6251,0],[6251,6250,6493,0],[6493,6484,6262,0],[6493,6262,6491,0],[6491,6262,6494,0],[6484,6493,6487,0],[6240,6495,6249,0],[6249,6495,6241,0],[6241,6495,6503,0],[6241,6503,36499,0],[36499,6503,36501,0],[36501,6251,6252,0],[36501,6252,36500,0],[36502,6253,6497,0],[6255,6497,6498,0],[6255,6498,6254,0],[6254,6498,6479,0],[6256,6498,6497,0],[6256,6497,6253,0],[6253,36502,6496,0],[6253,6496,36592,0],[6497,6499,36502,0],[6500,36263,6501,0],[6500,6501,6502,0],[6500,6502,36498,0],[36498,6243,6242,0],[6499,6497,36262,0],[6503,6251,36501,0],[6503,6495,6251,0],[6496,36500,36592,0],[36500,6252,36592,0],[6238,6833,36522,0],[6505,6504,6856,0],[6235,6505,6506,0],[6233,6506,6232,0],[6505,6856,6506,0],[6506,6856,6232,0],[1594,6224,6846,0],[6223,6784,6507,0],[6507,6783,6508,0],[6508,6783,6785,0],[6508,6785,6509,0],[6510,6509,6511,0],[6510,6511,6512,0],[49117,6512,49116,0],[6513,49117,49115,0],[6513,49115,6514,0],[6514,49115,6515,0],[6515,6516,6517,0],[6518,6619,6519,0],[6521,6528,6522,0],[6523,6522,6525,0],[6523,6525,6524,0],[36537,6525,6590,0],[6590,6525,6522,0],[6522,6526,6521,0],[6521,6526,6527,0],[6521,6527,6520,0],[6520,6519,6521,0],[6521,6519,6528,0],[6522,6528,6529,0],[6529,6528,6530,0],[6530,6625,49131,0],[49131,6625,6531,0],[6533,6532,6717,0],[6533,6717,6718,0],[6533,6718,49133,0],[6534,6535,6536,0],[49152,6536,6538,0],[6538,6575,6537,0],[6538,6537,49157,0],[49157,6537,6539,0],[6540,6539,49371,0],[6540,49371,6541,0],[6541,29786,6542,0],[6543,6545,6544,0],[6544,6545,6546,0],[6544,6546,29730,0],[6550,49332,6548,0],[6549,49324,5113,0],[5113,49324,5112,0],[29733,6550,6551,0],[29733,6551,6549,0],[6551,49328,49325,0],[6551,49325,6549,0],[49328,6551,6550,0],[6543,49370,6545,0],[6546,6552,29730,0],[29730,6552,6547,0],[49334,6547,6552,0],[49334,6552,49336,0],[49336,6552,49369,0],[6545,49369,6546,0],[49369,6552,6546,0],[49420,29610,29770,0],[49420,29770,6589,0],[6589,29770,29771,0],[6586,6553,6554,0],[49335,6554,6555,0],[49335,6555,5190,0],[6557,29772,6558,0],[6558,29772,29775,0],[6563,6559,49364,0],[5197,6560,6561,0],[6561,5178,5197,0],[5201,5186,6562,0],[6560,5196,6563,0],[5207,6564,6579,0],[5210,49344,6565,0],[49347,6565,5160,0],[5160,6565,6671,0],[6671,6565,49365,0],[6667,49365,49367,0],[6667,49367,6567,0],[6567,49367,29791,0],[6567,29791,6566,0],[6567,6566,29777,0],[6567,29777,29793,0],[6568,6569,6570,0],[6570,6569,29795,0],[6570,29795,6731,0],[6731,6578,6710,0],[6710,6578,6571,0],[6572,6576,6712,0],[6712,6576,6726,0],[6726,6574,6573,0],[6573,6574,49133,0],[6573,49133,6718,0],[49133,6574,49205,0],[49205,6574,6575,0],[6578,6731,29795,0],[6571,6577,6572,0],[6577,6576,6572,0],[6576,6575,6726,0],[6726,6575,6574,0],[49133,49205,6535,0],[6565,49347,5159,0],[6565,5159,5210,0],[6579,5210,5207,0],[6564,5207,5205,0],[5207,5210,5208,0],[6563,49364,6564,0],[6581,29776,6582,0],[29787,29768,29769,0],[29787,29769,29786,0],[6580,6579,49364,0],[6564,49364,6579,0],[6556,6557,6584,0],[6557,6558,6584,0],[6556,6584,5193,0],[5193,6585,5192,0],[6585,5193,6584,0],[6555,6554,6556,0],[6554,49335,6586,0],[6587,6586,49368,0],[6587,49368,6588,0],[6587,6588,6589,0],[6587,6589,29771,0],[6587,29771,6553,0],[6522,6529,6590,0],[6590,6591,6592,0],[6595,6617,6596,0],[6367,6595,6596,0],[6596,6617,6597,0],[6597,6617,49110,0],[6597,49110,6594,0],[6597,6598,6596,0],[6596,6598,6599,0],[6599,6367,6596,0],[6609,6595,6614,0],[6608,6614,6600,0],[6600,6614,6601,0],[6602,6603,6613,0],[6439,6438,6604,0],[6604,6438,6605,0],[6603,6604,6315,0],[6603,6315,6613,0],[6602,6613,6611,0],[6611,49024,6600,0],[6607,6600,49024,0],[6607,49024,6314,0],[6314,49059,6606,0],[6314,6606,6607,0],[6607,6606,49142,0],[6607,49142,6608,0],[6312,6311,6606,0],[6312,6606,49059,0],[6600,6607,6608,0],[6609,6608,6610,0],[6617,6610,49110,0],[6609,6610,6617,0],[6609,6617,6595,0],[6608,6609,6614,0],[6600,6601,6611,0],[6611,6601,6602,0],[49024,6611,6612,0],[6612,6611,6613,0],[6604,6605,6315,0],[6601,6614,6615,0],[6615,6614,6595,0],[6601,6615,6616,0],[6601,6616,6602,0],[6602,6616,6603,0],[6603,6616,6368,0],[6603,6368,6440,0],[6603,6440,6604,0],[6604,6440,6439,0],[6590,6592,36537,0],[6620,6618,6519,0],[6620,6519,6619,0],[6618,6530,6519,0],[6518,6517,6516,0],[6518,6516,6619,0],[6620,6619,49119,0],[6620,49119,6624,0],[6624,49119,6621,0],[6769,6621,6622,0],[6769,6622,6770,0],[6770,6622,6623,0],[6771,6623,49116,0],[6620,6624,6625,0],[6625,6624,6531,0],[6625,6530,6618,0],[6625,6618,6620,0],[49136,49135,6725,0],[6628,6627,6766,0],[6628,6766,6767,0],[6628,6767,6764,0],[6630,6698,6631,0],[6631,6698,6632,0],[6632,49417,6705,0],[6705,6633,6634,0],[6704,6634,6635,0],[6635,6636,29799,0],[6637,6690,6638,0],[6638,6690,29927,0],[6638,29927,6639,0],[6640,6639,6658,0],[6640,6658,6641,0],[6680,6641,6642,0],[5393,5385,1624,0],[5387,5386,6646,0],[5385,6655,1624,0],[6646,49375,6645,0],[6644,29905,6652,0],[5387,6646,5388,0],[6646,6645,5388,0],[5388,6645,6647,0],[6647,6653,6648,0],[6648,6653,6644,0],[6653,6647,6645,0],[6647,6648,5390,0],[5390,6648,6649,0],[6649,6652,6650,0],[1631,6650,1630,0],[1630,6650,6651,0],[1630,6651,1629,0],[1629,6651,6652,0],[6652,6649,6644,0],[6644,6649,6648,0],[1631,1632,6650,0],[6650,1632,5371,0],[5390,6649,5370,0],[5370,6649,5371,0],[6650,5371,6649,0],[6645,29906,1627,0],[6645,1627,6653,0],[6653,6654,6644,0],[49356,6654,1627,0],[1627,6654,6653,0],[1623,6655,6660,0],[1623,6660,6656,0],[29927,6657,6639,0],[6639,6657,6658,0],[6658,6657,6642,0],[6642,6641,6658,0],[6642,6657,6659,0],[6659,6656,6660,0],[6655,5385,6660,0],[6643,6660,5385,0],[6643,5385,5384,0],[6659,6657,6661,0],[6659,6661,6656,0],[6637,6638,6662,0],[6638,49353,6662,0],[6662,49353,5051,0],[6662,5051,5052,0],[6662,5052,6636,0],[5052,6663,6636,0],[6636,6663,29799,0],[29799,29796,6749,0],[6748,6664,6665,0],[6670,6665,5162,0],[6670,5162,6672,0],[6672,5162,5161,0],[6666,6667,6668,0],[6567,6568,6667,0],[6568,6668,6667,0],[49365,6667,6666,0],[49365,6666,6671,0],[6673,6751,6672,0],[6672,6751,6670,0],[6672,5161,6671,0],[6666,6669,6671,0],[6671,6669,6673,0],[6673,6672,6671,0],[6669,6666,6668,0],[5162,6665,6664,0],[49373,6664,6749,0],[49373,6749,29797,0],[5053,5054,29797,0],[49374,5054,5165,0],[5056,5165,5055,0],[5055,5165,5054,0],[5165,5164,49374,0],[49374,5164,49373,0],[49373,5164,5163,0],[49373,5163,6664,0],[29797,5054,49373,0],[5050,5051,49353,0],[5050,49353,49354,0],[6676,6675,6677,0],[6677,6678,5361,0],[5361,6678,5382,0],[5361,5382,5396,0],[5382,6678,5383,0],[5383,6678,6679,0],[5383,6679,5394,0],[5384,6679,6642,0],[5384,6642,6643,0],[6643,6642,6660,0],[6660,6642,6659,0],[6642,6679,6680,0],[6680,6679,6678,0],[6641,6680,6681,0],[6675,6674,6681,0],[6681,6674,6641,0],[6679,5384,5394,0],[6678,6677,6681,0],[6681,6677,6675,0],[6678,6681,6680,0],[6677,5361,6682,0],[5359,6683,6688,0],[6688,6683,5045,0],[5045,6683,6684,0],[5045,6684,5044,0],[5044,6684,5043,0],[5043,6684,5357,0],[5356,6684,5358,0],[6684,6683,5358,0],[6676,6677,6682,0],[5050,49354,6674,0],[5050,6674,5218,0],[5218,6674,6685,0],[6685,6674,6686,0],[5049,6686,6675,0],[5049,6675,6676,0],[5049,6676,6687,0],[6687,5359,6688,0],[6688,5047,6687,0],[6682,5359,6687,0],[6682,6687,6676,0],[5048,5049,6687,0],[5048,6687,5047,0],[6675,6686,6674,0],[6635,6634,6636,0],[6636,6634,6689,0],[6689,6634,6633,0],[6633,6690,6637,0],[6633,6691,6692,0],[6692,6691,6701,0],[29931,6692,6700,0],[29931,6700,6693,0],[49976,6696,6695,0],[6695,6696,6697,0],[6698,6697,6699,0],[6701,6699,6702,0],[6701,6702,6700,0],[6701,6700,6692,0],[6693,6702,6703,0],[6703,6702,6699,0],[6700,6702,6693,0],[6694,6703,49976,0],[6703,6699,6696,0],[6703,6696,49976,0],[6705,6704,6747,0],[6705,6747,6632,0],[6632,6747,6740,0],[6740,6747,6739,0],[6739,6747,6706,0],[6739,6706,6743,0],[6742,6743,6753,0],[6742,6753,6707,0],[6707,6733,6708,0],[6707,6708,6742,0],[6742,6708,6744,0],[6744,6708,6728,0],[6744,6728,6745,0],[6745,6728,6723,0],[6713,6709,6737,0],[6713,6737,6711,0],[6711,6737,6730,0],[6711,6730,6710,0],[6711,6710,6572,0],[6711,6712,6713,0],[6713,6712,6714,0],[6715,6717,49136,0],[49136,6717,6716,0],[6716,6717,6532,0],[6531,6716,6532,0],[6573,6727,6714,0],[6714,6727,6724,0],[6724,6727,6719,0],[6724,6719,6720,0],[6720,6719,6721,0],[6721,6719,6725,0],[49141,6725,49135,0],[49135,6627,49141,0],[6725,49141,6721,0],[6720,6721,6722,0],[6709,6722,6728,0],[6728,6722,6723,0],[6722,6709,6724,0],[6722,6724,6720,0],[6724,6709,6713,0],[6714,6724,6713,0],[6727,6715,6719,0],[6573,6718,6727,0],[6727,6718,6715,0],[6715,6718,6717,0],[6573,6714,6726,0],[6726,6714,6712,0],[6738,6729,6737,0],[6737,6729,6730,0],[6730,6732,6731,0],[6731,6732,6735,0],[6735,6732,6733,0],[6733,6736,6708,0],[6733,6707,6734,0],[6673,6669,6735,0],[6673,6735,6734,0],[6731,6735,6570,0],[6735,6669,6668,0],[6734,6735,6733,0],[6730,6731,6710,0],[6738,6728,6729,0],[6736,6729,6708,0],[6729,6736,6730,0],[6728,6738,6709,0],[6709,6738,6737,0],[6572,6710,6571,0],[6740,6739,6741,0],[6742,6744,6743,0],[6739,6743,6741,0],[6741,6743,6744,0],[6741,6744,6745,0],[6632,6740,6741,0],[6745,6723,49139,0],[49139,6723,6722,0],[49139,6722,6721,0],[6632,6741,6631,0],[6631,6741,6745,0],[6705,6634,6704,0],[6746,6748,6706,0],[6706,6747,6746,0],[6746,6747,6704,0],[6704,6750,6746,0],[6746,6750,6748,0],[6664,6748,6749,0],[6749,6750,6635,0],[6749,6635,29799,0],[6635,6750,6704,0],[6748,6750,6749,0],[6748,6665,6670,0],[6752,6670,6751,0],[6751,6673,6734,0],[6670,6752,6748,0],[6706,6748,6752,0],[6753,6743,6752,0],[6752,6751,6753,0],[6753,6751,6734,0],[6754,6765,49977,0],[6756,6755,6757,0],[6758,6774,6759,0],[6759,6777,49120,0],[49120,6777,6789,0],[49120,6789,6760,0],[6757,6762,6756,0],[6755,6756,29922,0],[49977,6695,6754,0],[6754,6695,6629,0],[6629,6695,6697,0],[6629,6697,6630,0],[6761,6762,6760,0],[6761,1615,6762,0],[6763,6755,6765,0],[6768,6763,6764,0],[6754,6629,6765,0],[6765,6629,6764,0],[6765,6764,6763,0],[6765,6755,49977,0],[6767,6774,6768,0],[6755,6763,6757,0],[6757,6763,6758,0],[6758,6763,6768,0],[6758,6768,6774,0],[6768,6764,6767,0],[6767,6766,6775,0],[6775,6769,6770,0],[6512,6771,49116,0],[6623,6771,6770,0],[6771,6512,6772,0],[6771,6772,6773,0],[6776,6773,6759,0],[6775,6774,6767,0],[6759,6774,6775,0],[6759,6775,6776,0],[6776,6775,6770,0],[6776,6770,6773,0],[6773,6770,6771,0],[6777,6788,6778,0],[6789,6778,6779,0],[6779,6780,6781,0],[6781,6780,1613,0],[6786,6511,6509,0],[6786,6509,6785,0],[6785,6783,6787,0],[6787,6783,1612,0],[1612,6783,6080,0],[6080,6783,6784,0],[6507,6784,6783,0],[6786,6785,6787,0],[6786,6787,6782,0],[6787,6083,6782,0],[6511,49380,6512,0],[6512,49380,6772,0],[6782,6780,6779,0],[6782,6779,6778,0],[6782,6778,6786,0],[6786,6778,6788,0],[6788,6777,6773,0],[6788,6773,6772,0],[6777,6759,6773,0],[6786,6788,49380,0],[6779,6781,6790,0],[6779,6790,6789,0],[6789,6790,6760,0],[6761,6760,6790,0],[6761,6790,1614,0],[6099,1614,6790,0],[6099,6790,6781,0],[6777,6778,6789,0],[6791,6769,6627,0],[6791,6627,49135,0],[6627,6769,6766,0],[6766,6769,6775,0],[6769,6791,6621,0],[6791,6626,6621,0],[6621,6626,6624,0],[6624,6626,6531,0],[6626,6791,6531,0],[6531,6791,6716,0],[6515,6517,6514,0],[6514,6517,6806,0],[6514,6806,6792,0],[6794,49113,6793,0],[6795,6803,6796,0],[6229,6797,6799,0],[6229,6799,6839,0],[6799,6797,6798,0],[6799,6798,49101,0],[6230,49101,36588,0],[49101,6230,6799,0],[6795,6796,6793,0],[6793,6796,6794,0],[6796,6797,6794,0],[6794,6229,6800,0],[6229,6794,6797,0],[6793,6806,6802,0],[6802,6806,6801,0],[6795,6793,6802,0],[6797,6805,6798,0],[6805,6797,6796,0],[6805,6796,6804,0],[6804,6796,6803,0],[6802,6527,6795,0],[6795,6527,6803,0],[6803,6527,6526,0],[6520,6527,6801,0],[6801,6527,6802,0],[6801,6806,6517,0],[6792,6806,6793,0],[6792,6793,49113,0],[49117,6510,6512,0],[6226,6510,6807,0],[6807,6510,49117,0],[6807,49117,6513,0],[6807,6513,49114,0],[6510,6226,6509,0],[6509,6226,6508,0],[1598,1606,6808,0],[6809,6808,6814,0],[6809,6814,6825,0],[6076,6811,6075,0],[6075,6811,6810,0],[6075,6810,6812,0],[6079,6813,6809,0],[6813,1595,6809,0],[6809,1595,6808,0],[49381,6816,6815,0],[6815,6816,6817,0],[6817,6818,6828,0],[6818,6122,6828,0],[49381,6815,6819,0],[6819,6815,6821,0],[6820,6821,6822,0],[6822,6821,6823,0],[6822,6823,6824,0],[6822,6824,6072,0],[6825,6820,6079,0],[6079,6820,6826,0],[6079,6826,6810,0],[6810,6826,6812,0],[6079,6809,6825,0],[6825,6819,6820,0],[6826,6827,6812,0],[6812,6827,6073,0],[6827,6826,6822,0],[6826,6820,6822,0],[6820,6819,6821,0],[6825,6814,6819,0],[6819,6814,49381,0],[6815,6817,6828,0],[6828,6122,6823,0],[6823,6114,6824,0],[6119,6072,6829,0],[6115,6119,6829,0],[6829,6824,6114,0],[6829,6072,6824,0],[6823,6821,6828,0],[6828,6821,6815,0],[6816,49381,1608,0],[1608,49381,1607,0],[1605,49970,1607,0],[1607,49970,1604,0],[1604,6830,6831,0],[1607,6831,1608,0],[1607,1604,6831,0],[1604,1610,6830,0],[6832,36568,6833,0],[6833,6857,36522,0],[36522,6857,6504,0],[6833,1585,6832,0],[6832,1589,6851,0],[6834,6851,6835,0],[6850,6835,36571,0],[6850,36571,6849,0],[6848,6840,6838,0],[6838,6840,6839,0],[6838,6839,6230,0],[6840,6837,6841,0],[6841,6843,6842,0],[6843,1592,31527,0],[6840,6841,6228,0],[6840,6228,6229,0],[6229,6839,6840,0],[6844,6841,6845,0],[6847,31528,6846,0],[6846,31528,1593,0],[1593,31528,31527,0],[6228,6844,31530,0],[6228,6841,6844,0],[6841,6842,6845,0],[6847,6845,6842,0],[6837,6840,6848,0],[6836,6837,6848,0],[6836,6848,6853,0],[6836,6853,6849,0],[6849,6853,6852,0],[6850,6854,6834,0],[6832,6851,36568,0],[6834,6835,6850,0],[6853,6838,6231,0],[6852,6853,6854,0],[6854,6853,6855,0],[6854,6855,36569,0],[6850,6852,6854,0],[6853,6231,6855,0],[36569,6855,6232,0],[36569,6232,6856,0],[6856,6504,36569,0],[36569,6504,6857,0],[6857,6833,36568,0],[6850,6849,6852,0],[1585,6239,1586,0],[6869,6871,6868,0],[6868,6871,6872,0],[6868,6872,6858,0],[6858,6860,6859,0],[6860,6858,6861,0],[1582,6861,6248,0],[6860,1582,36506,0],[36506,1582,36507,0],[36507,1582,6870,0],[6870,36494,6862,0],[6862,31466,36507,0],[36507,31466,6863,0],[36503,6863,31467,0],[36503,31467,36504,0],[36504,31467,36505,0],[36586,31468,6864,0],[36586,6864,36581,0],[36581,6864,6865,0],[6865,6864,36578,0],[6866,36578,36579,0],[6866,36579,6867,0],[6866,6867,6868,0],[6868,6867,1587,0],[6868,1587,6869,0],[6867,36579,1588,0],[6860,6861,1582,0],[1582,1581,6870,0],[1587,1584,6869,0],[6869,1584,6871,0],[6858,6872,6861,0],[6872,6871,1583,0],[6872,1583,6861,0],[6861,1583,6248,0],[1580,6247,31518,0],[6247,1580,1579,0],[6501,36496,6502,0],[1491,1575,36491,0],[6873,1476,31508,0],[31508,1476,1378,0],[27926,6877,1473,0],[6874,6875,6878,0],[6878,6875,6876,0],[27926,6879,6877,0],[6877,6879,6883,0],[6879,27927,6878,0],[6876,6883,6878,0],[6878,6883,6879,0],[6874,1482,1483,0],[6874,1483,6875,0],[6875,49386,6876,0],[6876,49386,6882,0],[6882,49386,6880,0],[6882,6880,6881,0],[6881,6880,1486,0],[1486,6880,1485,0],[6876,6882,6883,0],[6883,6882,6881,0],[6883,6881,6884,0],[6883,6884,27890,0],[6885,27890,27911,0],[6885,27911,6886,0],[6886,27913,6887,0],[6888,6887,27920,0],[6888,27920,1461,0],[27803,6889,27799,0],[27799,6889,6890,0],[6890,6891,27795,0],[27795,6891,6892,0],[6892,6893,36397,0],[36397,6893,6894,0],[27882,36210,6896,0],[6896,36196,6897,0],[6897,36240,6898,0],[27830,6898,6899,0],[27830,6899,6900,0],[6900,36238,6901,0],[6901,36238,36237,0],[6901,36237,27881,0],[6903,6902,36193,0],[6903,36193,6904,0],[6905,6906,6907,0],[6907,6906,31969,0],[6907,35219,27855,0],[27855,35219,6908,0],[6909,6910,27851,0],[27851,6910,31986,0],[27851,31986,6911,0],[6911,31983,6912,0],[6912,31983,6913,0],[27858,31984,6914,0],[6914,31984,27859,0],[27859,6915,27812,0],[27812,6915,6916,0],[6916,6915,7049,0],[7049,27650,35359,0],[35359,27650,27666,0],[27877,27666,6917,0],[27877,6917,6918,0],[27877,6918,6919,0],[6923,36219,6924,0],[6924,36219,27865,0],[27865,36219,27722,0],[6925,27865,6926,0],[6925,6926,6927,0],[27810,6929,31899,0],[31899,6929,31900,0],[31900,6929,6930,0],[31900,6930,36235,0],[31900,36235,31897,0],[31897,36235,6931,0],[6931,6932,6933,0],[1400,6937,6938,0],[6939,6938,27699,0],[1436,6939,6940,0],[49533,27734,49534,0],[49534,27734,27740,0],[49534,27740,27741,0],[49534,27741,6942,0],[6943,6942,27756,0],[6943,27756,6944,0],[6944,27756,27750,0],[6946,6945,6947,0],[31902,31904,6948,0],[6949,6950,6959,0],[6959,6950,6951,0],[6959,6951,1338,0],[6959,1338,1339,0],[6949,6959,6952,0],[6956,6955,1334,0],[1334,6955,1340,0],[6957,6958,1339,0],[1339,6958,6959,0],[6954,6953,6957,0],[6957,6953,6958,0],[6958,6952,6959,0],[6953,1441,6958,0],[6947,6945,6960,0],[6947,6960,6961,0],[6961,6960,6962,0],[6962,6960,27757,0],[31762,6963,6964,0],[6966,6964,6965,0],[6966,6965,6967,0],[6968,6969,27692,0],[6970,6969,31916,0],[6971,6970,31919,0],[6971,31919,6972,0],[6973,6987,6974,0],[6975,6974,6985,0],[6975,6985,6983,0],[6977,6976,6984,0],[6977,6984,6978,0],[6977,6978,6980,0],[807,743,6979,0],[6979,743,6980,0],[6980,6981,27694,0],[27694,6981,27695,0],[27694,6976,6977,0],[27694,6977,6980,0],[31859,6979,6978,0],[742,6982,6986,0],[6986,6982,6983,0],[6975,6983,6984,0],[6975,6984,27689,0],[27689,6984,6976,0],[6978,6984,742,0],[6982,6984,6983,0],[6974,738,6985,0],[6983,6985,35110,0],[6983,35110,6986,0],[6986,35110,739,0],[738,35110,6985,0],[7012,6974,6987,0],[6988,7023,6989,0],[6992,6991,7002,0],[6994,7002,6993,0],[6993,6991,6990,0],[6994,7018,49546,0],[49546,7018,6995,0],[7020,7021,6996,0],[27623,6998,6997,0],[6994,49546,6999,0],[6999,49546,7000,0],[7000,35325,35147,0],[7000,35147,7001,0],[7002,35133,9034,0],[7002,9034,6992,0],[6992,9034,7003,0],[7003,9034,35131,0],[7004,35106,35105,0],[7004,35105,7006,0],[7006,35105,7005,0],[7006,7005,7017,0],[7006,7017,49548,0],[7004,49548,7007,0],[7004,7007,35109,0],[35109,7007,7008,0],[7008,737,7009,0],[7008,7009,35327,0],[35327,7009,7010,0],[7010,7009,6988,0],[6990,7011,6989,0],[6989,7011,6988,0],[6987,7009,7012,0],[6987,6988,7009,0],[737,7012,7009,0],[7010,6988,7011,0],[737,7008,7007,0],[736,7013,735,0],[735,7017,734,0],[734,7017,7016,0],[734,7016,7014,0],[733,7014,35101,0],[35101,7014,7015,0],[7015,7016,7005,0],[7005,7016,7017,0],[7015,7014,7016,0],[49548,7004,7006,0],[6993,6990,6994,0],[6994,6990,7025,0],[6994,7025,7018,0],[7019,27589,7020,0],[7020,27589,7021,0],[7019,7020,6995,0],[6987,6973,7022,0],[7023,7024,7025,0],[7018,27629,6995,0],[6995,27629,7019,0],[7025,6989,7023,0],[6989,7025,6990,0],[7023,6988,7022,0],[7022,6973,7023,0],[27628,31918,7027,0],[7027,31918,27683,0],[27587,27588,7029,0],[27587,7029,27591,0],[27591,7029,7028,0],[31924,7030,31921,0],[31921,7030,7031,0],[27685,7032,31921,0],[7032,27669,31922,0],[31922,27669,27778,0],[31922,27778,27781,0],[31925,27781,27593,0],[27616,7037,31944,0],[27611,31944,35208,0],[35208,7038,27610,0],[7040,7041,27606,0],[27606,7041,35212,0],[27652,7044,7043,0],[7046,27655,7047,0],[7047,27655,27646,0],[27646,27655,7048,0],[31987,7049,6915,0],[27650,7049,7048,0],[7050,31985,27647,0],[31985,31986,7051,0],[27649,7051,7052,0],[27648,7052,27531,0],[27648,27531,7053,0],[7054,27475,27604,0],[27604,27475,7055,0],[27604,7055,27605,0],[27605,7055,7056,0],[27602,7056,27473,0],[27473,35197,27579,0],[27579,35197,7057,0],[27638,7057,7058,0],[7059,27643,7060,0],[27554,7060,7061,0],[7064,27464,7065,0],[35343,7065,7066,0],[7066,27464,35346,0],[35346,27464,7067,0],[35346,7067,34906,0],[34906,7067,7068,0],[34906,7068,7069,0],[7069,7068,27463,0],[7069,27463,7070,0],[7070,7071,35173,0],[27460,27461,7072,0],[7072,27461,7073,0],[7072,7073,7074,0],[7074,27549,48832,0],[7077,7076,26509,0],[7077,26509,48828,0],[7079,7078,7080,0],[7079,7080,7081,0],[7081,7080,26549,0],[7081,26549,7082,0],[7081,7082,7083,0],[7084,26528,35187,0],[35187,26528,7085,0],[48776,7085,7086,0],[48776,7086,7087,0],[34799,7088,34796,0],[34796,7765,26463,0],[26463,7765,26464,0],[7091,7786,7092,0],[7092,7093,7094,0],[26443,7093,7825,0],[26443,7825,7095,0],[26439,7718,7098,0],[26439,7098,7099,0],[26456,7100,7101,0],[7101,7102,7103,0],[26420,7103,7133,0],[26420,7133,7104,0],[26407,7104,7105,0],[7106,7117,26406,0],[7117,7107,26406,0],[26406,7107,7116,0],[26406,7116,26432,0],[26426,42949,26430,0],[26430,42949,7110,0],[26397,26403,7111,0],[26396,26403,7112,0],[26396,7112,7113,0],[7113,7112,7114,0],[7118,7114,7115,0],[7108,26432,7115,0],[7115,7116,7118,0],[7118,7116,7107,0],[7136,7107,7117,0],[7135,7117,7106,0],[7116,7115,26432,0],[7114,7118,7113,0],[7113,7118,7120,0],[7113,7120,7119,0],[7119,7120,7121,0],[7119,7121,26392,0],[26392,7121,7123,0],[26392,7123,7122,0],[7122,7123,7141,0],[7196,7124,7137,0],[7126,7137,7125,0],[7126,7125,7138,0],[7126,7138,7142,0],[42954,7142,7127,0],[7129,42955,7128,0],[7129,7128,7132,0],[7129,7132,7099,0],[7102,7132,7103,0],[7101,7100,7102,0],[7129,7099,7130,0],[7099,7098,7130,0],[7129,7130,7131,0],[7131,7130,7718,0],[7718,7130,7098,0],[7132,7128,7103,0],[7133,42955,7127,0],[7133,7127,7134,0],[7136,7120,7107,0],[7107,7120,7118,0],[7120,7136,7121,0],[7121,7136,7123,0],[7123,7136,7141,0],[7141,7136,7135,0],[7125,7137,7139,0],[7125,7139,7138,0],[7134,7138,7139,0],[7135,7139,7137,0],[7136,7117,7135,0],[7135,7106,7139,0],[7139,7106,7105,0],[7105,7140,7134,0],[7134,7140,7133,0],[7133,7140,7104,0],[7104,7140,7105,0],[7105,7134,7139,0],[42955,7133,7128,0],[7128,7133,7103,0],[7141,7135,7124,0],[7124,7135,7137,0],[7127,7142,7134,0],[7142,7138,7134,0],[26396,7113,7119,0],[7143,7119,42945,0],[7143,42945,42946,0],[7143,42946,26396,0],[26396,42946,7111,0],[7111,42946,7144,0],[7144,7146,7145,0],[7145,7146,7147,0],[7145,7147,26399,0],[26399,7147,7148,0],[26399,7148,7149,0],[12769,7150,12756,0],[12756,7150,12768,0],[12768,7188,12734,0],[12734,7189,12753,0],[7189,7192,12738,0],[12738,7192,7151,0],[7154,7152,7153,0],[12740,7155,7156,0],[12740,7156,34364,0],[7173,7157,7158,0],[7159,7158,7160,0],[7159,7160,41738,0],[41738,7160,7161,0],[13018,7161,7162,0],[13016,13017,7168,0],[13019,7168,7164,0],[13019,7164,41742,0],[41742,7164,41745,0],[7167,7166,7164,0],[7168,13017,7164,0],[7164,13017,7167,0],[41745,7164,7166,0],[7165,7175,7166,0],[7161,42823,7162,0],[7162,42823,7169,0],[7162,7169,7163,0],[7163,7169,7172,0],[7172,7169,7170,0],[7172,7170,7171,0],[7163,7172,7178,0],[7163,7178,7167,0],[7167,7178,7166,0],[42823,7161,7157,0],[7157,7161,7160,0],[42823,7157,7173,0],[7174,34814,7175,0],[7175,34814,7176,0],[7175,7176,7183,0],[7175,7183,41745,0],[7192,7174,7151,0],[7151,7179,7152,0],[7152,7179,7177,0],[7177,7178,7171,0],[7153,7170,42825,0],[42825,7155,7154,0],[7153,42825,7154,0],[7170,7153,7171,0],[7172,7171,7178,0],[7177,7171,7153,0],[7177,7153,7152,0],[7166,7178,7165,0],[7178,7177,7179,0],[7178,7179,7165,0],[7165,7179,7174,0],[7174,7175,7165,0],[7174,7179,7151,0],[7148,7147,26390,0],[7148,26390,7180,0],[7149,7180,7150,0],[7150,7180,7181,0],[7181,7180,34812,0],[7191,34812,34813,0],[7191,34813,7187,0],[7174,7186,34814,0],[7176,34814,7182,0],[7183,7182,13023,0],[41741,7184,41816,0],[41816,13029,7185,0],[7185,41741,41816,0],[7174,7192,7186,0],[7187,7186,7191,0],[34812,7191,7181,0],[7181,7188,7150,0],[7150,12769,7149,0],[7180,7149,7148,0],[12768,7150,7188,0],[7189,7190,7192,0],[7192,7190,7186,0],[7186,7190,7191,0],[7181,7191,7188,0],[7188,7191,7190,0],[7188,7190,12734,0],[12734,7190,7189,0],[7193,34812,7194,0],[7193,7194,26394,0],[7195,26393,7196,0],[7195,7196,7137,0],[7124,7122,7141,0],[7137,7126,7195,0],[7195,7126,7197,0],[7195,7197,42952,0],[26389,26376,7198,0],[34817,7200,41811,0],[41811,7200,7201,0],[7202,7201,47695,0],[7202,47695,41812,0],[41812,47695,12989,0],[12989,47695,7203,0],[7205,26372,7206,0],[47691,26366,7208,0],[7210,7209,7713,0],[7210,7713,7211,0],[7211,7713,7712,0],[7891,7712,7879,0],[7213,7212,7216,0],[7213,7216,7214,0],[7215,7214,7216,0],[26251,7729,7706,0],[7707,7217,26279,0],[26283,7217,7218,0],[7219,7218,7709,0],[7220,7219,7313,0],[7313,7219,7221,0],[7221,7709,48656,0],[48656,7709,7222,0],[48656,7222,7223,0],[48656,7223,7310,0],[7310,7223,7311,0],[7311,7223,7705,0],[7311,7705,7312,0],[7224,34829,48751,0],[7224,48751,7225,0],[7225,48753,7226,0],[7226,48753,48752,0],[7226,48752,7227,0],[7227,7708,7228,0],[7229,7228,7708,0],[7230,7232,7231,0],[7231,7232,7304,0],[7304,7232,7233,0],[7304,7233,7234,0],[7235,7234,7837,0],[36923,7238,7239,0],[36923,7239,7240,0],[7241,26661,26660,0],[7241,26660,7242,0],[36900,7244,7245,0],[7245,7244,7246,0],[7245,7246,36901,0],[36901,7246,26669,0],[36901,26669,7247,0],[7248,7247,7249,0],[7249,7250,36897,0],[7252,36889,7251,0],[7251,36889,7328,0],[7252,7251,7670,0],[7252,7670,7253,0],[7255,7322,7256,0],[7256,7322,7257,0],[7260,7259,7261,0],[7284,7261,7320,0],[7284,7320,7262,0],[7264,36934,7265,0],[48707,7265,7266,0],[7266,36935,7267,0],[7270,7267,7268,0],[7269,7268,36937,0],[7270,7269,7220,0],[7220,7269,26239,0],[7220,26239,7219,0],[7219,26239,7218,0],[7267,7270,7313,0],[7267,7313,7314,0],[7267,7314,7266,0],[7266,7314,48707,0],[7264,7265,48707,0],[7270,7268,7269,0],[7320,7263,7262,0],[7262,7263,7292,0],[7291,7292,7271,0],[7291,7271,7289,0],[7289,7271,7297,0],[7297,7271,7272,0],[7272,48660,7298,0],[48660,7229,7298,0],[7298,7274,7273,0],[7274,7300,7301,0],[7274,7301,7275,0],[7296,7275,7302,0],[7296,7302,7295,0],[7295,7276,7277,0],[7237,7276,7303,0],[7235,7837,7236,0],[7235,7236,7303,0],[7285,7280,7283,0],[7283,36914,7281,0],[7283,7281,7282,0],[7283,7282,7260,0],[7284,7260,7261,0],[7285,7286,7280,0],[7280,7286,36921,0],[36921,7286,7287,0],[7279,7287,7295,0],[7279,7295,7277,0],[7260,7285,7283,0],[7260,7282,7259,0],[7259,7282,36911,0],[36911,7282,7281,0],[7259,36911,36907,0],[7259,36907,7258,0],[7258,36907,7257,0],[7288,7294,7289,0],[7289,7294,7290,0],[7292,7291,7262,0],[7262,7291,7284,0],[7284,7291,7293,0],[7293,7290,7287,0],[7290,7293,7291,0],[7290,7291,7289,0],[7290,7294,7287,0],[7287,7294,7295,0],[7288,7273,7296,0],[7296,7273,7274,0],[7296,7274,7275,0],[7295,7294,7296,0],[7296,7294,7288,0],[7284,7293,7260,0],[7260,7293,7285,0],[7285,7293,7286,0],[7286,7293,7287,0],[7288,7297,7272,0],[7298,7273,7272,0],[7272,7273,7288,0],[7297,7288,7289,0],[7274,7299,7300,0],[7230,7300,7299,0],[7230,7229,7708,0],[7301,7300,7231,0],[7301,7231,7304,0],[7301,7304,7305,0],[7302,7305,7303,0],[7302,7303,7276,0],[7303,7305,36928,0],[7303,36928,7235,0],[36928,7234,7235,0],[7300,7230,7231,0],[7299,7298,7229,0],[7299,7229,7230,0],[7298,7299,7274,0],[7271,7292,7306,0],[7307,7306,7308,0],[7307,7308,7314,0],[7314,7308,48707,0],[48704,7309,7221,0],[7311,7312,48659,0],[48659,7312,7226,0],[7226,7224,7225,0],[7312,7224,7226,0],[7309,48704,7313,0],[7309,7313,7221,0],[7220,7313,7270,0],[48704,7314,7313,0],[7261,7259,7258,0],[7258,7321,7317,0],[7317,7321,7315,0],[7264,48708,7316,0],[7264,7316,7317,0],[7264,7317,7318,0],[7315,7318,7317,0],[7261,7258,7319,0],[7261,7319,7320,0],[7320,7319,7317,0],[7320,7317,7316,0],[7263,7320,7316,0],[7263,7316,48708,0],[7321,7258,7257,0],[7321,7257,7322,0],[7323,7324,36751,0],[36751,7324,36748,0],[36748,7324,7325,0],[36750,36748,7325,0],[36759,7325,7326,0],[36759,7326,7654,0],[7326,7670,7251,0],[7326,7251,7327,0],[7327,7251,7328,0],[7327,7328,7656,0],[7657,7656,7329,0],[7657,7329,7330,0],[7657,7330,7331,0],[7331,7330,36817,0],[7331,36817,36815,0],[7331,36815,36814,0],[36824,36814,7332,0],[7661,7332,7333,0],[7661,7333,7646,0],[7646,7333,7334,0],[7334,7333,7335,0],[7337,7336,7552,0],[7337,7552,7550,0],[36773,36781,7338,0],[36774,7338,7609,0],[36774,7609,7339,0],[7339,36780,7340,0],[7340,36780,7341,0],[7341,7601,7342,0],[7342,7601,7343,0],[7343,7344,7342,0],[7342,7345,7346,0],[7346,7345,7347,0],[7349,7348,36041,0],[7349,36041,7350,0],[7351,36039,7352,0],[7351,7352,7353,0],[7353,7352,7359,0],[7354,7355,7356,0],[7356,7355,7357,0],[37066,7354,7356,0],[37066,7356,7353,0],[7353,7356,7351,0],[7351,7356,7357,0],[7351,7357,7350,0],[7350,7357,7358,0],[7349,7350,7358,0],[20947,20945,7360,0],[36085,36083,7424,0],[36085,7424,37071,0],[36073,20949,7361,0],[36073,7361,7362,0],[7362,7363,36091,0],[36091,7363,36077,0],[36077,7363,7364,0],[7365,7367,7366,0],[7366,7367,36129,0],[7366,36129,7382,0],[7368,7382,36131,0],[7369,48721,36135,0],[36135,48721,7371,0],[7374,7381,7375,0],[26340,7378,7379,0],[7379,7378,7373,0],[7373,7378,7380,0],[7380,7378,26339,0],[7380,26339,26343,0],[7380,26343,7381,0],[7377,7376,7381,0],[7377,7381,26343,0],[7376,7375,7381,0],[7369,7370,36131,0],[36130,36131,7382,0],[36130,7382,36129,0],[7383,36129,7367,0],[7383,7367,7403,0],[7403,7367,7365,0],[7403,7365,7384,0],[7384,7365,7385,0],[7384,7385,7386,0],[7401,7386,7422,0],[7401,7422,7416,0],[7416,7422,7387,0],[7387,7389,7388,0],[7414,7388,20841,0],[7414,20841,20920,0],[7413,20920,20942,0],[37047,7390,7391,0],[7391,7392,7417,0],[7417,7392,7418,0],[7418,7392,36967,0],[7418,36967,7394,0],[7418,7394,7393,0],[7420,7394,7404,0],[7420,7404,7421,0],[7421,7404,7395,0],[37043,7396,7410,0],[7410,7397,7398,0],[7398,7397,36981,0],[7398,36981,36998,0],[7398,36998,37001,0],[7398,37001,36987,0],[37041,36987,7399,0],[37042,7399,7421,0],[7421,7399,36991,0],[7421,36991,7420,0],[7420,36991,7419,0],[7400,36092,37072,0],[37072,36092,36094,0],[7386,7401,7402,0],[7386,7402,7403,0],[7403,7384,7386,0],[7404,7394,7405,0],[7404,7405,7406,0],[7406,20936,20935,0],[7407,20935,7411,0],[7408,7409,7410,0],[7410,7409,20933,0],[7410,20933,36982,0],[7410,36982,7397,0],[7408,7410,7396,0],[7408,7396,7411,0],[7411,7396,7407,0],[7407,7396,7412,0],[7412,7396,7395,0],[7412,7395,7404,0],[7407,7412,20935,0],[20935,7412,7406,0],[7412,7404,7406,0],[7413,37048,7414,0],[7414,7415,7388,0],[7388,7415,7387,0],[7387,7415,7416,0],[7390,7413,20942,0],[20920,7413,7414,0],[7415,7414,36955,0],[36955,37048,37045,0],[37045,37048,37046,0],[7417,7418,37044,0],[37044,7418,7393,0],[37044,7393,7419,0],[37044,7419,37073,0],[7400,37073,7419,0],[7394,7420,7419,0],[7394,7419,7393,0],[7391,7417,37047,0],[7422,7386,7385,0],[7422,7385,7423,0],[7423,7385,7362,0],[7362,7385,7363,0],[7363,7365,7364,0],[7365,7363,7385,0],[7387,7422,7423,0],[7362,7361,7423,0],[7387,7423,7389,0],[7389,7423,7361,0],[36083,7360,7424,0],[7342,7344,7345,0],[36640,7345,7604,0],[36640,7604,36638,0],[36638,7604,36064,0],[36064,7511,7425,0],[36772,7425,7426,0],[7427,7428,36060,0],[36060,7428,7429,0],[36060,7429,36059,0],[7432,7430,7431,0],[7432,7431,20982,0],[20983,20982,7433,0],[20983,7433,36008,0],[36008,7433,7434,0],[36008,7434,37075,0],[37075,7434,7640,0],[37075,7640,7435,0],[7436,37076,7435,0],[7437,7436,7438,0],[20798,7439,7638,0],[7638,7639,7440,0],[7441,35986,7442,0],[7442,7617,20788,0],[20788,7617,20787,0],[20787,7617,7443,0],[7445,7443,7444,0],[7445,7444,7446,0],[7445,7446,7448,0],[7448,7446,7447,0],[7448,7447,20714,0],[20714,7447,7449,0],[7449,7447,7450,0],[7451,7457,20765,0],[20764,7452,20763,0],[20763,7455,20768,0],[7453,7454,20769,0],[20769,7454,20753,0],[20753,36422,35975,0],[35975,36422,35976,0],[7456,35976,7455,0],[7456,7455,7452,0],[7458,7452,7457,0],[7458,7457,7451,0],[7458,7451,7450,0],[20765,7457,7452,0],[20765,7452,20764,0],[7452,7459,7456,0],[7456,7459,7465,0],[7461,7444,7462,0],[7462,7444,7619,0],[7619,7443,7617,0],[7619,7444,7443,0],[7446,7444,7461,0],[7446,7461,7463,0],[7463,7461,7464,0],[7464,7461,7460,0],[7450,7464,7458,0],[7464,7450,7463,0],[7450,7447,7463,0],[7463,7447,7446,0],[7464,7460,7458,0],[7458,7460,7459,0],[7456,7465,35976,0],[7467,7620,27353,0],[27353,7620,7623,0],[27351,7623,7468,0],[27351,7468,27357,0],[27357,7468,7469,0],[7470,7469,36600,0],[7471,7470,7472,0],[7472,7470,7501,0],[7472,7501,7473,0],[7474,36604,7475,0],[35962,7475,7476,0],[7476,7475,7477,0],[7476,7477,7478,0],[7479,7480,36873,0],[35959,7483,36180,0],[35957,36160,7484,0],[7486,7485,7497,0],[7486,7497,7488,0],[7486,7488,7487,0],[7488,7496,27370,0],[27370,7496,27285,0],[27332,7496,7489,0],[26969,7493,7490,0],[7490,7493,7491,0],[7491,7493,7492,0],[7484,7492,7494,0],[7484,7494,7485,0],[7493,7495,7494,0],[7494,7495,7497,0],[7492,7493,7494,0],[7497,7485,7494,0],[7500,7477,36603,0],[36607,36609,36635,0],[36635,36609,7498,0],[36873,27392,7481,0],[7478,7477,7479,0],[7479,7477,7500,0],[7479,7500,7480,0],[36607,7480,7500,0],[36873,7480,36635,0],[36635,7498,7499,0],[7502,7501,7503,0],[7505,7504,7506,0],[7505,7506,7507,0],[7507,7508,7509,0],[7509,7508,7612,0],[7613,7510,7606,0],[7510,7512,7605,0],[7605,7512,7511,0],[7511,36064,7604,0],[7425,7511,7426,0],[7426,7511,7512,0],[7537,7524,7513,0],[7513,7524,7525,0],[7515,7513,7514,0],[7517,7516,7518,0],[7633,7518,7519,0],[7633,7519,7630,0],[7630,7519,7520,0],[7520,7519,7521,0],[7520,7521,7522,0],[7626,7469,7523,0],[7510,7613,7524,0],[7524,7613,7525,0],[7513,36642,7527,0],[36642,7508,7526,0],[7526,7508,7507,0],[7525,36642,7513,0],[7513,7527,7514,0],[7514,7527,7528,0],[7528,7526,7529,0],[7530,7531,7532,0],[7532,7533,7534,0],[7534,7519,7518,0],[7514,7536,7515,0],[7515,7536,7516,0],[7516,7536,7518,0],[7535,7536,7529,0],[7528,7529,7536,0],[7529,7530,7532,0],[7535,7532,7534,0],[7532,7535,7529,0],[7534,7518,7536,0],[7534,7536,7535,0],[7613,7612,7525,0],[7426,7512,7427,0],[7427,7512,7537,0],[7428,7537,7513,0],[7537,7512,7524,0],[7524,7512,7510,0],[7427,7537,7428,0],[7507,7610,7505,0],[7505,7610,7538,0],[7539,7538,7540,0],[7542,7540,7541,0],[7541,36651,7542,0],[7542,36651,36650,0],[7542,36650,7543,0],[7545,7544,7569,0],[7569,7544,7570,0],[7570,36650,7546,0],[7546,36650,36649,0],[7564,7546,36648,0],[36648,7547,7561,0],[7561,7547,7562,0],[7562,7547,7573,0],[7573,7547,7548,0],[7573,7548,7549,0],[7549,7548,36782,0],[7549,36782,7551,0],[7551,36782,7550,0],[7551,7550,7552,0],[7551,7552,36832,0],[7551,36832,36833,0],[7553,36829,7555,0],[7555,36829,36827,0],[36827,7554,7555,0],[7555,7554,7556,0],[7556,7554,7557,0],[7557,26620,7567,0],[7557,7567,7558,0],[7556,7558,7559,0],[7573,7560,7561,0],[7573,7561,7562,0],[7561,7558,7563,0],[7564,7565,7587,0],[7587,7565,36629,0],[36629,7565,36624,0],[36624,7568,36665,0],[36653,36665,7566,0],[36825,7566,7567,0],[7559,7558,7560,0],[36665,7568,7571,0],[7566,36665,7571,0],[7568,36624,7565,0],[7565,7563,7568,0],[7568,7563,7571,0],[36648,7561,7564,0],[7564,7569,7546,0],[7546,7569,7570,0],[7561,7563,7565,0],[7561,7565,7564,0],[7561,7560,7558,0],[7563,7558,7567,0],[7563,7567,7571,0],[7571,7567,7566,0],[7557,7558,7556,0],[7555,7556,7559,0],[7555,7559,7553,0],[7553,7572,36833,0],[7573,7549,7572,0],[7560,7573,7572,0],[7560,7572,7553,0],[7560,7553,7559,0],[36833,7572,7551,0],[7539,7593,7596,0],[7596,7593,7574,0],[7596,7574,36633,0],[36633,7574,7575,0],[36633,7575,36601,0],[36601,7575,36602,0],[36602,7575,7576,0],[36603,36652,7589,0],[36603,7589,36606,0],[36606,7589,7590,0],[36608,7590,7577,0],[7578,36608,7579,0],[7579,7580,36617,0],[36617,7580,7581,0],[7581,7580,7588,0],[7581,7588,7582,0],[7585,7582,7583,0],[7583,7582,7584,0],[36652,36603,7575,0],[7575,36603,7576,0],[7589,36652,7584,0],[7584,36652,7583,0],[7583,7591,7585,0],[7585,7591,7545,0],[7585,7545,7586,0],[36670,7586,7587,0],[7587,7586,7569,0],[7587,7569,7564,0],[7569,7586,7545,0],[7582,7588,7584,0],[7584,7588,7589,0],[7590,7589,7577,0],[36608,7577,7579,0],[7579,7577,7588,0],[7579,7588,7580,0],[7589,7588,7577,0],[36652,7592,7591,0],[7545,7591,7544,0],[7544,7591,7543,0],[7575,7574,7592,0],[7592,7543,7591,0],[7592,36652,7575,0],[7592,7574,7593,0],[7539,7542,7593,0],[7542,7543,7593,0],[7593,7543,7592,0],[7538,7539,7594,0],[36633,7595,7503,0],[7503,7595,36605,0],[7503,7616,7504,0],[36633,7503,7594,0],[7594,7503,7504,0],[7594,7504,7505,0],[7594,7539,7596,0],[7594,7596,36633,0],[7540,7538,7607,0],[7540,7607,7597,0],[36643,7597,7598,0],[7598,7597,7600,0],[7598,7600,7599,0],[7599,7600,7601,0],[7601,7600,36755,0],[36755,7607,36756,0],[36756,7607,7611,0],[7611,7602,7344,0],[7511,7604,7605,0],[7606,7605,7603,0],[7603,7602,7606,0],[7606,7510,7605,0],[7603,7605,7604,0],[36755,7600,7607,0],[7607,7600,7597,0],[7540,7597,7541,0],[7541,7597,36643,0],[7541,36643,36651,0],[36651,36643,7608,0],[7608,7598,7609,0],[7543,36650,7544,0],[7538,7610,7607,0],[7607,7610,7509,0],[7607,7509,7611,0],[7612,7611,7509,0],[7606,7602,7613,0],[7613,7602,7612,0],[7501,36600,7614,0],[7614,36600,7615,0],[7521,36599,7522,0],[7501,7614,7503,0],[7503,7614,7616,0],[7616,7614,7531,0],[7531,7614,7615,0],[7615,36599,7533,0],[7533,36599,7521,0],[7533,7521,7534,0],[7533,7532,7531,0],[7531,7615,7533,0],[7531,7530,7616,0],[7521,7519,7534,0],[7465,7459,7466,0],[7460,7466,7459,0],[35976,36422,7455,0],[35986,7440,7442,0],[7442,7440,7628,0],[7619,7617,7618,0],[7619,7618,7621,0],[7620,7467,7462,0],[7462,7467,7460,0],[7466,7460,7467,0],[7460,7461,7462,0],[7621,7618,7624,0],[7621,7624,7622,0],[7469,7468,7523,0],[7622,7468,7623,0],[7622,7623,7621,0],[7621,7623,7620,0],[7462,7619,7620,0],[7620,7619,7621,0],[7618,7617,7624,0],[7625,7627,7626,0],[7626,7627,7522,0],[7626,7523,7625,0],[7625,7523,7622,0],[7622,7523,7468,0],[7625,7622,7624,0],[7617,7442,7624,0],[7628,36634,7625,0],[7625,7624,7628,0],[7628,7624,7442,0],[7625,36634,7627,0],[7438,7436,7435,0],[36598,7435,7629,0],[7631,7630,7522,0],[7631,7522,7632,0],[7632,7522,7627,0],[7517,7633,7634,0],[7517,7634,7635,0],[7635,7637,7636,0],[7636,7637,7430,0],[7636,7430,36059,0],[7636,36059,7429,0],[7429,7428,7515,0],[7515,7516,7429,0],[7515,7428,7513,0],[7636,7429,7516,0],[7636,7516,7635,0],[7517,7518,7633,0],[7517,7635,7516,0],[7430,7637,7431,0],[7431,7637,7635,0],[7630,7520,7522,0],[7435,36598,7438,0],[7438,36598,36002,0],[36002,36598,7439,0],[7439,36598,7638,0],[7630,7631,7639,0],[7630,7639,7629,0],[7629,7639,7638,0],[7629,7638,36598,0],[7435,7640,7629,0],[7629,7640,7641,0],[7641,7633,7630,0],[7641,7630,7629,0],[7633,7641,7634,0],[7634,7641,7434,0],[7634,7434,7642,0],[7434,7433,7642,0],[7642,7433,7431,0],[7634,7642,7635,0],[7635,7642,7431,0],[7434,7641,7640,0],[7643,36714,7644,0],[36777,7644,36710,0],[36777,36710,7645,0],[7334,7645,7646,0],[7661,7646,7647,0],[7647,7648,7649,0],[7657,7651,7652,0],[7652,7651,7653,0],[7652,7653,36705,0],[7327,7654,7326,0],[7654,7327,7656,0],[7654,7656,7655,0],[7655,7656,7652,0],[7651,7657,7331,0],[7650,7658,7659,0],[7659,7647,7649,0],[7659,7649,7650,0],[7658,7650,7660,0],[7658,7660,7651,0],[7658,7651,7331,0],[7647,7659,7661,0],[7657,7652,7656,0],[7651,7660,7653,0],[7643,7342,7662,0],[7643,7662,36714,0],[7662,7346,7663,0],[36711,7663,36713,0],[36713,7663,36690,0],[36690,7663,7664,0],[7664,7358,7357,0],[7358,7665,7666,0],[7666,7348,7358,0],[7665,7358,7664,0],[7349,7358,7348,0],[7348,7666,36639,0],[36639,7666,36640,0],[7666,7665,36640,0],[7662,7342,7346,0],[7663,7346,7347,0],[7663,7347,7665,0],[7665,7347,36640,0],[7342,7643,7341,0],[7336,7337,36779,0],[36779,7337,7667,0],[7667,36781,7668,0],[7668,36781,36773,0],[36781,7667,7550,0],[7550,7667,7337,0],[7658,7331,36814,0],[7253,7670,7669,0],[7253,7669,7254,0],[7324,7669,7325,0],[7325,7669,7670,0],[7670,7326,7325,0],[7669,7324,7671,0],[7323,7671,7324,0],[7669,7671,7254,0],[7254,7671,7255,0],[7255,7671,7322,0],[7315,7671,7672,0],[7315,7672,7318,0],[7318,7672,7673,0],[7674,7675,7676,0],[7675,7690,7677,0],[7678,7683,7684,0],[7679,7375,7376,0],[7318,7673,7264,0],[7264,7673,36934,0],[7671,7323,7672,0],[7672,7323,7680,0],[7691,7682,7686,0],[7686,7682,36747,0],[7686,36747,7685,0],[7685,36747,36743,0],[7684,36134,7679,0],[7679,36134,7375,0],[7683,7678,36743,0],[7677,7690,7687,0],[7690,7686,7687,0],[7686,7685,7687,0],[7688,7687,7685,0],[7688,7685,7678,0],[7678,7685,36743,0],[7672,7680,7673,0],[7673,7680,7689,0],[7674,7689,7675,0],[7675,7689,7681,0],[7690,7681,7691,0],[7686,7690,7691,0],[7681,7690,7675,0],[7681,7689,7680,0],[7674,7673,7689,0],[7671,7315,7322,0],[7321,7322,7315,0],[7254,7255,36910,0],[7252,7253,36896,0],[36896,7253,36910,0],[36910,7253,7254,0],[7230,7708,7232,0],[7692,7693,7233,0],[7695,7694,7696,0],[7698,7697,7700,0],[7698,7700,7699,0],[7699,7700,7731,0],[7731,7700,7701,0],[7731,7701,7702,0],[7701,34829,7728,0],[7728,34829,7703,0],[7704,7705,7706,0],[7706,7705,7223,0],[7222,7709,7707,0],[7707,7709,7217,0],[7222,7707,7223,0],[7232,7708,7692,0],[7692,7708,7227,0],[7219,7709,7221,0],[7707,7706,7223,0],[7710,7724,7878,0],[7710,7878,7876,0],[7876,7878,7711,0],[7711,7712,7713,0],[7874,7873,34828,0],[34828,7715,7714,0],[7714,7715,7716,0],[7716,42956,7827,0],[7827,42956,7717,0],[7717,42954,7131,0],[47701,7720,7871,0],[7871,7720,7721,0],[7808,7807,7726,0],[7726,7807,7725,0],[7725,7807,7710,0],[7710,7807,7806,0],[7710,7806,7722,0],[7724,7723,7212,0],[7724,7710,7722,0],[7722,7723,7724,0],[7808,7726,7721,0],[7723,7730,7727,0],[7728,7729,7216,0],[7727,7730,7728,0],[7729,7728,7703,0],[7729,7703,7704,0],[7729,7704,7706,0],[7728,7730,7701,0],[7701,7730,7702,0],[7702,7730,7723,0],[7723,7727,7212,0],[7727,7728,7216,0],[7702,7722,7731,0],[7731,7722,7815,0],[7731,7815,7732,0],[7732,7804,7733,0],[7698,7733,7830,0],[7830,7734,7735,0],[7735,7816,7859,0],[7859,7816,7736,0],[7859,7736,7861,0],[7861,7736,7863,0],[7736,7818,7737,0],[7737,7818,7797,0],[7737,7797,7738,0],[7738,7739,26733,0],[7740,7739,26734,0],[26734,7779,26736,0],[26736,7779,7741,0],[26736,7741,7742,0],[26735,7754,7743,0],[7743,7754,7744,0],[7743,7744,26716,0],[7755,7746,26531,0],[26531,7746,7745,0],[7745,7746,7747,0],[7748,48760,7753,0],[7753,48760,7749,0],[7750,26469,7751,0],[7753,26541,7748,0],[7748,26541,7745,0],[7748,7745,7752,0],[7752,7745,7747,0],[7749,7829,7750,0],[7749,7750,7751,0],[7751,7753,7749,0],[48798,7752,7747,0],[48798,7747,7757,0],[7744,7754,7755,0],[7755,7754,7756,0],[7746,7756,7747,0],[7747,7756,7757,0],[48797,26735,7742,0],[48797,7742,7773,0],[48797,7773,7772,0],[7828,7760,7762,0],[7828,7762,7088,0],[34796,7088,7762,0],[34796,7762,7761,0],[7761,7762,7766,0],[7761,7766,7090,0],[7090,7766,7763,0],[7090,7763,7764,0],[7090,7764,7091,0],[34796,7761,7765,0],[7762,7760,7766,0],[7766,7768,7763,0],[7760,7759,7767,0],[7768,7769,7763,0],[7768,7766,7767,0],[7767,7766,7760,0],[7767,7759,7758,0],[7774,7758,7771,0],[7774,7771,7770,0],[7770,7771,7772,0],[7770,7772,7773,0],[7767,7758,7774,0],[7767,7774,7775,0],[7785,48799,7776,0],[7785,7776,7793,0],[7793,7776,7782,0],[7782,7781,7780,0],[7795,7780,7777,0],[7795,7777,7797,0],[7797,7777,7738,0],[7773,48799,7770,0],[7741,7773,7742,0],[7773,7741,7776,0],[7776,7741,7779,0],[7778,7779,26734,0],[7778,26734,7739,0],[7739,7738,7777,0],[7739,7780,7781,0],[7780,7739,7777,0],[7739,7781,7778,0],[7778,7781,7779,0],[7779,7781,7776,0],[7776,7781,7782,0],[7767,7775,7768,0],[7768,7775,7769,0],[7789,7764,7763,0],[7789,7763,7769,0],[7784,7775,7783,0],[7784,7783,48799,0],[7784,48799,7785,0],[7785,7793,7792,0],[7785,7792,7784,0],[7775,7784,7789,0],[7775,7789,7769,0],[7091,7764,7788,0],[7091,7788,7786,0],[7788,47704,7786,0],[7788,7789,7790,0],[7790,7789,7791,0],[7791,7789,7784,0],[7793,7782,7817,0],[7817,7782,7780,0],[7817,7780,7794,0],[7794,7795,7801,0],[7801,7795,7802,0],[7802,7795,7796,0],[7795,7794,7780,0],[7795,7797,7796,0],[7796,7797,7818,0],[7764,7789,7788,0],[7787,7790,7798,0],[7798,48755,7819,0],[47707,7800,7817,0],[47707,7817,7801,0],[7803,7801,7802,0],[7804,7803,7734,0],[7804,7734,7733,0],[7733,7734,7830,0],[7804,7732,7805,0],[7814,7805,7806,0],[7806,7807,7809,0],[7806,7809,7814,0],[7814,7809,7811,0],[7811,7809,7810,0],[7812,7820,7799,0],[7812,7799,7813,0],[7812,7813,7811,0],[7811,7813,7814,0],[7799,7800,7813,0],[7805,7732,7815,0],[7806,7815,7722,0],[7815,7806,7805,0],[7734,7803,7816,0],[7734,7816,7735,0],[7817,7794,7801,0],[7817,7800,7799,0],[7802,7796,7818,0],[7802,7818,7816,0],[7816,7818,7736,0],[7799,7819,7817,0],[7787,7798,7820,0],[7820,7798,7819,0],[7820,7819,7799,0],[7092,7786,7093,0],[7093,7786,7821,0],[7821,7786,7822,0],[7812,7823,7820,0],[47704,7823,7822,0],[47696,7822,7823,0],[7820,7823,7787,0],[7787,7823,47704,0],[47704,7822,7786,0],[7812,7811,7823,0],[7823,7811,47702,0],[7823,47702,47696,0],[7825,47700,47705,0],[7097,7827,7718,0],[7718,7827,7131,0],[7828,7088,7087,0],[7828,7087,48761,0],[48761,7087,7086,0],[7760,7828,7759,0],[7828,7829,7759,0],[7759,7829,7749,0],[26735,7757,7754,0],[7754,7757,7756,0],[7756,7746,7755,0],[7870,7830,7831,0],[7870,7831,7832,0],[7870,7832,7833,0],[7833,7832,7841,0],[7841,7846,7840,0],[7840,7846,7834,0],[7834,7857,7843,0],[7836,7236,7844,0],[7844,7236,7837,0],[7844,7837,7838,0],[7845,7839,35729,0],[7845,35729,7840,0],[7833,7841,7842,0],[7842,35730,7693,0],[7693,35730,7233,0],[7692,7233,7232,0],[7693,7694,7842,0],[7845,7840,7834,0],[7845,7834,7843,0],[7845,7835,7838,0],[7838,7835,7844,0],[7836,7844,7855,0],[7844,7835,7854,0],[7844,7854,7855,0],[7839,7845,7838,0],[7830,7735,7831,0],[7735,7859,7831,0],[7831,7859,7832,0],[7832,7859,7858,0],[7846,7858,35723,0],[7848,7847,7849,0],[7857,7850,35716,0],[7851,35716,26629,0],[7855,26665,26666,0],[7855,26666,7836,0],[7851,7852,7856,0],[7851,7856,7857,0],[7857,35716,7851,0],[7849,7850,7848,0],[7848,7850,7857,0],[7848,7857,7834,0],[7832,7858,7841,0],[7860,7859,7861,0],[7862,7861,7868,0],[7862,7868,26725,0],[26742,7864,7865,0],[26733,7739,7740,0],[7865,7864,7866,0],[7865,7866,26733,0],[26733,7866,7738,0],[7738,7866,7737,0],[7866,7864,7867,0],[7866,7867,7737,0],[7737,7867,7863,0],[7863,7868,7861,0],[7863,7736,7737,0],[7859,7860,7858,0],[7860,7861,35723,0],[35723,7858,7860,0],[7699,7731,7732,0],[7699,7732,7733,0],[7699,7733,7698,0],[7697,7698,7869,0],[7870,7869,7830,0],[7869,7698,7830,0],[7697,7869,7696,0],[7696,7869,7695,0],[7694,7695,7842,0],[7842,7695,7833,0],[7833,7695,7870,0],[7721,7726,7871,0],[47701,7872,7874,0],[7874,7872,7873,0],[47701,7871,7872,0],[7872,7871,7875,0],[7875,7876,7711,0],[7725,7876,7875,0],[7876,7725,7710,0],[7725,7875,7726,0],[7875,7711,7877,0],[7875,7877,7872,0],[7872,7877,7873,0],[7873,7877,7713,0],[7713,7877,7711,0],[7713,7209,7873,0],[7712,7711,7879,0],[7879,7711,7878,0],[7879,7878,7724,0],[7879,7724,7212,0],[7212,7213,7890,0],[7212,7890,7879,0],[34825,7898,7880,0],[13803,7881,7882,0],[13803,7882,7883,0],[19723,7899,40439,0],[40439,7899,7884,0],[7884,47712,7885,0],[7886,26364,7887,0],[7889,7891,7879,0],[7889,7879,7890,0],[7890,7213,7214,0],[7712,7891,7892,0],[47712,7884,7899,0],[47712,7894,7885,0],[7885,7894,26364,0],[7885,26364,7886,0],[7712,7892,7211,0],[7211,7893,7895,0],[7896,7895,47712,0],[7896,47712,7899,0],[7883,7882,7898,0],[7880,7898,7881,0],[7883,7897,7896,0],[7210,7897,7898,0],[7210,7898,7209,0],[7896,7897,7895,0],[7895,7897,7210,0],[7895,7210,7211,0],[7898,7897,7883,0],[7898,7882,7881,0],[7883,7896,19723,0],[19723,7896,7899,0],[7211,7892,7893,0],[7891,7889,7892,0],[7889,26249,26358,0],[26358,26249,26357,0],[26362,26357,7900,0],[26362,7900,7901,0],[7907,7902,7912,0],[7912,7902,7913,0],[7912,7903,26352,0],[7911,26352,7904,0],[7904,26352,26350,0],[7904,26350,19786,0],[19786,7905,7910,0],[7910,7905,7909,0],[7909,7905,19785,0],[7909,19785,7908,0],[19779,19781,7906,0],[7906,19781,26359,0],[7910,7904,19786,0],[7911,7904,7910,0],[7911,7910,7907,0],[7907,7909,7906,0],[7906,7909,7908,0],[7906,7908,19779,0],[7910,7909,7907,0],[7907,7906,26359,0],[7913,7903,7912,0],[7912,7911,7907,0],[7912,26352,7911,0],[7913,7902,26277,0],[7903,7913,26218,0],[7903,26218,7914,0],[26346,7914,7915,0],[26346,7915,7916,0],[7917,7915,7918,0],[7918,7919,7920,0],[26215,7920,7921,0],[26214,7921,26203,0],[26214,26203,39959,0],[39959,26203,47720,0],[20019,7922,47719,0],[7924,47718,7936,0],[7936,47718,7937,0],[7937,26213,7938,0],[7938,26213,7925,0],[7938,7925,7926,0],[7948,7926,26226,0],[7948,26226,7927,0],[7927,26226,7929,0],[7927,7929,7928,0],[7931,7930,26344,0],[7931,26344,26313,0],[7931,26313,26314,0],[7931,26314,7932,0],[7932,26314,26198,0],[7941,7933,7940,0],[7940,7933,7949,0],[7942,20071,20030,0],[7935,7924,7936,0],[7938,7936,7937,0],[20030,7935,7942,0],[7942,7934,20071,0],[7939,20030,7954,0],[7939,7954,7923,0],[20030,7939,7935,0],[7935,7939,7924,0],[7934,7942,7940,0],[7940,7942,7945,0],[7940,7945,7941,0],[7945,7944,7943,0],[7943,7944,7927,0],[7941,7945,26198,0],[7941,26198,7933,0],[26198,7946,7932,0],[26198,7945,7946,0],[7946,7945,7943,0],[7943,7927,7928,0],[7947,7936,7938,0],[7936,7947,7935,0],[7935,7947,7942,0],[7942,7947,7945,0],[7945,7947,7944,0],[7944,7947,7948,0],[7938,7926,7948,0],[7938,7948,7947,0],[7944,7948,7927,0],[7934,7940,7949,0],[7934,7949,7950,0],[7934,7950,26063,0],[7951,26063,26061,0],[7951,26061,20069,0],[7952,39731,20072,0],[20072,39731,7953,0],[20072,7953,7954,0],[47719,7954,39730,0],[47719,39730,20001,0],[20001,39728,20053,0],[20053,7955,20052,0],[20052,7955,20046,0],[20046,7955,39727,0],[20046,39727,40025,0],[40025,39727,39921,0],[40025,39921,20045,0],[20045,39921,39918,0],[40023,7956,37470,0],[40023,37470,7957,0],[7959,39990,7960,0],[7959,7960,19982,0],[19982,19997,39992,0],[48742,19976,7963,0],[7964,7963,19978,0],[7964,19978,19932,0],[19932,7967,7965,0],[7965,7967,7966,0],[7966,7967,20000,0],[7969,7968,19969,0],[7969,19969,19965,0],[7969,19965,40119,0],[40119,19965,40116,0],[40116,19965,40037,0],[40037,7970,7971,0],[40115,40031,7972,0],[7972,40031,40036,0],[7972,40036,7973,0],[40041,7973,8043,0],[40041,8043,8044,0],[40100,8044,7974,0],[7974,8044,40099,0],[7974,40099,7975,0],[7975,40099,40097,0],[7975,40097,7976,0],[7976,40097,7977,0],[7976,7977,19964,0],[19964,7977,7978,0],[7979,8032,7980,0],[7979,7980,8060,0],[8059,7980,8031,0],[8054,8031,7981,0],[7981,7982,40003,0],[7985,40028,19973,0],[7985,19973,19972,0],[48744,8018,7987,0],[8006,8005,48738,0],[8005,7988,7989,0],[7989,7990,7991,0],[7991,7990,7992,0],[7994,8028,8021,0],[7994,8021,8053,0],[39749,8178,7996,0],[7996,8024,7997,0],[7997,8024,8027,0],[40042,7997,7998,0],[7998,8027,7999,0],[7998,7999,39987,0],[39987,7999,8000,0],[8000,39997,19992,0],[19992,39997,8001,0],[19992,8001,8002,0],[8002,8001,8016,0],[8012,8019,8003,0],[8004,8003,8005,0],[8005,8003,7988,0],[8005,8006,8004,0],[8007,8004,8008,0],[8007,8008,8009,0],[8009,8017,19979,0],[8009,19979,19980,0],[8009,19980,8010,0],[8007,8010,8011,0],[8007,8011,8012,0],[8012,8011,8013,0],[8016,8014,8002,0],[8013,8014,8016,0],[8015,8011,7960,0],[7960,8011,8010,0],[8009,8010,8007,0],[8007,8003,8004,0],[8007,8012,8003,0],[8012,8013,8019,0],[8019,8013,8016,0],[8009,8008,8017,0],[8018,8017,8008,0],[8018,8008,8006,0],[8018,8006,7987,0],[8004,8006,8008,0],[7994,40001,8028,0],[7990,7989,39993,0],[39993,7989,8019,0],[8003,8019,7988,0],[7988,8019,7989,0],[7990,39993,7992,0],[7992,39993,8020,0],[8028,8020,39995,0],[8028,39995,8021,0],[8021,39995,8026,0],[8021,8026,8022,0],[8021,8022,8023,0],[7995,8023,8177,0],[8177,8023,8178,0],[8023,8022,8024,0],[8024,7996,8178,0],[8024,8178,8023,0],[8025,8024,8022,0],[8025,8022,8026,0],[8024,8025,8027,0],[7995,8053,8023,0],[8023,8053,8021,0],[40001,7993,7992,0],[7992,8020,40001,0],[40001,8020,8028,0],[19972,7986,7985,0],[7985,7986,8029,0],[8030,40003,7982,0],[8046,8031,8036,0],[8036,8031,8032,0],[7980,8032,8031,0],[8031,8046,7981,0],[8046,7982,7981,0],[8033,40124,8034,0],[8034,8037,8033,0],[8033,8037,8035,0],[8033,8035,8036,0],[8036,8035,8037,0],[8036,8037,8046,0],[8046,8037,8038,0],[8038,8037,8039,0],[8038,8039,7984,0],[7984,8039,8040,0],[8040,40121,8045,0],[8045,40121,40033,0],[8043,7973,40122,0],[40122,40035,8042,0],[8042,40035,8041,0],[8033,8036,8032,0],[8046,48745,7982,0],[7982,48745,7983,0],[7983,48745,7984,0],[7984,48745,8038,0],[8054,7981,8047,0],[8054,8047,8048,0],[8057,8048,8049,0],[8050,40014,8185,0],[8051,40012,40013,0],[8051,40013,8052,0],[8052,8053,7995,0],[8031,8054,8059,0],[7980,8059,8056,0],[7980,8056,8060,0],[8060,8056,8055,0],[8049,8055,8057,0],[8057,8055,8056,0],[8058,8057,8059,0],[8048,8058,8054,0],[8048,8057,8058,0],[8059,8054,8058,0],[8056,8059,8057,0],[8061,19964,7978,0],[7978,7979,8061,0],[8061,7979,8060,0],[8061,8060,8210,0],[8061,8210,8062,0],[8062,8063,40095,0],[8068,8067,8069,0],[8069,8067,40101,0],[7974,8071,40100,0],[40100,8071,19957,0],[40100,19957,19958,0],[40100,19958,19947,0],[8072,19959,40040,0],[40040,19959,8073,0],[40039,40038,8074,0],[8074,19961,8075,0],[8075,19961,8076,0],[8077,8078,8079,0],[19859,8078,8080,0],[8080,8081,19943,0],[8082,19943,8083,0],[8082,8083,10435,0],[10435,8083,8282,0],[10435,8282,10436,0],[8084,10436,8085,0],[8087,8086,8088,0],[8087,8088,8089,0],[45482,8092,8093,0],[10376,8093,8094,0],[8094,8095,8294,0],[8096,8318,8097,0],[8097,8318,8098,0],[8097,8098,10377,0],[10377,8098,8315,0],[10377,8315,8099,0],[10410,8099,8100,0],[10410,8100,8101,0],[8101,8100,8102,0],[8102,8314,8103,0],[8103,8105,8104,0],[8104,8105,10363,0],[10363,8105,8106,0],[8106,8105,8312,0],[8106,8312,8107,0],[8108,8107,8297,0],[8108,8299,8109,0],[8109,8299,10362,0],[10362,8299,10367,0],[8116,8118,8110,0],[10405,8111,8112,0],[8112,8119,8113,0],[8113,8119,45539,0],[8247,45539,8119,0],[8247,8119,8246,0],[8115,8114,8117,0],[8115,8117,8300,0],[8117,8116,10367,0],[8118,8114,8111,0],[8111,8114,8112,0],[8116,8117,8118,0],[8118,8117,8114,0],[8246,8119,8115,0],[8115,8119,8114,0],[8119,8112,8114,0],[8112,8113,10405,0],[10405,8113,10404,0],[10404,8113,8120,0],[10404,8120,8121,0],[8122,8123,8124,0],[8124,8123,8133,0],[8124,8133,8134,0],[45524,45525,45526,0],[45524,45526,45566,0],[45566,45526,8136,0],[45566,8136,8128,0],[45566,8128,8125,0],[8125,8128,8126,0],[8127,8126,8128,0],[8127,8128,8129,0],[8127,8129,45528,0],[45528,8129,45444,0],[45444,8129,45442,0],[45442,8129,45446,0],[45446,8129,10243,0],[10243,8129,8136,0],[8136,8129,8128,0],[8120,8113,8248,0],[8120,8248,8130,0],[8131,10359,8132,0],[8123,8132,8133,0],[8133,8132,8134,0],[8134,8132,8135,0],[8136,45527,10243,0],[8135,8132,8240,0],[8137,8239,10241,0],[10241,8242,8138,0],[10240,8138,45447,0],[8139,45447,45456,0],[8139,45456,10239,0],[10239,45456,8140,0],[8140,8141,10271,0],[10271,8141,8154,0],[10271,8154,8142,0],[10272,8142,8339,0],[10272,8339,8143,0],[43026,8143,8338,0],[10268,43026,8144,0],[10267,8144,8346,0],[10267,8346,8145,0],[8146,8145,8147,0],[25028,8148,8344,0],[25028,8344,8343,0],[25036,47682,45559,0],[8149,45559,45561,0],[8149,45561,8150,0],[8150,45561,45560,0],[8150,45560,8151,0],[8151,45560,43025,0],[8151,43025,8337,0],[8336,8142,8154,0],[8336,8154,45449,0],[8160,8163,8164,0],[45535,8155,25039,0],[45535,25039,8159,0],[8159,25039,8156,0],[8159,8156,8157,0],[8151,8157,8150,0],[45536,45535,8158,0],[45536,8158,8160,0],[8162,8159,8151,0],[8162,8151,8337,0],[8159,8158,45535,0],[8335,8160,8161,0],[8335,8161,8162,0],[8162,8152,8335,0],[45449,8335,8336,0],[45449,8163,8335,0],[8335,8163,8160,0],[8160,8158,8161,0],[8159,8162,8158,0],[8158,8162,8161,0],[45449,45453,8163,0],[45532,8169,8167,0],[8169,8168,45540,0],[8169,45540,45541,0],[8169,45541,25123,0],[8332,8173,8172,0],[8172,8173,8258,0],[8174,8259,25127,0],[25127,8259,8175,0],[8175,8260,8176,0],[8052,8179,8051,0],[8051,8179,45547,0],[8052,7995,8179,0],[8180,45545,8182,0],[8181,8183,8182,0],[8182,8183,8208,0],[8208,8184,8182,0],[8182,8184,8180,0],[8180,8184,8185,0],[8180,8185,40012,0],[8180,40012,8051,0],[8186,40088,40084,0],[8186,40084,8187,0],[8209,8187,8188,0],[8203,8188,8064,0],[8064,8188,40085,0],[8200,40085,8189,0],[8193,8192,8194,0],[8193,8194,19954,0],[19954,8194,19955,0],[40102,40103,19953,0],[19953,8195,8196,0],[8196,8201,8197,0],[8197,8201,8198,0],[8197,8198,8191,0],[40090,8211,8199,0],[40090,8199,8200,0],[40090,8200,8189,0],[8199,8202,8065,0],[8199,8065,8200,0],[8200,8065,8064,0],[8064,8063,8203,0],[8064,40085,8200,0],[8188,8204,8209,0],[8187,8209,8186,0],[8063,8062,8203,0],[8062,8204,8203,0],[8203,8204,8188,0],[8204,8210,8209,0],[8209,8210,8205,0],[8205,8055,8049,0],[8049,8207,8205,0],[8205,8207,8206,0],[8206,8207,8208,0],[8208,8207,8050,0],[8050,8207,40014,0],[40014,8207,8049,0],[8205,8206,8209,0],[40088,8186,8183,0],[8208,8183,8206,0],[8206,8183,8209,0],[8209,8183,8186,0],[8055,8205,8210,0],[8210,8060,8055,0],[8211,8202,8199,0],[8202,8211,8201,0],[8201,8211,8198,0],[8268,8192,8191,0],[8191,8192,8197,0],[8180,8051,45547,0],[8258,8174,8172,0],[8172,8174,8170,0],[8170,8174,25127,0],[8171,8172,8170,0],[8171,45540,8168,0],[8171,8168,45457,0],[8221,45457,45533,0],[8221,45533,8220,0],[8220,45531,8330,0],[8330,45531,45451,0],[8330,45451,8234,0],[8234,45451,8236,0],[8236,45451,8212,0],[8212,45455,8333,0],[8333,8213,8214,0],[8214,45452,8215,0],[8215,8216,8217,0],[8334,8218,8219,0],[8220,8330,8232,0],[8220,8232,8221,0],[8331,8230,8222,0],[8222,8230,8223,0],[8223,8229,8254,0],[8254,8229,8228,0],[8226,8115,8227,0],[8227,8115,8300,0],[8115,8226,8224,0],[8115,8224,8246,0],[8246,8224,8244,0],[8244,8224,8228,0],[8229,8230,8231,0],[8231,8230,8232,0],[8232,8330,8231,0],[8231,8330,8233,0],[8235,8233,8234,0],[8235,8234,8236,0],[8235,8236,8253,0],[8253,8236,8237,0],[8238,8219,8218,0],[10359,8239,8137,0],[10359,8137,8240,0],[8239,8241,10241,0],[10241,8241,8242,0],[8242,8241,8217,0],[8242,8217,8216,0],[8218,8334,8251,0],[8251,8334,8239,0],[8217,8241,8334,0],[8241,8239,8334,0],[8219,8238,8212,0],[8238,8237,8212,0],[8212,8237,8236,0],[8234,8233,8330,0],[8231,8243,8229,0],[8229,8243,8244,0],[8246,8245,8247,0],[8252,8248,8249,0],[8252,8249,10360,0],[10360,8249,8238,0],[8238,8218,10360,0],[8250,10360,8251,0],[8251,10360,8218,0],[45539,8248,8113,0],[8248,8252,8130,0],[8130,8252,8131,0],[8237,8238,8253,0],[8245,8246,8244,0],[8229,8223,8230,0],[8224,8225,8228,0],[8228,8225,8254,0],[8254,8225,8255,0],[40022,8256,40017,0],[40022,40017,8257,0],[8257,40020,40021,0],[8175,8259,8260,0],[8260,40016,8261,0],[8261,40016,40015,0],[40015,8262,8263,0],[45545,8263,8182,0],[8182,8263,8181,0],[8181,8263,40093,0],[8181,40093,40087,0],[8181,40087,40088,0],[8181,40088,8183,0],[40093,8263,8262,0],[8262,40015,8264,0],[8264,8265,8325,0],[8265,8266,8305,0],[8322,8267,8268,0],[8269,8270,8321,0],[8270,8271,8272,0],[8272,8271,8273,0],[8273,8291,8274,0],[8274,8288,48843,0],[48843,8288,8289,0],[48843,8289,48844,0],[48844,8289,8275,0],[19957,8275,8276,0],[19957,8276,19948,0],[19948,8276,8285,0],[19948,8285,8277,0],[8279,8278,8283,0],[8282,8085,10436,0],[8086,8085,8320,0],[8086,8320,8088,0],[8280,8282,8278,0],[8281,8085,8282,0],[8283,8083,19944,0],[19943,19944,8083,0],[8280,19946,8284,0],[8276,8284,8285,0],[19946,8286,8284,0],[19946,8280,8278,0],[8280,8284,8281,0],[8320,8284,8290,0],[8320,8290,8088,0],[8274,8287,8288,0],[8288,8287,8089,0],[8288,8089,8088,0],[8290,8288,8088,0],[8089,8287,8090,0],[8090,8287,8091,0],[8091,8287,8092,0],[8092,8287,8291,0],[8093,8292,8094,0],[8093,10376,19277,0],[8292,8093,8291,0],[8291,8093,8092,0],[8287,8274,8291,0],[8291,8293,8292,0],[8094,8292,8095,0],[8292,8293,8095,0],[8271,8095,8293,0],[8271,8293,8273,0],[8273,8293,8291,0],[8294,8095,8295,0],[8294,8295,8296,0],[8312,8296,8107,0],[8107,8310,8297,0],[8108,8297,8298,0],[8108,8298,8299,0],[10367,8299,8117,0],[8117,8299,8300,0],[8300,8299,8307,0],[8300,8307,8227,0],[8226,8227,8225,0],[8225,8227,8301,0],[8225,8301,8311,0],[8311,8304,8256,0],[8256,8304,8302,0],[40018,8265,40019,0],[40019,8265,8264,0],[8303,8264,40015,0],[40018,8302,8265,0],[8265,8302,8266,0],[8266,8302,8304,0],[8266,8304,8305,0],[8305,8306,8298,0],[8306,8301,8227,0],[8227,8307,8306,0],[8306,8307,8298,0],[8298,8307,8299,0],[8305,8298,8308,0],[8308,8298,8297,0],[8304,8311,8301,0],[8301,8306,8304,0],[8268,8309,8269,0],[8308,8309,8305,0],[8305,8309,8267,0],[8309,8308,8310,0],[8309,8310,8270,0],[8296,8295,8310,0],[8296,8310,8107,0],[8270,8295,8271,0],[8271,8295,8095,0],[8295,8270,8310,0],[8310,8308,8297,0],[8270,8269,8309,0],[8256,8255,8311,0],[8226,8225,8224,0],[8225,8311,8255,0],[8312,8105,8313,0],[8317,40113,8103,0],[8317,8103,8314,0],[8317,8314,8315,0],[8103,40113,8105,0],[8296,8312,8313,0],[8313,8316,8296,0],[8296,8316,8294,0],[8096,8294,8316,0],[8096,8316,8319,0],[40113,8317,8319,0],[8319,8316,8313,0],[8317,8315,8098,0],[8318,8096,8319,0],[8319,8317,8318,0],[8318,8317,8098,0],[8281,8320,8085,0],[8284,8320,8281,0],[8268,8269,8192,0],[8192,8269,8321,0],[8192,8321,8194,0],[8268,8191,8322,0],[8322,8191,8190,0],[8322,8190,8323,0],[8329,8323,8324,0],[8329,8324,8325,0],[8325,8324,8326,0],[8327,8326,8328,0],[8324,8328,8326,0],[8324,8323,8190,0],[8322,8323,8267,0],[8267,8323,8329,0],[8265,8305,8329,0],[8329,8305,8267,0],[45457,8331,8332,0],[8332,8172,45457,0],[8172,8171,45457,0],[8212,8333,8219,0],[8219,8333,8214,0],[8219,8214,8334,0],[8217,8334,8215,0],[8334,8214,8215,0],[8142,8336,8335,0],[8142,8335,8153,0],[8153,8335,8152,0],[8162,8337,8152,0],[8152,8337,8340,0],[8152,8340,8153,0],[8153,8340,8339,0],[8339,8340,8338,0],[8339,8338,8143,0],[8338,45562,43026,0],[8153,8339,8142,0],[8337,43025,43024,0],[8337,43024,8340,0],[45565,8341,8342,0],[8342,43022,8344,0],[8147,8145,45564,0],[8147,45564,45563,0],[8147,45563,8148,0],[8148,45563,8342,0],[8342,8344,8148,0],[8343,8344,25036,0],[8346,8345,8145,0],[8145,8345,45564,0],[8145,8146,8347,0],[8347,10350,10357,0],[10357,10350,8348,0],[8348,10350,8349,0],[8349,43028,10285,0],[10285,43028,8351,0],[8350,8351,9564,0],[8353,9564,9565,0],[8353,9565,8352,0],[8353,8352,10289,0],[10289,8352,43015,0],[10257,43015,8354,0],[10339,43006,10349,0],[8355,10349,9559,0],[8355,9559,9500,0],[8355,9497,8356,0],[8356,9497,9494,0],[8356,9494,8358,0],[8358,9494,8357,0],[9493,9492,8359,0],[10327,8359,8361,0],[8360,8362,8363,0],[10307,8363,34570,0],[10307,34570,8364,0],[8364,34570,8365,0],[8364,8365,10346,0],[10301,10300,8367,0],[8369,43017,8370,0],[8370,43578,8371,0],[8371,43578,43581,0],[8371,43581,10183,0],[8371,10183,10222,0],[10222,10183,8372,0],[10222,8372,10291,0],[10291,8372,10207,0],[10291,10207,10294,0],[10294,10207,10204,0],[10294,10204,10292,0],[10216,10292,10203,0],[10212,8373,8374,0],[10213,8374,8375,0],[10213,8375,10462,0],[10462,8375,8376,0],[8376,8375,8377,0],[8377,8375,10189,0],[10178,10206,10177,0],[10179,10177,8378,0],[43619,8381,43618,0],[43618,8381,8382,0],[8382,43587,8383,0],[8383,43587,43593,0],[8383,43593,43680,0],[43680,43591,10041,0],[10040,10041,43591,0],[10040,43591,8384,0],[8384,43591,43590,0],[8384,43590,8385,0],[8385,43590,43589,0],[8385,43589,43592,0],[8385,43592,10024,0],[10024,43592,8386,0],[8387,8386,8388,0],[8387,8388,8389,0],[43738,43737,43740,0],[43738,43740,8390,0],[8390,43740,43742,0],[8390,43742,43750,0],[43751,43750,43743,0],[8391,8392,10167,0],[10167,43393,43392,0],[10167,43392,8393,0],[10168,8393,10169,0],[8394,8395,10016,0],[8396,8395,43388,0],[8396,43388,8397,0],[10011,8398,43755,0],[10054,43755,8399,0],[10054,8399,8400,0],[43263,8403,8404,0],[43263,8404,43267,0],[43267,8404,43259,0],[43267,43259,8405,0],[43267,8405,8406,0],[8406,8405,8407,0],[45639,8407,43298,0],[9881,8410,45414,0],[45413,10156,8411,0],[8411,10156,8412,0],[44840,8414,44844,0],[10164,10166,8415,0],[44839,8419,44841,0],[44841,8419,8417,0],[44841,8417,8416,0],[10137,8418,8562,0],[8562,8418,8419,0],[8562,8419,8420,0],[8422,8420,8421,0],[8422,8421,8423,0],[43795,8424,8425,0],[8428,8426,8427,0],[8428,8427,43459,0],[43459,8427,8429,0],[8430,8559,8431,0],[8431,8559,44891,0],[44891,8559,8432,0],[43841,8432,8549,0],[8433,8549,8550,0],[43861,8497,8435,0],[8435,8497,8436,0],[8436,8437,43858,0],[43858,8437,8438,0],[43858,8438,43859,0],[43859,8438,43818,0],[43859,43818,43853,0],[43853,43818,43819,0],[43853,43819,43854,0],[43854,43819,8439,0],[8439,43823,8440,0],[8441,8440,8442,0],[8441,8442,8443,0],[8443,8445,8444,0],[8444,8445,8446,0],[8446,8445,8496,0],[8446,8496,43848,0],[43848,44998,44079,0],[44079,8447,45307,0],[8448,8449,8450,0],[43864,8451,43866,0],[43866,8453,8452,0],[44836,8492,43869,0],[43869,8492,44833,0],[8454,8455,8449,0],[8454,8449,8448,0],[8455,8454,8456,0],[8455,8456,8457,0],[8457,44084,8458,0],[8459,8458,43899,0],[43899,8458,8460,0],[43899,8460,43900,0],[8461,8460,8462,0],[8461,8462,44950,0],[44950,8462,8463,0],[8463,8478,8464,0],[8464,8473,8465,0],[8466,8467,8468,0],[44206,8467,8469,0],[43921,8469,45125,0],[8471,8470,8475,0],[45087,8473,8472,0],[8472,8473,8487,0],[8487,8473,8474,0],[8474,8473,8464,0],[8474,8464,8478,0],[45125,8469,8470,0],[8470,8469,8475,0],[8476,8467,8465,0],[45087,8476,8473,0],[45087,8471,8476,0],[8476,8471,8475,0],[8476,8475,8467,0],[8465,8467,8466,0],[8467,8475,8469,0],[8460,8458,8462,0],[8462,8458,8477,0],[8462,8477,8478,0],[8478,8477,44083,0],[8478,44083,8474,0],[8474,44083,44956,0],[8474,44956,44027,0],[44026,44024,8480,0],[8480,44024,8481,0],[8482,8483,8485,0],[8485,8483,8489,0],[8486,8484,8479,0],[8489,8484,8485,0],[8481,8485,8486,0],[8479,44028,8486,0],[8485,8484,8486,0],[8485,8481,8482,0],[8481,8486,44028,0],[8481,44028,8480,0],[8480,44028,44026,0],[8463,8462,8478,0],[8487,44027,8479,0],[44027,8487,8474,0],[8487,8479,8488,0],[8488,8484,45086,0],[45086,8484,8489,0],[8479,8484,8488,0],[44835,8491,8490,0],[44835,8490,43897,0],[45001,8490,8491,0],[8455,8491,8449,0],[8449,8491,8492,0],[8492,44836,8450,0],[8492,8450,8449,0],[8451,8450,43866,0],[43866,8450,8453,0],[44833,8492,8491,0],[8443,8442,8445,0],[8445,8442,45305,0],[8445,45305,43825,0],[8496,8445,8495,0],[8495,8445,8493,0],[8495,8493,8494,0],[8493,8445,43825,0],[43844,8552,8434,0],[8434,8552,8497,0],[8436,8497,8498,0],[8436,8498,8437,0],[8437,8498,8499,0],[43839,8499,8555,0],[43839,8555,8500,0],[43815,8501,8544,0],[43815,8544,43817,0],[43817,8544,8502,0],[8502,8546,44864,0],[44864,8546,44863,0],[8516,8503,44879,0],[44879,8503,8504,0],[44879,8504,8547,0],[8515,8547,8505,0],[8515,8505,8523,0],[8523,8505,8506,0],[8506,8505,8548,0],[8506,8548,8507,0],[8506,8507,8528,0],[8506,8528,8508,0],[8506,8508,8514,0],[8514,8508,8513,0],[8513,8508,8524,0],[8510,8511,8527,0],[8527,8511,10166,0],[8527,10166,8526,0],[8526,10166,8525,0],[8514,44876,8523,0],[8523,44876,8515,0],[8515,8520,8547,0],[8547,8520,44879,0],[8516,44880,44858,0],[44858,44880,8522,0],[8517,8518,44856,0],[44856,8518,8519,0],[44875,8518,44878,0],[8521,44878,8520,0],[8521,8520,8515,0],[44878,8518,8522,0],[8522,8518,8517,0],[8513,8524,8525,0],[8525,8524,8526,0],[8513,8525,8512,0],[8506,8514,8523,0],[8510,8527,8509,0],[8509,8527,8524,0],[8524,8527,8526,0],[8528,8529,8524,0],[8524,8529,8509,0],[8530,8561,8510,0],[8530,8510,8509,0],[8529,8528,8537,0],[8529,8537,8538,0],[44881,8531,8541,0],[8430,8532,8559,0],[8424,8423,8534,0],[8534,8423,8561,0],[8534,8561,8535,0],[8535,8561,8530,0],[8535,8530,8533,0],[8530,8509,8533,0],[8424,8534,8425,0],[8534,8535,8425,0],[8425,8535,8536,0],[8536,8535,8531,0],[8531,8535,8538,0],[8536,8531,44881,0],[8425,8536,8426,0],[8426,8536,8427,0],[8535,8533,8538,0],[8528,8507,8537,0],[8538,8537,8542,0],[8538,8542,8540,0],[8540,8542,8539,0],[8540,8539,8541,0],[8541,8531,8540,0],[8540,8531,8538,0],[8537,8507,8542,0],[8544,8543,8548,0],[8544,8548,8545,0],[8546,8545,8504,0],[44863,8546,8503,0],[8546,8502,8544,0],[8546,8544,8545,0],[8542,8507,8548,0],[8542,8548,8543,0],[8504,8503,8546,0],[8505,8547,8548,0],[8545,8548,8547,0],[8545,8547,8504,0],[8497,43861,8434,0],[8549,8553,8550,0],[8550,8553,8552,0],[8552,8553,8551,0],[8498,8551,8499,0],[8498,8497,8551,0],[8551,8497,8552,0],[8552,43844,8550,0],[8554,8553,8556,0],[8554,8556,8557,0],[8554,8557,8555,0],[8555,8557,8560,0],[8555,8560,8500,0],[8500,8560,43814,0],[8500,43814,8501,0],[8501,43814,8544,0],[8553,8549,8556,0],[8539,8558,8532,0],[8539,8532,8541,0],[8532,8557,8559,0],[8559,8557,8556,0],[8559,8556,8432,0],[8432,8556,8549,0],[8557,8558,8560,0],[8560,8542,8543,0],[8542,8560,8539,0],[8539,8560,8558,0],[8420,8419,8421,0],[8421,8511,8561,0],[8421,8561,8423,0],[8561,8511,8510,0],[8511,44839,8415,0],[8511,8421,44839,0],[8421,8419,44839,0],[8418,8417,8419,0],[10138,43334,8563,0],[8563,43373,10126,0],[10126,43373,10125,0],[8564,10125,43372,0],[8564,43372,43519,0],[8564,43519,43520,0],[8564,43520,10122,0],[10122,43520,8565,0],[10122,8565,10123,0],[8566,10123,8683,0],[43333,8588,8567,0],[10133,8568,8569,0],[10133,8569,10132,0],[8570,8572,8571,0],[8576,8575,8578,0],[8576,8578,8577,0],[8580,9872,8585,0],[8580,8585,10129,0],[10129,8579,8580,0],[8577,8579,43532,0],[8577,8580,8579,0],[8580,8577,9872,0],[9872,9873,8585,0],[8585,9873,8587,0],[8587,44846,8582,0],[8582,44846,8581,0],[8582,8581,44873,0],[8582,44873,8583,0],[8583,44873,8584,0],[8583,8584,44843,0],[44843,8584,44841,0],[44841,8584,44840,0],[45432,8585,8586,0],[45434,8586,44845,0],[8418,45434,8417,0],[8585,8587,8586,0],[8586,8587,8582,0],[8574,8575,8573,0],[8573,8575,8571,0],[8573,8571,8572,0],[8573,8572,9867,0],[8571,8575,8576,0],[8570,8571,8576,0],[10124,8566,8589,0],[8588,10124,8589,0],[8588,8589,8590,0],[9867,9868,8592,0],[9867,8592,8593,0],[8593,8594,8595,0],[9838,8596,43188,0],[8597,43189,10119,0],[10119,8599,8598,0],[8598,8599,43509,0],[43511,8599,43513,0],[43513,43191,43535,0],[43535,43191,8600,0],[43535,8600,9818,0],[9818,8600,8601,0],[8601,8600,8689,0],[8601,8689,8602,0],[8602,8689,8687,0],[43184,8687,43185,0],[43184,43185,43183,0],[43183,43185,43182,0],[8617,43182,8603,0],[8617,8603,8604,0],[8606,8678,45477,0],[45477,8678,8615,0],[8615,8678,8607,0],[8607,8678,8608,0],[8607,8608,8609,0],[45479,8610,8716,0],[45479,8716,8611,0],[45478,8611,45475,0],[8611,8716,8612,0],[8612,8716,8717,0],[8612,8613,45475,0],[45475,8613,9812,0],[45477,8614,8606,0],[8606,8614,8605,0],[8605,8614,8616,0],[8616,8617,8604,0],[8616,8614,8618,0],[8616,8618,8617,0],[8612,45475,8611,0],[8610,8619,9765,0],[8620,8667,34562,0],[8620,34562,9740,0],[9740,34562,9753,0],[34561,34560,8621,0],[8622,9743,8704,0],[8622,8704,8623,0],[8624,9748,8707,0],[8624,8707,8625,0],[9747,8625,8626,0],[8626,8655,34593,0],[34593,8655,8627,0],[8628,8629,34567,0],[8629,8637,34567,0],[34567,8637,8630,0],[34569,8630,8366,0],[8630,8637,8713,0],[8630,8713,8631,0],[8632,10299,8635,0],[8632,8635,43762,0],[43762,8635,43761,0],[8636,8638,43763,0],[8633,43579,10185,0],[8633,10185,10184,0],[43580,10184,8634,0],[43580,8634,10183,0],[43580,10183,43581,0],[8635,10299,43761,0],[10299,8631,8713,0],[8636,8713,8637,0],[8636,8637,8638,0],[8638,8637,8639,0],[8640,8639,8645,0],[8640,8641,8642,0],[8642,8641,8643,0],[8380,10181,8381,0],[8381,10181,43584,0],[8640,8642,8644,0],[8639,8637,8629,0],[8639,8629,8645,0],[8645,8629,8628,0],[8645,8628,8646,0],[8648,8647,8658,0],[8712,8649,8654,0],[8654,8649,43596,0],[8654,43596,8651,0],[8651,43596,8641,0],[8648,8652,8646,0],[8646,8652,8650,0],[8646,8650,8645,0],[8645,8650,8640,0],[8640,8650,8653,0],[8640,8653,8651,0],[8640,8651,8641,0],[8650,8652,8712,0],[8650,8712,8653,0],[8653,8712,8654,0],[8653,8654,8651,0],[8652,8648,8712,0],[8646,8647,8648,0],[8628,8627,8646,0],[8646,8627,8647,0],[8647,8655,8656,0],[43582,8660,8700,0],[8701,45473,8659,0],[8701,8659,34554,0],[45474,8660,8657,0],[8658,43582,8648,0],[8648,43582,8661,0],[8662,8661,43597,0],[8662,43597,43598,0],[43705,8699,8697,0],[8663,8698,43711,0],[8664,43711,8665,0],[8666,8665,8667,0],[8666,8667,43528,0],[43526,8693,8669,0],[8669,8693,8680,0],[8669,8680,8670,0],[8669,8670,8679,0],[8674,8673,8675,0],[8675,8676,8565,0],[10123,8565,8676,0],[8678,8677,8670,0],[8678,8670,8608,0],[8608,8670,8680,0],[8678,8606,8677,0],[8606,8605,8677,0],[8694,8619,8610,0],[8610,8609,8694,0],[8694,8609,8608,0],[8608,8680,8694,0],[8670,8677,8681,0],[8673,8682,8675,0],[8670,8681,8679,0],[8679,8681,8682,0],[8679,8682,8671,0],[8671,8682,8673,0],[8671,8673,8672,0],[8672,8673,8674,0],[8682,8681,8676,0],[8682,8676,8675,0],[10120,8616,8604,0],[8685,10121,8684,0],[8685,8684,8686,0],[43186,8686,43190,0],[8600,8686,8689,0],[8689,8688,8687,0],[8684,8688,8689,0],[8688,8684,10121,0],[8688,10121,8603,0],[8684,8689,8686,0],[8616,10120,8605,0],[8605,10120,8677,0],[8677,10120,8683,0],[8566,8683,8589,0],[8691,8668,8690,0],[8691,8692,8693,0],[43526,8691,8693,0],[8693,8692,8694,0],[8694,8692,8619,0],[8694,8680,8693,0],[8692,8691,8619,0],[8619,8691,8690,0],[8690,8668,8620,0],[8620,8668,43528,0],[8620,43528,8667,0],[8699,43597,8695,0],[8711,8702,8696,0],[8696,8702,34553,0],[8696,34553,8697,0],[8697,34553,8698,0],[8698,34555,43711,0],[8698,8663,8697,0],[8696,8697,8699,0],[8711,8696,8699,0],[8711,8699,8695,0],[43597,8661,8695,0],[8703,8700,45473,0],[45473,8701,8703,0],[8703,8701,8702,0],[8702,8711,8703,0],[8703,8711,8700,0],[8700,8660,45473,0],[34553,8701,34554,0],[34566,8710,8704,0],[8710,34554,8705,0],[8705,45474,8706,0],[8706,45474,8708,0],[8706,8708,8707,0],[8706,8707,9748,0],[8625,8707,8657,0],[8625,8657,8656,0],[8655,8647,8627,0],[8655,8625,8656,0],[8657,8707,8708,0],[8657,8708,45474,0],[9748,8709,8706,0],[8706,8709,8705,0],[8705,8709,8623,0],[8705,8623,8710,0],[8623,8704,8710,0],[34554,8659,8705,0],[43582,8700,8695,0],[43582,8695,8661,0],[8700,8711,8695,0],[8661,8662,8712,0],[8712,8662,8649,0],[8661,8712,8648,0],[8658,8647,8656,0],[8658,8656,8657,0],[8636,43761,8713,0],[8713,43761,10299,0],[8628,34567,8714,0],[8628,8714,8627,0],[8627,8714,34593,0],[8717,8716,9734,0],[8717,9734,43180,0],[43180,9734,9736,0],[45471,43180,8718,0],[8718,9738,8719,0],[8720,8788,8790,0],[8788,8722,8721,0],[8721,8722,9715,0],[9722,8787,8789,0],[8789,8781,9724,0],[9724,8781,8723,0],[9724,8723,9696,0],[8723,8782,9697,0],[9697,8782,8724,0],[8756,8725,8779,0],[8779,8727,8756,0],[8756,8727,8726,0],[8752,8726,45467,0],[45467,8726,8727,0],[8727,8778,34604,0],[34604,8778,8773,0],[8783,9759,8728,0],[8728,9759,8775,0],[8777,9758,8729,0],[8777,8729,8730,0],[8731,8730,8732,0],[8731,8732,8765,0],[8766,8734,8735,0],[8735,8734,8736,0],[8735,8736,8737,0],[8738,8740,8771,0],[8739,8740,8741,0],[8743,8741,8742,0],[8743,8742,9373,0],[8743,9373,9374,0],[8754,8745,43067,0],[8754,43067,8746,0],[8749,8748,8750,0],[8749,8750,43093,0],[8751,43093,8752,0],[45467,34603,43095,0],[43095,34603,34601,0],[8739,8741,8755,0],[8755,8743,9374,0],[9374,8744,8755,0],[8755,8744,8753,0],[8754,8753,8745,0],[8739,8755,34601,0],[8741,8743,8755,0],[8752,43093,8726,0],[8726,43093,8756,0],[8756,8757,8725,0],[8725,8757,8724,0],[8724,8757,8761,0],[8761,8757,8763,0],[8763,8757,8760,0],[8763,8760,43074,0],[43074,8760,8758,0],[8759,43072,8747,0],[8747,43072,8748,0],[8748,43072,8758,0],[8748,8758,8760,0],[8748,8760,8750,0],[8750,8760,8757,0],[8750,8757,8756,0],[8724,8761,8762,0],[9692,8762,9691,0],[43076,9691,8763,0],[8761,8763,8762,0],[8762,8763,9691,0],[8747,8748,8749,0],[8737,8736,8738,0],[8765,8764,8774,0],[8774,8764,8766,0],[8766,8764,8734,0],[8734,8764,9742,0],[8734,9742,8733,0],[8733,9742,34583,0],[8772,8767,8769,0],[8772,8769,8768,0],[8769,8770,34602,0],[34602,8770,8737,0],[34602,8737,8771,0],[8771,8737,8738,0],[8737,8770,8735,0],[8769,8767,8770,0],[8731,8767,8772,0],[8776,8772,8768,0],[8728,8768,8773,0],[8774,8766,8735,0],[8765,8774,8731,0],[8731,8774,8767,0],[8765,9741,8764,0],[8764,9741,9742,0],[8783,8728,8773,0],[8775,9758,8776,0],[8776,9758,8777,0],[8730,8731,8777,0],[8777,8731,8772,0],[8777,8772,8776,0],[8775,8776,8768,0],[8775,8768,8728,0],[8778,8727,8779,0],[8779,8782,8784,0],[8780,8784,8781,0],[8780,8781,8789,0],[8723,8781,8782,0],[8782,8779,8725,0],[8784,8782,8781,0],[8773,8778,8783,0],[8783,8784,9760,0],[9763,9760,8785,0],[8786,8785,8787,0],[8786,8787,8722,0],[8784,8780,9760,0],[9760,8780,8789,0],[9760,8789,8785,0],[8785,8789,8787,0],[8788,8721,9710,0],[8788,9710,8790,0],[8790,8794,8791,0],[8790,8791,8719,0],[8719,8720,8790,0],[8718,8792,43181,0],[8793,8792,8719,0],[8793,8719,8791,0],[8794,8795,8796,0],[9821,9712,8799,0],[8797,8799,8798,0],[8798,8799,9713,0],[9776,9713,8800,0],[9776,8800,9777,0],[9718,9720,9719,0],[9777,9719,43152,0],[8802,8801,9720,0],[8802,9720,43156,0],[43156,9730,8803,0],[8803,9730,9726,0],[8803,9726,8804,0],[8803,8804,43154,0],[43154,8804,8805,0],[43154,8805,8806,0],[8806,8805,8807,0],[8807,8805,8808,0],[8807,8808,43321,0],[43321,8808,9363,0],[43321,9363,8809,0],[8809,9363,8810,0],[8809,8810,43099,0],[8811,9364,43096,0],[8813,8814,8815,0],[8815,8814,8906,0],[8906,8822,9360,0],[9360,8822,8816,0],[8816,8822,8817,0],[8820,8818,43102,0],[8819,43099,8810,0],[8818,8820,43100,0],[43100,8820,8821,0],[8823,43050,8821,0],[8821,43050,8824,0],[8853,8825,43049,0],[8853,43049,8826,0],[8827,8897,43195,0],[43195,8897,8895,0],[8833,8828,8829,0],[8829,46808,8831,0],[8831,46808,8830,0],[8831,8830,9326,0],[8831,9326,8832,0],[8831,8832,43196,0],[8831,43196,43195,0],[8833,43195,8895,0],[8895,8828,8833,0],[8829,8831,43195,0],[43195,8834,8827,0],[8827,8834,8826,0],[8826,8834,8835,0],[43221,8860,8836,0],[43221,8836,8837,0],[8832,8838,8839,0],[8832,8839,43196,0],[8838,8837,8839,0],[8839,8837,8836,0],[43221,8837,8840,0],[8840,8841,43221,0],[43221,8841,9323,0],[8844,10094,8845,0],[8856,43179,8855,0],[8846,43177,43322,0],[8846,43322,43317,0],[8846,43317,8847,0],[8859,43318,8848,0],[8848,8849,8858,0],[8858,8849,8850,0],[43101,8851,8854,0],[8854,8851,8852,0],[8852,8851,8853,0],[8852,8853,8835,0],[8853,8824,8825,0],[8853,43100,8824,0],[8824,43100,8821,0],[8823,8821,8817,0],[8853,8826,8835,0],[8859,8848,8858,0],[8859,8858,8857,0],[8847,8855,43177,0],[8847,43177,8846,0],[8855,8857,8856,0],[8845,8856,8844,0],[8844,8856,8857,0],[8844,8857,43223,0],[8858,43223,8857,0],[8844,43223,8843,0],[8855,8847,8857,0],[8859,8857,8847,0],[8859,8847,43318,0],[8860,43221,8854,0],[8850,43101,8861,0],[8861,9323,8862,0],[8850,8861,8862,0],[8854,8852,8860,0],[8860,8852,8863,0],[8863,8852,8835,0],[8836,8860,8863,0],[8835,8834,8863,0],[8839,8836,8863,0],[8839,8863,8834,0],[8830,46808,8864,0],[8864,8865,46870,0],[46870,8865,9305,0],[9303,8867,34669,0],[9303,34669,8868,0],[8868,34669,8869,0],[8868,8869,8870,0],[8870,8869,8884,0],[8870,8884,9301,0],[9301,8884,8871,0],[8882,46867,8877,0],[8878,8885,8880,0],[8880,8885,8879,0],[8880,12203,8882,0],[8882,12203,8881,0],[8882,8881,12204,0],[8882,12204,46867,0],[46867,12204,8876,0],[8876,12204,8875,0],[8880,8877,8878,0],[8880,8882,8877,0],[8875,8874,8876,0],[8876,8874,46869,0],[46869,8874,8883,0],[8883,8874,8873,0],[8883,8873,8872,0],[8883,8872,8871,0],[8886,8885,8887,0],[8886,8887,12218,0],[12218,8887,8888,0],[12168,12169,46802,0],[12168,46802,12173,0],[12173,46802,46803,0],[12173,46803,12162,0],[12162,46803,46805,0],[12162,46805,12163,0],[12163,46805,46806,0],[12163,46806,8890,0],[12163,8890,8891,0],[8891,8890,46807,0],[46807,8894,8892,0],[8892,8894,8893,0],[8893,8894,9300,0],[9297,9296,8896,0],[8896,9300,8895,0],[8896,8895,8897,0],[8899,8898,8900,0],[8899,8900,8901,0],[43051,8901,8903,0],[43051,8903,8902,0],[8902,8903,8822,0],[8822,8903,8823,0],[8901,43051,8899,0],[8899,43051,8907,0],[8907,43051,9684,0],[9684,43051,8904,0],[9684,8904,8905,0],[9682,8905,8814,0],[8814,8905,8906,0],[8907,8908,9297,0],[9297,8908,8909,0],[8909,43053,34728,0],[34728,43053,8910,0],[8910,9675,34729,0],[9299,43048,43046,0],[9299,43046,8914,0],[8911,8914,8912,0],[8912,8914,8913,0],[8912,8913,42994,0],[8915,8913,8914,0],[8915,8914,9294,0],[8915,9294,9295,0],[8915,9295,8916,0],[8919,8917,8918,0],[8919,8918,8920,0],[8920,8918,9639,0],[8920,9639,42985,0],[8921,42985,8922,0],[8923,9638,42993,0],[42993,9638,8924,0],[42993,8924,34639,0],[34639,8924,9637,0],[34639,9637,42533,0],[42532,8925,9406,0],[42532,9406,8926,0],[8926,9406,34698,0],[8926,34698,9291,0],[42530,34699,8927,0],[34634,8927,8928,0],[42539,8928,34628,0],[34628,8928,42536,0],[42536,42534,42537,0],[42537,34691,34632,0],[8929,34694,34495,0],[8929,34495,8930,0],[8930,34497,34498,0],[12626,34493,34491,0],[34491,8931,8932,0],[8933,8932,34151,0],[8933,34151,8934,0],[8934,9285,8935,0],[8935,9287,12649,0],[9284,8939,8940,0],[8940,34406,34404,0],[9283,34404,8941,0],[9283,8941,12699,0],[12699,8941,8942,0],[12698,8942,12709,0],[12709,8942,34834,0],[12703,12709,34836,0],[12703,34836,12704,0],[12706,34832,8943,0],[8943,33656,8944,0],[8944,33656,8945,0],[8944,8945,8946,0],[8948,8947,9282,0],[9134,8949,8950,0],[9131,8950,9273,0],[9131,9273,8951,0],[9131,8951,9130,0],[9130,8951,647,0],[9060,647,8952,0],[687,686,28489,0],[687,689,8953,0],[8953,9268,8954,0],[8954,8963,9059,0],[9056,9255,8956,0],[9056,8956,8957,0],[9056,8957,8958,0],[8960,8958,8959,0],[949,8959,8961,0],[8961,8959,34839,0],[8961,34839,8962,0],[8962,8957,8956,0],[946,8955,8963,0],[8963,8955,9059,0],[946,8963,689,0],[8962,691,8961,0],[8958,34455,8964,0],[8964,34454,8965,0],[9258,34451,8966,0],[8966,34452,9259,0],[9259,34452,8967,0],[34428,34441,8972,0],[8972,34841,9011,0],[34841,34437,8973,0],[8973,34437,8974,0],[718,8974,8975,0],[718,8975,717,0],[717,35077,716,0],[716,35077,34435,0],[716,34435,8976,0],[8976,8977,695,0],[695,8977,712,0],[695,35054,8976,0],[8976,35054,716,0],[8978,712,8977,0],[8968,8969,34425,0],[9145,34425,8979,0],[9144,8979,9055,0],[9144,9055,34429,0],[8980,34429,34426,0],[8980,34426,8981,0],[8983,9003,8985,0],[8983,8985,8984,0],[8984,8985,8998,0],[8986,8987,8988,0],[8988,8987,9191,0],[9191,8987,9013,0],[8991,8990,34865,0],[8991,34865,9228,0],[9228,34865,9229,0],[9229,34865,34866,0],[8993,34893,8997,0],[8993,8997,34872,0],[34874,8995,34920,0],[34920,8995,8994,0],[8994,8995,8996,0],[8996,8995,34872,0],[8996,34872,34917,0],[34917,34872,8997,0],[34870,8997,34893,0],[34868,34893,8992,0],[9045,8990,8989,0],[8989,8990,9191,0],[8989,9191,9013,0],[8986,8998,8999,0],[8999,9003,9000,0],[9000,9001,9007,0],[9001,9005,9012,0],[9012,9005,9011,0],[9011,9005,9053,0],[9053,9005,9002,0],[8985,9003,8999,0],[8985,8999,8998,0],[9003,9004,9000,0],[9000,9004,9001,0],[9005,9004,9002,0],[9002,9004,9003,0],[9001,9004,9005,0],[8987,8986,8999,0],[8987,8999,9014,0],[9014,8999,9000,0],[9014,9000,9052,0],[9015,9006,9007,0],[9007,9001,9012,0],[9008,9012,9010,0],[9008,9010,9009,0],[9009,9010,8973,0],[8973,9010,9011,0],[8973,9011,34841,0],[8973,8974,9009,0],[9012,9008,9042,0],[9014,9043,9016,0],[9014,9016,9013,0],[9013,9016,8989,0],[9014,9052,9006,0],[9012,9042,9007,0],[9007,9042,9015,0],[9006,9043,9014,0],[9013,8987,9014,0],[9006,9015,9043,0],[9043,9015,9039,0],[9043,9039,9038,0],[9016,9038,9017,0],[34861,9018,9038,0],[34861,9039,35081,0],[35081,9039,9040,0],[35081,9040,9019,0],[28465,9019,722,0],[9019,723,35081,0],[9021,9020,9037,0],[9021,9037,9022,0],[9021,9022,34863,0],[34863,9022,9023,0],[9023,34852,34860,0],[34860,34852,9024,0],[9024,34850,34857,0],[34857,34850,34924,0],[34924,9025,9047,0],[9047,9025,9026,0],[9035,9050,9027,0],[35129,9028,34926,0],[35129,9029,9028,0],[9028,9029,9030,0],[9030,9029,35131,0],[9030,35131,9031,0],[9030,9031,9035,0],[9035,9031,34885,0],[34885,9031,34918,0],[9033,35133,7001,0],[35133,9033,9034,0],[9034,9031,35131,0],[9033,9032,9034,0],[9034,9032,34918,0],[9028,9030,9027,0],[9027,9030,9035,0],[34861,35081,9020,0],[9020,35081,9036,0],[9020,9036,725,0],[9020,725,9037,0],[9036,35081,723,0],[9017,9038,9018,0],[34861,9038,9039,0],[9040,9039,719,0],[9040,719,9041,0],[720,9041,719,0],[9015,9042,9039,0],[9008,719,9042,0],[9042,719,9039,0],[9038,9016,9043,0],[9016,9017,8989,0],[8989,9017,9044,0],[8989,9044,9045,0],[9045,9044,35080,0],[35080,34859,34865,0],[34865,34859,9046,0],[9046,34859,34864,0],[9048,34858,9047,0],[9047,9026,9048,0],[9048,9026,9049,0],[9049,9050,34888,0],[34888,9050,9035,0],[9050,9049,9026,0],[9045,35080,9051,0],[9045,9051,8990,0],[9052,9000,9007,0],[9007,9006,9052,0],[9003,8983,9002,0],[9053,9002,9054,0],[9053,9054,34427,0],[8972,34427,34428,0],[34427,9054,34426,0],[34426,9054,8981,0],[8981,9054,8982,0],[8982,9054,8983,0],[9011,9053,8972,0],[9011,9010,9012,0],[8972,9053,34427,0],[8958,8964,9056,0],[9056,8964,9061,0],[9061,8964,9057,0],[8956,9255,8955,0],[8955,9255,9059,0],[9059,9064,8954,0],[8954,9064,9070,0],[8954,9070,8953,0],[8953,9070,34298,0],[9060,8952,8953,0],[9060,8953,34298,0],[8953,8952,687,0],[9058,9255,9056,0],[9058,9056,9061,0],[9061,9057,9058,0],[8964,8965,9057,0],[9057,8965,9062,0],[9256,9062,34300,0],[9256,34300,34301,0],[9059,9063,9064,0],[9064,9063,9257,0],[9064,9257,9066,0],[9066,9257,9065,0],[9251,34461,34299,0],[34299,34461,9068,0],[9257,9069,9065,0],[9070,9064,9066,0],[9070,9066,9132,0],[9132,9066,9254,0],[9132,9254,9133,0],[9133,9254,9071,0],[9133,9071,9072,0],[9072,9073,9074,0],[9075,9126,9076,0],[9075,9076,9125,0],[9078,9104,9253,0],[9078,9253,9077,0],[9078,9077,9248,0],[9077,9072,9071,0],[34302,34310,9250,0],[9079,9080,9081,0],[9081,9080,9263,0],[9081,9263,9082,0],[34305,9082,9083,0],[9136,9083,34312,0],[34312,9083,34316,0],[34316,9083,9084,0],[9088,9266,9089,0],[9091,9246,9145,0],[9091,9145,9092,0],[9092,9144,9093,0],[9092,9093,9094,0],[9096,9137,9097,0],[34309,9099,9120,0],[34309,9120,9100,0],[9102,9101,9103,0],[9104,34460,9124,0],[9124,34460,12689,0],[12689,9105,9106,0],[12662,9107,9108,0],[9100,9109,9101,0],[34422,34423,9098,0],[34422,9098,9244,0],[9244,9243,12683,0],[12683,9243,9242,0],[12683,9242,9240,0],[12683,9240,12687,0],[12687,9240,9241,0],[34398,9241,9148,0],[34398,9148,9110,0],[9112,9110,9111,0],[9112,9111,9113,0],[9112,9113,26429,0],[26429,9113,9114,0],[9119,26421,26422,0],[9118,26423,9115,0],[9115,26423,9114,0],[9115,9116,9118,0],[9118,9116,9119,0],[9117,9119,9116,0],[9119,26422,9118,0],[9100,9120,9109,0],[9109,9120,9121,0],[9109,9121,9108,0],[9123,9121,9122,0],[9123,9122,12663,0],[9123,12662,9108,0],[9123,9108,9121,0],[12689,12690,9124,0],[9124,12713,9125,0],[9125,12713,12704,0],[9125,12704,9075,0],[9126,9127,9074,0],[9074,9127,9135,0],[9074,9135,9072,0],[9072,9135,9128,0],[9072,9128,9129,0],[9130,9129,9131,0],[9130,647,9060,0],[9132,9133,9130,0],[9130,9133,9129,0],[9129,9133,9072,0],[9131,9129,9128,0],[8950,9131,9134,0],[9135,9127,8948,0],[8947,8948,9127,0],[8948,9134,9135,0],[9135,9134,9128,0],[9128,9134,9131,0],[9282,8949,8948,0],[8948,8949,9134,0],[9124,9125,9104,0],[9104,9125,9076,0],[9098,9099,34306,0],[9097,34306,9136,0],[9097,9136,9096,0],[34306,9097,9098,0],[9096,9247,9137,0],[9217,9139,9140,0],[9217,9140,9211,0],[9211,9140,9141,0],[9141,9143,9157,0],[9157,9143,9142,0],[9157,9142,9209,0],[9142,34429,8980,0],[9142,9143,34429,0],[34429,9143,9144,0],[9144,9092,8979,0],[8979,9092,9145,0],[9145,9246,8968,0],[8968,9090,8967,0],[9246,9090,8968,0],[9090,9089,8967,0],[9144,9143,9093,0],[9143,9141,9093,0],[9137,9138,9238,0],[9238,9138,9146,0],[9238,9146,9239,0],[9239,9146,9147,0],[9239,9147,9148,0],[9148,9214,9111,0],[9111,9214,9149,0],[9149,9213,34809,0],[34809,9213,34807,0],[34807,9154,9151,0],[9150,9151,9152,0],[9150,9152,9237,0],[9153,34737,9237,0],[9153,9237,34743,0],[34730,9152,9151,0],[34730,9151,34742,0],[34742,9154,9155,0],[9155,9211,9156,0],[9156,9157,9158,0],[34744,9158,9159,0],[34744,9159,34747,0],[34747,9159,9160,0],[9160,9236,34748,0],[34748,9236,9207,0],[9161,34748,9202,0],[9161,9202,9162,0],[34784,9201,9163,0],[34794,9164,48819,0],[34773,34765,34772,0],[34772,34765,35152,0],[9230,9182,9175,0],[9175,9182,9176,0],[9176,9182,9167,0],[9178,9167,9168,0],[9178,9168,9169,0],[34897,9170,9177,0],[9177,9170,9171,0],[9174,48806,9181,0],[9179,35156,9175,0],[9175,35156,9230,0],[9173,9180,9172,0],[9180,9175,9172,0],[9176,9171,9172,0],[9171,9176,9177,0],[34897,9177,9169,0],[9169,9177,9178,0],[9176,9178,9177,0],[9167,9178,9176,0],[9179,9180,9173,0],[9173,9181,9179,0],[35149,34916,9183,0],[9188,9222,34894,0],[34894,9222,34892,0],[34892,9222,9189,0],[9189,9222,9229,0],[9191,8990,8991,0],[9191,8991,9190,0],[9191,9192,35078,0],[9192,9220,9193,0],[9193,9220,9225,0],[9200,9195,9224,0],[9196,9188,9235,0],[9235,9188,9187,0],[9185,34890,9197,0],[9185,9197,9186,0],[9226,9196,9198,0],[9199,9163,9198,0],[9198,9163,9200,0],[9163,9201,9200,0],[9201,34784,9162,0],[9200,9201,9195,0],[9195,9201,9194,0],[9201,9162,9194,0],[9162,9202,9194,0],[9194,9202,9203,0],[8986,9204,9205,0],[8986,9205,8998,0],[8998,9205,9206,0],[8998,9206,8984,0],[9204,9203,9205,0],[9207,9206,34748,0],[9206,9207,8984,0],[8984,9207,8983,0],[8983,9207,9208,0],[8983,9208,8982,0],[8982,9208,9210,0],[9210,9236,9159,0],[9159,9158,9209,0],[9142,8980,9209,0],[9209,8980,9210,0],[9209,9210,9159,0],[9210,8980,8981,0],[9209,9158,9157,0],[9157,9211,9141,0],[9212,9154,9213,0],[9216,9213,9149,0],[9216,9149,9214,0],[9215,9214,9147,0],[9147,9214,9148,0],[9215,9146,9138,0],[9147,9146,9215,0],[9214,9215,9216,0],[9216,9217,9213,0],[9213,9217,9212,0],[9212,9217,9211,0],[9139,9217,9218,0],[9215,9138,9218,0],[9215,9218,9216,0],[9216,9218,9217,0],[9213,9154,34807,0],[9211,9155,9212,0],[9212,9155,9154,0],[9154,34742,9151,0],[9203,9204,9193,0],[9193,35078,9192,0],[35078,9193,9204,0],[9203,9202,9206,0],[9203,9206,9205,0],[9198,9200,9226,0],[9192,9190,9228,0],[9192,9228,9219,0],[9219,9228,9223,0],[9192,9219,9220,0],[9224,9220,9221,0],[9222,9221,9223,0],[9223,9228,9229,0],[9223,9221,9219,0],[9220,9219,9221,0],[9220,9224,9225,0],[9225,9224,9195,0],[9200,9224,9226,0],[9203,9225,9194,0],[9203,9193,9225,0],[9225,9195,9194,0],[9224,9221,9226,0],[9226,9221,9227,0],[9196,9227,9188,0],[9188,9227,9222,0],[9227,9221,9222,0],[9222,9223,9229,0],[9196,9226,9227,0],[8991,9228,9190,0],[9229,34866,8992,0],[9229,8992,9189,0],[9188,34894,9187,0],[9187,34894,9186,0],[9182,9230,34916,0],[34916,9230,35150,0],[34916,35150,9231,0],[34890,9232,48820,0],[34890,48820,9197,0],[9197,48820,9233,0],[9197,9233,9234,0],[9196,9235,9198,0],[9198,9235,9234,0],[9198,9234,9164,0],[9198,9164,9199,0],[9234,48819,9164,0],[9186,9197,9234,0],[9186,9234,9187,0],[9187,9234,9235,0],[34890,9184,9232,0],[9232,9184,9231,0],[9184,9183,9231,0],[9231,9183,34916,0],[9160,9159,9236,0],[9236,9210,9208,0],[9236,9208,9207,0],[34737,34804,9237,0],[9137,9238,9097,0],[9238,9239,9242,0],[9242,9239,9240,0],[9240,9239,9241,0],[9241,9239,9148,0],[9110,9148,9111,0],[9111,9149,9113,0],[9243,9244,9097,0],[9097,9244,9098,0],[9242,9243,9238,0],[9097,9238,9243,0],[9096,34311,9247,0],[9137,9247,9138,0],[9138,9247,9095,0],[9138,9095,9218,0],[9218,9095,9139,0],[9140,9139,9245,0],[9139,9095,9094,0],[9139,9094,9245,0],[9140,9245,9141,0],[9141,9245,9093,0],[9093,9245,9094,0],[9088,34313,9086,0],[9246,34424,9090,0],[9090,34313,9088,0],[9090,9088,9089,0],[9087,9088,9086,0],[34313,9090,34424,0],[9092,9094,9091,0],[9094,9095,9247,0],[9078,9248,34310,0],[34310,9248,9249,0],[34310,9249,9250,0],[9250,9251,9080,0],[9260,9251,34299,0],[9080,9079,34302,0],[34302,9250,9080,0],[9250,34461,9251,0],[9249,9248,9252,0],[9249,9252,9250,0],[9250,9252,34461,0],[9104,9076,9253,0],[9253,9126,9074,0],[9126,9253,9076,0],[9063,9059,9255,0],[9063,9255,34301,0],[34301,9255,9256,0],[9256,9255,9058,0],[9256,9058,9062,0],[8965,34451,9062,0],[9062,34451,9258,0],[9267,9258,9266,0],[9266,9258,9259,0],[9266,9259,9089,0],[9089,9259,8967,0],[8966,9259,9258,0],[9266,9087,9262,0],[9266,9262,9265,0],[9265,9262,9260,0],[9265,9260,34299,0],[34299,9068,9261,0],[9261,9063,34301,0],[9063,9261,9257,0],[9257,9261,9069,0],[9069,9261,9068,0],[9260,9262,9264,0],[9260,9264,9263,0],[9260,9263,9080,0],[9087,9264,9262,0],[9087,9266,9088,0],[9082,9263,9084,0],[9084,9083,9082,0],[9084,9263,9264,0],[9084,9264,9085,0],[9264,9087,9085,0],[9085,9087,9086,0],[9080,9251,9260,0],[9266,9265,9267,0],[9267,34300,9062,0],[9267,9062,9258,0],[8953,689,9268,0],[9268,8963,8954,0],[8963,9268,689,0],[9282,8947,9269,0],[9271,9270,643,0],[9272,9271,645,0],[9272,645,646,0],[9272,646,9281,0],[9281,9273,8950,0],[9281,646,28509,0],[9281,28509,9273,0],[647,648,8952,0],[8952,648,9275,0],[8952,9275,9274,0],[9274,686,687,0],[9274,687,8952,0],[648,9278,9275,0],[685,686,684,0],[9276,684,9277,0],[9280,9277,9278,0],[9275,9278,9274,0],[9274,9278,684,0],[9274,684,686,0],[684,9278,9277,0],[9276,9277,683,0],[683,9277,9280,0],[683,9280,9279,0],[9279,9280,653,0],[648,650,9278,0],[9278,650,9280,0],[650,651,9280,0],[653,9280,652,0],[8951,9273,28513,0],[28513,9273,28509,0],[8950,8949,9281,0],[9281,8949,9272,0],[9271,9272,9282,0],[9271,9282,9269,0],[9271,9269,9270,0],[9272,8949,9282,0],[643,9270,28505,0],[28505,34318,642,0],[642,34318,34319,0],[642,34319,28498,0],[8947,8946,9269,0],[8946,8945,9269,0],[9269,8945,9270,0],[8939,9284,12699,0],[12699,9284,9283,0],[34404,9283,8940,0],[9283,9284,8940,0],[8935,9285,9287,0],[9287,9285,9286,0],[34148,8936,34147,0],[34147,8936,12649,0],[8932,8933,34491,0],[34491,8933,12626,0],[12621,34493,12626,0],[42536,8928,42534,0],[42537,42534,9288,0],[42537,9288,34507,0],[9290,9292,9291,0],[9291,9292,42528,0],[9291,42528,34699,0],[9289,9292,9290,0],[34724,8917,8916,0],[8916,8917,9293,0],[9294,8914,43046,0],[8911,8912,8892,0],[34728,9296,9297,0],[34728,9297,8909,0],[8907,9297,8896,0],[8907,8896,8898,0],[8898,8896,8897,0],[9298,8893,9300,0],[8893,8911,8892,0],[9298,9300,9296,0],[8893,9298,8911,0],[8911,9298,9299,0],[8911,9299,8914,0],[8828,8895,9300,0],[9296,9300,8896,0],[8828,9300,8894,0],[8870,9301,8868,0],[8868,9301,9302,0],[9303,8868,34673,0],[9303,34673,9304,0],[9303,9304,43216,0],[9305,8866,43216,0],[8867,43216,8866,0],[43216,8867,9303,0],[9306,9301,9351,0],[9306,9351,34675,0],[34675,9351,9352,0],[34675,9352,9353,0],[34676,9353,9965,0],[34676,9965,9974,0],[34676,9974,9307,0],[9307,9974,9342,0],[9307,9342,9308,0],[9349,9309,43215,0],[43215,9309,43203,0],[43203,9309,9332,0],[9332,9309,9310,0],[9309,9307,9310,0],[9310,9307,9308,0],[9310,9308,9311,0],[9333,9312,9970,0],[9333,9970,9313,0],[9314,9313,9948,0],[9948,9315,9316,0],[43205,9317,9318,0],[43205,9318,9319,0],[9319,9318,10096,0],[9319,10096,9320,0],[9320,10096,43226,0],[9320,43226,9321,0],[9322,43224,9323,0],[8862,9323,8842,0],[9323,9324,9321,0],[43210,9327,9325,0],[43209,9326,43214,0],[46871,9326,8830,0],[8830,8864,46870,0],[9325,9327,8837,0],[8837,9327,8840,0],[9325,8837,8838,0],[9325,8838,43209,0],[9326,43209,8832,0],[8832,43209,8838,0],[9323,8841,9324,0],[9324,8841,8840,0],[9324,8840,9327,0],[9316,9328,9948,0],[9948,9328,9314,0],[9330,9329,9331,0],[9333,9330,9312,0],[9312,9330,9311,0],[9311,9331,9310,0],[9310,9331,9332,0],[9350,43200,34671,0],[9350,34671,34672,0],[9350,34672,9347,0],[9346,9347,34673,0],[9346,34673,9302,0],[9302,34673,8868,0],[43215,43200,9349,0],[9349,43200,9350,0],[9330,9333,9314,0],[9330,9314,9329,0],[9314,9333,9313,0],[9336,9335,9337,0],[9336,9337,9338,0],[9957,9338,9345,0],[9961,9339,9340,0],[9962,9340,9341,0],[9308,9342,9344,0],[9308,9344,9343,0],[9334,9343,34678,0],[9334,34678,9335,0],[9335,34678,45601,0],[9340,34678,9344,0],[9340,9344,9341,0],[9341,9344,9342,0],[9343,9344,34678,0],[9340,45601,34678,0],[9335,45601,9337,0],[9338,9337,9345,0],[9301,9306,9302,0],[9302,9306,9346,0],[9346,9306,34674,0],[9346,34674,9347,0],[9347,34674,9348,0],[9349,9350,9348,0],[9348,9350,9347,0],[9301,8871,9351,0],[9351,8871,8872,0],[9351,8872,9352,0],[8897,8827,8900,0],[8897,8900,8898,0],[8822,8823,8817,0],[8906,9360,8815,0],[8815,9360,9354,0],[9354,9359,9355,0],[9355,8812,9354,0],[9354,8812,9356,0],[9356,8812,8813,0],[9354,9356,8815,0],[8815,9356,8813,0],[9360,8816,9357,0],[9357,43097,9362,0],[9357,9361,9358,0],[9358,9361,9359,0],[9355,9359,43096,0],[9357,9358,9360,0],[9359,9354,9358,0],[9358,9354,9360,0],[8811,43096,9361,0],[8811,9361,8810,0],[8810,9361,9362,0],[8810,9362,8819,0],[43098,8821,8820,0],[8820,43102,43098,0],[43102,8819,43098,0],[9733,8808,8805,0],[8810,9363,8811,0],[8811,9363,43077,0],[8811,43077,9364,0],[9355,9365,9368,0],[9368,9365,9366,0],[9366,43072,9367,0],[9367,43072,8759,0],[9367,8759,43069,0],[43069,8759,43073,0],[43073,8746,43067,0],[9355,9368,8812,0],[9369,43057,43060,0],[9369,43060,9614,0],[43079,9371,43091,0],[43091,9371,43063,0],[9430,43063,9423,0],[9422,9372,9375,0],[9372,8744,9374,0],[9374,9375,9372,0],[9375,9433,9376,0],[9377,9608,9428,0],[9428,9608,9378,0],[9428,9378,9379,0],[9427,9379,9380,0],[9427,9380,43084,0],[43084,9380,9381,0],[9623,9621,9382,0],[9382,9601,9383,0],[9383,9601,9384,0],[9626,9445,9385,0],[9385,9447,9627,0],[9627,9450,9386,0],[9386,9450,9387,0],[9389,9470,9390,0],[9389,9390,9391,0],[34515,9392,34513,0],[34513,9392,9465,0],[34513,9465,9464,0],[34513,9464,9393,0],[9394,9393,9462,0],[9397,9394,9517,0],[43003,9518,9395,0],[43003,9395,9519,0],[43003,9519,9520,0],[43003,9520,9396,0],[9396,9398,43002,0],[43002,9398,9397,0],[43002,9397,9517,0],[43002,9517,9518,0],[9394,9397,9398,0],[9412,34689,9399,0],[34508,34690,9400,0],[9666,9407,9667,0],[9660,9405,9645,0],[9645,9405,9406,0],[34511,9401,34514,0],[34514,9401,34695,0],[34514,34695,9666,0],[9666,34695,9407,0],[34701,9408,34693,0],[34701,34693,34503,0],[9409,34507,9289,0],[9410,9407,34695,0],[9407,9410,9408,0],[9408,9410,9411,0],[9408,9411,34693,0],[9667,9407,9408,0],[9667,9408,9402,0],[9412,9399,9413,0],[9412,9413,34509,0],[9414,9378,9420,0],[9420,9378,9440,0],[9420,9440,9415,0],[9419,9603,9382,0],[9382,9621,9419,0],[9414,9420,9380,0],[9380,9379,9414,0],[9414,9379,9378,0],[9380,9420,9381,0],[9420,9419,9381,0],[9381,9419,9621,0],[9603,9419,9418,0],[9423,9422,9424,0],[9424,9422,9425,0],[43089,9425,9426,0],[9379,9427,9428,0],[9377,9428,9376,0],[9426,9425,43082,0],[43082,9425,9427,0],[9427,9425,9429,0],[9427,9429,9428,0],[9425,43089,9424,0],[9424,43089,9430,0],[9422,9375,9421,0],[9375,9374,9433,0],[9433,9431,9376,0],[9376,9431,9377,0],[9377,9432,9608,0],[9374,9373,9433,0],[9434,9431,34581,0],[9434,34581,9576,0],[9434,9576,43020,0],[9610,9435,9571,0],[9571,9436,9611,0],[9611,9436,9437,0],[9611,9437,9438,0],[9438,9437,9439,0],[9439,9415,9440,0],[9415,9480,9416,0],[9416,9480,9479,0],[9416,9479,9441,0],[9416,9441,9442,0],[9416,9442,9604,0],[9604,9442,9605,0],[9605,9454,9443,0],[9443,9454,9444,0],[9443,9444,9607,0],[9602,9446,9445,0],[9602,9445,9384,0],[9602,9384,9601,0],[9445,9446,9447,0],[9627,9447,9450,0],[9387,9450,9388,0],[9385,9445,9447,0],[9446,9607,9449,0],[9449,9607,9472,0],[9449,9472,9448,0],[9449,9448,9450,0],[9450,9448,9388,0],[9388,9448,9471,0],[9450,9447,9449,0],[9449,9447,9446,0],[9442,9451,9452,0],[9442,9452,9605,0],[9605,9452,9453,0],[9605,9453,9454,0],[9454,9453,9455,0],[9454,9455,9444,0],[43041,9456,9589,0],[43041,9457,43039,0],[34519,9496,34518,0],[9462,9461,9463,0],[9463,9461,9553,0],[9394,9463,9517,0],[9394,9462,9463,0],[9462,9464,9467,0],[9462,9467,9461,0],[9464,9465,9467,0],[9467,9465,9466,0],[9460,9461,9467,0],[34517,9466,9468,0],[42996,9469,9390,0],[42996,9390,9470,0],[9474,9470,9471,0],[9471,9470,9389,0],[9390,9469,34515,0],[9464,9462,9393,0],[9444,9455,9473,0],[9444,9473,9472,0],[9472,9607,9444,0],[9448,9472,9473,0],[9448,9473,9471,0],[9474,9471,9473,0],[9473,9455,9456,0],[9473,9456,9474,0],[9442,9441,9451,0],[9451,9478,9586,0],[9475,9478,9476,0],[9475,9476,9582,0],[9582,9476,9436,0],[9436,9476,42998,0],[9436,42998,9437,0],[9439,9437,9477,0],[9439,9477,9479,0],[9479,9477,9481,0],[9481,9477,9476,0],[9476,9478,9481,0],[9480,9415,9439,0],[9439,9479,9480,0],[9441,9479,9481,0],[9441,9481,9451,0],[9451,9481,9478,0],[9581,9482,9483,0],[9581,9579,10348,0],[9581,10348,9484,0],[8359,9486,8361,0],[8361,9486,9485,0],[8359,9492,9486,0],[9486,9492,43038,0],[43038,9491,9487,0],[9488,9487,43031,0],[43031,9491,43030,0],[43030,9491,9490,0],[9489,9593,9492,0],[9492,9593,9490,0],[43038,9490,9491,0],[9487,9491,43031,0],[43038,9492,9490,0],[9492,9493,8357,0],[9492,8357,9489,0],[9489,8357,9494,0],[43036,9495,9594,0],[9594,9495,9496,0],[9494,9497,43036,0],[43036,9497,9495,0],[9495,9498,9496,0],[9499,9500,9559,0],[43007,43006,9556,0],[9501,8354,43015,0],[8355,9500,9498,0],[8355,9498,9497,0],[9498,9500,9496,0],[9496,9500,9499,0],[9496,9499,34518,0],[34518,9499,9459,0],[9459,9499,9502,0],[9459,9502,9503,0],[9459,9503,9460,0],[9460,9503,9461,0],[9461,9505,9504,0],[9504,9505,9506,0],[9504,9506,9561,0],[9504,9561,9507,0],[9507,9561,43029,0],[43029,9561,9508,0],[43029,9508,9509,0],[9509,9508,9510,0],[9509,9510,9511,0],[9511,9515,9519,0],[9519,9515,9512,0],[43021,9512,9514,0],[43021,9514,9513,0],[9514,9512,10352,0],[10352,9512,9515,0],[9509,9511,9395,0],[9520,9519,9512,0],[9520,9512,9521,0],[9522,9523,9524,0],[34616,9525,10353,0],[9527,9528,34221,0],[9529,34221,9530,0],[34139,9531,9552,0],[9552,34476,34607,0],[34607,34476,9532,0],[34500,9533,9534,0],[34500,9534,9535,0],[9535,9536,9537,0],[34332,9544,34336,0],[9539,9540,34333,0],[34333,9540,34153,0],[9541,9542,9543,0],[9543,9542,34151,0],[34332,9537,9544,0],[9545,9546,9547,0],[9547,9546,34478,0],[34478,9548,9547,0],[9547,34120,9545,0],[9544,9537,9536,0],[9536,9549,34126,0],[9536,34126,9544,0],[34221,9529,9527,0],[9527,9529,9550,0],[9551,9552,34606,0],[34606,9552,34607,0],[9524,9523,34616,0],[34616,9523,9525,0],[9525,9523,9513,0],[34689,9412,9398,0],[34689,9398,9396,0],[34689,9396,9521,0],[9516,9517,9463,0],[9516,9463,9553,0],[9517,9516,9518,0],[9553,9461,9504,0],[9504,9507,9553,0],[9461,9503,9505,0],[9505,9503,9560,0],[9555,9560,9554,0],[9555,9554,9556,0],[9560,9503,9557,0],[9554,9560,9557,0],[9557,9558,9554,0],[9554,9558,43007,0],[43007,9556,9554,0],[43007,9558,9559,0],[9559,9558,9502,0],[9502,9499,9559,0],[9558,9557,9502,0],[9502,9557,9503,0],[9506,9560,9555,0],[9561,9506,9562,0],[9561,9562,9569,0],[9569,9562,9570,0],[9566,9565,9567,0],[9566,9567,9556,0],[9566,9556,9501,0],[9564,9563,9565,0],[9565,9563,9570,0],[9565,9570,9567,0],[9567,9570,9562,0],[9562,9506,9555,0],[9562,9555,9567,0],[9567,9555,9556,0],[9564,8351,9563,0],[9563,8351,9570,0],[9570,8351,9568,0],[9508,9568,9510,0],[9568,9508,9561,0],[9568,9561,9569,0],[9568,9569,9570,0],[9498,9495,9497,0],[9484,10348,8360,0],[8360,8361,9485,0],[8360,9485,9484,0],[9483,9579,9581,0],[9436,9571,9482,0],[9482,9571,9580,0],[9580,9571,9572,0],[9580,9572,9573,0],[34575,9573,9574,0],[9574,43019,34580,0],[34580,43019,43018,0],[9575,43018,9576,0],[9575,9576,8740,0],[9573,9572,9577,0],[43019,9574,9577,0],[9577,9574,9573,0],[8363,8362,43001,0],[43001,8362,9578,0],[9579,8362,8360,0],[8362,9579,9578,0],[9579,9483,9578,0],[9482,9580,9483,0],[9483,9580,9578,0],[9436,9482,9581,0],[9582,9581,9484,0],[9436,9581,9582,0],[9475,9582,9583,0],[9583,9585,9487,0],[9487,9585,9584,0],[43038,9584,9486,0],[9584,9585,9485,0],[9485,9486,9584,0],[9585,9582,9484,0],[9585,9484,9485,0],[9585,9583,9582,0],[9475,9583,9478,0],[9586,43037,9488,0],[9586,9488,43033,0],[43045,43033,43034,0],[43045,43034,9587,0],[9587,43034,9588,0],[9587,9588,9589,0],[9589,9588,9457,0],[9589,9457,43041,0],[43039,9457,9598,0],[9457,9588,9590,0],[9595,9591,9592,0],[9592,9593,43036,0],[43036,9594,9592,0],[9592,9594,9595,0],[9595,9594,34519,0],[9596,34519,9458,0],[34519,9596,9595,0],[9595,9596,9591,0],[34519,9594,9496,0],[9590,43032,9597,0],[9597,9596,9598,0],[9598,9596,9458,0],[9597,9598,9457,0],[9597,9457,9590,0],[9596,9597,9591,0],[9591,9597,43032,0],[43037,9586,9478,0],[9418,9417,9599,0],[9599,9606,9600,0],[9601,9600,9602,0],[9601,9382,9603,0],[9601,9603,9600,0],[9603,9418,9599,0],[9599,9600,9603,0],[9416,9604,9417,0],[9417,9604,9599,0],[9599,9604,9605,0],[9605,9443,9606,0],[9606,9443,9607,0],[9446,9602,9607,0],[9607,9602,9606,0],[9606,9602,9600,0],[9605,9606,9599,0],[9438,9439,9609,0],[9608,9432,9609,0],[9611,9610,9571,0],[9611,9438,9610,0],[9610,9438,9609,0],[9609,9439,9608,0],[9608,9439,9440,0],[9608,9440,9378,0],[43020,9435,9612,0],[43020,9612,9434,0],[9435,9610,9612,0],[9434,9612,9609,0],[9434,9609,9432,0],[9434,9432,9431,0],[9431,9432,9377,0],[9609,9612,9610,0],[9431,9433,34581,0],[8812,43057,8813,0],[8813,43057,9369,0],[8813,9369,9613,0],[9613,9369,9681,0],[9681,9369,9614,0],[9614,9370,9615,0],[9672,9617,9618,0],[9618,9617,43078,0],[9618,43078,9668,0],[9668,43078,43081,0],[9668,43081,43087,0],[9668,43087,9619,0],[9620,43083,9381,0],[9620,9381,9621,0],[9621,9623,9622,0],[9630,9383,9624,0],[9625,9624,9647,0],[9647,9626,9646,0],[9646,9626,9385,0],[9646,9385,9655,0],[9655,9385,9644,0],[9644,9385,9627,0],[9644,9627,9386,0],[9644,9386,9628,0],[9628,9386,9629,0],[9628,9629,9645,0],[9660,9645,9629,0],[9630,9633,9623,0],[9623,9633,9622,0],[9622,9633,9631,0],[9632,9633,34713,0],[9648,9649,9634,0],[9635,9658,9650,0],[9636,9635,9651,0],[9652,9637,9642,0],[9642,9637,8924,0],[9642,8924,9638,0],[9641,9638,8923,0],[8918,8923,9639,0],[9642,9641,9640,0],[9642,9640,9652,0],[9640,9641,9651,0],[9651,9641,42995,0],[9651,42995,9636,0],[8918,9641,8923,0],[9641,9642,9638,0],[42985,9639,8922,0],[8922,9639,8923,0],[42533,9637,9643,0],[42533,9643,9628,0],[9628,9643,9644,0],[9644,9643,9655,0],[8925,9645,9406,0],[9645,8925,9628,0],[9628,8925,42533,0],[9632,9631,9633,0],[9633,9630,9625,0],[9625,9630,9624,0],[9649,9625,9647,0],[9649,9647,9654,0],[9654,9646,9655,0],[9646,9654,9647,0],[9633,9625,9648,0],[9634,9649,9656,0],[9634,9656,9658,0],[9635,9650,9651,0],[9652,9640,9657,0],[9652,9657,9653,0],[9655,9643,9653,0],[9655,9653,9654,0],[9653,9643,9652,0],[9652,9643,9637,0],[9654,9653,9656,0],[9656,9649,9654,0],[9653,9657,9656,0],[9656,9657,9658,0],[9658,9657,9650,0],[9649,9648,9625,0],[9688,9659,9632,0],[9670,9688,9632,0],[9631,9632,9659,0],[9631,9659,9622,0],[9383,9384,9624,0],[9626,9624,9445,0],[9445,9624,9384,0],[9647,9624,9626,0],[9660,9661,9404,0],[9404,9661,9663,0],[43042,9663,9664,0],[9664,9663,9662,0],[9387,9661,9660,0],[9387,9660,9629,0],[9387,9629,9386,0],[9661,9387,9663,0],[9662,9663,9471,0],[9662,9471,9389,0],[9389,9391,9662,0],[9662,9391,9664,0],[9667,9664,9665,0],[9665,34514,9666,0],[9665,9666,9667,0],[9667,43043,9664,0],[43043,9402,9403,0],[9667,9402,43043,0],[9471,9663,9388,0],[9388,9663,9387,0],[9383,9630,9382,0],[9382,9630,9623,0],[9621,9622,9620,0],[9620,9622,9659,0],[9659,9619,43083,0],[43083,9620,9659,0],[9618,9668,9669,0],[9669,9688,9670,0],[9670,9671,9669,0],[9618,9669,9672,0],[43054,9674,9675,0],[9680,9678,9683,0],[9680,9683,9615,0],[9615,9683,9614,0],[9615,9679,9680,0],[9680,9617,9673,0],[9673,9617,9672,0],[9617,9680,9679,0],[9616,9679,9615,0],[9680,9673,9677,0],[9677,9673,9676,0],[9613,9681,8814,0],[8813,9613,8814,0],[8814,9681,9682,0],[9682,9681,9683,0],[9682,9683,9678,0],[9678,9685,9682,0],[9682,9685,8905,0],[8905,9685,9684,0],[9684,9685,8908,0],[9684,8908,8907,0],[8899,8907,8898,0],[9678,9677,43194,0],[9678,43194,9685,0],[9685,9686,43052,0],[9685,43052,8908,0],[9688,9687,9659,0],[9669,9668,9687,0],[9669,9687,9688,0],[9668,9619,9687,0],[9687,9619,9659,0],[43077,9363,9689,0],[9690,9689,9732,0],[9690,9732,9691,0],[9690,9691,43076,0],[9692,9727,9693,0],[9694,9693,9695,0],[9694,9695,9697,0],[9697,9695,9696,0],[9697,9696,8723,0],[9696,9698,9699,0],[9699,9724,9696,0],[9696,9695,9698,0],[9698,9695,9721,0],[9700,9721,9725,0],[9700,9725,9728,0],[9701,9716,9702,0],[9702,9716,9705,0],[9705,9717,9704,0],[9704,9717,9714,0],[9714,9717,9703,0],[9714,9703,8800,0],[8800,9703,9777,0],[9705,9707,9706,0],[9706,9707,9708,0],[8721,9709,9710,0],[9710,8795,8790,0],[8790,8795,8794,0],[8796,8795,9711,0],[9711,9709,9704,0],[9704,9709,45470,0],[45470,9709,9707,0],[9708,9707,9709,0],[9709,9711,9710,0],[9711,8795,9710,0],[8796,9711,45469,0],[8796,45469,9821,0],[9821,45469,9712,0],[9712,8800,9713,0],[9713,8799,9712,0],[9704,45470,9705,0],[9705,45470,9707,0],[8721,9715,9709,0],[9709,9715,9708,0],[9715,8787,9708,0],[8787,9722,9708,0],[9705,9706,9702,0],[9728,9701,9700,0],[9717,9705,9716,0],[9717,9716,9718,0],[9718,9716,9720,0],[9720,8801,9719,0],[8801,43152,9719,0],[9720,9716,9729,0],[9720,9729,43156,0],[9700,9701,9702,0],[9700,9702,9723,0],[9702,9706,9723,0],[9723,9706,9722,0],[9722,9706,9708,0],[9723,9722,9699,0],[9699,9722,9724,0],[8789,9724,9722,0],[9721,9700,9698,0],[9691,9732,9692,0],[9732,9727,9692,0],[9727,9725,9693,0],[9693,9721,9695,0],[9721,9693,9725,0],[9725,9727,9726,0],[9729,9728,9730,0],[9730,9728,9725,0],[9730,9725,9726,0],[9733,8805,8804,0],[8804,9726,9733,0],[9733,9726,9731,0],[9731,9727,9732,0],[9731,9732,9689,0],[9694,9692,9693,0],[8762,9692,9694,0],[8762,9694,8724,0],[9363,8808,9689,0],[9689,8808,9733,0],[9689,9733,9731,0],[8719,8792,8718,0],[8612,43180,45471,0],[9736,9735,9762,0],[9736,9762,9737,0],[9739,9737,9764,0],[9738,8718,9739,0],[9739,9736,9737,0],[9739,9764,9738,0],[9734,9735,9736,0],[9736,9739,43180,0],[8716,8610,8715,0],[8610,9765,8715,0],[8715,9765,9756,0],[8620,9740,8690,0],[9756,9740,9752,0],[9756,9752,9755,0],[9755,9752,8732,0],[8732,9752,8765,0],[8765,9752,9754,0],[8765,9754,9741,0],[9741,9754,9742,0],[9742,9754,8621,0],[9742,8621,9743,0],[34583,9744,9750,0],[9745,34584,34585,0],[9746,34590,9751,0],[9746,9751,8624,0],[9746,8624,9747,0],[9747,8624,8625,0],[8624,9751,9748,0],[9748,9751,8709,0],[8709,9751,9749,0],[8622,9749,9750,0],[8622,9750,9744,0],[34584,9750,9749,0],[34584,9749,9751,0],[34584,9751,34585,0],[8709,9749,8623,0],[8623,9749,8622,0],[34583,9742,9744,0],[8622,9744,9743,0],[9743,9744,9742,0],[34561,8621,9754,0],[34561,9754,9752,0],[34561,9752,9753,0],[9753,9752,9740,0],[9756,9755,9761,0],[9756,9761,8715,0],[8715,9761,9757,0],[8715,9757,8716,0],[8716,9757,9734,0],[9757,9758,9735,0],[9735,9758,8775,0],[9735,8775,9762,0],[9762,8775,9759,0],[9762,9759,9760,0],[9760,9759,8783,0],[9761,8729,9757,0],[8729,9761,8730,0],[8730,9761,9755,0],[9734,9757,9735,0],[9762,9760,9763,0],[9738,9764,8720,0],[9738,8720,8719,0],[9764,9737,9763,0],[9763,9737,9762,0],[9763,8785,9764,0],[9764,8785,8786,0],[8720,9764,8786,0],[9740,9756,9765,0],[9740,9765,8690,0],[8690,9765,8619,0],[8603,43182,8688,0],[8599,10119,43513,0],[43513,10119,43191,0],[43509,8599,9766,0],[9766,43510,9839,0],[9839,43510,9784,0],[9839,9784,9840,0],[9854,9784,9767,0],[9851,9767,9768,0],[9768,9782,9769,0],[9782,9785,10114,0],[9825,9771,9772,0],[10109,9772,9826,0],[9826,9772,9798,0],[9831,9798,9773,0],[9773,9797,43131,0],[43131,9797,9794,0],[43132,9794,9774,0],[9796,9778,43134,0],[43134,9778,43122,0],[43122,9775,43152,0],[43152,9775,9776,0],[9776,9775,9713,0],[9776,9777,43152,0],[9713,9775,8798,0],[8798,9778,8797,0],[9778,9796,9824,0],[9824,9796,9792,0],[9781,9782,43512,0],[43512,9782,9783,0],[9783,9767,43510,0],[43510,9767,9784,0],[9783,9768,9767,0],[9768,9783,9782,0],[9782,9781,9785,0],[9785,9781,9789,0],[43536,9780,9791,0],[43536,9791,9786,0],[9786,9791,9787,0],[9786,9787,9788,0],[9788,9787,9799,0],[9785,9789,9770,0],[9770,9789,9786,0],[9770,9786,9788,0],[9790,9786,9789,0],[9790,43536,9786,0],[9780,9779,9791,0],[9792,9791,9824,0],[9792,9795,9793,0],[9774,9794,9795,0],[9774,9795,9796,0],[9796,9795,9792,0],[9793,9795,9794,0],[9794,9797,9800,0],[9800,9797,9798,0],[9798,9772,9771,0],[9798,9771,9800,0],[9800,9771,9799,0],[9793,9799,9792,0],[9792,9787,9791,0],[9800,9799,9793,0],[9800,9793,9794,0],[9773,9798,9797,0],[43122,9778,8798,0],[43122,8798,9775,0],[9822,9823,9801,0],[9801,9823,9802,0],[9802,9803,9801,0],[9801,9803,9804,0],[43539,9805,43538,0],[9806,8794,8796,0],[43539,9804,9816,0],[43539,9816,45472,0],[9807,9819,8602,0],[8602,9819,8601,0],[8601,9819,9818,0],[43539,45472,9805,0],[9805,45472,9808,0],[9815,9810,9811,0],[9815,9811,9813,0],[9813,9811,9812,0],[8614,9811,8618,0],[8614,9812,9811,0],[9814,43181,8792,0],[9815,9813,9814,0],[9815,9814,8793,0],[8792,8793,9814,0],[9808,9809,9810,0],[9808,9810,9805,0],[9805,9810,9815,0],[9815,8793,9806,0],[8794,9806,8791,0],[8791,9806,8793,0],[9806,43538,9815,0],[9815,43538,9805,0],[9804,9803,9816,0],[9816,9817,9807,0],[9807,9817,43533,0],[9818,43533,43535,0],[43513,43535,43541,0],[43541,43540,43511,0],[43533,9818,9819,0],[43533,9819,9807,0],[9821,8799,9822,0],[9822,8799,8797,0],[9821,9822,9820,0],[9820,9822,9801,0],[9822,8797,9823,0],[9778,9824,9823,0],[9778,9823,8797,0],[9799,9771,9770,0],[9799,9770,9788,0],[9825,9772,10113,0],[10113,9772,10109,0],[9826,9798,9832,0],[9828,9827,10112,0],[10112,9827,9829,0],[9830,9829,43126,0],[43126,9829,9831,0],[43126,9831,9773,0],[9832,9831,9829,0],[9829,9827,9832,0],[9832,9827,9826,0],[9825,9770,9771,0],[9770,9825,9785,0],[43509,9766,9839,0],[9833,9856,9834,0],[43508,9836,9838,0],[9838,9836,9837,0],[9838,9837,8596,0],[9839,9840,9833,0],[9833,9840,9856,0],[9856,9840,9852,0],[9856,9852,9841,0],[9843,9841,9842,0],[9843,9842,9849,0],[9843,9849,9845,0],[45424,9845,9844,0],[9844,9845,9848,0],[9850,9846,9847,0],[9847,10103,9897,0],[9846,10103,9847,0],[9845,9849,9848,0],[9848,9847,9897,0],[9847,9849,9850,0],[9846,9850,9855,0],[9850,9849,9853,0],[9850,9853,43542,0],[9767,9851,9854,0],[9854,9841,9852,0],[9854,9852,9784,0],[9784,9852,9840,0],[9841,9854,9842,0],[9842,9854,9853,0],[43542,9853,9851,0],[9853,9849,9842,0],[9851,9853,9854,0],[9850,43542,9855,0],[9847,9848,9849,0],[9856,9857,9862,0],[9862,9857,9861,0],[43328,9843,9845,0],[9856,9858,9834,0],[9834,9858,9859,0],[9834,9859,9836,0],[9834,9836,43508,0],[9837,9836,9870,0],[9859,9863,9860,0],[43330,9863,9861,0],[9870,9836,9859,0],[9859,9858,9863,0],[9858,9862,9861,0],[9858,9861,9863,0],[9862,9858,9856,0],[8596,9837,9865,0],[9865,9837,9864,0],[9866,9865,8593,0],[9866,8593,8595,0],[9868,9869,8567,0],[8591,9868,8590,0],[9868,8567,8590,0],[8590,8567,8588,0],[9868,9867,9869,0],[8567,9869,8568,0],[8568,9869,8572,0],[8569,8572,8570,0],[8572,9869,9867,0],[8568,8572,8569,0],[9867,8593,8573,0],[8573,8593,9865,0],[8573,9865,9864,0],[8573,9864,8574,0],[8574,9864,9837,0],[8574,9837,9870,0],[9860,9870,9859,0],[8575,8574,8578,0],[8578,8574,9871,0],[8578,9871,8577,0],[8577,9871,9872,0],[9873,43331,9874,0],[9874,43331,45431,0],[9874,45431,9875,0],[9875,45420,9876,0],[9876,45420,45423,0],[9876,45423,9877,0],[44850,44849,9878,0],[44850,9878,9879,0],[9880,8410,9881,0],[9880,9881,9885,0],[9880,9885,9879,0],[9879,9885,9884,0],[9879,9884,9883,0],[9879,9883,44850,0],[44854,9881,45414,0],[44850,9882,44849,0],[44849,9882,9877,0],[9885,9881,44855,0],[9885,44855,9884,0],[8409,8410,9886,0],[8409,9886,9887,0],[47674,9887,9888,0],[47674,9888,43233,0],[43233,9888,9889,0],[9889,9888,43308,0],[9889,43308,9890,0],[9889,9890,10116,0],[10116,9890,43307,0],[9891,43307,9892,0],[9892,43307,9893,0],[9892,9893,9900,0],[9900,9893,9895,0],[9895,9893,9894,0],[9895,9894,9896,0],[9896,9898,9897,0],[9897,9898,9848,0],[9898,9896,43506,0],[43506,9896,9894,0],[9894,9893,43506,0],[9898,43506,9848,0],[9848,43506,9844,0],[9899,9891,9900,0],[9915,9895,9896,0],[9915,9896,9902,0],[9902,9896,10103,0],[9903,9902,43302,0],[43302,9902,9904,0],[9904,10101,9905,0],[9905,43312,9906,0],[9906,43310,9907,0],[10098,9907,9908,0],[10098,9908,43140,0],[9911,9909,9910,0],[9913,9916,9922,0],[9913,9922,9921,0],[9913,9921,10102,0],[9914,9915,9903,0],[9918,9927,9924,0],[9932,9933,9919,0],[9919,9933,9939,0],[9920,9921,9923,0],[9923,9921,9922,0],[9922,9926,9918,0],[9922,9918,9923,0],[9926,9922,9917,0],[9917,9922,9916,0],[9932,9919,9924,0],[9924,9919,43247,0],[9924,43247,9925,0],[9925,9923,9918,0],[9918,9924,9925,0],[9918,9926,9927,0],[9927,9926,9928,0],[9929,9917,9930,0],[9930,9917,9916,0],[9930,9916,9912,0],[9912,43306,9911,0],[9912,9911,9910,0],[9912,9910,9930,0],[9930,9910,9931,0],[9917,9929,9926,0],[9928,9926,9929,0],[9924,9927,43169,0],[9924,43169,9932,0],[9933,9932,9934,0],[9935,43166,9938,0],[9936,43175,9937,0],[8845,9937,8856,0],[9938,10083,9933,0],[9933,10083,9939,0],[9940,43245,10084,0],[9940,10084,43243,0],[43243,9941,10075,0],[43243,10075,9942,0],[9942,10075,9943,0],[9943,10076,9944,0],[9944,10076,9945,0],[9944,9945,10077,0],[9944,10077,43242,0],[43242,10077,9946,0],[9946,10068,34679,0],[34679,10068,10067,0],[9947,10067,10092,0],[9947,10092,9975,0],[9973,9975,9948,0],[9948,9313,9973,0],[9954,9955,10059,0],[10059,9955,9956,0],[9956,9957,45567,0],[9957,9958,9959,0],[9959,9958,9960,0],[46872,9961,9962,0],[46872,9962,45602,0],[45602,9962,9963,0],[9964,9965,9966,0],[16581,16582,16673,0],[16673,16582,9967,0],[9967,16582,9968,0],[9968,16586,45605,0],[45605,16586,45607,0],[45605,45606,45603,0],[9968,45603,9967,0],[45603,9968,45605,0],[9962,9961,9340,0],[9958,9961,9960,0],[9961,9958,9339,0],[9339,9958,9345,0],[9345,9958,9957,0],[9957,9956,9338,0],[9338,9956,9969,0],[9336,9969,9971,0],[9336,9971,9334,0],[9308,9343,9311,0],[9311,9343,9334,0],[9311,9334,9312,0],[9312,9334,9971,0],[9970,9971,9972,0],[9972,9954,9953,0],[9971,9969,9972,0],[9954,9972,9955,0],[9972,9969,9955,0],[9312,9971,9970,0],[9313,9970,9972,0],[9972,9953,9976,0],[9976,9953,9950,0],[9950,9953,9951,0],[9951,9953,9952,0],[9976,9949,9972,0],[9973,9313,9972,0],[9972,9949,9973,0],[9334,9335,9336,0],[9336,9338,9969,0],[9962,9341,9963,0],[9341,9342,9963,0],[9963,9342,9974,0],[9963,9974,9964,0],[9964,9974,9965,0],[10060,9977,9978,0],[9978,9992,9979,0],[10063,10066,9980,0],[9980,9990,45611,0],[45611,9990,10057,0],[9981,9982,9983,0],[9983,9982,10056,0],[9954,10059,9986,0],[9952,9953,9986,0],[9986,9953,9954,0],[9986,9987,9952,0],[9952,9987,9993,0],[9952,9993,9951,0],[10059,9994,9986,0],[9986,9994,9985,0],[9986,9985,9987,0],[9993,9987,9988,0],[9991,9988,9989,0],[9989,45583,9990,0],[9989,9990,9980,0],[9989,9980,10066,0],[9989,10066,9991,0],[9988,9991,10065,0],[10065,9992,9993,0],[9993,9992,9951,0],[9951,9992,9950,0],[9993,9988,10065,0],[10065,9979,9992,0],[9992,9978,9977,0],[9994,10059,45568,0],[9995,45568,9996,0],[9995,9996,10002,0],[10002,9996,9997,0],[45587,9998,45571,0],[45589,16654,45592,0],[45592,16654,9999,0],[10001,10000,43670,0],[10001,43688,10000,0],[9997,9998,45587,0],[9997,45587,10002,0],[10002,10003,10004,0],[10004,10003,43285,0],[43285,10003,45586,0],[43285,45586,10048,0],[10048,45586,10005,0],[10006,45593,10007,0],[10051,10008,10009,0],[10055,10010,10044,0],[10055,10044,10011,0],[8398,10011,10012,0],[8398,10012,10013,0],[10013,10012,45319,0],[10013,45319,10014,0],[10013,10014,8396,0],[8396,10014,10015,0],[8396,10015,8395,0],[8395,10015,10016,0],[10172,10016,10017,0],[10017,10022,10019,0],[10019,10022,10018,0],[10018,10174,10019,0],[10174,10176,10020,0],[10020,10021,10170,0],[10015,10014,10022,0],[10022,10014,10018,0],[10018,10014,10023,0],[10023,10025,10024,0],[10023,10024,10174,0],[10023,10174,10018,0],[10024,10025,8385,0],[8385,10025,10026,0],[10027,10028,10037,0],[10037,10028,10036,0],[10031,10030,10007,0],[10031,10007,10032,0],[10032,10007,10033,0],[45586,10058,10035,0],[10035,10058,45587,0],[10035,45587,45588,0],[45588,10034,10035,0],[10032,45594,45598,0],[10032,45598,10031,0],[10030,10031,45596,0],[10030,45596,10036,0],[10036,45596,10037,0],[10027,10037,10038,0],[10027,10038,10039,0],[10040,10039,43678,0],[10040,43678,10041,0],[10039,10040,10042,0],[10040,8384,10042,0],[10042,8384,10026,0],[10026,8384,8385,0],[10030,10036,10008,0],[10008,10036,10028,0],[10008,10028,10029,0],[10032,10033,45594,0],[45594,10033,10035,0],[10008,10051,10030,0],[10030,10051,10007,0],[10008,10029,10009,0],[10009,10029,10010,0],[10010,10029,10044,0],[10027,10042,45320,0],[10027,45320,10028,0],[10028,10043,10044,0],[10028,10044,10029,0],[10044,10043,10012,0],[10044,10012,10011,0],[10022,10017,10015,0],[10015,10017,10016,0],[10014,10045,10023,0],[10023,10045,10025,0],[10025,10045,10026,0],[10026,45320,10042,0],[10014,45319,10045,0],[8396,8397,10013,0],[10013,8397,43754,0],[10013,43754,8398,0],[9995,10046,9984,0],[9994,9984,9985,0],[9984,9994,45568,0],[9984,45568,9995,0],[10002,10004,9995,0],[9995,10004,10046,0],[43279,10048,43278,0],[43278,10048,43284,0],[43278,43284,10049,0],[10049,43283,10050,0],[10050,43286,43270,0],[43270,43286,43266,0],[43266,43286,10051,0],[43266,10051,43265,0],[43265,10051,10009,0],[43265,10009,10052,0],[10054,10053,43755,0],[43755,10053,10011,0],[10011,10053,10055,0],[10010,10055,10052,0],[10010,10052,10009,0],[10052,10055,43262,0],[43262,10055,10053,0],[10056,9984,10046,0],[45587,10058,10002,0],[10002,10058,10003,0],[9975,9976,9947,0],[9947,9976,9950,0],[9947,9950,9977,0],[10060,9978,10061,0],[34680,10061,9979,0],[34680,9979,34681,0],[34681,9979,10064,0],[10064,9979,10065,0],[10064,10065,10066,0],[10066,10065,9991,0],[10066,10063,10064,0],[9979,10061,9978,0],[9975,9973,9949,0],[9975,9949,9976,0],[9992,9977,9950,0],[10085,10068,10077,0],[10085,10078,10080,0],[10071,10070,10094,0],[10094,10070,8845,0],[8845,10070,10072,0],[8845,10072,9937,0],[10070,10069,10072,0],[10079,9936,9937,0],[10081,9936,10074,0],[10075,10074,10076,0],[9943,10075,10076,0],[9945,10085,10077,0],[9945,10076,10085,0],[10085,10076,10078,0],[10080,10078,10079,0],[10079,10078,10074,0],[10074,10078,10076,0],[10079,10073,10080,0],[10069,10080,10072,0],[10072,10080,10073,0],[10079,10074,9936,0],[9938,10081,9941,0],[9938,9941,10082,0],[10082,9941,43243,0],[10074,10075,9941,0],[9941,10081,10074,0],[10083,10084,9939,0],[9939,10084,43245,0],[9938,10082,10083,0],[10083,10082,10084,0],[10079,9937,10073,0],[10073,9937,10072,0],[10068,10085,10086,0],[10068,10086,10093,0],[10091,10087,10088,0],[10088,10087,10095,0],[10089,9316,9315,0],[10089,9315,10090,0],[10091,10088,10090,0],[10090,10088,10089,0],[10090,9315,10092,0],[10093,10092,10067,0],[10093,10067,10068,0],[10093,10086,10091,0],[10093,10091,10090,0],[10093,10090,10092,0],[10080,10069,10085,0],[10085,10069,10086,0],[10086,10071,10091,0],[10091,10071,10087,0],[10071,10086,10069,0],[10069,10070,10071,0],[10097,10096,43227,0],[10097,43227,10088,0],[10097,10088,10095,0],[10096,9318,43227,0],[43227,10089,10088,0],[9315,9948,9975,0],[9315,9975,10092,0],[9933,9934,9938,0],[9938,9934,9935,0],[43306,10099,9911,0],[10098,43140,10099,0],[9911,10099,43140,0],[9904,9902,10100,0],[9904,10100,10101,0],[9915,9914,9895,0],[9895,9914,9901,0],[9901,9914,10102,0],[43314,10102,9914,0],[9903,9915,9902,0],[9896,9897,10103,0],[9902,10103,10100,0],[10100,10103,9846,0],[9846,9855,10104,0],[10104,9855,10106,0],[10104,10106,10108,0],[10104,10108,10110,0],[9905,10105,43312,0],[9905,10101,10105,0],[10105,10101,10110,0],[10101,10115,10110,0],[10110,10115,10104,0],[9855,43542,10107,0],[9855,10107,10106,0],[9769,10107,9768,0],[43542,9768,10107,0],[10107,9769,10106,0],[10110,10108,10109,0],[10111,9827,9828,0],[10111,9828,43312,0],[43312,9828,43310,0],[43310,9828,43141,0],[43141,9828,10112,0],[9827,10111,10109,0],[10109,9826,9827,0],[10109,10108,10113,0],[9769,9782,10114,0],[10114,9785,10113,0],[10113,9785,9825,0],[9769,10114,10106,0],[10106,10114,10108,0],[10101,10100,10115,0],[10115,9846,10104,0],[9846,10115,10100,0],[9892,9900,9891,0],[9891,9899,43307,0],[43307,9899,10116,0],[9889,10116,10117,0],[43233,9889,10117,0],[9887,47674,10118,0],[10118,47674,43295,0],[9879,45317,9880,0],[9860,8574,9870,0],[9865,9866,8595,0],[8595,8596,9865,0],[43508,9835,9834,0],[8597,8598,43188,0],[8598,8597,10119,0],[8590,8589,10120,0],[8590,10120,10121,0],[10121,10120,8604,0],[10121,8604,8603,0],[8683,10120,8589,0],[10122,10123,10124,0],[10124,10123,8566,0],[10122,10124,8588,0],[10122,8588,8564,0],[8564,10135,10125,0],[10125,10135,10126,0],[10126,10136,10139,0],[10129,10130,8579,0],[8579,10130,10131,0],[10131,10130,10128,0],[10128,10127,10131,0],[10131,10127,10132,0],[10135,10134,10126,0],[10126,10134,10136,0],[10139,10136,10127,0],[10127,10136,10132,0],[8585,45432,10129,0],[10129,45432,45433,0],[10129,45433,10130,0],[10130,45433,45435,0],[10130,45435,10128,0],[10128,45435,10137,0],[8562,10138,10137,0],[10138,10140,10137,0],[10137,10140,10128,0],[10128,10140,10127,0],[10126,10139,8563,0],[8563,10139,10138,0],[8562,8420,43813,0],[43335,10141,43809,0],[43335,43809,43505,0],[43505,10142,10143,0],[10143,10142,10145,0],[10143,10145,10144,0],[10144,10145,10146,0],[10147,10146,10148,0],[43340,10148,10149,0],[43802,10149,44883,0],[43802,44883,10150,0],[10150,44883,43800,0],[43800,44883,10151,0],[43804,10151,44882,0],[43804,44882,43796,0],[10153,10146,10145,0],[10153,10145,10154,0],[10154,10145,10142,0],[10146,10147,10144,0],[8562,43813,43334,0],[43334,43374,8563,0],[8412,10156,10155,0],[10155,10156,8401,0],[8401,10156,8402,0],[8412,10155,8413,0],[8413,10155,10163,0],[8413,10163,45437,0],[45437,10163,10157,0],[10165,10158,10159,0],[10165,10159,44874,0],[10159,10160,8518,0],[8519,8518,10160,0],[8519,10160,43387,0],[43387,44877,10161,0],[10161,44877,10162,0],[8402,10162,8401,0],[8402,8400,10162,0],[10160,44877,43387,0],[10155,45439,10163,0],[10157,10163,10158,0],[10158,10163,10159,0],[8414,45437,10157,0],[8414,10157,10158,0],[10164,10158,10165,0],[10164,10165,10166,0],[8511,8415,10166,0],[8512,8525,10165,0],[8512,10165,44874,0],[10158,10164,44844,0],[10158,44844,8414,0],[8525,10166,10165,0],[8402,8403,8400,0],[10054,8400,43263,0],[8403,43263,8400,0],[43752,10167,10171,0],[10171,10167,10168,0],[10171,10168,8394,0],[8394,10168,10169,0],[10016,10172,8394,0],[10168,10167,8393,0],[10167,43752,8391,0],[43752,10171,10175,0],[10175,10171,10173,0],[10173,10171,10172,0],[8394,10172,10171,0],[10172,10017,10173,0],[10175,10173,10174,0],[10019,10174,10173,0],[10019,10173,10017,0],[10174,10020,10175,0],[10175,10170,43751,0],[10175,43751,43752,0],[10170,10175,10020,0],[43738,8390,8387,0],[8387,8389,43738,0],[10021,8390,10170,0],[8390,10021,8387,0],[8387,10020,10176,0],[8387,10176,8386,0],[10020,8387,10021,0],[8380,43620,43621,0],[43621,10195,10196,0],[10177,10196,10197,0],[10177,10197,10178,0],[8378,8379,10179,0],[10196,10179,43621,0],[10179,8379,43621,0],[43621,8379,8380,0],[8380,8379,10208,0],[8380,10208,10181,0],[10181,10208,10180,0],[10181,10180,10186,0],[10186,10180,43583,0],[43583,10180,10209,0],[43583,10209,10182,0],[8634,10207,8372,0],[8634,8372,10183,0],[8634,10184,43583,0],[43583,10184,10185,0],[10181,10186,8643,0],[10181,8643,43584,0],[8642,8643,10187,0],[8642,10187,8644,0],[8643,10186,10187,0],[10186,10185,10187,0],[10187,10185,43579,0],[43579,10188,10187,0],[10187,10188,8644,0],[8644,10188,8640,0],[8640,10188,8639,0],[8639,10188,8638,0],[10210,10178,10189,0],[10189,10178,10197,0],[10189,10197,10198,0],[10198,10201,10190,0],[43654,10190,10191,0],[43651,10191,10202,0],[10202,10200,10192,0],[10192,10194,10193,0],[10193,10194,43653,0],[43653,10194,10195,0],[10197,10199,10198,0],[10196,10195,10199,0],[10199,10194,10200,0],[10200,10194,10192,0],[10190,10201,10202,0],[10202,10201,10200,0],[10202,10191,10190,0],[10201,10198,10199,0],[10200,10201,10199,0],[10178,10210,10211,0],[10206,10211,10204,0],[10204,10211,10203,0],[10178,10211,10206,0],[10177,10206,10205,0],[10177,10205,8378,0],[10209,8378,10182,0],[10182,8378,10205,0],[10205,10206,10204,0],[10182,10205,8634,0],[8634,10205,10207,0],[10292,10204,10203,0],[8378,10209,10208,0],[10208,10209,10180,0],[8375,10210,10189,0],[10210,8374,10211,0],[8373,10203,10211,0],[10210,8375,8374,0],[8373,10211,8374,0],[8374,10213,10212,0],[10212,10213,10214,0],[10212,10214,10295,0],[10295,10215,10216,0],[10216,10215,43575,0],[10216,43575,10217,0],[10217,43575,10218,0],[10218,43576,10219,0],[10222,43572,10221,0],[8370,10223,8369,0],[8369,10223,10224,0],[8369,10224,10312,0],[10312,10224,10225,0],[34531,34535,10227,0],[10320,10229,10230,0],[34520,34523,10231,0],[10256,10248,10235,0],[10256,10235,10234,0],[10275,10252,10237,0],[10237,10236,10238,0],[10240,8139,10249,0],[10240,10249,10242,0],[10240,10242,10241,0],[10241,10242,10246,0],[10246,10242,10244,0],[10244,10242,10247,0],[10244,10247,10243,0],[10244,10243,45527,0],[10244,45527,10245,0],[10245,45527,8135,0],[10241,8138,10240,0],[10241,10246,8137,0],[8137,10246,10245,0],[10245,10246,10244,0],[8137,10245,8240,0],[10240,45447,8139,0],[45443,10250,10251,0],[10248,10251,10235,0],[10242,10249,10247,0],[10247,10249,10250,0],[10250,10255,10251,0],[10251,10255,10252,0],[10251,10252,10235,0],[10249,10253,10250,0],[10250,10253,10255,0],[8140,10238,10239,0],[10239,10238,10254,0],[10254,10236,10255,0],[10252,10255,10236,0],[10239,10254,8139,0],[8139,10253,10249,0],[10254,10255,8139,0],[8139,10255,10253,0],[10238,10236,10254,0],[10252,10236,10237,0],[10252,10275,10235,0],[10235,10275,10234,0],[10234,10283,10256,0],[10258,10256,10261,0],[10258,10261,10288,0],[10257,10258,10289,0],[10257,10289,43015,0],[10258,10259,10256,0],[10256,10259,10260,0],[10260,43012,34524,0],[34524,43012,10333,0],[34524,10333,10233,0],[10232,10233,10231,0],[10261,10262,10263,0],[10264,10263,10265,0],[10266,10281,10267,0],[43026,10268,8143,0],[8143,10268,10269,0],[8143,10269,10270,0],[10270,10269,10273,0],[8140,10270,10238,0],[8140,10271,10270,0],[10270,10271,10272,0],[8142,10272,10271,0],[10238,10270,10273,0],[10238,10273,10237,0],[10237,10274,10275,0],[10276,10275,10279,0],[10276,10279,10277,0],[10277,10278,10280,0],[10282,10278,10274,0],[10279,10278,10277,0],[10278,10279,10274,0],[10274,10279,10275,0],[10237,10273,10269,0],[10274,10237,10269,0],[10274,10269,10282,0],[10278,10282,10281,0],[10278,10281,10280,0],[10266,10280,10281,0],[10281,10282,10268,0],[10268,10282,10269,0],[10277,10265,10263,0],[10275,10276,10283,0],[10275,10283,10234,0],[10277,10263,10276,0],[10276,10263,10262,0],[10268,8144,10281,0],[10281,8144,10267,0],[10266,10267,10358,0],[10266,10358,10284,0],[10284,10358,8348,0],[10284,8348,8350,0],[8350,8348,10285,0],[10286,10287,10265,0],[10265,10287,10264,0],[10286,10265,10284,0],[10284,8350,10286,0],[10264,10287,10290,0],[10264,10290,10263,0],[8350,9564,10286,0],[10286,9564,10287,0],[10287,9564,8353,0],[10287,8353,10290,0],[10288,10290,10289,0],[10288,10289,10258,0],[10289,10290,8353,0],[10263,10288,10261,0],[10256,10283,10261,0],[10261,10283,10262,0],[10276,10262,10283,0],[8371,10222,8370,0],[8370,10222,10221,0],[8370,10221,10223,0],[10220,43572,10291,0],[10220,10291,10294,0],[10216,10217,10292,0],[10292,10217,10293,0],[10292,10293,10294,0],[10220,10294,10219,0],[10219,10294,10293,0],[10218,10219,10293,0],[10218,10293,10217,0],[8373,10212,10295,0],[8373,10295,10203,0],[10203,10295,10216,0],[8368,10296,43017,0],[43017,10296,10297,0],[10300,10298,10299,0],[10299,10298,8631,0],[8630,8631,10298,0],[8630,10298,8366,0],[8366,10298,10347,0],[10299,8632,10300,0],[10300,8632,10297,0],[10297,10296,8367,0],[10297,8367,10300,0],[10347,10300,10301,0],[10301,10302,45466,0],[45466,10302,10303,0],[45465,10304,10324,0],[45465,10324,10305,0],[8363,10306,8360,0],[10306,8363,10307,0],[10306,10307,10305,0],[8360,10306,8361,0],[10327,10306,10305,0],[10324,10304,10308,0],[10308,10304,10303,0],[10308,10303,10309,0],[10309,10303,10310,0],[10309,10310,10326,0],[10326,10310,10311,0],[10326,10311,10315,0],[10315,10311,10344,0],[10315,10344,10312,0],[10314,10312,10225,0],[10312,10314,10316,0],[10312,10316,10315,0],[10317,10325,10315,0],[10317,10315,10316,0],[10313,10314,10225,0],[10225,34532,10313,0],[10313,34532,10318,0],[10318,10314,10313,0],[10316,10314,10319,0],[10318,34532,10226,0],[10318,10342,10319,0],[10316,10319,10320,0],[10320,10319,10229,0],[10229,10319,10342,0],[10316,10320,10317,0],[10317,10320,10341,0],[10317,10341,10323,0],[10321,10329,10322,0],[10321,10322,10323,0],[10323,10322,10324,0],[10323,10324,10308,0],[10308,10309,10325,0],[10308,10325,10323,0],[10323,10325,10317,0],[10325,10309,10326,0],[10326,10315,10325,0],[10324,10322,10327,0],[10323,10341,10321,0],[10321,10341,10328,0],[10321,10328,10329,0],[10329,8358,8357,0],[8357,9493,10329,0],[10329,9493,10322,0],[10322,9493,8359,0],[10322,8359,10327,0],[8358,10334,8356,0],[10341,10320,10230,0],[10341,10230,10330,0],[10341,10330,10328,0],[10329,10334,8358,0],[10334,10329,10328,0],[43010,10331,10333,0],[43010,10333,43012,0],[43012,10260,10259,0],[43012,10259,10332,0],[10332,10259,10258,0],[10233,10333,10231,0],[10328,10330,10334,0],[10336,43009,10337,0],[10339,10337,10338,0],[10339,10338,8354,0],[8354,10338,10257,0],[10340,8356,43008,0],[10334,10335,8356,0],[10318,10226,10228,0],[10318,10228,10342,0],[10227,10228,34531,0],[34531,10228,10226,0],[10303,10302,10310,0],[10343,10310,10302,0],[10301,8367,10302,0],[10302,8367,10343,0],[10343,8367,10296,0],[10343,10296,8368,0],[10343,8368,10344,0],[10344,8368,8369,0],[8369,10312,10344,0],[10344,10311,10343,0],[10343,10311,10310,0],[10324,10327,10305,0],[10327,8361,10306,0],[10303,10304,10345,0],[10345,8364,10346,0],[10345,10346,10347,0],[10301,45466,10347,0],[10347,45466,10345,0],[8366,10347,8365,0],[10347,10346,8365,0],[45465,8364,10345,0],[8360,10348,9579,0],[8356,10340,8355,0],[10339,10349,10340,0],[10349,8355,10340,0],[43008,8356,10335,0],[10350,8347,8146,0],[9514,10351,10356,0],[9525,9513,9514,0],[9525,9514,10356,0],[9514,10352,10351,0],[10351,10352,43005,0],[43005,10350,8146,0],[43005,8146,10351,0],[9526,10353,10354,0],[9526,10354,9527,0],[25027,10356,10351,0],[8147,10351,8146,0],[10356,10353,9525,0],[10356,10355,10353,0],[10353,10355,10354,0],[8145,8347,10357,0],[8145,10357,10267,0],[10358,10357,8348,0],[10285,8348,8349,0],[10358,10267,10357,0],[8135,8240,10245,0],[10359,8250,8251,0],[8132,10359,8240,0],[10359,8131,8250,0],[8250,8131,10360,0],[10360,8131,8252,0],[8131,8132,8123,0],[8123,8122,10361,0],[10361,8122,10393,0],[10361,10393,8121,0],[8131,8123,8130,0],[8130,8123,10361,0],[8121,8120,10361,0],[10361,8120,8130,0],[8109,10362,10375,0],[10375,10362,10363,0],[10363,10362,10364,0],[10363,10364,8104,0],[10362,10367,10366,0],[10362,10366,10364,0],[10374,10365,8110,0],[10374,8110,10403,0],[10403,8110,8118,0],[10403,8118,8111,0],[8116,8110,10366,0],[10366,10365,10364,0],[10365,10366,8110,0],[8116,10366,10367,0],[10373,10401,10406,0],[10371,10369,8102,0],[8102,10369,8101,0],[10369,10427,8101,0],[10369,10371,10406,0],[10373,10406,10370,0],[10370,10371,10372,0],[8104,10372,8103,0],[8103,10372,8102,0],[8102,10372,10371,0],[10371,10370,10406,0],[10373,10370,10368,0],[10368,10370,10372,0],[8104,10364,10372,0],[10372,10364,10368,0],[10364,10365,10368,0],[10368,10365,10373,0],[10365,10374,10373,0],[8108,8109,10375,0],[10375,10363,8106,0],[8108,10375,8107,0],[8107,10375,8106,0],[8102,8100,8314,0],[8314,8100,8315,0],[8315,8100,8099,0],[8294,8096,8094,0],[8094,8096,8097,0],[10376,8097,10377,0],[10377,8099,40104,0],[40104,8099,40106,0],[40106,8099,10430,0],[40106,10430,10429,0],[40106,10429,10378,0],[10378,10429,10379,0],[10380,10379,10381,0],[10456,10382,10383,0],[10384,10431,10385,0],[10386,10425,10408,0],[10386,10408,10396,0],[10386,10396,10387,0],[10387,10396,10388,0],[10387,10388,10389,0],[10389,10388,10390,0],[10418,10390,10391,0],[10418,10391,10392,0],[10392,10391,8124,0],[8124,10391,8122,0],[8122,10391,10393,0],[10394,10395,10398,0],[10398,10395,10399,0],[10399,10395,10388,0],[10407,10388,10396,0],[10388,10395,10397,0],[10397,10395,10394,0],[10388,10397,10390,0],[10390,10397,10391,0],[10397,10394,10393,0],[10397,10393,10391,0],[10393,10394,8121,0],[8121,10394,10398,0],[10400,10399,10401,0],[10400,10401,10373,0],[10404,10403,10405,0],[10404,8121,10398,0],[10404,10398,10403,0],[10403,10398,10402,0],[10398,10399,10402,0],[10373,10374,10400,0],[10400,10374,10402,0],[10399,10388,10401,0],[10401,10407,10406,0],[10369,10406,45480,0],[10369,45480,10427,0],[10388,10407,10401,0],[45480,10407,10408,0],[45480,10408,10426,0],[45480,10426,10427,0],[10409,10411,10410,0],[10410,10411,8099,0],[10396,10408,10407,0],[10408,10425,10426,0],[8124,8134,10392,0],[10392,8134,10412,0],[8125,45524,45566,0],[10414,8125,10415,0],[10414,19263,10419,0],[10419,19263,10416,0],[10418,10417,40110,0],[10418,40110,10390,0],[10390,40110,10389,0],[10392,10412,10417,0],[10417,10412,10413,0],[10417,10413,10416,0],[10414,10419,45524,0],[10414,45524,8125,0],[45524,10419,10413,0],[10413,10419,10416,0],[10417,10418,10392,0],[10425,10386,10385,0],[10385,10386,10420,0],[10420,40111,10422,0],[10421,40111,19263,0],[10385,10420,10422,0],[10385,10422,10384,0],[10384,19258,10423,0],[10423,19258,19257,0],[10423,19257,19245,0],[10423,10431,10384,0],[10385,10431,10424,0],[10424,10425,10385,0],[10431,10423,10383,0],[10424,10383,10382,0],[10424,10382,40114,0],[40114,10382,10428,0],[40114,10428,10429,0],[40114,10429,10411,0],[10428,10382,10381,0],[10428,10381,10379,0],[10428,10379,10429,0],[10429,10430,10411,0],[10411,10430,8099,0],[10381,10382,10456,0],[8085,8086,8084,0],[10436,10432,10433,0],[10434,19299,10435,0],[10435,10436,10434,0],[8084,10432,10436,0],[10436,10433,10434,0],[10435,19299,8082,0],[8082,19299,10437,0],[8082,10437,19939,0],[19939,10437,19311,0],[40178,10439,10434,0],[40178,10434,10440,0],[10440,10441,10442,0],[40171,19283,40176,0],[40176,19285,19290,0],[19290,19285,10444,0],[10444,10445,8091,0],[40176,19276,19274,0],[19274,10447,10448,0],[10476,10448,19271,0],[10476,19271,10475,0],[10449,10475,19270,0],[10449,19270,10452,0],[10449,10452,10450,0],[40299,10450,10451,0],[40299,10451,40292,0],[10451,10452,40298,0],[40298,10452,10453,0],[40295,10454,10380,0],[40295,10380,40296,0],[40296,10380,10381,0],[40296,10381,10455,0],[10455,10381,10456,0],[10456,19267,10455,0],[10455,19267,10457,0],[19242,10457,10458,0],[10458,19266,10459,0],[10459,19248,10460,0],[10460,43562,10461,0],[10461,43562,10214,0],[19244,10214,10213,0],[19244,10213,10463,0],[10463,10213,10462,0],[10463,10462,19241,0],[19241,10462,8376,0],[19241,8376,19238,0],[8376,10477,19239,0],[19239,10477,10478,0],[19239,10478,10464,0],[10464,10478,10465,0],[10464,10465,10466,0],[10466,10465,10467,0],[10467,10479,10468,0],[10468,10479,10469,0],[10468,10469,10470,0],[10469,19232,40289,0],[40289,19232,10471,0],[40289,10471,40167,0],[40289,40167,10472,0],[10472,10474,10473,0],[10473,10474,10475,0],[10475,10474,10476,0],[10467,10465,43656,0],[10467,43656,10479,0],[10480,19227,10481,0],[10481,19227,19229,0],[19229,19230,19233,0],[19233,19230,19234,0],[40201,19234,10482,0],[10482,19231,40303,0],[40303,19231,10483,0],[10483,19231,10484,0],[40302,43646,10485,0],[10486,10485,43631,0],[10488,10489,10490,0],[10490,10489,45707,0],[10490,45707,45642,0],[45642,10491,19218,0],[45701,10492,10494,0],[45701,10494,45702,0],[45702,10494,10493,0],[43667,43665,10495,0],[10495,43665,10496,0],[10495,10496,10497,0],[10498,10497,10499,0],[10498,10499,10500,0],[10501,43673,10502,0],[10502,10504,45692,0],[10502,45692,45696,0],[45696,45692,45645,0],[10503,45642,19218,0],[10504,10502,45693,0],[10505,10504,10506,0],[10505,10506,10507,0],[10507,10506,10508,0],[10507,10508,19214,0],[19094,16715,19095,0],[19095,10509,19097,0],[19098,19097,10510,0],[10511,10510,16688,0],[10511,16688,45711,0],[10514,10512,10513,0],[19101,16704,19102,0],[19102,43700,10516,0],[10517,10516,10518,0],[19103,10518,10519,0],[10519,10520,19104,0],[19104,10520,10521,0],[18795,45734,18942,0],[18942,45734,10522,0],[18828,10524,10525,0],[18828,10525,18930,0],[18930,10526,10527,0],[10528,46004,45845,0],[45845,46004,10529,0],[10529,46004,45999,0],[10529,45999,46000,0],[46000,19082,10530,0],[10530,19082,45859,0],[18666,45865,18665,0],[18665,10531,45857,0],[45857,10531,10532,0],[19053,19045,10535,0],[10535,19041,10536,0],[10536,19041,19074,0],[10536,19074,10537,0],[19070,10537,19074,0],[19074,19048,10538,0],[10538,19085,19073,0],[19073,19085,10539,0],[10539,45873,45995,0],[10540,45992,19077,0],[19077,45992,10541,0],[19077,10541,10542,0],[10542,45949,10543,0],[10546,10545,10547,0],[10546,10547,19032,0],[19032,10547,45969,0],[19032,45969,19034,0],[19032,19034,10548,0],[10548,10549,10550,0],[10550,10549,10551,0],[10698,10552,10553,0],[10555,10556,40820,0],[40820,10556,40920,0],[11430,11429,10557,0],[11444,46016,10558,0],[10558,46016,46017,0],[10558,46017,11442,0],[11442,46017,46014,0],[11442,46014,11440,0],[11440,40918,11439,0],[11439,40918,40919,0],[11439,10560,10559,0],[47642,10561,47640,0],[47640,40916,10562,0],[45962,10562,45976,0],[45962,45976,45963,0],[10604,10563,10576,0],[10604,10576,10564,0],[10564,10576,10565,0],[10577,10566,10606,0],[10577,10606,47645,0],[47645,10606,45950,0],[45950,10606,45954,0],[10567,10570,10568,0],[10568,10572,10569,0],[10552,10660,10569,0],[10567,45971,10570,0],[10570,45971,45970,0],[10570,45970,47635,0],[10570,47635,10572,0],[10572,47635,10569,0],[10569,47635,10571,0],[10571,10555,10554,0],[10570,10572,10568,0],[45971,10606,10573,0],[10573,10606,10605,0],[10573,10605,10574,0],[45954,10606,10567,0],[10606,45971,10567,0],[10566,10577,10565,0],[10565,10577,47647,0],[47647,10577,10578,0],[10579,10578,45952,0],[10579,45952,10580,0],[10579,10580,10581,0],[10581,45941,10602,0],[10602,45941,45940,0],[45956,10582,47648,0],[47648,10585,10583,0],[10584,10583,10585,0],[10585,10586,45817,0],[45817,10586,10587,0],[45817,10587,47659,0],[45814,47659,47655,0],[45814,47655,10588,0],[10590,10589,10592,0],[10590,10592,10591,0],[45828,10592,45837,0],[45837,45836,45827,0],[45827,45836,10593,0],[45755,10596,45788,0],[45780,10599,10600,0],[10596,45755,45757,0],[10596,45757,10595,0],[10595,46012,10594,0],[45940,10582,10602,0],[45955,10602,45958,0],[10603,45959,10604,0],[10604,45959,45961,0],[10604,45961,10563,0],[10582,45956,10602,0],[10602,45956,45958,0],[10565,10576,10566,0],[10566,10576,10575,0],[10566,10575,10605,0],[10566,10605,10606,0],[10559,10560,10656,0],[10559,10656,10607,0],[11492,10607,10659,0],[10659,10608,11535,0],[10610,10609,10642,0],[11272,10612,10646,0],[11272,10646,11273,0],[11273,10647,10613,0],[10613,10621,10614,0],[10614,10620,10615,0],[10615,10620,10617,0],[10615,10617,10616,0],[10616,10617,10618,0],[10616,10618,45759,0],[10621,10620,10614,0],[10618,10617,10620,0],[11535,10608,11533,0],[11533,10608,10622,0],[45989,10624,10625,0],[45989,10625,10631,0],[10631,10625,10626,0],[45988,45962,10627,0],[45988,10628,10629,0],[10631,10630,10632,0],[10640,10641,10654,0],[10640,10654,45839,0],[45833,10634,10635,0],[45833,10635,45838,0],[45838,10635,45820,0],[45820,45821,45838,0],[45838,45821,10636,0],[10638,10637,10645,0],[10638,10645,45840,0],[10641,10643,10633,0],[10609,10643,10642,0],[10639,10644,10642,0],[10642,10643,10641,0],[10642,10641,10640,0],[10642,10640,10639,0],[10610,10642,10644,0],[10644,10645,10612,0],[10612,10645,10646,0],[11273,10646,10647,0],[10647,10648,45761,0],[45761,10648,10649,0],[10649,10648,10636,0],[10636,10648,10637,0],[10636,10637,10638,0],[10644,10612,10611,0],[10644,10611,10610,0],[10644,10639,10645,0],[10645,10639,45840,0],[10645,10650,10646,0],[10645,10637,10650,0],[10646,10650,10647,0],[10647,10650,10648,0],[10648,10650,10637,0],[10632,10630,10651,0],[10654,10651,10652,0],[10652,45801,10634,0],[10634,45801,45813,0],[10634,45813,10635,0],[10635,45813,10653,0],[10652,10634,10654,0],[10651,10654,10641,0],[10651,10641,10633,0],[10628,45988,10627,0],[10655,11533,10622,0],[10655,10622,10623,0],[10632,10633,10623,0],[10560,10561,10656,0],[10656,10561,10658,0],[10656,10658,10657,0],[10657,10624,10623,0],[10622,10657,10623,0],[10624,10657,10658,0],[10624,10658,10625,0],[10625,10658,47642,0],[47642,10658,10561,0],[10656,10657,10607,0],[10607,10657,10659,0],[10657,10622,10608,0],[10608,10659,10657,0],[10553,10552,47641,0],[47641,10552,10569,0],[10551,10660,10704,0],[10551,10704,10700,0],[10700,10701,47644,0],[47644,10701,10661,0],[10661,10703,19031,0],[19031,10703,10662,0],[10662,45938,19029,0],[19029,45938,10663,0],[10663,45938,45937,0],[10663,45937,10664,0],[10664,45937,10665,0],[10665,10666,10667,0],[19058,10667,45921,0],[45921,10694,45922,0],[10671,18981,18982,0],[10672,49807,10693,0],[10693,49807,18988,0],[10693,18988,10673,0],[10673,18988,18989,0],[10673,18989,10674,0],[10674,10675,45891,0],[10677,19007,10678,0],[10678,19017,10679,0],[18671,45917,10681,0],[18672,10681,10682,0],[10683,10682,10688,0],[10683,10688,10684,0],[10684,10685,18677,0],[19014,10685,10686,0],[10687,10681,45917,0],[10686,10688,10687,0],[10681,10687,10688,0],[10688,10686,10685,0],[10681,10688,10682,0],[10684,10688,10685,0],[10692,10689,10690,0],[10692,10690,10691,0],[10678,10691,10677,0],[10677,10691,10676,0],[10676,10691,10690,0],[10676,10690,45891,0],[10690,10689,10674,0],[10674,45891,10690,0],[10673,10674,10689,0],[10691,45910,10692,0],[10692,45913,10689,0],[10689,45913,10693,0],[10693,10673,10689,0],[10678,10679,10691,0],[10691,10679,45910,0],[45921,10667,10694,0],[10667,10666,45927,0],[45928,45926,45935,0],[45928,45935,10695,0],[10696,10695,10699,0],[10696,10699,11404,0],[11404,10699,10697,0],[10697,10699,10698,0],[10698,10699,10700,0],[10700,10699,10701,0],[10701,10702,10703,0],[10700,10704,10698,0],[10667,45927,10694,0],[10694,45927,45930,0],[10694,45930,10705,0],[18979,10705,18980,0],[18980,10705,10706,0],[10707,10706,11594,0],[10707,11594,10708,0],[10709,10710,40510,0],[10713,18992,18687,0],[10714,45894,18686,0],[18686,45894,10715,0],[10716,10715,10717,0],[10716,10717,10718,0],[18965,10721,10722,0],[10722,10723,40229,0],[40229,10723,10724,0],[40230,10724,10725,0],[10725,18598,10726,0],[10726,18598,18600,0],[18600,18601,10727,0],[10727,18601,10728,0],[18581,10732,10739,0],[18581,10739,10733,0],[10735,10734,10736,0],[10735,10736,40278,0],[40278,10736,10737,0],[40278,10737,10738,0],[10738,10737,40279,0],[40279,10737,10739,0],[40279,10739,10732,0],[10733,10739,10736,0],[10736,10739,10737,0],[10733,10736,10734,0],[18579,18583,10740,0],[10742,10740,10741,0],[18607,10743,11623,0],[18607,11623,10742,0],[10742,11623,18592,0],[18579,18592,18584,0],[18584,18592,10744,0],[10745,18590,11625,0],[10747,10745,47556,0],[10747,47556,10746,0],[10747,10746,18586,0],[18586,18578,10748,0],[10748,18578,10749,0],[10748,10749,14018,0],[10749,10750,47597,0],[47597,10750,10751,0],[10752,10753,10754,0],[10756,11638,10757,0],[10756,10757,11659,0],[10756,11659,18557,0],[18529,10758,10759,0],[18529,10759,10760,0],[10760,47592,47594,0],[18553,47594,18552,0],[18525,10761,10762,0],[10762,11706,18524,0],[18524,11706,18554,0],[18554,11705,10763,0],[10763,11713,40887,0],[40887,11713,10764,0],[18119,10764,11714,0],[18119,11714,10765,0],[10765,11697,10766,0],[10766,11697,11694,0],[10766,11694,10767,0],[10767,11694,10768,0],[40826,40563,18068,0],[18068,40563,10769,0],[18068,10769,40824,0],[40824,10769,40825,0],[40825,10769,18516,0],[18516,11716,18517,0],[18517,11716,10770,0],[18520,10773,10774,0],[10775,10774,10777,0],[10777,10776,10778,0],[10778,18498,18521,0],[18055,10779,18496,0],[18052,18496,10780,0],[10781,10780,18497,0],[10781,18497,10782,0],[10782,10783,10784,0],[10784,10783,18501,0],[18050,10784,10785,0],[18051,10785,18503,0],[18051,18503,10786,0],[10786,18503,10787,0],[10786,10787,41864,0],[41864,10787,10788,0],[10788,18505,10789,0],[10789,18505,10791,0],[10789,10791,10790,0],[10790,10791,18028,0],[18028,10791,18026,0],[18027,18026,10792,0],[18027,10792,10793,0],[10794,18017,10795,0],[41913,41909,41901,0],[41901,41909,41881,0],[41881,41909,10796,0],[42195,10796,10797,0],[10797,18006,10799,0],[10799,18006,10798,0],[10799,10798,10812,0],[10799,10812,10800,0],[10800,10813,10801,0],[10800,10801,10802,0],[10802,42196,10803,0],[10803,42196,42197,0],[42193,42197,18014,0],[41890,10804,10805,0],[16991,10807,10808,0],[16991,10808,11106,0],[11106,10808,10809,0],[11106,10809,10819,0],[10819,10809,10810,0],[10810,10809,10814,0],[10800,10812,10813,0],[10813,10811,10810,0],[10813,10810,10814,0],[10801,10814,42194,0],[10801,42194,10815,0],[10806,10805,10816,0],[10813,10814,10801,0],[10802,10801,42196,0],[10811,10813,10812,0],[10810,10811,10818,0],[10819,10810,10818,0],[10819,10818,10820,0],[10821,18000,17931,0],[17931,10823,10822,0],[10822,10823,41532,0],[10822,41532,10824,0],[10824,41532,10825,0],[10828,17945,10844,0],[10838,10844,10829,0],[10839,10830,10831,0],[10831,10830,10832,0],[10840,41074,10833,0],[10834,10833,10835,0],[10836,17935,10842,0],[10838,10842,10837,0],[10841,10838,10829,0],[10841,10829,10839,0],[10831,10840,10839,0],[10839,10840,10841,0],[10836,10842,10841,0],[10844,10838,10837,0],[10843,10845,10844,0],[10828,10844,10845,0],[10828,10845,10846,0],[10828,10846,10826,0],[10826,10846,10848,0],[10826,10848,10847,0],[10847,10848,10850,0],[10850,10848,10849,0],[10849,10848,17009,0],[10849,17009,17002,0],[10849,17002,41918,0],[10849,41918,16996,0],[10849,16996,41505,0],[10849,41505,10850,0],[10853,17940,16999,0],[16999,17940,10878,0],[10878,17940,17941,0],[17919,17941,17942,0],[10854,10855,10929,0],[10857,10856,10854,0],[10880,10857,10858,0],[10880,17908,17909,0],[10880,17909,10882,0],[10882,17918,10884,0],[10884,17918,10877,0],[10877,17918,10859,0],[10876,10859,10860,0],[10860,42179,10876,0],[10876,42179,11097,0],[10861,11091,10872,0],[10872,11091,42187,0],[10863,42187,42162,0],[10863,42162,10862,0],[10864,10872,42241,0],[10871,10864,17013,0],[41542,16997,10867,0],[10883,10867,17011,0],[10883,17011,10886,0],[10886,16998,16999,0],[10867,16997,17011,0],[10873,10874,10868,0],[10873,10868,10875,0],[10875,10868,41541,0],[10884,10870,10867,0],[10867,10870,41542,0],[10871,10874,10864,0],[10864,10874,10872,0],[17013,10865,10871,0],[10871,10868,10874,0],[10872,42187,10863,0],[10876,10873,10875,0],[10872,10874,10873,0],[10872,10873,10861,0],[10861,10873,11097,0],[11097,10873,10876,0],[10876,10875,10877,0],[10877,10875,10869,0],[10869,10875,41541,0],[10876,10877,10859,0],[10879,10857,10880,0],[10879,10880,10881,0],[10879,10881,17919,0],[10878,17941,17919,0],[10857,10879,17943,0],[10857,17943,10856,0],[17908,10880,10858,0],[10867,10883,10885,0],[10867,10885,10884,0],[10882,10884,10885,0],[10882,10881,10880,0],[10884,10877,10870,0],[10870,10877,10869,0],[10883,10886,17919,0],[10883,17919,10885,0],[10885,17919,10882,0],[10882,17919,10881,0],[17919,10886,10878,0],[10858,10930,10887,0],[10858,10887,17908,0],[10887,10931,10888,0],[17915,10888,17914,0],[17498,42243,10893,0],[10895,10894,10896,0],[10895,10896,17495,0],[17495,10896,10897,0],[17495,10897,17501,0],[17501,10897,10898,0],[17502,10898,10899,0],[41554,41559,10902,0],[10902,41556,41557,0],[10902,41557,17899,0],[17448,17899,10903,0],[17448,10903,17837,0],[17837,10903,10904,0],[17836,10907,10908,0],[17836,10908,10906,0],[10906,17830,17831,0],[17836,10906,17831,0],[17824,10910,10909,0],[10916,10911,41996,0],[10916,41996,10912,0],[10912,41998,41558,0],[41558,41998,10904,0],[10906,17897,42186,0],[10913,10910,10914,0],[10894,10917,10896,0],[10899,10898,10918,0],[10918,10898,10897,0],[10897,10896,10919,0],[10897,10919,10918,0],[10917,10894,10916,0],[10893,10915,10916,0],[10915,42243,41995,0],[41995,42243,10920,0],[41994,10920,42184,0],[41994,42184,10921,0],[17869,10923,10924,0],[10924,10925,10926,0],[10926,10925,10927,0],[41502,17819,10928,0],[10928,17819,10932,0],[10932,17819,10929,0],[10929,10931,10930,0],[10930,10931,10887,0],[10887,17916,17908,0],[10930,10854,10929,0],[10929,10855,10932,0],[10932,10855,10928,0],[41502,10928,10933,0],[10934,41563,17887,0],[17887,41563,40994,0],[17887,40994,17889,0],[17889,10935,10936,0],[17880,10937,10938,0],[10938,10939,17863,0],[17863,10939,10940,0],[10940,10939,41960,0],[10940,41960,17858,0],[17858,41960,17856,0],[17856,41960,41962,0],[17856,41962,17845,0],[17845,41963,10941,0],[10941,41963,10942,0],[10941,10942,10943,0],[10944,10945,17399,0],[10945,41989,10946,0],[10947,10946,41987,0],[10947,41987,10948,0],[17394,10948,41986,0],[17394,41986,10949,0],[10949,41985,42055,0],[42055,41985,10950,0],[10950,41985,17815,0],[10952,17707,17814,0],[10952,17814,10953,0],[10953,17814,10954,0],[10953,10954,42003,0],[10953,42003,10955,0],[10955,42003,42000,0],[17708,10956,17792,0],[17709,17792,10957,0],[17709,10957,10958,0],[10958,10957,10959,0],[10958,10959,10960,0],[10960,10959,17800,0],[17701,10961,17700,0],[17700,10961,17799,0],[17700,17799,17784,0],[17784,17799,10962,0],[17790,10962,11058,0],[11058,17817,10986,0],[10986,17817,10963,0],[10964,10980,11059,0],[11059,10980,10965,0],[10965,42103,10966,0],[10966,42103,41927,0],[10966,41927,10967,0],[10967,10968,41164,0],[41570,10971,10970,0],[10970,10971,10972,0],[10972,41923,11014,0],[11014,41923,10973,0],[41944,41931,10974,0],[10981,10977,10976,0],[10976,10977,10978,0],[10964,10979,10980,0],[10981,10976,10988,0],[10981,10988,10983,0],[10983,10988,10982,0],[11049,10983,10982,0],[11049,10982,11053,0],[11053,10982,10984,0],[11053,10984,10985,0],[10985,10984,11052,0],[11052,10984,11048,0],[11046,11047,10979,0],[10979,11047,10987,0],[10976,10978,10988,0],[10988,10978,10987,0],[10987,10978,10979,0],[10979,10964,10986,0],[11046,10979,10986,0],[10986,10963,10989,0],[17818,17804,11048,0],[11048,17804,11052,0],[11052,17804,41972,0],[11052,41972,41970,0],[11052,41970,10990,0],[11056,10990,10991,0],[10993,10994,41937,0],[41974,41959,11040,0],[11040,41959,10997,0],[10999,10998,11037,0],[11037,10998,40997,0],[11037,40997,11000,0],[11036,11000,11001,0],[11016,11001,40964,0],[11016,40964,11002,0],[11004,11003,11005,0],[11007,40954,11008,0],[11008,40954,11009,0],[11011,11009,40953,0],[11011,40953,10972,0],[10972,40953,11010,0],[10972,11010,10970,0],[11009,11011,11012,0],[11009,11012,11008,0],[11008,11013,11006,0],[11008,11006,11007,0],[10972,11014,11011,0],[11011,11014,11012,0],[11012,41943,11015,0],[11045,11015,11032,0],[11045,11032,11031,0],[11045,11031,11041,0],[11041,11031,11033,0],[11041,11004,11005,0],[11003,11004,11034,0],[11003,11034,11002,0],[11002,11034,11016,0],[11016,11034,11017,0],[11016,11017,11035,0],[11035,11017,11020,0],[11035,11020,11019,0],[41990,11019,11018,0],[11018,11019,10995,0],[11019,11020,11021,0],[11021,11020,11029,0],[11021,11029,11022,0],[11022,42434,11023,0],[11023,11031,41942,0],[41942,11031,11032,0],[41942,11032,11024,0],[11024,11032,11025,0],[11024,11025,11026,0],[41939,41940,41936,0],[41936,41940,41941,0],[11026,41941,11024,0],[41936,41941,11026,0],[41936,11026,11027,0],[11027,11026,11055,0],[11019,11021,10995,0],[10995,11021,11028,0],[11029,11017,11030,0],[11029,11030,42434,0],[42434,11030,11033,0],[11033,11031,11023,0],[42434,11033,11023,0],[11033,11030,11041,0],[11041,11030,11004,0],[11030,11017,11034,0],[11004,11030,11034,0],[11017,11029,11020,0],[11001,11016,11035,0],[11001,11035,11036,0],[11000,11036,11037,0],[11038,10999,11039,0],[11038,11039,10996,0],[10999,11038,10998,0],[10998,11038,11040,0],[10998,11040,40993,0],[40993,11040,10997,0],[11045,11041,11013,0],[11013,11041,11005,0],[11032,11015,11025,0],[11025,11015,11042,0],[11042,41943,11050,0],[11050,41943,41935,0],[11050,41935,11043,0],[11043,41935,41930,0],[11043,41930,10975,0],[11025,11042,11044,0],[11025,11044,11026,0],[11012,11015,11008,0],[11008,11015,11045,0],[11008,11045,11013,0],[11006,11013,11005,0],[10996,41974,11040,0],[10996,11040,11038,0],[10989,17818,11046,0],[11048,11046,17818,0],[11047,11046,10984,0],[11048,10984,11046,0],[10987,11047,10984,0],[10987,10984,10982,0],[10987,10982,10988,0],[10981,10983,10975,0],[10975,10983,11049,0],[10975,11049,11043,0],[11043,11049,11050,0],[11026,11044,11055,0],[11044,11050,11051,0],[10985,11051,11053,0],[11053,11051,11050,0],[11053,11050,11049,0],[11052,10990,10985,0],[10985,10990,11054,0],[11057,10992,42435,0],[41937,42435,10993,0],[10993,42435,10992,0],[10992,11057,11056,0],[11056,11054,10990,0],[10985,11054,11051,0],[11055,11044,11051,0],[11055,11051,11054,0],[11054,11056,11057,0],[11054,11057,11055,0],[11055,11057,11027,0],[11044,11042,11050,0],[41920,10969,41921,0],[41921,10969,41116,0],[41921,41116,41925,0],[11058,10986,10964,0],[10964,11059,11058,0],[11058,11059,17790,0],[17790,11059,11060,0],[17790,11060,17788,0],[17788,11060,41181,0],[17599,11061,42433,0],[17599,42433,17598,0],[17598,42433,42419,0],[17598,42419,42420,0],[17598,42420,11062,0],[41950,11066,11067,0],[41950,41142,11068,0],[11068,16923,11069,0],[41951,11070,17693,0],[41951,11071,41949,0],[41949,11071,17527,0],[17527,11071,11072,0],[11072,17696,17549,0],[17549,17696,11073,0],[11073,11074,17543,0],[17543,11074,11075,0],[17544,11075,16932,0],[17544,16932,17545,0],[17547,17545,16934,0],[17547,16934,16901,0],[17547,16901,11076,0],[11076,16901,16897,0],[11076,16897,16895,0],[17576,16894,17568,0],[17510,17511,11078,0],[17509,11079,11080,0],[17509,11080,17691,0],[17021,11082,11083,0],[11084,11083,16968,0],[11084,16968,16966,0],[11084,16966,11085,0],[11085,16969,11086,0],[11086,16969,17029,0],[17029,16969,17023,0],[17024,17023,11087,0],[17024,11087,11088,0],[42187,11092,11094,0],[11094,11093,11095,0],[11096,11091,11097,0],[11097,11091,10861,0],[42187,11095,42162,0],[11099,16958,11101,0],[11099,11101,11100,0],[11109,11103,17921,0],[17921,11103,17928,0],[17928,11103,17929,0],[17929,11103,11104,0],[17927,16991,11106,0],[11106,10819,17927,0],[11107,11108,11104,0],[11107,11104,11103,0],[11103,11109,11107,0],[11107,11109,16992,0],[11107,16992,16990,0],[16990,16992,11110,0],[16989,16980,11112,0],[11112,11113,41888,0],[11114,11113,41897,0],[41897,11113,41898,0],[41898,11113,42191,0],[11118,42189,11119,0],[11119,42189,42202,0],[42202,42189,16949,0],[11121,11122,16988,0],[16988,11122,16986,0],[11123,16985,16888,0],[11123,16888,16887,0],[11123,16887,11124,0],[11124,16887,11125,0],[11124,11125,42199,0],[16886,11127,11128,0],[16886,11128,11129,0],[16885,11130,11131,0],[16885,11131,11132,0],[16885,11132,42199,0],[42199,11132,11133,0],[42200,11134,11135,0],[41892,11135,41904,0],[41892,41904,41891,0],[41904,41885,11136,0],[11136,41891,41904,0],[41902,11134,11133,0],[11131,11130,11129,0],[16871,11131,41323,0],[16871,41323,11137,0],[11137,41324,11138,0],[11138,41325,11139,0],[16855,11139,41601,0],[16855,41601,16856,0],[16859,11140,11141,0],[16859,11141,11142,0],[11142,11141,11143,0],[11142,11143,41144,0],[11142,41144,11144,0],[11144,41144,11145,0],[11144,11145,16851,0],[11145,11146,16884,0],[16884,11146,16882,0],[11147,16882,11148,0],[16794,11148,11149,0],[11150,11149,16883,0],[16883,41134,41174,0],[41174,41132,11151,0],[41262,11152,11153,0],[41262,11153,11154,0],[41261,11154,11155,0],[41252,11155,11156,0],[41260,11156,11157,0],[11157,11158,11159,0],[11159,11158,11160,0],[11160,11158,11161,0],[11177,11162,11163,0],[11166,11163,11164,0],[11166,11164,11165,0],[11166,11165,41583,0],[11166,41583,11167,0],[11167,18337,11175,0],[11175,18337,11168,0],[11175,11168,11174,0],[11174,11170,11169,0],[11169,11170,11171,0],[11173,11171,11172,0],[11173,11172,11160,0],[11160,11172,18348,0],[11160,18348,11159,0],[11160,11161,11173,0],[11171,11173,11169,0],[11167,11175,11166,0],[11176,11166,11174,0],[11174,11169,11176,0],[11176,11169,11177,0],[11161,11177,11173,0],[11173,11177,11169,0],[11177,11163,11176,0],[11176,11163,11166,0],[11174,11166,11175,0],[11157,11156,11178,0],[41291,11178,11179,0],[11179,41602,41288,0],[41288,41602,11180,0],[41288,11180,41289,0],[41289,11180,41124,0],[41289,41124,11181,0],[11184,41016,11185,0],[11185,11186,11187,0],[11187,11186,11188,0],[11187,11188,14681,0],[14681,11188,11752,0],[14681,11752,11189,0],[11189,11752,11190,0],[11189,11190,11191,0],[14682,11191,11750,0],[14682,11750,13158,0],[13159,11750,11192,0],[11192,11751,11785,0],[11785,11751,11741,0],[11785,11741,11193,0],[11785,11193,11194,0],[11192,11785,11197,0],[41235,41236,11198,0],[11198,11199,41439,0],[41439,11199,41413,0],[41413,11199,11200,0],[41413,11200,41411,0],[41411,11200,11201,0],[11201,41242,11202,0],[11201,11202,41410,0],[41410,11202,41243,0],[41410,41243,13139,0],[13139,41243,11203,0],[13062,11203,11204,0],[16784,11206,11207,0],[11207,11206,11765,0],[11208,11207,11766,0],[11208,11766,11209,0],[11209,11837,11210,0],[11210,11840,11935,0],[11935,11840,11821,0],[11211,11821,11830,0],[11830,11831,11212,0],[16734,11213,11825,0],[16734,11825,11833,0],[16734,11833,16735,0],[16735,11214,46877,0],[11214,11835,11215,0],[16616,11216,11885,0],[11885,45775,16617,0],[16618,16617,11217,0],[16709,16641,11217,0],[16709,11217,43695,0],[43695,11217,43703,0],[43704,11217,11218,0],[11219,11883,11884,0],[11221,11220,11857,0],[11221,11857,11222,0],[11222,11857,11225,0],[11222,11225,11223,0],[11296,11227,11869,0],[11296,11869,11228,0],[11228,11869,11229,0],[11229,11867,46880,0],[46880,11867,11230,0],[11230,11867,11865,0],[11230,11865,11231,0],[11234,11233,11921,0],[11234,11921,11235,0],[11237,41397,11917,0],[11238,41397,11239,0],[11238,11239,11816,0],[11816,11239,11927,0],[11240,11928,11241,0],[11241,11243,11242,0],[11243,11237,11244,0],[11237,11914,11244,0],[11921,11245,11235,0],[11241,11926,11240,0],[11240,11926,11247,0],[11240,11247,11911,0],[11911,11844,11912,0],[11912,11844,11248,0],[11248,11249,11913,0],[11252,11816,16789,0],[11252,16789,11253,0],[11758,11256,11919,0],[11919,11256,11258,0],[11257,11258,11916,0],[46023,11292,11236,0],[11236,11292,11291,0],[11236,11291,11235,0],[11916,11258,11259,0],[11259,11258,11813,0],[11259,11813,11260,0],[11262,11263,11289,0],[11289,11263,11516,0],[11289,11516,11264,0],[11264,11516,11293,0],[11281,11265,11266,0],[11266,11530,11267,0],[11268,11267,11269,0],[11269,11274,11277,0],[10613,10614,11275,0],[10613,11275,11273,0],[11273,11275,11270,0],[11270,11275,11271,0],[11267,11271,11269,0],[11271,11267,11529,0],[11271,11529,11270,0],[11270,11529,11526,0],[11270,11526,11272,0],[11270,11272,11273,0],[11269,11271,11274,0],[10614,11274,11275,0],[11271,11275,11274,0],[10614,10615,11274,0],[11274,10615,11276,0],[11274,11276,11277,0],[11277,11276,11278,0],[11231,11278,11321,0],[11231,11321,11294,0],[11231,11294,11230,0],[11231,46881,11278,0],[11277,46881,11279,0],[11269,11287,11268,0],[11268,11287,11280,0],[11281,11280,11286,0],[11281,11286,11282,0],[11282,11286,11288,0],[11288,11286,11285,0],[11288,11285,11283,0],[11283,11285,11234,0],[11283,11234,11235,0],[11283,11235,11291,0],[11234,11285,11233,0],[11233,11285,11284,0],[11284,46882,11232,0],[11232,11233,11284,0],[11286,11280,11284,0],[11284,11280,11287,0],[11279,11287,11269,0],[11284,11285,11286,0],[11279,46881,46882,0],[11279,46882,11284,0],[11279,11284,11287,0],[11268,11281,11267,0],[11267,11281,11266,0],[11289,11288,11290,0],[11288,11283,11290,0],[11283,11291,11290,0],[11290,11291,11261,0],[11261,11291,11292,0],[11261,11292,11260,0],[11292,11259,11260,0],[11265,11281,11293,0],[11262,11289,11290,0],[11262,11290,11261,0],[11289,11264,11288,0],[11288,11264,11282,0],[11282,11264,11293,0],[11282,11293,11281,0],[11277,11278,46881,0],[11295,11294,11319,0],[11297,11296,11313,0],[11297,11313,11298,0],[11298,11314,11299,0],[11300,11299,11302,0],[11300,11302,11301,0],[11302,11303,45750,0],[45750,11303,45746,0],[45746,11303,11304,0],[45746,11304,45745,0],[45745,11304,11305,0],[11309,11305,11316,0],[11309,11316,11320,0],[11309,11320,11306,0],[11306,45760,45756,0],[11308,11307,45745,0],[45745,11309,11308,0],[11308,11309,11310,0],[45756,11311,11306,0],[45745,11305,11309,0],[11315,11304,11313,0],[11313,11304,11314,0],[11304,11315,11305,0],[11305,11315,11316,0],[11316,11315,11317,0],[11316,11317,11318,0],[11318,11294,11321,0],[11294,11318,11317,0],[11294,11317,11319,0],[11319,11296,11228,0],[11296,11319,11317,0],[11315,11313,11317,0],[11296,11317,11313,0],[11298,11313,11314,0],[11299,11303,11302,0],[11299,11314,11303,0],[11303,11314,11304,0],[11318,11322,11320,0],[11276,11318,11321,0],[11276,11321,11278,0],[11322,11318,11276,0],[11322,11276,10616,0],[10616,11276,10615,0],[11322,10616,11320,0],[11320,11316,11318,0],[45759,11320,10616,0],[11298,11299,11224,0],[11224,11299,11223,0],[11298,11224,11297,0],[11297,11224,11225,0],[11296,11297,11227,0],[11813,11258,11757,0],[11813,11757,11756,0],[11813,11756,11814,0],[46020,11323,11324,0],[11324,11797,11325,0],[11328,11754,11789,0],[11330,41233,11571,0],[11331,11194,11332,0],[11332,11194,11193,0],[11332,11193,11333,0],[11333,11334,11347,0],[11334,11742,11335,0],[11335,11742,11336,0],[11335,11336,11337,0],[11337,17982,11338,0],[11338,17982,17980,0],[11338,17980,17979,0],[11339,41459,11340,0],[11339,11340,11341,0],[11344,11335,11342,0],[11342,11335,11337,0],[11337,11338,11342,0],[11343,11339,11341,0],[11343,11341,11342,0],[11342,11341,11344,0],[11345,11346,11347,0],[11347,11346,41230,0],[41230,11346,11348,0],[11351,11349,11350,0],[11351,11350,11352,0],[11351,11352,11471,0],[11471,11352,11477,0],[11471,11477,11476,0],[11479,11353,11354,0],[11479,11354,11355,0],[11356,40835,47510,0],[11357,47510,11674,0],[11357,11674,11358,0],[11357,11358,47508,0],[47508,11358,11418,0],[11418,11358,11359,0],[11360,11359,40803,0],[40801,40800,40812,0],[11362,11629,11649,0],[11599,11649,11668,0],[11599,11668,11669,0],[11599,11669,40503,0],[40503,11669,11363,0],[40503,11363,40502,0],[11363,47551,11621,0],[11621,47551,47555,0],[47555,11364,11366,0],[11366,11365,11367,0],[11367,11365,11368,0],[11367,11368,40501,0],[11618,11369,47558,0],[11618,47558,11370,0],[11370,47558,11371,0],[11372,47561,11373,0],[11602,11374,47565,0],[11602,47565,11601,0],[11601,47565,47562,0],[11601,47562,47566,0],[11616,47566,47567,0],[11377,47567,47568,0],[11377,47568,11375,0],[11375,47563,11376,0],[11376,47634,11375,0],[47567,11377,11616,0],[11616,11377,11617,0],[11617,11377,11378,0],[11378,11377,47634,0],[11378,47634,11379,0],[11380,11381,11385,0],[11381,47632,40508,0],[11384,45933,10710,0],[10708,10710,10709,0],[11381,40508,11385,0],[11379,11380,11378,0],[11385,40508,11386,0],[11393,11399,11407,0],[11387,11395,11610,0],[11387,11610,11388,0],[11387,11388,11389,0],[11389,11388,11608,0],[11391,11397,11612,0],[11391,11612,11392,0],[11393,11392,11613,0],[11393,11614,11386,0],[11386,11614,11385,0],[11386,11399,11393,0],[11394,11395,11396,0],[11396,11398,11394,0],[11393,11407,11394,0],[11394,11407,11395,0],[11395,11387,11396,0],[11396,11387,11389,0],[11398,11396,11397,0],[11392,11393,11391,0],[11391,11393,11398,0],[11398,11393,11394,0],[40508,11382,11386,0],[11386,11382,11399,0],[11405,11400,11592,0],[11403,11402,10695,0],[11403,10695,10696,0],[10695,11402,45928,0],[11402,11403,11401,0],[11401,11403,11592,0],[11592,11403,11404,0],[11404,11403,10696,0],[11592,11404,11405,0],[11405,11406,11407,0],[11407,11406,11395,0],[11400,11405,11407,0],[11406,11405,11408,0],[11410,11409,40822,0],[11410,40822,11411,0],[11412,11411,11413,0],[11412,11413,11427,0],[11422,11589,11414,0],[11422,11414,11423,0],[47507,11455,11415,0],[47507,11415,47506,0],[11481,11356,47510,0],[11455,47507,11419,0],[11419,11417,47512,0],[47512,11417,11418,0],[47512,47513,11419,0],[11423,11419,11420,0],[11423,11420,40802,0],[11423,40802,11422,0],[40802,11421,11422,0],[11422,11421,11412,0],[11422,11412,11589,0],[11412,11427,11589,0],[11419,11423,11451,0],[11452,11451,11424,0],[11431,11424,11425,0],[11448,11425,11428,0],[11427,11425,11426,0],[11427,11426,11589,0],[11425,11427,11428,0],[11448,40820,11429,0],[11448,11429,11430,0],[11432,11431,10557,0],[11432,10557,11433,0],[11432,11433,11445,0],[11434,11445,11435,0],[11585,11435,11436,0],[11436,11446,11500,0],[11438,11437,11441,0],[11438,11441,11491,0],[11491,11441,11440,0],[11491,11440,11439,0],[11440,11441,11442,0],[11442,11443,10558,0],[10558,11443,11444,0],[11444,11447,11433,0],[11433,11447,11445,0],[11444,11433,10557,0],[11442,11441,11443,0],[11443,11446,11447,0],[11447,11444,11443,0],[11445,11447,11435,0],[11435,11447,11446,0],[11435,11446,11436,0],[11441,11437,11443,0],[10557,11431,11430,0],[11429,40820,40920,0],[40820,11448,11428,0],[11448,11430,11425,0],[11425,11430,11431,0],[10554,11449,11450,0],[10553,40823,10698,0],[10553,45943,40823,0],[10555,40820,11449,0],[10555,11449,10554,0],[10554,11450,40818,0],[11419,11451,11455,0],[11455,11451,11452,0],[11575,11452,11453,0],[46019,11434,11454,0],[11431,46019,11424,0],[11424,11454,11452,0],[11452,11454,11453,0],[11434,46019,11445,0],[11453,11454,11434,0],[11455,11452,11575,0],[11455,11575,11415,0],[11415,11575,11576,0],[11415,11576,11588,0],[11588,11576,11456,0],[11473,11459,11580,0],[11473,11580,11503,0],[11467,11503,40900,0],[40900,11503,11460,0],[11462,11463,11464,0],[11464,11482,41217,0],[41219,11482,11483,0],[41222,11465,40903,0],[40903,11465,11466,0],[11466,11572,40904,0],[41218,40904,40900,0],[11467,40900,11468,0],[11467,11468,11469,0],[11472,11469,40899,0],[11472,40899,11470,0],[11470,40899,11349,0],[11349,11351,11470,0],[11470,11471,11472,0],[11472,11471,11476,0],[11473,11476,11459,0],[11476,11473,11474,0],[11476,11474,11472,0],[11472,11474,11469,0],[11469,11474,11475,0],[11469,11475,11467,0],[11467,11475,11503,0],[11475,11473,11503,0],[11470,11351,11471,0],[11476,11477,11478,0],[11478,11477,11353,0],[11478,11353,11479,0],[11355,11356,11457,0],[11457,11356,11481,0],[11416,11480,11481,0],[11457,11481,11480,0],[11480,11416,11456,0],[11457,11458,11355,0],[11355,11458,11479,0],[11479,11459,11478,0],[11478,11459,11476,0],[11482,11495,11483,0],[11483,11495,11497,0],[41214,11483,11484,0],[46021,11485,11487,0],[46021,11487,11486,0],[11486,11487,11488,0],[11489,11488,11491,0],[11489,11491,11490,0],[11492,11490,11491,0],[11492,11491,11439,0],[11499,11438,11501,0],[11504,11493,11461,0],[11504,11461,11460,0],[11462,11461,11493,0],[11462,11493,11496,0],[11496,11493,11501,0],[11487,11438,11488,0],[11487,11501,11438,0],[11438,11491,11488,0],[11463,11494,11495,0],[11495,11482,11464,0],[11464,11463,11495,0],[11484,11497,11485,0],[11462,11496,11463,0],[11463,11496,11498,0],[11463,11498,11494,0],[11494,11497,11495,0],[11497,11494,11485,0],[11485,11494,11498,0],[11485,11498,11487,0],[11487,11498,11496,0],[11496,11501,11487,0],[11437,11438,11499,0],[11499,11501,11500,0],[11500,11501,11502,0],[11502,11504,11503,0],[11503,11504,11460,0],[11504,11502,11505,0],[11493,11504,11505,0],[11493,11505,11501,0],[11505,11502,11501,0],[11500,11502,11436,0],[11500,11437,11499,0],[41221,11483,41214,0],[11465,41225,11568,0],[11568,41225,11545,0],[11568,11545,11552,0],[11507,11508,46022,0],[46022,11508,11326,0],[11510,11511,11515,0],[11513,11511,11512,0],[11513,11512,11537,0],[11514,11265,11515,0],[11265,11293,11515,0],[11515,11293,11516,0],[11510,11515,11517,0],[11510,11517,46020,0],[11510,46020,11509,0],[11509,11518,11508,0],[11516,11263,11517,0],[11516,11517,11515,0],[11265,11514,11528,0],[11550,11489,11522,0],[11522,11489,11490,0],[11522,11490,11521,0],[11521,11490,11492,0],[10559,10607,11492,0],[11521,11492,11535,0],[11521,11535,11522,0],[11522,11535,11520,0],[11522,11520,11550,0],[11520,11523,11524,0],[11524,11523,11531,0],[11524,11531,10610,0],[11524,10610,11525,0],[11526,11525,10612,0],[11526,10612,11272,0],[11526,11527,11525,0],[11528,11536,11527,0],[11527,11526,11529,0],[11527,11529,11528,0],[11530,11266,11528,0],[11528,11266,11265,0],[11530,11528,11529,0],[11530,11529,11267,0],[10612,11525,10611,0],[10611,11525,10610,0],[10610,11531,10609,0],[11531,11523,11532,0],[11533,11532,11535,0],[11533,10655,11532,0],[10609,11531,10655,0],[11531,11532,10655,0],[11535,11492,10659,0],[11523,11534,11532,0],[11532,11534,11535,0],[11519,11520,11524,0],[11519,11524,11536,0],[11536,11524,11527,0],[11527,11524,11525,0],[11538,11537,11512,0],[11538,11512,11547,0],[11538,11539,11537,0],[11537,11539,11536,0],[11536,11539,11519,0],[11519,11539,11520,0],[11536,11528,11514,0],[11536,11514,11537,0],[40905,11512,11540,0],[40905,11540,11541,0],[11542,11546,11543,0],[11543,11546,11544,0],[11512,11511,11540,0],[11540,11511,11546,0],[11541,11540,11542,0],[11540,11546,11542,0],[11547,11548,11549,0],[11549,11548,11550,0],[11511,11510,11551,0],[11511,11551,11546,0],[11546,11551,11544,0],[11552,11508,11507,0],[11552,11507,11506,0],[11326,11508,11518,0],[11518,46020,11324,0],[11509,46020,11518,0],[11466,11465,11553,0],[11466,11553,47660,0],[47660,11553,11554,0],[11554,40906,11555,0],[11555,40906,11556,0],[11556,11564,11557,0],[11557,11564,11558,0],[11561,11563,11559,0],[11507,46022,11327,0],[11507,11327,11559,0],[11559,11327,11560,0],[11328,11560,11754,0],[11328,11789,11562,0],[11562,11789,11790,0],[11562,11790,11329,0],[11754,11560,11327,0],[11559,11560,11561,0],[11557,11558,11562,0],[11557,11562,11330,0],[11330,11562,11329,0],[11561,11560,11328,0],[11558,11328,11562,0],[11561,11328,11558,0],[11561,11558,11564,0],[11561,11564,11563,0],[11559,11563,11507,0],[11563,11566,11565,0],[11556,11566,11564,0],[11566,11563,11564,0],[11563,11565,11507,0],[11507,11565,11506,0],[11552,11506,11567,0],[11552,11567,11568,0],[11554,11555,41228,0],[11554,41228,11569,0],[41231,41234,11570,0],[11573,11574,11468,0],[11573,11468,40900,0],[40900,40904,11573,0],[11573,40904,11572,0],[11572,11466,47660,0],[11579,11582,11587,0],[11578,11458,11457,0],[40926,11578,11579,0],[40926,11579,11587,0],[11582,11579,11577,0],[11577,11579,11576,0],[11456,11576,11480,0],[11576,11579,11480,0],[11480,11579,11578,0],[11458,11580,11459,0],[11580,11458,11578,0],[11576,11575,11577,0],[11581,11434,11435,0],[11434,11581,11453,0],[11453,11581,11577,0],[11453,11577,11575,0],[11583,11582,11584,0],[11584,11581,11435,0],[11584,11435,11585,0],[11587,11586,40926,0],[11586,11583,11585,0],[11583,11586,11587,0],[11588,11456,47506,0],[47506,11456,11416,0],[47506,11416,47511,0],[11588,47506,11415,0],[11423,11414,11451,0],[11451,11414,11590,0],[11590,11414,11589,0],[11589,11426,11590,0],[11590,11426,11424,0],[11424,11426,11425,0],[11590,11424,11451,0],[11382,11591,11399,0],[11399,11591,11596,0],[11399,11596,11595,0],[11407,11595,11400,0],[11400,11595,45931,0],[11400,45931,11592,0],[11407,11399,11595,0],[11591,40504,11596,0],[45923,11596,11597,0],[45923,11597,11593,0],[11593,47665,45932,0],[45932,47665,11594,0],[40504,11383,11597,0],[40504,11597,11596,0],[11593,11597,47665,0],[11377,11375,47634,0],[47566,11598,11599,0],[11362,11649,11598,0],[11598,11649,11599,0],[11601,11599,11600,0],[11601,11600,11602,0],[11599,11601,47566,0],[11600,40503,11602,0],[11602,11620,11373,0],[11373,11374,11602,0],[11599,40503,11600,0],[11362,11598,11603,0],[11362,11603,47569,0],[11604,11612,11605,0],[11605,11390,47516,0],[47516,11390,11606,0],[11606,11390,40817,0],[11606,40817,11607,0],[11607,11608,40816,0],[11609,11411,11412,0],[11412,11421,11609,0],[11609,11421,40816,0],[11411,11609,11410,0],[11409,11388,11610,0],[11409,11610,11406,0],[11395,11406,11610,0],[11406,11408,11409,0],[11388,11410,11611,0],[11611,11410,11609,0],[11609,40816,11611,0],[11611,40816,11608,0],[11608,11607,11389,0],[11389,11607,40817,0],[11612,11397,11605,0],[11605,11397,11390,0],[11612,11615,11613,0],[11613,11615,11378,0],[11392,11612,11613,0],[11378,11380,11613,0],[11393,11613,11614,0],[11612,11604,11615,0],[11615,11604,11617,0],[11617,11378,11615,0],[11604,47569,11617,0],[47569,11603,11617,0],[11617,11603,11616,0],[11616,11603,47566,0],[11618,11370,11372,0],[11618,11372,11619,0],[11620,11619,11373,0],[11373,11619,11372,0],[40501,11369,11619,0],[11619,11369,11618,0],[11619,11620,40501,0],[40501,11620,40502,0],[40501,40502,11367,0],[11367,11621,11366,0],[11364,11365,11366,0],[11366,11621,47555,0],[47559,11622,11623,0],[11368,40500,40501,0],[11625,11364,11624,0],[11625,11624,10745,0],[18590,10744,11625,0],[11624,11627,11626,0],[11624,11626,10745,0],[11362,11628,11629,0],[11649,11629,11630,0],[11630,11629,11683,0],[11630,11683,11684,0],[11631,11647,40798,0],[11631,40798,11632,0],[11655,11632,11633,0],[11667,11634,11636,0],[11636,11635,11653,0],[11653,11635,11641,0],[11641,11635,11637,0],[11637,40897,11640,0],[11640,40897,40924,0],[11640,40924,11638,0],[11640,11638,11658,0],[11639,10754,10753,0],[11639,10753,11658,0],[11642,47557,11656,0],[11643,11656,11644,0],[11646,47552,11647,0],[11647,47552,11648,0],[11668,11649,11630,0],[11650,11657,11651,0],[11643,11644,11645,0],[11647,11648,11668,0],[11668,11630,11684,0],[11668,11684,11647,0],[11647,11631,11646,0],[11646,11631,11654,0],[11654,11650,11645,0],[11645,11650,11651,0],[11645,11651,11643,0],[40794,11655,11652,0],[11652,11655,11633,0],[11650,40794,11657,0],[11657,40794,11653,0],[11657,11653,11641,0],[11655,40794,11654,0],[11654,40794,11650,0],[11655,11654,11631,0],[11654,11645,11646,0],[11656,11643,11651,0],[11656,11651,11657,0],[11656,11657,11642,0],[11642,11657,11641,0],[11639,11658,10756,0],[10756,11658,11638,0],[40896,11660,40890,0],[40892,40890,11666,0],[40892,11666,11664,0],[11664,11663,40895,0],[11635,11636,40896,0],[40896,11636,11660,0],[40890,11660,40845,0],[40890,40845,11661,0],[11661,40846,11662,0],[11662,40846,11703,0],[11662,11703,11665,0],[11665,11703,11704,0],[40895,11663,18572,0],[40895,18572,18575,0],[11663,11664,11665,0],[11665,11664,11666,0],[11665,11666,11662,0],[11666,40890,11661,0],[11661,11662,11666,0],[11668,11670,11669,0],[11668,11648,11670,0],[11669,11670,11363,0],[11628,11361,11679,0],[11679,11681,11671,0],[11671,11681,11672,0],[11671,11672,11673,0],[11673,11672,11680,0],[11673,11680,11358,0],[11674,47510,11677,0],[11677,47510,40835,0],[40835,11356,11675,0],[11355,11675,11356,0],[11358,11674,11673,0],[11673,11674,11676,0],[11676,11674,11677,0],[11673,11676,11671,0],[11671,11676,11678,0],[11671,11678,11679,0],[11359,11358,11680,0],[40800,11680,11682,0],[11682,11681,11361,0],[11361,11681,11679,0],[11681,11682,11672,0],[11672,11682,11680,0],[11628,11679,11629,0],[11629,11679,11683,0],[11683,40799,11684,0],[11684,40799,40797,0],[40797,40799,40796,0],[40796,40799,11685,0],[11685,11678,11676,0],[11679,11678,11683,0],[11683,11678,40799,0],[11335,11344,11334,0],[11334,11344,11345,0],[11334,11345,11347,0],[11686,11347,41230,0],[11347,11686,11333,0],[11344,11341,11345,0],[11345,11341,11346,0],[11346,11687,11348,0],[11687,11688,11348,0],[11692,11691,18516,0],[18516,10769,11692,0],[11691,11692,11693,0],[11693,40826,11715,0],[11715,40826,11694,0],[11691,11693,11690,0],[11690,11693,11695,0],[40858,11695,11715,0],[40858,11715,11694,0],[40858,11694,11696,0],[11696,11694,11697,0],[40827,11700,11699,0],[11699,11700,11701,0],[11699,11701,40851,0],[40851,11701,11702,0],[11702,11703,40847,0],[40847,11703,40846,0],[11704,11703,11711,0],[11708,11711,11705,0],[11705,11706,11707,0],[18554,11706,11705,0],[11711,11708,11709,0],[47591,11710,47593,0],[18573,47593,47592,0],[47592,10760,10759,0],[11708,11705,11707,0],[11708,11707,11709,0],[11709,11707,47591,0],[11703,11702,11701,0],[11705,11711,11712,0],[11712,11698,11713,0],[11713,11714,10764,0],[11712,11713,11705,0],[11701,11711,11703,0],[11711,11701,11700,0],[11711,11700,11712,0],[11712,11700,40827,0],[11712,40827,11698,0],[11714,11698,40884,0],[11714,40884,11697,0],[11714,11697,10765,0],[11713,11698,11714,0],[11665,11704,11709,0],[11711,11709,11704,0],[11715,11695,11693,0],[18516,11691,11716,0],[11691,11690,11716,0],[10770,11716,11717,0],[11717,11718,11726,0],[11726,11718,11719,0],[11732,11721,17973,0],[11732,17973,11722,0],[11722,17973,17972,0],[11722,17972,11723,0],[11723,17972,17971,0],[11723,17971,17966,0],[11723,17966,11729,0],[11729,11724,17985,0],[17985,10772,11725,0],[11725,10772,10771,0],[10770,11717,11726,0],[11726,11727,11728,0],[11728,11727,11730,0],[11730,11729,11725,0],[11729,17985,11725,0],[11730,11725,10771,0],[11730,10771,11731,0],[11728,11730,11731,0],[11728,11731,11726,0],[11726,11731,10770,0],[11730,11727,11729,0],[11729,11727,11733,0],[11733,11727,11732,0],[11732,11722,11733,0],[11723,11729,11733,0],[11723,11733,11722,0],[11721,11732,11720,0],[11726,11719,11727,0],[11727,11719,11732,0],[11720,11732,11719,0],[11717,11716,40859,0],[11717,40859,11689,0],[11717,11689,11718,0],[41467,11735,11736,0],[41467,11736,11737,0],[11687,48841,11736,0],[11736,48841,11737,0],[11737,48841,11738,0],[11687,11735,11688,0],[11687,11736,11735,0],[11688,11735,40875,0],[41229,11571,11740,0],[11331,11740,11571,0],[11571,41229,41227,0],[11741,11743,11334,0],[11334,11743,11742,0],[11334,11333,11741,0],[11741,11333,11193,0],[11742,11743,11336,0],[11336,11744,11745,0],[11744,11746,11747,0],[11747,11746,41405,0],[41407,11748,11186,0],[41407,11186,11185,0],[11186,11748,11188,0],[11336,11743,11744,0],[11744,11743,11749,0],[11750,11190,11751,0],[11750,11751,11192,0],[11190,11749,11751,0],[11751,11749,11741,0],[11741,11749,11743,0],[11744,11749,11190,0],[11744,11190,11746,0],[11746,11190,11752,0],[11752,11188,11748,0],[11748,41405,11752,0],[11752,41405,11746,0],[11191,11190,11750,0],[11194,11331,11195,0],[11195,11331,11786,0],[11754,11327,11753,0],[11753,11327,46022,0],[11323,11814,11324,0],[11324,11814,11756,0],[11324,11756,11755,0],[11756,11757,11795,0],[11795,11757,11256,0],[11763,11256,11758,0],[11759,11758,11760,0],[11760,11769,11761,0],[11762,11810,11759,0],[11762,11761,11774,0],[11759,11760,11762,0],[11760,11761,11762,0],[11810,11762,11774,0],[11758,11759,11763,0],[11256,11763,11795,0],[11758,11255,11760,0],[11764,11765,11206,0],[11766,11767,11768,0],[11253,11768,11254,0],[11254,11768,11767,0],[11254,11767,11769,0],[11769,11767,11764,0],[11764,11767,11765,0],[11765,11767,11766,0],[11769,11760,11254,0],[11254,11760,11255,0],[11764,11206,11811,0],[11812,11770,11775,0],[11775,11770,11205,0],[11772,11771,11806,0],[11772,11806,11773,0],[11772,11773,11774,0],[11774,11812,11772,0],[11772,11812,11775,0],[11775,11771,11772,0],[11206,11770,11811,0],[11811,11770,11812,0],[11205,11204,11775,0],[11775,11204,11776,0],[11775,11776,11771,0],[11771,11776,11777,0],[11777,11776,11804,0],[11804,41244,11778,0],[11779,41248,11780,0],[11780,41248,41249,0],[11781,41249,11787,0],[11787,41249,41250,0],[11782,41247,11783,0],[11784,11783,41236,0],[11785,11194,11195,0],[11785,11195,11196,0],[11197,11785,11196,0],[11784,11196,11783,0],[11783,11196,11782,0],[11782,11196,11195,0],[11782,11195,11786,0],[11782,11786,11787,0],[11781,11787,41232,0],[11781,41232,11788,0],[11781,11788,41401,0],[41401,11788,11790,0],[41401,11790,11789,0],[11790,11788,11329,0],[11329,11788,41233,0],[11329,41233,11330,0],[11754,11753,11789,0],[11789,11753,41401,0],[11781,11791,41249,0],[11804,11778,11801,0],[11804,11801,11808,0],[11808,11801,11800,0],[11800,11799,11792,0],[11792,11799,11798,0],[11792,11798,11793,0],[11809,11794,11795,0],[11795,11794,11756,0],[11756,11794,11755,0],[11755,11796,11797,0],[11797,11796,11798,0],[11797,11798,11799,0],[11779,11800,11801,0],[11800,11779,11802,0],[11800,11802,11799,0],[11755,11797,11324,0],[11780,11791,41401,0],[41401,11791,11781,0],[11325,11797,11803,0],[11325,11803,11780,0],[41249,11791,11780,0],[11779,11780,11803,0],[11779,11803,11802,0],[11806,11792,11807,0],[11806,11807,11773,0],[11806,11771,11805,0],[11806,11805,11792,0],[11804,11808,11777,0],[11777,11808,11805,0],[11807,11792,11793,0],[11773,11807,11809,0],[11759,11810,11763,0],[11810,11774,11809,0],[11809,11774,11773,0],[11793,11794,11807,0],[11807,11794,11809,0],[11810,11795,11763,0],[11792,11805,11800,0],[11808,11800,11805,0],[11769,11811,11761,0],[11769,11764,11811,0],[11761,11811,11774,0],[11812,11774,11811,0],[11258,11256,11757,0],[11814,11323,11260,0],[11260,11323,11262,0],[11260,11262,11261,0],[11260,11813,11814,0],[11262,11323,11263,0],[11253,11254,11815,0],[11255,11815,11254,0],[11250,11251,11913,0],[11913,11251,11816,0],[11250,11913,11249,0],[11250,11249,11843,0],[11250,11843,46887,0],[46887,11843,11818,0],[11818,11843,11817,0],[11818,11817,11819,0],[11818,11819,11820,0],[11820,11821,11840,0],[11830,11821,11822,0],[11819,11910,11823,0],[11829,11823,11908,0],[11829,11908,11824,0],[11826,11824,11898,0],[11826,11898,11825,0],[11826,11827,11829,0],[11829,11827,11828,0],[11823,11828,11819,0],[11819,11828,11822,0],[11829,11828,11823,0],[11824,11826,11829,0],[11828,11830,11822,0],[11825,11832,11826,0],[11826,11832,11827,0],[11827,11832,11831,0],[11827,11831,11830,0],[11825,11213,11832,0],[11832,11212,11831,0],[11212,11832,11213,0],[11825,11898,11833,0],[11833,11834,16735,0],[16735,11834,11214,0],[11214,11834,11879,0],[11214,11879,11835,0],[11835,11836,11215,0],[11840,11837,11838,0],[46886,11838,11839,0],[11839,11842,11251,0],[11251,11250,11839,0],[11838,11837,16788,0],[11842,11841,11251,0],[11251,11841,11816,0],[11842,11839,11838,0],[11838,16788,11842,0],[11837,11840,11210,0],[11248,11844,11249,0],[11249,11844,11845,0],[46883,11845,11846,0],[11876,11847,11848,0],[11881,11848,11849,0],[11849,11848,11871,0],[11849,11871,11850,0],[11862,11850,11851,0],[11862,11851,11861,0],[11861,11851,11852,0],[11852,11853,11866,0],[11866,11867,11868,0],[11868,11869,46879,0],[11868,46879,11859,0],[11854,11855,11888,0],[11888,11855,11856,0],[11856,11857,11892,0],[11225,11857,11226,0],[11225,11224,11223,0],[11857,11856,11226,0],[11226,11856,11855,0],[11226,11855,11858,0],[11858,11855,46879,0],[11859,11855,11854,0],[11859,11854,11893,0],[11859,46879,11855,0],[11852,11866,11860,0],[11859,11861,11860,0],[11860,11861,11852,0],[11861,11859,11893,0],[11862,11861,11893,0],[11860,11866,11868,0],[11868,11859,11860,0],[11850,11871,11851,0],[11851,11871,11863,0],[11851,11863,11870,0],[11870,11863,11864,0],[11853,11864,11865,0],[46882,11231,41400,0],[46882,41400,11232,0],[11867,11229,11868,0],[11868,11229,11869,0],[11866,11865,11867,0],[11864,11853,11870,0],[11870,11853,11852,0],[11852,11851,11870,0],[11866,11853,11865,0],[11848,11847,11871,0],[11249,11845,11843,0],[11843,11845,11872,0],[11843,11872,11817,0],[11819,11822,11820,0],[11820,11822,11821,0],[11872,11910,11817,0],[11845,46883,11872,0],[11872,46883,11910,0],[11873,11846,11874,0],[11875,11874,11876,0],[11875,11876,11904,0],[11904,11881,11906,0],[11906,11881,11877,0],[11906,11877,11880,0],[11880,11877,11886,0],[11906,11880,11878,0],[11835,11879,11878,0],[11835,11878,11836,0],[11836,11878,11880,0],[11215,11880,11216,0],[11880,11886,11216,0],[11904,11876,11881,0],[11881,11876,11848,0],[11846,11847,11874,0],[11874,11847,11876,0],[11877,11881,11849,0],[11877,11849,11882,0],[11883,11882,45835,0],[11883,45835,11884,0],[11884,45835,11890,0],[11884,11890,45771,0],[45771,11890,11220,0],[11886,11877,45776,0],[45776,11882,11883,0],[45776,11877,11882,0],[11886,45775,11885,0],[11216,11886,11885,0],[11849,45834,45835,0],[45835,45834,11887,0],[11854,11888,11889,0],[11889,45835,11887,0],[11889,11887,11854,0],[45835,11889,11890,0],[11890,11889,11892,0],[11892,11889,11891,0],[11892,11857,11220,0],[11856,11892,11891,0],[11856,11891,11888,0],[11890,11892,11220,0],[11891,11889,11888,0],[11854,11887,11893,0],[11873,11874,11894,0],[11894,11903,11909,0],[11909,11903,11899,0],[11899,11903,11895,0],[11902,11905,11878,0],[11902,11878,11879,0],[11897,11909,11899,0],[11833,11900,11834,0],[11900,11833,11898,0],[11900,11898,11824,0],[11900,11824,11897,0],[11899,11895,11901,0],[11899,11901,11897,0],[11834,11902,11879,0],[11834,11901,11902,0],[11902,11901,11896,0],[11902,11896,11905,0],[11896,11901,11895,0],[11834,11900,11901,0],[11901,11900,11897,0],[11903,11875,11895,0],[11875,11904,11895,0],[11895,11904,11905,0],[11895,11905,11896,0],[11904,11906,11905,0],[11906,11878,11905,0],[11874,11875,11894,0],[11875,11903,11894,0],[11910,11873,11894,0],[11910,11894,11907,0],[11823,11907,11908,0],[11824,11908,11909,0],[11909,11908,11894,0],[11907,11894,11908,0],[11823,11910,11907,0],[11819,11817,11910,0],[11911,11912,11240,0],[11240,11912,11928,0],[11928,11912,11927,0],[11913,11816,11927,0],[11238,11816,11252,0],[11915,46023,11236,0],[46023,11915,11916,0],[11916,11917,11257,0],[11257,11917,11918,0],[11920,11815,11919,0],[11920,11257,11815,0],[11815,11257,11918,0],[11257,11920,11258,0],[11758,11919,11255,0],[11253,11815,11252,0],[11815,11918,11252,0],[11915,11914,11916,0],[11916,11914,11917,0],[11917,41397,11238,0],[11252,11918,11238,0],[11912,11248,11927,0],[11927,11248,11913,0],[11242,11243,11246,0],[11246,11243,11244,0],[11246,11244,11245,0],[11245,11921,11922,0],[11245,11922,11246,0],[11246,11922,11923,0],[11923,11922,11232,0],[11925,11241,11242,0],[11241,11925,11926,0],[11926,11925,41398,0],[11926,41398,46885,0],[11924,11925,11242,0],[11246,11923,11242,0],[11242,11923,11924,0],[11232,11922,11233,0],[11233,11922,11921,0],[11235,11245,11236,0],[11245,11244,11236,0],[11914,11915,11244,0],[11927,11239,11928,0],[11928,11239,11929,0],[11928,11929,11241,0],[11241,11929,11243,0],[11226,11858,11225,0],[11225,11858,11227,0],[11225,11227,11297,0],[11218,11217,16617,0],[11209,11210,11930,0],[11930,11931,16744,0],[16744,11931,11932,0],[11932,11931,11933,0],[11933,11931,11934,0],[11821,11934,11935,0],[11935,11934,11931,0],[11935,11931,11210,0],[11210,11931,11930,0],[11934,11211,46027,0],[46027,11211,11212,0],[11212,11211,11830,0],[11821,11211,11934,0],[11209,11930,11208,0],[11207,11208,11936,0],[16783,11936,16787,0],[16787,11936,16745,0],[16787,16745,11937,0],[16780,11937,11938,0],[16776,11939,11940,0],[16776,11940,16775,0],[11942,11943,11944,0],[11944,42502,16763,0],[16761,42493,11945,0],[11945,11946,11947,0],[11945,11947,16764,0],[16764,11947,13078,0],[13078,11947,11948,0],[13082,16756,11950,0],[13123,11950,11951,0],[13122,11951,16755,0],[14753,11952,16754,0],[14754,16754,12567,0],[12567,16754,11953,0],[11954,11953,11955,0],[12563,11956,16738,0],[12563,16738,11957,0],[11957,16737,12562,0],[42707,42586,11959,0],[42707,11959,11958,0],[11958,11959,42708,0],[42708,11959,11960,0],[42708,11960,11961,0],[11961,11960,11962,0],[11961,11962,42728,0],[42728,11962,16751,0],[42728,16751,16752,0],[16752,16753,12378,0],[12378,16753,11963,0],[12365,11964,16727,0],[12365,16727,12337,0],[11965,12337,11966,0],[11967,11965,16726,0],[11969,11968,16564,0],[11969,16564,12008,0],[12008,16564,11970,0],[12006,11972,46357,0],[12006,46357,11974,0],[12006,11974,11973,0],[11973,11974,11975,0],[11976,11975,46364,0],[11976,46364,11977,0],[11977,46364,46353,0],[11977,46353,46889,0],[46889,46353,11978,0],[46778,11978,46351,0],[46778,46351,11979,0],[11979,11980,46379,0],[46379,11980,46380,0],[46380,11980,12003,0],[12003,11982,46380,0],[11981,11982,46776,0],[46776,11982,46775,0],[46775,11982,12004,0],[11983,11988,46443,0],[46443,11988,11984,0],[46443,11984,11985,0],[11985,11984,11986,0],[11986,11984,11987,0],[11988,11982,12003,0],[11988,12003,11999,0],[11999,12003,12000,0],[12000,12003,11989,0],[12000,11989,11990,0],[12000,11990,11991,0],[11991,12196,11992,0],[12134,11996,11995,0],[11995,11996,11997,0],[46794,11997,11985,0],[46794,11985,11986,0],[12200,12134,11994,0],[11994,12134,11998,0],[11994,11998,11993,0],[11993,11998,12002,0],[12002,11998,12001,0],[11993,12002,11992,0],[11992,12002,11991,0],[12134,11995,11998,0],[11988,11999,11987,0],[11999,12000,11987,0],[11987,12000,12001,0],[12001,12000,12002,0],[11991,12002,12000,0],[11984,11988,11987,0],[11988,11983,12004,0],[11988,12004,11982,0],[11974,12005,11975,0],[12006,12007,16563,0],[16563,12007,12008,0],[12338,12010,12346,0],[12346,12011,12344,0],[12344,12011,12012,0],[12344,12012,12345,0],[12345,12012,16555,0],[12345,16555,12013,0],[46212,16555,16554,0],[16554,16555,12015,0],[12015,46447,16553,0],[12016,16553,16559,0],[12016,16559,46446,0],[16551,16550,12017,0],[46258,12019,46266,0],[16497,16545,12020,0],[12020,12021,16498,0],[16498,12021,12022,0],[16526,12023,12024,0],[12026,12025,12027,0],[12027,12025,46476,0],[12027,46476,12028,0],[16506,12029,46475,0],[16506,46475,46896,0],[46895,46894,46315,0],[46315,46894,46472,0],[12032,12033,46758,0],[46758,12033,12034,0],[12034,16495,16534,0],[15915,12035,16535,0],[12036,16535,16541,0],[12036,16536,16451,0],[12037,16450,15919,0],[15919,16419,15918,0],[15918,16419,16445,0],[15918,16445,12038,0],[16384,16446,16383,0],[16383,16446,12039,0],[16382,12039,16447,0],[16382,16447,12040,0],[16379,12040,12041,0],[16367,12042,12043,0],[16367,12043,12044,0],[12044,12043,12045,0],[12045,14818,12046,0],[12046,14818,12047,0],[12046,12047,14823,0],[14823,12047,12049,0],[12049,12048,46715,0],[46715,12048,12050,0],[42639,12050,12051,0],[12053,12052,12054,0],[12054,14813,42642,0],[42642,12055,14812,0],[14812,12055,46720,0],[14812,46720,12057,0],[14812,12057,12056,0],[12056,12057,12058,0],[12056,12058,46722,0],[12056,46722,42643,0],[42643,46722,46583,0],[42643,46583,46560,0],[12060,12059,46585,0],[12060,46585,12061,0],[46587,46588,14804,0],[14804,46588,12062,0],[12063,12064,12065,0],[42804,12068,12067,0],[12067,12068,12069,0],[12069,42801,14800,0],[14800,42801,12070,0],[14800,12070,14811,0],[14811,12070,12071,0],[12071,12072,14811,0],[14811,12072,42478,0],[14811,42478,14796,0],[46841,46840,12073,0],[46841,12073,12074,0],[42482,14798,12075,0],[12077,12078,12079,0],[12079,12078,12080,0],[12079,12080,42476,0],[12439,42476,12081,0],[12082,12228,12083,0],[12084,12083,14795,0],[12084,14795,12085,0],[12227,12086,12087,0],[12087,12086,12088,0],[12089,12088,12127,0],[12231,12097,12232,0],[12232,12097,12095,0],[12520,12095,12090,0],[12091,12090,12229,0],[12091,12229,12092,0],[12093,12092,12094,0],[46817,12094,46824,0],[12096,12090,12095,0],[12096,12095,12097,0],[12096,12097,12098,0],[12098,12097,12126,0],[12098,12126,12099,0],[46828,12104,12105,0],[46828,12105,12106,0],[12108,12107,12109,0],[12109,12107,46812,0],[12109,46812,42971,0],[12109,42971,14774,0],[42963,42976,12113,0],[12113,42976,42966,0],[12113,42966,42964,0],[12113,42964,12114,0],[12118,12114,12115,0],[12118,12115,12117,0],[14767,14769,42986,0],[42986,14769,12116,0],[12118,12116,12119,0],[12119,12116,12120,0],[12119,12120,12112,0],[12117,12116,12118,0],[12116,12122,12120,0],[12120,12123,12121,0],[12121,12110,12111,0],[12121,12111,12120,0],[12112,12120,12111,0],[12117,42986,12116,0],[12120,12122,12248,0],[12120,12248,12123,0],[12124,14773,12110,0],[12110,14773,14774,0],[12110,12121,12124,0],[12121,12123,12125,0],[12125,12124,12121,0],[12122,12116,14769,0],[12112,42963,12119,0],[12112,12111,42977,0],[12112,42977,42963,0],[42963,42977,42976,0],[42976,42967,42966,0],[12126,12097,12231,0],[12126,12231,12136,0],[12136,12127,12135,0],[12135,46846,12128,0],[12135,12128,11996,0],[12129,11996,12128,0],[12129,12128,12130,0],[12129,12130,12131,0],[12131,12130,46847,0],[12129,12131,12132,0],[12129,12132,12133,0],[12129,12133,11996,0],[11996,12134,12135,0],[12135,12134,12136,0],[12134,12200,12201,0],[12134,12201,12136,0],[12136,12201,12137,0],[12137,12201,12149,0],[12149,12201,12200,0],[12149,12200,12202,0],[12149,12202,12150,0],[12150,12202,12148,0],[12150,12148,12151,0],[12151,12138,46811,0],[12140,12139,12141,0],[12140,12141,46800,0],[46800,12141,46799,0],[46866,46799,12143,0],[46866,12143,12142,0],[12142,12143,12144,0],[12145,12144,12138,0],[46811,12138,12139,0],[12139,12138,12141,0],[12143,46799,12141,0],[12143,12141,12144,0],[12144,12141,12138,0],[12144,12145,12146,0],[12144,12146,46854,0],[12151,12148,12138,0],[12138,12148,12145,0],[12146,12145,12147,0],[46854,12142,12144,0],[12145,12148,12202,0],[12136,12137,12126,0],[12137,12149,12126,0],[12099,12149,12100,0],[12100,12149,12150,0],[12100,12150,12151,0],[12100,12151,12102,0],[12102,12151,12103,0],[12152,12223,12104,0],[12104,12223,12186,0],[12104,12186,12153,0],[12154,12153,12155,0],[12154,12155,12156,0],[12158,12156,12157,0],[12159,12158,12178,0],[12159,12178,46865,0],[46865,12178,12160,0],[46865,12160,12161,0],[12161,12160,12177,0],[12161,12177,12162,0],[12162,12163,34666,0],[34666,12163,8891,0],[34666,8891,12164,0],[12164,8891,46807,0],[12164,46807,8892,0],[12175,12176,12165,0],[12165,12185,12184,0],[12169,12168,12216,0],[12169,12216,12170,0],[12170,8888,8889,0],[12170,8889,12169,0],[12166,12171,12172,0],[12171,12168,12173,0],[12173,12162,12177,0],[12177,12179,12174,0],[12176,12158,12157,0],[12158,12176,12178,0],[12179,12177,12160,0],[12176,12175,12178,0],[12175,12174,12178,0],[12178,12174,12179,0],[12178,12179,12160,0],[12175,12165,12174,0],[12173,12177,12171,0],[12171,12177,12172,0],[12177,12174,12172,0],[12172,12174,12165,0],[12165,12184,12166,0],[12172,12165,12166,0],[12171,12166,12167,0],[12171,12167,12168,0],[12216,12168,12180,0],[12180,12226,12181,0],[12188,12183,12184,0],[12188,12184,12185,0],[12185,12225,12187,0],[12187,12225,12153,0],[12153,12225,12155,0],[12187,12153,12186,0],[12187,46801,12188,0],[12188,46801,12189,0],[12183,12189,12182,0],[12191,46799,12192,0],[12192,46361,12211,0],[12209,12193,46359,0],[46359,12193,46347,0],[46347,12193,46360,0],[46347,46360,12194,0],[12195,12194,46795,0],[11991,12195,12197,0],[11991,12197,12196,0],[12196,12197,12198,0],[12198,12142,46854,0],[46854,12199,12198,0],[11992,12199,11993,0],[12202,11993,12147,0],[12202,12147,12145,0],[12199,12147,11993,0],[11994,11993,12202,0],[11994,12202,12200,0],[12198,12199,12196,0],[11992,12196,12199,0],[12195,46795,12197,0],[12197,46798,12198,0],[12198,46798,46796,0],[12198,46796,12142,0],[11991,11990,12195,0],[12209,12210,12193,0],[8881,12212,12204,0],[12204,12212,12205,0],[12204,12205,12206,0],[46355,12208,12209,0],[12206,12205,12207,0],[12207,12205,12208,0],[12209,12208,12210,0],[12211,12210,12208,0],[12211,12208,12205,0],[12205,12212,12211,0],[12211,12212,12192,0],[46361,12210,12211,0],[12203,12192,8881,0],[12203,8880,12213,0],[12220,12221,12214,0],[12214,12221,12222,0],[12222,12217,12215,0],[43220,12215,12216,0],[43220,12216,12180,0],[12180,12181,43220,0],[12216,12215,12170,0],[8888,12170,12218,0],[12218,12170,12215,0],[12218,12215,12217,0],[12218,12217,8886,0],[8886,12217,12219,0],[8886,12219,8879,0],[8879,12220,8880,0],[8880,12220,12213,0],[12221,12220,12219,0],[12221,12219,12217,0],[12219,12220,8879,0],[12222,12221,12217,0],[12203,12213,12192,0],[12192,12213,12191,0],[12182,12190,12181,0],[12181,12190,12222,0],[12222,12190,12214,0],[12181,12222,43220,0],[12183,12188,12189,0],[12187,12188,12185,0],[12186,12223,12187,0],[12187,12223,46801,0],[12223,12152,46811,0],[46811,12224,12151,0],[12151,12224,12103,0],[12103,12224,12152,0],[12152,12224,46811,0],[12176,12225,12165,0],[12165,12225,12185,0],[12184,12183,12226,0],[12226,12183,12182,0],[12226,12182,12181,0],[12226,12166,12184,0],[12225,12176,12155,0],[12155,12176,12157,0],[12157,12156,12155,0],[12102,12101,12100,0],[12099,12126,12149,0],[46847,42783,12131,0],[12231,12089,12136,0],[12136,12089,12127,0],[46846,12088,46847,0],[46847,12088,12086,0],[12227,12085,42773,0],[42773,12085,14795,0],[42477,14795,12228,0],[42477,12228,12081,0],[12081,12228,12082,0],[12088,46846,12127,0],[12098,12099,12100,0],[12094,12092,12230,0],[12092,12229,12230,0],[12090,12096,12229,0],[12229,12096,12230,0],[12094,12230,46824,0],[46825,46824,12230,0],[12096,46825,12230,0],[12237,12231,12232,0],[12235,12084,12085,0],[12235,12085,12227,0],[12084,12235,12234,0],[12234,12235,12236,0],[12238,12087,12088,0],[12238,12088,12089,0],[12238,12089,12237,0],[12087,12238,12233,0],[12087,12233,12236,0],[12236,12233,12234,0],[12233,12238,12237,0],[12237,12232,12233,0],[12227,12087,12235,0],[12087,12236,12235,0],[12232,12095,12520,0],[12232,12520,12233,0],[42772,12520,12090,0],[42772,12090,12519,0],[12519,12090,12091,0],[12519,12091,12239,0],[12239,12091,12240,0],[12240,14790,12518,0],[14790,14791,12523,0],[12523,14791,12241,0],[12241,14791,14792,0],[12241,14792,14793,0],[12244,12243,12533,0],[12245,12533,46849,0],[12532,14778,12246,0],[12495,12246,12247,0],[12247,12246,14772,0],[12247,14772,12248,0],[12248,12122,14770,0],[12501,12249,12250,0],[12501,12250,12500,0],[42504,12251,14765,0],[14765,12251,42573,0],[14765,42573,12252,0],[12252,42573,42567,0],[12252,12809,12253,0],[12253,12809,12811,0],[12256,12255,12257,0],[12257,42473,14764,0],[14764,42473,14761,0],[14761,42473,12260,0],[12253,12259,12254,0],[12254,12259,12255,0],[12255,12259,42473,0],[12255,42473,12257,0],[12259,42469,12258,0],[12258,42469,12260,0],[42474,12261,14760,0],[42474,14760,12398,0],[12398,14760,12262,0],[12262,12263,12397,0],[12397,12263,12853,0],[12397,12853,12264,0],[12264,12850,12265,0],[12265,12850,12266,0],[12267,12266,12848,0],[12267,12848,12268,0],[12267,12268,12269,0],[12388,12269,12270,0],[12290,12272,12861,0],[12290,12861,12273,0],[12273,12863,12274,0],[12274,12863,12275,0],[12274,12275,12276,0],[12276,12275,42811,0],[12276,42811,12544,0],[12278,12559,12279,0],[12565,12280,12281,0],[14755,12281,12282,0],[12568,12282,12283,0],[12875,12283,12288,0],[12287,12289,12286,0],[12286,12289,12281,0],[12286,12281,12284,0],[12284,12280,12279,0],[12284,12279,12559,0],[12284,12559,12285,0],[12286,12285,34387,0],[12286,34387,12287,0],[12287,12867,12288,0],[12287,12288,12289,0],[12286,12284,12285,0],[12280,12284,12281,0],[12288,12283,12289,0],[12289,12283,12282,0],[12289,12282,12281,0],[12273,12274,12290,0],[12290,12291,12272,0],[12272,12291,12386,0],[12386,12291,12545,0],[12386,12545,12292,0],[12385,12292,12550,0],[12385,12550,12555,0],[12293,12294,12307,0],[12307,12294,12295,0],[12296,12295,12297,0],[12296,12297,12303,0],[12303,12297,12301,0],[12301,12297,12298,0],[12299,42713,12300,0],[12299,12300,12543,0],[12301,12543,12302,0],[12302,42601,12303,0],[12303,42601,12304,0],[12383,12305,12306,0],[12383,12306,12296,0],[12296,12306,12295,0],[12295,12306,12307,0],[12293,12307,12384,0],[12308,12384,12309,0],[12308,12309,12310,0],[12311,12310,12312,0],[12312,42743,46893,0],[46893,42743,12313,0],[46861,12314,42748,0],[46861,42748,46859,0],[46859,42748,42749,0],[12542,42751,12315,0],[12315,42752,12316,0],[12316,42752,42769,0],[12316,42769,12317,0],[12455,12317,12318,0],[12445,12319,12320,0],[12320,46856,42755,0],[46855,42756,46841,0],[12309,12384,42739,0],[42739,12384,12307,0],[42739,12307,12306,0],[42739,12306,12305,0],[42739,12305,12321,0],[42740,12321,12380,0],[42740,12380,42810,0],[42745,42810,12322,0],[42745,12322,42742,0],[12322,12380,46891,0],[46891,12380,12323,0],[12323,12380,12382,0],[12323,12382,14885,0],[14885,12382,42581,0],[14885,42581,12324,0],[12324,42581,12325,0],[12325,12327,12326,0],[15658,12330,12331,0],[15658,12331,15620,0],[15620,12331,12332,0],[15621,12332,12333,0],[15616,12333,12334,0],[15616,12334,15615,0],[12335,12373,12336,0],[11965,12336,12337,0],[12336,11965,12335,0],[12335,11965,11967,0],[11969,12010,12338,0],[12338,11967,16726,0],[12338,16726,11968,0],[12338,11968,11969,0],[15622,12335,12339,0],[12340,12339,12347,0],[12340,12347,12341,0],[12341,12347,12351,0],[12341,12351,12342,0],[12351,12347,12343,0],[12343,12347,12344,0],[12343,12344,12345,0],[12346,12344,12347,0],[12346,12339,12338,0],[12338,12339,11967,0],[12339,12335,11967,0],[12339,12346,12347,0],[12345,12013,12348,0],[12348,12349,12350,0],[12348,12350,12343,0],[12343,12350,12351,0],[12351,12364,12342,0],[12348,12343,12345,0],[12013,12014,12352,0],[12013,12352,12348,0],[12348,12352,12353,0],[12348,12353,12349,0],[12353,12354,12362,0],[12355,46210,12356,0],[12357,46206,12361,0],[12360,12361,12358,0],[12358,12359,47223,0],[47223,12360,12358,0],[12350,12363,12364,0],[12351,12350,12364,0],[15188,12363,12350,0],[12350,12349,12362,0],[12350,12362,15188,0],[12339,12340,15622,0],[12336,12373,12337,0],[12337,12373,12365,0],[12365,12366,11964,0],[11964,12366,46038,0],[46038,12366,12367,0],[46038,12367,46039,0],[46039,12367,46037,0],[46037,12367,12368,0],[12369,12368,12370,0],[12371,12375,12331,0],[12371,12331,12330,0],[12371,12330,42599,0],[42599,12330,12329,0],[12331,12375,12332,0],[12332,12375,12376,0],[12332,12376,12372,0],[12374,12372,12373,0],[12373,12334,12374,0],[12334,12333,12374,0],[12372,12374,12333,0],[12372,12333,12332,0],[12365,12373,12372,0],[12365,12372,12366,0],[12366,12372,12376,0],[12375,12371,12370,0],[12367,12366,12376,0],[12367,12376,12368,0],[12376,12375,12368,0],[12370,12368,12375,0],[11964,46038,12377,0],[12377,46038,12378,0],[12378,46038,12379,0],[12379,42727,42728,0],[12377,12378,11963,0],[12322,42810,12380,0],[12381,12380,12383,0],[12380,12381,12382,0],[12380,12321,12305,0],[12380,12305,12383,0],[12293,12384,12555,0],[12555,12384,12385,0],[12292,12385,12386,0],[12272,12386,12271,0],[12271,12386,12270,0],[12386,12385,12270,0],[12270,12385,12387,0],[12270,12387,12388,0],[12388,12387,12308,0],[12388,12308,12389,0],[12409,12410,12390,0],[12392,12393,12404,0],[12404,12393,12394,0],[12394,12395,12396,0],[12396,12395,12483,0],[12396,12483,12398,0],[12396,12398,12397,0],[12397,12398,12262,0],[12397,12264,12399,0],[12397,12399,12396,0],[12409,12390,12400,0],[12409,12400,12401,0],[12409,12401,12389,0],[12389,12401,12388,0],[12390,12391,12400,0],[12401,12400,12406,0],[12401,12406,12402,0],[12402,12406,12403,0],[12404,12394,12405,0],[12405,12394,12396,0],[12404,12403,12392,0],[12392,12403,12406,0],[12392,12406,12391,0],[12391,12406,12400,0],[12401,12402,12388,0],[12388,12402,12269,0],[12269,12402,12403,0],[12269,12403,12407,0],[12269,12407,12267,0],[12267,12407,12408,0],[12267,12408,12266,0],[12266,12408,12265,0],[12403,12404,12407,0],[12407,12404,12405,0],[12407,12405,12408,0],[12408,12405,14758,0],[12408,14758,12265,0],[12385,12384,12387,0],[12384,12308,12387,0],[12389,12308,12311,0],[12389,12311,12409,0],[12409,12311,12411,0],[12409,12411,12410,0],[12410,12411,46892,0],[12410,46892,12412,0],[12412,12541,12474,0],[12474,12541,12413,0],[12417,12419,12418,0],[12418,12419,12420,0],[12421,12420,12542,0],[12421,12542,12315,0],[12315,12316,12421,0],[12420,12421,12418,0],[12316,12317,12421,0],[12421,12317,12454,0],[12417,12451,12416,0],[12415,12416,12422,0],[12415,12422,42771,0],[42771,12422,12473,0],[12473,12422,12423,0],[12423,12422,12433,0],[12423,12433,12424,0],[12525,12424,12425,0],[12514,12426,12510,0],[12427,12510,12430,0],[12464,12427,12428,0],[12426,12431,12510,0],[12510,12431,12430,0],[12428,12430,12432,0],[12429,12432,12430,0],[12430,12428,12427,0],[12424,12433,12434,0],[12424,12434,12425,0],[12425,12434,12435,0],[12425,12435,12538,0],[12538,12435,12436,0],[12432,12429,12449,0],[12432,12449,12448,0],[12461,12437,12438,0],[12081,12438,12439,0],[12439,12076,12077,0],[14797,12076,12460,0],[12437,12446,12440,0],[12440,12446,12441,0],[12444,12443,12320,0],[12444,12320,42755,0],[12319,12445,12447,0],[12319,12447,12318,0],[12318,12447,12456,0],[12456,12459,12449,0],[12441,12458,12442,0],[12442,12458,12447,0],[12442,12447,12443,0],[12443,12447,12445,0],[12443,12445,12320,0],[12437,12448,12446,0],[12446,12448,12449,0],[12449,12429,12457,0],[12457,12429,12436,0],[12450,12436,12435,0],[12450,12435,12451,0],[12435,12434,12451,0],[12451,12434,12452,0],[12452,12434,12433,0],[12452,12433,12422,0],[12451,12452,12416,0],[12416,12452,12422,0],[12449,12457,12453,0],[12456,12453,12454,0],[12456,12454,12455,0],[12317,12455,12454,0],[12449,12453,12456,0],[12318,12456,12455,0],[12457,12436,12450,0],[12453,12457,12454,0],[12454,12457,12450,0],[12441,12446,12458,0],[12458,12459,12447,0],[12447,12459,12456,0],[12459,12458,12446,0],[12459,12446,12449,0],[12440,12441,12460,0],[12075,14797,12460,0],[12437,12440,12438,0],[12460,12076,12440,0],[12440,12076,12439,0],[12440,12439,12438,0],[42476,12439,12079,0],[12081,12082,12438,0],[12438,12082,12461,0],[12428,12462,12463,0],[12428,12463,12464,0],[12464,12463,12517,0],[12464,12517,12523,0],[12464,12523,12465,0],[12465,12523,12516,0],[12465,12516,12466,0],[12468,12524,12470,0],[12470,12524,12469,0],[12471,12470,12426,0],[12426,12470,12425,0],[12425,12470,12525,0],[12424,12525,12472,0],[12424,12472,12423,0],[12423,12472,12473,0],[42771,12473,12484,0],[42771,12484,12474,0],[12474,12393,12475,0],[12390,12475,12391,0],[12391,12475,12392,0],[12392,12475,12393,0],[12394,12393,12476,0],[12478,12485,42471,0],[12485,12486,12479,0],[14762,12479,12506,0],[14762,12506,12480,0],[12480,12506,12482,0],[12489,12493,12481,0],[12481,12493,12494,0],[12256,12494,12505,0],[12256,12481,12494,0],[12481,14764,12489,0],[12489,14764,12482,0],[12485,12479,42471,0],[12394,12476,12477,0],[12394,12477,12395,0],[12395,42472,12483,0],[12393,12474,12476,0],[12476,12474,12484,0],[12476,12484,12477,0],[12478,12477,12473,0],[12484,12473,12477,0],[12478,12473,12485,0],[12486,12485,12472,0],[12486,12469,12524,0],[12486,12524,12487,0],[12487,12468,12488,0],[12488,12468,12527,0],[12491,12492,12490,0],[12490,12492,12489,0],[12489,12482,12490,0],[12491,12490,12507,0],[12489,12492,12493,0],[12494,12493,12531,0],[12494,12531,12532,0],[12494,12532,12505,0],[12532,12246,12495,0],[12247,12248,12496,0],[12495,12502,12505,0],[12505,12502,12499,0],[12505,12499,12497,0],[12498,12499,12504,0],[12504,12499,12503,0],[12503,12499,12500,0],[12500,12499,12502,0],[12500,12502,12501,0],[12501,12502,12496,0],[12247,12496,12495,0],[12495,12496,12502,0],[12497,12499,12498,0],[14770,12249,12496,0],[12496,12249,12501,0],[12498,12504,12254,0],[12498,12254,12497,0],[12256,12497,12255,0],[12255,12497,12254,0],[12497,12256,12505,0],[12479,12486,42470,0],[12506,42470,12507,0],[12506,12507,12490,0],[12490,12482,12506,0],[12506,12479,42470,0],[12486,12472,12469,0],[12472,12485,12473,0],[12415,42771,12413,0],[12467,12508,12509,0],[12467,12509,12511,0],[12511,12509,12512,0],[12512,12510,12427,0],[12509,12514,12510,0],[12509,12510,12512,0],[12468,12508,12467,0],[12467,12511,12522,0],[12522,12511,12466,0],[12466,12511,12512,0],[12513,12465,12512,0],[12513,12512,12427,0],[12513,12427,12464,0],[12513,12464,12465,0],[12465,12466,12512,0],[12468,12470,12508,0],[12508,12470,12471,0],[12508,12471,12514,0],[12508,12514,12509,0],[12526,12522,12521,0],[12526,12521,12244,0],[12244,12521,12241,0],[12244,12241,12242,0],[12242,12241,14793,0],[12523,12517,14790,0],[12518,12536,12240,0],[12240,12536,12535,0],[12240,12535,12239,0],[12241,12521,12515,0],[12521,12522,12466,0],[12466,12516,12521,0],[12521,12516,12515,0],[12516,12523,12515,0],[12515,12523,12241,0],[12522,12526,12467,0],[12467,12526,12468,0],[12468,12526,12527,0],[12468,12487,12524,0],[12525,12469,12472,0],[12525,12470,12469,0],[12526,12244,12527,0],[12528,12533,12245,0],[12527,12528,12491,0],[12491,12530,12492,0],[12492,12530,12529,0],[14778,12529,46851,0],[12530,12245,12529,0],[12529,12245,46851,0],[12245,12530,12528,0],[12530,12491,12528,0],[12493,12492,12529,0],[12493,12529,12531,0],[12531,12529,12532,0],[12532,12529,14778,0],[12528,12527,12533,0],[12533,12527,12244,0],[12243,12244,12242,0],[12462,12461,12082,0],[12462,12082,12534,0],[12463,12462,12534,0],[12536,12534,12537,0],[12535,12537,12234,0],[12535,12519,12239,0],[12536,12518,12517,0],[12517,12534,12536,0],[12517,12463,12534,0],[12536,12537,12535,0],[12082,12537,12534,0],[12537,12083,12234,0],[12084,12234,12083,0],[12537,12082,12083,0],[12437,12461,12448,0],[12461,12462,12448,0],[12448,12462,12428,0],[12448,12428,12432,0],[12431,12425,12538,0],[12430,12538,12429,0],[12429,12538,12436,0],[12430,12431,12538,0],[12431,12426,12425,0],[12417,12418,12451,0],[12451,12418,12450,0],[12454,12450,12418,0],[12454,12418,12421,0],[12539,12419,12540,0],[46860,12414,12541,0],[12413,12414,12540,0],[12413,12540,12415,0],[12415,12540,12416,0],[12416,12540,12417,0],[12540,12419,12417,0],[12419,12539,12420,0],[12420,12539,12542,0],[12308,12310,12311,0],[12383,12296,12303,0],[12383,12303,12304,0],[12303,12301,12302,0],[12301,12298,12299,0],[12301,12299,12543,0],[12290,12274,12276,0],[12290,12276,12291,0],[12276,12544,12545,0],[12545,12544,12558,0],[12545,12558,12546,0],[12546,12558,42704,0],[12546,42704,12547,0],[12549,12548,42579,0],[42579,42713,12299,0],[42579,12299,12549,0],[12549,12553,12552,0],[12552,12553,12554,0],[12552,12554,12550,0],[12552,12550,12551,0],[12547,12551,12546,0],[12546,12551,12556,0],[12546,12556,12545,0],[12545,12556,12292,0],[12545,12291,12276,0],[12548,12549,12552,0],[12548,12552,12547,0],[12547,12552,12551,0],[12299,12298,12549,0],[12553,12549,12557,0],[12554,12553,12294,0],[12294,12293,12554,0],[12554,12293,12555,0],[12554,12555,12550,0],[12550,12556,12551,0],[12292,12556,12550,0],[12294,12553,12295,0],[12295,12553,12557,0],[12295,12557,12297,0],[12297,12557,12298,0],[12298,12557,12549,0],[42704,12277,42705,0],[42705,12277,12559,0],[42705,12559,12560,0],[12560,12559,12278,0],[12560,12278,14756,0],[12560,14756,12561,0],[12561,12563,12562,0],[12562,12563,11957,0],[12566,12567,11953,0],[11953,11954,12566,0],[42500,12569,14753,0],[14753,12569,13124,0],[42500,12929,12569,0],[12570,12569,12932,0],[12570,12932,13121,0],[13121,12934,13120,0],[13120,12934,12572,0],[12571,12572,13119,0],[12573,13118,12893,0],[12573,12893,12574,0],[12576,12574,12575,0],[12576,12575,13037,0],[12577,13037,12892,0],[12577,12892,12578,0],[12578,12892,12956,0],[12579,12580,13036,0],[13036,12580,12581,0],[12953,14747,12583,0],[12967,12583,12898,0],[12898,34383,34358,0],[34358,34383,12584,0],[34356,12584,12784,0],[34356,12784,12785,0],[12585,12787,12586,0],[12906,12587,12586,0],[12586,12587,12588,0],[34347,12588,34344,0],[34347,34344,12589,0],[34361,12589,12779,0],[34361,12779,12590,0],[12590,12779,42824,0],[12591,42824,12778,0],[12745,34342,12746,0],[12746,34342,12592,0],[12592,12594,12593,0],[12596,12822,12722,0],[12722,12822,12723,0],[12723,12822,12597,0],[12600,12599,12821,0],[42961,12821,12601,0],[42961,12601,12602,0],[12602,12824,42962,0],[12604,12606,42578,0],[42578,12606,12607,0],[12607,12823,12609,0],[12609,12823,12608,0],[12609,12608,12610,0],[12609,12610,12611,0],[12611,12610,42960,0],[12611,42960,12613,0],[42546,42545,12609,0],[12609,42545,12607,0],[42546,12609,12613,0],[42546,12613,12612,0],[12613,12609,12611,0],[12604,12605,12606,0],[12605,12604,42576,0],[12605,42576,12603,0],[12603,42576,42575,0],[12775,42575,12614,0],[12775,12614,12600,0],[12600,12615,12599,0],[12599,12615,12623,0],[12619,12616,34643,0],[12619,34643,12617,0],[34626,12617,34627,0],[34627,12618,42539,0],[42539,12618,34633,0],[42539,34633,8928,0],[8928,34633,34634,0],[12617,34626,12619,0],[12616,12619,12620,0],[12620,34629,12622,0],[12622,34629,12621,0],[12621,34629,34498,0],[12623,12622,12624,0],[12774,12625,12621,0],[12774,8933,12627,0],[12627,8933,8934,0],[12626,8933,12774,0],[12626,12774,12621,0],[12625,12629,12647,0],[12625,12647,12598,0],[12598,12647,12717,0],[12598,12717,12597,0],[12597,12717,12719,0],[12597,12719,12723,0],[42958,12630,12631,0],[12631,12630,12720,0],[12631,12720,12632,0],[34339,12632,12633,0],[12636,12635,12641,0],[12636,12641,12639,0],[12636,12639,12637,0],[12637,12639,12732,0],[12640,12732,12639,0],[12640,12639,12641,0],[12642,12641,12634,0],[42959,12720,12643,0],[12645,12646,12716,0],[12716,12646,12717,0],[12716,12717,12647,0],[12716,12647,12648,0],[12650,12648,12628,0],[12649,12628,8935,0],[12649,8936,12628,0],[12628,8936,12650,0],[12715,12650,8937,0],[12715,8937,12652,0],[12652,8937,12651,0],[12652,12651,12653,0],[12652,12653,12654,0],[12654,12653,12655,0],[12655,12653,12656,0],[12655,12656,34337,0],[12763,42817,42816,0],[12763,42816,12657,0],[12658,12657,12659,0],[12658,12659,12672,0],[12672,12659,12660,0],[34419,34420,12661,0],[34419,9107,12662,0],[34418,12663,34421,0],[34421,12663,12664,0],[12664,12686,12665,0],[12665,12686,12666,0],[12665,12666,12676,0],[12665,12676,12688,0],[12688,12676,12668,0],[12688,12668,12667,0],[12667,12668,12669,0],[12667,12669,12679,0],[12667,12679,12675,0],[12675,12670,12673,0],[12671,12672,12661,0],[12671,12661,34420,0],[12671,34420,12673,0],[12673,34420,12674,0],[12674,34417,12675,0],[12674,12675,12673,0],[34417,12667,12675,0],[12668,12676,12677,0],[12678,12677,26399,0],[12668,12677,12669,0],[12669,12677,12770,0],[12669,12770,34414,0],[12669,34414,12679,0],[12679,34414,34415,0],[12679,34415,12675,0],[12675,34415,12670,0],[12676,12666,12680,0],[12680,12666,12681,0],[12681,12666,12687,0],[12681,12687,9241,0],[12683,12687,12682,0],[12683,12682,12686,0],[12683,12686,12684,0],[12685,12664,12663,0],[12685,12663,9122,0],[12685,34422,12684,0],[12666,12686,12687,0],[12687,12686,12682,0],[12685,12684,12664,0],[12664,12684,12686,0],[34419,12662,9123,0],[34419,9123,12663,0],[34419,12663,34418,0],[12667,34417,12688,0],[12688,34417,34418,0],[34419,12661,9107,0],[9107,12661,12693,0],[12693,12692,9106,0],[9106,12692,12689,0],[12714,12690,12691,0],[12710,12691,12695,0],[12695,12691,12660,0],[12660,12691,12694,0],[12694,12691,12692,0],[12694,12692,12693,0],[12692,12691,12689,0],[12691,12690,12689,0],[12693,12661,12694,0],[12661,12660,12694,0],[12695,34623,12710,0],[12710,34623,34624,0],[12710,34624,12711,0],[12711,34624,12696,0],[12698,12697,12701,0],[12698,12701,12699,0],[12700,12701,12702,0],[34624,12702,12696,0],[12696,12702,12697,0],[12702,12701,12697,0],[12701,12700,12699,0],[12699,12700,8939,0],[12699,8942,12698,0],[12712,12698,12709,0],[12712,12709,12703,0],[9075,12704,12705,0],[12705,12704,34836,0],[8943,8944,12706,0],[12706,12707,12705,0],[12706,8944,8946,0],[12706,8946,12707,0],[12705,12708,9075,0],[12705,12707,12708,0],[8947,9127,12707,0],[9127,12708,12707,0],[9127,9126,12708,0],[12708,9126,9075,0],[12706,12705,34832,0],[34832,12705,34836,0],[12714,12711,12696,0],[12714,12696,12697,0],[12698,12712,12697,0],[12712,12703,12697,0],[12697,12713,12714,0],[12714,12713,12690,0],[9124,12690,12713,0],[12713,12697,12704,0],[12704,12697,12703,0],[12710,12711,12691,0],[12691,12711,12714,0],[12715,12652,12654,0],[12645,12655,34337,0],[12645,34337,12718,0],[12715,12716,12648,0],[12715,12648,12650,0],[34148,12650,8936,0],[12647,12629,12648,0],[12648,12629,12628,0],[12719,12717,12646,0],[12719,12646,12718,0],[12718,12646,12645,0],[12719,12718,12630,0],[12719,12630,12723,0],[12723,12630,42958,0],[12630,12718,12644,0],[12720,12630,12644,0],[12644,12643,12720,0],[12632,12720,12633,0],[12720,42959,12633,0],[42959,12642,12633,0],[12642,12634,12633,0],[12635,12634,12641,0],[12638,12732,12721,0],[12638,12721,12656,0],[12656,12721,34337,0],[12724,12722,42958,0],[12724,12595,12596,0],[12746,12593,12726,0],[12746,12726,12745,0],[12745,12726,12727,0],[12727,34340,12728,0],[12727,12728,12729,0],[12729,12728,12730,0],[12749,12730,12748,0],[12748,12772,12731,0],[12732,12733,12771,0],[12734,12733,12754,0],[12772,12753,12731,0],[12735,12752,34367,0],[34367,12752,12739,0],[12738,12736,12737,0],[12753,7189,12737,0],[12737,7189,12738,0],[12736,12738,12741,0],[12736,12741,12739,0],[12751,12739,12740,0],[7155,12740,12739,0],[7155,12739,12741,0],[7155,12741,7154,0],[12741,12738,7152,0],[7152,12738,7151,0],[7152,7154,12741,0],[12735,34367,12742,0],[12735,12742,12743,0],[12750,12744,12591,0],[12773,12591,12745,0],[12591,12773,12750,0],[12747,12730,12749,0],[12735,12743,12748,0],[12744,12750,12743,0],[12743,12750,12749,0],[12743,12749,12748,0],[12750,12747,12749,0],[12735,12748,12731,0],[12751,12740,34364,0],[12739,12752,12736,0],[12736,12752,12737,0],[12737,12731,12753,0],[12731,12737,12735,0],[12735,12737,12752,0],[12772,12771,12753,0],[12753,12771,12733,0],[12753,12733,12734,0],[12732,12638,12733,0],[12733,12638,12754,0],[12768,12755,12756,0],[12756,12757,12769,0],[12769,12757,12758,0],[12758,12757,34413,0],[34413,12759,34412,0],[34412,12759,12760,0],[12760,12759,12761,0],[12765,12657,12658,0],[12657,12765,12763,0],[12761,12764,12766,0],[12761,12766,12762,0],[12762,12766,12765,0],[12764,12761,12759,0],[12764,12759,12757,0],[12757,12759,34413,0],[12757,12756,12764,0],[12764,12756,12755,0],[12764,12755,12766,0],[12755,12754,12766,0],[12638,12767,12754,0],[12754,12767,12766,0],[12638,12656,12767,0],[12767,12656,12763,0],[12763,12656,12653,0],[12763,12765,12767,0],[12767,12765,12766,0],[12734,12754,12768,0],[12754,12755,12768,0],[26399,12769,12678,0],[26399,7149,12769,0],[12769,12770,12678,0],[12678,12770,12677,0],[12636,12637,12748,0],[12636,12748,12730,0],[12732,12771,12637,0],[12771,12772,12637,0],[12637,12772,12748,0],[12745,12727,12773,0],[12750,12773,12747,0],[12773,12727,12729,0],[12747,12729,12730,0],[12724,12725,12595,0],[12594,12595,12593,0],[12725,12593,12595,0],[42958,12722,12723,0],[12598,12623,12624,0],[12598,12624,12625,0],[12625,12774,12629,0],[12629,12774,12628,0],[12628,12774,12627,0],[8934,8935,12627,0],[12627,8935,12628,0],[12625,12624,12621,0],[12621,12624,12622,0],[12599,12623,12598,0],[12603,42575,12775,0],[12775,12600,42961,0],[12779,12589,12776,0],[12779,12776,12777,0],[12745,12591,34342,0],[34342,12591,12778,0],[34342,12778,12777,0],[12779,12778,42824,0],[12778,12779,12777,0],[12781,12586,12780,0],[34348,42497,12781,0],[42497,34353,34359,0],[12780,34348,12781,0],[12586,12781,12585,0],[12588,34347,12586,0],[12586,34347,12780,0],[12784,12584,12782,0],[12782,12897,12899,0],[12782,12899,12783,0],[12784,12783,12911,0],[12785,12911,48840,0],[12785,48840,12787,0],[12787,48840,12786,0],[12787,12786,12906,0],[12787,12906,12586,0],[42813,12788,12789,0],[12789,12788,12801,0],[12801,12907,12790,0],[12790,12907,12902,0],[12790,12902,12791,0],[12792,12791,12948,0],[12950,42462,12949,0],[12949,42462,12794,0],[12949,12794,12796,0],[12797,12835,12792,0],[12798,12792,12835,0],[12798,12835,12799,0],[12801,12799,12800,0],[12801,12800,12814,0],[12814,12800,12947,0],[12831,12802,42819,0],[42819,12802,12803,0],[12612,12613,12840,0],[42549,12804,42552,0],[42552,12804,12805,0],[12805,12806,12807,0],[12807,12806,12810,0],[12807,12810,12808,0],[12808,12252,42567,0],[12252,12808,12809,0],[12809,12810,12811,0],[12253,12811,12259,0],[12808,12810,12809,0],[12259,12811,42469,0],[12805,12807,42552,0],[42549,12813,12804,0],[12804,12813,12812,0],[12612,12840,12841,0],[12612,12841,42547,0],[42547,12841,12812,0],[42553,12812,12813,0],[12801,12814,12789,0],[12815,12789,12816,0],[12815,12816,12828,0],[12828,12816,12827,0],[12827,12816,42483,0],[12826,42483,12817,0],[12817,42483,12610,0],[12610,12608,12818,0],[12610,12818,12817,0],[12817,12819,12826,0],[12592,12819,12594,0],[12592,34343,12819,0],[12819,34343,12826,0],[12819,12818,12820,0],[12819,12820,12594,0],[12594,12820,12595,0],[12595,12820,12601,0],[12601,12596,12595,0],[12596,12601,12822,0],[12822,12601,12821,0],[12822,12599,12597,0],[12597,12599,12598,0],[12599,12822,12821,0],[12819,12817,12818,0],[12823,12607,12825,0],[12824,12602,12825,0],[12820,12818,49794,0],[12820,49794,12825,0],[12820,12825,12602,0],[12602,12601,12820,0],[12826,12827,42483,0],[12826,34343,12827,0],[12828,12830,12829,0],[12829,12830,12777,0],[12799,12801,12790,0],[12799,12835,12947,0],[12802,12831,12832,0],[12802,12832,12938,0],[12938,12832,12833,0],[12833,12832,12834,0],[12837,12797,12796,0],[12797,12837,12835,0],[12836,12832,12831,0],[12834,12832,12836,0],[12834,12836,12837,0],[12834,12837,12942,0],[12835,12837,12836,0],[12831,12947,12836,0],[12836,12947,12835,0],[12802,12838,12803,0],[12803,12838,12839,0],[12839,12838,12840,0],[42960,12839,12613,0],[12613,12839,12840,0],[12841,12840,12842,0],[12812,12843,12804,0],[12812,12841,12843,0],[12842,12843,12841,0],[12840,12838,12842,0],[12842,12844,12847,0],[12847,12844,12845,0],[12847,12845,12846,0],[12847,12846,12854,0],[12854,12943,12850,0],[12850,12943,12266,0],[12266,12944,12848,0],[12848,12944,12855,0],[12848,12855,12849,0],[12851,12850,12264,0],[12264,12853,12851,0],[12263,12843,12853,0],[12853,12843,12852,0],[12853,12852,12851,0],[12850,12851,12854,0],[12854,12852,12847,0],[12852,12854,12851,0],[12266,12943,12944,0],[12860,12857,12858,0],[12860,12858,12859,0],[12859,12858,12271,0],[12859,12271,12270,0],[12859,12268,12849,0],[12268,12859,12269,0],[12269,12859,12270,0],[12859,12849,12860,0],[12857,12860,12855,0],[12857,12855,12856,0],[12860,12849,12855,0],[12271,12858,12272,0],[12272,12858,12861,0],[12861,12862,12273,0],[12273,12862,12863,0],[12863,12936,12275,0],[12275,12936,12864,0],[12275,12864,12871,0],[12871,12864,12865,0],[12866,12874,12868,0],[12867,12287,12868,0],[12869,12870,12871,0],[12871,12870,42811,0],[12275,12871,42811,0],[12871,12865,12872,0],[12871,12872,12869,0],[12868,12869,12872,0],[12865,12866,12872,0],[12866,12873,34386,0],[12866,34386,12794,0],[12794,12795,12796,0],[12794,12874,12866,0],[12874,42463,12867,0],[12867,12924,12288,0],[12930,12928,12876,0],[12930,12876,12877,0],[12877,12926,12931,0],[12931,12926,12878,0],[12878,12926,14751,0],[14751,12879,42498,0],[42498,12879,12889,0],[12889,12879,12880,0],[12888,12880,12925,0],[12882,42466,12917,0],[12917,42466,12883,0],[12917,12883,12912,0],[12883,12884,12912,0],[12884,12793,12885,0],[12885,12894,12913,0],[12886,12580,12579,0],[12880,12888,12889,0],[12888,12925,12881,0],[12888,12881,12887,0],[12887,12881,12890,0],[12579,12890,42461,0],[12579,42461,12886,0],[12886,42461,12916,0],[12886,12916,12891,0],[12891,12914,12915,0],[12915,12886,12891,0],[12887,12890,12956,0],[12887,12956,12892,0],[12888,12887,12892,0],[12888,12892,12575,0],[12575,12892,13037,0],[12889,12575,12574,0],[12889,12574,12893,0],[12885,12793,12900,0],[12885,12900,12894,0],[12894,12895,14749,0],[12915,12914,14749,0],[14749,12914,12894,0],[12894,12914,12913,0],[12793,12948,12900,0],[14749,12896,12899,0],[14749,12899,14748,0],[14748,12899,12897,0],[14747,12897,12898,0],[14747,12898,12583,0],[12899,12896,12783,0],[12895,12896,14749,0],[12915,14749,14750,0],[12915,14750,12886,0],[12900,12791,12901,0],[12901,12902,12910,0],[12910,12902,12903,0],[12911,12909,48840,0],[12904,12908,12905,0],[12906,12786,12904,0],[12905,12906,12904,0],[12948,12791,12900,0],[12901,12791,12902,0],[12908,12907,12788,0],[12908,12788,12905,0],[12788,12907,12801,0],[12911,12895,12909,0],[12903,12909,12910,0],[12901,12910,12900,0],[12900,12910,12895,0],[12900,12895,12894,0],[12783,12896,12911,0],[12911,12896,12895,0],[12912,12885,12913,0],[12891,12913,12914,0],[12913,12891,12912,0],[12912,12891,12916,0],[12916,12918,12917,0],[12917,12918,12882,0],[12882,12918,12919,0],[12912,12916,12917,0],[12916,42461,12918,0],[12884,12885,12912,0],[12882,12919,12920,0],[12882,12920,42812,0],[12921,12922,12923,0],[12923,12922,42464,0],[42464,12922,42463,0],[12867,42463,12924,0],[12924,12875,12288,0],[12920,12919,12925,0],[12920,12925,42467,0],[42467,12925,12927,0],[12927,12880,12879,0],[12880,12927,12925,0],[12927,12879,12926,0],[12926,12879,14751,0],[12926,12877,12876,0],[12283,12875,12929,0],[12933,12929,12930,0],[12931,12878,12933,0],[12933,12878,12934,0],[13121,12932,12934,0],[12877,12931,12930,0],[12930,12931,12933,0],[12929,12933,12569,0],[12569,12933,12932,0],[12932,12933,12934,0],[12929,12875,12930,0],[12930,12875,12928,0],[12867,12868,12874,0],[12866,12865,12873,0],[12873,12865,12864,0],[12861,12858,12862,0],[12858,12857,12862,0],[12862,12857,12935,0],[12862,12935,12863,0],[12863,12935,12936,0],[12864,12937,12873,0],[12937,12864,12936,0],[12843,12842,12852,0],[12852,12842,12847,0],[12842,12838,12844,0],[12844,12838,12802,0],[12844,12802,12938,0],[12845,12945,12846,0],[12846,12945,12939,0],[12939,12945,12940,0],[12940,12946,34384,0],[34384,12946,12941,0],[12795,12942,12837,0],[12837,12796,12795,0],[12795,12941,12942,0],[12942,12946,12833,0],[12833,12946,12845,0],[12833,12845,12938,0],[12833,12834,12942,0],[12942,12941,12946,0],[12846,12939,12854,0],[12854,12939,12943,0],[12855,12944,12856,0],[12856,12944,12940,0],[12940,12944,12939,0],[12940,12945,12946,0],[12946,12945,12845,0],[12938,12845,12844,0],[12947,12800,12799,0],[12797,12792,12952,0],[12952,12948,12949,0],[12949,12948,12950,0],[12884,12951,12793,0],[12793,12950,12948,0],[12948,12952,12792,0],[12791,12792,12798,0],[12799,12790,12798,0],[12797,12952,12796,0],[12796,12952,12949,0],[12911,12785,12784,0],[12783,12784,12782,0],[12583,34382,12953,0],[12953,12954,12582,0],[12582,12954,12955,0],[12955,12954,13036,0],[13036,12954,12956,0],[12578,12956,42455,0],[42455,12954,12957,0],[12959,12958,34382,0],[12959,34382,12960,0],[12959,12960,13044,0],[13044,12973,42460,0],[42460,12973,12961,0],[12961,12962,13043,0],[12963,12962,14380,0],[12963,14380,12964,0],[12964,14382,14701,0],[14701,14382,14468,0],[14701,14468,12965,0],[12965,14383,14702,0],[14702,14383,14386,0],[14702,14386,12966,0],[12966,14389,14390,0],[12966,14447,14702,0],[34382,12967,12960,0],[12967,34351,12968,0],[12970,12969,34352,0],[34352,12969,12971,0],[7158,7159,12969,0],[12971,7159,12972,0],[12971,12972,12973,0],[12973,12972,41737,0],[41730,41737,12974,0],[12976,12975,41735,0],[12978,12997,14471,0],[14471,12979,14375,0],[14375,12979,12980,0],[14374,12980,12981,0],[14374,12981,14373,0],[14373,12982,12983,0],[14473,12983,14348,0],[14348,12983,12984,0],[14347,14346,13034,0],[14347,13034,12985,0],[14351,12985,12986,0],[12987,47683,12988,0],[12988,47683,12992,0],[12988,12992,12990,0],[12991,12990,13006,0],[13006,12992,12993,0],[12994,12993,12984,0],[12994,12984,12982,0],[12994,12982,12995,0],[12995,12982,12981,0],[12995,12981,42943,0],[42943,12981,12980,0],[42943,12980,12996,0],[12996,12980,12979,0],[12979,12997,13028,0],[12979,14471,12997,0],[13028,12998,13012,0],[13012,12999,13028,0],[13010,13028,13000,0],[13010,13000,13001,0],[13001,13002,13003,0],[13003,13002,13005,0],[13003,13005,13004,0],[13004,13005,42944,0],[42944,13005,41815,0],[42944,41815,12991,0],[12991,13006,13007,0],[13007,13008,42944,0],[42944,13008,13004,0],[12998,13028,12997,0],[12979,13009,12996,0],[13028,13010,13009,0],[13009,13010,13008,0],[12996,13008,42943,0],[13008,12996,13009,0],[13010,13001,13003,0],[13010,13003,13008,0],[13008,13003,13004,0],[12997,12978,12998,0],[12998,12978,13011,0],[12998,13011,13012,0],[13012,13031,13025,0],[13025,13031,13033,0],[13025,13033,13013,0],[13013,13033,13014,0],[13014,13032,13015,0],[13015,13032,41734,0],[13015,41734,13016,0],[13016,13018,13017,0],[7163,13017,7162,0],[7162,13017,13018,0],[7161,13018,41738,0],[13016,13024,13015,0],[13015,13024,13014,0],[13014,13024,13019,0],[13014,13019,13020,0],[13020,41743,13027,0],[13027,41743,13021,0],[41741,13022,7184,0],[41804,7184,13023,0],[7183,13022,13021,0],[7183,13023,13022,0],[7176,7182,7183,0],[13023,7184,13022,0],[13016,7168,13024,0],[12999,13012,13025,0],[13025,13013,41740,0],[13025,41740,13026,0],[13026,41740,13027,0],[12999,13026,13028,0],[13028,13026,13000,0],[13001,13000,13029,0],[7185,13029,13030,0],[13030,13029,13000,0],[13030,13000,13026,0],[13030,13026,13027,0],[12999,13025,13026,0],[12978,12977,13011,0],[12977,41735,13011,0],[13011,41735,13012,0],[13012,41735,13031,0],[13031,41732,13033,0],[13033,41732,13032,0],[13033,13032,13014,0],[14373,12981,12982,0],[12984,12993,14346,0],[14346,12993,13034,0],[12985,13034,13035,0],[48624,12986,13035,0],[13035,12986,12985,0],[12993,12992,13034,0],[13034,12992,13035,0],[13006,12990,12992,0],[13035,47683,48624,0],[12971,12973,12968,0],[12968,12973,13044,0],[12968,13044,12960,0],[12968,12960,12967,0],[34382,12958,12957,0],[12953,12957,12954,0],[12957,12953,34382,0],[12956,12954,42455,0],[12582,12955,12581,0],[12581,12955,13036,0],[12956,12890,13036,0],[12577,13039,13037,0],[13037,13039,13038,0],[14692,13040,42458,0],[14692,42458,13041,0],[13041,42458,42459,0],[13043,13042,42460,0],[13043,42460,12961,0],[14700,14708,12962,0],[14700,12962,12963,0],[13045,13046,13116,0],[13048,13047,14690,0],[13048,13049,13088,0],[13050,13088,13140,0],[13050,13140,41450,0],[41450,13140,13051,0],[13051,13150,13052,0],[13053,13152,13162,0],[13053,13162,46043,0],[46043,13162,13054,0],[46043,13054,41440,0],[41440,13054,13055,0],[41440,13055,41441,0],[13057,41441,13056,0],[13057,13056,13058,0],[13066,13137,13065,0],[13060,11203,13062,0],[13060,13062,13061,0],[16784,13063,11205,0],[16784,11205,11770,0],[11205,13063,13062,0],[11205,13062,11204,0],[13064,13129,13065,0],[13065,13129,13066,0],[13059,13066,13067,0],[41447,13067,13068,0],[41447,13068,13070,0],[41447,13070,13069,0],[13072,13069,13071,0],[13072,13071,13073,0],[13073,13071,13074,0],[13098,13074,13075,0],[13101,13075,13076,0],[13077,13078,13079,0],[13079,13078,13080,0],[13081,13083,13102,0],[13084,13121,13120,0],[13084,13120,13085,0],[13085,13113,42490,0],[13110,41456,13109,0],[13109,41456,13088,0],[13103,13050,13089,0],[13090,41452,13091,0],[13091,13072,13092,0],[13095,13096,13105,0],[13125,13102,13097,0],[13076,46024,13101,0],[13075,13101,13098,0],[13074,13098,13073,0],[13073,13098,13099,0],[13099,13098,13094,0],[13100,13095,13101,0],[13100,13101,46024,0],[13101,13095,13098,0],[13094,13098,13095,0],[13095,13100,13096,0],[13096,13100,13102,0],[13097,13102,46024,0],[13102,13100,46024,0],[13073,13099,13108,0],[13073,13108,13093,0],[13093,13092,13072,0],[13090,13091,13111,0],[13090,13111,13089,0],[13089,13111,13103,0],[13103,13112,13104,0],[13104,13112,13107,0],[13104,13107,13110,0],[13110,13107,13087,0],[13095,13105,13094,0],[13106,13087,13099,0],[13099,13087,13107,0],[13107,13112,13108,0],[13103,13109,13050,0],[13050,13109,13088,0],[13109,13103,13104,0],[13109,13104,13110,0],[13107,13108,13099,0],[13106,13099,13094,0],[13108,13112,13093,0],[13112,13111,13093,0],[13093,13111,13092,0],[13092,13111,13091,0],[13112,13103,13111,0],[13088,41456,41454,0],[13088,41454,13048,0],[42490,13113,13086,0],[13086,13113,13114,0],[12573,13116,13118,0],[13118,13116,13115,0],[13045,13116,12573,0],[12573,12576,13045,0],[13045,12576,13038,0],[12574,12576,12573,0],[13116,41455,13115,0],[13115,41455,13117,0],[13116,13046,41455,0],[13117,41454,41456,0],[13119,13118,12571,0],[13118,13115,12571,0],[12571,13115,13114,0],[12571,13113,13120,0],[13120,13113,13085,0],[13114,13113,12571,0],[13121,13084,13122,0],[13122,13084,11951,0],[13123,13083,11950,0],[11950,13083,13081,0],[11950,13081,13082,0],[13122,12570,13121,0],[12570,13124,12569,0],[13125,13081,13102,0],[13081,13125,13080,0],[13080,13125,13079,0],[13079,13126,13077,0],[16766,13134,13127,0],[13134,46040,13128,0],[13133,13132,16779,0],[16779,13132,13064,0],[13068,13130,13133,0],[13068,13133,13131,0],[13075,13131,46040,0],[13075,46040,13076,0],[13129,13130,13066,0],[13066,13130,13067,0],[13067,13130,13068,0],[13074,13131,13075,0],[13074,13071,13070,0],[13070,13071,13069,0],[13131,13074,13068,0],[13074,13070,13068,0],[13064,13132,13129,0],[13129,13132,13130,0],[13130,13132,13133,0],[16766,13076,13134,0],[13076,46040,13134,0],[13076,16766,46024,0],[13059,13067,13058,0],[13064,13065,13138,0],[13138,13060,13061,0],[13061,13064,13138,0],[13058,13056,13135,0],[13059,41409,13137,0],[13065,13137,46026,0],[13065,46026,13138,0],[13138,46026,13139,0],[13139,46026,41410,0],[13060,13138,11203,0],[11203,13138,13139,0],[13137,13066,13059,0],[13136,13059,13135,0],[13140,13088,13049,0],[13140,13049,14683,0],[13140,14683,13051,0],[13051,14683,13141,0],[13051,13141,13142,0],[13151,13143,13144,0],[13151,13144,13153,0],[13153,13144,13163,0],[13163,13144,13145,0],[13163,13145,13146,0],[13147,13146,14671,0],[13148,13147,13149,0],[13051,13142,13150,0],[13150,13142,13151,0],[13053,13052,13150,0],[13142,13143,13151,0],[13150,13151,13152,0],[13150,13152,13053,0],[13152,13153,13154,0],[13154,13153,13163,0],[13156,13155,13157,0],[13158,13157,13148,0],[13158,13148,13149,0],[13158,13149,14682,0],[13158,11750,13157,0],[13157,11750,13159,0],[13160,13161,13156,0],[13156,13161,13155,0],[13160,13156,13157,0],[13160,13157,13159,0],[13159,11192,13160,0],[13160,11192,11197,0],[13054,13162,41443,0],[13055,41443,46042,0],[13055,46042,41442,0],[41442,13136,13135,0],[13152,13151,13153,0],[13154,13163,41263,0],[13154,41263,13155,0],[13147,41263,13163,0],[13146,13147,13163,0],[14666,13164,13165,0],[41427,13165,13166,0],[13166,14721,13167,0],[14721,14653,13168,0],[13168,14653,41801,0],[13170,13169,13221,0],[13170,13221,13171,0],[13204,13171,13172,0],[13172,13219,13192,0],[13192,13219,13173,0],[13173,13174,13175,0],[13216,13175,13174,0],[13216,13174,13176,0],[41793,14615,42440,0],[42440,14615,13212,0],[13212,14615,14614,0],[13212,14614,13177,0],[13178,13177,18425,0],[18424,18426,13179,0],[13179,18426,18420,0],[13179,18420,13180,0],[13215,18412,18411,0],[13215,18411,13181,0],[13183,13184,13185,0],[13185,13184,13186,0],[13209,18434,18438,0],[42439,18438,13188,0],[42439,13188,13190,0],[13190,13188,13189,0],[13190,13189,41663,0],[13190,41663,13191,0],[13173,13191,41662,0],[13173,41662,13192,0],[13192,41662,13193,0],[13205,18338,13195,0],[13208,13195,18339,0],[13208,18339,13196,0],[13196,13197,13198,0],[13200,13199,41431,0],[13168,13200,41433,0],[13168,41433,14721,0],[13168,41801,13201,0],[13201,41801,13169,0],[13201,13169,13202,0],[13202,13169,13170,0],[13202,13170,13203,0],[13203,13170,13204,0],[13203,13204,13207,0],[13207,13204,13206,0],[13207,13206,13205,0],[13205,13206,13193,0],[13193,13206,13192,0],[13193,13194,13205,0],[13207,13205,13195,0],[13207,13195,13203,0],[13203,13195,13208,0],[13198,13197,13199,0],[13198,13199,13200,0],[13198,13208,13196,0],[13202,13203,13198,0],[13202,13198,13201,0],[13201,13200,13168,0],[13200,13201,13198,0],[13198,13203,13208,0],[13170,13171,13204,0],[13206,13204,13172,0],[13206,13172,13192,0],[13191,13173,13175,0],[13191,13175,13190,0],[13190,13175,13216,0],[13190,13216,42439,0],[42439,13216,13209,0],[13209,13210,18434,0],[18434,13210,13187,0],[13187,13210,13213,0],[13213,13210,13211,0],[13213,13211,13212,0],[13182,13178,13181,0],[13178,13182,13177,0],[13177,13182,13212,0],[13212,13182,13185,0],[13185,13213,13212,0],[13178,18425,13214,0],[13178,13214,13181,0],[13181,13214,13215,0],[13215,13214,13179,0],[13215,13179,13180,0],[18412,13215,13180,0],[13214,18425,18424,0],[41794,13209,13216,0],[13216,13176,41794,0],[13181,18411,13217,0],[13181,13217,13182,0],[42445,13174,13218,0],[42445,13218,42446,0],[42446,13218,13219,0],[42446,13219,13220,0],[13220,13222,14663,0],[14663,13222,14665,0],[14665,13222,13221,0],[14665,13221,41799,0],[41799,13221,13169,0],[13221,13222,13171,0],[13222,13220,13171,0],[13171,13220,13172,0],[13220,13219,13172,0],[13219,13218,13173,0],[13173,13218,13174,0],[13176,13174,13223,0],[13224,13223,14616,0],[13224,14616,13226,0],[13226,14616,42447,0],[13226,42447,13225,0],[13224,13227,14612,0],[14612,13227,13228,0],[14612,13228,14613,0],[14613,13228,13229,0],[13229,13230,41781,0],[41781,13230,14419,0],[14419,13231,18423,0],[18423,13231,18422,0],[41784,14425,13232,0],[14305,13232,14426,0],[13235,13234,13282,0],[13235,13282,13236,0],[13236,13281,13253,0],[13253,13281,13237,0],[13237,13275,13238,0],[13263,41707,13240,0],[13263,13240,13241,0],[13241,13240,13242,0],[13245,13243,13244,0],[13245,13244,14292,0],[13245,14292,13246,0],[13246,14292,13258,0],[13248,13247,13239,0],[13239,13247,13249,0],[13250,14311,13251,0],[13235,13251,13234,0],[13234,14306,13233,0],[13233,14306,14426,0],[13256,13235,13252,0],[13254,13252,13255,0],[13255,13252,13253,0],[13255,13253,13237,0],[13253,13252,13236,0],[13236,13252,13235,0],[13237,13238,13255,0],[13254,13255,13249,0],[13254,13249,13250,0],[13249,13255,13239,0],[13252,13254,13256,0],[13250,13256,13254,0],[13250,13251,13256,0],[13235,13256,13251,0],[13249,13247,13257,0],[13247,13258,13257,0],[13257,13258,13262,0],[13262,13258,13259,0],[13260,14311,13261,0],[13260,13261,14296,0],[14296,13262,13259,0],[13257,13262,13250,0],[13257,13250,13249,0],[14296,13261,13262,0],[13263,13248,41707,0],[13248,13263,13247,0],[13247,13263,13258,0],[13258,13263,13246,0],[13263,13241,13246,0],[13241,13245,13246,0],[14290,13243,13242,0],[13242,13243,13245,0],[13241,13242,13245,0],[13248,13239,13264,0],[13248,13264,41708,0],[41708,13264,41796,0],[41796,13264,13265,0],[13265,13264,13275,0],[13265,13275,41760,0],[41760,13275,13277,0],[13268,13267,13287,0],[13268,13287,13269,0],[13274,13269,13270,0],[13274,13270,14429,0],[13274,14429,13271,0],[41770,13272,13271,0],[13271,13272,13273,0],[13268,13269,13273,0],[13273,13269,13274,0],[13273,13274,13271,0],[13264,13239,13238,0],[13264,13238,13275,0],[13275,13276,13277,0],[13276,13275,13237,0],[13276,13237,13279,0],[13276,13279,13278,0],[13276,13278,13277,0],[13288,13279,13281,0],[13280,13281,13236,0],[13281,13279,13237,0],[13236,13282,13280,0],[13285,13283,13284,0],[13286,14427,14429,0],[13286,14429,13270,0],[13285,13270,13269,0],[13283,13269,13287,0],[13283,13287,13282,0],[13269,13283,13285,0],[13288,13287,13267,0],[13288,13281,13280,0],[13288,13280,13287,0],[13267,13266,13288,0],[13287,13280,13282,0],[13242,41705,14290,0],[14290,41705,13289,0],[13290,13289,14545,0],[13291,13293,13292,0],[13292,13293,13290,0],[14545,13291,13292,0],[14545,13292,13290,0],[13293,41831,13294,0],[13294,13296,13297,0],[14291,13297,14272,0],[14291,14272,40600,0],[13298,14273,40584,0],[13300,13299,40784,0],[40784,14268,13301,0],[13301,14268,14269,0],[13302,14269,40680,0],[13305,40679,13304,0],[40695,13305,13306,0],[13306,14287,14266,0],[13308,13309,49950,0],[49950,13309,13310,0],[13310,13309,13311,0],[13313,13312,14538,0],[13314,13313,14564,0],[13314,14566,13316,0],[13316,14566,13315,0],[13316,13315,13317,0],[13316,13317,13318,0],[49952,13319,40654,0],[49952,40654,13320,0],[47952,13322,47953,0],[47952,47953,40659,0],[47952,40659,47951,0],[47951,40659,13323,0],[13324,13323,13325,0],[13324,13325,13334,0],[13334,13325,40686,0],[13329,13327,13335,0],[13331,13329,13318,0],[13331,13318,49952,0],[13330,13331,13332,0],[13329,13330,13327,0],[13327,13330,13328,0],[40686,13333,13334,0],[13334,13333,13328,0],[13334,13328,13332,0],[13332,13328,13330,0],[40686,13326,13333,0],[13333,13326,49949,0],[13333,49949,13327,0],[13333,13327,13328,0],[13329,13331,13330,0],[49949,40700,13327,0],[13335,13338,13336,0],[13337,14264,13318,0],[13318,14264,13316,0],[13336,13338,13311,0],[13336,13311,13312,0],[13338,13335,40700,0],[40700,13335,13327,0],[13318,13317,13339,0],[13318,13339,49952,0],[49952,13339,13319,0],[13345,40764,14260,0],[13345,14260,13346,0],[13346,14262,48405,0],[48405,14262,13347,0],[13347,14577,14530,0],[13347,14530,13348,0],[13348,14530,13349,0],[13351,13350,13352,0],[13352,13353,14255,0],[13354,13355,13380,0],[13380,13355,13356,0],[13377,13356,13848,0],[13377,13848,13850,0],[13850,13849,42883,0],[13358,13376,42858,0],[42858,13376,13359,0],[42858,13359,13373,0],[13370,13371,13361,0],[13362,13361,13363,0],[13364,13363,13365,0],[13364,13365,13366,0],[13366,13367,13852,0],[13368,13854,13369,0],[13369,13854,13845,0],[13369,13845,13846,0],[13366,13368,13369,0],[13852,13368,13366,0],[13369,13846,13366,0],[13361,13362,13370,0],[13370,13873,13816,0],[13370,13816,13371,0],[13360,13371,13817,0],[13360,13817,13372,0],[13373,13359,13372,0],[13359,13360,13372,0],[13371,13360,13361,0],[13375,13360,13359,0],[13375,13359,13374,0],[13375,13374,13365,0],[13365,13374,13853,0],[13365,13853,13366,0],[13361,13360,13375,0],[13365,13363,13375,0],[13375,13363,13361,0],[13359,13376,13374,0],[13377,13850,14256,0],[14256,42882,13378,0],[13354,13380,48409,0],[13354,48409,13418,0],[13354,13418,13417,0],[13354,13417,13381,0],[13351,48065,13383,0],[13349,13383,13384,0],[13384,13385,40736,0],[40736,13385,13386,0],[13386,13385,13387,0],[13387,13385,13388,0],[40744,13388,13389,0],[14253,13392,13391,0],[13391,13392,13393,0],[13391,13393,13389,0],[13391,13389,13390,0],[13391,13390,14253,0],[13389,13393,13394,0],[13395,13394,13396,0],[13395,13396,13397,0],[13398,13890,48404,0],[48404,13890,13891,0],[13399,14249,13400,0],[13401,13400,13402,0],[40779,13402,13408,0],[40779,13408,40777,0],[40777,13408,13403,0],[13403,13408,13404,0],[40626,13404,13410,0],[40626,13410,40627,0],[40627,13410,40628,0],[40628,13410,13411,0],[40628,13411,13405,0],[14187,14188,13897,0],[13897,13412,13895,0],[13895,13412,13406,0],[13407,13409,14250,0],[14250,13409,13408,0],[13408,13409,13404,0],[13404,13409,13410,0],[13410,13409,13411,0],[13407,13406,13411,0],[13411,13406,13405,0],[13411,13409,13407,0],[13405,13406,13412,0],[14188,13412,13897,0],[13389,13394,40744,0],[13390,13389,13413,0],[13414,13415,13416,0],[13416,13415,13417,0],[13416,13417,48407,0],[48407,13417,13418,0],[48407,13418,42937,0],[42937,13418,48409,0],[42937,48409,13419,0],[13419,48409,49969,0],[49969,13379,13420,0],[13420,13599,13421,0],[13421,13599,13422,0],[13423,13422,13723,0],[13424,13724,42932,0],[42932,13724,42915,0],[42915,13724,13728,0],[13728,13425,13426,0],[13728,13426,42916,0],[42916,13426,13427,0],[13428,13427,13731,0],[13429,48590,13430,0],[48374,13431,13432,0],[13432,13431,48394,0],[48359,13433,13434,0],[13435,13710,48558,0],[48558,13710,13712,0],[48558,13712,13437,0],[13437,13712,13436,0],[13437,13439,13438,0],[13440,13441,13597,0],[48530,48531,48141,0],[48141,48531,13442,0],[13442,48531,48528,0],[13442,48528,48532,0],[13442,48532,48523,0],[13443,48523,48143,0],[48143,48523,49815,0],[48133,13445,13488,0],[48133,13488,13446,0],[13447,13446,13487,0],[13487,13484,13448,0],[13530,13448,13449,0],[48263,13477,13468,0],[13452,13556,13453,0],[48261,13456,13457,0],[48261,13457,13458,0],[13466,49881,49879,0],[13466,49879,49872,0],[48270,49871,48269,0],[48269,13464,49880,0],[13460,13529,13462,0],[13462,13529,13461,0],[13449,13461,13530,0],[13461,13449,13462,0],[13462,13463,13460,0],[48271,13459,48270,0],[48270,13459,49871,0],[49871,13464,48269,0],[49872,13465,13466,0],[13454,13540,13455,0],[13455,13456,13467,0],[13453,13467,13452,0],[13452,13467,13451,0],[13453,13454,13467,0],[13467,13454,13455,0],[49877,13455,13540,0],[13451,13468,13452,0],[13452,13468,49833,0],[49833,13468,13469,0],[49913,13469,13592,0],[13593,13591,49899,0],[49899,13591,13590,0],[49899,13590,49908,0],[49908,13590,13470,0],[49908,13470,49938,0],[13470,13471,13472,0],[13472,13471,13473,0],[13475,13474,13476,0],[49840,13476,13471,0],[13473,13471,13476,0],[13474,13473,13476,0],[13592,13468,13477,0],[13592,13477,13591,0],[13591,13477,13478,0],[13478,13477,13479,0],[13641,13485,13482,0],[13482,13485,13483,0],[13484,48547,13483,0],[13484,13483,13448,0],[13448,13485,13486,0],[13480,13486,13481,0],[13481,13486,13641,0],[13486,13485,13641,0],[13448,13486,13449,0],[13484,13487,13488,0],[13488,13487,13446,0],[13489,13445,13444,0],[13478,13479,13490,0],[13644,13645,13491,0],[49820,13493,49818,0],[49818,13493,13580,0],[49826,48283,49827,0],[49819,13496,13497,0],[49823,13568,13595,0],[13595,13568,13498,0],[13498,13574,13499,0],[13509,13510,13501,0],[13558,13501,13502,0],[13558,49837,13503,0],[13503,49836,13508,0],[13508,49836,13504,0],[13508,13504,13505,0],[13475,49844,13507,0],[13475,13507,13474,0],[49927,13507,49936,0],[49936,13506,49835,0],[49835,13506,13505,0],[49936,13507,13506,0],[13506,13507,49844,0],[49844,13505,13506,0],[13505,49844,13508,0],[13508,49844,13596,0],[13508,13596,13503,0],[13500,13511,13509,0],[13509,13511,13510,0],[13510,13511,13576,0],[13510,13576,49816,0],[49816,13576,13575,0],[49816,13575,13571,0],[49816,13571,13512,0],[49816,13512,13560,0],[13560,13513,13514,0],[13514,13513,48157,0],[13514,13515,13516,0],[13516,13515,49849,0],[13516,49849,49848,0],[13561,49848,49845,0],[13561,49845,13557,0],[13557,49845,48163,0],[49850,48242,13518,0],[13518,48242,13519,0],[13518,13519,13551,0],[13551,13519,13520,0],[13545,13546,13523,0],[13545,13523,13544,0],[13544,13523,48131,0],[13544,48131,13543,0],[13524,13446,13525,0],[13538,13526,13528,0],[13538,13528,13527,0],[49869,13527,13529,0],[49869,13529,13460,0],[13529,13527,13528,0],[13447,13528,13446,0],[13525,13446,13526,0],[13446,13528,13526,0],[13461,13529,13530,0],[13530,13487,13448,0],[13529,13528,13447,0],[13487,13530,13447,0],[13447,13530,13529,0],[13524,13525,13543,0],[13543,13525,13542,0],[13532,13542,13531,0],[13537,13536,48342,0],[13537,48342,48340,0],[13537,48340,13531,0],[13537,13525,13526,0],[13536,13537,13526,0],[13536,13526,13535,0],[13535,13526,13538,0],[13548,13540,13539,0],[13539,13540,13454,0],[13538,13527,13541,0],[13527,49869,13541,0],[13537,13531,13542,0],[13537,13542,13525,0],[13543,13542,13532,0],[13545,13544,48334,0],[13546,48334,13564,0],[13564,13547,13549,0],[13549,13541,49838,0],[13549,49838,13563,0],[13521,13563,13520,0],[13520,13550,13551,0],[49836,13551,13552,0],[49836,13552,13504,0],[13504,13552,13553,0],[13454,13453,13566,0],[13553,13555,13554,0],[13555,13566,13556,0],[13556,13566,13453,0],[13556,13554,13555,0],[13551,49832,13518,0],[13518,49832,49831,0],[13518,49831,13562,0],[13562,13557,13517,0],[13517,13557,48163,0],[13561,13558,13502,0],[13516,13559,13560,0],[13516,13560,13514,0],[13502,13516,49848,0],[13502,49848,13561,0],[49837,13558,13561,0],[13562,13517,49850,0],[13562,49850,13518,0],[13521,13522,13563,0],[13563,13522,13564,0],[13563,13564,13549,0],[13522,13546,13564,0],[48334,13546,13545,0],[13544,13543,13532,0],[13550,13539,13565,0],[13555,13553,13552,0],[13566,13565,13454,0],[13539,13454,13565,0],[13538,13567,48255,0],[49823,49822,13568,0],[13572,13568,13497,0],[13570,13571,13575,0],[13497,13569,13572,0],[13572,13577,13573,0],[13573,13577,13574,0],[13499,13574,13511,0],[13499,13511,13500,0],[13576,13574,13577,0],[13576,13577,13570,0],[13575,13576,13570,0],[13574,13576,13511,0],[13570,13577,13569,0],[13569,13577,13572,0],[13574,13498,13573,0],[13498,13568,13573,0],[13573,13568,13572,0],[13496,13495,13578,0],[13580,13493,13581,0],[13581,48161,13582,0],[13582,48161,13587,0],[13513,13588,48157,0],[13580,13581,13494,0],[13494,13581,48283,0],[48283,13581,13582,0],[13512,13584,13585,0],[13512,13585,13560,0],[13585,13586,13588,0],[13588,13586,48159,0],[48159,13586,13583,0],[13586,13585,13584,0],[13586,13584,13587,0],[13587,13584,13582,0],[13587,13583,13586,0],[13584,48282,13582,0],[13585,13513,13560,0],[13513,13585,13588,0],[49827,48283,13579,0],[13579,13578,49827,0],[49827,13578,13495,0],[13493,49820,13492,0],[13594,13589,13595,0],[13595,13589,49823,0],[13644,13491,49842,0],[13644,49842,49939,0],[13644,49939,13490,0],[13490,49939,49841,0],[13590,49841,13470,0],[13590,13591,13478,0],[13590,13478,49841,0],[49841,13478,13490,0],[13592,13469,13468,0],[13591,13593,13592,0],[13491,13492,49842,0],[13595,13498,13499,0],[13596,13499,13500,0],[13500,13509,13596,0],[13596,13509,13503,0],[13503,13509,13558,0],[13558,13509,13501,0],[13594,49842,13492,0],[13477,48263,13479,0],[48523,13443,13442,0],[13442,13443,48141,0],[48530,48141,13597,0],[48530,13597,13441,0],[13430,48590,13598,0],[13431,13430,48393,0],[48393,13430,13598,0],[13716,13603,42870,0],[42870,42866,48621,0],[48621,42866,42865,0],[48621,42865,48620,0],[42865,13604,13737,0],[13737,13604,13605,0],[13751,13606,13823,0],[13751,13823,13607,0],[13607,13608,13757,0],[13757,13608,13610,0],[13610,14370,13805,0],[13805,14370,13806,0],[13611,13791,13612,0],[13612,13791,13613,0],[13761,13614,13615,0],[13665,13615,19674,0],[13665,19674,13616,0],[13618,13617,19678,0],[13684,13618,19679,0],[13684,19679,13619,0],[13684,13619,13620,0],[13622,13620,13621,0],[13621,48431,13623,0],[13623,48431,13624,0],[13673,13623,13624,0],[13673,13624,13625,0],[13625,13624,19692,0],[13625,19692,48434,0],[13625,48434,13675,0],[13675,48434,48435,0],[13678,48435,49860,0],[13678,49860,13626,0],[13439,13627,13440,0],[13440,13627,48522,0],[13440,48522,13441,0],[49855,13629,48225,0],[49855,48225,13630,0],[13631,48567,48226,0],[13631,48226,13632,0],[13632,48227,13633,0],[13632,13633,48570,0],[48570,13633,13634,0],[13636,13635,48160,0],[13636,48160,48542,0],[13645,13637,13491,0],[13637,13645,48543,0],[48543,13646,48544,0],[48544,13646,13647,0],[13639,13638,13643,0],[48539,48540,13642,0],[13640,13641,13482,0],[13640,13642,13641,0],[13641,13642,13643,0],[13643,13642,48540,0],[13645,13644,13646,0],[13638,13647,13481,0],[13480,13481,13648,0],[13646,13644,13490,0],[13647,13646,13648,0],[13647,13648,13481,0],[13479,13648,13490,0],[13490,13648,13646,0],[13643,13481,13641,0],[13481,13643,13638,0],[13646,48543,13645,0],[13621,13623,13622,0],[13622,13623,13649,0],[13649,13651,13650,0],[13672,13652,13653,0],[13672,13653,13677,0],[13671,13677,13679,0],[13679,48563,13654,0],[13670,13654,13655,0],[13655,48582,13656,0],[13656,48582,48580,0],[13656,48580,13657,0],[13656,13657,48578,0],[48578,13657,13669,0],[13659,13660,13661,0],[13661,13660,13662,0],[13661,13662,13617,0],[13615,13665,13761,0],[13665,13616,13664,0],[13664,13616,13663,0],[13663,13616,13662,0],[13661,13618,48287,0],[13659,13666,13667,0],[13667,13666,13688,0],[13688,48286,13668,0],[13688,48578,13669,0],[13688,13669,13667,0],[13667,13669,13659,0],[13659,13669,13658,0],[13666,13659,13661,0],[13617,13618,13661,0],[13679,13654,13671,0],[13671,13654,13670,0],[13677,13671,13672,0],[13652,13651,13674,0],[13674,13651,13673,0],[13674,13673,13625,0],[13623,13673,13649,0],[13653,13652,13674,0],[13653,13675,13676,0],[13676,13675,48435,0],[13676,13677,13653,0],[13677,13676,13679,0],[13679,13676,13678,0],[13679,13678,13680,0],[13678,13626,13680,0],[13680,13626,13681,0],[13680,13681,13682,0],[13682,13683,48563,0],[48563,13683,13439,0],[48563,13439,13437,0],[48563,13437,13436,0],[13680,13682,13679,0],[13682,48563,13679,0],[13681,13683,13682,0],[13681,13627,13683,0],[48435,13678,13676,0],[13625,13675,13653,0],[13625,13653,13674,0],[13684,13685,13618,0],[13684,13620,13685,0],[13685,13620,13690,0],[13685,13690,13686,0],[13689,13687,13668,0],[13668,48286,13689,0],[13689,48287,13618,0],[13687,13689,13686,0],[13686,13689,13685,0],[13685,13689,13618,0],[13620,13622,13690,0],[13690,13622,13649,0],[13649,13650,13690,0],[13690,13650,13686,0],[13611,13612,13747,0],[13747,13612,13691,0],[48610,48616,13787,0],[48610,13787,13692,0],[48618,13693,13694,0],[42870,48621,13716,0],[13695,13694,13693,0],[13695,13693,13696,0],[13698,13774,13699,0],[13699,13774,48350,0],[48350,13774,13700,0],[13701,13700,13766,0],[13701,13766,13767,0],[13701,13767,13702,0],[13702,13704,13703,0],[13703,13704,13705,0],[13705,13704,13769,0],[13706,13769,13707,0],[48397,13707,13708,0],[13603,13716,13713,0],[13713,42940,49953,0],[49953,42940,42939,0],[13717,13727,42939,0],[42939,13727,13714,0],[13713,13716,42940,0],[42940,13716,13695,0],[13726,13717,13699,0],[13717,42939,42940,0],[13603,13713,13715,0],[13602,13715,13719,0],[13718,13719,13722,0],[13722,13719,13727,0],[13722,13727,13720,0],[13721,13720,13733,0],[13721,13733,13724,0],[13721,13724,13424,0],[13719,13718,13601,0],[13719,13601,13602,0],[13601,13718,13600,0],[13600,13718,13723,0],[13600,13723,13422,0],[13723,13718,13722,0],[13723,13722,13721,0],[13723,13721,13424,0],[13424,13423,13723,0],[13721,13722,13720,0],[13725,13726,13699,0],[13725,13699,48350,0],[13728,13725,13425,0],[13425,13725,13730,0],[13701,13730,13700,0],[13700,13730,48350,0],[13426,13425,13730,0],[48591,13427,13703,0],[13702,13703,13729,0],[13730,13729,13426,0],[13730,13701,13729,0],[13729,13701,13702,0],[13426,13729,13427,0],[13427,13729,13703,0],[13427,48591,13731,0],[13731,13732,13429,0],[13429,13732,48590,0],[13724,13725,13728,0],[13724,13733,13725,0],[13719,13714,13727,0],[13720,13727,13733,0],[13694,13695,13716,0],[13693,48618,13692,0],[13692,13734,48610,0],[13736,13737,13605,0],[13736,13605,13738,0],[13736,13738,13741,0],[13736,13741,13735,0],[13735,13748,13734,0],[13734,13748,48603,0],[13738,48622,13739,0],[13739,48622,13753,0],[13739,13753,13740,0],[13740,13753,13754,0],[13740,13754,13742,0],[13740,13742,13741,0],[13741,13742,13748,0],[13748,13742,48604,0],[48604,13742,13754,0],[48604,13754,13743,0],[48614,13745,13759,0],[48614,13759,13746,0],[13746,13747,13691,0],[13738,13739,13741,0],[13740,13741,13739,0],[13741,13748,13735,0],[13605,13749,13738,0],[13738,13749,13750,0],[13753,13752,13755,0],[13754,13753,13755,0],[13754,13755,13743,0],[13743,13755,13744,0],[13744,13755,13756,0],[13756,13755,13757,0],[13757,13755,13752,0],[13757,13752,13751,0],[13757,13751,13607,0],[13756,13757,13758,0],[13758,13805,13745,0],[13745,13805,13759,0],[13758,13745,13756,0],[13745,13744,13756,0],[13757,13610,13758,0],[13606,13750,13749,0],[13786,13612,13762,0],[13786,13762,13760,0],[13760,13762,13761,0],[13762,13612,13613,0],[13761,13665,13763,0],[13760,13763,13764,0],[13764,13763,13765,0],[13764,13765,42941,0],[42941,13765,13775,0],[42941,13775,13766,0],[13766,13775,13783,0],[13766,13783,13767,0],[13767,13783,13781,0],[13767,13781,13784,0],[13767,13784,13768,0],[13704,13768,48584,0],[13704,48584,13769,0],[13769,13771,13770,0],[13770,13771,13773,0],[13709,48396,13772,0],[13772,48396,13708,0],[13772,13708,13773,0],[13773,13708,13770,0],[13708,13707,13770,0],[13770,13707,13769,0],[13709,13772,13435,0],[13435,13772,13710,0],[13710,13772,13712,0],[13712,48566,13711,0],[48564,48563,13436,0],[13712,13772,48566,0],[13768,13702,13767,0],[13702,13768,13704,0],[13776,13780,13777,0],[13778,13777,13660,0],[13778,13660,13659,0],[13660,13777,13779,0],[13660,13779,13662,0],[13662,13779,13663,0],[13663,13779,13780,0],[13663,13780,13765,0],[13663,13765,13664,0],[13664,13765,13763,0],[13664,13763,13665,0],[13780,13776,13765,0],[13765,13776,13775,0],[13780,13779,13777,0],[13782,13781,13778,0],[13782,13778,13659,0],[13659,13658,13782,0],[13782,13658,13785,0],[13778,13781,13777,0],[13777,13781,13783,0],[13776,13783,13775,0],[13776,13777,13783,0],[13782,13785,13781,0],[13785,13784,13781,0],[13785,48585,13784,0],[13784,48585,13768,0],[13760,13761,13763,0],[13612,13786,13691,0],[13691,13786,48616,0],[48616,13786,13787,0],[13787,13786,13789,0],[13788,42942,13774,0],[13789,13697,13787,0],[13692,13787,13693,0],[13787,13697,13693,0],[13693,13697,13696,0],[13697,13788,13698,0],[13698,13788,13774,0],[13789,13788,13697,0],[13786,13760,13764,0],[13786,13764,13789,0],[14370,14358,13790,0],[13790,14358,14352,0],[13790,14352,14355,0],[13790,14355,13611,0],[13611,14355,13791,0],[13613,14356,13792,0],[13792,14356,14357,0],[13792,14357,19673,0],[14357,14354,13793,0],[13804,13795,13796,0],[13804,13796,47685,0],[13804,47685,42827,0],[13804,42827,13797,0],[13797,47690,48649,0],[19662,47758,13798,0],[7881,13800,13801,0],[7881,13801,47688,0],[7881,47688,7880,0],[7880,47688,7208,0],[7208,34825,7880,0],[19718,7881,13803,0],[19718,13803,13802,0],[19722,13803,7883,0],[19722,7883,19723,0],[13613,13792,13614,0],[14370,13790,13806,0],[13806,13790,13611,0],[13610,13805,13758,0],[13746,13805,13806,0],[13746,13806,13747,0],[13747,13806,13611,0],[13746,13759,13805,0],[13605,13604,13807,0],[13807,13808,48638,0],[48638,13808,42864,0],[48638,42864,13809,0],[13809,42863,48635,0],[48635,42863,13811,0],[13810,13811,13812,0],[13813,13814,13829,0],[13829,13814,13822,0],[13829,13822,13866,0],[13866,13822,13815,0],[13816,13817,13371,0],[13814,13812,13822,0],[13818,13821,13819,0],[13819,13821,13820,0],[13819,13820,13372,0],[13820,13373,13372,0],[13821,42860,13820,0],[13817,13818,13372,0],[13817,13815,13818,0],[13818,13815,13822,0],[13815,13817,13816,0],[13605,13807,13749,0],[42839,13823,48641,0],[42839,48641,13824,0],[13824,48641,13825,0],[13828,13827,48634,0],[13828,48634,13810,0],[13828,13810,42845,0],[42854,13813,13829,0],[42854,13829,13830,0],[13834,13836,13835,0],[13835,13836,14585,0],[13857,13841,13842,0],[13855,13842,48411,0],[13855,49947,13858,0],[13847,13844,13854,0],[13854,13844,13845,0],[13845,13844,13875,0],[13364,13845,13874,0],[13364,13846,13845,0],[13366,13846,13364,0],[13851,13848,13854,0],[13849,13851,13852,0],[13849,13852,42883,0],[42883,13852,13357,0],[13849,13850,13851,0],[13851,13850,13848,0],[13847,13848,13356,0],[13357,13852,13358,0],[13358,13852,13367,0],[13367,13366,13853,0],[13376,13853,13374,0],[13376,13358,13853,0],[13853,13358,13367,0],[13368,13852,13851,0],[13368,13851,13854,0],[13848,13847,13854,0],[13842,13855,13857,0],[13857,13859,13856,0],[13856,13859,13353,0],[13353,13859,13860,0],[13353,13352,13856,0],[13856,13352,48410,0],[13856,48410,13857,0],[13857,13855,13858,0],[13858,13843,13859,0],[13859,13857,13858,0],[13859,13843,13861,0],[13859,13861,13355,0],[13859,13355,13860,0],[13860,13355,13354,0],[13861,13356,13355,0],[13836,13862,14585,0],[14585,13862,13837,0],[13831,13832,13864,0],[13831,13864,13830,0],[13832,13833,13864,0],[13864,13833,13863,0],[13864,13863,13865,0],[13864,13865,13830,0],[13829,13866,13830,0],[13866,13815,13867,0],[13868,13867,13872,0],[13883,13868,13869,0],[13883,13869,13870,0],[13883,13870,13862,0],[13862,13836,13833,0],[48419,48417,13877,0],[13877,48417,48418,0],[13873,48418,13872,0],[13873,13370,13362,0],[13873,13362,13877,0],[13877,13362,13874,0],[13877,13874,48420,0],[48420,13874,13845,0],[48420,13845,13875,0],[13875,13844,13876,0],[13876,13844,49947,0],[13858,49947,13843,0],[13844,13847,13356,0],[13362,13363,13874,0],[13874,13363,13364,0],[13873,13877,48418,0],[13873,13867,13816,0],[13837,48415,13838,0],[13842,13841,13880,0],[13842,13880,13879,0],[13879,13880,48414,0],[13881,48414,13882,0],[13882,13840,13881,0],[13878,13881,13838,0],[13838,13881,13839,0],[13839,13881,13840,0],[13881,13878,48414,0],[13882,48414,13880,0],[13842,13879,48411,0],[13883,13832,13868,0],[13868,13832,13831,0],[13831,13830,13866,0],[13866,13867,13831,0],[13831,13867,13868,0],[13862,13833,13883,0],[13883,13833,13832,0],[13815,13816,13867,0],[13379,49969,13380,0],[13390,13413,42907,0],[13390,42907,14253,0],[14253,42907,13884,0],[14253,13884,13885,0],[13885,13886,14252,0],[14252,13886,48056,0],[48056,48055,13392,0],[13392,48055,13887,0],[13392,13887,13888,0],[13888,13887,48053,0],[13888,48053,47989,0],[47989,48053,13889,0],[13891,13890,13892,0],[13894,13893,47960,0],[13894,47960,14196,0],[13894,14196,47826,0],[47826,14196,47825,0],[13895,47825,13896,0],[13895,13896,13897,0],[13897,13896,13898,0],[13897,13898,14187,0],[14187,13898,13899,0],[14187,13899,14195,0],[13900,47852,13901,0],[13901,47829,13902,0],[13902,47829,13903,0],[13926,47875,13904,0],[13904,47875,47876,0],[13904,47876,13905,0],[13905,13906,13904,0],[13904,13906,13907,0],[13925,13907,13908,0],[13925,13908,13909,0],[47929,13910,13911,0],[47929,13911,47810,0],[47810,13911,13912,0],[47810,13912,47818,0],[47818,13912,13913,0],[13916,13915,19575,0],[13916,19575,13922,0],[13922,19575,13921,0],[13921,19575,13917,0],[13921,13920,19562,0],[13921,19562,13922,0],[13922,19562,13923,0],[13922,13923,13924,0],[13924,13914,13916,0],[13924,13916,13922,0],[13919,13920,19577,0],[13919,19577,13918,0],[19577,13920,13917,0],[13917,13920,13921,0],[13904,13925,13926,0],[13903,13926,13902,0],[13904,13907,13925,0],[13901,13902,47817,0],[13928,13927,47955,0],[13928,47955,13929,0],[13928,13929,13930,0],[14185,48427,13931,0],[13931,47815,47814,0],[13931,47814,13932,0],[14189,47795,14184,0],[14184,47795,47943,0],[14184,47943,13935,0],[13935,47943,14182,0],[14181,47942,13936,0],[13936,13937,13938,0],[13938,13937,47802,0],[13938,47787,14191,0],[14190,14191,13939,0],[14150,13939,13942,0],[14192,13942,13940,0],[13943,13941,13942,0],[13943,13942,13939,0],[13940,13942,13941,0],[13941,13943,47786,0],[13941,47786,13944,0],[13941,13944,13945,0],[14193,13945,13946,0],[14193,13946,19560,0],[14148,19560,19559,0],[13948,13947,40490,0],[13948,40490,13949,0],[13950,13949,40480,0],[13950,40480,14023,0],[13950,14023,40483,0],[40483,14023,13951,0],[40484,13951,40481,0],[40484,40481,40564,0],[40564,40481,13952,0],[13952,13953,40570,0],[40570,13954,40568,0],[14156,13955,14002,0],[14156,14002,40575,0],[40575,14002,14136,0],[40575,14136,14169,0],[14169,13956,14170,0],[14170,13956,14177,0],[14177,13956,13957,0],[14174,13957,13958,0],[14174,13958,13959,0],[14174,13959,13960,0],[13960,13959,47949,0],[13960,47949,13961,0],[13962,13961,40589,0],[40589,13990,13988,0],[13988,13990,13989,0],[13963,13989,13964,0],[13963,13964,13965,0],[13976,13964,13985,0],[13977,13985,13986,0],[13977,13986,13966,0],[13966,13986,14141,0],[13966,14139,13967,0],[13966,13967,13979,0],[13979,13967,13968,0],[13968,40787,13969,0],[40790,18132,18131,0],[40790,18131,40791,0],[40791,18131,18129,0],[18129,18128,40791,0],[13970,40791,40549,0],[13972,18133,13973,0],[13972,13973,13974,0],[13974,13973,13975,0],[13974,13975,13965,0],[13965,13976,13974,0],[13974,13976,13977,0],[13978,13979,13980,0],[13980,13979,13968,0],[13979,13978,13966,0],[13966,13978,13977,0],[13985,13977,13976,0],[13974,13977,13972,0],[13972,13977,13978,0],[13972,13978,13980,0],[13984,13980,13983,0],[13983,13969,13981,0],[13981,13969,13999,0],[13999,18132,13981,0],[13981,18132,40790,0],[13981,13982,13983,0],[13983,13982,13984,0],[13980,13968,13969,0],[13969,13983,13980,0],[13972,13984,18133,0],[13972,13980,13984,0],[13984,13971,18133,0],[13984,13982,13971,0],[13965,13964,13976,0],[13987,13990,40789,0],[40789,14141,13986,0],[13986,13985,13987,0],[13986,13987,40789,0],[13985,13964,13987,0],[13988,13989,40587,0],[40587,13989,41680,0],[41680,13989,13963,0],[40589,13961,13990,0],[13990,13961,13991,0],[13990,13991,40789,0],[13989,13990,13987,0],[13989,13987,13964,0],[13956,14000,14144,0],[14144,14000,13992,0],[13992,14000,13993,0],[40787,13996,13997,0],[13997,14133,13998,0],[13998,14133,14134,0],[13998,14134,13999,0],[14001,14002,14003,0],[13954,14003,40568,0],[40568,14003,13955,0],[13955,14003,14002,0],[14003,13954,14004,0],[14129,14006,14007,0],[14008,14007,14009,0],[14008,14009,14010,0],[14010,14009,14125,0],[47627,40267,40255,0],[14012,14011,14038,0],[40263,14038,14037,0],[40263,14037,14044,0],[40265,14044,14013,0],[14013,14044,47585,0],[14014,14013,47587,0],[14014,47587,18571,0],[18571,47588,18569,0],[18569,47588,14015,0],[18563,14015,47589,0],[18563,47589,47590,0],[14016,47599,47600,0],[14018,14017,10748,0],[14004,13954,14019,0],[14020,40481,40538,0],[40538,40481,14021,0],[40533,14021,14023,0],[14022,14023,40480,0],[40480,14066,14120,0],[14120,14066,14024,0],[14119,14024,14072,0],[14072,14071,14025,0],[14025,14026,14028,0],[14027,14028,14112,0],[14027,14112,14127,0],[14127,14112,14101,0],[14127,14101,14029,0],[14126,14125,14009,0],[14125,14030,40268,0],[40268,14030,14031,0],[40255,14031,14099,0],[14039,40255,40254,0],[14039,14033,14032,0],[14032,14033,40243,0],[14032,40243,14034,0],[14035,14034,40237,0],[14035,40237,14036,0],[14036,40237,10727,0],[14036,10727,10728,0],[14036,10728,10729,0],[14036,10729,40274,0],[14036,40274,14041,0],[14036,14041,14037,0],[14036,14037,14035,0],[14035,14037,14038,0],[14034,14035,14038,0],[14034,14038,14040,0],[14040,14038,14011,0],[14040,14011,14039,0],[40255,40267,14031,0],[40255,14039,47627,0],[47627,14039,14011,0],[14034,14040,14032,0],[14032,14040,14039,0],[14041,40274,10730,0],[14041,10730,18608,0],[14041,18608,40512,0],[40517,47580,14042,0],[14042,47580,47581,0],[14042,47581,14043,0],[14041,14043,14037,0],[14037,14043,47583,0],[14037,47583,14044,0],[18608,10731,40512,0],[40512,10731,40517,0],[14030,14029,14031,0],[14107,40532,14109,0],[14095,14046,14047,0],[14095,14047,14089,0],[14115,14089,14091,0],[14115,14091,14092,0],[14115,14092,14048,0],[14048,14092,14049,0],[14051,47617,14052,0],[14052,14094,40441,0],[40441,14094,14053,0],[14053,14094,14090,0],[14053,14090,14054,0],[14054,14090,14047,0],[14054,14047,14055,0],[14055,14047,14046,0],[14055,14046,14081,0],[14055,14081,14056,0],[40148,14057,14075,0],[40148,14075,14087,0],[40148,14087,14058,0],[14058,14087,14059,0],[14059,14085,40378,0],[14060,40379,14061,0],[40338,14068,40339,0],[40339,14068,14067,0],[40489,14064,14065,0],[14024,14066,14064,0],[14024,14064,14067,0],[14073,14067,14068,0],[14083,14074,40482,0],[40482,14074,14070,0],[14070,14076,14077,0],[14070,14077,14071,0],[14082,14071,14072,0],[14082,14072,14073,0],[14070,14074,14076,0],[14076,14074,14088,0],[14076,14088,14075,0],[14076,14075,14078,0],[14076,14078,14077,0],[14078,14026,14077,0],[14071,14077,14026,0],[14071,14026,14025,0],[14067,14073,14024,0],[14073,14072,14024,0],[14028,14078,14079,0],[14079,14078,14080,0],[14080,14078,14056,0],[14080,14056,14081,0],[14080,14081,14046,0],[14078,14028,14026,0],[14075,14057,14078,0],[14078,14057,14056,0],[14083,40482,14069,0],[14069,40482,14082,0],[14069,14082,14068,0],[14068,40338,14069,0],[40338,14063,14069,0],[14069,14063,14083,0],[14085,14084,14061,0],[14061,14084,14062,0],[14062,14084,14074,0],[14062,14074,14083,0],[14062,14083,14086,0],[14086,14083,14063,0],[14064,14066,14065,0],[14061,40379,40378,0],[14061,40378,14085,0],[14085,14059,14087,0],[14084,14085,14087,0],[14087,14075,14088,0],[14084,14088,14074,0],[14087,14088,14084,0],[14047,14090,14089,0],[14089,14090,14091,0],[14092,14091,14093,0],[14052,47617,14093,0],[14093,14090,14094,0],[14093,14094,14052,0],[14091,14090,14093,0],[14049,14092,14050,0],[14050,14092,14093,0],[47617,14050,14093,0],[14105,14096,14114,0],[14097,14114,40182,0],[14097,40182,40183,0],[14098,40188,40247,0],[14110,40247,40248,0],[14110,40248,14103,0],[40248,40250,40492,0],[14031,14029,14100,0],[14100,14029,14101,0],[14100,14101,14102,0],[14102,40532,14108,0],[14108,14103,40492,0],[40492,14103,40248,0],[14098,14104,14105,0],[14098,14105,14097,0],[14097,14105,14114,0],[14096,14105,14106,0],[14106,14104,14107,0],[14107,14104,14108,0],[14108,14104,14103,0],[14103,14104,14110,0],[14108,40532,14107,0],[14107,14109,14106,0],[14109,14046,14106,0],[14096,14106,14095,0],[14046,14095,14106,0],[14046,14109,14080,0],[14104,14098,14110,0],[14098,40247,14110,0],[14108,40492,14111,0],[14108,14111,14102,0],[14111,40492,14099,0],[14111,14099,14100,0],[14100,14102,14111,0],[14102,14101,14112,0],[14102,14112,40532,0],[40532,14112,14045,0],[14045,14112,14028,0],[14095,14089,14113,0],[14114,14096,14113,0],[14114,14113,14115,0],[14114,14115,40181,0],[40181,43569,43568,0],[40189,43568,43565,0],[40189,43565,14117,0],[14117,14116,40165,0],[14117,40165,40199,0],[40200,40199,40168,0],[40200,40168,40196,0],[10471,40198,40167,0],[14113,14089,14115,0],[14028,14027,14025,0],[14025,14027,14118,0],[14025,14118,14119,0],[14119,14118,14121,0],[14119,14121,14120,0],[14119,14120,14024,0],[14120,14121,40480,0],[40480,14121,14022,0],[14123,14127,14124,0],[14124,14030,14125,0],[14030,14124,14029,0],[14029,14124,14127,0],[14027,14127,14118,0],[14121,14118,14122,0],[14121,14122,14022,0],[14025,14119,14072,0],[13953,13952,14020,0],[13953,14019,40570,0],[40570,14019,13954,0],[14003,14004,14001,0],[14001,14004,14005,0],[14128,40541,13994,0],[13994,40541,14006,0],[13994,14006,13995,0],[13995,14006,14129,0],[14130,14008,40270,0],[14130,40270,40271,0],[14130,40271,40792,0],[40792,40271,14131,0],[40272,18567,47603,0],[14132,47603,49968,0],[14132,49968,14133,0],[14008,14129,14007,0],[13995,47606,14135,0],[14008,47606,14129,0],[14129,47606,13995,0],[13995,14135,13996,0],[40541,14128,14005,0],[14005,14128,14001,0],[14128,13993,14000,0],[14128,14000,14001,0],[14001,14000,14136,0],[14136,14002,14001,0],[14169,14136,13956,0],[13956,14136,14000,0],[13956,14144,13957,0],[14137,14142,14138,0],[40544,14138,14139,0],[40544,14139,14140,0],[14140,14139,14141,0],[14140,14141,40789,0],[14143,13967,14142,0],[14143,14142,13992,0],[13957,14144,14137,0],[14137,14144,14142,0],[14144,13992,14142,0],[14138,14142,13967,0],[13949,13950,14145,0],[13949,14145,13948,0],[14146,40487,14147,0],[19559,14147,14148,0],[14146,14147,13948,0],[13948,14147,13947,0],[13947,14147,19559,0],[14193,19560,14148,0],[14148,14147,40487,0],[14194,40487,14149,0],[14149,40615,40614,0],[14149,40614,14178,0],[14178,40614,40612,0],[14178,40612,14151,0],[14178,14151,14150,0],[14150,14151,40638,0],[40638,14151,40613,0],[40617,40613,40604,0],[40616,40604,14152,0],[14152,40607,14153,0],[14153,40607,40608,0],[14153,40608,14154,0],[14155,14156,14168,0],[14168,14156,40576,0],[40576,14157,14167,0],[40671,14158,14159,0],[40671,14159,14160,0],[14160,14159,40707,0],[40723,40707,14161,0],[40723,14161,40719,0],[40719,14161,40720,0],[40720,14161,14162,0],[40720,14162,14163,0],[40662,40663,47945,0],[40662,47945,14164,0],[40718,14164,40668,0],[40722,40668,40669,0],[40722,40669,47948,0],[47948,40669,14165,0],[14165,40669,14166,0],[14165,14166,14154,0],[14154,14166,14153,0],[14155,14168,14154,0],[14154,14168,14158,0],[40576,14167,14168,0],[14154,14158,40671,0],[14165,14154,40671,0],[14154,40608,14155,0],[14155,40608,40569,0],[14155,40569,13955,0],[14155,13955,14156,0],[40573,40575,14169,0],[14171,14170,14172,0],[14171,14172,47950,0],[47950,14172,14176,0],[14173,13960,40578,0],[40578,13960,13961,0],[13960,14173,14174,0],[14175,14177,13957,0],[14175,14174,14176,0],[14175,14176,14172,0],[14175,14172,14177,0],[14176,14174,14173,0],[13941,13945,13940,0],[13942,14192,14178,0],[13942,14178,14150,0],[14150,40638,13939,0],[13939,40638,14179,0],[14179,40638,40635,0],[14179,40635,14180,0],[14180,40639,14181,0],[14181,40641,14182,0],[14182,14183,40643,0],[13935,40646,14184,0],[14184,40646,40647,0],[14184,40647,13930,0],[13931,13932,48426,0],[48426,13930,14185,0],[14185,13930,13929,0],[13930,40647,13928,0],[13928,40647,14186,0],[14182,40643,13935,0],[14184,13930,14189,0],[14180,14181,13936,0],[14180,13936,14190,0],[14190,13936,14191,0],[14180,14190,14179,0],[14179,14190,13939,0],[14149,14178,14192,0],[14193,14148,14194,0],[14193,14194,13940,0],[13940,14194,14192,0],[14192,14194,14149,0],[40487,14194,14148,0],[14193,13940,13945,0],[14191,13936,13938,0],[13901,13927,13900,0],[13900,13927,14195,0],[14196,47962,47854,0],[47846,47848,14199,0],[47846,14199,47957,0],[47957,14199,47988,0],[47957,47988,47864,0],[14214,47995,14213,0],[14202,47974,47975,0],[14203,47975,14204,0],[14206,14205,14207,0],[47986,47994,42909,0],[42909,14210,14211,0],[14211,14210,14212,0],[14212,47992,42903,0],[42903,47992,47990,0],[42903,47990,42906,0],[42906,47990,13885,0],[42906,13885,13884,0],[47975,14203,14202,0],[14213,14202,48038,0],[14213,48038,14214,0],[14214,48038,14215,0],[14215,48041,48423,0],[47842,14216,14217,0],[14217,48034,47837,0],[47837,48034,14218,0],[14219,14218,48030,0],[14219,48030,48325,0],[48325,48030,14220,0],[19456,14220,14222,0],[19456,14222,14221,0],[14223,14221,48028,0],[48028,48029,19630,0],[19630,48029,14224,0],[14224,48029,48317,0],[48346,14227,14228,0],[48348,14231,48349,0],[48349,14232,14233,0],[13429,14234,13731,0],[14234,13429,48375,0],[14234,48375,14233,0],[14233,48375,14235,0],[14235,14236,48398,0],[48398,14236,14237,0],[48398,14237,48399,0],[48347,48215,48356,0],[14238,48356,14239,0],[14238,14239,48202,0],[14240,14242,14241,0],[14241,14242,14243,0],[14243,48313,14244,0],[14244,14245,14226,0],[14226,14227,14244,0],[14244,48346,14243,0],[14243,48346,14246,0],[14243,14246,14241,0],[14241,14246,14240,0],[14240,14246,14247,0],[14240,14247,48202,0],[48202,14247,14238,0],[48356,14238,14248,0],[14248,14238,14247,0],[14233,14235,48349,0],[14215,14201,14214,0],[13893,13894,13892,0],[13891,13892,13399,0],[14249,13399,47828,0],[14249,47828,13408,0],[14249,13408,13402,0],[13402,13400,14249,0],[14250,47828,47827,0],[14250,47827,14251,0],[13407,14251,13406,0],[14251,13407,14250,0],[13890,13398,48051,0],[13394,13393,13396,0],[13396,13393,13888,0],[14252,48056,13392,0],[13392,14253,14252,0],[14252,14253,13885,0],[13383,14254,13384,0],[13385,48062,13388,0],[13388,48062,13389,0],[13389,48062,13413,0],[13385,13384,14254,0],[13349,13350,13383,0],[13383,13350,13351,0],[14255,13353,13381,0],[13381,13353,13860,0],[13381,13860,13354,0],[13381,48069,14255,0],[14255,48069,13382,0],[14255,13382,13351,0],[13380,14256,13379,0],[13379,14256,13378,0],[14256,13380,13356,0],[14256,13356,13377,0],[13347,14262,14577,0],[14258,14569,14263,0],[14258,14263,14259,0],[14259,14263,14260,0],[14261,13344,40766,0],[14261,40766,13343,0],[13344,14261,14259,0],[40764,13344,14260,0],[14260,14262,13346,0],[14569,14257,14263,0],[14260,14263,14262,0],[14262,14263,14577,0],[14577,14263,14257,0],[13314,13316,14264,0],[14264,13337,13336,0],[13336,13312,14264,0],[14264,13312,13313,0],[14264,13313,13314,0],[13311,13309,14538,0],[13311,14538,13312,0],[13307,13308,14265,0],[14265,40691,14266,0],[14265,14266,13307,0],[14287,14267,14266,0],[14266,14267,13307,0],[40784,13299,14268,0],[14269,14268,14289,0],[14269,14289,14280,0],[14280,14289,14270,0],[14275,14273,14276,0],[14276,14273,14271,0],[13296,14271,14272,0],[13296,14272,13297,0],[14273,13298,14271,0],[14271,13298,40600,0],[14271,40600,14272,0],[14271,13296,14274,0],[14271,14274,14276,0],[14276,14274,14277,0],[14276,14277,14275,0],[14275,14277,14270,0],[14274,41831,14279,0],[41836,41842,14277,0],[14277,41842,14278,0],[14277,14278,14270,0],[41836,14277,14279,0],[14279,14277,14274,0],[14280,14270,14278,0],[14269,14280,40680,0],[40680,14280,14281,0],[40680,14281,13303,0],[13303,14281,40679,0],[40679,14281,14283,0],[14280,14278,14281,0],[14281,14278,14282,0],[14283,14282,14288,0],[14283,14288,13304,0],[14284,14288,14285,0],[14284,14285,14286,0],[14286,41843,14267,0],[14286,14267,14287,0],[14286,14287,14284,0],[14284,14287,13306,0],[14284,13306,13305,0],[14283,13304,40679,0],[13304,14288,13305,0],[14268,13299,14289,0],[13294,13297,13295,0],[13295,13297,14291,0],[13295,14291,14290,0],[14290,13289,13295,0],[14290,14291,13243,0],[13244,40594,14292,0],[14292,40594,14293,0],[14293,40594,18099,0],[41830,14293,14294,0],[14298,14297,41689,0],[41746,14299,41692,0],[41746,41692,18087,0],[41746,18087,14300,0],[14301,14300,14302,0],[14303,14302,14300,0],[14303,14300,14304,0],[14305,14304,13232,0],[14312,14307,14308,0],[14309,14308,13260,0],[14309,13260,14296,0],[14309,14297,14310,0],[14310,14297,14298,0],[14310,14298,14299,0],[14308,14309,14310,0],[14308,14310,14313,0],[14313,14310,14301,0],[14301,14310,14299,0],[14301,14299,41746,0],[13260,14308,14311,0],[14311,14308,14307,0],[14311,14307,13251,0],[13251,14307,14306,0],[14306,14307,14312,0],[14313,14312,14308,0],[14313,14302,14312,0],[14312,14302,14314,0],[14314,14303,14305,0],[14305,14303,14304,0],[14303,14314,14302,0],[14302,14313,14301,0],[14312,14315,14306,0],[13251,14306,13234,0],[14306,14315,14426,0],[14426,14315,14305,0],[14296,13259,14295,0],[14294,14295,41830,0],[41830,14295,13259,0],[14291,40600,13243,0],[13243,40600,40593,0],[13243,40593,13244,0],[13289,13290,13295,0],[13293,13294,13290,0],[13290,13294,13295,0],[13289,41705,14545,0],[14545,41705,14316,0],[14317,14316,14318,0],[14549,14560,14319,0],[14556,14321,14465,0],[14556,14465,14322,0],[14322,14465,14323,0],[14323,14465,14324,0],[41826,14324,14325,0],[14391,14392,41712,0],[14392,14326,14480,0],[14327,14326,14387,0],[14327,14387,14328,0],[48647,14331,41715,0],[41715,14331,14384,0],[41723,41715,14332,0],[14335,14376,14336,0],[14336,14374,14373,0],[14336,14373,14372,0],[14372,14474,41725,0],[41726,41725,14337,0],[41726,14337,14338,0],[41726,14338,14605,0],[14605,14338,14478,0],[14605,14478,14339,0],[14478,14477,14339,0],[14604,14476,14361,0],[14361,14476,14340,0],[14340,14341,14364,0],[14475,14342,14337,0],[14475,14474,14343,0],[14364,14343,14344,0],[14345,14344,14347,0],[14346,14347,14348,0],[14348,14347,14472,0],[14348,12984,14346,0],[14347,12985,14345,0],[14345,12985,14349,0],[14344,14345,14349,0],[14371,14350,14352,0],[14352,14350,14351,0],[14352,14351,14354,0],[14354,12986,13793,0],[14354,14357,14353,0],[13791,14355,14353,0],[13791,14353,13613,0],[13613,14353,14356,0],[14356,14353,14357,0],[14352,14354,14353,0],[14351,14350,12985,0],[12985,14350,14349,0],[14359,14365,14360,0],[14362,14360,14361,0],[14362,14363,14349,0],[14360,14362,14371,0],[14360,14371,14358,0],[14360,14358,14359,0],[14361,14340,14362,0],[14362,14340,14363,0],[14363,14340,14344,0],[14363,14344,14349,0],[14340,14364,14344,0],[14364,14342,14343,0],[14343,14342,14475,0],[14361,14360,14365,0],[42852,14365,14366,0],[14367,42850,13609,0],[14367,14369,14368,0],[42842,14369,13608,0],[13610,13608,13609,0],[14369,14367,13609,0],[14359,13609,14366,0],[14366,13609,42850,0],[13608,14369,13609,0],[14359,14366,14365,0],[14359,14358,14370,0],[14370,13610,13609,0],[14362,14349,14371,0],[14373,12983,14372,0],[14474,14372,14473,0],[14473,14372,12983,0],[12980,14374,14375,0],[14374,14336,14375,0],[14376,14335,14334,0],[14471,14376,14333,0],[14471,14333,14470,0],[14470,14385,14377,0],[14377,14385,14378,0],[14378,14381,12976,0],[12976,14381,41729,0],[41729,14381,14380,0],[41729,14380,14379,0],[12962,14379,14380,0],[14380,14382,12964,0],[14380,14381,14382,0],[14468,14382,14469,0],[14468,14469,14383,0],[14385,41715,14384,0],[14386,14384,14331,0],[14331,48647,14388,0],[14388,48647,14387,0],[14387,48647,14330,0],[14387,14330,14329,0],[14329,14328,14387,0],[14331,14388,14389,0],[14331,14389,14386,0],[14386,14389,12966,0],[14389,14388,14387,0],[14389,14387,14326,0],[14326,14390,14389,0],[14393,14390,14394,0],[14395,14394,14391,0],[14395,14391,14325,0],[14391,14394,14392,0],[14326,14392,14390,0],[14390,14392,14394,0],[12966,14390,14393,0],[14394,14395,14451,0],[14451,14395,14464,0],[14450,14461,14396,0],[14396,41701,14397,0],[14458,14399,41777,0],[14440,14400,14401,0],[14440,14401,14457,0],[14457,14401,14456,0],[14456,14401,14402,0],[14403,14402,41786,0],[14403,14436,14455,0],[14455,14436,14437,0],[14648,14404,14639,0],[14639,14404,14434,0],[14639,14434,14637,0],[14637,14434,14405,0],[14406,14405,14407,0],[14406,14407,14414,0],[14408,14414,14410,0],[14410,14414,14409,0],[14410,14409,14411,0],[13271,14413,41770,0],[41770,14413,14412,0],[41770,14412,41771,0],[41771,14412,14409,0],[41789,14409,14414,0],[14411,14409,14412,0],[14628,14415,14432,0],[14628,14432,14629,0],[14629,14432,14416,0],[14629,14417,14621,0],[14621,14417,14421,0],[14421,14417,14418,0],[14418,14427,13286,0],[13270,13285,13284,0],[14419,14422,13231,0],[13231,14425,41784,0],[14420,14419,14421,0],[13286,14420,14418,0],[14623,14419,13230,0],[14418,14420,14421,0],[14623,14421,14419,0],[13286,13270,14420,0],[14420,13270,14422,0],[14420,14422,14419,0],[13284,14422,13270,0],[13234,13233,14424,0],[14423,14422,13284,0],[14422,14423,13231,0],[14426,14425,13233,0],[13232,14425,14426,0],[14425,14424,13233,0],[14424,14425,14423,0],[14423,14425,13231,0],[14423,13283,14424,0],[13283,13282,14424,0],[14424,13282,13234,0],[13283,14423,13284,0],[14629,14416,14417,0],[14416,14428,14417,0],[14417,14428,14418,0],[14418,14428,14427,0],[14429,14427,14430,0],[14429,14430,13271,0],[13271,14430,14413,0],[14413,14430,14412,0],[14433,14431,14432,0],[14432,14431,14416,0],[14416,14431,14428,0],[14428,14431,14427,0],[14427,14431,14430,0],[14411,14433,14410,0],[14410,14433,14408,0],[14408,14433,14432,0],[14408,14432,14415,0],[14431,14433,14412,0],[14431,14412,14430,0],[14412,14433,14411,0],[14405,14434,14435,0],[14435,14404,14436,0],[14435,14434,14404,0],[14436,14404,14437,0],[14405,14435,14407,0],[14402,14401,14438,0],[14402,14438,41788,0],[41819,14459,14446,0],[14440,14441,14445,0],[14445,14441,14442,0],[14443,14445,14442,0],[14442,14704,14443,0],[14443,14704,14707,0],[14443,14707,14447,0],[14447,14707,14702,0],[14443,14447,14444,0],[14445,14444,14448,0],[14445,14448,14446,0],[14446,14440,14445,0],[14444,14447,14393,0],[14444,14393,14448,0],[14448,14393,14449,0],[14448,14449,14450,0],[14450,14449,14451,0],[14452,14451,14464,0],[14452,14461,14451,0],[14451,14461,14450,0],[14451,14449,14394,0],[41819,14450,14396,0],[14393,14447,12966,0],[14442,14454,14453,0],[14453,14454,14646,0],[14646,14454,14455,0],[14646,14455,14437,0],[14403,14455,14456,0],[14440,14457,14454,0],[14440,14454,14441,0],[14454,14457,14455,0],[14455,14457,14456,0],[14400,14440,14446,0],[14400,14446,14459,0],[14400,14459,41777,0],[41777,14459,14458,0],[14458,14459,14460,0],[14458,14460,14398,0],[14442,14441,14454,0],[14402,14403,14456,0],[14396,14397,14439,0],[14459,41819,14460,0],[41819,14439,14460,0],[14460,14439,14398,0],[14398,14439,14397,0],[14396,14461,14462,0],[14318,14462,14560,0],[14560,14462,14463,0],[14560,14463,14319,0],[14463,14462,14452,0],[14463,14452,14320,0],[14320,14464,14467,0],[14320,14319,14463,0],[14462,14461,14452,0],[14452,14464,14320,0],[14449,14393,14394,0],[14325,14324,14465,0],[14466,14465,14321,0],[14321,14467,14466,0],[14465,14466,14395,0],[14395,14466,14467,0],[14395,14467,14464,0],[41715,14385,14332,0],[14332,14385,14333,0],[14385,14470,14333,0],[14383,12965,14468,0],[14382,14381,14469,0],[14471,14470,12978,0],[12978,14470,14377,0],[41735,12977,12976,0],[12976,12977,14378,0],[14378,12977,14377,0],[14333,14376,14334,0],[41727,14334,14335,0],[14376,14471,14375,0],[14347,14344,14472,0],[14473,14472,14343,0],[14473,14343,14474,0],[14475,41725,14474,0],[14472,14473,14348,0],[14343,14472,14344,0],[14340,14476,14341,0],[14341,14476,14477,0],[14477,14476,14604,0],[14341,14478,14338,0],[14341,14338,14342,0],[14342,14338,14337,0],[14477,14478,14341,0],[14342,14364,14341,0],[14332,14333,41728,0],[14332,41728,41723,0],[14329,41718,41719,0],[41719,14600,41711,0],[41711,41720,14479,0],[14481,48625,14482,0],[14483,14608,14484,0],[14485,14484,14486,0],[14485,14486,14488,0],[14488,14486,14487,0],[48630,14490,48632,0],[13834,48632,48633,0],[13836,13834,13863,0],[13836,13863,13833,0],[48632,14490,48633,0],[14488,14487,14491,0],[14488,14491,14489,0],[14489,14491,14498,0],[14498,14491,48646,0],[14494,14493,14495,0],[14610,14497,14487,0],[14610,14487,14486,0],[14489,14498,42835,0],[14489,42835,14490,0],[14484,14485,14483,0],[14483,14485,14499,0],[14499,14485,48627,0],[14499,48627,14500,0],[41824,14501,48628,0],[41824,48628,14502,0],[14502,14503,14504,0],[14504,14503,14505,0],[41820,14505,14511,0],[41820,14511,14507,0],[41820,14507,14506,0],[14506,14507,14508,0],[14510,14509,14507,0],[14510,14507,14551,0],[14551,14507,14511,0],[14551,14511,14552,0],[14552,14511,14512,0],[14535,14512,14505,0],[14535,14505,14513,0],[14535,14513,14514,0],[14514,14513,14574,0],[14574,14513,14515,0],[14574,14516,14517,0],[14574,14517,14518,0],[14518,14587,14575,0],[14575,14587,14592,0],[14519,14589,14520,0],[14520,14589,14590,0],[14520,14590,14521,0],[14521,14591,14573,0],[14573,14591,14522,0],[14576,14522,14257,0],[14257,14522,14523,0],[14523,14522,14524,0],[14525,14598,48421,0],[14578,14525,14526,0],[14527,13882,13880,0],[13880,13841,14527,0],[14527,13841,14579,0],[14579,48067,14528,0],[14529,14528,13349,0],[14529,14530,14523,0],[14523,14530,14257,0],[14576,14257,14569,0],[14576,14569,14531,0],[14567,14571,14521,0],[14534,14535,14514,0],[14534,14533,14535,0],[14537,14536,14564,0],[14537,14564,13313,0],[14537,13313,14538,0],[14553,14538,14539,0],[14540,14562,14561,0],[14540,14561,14556,0],[14556,14561,14541,0],[48648,14542,14559,0],[14559,14542,14543,0],[14543,14542,14546,0],[14543,14546,14544,0],[13291,14546,41837,0],[13291,41837,13293,0],[14545,14316,14544,0],[14544,14316,14547,0],[14543,14547,14550,0],[14550,14547,14548,0],[14548,14547,14317,0],[14550,14549,14559,0],[14550,14559,14543,0],[14539,14554,14553,0],[14553,14554,14551,0],[14551,14552,14553,0],[14553,14552,14538,0],[14538,14552,14537,0],[14552,14512,14537,0],[14537,14512,14536,0],[14536,14512,14535,0],[14554,14555,14599,0],[14599,14555,14322,0],[14320,14558,14319,0],[14558,14559,14319,0],[14559,14558,41710,0],[48648,41710,14541,0],[14541,41710,14557,0],[14541,14557,14556,0],[41710,48648,14559,0],[14319,14559,14549,0],[14549,14548,14560,0],[14560,14548,14318,0],[14318,14548,14317,0],[14317,14547,14316,0],[14540,14322,14562,0],[14562,14322,14555,0],[14554,14599,14551,0],[14538,13309,14539,0],[14539,13309,13308,0],[14539,13308,14554,0],[14554,13308,14555,0],[13308,13307,14555,0],[14555,13307,14562,0],[13307,14563,14562,0],[14562,14563,14561,0],[14564,14536,14565,0],[14565,14571,14566,0],[14566,14571,13315,0],[13315,14571,14567,0],[13315,14567,41827,0],[41827,14567,14568,0],[14258,14570,14569,0],[14531,14569,14570,0],[14531,14570,41827,0],[14531,41827,14568,0],[14571,14565,14532,0],[14572,14258,14259,0],[14259,14261,14572,0],[14572,14261,13341,0],[14572,14570,14258,0],[14565,14566,14564,0],[14564,14566,13314,0],[14522,14576,14573,0],[14567,14521,14568,0],[14521,14571,14520,0],[14520,14571,14532,0],[14520,14532,14533,0],[14520,14533,14519,0],[14519,14533,14534,0],[14519,14534,14514,0],[14514,14574,14575,0],[14575,14574,14518,0],[14575,14592,14514,0],[14514,14592,14519,0],[14516,14574,14515,0],[14573,14576,14531,0],[14531,14568,14573,0],[14573,14568,14521,0],[14257,14530,14577,0],[14530,14529,13349,0],[14523,14524,14578,0],[14578,14526,14579,0],[14578,14579,14528,0],[14528,14529,14578,0],[14578,14529,14523,0],[14526,14527,14579,0],[48422,14581,14582,0],[48422,14582,14583,0],[48422,14583,49948,0],[49948,14583,13840,0],[13840,14583,13839,0],[13839,14583,14584,0],[14584,14596,14585,0],[14585,14596,13835,0],[13834,13835,48632,0],[14585,13837,14584,0],[13839,14584,13838,0],[13838,14584,13837,0],[14593,14586,14587,0],[14593,14587,14517,0],[14517,14587,14518,0],[14587,14586,14592,0],[14592,14586,14588,0],[14588,14586,14582,0],[14588,14582,14581,0],[14588,14581,14519,0],[14519,14581,14589,0],[14590,14589,14580,0],[14590,14580,14598,0],[14590,14598,14591,0],[14580,14589,14581,0],[14590,14591,14521,0],[14519,14592,14588,0],[14583,14586,14584,0],[14584,14586,14593,0],[40717,14517,40715,0],[14594,48629,14595,0],[48632,14595,48630,0],[14584,14593,14596,0],[14596,14597,13835,0],[14522,14591,14524,0],[14524,14591,14598,0],[14524,14598,14525,0],[14598,14580,14581,0],[14513,14505,14503,0],[14505,14512,14511,0],[14508,14507,14509,0],[14324,14508,14509,0],[14324,14509,14323,0],[14323,14509,14322,0],[14509,14510,14599,0],[14599,14322,14509,0],[14505,41820,14504,0],[14482,48625,14499,0],[14499,48625,14483,0],[14483,41722,41721,0],[14483,41721,14608,0],[14608,41721,41720,0],[14600,14601,14602,0],[14602,14606,42828,0],[42828,14606,14603,0],[14604,42851,14477,0],[42851,14603,14477,0],[14477,14603,14339,0],[14602,14601,14606,0],[14606,14339,14603,0],[14600,14602,14607,0],[14607,14609,14608,0],[14608,14609,14484,0],[14484,14609,14611,0],[14611,14609,14610,0],[14610,14609,14607,0],[14610,14607,14602,0],[14610,42828,14497,0],[14602,42828,14610,0],[14484,14611,14486,0],[14486,14611,14610,0],[14600,14607,41720,0],[41720,14607,14608,0],[41719,41711,14329,0],[41718,14329,41716,0],[41723,41714,41715,0],[13224,13226,13227,0],[13176,13223,41793,0],[41793,13223,13224,0],[13224,14612,14615,0],[13224,14615,41793,0],[13177,14614,14613,0],[14613,14614,14615,0],[14613,14615,14612,0],[14613,13229,13177,0],[13174,42445,13223,0],[13223,42445,14616,0],[13225,42443,14617,0],[14617,14618,14619,0],[14625,14620,41782,0],[14625,41782,14624,0],[14624,14629,14621,0],[14620,14625,14619,0],[14619,14626,13226,0],[13226,14626,13227,0],[13227,14626,14622,0],[13227,14622,13228,0],[13228,14622,13230,0],[13230,14622,14623,0],[13230,13229,13228,0],[14622,14624,14621,0],[14624,14622,14625,0],[14622,14626,14625,0],[14625,14626,14619,0],[14623,14622,14621,0],[14623,14621,14421,0],[13226,13225,14619,0],[14619,13225,14617,0],[14619,14618,14620,0],[14620,14627,14628,0],[14628,14627,14415,0],[14627,14630,14631,0],[14631,14414,14408,0],[14627,14631,14415,0],[14415,14631,14408,0],[14630,14627,14632,0],[14651,14632,14633,0],[14636,14659,42441,0],[14636,42441,14652,0],[14652,42441,14638,0],[14652,14638,14637,0],[14637,14638,14639,0],[14639,14638,42442,0],[14639,42442,14640,0],[14642,14728,14643,0],[14644,14732,14647,0],[14647,14732,14645,0],[14646,14645,14453,0],[14647,14646,14644,0],[14644,14648,14643,0],[14643,14648,14649,0],[14643,14649,14642,0],[14642,14649,14641,0],[14641,14649,14640,0],[14646,14437,14644,0],[14644,14437,14648,0],[14637,14405,14650,0],[14650,14405,14406,0],[14414,14631,14406,0],[14406,14631,14650,0],[14630,14632,14651,0],[14636,14651,14659,0],[14659,14651,14635,0],[14635,14651,14633,0],[14635,14633,14634,0],[14630,14651,14652,0],[14630,14652,14650,0],[14650,14652,14637,0],[14636,14652,14651,0],[14630,14650,14631,0],[14648,14639,14649,0],[14649,14639,14640,0],[14627,14620,14632,0],[14632,14620,14618,0],[14632,14618,14633,0],[14633,14618,14617,0],[14633,14617,14634,0],[41782,14620,14628,0],[42443,13225,42447,0],[14653,14721,14719,0],[14653,14719,14654,0],[14653,14654,14655,0],[14664,14657,14658,0],[14658,14659,14660,0],[14660,42449,14661,0],[13220,14661,14662,0],[13220,14662,42446,0],[14661,13220,14663,0],[14663,14664,14658,0],[14663,14658,14661,0],[14661,14658,14660,0],[14663,14665,14664,0],[14664,14665,14656,0],[13166,13167,41427,0],[13165,41427,14666,0],[14667,14668,14669,0],[14669,14668,13145,0],[13145,14668,41435,0],[13145,41435,14670,0],[13145,14670,13146,0],[13146,14670,14671,0],[13147,14671,14678,0],[14678,14671,41264,0],[14678,41264,14672,0],[14673,14674,14675,0],[14675,14674,14676,0],[14675,14676,41426,0],[41457,14677,11184,0],[11184,14677,41020,0],[13147,14678,13149,0],[13149,14678,14679,0],[14679,14680,14682,0],[14682,14680,14681,0],[14682,14681,11189,0],[13149,14679,14682,0],[11189,11191,14682,0],[14678,14672,41423,0],[14678,41423,14679,0],[14679,41423,14680,0],[13145,13144,14669,0],[14669,13144,13143,0],[14669,13143,14667,0],[14667,13143,13142,0],[14667,13142,13164,0],[13164,13142,13141,0],[14683,13049,14684,0],[14685,14684,14690,0],[14685,14690,14686,0],[14685,14686,14687,0],[14714,14687,14688,0],[13045,14689,13046,0],[14689,14687,14686,0],[14687,14689,14688,0],[13047,13046,14689,0],[13047,14689,14686,0],[13047,14686,14690,0],[14690,14684,13049,0],[13049,13048,14690,0],[14689,13045,14691,0],[14688,14691,14692,0],[14692,14691,13040,0],[14693,14692,14694,0],[14694,14695,14745,0],[14745,14695,14743,0],[14743,14695,14740,0],[14740,14695,14696,0],[14696,14711,14739,0],[14698,14739,13041,0],[13041,42459,14698,0],[14698,42459,14710,0],[14698,14710,14697,0],[14698,14697,14699,0],[42450,12963,12964,0],[42450,12964,14706,0],[14706,14701,14703,0],[14703,14701,12965,0],[14702,14707,12965,0],[12965,14707,14703,0],[14703,14704,14705,0],[14705,14453,14645,0],[14442,14453,14705,0],[14442,14705,14704,0],[14703,14705,14706,0],[14701,14706,12964,0],[14699,14697,14700,0],[14700,14697,14708,0],[14710,13042,14709,0],[13043,14709,13042,0],[13043,14708,14709,0],[14709,14708,14697,0],[14709,14697,14710,0],[14696,14695,14711,0],[14711,14692,13041,0],[14692,14711,14694,0],[14711,14695,14694,0],[14692,14693,14688,0],[14691,14688,14689,0],[14693,14694,14688,0],[14688,14694,14714,0],[14685,14687,14714,0],[13040,14691,13039,0],[14691,13045,13038,0],[14691,13038,13039,0],[14712,14685,14713,0],[14713,14714,14715,0],[14715,14716,14746,0],[14717,14718,14654,0],[14717,14654,14720,0],[14720,14654,14719,0],[14720,14719,14721,0],[14720,14721,14722,0],[14722,14721,13166,0],[14722,13166,13165,0],[14723,14713,14715,0],[14720,14722,14723,0],[14723,14722,14712,0],[14712,14722,14725,0],[14712,14725,14724,0],[14724,13141,14683,0],[14683,14684,14724,0],[13141,14724,13164,0],[14724,14725,13164,0],[13164,14725,13165,0],[14723,14712,14713,0],[14712,14724,14684,0],[14654,14718,14655,0],[14655,14718,14744,0],[14655,14744,14656,0],[14656,14744,14726,0],[14656,14726,42442,0],[42442,14726,14640,0],[14640,14726,14641,0],[14641,14726,14733,0],[14641,14733,14727,0],[14727,14733,14734,0],[14727,14734,14735,0],[14727,14735,14728,0],[14728,14735,14729,0],[14732,14644,14731,0],[14731,14644,14730,0],[14730,14644,14729,0],[14729,14644,14643,0],[14729,14643,14728,0],[14728,14642,14727,0],[14727,14642,14641,0],[14729,14735,14736,0],[14729,14736,14737,0],[14737,14736,14738,0],[14699,14738,14739,0],[14699,14739,14698,0],[14696,14739,14738,0],[14696,14738,14740,0],[14740,14738,14736,0],[14740,14736,14741,0],[14742,14741,14734,0],[14742,14734,14718,0],[14742,14718,14717,0],[14743,14742,14745,0],[14742,14743,14741,0],[14741,14743,14740,0],[14734,14741,14736,0],[14734,14736,14735,0],[14726,14744,14733,0],[14733,14744,14734,0],[14734,14744,14718,0],[14715,14746,14723,0],[14723,14746,14720,0],[14713,14685,14714,0],[14715,14714,14694,0],[14715,14694,14716,0],[14716,14694,14745,0],[14746,14716,14742,0],[14742,14717,14746,0],[14742,14716,14745,0],[12579,13036,12890,0],[12581,14747,12582,0],[12953,12582,14747,0],[12897,14747,14748,0],[14748,14747,14750,0],[14748,14750,14749,0],[14750,12580,12886,0],[14747,12581,14750,0],[14750,12581,12580,0],[12572,12934,14751,0],[12878,14751,12934,0],[42500,14753,14754,0],[14754,14753,16754,0],[12568,14752,14754,0],[12929,42500,12568,0],[12568,42500,14752,0],[12566,14755,12567,0],[12567,14755,14754,0],[14754,14755,12568,0],[12568,14755,12282,0],[12566,12565,14755,0],[14755,12565,12281,0],[12280,12565,12279,0],[12565,12564,12279,0],[12279,12564,12278,0],[12278,12564,14756,0],[12561,14756,14757,0],[14757,11956,12563,0],[12563,12561,14757,0],[12277,42704,12544,0],[12544,42704,12558,0],[12264,12265,12399,0],[12399,12265,14758,0],[12405,12396,14758,0],[14758,12396,12399,0],[12261,14759,14760,0],[14761,14762,12480,0],[42471,14762,42475,0],[14763,12261,42474,0],[12398,12483,42474,0],[12261,14763,12260,0],[12260,14763,14761,0],[14763,42475,14761,0],[14761,42475,14762,0],[12257,14764,12481,0],[12256,12257,12481,0],[14764,14761,12480,0],[14764,12480,12482,0],[12252,12253,14766,0],[14766,12504,14765,0],[14765,12252,14766,0],[12250,12249,14767,0],[12250,14767,14768,0],[12250,14768,42504,0],[14767,12249,14769,0],[14770,12122,14769,0],[12123,12248,12125,0],[14777,14772,14778,0],[14778,14772,12246,0],[14772,14771,12248,0],[12248,14771,12125,0],[12124,12125,14775,0],[12124,14775,14785,0],[12124,14785,14773,0],[12125,14771,14775,0],[14777,14778,46852,0],[14772,14777,14771,0],[14777,14776,14775,0],[14777,14775,14771,0],[12242,14793,14779,0],[12242,14779,12243,0],[14782,14781,46818,0],[14782,46818,14783,0],[14783,46818,14784,0],[14784,14789,14785,0],[14784,14785,14786,0],[14786,14785,14775,0],[14786,14775,14776,0],[14788,46822,14787,0],[14788,14773,14789,0],[14788,14789,46822,0],[14790,12240,14794,0],[14790,14794,14791,0],[14791,14794,14792,0],[14779,14794,46819,0],[14779,46819,14780,0],[14794,14779,14793,0],[14794,14793,14792,0],[14794,12240,12092,0],[12092,12240,12091,0],[12083,12228,14795,0],[12076,14797,42481,0],[42481,14797,14798,0],[42481,14798,42479,0],[42479,14798,12073,0],[14796,12073,46842,0],[46842,12073,46840,0],[12073,14796,42479,0],[14798,14797,12075,0],[14798,14799,12073,0],[12073,14799,12074,0],[14799,14798,42482,0],[14804,46572,46573,0],[14804,46573,46587,0],[14804,12062,46572,0],[46572,12062,14805,0],[14809,14806,14807,0],[14807,14806,12065,0],[12063,12065,14806,0],[12069,14807,12067,0],[12066,14808,46596,0],[14808,14807,12065,0],[14807,14808,12067,0],[12066,42804,14808,0],[14808,42804,12067,0],[14805,14806,14803,0],[14803,14806,14809,0],[14803,14809,14810,0],[14803,14810,14802,0],[14802,14810,14801,0],[12069,14800,14801,0],[12069,14801,14810,0],[12069,14810,14807,0],[14810,14809,14807,0],[14811,14796,14801,0],[14811,14801,14800,0],[42642,14813,12055,0],[12055,14813,14814,0],[12055,14814,46721,0],[46721,14814,14815,0],[46721,14815,46716,0],[46716,14815,14816,0],[14816,14815,14821,0],[14816,14821,14817,0],[16441,14817,14820,0],[16440,16441,14818,0],[16440,14818,14819,0],[14819,14818,12043,0],[12043,14818,12045,0],[14818,14820,12047,0],[12047,14820,12049,0],[14818,16441,14820,0],[14820,14817,12049,0],[12049,14817,14821,0],[12049,14821,12048,0],[12050,12048,14822,0],[12050,14822,12051,0],[12051,14822,12052,0],[12052,14814,14813,0],[12052,14813,12054,0],[14821,14815,12048,0],[12048,14815,14822,0],[12052,14822,14814,0],[14814,14822,14815,0],[14825,14827,14826,0],[14826,14827,14828,0],[14828,14827,14901,0],[14828,14901,14893,0],[14828,14893,14829,0],[14829,14893,14830,0],[14830,14893,16344,0],[16344,14831,14832,0],[14832,14831,14833,0],[14832,14833,14834,0],[14834,14833,14835,0],[14834,14835,16346,0],[16346,14835,14836,0],[14838,14869,14839,0],[14839,14869,46510,0],[46510,14869,14840,0],[14840,14913,16349,0],[16349,14913,14910,0],[47289,14910,14911,0],[47289,14911,14841,0],[14841,14911,14939,0],[14923,14911,46499,0],[14923,46499,47481,0],[14842,14848,14843,0],[14843,14844,47480,0],[47480,14844,16339,0],[16339,14844,14847,0],[16339,14847,14952,0],[14952,14847,14845,0],[14845,14847,14846,0],[14846,14847,14844,0],[14846,14844,14843,0],[14846,14843,14848,0],[14846,14848,15604,0],[15604,14848,15275,0],[15275,14848,46509,0],[15275,46509,15276,0],[15276,46506,14849,0],[15279,14849,15281,0],[15281,14849,14850,0],[15236,14854,14855,0],[14856,14917,14857,0],[14857,14916,14915,0],[14850,14849,46506,0],[14850,46506,14859,0],[14859,46506,14860,0],[14860,46506,14861,0],[14860,14861,47487,0],[47487,14862,14863,0],[15643,14864,14865,0],[15643,14865,15637,0],[15644,15637,14865,0],[15644,14865,14866,0],[14867,14868,14840,0],[14840,14869,14867,0],[14867,14869,14870,0],[14867,14870,14866,0],[14866,14870,14871,0],[14866,14871,14872,0],[14872,14871,14874,0],[14872,14874,14873,0],[14873,14874,46050,0],[46050,14874,14875,0],[14875,14876,14877,0],[14877,14876,46072,0],[14877,46072,46048,0],[46048,46072,14878,0],[14878,14879,46046,0],[46045,46046,46054,0],[46053,46054,14880,0],[46053,14880,14881,0],[14881,14880,46056,0],[14881,46056,14882,0],[42649,14882,14883,0],[15669,15665,14884,0],[15669,14884,12324,0],[15669,12324,12325,0],[12324,14884,14885,0],[14875,14874,14886,0],[14875,14886,14905,0],[14905,14886,14887,0],[14890,14889,46906,0],[14890,46906,14891,0],[14897,14891,14831,0],[14897,14831,14892,0],[14892,14831,14893,0],[16344,14893,14831,0],[14831,14891,14833,0],[14875,14905,14876,0],[14876,14905,14894,0],[14876,14894,46064,0],[46064,14894,14895,0],[14897,14892,46710,0],[46710,14892,14900,0],[46704,14900,14899,0],[46704,14899,14898,0],[14898,14899,46705,0],[46705,14899,14825,0],[46705,14825,14824,0],[14825,14899,14827,0],[14900,14901,14899,0],[14827,14899,14901,0],[14893,14901,14900,0],[14893,14900,14892,0],[14891,14897,14890,0],[14897,14896,14890,0],[14890,14896,14902,0],[14903,14902,14904,0],[14903,14904,14905,0],[14903,14905,14887,0],[14902,14903,14890,0],[14890,14903,14889,0],[14889,14903,14888,0],[14888,14903,14887,0],[14896,14895,14902,0],[14902,14895,14904,0],[14904,14895,14894,0],[14904,14894,14905,0],[14840,14868,14913,0],[14906,14913,14907,0],[14907,14909,14912,0],[14862,14912,14909,0],[14909,14907,14908,0],[14865,14864,14908,0],[14908,14864,14909,0],[14909,14864,14863,0],[14909,14863,14862,0],[14912,14862,46500,0],[14912,46500,46501,0],[14912,46501,14910,0],[14912,14910,14906,0],[14910,46501,14911,0],[14911,46501,46499,0],[14912,14906,14907,0],[14913,14906,14910,0],[14907,14913,14908,0],[14908,14913,14868,0],[14908,14868,14865,0],[14866,14865,14867,0],[14867,14865,14868,0],[14914,14922,14915,0],[14914,14915,14916,0],[14916,14857,14917,0],[14916,14917,14919,0],[14854,14918,14855,0],[14918,14919,14856,0],[14918,14856,14855,0],[14856,14919,14917,0],[14920,14916,14919,0],[14920,14919,14921,0],[14921,14851,14920,0],[14920,14914,14916,0],[14920,14851,14914,0],[14914,14851,46502,0],[14852,14921,14919,0],[14852,14919,14918,0],[14852,14918,14853,0],[14850,14922,14914,0],[14923,14950,14924,0],[14924,16340,14949,0],[14949,16340,14925,0],[14925,16340,14926,0],[14925,14926,14927,0],[14947,14929,14930,0],[14947,14930,14948,0],[14948,14930,47306,0],[14948,47306,14931,0],[14931,47306,47307,0],[14931,47307,14932,0],[14933,14932,47309,0],[47309,46529,14934,0],[14934,46529,46518,0],[14934,46518,46517,0],[14934,46517,14944,0],[14944,46517,14935,0],[14944,14935,14936,0],[14943,14936,14937,0],[14928,14940,14927,0],[14927,14940,14925,0],[14925,14940,14941,0],[14936,14943,14944,0],[14945,14946,14943,0],[14945,14943,14942,0],[14943,14946,14944,0],[14934,14944,47309,0],[47309,14944,14933,0],[14941,14940,14947,0],[14948,14931,14946,0],[14948,14946,14945,0],[14948,14945,14947,0],[14947,14945,14941,0],[14946,14931,14933,0],[14933,14931,14932,0],[14947,14940,14929,0],[14929,14940,14928,0],[14941,14945,14942,0],[14943,14937,14942,0],[14942,14937,14949,0],[14942,14949,14941,0],[14941,14949,14925,0],[14937,14938,14949,0],[14949,14938,14924,0],[14938,14939,14924,0],[14924,14939,14923,0],[14923,47481,47290,0],[14923,47290,14950,0],[14950,14951,14926,0],[14926,14951,16339,0],[16338,16339,14952,0],[47286,14952,15298,0],[47286,15298,14953,0],[47286,14953,14928,0],[14928,14953,14954,0],[14928,14954,47298,0],[47298,14954,14955,0],[47298,14955,15748,0],[15748,14955,14956,0],[14956,14955,14957,0],[14957,15302,14958,0],[47318,14959,14960,0],[14961,14962,16336,0],[16336,14962,14963,0],[14963,14964,14965,0],[14965,14964,46962,0],[14965,46962,14966,0],[47334,14968,47323,0],[16329,47323,14969,0],[16329,14969,16330,0],[16330,14969,14970,0],[14970,14969,47326,0],[14970,47326,14972,0],[47326,14971,14972,0],[16285,16306,14973,0],[14973,16306,16277,0],[14975,16313,14976,0],[14976,16313,16312,0],[14976,16312,14977,0],[14977,16312,14978,0],[14977,14978,47391,0],[16262,14979,16305,0],[14981,14983,14982,0],[14982,14983,14984,0],[14991,14985,14986,0],[14987,14986,14978,0],[14978,14986,47391,0],[47391,14986,14979,0],[46954,14978,16312,0],[14988,47320,14989,0],[14989,16311,46958,0],[46958,16311,46962,0],[46962,14990,14966,0],[14986,14987,14991,0],[14992,14993,14984,0],[14984,14993,15351,0],[14984,15351,14982,0],[14982,15351,15349,0],[15349,15348,16259,0],[16259,15348,47156,0],[14994,47156,14995,0],[16255,14997,14998,0],[16255,14998,14999,0],[16252,15050,15000,0],[15000,15043,15001,0],[16241,47383,47385,0],[16242,15002,15003,0],[15003,15002,15004,0],[16301,15004,16238,0],[16301,16238,16237,0],[16237,15005,15006,0],[15006,15005,15014,0],[15006,15014,15012,0],[15012,15014,15015,0],[16219,15075,15009,0],[15013,15009,15077,0],[15013,15077,15010,0],[15015,16297,15012,0],[16297,15015,15011,0],[15010,15011,15013,0],[15013,15008,16219,0],[15008,15013,16218,0],[15015,15007,15011,0],[15013,15011,16218,0],[15016,15015,16240,0],[15016,16240,15017,0],[15016,15017,47373,0],[16220,15019,16217,0],[16220,16217,16221,0],[16222,16221,16216,0],[16222,16216,15020,0],[15020,16216,16199,0],[15020,16199,16200,0],[16199,16203,47419,0],[47419,16203,15021,0],[47422,15021,47380,0],[47422,47380,15022,0],[15022,47381,15023,0],[47415,15023,47377,0],[15024,16198,15025,0],[15026,15027,15052,0],[15052,15027,15028,0],[15028,15027,15029,0],[15029,16213,47360,0],[47360,16213,15030,0],[47360,15030,47361,0],[47361,15030,15031,0],[15031,16211,15032,0],[15031,15032,15033,0],[15031,15033,47386,0],[15031,47386,47361,0],[47361,47386,15034,0],[15035,47384,47368,0],[47368,47384,15036,0],[47368,15036,47367,0],[47367,15036,47112,0],[47111,15037,47082,0],[47082,15037,47081,0],[47081,15037,15038,0],[15038,15039,47122,0],[47122,15039,15040,0],[15040,15039,15041,0],[15041,15047,47128,0],[47128,15047,14998,0],[47128,14998,14997,0],[15046,15037,47113,0],[15046,47113,15048,0],[15048,47115,15049,0],[15001,15043,15044,0],[47384,15045,15036,0],[15001,15044,16241,0],[16241,15044,47383,0],[15044,47384,47383,0],[15037,15046,15038,0],[15038,15046,15039,0],[15039,15046,15047,0],[15039,15047,15041,0],[15047,15048,14998,0],[15048,15049,14998,0],[14998,15049,14999,0],[15050,15043,15000,0],[15043,15050,15044,0],[15050,15042,15044,0],[15042,15050,14999,0],[15047,15046,15048,0],[15029,47360,47359,0],[15029,47359,15028,0],[15028,15051,15052,0],[15052,15051,47364,0],[15052,47364,15053,0],[15053,47106,47358,0],[47358,47106,47107,0],[47358,47107,15054,0],[15056,15055,16195,0],[16184,16197,15058,0],[15060,15058,15059,0],[15060,15059,47444,0],[15060,47444,47445,0],[15060,47445,16190,0],[16190,47445,15061,0],[15061,47445,15062,0],[16155,15062,47408,0],[16155,47408,15063,0],[15063,47408,16144,0],[15063,16144,15064,0],[15081,15065,16157,0],[15067,15080,15068,0],[15071,15070,16127,0],[16226,15071,15078,0],[16226,15078,16131,0],[16226,16131,16229,0],[16227,15073,15074,0],[16227,15074,15075,0],[15075,15074,15009,0],[15076,15077,15009,0],[16131,15078,15079,0],[15067,15068,47435,0],[47432,15066,15067,0],[47432,15067,47435,0],[15067,15066,15065,0],[15067,15065,15080,0],[15080,15065,16145,0],[16145,15081,15064,0],[15064,16144,16143,0],[15064,16143,15082,0],[16146,15084,15570,0],[16146,15570,16147,0],[16147,15570,16100,0],[16100,15570,15085,0],[15085,15087,15086,0],[15086,15087,15088,0],[15088,15567,15089,0],[15091,15559,15092,0],[15092,15559,15093,0],[15093,15534,15502,0],[15094,15096,15502,0],[15502,15096,15093,0],[15092,15096,15095,0],[15093,15096,15092,0],[15092,15095,15091,0],[15090,15091,15095,0],[15096,15094,15097,0],[15097,15103,47452,0],[47452,15103,47148,0],[15098,47148,15099,0],[15099,15100,15101,0],[15101,47133,15098,0],[15101,15098,15099,0],[15099,47148,15103,0],[15103,15094,15102,0],[15102,15094,15505,0],[15103,15097,15094,0],[15103,15100,15099,0],[15102,15100,15103,0],[15101,15100,15104,0],[15101,47477,15493,0],[15105,15493,15432,0],[15105,15432,15106,0],[16138,15106,15438,0],[16139,15107,47458,0],[15109,47453,15110,0],[15111,15112,15113,0],[15113,15112,15115,0],[15113,15115,15114,0],[15116,15115,15447,0],[15452,15453,15117,0],[15117,15453,15118,0],[15118,15453,15454,0],[47329,15118,47330,0],[47336,16055,16056,0],[47335,47337,47334,0],[47334,47337,14967,0],[14967,47337,47333,0],[47333,47337,16057,0],[16057,16088,15121,0],[15121,16088,15122,0],[16327,15122,16325,0],[16325,15123,16324,0],[16324,15123,15124,0],[15126,47464,16035,0],[15127,16031,16317,0],[46931,15130,15131,0],[15131,16023,15132,0],[15132,16023,15134,0],[15132,15134,15133,0],[15140,16029,15136,0],[15140,15136,15137,0],[15137,15138,15139,0],[15139,46930,15133,0],[15132,15133,15131,0],[15134,15140,15139,0],[15134,15139,15133,0],[15139,15140,15137,0],[15134,15135,15140,0],[15125,15126,15127,0],[15125,15127,16317,0],[47330,15118,15141,0],[47330,15141,15119,0],[15141,15142,15143,0],[16058,15143,47160,0],[47160,15143,15142,0],[47160,15142,15144,0],[47160,15144,47159,0],[15146,15145,16044,0],[15146,16045,15147,0],[15148,15147,47462,0],[15148,47462,47050,0],[47050,47462,47047,0],[47047,47462,15149,0],[16050,15150,47463,0],[47038,15152,15153,0],[47041,15474,15473,0],[47041,15473,46994,0],[46994,15473,15154,0],[15154,15155,46989,0],[46989,15155,15156,0],[46997,15157,15158,0],[46997,15158,15704,0],[15704,15158,15159,0],[15704,15159,15160,0],[15160,15159,15472,0],[15160,15472,15161,0],[15161,15472,15466,0],[15692,15163,15164,0],[15165,15470,15166,0],[15166,15470,15167,0],[15694,15168,15169,0],[15169,15170,15696,0],[15696,15170,15697,0],[15697,15720,15171,0],[15174,15381,15173,0],[15174,15173,47199,0],[47198,47199,47215,0],[47198,47215,15175,0],[15176,15175,15178,0],[15176,15178,15177,0],[15177,15178,15220,0],[15177,15220,15179,0],[15180,15220,15219,0],[15180,15219,15221,0],[15180,15221,15181,0],[15181,15221,15182,0],[15182,15221,15183,0],[15182,15183,15674,0],[15674,15183,15184,0],[15184,42676,15672,0],[15672,42676,15671,0],[15671,42676,42670,0],[42694,42670,42683,0],[12360,15186,12361,0],[12361,15186,12357,0],[12355,47490,15187,0],[15188,46079,12363,0],[12363,46079,46482,0],[12363,46482,15670,0],[15189,46481,15190,0],[15190,46481,15624,0],[15624,46481,15611,0],[15625,15624,15613,0],[15625,15613,15191,0],[15626,15191,15192,0],[15626,15192,15627,0],[15627,15192,15193,0],[15193,15192,15194,0],[15193,15194,15195,0],[15195,15194,42657,0],[15196,15195,15198,0],[15196,15198,15197,0],[15197,15198,15199,0],[15199,15198,15200,0],[15199,15200,15201,0],[15201,15200,42660,0],[15201,42660,15202,0],[15202,42661,15203,0],[15203,42661,15204,0],[15203,15204,15205,0],[15203,15205,15206,0],[15206,15207,46488,0],[46488,15207,15208,0],[15209,46505,15210,0],[15209,15210,46490,0],[46490,15210,42701,0],[42701,15211,42697,0],[15212,42697,42698,0],[47021,42698,15213,0],[47021,15213,15225,0],[15213,15214,15224,0],[15224,15214,42699,0],[15215,42699,15217,0],[15215,15217,15216,0],[15216,42672,15184,0],[15184,42672,42676,0],[15222,15218,15219,0],[15222,15219,15220,0],[15219,15218,15221,0],[15221,15218,15183,0],[15184,15183,15216,0],[15216,15183,15218,0],[15216,15218,15215,0],[15215,15218,15222,0],[15224,42699,47217,0],[15224,47217,15223,0],[15224,15223,47006,0],[15224,47006,15225,0],[15225,47006,47004,0],[15225,47004,15226,0],[15225,15226,47021,0],[47021,15257,15227,0],[15227,15257,15228,0],[15229,15230,15231,0],[15231,15263,15232,0],[15231,15232,46493,0],[15234,15233,15239,0],[15234,15239,15235,0],[15235,15239,15236,0],[15236,14855,15237,0],[15237,14855,15238,0],[15237,15238,46489,0],[46489,15238,14856,0],[46489,14856,46485,0],[46485,14856,14857,0],[14856,15238,14855,0],[15236,15239,14854,0],[15240,15241,14853,0],[14853,14854,15240,0],[15240,14854,15239,0],[15239,15233,15242,0],[15239,15242,15240,0],[15240,15242,15272,0],[15272,15242,15265,0],[15272,15265,15317,0],[15317,15265,47248,0],[15317,47248,15316,0],[15316,47248,15243,0],[15316,15243,15315,0],[15259,15248,15391,0],[15391,15248,15249,0],[15250,15249,15270,0],[15250,15270,15386,0],[15386,15270,15267,0],[15386,15267,15251,0],[15384,15251,15252,0],[15384,15252,15253,0],[15254,15256,15255,0],[15255,15256,47005,0],[15257,15266,15228,0],[15230,15228,15258,0],[15230,15258,15268,0],[15230,15268,15262,0],[15262,15268,15269,0],[15262,15269,15261,0],[15260,15261,15259,0],[15260,15259,15246,0],[15246,15259,15247,0],[15246,15245,15260,0],[15231,15230,15262,0],[15231,15262,15263,0],[15263,15262,15261,0],[15263,15261,15264,0],[15263,15264,15232,0],[15232,15264,15265,0],[15261,15260,15264,0],[15264,15260,15245,0],[15264,15245,47249,0],[47249,15245,15244,0],[47249,15244,15243,0],[15243,15244,15315,0],[15230,15229,15228,0],[15257,47005,15256,0],[15257,15256,15266,0],[15253,15266,15254,0],[15254,15266,15256,0],[15228,15266,15271,0],[15228,15271,15258,0],[15258,15271,15267,0],[15258,15267,15268,0],[15248,15269,15249,0],[15249,15269,15270,0],[15267,15270,15268,0],[15266,15253,15271,0],[15271,15253,15252,0],[15271,15252,15267,0],[15267,15252,15251,0],[15268,15270,15269,0],[15259,15261,15248,0],[15248,15261,15269,0],[15240,15272,15241,0],[14921,15282,14851,0],[14851,15282,15283,0],[14851,15283,15286,0],[15277,15273,15292,0],[15277,15292,15605,0],[15277,15605,15603,0],[15277,15603,14849,0],[14849,15603,15274,0],[15275,15276,15274,0],[15274,15276,14849,0],[14851,15286,15280,0],[14851,15280,15278,0],[15277,15279,15273,0],[15273,15278,15280,0],[15273,15279,15278,0],[15279,15277,14849,0],[46502,15281,14850,0],[15283,15282,15318,0],[15284,15285,15282,0],[15282,15285,15318,0],[15280,15286,15320,0],[15280,15320,15273,0],[15320,47252,47259,0],[47259,47252,15287,0],[15287,47252,47278,0],[15287,47278,15288,0],[15287,15288,15289,0],[15291,15289,15290,0],[15291,15293,15601,0],[15291,15290,15293,0],[15293,15290,15294,0],[15294,47261,15608,0],[15608,47261,15295,0],[15295,15296,15297,0],[15297,15296,14845,0],[14845,15296,47267,0],[14953,15298,15299,0],[14953,15600,14954,0],[14954,15600,14955,0],[14957,15599,15302,0],[15302,15599,15301,0],[15302,15301,15304,0],[15302,15304,15303,0],[15303,15304,15305,0],[15591,15306,15307,0],[15591,15307,15597,0],[15597,15307,15588,0],[15588,15307,15308,0],[47484,15311,47132,0],[47132,15311,15312,0],[15369,15312,15313,0],[15369,15313,15314,0],[15395,15314,15246,0],[15395,15246,15247,0],[15246,15314,15245,0],[15245,15314,15313,0],[15245,15313,15244,0],[15244,15313,15315,0],[15272,15317,15284,0],[15284,15317,15316,0],[15284,15316,15321,0],[15318,47253,15319,0],[15318,15319,15283,0],[15283,15319,15286,0],[15286,15319,47258,0],[15286,47258,15320,0],[15321,15285,15284,0],[15321,47253,15285,0],[15285,47253,15318,0],[15272,15284,15241,0],[47173,47484,15323,0],[47173,15323,15322,0],[15323,15324,15322,0],[15322,15324,15325,0],[15581,15410,15327,0],[15327,15363,15586,0],[15586,15363,15583,0],[15583,15363,15328,0],[15328,15362,15337,0],[15337,15362,15338,0],[15338,15362,15329,0],[15338,15329,15360,0],[15360,15329,15330,0],[15360,15330,15331,0],[15331,47120,47153,0],[47153,47120,15332,0],[15361,15334,47155,0],[15361,47155,15335,0],[15335,15339,15336,0],[47153,15336,15337,0],[47153,15337,15338,0],[15585,15337,15339,0],[15584,47154,15340,0],[15341,15342,15344,0],[15344,15342,15343,0],[15344,15343,47297,0],[15344,47297,15345,0],[15345,15587,15340,0],[15345,15340,15341,0],[15341,15344,15345,0],[15340,47154,15346,0],[15347,15346,15348,0],[15347,15348,15350,0],[15350,15348,15349,0],[15350,15349,15351,0],[15350,15351,15352,0],[15352,15351,14993,0],[15353,46952,46942,0],[46943,15354,15355,0],[46943,15355,15356,0],[15356,15343,15342,0],[14993,15353,15352,0],[15347,15350,15358,0],[15358,15350,15357,0],[15357,15350,15352,0],[15340,15346,15341,0],[15341,15346,15347,0],[15341,15347,15358,0],[15341,15358,15342,0],[15342,15358,15359,0],[46943,46942,15354,0],[46943,15356,15359,0],[15359,15356,15342,0],[15358,15357,15359,0],[15337,15336,15339,0],[15584,15335,47154,0],[15360,15331,47153,0],[15361,15336,15333,0],[15333,15336,47153,0],[15333,47153,15332,0],[15362,15328,15363,0],[15363,15327,15364,0],[15414,15412,15365,0],[15414,15365,15573,0],[15573,15365,15366,0],[15573,15366,15367,0],[15367,15366,15368,0],[15368,15370,15369,0],[15369,15370,15312,0],[15369,15314,15394,0],[15369,15394,15368,0],[15368,15394,15371,0],[15368,15371,15367,0],[15367,15371,15396,0],[15367,15396,15574,0],[15574,15396,15397,0],[15574,15397,15575,0],[15575,15397,15372,0],[15372,15409,15513,0],[15513,15409,15511,0],[15511,15409,15373,0],[15511,15373,15387,0],[15374,15388,15408,0],[15374,15408,15375,0],[15509,15375,15382,0],[15509,15382,15376,0],[15509,15376,15422,0],[15422,15376,15377,0],[15378,15377,15403,0],[15378,15403,15379,0],[15378,15379,47000,0],[47000,15379,15380,0],[15380,15379,47003,0],[15172,15381,15174,0],[15376,15382,15407,0],[15376,15407,15402,0],[15383,15407,15404,0],[15383,15404,15384,0],[15386,15385,15250,0],[15249,15250,15373,0],[15373,15250,15405,0],[15373,15405,15387,0],[15387,15405,15388,0],[15389,15390,15391,0],[15391,15390,15392,0],[15392,15393,15259,0],[15259,15393,15247,0],[15259,15391,15392,0],[15391,15249,15389,0],[15389,15373,15409,0],[15392,15390,15398,0],[15392,15398,15393,0],[15393,15398,15394,0],[15393,15394,15395,0],[15395,15394,15314,0],[15395,15247,15393,0],[15371,15394,15396,0],[15394,15398,15396,0],[15396,15398,15397,0],[15397,15398,15372,0],[15398,15390,15372,0],[15386,15251,15385,0],[15385,15251,15384,0],[15384,47015,15383,0],[15379,15401,47003,0],[15383,15399,15407,0],[15407,15399,15402,0],[15377,15376,15403,0],[15379,15403,15401,0],[15401,15403,15400,0],[15376,15402,15403,0],[15403,15402,15400,0],[15400,15402,15399,0],[15406,15404,15408,0],[15406,15408,15388,0],[15406,15388,15405,0],[15406,15405,15385,0],[15406,15385,15384,0],[15384,15404,15406,0],[15385,15405,15250,0],[15404,15407,15408,0],[15408,15407,15375,0],[15375,15407,15382,0],[15412,15364,15365,0],[15365,15364,15410,0],[15410,15581,47130,0],[47130,15581,47175,0],[47175,15581,15326,0],[47175,15326,15411,0],[47132,15324,15323,0],[15324,15411,15325,0],[15325,15411,15326,0],[15363,15364,15362,0],[15362,15364,15412,0],[15362,15412,15413,0],[15362,15413,15329,0],[15414,15576,15519,0],[15519,15576,15415,0],[15531,15417,15514,0],[15531,15514,15418,0],[15418,15514,15512,0],[15418,15512,15517,0],[15419,15517,15420,0],[15419,15420,15526,0],[15421,15526,15420,0],[15421,15420,15375,0],[15421,15375,15509,0],[15508,15422,15510,0],[15508,15510,15471,0],[15471,15423,15508,0],[15508,15423,15424,0],[47073,15424,15425,0],[47074,15425,15506,0],[47074,15506,15426,0],[15572,15426,15427,0],[15498,15428,15429,0],[15429,15424,15486,0],[15494,15486,15485,0],[15490,15485,15476,0],[15490,15476,15491,0],[15491,15476,15477,0],[15430,15433,15488,0],[15488,15433,15455,0],[15488,15455,15431,0],[15431,15455,15432,0],[15431,15432,15493,0],[15439,15432,15456,0],[15433,47157,47066,0],[15434,47066,15435,0],[15434,15435,16047,0],[15441,15451,47454,0],[15442,47454,47458,0],[15442,47458,16138,0],[15437,16138,15438,0],[15438,15439,15443,0],[15443,15439,15487,0],[15443,15487,15440,0],[47454,15442,15441,0],[15441,15442,15437,0],[15441,15437,15436,0],[15442,16138,15437,0],[15436,15437,15443,0],[15436,15443,15440,0],[15440,15434,16047,0],[15440,16047,15436,0],[15437,15438,15443,0],[15451,15441,15444,0],[15444,16044,15450,0],[15450,16044,15445,0],[15450,15445,15446,0],[15446,16054,15449,0],[15449,16054,16052,0],[15449,16052,15448,0],[15448,16052,15447,0],[15448,15447,15115,0],[15448,47457,15449,0],[15449,47457,15446,0],[15444,15450,15451,0],[15116,15447,15452,0],[15118,16043,15141,0],[15447,16052,15453,0],[15453,15452,15447,0],[15432,15455,15456,0],[47158,15457,47157,0],[47157,15457,47063,0],[47063,15457,15458,0],[15458,15457,15150,0],[15458,15150,47060,0],[15151,15150,15457,0],[15151,15457,15463,0],[15463,15457,15459,0],[15462,15468,15459,0],[15462,15460,15461,0],[15151,15463,15464,0],[15153,15464,15465,0],[15465,47072,15466,0],[15466,47072,15700,0],[15700,47072,15467,0],[15462,15467,15468,0],[15459,15468,15463,0],[15163,15469,15164,0],[15164,15469,15165,0],[15462,15461,15163,0],[15163,15461,15469,0],[15469,15461,15483,0],[15469,15483,15165,0],[15165,15483,15482,0],[15470,15482,15471,0],[15470,15471,47002,0],[47002,15471,15510,0],[15482,15470,15165,0],[15162,15462,15163,0],[15162,15163,15692,0],[15462,15162,15467,0],[15467,15162,15700,0],[15155,15154,15473,0],[15474,15153,15465,0],[15464,15153,15152,0],[15464,15152,15151,0],[15474,15465,15473,0],[15473,15465,15466,0],[15466,15472,15473,0],[15473,15472,15155,0],[15155,15472,15158,0],[15156,15158,15157,0],[15158,15472,15159,0],[15156,15155,15158,0],[15433,15430,15479,0],[15459,15479,15460,0],[15460,15479,15478,0],[15460,15478,15461,0],[15461,15478,15475,0],[15475,15478,15476,0],[15476,15478,15477,0],[15477,15478,15479,0],[15479,15430,15477,0],[15480,15484,15481,0],[15475,15482,15483,0],[15475,15483,15461,0],[15482,15481,15471,0],[15481,15482,15480,0],[15480,15475,15507,0],[15471,15481,15423,0],[15423,15481,15484,0],[15484,15480,15507,0],[15507,15476,15485,0],[15476,15507,15475,0],[15433,15456,15455,0],[15432,15439,15106,0],[15106,15439,15438,0],[15487,15439,15456,0],[15434,15487,47066,0],[47066,15487,15433,0],[15433,15487,15456,0],[15487,15434,15440,0],[15430,15488,15477,0],[15477,15488,15489,0],[15477,15489,15491,0],[15491,15489,15490,0],[15488,15431,15489,0],[47477,15492,15493,0],[15493,15492,15431,0],[15490,15489,15496,0],[15496,15499,15494,0],[15494,15499,15495,0],[15490,15494,15485,0],[15490,15496,15494,0],[15495,15429,15494,0],[15494,15429,15486,0],[15489,15492,15496,0],[15497,15504,15503,0],[15499,15498,15495,0],[15495,15498,15429,0],[15428,15498,15501,0],[15428,15501,15427,0],[15427,15501,15502,0],[15427,15502,15534,0],[15502,15501,15500,0],[15498,15503,15501,0],[15501,15503,15500,0],[15500,15503,15504,0],[15500,15504,15505,0],[15499,15496,15503,0],[15503,15498,15499,0],[15496,15492,15497,0],[15428,15506,15429,0],[15426,15506,15427,0],[15427,15506,15428,0],[15429,15506,15425,0],[15429,15425,15424,0],[15486,15424,15423,0],[15486,15423,15484,0],[15507,15485,15486,0],[15484,15507,15486,0],[15422,15508,47073,0],[47073,15508,15424,0],[15509,15422,47073,0],[15422,15377,15510,0],[15510,15377,15378,0],[15510,15378,47002,0],[15375,15420,15374,0],[15374,15420,15518,0],[15513,15511,15512,0],[15513,15514,15515,0],[15516,15515,15416,0],[15416,15515,15521,0],[15521,15515,15417,0],[15514,15417,15515,0],[15514,15513,15512,0],[15517,15518,15420,0],[15518,15517,15511,0],[15511,15517,15512,0],[15412,15414,15413,0],[15413,15414,15519,0],[15413,15519,47150,0],[47150,15519,15415,0],[47150,15415,15520,0],[15520,15415,15416,0],[15416,15521,47152,0],[47152,15521,15522,0],[15522,15521,15532,0],[15523,15522,15531,0],[15523,15531,47075,0],[47075,15531,15529,0],[47075,15529,15524,0],[15525,15524,15530,0],[15525,15530,15528,0],[15525,15528,15572,0],[15572,15427,15534,0],[15426,15572,15419,0],[15426,15419,15527,0],[15527,15419,15526,0],[15527,15526,15421,0],[15527,15421,15509,0],[15529,15530,15524,0],[15528,15419,15572,0],[15419,15528,15517,0],[15517,15528,15530,0],[15517,15530,15418,0],[15418,15530,15529,0],[15418,15529,15531,0],[15532,15531,15522,0],[15531,15532,15417,0],[15417,15532,15521,0],[15426,15527,47074,0],[15525,15572,47094,0],[47094,15572,15533,0],[15534,15093,15535,0],[15535,15093,15559,0],[15535,15559,15536,0],[47088,47090,15537,0],[47088,15537,15538,0],[15540,15539,15550,0],[15540,15550,15541,0],[15541,15550,15549,0],[15541,15549,15542,0],[15542,15571,15543,0],[47098,15543,15544,0],[47110,15544,15545,0],[15059,15058,15548,0],[15059,15548,47444,0],[15058,15547,15548,0],[15549,15548,15542,0],[47408,15551,15552,0],[15553,15552,15555,0],[15555,15564,15566,0],[15555,15566,15554,0],[15554,15566,15084,0],[15567,15568,47144,0],[15567,47144,15089,0],[15089,47144,15562,0],[15089,15562,15090,0],[15559,15562,15536,0],[15536,15560,15561,0],[15561,15560,47478,0],[15561,47478,15537,0],[15538,15537,15556,0],[15538,15556,15539,0],[15561,15537,47090,0],[15536,15562,15560,0],[15090,15562,15091,0],[15091,15562,15559,0],[15563,15567,15564,0],[15563,15564,15569,0],[15569,15564,15565,0],[15565,15564,15555,0],[15565,15555,15552,0],[15570,15084,15566,0],[15558,15568,15569,0],[15569,15565,15552,0],[15552,15551,15569,0],[15558,15569,47478,0],[47478,15569,15557,0],[15557,15569,15551,0],[15557,15551,47409,0],[15556,15557,47409,0],[15556,47409,15550,0],[15568,15563,15569,0],[15563,15568,15567,0],[15567,15088,15087,0],[15567,15087,15564,0],[15564,15087,15085,0],[15564,15085,15566,0],[15566,15085,15570,0],[15542,15548,15571,0],[15543,15571,15544,0],[15544,15571,15546,0],[15544,15546,15545,0],[15571,15548,15546,0],[15534,15533,15572,0],[15573,15367,15574,0],[15515,15575,15513,0],[15515,15516,15575,0],[15575,15516,15577,0],[15575,15577,15574,0],[15574,15577,15576,0],[15574,15576,15573,0],[15573,15576,15414,0],[15415,15576,15577,0],[15415,15577,15416,0],[15416,15577,15516,0],[15575,15372,15513,0],[15374,15518,15388,0],[15388,15518,15387,0],[15387,15518,15511,0],[15310,15322,15578,0],[15578,15325,15579,0],[15579,15587,15589,0],[15589,15587,15345,0],[15587,15579,15580,0],[15580,15326,15581,0],[15326,15580,15325,0],[15325,15580,15579,0],[15582,15586,15583,0],[15339,15583,15585,0],[15337,15585,15328,0],[15328,15585,15583,0],[15339,15335,15584,0],[15327,15586,15580,0],[15580,15586,15587,0],[15586,15582,15587,0],[15587,15582,15340,0],[15340,15582,15584,0],[15339,15584,15583,0],[15582,15583,15584,0],[15579,15309,47279,0],[15309,15589,15588,0],[15345,47297,15589,0],[15589,47297,15590,0],[47296,47293,15306,0],[15306,47293,47292,0],[15306,15591,47296,0],[47296,15591,15590,0],[15590,15591,15597,0],[47273,47292,47291,0],[47273,47291,15305,0],[47291,15592,46938,0],[46938,15592,15593,0],[15593,15592,46940,0],[15593,46940,46937,0],[46937,46940,46961,0],[46937,46961,46935,0],[46935,46961,46934,0],[46934,46961,15595,0],[46934,15595,15594,0],[15594,15595,15596,0],[15594,15596,14963,0],[14963,14962,15594,0],[15594,14961,46934,0],[46934,14961,14960,0],[46934,14960,14959,0],[14961,15594,14962,0],[47291,46938,15305,0],[15589,15590,15588,0],[15588,15590,15597,0],[15308,15309,15588,0],[15579,47279,15578,0],[15578,47279,15310,0],[15578,15322,15325,0],[14958,15302,46936,0],[14958,46936,46921,0],[46921,46936,46933,0],[14955,15300,14957,0],[15600,14953,15299,0],[15600,15299,15300,0],[15300,15299,15598,0],[15300,15598,15599,0],[15300,15599,14957,0],[14955,15600,15300,0],[15293,15294,15601,0],[15601,15294,15602,0],[15603,15602,15607,0],[14846,15609,15297,0],[14846,15297,14845,0],[14845,47267,15298,0],[14845,15298,14952,0],[15604,15275,15603,0],[15603,15275,15274,0],[15603,15605,15606,0],[15606,15605,15292,0],[15603,15606,15602,0],[15602,15606,15601,0],[15603,15607,15604,0],[15604,15607,14846,0],[14846,15607,15609,0],[15607,15602,15608,0],[15608,15602,15294,0],[15608,15295,15609,0],[15609,15295,15297,0],[15608,15609,15607,0],[15289,15291,15287,0],[14921,14852,15282,0],[15282,14853,15241,0],[14853,15282,14852,0],[15213,15224,15225,0],[15222,15220,15610,0],[15610,15220,15178,0],[42697,15212,42701,0],[42701,15212,47022,0],[42701,47022,46490,0],[15611,15612,15613,0],[15191,15613,42650,0],[15191,42650,15192,0],[15613,15624,15611,0],[12363,15670,15614,0],[12341,12342,15615,0],[12341,15615,15622,0],[15622,15615,12334,0],[15617,15616,15624,0],[15617,15624,15618,0],[15619,15657,15620,0],[15620,12332,15619,0],[15619,12332,15621,0],[15616,15617,12333,0],[12333,15617,15621,0],[15621,15617,15618,0],[15621,15618,15619,0],[12340,12341,15622,0],[15622,12334,12373,0],[12335,15622,12373,0],[15614,15670,12342,0],[15670,15189,15623,0],[15623,15189,15190,0],[15618,15624,15625,0],[15618,15625,15619,0],[15619,15625,15626,0],[15619,15626,15628,0],[15628,15626,15627,0],[15628,15627,15630,0],[15628,15630,15629,0],[15629,15630,15631,0],[15631,15630,15633,0],[15631,15633,15632,0],[15632,15633,15634,0],[15632,15634,14873,0],[15632,14873,46050,0],[14873,15634,15635,0],[14873,15635,14872,0],[14872,15635,15645,0],[15645,15636,15197,0],[15637,15197,15638,0],[15638,15197,15199,0],[15638,15199,15201,0],[15638,15201,15639,0],[15639,15640,15642,0],[15642,15640,46497,0],[15642,46497,15641,0],[15641,46497,14860,0],[15641,14860,47487,0],[47487,14863,15641,0],[15641,14863,15642,0],[15643,15642,14864,0],[14864,15642,14863,0],[15639,15642,15638,0],[15638,15643,15637,0],[15637,15644,15197,0],[15197,15644,15645,0],[15644,14866,14872,0],[15644,14872,15645,0],[46484,15201,46486,0],[46486,15202,46487,0],[46487,15202,15203,0],[46487,15203,15206,0],[15196,15197,15636,0],[15196,15636,15645,0],[15196,15645,15646,0],[15196,15646,15647,0],[15647,15646,15633,0],[15647,15633,15648,0],[15648,15633,15630,0],[15648,15630,15627,0],[15191,15626,15625,0],[15627,15193,15648,0],[15648,15193,15647,0],[15193,15195,15647,0],[15647,15195,15196,0],[15633,15646,15634,0],[15634,15646,15635,0],[15635,15646,15645,0],[15649,15632,15650,0],[15649,15650,15651,0],[15629,15654,15655,0],[15655,15654,15651,0],[15651,15652,15655,0],[15655,15652,15653,0],[15653,15629,15655,0],[15629,15631,15654,0],[15654,15631,15656,0],[15649,15651,15656,0],[15656,15651,15654,0],[15649,15656,15632,0],[15632,15656,15631,0],[15629,15653,15628,0],[15628,15653,15657,0],[15628,15657,15619,0],[15620,15657,15658,0],[15657,15653,15658,0],[15658,15653,12330,0],[12330,15653,15659,0],[15659,15652,15668,0],[15668,15652,15660,0],[15668,15660,15666,0],[15666,15660,46044,0],[15666,46044,15661,0],[15665,42649,14883,0],[15665,15663,42649,0],[42649,46052,14882,0],[14882,46052,15664,0],[14882,15664,14881,0],[15665,15666,15661,0],[15661,15662,15665,0],[15665,15662,15663,0],[15659,15653,15652,0],[12330,15659,15667,0],[12330,15667,12329,0],[12326,12327,15667,0],[15667,12327,12328,0],[15667,12328,12329,0],[15659,15668,15667,0],[15667,15668,12326,0],[12326,15666,15669,0],[15669,15666,15665,0],[15666,12326,15668,0],[15624,15616,15190,0],[15190,15616,15615,0],[15190,15615,15623,0],[15623,15615,12342,0],[12342,15670,15623,0],[12363,15614,12364,0],[12342,12364,15614,0],[15188,12362,15187,0],[15187,12362,12355,0],[42670,42694,15671,0],[12360,15674,15673,0],[15673,15674,15672,0],[15672,15674,15184,0],[12360,47223,15674,0],[15674,47223,15182,0],[15180,47241,15675,0],[15177,15179,46184,0],[15177,46184,47183,0],[15177,47183,47195,0],[15676,15176,15177,0],[47195,15676,15177,0],[15179,15220,15675,0],[15675,15220,15180,0],[15174,15698,15172,0],[15682,47207,46974,0],[15682,46974,15681,0],[15681,46974,15677,0],[15718,15679,47211,0],[15718,47211,15678,0],[15678,47211,15680,0],[15681,15684,15682,0],[15677,15680,15681,0],[15681,15680,15685,0],[15684,47205,15683,0],[15684,15683,15682,0],[47205,15684,15698,0],[15698,15684,15719,0],[15719,15684,15685,0],[15719,15685,15686,0],[15686,15703,15687,0],[15689,15688,15699,0],[15689,15691,15690,0],[15690,15691,15693,0],[15693,15691,15692,0],[15692,15691,15702,0],[15692,15164,15693,0],[15693,15164,15168,0],[15168,15166,15167,0],[15165,15166,15164,0],[15164,15166,15168,0],[15168,15694,15693,0],[15694,15169,15690,0],[15690,15169,15695,0],[15687,15688,15695,0],[15695,15688,15689,0],[15695,15689,15690,0],[15694,15690,15693,0],[15686,15687,15696,0],[15696,15687,15695,0],[15696,15697,15686,0],[15686,15697,15171,0],[15686,15171,15719,0],[15719,15172,15698,0],[15684,15681,15685,0],[15685,15680,15686,0],[15686,15680,15703,0],[15699,15161,15701,0],[15701,15161,15466,0],[15701,15466,15700,0],[15699,15701,15702,0],[15699,15702,15691,0],[15702,15700,15162,0],[15162,15692,15702,0],[15700,15702,15701,0],[15699,15691,15689,0],[15160,15161,15699,0],[15160,15699,15717,0],[15703,15688,15687,0],[15703,47211,15717,0],[15717,47211,15679,0],[15160,15679,15704,0],[15705,15706,15707,0],[15707,15706,46972,0],[15707,46972,15708,0],[15707,15708,15709,0],[15709,15710,15715,0],[15713,15711,46996,0],[46996,15711,15712,0],[15712,46989,15157,0],[15713,46995,15716,0],[15716,46995,46998,0],[46998,46995,15714,0],[46998,15714,15157,0],[46998,15157,46997,0],[15157,15714,15712,0],[15710,15713,15715,0],[15713,15716,15715,0],[15715,15716,15709,0],[15709,15716,15707,0],[15707,15716,15705,0],[15679,15160,15717,0],[15717,15688,15703,0],[15680,47211,15703,0],[15677,15678,15680,0],[15172,15719,15381,0],[15720,15719,15171,0],[15381,15720,15380,0],[15720,15381,15719,0],[15721,15170,15169,0],[15170,15721,15697,0],[15697,15721,15720,0],[15380,15721,47000,0],[15721,15380,15720,0],[46994,47039,47040,0],[47045,47039,46992,0],[47045,46992,47049,0],[47049,46992,15722,0],[47049,15722,47024,0],[47024,15722,15723,0],[15723,46990,15724,0],[15724,15725,15843,0],[15726,15843,15845,0],[15726,15841,15727,0],[16074,15729,15730,0],[16070,15730,15731,0],[15731,16009,16010,0],[16020,15733,15734,0],[15735,15795,16026,0],[16026,15795,15736,0],[15736,15795,15802,0],[16028,46545,16027,0],[46928,15738,46550,0],[46928,46550,15739,0],[15742,15741,15743,0],[15743,15741,15745,0],[15743,15745,15744,0],[15744,15745,15750,0],[15744,15750,15746,0],[15746,15747,15748,0],[15746,15748,15749,0],[15749,15748,14956,0],[14956,14957,46921,0],[46921,14957,14958,0],[46932,15750,15751,0],[46932,15751,47305,0],[47305,15751,15752,0],[47305,15752,47302,0],[47302,15752,15753,0],[47302,15753,47303,0],[47303,46546,15754,0],[15754,46546,46547,0],[46543,46536,46535,0],[46535,46536,15755,0],[15755,46536,15756,0],[15755,15756,15790,0],[15790,15756,46551,0],[15790,46551,15757,0],[15758,15757,15797,0],[15758,15797,15798,0],[15758,15798,15759,0],[15759,15798,15990,0],[15758,15759,15801,0],[15777,15778,46518,0],[46518,15778,15779,0],[14935,15763,15764,0],[14935,15764,46516,0],[46516,15764,15765,0],[15765,15764,46523,0],[46523,46694,46695,0],[46523,46695,16342,0],[16342,46695,15766,0],[16342,15766,46524,0],[46524,15766,15767,0],[15767,15766,46697,0],[15768,15784,15769,0],[15769,15784,15770,0],[15771,15770,15772,0],[15772,15770,15773,0],[15773,15781,15774,0],[15774,15778,15776,0],[15966,15776,15775,0],[15775,15762,15966,0],[15776,46910,15774,0],[46910,15773,15774,0],[15775,15776,15777,0],[15777,15776,15778,0],[15778,15774,15779,0],[15780,15781,46693,0],[46693,15781,15782,0],[46697,15782,15783,0],[15774,15781,15780,0],[15774,15780,15779,0],[15781,15773,15782,0],[15782,15784,15938,0],[15938,15783,15782,0],[15782,15773,15770,0],[15782,15770,15784,0],[46696,46694,15764,0],[15762,15785,15786,0],[15760,15786,15787,0],[15787,15788,15791,0],[15791,15788,15755,0],[15801,15789,15758,0],[15801,15787,15789,0],[15789,15787,15790,0],[15791,15790,15787,0],[15755,15790,15791,0],[15789,15790,15757,0],[15789,15757,15758,0],[15787,15786,15788,0],[15760,15761,15786,0],[15786,15761,15762,0],[15757,46551,15803,0],[15803,46551,15792,0],[15804,46553,16005,0],[16005,46553,15793,0],[15793,46553,16004,0],[16004,46553,15794,0],[16004,15794,15734,0],[15734,15794,15795,0],[15802,15794,46553,0],[15802,15795,15794,0],[15796,15797,16002,0],[16002,15797,16005,0],[15797,15804,16005,0],[15804,15797,15803,0],[15757,15803,15797,0],[15797,15796,15798,0],[15759,15990,15800,0],[15799,15971,15972,0],[15760,15972,46672,0],[46672,15761,15760,0],[15799,15760,15800,0],[15799,15972,15760,0],[15760,15787,15801,0],[15801,15759,15800,0],[15800,15760,15801,0],[15745,15741,15750,0],[15803,15802,15804,0],[15795,15735,15734,0],[15733,15732,16007,0],[16007,15732,15980,0],[15980,15732,16041,0],[15980,16041,16040,0],[15980,16040,46554,0],[15979,15805,15729,0],[15979,15729,15974,0],[15974,15729,15728,0],[15974,15728,15842,0],[15974,15842,15806,0],[15807,15808,15851,0],[15851,15808,15848,0],[46130,15848,15847,0],[46130,15847,46126,0],[46126,15847,15838,0],[46126,15838,46128,0],[46128,15838,15809,0],[15810,46150,47500,0],[15809,47500,15811,0],[15811,47500,15812,0],[15813,15812,46153,0],[15813,46153,15814,0],[46125,46128,15811,0],[15811,46128,15809,0],[15814,15815,15813,0],[15813,15811,15812,0],[15813,15815,46125,0],[15813,46125,15811,0],[15810,47500,15809,0],[15810,15809,46613,0],[46612,15837,15817,0],[15817,15837,15839,0],[15817,15839,15818,0],[15817,15818,46618,0],[46618,46971,15819,0],[15819,47502,15820,0],[46975,15822,46615,0],[46615,15822,46609,0],[46609,15822,15823,0],[15823,46976,46606,0],[46606,46976,15824,0],[15824,46976,15826,0],[15826,46976,15825,0],[15826,15825,46984,0],[15826,46984,15827,0],[15827,46983,15828,0],[15829,15830,15831,0],[15831,15830,15832,0],[15831,15832,15833,0],[15833,15832,15834,0],[15833,15834,15836,0],[15836,15834,15835,0],[15831,15833,15828,0],[15831,15828,46191,0],[46191,15829,15831,0],[15828,15833,15827,0],[15827,15833,15836,0],[15827,15836,15824,0],[15827,15824,15826,0],[15816,46613,15837,0],[15816,15837,46612,0],[46613,15838,15837,0],[15837,15838,15847,0],[15837,15850,15839,0],[15818,15839,15840,0],[15846,15849,46968,0],[15841,15806,15842,0],[16074,15728,15729,0],[15728,15727,15842,0],[15842,15727,15841,0],[15841,15726,15845,0],[47475,15843,46991,0],[15844,46990,15722,0],[15722,46990,15723,0],[46991,15843,15725,0],[15841,15845,15846,0],[15846,47475,46969,0],[15849,46969,15840,0],[15849,15846,46969,0],[15841,15846,46968,0],[15837,15847,15850,0],[15847,15848,15850,0],[15850,15848,15849,0],[15849,15848,15808,0],[15808,46968,15849,0],[46968,15808,15807,0],[15839,15850,15840,0],[15840,15850,15849,0],[15851,15848,15852,0],[47473,46648,15853,0],[15853,46648,15978,0],[15978,46648,15854,0],[15978,15854,15999,0],[15999,46650,15855,0],[15855,46650,15856,0],[15856,46650,15857,0],[15857,46645,15856,0],[15856,46645,15858,0],[15858,15859,46667,0],[15996,46667,46967,0],[15993,46967,15860,0],[15860,46660,15861,0],[46670,15861,15970,0],[15970,15861,15862,0],[15967,15956,15864,0],[15864,46909,15963,0],[15962,15958,15769,0],[15962,15769,15771,0],[15962,15771,15772,0],[15962,15772,15968,0],[15770,15771,15769,0],[15865,15959,46685,0],[46685,15959,15866,0],[46685,15866,15867,0],[46682,46681,15868,0],[15870,15868,15869,0],[15870,15869,15871,0],[15873,15872,15952,0],[16374,15907,16373,0],[15878,15877,15886,0],[15879,15880,15881,0],[15881,15880,15882,0],[15882,15883,15922,0],[16384,15922,15924,0],[15878,15886,15879,0],[15879,15886,15884,0],[15885,15884,15886,0],[15908,15909,15887,0],[15904,15887,15909,0],[15904,15909,15888,0],[15888,15909,16376,0],[16376,15877,15876,0],[16376,15875,15888,0],[15889,46686,15891,0],[15891,46686,15890,0],[15889,15891,15903,0],[15903,15891,15893,0],[15892,15893,15906,0],[15892,15906,15897,0],[15897,15952,15894,0],[15894,15951,15869,0],[15894,15869,15895,0],[15894,15895,15896,0],[15896,15895,46323,0],[15894,15896,15897,0],[15892,15897,15898,0],[15892,15898,15899,0],[15899,46326,15900,0],[15900,46326,46291,0],[46282,46284,15904,0],[15893,15905,15903,0],[15903,15900,15901,0],[15889,15903,15902,0],[15889,15902,15904,0],[15903,15901,15902,0],[15901,46282,15902,0],[15902,46282,15904,0],[15904,46284,15887,0],[15905,15893,15892,0],[15905,15892,15899,0],[15905,15899,15900,0],[15900,15903,15905,0],[15906,15874,15873,0],[15874,15890,16374,0],[16374,15890,15907,0],[15874,15906,15890,0],[15907,46686,15888,0],[15888,46686,15904,0],[15907,15888,15875,0],[15952,15906,15873,0],[15906,15952,15897,0],[15893,15891,15906,0],[15906,15891,15890,0],[15890,46686,15907,0],[16376,15909,15877,0],[15909,15908,15877,0],[15877,15908,15886,0],[15879,15884,15880,0],[15883,15910,15922,0],[15922,15910,15923,0],[15914,46742,46287,0],[15914,46287,15912,0],[12032,46758,46765,0],[12032,46765,12031,0],[46758,12034,15912,0],[15912,12034,15913,0],[15914,15913,15915,0],[15913,15914,15912,0],[15913,12035,15915,0],[46746,15915,15920,0],[15917,15918,15924,0],[15924,15918,12038,0],[12037,15919,15918,0],[12034,16534,15913,0],[15913,16534,12035,0],[16535,12036,15915,0],[15915,12036,15920,0],[15916,15920,15921,0],[15916,15921,12037,0],[15917,15916,15918,0],[15921,15920,16451,0],[16451,15920,12036,0],[15880,15884,15883,0],[15922,15923,46745,0],[15916,15917,46745,0],[46745,15917,15924,0],[46745,15924,15922,0],[15883,15882,15880,0],[15873,15925,15872,0],[15872,15925,15871,0],[15927,16375,15928,0],[15928,16375,46689,0],[15929,46689,46691,0],[15929,46691,16387,0],[15929,16387,16388,0],[15932,46526,15933,0],[15933,46526,46528,0],[15933,46528,15934,0],[15934,46528,15767,0],[15934,15767,46697,0],[15934,46697,15949,0],[15934,15949,15933,0],[15933,15949,15935,0],[15935,15947,15936,0],[15936,15947,15929,0],[15929,15947,46689,0],[15928,15937,15942,0],[15942,15937,15946,0],[15942,15946,15939,0],[15939,15948,15938,0],[46689,15937,15928,0],[15941,15940,15768,0],[15784,15768,15938,0],[15939,15940,15942,0],[15938,15768,15940,0],[15938,15940,15939,0],[15768,15865,15941,0],[15928,15942,15927,0],[15927,15942,15926,0],[15870,46684,15868,0],[15868,46684,46682,0],[15870,15926,15942,0],[15942,15940,15870,0],[15933,15935,15943,0],[15933,15943,15932,0],[15932,15943,15944,0],[15932,15944,15931,0],[15931,15944,15930,0],[15930,15944,15945,0],[15930,15945,16388,0],[16388,15945,15936,0],[16388,15936,15929,0],[15936,15945,15935,0],[15944,15943,15945,0],[15945,15943,15935,0],[15946,15948,15939,0],[15946,15937,15947,0],[15947,15937,46689,0],[15948,15949,15783,0],[15783,15938,15948,0],[15949,15948,15935,0],[15935,15948,15947,0],[15946,15947,15948,0],[15926,15871,15925,0],[15926,15925,15950,0],[15950,15925,15873,0],[15950,15873,15874,0],[15926,15950,15927,0],[15927,15950,16375,0],[15871,15869,15951,0],[15871,15951,15872,0],[15952,15872,15894,0],[15894,15872,15951,0],[46680,15957,15953,0],[46115,46116,46907,0],[15955,46908,46664,0],[46664,46908,15956,0],[15867,15866,46680,0],[46680,15866,15957,0],[15954,15957,15961,0],[15954,15953,15957,0],[46279,15960,46116,0],[46116,15960,46907,0],[15963,46909,15958,0],[15958,46909,15959,0],[15959,46909,15960,0],[46909,46907,15960,0],[46279,15961,15960,0],[15769,15958,15865,0],[15865,15958,15959,0],[15957,15866,15961,0],[15960,15961,15959,0],[15959,15961,15866,0],[15769,15865,15768,0],[15958,15962,15963,0],[15863,15956,15862,0],[15862,15967,15970,0],[46671,15970,15964,0],[15964,15969,15965,0],[15966,15965,15776,0],[15966,15762,46672,0],[46672,15762,15761,0],[15862,15956,15967,0],[15970,15967,15969,0],[15965,15969,15968,0],[15967,15864,15969,0],[15969,15864,15963,0],[15969,15963,15968,0],[15968,15963,15962,0],[15969,15964,15970,0],[15861,46670,15860,0],[15971,46671,15972,0],[15972,46671,15964,0],[15973,15856,15858,0],[46555,47471,46556,0],[46556,47471,15975,0],[46556,15975,15976,0],[15988,15975,47471,0],[15988,47471,47472,0],[15988,47472,15987,0],[15987,47472,15978,0],[15987,15978,15977,0],[16000,15978,15999,0],[15805,15979,16040,0],[16040,15979,46554,0],[15980,15981,16007,0],[16007,15981,15982,0],[15982,15981,15983,0],[15984,15986,15796,0],[15985,15986,15987,0],[15988,16003,15975,0],[15975,16003,15976,0],[15985,15989,15990,0],[15989,46911,15991,0],[15860,15971,15992,0],[15860,15992,15993,0],[15995,15993,15997,0],[15994,15973,15995,0],[15995,15973,15996,0],[46667,15996,15858,0],[15858,15996,15973,0],[15992,15971,15991,0],[15992,15991,46911,0],[15992,46911,15997,0],[15998,16000,15999,0],[16000,16001,15978,0],[15978,16001,15977,0],[16000,15998,16001,0],[46911,16001,15997,0],[15997,16001,15998,0],[15977,15985,15987,0],[15985,15977,15989,0],[15989,15977,16001,0],[15989,16001,46911,0],[15991,15971,15799,0],[15799,15800,15991,0],[15991,15800,15989,0],[15985,15798,15796,0],[15796,16002,15984,0],[15984,16002,16006,0],[15984,16006,15983,0],[15985,15796,15986,0],[16003,15988,15987,0],[16003,15987,15986,0],[15983,15976,16003,0],[15983,16003,15984,0],[15984,16003,15986,0],[15983,15981,15976,0],[15733,16007,16004,0],[16004,15734,15733,0],[16004,16006,15793,0],[15793,16006,16005,0],[16005,16006,16002,0],[15983,16006,15982,0],[15982,16006,16007,0],[16007,16006,16004,0],[16041,15732,16008,0],[16041,16008,16009,0],[16011,16039,16013,0],[16012,16013,16038,0],[16022,16038,16014,0],[16021,16014,16015,0],[16025,16015,47468,0],[16025,47468,16016,0],[16025,16016,16017,0],[16025,16017,16026,0],[15734,16017,16020,0],[16020,16017,16016,0],[16020,16016,16018,0],[16018,47469,16019,0],[16019,47469,16008,0],[15732,15733,16008,0],[16008,15733,16020,0],[16008,16020,16019,0],[16019,16020,16018,0],[16025,16024,16021,0],[16014,16021,16022,0],[15129,16022,15130,0],[16024,16022,16021,0],[16023,15131,16024,0],[16024,15131,15130,0],[16024,15130,16022,0],[16024,16025,16023,0],[16023,16025,16030,0],[15134,16030,15135,0],[15134,16023,16030,0],[15135,15736,16029,0],[15137,15136,16027,0],[16027,15136,16028,0],[16028,15136,16029,0],[15737,16029,15736,0],[16027,15138,15137,0],[15735,16026,16017,0],[15735,16017,15734,0],[16025,16026,16030,0],[15135,16030,15736,0],[15736,16030,16026,0],[16022,15129,16038,0],[16038,15129,15128,0],[15128,16031,16012,0],[16012,16031,16032,0],[16032,15127,15126,0],[15127,16032,16031,0],[16038,15128,16012,0],[16034,16033,16035,0],[16034,16035,16036,0],[16036,16035,47464,0],[16034,16011,16033,0],[16033,16011,16013,0],[16033,16013,16012,0],[16011,16034,16037,0],[47466,16037,47071,0],[16010,16009,16008,0],[15126,16035,16032,0],[16012,16032,16033,0],[16033,16032,16035,0],[16021,16015,16025,0],[16038,16013,16014,0],[16014,16013,16039,0],[16014,16039,16015,0],[16009,16040,16041,0],[47159,15144,16042,0],[16042,15144,16053,0],[16053,15144,16043,0],[16044,16045,15146,0],[16047,16048,15436,0],[15436,16048,15441,0],[16048,16046,15441,0],[15441,16046,16045,0],[15441,16045,15444,0],[15444,16045,16044,0],[15147,16045,16049,0],[15147,16049,47068,0],[15147,47068,47462,0],[47462,47068,47061,0],[16050,47463,47061,0],[47463,15149,47061,0],[15149,47462,47061,0],[16044,16051,15445,0],[15445,16051,16054,0],[16044,15145,16051,0],[16051,15145,16042,0],[16053,16054,16051,0],[16053,16051,16042,0],[15445,16054,15446,0],[16043,15144,15141,0],[15141,15144,15142,0],[16053,16043,16052,0],[16053,16052,16054,0],[16043,15454,16052,0],[15453,16052,15454,0],[15119,15141,16055,0],[15120,16056,16082,0],[16082,16089,47338,0],[47338,16089,16057,0],[15141,15143,16055,0],[16055,15143,16058,0],[16055,16058,16056,0],[16056,16060,16059,0],[16059,16060,16083,0],[16083,16060,16078,0],[16078,16060,16061,0],[16077,16062,47167,0],[16077,47167,47054,0],[16064,47054,16063,0],[16064,16063,16065,0],[16065,16063,16066,0],[16066,47053,46916,0],[47069,16067,47056,0],[47069,47056,16068,0],[16069,16071,16070,0],[15730,16070,16071,0],[15730,16071,16073,0],[16073,47026,16072,0],[16072,15724,15843,0],[16074,15730,16073,0],[15728,16074,15727,0],[16074,16073,15727,0],[15727,16073,16072,0],[16072,15726,15727,0],[15726,16072,15843,0],[16070,47070,16069,0],[16069,47070,16068,0],[47163,47162,47459,0],[16075,15145,15146,0],[16076,16075,15146,0],[15145,16075,16042,0],[16042,16075,47159,0],[16079,16078,16064,0],[16080,16079,16064,0],[16080,16064,16065,0],[16064,16077,47054,0],[16062,16077,16061,0],[16077,16064,16078,0],[16061,16077,16078,0],[16083,16079,16080,0],[16083,16080,16081,0],[16083,16081,16082,0],[16083,16082,16059,0],[16059,16082,16056,0],[16080,16065,16084,0],[16085,16084,47465,0],[16085,47465,15126,0],[15126,47465,47464,0],[15126,15125,16085,0],[16086,16085,16087,0],[16087,15123,15122,0],[15122,15123,16325,0],[15124,15123,16085,0],[15124,16085,15125,0],[16085,15123,16087,0],[16085,16086,16084,0],[16087,15122,16088,0],[16081,16086,16089,0],[16089,16086,16088,0],[16088,16086,16087,0],[16089,16082,16081,0],[16057,16089,16088,0],[16086,16081,16084,0],[16084,16081,16080,0],[15108,15109,15110,0],[15108,15110,16139,0],[16139,15110,16090,0],[16139,16090,16092,0],[16094,47135,16095,0],[16095,47135,16101,0],[16096,16101,16102,0],[16097,16102,16103,0],[16097,16113,47461,0],[47461,47143,16141,0],[16141,47143,16098,0],[16102,16097,16096,0],[16096,16097,16142,0],[16102,16101,47136,0],[16102,47136,16093,0],[16102,16093,16103,0],[16104,16103,16105,0],[16104,16105,16137,0],[16115,16106,16272,0],[16115,16272,16107,0],[16107,16108,16109,0],[16110,47395,16111,0],[15073,16112,15074,0],[16103,16104,16097,0],[16097,16104,16113,0],[16113,16137,16114,0],[16114,16115,16117,0],[16117,16115,16116,0],[16116,16115,16107,0],[16114,16117,47460,0],[47460,16117,47142,0],[47142,16117,16116,0],[16116,16118,16153,0],[16153,16118,16119,0],[16120,16119,47407,0],[16120,47407,16121,0],[16126,16122,16123,0],[16152,16123,16148,0],[16128,15080,16125,0],[16145,16125,15080,0],[15079,15078,16126,0],[16129,16127,15070,0],[16129,15070,15069,0],[16128,15069,15080,0],[15069,15068,15080,0],[16130,16129,16124,0],[16129,15069,16124,0],[16124,15069,16128,0],[15071,16127,16126,0],[15071,16126,15078,0],[16126,16127,16122,0],[16123,16122,16148,0],[16148,16122,16130,0],[16130,16122,16129,0],[16129,16122,16127,0],[15079,16121,16131,0],[16229,16131,47442,0],[16121,47407,16132,0],[16131,16132,47442,0],[47442,16132,16133,0],[16134,16133,16111,0],[16111,16133,16135,0],[16111,16135,16110,0],[16135,16118,16109,0],[16109,16118,16136,0],[16133,16132,16135,0],[16131,16121,16132,0],[16114,47460,16113,0],[16113,16104,16137,0],[16114,16137,16106,0],[16105,16106,16137,0],[16114,16106,16115,0],[16092,47134,16091,0],[16091,47134,15106,0],[16091,16138,15107,0],[15106,16138,16091,0],[16091,15107,16139,0],[16091,16139,16092,0],[15502,15500,15094,0],[15085,15086,16100,0],[16140,16100,16099,0],[16140,16099,16142,0],[16147,16100,16140,0],[16147,16140,16098,0],[16098,16140,16141,0],[16142,16097,47461,0],[16142,47461,16141,0],[16142,16141,16140,0],[15554,15083,15555,0],[15082,16143,15083,0],[16143,15553,15555,0],[16143,16144,15553,0],[15553,16144,15552,0],[16143,15555,15083,0],[15064,15081,15063,0],[15081,16145,15065,0],[15064,15082,16145,0],[16145,15082,16125,0],[16128,16125,15084,0],[16128,15084,16146,0],[16146,16147,16124,0],[16148,16149,16152,0],[16152,16154,16150,0],[16150,16151,16123,0],[16151,16120,15079,0],[15079,16120,16121,0],[16151,15079,16126,0],[16151,16126,16123,0],[16150,16123,16152,0],[16148,16130,16124,0],[16124,16128,16146,0],[16120,16151,16150,0],[16120,16150,16119,0],[47450,16154,16152,0],[47450,16152,16149,0],[16150,16154,16153,0],[16119,16150,16153,0],[16147,16098,16124,0],[15083,15084,16125,0],[15083,16125,15082,0],[15084,15083,15554,0],[15062,16155,15061,0],[15061,16155,16156,0],[16156,16157,47431,0],[47431,16157,16189,0],[16189,15066,16193,0],[16193,15066,16158,0],[16158,47350,16193,0],[16193,47350,16180,0],[16178,47349,16166,0],[16178,16166,16167,0],[16169,16167,16168,0],[16169,16176,16182,0],[16182,16176,16195,0],[16195,16176,15056,0],[47351,15056,16159,0],[16160,16159,16170,0],[16160,16170,16171,0],[16160,16171,16177,0],[16160,16177,47354,0],[47354,16177,16161,0],[47424,16161,16162,0],[47448,16172,16173,0],[47448,16173,16174,0],[47448,16174,16163,0],[16164,16163,16165,0],[16166,16165,16167,0],[16169,16168,16170,0],[16177,16171,16172,0],[16168,16167,16174,0],[16174,16165,16163,0],[16174,16167,16165,0],[16165,16166,16164,0],[16173,16172,16175,0],[16168,16175,16170,0],[16168,16174,16175,0],[16175,16174,16173,0],[16172,16171,16175,0],[16175,16171,16170,0],[16176,16169,16170,0],[16176,16170,16159,0],[16159,15056,16176,0],[16162,16161,16177,0],[16177,16172,16162,0],[16167,16169,16181,0],[16167,16181,16178,0],[16179,16185,16191,0],[16191,16180,16179,0],[16178,16179,47349,0],[47349,16179,16180,0],[16181,16169,16182,0],[16183,16182,16186,0],[16183,16186,16185,0],[16183,16185,16179,0],[16183,16179,16181,0],[16178,16181,16179,0],[16186,16182,15057,0],[16186,15057,16184,0],[16184,15058,15060,0],[16187,16186,47449,0],[16192,16187,16188,0],[16188,47431,16189,0],[47431,16188,16194,0],[16186,16187,16185,0],[16185,16187,16191,0],[16193,16191,16192,0],[16193,16192,16188,0],[16193,16188,16189,0],[16193,16180,16191,0],[16191,16187,16192,0],[16186,16184,47449,0],[16187,47449,16194,0],[16188,16187,16194,0],[16194,47449,16190,0],[16190,47449,15060,0],[15061,16156,16190,0],[16182,16195,15057,0],[16195,15055,16196,0],[16196,15054,47107,0],[16196,15055,15054,0],[15057,16195,16197,0],[15057,16197,16184,0],[16195,16196,16197,0],[47358,15052,15053,0],[16198,16214,15027,0],[15027,16214,15029,0],[15027,15026,16198,0],[16198,15026,15025,0],[47380,47379,47381,0],[15023,47381,47376,0],[47381,15022,47380,0],[16200,16199,47419,0],[47426,47447,16202,0],[47426,47423,47424,0],[47426,47424,16162,0],[16203,16199,16217,0],[47440,16217,16204,0],[47440,16204,47438,0],[47439,16206,16207,0],[16208,47437,16209,0],[16209,47437,16210,0],[15032,16211,16210,0],[16211,15030,16212,0],[16212,15030,16213,0],[16213,15029,16214,0],[16213,16214,47416,0],[47416,16214,16215,0],[15030,16211,15031,0],[16199,16216,16217,0],[16217,16216,16221,0],[16217,15019,16204,0],[16204,15019,15018,0],[15016,47373,16218,0],[16218,16236,15008,0],[15008,16236,16219,0],[16219,16236,47479,0],[47441,47479,16220,0],[16222,16223,47341,0],[47341,16223,16230,0],[16224,16231,47344,0],[16228,16222,16225,0],[16226,16229,16225,0],[47443,16227,47441,0],[47441,16227,15075,0],[15073,16227,15072,0],[16221,16228,16220,0],[16225,16229,47443,0],[16228,16221,16222,0],[47434,16231,16233,0],[16232,16233,47446,0],[47446,16233,16201,0],[16201,16234,16200,0],[16200,16235,15020,0],[15020,16223,16222,0],[15020,16235,16223,0],[16223,16235,16230,0],[16230,16235,16231,0],[16201,16233,16234,0],[16233,16231,16234,0],[16234,16231,16235,0],[16230,16231,16224,0],[16218,15018,16236,0],[15019,16236,15018,0],[15018,16218,47372,0],[47372,16218,47373,0],[16220,47479,15019,0],[15019,47479,16236,0],[15015,15016,15007,0],[16238,15004,15033,0],[47386,15033,15002,0],[15004,15002,15033,0],[16237,16238,16239,0],[16239,16238,16210,0],[16239,16210,47437,0],[16210,16238,15032,0],[15032,16238,15033,0],[15005,16237,16239,0],[15014,15005,16240,0],[15014,16240,15015,0],[16240,15005,16239,0],[16240,16239,15017,0],[15017,16239,47437,0],[15001,16241,16242,0],[16242,16243,16253,0],[16253,16244,16250,0],[16250,16244,16245,0],[16245,16293,16287,0],[16247,16287,16246,0],[16247,16246,16249,0],[16249,16246,14981,0],[16249,16260,16248,0],[16249,16248,16251,0],[16249,16251,16250,0],[16250,16251,16253,0],[16250,16245,16249,0],[16260,16249,14981,0],[16287,16247,16245,0],[16245,16247,16249,0],[15001,16242,15000,0],[15000,16251,16252,0],[14999,15050,16255,0],[15000,16242,16253,0],[15000,16253,16251,0],[16251,16248,16252,0],[16255,15050,16254,0],[16254,15050,16252,0],[16241,47385,16242,0],[16256,16244,16243,0],[16256,16243,15004,0],[15004,16243,15003,0],[16257,14996,16258,0],[16257,16258,14995,0],[47387,14997,14996,0],[14996,14997,16254,0],[14996,16254,16258,0],[14994,16258,16248,0],[14994,16248,16260,0],[16248,16258,16252,0],[16252,16258,16254,0],[14997,16255,16254,0],[14995,16258,14994,0],[16259,14982,15349,0],[14982,16259,16260,0],[14982,16260,14981,0],[14980,14981,16246,0],[14980,16246,16261,0],[16261,16288,16262,0],[16262,16288,16302,0],[16262,16302,16263,0],[16263,16302,16264,0],[16265,16264,16304,0],[16265,16304,16266,0],[16267,47392,16278,0],[16278,47392,47404,0],[16278,47404,16268,0],[16268,47404,47405,0],[16268,47405,47402,0],[16279,47402,16269,0],[16269,47406,16276,0],[15113,16270,15111,0],[15111,16270,16275,0],[16275,16270,16272,0],[16272,16270,16271,0],[16272,16271,16108,0],[16107,16272,16108,0],[16274,16275,47139,0],[47139,16275,16105,0],[16105,16275,16106,0],[16106,16275,16272,0],[16275,16274,15111,0],[15111,16274,47453,0],[16270,16273,16271,0],[16270,15113,16273,0],[15113,15114,16273,0],[16273,15114,16276,0],[16276,15114,15115,0],[16276,15115,15116,0],[16276,15116,16269,0],[16279,16277,16268,0],[16268,16277,14974,0],[16268,14974,16278,0],[16278,16280,16267,0],[16267,16280,16266,0],[47402,16279,16268,0],[16279,16269,15116,0],[16278,14974,16280,0],[16280,16283,16266,0],[14974,14975,16280,0],[16280,14975,16281,0],[16280,16281,16283,0],[16266,16283,16265,0],[16283,16281,16282,0],[16263,16282,14979,0],[14979,16262,16263,0],[16283,16282,16265,0],[16265,16282,16264,0],[16264,16282,16263,0],[16262,16305,16261,0],[16261,16305,14980,0],[16277,16279,16284,0],[16284,16279,15116,0],[16284,15116,16286,0],[16277,16284,14973,0],[14973,16332,16285,0],[14973,16284,16286,0],[14973,16286,16332,0],[16261,16246,16287,0],[16261,16287,16288,0],[16288,16287,16293,0],[16288,16293,16289,0],[47399,47410,16298,0],[47399,16298,16291,0],[15074,16292,15009,0],[15009,16292,15076,0],[15077,15076,16291,0],[15077,16291,15010,0],[16293,16245,16294,0],[16295,16294,15006,0],[16295,15006,15012,0],[16295,15012,16296,0],[16296,15012,16297,0],[16296,16297,15011,0],[16296,15011,16299,0],[16299,15011,15010,0],[16299,15010,16298,0],[16298,15010,16291,0],[16296,16299,16295,0],[16298,47410,16290,0],[16298,16290,16300,0],[16300,16293,16295,0],[16289,16293,16300,0],[16289,16300,16303,0],[16303,16300,16290,0],[16293,16294,16295,0],[16294,16245,16256,0],[16294,16256,15006,0],[16245,16244,16256,0],[15004,16301,16256,0],[16237,15006,16301,0],[16301,15006,16256,0],[16243,16244,16253,0],[16264,16302,16304,0],[16304,16302,16289,0],[16304,16289,16303,0],[16303,16290,16266,0],[16303,16266,16304,0],[16289,16302,16288,0],[16260,16259,14994,0],[16259,47156,14994,0],[14984,14985,14992,0],[14992,14985,14991,0],[46954,16312,14988,0],[14986,14985,14979,0],[14979,14985,16305,0],[14980,16305,14983,0],[14983,16305,14985,0],[16285,14972,14971,0],[16285,14971,16306,0],[16306,14971,16315,0],[16306,16315,16277,0],[14988,16310,47320,0],[47320,16311,14989,0],[46962,16311,14990,0],[16310,14988,16312,0],[16309,16313,16314,0],[47325,16314,16307,0],[47325,16308,16314,0],[16314,16308,16309,0],[16309,16312,16313,0],[16314,16313,14975,0],[16314,14975,16307,0],[16307,14975,16315,0],[16315,14975,14974,0],[16277,16315,14974,0],[14961,16336,16337,0],[47313,16337,16316,0],[16318,16316,15124,0],[16318,15124,16317,0],[16317,15124,15125,0],[16318,16317,16323,0],[16318,16323,47317,0],[46927,16319,16322,0],[46927,16322,16320,0],[46924,16320,15129,0],[46924,15129,15130,0],[15129,16320,16321,0],[15128,16321,16323,0],[15128,16323,16031,0],[16031,16323,16317,0],[47317,16323,16319,0],[16319,16323,16322,0],[16323,16321,16322,0],[16322,16321,16320,0],[15124,16316,16324,0],[16337,16324,16316,0],[16325,16336,16326,0],[16336,14963,16326,0],[16326,16335,16327,0],[15121,15122,16327,0],[16327,16325,16326,0],[16326,14963,14965,0],[16326,14965,16335,0],[16335,14965,16328,0],[14967,16328,14966,0],[16055,16331,15119,0],[15119,16331,16334,0],[47332,47331,16333,0],[16332,16333,16285,0],[16285,16333,14972,0],[14968,47334,14967,0],[14966,16328,14965,0],[16327,16335,15121,0],[15121,16335,47333,0],[15121,47333,16057,0],[16324,16337,16325,0],[16325,16337,16336,0],[14961,16337,14960,0],[16337,47313,14960,0],[14960,47313,47318,0],[14928,14927,47286,0],[47286,14927,16338,0],[14927,14926,16338,0],[16338,14926,16339,0],[14950,14926,16340,0],[14950,16340,14924,0],[16347,16342,46700,0],[16347,46700,16345,0],[16345,46701,16343,0],[16343,46701,16344,0],[16344,46701,14830,0],[16344,14832,16343,0],[16343,14832,16345,0],[14832,14834,16345,0],[16345,14834,16346,0],[16345,16346,16347,0],[16347,16346,46513,0],[46513,16346,46512,0],[46512,16346,14836,0],[46512,14836,16341,0],[16347,46513,46515,0],[16347,46515,16342,0],[16348,14839,46510,0],[14836,14837,16341,0],[16341,14837,16348,0],[14840,16349,46510,0],[14823,14824,12046,0],[12046,14824,16350,0],[16351,14826,16391,0],[16351,16391,16352,0],[16353,16352,16392,0],[16353,16392,46703,0],[46599,16355,46601,0],[46601,16355,46600,0],[46600,16356,16357,0],[16357,16356,16385,0],[16357,16385,16358,0],[16360,16359,16369,0],[16360,16369,16361,0],[16362,16368,46602,0],[16363,16368,16365,0],[16363,16365,16351,0],[16351,16365,16364,0],[16364,16365,12045,0],[12045,16365,12044,0],[12044,16365,16366,0],[12044,16366,16367,0],[16367,16366,16362,0],[16362,16366,16368,0],[16362,16361,12041,0],[16362,12041,16397,0],[12041,16361,16369,0],[16369,16359,16380,0],[16380,16359,16370,0],[15876,16371,16385,0],[15876,16385,16376,0],[15907,16372,16373,0],[16374,46687,15874,0],[15874,46687,15950,0],[15907,15875,16372,0],[16372,15875,16376,0],[16376,16385,16372,0],[16371,15878,16370,0],[16370,15878,16377,0],[16377,15878,15879,0],[15878,16371,15877,0],[15879,15881,16377,0],[16377,15881,16378,0],[16369,16381,16379,0],[12041,16369,16379,0],[16369,16380,16381,0],[16381,16380,16378,0],[16378,16380,16377,0],[16380,16370,16377,0],[12040,16379,16381,0],[12040,16381,16382,0],[16383,15882,15922,0],[16383,15922,16384,0],[15881,15882,16383,0],[15881,16383,16378,0],[16378,16383,16382,0],[16378,16382,16381,0],[16382,16383,12039,0],[16371,16358,16385,0],[16386,16355,16387,0],[16387,16355,16388,0],[16387,46691,46692,0],[16386,46692,16389,0],[16385,16356,16389,0],[16356,16386,16389,0],[16355,16354,16388,0],[16388,16354,15930,0],[16355,16386,16356,0],[16355,16356,46600,0],[16371,16370,16358,0],[16358,16370,16359,0],[16366,16365,16368,0],[16361,16362,16360,0],[16358,16359,16357,0],[16357,16359,16390,0],[16360,16390,16359,0],[14824,14825,16350,0],[14825,14826,16350,0],[14826,14828,16391,0],[16392,16393,16396,0],[15930,16396,15931,0],[16392,16396,46703,0],[16392,16352,16393,0],[16391,14828,14829,0],[16391,14829,16393,0],[16393,14829,16394,0],[15931,16395,46527,0],[15931,46527,15932,0],[15931,16396,16395,0],[16395,16396,16394,0],[16394,16396,16393,0],[14829,14830,16394,0],[12041,12040,16437,0],[16367,16397,12042,0],[15921,16451,12037,0],[12037,16451,16448,0],[16398,16448,16452,0],[16427,16452,16399,0],[16399,16400,16425,0],[16426,16400,16478,0],[16426,16478,16401,0],[16401,16478,16472,0],[16401,16472,16415,0],[16415,16402,16403,0],[16403,16404,16409,0],[46764,16406,16405,0],[16405,16406,16407,0],[16405,16407,16408,0],[16408,16442,16413,0],[16413,16442,16418,0],[16418,16429,16411,0],[16411,16415,16403,0],[16403,16410,16411,0],[16411,16412,16418,0],[16418,16412,16413,0],[16403,16409,16410,0],[16410,16412,16411,0],[16410,16409,16412,0],[16409,46764,16412,0],[16412,16414,16413,0],[16408,16413,16414,0],[16405,16414,46764,0],[16414,16405,16408,0],[16430,16417,16418,0],[16444,16431,16419,0],[16444,16419,16420,0],[16444,16420,16430,0],[16430,16420,16417,0],[16421,16420,16428,0],[16420,16421,16417,0],[16417,16421,16422,0],[16417,16422,16416,0],[16415,16416,16401,0],[16401,16422,16423,0],[16400,16426,16425,0],[16401,16423,16426,0],[16421,16424,16423,0],[16423,16424,16425,0],[16425,16426,16423,0],[16422,16421,16423,0],[16399,16425,16427,0],[16452,16427,16398,0],[16398,16427,16425,0],[16398,16425,16424,0],[16419,15919,16420,0],[15919,16450,16420,0],[16420,16450,16428,0],[16428,16450,16421,0],[16421,16450,16424,0],[16416,16415,16411,0],[16416,16411,16429,0],[16431,16444,16432,0],[16432,16433,16431,0],[16431,16433,16419,0],[16419,16433,16445,0],[16445,16433,16434,0],[16445,16434,16435,0],[16436,12042,16397,0],[16397,16437,16436,0],[16435,16434,16436,0],[16436,16434,16439,0],[16436,16439,12042,0],[12042,16439,16438,0],[12042,16438,12043,0],[12043,16438,14819,0],[16434,16433,16439,0],[16433,16432,16438,0],[16438,16432,16443,0],[14817,16441,16408,0],[14817,16408,14816,0],[14816,16408,16407,0],[16408,16441,16440,0],[16442,16440,16443,0],[16444,16430,16418,0],[16444,16418,16442,0],[16444,16442,16432,0],[16432,16442,16443,0],[16440,16442,16408,0],[16440,14819,16443,0],[16443,14819,16438,0],[16438,16439,16433,0],[16445,16446,12038,0],[12038,16446,15924,0],[16445,16435,16446,0],[16384,15924,16446,0],[16446,16435,16447,0],[16446,16447,12039,0],[12040,16447,16437,0],[16436,16437,16435,0],[16435,16437,16447,0],[16418,16417,16429,0],[16429,16417,16416,0],[12037,16448,16449,0],[16450,16449,16424,0],[12037,16449,16450,0],[16448,16398,16449,0],[16424,16449,16398,0],[16448,16451,16452,0],[16452,16451,16494,0],[16452,16494,16537,0],[16454,46725,16475,0],[16455,46411,16491,0],[16488,16456,16457,0],[16457,46415,16458,0],[16458,46421,16486,0],[16486,46421,46423,0],[16486,46425,16459,0],[16484,46593,16460,0],[16463,16464,16480,0],[16480,16464,16479,0],[16479,16464,16465,0],[16465,46584,46719,0],[16465,46719,46723,0],[16465,46723,16466,0],[16466,16404,46890,0],[16469,46763,16455,0],[16470,46762,16471,0],[16471,16402,16472,0],[16472,16402,16415,0],[16471,16472,16473,0],[16473,16474,16470,0],[16473,16470,16471,0],[16470,16474,16475,0],[16453,16476,16399,0],[16453,16399,16452,0],[16453,16452,16537,0],[16453,46725,16476,0],[16476,46725,16454,0],[16475,16455,16470,0],[16399,16476,16400,0],[16476,16454,16477,0],[16400,16477,16473,0],[16454,16475,16477,0],[16477,16475,16474,0],[16477,16474,16473,0],[16472,16478,16473,0],[16473,16478,16400,0],[16480,16479,16481,0],[16492,16481,16482,0],[16492,16482,16493,0],[16493,16482,16468,0],[16468,16482,16467,0],[16493,16468,16469,0],[16493,16469,16489,0],[16493,16489,16462,0],[16462,16489,16461,0],[16461,16489,16460,0],[16460,16490,16483,0],[16484,16483,16485,0],[16459,16485,16483,0],[16459,16483,16486,0],[16487,16488,16457,0],[16487,16457,16458,0],[16487,16458,16486,0],[16486,16483,16487,0],[16460,16489,16490,0],[16490,16489,16456,0],[16490,16456,16488,0],[16456,16489,16491,0],[16455,16491,16469,0],[16489,16469,16491,0],[16488,16487,16490,0],[16490,16487,16483,0],[16484,16460,16483,0],[16480,16492,16463,0],[16463,16492,16462,0],[16462,16492,16493,0],[16492,16480,16481,0],[16455,16475,46411,0],[16451,16536,16494,0],[16495,12034,12033,0],[46894,46477,12030,0],[16526,16499,12022,0],[12022,16499,16498,0],[16498,16499,16500,0],[16498,16500,16501,0],[16498,16501,16496,0],[16496,16501,46267,0],[16497,12020,16496,0],[16497,16496,46267,0],[16496,12020,16498,0],[16526,12024,16499,0],[16501,16500,16524,0],[46268,16524,16502,0],[16502,16503,16514,0],[16514,16503,46899,0],[16504,46897,16505,0],[16505,46897,16506,0],[16509,16505,16507,0],[16509,16507,16508,0],[16509,16508,16511,0],[16511,16508,16510,0],[16511,16510,16512,0],[16512,16510,16513,0],[16516,16512,16514,0],[16514,46343,16502,0],[16515,16501,16524,0],[16515,16524,46268,0],[16514,46899,16516,0],[16516,16511,16512,0],[16511,16516,16518,0],[16518,16517,16519,0],[16519,16517,16504,0],[16517,16518,16516,0],[16517,16516,46899,0],[16511,16518,16509,0],[16509,16518,16519,0],[16504,16505,16519,0],[16505,16509,16519,0],[16500,12026,16520,0],[16520,12026,16523,0],[16520,16523,46901,0],[46900,46901,16521,0],[12029,16521,12028,0],[46901,16523,16522,0],[16521,16522,12028,0],[12028,16522,12027,0],[16522,16523,12026,0],[16500,16520,16524,0],[16502,16524,16503,0],[16500,16499,12026,0],[12026,16499,12025,0],[12025,16499,12024,0],[46266,12019,16545,0],[46266,16545,16497,0],[12020,16545,16525,0],[12020,16525,12021,0],[12021,46470,12022,0],[12022,46470,16526,0],[16526,46902,12023,0],[12023,46902,16527,0],[46457,16529,16530,0],[16531,16530,46370,0],[16532,16531,16533,0],[16532,16533,46466,0],[46466,16533,46750,0],[46466,46750,46462,0],[46462,46750,16534,0],[12035,46747,16535,0],[16535,46747,46782,0],[16535,46782,16541,0],[12036,16541,16536,0],[16537,16540,16538,0],[16538,16540,46761,0],[16540,16539,46761,0],[16537,16494,16540,0],[12023,16542,12024,0],[12024,16542,16543,0],[12024,16543,12025,0],[16528,16544,46371,0],[46371,16544,16542,0],[46371,16542,16527,0],[16527,16542,12023,0],[12019,12018,16545,0],[16545,12018,16546,0],[16545,16546,16525,0],[16525,16546,16547,0],[16525,16547,12021,0],[12018,12017,16546,0],[16546,12017,16548,0],[16546,16548,16547,0],[16547,16548,16549,0],[16549,16548,16550,0],[46366,16550,46446,0],[16550,16548,12017,0],[16550,16551,16552,0],[12016,16552,46467,0],[16553,46467,16554,0],[16553,16554,12015,0],[16550,16552,46446,0],[46446,16552,12016,0],[12016,46467,16553,0],[46448,12011,16560,0],[16557,16560,16556,0],[11976,16559,11975,0],[11975,16559,16558,0],[16560,16557,46448,0],[12012,46448,16555,0],[12012,12011,46448,0],[12011,12010,16560,0],[16560,12010,12009,0],[16560,12009,16561,0],[16556,16561,16562,0],[16562,11973,11975,0],[11975,16558,16562,0],[16562,16558,16556,0],[12011,12346,12010,0],[12014,16555,46212,0],[12015,16555,46448,0],[12006,11973,12007,0],[11973,16562,12007,0],[11971,11972,16563,0],[11971,16563,11970,0],[12008,12009,11969,0],[11969,12009,12010,0],[16563,11972,12006,0],[16588,16564,16565,0],[16565,16566,16567,0],[16565,16567,16589,0],[16589,16567,16568,0],[16589,16568,16592,0],[16568,16600,16594,0],[16594,16600,16605,0],[16594,16605,16603,0],[16594,16603,16570,0],[16572,16573,16576,0],[16576,16573,16610,0],[16596,16610,46875,0],[16596,46875,16574,0],[16575,16574,16660,0],[16597,45608,16577,0],[16597,16577,45610,0],[45610,16577,16578,0],[16579,45607,16586,0],[16586,9968,16580,0],[8872,8873,16583,0],[16583,16581,9966,0],[16582,8873,16580,0],[8873,16582,16581,0],[8873,16581,16583,0],[16582,16580,9968,0],[8872,16583,9352,0],[9352,16583,9353,0],[9353,16583,9966,0],[9353,9966,9965,0],[8873,8874,16580,0],[16580,16584,16586,0],[16580,8874,16584,0],[8874,8875,16584,0],[16584,8875,16585,0],[16584,16585,16591,0],[16586,16591,16579,0],[16591,16586,16584,0],[16591,16585,46358,0],[16591,46358,16587,0],[16587,16595,16588,0],[16588,16565,16589,0],[16591,16587,16590,0],[16589,16592,16587,0],[16587,16592,16590,0],[16590,16592,16579,0],[16594,16579,16592,0],[16568,16594,16592,0],[16590,16579,16591,0],[16578,16579,16593,0],[16593,16579,16594,0],[16564,16588,11970,0],[11970,16588,16595,0],[16595,16587,46358,0],[45607,16579,16578,0],[16576,16610,16596,0],[16596,16574,16575,0],[16572,16576,16665,0],[16572,16665,16571,0],[16571,16665,16597,0],[16571,16597,45610,0],[16564,11968,16565,0],[16565,11968,16726,0],[16565,16726,16566,0],[12337,16727,11966,0],[11966,16727,16598,0],[16567,46033,16599,0],[16567,16599,16568,0],[16568,16599,16600,0],[16600,16601,16605,0],[16602,16604,16603,0],[16603,16604,16570,0],[16602,16603,16601,0],[16605,16601,16603,0],[16600,16599,46031,0],[16601,46031,16606,0],[16601,16606,16607,0],[16607,16606,46030,0],[16607,46030,16608,0],[16609,16608,46876,0],[46888,46876,16610,0],[46888,16610,16604,0],[16604,16610,16573,0],[46875,46874,16574,0],[16574,46874,16611,0],[16611,11215,16612,0],[16612,11215,11216,0],[16613,16615,16636,0],[16636,16615,16621,0],[16725,16615,16616,0],[16725,16616,16724,0],[16725,16724,16617,0],[16618,11217,16641,0],[16618,16641,16619,0],[16619,16641,16620,0],[16614,16723,16621,0],[16621,16723,16622,0],[16623,16622,16642,0],[16623,16642,16643,0],[16623,16643,16632,0],[16632,16624,16633,0],[16627,16612,11216,0],[16612,16629,16628,0],[16628,16629,16630,0],[16722,16630,16721,0],[16721,16630,16631,0],[16721,16631,16720,0],[16720,16631,16719,0],[16719,16631,16718,0],[16718,16625,45648,0],[16631,16626,16625,0],[16631,16625,16718,0],[16626,16630,16629,0],[16623,16632,16633,0],[16623,16633,16634,0],[16623,16634,16622,0],[16622,16634,16635,0],[16622,16635,16621,0],[16613,16636,16639,0],[16613,16639,16637,0],[16626,16640,16625,0],[16625,16638,45648,0],[45648,16638,16635,0],[16639,16638,16637,0],[16637,16638,16640,0],[16640,16638,16625,0],[16626,16629,16640,0],[16640,16629,16637,0],[16637,16629,16612,0],[16637,16612,16627,0],[16637,16627,16613,0],[16636,16621,16635,0],[16614,16615,16620,0],[16620,16615,16619,0],[16641,16710,16713,0],[16642,16712,16643,0],[16632,16644,16624,0],[16646,16685,16721,0],[16721,16685,16647,0],[16721,16647,16722,0],[16658,16722,16647,0],[16648,16650,16683,0],[16683,16650,43691,0],[16651,16656,16652,0],[16652,16656,43670,0],[16652,43670,45581,0],[45581,43670,10000,0],[16653,10000,9999,0],[16653,9999,16654,0],[43688,9999,10000,0],[43691,16650,16651,0],[16651,16650,16655,0],[16656,16655,45694,0],[43671,45694,16657,0],[43673,16657,45693,0],[43673,45693,10502,0],[16651,16655,16656,0],[16660,16659,16663,0],[16660,16661,16659,0],[16659,16661,16658,0],[16658,16649,16659,0],[16659,16649,16683,0],[16659,16683,16663,0],[16663,16683,16662,0],[16575,16663,16664,0],[16664,43694,16665,0],[16666,16667,16681,0],[16681,16667,45582,0],[16681,45582,45574,0],[16668,45574,16669,0],[16670,45577,45569,0],[16670,45569,16671,0],[16680,16672,16673,0],[16680,16673,9967,0],[16581,16673,16672,0],[16671,16672,16680,0],[16671,16680,16670,0],[16680,45603,16674,0],[16670,16674,45577,0],[45577,16674,16675,0],[16675,16674,45603,0],[16675,45603,16677,0],[16675,16677,16679,0],[16676,16678,45608,0],[16676,45608,43694,0],[16676,16682,16678,0],[16678,16682,16677,0],[16682,45609,16677,0],[16677,45609,16679,0],[45574,16668,16681,0],[16681,16668,45609,0],[16681,16682,16666,0],[16666,16682,16676,0],[16664,16665,16576,0],[16664,16576,16596,0],[16664,16596,16575,0],[16649,16648,16683,0],[16662,16683,16684,0],[16666,16684,16667,0],[16683,43691,16684,0],[16685,16686,16716,0],[10509,16687,16688,0],[16688,16695,16708,0],[16708,16695,16697,0],[16708,16697,16689,0],[16707,16689,16699,0],[16699,16689,16698,0],[16699,16698,16644,0],[16624,16644,16690,0],[16690,16691,16645,0],[16645,16691,16646,0],[16690,16645,16624,0],[16644,16698,16690,0],[16690,16698,16691,0],[16691,16692,16693,0],[16691,16693,16646,0],[16646,16693,16685,0],[16686,16696,16694,0],[16695,16687,16686,0],[16687,16695,16688,0],[16697,16695,16696,0],[16697,16696,16692,0],[16692,16696,16693,0],[16693,16696,16685,0],[16694,16696,16695,0],[16698,16692,16691,0],[16697,16698,16689,0],[16685,16696,16686,0],[16686,16694,16695,0],[16644,16714,16699,0],[16699,16714,16705,0],[16700,16701,10515,0],[16702,43695,43696,0],[16702,43696,16703,0],[10516,43700,10518,0],[43695,16702,16701,0],[16701,16702,16704,0],[19102,16704,43700,0],[43700,16704,16702,0],[16704,10515,16701,0],[10515,16705,16700,0],[16700,16705,16711,0],[10515,16706,16705,0],[10515,10514,16706,0],[16707,16708,16689,0],[10513,16707,16706,0],[16706,16707,16699,0],[16706,16699,16705,0],[10513,10512,16707,0],[16707,10512,16708,0],[10512,45711,16708,0],[10513,16706,10514,0],[16713,16710,16711,0],[16712,16642,16713,0],[16643,16712,16714,0],[16705,16714,16712,0],[16705,16712,16711,0],[16700,16711,16709,0],[16700,16709,16701,0],[16711,16710,16709,0],[16701,16709,43695,0],[16658,16647,16717,0],[16649,16717,16715,0],[16715,16716,19095,0],[16715,45646,16649,0],[16649,45646,16648,0],[16647,16685,16717,0],[16717,16716,16715,0],[16717,16685,16716,0],[16716,16686,19095,0],[19095,16686,16687,0],[19095,16687,10509,0],[16624,16645,16633,0],[16633,16645,16718,0],[16633,16718,16634,0],[16634,16718,45648,0],[16720,16646,16721,0],[16646,16720,16719,0],[16646,16719,16645,0],[16645,16719,16718,0],[16630,16722,16628,0],[16628,16722,16661,0],[16628,16661,16611,0],[16612,16628,16611,0],[16661,16574,16611,0],[16574,16661,16660,0],[16661,16722,16658,0],[16622,16723,16642,0],[16642,16723,16713,0],[16723,16614,16620,0],[16723,16620,16713,0],[16713,16620,16641,0],[16617,16724,11885,0],[11885,16724,16616,0],[11216,16616,16627,0],[16627,16616,16613,0],[16613,16616,16615,0],[16615,16725,16619,0],[16571,16570,16572,0],[16572,16570,16573,0],[16570,16604,16573,0],[46878,46877,11214,0],[46878,11214,46874,0],[46874,11214,16611,0],[16611,11214,11215,0],[16608,16609,16607,0],[16609,16602,16601,0],[16601,16600,46031,0],[16607,16609,16601,0],[16567,16566,46033,0],[46033,16566,16598,0],[16598,16566,16726,0],[16726,11965,11966,0],[16726,11966,16598,0],[16731,16728,16729,0],[16731,16729,16730,0],[16731,16730,16732,0],[46034,16732,16733,0],[16733,46028,46036,0],[46036,46028,16734,0],[46036,16734,46035,0],[46035,16734,16735,0],[11213,16734,46028,0],[46033,16598,16736,0],[16736,16598,16728,0],[16728,16731,16736,0],[16728,16598,16727,0],[11959,42586,16737,0],[11959,16737,11957,0],[11959,11957,11960,0],[11960,11957,16738,0],[16739,16738,16749,0],[16739,16747,16740,0],[16746,16740,16741,0],[42737,16741,16742,0],[16743,11938,11937,0],[11937,16745,16743,0],[42732,16743,16744,0],[11936,16744,16745,0],[16744,42738,11930,0],[16743,16745,16744,0],[16742,16743,42737,0],[11938,16743,16742,0],[11938,16742,11939,0],[16740,16746,42716,0],[16739,42716,16750,0],[16739,16740,42716,0],[16747,16739,16748,0],[42488,16748,11956,0],[42488,11956,11955,0],[11956,16748,16749,0],[16748,16739,16749,0],[16738,11956,16749,0],[16738,16739,11960,0],[11960,16739,16750,0],[11960,16750,11962,0],[16752,16751,42730,0],[16752,42730,42729,0],[16752,42729,16753,0],[16737,42586,12562,0],[12570,13122,13124,0],[11951,11950,16755,0],[16755,16759,13124,0],[13124,13122,16755,0],[16756,16758,16757,0],[16757,16758,11949,0],[16758,13082,11949,0],[13082,16758,16756,0],[14753,13124,11952,0],[16756,16759,16755,0],[16756,16755,11950,0],[11949,13080,11948,0],[11948,13080,13078,0],[11945,16764,16761,0],[16761,16764,16760,0],[16760,16765,42721,0],[16761,16760,16778,0],[16761,16778,16762,0],[16761,16762,42493,0],[42493,16762,16763,0],[16763,16762,16775,0],[16763,16775,11940,0],[16760,16764,16765,0],[16765,16764,13077,0],[13078,13077,16764,0],[13077,13126,16766,0],[42721,16765,13127,0],[13127,16765,16766,0],[11942,11944,11941,0],[11941,11944,16763,0],[11941,16763,11940,0],[11942,11941,16740,0],[16740,11941,16741,0],[16741,11941,11940,0],[16741,11940,16742,0],[16742,11940,11939,0],[11938,11939,16767,0],[16768,16769,16770,0],[16770,16769,16771,0],[16770,16771,16772,0],[13128,42720,13127,0],[13134,13128,13127,0],[13128,16772,16771,0],[13128,16771,42720,0],[42719,16769,16777,0],[42719,16777,16773,0],[16762,16774,42718,0],[42718,16775,16762,0],[16776,42717,16767,0],[16785,16767,16777,0],[16785,16777,16768,0],[16768,16777,16769,0],[16767,11939,16776,0],[16775,42718,42717,0],[16762,16778,16774,0],[13128,13133,16772,0],[16772,13133,16779,0],[16780,16786,16781,0],[16782,16784,16783,0],[11206,16784,11770,0],[16784,16782,13063,0],[13063,16782,16781,0],[46025,16786,16785,0],[16785,16786,16767,0],[16767,16786,16780,0],[16767,16780,11938,0],[16784,11207,16783,0],[16787,11937,16780,0],[16787,16780,16781,0],[16781,16782,16787,0],[16787,16782,16783,0],[11936,16783,11207,0],[11768,11209,11766,0],[11209,11768,16788,0],[11209,16788,11837,0],[11768,11253,16789,0],[11841,16788,16789,0],[16789,16788,11768,0],[11765,11766,11207,0],[11157,11178,11158,0],[11158,11178,16790,0],[16792,16790,41292,0],[16792,41292,16791,0],[16791,41597,11162,0],[11158,16790,16792,0],[11158,16792,11161,0],[11161,16792,11177,0],[11156,11155,11178,0],[11178,11155,16793,0],[11153,16793,11154,0],[11154,16793,11155,0],[11178,16793,41157,0],[11178,41157,11179,0],[16883,41174,11150,0],[11150,11152,41262,0],[11152,11150,11151,0],[41174,11151,11150,0],[11149,11150,16807,0],[11149,16807,16794,0],[16794,16807,16795,0],[16795,16796,16797,0],[16797,16796,16798,0],[16800,16812,16801,0],[16801,16812,41305,0],[41305,16809,16802,0],[41256,16802,16805,0],[16803,16805,16804,0],[16804,16806,16808,0],[41262,16808,11150,0],[16804,16805,16806,0],[16795,16807,16810,0],[16795,16810,16796,0],[16796,16810,16811,0],[16796,16811,16798,0],[16798,16811,16799,0],[16806,16807,16808,0],[16808,16807,11150,0],[16805,16802,16809,0],[16805,16809,16806,0],[16806,16809,16810,0],[16810,16809,16811,0],[16810,16807,16806,0],[16811,16809,41305,0],[16811,41305,16812,0],[16812,16800,16799,0],[16812,16799,16811,0],[16794,16813,11148,0],[16794,16795,16813,0],[16815,41309,16824,0],[16815,16824,16816,0],[16817,16816,16819,0],[16817,16819,16818,0],[16818,16819,16820,0],[16822,16823,16839,0],[16839,16823,16838,0],[16825,16823,16824,0],[16825,41309,41295,0],[16825,41295,41296,0],[16825,41296,16838,0],[16838,41296,16826,0],[16826,41317,16827,0],[16827,41317,16844,0],[16844,41317,16828,0],[16844,16828,16843,0],[16845,41321,16830,0],[16831,41877,16832,0],[16832,41383,41878,0],[41878,41383,41389,0],[41878,41389,41879,0],[16833,41389,16834,0],[16833,16835,41879,0],[41879,16835,16836,0],[16836,16835,16849,0],[16827,16837,16826,0],[16826,16837,16838,0],[16838,16823,16825,0],[16825,16824,41309,0],[16827,16844,16840,0],[16840,16844,16842,0],[16829,16841,16843,0],[16843,16841,16842,0],[16843,16842,16844,0],[16842,16841,16840,0],[16840,16841,16846,0],[16829,41321,16841,0],[41321,16845,16841,0],[16846,16841,16845,0],[41386,16846,16849,0],[16849,16846,16836,0],[16840,16846,41386,0],[16846,16845,16836,0],[16848,16836,16847,0],[16830,16831,16847,0],[16847,16831,16848,0],[16848,41879,16836,0],[16845,16830,16847,0],[16816,16824,16850,0],[16816,16850,16819,0],[16819,16850,16822,0],[16821,16820,16822,0],[16822,16820,16819,0],[16822,16850,16823,0],[16823,16850,16824,0],[11148,16813,11147,0],[16884,11147,16881,0],[16884,16881,16851,0],[16884,16851,11145,0],[16851,16852,11144,0],[11144,16852,16858,0],[16853,16852,16817,0],[16853,16817,16854,0],[16818,16820,16855,0],[16855,16820,16864,0],[16855,16856,16818,0],[16818,16856,16854,0],[16853,16857,16858,0],[11142,11144,16858,0],[16858,16857,16859,0],[16859,16857,16860,0],[16859,16860,11140,0],[16860,16857,16861,0],[16861,16854,16856,0],[16854,16861,16853,0],[16853,16861,16857,0],[16859,11142,16858,0],[16862,16863,11138,0],[11138,16863,11137,0],[11138,16864,16862,0],[16820,16862,16864,0],[11139,16855,16864,0],[11139,16864,11138,0],[16820,16821,16862,0],[16862,16821,16872,0],[16872,16874,16865,0],[16869,16865,16873,0],[41904,16868,41885,0],[16873,16866,16870,0],[16873,16870,16869,0],[16869,16870,16871,0],[16871,41903,11131,0],[11131,41903,11132,0],[16863,16869,16871,0],[16863,16871,11137,0],[16869,16863,16865,0],[16865,16863,16872,0],[16862,16872,16863,0],[16873,16865,16874,0],[16873,16874,16875,0],[16875,16874,16878,0],[16878,16874,16822,0],[16878,16822,16839,0],[16878,16839,41387,0],[41387,16839,16827,0],[16827,16839,16837,0],[16876,16879,16877,0],[41386,16877,16879,0],[41387,16827,16840,0],[16873,16875,16866,0],[16875,16879,16876,0],[16879,16878,41387,0],[16878,16879,16875,0],[16818,16854,16817,0],[11147,16814,16881,0],[16881,16814,16880,0],[16881,16880,16852,0],[16817,16852,16880,0],[16817,16880,16816,0],[16816,16880,16814,0],[16816,16814,16815,0],[16881,16852,16851,0],[16795,16797,16813,0],[11148,16883,11149,0],[11129,11130,16886,0],[11126,16886,16885,0],[11126,16885,11125,0],[11126,11127,16886,0],[16886,11130,16885,0],[16885,42199,11125,0],[11126,11125,16887,0],[16887,16888,11126,0],[11126,16888,16889,0],[16889,16888,16890,0],[16892,16984,16893,0],[16892,16893,17511,0],[17511,16893,11078,0],[11078,16938,17509,0],[17509,16938,11079,0],[17511,11077,16892,0],[16892,11077,16894,0],[17576,16895,16894,0],[17568,16894,11077,0],[16892,16896,16984,0],[16984,16896,16891,0],[16891,16896,16900,0],[16896,16897,16900,0],[16895,16897,16894,0],[16894,16896,16892,0],[16896,16894,16897,0],[16898,16902,16890,0],[16899,16900,16901,0],[16901,16900,16897,0],[16900,16902,16898,0],[16890,16902,16899,0],[16889,16890,16930,0],[16889,16930,16903,0],[16903,11127,16889,0],[16889,11127,11126,0],[16905,16906,41952,0],[41952,16906,17695,0],[41952,17695,16907,0],[41952,16907,16908,0],[16927,16909,16910,0],[16910,16921,16911,0],[41954,16911,16917,0],[16917,16911,16921,0],[16917,16921,16916,0],[16916,16921,16912,0],[41955,16912,41956,0],[16913,11140,16860,0],[16913,16860,41956,0],[41956,16860,16914,0],[41955,16914,41326,0],[41955,41326,16915,0],[41955,16915,16912,0],[16912,16915,16916,0],[16919,41327,41953,0],[11127,16920,11128,0],[16920,41953,11128,0],[16921,16910,16922,0],[16924,16922,16923,0],[16923,16922,17698,0],[16923,17698,11069,0],[16910,16909,16922,0],[16912,16921,16922,0],[16912,16922,16924,0],[16924,16923,16925,0],[16925,16923,11068,0],[16909,16927,16908,0],[16905,16926,16904,0],[16929,16904,16928,0],[16920,16929,41953,0],[16904,16929,16903,0],[11127,16903,16920,0],[16920,16903,16929,0],[16903,16930,16904,0],[16931,16933,16904,0],[16931,16904,16930,0],[16933,16932,16906,0],[16905,16904,16933,0],[16905,16933,16906,0],[17695,16906,16932,0],[17695,16932,11075,0],[16899,16901,16931,0],[16931,16901,16934,0],[16931,16934,16933,0],[16933,16934,16932,0],[16932,16934,17545,0],[16890,16899,16930,0],[16935,16936,16898,0],[16898,16936,16891,0],[16891,16936,16984,0],[16937,42165,16893,0],[16893,42165,16938,0],[16938,42165,16939,0],[16940,16939,16941,0],[16940,16941,16945,0],[16942,16943,42167,0],[16942,42167,11121,0],[16942,11121,11120,0],[11121,42167,11122,0],[16986,11122,42166,0],[16986,42166,16944,0],[16985,16935,16888,0],[16985,16944,16935,0],[16935,16944,16936,0],[16936,16944,42166,0],[16940,16945,16946,0],[16946,16967,11082,0],[11082,11081,16946,0],[16946,11081,16947,0],[16946,16947,16940,0],[16940,16948,16939,0],[16939,11079,16938,0],[16893,16938,11078,0],[16893,16984,16937,0],[11079,16939,16948,0],[11079,16948,11080,0],[11080,16948,16947,0],[16947,16948,16940,0],[16942,11120,42202,0],[16942,42202,16945,0],[16945,42202,16983,0],[16952,16951,16953,0],[16961,42157,16960,0],[16960,16981,16978,0],[16978,16981,16954,0],[16978,16954,16977,0],[16977,16954,42189,0],[42189,11118,16977,0],[16977,11118,42160,0],[16977,42160,16955,0],[16955,42160,16956,0],[16956,42160,16957,0],[16956,16958,16959,0],[16959,16962,16960,0],[16961,16963,16953,0],[16953,16963,16952,0],[16964,16965,16975,0],[16975,16965,11085,0],[16975,11085,16966,0],[16976,16966,16968,0],[16976,16968,16967,0],[16967,16968,11082,0],[42177,16976,16967,0],[16968,11083,11082,0],[11085,16965,16969,0],[17023,16969,11087,0],[16969,16965,11087,0],[11087,16970,11088,0],[11088,16970,16973,0],[11088,16973,16974,0],[16973,11092,16974,0],[42188,16974,11092,0],[11094,16971,16963,0],[16962,16963,16961,0],[16963,16971,16952,0],[16971,11094,16972,0],[16972,11094,16973,0],[16973,11094,11092,0],[16952,16971,16964,0],[11087,16965,16970,0],[16973,16970,16972,0],[16972,16970,16964,0],[16972,16964,16971,0],[16965,16964,16970,0],[11094,16963,11093,0],[42161,11093,16962,0],[42161,16962,16959,0],[16962,11093,16963,0],[11088,16974,11089,0],[11089,16974,11090,0],[11090,16974,42181,0],[16952,16964,16975,0],[16952,16975,16951,0],[16951,16976,16950,0],[16950,16976,42177,0],[16950,42177,42156,0],[16962,16961,16960,0],[16956,16959,16955,0],[16955,16959,16978,0],[16955,16978,16977,0],[16960,16978,16959,0],[42160,11117,42159,0],[42159,11117,16979,0],[11112,16980,11113,0],[11118,11117,42160,0],[16983,42202,16949,0],[16949,16982,42156,0],[42156,16982,16981,0],[16981,16982,16954,0],[16981,16960,42157,0],[16945,16983,16946,0],[16983,16949,16946,0],[16943,16942,16941,0],[16943,16941,16939,0],[16943,16939,42165,0],[16935,16898,16890,0],[16935,16890,16888,0],[16988,16986,16987,0],[16987,41896,42191,0],[16986,16985,41894,0],[16986,41894,16987,0],[16944,16985,16986,0],[11110,16992,11111,0],[16980,16989,42192,0],[11108,11107,16990,0],[11105,16990,10806,0],[11105,10806,10807,0],[11108,16990,11105,0],[11105,10807,16991,0],[16991,17927,11105,0],[11109,11102,16992,0],[16992,11102,42159,0],[16992,42159,11111,0],[11109,17921,16993,0],[11100,16993,11099,0],[11099,16993,16994,0],[11099,16994,16995,0],[16995,41505,16996,0],[17013,41918,17003,0],[17013,17003,10865,0],[10865,17003,17006,0],[10865,17006,10866,0],[10866,17006,16997,0],[16997,17006,17004,0],[16997,17004,17012,0],[17012,17004,16998,0],[16998,17004,17000,0],[16998,17000,17010,0],[16999,17010,10853,0],[10852,10853,17010,0],[10852,17010,17000,0],[17007,17000,17001,0],[17001,17000,17004,0],[17002,17005,17003,0],[17001,17004,17005,0],[17005,17004,17006,0],[10852,17000,17007,0],[17008,17001,17005,0],[17008,17005,17009,0],[17009,17005,17002,0],[17008,17009,10851,0],[17001,17008,17007,0],[17007,17008,10843,0],[17010,16999,16998,0],[17011,16997,17012,0],[10865,10866,41542,0],[17011,16998,10886,0],[17013,16996,41918,0],[16995,10864,42241,0],[16995,42241,11099,0],[10862,11099,10863,0],[10864,16995,16996,0],[10864,16996,17013,0],[11100,11102,16993,0],[16993,11102,11109,0],[11088,11089,17014,0],[11088,17014,17024,0],[17024,17496,17015,0],[17030,17017,17018,0],[17018,17043,17032,0],[17041,17035,17033,0],[17033,17035,17019,0],[17020,17028,17022,0],[17022,17028,17021,0],[17022,17021,17027,0],[42169,17027,17026,0],[17034,17026,17016,0],[17034,17016,17017,0],[17016,17025,17492,0],[17492,17025,17015,0],[17015,17025,17023,0],[17024,17015,17023,0],[17026,17027,11084,0],[11083,11084,17027,0],[11083,17027,17021,0],[17021,17028,11082,0],[17029,11084,11086,0],[17026,17025,17016,0],[17023,17025,17029,0],[17029,17025,11084,0],[17031,17030,17018,0],[17031,17018,17032,0],[17031,17032,17033,0],[17033,17032,17041,0],[17017,17030,17034,0],[17026,17034,42169,0],[42169,17034,17031,0],[17027,42169,17022,0],[17040,17020,17019,0],[17020,17022,17019,0],[41544,17035,17036,0],[17037,17036,17038,0],[17038,17039,17326,0],[17326,17039,17322,0],[17323,17039,17038,0],[41544,17040,17035,0],[17035,17040,17019,0],[17036,17035,17041,0],[17042,17036,17041,0],[17036,17042,17038,0],[17041,17032,17323,0],[17323,17032,17043,0],[17044,17043,41560,0],[17044,41560,17045,0],[17044,17045,17046,0],[17046,17047,17048,0],[17048,17047,17314,0],[17049,17314,17489,0],[17049,17489,17050,0],[17315,17050,17506,0],[17315,17506,17320,0],[17053,17485,17483,0],[17053,17483,17054,0],[17055,17054,42018,0],[42018,17054,17436,0],[42018,17436,17470,0],[17078,17056,17467,0],[17078,17467,17066,0],[17066,17467,42254,0],[42254,17467,42171,0],[42171,17466,17457,0],[17457,17466,17465,0],[42170,17456,17057,0],[42170,17057,17435,0],[42250,17060,17434,0],[42250,17434,17429,0],[42250,17429,42252,0],[42252,17429,17061,0],[17062,17063,17064,0],[17067,42047,17065,0],[17066,17080,17079,0],[17068,42047,42048,0],[17068,42048,17069,0],[42044,42043,42042,0],[17074,42175,17075,0],[17075,42175,17076,0],[17075,17076,17077,0],[17075,17077,17086,0],[17086,17077,17078,0],[17078,17066,17079,0],[17086,17079,17080,0],[17083,17082,17081,0],[17081,17082,42042,0],[42044,42042,17082,0],[42044,17082,17069,0],[17069,17082,17068,0],[17080,17065,17083,0],[17080,17083,17085,0],[42047,17068,17083,0],[17083,17068,17082,0],[42047,17083,17065,0],[42042,17070,17081,0],[17081,17070,17084,0],[17084,17070,17071,0],[17084,17071,17088,0],[17084,17088,17085,0],[17084,17085,17081,0],[17081,17085,17083,0],[17085,17088,17087,0],[17075,17087,17074,0],[17074,17087,17088,0],[17074,17088,17072,0],[17072,17073,17074,0],[17085,17087,17080,0],[17080,17087,17075,0],[17080,17075,17086,0],[17086,17078,17079,0],[17077,17284,17089,0],[17091,17090,17286,0],[17286,17343,17092,0],[17092,17093,42015,0],[42015,17093,42142,0],[42142,17093,17094,0],[42142,17094,17053,0],[17053,17094,17316,0],[17053,17316,17052,0],[17053,17052,17485,0],[17095,17094,17093,0],[17077,17076,17284,0],[17284,17076,17096,0],[17098,42173,17099,0],[17099,42173,17100,0],[17217,17102,17103,0],[17105,17103,17104,0],[17105,17104,42008,0],[17105,42008,42011,0],[42011,42008,17106,0],[42368,17106,17107,0],[42368,17107,17641,0],[17109,17108,17110,0],[42062,17121,17216,0],[42062,17216,17747,0],[17112,17129,17113,0],[17113,17129,17114,0],[17118,17115,17116,0],[17118,17116,42069,0],[42069,17116,17117,0],[17370,17113,17114,0],[17112,17371,42065,0],[17747,17216,17111,0],[17111,17216,17119,0],[17128,17119,17216,0],[17214,17216,17121,0],[17214,17121,17122,0],[17214,17122,17125,0],[17122,17255,17213,0],[17213,17255,17254,0],[17213,17254,42088,0],[17213,42088,17215,0],[17125,17124,42374,0],[17126,42374,17133,0],[17126,17133,17127,0],[17126,17127,17125,0],[17127,17132,17128,0],[17128,17132,17178,0],[17128,17178,17171,0],[42065,17171,17129,0],[17129,17172,42064,0],[42064,17130,17131,0],[17131,17130,17175,0],[17131,17114,42064,0],[17132,17127,17133,0],[17132,17133,17178,0],[17178,17133,42377,0],[17178,42377,17170,0],[17170,42377,17134,0],[17170,17134,17177,0],[17136,17135,17183,0],[17136,17183,17208,0],[17137,17210,17149,0],[17210,17138,17148,0],[17148,17138,42072,0],[42072,17138,17139,0],[17140,17141,17142,0],[17142,17141,42317,0],[17142,42317,17143,0],[17144,42070,17145,0],[17145,17146,17147,0],[17146,17148,42072,0],[17210,17148,17149,0],[17137,17136,17208,0],[17139,17138,17194,0],[17139,17194,17193,0],[17139,17193,17150,0],[17150,17193,17201,0],[17150,17201,17151,0],[17154,17153,17155,0],[17147,17154,17140,0],[17140,17154,17155,0],[17140,17155,17141,0],[17153,17152,17156,0],[17158,17165,17159,0],[17159,17165,17160,0],[17160,17165,42400,0],[17160,42400,17161,0],[17163,17269,42401,0],[17163,42401,42331,0],[17165,17158,17164,0],[42327,17157,17166,0],[17166,17157,17354,0],[17166,17354,17152,0],[17152,17354,17156,0],[17164,17158,42327,0],[17150,17151,17152,0],[17150,17152,17153,0],[17150,17154,17139,0],[17136,17180,17182,0],[17177,17182,42068,0],[42066,17167,17180,0],[42066,17180,17168,0],[17168,17180,17169,0],[17169,17181,17145,0],[17169,17145,42070,0],[17145,17181,17146,0],[17146,17181,17148,0],[17136,17182,17135,0],[17135,17182,17177,0],[17171,17170,17172,0],[17172,17176,17179,0],[17173,42067,42066,0],[17173,17174,17130,0],[17130,17174,17175,0],[17175,17118,17131,0],[17175,17115,17118,0],[17172,17170,17176,0],[42068,17176,17177,0],[17171,17172,17129,0],[42064,17172,17179,0],[42064,17179,17130,0],[17173,17179,42067,0],[42067,17179,17176,0],[17130,17179,17173,0],[17136,17137,17180,0],[17180,17149,17169,0],[17180,17137,17149,0],[17149,17181,17169,0],[42068,17182,17167,0],[17167,17182,17180,0],[17135,17177,42373,0],[17183,42373,17184,0],[17183,17184,17185,0],[17186,42394,17206,0],[17206,42394,42396,0],[17206,42396,42405,0],[42405,42396,17187,0],[42404,17187,49982,0],[42404,49982,17188,0],[42407,17188,17205,0],[42407,17205,42408,0],[42408,42083,17204,0],[42382,17204,17189,0],[42383,17191,17202,0],[42383,17202,42393,0],[42393,17202,17192,0],[17192,17202,17195,0],[17192,17195,17193,0],[17192,17193,42390,0],[42390,17193,17194,0],[17193,17195,17201,0],[42403,42074,17196,0],[17197,17198,42332,0],[42332,17198,17199,0],[42333,17199,17200,0],[42333,17200,42077,0],[42077,17200,42084,0],[42084,17200,42384,0],[17195,17202,17201,0],[17201,17202,42074,0],[42074,17202,17196,0],[17197,17203,17190,0],[17197,17190,17198,0],[17199,17198,17200,0],[17190,17203,17191,0],[17203,17196,17191,0],[17191,17196,17202,0],[17200,17198,42384,0],[42384,17198,17190,0],[17205,49981,17234,0],[17205,17234,42408,0],[17186,17206,17207,0],[17183,17185,17208,0],[17208,17185,17207,0],[17207,17185,17186,0],[17135,42373,17183,0],[17137,17208,17209,0],[17137,17209,17210,0],[17210,17209,17211,0],[17194,17138,17211,0],[17138,17210,17211,0],[17123,17212,17213,0],[17212,17123,17124,0],[17212,17124,17125,0],[17213,17212,17122,0],[17212,17125,17122,0],[17214,17128,17216,0],[17214,17125,17127,0],[17214,17127,17128,0],[17119,17128,17120,0],[17120,42065,17111,0],[17120,17111,17119,0],[42376,17124,17123,0],[17213,17215,17123,0],[17103,17105,17217,0],[17217,17218,17101,0],[17217,17101,17102,0],[17283,42360,17220,0],[17221,17222,17282,0],[17282,17222,17223,0],[17282,17223,17275,0],[17281,17224,17225,0],[17281,17225,17283,0],[17101,17283,17102,0],[17102,17225,17226,0],[17226,17275,17273,0],[17226,17273,17227,0],[17249,17228,17263,0],[17248,17230,42341,0],[17248,42341,17246,0],[17229,17246,17250,0],[17231,17250,17247,0],[17231,17232,42096,0],[42096,17232,17233,0],[42096,17233,42089,0],[17233,17247,42399,0],[42095,42078,17235,0],[42078,42082,17234,0],[17234,42082,42083,0],[42083,42408,17234,0],[17234,49981,17235,0],[17235,49981,17244,0],[17236,17245,42087,0],[42087,17245,17237,0],[42090,17238,17239,0],[42090,17239,17240,0],[49982,17187,17241,0],[17241,17187,17242,0],[17242,17187,42396,0],[17243,17239,17244,0],[17241,17240,17243,0],[17243,17240,17239,0],[17244,17239,17245,0],[17244,17245,17236,0],[17245,17238,17237,0],[17244,17236,17235,0],[17234,17235,42078,0],[17250,17246,17247,0],[17247,17246,42337,0],[17247,42337,42399,0],[17231,17247,17232,0],[17249,17229,17250,0],[17249,17250,42372,0],[17251,17252,17253,0],[17258,17253,17252,0],[17258,17252,42370,0],[17260,42370,17254,0],[17260,17254,17255,0],[17263,17229,17249,0],[17249,17256,17228,0],[17228,17256,42362,0],[17257,17258,17259,0],[17255,42100,17260,0],[42100,17259,17260,0],[17260,17258,42370,0],[17259,17258,17260,0],[17253,17258,17261,0],[17257,17261,17258,0],[42009,17257,17262,0],[42099,17641,17107,0],[17249,42372,17256,0],[17248,17246,17229,0],[17266,17265,42292,0],[17266,42292,49979,0],[17270,17268,17269,0],[17270,17269,17163,0],[17266,17248,17265,0],[17265,17248,17229,0],[17265,17229,17263,0],[17265,17263,17264,0],[42346,17230,17272,0],[42346,17272,17271,0],[42346,17271,42344,0],[42344,17271,17270,0],[17270,17163,42331,0],[17270,17271,17268,0],[17267,17278,17271,0],[17271,17278,17268,0],[17267,17271,17272,0],[49979,17272,17266,0],[17272,17230,17266,0],[17266,17230,17248,0],[17227,17273,17264,0],[17227,17264,17228,0],[17263,17228,17264,0],[17273,17274,17264,0],[17283,17225,17102,0],[17226,17225,17224,0],[17280,17275,17223,0],[17280,17223,42290,0],[42290,17223,17276,0],[42289,17277,42299,0],[42289,42298,42293,0],[42293,42298,42296,0],[42293,42296,17162,0],[42289,42293,17268,0],[42288,17278,17267,0],[42288,17267,49979,0],[17276,17223,17279,0],[17279,17427,17277,0],[17277,17427,42299,0],[17277,42291,17276,0],[17277,17276,17279,0],[17226,17224,17275,0],[17274,17275,17280,0],[17264,42290,42292,0],[17264,42292,17265,0],[17275,17274,17273,0],[17224,17281,17282,0],[17282,17281,17221,0],[17282,17275,17224,0],[17221,17281,17220,0],[17220,17281,17283,0],[17284,17285,17089,0],[17089,17285,17090,0],[17284,17096,17285,0],[17285,17304,17090,0],[17090,17304,17286,0],[17286,17304,17343,0],[17285,17096,17097,0],[17285,17097,17304,0],[17288,42025,17289,0],[17303,17289,17290,0],[17302,17291,42013,0],[17302,42012,17656,0],[17298,17656,17292,0],[17292,17656,17293,0],[17294,42012,42356,0],[17295,17660,17296,0],[17296,17297,17295,0],[17295,17297,17101,0],[17295,17101,17218,0],[17300,17302,17298,0],[17298,42135,17301,0],[17301,42135,17299,0],[17299,42112,42113,0],[17300,42113,17303,0],[17299,42113,17301,0],[42113,17300,17301,0],[17298,17301,17300,0],[17302,17300,17303,0],[17303,17290,17302,0],[17290,17289,17291,0],[17290,17291,17302,0],[17097,17098,17287,0],[17097,17287,17304,0],[17304,17288,17339,0],[17339,17288,17305,0],[17306,17305,17289,0],[17343,17339,17307,0],[17343,17307,17308,0],[17092,17308,42148,0],[42138,17330,42137,0],[42140,17332,17311,0],[17312,17324,17313,0],[17313,17324,17321,0],[17313,17321,17046,0],[17313,17046,17048,0],[17314,17049,17318,0],[17049,17315,42141,0],[17094,17095,17316,0],[17316,17095,17320,0],[17320,17095,17315,0],[17315,17095,42141,0],[42141,17317,17318,0],[17318,17317,17319,0],[17319,41552,42139,0],[17312,42139,42140,0],[17312,42140,17311,0],[17319,42139,17313,0],[17319,17313,17048,0],[17048,17314,17319,0],[42141,17318,17049,0],[17319,17314,17318,0],[17049,17050,17315,0],[17051,17052,17320,0],[17320,17052,17316,0],[17046,17321,17044,0],[17321,17324,17322,0],[17038,17326,17327,0],[17038,17327,17037,0],[17037,17613,41546,0],[41546,17036,17037,0],[17321,17322,17323,0],[17323,17322,17039,0],[17038,17042,17323,0],[17323,17043,17044,0],[17323,17044,17321,0],[17041,17323,17042,0],[17322,17324,17325,0],[17326,17335,17327,0],[42148,17308,17307,0],[17338,17307,17328,0],[17338,17328,17329,0],[17341,17342,17330,0],[17331,42125,17332,0],[17332,42125,42131,0],[17332,42131,17333,0],[17334,17333,42127,0],[17334,42127,41551,0],[17335,41551,17336,0],[17335,17336,17337,0],[17335,17337,17327,0],[17335,17334,41551,0],[17333,42131,42127,0],[17311,17332,17333,0],[17326,17311,17335,0],[17335,17311,17334,0],[17334,17311,17333,0],[17326,17325,17311,0],[17324,17312,17325,0],[17325,17312,17311,0],[17332,42140,17331,0],[17331,42140,42137,0],[17331,42137,17330,0],[42148,17307,17309,0],[17309,17307,17338,0],[17309,17338,17310,0],[17310,17338,17329,0],[17310,17329,42138,0],[42138,17329,17341,0],[17339,17343,17304,0],[17339,17305,17328,0],[17328,17305,17306,0],[17328,17306,17340,0],[17329,17340,42114,0],[17329,42114,17341,0],[17341,42114,17342,0],[17328,17307,17339,0],[17328,17340,17329,0],[17092,42148,17093,0],[17308,17092,17343,0],[17074,17073,42176,0],[42176,17073,17428,0],[42176,17428,42172,0],[42172,17428,17344,0],[42172,17344,42360,0],[42172,42360,17219,0],[42172,17219,17100,0],[17072,17071,17345,0],[17072,17345,17346,0],[17346,17345,17222,0],[17346,17221,17347,0],[17347,17221,17220,0],[17347,17220,17344,0],[17344,17220,42360,0],[17221,17346,17222,0],[17425,17426,42258,0],[17349,42257,17350,0],[17350,42257,42039,0],[17350,42039,42287,0],[42287,42039,42037,0],[42287,42037,17351,0],[17351,17421,17423,0],[17423,17419,17422,0],[17422,17419,17352,0],[17352,17355,17353,0],[17422,17353,17157,0],[17422,17157,17158,0],[17422,17158,17159,0],[17157,17353,17354,0],[17156,17354,17355,0],[17156,17355,42324,0],[17156,42324,17153,0],[17153,42324,17155,0],[17354,17353,17355,0],[42324,17356,17357,0],[17357,17356,17358,0],[17358,17356,17416,0],[17358,17416,17359,0],[17359,17360,42313,0],[42313,17360,17361,0],[17361,17360,17403,0],[17362,17363,42301,0],[42301,17363,17412,0],[42301,17412,17364,0],[42302,17365,17366,0],[17366,42262,42263,0],[17366,42263,42307,0],[42307,42263,17367,0],[17367,42349,42311,0],[42349,42347,42310,0],[17369,17368,17763,0],[17369,17763,17116,0],[17116,17763,17117,0],[17370,17765,17113,0],[17113,42410,17112,0],[17112,42410,17371,0],[17111,17767,17747,0],[17111,42065,17767,0],[17767,42065,17371,0],[17360,17359,17372,0],[17372,17373,17374,0],[17374,17373,17420,0],[17375,17420,17376,0],[17375,17376,17378,0],[17378,17376,17377,0],[17378,17377,17379,0],[17378,17379,17380,0],[17380,17379,17431,0],[17380,17431,42053,0],[17402,42053,17413,0],[17405,17413,42281,0],[17405,42281,17401,0],[17401,42281,17381,0],[17382,17851,17383,0],[17383,17851,17848,0],[17383,17848,17384,0],[17384,17385,17386,0],[17386,17385,17387,0],[17391,17396,17395,0],[17391,17395,17392,0],[42278,17392,17393,0],[42278,17393,42277,0],[42277,17393,17723,0],[10950,17393,17395,0],[17396,17397,17394,0],[17394,17397,10948,0],[10947,17389,10946,0],[10947,10948,17397,0],[17392,17395,17393,0],[42260,17390,17396,0],[17396,17390,17397,0],[17397,17390,10947,0],[10947,17390,17389,0],[17387,17399,17388,0],[17388,17399,17398,0],[17388,17398,17410,0],[17410,17398,17389,0],[17387,17385,17399,0],[17399,17385,10944,0],[10944,17385,17849,0],[10944,17849,10943,0],[17399,10945,17398,0],[17398,10945,10946,0],[17398,10946,17389,0],[17384,17386,17383,0],[17386,17387,42280,0],[17386,42280,17400,0],[17400,42280,17405,0],[17400,17405,17401,0],[17400,17401,17383,0],[17382,17383,17381,0],[17381,17383,17401,0],[17383,17386,17400,0],[42053,17402,17380,0],[17380,17402,17414,0],[17414,17402,17404,0],[17404,17406,17403,0],[17403,17406,17361,0],[17361,17406,17362,0],[17405,17406,17404,0],[17363,17407,17408,0],[17389,17390,17410,0],[17410,17390,17411,0],[17410,17411,17409,0],[17409,17411,17412,0],[17407,17363,17362,0],[17363,17408,17412,0],[17412,17408,17409,0],[17404,17402,17413,0],[17404,17413,17405,0],[17378,17380,17414,0],[17378,17414,17375,0],[17375,42259,17420,0],[17420,42259,17374,0],[17356,17415,17416,0],[17416,17415,17418,0],[17416,17418,17372,0],[17372,17418,17373,0],[17372,17359,17416,0],[17355,17415,17356,0],[17356,42324,17355,0],[17355,17352,17415,0],[17415,17352,17417,0],[17415,17417,17418,0],[17417,17352,17419,0],[17417,17419,17420,0],[17417,17420,17418,0],[17419,17423,17421,0],[17419,17421,17420,0],[17373,17418,17420,0],[17420,17421,42036,0],[42036,17421,17351,0],[17423,17422,17159,0],[17423,17159,42300,0],[42300,17159,17160,0],[42300,17160,42294,0],[42294,17160,42295,0],[42295,17160,17161,0],[17353,17422,17352,0],[17424,17427,17425,0],[17426,17425,17279,0],[17426,17279,17348,0],[17348,17279,17223,0],[17348,17223,17345,0],[17345,17223,17222,0],[17345,17071,17348,0],[17348,17071,17426,0],[17071,17070,17426,0],[17072,17346,17347,0],[17072,17347,17428,0],[17347,17344,17428,0],[17428,17073,17072,0],[17071,17072,17088,0],[42052,17430,42246,0],[42052,42246,17431,0],[17431,42246,17432,0],[17432,42246,42247,0],[17382,17433,17851,0],[17382,17381,17433,0],[17433,17381,17432,0],[17429,17434,17430,0],[17430,17434,17473,0],[17473,17434,42245,0],[42245,17434,17059,0],[42245,17059,17058,0],[17059,17434,17060,0],[17060,17435,17058,0],[17058,17059,17060,0],[17457,17456,42171,0],[17469,17438,17465,0],[17459,17458,17505,0],[17439,17505,42411,0],[17439,42411,17449,0],[17439,17449,17440,0],[17439,17440,17835,0],[17835,17440,17441,0],[17838,17441,10905,0],[17442,10905,17441,0],[17441,17449,17442,0],[17448,17443,17444,0],[41553,17898,17446,0],[41553,17446,41554,0],[41559,17447,10901,0],[17045,17447,41554,0],[17444,17445,17448,0],[17443,17448,17837,0],[17443,17837,17442,0],[17442,17837,10905,0],[17449,17441,17440,0],[17449,42411,17442,0],[17450,17439,17475,0],[17475,17477,17451,0],[17451,17477,17452,0],[17478,17482,17474,0],[17474,17482,17453,0],[17455,17463,17464,0],[17459,17464,17456,0],[17459,17456,17458,0],[17458,17456,17457,0],[17465,17438,17457,0],[17438,17458,17457,0],[17455,17464,17460,0],[17454,17453,17455,0],[17455,17453,17461,0],[17462,17461,42244,0],[17435,17462,17058,0],[17462,17435,17057,0],[17462,17057,17464,0],[17462,17463,17461,0],[17461,17463,17455,0],[17463,17462,17464,0],[17456,17464,17057,0],[17466,42171,17467,0],[17466,17467,17468,0],[17468,17467,17056,0],[17466,17468,17465,0],[17465,17468,17469,0],[17437,17469,17468,0],[17437,17468,17470,0],[17470,17468,17056,0],[17437,17470,17436,0],[17472,17853,17471,0],[17471,17853,17852,0],[17471,17852,17433,0],[17433,17432,17471,0],[17472,17473,17480,0],[17480,17473,42245,0],[42245,42244,17461,0],[42245,17461,17482,0],[42245,17482,17480,0],[17474,17453,17451,0],[17474,17451,17452,0],[17452,17478,17474,0],[17453,17454,17451,0],[17451,17454,17475,0],[17475,17454,17450,0],[17439,17450,17505,0],[17475,17439,17835,0],[17475,17835,17476,0],[17478,17479,17482,0],[17479,17481,17480,0],[17480,17481,17472,0],[17479,17480,17482,0],[17461,17453,17482,0],[17476,17477,17475,0],[17436,17054,17483,0],[17436,17483,17437,0],[17437,17483,42248,0],[17437,42248,17469,0],[17486,17485,17052,0],[17486,17052,17051,0],[17051,17487,17504,0],[17444,17504,17487,0],[17898,17488,17050,0],[17898,17050,17446,0],[17446,17050,17489,0],[17047,17489,17314,0],[17444,17487,17445,0],[17445,17487,17488,0],[17445,17488,17898,0],[17446,17489,17047,0],[17446,17047,17045,0],[17045,41560,17490,0],[17045,17490,17447,0],[17447,17490,10901,0],[17491,17502,10899,0],[17502,17017,17016,0],[17502,17016,10898,0],[10898,17016,17492,0],[10898,17492,17501,0],[17501,17492,17015,0],[17015,17496,17493,0],[10894,10895,17494,0],[17494,10895,17495,0],[10894,17500,17498,0],[17498,17500,17906,0],[17906,17500,17499,0],[17499,17500,42178,0],[17499,42178,17014,0],[10894,17498,10893,0],[17497,17500,17493,0],[17497,17493,17496,0],[17493,17500,17494,0],[17501,17015,17493,0],[17491,10901,17503,0],[17491,17503,17017,0],[17491,17017,17502,0],[17017,17503,17018,0],[17018,17503,17490,0],[17018,17490,41560,0],[17490,17503,10901,0],[10899,10900,17491,0],[17491,10900,10901,0],[17045,41554,17446,0],[17051,17504,17486,0],[17504,17444,17486,0],[17486,17444,17443,0],[17486,17443,17484,0],[17484,17443,42249,0],[42411,42249,17442,0],[17442,42249,17443,0],[17051,17320,17487,0],[17487,17320,17506,0],[17487,17506,17488,0],[17488,17506,17050,0],[17484,42248,17483,0],[17483,17485,17484,0],[17040,41544,17020,0],[17020,41544,17507,0],[17509,17508,17608,0],[11078,17509,17510,0],[17511,17510,17512,0],[42151,17513,42152,0],[42152,17513,17514,0],[17514,17616,42149,0],[17590,17591,17515,0],[17589,17515,17516,0],[17589,17516,17517,0],[17517,17516,42106,0],[17517,42106,17585,0],[17586,17585,17518,0],[17518,17623,17519,0],[17521,17520,41330,0],[17521,41330,17522,0],[17521,17522,17523,0],[17535,17523,17524,0],[17524,17594,17596,0],[17532,17596,17529,0],[17529,11063,17528,0],[17528,11063,11064,0],[17535,17524,17534,0],[17534,17524,17531,0],[17552,17525,17541,0],[17541,17525,17526,0],[17541,17526,17550,0],[17527,17526,17533,0],[41948,17527,17530,0],[41948,17530,17528,0],[17529,17528,17530,0],[17529,17530,17532,0],[17532,17530,17533,0],[17532,17533,17531,0],[17531,17533,17525,0],[17596,17532,17524,0],[17532,17531,17524,0],[17533,17530,17527,0],[17526,17525,17533,0],[17521,17523,17535,0],[17535,17534,17536,0],[17536,17534,17537,0],[17554,17538,17520,0],[17520,17538,17539,0],[17539,17538,17540,0],[17579,17540,17541,0],[17579,17541,17551,0],[17579,17551,17542,0],[17548,11073,17572,0],[17572,11073,17543,0],[17546,17545,17547,0],[11076,16895,17575,0],[17575,16895,17576,0],[42155,17568,11077,0],[11077,17511,17512,0],[17544,17543,11075,0],[17549,11073,17548,0],[17549,17550,17526,0],[17549,17526,11072,0],[11072,17526,17527,0],[17548,17542,17549,0],[17549,17542,17551,0],[17554,17553,17538,0],[17554,17537,17553,0],[17553,17537,17531,0],[17553,17531,17525,0],[17531,17537,17534,0],[17538,17553,17540,0],[17540,17552,17541,0],[17541,17550,17551,0],[17551,17550,17549,0],[17539,17540,17519,0],[17555,17586,17518,0],[17555,17518,17519,0],[17519,17540,17555,0],[42107,17556,17578,0],[42107,17578,17557,0],[17557,17558,17559,0],[17559,17558,17560,0],[17560,17570,17582,0],[17582,17570,17569,0],[17581,42154,42164,0],[17566,17581,17561,0],[17566,42437,17587,0],[17587,42437,17583,0],[17583,42437,17562,0],[17592,42438,17590,0],[17590,42438,17564,0],[42164,17565,17561,0],[17561,17581,42164,0],[17593,17582,17567,0],[17567,17582,17569,0],[17570,17571,17573,0],[17573,17572,17543,0],[17573,17543,17544,0],[17544,17545,17573,0],[17573,17545,17546,0],[11076,17574,17547,0],[17547,17574,17546,0],[17573,17546,17570,0],[17570,17546,17569,0],[17569,17574,17567,0],[17569,17546,17574,0],[17574,17575,17567,0],[17567,17575,42168,0],[11076,17575,17574,0],[17575,17576,17568,0],[17548,17572,17577,0],[17548,17577,17580,0],[17557,17578,17558,0],[17558,17577,17571,0],[17573,17571,17572,0],[17572,17571,17577,0],[17577,17558,17580,0],[17580,17558,17578,0],[17558,17571,17560,0],[17560,17571,17570,0],[17578,17556,17580,0],[17580,17556,17579,0],[17579,17542,17580,0],[17556,17555,17579,0],[17540,17579,17555,0],[17593,17581,17587,0],[17593,17587,17582,0],[17560,17582,17587,0],[17560,17587,17583,0],[42107,17583,17588,0],[42107,17588,17584,0],[17584,17588,17517,0],[17584,17517,17585,0],[17584,17585,17586,0],[17584,17586,42107,0],[42107,17586,17556,0],[17556,17586,17555,0],[17559,17583,17557,0],[17557,17583,42107,0],[17583,17562,17588,0],[17589,17592,17590,0],[17591,17590,17564,0],[17591,17564,42149,0],[17590,17515,17589,0],[17589,17517,17563,0],[17589,17563,17592,0],[17563,17517,17588,0],[17587,17581,17566,0],[17581,17593,42154,0],[17535,17536,17521,0],[17554,17520,17521,0],[17554,17521,17536,0],[17537,17554,17536,0],[17523,17600,17595,0],[17523,17595,17524,0],[17524,17595,17594,0],[17595,17600,17597,0],[17595,17597,17594,0],[17529,17596,11063,0],[11063,17596,11062,0],[11062,17596,17594,0],[11062,17594,17597,0],[11062,17597,17598,0],[17598,17597,17599,0],[17599,17597,17600,0],[17600,17523,17786,0],[17786,17523,17522,0],[17786,17522,17602,0],[17786,17602,17601,0],[17602,41328,17699,0],[17699,41328,17603,0],[41329,17606,17605,0],[17605,17604,41329,0],[17512,17510,42151,0],[42151,17510,17608,0],[17509,17608,17510,0],[17690,17610,17611,0],[17690,17611,17612,0],[17614,17613,17337,0],[17337,17613,17037,0],[17337,17037,17327,0],[17619,17516,17515,0],[17619,17515,17591,0],[17591,42149,17616,0],[17591,17616,17617,0],[17619,17591,17617,0],[17617,17616,17689,0],[17617,17689,17618,0],[17618,17689,17612,0],[17614,17615,17618,0],[17614,17618,17613,0],[17613,17618,17612,0],[17619,17617,17615,0],[17618,17615,17617,0],[17516,17619,42105,0],[42105,17619,17620,0],[42105,17620,17676,0],[42105,17676,17621,0],[42105,17621,17678,0],[42106,17678,17622,0],[17622,17623,17518,0],[17518,17585,17622,0],[17622,17585,42106,0],[17624,41549,41550,0],[17624,42129,17625,0],[17625,42123,42117,0],[17685,17686,42118,0],[17685,42118,17626,0],[17626,42118,42132,0],[17626,42132,17627,0],[17626,17627,17628,0],[17629,42367,17630,0],[17731,17630,17728,0],[17728,17631,17738,0],[17738,17631,17773,0],[17773,17652,17772,0],[17772,17652,17669,0],[17772,17669,17771,0],[17669,17642,17632,0],[17777,17632,17633,0],[17777,17633,17634,0],[17634,17633,17635,0],[17636,17635,17637,0],[17636,17637,17769,0],[17769,17637,42061,0],[42061,17637,17638,0],[42061,17638,42060,0],[17640,17641,17108,0],[17108,17109,17640,0],[17640,17109,17639,0],[17632,17642,17644,0],[17632,17644,17643,0],[17638,17633,17643,0],[17638,17643,17644,0],[17638,17644,42060,0],[42060,17644,17645,0],[17639,17645,17646,0],[17646,17667,42364,0],[17667,17658,42364,0],[42364,17658,17647,0],[42364,17647,17648,0],[17648,17649,42368,0],[42368,17649,17106,0],[17106,17649,42011,0],[17105,42011,17217,0],[17639,17646,17640,0],[17633,17638,17637,0],[17633,17637,17635,0],[17643,17633,17632,0],[17728,17630,17631,0],[17631,17630,42367,0],[17631,42367,17651,0],[17651,42367,17650,0],[17627,17650,17628,0],[17628,17650,17629,0],[17629,17650,42367,0],[17631,17651,17773,0],[17651,17653,17652,0],[17654,42134,17663,0],[17663,42134,17655,0],[17655,17664,17657,0],[17656,17298,17302,0],[17664,17298,17292,0],[17664,17292,17657,0],[17657,17292,17661,0],[17658,17668,17647,0],[17659,17294,17660,0],[17660,17294,42356,0],[17659,17647,17294,0],[17647,17659,17648,0],[17662,17666,17663,0],[17663,17655,17662,0],[17662,17655,17657,0],[17661,17662,17657,0],[17661,17665,17662,0],[17644,17642,17665,0],[17665,17642,17666,0],[17663,17666,17654,0],[17666,17662,17665,0],[17654,17666,17672,0],[17644,17646,17645,0],[17644,17665,17646,0],[17646,17665,17667,0],[17665,17661,17667,0],[17658,17667,17668,0],[17668,17667,17661,0],[17668,17661,17292,0],[17292,17293,17668,0],[17668,17294,17647,0],[17294,17668,17293,0],[17298,17664,42135,0],[17773,17651,17652,0],[17652,17653,17669,0],[17653,17672,17669,0],[17651,17670,17653,0],[17651,17650,17670,0],[17670,17671,17653,0],[17653,17671,17672,0],[17672,17671,17673,0],[17675,42112,17299,0],[17675,17299,42109,0],[17676,17677,17621,0],[17681,17687,17680,0],[17680,17687,17626,0],[17626,17628,17680,0],[17680,17628,17629,0],[17680,17629,17681,0],[17684,41331,17623,0],[17684,17623,17622,0],[17683,41331,17682,0],[17682,41331,17684,0],[17682,17684,17681,0],[17681,17684,17687,0],[17687,17684,17679,0],[17684,17622,17679,0],[17679,17622,17678,0],[17682,17681,17607,0],[42117,17686,17677,0],[42117,17677,17625,0],[17625,17676,17624,0],[17676,17625,17677,0],[17621,17677,17678,0],[17678,17685,17679,0],[17679,17685,17626,0],[17679,17626,17687,0],[17677,17686,17678,0],[17678,17686,17685,0],[17624,17676,17620,0],[17513,17609,17610,0],[17513,17610,17690,0],[17688,17689,17616,0],[17612,17689,17690,0],[17689,17688,17690,0],[17690,17688,17513,0],[17688,17616,17514,0],[42151,17608,17609,0],[17020,17692,17028,0],[17691,11080,11081,0],[17691,11081,17692,0],[17692,11081,17028,0],[11081,11082,17028,0],[17509,17691,17508,0],[17691,17692,17508,0],[17508,17692,17507,0],[17692,17020,17507,0],[41951,17693,11071,0],[11071,17693,17694,0],[11071,17694,17696,0],[17694,17695,11074,0],[17694,11074,17696,0],[17696,11074,11073,0],[17696,11072,11071,0],[11074,17695,11075,0],[16907,17695,17694,0],[17697,11070,11069,0],[17697,11069,17698,0],[11070,17697,17693,0],[17693,17697,17694,0],[17694,17697,16907,0],[16907,17697,16908,0],[16908,17697,17698,0],[17698,16922,16909,0],[17700,17784,17699,0],[17699,17784,17601,0],[17699,17601,17602,0],[17603,17604,17699,0],[17699,17604,17700,0],[17701,17700,17702,0],[17701,17702,17730,0],[17701,17730,17703,0],[17703,17730,17726,0],[17703,17726,17704,0],[17703,17704,17705,0],[17705,17704,17733,0],[17705,17733,10960,0],[17733,17709,10958,0],[17709,17733,17735,0],[17709,17735,17736,0],[10955,10956,17706,0],[10955,17706,10953,0],[10953,17706,17720,0],[10953,17720,10952,0],[10951,17707,17723,0],[10951,17723,17815,0],[17815,17723,10950,0],[10950,17395,42055,0],[10950,17723,17393,0],[17723,17707,17722,0],[17722,17707,10952,0],[10956,17708,17736,0],[17709,17708,17792,0],[17708,17709,17736,0],[10956,17736,17710,0],[17710,17736,17711,0],[17711,17737,17713,0],[17711,17713,17712,0],[17712,17713,17714,0],[17715,42059,17716,0],[17717,17718,17719,0],[17706,17719,17720,0],[10952,17720,42056,0],[42056,17720,17719,0],[42056,17719,17721,0],[17718,17721,17719,0],[10952,42056,17722,0],[17723,17722,42277,0],[17716,17714,17715,0],[17712,17714,17724,0],[17711,17712,17710,0],[17710,17712,17724,0],[17719,17724,17714,0],[17719,17714,17717,0],[17717,17714,17716,0],[17719,17706,17724,0],[17724,17706,17710,0],[17710,17706,10956,0],[17714,17713,17715,0],[17725,17734,17779,0],[17779,17734,17726,0],[17727,17726,17729,0],[17727,17729,17728,0],[17728,17729,17731,0],[17731,17729,17730,0],[17731,17730,17702,0],[17731,17702,17605,0],[17731,17605,17732,0],[17681,17629,17607,0],[17629,17630,17732,0],[17732,17630,17731,0],[17733,17704,17735,0],[17729,17726,17730,0],[17726,17734,17704,0],[17735,17711,17736,0],[17711,17735,17737,0],[17734,17737,17704,0],[17704,17737,17735,0],[17728,17738,17727,0],[17727,17738,17774,0],[17727,17774,17778,0],[17778,17774,17739,0],[17778,17739,17783,0],[17783,17739,17740,0],[17740,17739,17741,0],[17740,17741,17742,0],[17742,17741,17634,0],[17743,17742,17770,0],[17743,17770,17744,0],[17744,17636,17745,0],[17768,17746,17747,0],[17746,42062,17747,0],[17121,42062,17110,0],[42409,17749,17750,0],[17750,17749,17751,0],[17759,17753,42273,0],[17759,42273,17758,0],[17758,42273,17754,0],[17754,17755,17718,0],[17718,17755,17721,0],[17754,17718,17717,0],[17717,17782,17758,0],[42355,17742,42352,0],[42352,17742,17743,0],[42353,17743,17744,0],[42409,17750,17748,0],[17745,17748,17750,0],[17745,17750,17744,0],[42355,42352,42353,0],[42355,42353,17756,0],[17758,17757,17759,0],[17757,17758,17782,0],[17757,17782,17780,0],[42351,17753,17752,0],[17757,17756,17760,0],[17757,17760,17761,0],[17761,17760,17751,0],[17761,17751,17766,0],[17766,17752,17761,0],[17761,17752,17753,0],[17761,17753,17759,0],[17761,17759,17757,0],[17751,17749,17766,0],[17752,17766,17764,0],[17752,17764,17762,0],[17763,17762,17117,0],[17763,17368,42350,0],[17763,42350,17762,0],[17762,17764,17765,0],[17765,42410,17113,0],[17765,17370,17762,0],[17370,17117,17762,0],[17765,17764,17766,0],[17765,17766,17749,0],[17765,17749,42410,0],[17747,17767,17768,0],[17768,17767,17371,0],[17768,17371,17748,0],[17748,17371,42409,0],[17636,17769,17745,0],[17745,17769,42061,0],[17745,42061,17768,0],[17770,17636,17744,0],[17770,17742,17634,0],[17771,17775,17772,0],[17772,17775,17774,0],[17772,17774,17773,0],[17773,17774,17738,0],[17739,17774,17741,0],[17774,17775,17741,0],[17741,17775,17776,0],[17741,17776,17634,0],[17634,17776,17777,0],[17777,17776,17771,0],[17771,17776,17775,0],[17771,17669,17777,0],[17777,17669,17632,0],[17634,17635,17770,0],[17770,17635,17636,0],[17727,17778,17726,0],[17726,17778,17779,0],[17725,17779,42057,0],[17725,42057,17715,0],[17715,42057,42059,0],[17716,42059,17780,0],[42058,17783,17740,0],[17782,17717,17716,0],[17780,17782,17716,0],[17779,17778,17783,0],[17713,17737,17725,0],[17725,17737,17734,0],[17725,17715,17713,0],[17733,10958,10960,0],[17703,17705,17701,0],[17702,17700,17605,0],[17605,17700,17604,0],[17784,17785,17601,0],[17601,17785,17786,0],[17786,17785,17787,0],[17600,17787,17791,0],[17600,17791,17599,0],[17600,17786,17787,0],[17784,10962,17787,0],[17784,17787,17785,0],[17789,17787,17788,0],[10962,17790,17788,0],[10962,17788,17787,0],[17788,41181,17789,0],[17789,41181,11061,0],[17789,11061,17791,0],[17791,11061,17599,0],[17791,17787,17789,0],[10956,10955,42000,0],[10956,42000,17792,0],[10957,17792,17793,0],[42007,17795,17796,0],[17794,42007,17796,0],[17794,17796,17797,0],[10959,17797,17798,0],[17800,17798,17799,0],[17799,10961,17800,0],[17797,10959,17794,0],[17794,10959,10957,0],[17794,10957,17793,0],[10959,17798,17800,0],[17799,17798,17801,0],[17799,17801,17816,0],[10963,17801,17802,0],[10963,17802,10989,0],[17803,17805,17804,0],[17804,17805,41972,0],[17805,17803,17806,0],[17796,42102,17801,0],[17796,17801,17797,0],[17797,17801,17798,0],[42102,17796,17795,0],[42102,17795,17806,0],[17806,17795,42006,0],[17806,42001,17807,0],[17807,42001,42002,0],[17810,17811,41969,0],[41982,41969,17811,0],[17811,41984,41983,0],[17812,17815,41985,0],[17811,17810,41984,0],[17809,17808,17813,0],[17809,17813,17810,0],[41984,17810,17812,0],[17812,17810,17813,0],[10951,17813,42005,0],[10951,42005,17814,0],[10951,17814,17707,0],[10951,17815,17813,0],[17815,17812,17813,0],[17817,11058,17816,0],[17816,11058,10962,0],[17816,17801,17817,0],[17817,17801,10963,0],[10989,17802,17818,0],[17818,17802,17803,0],[17803,17804,17818,0],[17803,17802,42102,0],[17803,42102,17806,0],[42055,17394,10949,0],[17396,17394,42055,0],[17396,42055,17395,0],[10928,10855,10933,0],[10910,10911,10914,0],[10914,10911,10915,0],[10915,10911,10916,0],[17820,10917,17821,0],[17822,17821,17823,0],[41557,17823,17821,0],[10917,10916,17821,0],[10917,17820,10896,0],[10896,17820,10919,0],[10919,17820,10918,0],[10918,17820,10899,0],[10916,10912,17821,0],[17870,17828,17829,0],[17829,10921,10922,0],[10906,42186,17825,0],[10906,17825,17830,0],[17834,17825,17832,0],[17834,17838,17831,0],[17834,17832,17835,0],[17834,17835,17441,0],[17476,17835,17832,0],[17834,17441,17838,0],[17831,17838,17836,0],[10907,17836,10905,0],[10905,17836,17838,0],[10904,10905,17837,0],[17831,17830,17834,0],[17834,17830,17825,0],[17839,42186,17826,0],[42186,17839,17825,0],[17832,17825,17833,0],[17833,17893,17452,0],[17479,17859,17890,0],[17890,17859,17841,0],[17842,17841,17861,0],[17842,17861,17843,0],[17843,17861,17844,0],[17844,17857,17845,0],[17846,10941,17847,0],[17846,17847,17855,0],[17855,17847,17850,0],[17850,17847,17848,0],[17848,17847,17849,0],[17848,17849,17384,0],[17384,17849,17385,0],[10943,17849,17847,0],[10943,17847,10941,0],[17850,17848,17851,0],[17850,17851,17854,0],[17854,17851,17433,0],[17854,17433,17852,0],[17472,17481,17853,0],[17852,17853,17854,0],[17854,17853,17843,0],[17854,17843,17844,0],[17854,17844,17855,0],[17855,17844,17846,0],[17846,17844,17845,0],[17854,17855,17850,0],[10941,17846,17845,0],[17856,17845,17857,0],[17856,17857,17858,0],[17858,17857,10940,0],[10940,17857,17862,0],[17874,17859,17860,0],[17860,17859,17479,0],[17860,17479,17478,0],[17844,17861,17857,0],[17874,17862,17841,0],[17874,17841,17859,0],[17841,17862,17861,0],[17861,17862,17857,0],[10940,17862,17863,0],[17863,17862,17875,0],[42415,17876,17864,0],[42415,17864,17896,0],[17826,17827,42416,0],[17866,17867,17883,0],[17883,17867,17872,0],[17883,17872,17868,0],[17883,17868,17884,0],[41501,17884,17868,0],[41501,17868,10926,0],[10926,17868,17873,0],[10924,10926,17873,0],[10924,17871,17869,0],[17869,17870,17829,0],[17869,17829,10922,0],[17869,10922,10923,0],[17867,17871,17872,0],[17872,17871,10924,0],[17869,17871,17870,0],[17868,17872,17873,0],[10924,17873,17872,0],[17827,17828,42416,0],[42416,17828,17865,0],[17865,17828,17870,0],[17865,17870,17867,0],[17826,42416,17896,0],[17896,42416,42415,0],[17875,17862,17874,0],[17875,17874,17876,0],[17876,17874,17860,0],[17876,17860,17864,0],[17863,17875,17882,0],[17882,17875,17876,0],[17882,17876,17878,0],[17878,17876,17877,0],[17878,17877,17879,0],[17878,17879,17882,0],[17882,17879,17881,0],[17882,17881,17880,0],[17880,17881,10936,0],[10936,10937,17880,0],[10938,17882,17880,0],[17882,10938,17863,0],[17877,17876,17883,0],[17884,17879,17877,0],[17884,17877,17883,0],[17886,17885,41502,0],[41502,10933,17886,0],[17886,10933,10934,0],[17886,10934,17887,0],[17879,17885,17881,0],[17881,17885,17888,0],[17888,17885,17886,0],[17888,17886,17887,0],[17888,17887,17889,0],[17888,17889,10936,0],[17888,10936,17881,0],[17841,17842,17890,0],[17890,17842,17481,0],[17481,17842,17853,0],[17481,17479,17890,0],[17840,17478,17452,0],[17452,17477,17833,0],[17825,17839,17833,0],[17860,17840,17891,0],[17860,17891,17864,0],[17860,17478,17840,0],[17893,17840,17452,0],[17893,17892,17891,0],[17891,17840,17893,0],[17893,17833,17892,0],[17892,17833,17839,0],[17839,17826,17892,0],[17892,17826,17894,0],[17894,17891,17892,0],[17895,17896,17864,0],[17864,17891,17895,0],[17895,17891,17894,0],[17895,17894,17896,0],[17896,17894,17826,0],[10906,10908,17897,0],[17897,10908,17824,0],[17897,17824,41992,0],[10903,17899,41557,0],[41557,41558,10904,0],[17445,17898,17899,0],[17445,17899,17448,0],[10892,10891,17499,0],[17499,10891,17906,0],[17498,17907,42243,0],[10920,42243,17900,0],[17900,17905,42184,0],[42184,17905,42185,0],[42185,17904,10922,0],[10922,17904,10923,0],[42243,17907,17900,0],[42185,17905,17904,0],[10923,17901,10925,0],[17902,10888,17903,0],[17903,17819,10927,0],[17903,10927,17902,0],[17902,10927,10925,0],[10925,10924,10923,0],[17819,17903,10929,0],[10929,17903,10931,0],[10931,17903,10888,0],[10888,17902,17914,0],[17914,17902,10925,0],[17914,10925,17901,0],[10889,17905,10890,0],[10890,17905,17900,0],[10890,17900,17907,0],[10889,17914,17905,0],[17905,17914,17901,0],[10923,17904,17901,0],[17901,17904,17905,0],[17907,17498,17906,0],[17906,10891,17907,0],[10854,10930,10857,0],[10857,10930,10858,0],[17909,17918,10882,0],[10859,17918,17910,0],[17910,17918,17911,0],[17912,17911,17917,0],[17912,10891,17913,0],[17913,10891,10892,0],[10891,17912,10890,0],[17912,17917,10890,0],[10890,42182,10889,0],[10889,42182,17914,0],[10859,17910,10860,0],[17908,17916,17909,0],[17909,17916,17911,0],[17911,17916,17917,0],[10854,10856,17939,0],[17943,10879,17942,0],[17942,10879,17919,0],[10828,10826,10827,0],[17925,17922,17921,0],[17922,17923,16994,0],[16994,16993,17922,0],[17924,17923,17920,0],[10826,10847,41516,0],[41516,17924,10824,0],[10824,17924,17920,0],[17920,17922,17925,0],[17926,17925,17928,0],[17926,17928,17929,0],[17929,17927,10819,0],[10819,10820,17929,0],[17929,10820,17932,0],[17929,17932,17926,0],[17925,17921,17928,0],[11105,17927,11108,0],[11108,17927,11104,0],[11104,17927,17929,0],[17922,16993,17921,0],[10850,17924,10847,0],[41516,10847,17924,0],[10825,41516,10824,0],[10824,17920,10822,0],[10822,17920,17930,0],[10822,17930,17931,0],[10821,17931,17932,0],[10821,17932,10820,0],[10845,10851,10846,0],[10846,10851,10848,0],[10851,10845,17008,0],[17008,10845,10843,0],[10852,17934,10853,0],[10853,17934,17940,0],[17940,17934,17933,0],[17940,17933,42242,0],[42242,17933,17937,0],[41540,17937,17933,0],[41540,17933,17934,0],[41540,17934,17935,0],[17935,17934,10852,0],[17935,10852,17936,0],[17935,17936,10837,0],[10837,17936,10843,0],[10837,10842,17935,0],[17935,10836,41540,0],[17937,41540,41498,0],[17941,41498,17938,0],[17942,17938,41497,0],[17942,41497,17943,0],[17943,41497,17939,0],[17941,42242,41498,0],[41498,42242,17937,0],[17941,17938,17942,0],[10856,17943,17939,0],[10852,17007,17936,0],[17936,17007,10843,0],[10843,10844,10837,0],[10833,10834,10840,0],[10840,10834,10841,0],[10841,10834,10836,0],[10826,41516,10827,0],[10827,17944,17945,0],[10844,17945,17946,0],[10829,17946,17947,0],[10829,17947,10830,0],[10830,17948,10832,0],[10832,17948,17949,0],[10832,17949,41477,0],[41487,41528,17952,0],[41487,17952,17951,0],[17954,17953,17955,0],[17964,17955,17956,0],[17964,17956,41512,0],[17957,41916,17958,0],[17994,17958,41503,0],[17994,41503,17959,0],[17959,17960,17961,0],[18005,17961,41504,0],[18005,41504,17962,0],[17962,41504,17963,0],[41532,41515,10825,0],[41532,10823,17963,0],[17963,10823,17962,0],[17964,17996,17955,0],[17955,17996,17954,0],[17954,17996,17969,0],[17970,17969,17965,0],[17966,17965,11724,0],[17968,17967,17996,0],[17965,17969,11724,0],[17996,17967,17969,0],[17969,17967,11724,0],[17954,17969,17953,0],[17953,17969,17970,0],[17953,17970,17984,0],[17984,17970,17966,0],[17984,17966,17971,0],[41509,17971,17972,0],[11721,41465,41535,0],[41535,41465,17974,0],[41535,17974,41484,0],[41484,17974,41496,0],[41484,41496,41064,0],[41064,41496,17975,0],[17975,41462,41035,0],[41035,41461,17976,0],[17976,17977,41034,0],[40928,17978,17979,0],[40928,17979,17980,0],[40928,17980,17981,0],[17981,17980,17982,0],[41460,17983,17977,0],[41460,17977,17976,0],[41034,17977,17978,0],[17978,17977,17983,0],[17978,17983,17979,0],[11721,41506,17973,0],[17953,17984,17952,0],[17952,17984,41510,0],[41510,17984,41509,0],[41509,17984,17971,0],[17970,17965,17966,0],[11729,17966,11724,0],[10774,17986,17999,0],[10774,17999,17987,0],[10774,17987,17988,0],[17988,17987,17989,0],[17988,17989,17990,0],[17989,17991,18011,0],[18011,17991,17992,0],[18010,17992,17993,0],[18010,17993,18013,0],[18013,17993,17959,0],[17959,17993,17997,0],[17959,17997,17994,0],[17958,17994,17957,0],[17957,17995,17996,0],[17996,17995,17968,0],[17996,17964,17957,0],[17957,17964,41512,0],[17993,17992,17997,0],[17957,17997,17998,0],[17957,17998,17995,0],[17998,17997,17991,0],[17998,17991,41917,0],[41917,17991,17989,0],[41917,17989,17987,0],[17991,17997,17992,0],[17957,17994,17997,0],[17985,17986,10772,0],[10772,17986,10773,0],[17985,11724,17986,0],[17986,11724,17967,0],[10829,10830,10839,0],[10844,17946,10829,0],[17945,10828,10827,0],[10821,18004,18000,0],[17962,18001,18002,0],[10798,18003,10812,0],[10812,18003,10811,0],[10811,18004,10818,0],[18006,18002,10798,0],[10798,18002,18003,0],[18002,18001,18003,0],[18003,18004,10811,0],[18000,18004,18003,0],[18000,18003,18001,0],[17962,18002,18005,0],[18005,18002,41915,0],[41915,18002,18006,0],[17961,41914,17959,0],[17959,41914,18013,0],[18013,18007,18012,0],[18012,18007,18022,0],[18012,18022,18008,0],[18012,18008,18009,0],[18012,18009,18010,0],[18010,18009,18024,0],[18010,18024,17992,0],[18010,18013,18012,0],[17962,10823,18001,0],[10823,17931,18001,0],[18001,17931,18000,0],[10821,10820,18004,0],[18004,10820,10818,0],[10816,10805,18014,0],[10816,18014,42197,0],[18014,10805,10804,0],[10799,10800,42195,0],[10799,42195,10797,0],[10796,41909,18015,0],[10797,18015,18016,0],[10797,18016,41915,0],[41915,17961,18005,0],[41915,18006,10797,0],[10796,18015,10797,0],[10793,41905,10794,0],[10794,41905,18017,0],[18017,41905,18019,0],[18017,18019,18018,0],[18018,18019,41906,0],[41906,18019,18020,0],[41907,18020,18021,0],[41907,18021,18022,0],[18022,18023,18008,0],[18008,18500,18024,0],[18008,18024,18009,0],[18020,18019,18021,0],[18021,41905,18025,0],[10792,18026,10791,0],[10792,18493,10793,0],[18021,18019,41905,0],[10795,18017,41912,0],[10795,41912,41868,0],[18018,41912,18017,0],[18028,18026,41865,0],[18028,41865,18029,0],[18029,41865,41866,0],[18029,41866,18030,0],[18030,41872,18031,0],[18213,41382,18032,0],[18032,41382,18033,0],[18201,18035,18036,0],[18199,18036,42238,0],[18199,42238,41320,0],[41320,42238,41395,0],[41395,42238,42239,0],[41381,18037,18034,0],[41381,18034,18033,0],[18028,18029,18215,0],[18028,18215,10790,0],[10790,18215,18222,0],[10790,18222,18221,0],[10790,18221,10789,0],[10789,18221,18038,0],[18038,18220,18039,0],[18039,42222,42237,0],[42237,42222,18040,0],[42237,18040,18041,0],[18041,18244,18042,0],[18042,41846,41862,0],[41862,41846,18043,0],[41862,18043,18044,0],[10781,18049,18046,0],[18045,18046,18047,0],[18048,41861,18044,0],[10786,18048,18047,0],[18044,18047,18048,0],[18047,18044,18045,0],[10786,18047,18051,0],[18046,18049,18047,0],[18047,18049,18051,0],[18050,18049,10782,0],[18050,10782,10784,0],[18050,18051,18049,0],[18050,10785,18051,0],[18046,18045,10781,0],[10780,10781,18490,0],[10780,18490,18052,0],[18496,41847,18055,0],[18055,41847,18247,0],[18053,18054,18055,0],[18055,18054,10779,0],[10779,18054,18056,0],[18476,18057,18058,0],[18477,18059,18475,0],[18475,18162,18473,0],[18473,18162,18163,0],[18473,18163,18522,0],[18061,18062,18063,0],[18064,18063,18065,0],[18064,18065,18515,0],[18515,18065,18066,0],[18515,18066,18067,0],[18067,18066,40825,0],[40825,18066,18072,0],[40825,18072,40824,0],[40824,18072,18121,0],[18120,18115,18068,0],[18068,18115,40826,0],[18063,18062,18065,0],[18065,18062,18069,0],[18069,18062,18070,0],[18072,18070,18071,0],[18073,18072,18071,0],[18074,18071,18062,0],[18062,18071,18070,0],[18074,18062,18061,0],[18074,18061,18522,0],[18071,18074,18075,0],[18077,18075,18076,0],[18077,18076,18078,0],[18093,18080,18081,0],[18472,18082,41695,0],[41695,18082,41750,0],[41750,18257,41747,0],[18092,18083,18089,0],[41778,18089,18400,0],[41778,18401,18404,0],[18404,18084,18091,0],[18091,18084,18085,0],[18090,18085,18086,0],[18086,18428,18087,0],[18087,18092,18088,0],[18087,18088,18086,0],[18086,18088,18090,0],[18090,18088,18089,0],[18090,18089,18091,0],[18091,41778,18404,0],[18085,18090,18091,0],[18087,41692,18092,0],[18089,41778,18091,0],[18080,18093,18094,0],[18095,18094,18161,0],[18161,18094,41675,0],[18158,18096,18097,0],[18158,18097,18103,0],[18103,18097,18102,0],[18098,14294,14293,0],[18098,14293,18099,0],[18098,18099,41686,0],[41681,18100,18101,0],[18102,41685,18103,0],[18103,41684,18157,0],[18157,41684,41829,0],[41829,41684,18104,0],[41829,18104,18105,0],[18109,18108,18110,0],[18110,18111,18112,0],[18112,18111,18137,0],[18077,18112,18145,0],[18077,18145,18113,0],[18114,18122,18120,0],[18120,18122,18115,0],[18115,18116,10768,0],[10768,18116,18151,0],[10768,18151,18117,0],[18117,18118,10767,0],[10767,18118,10766,0],[10766,18118,10765,0],[10765,18118,18119,0],[18119,18118,18152,0],[18152,18118,18117,0],[18119,40886,10764,0],[10764,40886,40887,0],[10767,10768,18117,0],[10768,40826,18115,0],[18112,18077,18078,0],[18112,18078,18079,0],[18112,18079,18110,0],[18110,18079,18109,0],[18077,18113,18073,0],[18073,18113,18114,0],[18073,18114,18120,0],[18073,18120,18121,0],[18077,18073,18075,0],[18075,18073,18071,0],[18121,18120,18068,0],[18123,18124,18125,0],[18125,18124,40889,0],[40889,40559,18156,0],[18127,18126,18128,0],[18127,18128,18535,0],[18535,18129,18130,0],[18130,18131,18542,0],[18542,18131,18132,0],[18542,18132,47602,0],[47602,18132,13999,0],[18129,18131,18130,0],[18129,18535,18128,0],[40791,18128,40549,0],[13970,40550,40551,0],[13970,40551,13982,0],[13982,40551,40556,0],[13982,40556,13971,0],[13971,40556,18133,0],[40556,18134,18133,0],[18134,40558,13975,0],[18149,13975,18135,0],[41687,18135,40555,0],[41687,40555,18138,0],[18138,40555,18136,0],[18136,40554,18113,0],[18145,18112,18137,0],[18138,18145,18137,0],[18138,18137,18139,0],[18139,18111,18140,0],[41682,18106,18105,0],[18139,18137,18111,0],[18111,18110,18142,0],[18140,18142,18143,0],[18143,18106,41682,0],[41682,18141,18143,0],[18143,18141,18140,0],[18142,18140,18111,0],[18106,18143,18107,0],[18143,18142,18108,0],[18143,18108,18107,0],[18144,40562,18122,0],[18113,18144,18114,0],[18114,18144,18122,0],[18113,18145,18136,0],[18136,18145,18138,0],[41677,18147,41698,0],[41698,18147,41676,0],[41698,41676,18141,0],[18138,18146,41687,0],[18135,41687,18148,0],[18135,18148,18149,0],[18149,41678,18150,0],[13963,13965,18150,0],[18149,18150,13975,0],[13965,13975,18150,0],[13975,13973,18134,0],[18134,13973,18133,0],[18138,18139,18146,0],[18122,18123,18116,0],[18116,18123,18151,0],[18116,18115,18122,0],[18152,18151,18125,0],[18152,18125,18153,0],[18153,18125,40889,0],[18543,18154,18155,0],[18155,18154,18126,0],[18155,18126,18127,0],[18126,18154,18156,0],[18156,18154,40889,0],[18125,18151,18123,0],[18151,18152,18117,0],[18157,41829,41828,0],[18157,41828,18158,0],[18101,18159,41681,0],[41681,18159,18098,0],[18101,41685,18159,0],[18102,18159,41685,0],[41686,18099,40588,0],[18098,18159,14294,0],[14294,18102,18097,0],[18159,18102,14294,0],[14294,18097,14295,0],[14295,18096,18160,0],[18160,18096,41694,0],[41694,18096,18158,0],[18097,18096,14295,0],[18080,18094,18164,0],[18164,18094,18095,0],[18095,18109,18079,0],[18109,18095,18108,0],[18108,18095,18161,0],[18161,41675,18158,0],[18161,18107,18108,0],[18079,18078,18076,0],[18079,18076,18162,0],[18074,18522,18163,0],[18074,18163,18075,0],[18075,18163,18076,0],[18079,18162,18164,0],[18079,18164,18095,0],[18164,18060,18254,0],[18060,18059,18165,0],[18165,18488,18258,0],[18258,18488,18166,0],[18465,41665,18168,0],[18168,41666,18268,0],[18268,41666,41672,0],[18268,41672,41575,0],[41575,41672,18169,0],[18271,18171,18172,0],[18271,18172,18173,0],[18173,18172,41355,0],[41355,41354,18174,0],[41354,41853,41351,0],[41351,41853,18175,0],[18175,41855,18176,0],[18176,41855,18177,0],[18176,18177,18178,0],[41358,18239,41360,0],[18180,42213,42215,0],[18182,18183,18228,0],[18228,18183,18184,0],[18184,18183,18185,0],[18184,18185,18186,0],[42240,18188,18206,0],[42240,18206,18189,0],[18190,18189,18202,0],[18190,18202,41363,0],[41363,18191,18192,0],[41332,18192,41298,0],[41298,18192,18211,0],[41298,18211,18193,0],[18193,18211,41315,0],[41315,18211,18194,0],[18194,18195,16828,0],[16828,18195,18196,0],[41320,18198,18199,0],[18199,18208,18200,0],[18199,18200,18036,0],[18036,18200,18201,0],[18201,18202,18205,0],[18205,18202,18206,0],[18212,18186,18203,0],[18185,18203,18186,0],[18204,18205,18188,0],[18188,18205,18206,0],[18189,18206,18202,0],[41363,18202,41322,0],[41363,41322,18191,0],[18191,41322,18207,0],[18191,18207,18208,0],[18209,18196,18195,0],[18192,18191,18210,0],[18211,18210,18195,0],[18211,18192,18210,0],[18210,18209,18195,0],[18195,18194,18211,0],[18191,18208,18210,0],[18210,18208,18209,0],[18212,18205,18204,0],[18212,18204,18186,0],[18204,18187,18186,0],[18205,18212,18201,0],[18201,18212,18035,0],[18035,18212,18203,0],[18035,18203,18034,0],[18034,18203,18185,0],[18034,18185,18033,0],[18033,18185,18032,0],[18032,18185,18183,0],[18032,18183,18213,0],[18031,18213,18223,0],[18031,18223,18214,0],[18214,18223,18224,0],[18029,18214,18215,0],[18218,18219,18216,0],[18218,18216,18217,0],[18218,18217,42224,0],[18218,42224,18220,0],[18220,42224,18039,0],[18219,18218,42221,0],[18219,42221,42220,0],[18218,18220,18221,0],[18221,18220,18038,0],[18029,18030,18214,0],[18214,18030,18031,0],[18213,18183,42219,0],[18213,42219,18223,0],[18225,42218,18215,0],[18215,42218,42220,0],[18225,18215,18214,0],[18225,18214,18224,0],[18223,42219,18224,0],[18224,42219,18225,0],[18208,18227,18226,0],[18208,18226,18209,0],[18209,18226,18196,0],[18226,18227,18197,0],[18198,41319,18197,0],[18198,18197,18227,0],[18199,18198,18208,0],[18186,18187,18184,0],[18184,18187,18228,0],[18228,18187,18235,0],[42208,18235,18229,0],[42208,18229,18230,0],[18179,18231,41359,0],[41359,18231,42211,0],[41359,42211,18232,0],[18232,42211,42209,0],[18233,42209,42210,0],[18233,42210,18190,0],[18230,18179,18234,0],[18181,18182,18234,0],[18234,18182,42208,0],[18235,42208,18228,0],[18234,42208,18230,0],[18181,18234,42215,0],[42215,18234,18180,0],[18179,18180,18234,0],[18179,18230,18231,0],[18187,18236,18235,0],[18230,18229,18231,0],[18180,18179,41360,0],[18180,41360,42213,0],[42213,41360,18237,0],[42226,42227,18238,0],[42226,18238,42230,0],[18178,42230,18238,0],[18238,18239,41358,0],[41360,18239,18237,0],[18238,42227,18239,0],[18239,42227,18237,0],[41354,41355,18172,0],[18241,18172,18240,0],[18241,18252,18242,0],[18244,18251,18246,0],[18244,18246,18245,0],[18492,18245,18480,0],[18492,18480,18247,0],[18250,41669,42234,0],[18250,42234,18251,0],[18040,18243,18251,0],[18251,18243,18252,0],[18252,18243,18242,0],[18251,18252,18250,0],[18250,18252,18253,0],[18253,18171,18170,0],[18171,18253,42228,0],[18171,42228,18240,0],[18240,42228,18241,0],[18171,18240,18172,0],[18251,42234,18246,0],[18060,18165,18254,0],[18082,18256,18471,0],[18082,18471,18257,0],[18254,18165,18258,0],[18254,18258,18255,0],[18255,18258,18259,0],[18259,18263,18260,0],[18261,18260,18264,0],[18256,18261,18262,0],[18256,18262,18471,0],[18260,18261,18259,0],[18255,18259,18261,0],[18255,18261,18256,0],[18263,18259,18258,0],[18258,18166,18263,0],[18263,18166,41674,0],[18260,41674,18264,0],[18264,18469,18262,0],[18262,18469,18468,0],[18262,18468,18265,0],[18464,18267,18393,0],[18272,18269,18270,0],[18271,18270,18170,0],[18271,18170,18171,0],[18271,18173,18270,0],[18270,18173,18272,0],[41350,41349,18274,0],[18371,41348,18275,0],[18275,18276,18277,0],[41637,18278,18279,0],[41640,18328,41639,0],[41639,18328,18327,0],[18280,18327,18331,0],[18280,18331,18281,0],[41609,18281,18282,0],[41609,18282,41621,0],[41609,41621,18284,0],[18284,41621,18283,0],[18284,18283,41627,0],[18284,41627,41631,0],[18284,41631,18285,0],[18285,41631,41630,0],[41610,41607,41632,0],[41610,41632,18286,0],[18286,41632,41656,0],[41656,41630,41657,0],[41657,41630,18288,0],[41657,18288,18287,0],[18343,18289,41629,0],[18346,41629,18290,0],[18290,18291,18347,0],[18347,41625,18292,0],[41253,18292,18293,0],[18293,18294,18295,0],[18295,18294,18296,0],[18296,18318,41343,0],[41343,18318,18297,0],[41343,18297,18321,0],[18298,18300,18299,0],[18302,18299,18301,0],[18302,18301,18303,0],[18304,18314,18313,0],[18304,18313,18305,0],[18307,18306,18317,0],[18307,18317,18308,0],[18308,18309,41347,0],[18311,18313,18312,0],[18312,18313,18314,0],[18325,18314,18315,0],[18325,18315,41635,0],[41635,18315,18316,0],[18303,18316,18315,0],[18303,18315,18314,0],[18303,18314,18304,0],[18303,18301,18316,0],[18316,18301,18299,0],[18299,18300,18316,0],[18314,18325,18312,0],[18313,18310,18305,0],[18308,18317,18309,0],[18309,18317,18305,0],[18317,18306,18305,0],[18294,18293,41626,0],[18294,41626,41618,0],[18294,41618,18296,0],[18297,41654,18322,0],[18322,41654,18319,0],[18331,18320,18281,0],[18297,18322,18323,0],[18321,18323,18298,0],[18298,18323,18324,0],[18300,18324,41635,0],[18325,41635,18328,0],[18325,18328,41640,0],[18328,41635,18324,0],[18328,18324,18326,0],[18327,18328,18326,0],[18329,18324,18323,0],[18326,18324,18329,0],[18320,18330,18319,0],[18319,18330,18322,0],[18322,18330,18323,0],[18326,18329,18327,0],[18327,18329,18330,0],[18327,18330,18331,0],[18331,18330,18320,0],[18298,18324,18300,0],[18287,18289,18332,0],[11170,11174,11168,0],[18333,11168,18334,0],[18334,11168,18337,0],[18334,18337,41658,0],[18334,41658,41655,0],[41655,41658,41660,0],[41655,41660,18335,0],[18335,41660,41661,0],[18336,41661,41663,0],[18336,41663,13189,0],[41658,18337,18338,0],[18337,11167,18338,0],[18338,11167,13195,0],[13195,11167,18339,0],[11167,41583,18339,0],[18339,41583,13196,0],[18340,41655,18361,0],[18361,18342,18363,0],[18363,18342,18341,0],[18363,18341,18364,0],[41664,18336,13189,0],[18341,18335,18336,0],[18336,18335,41661,0],[18336,41664,18341,0],[18335,18342,41655,0],[41655,18342,18361,0],[18342,18335,18341,0],[18334,18340,18333,0],[18333,18340,41656,0],[11170,18332,11171,0],[11171,18332,11172,0],[11172,18289,18343,0],[18344,18343,18345,0],[18347,18346,18290,0],[18346,18345,41629,0],[18289,11172,18332,0],[11172,18343,18348,0],[18348,18343,41259,0],[18348,41259,11159,0],[18281,41609,18280,0],[18280,41609,18349,0],[41642,18350,41648,0],[41642,41648,18351,0],[18351,41648,18352,0],[18351,18352,18378,0],[18378,18352,41617,0],[18389,18355,18356,0],[18356,18355,18357,0],[18356,18357,41664,0],[18356,41664,18437,0],[18437,41664,13189,0],[18358,18367,18341,0],[18341,18367,18364,0],[18357,18355,18358,0],[18364,18367,18359,0],[18364,18359,41615,0],[18360,41615,41614,0],[18361,18360,18362,0],[18362,18286,41656,0],[41656,18340,18362,0],[18340,18361,18362,0],[18361,18363,18360,0],[18360,18363,41615,0],[41615,18363,18364,0],[18286,18362,18365,0],[41612,18366,41616,0],[41612,41616,41613,0],[41613,41616,41617,0],[41617,18367,18353,0],[18353,18367,18354,0],[18354,18367,18358,0],[18354,18358,18355,0],[18279,18278,18368,0],[18279,18368,18369,0],[18311,18310,18313,0],[41651,18310,18311,0],[41651,18311,18368,0],[18311,18312,18368,0],[18279,18369,41640,0],[41640,18369,18325,0],[18275,18277,18370,0],[18275,18370,18371,0],[18371,18370,41578,0],[18371,41578,18372,0],[18372,41581,18373,0],[18372,18373,18383,0],[18383,18373,18374,0],[18376,18375,41645,0],[18376,41645,41636,0],[41636,41645,18377,0],[18379,18374,18387,0],[18379,18387,18380,0],[18379,18380,18457,0],[18457,18380,18456,0],[18385,18457,18463,0],[18385,18463,18381,0],[18381,18463,18462,0],[18379,18457,18382,0],[18457,18385,18382,0],[18379,18382,18374,0],[18374,18382,18383,0],[18383,18384,41576,0],[41576,41350,18274,0],[41576,18274,18383,0],[18383,18274,18372,0],[18372,18274,18371,0],[18383,18382,18384,0],[18384,18382,18385,0],[18384,18385,18381,0],[41577,18381,18386,0],[41577,18386,18273,0],[18273,18386,18269,0],[18273,18269,18272,0],[18269,18386,18462,0],[18462,18386,18381,0],[18380,18387,18388,0],[18455,18388,18355,0],[18455,18355,18389,0],[18455,18389,18390,0],[18390,18436,18453,0],[18392,18391,18393,0],[18393,18394,18464,0],[18464,18394,18395,0],[18451,18395,18448,0],[18451,18448,18396,0],[18396,18446,18403,0],[18403,18402,18450,0],[18450,18402,18397,0],[18398,18397,18449,0],[18398,18449,18468,0],[18468,18449,18265,0],[18265,18449,18470,0],[18083,41747,18399,0],[18089,18399,18400,0],[18399,18089,18083,0],[18402,18403,18401,0],[18401,18403,18446,0],[18401,18446,18404,0],[18404,18446,18084,0],[18416,18439,18440,0],[18440,18441,18405,0],[18407,18405,18443,0],[18407,18443,18406,0],[13186,13184,18406,0],[18406,13184,18408,0],[18413,18408,18409,0],[18410,18411,18412,0],[18408,18413,18406,0],[18406,18413,18407,0],[18407,18413,18414,0],[18414,18413,18429,0],[18429,18413,18409,0],[18414,18415,18440,0],[18440,18415,18416,0],[18427,18416,18417,0],[18419,18418,13180,0],[18419,13180,18421,0],[13180,18420,18421,0],[18421,18420,18422,0],[18421,18422,18419,0],[18423,18426,41781,0],[41781,18426,18424,0],[41781,18424,18425,0],[18420,18426,18422,0],[18422,18426,18423,0],[18417,18085,18084,0],[18417,18418,18085,0],[18417,18084,18427,0],[18439,18427,18084,0],[18439,18084,18446,0],[18427,18439,18416,0],[18085,41780,18086,0],[18086,41780,41783,0],[18086,41783,18428,0],[14300,18428,14304,0],[18087,18428,14300,0],[18417,18416,18429,0],[18429,18409,18432,0],[18429,18432,18430,0],[18429,18430,18417,0],[18417,18430,18418,0],[18418,18430,18431,0],[13180,18418,18431,0],[18431,18432,18412,0],[18412,18432,18410,0],[18431,18412,13180,0],[18430,18432,18431,0],[18410,18432,18409,0],[18416,18415,18429,0],[18429,18415,18414,0],[18440,18405,18414,0],[18414,18405,18407,0],[13184,13183,18408,0],[18408,13183,18409,0],[18409,13183,18410,0],[13217,18411,13183,0],[13183,18411,18410,0],[13186,18406,18433,0],[18434,18444,18445,0],[18438,18445,18435,0],[18389,18435,18436,0],[18389,18436,18390,0],[18435,18389,18356,0],[13188,18437,13189,0],[13188,18438,18356,0],[18435,18356,18438,0],[18445,18438,18434,0],[18434,13187,18444,0],[18444,13187,18433,0],[18433,13187,13186,0],[18440,18439,18447,0],[18440,18447,18441,0],[18391,18441,18393,0],[18393,18441,18447,0],[18393,18447,18394,0],[18442,18441,18391,0],[18442,18391,18453,0],[18442,18453,18436,0],[18442,18436,18443,0],[18435,18445,18443,0],[18435,18443,18436,0],[18443,18445,18444,0],[18444,18433,18443,0],[18442,18405,18441,0],[18405,18442,18443,0],[18406,18443,18433,0],[18439,18446,18447,0],[18447,18446,18396,0],[18447,18396,18448,0],[18447,18448,18394,0],[18394,18448,18395,0],[18401,41778,18402,0],[18402,41778,18400,0],[18402,18400,18397,0],[18397,18400,18399,0],[18397,18399,18449,0],[18470,18449,41747,0],[41747,18449,18399,0],[18397,18398,18450,0],[18451,18450,18452,0],[18451,18452,18395,0],[18391,18392,18453,0],[18393,18267,18392,0],[18455,18390,18456,0],[18455,18456,18388,0],[18388,18456,18380,0],[18457,18456,18458,0],[18454,18458,18392,0],[18392,18458,18453,0],[18458,18454,18463,0],[18458,18463,18457,0],[18456,18390,18458,0],[18453,18458,18390,0],[18464,18395,18266,0],[18266,18395,18452,0],[18266,18452,18398,0],[18266,18398,18466,0],[18466,18398,18468,0],[18398,18452,18450,0],[18451,18396,18450,0],[18450,18396,18403,0],[18374,18375,18387,0],[18387,18375,18376,0],[18459,18460,18355,0],[18355,18460,18354,0],[18354,18460,18353,0],[18378,41617,18460,0],[18460,41617,18353,0],[18459,18355,18388,0],[18376,18388,18387,0],[18272,18173,41355,0],[18272,41355,18273,0],[18273,41355,18461,0],[18273,18461,41350,0],[18267,18268,18392,0],[18392,18268,18454,0],[18454,18268,18462,0],[18454,18462,18463,0],[18267,18168,18268,0],[18167,18467,41674,0],[18167,41674,18166,0],[18167,41665,18467,0],[41665,18465,18467,0],[18467,18465,18466,0],[18168,18267,18465,0],[18465,18267,18464,0],[18465,18464,18266,0],[18465,18266,18466,0],[18466,18468,18469,0],[18261,18264,18262,0],[18257,18471,41747,0],[18470,18471,18262,0],[18260,18263,41674,0],[18059,18060,18475,0],[18080,18164,18254,0],[18080,18254,18255,0],[18080,18255,18081,0],[18081,18255,18256,0],[18081,18256,18472,0],[18472,18256,18082,0],[18164,18475,18060,0],[18162,18475,18164,0],[18065,18069,18066,0],[18066,18069,18070,0],[18066,18070,18072,0],[18473,18474,18476,0],[18476,18475,18473,0],[18475,18476,18477,0],[18477,18476,18058,0],[18479,18053,42236,0],[18479,42236,18480,0],[18479,18480,18482,0],[18482,18480,42235,0],[18482,42235,18481,0],[18481,42235,18249,0],[18484,18483,18489,0],[18489,18058,18478,0],[18478,18058,18057,0],[18489,18478,18484,0],[18478,18054,18484,0],[18484,18054,18053,0],[18484,18053,18483,0],[18483,18053,18479,0],[18483,18479,18485,0],[18477,18058,18489,0],[18477,18489,18487,0],[18486,18487,18485,0],[18485,18487,18483,0],[18485,18482,18486,0],[18486,18482,18488,0],[18488,18165,18486,0],[18486,18165,18059,0],[18486,18059,18487,0],[18487,18059,18477,0],[18487,18489,18483,0],[18054,18478,18056,0],[18247,18053,18055,0],[10781,18045,18490,0],[18052,18491,18496,0],[18045,18044,18490,0],[18490,18043,18491,0],[18491,18043,41846,0],[18491,41846,18492,0],[18491,18492,41847,0],[18490,18491,18052,0],[10791,18505,10792,0],[10792,18504,18495,0],[18493,18495,18510,0],[18493,18510,18509,0],[18493,18509,18494,0],[18493,18494,18025,0],[18025,18494,18021,0],[18493,10792,18495,0],[10792,18505,18504,0],[18496,10779,18497,0],[18496,18497,10780,0],[10782,18497,18521,0],[10782,18521,18498,0],[10783,18498,18499,0],[18498,10778,10776,0],[18498,10776,18499,0],[18499,18512,18501,0],[18501,18513,18500,0],[18500,18513,18024,0],[10784,18501,18500,0],[10784,18500,10785,0],[10785,18500,18506,0],[18506,18500,18502,0],[18506,18502,18511,0],[18503,18511,18504,0],[10787,18504,18505,0],[10787,18505,10788,0],[18504,10787,18503,0],[18506,18511,18503,0],[18503,10785,18506,0],[18500,18008,18502,0],[18502,18008,18023,0],[18507,18023,18494,0],[18507,18494,18509,0],[18507,18509,18508,0],[18508,18509,18510,0],[18511,18510,18495,0],[18511,18495,18504,0],[18507,18508,18502,0],[18507,18502,18023,0],[18508,18510,18511,0],[18023,18022,18494,0],[18022,18021,18494,0],[18501,18512,18513,0],[18513,18512,18011,0],[18513,18011,18024,0],[18024,18011,17992,0],[17989,18011,17990,0],[18011,18512,17990,0],[17990,18512,18514,0],[17990,18514,10777,0],[17990,10777,17988,0],[10774,17988,10777,0],[18512,18499,18514,0],[18499,18501,10783,0],[10777,18064,10775,0],[10775,18064,18515,0],[18519,18518,18067,0],[18519,18516,18518,0],[18517,10770,11731,0],[18517,11731,18518,0],[18518,11731,10771,0],[18518,10771,18520,0],[18520,10771,10772,0],[18520,18515,18067,0],[18067,18518,18520,0],[18515,18520,10775,0],[18516,18519,40825,0],[18064,10777,18063,0],[18063,10777,10778,0],[18061,18063,18521,0],[18061,18521,18523,0],[18061,18523,18522,0],[18522,18523,18057,0],[18522,18057,18474,0],[18474,18057,18476,0],[18473,18522,18474,0],[18056,18057,18523,0],[10779,18056,18523,0],[10779,18523,18521,0],[10778,18521,18063,0],[18521,18497,10779,0],[18554,10763,18544,0],[18554,18544,18524,0],[18527,18528,18553,0],[10760,18528,18529,0],[10758,18529,18539,0],[10758,18539,18548,0],[18558,18548,18546,0],[18558,18546,18562,0],[18562,18546,18530,0],[18531,18532,18533,0],[18533,18532,18534,0],[18534,18551,18130,0],[18130,18551,18535,0],[18538,18527,18526,0],[18538,18526,18525,0],[18527,18537,18528,0],[18528,18550,18529,0],[18550,18539,18529,0],[18535,18551,18536,0],[18536,18551,18540,0],[18536,18540,18541,0],[18568,18533,18542,0],[47602,13999,14134,0],[18542,18534,18130,0],[18155,40547,40546,0],[40888,18543,18544,0],[40888,18544,40887,0],[40887,18544,10763,0],[18524,18544,40545,0],[18524,40545,18538,0],[18538,40545,18527,0],[18537,18545,18541,0],[40546,18543,18155,0],[18533,18534,18542,0],[18532,18531,18530,0],[18532,18530,18546,0],[18532,18546,18547,0],[18547,18546,18548,0],[18548,18539,18549,0],[18549,18539,18550,0],[18549,18550,18541,0],[18541,18550,18537,0],[18537,18550,18528,0],[18541,18540,18549,0],[18548,18549,18547,0],[18549,18540,18547,0],[18532,18547,18534,0],[18547,18540,18551,0],[18551,18534,18547,0],[18526,18552,10761,0],[18528,10760,18553,0],[18553,10760,47594,0],[18527,18553,18526,0],[18526,18553,18552,0],[18525,18526,10761,0],[10762,18524,18525,0],[18525,18524,18538,0],[10758,18548,18556,0],[18556,18548,18558,0],[18558,18555,18556,0],[18556,18577,10756,0],[10756,18557,18556,0],[18556,18557,10758,0],[18558,18562,10755,0],[10755,18562,18561,0],[18561,18565,18559,0],[18559,18565,18564,0],[47600,18564,14016,0],[47600,18559,18564,0],[18560,18559,47598,0],[18560,47598,47597,0],[47597,10751,18560,0],[10755,18577,18555,0],[18555,18558,10755,0],[18559,18560,18561,0],[10755,18561,10754,0],[18577,10755,11639,0],[18556,18555,18577,0],[18561,18562,18565,0],[18563,14016,18564,0],[14016,18563,47590,0],[18564,18565,18569,0],[18569,18565,18530,0],[18530,18531,18570,0],[18570,18531,18566,0],[18566,47604,18570,0],[18566,18531,47601,0],[18567,47601,18568,0],[18567,18568,47603,0],[18530,18565,18562,0],[18564,18569,18563,0],[14015,18563,18569,0],[18570,18569,18530,0],[18569,18570,18571,0],[18571,40264,14014,0],[18570,47604,40264,0],[18570,40264,18571,0],[10758,18557,10759,0],[47592,10759,18576,0],[47592,18576,18572,0],[47592,18572,18573,0],[18574,18573,11663,0],[18574,11663,11665,0],[11665,11709,18574,0],[18574,11709,47591,0],[11663,18573,18572,0],[18575,18576,11659,0],[18577,11639,10756,0],[18560,10751,10752,0],[18560,10752,10754,0],[18586,10746,18578,0],[10742,18592,10740,0],[10740,18592,18579,0],[18580,18582,18581,0],[18581,10733,18580,0],[10734,18583,10733,0],[18583,18580,10733,0],[18579,18584,18585,0],[18585,18591,18589,0],[18586,10748,18587,0],[18585,18589,18579,0],[18580,18589,18582,0],[18582,18589,18588,0],[18588,18589,18587,0],[18580,18579,18589,0],[18584,18590,18585,0],[18585,18590,18591,0],[18591,18590,10747,0],[10747,18586,18591,0],[18589,18591,18587,0],[18587,18591,18586,0],[18592,11623,11622,0],[18592,11622,18593,0],[11622,40499,18593,0],[18592,18593,10744,0],[18593,40499,18594,0],[11625,10744,18594,0],[18594,10744,18593,0],[11625,18594,11365,0],[11365,18594,11368,0],[11368,18594,40499,0],[18597,40275,18598,0],[18598,40275,18599,0],[18599,18602,18598,0],[18598,18602,18600,0],[18601,18600,18602,0],[18601,18602,10728,0],[10728,18602,10729,0],[18602,40276,10729,0],[10741,18595,10742,0],[10742,18595,18607,0],[18607,18595,18596,0],[18607,18596,18603,0],[18603,18596,18606,0],[18605,18597,18598,0],[18598,10725,18604,0],[18598,18604,18605,0],[18597,18605,18606,0],[18606,18605,40529,0],[18606,40529,18603,0],[18604,10725,10724,0],[18604,10724,10723,0],[10721,10723,10722,0],[10721,40528,10723,0],[10723,40528,40529,0],[10723,40529,18604,0],[18597,18606,18596,0],[18583,10734,10741,0],[10741,10740,18583,0],[10731,18608,40279,0],[10731,40279,10732,0],[40277,18609,18597,0],[18610,18597,18596,0],[18610,18596,18595,0],[18610,18595,10735,0],[10735,18595,10741,0],[10721,18965,10720,0],[10720,18965,18611,0],[10720,18611,47624,0],[18634,18611,18965,0],[18634,18965,18633,0],[18633,18965,18966,0],[18633,18966,18612,0],[18612,18966,18969,0],[18612,18969,18613,0],[18614,18972,18615,0],[18615,18972,18616,0],[19142,18616,18972,0],[19142,18972,18617,0],[18617,18972,18618,0],[18618,18619,18620,0],[18621,18620,18978,0],[19168,18978,18977,0],[19168,18977,19166,0],[19166,18977,18622,0],[18623,18975,18624,0],[18624,18625,18626,0],[18626,40285,40225,0],[40225,40285,18627,0],[40225,18627,40214,0],[40214,45654,40213,0],[40213,45654,18628,0],[18628,45654,40283,0],[18628,40283,18630,0],[18629,18630,18631,0],[18631,18967,40228,0],[40228,18966,40229,0],[40229,18966,10722,0],[18612,18632,18633,0],[18634,18633,18635,0],[18636,18635,18637,0],[18685,18637,18638,0],[18685,18638,18640,0],[18685,18640,18639,0],[18639,18640,18641,0],[18642,18762,18645,0],[18643,18645,18771,0],[18643,18771,45713,0],[18643,45713,18717,0],[18643,18717,18718,0],[18728,18718,45716,0],[45716,18646,18728,0],[18718,18728,18643,0],[18643,18644,18645,0],[18643,18728,18644,0],[18644,18728,47622,0],[47622,18646,18689,0],[18690,18689,18647,0],[18690,18647,18964,0],[18964,18647,18648,0],[18648,18729,18675,0],[18649,18675,18733,0],[18650,18693,18733,0],[18650,18733,18694,0],[18700,18694,18709,0],[18700,18709,18651,0],[18651,18709,18962,0],[18651,18962,18701,0],[18701,18962,18653,0],[18653,18652,18853,0],[18653,18853,18655,0],[18655,18853,18654,0],[18655,18654,18851,0],[18655,18851,18705,0],[18705,18851,18656,0],[45717,18658,18849,0],[18659,18849,18847,0],[18659,18847,45718,0],[45718,18847,18660,0],[18662,18846,45914,0],[45914,18846,18663,0],[45900,18663,45855,0],[45900,45855,18664,0],[45900,18664,19080,0],[19080,18664,10533,0],[10533,18664,10532,0],[18656,18657,45717,0],[18656,45717,18667,0],[18699,18670,18695,0],[18695,18670,45917,0],[18695,45917,18671,0],[18671,10681,47625,0],[18707,18672,10682,0],[18707,10682,18673,0],[18708,18673,18674,0],[18675,18674,18692,0],[18678,18679,18691,0],[18691,18679,18680,0],[18681,18680,19012,0],[18688,18683,18684,0],[18684,10716,18685,0],[18685,10716,10718,0],[18684,18685,18639,0],[18637,18685,10718,0],[18637,10718,18636,0],[18636,10718,10719,0],[18684,18639,18688,0],[10716,18684,10715,0],[10715,18684,18686,0],[10714,18686,19010,0],[10714,19010,18687,0],[18684,18683,18686,0],[18686,18683,19010,0],[18682,18683,18688,0],[18682,18688,18642,0],[18682,18642,18689,0],[18689,18642,47622,0],[18642,18688,18641,0],[18641,18688,18639,0],[18682,18689,18681,0],[18681,18689,18690,0],[18691,18680,18690,0],[18690,18680,18681,0],[18690,18964,18691,0],[18677,18691,18964,0],[18674,10682,10683,0],[18674,10683,18692,0],[18692,10683,10684,0],[18692,10684,18676,0],[18708,18674,18649,0],[18708,18693,18673,0],[18674,18673,10682,0],[47625,10681,18672,0],[18695,18706,18698,0],[18696,18650,18694,0],[18700,18697,18698,0],[18698,18697,18699,0],[18698,18699,18695,0],[18699,18704,18669,0],[18700,18698,18696,0],[18696,18694,18700,0],[18700,18651,18697,0],[18697,18651,18701,0],[18697,18702,18699,0],[18697,18701,18702,0],[18702,18701,18703,0],[18702,18703,18704,0],[18704,18703,18667,0],[18669,18704,18668,0],[18668,18704,18667,0],[18656,18667,18705,0],[18705,18703,18655,0],[18653,18655,18701,0],[18705,18667,18703,0],[18701,18655,18703,0],[18695,18671,18706,0],[18698,18706,18696,0],[18650,18696,18693,0],[18693,18696,18706,0],[18672,18707,47625,0],[18693,18706,18707,0],[18693,18707,18673,0],[18657,18658,45717,0],[18693,18708,18733,0],[18694,18732,18709,0],[18709,18732,18963,0],[18963,18711,18710,0],[18710,18711,18855,0],[18855,18711,18712,0],[18713,18712,18724,0],[18724,18736,18744,0],[18715,18761,18716,0],[18716,18742,18717,0],[18717,18739,18718,0],[18719,18718,18720,0],[18719,18720,18721,0],[18721,18720,18722,0],[18737,18722,18723,0],[18737,18723,18736,0],[18737,18721,18722,0],[18738,18725,45715,0],[45715,18725,18726,0],[47622,18728,18646,0],[18646,18727,18647,0],[18647,18727,18648,0],[18727,18726,18648,0],[18648,18726,18729,0],[18729,18726,18730,0],[18731,18730,18737,0],[18721,18737,18725,0],[18725,18730,18726,0],[18729,18730,18675,0],[18675,18730,18732,0],[18675,18732,18733,0],[18733,18732,18694,0],[18649,18733,18708,0],[18732,18730,18731,0],[18732,18731,18734,0],[18734,18735,18712,0],[18712,18735,18724,0],[18734,18712,18711,0],[18734,18711,18732,0],[18711,18963,18732,0],[18734,18731,18735,0],[18735,18736,18724,0],[18737,18735,18731,0],[18736,18735,18737,0],[18721,18725,18719,0],[18719,18725,18738,0],[18719,18738,45716,0],[18719,45716,18718,0],[18722,18743,18723,0],[18723,18743,18740,0],[18714,18744,18736,0],[18736,18740,18714,0],[18736,18723,18740,0],[18714,18740,18741,0],[18742,18741,18739,0],[18742,18761,18741,0],[18740,18743,18741,0],[18741,18743,18739,0],[18742,18739,18717,0],[18718,18739,18720,0],[18722,18720,18739,0],[18741,18761,18714,0],[18714,18761,18744,0],[18744,18761,18760,0],[18744,18760,19152,0],[19152,18760,18745,0],[18745,18760,18746,0],[18746,18772,18747,0],[18747,18772,18763,0],[18747,18763,18748,0],[18748,18763,18764,0],[18748,18764,18749,0],[18749,18764,18765,0],[18749,18765,18766,0],[18749,18766,18750,0],[18750,45655,18751,0],[18751,45655,18752,0],[18755,19144,18754,0],[18754,19149,19159,0],[18755,19156,18756,0],[18747,19154,18746,0],[19154,18747,18748,0],[19154,18748,18758,0],[18758,18748,18749,0],[18757,18749,18750,0],[18749,18757,18758,0],[19159,18755,18754,0],[19144,18755,18756,0],[19144,18756,18753,0],[18756,18751,18752,0],[18752,18753,18756,0],[18756,18759,18751,0],[18751,18759,18750,0],[18750,18759,18757,0],[18772,18760,18715,0],[18772,18715,18716,0],[18761,18715,18760,0],[18760,18772,18746,0],[18763,18762,18641,0],[18641,18640,18764,0],[18764,18640,18765,0],[45656,18768,18767,0],[18767,18768,18769,0],[18635,18633,18769,0],[18769,18633,18632,0],[18769,18632,18767,0],[18767,18632,18614,0],[18768,18766,18770,0],[18770,18766,18638,0],[18770,18638,18637,0],[18770,18637,18635,0],[18770,18635,18769,0],[18770,18769,18768,0],[45656,18766,18768,0],[18764,18763,18641,0],[18765,18640,18638,0],[18638,18766,18765,0],[18642,18641,18762,0],[18771,18645,18762,0],[18762,18763,18771,0],[18771,18763,45713,0],[45713,18763,18772,0],[45713,18772,18716,0],[19151,19150,18862,0],[18862,19150,18887,0],[18775,18776,18958,0],[19197,18778,18777,0],[18777,18778,18779,0],[45483,18780,18950,0],[45483,18950,45484,0],[45484,18950,18951,0],[18781,18954,18782,0],[45769,45673,45731,0],[45731,45673,18784,0],[18786,18785,18787,0],[18787,18785,18788,0],[18787,18788,45506,0],[45506,18788,19087,0],[45506,19087,18797,0],[18797,19087,45732,0],[18789,19105,18790,0],[18796,19103,18791,0],[18791,19104,45501,0],[45501,19104,18792,0],[18792,19104,18821,0],[18821,19104,18793,0],[18821,18793,18794,0],[18795,18794,45752,0],[18791,45495,18796,0],[18787,45506,18798,0],[18787,18798,45729,0],[18800,18799,45728,0],[45728,18799,45509,0],[45726,45510,18802,0],[18804,18816,18808,0],[18808,18809,18805,0],[18806,18805,18948,0],[45725,18806,18807,0],[45725,18807,45730,0],[18785,45730,18784,0],[45730,18785,45725,0],[18809,18943,18810,0],[18810,18811,18948,0],[18948,18811,18806,0],[18806,18811,45724,0],[18806,45724,18807,0],[45724,18812,18813,0],[18813,18946,45769,0],[45486,18811,18945,0],[18814,18944,18815,0],[18814,18815,18879,0],[18879,18815,18816,0],[18817,18803,18802,0],[18817,18802,45490,0],[18817,45490,18818,0],[18870,18818,18871,0],[18916,45488,45489,0],[18916,45489,45492,0],[18916,45492,45843,0],[45843,45492,45502,0],[18825,45502,18823,0],[18820,18792,18821,0],[18820,18937,18939,0],[18820,18939,18819,0],[18822,18824,18823,0],[18825,18823,18824,0],[18825,18824,18927,0],[18927,18824,18826,0],[18826,18824,18933,0],[18826,18933,18829,0],[18829,18933,18934,0],[18829,18934,18827,0],[18827,18828,18830,0],[18827,18830,18829,0],[18925,18831,18913,0],[18920,45842,45844,0],[18908,18920,45851,0],[18908,45851,18832,0],[18832,45851,18901,0],[18901,45850,45855,0],[45855,18663,18901,0],[18901,18663,18846,0],[18846,18845,18833,0],[18833,18841,18834,0],[18834,18841,18840,0],[18834,18840,45518,0],[18834,45518,18835,0],[18906,18835,18836,0],[18866,45515,18852,0],[18852,45515,18837,0],[18838,45722,18657,0],[18657,45722,18658,0],[18658,45722,18839,0],[45723,45514,18850,0],[18850,45514,18840,0],[18848,18842,18847,0],[18661,18843,18842,0],[18661,18842,18844,0],[18844,18841,18845,0],[18661,18844,18662,0],[18844,18845,18662,0],[18845,18846,18662,0],[18847,18842,18843,0],[18847,18843,18660,0],[18849,18658,45915,0],[18842,18848,18844,0],[18844,18848,18850,0],[18847,18849,18848,0],[18844,18850,18841,0],[18841,18850,18840,0],[18657,18656,18838,0],[18838,18851,18837,0],[18837,18851,18654,0],[18837,18654,18852,0],[18852,18654,18853,0],[18852,18853,18652,0],[18652,18858,18872,0],[18872,18858,18854,0],[18872,18854,18873,0],[18859,18854,18710,0],[18859,18710,18855,0],[18863,18855,18712,0],[18863,18712,18856,0],[18856,18712,18713,0],[18856,18713,18773,0],[18713,18724,18773,0],[18773,18724,19160,0],[19160,18724,18744,0],[18962,18857,18858,0],[18962,18858,18653,0],[18653,18858,18652,0],[18710,18854,18857,0],[18857,18854,18858,0],[18854,18859,18896,0],[18896,18859,18864,0],[18896,18864,18899,0],[18899,18864,18860,0],[18883,18860,18861,0],[18883,18861,18885,0],[18887,18885,18862,0],[18862,18856,19151,0],[19151,18856,18773,0],[18863,18865,18864,0],[18863,18864,18859,0],[18859,18855,18863,0],[18865,18863,18856,0],[18856,18862,18865,0],[18865,18862,18885,0],[18865,18885,18861,0],[18865,18861,18864,0],[18864,18861,18860,0],[18866,18852,18652,0],[18866,18652,18867,0],[18866,18867,45517,0],[45517,18867,18868,0],[18868,18876,18907,0],[18907,18876,18869,0],[18870,18869,18877,0],[18870,18877,18818,0],[18867,18652,18872,0],[18872,18873,18874,0],[18874,18875,18876,0],[18876,18875,18880,0],[18876,18880,18879,0],[18876,18879,18877,0],[18877,18878,18818,0],[18818,18878,18817,0],[18817,18878,18803,0],[18878,18877,18816,0],[18816,18877,18879,0],[18879,18880,18881,0],[18881,18880,18882,0],[18960,18884,18883,0],[18960,18883,18886,0],[18886,18883,18885,0],[18886,18885,18887,0],[18886,18887,18774,0],[18882,18884,18888,0],[18889,18888,18956,0],[18889,18956,18957,0],[18892,18893,18947,0],[18947,18893,18783,0],[18893,18894,18953,0],[18953,18894,18782,0],[18893,18892,18894,0],[18781,18894,18951,0],[18782,18894,18781,0],[18882,18888,18881,0],[18881,18814,18879,0],[18888,18889,18881,0],[18881,18889,18895,0],[18895,18944,18814,0],[18889,18957,18895,0],[18895,18957,18890,0],[18944,18890,45487,0],[45487,45486,18945,0],[18945,18944,45487,0],[18877,18869,18876,0],[18874,18876,18868,0],[18872,18874,18868,0],[18872,18868,18867,0],[18875,18896,18897,0],[18875,18897,18898,0],[18875,18898,18880,0],[18880,18898,18882,0],[18898,18899,18900,0],[18900,18899,18860,0],[18899,18897,18896,0],[18898,18900,18882,0],[18882,18900,18884,0],[18900,18860,18884,0],[18884,18860,18883,0],[18875,18874,18896,0],[18896,18874,18873,0],[18896,18873,18854,0],[18906,18836,18869,0],[18869,18836,18907,0],[18868,18907,45517,0],[45517,18907,18836,0],[18904,18835,18905,0],[18905,18835,18906,0],[18901,18846,18832,0],[18832,18846,18833,0],[18832,18833,18902,0],[18902,18833,18903,0],[18903,18833,18834,0],[18903,18834,18904,0],[18904,18834,18835,0],[18924,18919,18909,0],[18909,18917,18926,0],[18926,18917,18912,0],[18903,18904,18902,0],[18902,18904,18910,0],[18910,18904,18911,0],[18910,18911,18929,0],[18910,18929,18917,0],[45842,18924,18913,0],[18925,18913,18924,0],[18914,18911,18915,0],[18914,18915,18916,0],[18914,18916,45843,0],[18904,18905,18911,0],[18911,18905,18906,0],[18911,18906,18915,0],[18915,18870,18871,0],[18916,18871,45488,0],[18915,18871,18916,0],[18870,18906,18869,0],[18917,18918,18910,0],[18910,18918,18902,0],[18917,18909,18919,0],[18917,18919,18918,0],[18918,18919,18902,0],[18902,18919,18908,0],[18902,18908,18832,0],[18908,18919,18920,0],[18920,18919,18924,0],[18920,18924,45842,0],[18829,18921,18826,0],[18826,18921,18922,0],[18923,18922,18924,0],[18923,18924,18909,0],[18924,18922,18925,0],[18925,18922,18921,0],[18925,18921,18830,0],[18925,18830,18831,0],[18923,18909,18926,0],[18923,18926,18927,0],[18927,18826,18923,0],[18922,18923,18826,0],[18928,18927,18912,0],[18928,18912,18929,0],[18928,18929,18914,0],[18927,18928,18825,0],[18932,18931,10528,0],[10528,18931,46003,0],[46003,18931,10527,0],[10527,18931,18930,0],[18828,18930,18830,0],[18930,18931,18830,0],[45502,18825,45843,0],[18935,18934,18939,0],[18935,18939,18938,0],[18936,18937,45779,0],[18937,18938,18939,0],[18939,18934,18822,0],[18822,18934,18933,0],[18822,18933,18824,0],[18934,18935,18827,0],[18827,18935,18940,0],[18827,18940,18828,0],[18828,18940,10524,0],[10524,18940,10601,0],[18940,18935,18941,0],[10523,18941,18936,0],[10523,18936,10522,0],[10523,10601,18941,0],[18941,10601,18940,0],[18935,18938,18941,0],[18941,18938,18936,0],[10522,18936,18942,0],[18823,45498,18822,0],[18822,45498,18819,0],[18822,18819,18939,0],[18821,18937,18820,0],[18821,18794,45778,0],[18821,45778,18937,0],[18937,45778,45779,0],[18936,45779,18942,0],[18820,45500,18792,0],[18943,18809,18815,0],[18815,18944,18943,0],[18943,18944,18945,0],[18943,18945,18810,0],[18810,18945,18811,0],[45724,18811,18812,0],[18891,18947,18890,0],[18890,18947,45487,0],[18891,18892,18947,0],[18947,18783,18946,0],[18946,18783,45769,0],[18946,18813,18812,0],[18810,18948,18809,0],[18948,18805,18809,0],[45728,45509,18801,0],[18801,45509,45726,0],[18798,18799,45729,0],[18949,18784,45767,0],[18949,18788,18784,0],[18784,18788,18785,0],[18780,18779,18950,0],[18781,18951,19190,0],[18781,19190,45668,0],[45668,18952,45671,0],[18954,45671,18782,0],[18956,18955,18780,0],[18956,18780,18957,0],[18779,18780,18777,0],[18777,18780,18955,0],[19197,18777,18958,0],[18958,18959,18775,0],[18777,18955,18958,0],[18958,18955,18959,0],[18959,45485,18961,0],[18961,45485,18960,0],[18961,18960,18886,0],[18959,18961,18775,0],[18774,18961,18886,0],[18709,18963,18962,0],[18963,18710,18857,0],[18963,18857,18962,0],[18675,18649,18674,0],[18675,18692,18648,0],[18648,18692,18676,0],[18648,18676,18964,0],[18634,18635,18611,0],[18965,10722,18966,0],[18966,40228,18967,0],[18967,18631,18968,0],[18630,18968,18631,0],[18966,18967,18969,0],[18969,18967,18970,0],[18970,18967,18968,0],[18971,18618,18972,0],[18972,18614,18971,0],[18971,18614,18613,0],[18613,18969,18971,0],[18969,18970,40280,0],[18969,40280,18971,0],[18618,18971,18619,0],[18976,18973,40281,0],[18976,40281,18974,0],[18974,18625,18975,0],[18975,18625,18624,0],[18619,18973,18620,0],[18620,18973,18976,0],[18977,18976,18974,0],[18977,18974,18975,0],[18977,18975,18623,0],[18623,18622,18977,0],[18620,18976,18978,0],[18977,18978,18976,0],[10719,10718,45519,0],[10668,18979,10669,0],[10705,18979,45922,0],[10705,45922,10694,0],[18980,10670,10669,0],[18980,10669,18979,0],[10670,18980,19025,0],[10670,19025,18981,0],[18981,19025,18982,0],[18982,19025,18987,0],[18987,19025,19026,0],[18987,19026,18983,0],[18983,19026,18985,0],[18984,40510,10711,0],[40510,18984,10709,0],[10709,18984,18985,0],[10709,18985,10707,0],[10707,18985,19026,0],[10709,10707,10708,0],[18982,18987,18986,0],[45903,18986,45902,0],[45902,18986,10672,0],[10672,18986,49807,0],[18986,18987,19023,0],[18986,19023,49807,0],[49807,19024,18988,0],[18988,19024,18989,0],[10675,19001,45890,0],[45890,19005,10676,0],[10675,18990,18991,0],[18991,18990,19022,0],[18998,18991,19022,0],[18998,19022,19020,0],[19020,19022,18984,0],[18992,10713,18993,0],[18993,10713,18994,0],[18995,18993,19004,0],[18995,19004,19006,0],[18995,19006,18996,0],[18995,18996,18997,0],[18997,19021,18992,0],[18997,18992,18993,0],[19021,18997,19020,0],[19020,18997,18998,0],[18998,18997,18996,0],[18999,18996,19006,0],[18991,18998,18999,0],[19000,19002,19001,0],[19001,10675,19003,0],[19003,10675,18991,0],[19006,19000,18999,0],[18999,19000,19003,0],[19003,19000,19001,0],[18999,19003,18991,0],[18999,18998,18996,0],[18995,18997,18993,0],[19004,18993,19019,0],[19004,19019,19005,0],[19004,19005,19002,0],[19002,45890,19001,0],[19004,19002,19006,0],[19006,19002,19000,0],[45890,19002,19005,0],[10676,19005,10677,0],[19013,19007,40511,0],[19013,40511,19008,0],[19010,18683,19011,0],[19011,18683,18682,0],[19010,19011,19009,0],[19009,19011,19012,0],[19009,19012,19008,0],[19008,19012,19013,0],[19013,18680,18679,0],[18679,19014,19018,0],[19018,19014,19017,0],[19014,18678,10685,0],[10685,18678,18677,0],[18964,18676,18677,0],[18677,18676,10684,0],[19014,10686,19017,0],[19017,10686,19016,0],[10680,19016,10687,0],[10680,10687,45917,0],[10686,10687,19016,0],[10680,19015,19016,0],[19016,19015,10679,0],[19016,10679,19017,0],[18679,19018,19013,0],[19017,10678,19018,0],[19013,19018,19007,0],[19007,19018,10678,0],[18680,19013,19012,0],[19010,18994,18687,0],[18687,18994,10713,0],[18994,19009,18993,0],[18993,19009,19019,0],[19019,19009,19008,0],[18984,10711,19020,0],[19020,10711,19021,0],[10712,19021,10711,0],[18984,19022,18985,0],[18990,18989,19022,0],[18989,18990,10674,0],[10674,18990,10675,0],[18987,18983,19023,0],[19023,18983,19024,0],[18989,19024,19022,0],[19022,19024,18983,0],[19022,18983,18985,0],[49807,19023,19024,0],[19025,18980,10706,0],[19025,10706,19026,0],[19026,10706,10707,0],[18979,10668,45922,0],[10664,10665,19059,0],[10664,19059,19061,0],[10664,19061,19027,0],[19030,19027,19028,0],[19030,19028,10543,0],[10543,19028,10542,0],[10543,10544,19030,0],[19030,19029,10663,0],[19029,19030,10545,0],[10545,19030,10544,0],[19029,10545,10662,0],[10662,10546,19031,0],[19032,10548,10661,0],[19032,10661,19031,0],[19032,19031,10546,0],[10546,10662,10545,0],[19030,10663,19027,0],[19027,10663,10664,0],[10700,47644,10551,0],[10551,47644,10550,0],[10660,10551,19033,0],[19033,10551,10549,0],[19034,10549,10548,0],[10549,19034,45965,0],[10549,45965,19035,0],[10549,19035,19033,0],[10568,19035,45953,0],[19038,19036,19037,0],[19038,19037,19039,0],[45952,10541,19040,0],[10580,45952,19040,0],[10541,45992,19040,0],[10541,19039,10542,0],[10542,19039,45949,0],[10660,19033,10569,0],[10569,19033,10568,0],[10548,10550,10661,0],[10661,10550,47644,0],[10545,10544,45944,0],[10547,10545,45944,0],[19042,19041,19043,0],[19044,19043,10535,0],[19044,10535,19045,0],[19044,19045,19078,0],[19044,19078,45868,0],[45868,19078,10534,0],[19044,45866,19047,0],[19047,45866,19046,0],[19047,19046,45863,0],[19047,45863,19048,0],[19044,19047,19043,0],[19043,19047,19042,0],[19047,19048,19042,0],[19048,19074,19041,0],[19042,19048,19041,0],[10535,19043,19041,0],[10534,19078,19049,0],[10671,19050,19051,0],[19052,19078,45918,0],[45918,19053,19054,0],[19054,19053,19055,0],[19054,45920,45919,0],[19078,19045,45918,0],[45918,19045,19053,0],[19055,19053,10535,0],[19055,10535,19064,0],[19056,19064,10536,0],[19056,19057,19058,0],[10667,19058,19059,0],[19059,10665,10667,0],[19058,19057,19059,0],[19059,19057,19060,0],[19059,19060,19061,0],[19061,19060,19067,0],[19027,19061,19062,0],[19064,19056,19063,0],[19063,45920,19054,0],[19054,19055,19063,0],[19063,19055,19064,0],[19066,10536,19065,0],[19066,19065,19060,0],[19062,19067,19068,0],[19068,19065,19069,0],[19069,19065,10537,0],[10537,19065,10536,0],[19068,19067,19060,0],[19068,19060,19065,0],[19061,19067,19062,0],[19028,19062,19071,0],[19072,19071,19076,0],[45995,19072,10539,0],[10538,19073,19075,0],[10538,19075,19074,0],[10539,19072,19073,0],[19074,19075,19070,0],[19070,19075,19076,0],[19070,19076,19069,0],[19071,19068,19069,0],[19071,19069,19076,0],[19076,19073,19072,0],[19073,19076,19075,0],[19072,45995,10540,0],[19072,10540,19071,0],[19071,10540,19077,0],[19071,19077,19028,0],[19062,19028,19027,0],[10542,19028,19077,0],[19062,19068,19071,0],[10536,19066,19056,0],[19056,19066,19057,0],[19057,19066,19060,0],[19064,10535,10536,0],[19078,19052,19051,0],[19078,19051,19050,0],[19050,19049,19078,0],[10671,19051,18981,0],[18981,19051,10670,0],[19051,19052,10670,0],[10670,19052,10669,0],[10671,45903,19050,0],[19050,45903,45904,0],[19050,45904,19049,0],[19049,45904,19079,0],[45900,19080,19079,0],[19049,19081,10534,0],[19080,10533,19081,0],[19081,19049,19079,0],[19081,19079,19080,0],[19082,45881,45860,0],[45860,45881,19083,0],[19085,45871,45872,0],[19085,45872,10539,0],[18930,10525,10526,0],[10526,10525,45792,0],[10526,45792,45889,0],[10526,45889,46006,0],[10526,46006,10527,0],[10519,10518,10520,0],[10521,10520,45748,0],[19087,18949,45732,0],[18949,19087,18788,0],[10510,10511,19088,0],[19089,19088,45766,0],[19089,45766,45768,0],[45674,45710,45671,0],[45674,45671,45681,0],[45674,45681,19096,0],[19096,45681,19093,0],[19093,19090,45688,0],[19091,19214,45646,0],[45646,16715,19091,0],[19091,16715,19094,0],[19091,19094,45688,0],[45688,19094,19093,0],[19094,19095,19096,0],[19098,10510,19088,0],[19098,19088,19089,0],[19089,45710,19098,0],[19097,19096,19095,0],[19094,19096,19093,0],[45711,10512,10511,0],[10511,10512,19099,0],[10511,19099,19088,0],[45765,19086,18949,0],[18949,19086,45732,0],[18797,45732,19100,0],[19105,19101,19102,0],[19105,19102,10516,0],[19105,10516,10517,0],[18796,10517,19103,0],[10517,10518,19103,0],[18791,19103,10519,0],[10519,19104,18791,0],[19104,10521,18793,0],[18789,18797,19100,0],[18789,19100,19101,0],[18789,19101,19105,0],[10504,10505,19106,0],[45661,19212,19215,0],[19215,19211,45662,0],[45662,19211,19107,0],[19108,45687,19110,0],[19110,45687,19109,0],[19110,19109,19122,0],[19119,19111,19192,0],[19112,19192,45679,0],[19112,45679,19191,0],[19191,45680,18952,0],[18952,45680,45681,0],[19111,45684,19192,0],[19192,45684,45679,0],[19108,19110,19122,0],[19108,19122,19113,0],[19108,19113,19107,0],[19108,19107,19211,0],[19107,19121,19114,0],[19123,19114,19115,0],[19123,19115,19124,0],[19195,19183,19116,0],[19195,19116,19193,0],[19193,19116,19117,0],[19193,19117,19118,0],[19119,19120,19111,0],[19111,19120,45667,0],[19122,45667,19113,0],[19121,19115,19114,0],[19121,19107,19113,0],[45667,19122,19111,0],[19107,19114,45662,0],[45663,45662,19114,0],[45663,19114,19123,0],[19125,19123,19124,0],[19125,19126,19208,0],[19208,19126,19184,0],[19208,19184,19127,0],[19224,19128,19129,0],[19130,19129,19205,0],[19130,19205,19131,0],[19131,19132,40203,0],[19167,40203,19132,0],[19167,19132,19171,0],[19171,19132,19133,0],[19171,19133,19134,0],[19134,19133,19135,0],[19135,19137,19136,0],[19136,19137,19165,0],[19165,19137,19138,0],[19165,19138,19164,0],[19164,19181,19139,0],[19139,19181,19197,0],[19139,19197,18958,0],[19140,19139,18776,0],[19140,19141,19169,0],[19169,19162,19170,0],[19170,19162,18621,0],[18618,18620,19161,0],[18618,19161,18617,0],[18753,19142,19144,0],[19144,19142,19143,0],[19144,19143,19163,0],[19144,19163,18754,0],[19149,18754,19145,0],[19149,19145,18774,0],[18774,19145,19148,0],[19148,19145,19147,0],[19148,19147,19141,0],[19141,19140,18776,0],[19146,19147,19163,0],[19163,19147,19145,0],[19163,19145,18754,0],[18774,19148,18775,0],[18775,19148,19141,0],[18775,19141,18776,0],[19159,19150,19151,0],[19158,18773,19160,0],[18758,19153,19154,0],[18746,19154,18745,0],[18745,19154,19153,0],[18745,19153,19157,0],[19157,45714,18745,0],[18745,45714,19152,0],[19153,18758,18757,0],[19153,18757,19155,0],[19155,18757,18759,0],[19155,18759,19156,0],[19156,18759,18756,0],[19153,19155,19157,0],[45714,19157,19158,0],[45712,19156,19159,0],[19150,19159,19149,0],[18755,19159,19156,0],[19157,19155,19158,0],[19158,19155,19156,0],[19158,19156,45712,0],[18773,19158,19151,0],[18744,19152,19160,0],[18887,19150,19149,0],[18887,19149,18774,0],[19142,18617,19143,0],[19143,18617,19161,0],[19143,19161,19146,0],[19147,19146,19162,0],[19147,19162,19141,0],[19141,19162,19169,0],[19162,19146,18621,0],[18621,19146,18620,0],[18620,19146,19161,0],[19146,19163,19143,0],[18753,18752,19142,0],[19142,18752,18616,0],[19139,19140,19164,0],[19164,19140,19169,0],[19164,19169,19165,0],[19166,18622,19171,0],[19171,18622,19167,0],[19167,18622,18623,0],[19167,18623,40224,0],[40224,18623,18624,0],[19170,19168,19169,0],[19169,19168,19165,0],[19165,19168,19136,0],[19136,19168,19166,0],[19168,19170,18978,0],[18978,19170,18621,0],[19135,19136,19166,0],[19135,19166,19134,0],[19134,19166,19171,0],[19172,40223,40206,0],[19173,40206,19174,0],[40201,19174,40193,0],[19179,40218,40261,0],[19179,40261,40208,0],[19179,40208,40185,0],[40185,40208,19180,0],[40186,19180,40247,0],[19164,19138,19181,0],[19181,19138,19203,0],[19181,19203,19201,0],[19182,19200,19185,0],[19185,19200,19127,0],[19185,19127,19199,0],[45675,19199,19126,0],[45675,19126,19195,0],[19195,19126,19183,0],[19124,19183,19125,0],[19125,19183,19126,0],[19127,19184,19199,0],[19199,19184,19126,0],[19182,19185,19186,0],[19186,19187,19188,0],[18778,19189,18779,0],[18779,19189,18950,0],[18950,19189,19190,0],[18950,19190,18951,0],[18952,45668,45669,0],[18952,45669,19191,0],[19191,45669,19112,0],[19112,45678,19192,0],[19192,45678,19118,0],[19118,45678,19193,0],[19118,19119,19192,0],[19193,45678,19194,0],[19193,19194,19195,0],[19188,18778,19196,0],[19196,19198,19182,0],[19182,19186,19196,0],[19196,19186,19188,0],[18778,19197,19196,0],[19196,19197,19198,0],[19182,19198,19201,0],[19201,19198,19181,0],[19181,19198,19197,0],[19185,19199,19186,0],[19186,19199,19187,0],[19206,19200,19202,0],[19206,19202,19201,0],[19201,19202,19182,0],[19182,19202,19200,0],[19204,19203,19135,0],[19137,19135,19203,0],[19137,19203,19138,0],[19135,19133,19204,0],[19204,19133,19207,0],[19207,19133,19205,0],[19205,19133,19131,0],[19131,19133,19132,0],[19207,19205,19129,0],[19204,19207,19206,0],[19204,19206,19203,0],[19201,19203,19206,0],[19129,19128,19207,0],[19207,19128,19206,0],[19200,19128,19127,0],[19127,19128,45659,0],[19127,45659,19208,0],[45660,10490,45663,0],[45660,45663,19210,0],[19210,45663,19123,0],[19210,19123,19125,0],[19210,19125,19209,0],[19108,19211,45687,0],[19106,10507,19212,0],[45686,19212,19213,0],[45686,19213,19214,0],[45686,19214,19092,0],[10507,19214,19213,0],[10507,19213,19212,0],[10505,10507,19106,0],[19215,45686,19211,0],[19211,45686,45687,0],[19212,45686,19215,0],[10501,10502,19216,0],[10501,19216,19219,0],[19219,19216,45698,0],[10493,43665,45702,0],[40302,10485,19226,0],[19226,19220,19222,0],[19221,19222,19223,0],[19223,45657,45659,0],[19223,19224,19221,0],[19221,19224,19129,0],[19128,19224,45659,0],[45659,19224,19223,0],[19223,19222,19220,0],[45657,19220,19225,0],[19220,19226,19225,0],[19225,19226,10485,0],[10486,19225,10485,0],[10484,19226,10483,0],[10483,19226,19222,0],[10483,19222,19221,0],[40205,19221,19130,0],[40205,19130,19131,0],[19129,19130,19221,0],[10480,10479,45649,0],[10480,45649,19227,0],[19227,45649,19228,0],[19229,19228,40300,0],[19229,40300,19230,0],[19230,40300,40301,0],[19227,19228,19229,0],[19230,19231,19234,0],[19234,19231,10482,0],[10479,10480,10469,0],[19233,10481,19229,0],[10481,40197,19232,0],[10481,19232,10480,0],[10480,19232,10469,0],[40197,10481,19233,0],[10460,19235,10459,0],[19235,10461,34552,0],[34552,10461,19244,0],[10214,19244,10461,0],[10461,19235,10460,0],[10459,19235,34552,0],[10459,34552,10458,0],[10458,34552,19242,0],[10457,19242,19236,0],[10457,19236,10455,0],[10455,19236,40296,0],[19240,19237,19238,0],[19240,19238,19239,0],[19240,19239,10464,0],[8376,19239,19238,0],[19242,19241,19236,0],[19242,34552,19243,0],[19243,34552,19244,0],[19243,19244,10463,0],[19243,10463,19241,0],[19238,19237,19241,0],[19237,40296,19241,0],[19241,40296,19236,0],[10456,10383,19267,0],[19267,10383,10423,0],[19267,10423,19245,0],[19251,19266,19268,0],[19268,19266,10458,0],[19268,10458,10457,0],[10459,19266,19246,0],[10459,19246,19248,0],[19248,19246,19247,0],[19248,19255,19249,0],[43559,43570,19249,0],[19249,19250,43558,0],[19261,19262,43552,0],[43552,19262,10415,0],[10415,19262,10414,0],[19246,19252,19247,0],[19247,19252,19256,0],[19264,19253,19254,0],[19253,19264,19259,0],[19253,19259,19260,0],[19260,19255,19256,0],[19253,19260,19256,0],[19247,19256,19248,0],[19248,19256,19255,0],[19249,19255,19250,0],[19253,19256,19252,0],[19254,19252,19257,0],[19254,19257,19258,0],[10384,10422,19265,0],[19265,10422,10421,0],[10421,10422,40111,0],[19260,19259,19261,0],[19260,19261,19250,0],[19250,19255,19260,0],[19261,19259,19262,0],[19263,10414,19262,0],[19259,19264,19262,0],[10421,19263,19264,0],[19264,19263,19262,0],[10421,19264,19265,0],[19264,19254,19265,0],[19254,19258,19265,0],[19265,19258,10384,0],[19254,19253,19252,0],[19245,19257,19252,0],[19252,19251,19245,0],[19246,19266,19252,0],[19252,19266,19251,0],[10457,19267,19268,0],[19251,19268,19245,0],[19245,19268,19267,0],[10451,10450,10452,0],[19289,10452,19270,0],[19269,19270,19286,0],[19286,19270,10475,0],[19286,10475,19271,0],[10448,10447,19271,0],[19271,10447,19272,0],[19273,19272,19274,0],[19275,19276,10446,0],[19272,19273,45481,0],[19272,45481,40105,0],[40105,45481,19277,0],[19273,19274,19276,0],[45482,19275,10446,0],[45482,10446,8091,0],[8089,8090,8087,0],[8091,10445,8090,0],[8090,10445,8087,0],[8086,8087,19281,0],[8087,10445,19281,0],[19278,19281,19279,0],[19278,19279,19280,0],[10434,10433,10440,0],[10433,19280,10440,0],[10440,19280,10441,0],[10441,19280,19279,0],[10441,19279,19282,0],[10441,19282,10442,0],[10443,10442,19282,0],[10443,19282,40177,0],[19282,19279,19281,0],[19282,19281,19284,0],[19282,19284,19285,0],[19285,19284,10444,0],[19281,10445,19284,0],[19284,10445,10444,0],[40177,19285,19283,0],[19283,19285,40176,0],[19280,10433,10432,0],[19280,10432,19278,0],[19281,19278,8084,0],[8084,8086,19281,0],[8084,19278,10432,0],[19271,19272,19286,0],[19269,19286,40108,0],[19269,40108,19287,0],[10379,19287,10378,0],[19287,10379,19288,0],[19289,10453,10452,0],[10453,19289,10454,0],[10454,19289,45530,0],[10454,45530,19288,0],[19288,45530,19269,0],[19288,19269,19287,0],[10380,10454,19288,0],[10380,19288,10379,0],[10473,10475,10449,0],[8091,10446,10444,0],[47615,47614,19291,0],[19291,47614,19292,0],[19291,19292,40135,0],[40135,19292,40136,0],[40136,47610,19307,0],[19307,47610,19293,0],[19293,19294,19295,0],[19295,40138,19313,0],[19314,19296,19297,0],[19314,19297,19315,0],[19318,19297,19298,0],[19298,19296,40442,0],[40139,19313,40138,0],[19298,19297,19296,0],[40442,19296,40139,0],[40139,19296,19313,0],[40178,47615,10439,0],[19299,10434,10439,0],[19311,10437,10438,0],[10438,10437,10439,0],[10439,10437,19299,0],[19943,8082,47620,0],[19943,47620,8080,0],[39934,39935,19857,0],[39934,19857,19301,0],[19918,40306,40129,0],[40134,40307,19302,0],[19303,19302,19304,0],[19303,19304,19313,0],[19313,19304,19295,0],[19295,19304,19305,0],[19305,40307,19307,0],[19307,40307,19306,0],[19306,19308,19307,0],[19307,19308,40135,0],[40135,19308,19309,0],[19311,19310,40126,0],[19310,19311,10438,0],[19310,10438,19312,0],[19305,19307,19293,0],[19305,19293,19295,0],[19316,19315,19297,0],[19316,19297,19317,0],[19317,19297,19318,0],[19317,19318,19856,0],[19317,19856,19319,0],[19320,19321,19826,0],[19826,19321,19322,0],[19826,19322,19821,0],[19821,19322,19323,0],[19323,19326,19849,0],[19324,19849,19325,0],[19325,19849,19326,0],[19323,19322,19326,0],[19326,19322,19327,0],[19334,19327,19853,0],[19328,19330,19329,0],[40308,19329,19330,0],[40308,19330,40309,0],[40309,19330,40324,0],[40324,19330,40382,0],[40382,19854,19331,0],[19331,19854,19332,0],[19331,19332,19852,0],[19331,40151,40381,0],[19333,40381,14058,0],[19333,14058,14059,0],[19330,19854,40382,0],[19853,19328,19334,0],[19325,19335,19336,0],[19325,19336,40425,0],[19325,40425,19324,0],[40425,40426,19337,0],[19324,19337,19339,0],[19340,19797,19792,0],[19792,19797,19794,0],[19792,19794,19345,0],[19345,19794,19795,0],[19811,19812,19344,0],[19344,19818,19345,0],[19345,19818,19346,0],[19345,19346,19347,0],[40408,19820,19348,0],[40408,19348,39977,0],[39978,39977,19348,0],[39978,19348,47730,0],[47730,19348,19349,0],[19819,19818,47723,0],[47723,19818,19817,0],[47723,19817,19350,0],[47723,19350,19351,0],[19351,19350,19352,0],[26350,19353,19354,0],[19355,47713,19356,0],[19356,19802,19787,0],[19787,19775,19357,0],[19357,19774,19359,0],[19359,19774,19358,0],[19359,19360,19790,0],[19790,19360,19361,0],[19362,19361,19363,0],[19366,19368,19782,0],[19370,19369,19363,0],[19363,19361,19370,0],[19371,19763,19757,0],[19757,19763,40437,0],[40437,19763,19725,0],[19725,19769,19720,0],[19720,19769,19372,0],[19372,19769,19770,0],[19372,19770,19373,0],[19715,19373,19374,0],[19715,19374,19375,0],[19375,19374,19705,0],[19705,19740,19713,0],[19713,19740,19376,0],[19712,19376,19377,0],[19712,19377,19741,0],[19708,19378,19379,0],[19379,19742,19380,0],[19380,19742,19381,0],[19382,19381,19383,0],[19383,19746,19384,0],[19384,19746,19748,0],[19384,19748,19699,0],[19699,19748,19749,0],[19749,19750,19385,0],[19387,19388,19660,0],[19660,19388,19659,0],[19659,19388,19389,0],[19389,19392,19390,0],[19390,19392,19391,0],[48106,19392,19389,0],[48106,19389,19625,0],[19395,19393,19394,0],[19395,49942,49944,0],[48045,19396,19397,0],[19398,49943,19399,0],[48083,48097,19400,0],[48084,19402,19401,0],[19401,19402,19472,0],[19401,19472,19403,0],[19404,19403,19471,0],[19404,19471,19424,0],[19424,19471,19423,0],[19423,19471,19473,0],[19423,19473,19621,0],[19422,19621,19412,0],[19412,19621,19622,0],[19470,19405,19623,0],[19470,19623,19406,0],[19406,19623,19481,0],[19406,19481,19407,0],[19407,19482,19490,0],[19407,19490,19492,0],[19409,19492,19408,0],[19470,47936,47935,0],[19412,19413,19422,0],[19414,47910,47918,0],[47926,19415,19416,0],[47926,19416,19417,0],[47926,19417,19418,0],[19418,19417,19419,0],[19418,19419,19430,0],[19418,19430,19420,0],[19418,19420,19421,0],[19621,19422,48596,0],[19621,48596,19423,0],[19427,19425,19426,0],[19427,19426,47921,0],[48079,19428,47922,0],[19429,47922,47920,0],[19434,47913,19435,0],[19435,47913,19436,0],[19437,47911,19449,0],[19449,47911,19415,0],[19449,19415,19448,0],[19439,19438,19440,0],[47783,47932,19441,0],[47776,19444,19607,0],[47776,19607,19445,0],[48650,19445,19529,0],[48650,19529,48653,0],[48650,48653,19447,0],[19447,48653,48654,0],[19447,48654,19446,0],[19447,19446,48650,0],[19415,19438,19448,0],[19449,19448,19453,0],[19449,19453,47888,0],[47888,19453,19450,0],[47888,19450,19451,0],[19452,19579,13913,0],[13913,19579,13914,0],[13914,19579,13916,0],[13913,13912,19452,0],[19452,13912,19451,0],[13912,13911,19451,0],[19451,13911,47888,0],[19438,19439,19448,0],[19448,19439,19453,0],[19427,47921,19428,0],[19427,19428,19404,0],[19404,19428,19454,0],[19428,48082,19454,0],[19454,48082,48084,0],[48084,19400,19402,0],[19400,48084,48083,0],[48083,48079,19399,0],[19399,19455,19398,0],[19398,19455,19458,0],[19398,19458,48044,0],[19399,48079,19455,0],[19455,19457,19458,0],[48077,19458,19459,0],[48077,19459,48320,0],[48320,48328,48321,0],[48321,48328,19460,0],[48321,19460,47905,0],[47905,19460,19461,0],[19461,19462,47906,0],[47904,19469,19463,0],[19466,19465,19467,0],[19467,19464,19462,0],[19467,19462,47892,0],[47892,19462,19461,0],[19465,19464,19467,0],[19464,19468,19462,0],[19462,19468,47906,0],[47906,19468,19469,0],[19469,19468,19463,0],[19454,48084,19401,0],[19424,19425,19404,0],[19454,19403,19404,0],[19427,19404,19425,0],[19454,19401,19403,0],[19412,19405,47935,0],[47935,19405,19470,0],[19406,19407,19410,0],[19410,19407,19492,0],[19410,19492,19409,0],[19406,19410,19470,0],[19470,19410,19411,0],[19470,19411,47936,0],[19471,19403,19472,0],[19472,19474,19477,0],[19472,19477,19473,0],[19472,19402,19475,0],[19472,19475,19474,0],[19474,19475,19619,0],[19619,19475,19624,0],[19476,19624,19489,0],[19489,19624,19475,0],[19474,19619,19477,0],[19478,19477,19479,0],[19478,19479,19480,0],[19407,19481,19482,0],[19482,48085,19483,0],[48093,48086,48089,0],[48093,48089,19484,0],[48093,19484,19751,0],[19751,19615,19753,0],[19753,19615,19485,0],[49942,19394,19487,0],[49942,19487,48097,0],[19400,48097,19488,0],[19489,19475,19402,0],[19489,19402,19488,0],[19488,19402,19400,0],[19394,19486,19487,0],[48097,19487,19488,0],[19482,19483,19490,0],[19490,19491,19492,0],[19492,19491,19747,0],[19408,19747,19746,0],[19408,19746,19493,0],[47940,19494,19756,0],[47940,19756,19495,0],[47940,19495,19496,0],[47940,19496,47937,0],[47937,19496,19497,0],[47938,19497,47777,0],[19756,19498,40454,0],[40454,19498,19499,0],[19499,19744,19500,0],[19502,19503,19521,0],[19505,19521,19504,0],[19505,19504,19506,0],[19505,19506,19508,0],[19508,19506,19507,0],[19508,19507,19509,0],[19509,19510,19527,0],[47745,19527,47750,0],[47750,19527,19526,0],[19526,19527,19511,0],[19515,19511,19512,0],[40418,19512,19513,0],[40430,47737,40434,0],[47737,19512,19514,0],[19514,19512,19511,0],[19515,19512,40418,0],[19516,19525,40423,0],[19524,19517,19531,0],[19524,19531,19530,0],[19518,19530,47763,0],[47747,19518,19755,0],[47747,19755,19501,0],[47747,19501,19519,0],[19519,19501,19520,0],[19520,19522,47744,0],[19508,47744,19522,0],[19505,19522,47751,0],[19505,19508,19522,0],[19755,19518,19500,0],[19500,19518,19523,0],[19523,19518,47763,0],[19500,19523,19499,0],[19518,19524,19530,0],[19511,19515,19525,0],[19511,19525,19526,0],[19497,19496,19528,0],[19528,19606,47761,0],[19607,47760,19445,0],[19445,40451,19529,0],[19445,47760,40451,0],[40451,47760,47765,0],[19531,40466,19533,0],[19531,19533,19532,0],[19532,19533,19535,0],[19534,19533,19539,0],[19534,19535,19533,0],[19531,19532,19530,0],[19536,19537,40452,0],[40452,19537,47759,0],[40452,47759,19604,0],[19604,47759,19538,0],[19538,47759,19535,0],[19534,19539,19546,0],[19546,19539,19544,0],[40470,40468,40469,0],[40469,40462,19540,0],[19540,40462,40314,0],[19540,40314,40313,0],[19540,40313,19541,0],[19540,19543,40363,0],[19540,19541,19543,0],[19543,19541,40355,0],[40469,19540,40363,0],[19544,40364,19545,0],[19538,19547,19548,0],[40447,19549,19550,0],[19553,19551,19552,0],[19553,19552,19597,0],[19597,19552,19554,0],[47768,47766,19568,0],[47768,19568,19555,0],[47768,19555,19567,0],[19556,19555,19557,0],[19558,19559,19566,0],[19566,19559,19560,0],[13946,19561,19567,0],[19567,19561,19562,0],[19562,19561,47785,0],[47785,19561,13945,0],[47785,13945,13944,0],[13945,19561,13946,0],[13947,19601,19563,0],[19563,19602,40488,0],[40488,19602,19564,0],[40340,19564,19603,0],[40340,19603,19565,0],[40473,19598,19554,0],[19558,19566,19557,0],[19557,19566,19556,0],[19556,19566,13946,0],[13946,19567,19555,0],[13946,19566,19560,0],[19555,19568,19557,0],[19597,47766,19569,0],[19569,47767,19570,0],[19570,47767,19589,0],[19591,47771,19571,0],[19571,47772,47821,0],[47821,47772,19572,0],[19572,47820,19584,0],[19583,19573,19582,0],[19582,19573,19574,0],[19582,19574,19580,0],[19580,19574,19578,0],[19578,19574,13915,0],[13917,19575,19576,0],[13917,19576,19577,0],[13915,13916,19578,0],[19582,19580,19440,0],[19440,19580,19439,0],[19450,19453,19581,0],[19452,19581,19579,0],[19452,19451,19581,0],[19581,19451,19450,0],[19582,47783,19583,0],[19573,19583,19584,0],[19584,47774,19585,0],[19584,19585,19572,0],[19587,19586,19446,0],[19587,19446,19588,0],[19588,19570,19589,0],[19572,19585,47821,0],[47821,48652,19590,0],[19590,48652,19587,0],[19590,19587,19589,0],[19589,19591,19590,0],[19590,19591,47821,0],[19578,19579,19581,0],[19580,19581,19439,0],[19439,19581,19453,0],[19581,19580,19578,0],[19569,19570,19597,0],[40448,19597,19570,0],[40448,19570,19592,0],[19593,19596,40449,0],[40449,19596,19594,0],[19594,19596,48655,0],[48655,19596,19595,0],[19595,19592,19588,0],[19592,19595,19593,0],[19593,19595,19596,0],[19597,19554,47766,0],[47766,19554,19568,0],[19568,19554,19598,0],[19568,19598,19599,0],[19599,19600,19557,0],[19557,19600,19558,0],[19558,19600,19602,0],[19558,19602,19601,0],[19558,19601,13947,0],[13947,19559,19558,0],[19601,19602,19563,0],[19603,19599,19565,0],[19599,19598,19565,0],[19564,19602,19603,0],[19602,19600,19603,0],[19599,19603,19600,0],[19599,19557,19568,0],[19548,19549,19538,0],[19538,19549,19604,0],[19534,19546,40368,0],[19545,19546,19544,0],[40364,19544,40470,0],[40364,40470,40363,0],[40363,40470,40469,0],[40368,19538,19534,0],[19534,19538,19535,0],[40452,19604,19549,0],[19542,40355,19541,0],[19530,19532,19537,0],[19530,19537,47765,0],[19537,19536,47765,0],[47765,19536,40451,0],[19523,47762,40455,0],[19523,40455,19499,0],[19499,40455,40454,0],[47761,19606,19605,0],[19605,19606,19495,0],[19495,19606,19496,0],[19496,19606,19528,0],[47760,19607,47761,0],[47761,19607,19528,0],[19607,19444,19528,0],[19528,19444,19497,0],[19497,19444,47777,0],[19492,19747,19408,0],[19477,19619,19479,0],[19479,19618,48092,0],[48092,19618,48085,0],[48085,19608,48088,0],[48088,19608,19609,0],[19610,19609,19611,0],[19610,19611,19612,0],[19487,19614,19476,0],[19476,19489,19488,0],[19488,19487,19476,0],[19487,19486,19614,0],[19485,19615,19611,0],[19611,19613,19485,0],[19613,19614,19485,0],[19485,19614,19486,0],[19611,19484,19612,0],[19484,19611,19615,0],[19484,19615,19751,0],[19614,19613,19616,0],[19616,19609,19617,0],[19617,19609,19608,0],[19617,19608,19618,0],[19618,19608,48085,0],[19616,19617,19624,0],[19616,19624,19476,0],[19614,19616,19476,0],[19618,19624,19617,0],[19616,19613,19609,0],[19609,19613,19611,0],[19479,19619,19618,0],[19477,48090,19473,0],[19473,48090,19620,0],[19412,19622,19405,0],[19405,19622,19623,0],[19623,19622,19620,0],[19622,19621,19620,0],[19621,19473,19620,0],[19619,19624,19618,0],[19389,19752,19625,0],[19625,19393,48050,0],[48291,48098,19627,0],[19628,19627,19645,0],[19628,19645,19629,0],[19629,19645,19647,0],[19630,14223,48028,0],[19630,14224,19629,0],[19629,14224,19631,0],[19629,19631,19628,0],[14224,48317,19631,0],[48292,48293,48381,0],[48288,48294,19641,0],[48288,19641,19632,0],[48110,19633,19634,0],[48110,19634,19687,0],[19687,19634,48111,0],[48383,19637,19639,0],[48383,19639,19640,0],[48381,48304,48379,0],[48379,19638,48294,0],[48294,19638,19641,0],[19632,19641,19643,0],[19643,19641,19638,0],[19643,19638,19639,0],[19639,19638,19640,0],[48304,19640,48379,0],[48379,19640,19638,0],[19637,19635,19636,0],[19642,19634,19633,0],[19636,19643,19639,0],[19636,19639,19637,0],[19633,19636,19635,0],[19633,19635,19642,0],[19456,14221,48044,0],[19627,48098,19644,0],[19627,19644,48048,0],[19627,48048,19645,0],[19629,19647,19630,0],[19646,19647,19645,0],[19625,19752,19393,0],[19386,19387,19648,0],[19736,19648,19653,0],[48094,19653,19649,0],[19649,19666,19664,0],[19665,19650,19651,0],[19651,19650,19709,0],[19652,19651,19701,0],[19652,19665,19651,0],[19670,40460,19654,0],[19655,40457,19676,0],[13616,19676,19677,0],[19677,19656,19657,0],[19657,19656,19658,0],[19681,19658,49954,0],[49954,49945,48599,0],[19659,48598,19660,0],[19387,19660,19648,0],[19390,48599,19389,0],[48599,19659,19389,0],[19666,19649,19670,0],[19661,13794,13795,0],[19661,19668,13794,0],[13794,19668,13793,0],[19664,19666,19667,0],[19664,19667,19663,0],[19663,19669,48649,0],[48649,19669,13797,0],[48649,19662,19663,0],[19663,19662,19664,0],[19664,19662,19665,0],[19662,13798,19665,0],[19663,19667,19668,0],[19669,19668,19661,0],[13804,19661,13795,0],[19661,13804,19669,0],[19668,19669,19663,0],[19667,19666,19670,0],[19653,40460,19649,0],[19649,40460,19670,0],[19670,19672,19671,0],[19671,19673,14357,0],[14357,13793,19671,0],[19671,13793,19668,0],[19671,19668,19667,0],[19671,19667,19670,0],[19670,19654,19672,0],[19673,19672,19655,0],[19675,19655,19674,0],[19675,19674,13615,0],[19674,19676,13616,0],[19674,19655,19676,0],[13617,19677,19678,0],[19679,19680,13619,0],[13619,19680,19683,0],[19679,13618,19678,0],[13617,13662,19677,0],[19677,13662,13616,0],[19677,19657,19678,0],[19678,19657,19679,0],[19682,19680,19657,0],[19657,19680,19679,0],[19657,19658,19682,0],[19390,19391,19681,0],[19681,19391,19682,0],[19658,19681,19682,0],[19684,19685,19686,0],[19688,19687,19689,0],[19688,19689,19690,0],[19690,19689,48384,0],[19691,48384,48386,0],[19691,48386,48433,0],[48433,48386,48387,0],[48433,48387,19692,0],[19694,48431,19693,0],[48432,19694,19697,0],[48432,19697,19686,0],[48431,13621,19693,0],[19697,19693,19695,0],[19697,19695,19696,0],[19696,19695,13619,0],[13619,19695,13620,0],[48102,19696,19683,0],[19683,19696,13619,0],[48102,19684,19696,0],[19696,19684,19697,0],[19693,19697,19694,0],[19686,19697,19684,0],[13620,19695,19693,0],[13620,19693,13621,0],[19655,19672,40458,0],[40458,19672,19654,0],[19671,19672,19673,0],[19382,19383,19384,0],[19382,19384,19380,0],[19380,19384,19698,0],[19698,19384,19699,0],[19698,19699,19700,0],[19700,19706,19698,0],[19698,19706,19702,0],[19702,19708,19379,0],[19702,19379,19380,0],[19380,19381,19382,0],[19708,19703,19378,0],[19378,19703,19741,0],[19741,19703,19704,0],[19741,19704,19712,0],[19712,19714,19713,0],[19705,19713,19375,0],[19712,19713,19376,0],[19708,19702,19707,0],[19706,19737,19707,0],[19707,19737,19701,0],[19707,19701,19651,0],[19704,19709,19710,0],[19704,19711,19712,0],[19713,19714,19375,0],[19714,19728,19375,0],[19719,19715,19716,0],[19719,19716,19717,0],[19717,19718,13802,0],[7881,19718,13800,0],[19373,19715,19372,0],[19372,19715,19719,0],[19372,19719,19720,0],[19724,19721,19722,0],[19722,19723,19724,0],[19721,19724,19725,0],[19720,19721,19725,0],[19720,19719,19727,0],[19720,19727,19721,0],[19721,13802,19722,0],[19719,19717,19727,0],[19727,13802,19721,0],[19722,13802,13803,0],[19727,19717,13802,0],[19375,19728,19715,0],[19734,19729,13799,0],[13799,19729,19730,0],[19731,19650,13798,0],[13798,19650,19665,0],[19650,19731,19732,0],[19732,19731,19730,0],[19728,19732,19729,0],[19729,19732,19730,0],[19732,19710,19650,0],[19704,19710,19711,0],[19711,19710,19714,0],[19714,19710,19733,0],[19714,19733,19728,0],[19728,19733,19732,0],[19732,19733,19710,0],[19710,19709,19650,0],[19730,19731,13799,0],[19728,19729,19715,0],[19715,19729,19734,0],[19716,19734,19735,0],[47689,13800,19735,0],[13799,19735,19734,0],[19716,19735,19717,0],[19735,13800,19717,0],[19717,13800,19718,0],[19714,19712,19711,0],[19707,47757,19708,0],[19708,47757,19703,0],[19702,19380,19698,0],[19699,19749,19738,0],[19699,19738,19700,0],[19700,19738,19736,0],[19736,19738,19648,0],[19700,19736,19706,0],[19706,19736,19737,0],[19648,19738,19386,0],[19386,19738,19385,0],[19385,19738,19749,0],[19377,19376,19739,0],[47755,19739,19740,0],[19376,19740,19739,0],[19381,19742,19743,0],[19745,19493,19746,0],[19746,19747,19748,0],[19750,19751,19385,0],[19385,19751,19754,0],[19385,19754,19386,0],[19754,19752,19387,0],[19387,19752,19388,0],[19754,19387,19386,0],[19752,19389,19388,0],[19393,19752,19753,0],[19393,19753,19394,0],[19754,19751,19753,0],[19486,19394,19485,0],[19485,19394,19753,0],[19753,19752,19754,0],[19746,19383,19745,0],[19744,19383,19381,0],[19744,19381,19743,0],[19383,19744,19745,0],[47753,19503,19755,0],[47753,19755,47756,0],[19742,47753,19743,0],[19743,47756,19744,0],[19744,19499,19498,0],[19744,19498,19745,0],[19745,19498,19493,0],[19748,19747,19749,0],[19749,19747,19750,0],[19756,19493,19498,0],[19756,19494,19493,0],[47756,19743,47753,0],[19742,19379,19378,0],[19369,19370,19368,0],[19368,19370,19762,0],[19368,19762,19371,0],[19368,19371,19367,0],[19367,19371,19757,0],[19758,19757,19759,0],[19759,19757,19760,0],[19760,19757,40437,0],[19757,19758,19367,0],[19370,19361,19761,0],[19370,19761,19762,0],[19762,19761,19763,0],[19762,19763,19371,0],[19761,19361,19767,0],[19373,19765,19766,0],[19373,19766,19374,0],[19374,19766,19705,0],[19761,19767,19763,0],[19767,19764,19768,0],[19767,19768,19763,0],[19763,19768,19769,0],[19763,19769,19725,0],[19770,19769,19768,0],[19764,19765,19768,0],[19768,19765,19770,0],[19373,19770,19765,0],[19361,19360,19767,0],[19767,19360,19764,0],[19771,19772,19766,0],[19766,19772,47741,0],[19808,19358,19773,0],[19773,19358,19774,0],[19774,19357,19775,0],[19802,19775,19787,0],[19764,19771,19765,0],[19764,19360,19771,0],[19771,19360,19807,0],[19771,19807,19772,0],[19360,19359,19807,0],[19369,19368,19776,0],[19366,19776,19368,0],[19368,19367,19782,0],[19790,19361,19362,0],[19791,19362,19777,0],[19777,19363,19364,0],[19363,19777,19362,0],[19789,19791,19778,0],[19778,19791,19777,0],[7908,19778,19364,0],[7908,19364,19779,0],[19779,19364,19780,0],[19781,19780,19365,0],[19781,19365,19366,0],[19364,19778,19777,0],[19778,19783,19789,0],[19789,19783,19788,0],[19788,19783,19784,0],[19784,19785,19787,0],[19787,19785,7905,0],[19356,7905,19355,0],[19355,7905,19816,0],[19816,7905,19354,0],[19354,19786,26350,0],[19786,19354,7905,0],[19787,7905,19356,0],[19787,19357,19788,0],[19787,19788,19784,0],[19789,19788,19357,0],[19789,19357,19359,0],[19778,7908,19783,0],[19783,7908,19784,0],[19784,7908,19785,0],[19780,19781,19779,0],[19790,19362,19791,0],[19790,19791,19359,0],[19359,19791,19789,0],[19344,19345,19343,0],[19343,19345,19795,0],[19343,19795,19342,0],[19792,19345,19347,0],[19792,19347,19793,0],[19340,19792,19793,0],[19347,19820,19793,0],[19795,19794,19797,0],[19795,19797,19796,0],[40427,19796,40426,0],[40426,19796,19337,0],[19337,19796,19340,0],[19340,19796,19797,0],[19795,40436,19342,0],[19341,19798,19809,0],[19809,19798,19799,0],[19799,19798,19801,0],[19801,19800,19775,0],[19775,19800,19774,0],[19802,19801,19775,0],[19801,19802,19799,0],[19799,19802,19803,0],[19803,19802,19356,0],[19798,47735,19804,0],[19773,19805,19806,0],[19773,19806,19808,0],[19807,19806,19772,0],[19798,19804,19801,0],[19801,19804,19800,0],[19358,19808,19807,0],[19807,19808,19806,0],[19773,19800,19805,0],[19805,19800,19804,0],[19774,19800,19773,0],[19342,19341,19809,0],[19342,19809,19810,0],[19799,19803,19809,0],[19809,19803,19810,0],[19810,19803,47713,0],[19810,47713,19811,0],[19811,47713,19355,0],[19810,19343,19342,0],[19810,19811,19343,0],[19817,19813,19814,0],[19817,19814,19350,0],[19350,19814,19352,0],[19352,19814,19815,0],[19352,19815,19816,0],[19354,19353,19816,0],[19816,19353,19352,0],[19816,19815,19355,0],[19815,19814,19813,0],[19815,19813,19812,0],[19815,19812,19355,0],[19355,19812,19811,0],[19813,19817,19812,0],[19812,19817,19344,0],[19346,19818,19819,0],[19346,19819,19347,0],[19347,19819,19820,0],[19820,19819,19349,0],[19820,19349,19348,0],[19817,19818,19344,0],[40425,19337,19324,0],[19323,19849,19338,0],[19323,19338,19821,0],[19821,19338,19847,0],[19847,19338,19822,0],[19822,40404,40412,0],[40412,40404,19823,0],[19824,19846,19825,0],[19848,19825,19826,0],[19320,19825,19846,0],[19320,19846,19835,0],[19835,19846,19827,0],[19827,19829,19828,0],[19828,19829,19830,0],[19830,19832,19831,0],[19836,19831,19832,0],[19836,19832,19833,0],[19833,19302,19303,0],[19831,19834,19828,0],[19828,19834,19316,0],[19316,19834,19315,0],[19315,19834,40137,0],[19315,40137,19314,0],[19314,40137,19303,0],[19303,19313,19314,0],[19830,19831,19828,0],[19835,19319,19320,0],[19835,19827,19828,0],[19319,19321,19320,0],[19825,19320,19826,0],[19828,19316,19835,0],[19831,19836,19834,0],[19829,19827,19838,0],[19829,19838,19837,0],[19837,19838,19840,0],[19840,19839,19841,0],[19843,19842,39951,0],[19843,39951,19844,0],[19837,19830,19829,0],[19832,19830,19917,0],[19832,19917,19833,0],[19845,19918,40134,0],[40134,19918,40129,0],[40134,19302,19845,0],[19845,19302,19833,0],[19844,39953,19843,0],[19843,39953,19837,0],[19843,19837,19840,0],[19841,19842,19840,0],[19840,19842,19843,0],[19838,19827,19846,0],[19838,19846,19824,0],[19826,19821,19847,0],[19826,19847,19848,0],[19848,40411,19825,0],[40411,40412,19824,0],[19824,19825,40411,0],[19847,40411,19848,0],[19324,19339,19849,0],[19849,19339,19338,0],[19327,19334,19326,0],[19326,19334,19335,0],[19326,19335,19325,0],[19853,19327,19850,0],[19850,19327,40383,0],[19850,19851,19332,0],[19852,40154,19331,0],[19331,40154,40151,0],[19850,19332,19853,0],[19328,19853,19854,0],[19328,19854,19330,0],[19332,19854,19853,0],[19332,19851,40142,0],[40142,19852,19332,0],[40141,19855,19298,0],[19298,19855,19318,0],[19318,19855,19856,0],[19855,40141,19851,0],[19851,19850,19855,0],[19855,19850,19856,0],[40383,19856,19850,0],[19319,19856,19321,0],[40383,19327,19322,0],[19317,19835,19316,0],[19835,19317,19319,0],[19296,19314,19313,0],[19302,40307,19304,0],[40128,19858,40127,0],[40127,19858,19300,0],[40127,19300,47620,0],[19300,19858,39936,0],[39936,19858,39935,0],[39935,19858,19857,0],[8080,47620,19859,0],[19859,19300,8079,0],[47620,19300,19859,0],[19860,19861,19868,0],[19868,39937,19862,0],[39933,19863,19864,0],[19864,19863,39931,0],[19864,39931,19872,0],[19864,19872,19869,0],[19869,19872,19865,0],[19860,19867,8079,0],[19868,19862,19869,0],[19868,19869,19866,0],[19866,19869,19865,0],[19867,19860,19866,0],[19866,19860,19868,0],[19862,39933,19864,0],[19862,19864,19869,0],[19300,19860,8079,0],[19867,19866,19870,0],[19870,19866,19865,0],[19870,19865,19871,0],[19871,19865,19872,0],[19871,19872,7966,0],[7966,19872,7965,0],[19873,19874,19881,0],[19881,19874,19882,0],[19906,19882,19878,0],[19906,19878,19931,0],[19931,19878,19880,0],[19927,19880,19875,0],[40384,19875,19876,0],[19876,19875,19877,0],[19879,19882,19920,0],[19920,19882,19874,0],[19880,19878,19879,0],[19879,19877,19880,0],[19880,19877,19875,0],[19932,7965,19881,0],[19881,19882,19883,0],[20059,19883,19889,0],[20035,19889,19884,0],[19884,19889,19885,0],[19884,19885,19886,0],[19884,19886,19887,0],[19887,19886,20007,0],[20007,19886,20008,0],[20008,19886,19888,0],[19888,19886,19890,0],[19890,19886,19885,0],[19890,19885,19889,0],[19889,19883,19890,0],[19890,19883,19891,0],[19890,19891,19888,0],[19888,19891,19905,0],[19901,19908,19892,0],[19892,19921,19893,0],[19894,19922,20068,0],[20068,19922,19895,0],[20068,19895,19896,0],[39984,19923,39973,0],[19897,19898,19899,0],[19907,19901,19904,0],[19904,19901,19903,0],[19904,19903,19902,0],[19902,19903,20062,0],[20062,19903,19894,0],[20062,19894,20067,0],[19894,19903,19893,0],[19893,19903,19892,0],[19892,19903,19901,0],[19905,19904,20061,0],[19905,20061,19888,0],[19904,19905,19907,0],[19883,20059,19881,0],[19932,19881,20059,0],[19882,19906,19883,0],[19883,19906,19891,0],[19905,19891,19906,0],[19905,19906,19907,0],[19901,19907,19908,0],[19927,19875,19926,0],[19926,19875,40384,0],[19876,19909,39948,0],[39943,19911,19910,0],[19916,19911,40385,0],[40385,40306,19918,0],[40306,39940,19912,0],[19912,39939,19913,0],[19913,19915,19863,0],[19914,39932,19915,0],[19913,19863,39933,0],[40385,19918,19916,0],[19911,19916,19833,0],[19911,19833,19917,0],[19833,19916,19845,0],[19845,19916,19918,0],[19876,19877,19909,0],[19919,19879,19920,0],[19879,19919,19877,0],[19919,19909,19877,0],[19908,19921,19892,0],[19908,19927,19921,0],[19893,19921,19928,0],[19893,19928,19922,0],[19895,19922,19929,0],[19895,19929,19923,0],[19899,19898,40409,0],[40386,19924,19930,0],[40386,19930,19925,0],[19927,19926,19921,0],[19926,40384,19925,0],[19926,19929,19928,0],[19926,19925,19929,0],[19923,19930,19898,0],[19898,19930,19924,0],[19898,19924,40409,0],[19923,19929,19930,0],[19921,19926,19928,0],[19928,19929,19922,0],[19898,19897,19923,0],[19923,19897,39973,0],[19896,19895,39984,0],[19922,19894,19893,0],[19927,19908,19880,0],[19880,19908,19931,0],[19931,19908,19907,0],[19931,19907,19906,0],[19873,19881,7965,0],[7964,19932,20060,0],[7964,20060,20058,0],[20058,20035,48741,0],[48741,20035,19933,0],[19935,19934,20037,0],[19935,20037,19936,0],[19936,20037,19937,0],[20042,20043,39991,0],[39991,20043,20044,0],[39991,20044,7959,0],[7959,20044,19938,0],[7959,19938,7958,0],[7957,7958,40023,0],[8082,19939,47620,0],[8078,19940,8080,0],[8080,19940,8081,0],[8077,8076,8078,0],[8078,8076,19940,0],[8081,19940,19961,0],[8081,19961,19942,0],[8081,19942,19943,0],[19943,19942,19944,0],[19944,19942,19941,0],[19941,19942,19960,0],[8283,19944,8279,0],[8282,8283,8278,0],[8282,8083,8283,0],[19944,19941,8279,0],[8279,19941,19945,0],[8279,19945,8278,0],[8278,19945,47618,0],[19946,19947,8277,0],[8277,19947,19958,0],[8277,19958,19948,0],[19951,19949,19950,0],[19952,19956,19953,0],[19952,19953,19954,0],[19955,8272,19952,0],[19955,19952,19954,0],[19953,19956,40102,0],[40102,19956,40101,0],[40101,19956,19951,0],[40101,19951,19950,0],[19957,19949,8275,0],[8275,19949,19951,0],[19951,19956,48843,0],[48843,19956,48842,0],[8272,8273,19952,0],[48842,19956,19952,0],[48842,19952,8273,0],[47618,19946,8278,0],[19957,8071,19949,0],[19949,8071,8070,0],[19957,19948,19958,0],[19961,19940,8076,0],[19961,19960,19942,0],[19959,47619,8073,0],[8073,47619,40038,0],[7974,7975,8071,0],[8071,7975,19962,0],[19962,8068,8069,0],[8071,19962,8070,0],[8070,19962,8069,0],[19962,7975,40095,0],[19962,40095,19963,0],[8068,19963,8067,0],[8067,19963,8066,0],[19964,40096,7976,0],[40095,7975,7976,0],[40037,19965,7970,0],[7970,19965,19968,0],[40029,19968,19966,0],[19966,40028,8040,0],[19966,19968,19967,0],[19967,19968,19970,0],[19970,19968,19969,0],[19965,19969,19968,0],[19969,7968,19977,0],[19969,19977,19970,0],[19970,19999,19973,0],[19973,19999,19998,0],[7986,19972,48744,0],[8018,19972,19971,0],[19971,19972,19998,0],[19998,19972,19973,0],[19973,19967,19970,0],[19973,40028,19967,0],[8018,19971,19975,0],[8018,19975,19974,0],[19978,7963,40027,0],[19978,40027,20000,0],[20000,40027,19977,0],[20000,19977,7968,0],[19970,19977,19999,0],[19975,19976,19974,0],[19974,7961,19979,0],[19980,19981,8010,0],[19979,7961,19997,0],[19981,19997,19982,0],[19981,19982,7960,0],[19981,7960,8010,0],[7960,39990,8015,0],[8015,39990,19996,0],[19995,19985,19984,0],[19984,19985,19986,0],[19986,19985,37466,0],[19986,37466,19990,0],[19990,37466,39823,0],[19990,39823,19988,0],[19990,19988,39986,0],[39986,19988,19987,0],[19990,19991,19993,0],[19993,19991,19992,0],[19993,19992,19986,0],[19984,8002,19994,0],[19984,19994,19995,0],[19995,19994,19983,0],[19983,19994,19996,0],[8002,8014,19994,0],[19986,19990,19993,0],[19992,8002,19986,0],[19986,8002,19984,0],[19987,19989,39986,0],[8014,19996,19994,0],[19996,8014,8015,0],[8015,8014,8013,0],[19979,19997,19980,0],[19980,19997,19981,0],[7961,19974,7962,0],[19974,19979,8017,0],[19974,8017,8018,0],[19971,19998,19975,0],[19975,19998,19999,0],[19999,40027,19976,0],[19976,19975,19999,0],[20000,7967,19978,0],[19978,7967,19932,0],[20019,20001,20053,0],[20019,20053,20002,0],[20002,20053,20052,0],[20002,20052,20003,0],[20003,20047,20010,0],[20010,20048,20004,0],[20004,20048,20005,0],[20006,20033,20040,0],[20009,20008,20061,0],[20009,20061,20066,0],[20009,20066,20031,0],[20034,20031,20065,0],[20034,20065,39968,0],[20011,20003,20010,0],[39960,39966,39961,0],[39961,39966,39962,0],[39962,39966,48746,0],[40387,40410,20014,0],[20014,20015,20016,0],[20014,20016,47728,0],[40396,47726,47725,0],[40396,47725,20017,0],[20017,47725,47723,0],[47720,7922,20020,0],[20012,39963,20011,0],[20011,39963,20003,0],[20003,39963,20021,0],[20021,39963,20018,0],[20021,20002,20003,0],[20002,20021,20018,0],[20019,20018,20020,0],[20019,20020,7922,0],[20020,20018,39964,0],[39964,20018,39963,0],[20020,39964,39959,0],[39959,39964,20022,0],[39959,20022,20023,0],[20023,20022,20024,0],[20028,26356,39957,0],[39957,20029,39958,0],[20019,47719,20001,0],[47719,7923,7954,0],[20007,20008,20032,0],[20032,20008,20009,0],[20033,20032,20031,0],[20033,20031,20034,0],[20009,20031,20032,0],[20033,20034,20005,0],[20033,20005,20054,0],[20033,20006,20032,0],[20034,39968,20005,0],[20005,39968,20004,0],[20032,20006,20007,0],[19933,20035,19934,0],[19934,20035,20036,0],[20037,20036,20041,0],[20037,20041,20038,0],[20039,20038,20040,0],[20040,20038,20041,0],[20041,19887,20007,0],[20041,20007,20006,0],[20006,20040,20041,0],[20041,20036,19887,0],[19887,20036,19884,0],[19884,20036,20035,0],[19934,20036,20037,0],[20037,20038,19937,0],[40023,40024,20050,0],[20045,39930,40025,0],[40025,39930,20046,0],[20046,39930,20047,0],[20010,20047,20048,0],[20057,20048,20049,0],[20049,20050,20051,0],[20050,20049,20045,0],[20050,40024,20051,0],[19938,20051,40024,0],[19938,20044,20051,0],[20051,20044,20056,0],[20051,20056,20057,0],[20051,20057,20049,0],[20048,20047,39930,0],[20048,39930,20049,0],[20052,20046,20047,0],[20052,20047,20003,0],[19938,40024,7958,0],[19937,20038,20042,0],[20042,20038,20039,0],[20043,20039,20056,0],[20054,20055,20033,0],[20033,20055,20040,0],[20039,20055,20056,0],[20056,20055,20054,0],[20039,20040,20055,0],[20056,20054,20057,0],[20054,20005,20057,0],[20057,20005,20048,0],[20056,20044,20043,0],[20039,20043,20042,0],[19889,20058,20059,0],[20058,19889,20035,0],[20059,20058,20060,0],[20059,20060,19932,0],[20061,19904,19902,0],[20031,20064,20065,0],[20064,20031,20066,0],[20064,20066,19902,0],[19902,20066,20061,0],[19902,20062,20064,0],[20064,20062,20063,0],[20063,20067,39969,0],[39969,20067,20068,0],[20063,20062,20067,0],[19894,20068,20067,0],[20071,7951,20030,0],[20030,7951,20070,0],[7951,20071,26063,0],[26063,20071,7934,0],[20070,7951,20069,0],[20069,7952,20070,0],[7952,20072,20070,0],[20030,20070,20072,0],[20030,20072,7954,0],[7949,26197,7950,0],[26063,7950,26196,0],[26196,20073,26063,0],[26063,20073,20074,0],[36152,20073,48663,0],[20075,48663,48662,0],[20075,48662,20076,0],[36971,20077,20079,0],[36971,20079,20078,0],[20078,20079,20080,0],[20082,48698,36121,0],[20082,36121,20083,0],[20083,20085,20084,0],[20084,20085,36123,0],[20084,36123,36127,0],[20088,20087,21048,0],[20088,21048,26040,0],[26040,21052,20089,0],[20091,20089,20090,0],[20091,20090,21051,0],[20091,21051,20092,0],[20092,26190,20093,0],[20093,26190,20094,0],[20095,20094,26191,0],[20095,26191,26036,0],[26036,26191,20096,0],[20096,26192,20097,0],[20097,26192,20449,0],[20097,20098,20099,0],[20099,48710,20101,0],[20101,48710,20100,0],[20101,20100,20458,0],[20102,37556,20103,0],[20103,37556,20455,0],[20455,20451,20434,0],[20455,20434,20445,0],[20455,20445,20103,0],[20103,20445,26182,0],[26182,20445,20436,0],[26182,20436,20437,0],[26182,20437,26183,0],[26183,20437,20104,0],[26189,20440,20107,0],[26189,20107,26188,0],[26186,26188,20110,0],[26186,20110,20106,0],[20107,20108,20109,0],[20106,20110,37579,0],[20106,37579,20111,0],[37580,20112,26028,0],[37580,26028,20113,0],[48723,20113,20114,0],[20114,20113,20442,0],[20442,20443,20115,0],[20115,20443,20257,0],[20115,20257,20116,0],[20116,20257,20264,0],[25999,20118,20119,0],[20119,20118,20420,0],[20119,20420,20270,0],[20120,20121,39021,0],[39021,20121,20381,0],[39021,20381,20122,0],[20122,20382,20123,0],[20123,20382,20383,0],[20124,20383,20125,0],[20127,20126,20128,0],[20127,20128,20129,0],[20130,20131,37524,0],[37524,37355,20132,0],[37587,20132,37356,0],[37587,37356,25873,0],[25873,20355,25871,0],[25871,20357,20133,0],[20133,20357,20134,0],[25864,25867,39015,0],[25864,39015,20135,0],[20136,20135,20137,0],[25848,20137,37591,0],[37363,20301,20139,0],[20139,20301,21426,0],[21426,20301,20141,0],[21426,20141,20140,0],[20141,20300,20142,0],[20142,20319,20143,0],[20143,20319,21417,0],[20143,21417,20144,0],[20144,20296,22893,0],[22893,20296,20145,0],[20145,20295,20146,0],[20146,20295,22897,0],[22900,20147,20148,0],[22503,22502,20150,0],[20150,22502,22501,0],[20150,22501,20151,0],[20150,20151,22878,0],[22878,20151,20152,0],[22499,37369,20166,0],[20166,37369,37370,0],[20166,37370,22500,0],[20154,20153,22935,0],[22935,22508,22934,0],[22935,22934,20154,0],[20154,22934,22933,0],[20154,22933,20155,0],[20155,22933,22932,0],[20170,20156,20157,0],[20157,20158,20159,0],[20172,20159,20168,0],[20172,20168,22908,0],[20161,20169,20162,0],[20156,20170,20163,0],[20156,20163,20164,0],[20164,20163,20171,0],[20155,20171,20165,0],[20155,20165,20153,0],[20153,20165,22500,0],[22500,20165,20166,0],[20166,20167,22499,0],[20166,20165,20167,0],[22499,20167,22876,0],[20169,20161,22910,0],[22910,20161,20160,0],[20170,20169,20163,0],[20170,20162,20169,0],[20169,22876,20167,0],[20169,20167,20171,0],[20169,20171,20163,0],[20171,20167,20165,0],[20153,20154,20155,0],[20164,20171,22932,0],[22932,20171,20155,0],[20162,20172,20161,0],[20161,20172,20160,0],[20160,20172,22908,0],[20162,20170,20157,0],[20162,20157,20172,0],[20172,20157,20159,0],[22897,20295,20147,0],[20147,20295,20293,0],[20180,21407,22528,0],[22528,21407,20181,0],[20181,21407,20182,0],[20182,21398,22526,0],[22526,21398,20183,0],[20183,21398,22518,0],[20184,37334,20185,0],[20187,37329,22468,0],[22468,37329,20188,0],[20192,20191,20193,0],[20192,20193,20194,0],[20194,20193,20400,0],[20194,20400,20402,0],[20194,20402,21397,0],[20194,21397,20215,0],[20215,21397,21395,0],[20215,21395,20212,0],[20212,21395,20195,0],[21393,20196,20197,0],[21393,20197,21392,0],[21392,20197,20198,0],[21392,20419,20202,0],[20202,20419,20412,0],[20202,20412,20199,0],[20199,20200,20202,0],[20202,20200,20201,0],[20202,20201,37344,0],[20202,37344,20203,0],[20196,20204,20195,0],[20195,20204,37346,0],[37346,20216,20205,0],[37346,20205,20206,0],[20208,20207,20191,0],[20208,20191,20192,0],[20208,20192,20213,0],[20208,20213,20209,0],[20209,20213,20210,0],[37346,20206,20211,0],[20211,20212,20195,0],[20211,20195,37346,0],[20210,20206,20209,0],[20213,20192,20214,0],[20213,20214,20210,0],[20215,20212,20211,0],[20215,20211,20214,0],[20215,20214,20194,0],[20194,20214,20192,0],[20482,20216,20418,0],[20482,20418,20217,0],[20482,20217,20218,0],[20218,20227,20219,0],[20219,20227,20220,0],[20219,20220,20221,0],[20221,20220,20484,0],[20484,20220,20222,0],[20222,37212,21390,0],[20223,21390,37212,0],[20223,37212,37257,0],[20226,37257,37258,0],[20225,37258,20224,0],[20224,20496,20495,0],[20224,20495,20225,0],[20225,21384,20226,0],[20226,21384,20223,0],[37258,20225,20226,0],[37257,20226,20223,0],[20220,20227,20229,0],[20229,20227,20228,0],[20229,20228,20230,0],[20233,20234,20235,0],[20233,20235,20240,0],[20235,20423,20240,0],[20240,20423,20236,0],[20236,20237,20481,0],[20237,20260,20238,0],[20238,20260,20258,0],[20238,20258,20259,0],[20238,20259,20239,0],[20481,20239,20236,0],[20240,20241,20233,0],[20236,20239,20240,0],[20240,20239,20241,0],[20243,20241,20242,0],[20243,20242,37214,0],[37214,20242,37210,0],[37211,20244,37256,0],[20244,20246,20245,0],[20245,20246,20478,0],[20478,20246,37209,0],[20478,37209,20425,0],[20425,37209,37210,0],[37210,20247,20248,0],[20247,20241,20249,0],[20249,20241,20239,0],[20474,20250,20251,0],[20474,20251,20252,0],[20474,20252,20253,0],[20255,20254,20438,0],[20438,20254,20256,0],[20440,20256,48720,0],[20440,48720,20439,0],[20443,20269,20257,0],[20250,20249,20251,0],[20265,20266,20258,0],[20261,20260,20422,0],[20422,20262,20263,0],[20263,20262,20421,0],[20263,20421,20264,0],[20264,20117,20116,0],[20422,20263,20261,0],[20265,48718,20266,0],[20251,20266,20252,0],[20266,48718,20252,0],[20252,48718,20253,0],[20253,48718,20255,0],[20256,20254,48720,0],[20255,48719,20254,0],[20254,48719,20267,0],[20264,20257,20268,0],[20268,20257,20269,0],[20261,20265,20258,0],[20261,20258,20260,0],[20260,20237,20422,0],[20270,20411,20271,0],[20271,20411,20272,0],[20419,21392,20272,0],[20380,20271,20272,0],[20380,20272,21394,0],[20273,20274,20275,0],[20273,20275,37351,0],[20326,37351,20275,0],[20326,20275,20276,0],[20276,20275,20277,0],[20278,20277,20398,0],[20393,20279,20396,0],[20393,20396,20394,0],[20280,20281,20282,0],[20283,20282,21412,0],[37716,37373,37715,0],[37715,37373,20285,0],[20309,20285,20286,0],[20288,20287,20289,0],[20289,20292,20288,0],[20289,20287,20290,0],[20175,20290,20176,0],[20175,20174,20173,0],[22488,20291,20173,0],[20291,20292,20173,0],[20289,20175,20173,0],[20289,20173,20292,0],[20297,20293,20294,0],[21421,20294,20295,0],[21421,20295,20296,0],[20296,20295,20145,0],[20292,20291,20297,0],[20297,20291,20293,0],[20294,20293,20295,0],[20297,20288,20292,0],[20297,20294,20298,0],[20298,20294,21420,0],[20298,21420,20299,0],[20299,20317,20300,0],[20300,20141,20301,0],[20299,20300,20301,0],[20299,20301,20302,0],[20304,37365,20305,0],[20362,37586,20306,0],[20306,37586,20307,0],[20306,20307,20315,0],[20308,37585,20309,0],[20308,20309,20286,0],[20310,20286,20287,0],[37608,20312,20298,0],[37608,20298,20299,0],[20287,20288,20311,0],[20311,20288,20320,0],[20313,20310,20311,0],[20311,20310,20287,0],[20311,20320,20314,0],[20311,20314,20313,0],[20308,20313,20307,0],[20307,20313,20315,0],[20306,20315,20362,0],[20313,20308,20310,0],[20310,20308,20286,0],[20300,20317,20318,0],[20319,20318,21417,0],[20319,20142,20318,0],[20318,20142,20300,0],[20297,20298,20320,0],[20320,20288,20297,0],[20175,20289,20290,0],[20290,20287,20286,0],[20176,20290,20177,0],[20177,20290,20285,0],[20177,20285,37373,0],[20286,20285,20290,0],[20282,20283,20280,0],[20280,20283,20392,0],[20392,20321,20322,0],[20322,20321,20330,0],[20330,20321,37371,0],[37371,20378,20330,0],[20322,20330,20323,0],[20324,20327,20325,0],[20326,20276,20325,0],[20329,20328,20330,0],[20329,20330,20368,0],[20368,20330,20378,0],[20326,20325,20327,0],[20331,20332,37353,0],[37353,20332,20333,0],[20386,20334,20379,0],[20386,20379,20335,0],[20335,20379,20328,0],[20335,20328,20329,0],[20335,20329,20368,0],[20335,20368,20336,0],[20336,20342,20338,0],[20336,20338,20337,0],[37355,37524,20131,0],[20342,20341,20370,0],[20342,20370,20344,0],[20344,20370,20343,0],[20344,20343,20345,0],[20347,20349,20348,0],[20348,20349,37358,0],[37358,20349,37357,0],[20350,20367,20352,0],[20350,20352,20351,0],[20351,20352,20353,0],[20354,37365,20304,0],[37357,20367,20356,0],[37358,20356,20355,0],[37358,20355,37359,0],[37359,20355,37356,0],[37356,20355,25873,0],[25871,20355,20356,0],[25871,20356,20357,0],[20358,20350,20351,0],[20358,20351,37593,0],[20358,37593,20359,0],[20358,20359,20360,0],[20350,20360,20357,0],[20350,20357,20356,0],[20357,20360,20134,0],[20134,20360,25868,0],[25868,37596,25867,0],[37357,20349,37366,0],[37366,20349,37367,0],[37367,20347,20361,0],[20362,20361,37586,0],[37586,20363,37584,0],[20363,20374,20364,0],[37585,20364,20365,0],[37585,20365,20309,0],[20365,37715,20309,0],[20309,37715,20285,0],[37715,20365,20377,0],[37715,20377,20366,0],[37717,20366,20378,0],[20364,37584,20363,0],[20347,37367,20349,0],[37357,37366,20367,0],[20348,37362,20371,0],[20371,20347,20348,0],[20368,20341,20336,0],[20336,20341,20342,0],[20342,20344,20338,0],[20341,20368,20369,0],[20341,20369,20370,0],[20370,20369,20375,0],[20370,20375,20343,0],[20374,20363,20346,0],[20346,20363,20371,0],[20361,20347,20372,0],[20372,20347,20371,0],[20374,20346,20345,0],[20374,20345,20343,0],[20361,20372,20373,0],[20373,20363,37586,0],[20373,37586,20361,0],[20375,20374,20343,0],[20376,20377,20364,0],[20364,20377,20365,0],[20377,20369,20378,0],[20368,20378,20369,0],[20375,20369,20376,0],[20376,20369,20377,0],[20378,20366,20377,0],[20376,20364,20375,0],[20375,20364,20374,0],[20334,20333,20379,0],[20327,20328,20332,0],[20331,20326,20332,0],[20328,20379,20332,0],[20332,20379,20333,0],[20326,20331,37351,0],[20273,20390,20407,0],[20407,20390,21394,0],[21394,20390,20380,0],[20380,20389,20121,0],[20121,20389,20381,0],[20381,20382,20122,0],[20383,20387,20384,0],[37377,20385,20391,0],[20337,20386,20336,0],[20336,20386,20335,0],[20337,37377,20386,0],[20334,20386,37377,0],[20334,37377,20391,0],[37024,20388,20382,0],[37024,20382,20381,0],[37024,20381,20389,0],[20390,20389,20380,0],[20382,20388,20383,0],[20383,20388,20387,0],[20385,20384,20391,0],[20391,20333,20334,0],[20384,20387,20391,0],[20391,20387,20333,0],[20383,20384,20125,0],[20125,20384,20385,0],[20125,20385,20126,0],[20121,20120,20380,0],[20380,20120,20271,0],[20327,20324,20323,0],[20327,20323,20328,0],[20328,20323,20330,0],[20324,20325,20409,0],[20409,20280,20392,0],[20280,20409,20393,0],[20394,20281,20393,0],[20393,20281,20280,0],[20392,20322,20324,0],[20392,20324,20409,0],[20323,20324,20322,0],[20392,20283,20321,0],[20321,20283,37372,0],[37372,20283,21415,0],[37372,21415,37371,0],[37371,21415,20284,0],[20281,20394,21409,0],[20397,20395,20396,0],[20397,20396,37341,0],[37341,20398,20401,0],[37341,20401,37339,0],[37339,20401,20399,0],[20399,20401,20404,0],[20404,20401,20408,0],[20408,20401,20277,0],[20277,20401,20398,0],[20398,37341,20278,0],[20278,37341,20396,0],[20278,20396,20279,0],[20394,20396,20395,0],[20394,20395,21404,0],[20400,20399,20402,0],[20403,20402,20404,0],[20405,20407,21394,0],[20402,20399,20404,0],[20406,20274,20273,0],[20273,20407,20406,0],[20406,20407,20405,0],[20406,20405,20403,0],[20274,20406,20408,0],[20274,20408,20275,0],[20406,20404,20408,0],[20408,20277,20275,0],[20404,20406,20403,0],[20279,20393,20409,0],[20410,20325,20276,0],[20409,20410,20279,0],[20279,20410,20278,0],[20278,20410,20277,0],[20270,20420,20412,0],[20270,20412,20411,0],[20412,20420,20421,0],[20412,20421,20199,0],[20199,20413,20200,0],[20200,20413,20414,0],[20200,20414,20423,0],[20200,20423,20415,0],[20415,20234,37344,0],[20228,49956,20424,0],[20228,20424,20231,0],[20231,20230,20228,0],[20417,20418,20216,0],[20228,20217,20418,0],[20217,20228,20227,0],[20217,20227,20218,0],[20200,20415,20201,0],[20412,20419,20411,0],[20421,20420,20264,0],[20264,20420,20118,0],[20264,20118,20117,0],[20262,20422,20413,0],[20262,20413,20199,0],[20262,20199,20421,0],[20413,20422,20414,0],[20414,20422,20237,0],[20414,20237,20423,0],[20423,20237,20236,0],[20423,20235,20415,0],[20415,20235,20234,0],[20424,49956,20416,0],[20424,20416,20234,0],[37344,20234,20416,0],[20231,20424,20232,0],[20259,20251,20249,0],[20259,20249,20239,0],[20251,20259,20266,0],[37210,20248,20425,0],[20245,20478,37204,0],[20427,20426,37326,0],[20427,37326,20428,0],[37019,20480,20430,0],[20430,20429,20472,0],[20431,20466,20432,0],[20432,20466,20460,0],[20432,20460,20433,0],[21078,20433,21076,0],[20105,20104,20438,0],[20438,20256,26189,0],[20438,26189,26187,0],[20438,26187,20105,0],[26189,20256,20440,0],[20440,20439,20441,0],[20439,20269,20441,0],[20441,20269,20443,0],[20443,20442,48725,0],[20443,48725,20441,0],[20255,20438,20104,0],[20255,20104,20471,0],[20471,20104,20462,0],[20462,20104,20437,0],[20462,20437,20436,0],[20435,20444,20436,0],[20255,20471,20253,0],[20436,20445,20435,0],[20435,20445,20434,0],[20446,20456,37015,0],[37015,20456,20452,0],[37015,20452,20447,0],[48709,20454,26193,0],[20454,20449,26192,0],[20097,20449,20098,0],[20449,20454,20450,0],[21055,20447,48722,0],[20446,20451,20456,0],[20452,20456,20453,0],[20451,20455,20457,0],[20451,20457,20456,0],[20456,20457,20459,0],[20457,20458,20459,0],[20459,20458,20100,0],[20459,20100,20450,0],[20450,20100,48710,0],[20453,20456,20459,0],[20453,20459,20454,0],[20454,20459,20450,0],[20455,37556,20457,0],[21076,20433,20446,0],[20446,20433,20460,0],[20446,20460,20464,0],[20446,20464,20434,0],[20434,20464,20435,0],[20464,20460,20466,0],[20463,20465,20461,0],[20461,20470,20462,0],[20461,20462,20444,0],[20463,20444,20435,0],[20463,20435,20464,0],[20461,20444,20463,0],[20464,20466,20465,0],[20464,20465,20463,0],[20465,20466,20467,0],[20465,20467,20468,0],[37016,20467,20431,0],[20431,20467,20466,0],[20465,20468,20461,0],[20461,20468,20469,0],[20461,20469,20470,0],[20470,20471,20462,0],[20472,20467,37016,0],[20472,20473,20469,0],[20469,20473,20470,0],[20470,20473,20474,0],[20470,20474,20471,0],[20253,20471,20474,0],[20473,20250,20474,0],[20472,20429,20473,0],[20467,20472,20468,0],[20468,20472,20469,0],[20431,20432,37018,0],[20431,37018,37017,0],[20431,37017,37016,0],[20475,37204,20478,0],[20476,20248,20250,0],[20476,20429,20477,0],[20480,20477,20430,0],[20430,20477,20429,0],[20429,20476,20473,0],[20473,20476,20250,0],[20478,20425,20477,0],[20477,20425,20248,0],[20477,20248,20476,0],[20478,20477,20475,0],[37204,37327,37203,0],[37203,37327,20426,0],[37327,20475,20479,0],[20477,20480,20479,0],[20477,20479,20475,0],[20426,37327,37326,0],[37204,20475,37327,0],[20248,20247,20250,0],[20250,20247,20249,0],[20241,20243,20233,0],[20233,20243,20232,0],[20233,20232,20234,0],[20238,20239,20481,0],[20238,20481,20237,0],[20489,20487,20485,0],[20489,20485,20221,0],[21388,20221,20484,0],[21389,20484,20222,0],[21389,20222,21390,0],[20221,20485,20219,0],[20483,20218,21318,0],[20482,20205,20216,0],[20205,20483,20206,0],[20206,20483,20486,0],[20486,20483,21318,0],[21318,20487,20488,0],[20488,20487,20489,0],[20490,20489,21387,0],[20490,21387,21317,0],[21317,21387,21319,0],[21319,21387,21391,0],[21319,21391,20491,0],[20491,21391,20492,0],[21346,20492,20493,0],[21346,20493,21358,0],[21358,20493,21383,0],[21383,20493,20495,0],[20495,20496,20494,0],[20497,21365,21359,0],[21344,20499,21343,0],[20503,20502,20506,0],[21240,20505,21370,0],[21370,20505,20507,0],[21370,20507,21363,0],[21363,20507,20506,0],[20506,20507,20504,0],[20504,20507,21341,0],[21341,20507,20505,0],[20500,20501,20509,0],[20500,20509,20508,0],[20508,20509,37135,0],[20509,21342,20510,0],[20510,21342,20511,0],[20511,20503,37120,0],[37120,20503,20506,0],[37120,20506,20504,0],[20504,21341,20512,0],[20512,37269,37122,0],[37122,37269,37271,0],[37122,37271,37121,0],[37121,37271,20513,0],[20513,37310,20514,0],[37129,21261,21263,0],[21263,20516,21260,0],[21265,21260,20517,0],[20519,20518,20515,0],[20519,20515,20520,0],[21180,21252,37299,0],[37299,21252,21179,0],[37299,21179,20521,0],[20522,20521,20523,0],[20522,20523,37309,0],[20524,37309,21177,0],[20524,21177,20525,0],[49003,20527,21166,0],[49003,21167,21170,0],[49004,49045,20609,0],[49000,20609,48999,0],[20528,48999,20607,0],[20535,20528,20529,0],[20529,20607,20595,0],[20529,20595,20533,0],[20533,20595,20530,0],[2360,2359,2369,0],[20530,2359,20587,0],[20530,20587,20531,0],[20531,20532,20533,0],[20529,20534,20535,0],[20535,20536,20537,0],[37302,20585,20582,0],[37304,20582,20583,0],[37304,20583,49221,0],[49220,49221,20584,0],[49220,20584,20575,0],[20541,20579,20542,0],[20542,20579,20534,0],[20534,20529,20533,0],[20533,20532,20534,0],[20534,20532,20542,0],[20541,20543,20545,0],[20545,20544,20561,0],[20545,20561,20557,0],[20545,20557,20546,0],[20546,20557,20556,0],[20570,49228,21289,0],[21289,49228,20566,0],[21283,20566,20547,0],[21283,20547,20548,0],[21284,20548,49224,0],[49226,20567,20550,0],[37816,20551,20564,0],[37821,49227,20555,0],[37821,20555,37822,0],[2361,20552,20553,0],[2361,20553,20554,0],[20557,20555,20556,0],[20559,20546,20558,0],[20558,20546,20556,0],[20554,20561,20587,0],[20587,20561,20544,0],[20561,20554,20553,0],[20555,20553,20552,0],[20555,20557,20553,0],[20553,20557,20561,0],[20552,37822,20555,0],[20563,20562,37816,0],[20563,37816,20564,0],[37815,20550,20567,0],[37815,20567,20551,0],[20551,20567,20564,0],[20547,20566,20549,0],[20547,20549,20548,0],[20548,20549,49224,0],[20562,20563,20558,0],[20559,20558,20563,0],[20559,20563,49229,0],[49229,20563,20564,0],[49229,20564,20565,0],[20564,20567,20565,0],[49226,20549,20567,0],[20565,20567,20566,0],[20566,20567,20549,0],[20545,20546,20568,0],[20568,20546,20559,0],[20577,20569,20576,0],[20576,20569,20570,0],[20570,20569,20560,0],[20571,20572,20573,0],[20573,20572,20574,0],[20573,20574,20575,0],[20575,20539,20573,0],[20573,20539,20540,0],[20573,20540,20576,0],[20540,20580,20577,0],[20577,20580,20541,0],[20576,20540,20577,0],[20577,20541,20545,0],[20577,20545,20568,0],[20571,20573,20576,0],[20571,20576,20570,0],[20541,20542,20543,0],[20545,20543,20544,0],[20544,20543,20578,0],[20587,20578,20531,0],[20579,20541,49219,0],[49219,20541,20580,0],[20534,20579,20535,0],[20535,20579,20581,0],[20535,20581,20536,0],[20536,20581,20582,0],[20582,20581,20583,0],[20575,20584,20539,0],[20536,20582,20585,0],[20536,20585,20537,0],[20540,20539,20580,0],[20580,20539,49219,0],[20581,20579,20586,0],[20581,20586,20583,0],[20584,49221,20583,0],[20538,37308,20524,0],[20533,20530,20531,0],[2359,2360,20587,0],[20587,2360,20554,0],[2361,20554,2360,0],[2358,2359,20596,0],[2358,20596,20588,0],[20590,20591,36327,0],[36327,36329,20592,0],[20593,20592,20594,0],[20596,20595,20597,0],[20597,20595,20605,0],[20597,20605,20606,0],[20597,20606,20598,0],[20598,20599,20600,0],[20600,20599,49045,0],[20600,49045,21171,0],[20600,21171,36332,0],[20589,20601,20590,0],[20601,20589,20602,0],[20601,20602,36332,0],[36332,20602,20600,0],[20588,20596,20597,0],[20604,20597,20598,0],[20588,20597,20604,0],[20600,20603,20598,0],[20598,20603,20604,0],[2359,20530,20596,0],[20596,20530,20595,0],[20605,20595,20607,0],[20605,20607,20608,0],[20608,20607,48999,0],[20609,20608,48999,0],[20605,20608,20606,0],[20606,20608,20599,0],[20599,20608,20609,0],[20609,49045,20599,0],[20538,20524,20526,0],[20526,20524,20525,0],[20611,20612,20613,0],[20613,38339,20614,0],[20613,20614,21166,0],[21165,20614,21151,0],[21165,21151,20615,0],[20615,21151,21168,0],[21168,21151,20616,0],[21168,20616,21169,0],[21169,20616,36330,0],[36330,20616,21150,0],[20617,21150,20618,0],[49025,20618,20619,0],[49025,20619,49026,0],[20620,49047,49048,0],[20620,49048,49030,0],[49030,49048,20621,0],[20623,20624,49035,0],[49035,20624,20625,0],[36373,20626,36306,0],[36306,20626,20627,0],[36288,49054,20628,0],[20628,21161,36289,0],[36289,21161,21162,0],[36291,21164,36300,0],[36300,21164,20630,0],[36300,20630,20631,0],[20631,20630,49106,0],[20631,49106,36384,0],[36384,49106,37109,0],[37109,49106,20632,0],[20632,49106,21230,0],[20632,20633,20634,0],[20636,20633,20635,0],[20636,20635,21193,0],[20636,21193,21107,0],[21107,21193,37186,0],[37186,21194,37040,0],[37040,21194,37039,0],[21195,21196,20637,0],[20637,21196,37182,0],[20637,37182,36451,0],[36451,37182,37185,0],[37185,21202,20657,0],[20657,21202,20638,0],[20639,20640,20641,0],[20641,20640,20642,0],[20642,21002,20652,0],[20652,21002,20644,0],[20652,20644,20643,0],[20643,20644,37266,0],[20646,20645,20997,0],[20646,20802,20647,0],[20648,20647,20801,0],[20643,20649,20650,0],[20651,49513,20653,0],[20653,20655,20654,0],[20654,20655,20656,0],[20656,20638,20639,0],[20656,20639,20641,0],[20656,20641,20654,0],[20654,20641,20653,0],[20653,20641,20652,0],[20652,20650,20651,0],[20652,20651,20653,0],[20638,20656,20657,0],[20657,20658,37185,0],[37185,20658,20659,0],[20659,20658,20660,0],[20660,20658,20661,0],[20658,20657,20661,0],[20661,20657,20655,0],[20661,20655,20662,0],[20661,20662,20660,0],[20660,20662,20663,0],[20665,20664,20651,0],[20665,20651,20650,0],[20665,20650,37092,0],[37092,20650,20649,0],[37108,20805,20804,0],[37108,20804,20669,0],[20669,20804,20670,0],[20671,20672,36485,0],[20817,37137,20694,0],[20694,37137,37142,0],[20696,20794,20674,0],[20696,20674,20673,0],[37148,20673,20674,0],[20700,20674,20699,0],[20699,20675,35994,0],[35994,20675,20705,0],[35996,20705,20676,0],[35996,20676,20677,0],[35996,20677,35998,0],[35998,20677,20678,0],[35986,20681,20680,0],[35986,20680,7440,0],[7440,20680,7638,0],[7638,20680,20798,0],[20679,20681,35999,0],[35999,20681,35986,0],[35999,7441,35987,0],[35990,35987,20787,0],[35990,20787,20682,0],[35989,20711,35993,0],[20703,20683,20707,0],[20684,20685,1536,0],[20684,1536,20703,0],[36596,1536,1534,0],[36596,1534,20686,0],[37154,20702,20687,0],[20690,20689,20691,0],[37145,20692,20694,0],[20694,20692,20693,0],[20693,20692,36484,0],[20693,36484,20817,0],[20817,36484,20672,0],[20817,20694,20693,0],[20694,37142,20695,0],[20695,37142,37153,0],[37153,20696,20673,0],[20688,37147,37146,0],[20688,37146,20701,0],[20688,20701,20687,0],[20687,20701,37154,0],[35994,20698,20699,0],[20699,20698,20697,0],[20699,20697,20700,0],[37148,20701,37146,0],[20701,37148,37149,0],[20701,37149,20697,0],[20697,37149,20700,0],[37154,20686,20702,0],[36596,20686,35994,0],[35994,20686,20698,0],[20698,20686,20697,0],[20697,20686,37154,0],[20688,20690,37147,0],[1534,20702,20686,0],[1534,1533,20702,0],[1536,36596,20703,0],[20703,36596,36597,0],[20703,36597,20683,0],[20683,36597,20704,0],[35993,20704,35991,0],[35991,20704,35995,0],[35995,20705,35996,0],[20683,35993,20707,0],[20707,35993,20706,0],[20707,20706,20708,0],[20707,20708,20709,0],[20684,20709,20789,0],[20789,36436,1538,0],[1538,36436,20710,0],[20710,1540,1539,0],[20789,20685,20684,0],[20709,20684,20703,0],[20709,20703,20707,0],[35993,20711,20706,0],[20711,20713,20712,0],[20712,20713,36434,0],[36434,20785,20715,0],[20715,20785,20714,0],[20715,20714,7449,0],[20715,7449,20716,0],[20716,7449,20717,0],[20716,20717,20718,0],[20718,20717,20719,0],[20719,20717,7451,0],[20719,7451,20765,0],[20719,20765,20774,0],[20774,20765,20760,0],[20775,20720,20781,0],[20781,20720,20766,0],[20781,20766,20782,0],[20782,20766,20767,0],[20759,20721,36515,0],[36515,20721,20722,0],[20744,20722,20724,0],[20733,20744,20724,0],[20733,20724,20723,0],[20723,20724,20743,0],[20743,20724,20725,0],[20743,20725,20726,0],[20743,20726,27168,0],[20743,27168,27162,0],[20743,27162,20742,0],[20742,27162,20727,0],[20734,36250,36249,0],[36249,36250,20736,0],[20730,20731,20739,0],[20739,20731,36591,0],[20735,20732,20744,0],[20735,20744,20733,0],[20741,20733,20723,0],[20741,20723,20734,0],[20734,20723,20729,0],[20733,20741,20735,0],[20735,20736,20738,0],[20738,20736,20737,0],[20732,20735,20738,0],[20732,20738,20739,0],[20739,20738,20737,0],[20737,20740,20739,0],[20739,36591,20732,0],[20729,20723,20742,0],[20742,20727,20728,0],[20742,20728,20729,0],[20743,20742,20723,0],[20744,20732,20722,0],[27167,20745,20746,0],[27167,20746,27166,0],[27166,20746,20747,0],[20747,20756,20748,0],[20748,20756,20752,0],[49519,20748,20750,0],[49519,20750,20749,0],[20751,20750,20752,0],[20751,20752,20754,0],[20754,20752,20753,0],[20753,20752,20756,0],[20753,20756,20769,0],[20751,20754,35982,0],[20754,35975,35978,0],[35978,35975,20755,0],[7465,7466,7467,0],[20749,20750,35973,0],[20750,20748,20752,0],[20725,20724,20757,0],[20759,20758,20721,0],[20722,20721,20757,0],[20722,20757,20724,0],[20757,20721,20758,0],[20759,20767,20761,0],[20761,20767,20760,0],[20773,20761,20762,0],[20763,20762,20764,0],[20765,20764,20760,0],[20766,20760,20767,0],[20766,20720,20760,0],[20761,20760,20762,0],[20762,20763,20768,0],[20747,20746,7453,0],[20747,7453,20756,0],[20756,7453,20769,0],[20771,20770,20772,0],[20773,20772,20758,0],[20757,20772,20770,0],[20771,20772,20768,0],[20771,20746,20770,0],[20770,20746,20745,0],[20745,20725,20770,0],[20770,20725,20757,0],[20757,20758,20772,0],[20761,20773,20759,0],[20759,20773,20758,0],[20773,20762,20772,0],[20772,20762,20768,0],[20760,20720,20774,0],[20774,20720,20775,0],[20776,20775,20783,0],[20776,20783,20777,0],[20777,20783,20778,0],[20778,20781,20779,0],[20779,20781,20780,0],[20780,20781,20782,0],[20775,20781,20783,0],[20783,20781,20778,0],[20774,20784,20719,0],[7451,20717,7450,0],[7450,20717,7449,0],[20714,20785,7448,0],[7448,20785,7445,0],[20786,20682,20787,0],[20786,20787,7445,0],[7445,20787,7443,0],[20786,7445,20785,0],[20785,36434,20713,0],[20682,20786,20713,0],[20713,20786,20785,0],[20682,20713,35989,0],[35989,20713,20711,0],[20706,20711,20712,0],[20708,20712,36433,0],[20708,36433,36436,0],[20708,36436,20709,0],[20709,36436,20789,0],[20712,20708,20706,0],[20679,35999,20678,0],[20678,35999,35998,0],[20676,20675,37155,0],[20676,37155,20790,0],[20677,20790,20678,0],[20678,20790,20791,0],[20800,20790,37155,0],[20800,37155,20792,0],[20792,37155,20967,0],[20967,37156,20793,0],[37152,20793,20696,0],[37152,20696,37141,0],[37141,20696,37153,0],[37141,37153,37142,0],[20696,20793,20794,0],[20674,20794,20699,0],[20699,20794,20675,0],[20794,20793,37156,0],[20794,37156,20675,0],[20678,20791,20679,0],[20800,20791,20790,0],[20799,20791,20970,0],[20799,20796,20797,0],[20798,20797,7439,0],[20795,20796,20970,0],[20797,20681,20679,0],[20799,20797,20791,0],[20797,20798,20681,0],[20791,20800,20970,0],[20705,20675,20676,0],[20676,20790,20677,0],[20649,20648,20666,0],[20666,20648,20801,0],[20805,20803,20804,0],[20803,20668,21106,0],[21106,20668,20667,0],[20670,20806,20807,0],[37082,20810,20811,0],[20821,20812,20994,0],[20994,20822,49958,0],[49958,20822,20823,0],[20813,20963,20966,0],[20813,20966,20814,0],[20808,20816,20672,0],[20671,20808,20672,0],[20818,20817,20816,0],[20816,20817,20672,0],[20815,20820,20813,0],[20815,20813,20814,0],[20815,20819,20820,0],[20820,37064,20809,0],[20813,20820,49958,0],[20813,49958,20823,0],[20823,20963,20813,0],[20812,37082,20811,0],[20812,20821,37082,0],[37082,20821,20809,0],[20809,20821,20820,0],[20821,20994,20820,0],[20823,20822,20994,0],[20823,20994,20995,0],[20824,20995,20903,0],[20826,20903,20896,0],[20826,20896,20825,0],[20826,20825,20827,0],[36768,20827,20828,0],[36768,20828,36769,0],[20828,20908,36769,0],[36769,20908,20845,0],[36769,20845,20829,0],[20831,20830,36030,0],[36031,20954,20951,0],[36031,20951,20832,0],[20833,20832,20834,0],[20833,20834,36025,0],[36025,20834,20835,0],[20837,7424,20945,0],[7360,20945,7424,0],[36074,37074,20838,0],[36074,20838,20950,0],[20949,20948,7361,0],[7361,20948,20839,0],[7361,20839,7389,0],[7389,20839,20840,0],[7389,20840,20956,0],[7388,20956,20841,0],[20920,20841,20953,0],[20842,20844,20843,0],[20843,20844,20830,0],[20830,20829,20843,0],[36956,48716,20943,0],[20924,20943,36957,0],[36957,20914,36958,0],[20847,20846,20848,0],[20849,37035,20850,0],[37049,20916,20851,0],[20851,20916,20852,0],[20851,20852,20854,0],[20853,20854,37054,0],[37054,20854,20919,0],[37054,20919,20855,0],[20855,20919,20856,0],[20855,20856,37058,0],[37058,20856,20857,0],[37058,20857,20868,0],[21095,20868,20858,0],[20859,20858,20860,0],[20996,20865,20806,0],[37082,20862,20810,0],[20810,20862,20886,0],[20886,20862,20866,0],[20886,20866,20863,0],[20886,20863,20876,0],[20863,20864,20885,0],[20885,20864,20869,0],[20885,20869,20875,0],[20996,20861,20865,0],[20882,20867,20887,0],[20882,20887,20857,0],[20857,20887,20868,0],[20869,20882,37057,0],[20869,37057,20874,0],[20884,20872,20873,0],[20880,20900,20899,0],[20880,20899,20881,0],[20874,20870,20875,0],[20875,20870,20871,0],[20875,20871,20883,0],[20883,20871,20872,0],[20883,20872,20876,0],[20876,20872,20884,0],[20884,20873,20877,0],[20878,20879,20812,0],[20873,20900,20877,0],[20877,20900,20880,0],[20877,20880,20878,0],[20878,20880,20879,0],[20881,20879,20880,0],[20874,20875,20869,0],[20869,20864,20882,0],[20864,20863,20882,0],[20882,20863,20867,0],[20812,20811,20878,0],[20878,20811,20877,0],[20877,20811,20884,0],[20875,20883,20885,0],[20863,20885,20876,0],[20883,20876,20885,0],[20876,20884,20886,0],[20884,20811,20886,0],[20886,20811,20810,0],[20856,37057,20857,0],[20857,37057,20882,0],[20887,20888,20868,0],[20868,20888,20858,0],[20860,20888,20861,0],[20861,20888,20889,0],[20865,20889,20866,0],[20866,20889,20867,0],[20867,20889,20887,0],[20887,20889,20888,0],[20865,20861,20889,0],[20806,20865,20807,0],[20850,37035,20848,0],[20916,20848,20846,0],[20916,20846,20890,0],[20891,20890,20892,0],[20891,20892,20917,0],[20917,20892,20893,0],[20898,20902,20895,0],[20898,20895,20897,0],[20897,20895,20896,0],[20896,20881,20897,0],[20898,20897,20899,0],[20898,20899,20900,0],[20873,20872,20901,0],[20902,20873,20894,0],[20902,20898,20873,0],[20873,20898,20900,0],[20873,20901,20894,0],[20894,20901,20893,0],[20896,20903,20881,0],[20881,20903,20995,0],[20825,20896,20895,0],[20825,20895,20904,0],[20825,20904,20827,0],[20904,20905,20827,0],[20827,20905,20828,0],[20828,20905,20906,0],[20943,20907,36957,0],[20828,20906,20908,0],[20904,20895,20909,0],[20904,20909,20905,0],[20905,20907,20906,0],[20893,20892,20894,0],[20894,20892,20912,0],[20912,20909,20902,0],[20912,20911,20913,0],[20909,20913,20905,0],[20905,20913,20907,0],[20913,20911,20907,0],[20907,20911,36957,0],[20911,20914,36957,0],[20913,20909,20912,0],[20912,20914,20911,0],[20846,20910,20890,0],[20890,20910,20892,0],[20914,20912,20915,0],[20914,20915,20910,0],[20912,20892,20915,0],[20915,20892,20910,0],[20850,20848,20916,0],[20850,20916,37049,0],[20916,20891,20852,0],[20891,20917,20852,0],[20852,20917,20918,0],[20870,20917,20871,0],[20901,20872,20893,0],[20893,20872,20871,0],[20893,20871,20917,0],[20919,20854,20918,0],[20918,20917,20870,0],[20918,20870,20874,0],[20918,20854,20852,0],[20890,20891,20916,0],[20829,20845,20843,0],[7389,20956,7388,0],[20923,20924,20925,0],[20925,20924,20926,0],[20927,20847,20848,0],[20927,20848,20928,0],[20934,20932,7409,0],[7409,7408,20934,0],[20934,7411,20931,0],[20931,7411,20935,0],[20931,20935,20930,0],[20930,20935,20929,0],[20929,20935,20936,0],[20848,37035,20928,0],[20928,20937,20939,0],[20939,20937,37025,0],[20939,37025,20938,0],[20930,20938,20931,0],[20930,20929,20938,0],[20938,20929,20939,0],[20928,37035,20937,0],[20941,7392,7391,0],[20923,20940,20922,0],[20922,20940,20942,0],[20942,20940,20941,0],[20942,20941,7390,0],[20920,20953,20842,0],[20920,20842,20921,0],[20921,20842,36956,0],[36956,20943,20922,0],[20922,20943,20923,0],[20923,20943,20924,0],[36074,37071,37074,0],[37074,37071,7424,0],[20945,20947,20944,0],[20945,20944,36034,0],[20945,36034,20837,0],[20837,36034,20946,0],[20837,20946,20838,0],[36035,20944,36023,0],[36023,7352,36039,0],[7359,7352,20947,0],[20947,7352,36023,0],[20947,36023,20944,0],[20834,20952,20956,0],[20834,20956,20840,0],[20834,20840,20835,0],[20835,20840,20839,0],[20835,20839,20948,0],[20948,20949,20950,0],[20838,20836,20950,0],[20836,20835,20950,0],[20950,20835,20948,0],[20834,20832,20952,0],[20952,20832,20951,0],[20842,20953,20844,0],[20952,20951,20954,0],[20952,20954,20955,0],[20955,20954,20844,0],[20955,20844,20953,0],[20955,20953,20956,0],[20955,20956,20952,0],[20823,20975,20963,0],[20963,20962,20985,0],[20985,20962,20959,0],[20985,20959,20984,0],[20984,20959,20957,0],[20957,20993,20958,0],[20976,20959,20960,0],[20961,20960,20962,0],[20961,20962,20975,0],[20975,20962,20963,0],[20959,20962,20960,0],[20957,20959,20993,0],[20963,20985,20973,0],[20964,36004,36001,0],[36001,36004,20965,0],[7437,20965,36005,0],[7437,36005,7436,0],[20963,20973,20966,0],[20966,20974,37139,0],[20793,20969,20967,0],[20967,20969,20968,0],[20967,20968,20792,0],[20970,20968,20971,0],[20972,20971,20973,0],[20968,20970,20792,0],[20968,20969,20971,0],[20971,20969,20974,0],[20973,20971,20974,0],[20973,20974,20966,0],[20995,20824,20823,0],[20823,20824,20975,0],[20975,20824,20903,0],[20975,20903,20961,0],[20826,20961,20903,0],[20960,20961,20976,0],[20826,36768,20976,0],[20976,36768,37063,0],[20976,37063,20977,0],[36072,20831,20978,0],[20978,20831,36033,0],[36033,20979,36071,0],[36071,20979,20980,0],[20980,20979,36070,0],[36070,36067,20989,0],[20992,36068,36014,0],[20988,20987,36011,0],[20988,36011,20990,0],[20990,36011,20991,0],[20958,20991,36012,0],[20958,36012,20986,0],[20985,20972,20973,0],[20972,20985,20964,0],[20964,20985,20984,0],[20964,20984,36004,0],[36004,20984,20986,0],[36005,37076,7436,0],[20984,20957,20986,0],[20957,20958,20986,0],[20982,20983,20981,0],[20981,20983,20987,0],[20989,20992,20988,0],[20988,20990,20989,0],[20989,20990,20980,0],[20980,20991,36071,0],[36071,20991,20958,0],[20991,20980,20990,0],[20981,20987,36014,0],[36014,20987,20992,0],[20988,20992,20987,0],[20976,20977,20959,0],[20959,20977,20993,0],[20826,20976,20961,0],[20994,20812,20879,0],[20994,20879,20995,0],[20881,20995,20879,0],[20670,20804,20996,0],[20670,20996,20806,0],[20807,20862,20808,0],[20996,20804,20861,0],[20861,20804,20860,0],[20860,20804,20803,0],[20860,20803,20997,0],[20860,20997,20859,0],[20999,20645,21000,0],[37266,21000,20645,0],[37266,20644,21000,0],[21000,20644,21001,0],[37189,21004,21207,0],[37189,21207,21221,0],[21005,21006,37187,0],[37187,21006,21007,0],[21007,21213,21091,0],[21091,21213,21008,0],[21091,21008,21009,0],[21011,21012,37268,0],[21013,21014,21015,0],[21025,21015,21016,0],[21017,21377,21024,0],[21024,21377,21376,0],[21019,21020,21022,0],[21022,37260,21021,0],[21021,37261,37262,0],[21021,37265,21022,0],[21022,37265,37200,0],[37200,21023,21019,0],[21019,21023,21376,0],[21376,21023,21024,0],[21016,21017,21025,0],[21025,21017,21026,0],[21025,21026,21027,0],[21027,21026,21028,0],[21027,21028,21029,0],[21083,21032,21033,0],[21033,37244,21086,0],[21086,37244,21034,0],[21088,21034,48712,0],[21036,21037,37025,0],[20938,21037,20931,0],[20931,21037,20934,0],[20934,21037,20932,0],[21074,21039,21040,0],[21041,21040,37011,0],[21041,37011,21042,0],[21044,21043,21054,0],[21044,21054,21046,0],[21044,21046,21045,0],[21045,21046,21047,0],[36995,21047,21048,0],[36995,21048,20087,0],[26040,21048,21052,0],[21052,21053,20089,0],[20089,21053,20090,0],[21049,20090,21050,0],[21049,21050,20448,0],[20448,21050,48722,0],[48722,21050,21055,0],[20448,48709,21049,0],[21049,48709,21051,0],[21049,21051,20090,0],[48709,26193,21051,0],[21051,26193,20092,0],[21048,21047,21052,0],[21052,21047,21046,0],[21052,21046,21053,0],[20090,21053,21054,0],[20090,21054,21050,0],[21053,21046,21054,0],[21050,21054,21043,0],[21050,21043,21055,0],[37012,37014,21056,0],[20447,21056,37015,0],[21056,20447,21055,0],[21056,21055,37012,0],[21055,21043,37012,0],[21043,21044,21042,0],[21042,21044,21060,0],[21064,21057,21058,0],[21058,21057,36986,0],[21059,21058,36983,0],[21059,36983,36984,0],[21042,21060,21061,0],[21062,21063,36984,0],[21062,36984,20933,0],[21062,20933,7409,0],[36984,21063,21059,0],[21059,21063,21064,0],[21059,21064,21058,0],[21064,21065,21060,0],[21064,21063,21065,0],[21060,21065,21061,0],[21061,21065,21063,0],[21042,21061,21041,0],[21041,21061,21066,0],[21041,21066,21074,0],[21066,21067,21074,0],[21074,21067,21073,0],[21073,21067,21069,0],[21073,21069,21038,0],[21038,21069,21070,0],[21068,21070,7409,0],[21068,7409,20932,0],[21070,21069,21062,0],[21070,21062,7409,0],[21062,21069,21063,0],[21063,21069,21061,0],[21043,21042,37012,0],[21037,20938,37025,0],[21037,21071,20932,0],[20932,48711,21068,0],[21068,48711,21038,0],[21038,48711,21072,0],[21039,21074,37236,0],[21039,37236,21075,0],[21039,21075,21040,0],[21040,21075,37021,0],[21040,37021,37013,0],[37013,37021,37014,0],[37014,21078,21076,0],[21077,21078,21079,0],[21077,21079,37239,0],[21077,37239,37018,0],[37018,20432,21077,0],[21077,20433,21078,0],[20433,21077,20432,0],[21030,21031,21081,0],[21030,21081,21080,0],[21025,21027,21080,0],[21027,21029,21080,0],[21080,21029,21030,0],[21015,21025,21080,0],[21015,21080,21013,0],[21013,21080,21081,0],[21013,21081,37268,0],[37268,21081,21082,0],[21087,37197,21086,0],[21087,21086,21034,0],[21087,21034,21088,0],[21086,21085,21084,0],[21086,21084,21033,0],[21033,21084,21083,0],[21032,21083,21082,0],[21032,21082,21031,0],[21031,21082,21081,0],[21376,21018,21019,0],[37268,21012,21013,0],[21013,21012,21382,0],[21013,21382,21014,0],[21015,21014,21089,0],[21089,21378,21017,0],[21017,21378,21377,0],[21017,21016,21089,0],[21091,21009,21090,0],[21091,21090,21092,0],[37234,21092,21093,0],[21094,21011,37268,0],[21011,21094,21010,0],[21092,21090,21093,0],[21090,21010,21093,0],[21093,21010,21094,0],[21010,21090,21009,0],[21007,21006,21213,0],[21000,21001,37078,0],[21000,37078,20999,0],[20999,37059,37062,0],[21103,21097,37061,0],[21104,37061,21098,0],[21104,21102,21103,0],[21104,21103,37061,0],[21101,21102,21104,0],[21104,21098,21100,0],[21104,21100,21101,0],[21100,21098,21099,0],[21100,21099,37195,0],[20859,20998,21105,0],[20859,21105,20858,0],[20998,20999,37062,0],[20998,37062,21105,0],[20803,21106,20997,0],[20997,21106,20646,0],[20997,20645,20859,0],[20859,20645,20998,0],[20998,20645,20999,0],[20646,21106,20802,0],[20647,20802,20801,0],[20801,20802,20667,0],[20667,20802,21106,0],[20633,20636,20634,0],[20634,20636,21107,0],[20634,21107,21108,0],[21109,21110,21117,0],[21117,21110,21111,0],[21114,21113,37179,0],[21108,21107,21109,0],[20634,21108,36386,0],[36386,21108,21120,0],[36386,21120,21115,0],[21115,21120,21116,0],[21118,21119,1520,0],[37180,21119,21114,0],[21114,21118,21111,0],[21120,21117,21116,0],[21120,21108,21109,0],[21117,21111,21118,0],[21118,21114,21119,0],[21113,21114,21111,0],[21121,21118,1520,0],[21121,1520,1519,0],[36296,21122,21123,0],[36296,21123,36295,0],[36295,21123,36298,0],[36298,21123,21124,0],[36298,21124,36294,0],[36294,21124,6303,0],[6293,21124,21123,0],[6293,21123,6280,0],[6280,21123,21125,0],[21128,21126,21127,0],[6282,21128,21148,0],[6282,6281,21128,0],[21128,6281,21126,0],[21126,6281,21125,0],[21125,6281,6280,0],[21125,21123,21126,0],[21126,21123,21122,0],[21126,21122,21133,0],[21133,21122,21129,0],[1518,21129,1519,0],[21127,21126,21131,0],[21131,21126,21132,0],[21131,21132,21130,0],[21131,21130,21134,0],[21134,21130,37102,0],[1518,21130,21132,0],[1518,21132,21129,0],[21129,21132,21133,0],[21126,21133,21132,0],[21147,21127,21149,0],[21147,21149,21141,0],[21141,21149,21138,0],[21138,21149,21134,0],[21138,21134,21135,0],[6468,21136,21137,0],[6468,21137,6469,0],[1515,6469,1516,0],[21140,21139,6470,0],[21140,36281,6464,0],[36281,21140,6465,0],[6465,21140,6470,0],[6470,21139,21138,0],[6470,21138,21135,0],[21143,21142,21144,0],[21145,21142,6463,0],[6463,21140,6464,0],[21140,6463,21141,0],[21141,6463,21142,0],[21140,21141,21139,0],[6457,21146,6462,0],[21146,21145,6462,0],[6462,21145,6463,0],[21142,21145,21144,0],[21138,21139,21141,0],[21148,21147,21143,0],[21148,21128,21147,0],[21143,21147,21142,0],[21142,21147,21141,0],[21147,21128,21127,0],[21127,21131,21149,0],[21134,21149,21131,0],[21158,21150,21151,0],[21151,20614,21152,0],[21152,21159,21153,0],[21153,21159,21154,0],[21154,49017,21155,0],[21155,49017,21156,0],[21155,21156,49051,0],[49051,21156,49021,0],[49051,49021,49048,0],[49048,20622,20621,0],[21151,21152,21158,0],[21158,21152,21157,0],[21157,21152,21153,0],[49015,21160,49013,0],[20628,49013,21161,0],[21161,37164,21162,0],[21162,37164,21163,0],[21162,21163,20629,0],[20629,21163,21164,0],[20629,21164,36291,0],[21151,21150,20616,0],[20614,21165,21166,0],[20611,21166,20610,0],[21166,20611,20613,0],[20526,20525,20527,0],[20527,20525,20610,0],[20527,20610,21166,0],[49003,21166,21165,0],[49003,21165,20615,0],[21167,20615,21168,0],[36330,20591,21169,0],[49003,20615,21167,0],[21170,21167,36332,0],[36332,21168,21169,0],[21168,36332,21167,0],[20525,21174,20610,0],[20610,21174,21175,0],[37168,21175,21176,0],[37168,21176,21255,0],[21255,21176,21172,0],[21254,21173,21253,0],[21173,21179,21252,0],[20525,21177,21174,0],[21174,21177,21175,0],[21175,21177,21176,0],[21176,21177,21172,0],[21177,37309,21178,0],[21177,21178,21172,0],[21254,21172,21173,0],[21173,20523,21179,0],[20521,21179,20523,0],[20523,21173,21178,0],[21178,37309,20523,0],[21173,21172,21178,0],[20515,20514,20520,0],[20520,20514,37310,0],[20520,37310,21180,0],[21180,37310,21181,0],[21183,21227,21184,0],[21183,21184,21185,0],[21186,21187,21188,0],[21189,20635,21237,0],[21216,21189,21237,0],[21216,21237,21214,0],[21214,21236,21211,0],[21211,21236,21190,0],[21190,21236,21191,0],[21008,21191,21192,0],[21008,21192,21009,0],[20635,21189,21193,0],[37039,21194,21195,0],[21195,21194,21197,0],[21208,21197,21209,0],[21208,21209,21198,0],[21202,21203,20638,0],[20638,21203,20639,0],[20639,21203,21204,0],[21204,21203,21205,0],[21205,21207,21004,0],[20639,21204,20640,0],[21204,21205,21206,0],[21206,21205,21004,0],[21004,21003,21206,0],[21206,21003,20642,0],[21206,20642,20640,0],[21206,20640,21204,0],[21003,21002,20642,0],[21202,21201,21203,0],[21203,21201,21220,0],[21203,21220,21205,0],[21205,21220,21207,0],[37184,21208,21198,0],[37184,21198,21199,0],[21194,21193,21197,0],[21197,21193,21209,0],[21209,21216,21215,0],[21217,21210,21212,0],[21212,21210,21211,0],[21212,21190,21213,0],[21213,21190,21008,0],[21008,21190,21191,0],[21190,21212,21211,0],[21210,21215,21214,0],[21215,21216,21214,0],[21216,21209,21189,0],[21210,21214,21211,0],[21209,21215,21198,0],[21198,21215,21199,0],[21199,21215,21219,0],[21219,21210,21222,0],[21222,21210,21217,0],[21222,21217,21006,0],[21222,21006,21005,0],[21006,21218,21213,0],[21218,21217,21212,0],[21218,21212,21213,0],[21199,21219,21200,0],[21200,21219,21220,0],[21200,21220,21201,0],[21221,21220,21222,0],[21219,21222,21220,0],[21220,21221,21207,0],[21221,21222,21005,0],[37186,21193,21194,0],[20635,20633,21223,0],[21223,20633,21228,0],[21223,21228,37115,0],[37114,21228,21224,0],[37114,21224,21229,0],[37110,21229,21225,0],[37165,37157,37112,0],[21226,37158,37160,0],[21224,21228,20633,0],[21224,20633,20632,0],[21224,20632,21230,0],[21224,21230,21229,0],[21181,37310,21231,0],[21238,21234,21245,0],[21186,21245,21187,0],[21187,21247,21235,0],[21236,21214,21235,0],[21235,21214,21237,0],[21235,21237,21187,0],[21187,21237,21188,0],[21223,21188,20635,0],[20635,21188,21237,0],[21186,21185,21245,0],[21245,21185,21184,0],[21245,21184,21238,0],[21238,21184,21227,0],[21233,21227,37160,0],[21233,37160,21182,0],[21238,21227,21233,0],[21232,21231,37270,0],[21232,37270,21239,0],[21239,37272,21251,0],[21251,37272,21240,0],[21251,21240,21242,0],[21242,21240,21241,0],[21242,21241,21250,0],[21250,21243,21246,0],[21250,21246,21244,0],[21244,21246,21245,0],[21245,21246,21187,0],[21247,21246,21243,0],[21247,21187,21246,0],[21248,21247,21243,0],[21248,21243,21249,0],[21249,21243,21250,0],[21245,21234,21244,0],[21242,21250,21244,0],[21244,21234,21251,0],[21251,21234,21238,0],[21238,21233,21251,0],[21251,21242,21244,0],[21181,21231,21182,0],[21182,21231,21232,0],[21233,21182,21232,0],[21252,21180,21181,0],[21181,21182,21252,0],[21252,21182,21253,0],[21252,21253,21173,0],[21253,37159,21254,0],[21172,21254,21255,0],[21255,37161,21256,0],[21257,21256,37163,0],[21257,37163,38342,0],[21161,38342,37157,0],[21161,37157,37164,0],[21163,37167,21258,0],[21163,21258,21164,0],[21164,21258,20630,0],[21333,20517,21259,0],[21333,21259,20518,0],[21259,21260,20516,0],[21259,20516,20515,0],[21259,20515,20518,0],[20515,20516,21261,0],[21263,21261,20516,0],[21262,21263,21264,0],[21264,21263,21260,0],[21264,21260,21265,0],[21309,21265,21335,0],[21266,21335,21336,0],[21266,21336,21267,0],[21269,21268,37321,0],[21269,37320,21302,0],[21331,21302,21270,0],[21306,21300,21271,0],[21271,37311,21272,0],[37316,37311,21273,0],[21273,37311,21274,0],[37774,21274,21275,0],[37774,21275,21276,0],[21290,21304,21277,0],[21277,21304,21278,0],[21277,21278,21279,0],[21284,21280,21281,0],[21282,21281,21305,0],[21282,21305,21283,0],[21282,21283,20548,0],[21282,20548,21284,0],[21285,49225,21286,0],[21286,49225,21287,0],[21286,21287,21279,0],[21279,21287,21277,0],[21276,21288,37774,0],[21276,21290,21288,0],[21288,21290,21277,0],[21279,21280,21286,0],[20566,21283,21289,0],[21289,21283,21339,0],[21289,21339,20570,0],[20570,21339,20571,0],[21280,21279,21281,0],[21281,21279,21278,0],[21290,21276,21292,0],[21290,21292,21291,0],[21291,21292,21298,0],[21291,21293,21340,0],[21293,37321,21296,0],[21296,37321,21294,0],[21296,21294,21295,0],[21293,21291,37320,0],[37320,21291,21297,0],[21297,21298,21302,0],[21302,21298,21299,0],[21306,21270,21300,0],[21271,21300,21299,0],[21271,21299,21301,0],[21301,21303,21275,0],[21275,21303,21292,0],[21275,21274,21301,0],[21297,21302,37320,0],[21270,21302,21300,0],[21302,21299,21300,0],[21291,21298,21297,0],[21298,21292,21303,0],[21303,21301,21299,0],[21303,21299,21298,0],[21290,21291,21304,0],[21281,21278,21305,0],[37311,21271,21301,0],[21271,21307,21306,0],[21306,21307,37292,0],[21308,37294,37295,0],[21308,37295,37276,0],[37276,37295,37283,0],[21264,21265,21309,0],[21309,21335,21266,0],[21309,21266,37284,0],[37284,21266,21267,0],[37284,21267,37277,0],[21307,21310,21311,0],[21326,21311,21312,0],[21326,21312,21313,0],[21313,22453,21314,0],[21313,21314,21324,0],[21324,21314,21315,0],[21315,21316,21329,0],[20489,20490,20488,0],[21318,20488,37222,0],[21318,37222,20486,0],[20208,20209,37221,0],[20208,37221,20207,0],[20207,37221,20190,0],[21328,21319,21320,0],[21320,21347,21327,0],[21327,21347,21321,0],[21327,21321,21323,0],[21327,21323,21322,0],[21315,21322,21324,0],[21324,21325,21313,0],[21313,21325,21326,0],[21322,21323,21324,0],[21324,21323,37317,0],[21324,37317,21325,0],[21325,37317,21326,0],[21326,37317,37318,0],[21326,37318,21311,0],[21320,21327,21328,0],[21319,21328,21329,0],[21315,21329,21322,0],[21329,21328,21322,0],[21322,21328,21327,0],[21319,21329,21317,0],[21317,21329,21316,0],[21271,21272,21307,0],[21307,21272,21310,0],[21302,21331,21269,0],[21269,21331,21330,0],[37276,21330,21331,0],[21269,21330,21268,0],[21265,20517,21332,0],[21332,20517,21333,0],[21265,21332,21334,0],[21265,21334,21335,0],[37323,20574,21337,0],[21295,21338,21339,0],[21339,21338,20571,0],[21296,21305,21293,0],[21293,21305,21340,0],[21291,21340,21304,0],[21304,21340,21278,0],[21278,21340,21305,0],[21296,21295,21339,0],[21283,21305,21339,0],[21339,21305,21296,0],[20571,21338,20572,0],[20572,21338,21337,0],[21338,21295,21337,0],[37272,21341,21240,0],[21241,37245,21250,0],[21250,37245,21249,0],[21341,20505,21240,0],[20502,20503,21342,0],[20502,21342,21364,0],[21364,21342,20501,0],[20501,21342,20509,0],[20511,21342,20503,0],[21344,21343,37126,0],[21358,21345,21346,0],[21346,21345,21348,0],[21346,21348,21347,0],[21346,21347,21320,0],[20492,21346,20491,0],[21346,21320,20491,0],[20491,21320,21319,0],[21348,21345,21349,0],[37134,37132,21351,0],[37134,21351,37128,0],[21349,37136,21352,0],[21349,21352,21354,0],[21354,21352,21353,0],[21354,21353,37319,0],[21354,37319,21355,0],[21356,21355,37318,0],[21356,37318,37317,0],[21349,21357,21348,0],[21348,21357,21347,0],[21347,21357,21321,0],[21321,21357,21355,0],[21355,21357,21354,0],[21354,21357,21349,0],[21344,21345,21358,0],[21344,21358,20499,0],[21343,20499,20500,0],[20500,20498,20501,0],[20501,20498,21359,0],[21360,21361,21362,0],[21363,20506,21362,0],[21362,20506,20502,0],[20502,21360,21362,0],[20502,21364,21360,0],[21365,21368,21364,0],[21365,21364,21359,0],[21359,21364,20501,0],[37259,21366,20496,0],[37259,20496,20224,0],[21365,21367,21368,0],[21368,21367,21020,0],[21368,21020,21018,0],[21368,21018,21360,0],[21360,21018,21361,0],[21362,21361,21369,0],[21362,21369,21363,0],[37249,21370,21374,0],[37249,21374,21371,0],[37246,21371,37252,0],[21009,21373,21010,0],[21010,21373,21011,0],[21011,21373,21012,0],[21382,21380,21014,0],[21014,21380,21381,0],[21014,21381,21089,0],[21382,21012,21373,0],[37249,21240,21370,0],[21370,21363,21369,0],[21370,21369,21374,0],[21374,21369,21375,0],[21375,21376,21377,0],[21378,21089,21381,0],[21375,21377,21374,0],[21374,21377,21379,0],[21371,21374,21379,0],[21371,21379,21381,0],[21381,21379,21378,0],[21379,21377,21378,0],[21380,37252,21381,0],[21381,37252,21371,0],[21372,21380,21382,0],[21372,21382,21373,0],[21018,21376,21375,0],[21018,21375,21361,0],[21361,21375,21369,0],[21367,21366,21020,0],[21365,20497,21367,0],[21367,20497,21366,0],[20497,20494,20496,0],[20497,20496,21366,0],[20498,20500,20499,0],[20498,21358,20494,0],[20494,21358,21383,0],[20494,21383,20495,0],[21358,20498,20499,0],[20494,20497,20498,0],[20498,20497,21359,0],[20225,20495,21384,0],[21384,21386,20223,0],[20495,20493,21384,0],[21384,20493,21385,0],[21385,20492,21391,0],[20492,21385,20493,0],[21384,21385,21386,0],[20223,21386,21390,0],[21387,20489,20221,0],[21387,20221,21388,0],[21389,21390,21385,0],[21385,21390,21386,0],[21389,21385,21391,0],[21387,21389,21391,0],[21387,21388,21389,0],[20484,21389,21388,0],[21392,20202,21393,0],[20196,21393,20204,0],[20204,21393,20203,0],[21394,20272,20198,0],[21394,20198,20197,0],[21394,20197,20405,0],[21395,20197,20196,0],[20272,21392,20198,0],[21397,21396,21395,0],[20195,21395,20196,0],[21395,21396,20197,0],[20197,21396,20405,0],[20405,21396,20403,0],[20403,21396,21397,0],[20403,21397,20402,0],[22518,21398,21399,0],[21399,21398,21416,0],[20182,21416,21398,0],[22518,21399,20184,0],[20184,21399,21400,0],[21401,21402,37335,0],[37335,21402,20395,0],[37342,37335,20397,0],[20397,37335,20395,0],[20182,21407,21403,0],[21402,21404,20395,0],[21404,21406,21408,0],[21414,21408,21405,0],[20179,21405,20180,0],[21405,21408,20180,0],[20180,21408,21407,0],[21407,21408,21406,0],[21404,21402,21406,0],[21406,21402,21403,0],[21406,21403,21407,0],[21404,21408,20394,0],[20394,21408,21409,0],[20281,21413,20282,0],[20282,21413,21412,0],[21410,21411,20178,0],[20178,21411,22482,0],[22482,21411,22481,0],[20179,22481,21405,0],[21411,21412,22481,0],[22481,21412,21413,0],[21414,21413,20281,0],[21414,20281,21409,0],[22481,21413,21405,0],[21405,21413,21414,0],[21412,21411,20283,0],[20283,21411,21415,0],[21411,21410,21415,0],[21402,21401,21416,0],[21402,21416,21403,0],[21416,20182,21403,0],[21399,21416,21400,0],[21400,21416,21401,0],[20144,21417,20296,0],[20296,21417,21418,0],[20296,21418,21421,0],[21417,20318,21418,0],[21419,21418,20317,0],[21419,20317,20299,0],[20299,21420,21419,0],[21419,21420,21421,0],[21419,21421,21418,0],[20294,21421,21420,0],[37620,20143,21422,0],[21423,21422,20144,0],[21422,20143,20144,0],[21424,20140,20142,0],[21424,20142,25835,0],[20142,20140,20141,0],[37594,20139,21426,0],[37594,21426,21425,0],[21425,25847,37591,0],[21425,37591,20138,0],[20138,37594,21425,0],[21427,21424,21428,0],[21428,21429,25836,0],[25836,21429,21430,0],[25836,21430,37598,0],[37598,21430,21431,0],[37601,22993,21432,0],[37601,21432,21433,0],[37604,21433,21434,0],[38863,23051,21436,0],[21439,21436,23102,0],[21439,23102,21437,0],[21437,38879,21438,0],[21438,25832,38978,0],[21437,38978,21439,0],[21437,21438,38978,0],[21439,21440,21441,0],[21441,21440,21442,0],[21443,23109,21444,0],[21444,23108,21445,0],[21445,23108,23110,0],[21445,23110,23112,0],[21446,21445,21447,0],[21458,21449,21450,0],[21458,21450,21451,0],[21451,21450,21452,0],[21451,21452,21461,0],[21461,25831,21453,0],[21455,21476,21456,0],[21456,25881,21457,0],[21459,21457,21458,0],[21458,21451,21459,0],[21461,21453,21459,0],[21453,21460,21459,0],[21459,21460,21457,0],[21457,21460,21456,0],[21456,21460,21455,0],[21460,21453,21454,0],[21460,21454,21455,0],[21461,21459,21451,0],[21462,21657,21463,0],[21462,21463,21464,0],[21464,21463,21465,0],[21465,21466,25830,0],[25830,21466,21488,0],[25828,21482,21454,0],[21467,21476,25880,0],[21457,25881,21468,0],[21457,21468,39013,0],[39013,25855,37643,0],[39013,37643,21472,0],[21472,37643,21469,0],[21472,21469,21470,0],[21445,21446,21471,0],[21470,21471,21478,0],[21470,21478,21472,0],[39013,21472,21473,0],[21449,21474,21448,0],[21474,21449,21458,0],[39013,21458,21457,0],[25881,21456,21475,0],[21475,21456,21476,0],[21475,21476,21467,0],[21477,21474,21478,0],[21477,21478,21446,0],[21446,21478,21471,0],[21446,21447,21477,0],[21477,21447,21448,0],[21472,21478,21474,0],[21472,21474,21473,0],[21476,21455,21481,0],[21483,25826,21480,0],[21483,21480,21482,0],[21480,21481,21454,0],[21480,21454,21482,0],[21481,21455,21454,0],[21481,21480,21479,0],[25826,21483,21486,0],[21486,21483,21484,0],[37696,21485,21486,0],[37696,21486,21484,0],[21486,21487,25826,0],[37696,21484,37678,0],[37678,21492,37684,0],[25830,21488,21491,0],[25830,21491,21489,0],[21484,21490,37678,0],[37678,21490,21492,0],[21492,21490,21491,0],[21489,21491,21490,0],[37684,21492,21488,0],[21491,21488,21492,0],[21490,21484,21483,0],[21490,21483,21482,0],[21490,21482,21489,0],[21488,21466,21493,0],[21493,21466,21494,0],[21494,21495,21509,0],[21509,21495,21496,0],[21496,21495,21634,0],[21496,21634,39038,0],[21496,39038,39046,0],[21496,39046,21497,0],[21498,21497,21499,0],[21499,21497,21500,0],[21500,21497,39039,0],[21500,39039,21501,0],[21501,39039,39051,0],[37689,39051,21503,0],[37689,21503,21502,0],[21502,21503,21504,0],[21504,21505,21506,0],[21506,21505,39083,0],[21506,39083,21507,0],[21506,21507,39079,0],[39079,21507,21508,0],[21509,21497,21498,0],[21497,21509,21496,0],[21493,21494,37685,0],[21493,37685,21510,0],[37658,39146,39155,0],[21511,39170,21512,0],[37655,21513,21537,0],[37671,21515,37673,0],[21517,37673,21518,0],[21517,21518,37669,0],[37669,21518,21523,0],[21522,21523,21534,0],[21522,21534,21519,0],[21522,21519,37539,0],[37539,21520,21521,0],[37539,21521,21522,0],[21522,37535,21523,0],[37666,25959,37664,0],[37664,25959,37663,0],[37663,25959,25956,0],[37663,25956,21526,0],[21526,37699,37661,0],[21527,37661,37698,0],[21527,26005,21528,0],[39156,39157,21528,0],[21528,26005,21529,0],[21529,21530,21531,0],[21531,21530,21532,0],[21531,21532,25827,0],[25827,26007,21487,0],[21487,26007,25898,0],[21487,25898,25825,0],[25825,25898,21533,0],[21533,25878,21476,0],[21533,21476,21481,0],[37673,21516,21518,0],[21534,21523,21518,0],[37673,21515,21516,0],[21516,21515,21535,0],[21535,21536,21537,0],[21537,21513,39117,0],[39117,21513,21512,0],[39117,21512,39093,0],[39093,21512,37688,0],[39093,37688,39092,0],[39092,37688,37687,0],[37687,21538,21539,0],[21539,21538,21540,0],[21540,37689,37690,0],[21540,37690,21541,0],[21541,37690,37691,0],[21541,37691,39124,0],[39124,39118,21542,0],[21543,21542,39122,0],[21543,39122,21544,0],[21543,21544,21546,0],[21546,21544,21545,0],[21546,21545,21547,0],[21546,21547,21558,0],[48747,25812,21548,0],[21548,21549,48748,0],[21556,48749,21550,0],[21552,21551,21559,0],[21552,21559,39125,0],[39125,21559,24252,0],[24252,24251,21554,0],[21554,24251,21553,0],[39125,24366,21552,0],[21552,24366,21555,0],[21556,21555,21557,0],[21548,24383,48747,0],[48747,21558,25812,0],[21559,21551,21560,0],[24254,21560,21561,0],[24254,21561,21582,0],[21581,48868,48872,0],[21581,48872,48871,0],[21581,48871,21562,0],[39220,39219,21563,0],[21563,39219,25813,0],[21563,25813,21564,0],[21564,21565,21586,0],[21586,21565,21571,0],[21571,21565,25815,0],[21571,25815,25816,0],[21587,25816,25821,0],[21587,25821,21566,0],[21567,21566,21568,0],[21567,39243,21570,0],[21567,21570,21571,0],[21571,21570,21572,0],[21573,25781,39242,0],[21573,39242,21574,0],[21575,21608,21576,0],[21576,21608,21577,0],[21585,21577,21584,0],[21584,21577,24645,0],[21584,24645,24646,0],[21584,24646,21578,0],[21583,21579,21580,0],[48868,21581,39136,0],[48868,39136,21582,0],[21582,39136,39137,0],[21582,39137,39138,0],[21582,39138,24254,0],[21580,21581,21562,0],[21579,21583,21578,0],[21583,21580,21562,0],[21562,39220,21583,0],[21583,21563,21584,0],[21584,21563,21585,0],[39216,21585,21564,0],[39216,21564,21586,0],[21586,21571,21573,0],[21573,21571,21572,0],[21587,21571,25816,0],[21567,21587,21566,0],[21587,21567,21571,0],[21564,21585,21563,0],[21563,21583,39220,0],[21575,21576,39216,0],[21570,39243,21588,0],[21570,21588,25810,0],[21570,25810,21589,0],[21589,25810,21590,0],[21589,21590,25783,0],[25783,21590,21591,0],[25805,25808,25770,0],[25805,25770,21592,0],[21599,21592,21593,0],[25769,21594,21595,0],[21595,21594,25759,0],[21609,21596,21614,0],[21609,21614,21597,0],[21597,25757,21609,0],[21609,25757,21598,0],[21598,25777,21599,0],[21599,25777,21600,0],[21592,21600,25692,0],[21592,25692,21601,0],[21602,39238,21603,0],[21603,39238,39180,0],[25787,24641,25788,0],[25788,24641,24638,0],[25788,24638,21604,0],[25788,21604,39240,0],[39240,24637,39241,0],[39241,24637,21605,0],[21605,24637,24636,0],[21605,24636,21606,0],[21606,24635,21608,0],[21608,24635,24644,0],[21608,24644,21577,0],[21607,21575,39242,0],[39242,21575,21574,0],[21575,21607,21608,0],[21605,21606,21607,0],[21607,21606,21608,0],[21592,21601,25805,0],[21592,21599,21600,0],[21599,21593,21598,0],[21598,21593,21609,0],[21596,21609,25769,0],[21596,25769,21595,0],[25769,21609,21593,0],[21684,21612,25776,0],[21685,25776,25778,0],[25717,21672,25778,0],[25717,25778,25779,0],[21613,25708,21597,0],[21613,21597,21614,0],[21613,21614,21615,0],[21615,25758,25721,0],[25721,25758,25754,0],[25754,25758,25772,0],[25754,25772,25755,0],[25755,25772,25749,0],[25749,25772,21644,0],[21617,21649,21639,0],[21617,21639,21660,0],[21660,21618,25725,0],[25725,21618,21619,0],[21621,21619,21620,0],[21621,21620,21622,0],[21624,21654,21629,0],[21624,21629,21625,0],[21626,21625,21627,0],[21628,21657,21450,0],[21623,23098,21654,0],[21629,21654,21656,0],[21630,21629,21631,0],[21630,21631,21633,0],[21633,21631,21632,0],[21657,21633,21463,0],[21634,21463,39047,0],[21634,39047,39038,0],[21634,21495,21465,0],[21465,21495,21466,0],[21634,21465,21463,0],[21494,21466,21495,0],[21463,21633,21635,0],[39049,39147,39148,0],[39049,39148,21637,0],[37694,21637,21650,0],[39150,21650,21618,0],[39150,21618,21660,0],[21638,21660,21639,0],[21639,21640,21638,0],[39153,21640,39063,0],[39061,39063,21645,0],[25772,21643,21644,0],[21645,39063,21640,0],[21645,21640,21646,0],[21641,21646,21649,0],[21641,21649,21648,0],[21641,21648,21647,0],[21644,21643,21642,0],[21647,21648,21642,0],[21616,21648,21649,0],[21616,21649,25723,0],[21639,21646,21640,0],[21646,21639,21649,0],[21642,21648,21616,0],[21642,21616,21644,0],[21616,25749,21644,0],[21646,21641,21645,0],[21641,39061,21645,0],[21619,21618,21650,0],[21652,21650,21637,0],[21651,21655,39147,0],[21651,39147,21632,0],[21651,21632,21631,0],[21632,21635,21633,0],[21635,21632,21636,0],[21651,21631,21656,0],[21650,21652,21619,0],[21619,21652,21620,0],[21659,21620,21653,0],[21653,21620,21652,0],[21653,21656,21659,0],[21659,21656,21654,0],[21652,21655,21653,0],[21653,21655,21651,0],[21655,21652,21637,0],[21631,21629,21656,0],[21656,21653,21651,0],[21633,21657,21630,0],[21630,21627,21629,0],[21629,21627,21625,0],[21627,21630,21628,0],[21628,21630,21657,0],[23098,21622,21658,0],[23098,21658,21654,0],[21620,21658,21622,0],[21659,21654,21658,0],[21659,21658,21620,0],[21661,21615,25721,0],[21662,25721,21663,0],[21662,21663,21665,0],[21665,21663,21664,0],[21665,21664,38992,0],[21665,38992,38999,0],[21665,38999,25712,0],[25712,38999,21666,0],[25713,21666,25711,0],[25709,25711,25720,0],[25709,25720,21667,0],[21667,25720,21668,0],[21669,33302,33301,0],[21669,33301,25715,0],[25715,21675,21670,0],[25716,25697,21672,0],[25716,21672,25717,0],[25716,21671,25697,0],[25697,21671,21673,0],[21679,21673,21670,0],[21674,21670,21675,0],[25702,21674,21676,0],[21676,21674,21675,0],[21676,21675,33301,0],[33301,21675,25715,0],[21677,21678,21679,0],[25699,21715,21714,0],[25699,21714,21719,0],[25699,21719,21681,0],[39179,21612,21683,0],[21683,21612,21684,0],[21612,39179,21611,0],[21611,21691,21686,0],[21686,21691,25690,0],[39181,25690,21687,0],[25681,21688,21689,0],[25681,21689,21682,0],[21690,21689,21692,0],[21690,21692,25693,0],[25693,21692,25694,0],[39179,25694,21691,0],[39179,21691,21611,0],[21691,25694,21692,0],[21688,21692,21689,0],[21691,21692,25690,0],[25681,21693,21688,0],[21688,21693,21687,0],[21693,25688,21694,0],[21694,25688,25687,0],[21694,25687,39237,0],[39237,25687,24663,0],[24663,25687,25689,0],[24663,25689,25686,0],[24663,25686,25670,0],[25669,25670,21697,0],[21696,21695,21697,0],[21696,21697,25683,0],[21696,25683,21708,0],[24669,21708,21698,0],[21698,21699,21700,0],[21700,21699,21710,0],[21700,21710,25659,0],[25659,21710,25658,0],[21701,25658,21702,0],[21702,21703,21704,0],[21704,21703,21705,0],[21704,21705,21720,0],[21705,21703,21706,0],[21706,21703,21707,0],[21707,21703,25658,0],[25658,21703,21702,0],[21708,25683,25684,0],[21709,25684,25685,0],[21709,25685,21711,0],[21709,21711,21699,0],[21699,21711,21710,0],[25658,21710,21707,0],[21707,21710,21711,0],[21707,21711,21706,0],[21706,21711,25676,0],[21706,25676,21712,0],[21712,25677,21705,0],[21705,25677,21713,0],[25666,21719,21714,0],[25665,21715,25701,0],[25665,25701,33290,0],[21716,33290,33304,0],[21716,33304,21717,0],[33238,21717,21718,0],[33238,21718,33283,0],[21719,25666,21681,0],[21705,21713,21720,0],[21722,21720,21721,0],[25656,21722,21723,0],[25656,21723,21724,0],[21725,21726,25657,0],[25657,21726,25660,0],[21728,21727,21729,0],[21728,21729,39409,0],[39409,21729,21730,0],[21730,21731,21732,0],[21732,21731,33203,0],[21732,33203,39182,0],[21733,33203,33204,0],[21733,33204,39203,0],[39203,33204,39204,0],[39204,33204,21734,0],[21735,33211,33215,0],[39273,21738,39298,0],[39298,21739,21740,0],[21740,21741,21742,0],[21742,21741,33226,0],[21742,33226,21743,0],[25596,21743,21744,0],[25596,21744,21745,0],[21747,21745,33219,0],[21747,33219,33221,0],[21747,21746,21748,0],[21751,33187,21763,0],[21763,33188,33264,0],[33264,33268,21752,0],[21752,33268,33267,0],[21754,21755,21756,0],[33260,21792,21758,0],[21787,21759,21760,0],[21761,21780,33263,0],[33264,21762,21763,0],[21751,33272,21750,0],[25607,21764,21765,0],[25607,21765,21785,0],[25607,21785,21766,0],[25584,21766,21767,0],[25584,21767,21783,0],[25584,21783,21768,0],[23810,21768,21769,0],[21770,21772,21771,0],[21772,21784,21773,0],[21776,21775,21777,0],[21776,21777,25624,0],[25624,21777,33273,0],[25624,33273,21778,0],[21778,33272,21782,0],[21778,21782,25626,0],[25626,21782,21779,0],[21779,21762,21780,0],[21779,21780,21781,0],[21781,21780,21761,0],[21762,21779,21782,0],[21762,21782,21763,0],[21763,21782,21751,0],[21751,21782,33272,0],[21778,25627,25624,0],[25624,25627,25631,0],[21774,21773,21783,0],[21783,21773,21784,0],[21770,21768,21784,0],[21770,21784,21772,0],[21770,21769,21768,0],[21783,21784,21768,0],[21785,21765,21777,0],[21777,21765,33273,0],[21764,25604,21765,0],[21759,23788,21788,0],[21788,21789,21786,0],[21760,21786,21761,0],[21761,21786,21781,0],[21788,21786,21760,0],[21788,21760,21759,0],[21759,21787,23788,0],[21790,21789,33023,0],[23771,23791,23789,0],[23786,33166,21793,0],[21793,33166,21794,0],[21793,21795,33252,0],[21797,23751,21798,0],[23778,21802,23761,0],[23776,21806,32957,0],[23776,32957,33404,0],[25654,33404,23802,0],[21800,21807,23767,0],[21800,23767,21801,0],[23767,21807,21812,0],[21808,23753,21802,0],[23761,21802,23753,0],[21811,21809,21810,0],[23754,21808,21809,0],[21809,21808,21812,0],[21810,21809,21813,0],[21813,21798,33022,0],[33022,21798,21814,0],[21814,21816,21817,0],[23735,21819,23741,0],[23735,23741,23740,0],[23740,23741,21820,0],[21821,21820,21816,0],[21949,23733,21822,0],[21823,21822,21824,0],[21823,21824,21825,0],[21825,21824,23732,0],[23732,23747,21825,0],[21826,21827,21953,0],[21953,21827,21828,0],[21953,21828,21829,0],[21829,21828,21830,0],[33036,21830,21831,0],[33035,33036,21832,0],[33035,21832,21833,0],[21833,21832,21834,0],[21834,21832,21899,0],[21899,21832,33309,0],[21835,23728,21897,0],[21897,23728,23729,0],[23729,23730,21836,0],[21836,23730,23746,0],[21838,33277,21837,0],[23727,33257,21839,0],[21841,21840,33278,0],[21841,33278,21843,0],[21841,21843,21842,0],[21842,21843,21844,0],[21845,21844,39346,0],[21847,21848,33243,0],[21847,33243,21849,0],[21850,21851,21889,0],[21889,21851,21888,0],[21851,21872,21852,0],[21852,21872,21871,0],[21852,21871,21855,0],[21855,21871,21874,0],[21855,21874,21853,0],[21854,21853,21864,0],[21855,21854,21875,0],[21875,21854,21856,0],[21875,21856,33152,0],[33152,21856,21863,0],[21857,21863,21864,0],[21857,21864,21858,0],[33147,21858,21859,0],[39177,25707,21860,0],[21860,21861,25719,0],[21861,21862,25720,0],[25720,21862,21668,0],[39177,21858,25707,0],[39177,21859,21858,0],[21863,21856,21854,0],[21863,21854,21864,0],[21864,21865,21858,0],[21864,21853,21865,0],[21865,21853,21873,0],[21865,21873,25706,0],[25706,21873,21866,0],[21870,21869,21872,0],[21873,21853,21866,0],[21867,21866,21874,0],[21871,21872,21868,0],[21868,21872,21869,0],[21877,21875,21876,0],[21887,33142,21878,0],[21887,21878,21885,0],[21885,21879,21880,0],[21880,21879,21881,0],[21881,21905,21891,0],[21883,21835,21839,0],[21883,21839,21892,0],[21892,21839,21840,0],[21894,21880,21881,0],[21840,21841,21884,0],[21845,21842,21844,0],[21845,21886,21885,0],[21885,21886,21887,0],[21877,21887,21888,0],[21852,21888,21851,0],[21850,21889,21890,0],[21890,21889,21886,0],[21887,21886,21889,0],[21890,21895,21849,0],[21849,21895,21847,0],[21849,33295,21890,0],[21877,33142,21887,0],[21845,21885,21880,0],[21845,21880,21894,0],[21845,21894,21884,0],[21842,21845,21884,0],[21842,21884,21841,0],[21839,21835,23727,0],[21882,21883,21891,0],[21891,21883,21892,0],[21891,21892,21893,0],[21893,21892,21840,0],[21893,21840,21884,0],[21893,21884,21894,0],[21894,21881,21891,0],[21893,21894,21891,0],[21855,21853,21854,0],[21851,33316,21870,0],[21870,21872,21851,0],[21847,21895,21846,0],[21846,21895,39346,0],[33277,21838,23746,0],[23746,21838,21836,0],[21836,21896,21897,0],[21897,21896,23727,0],[21836,21897,23729,0],[21899,33309,21882,0],[21882,21891,21899,0],[21899,21891,21905,0],[21905,23726,21903,0],[23726,21879,21878,0],[21878,21879,21885,0],[23726,21878,21900,0],[21903,39398,23691,0],[21903,23691,21904,0],[21905,21904,21834,0],[21899,21905,21834,0],[21904,21905,21903,0],[21903,23726,39399,0],[39399,23726,21900,0],[39399,21900,21901,0],[21878,33142,21900,0],[21900,33142,21901,0],[21901,33142,21902,0],[23706,23676,39400,0],[23684,21908,23704,0],[23684,23704,21909,0],[23683,21910,33043,0],[21911,23683,21912,0],[21911,21912,21913,0],[21913,21912,32894,0],[21913,32894,23680,0],[23680,32894,23682,0],[23682,32894,33042,0],[21914,33042,33044,0],[21914,33044,33041,0],[21915,32888,21991,0],[21991,32888,21916,0],[21991,21916,32886,0],[21995,32886,32895,0],[21995,32895,23630,0],[21996,23630,23626,0],[21996,23626,21917,0],[21918,23625,23637,0],[21918,23637,21964,0],[21921,21922,21971,0],[21971,21922,21970,0],[21970,21922,21923,0],[21970,21923,21976,0],[21925,23617,21926,0],[21928,23320,21929,0],[21929,23320,23321,0],[21929,23321,21998,0],[21930,32942,21931,0],[21999,21931,21975,0],[21975,21932,32947,0],[32947,21932,21933,0],[32947,21933,32872,0],[32947,32872,21968,0],[21968,32872,21934,0],[21934,32872,21958,0],[21958,32872,32877,0],[21958,32877,21935,0],[21935,32876,21939,0],[21939,32876,21936,0],[21936,22095,21997,0],[21997,22095,21937,0],[21937,22083,23737,0],[21997,32997,33000,0],[21939,21940,21935,0],[21940,21941,21958,0],[21959,21942,21979,0],[33001,21979,21943,0],[33001,21943,21950,0],[21950,21943,21944,0],[21947,21938,21946,0],[21946,21938,21949,0],[21948,21949,21822,0],[21948,21945,21949,0],[21945,21948,21944,0],[21944,21948,21822,0],[21944,21822,21950,0],[33009,21951,21825,0],[21952,21826,21953,0],[33037,33038,21953,0],[33037,21953,21829,0],[33037,21829,21830,0],[33037,21830,33036,0],[21822,21823,21950,0],[21950,21823,21951,0],[21955,21941,21940,0],[21941,21955,21942,0],[21944,21954,21945,0],[21944,21943,21954,0],[21954,21943,21956,0],[21954,21956,21955,0],[21955,21956,21942,0],[21942,21956,21979,0],[21935,21940,21958,0],[21958,21941,21957,0],[21958,21957,21934,0],[21941,21942,21957,0],[21957,21942,21959,0],[21964,21963,21965,0],[21964,21965,21983,0],[21985,21962,21980,0],[21980,21962,21961,0],[21961,21962,21971,0],[21961,21971,21966,0],[21968,21934,21972,0],[21969,21968,21977,0],[21969,21977,21975,0],[21975,32947,21969,0],[21970,21972,21967,0],[21967,21972,21934,0],[21967,21966,21970,0],[21970,21966,21971,0],[21921,21971,21962,0],[21921,21962,21920,0],[21968,21972,21977,0],[21974,21973,21927,0],[21974,21929,21999,0],[21973,21974,21975,0],[21973,21975,21977,0],[21972,21976,21977,0],[21977,21978,21973,0],[21972,21970,21976,0],[21976,21923,21977,0],[21977,21923,21978,0],[21978,21923,21925,0],[21973,21925,21926,0],[21973,21926,21927,0],[21925,21973,21978,0],[21974,21927,21928,0],[21928,21929,21974,0],[21924,21925,21923,0],[21934,21957,21967,0],[21960,21967,21959,0],[21967,21960,21966,0],[21966,21960,21961,0],[21967,21957,21959,0],[21959,21979,21960,0],[21960,21979,21961,0],[21961,21979,33003,0],[21961,33003,21980,0],[21980,33003,21986,0],[21981,33005,21982,0],[21983,21993,21984,0],[21983,21984,21918,0],[23625,21918,21917,0],[21918,21984,21917,0],[21917,21984,21996,0],[21983,21918,21964,0],[21983,21965,21993,0],[21993,21965,21982,0],[21964,23637,21963,0],[21963,23637,21919,0],[21919,21920,21962,0],[21980,21981,21985,0],[21985,21982,21965,0],[21982,21985,21981,0],[21990,21989,21915,0],[21990,21915,21991,0],[21991,32886,21990,0],[21989,21990,21992,0],[21993,21982,33005,0],[21993,33005,21994,0],[21994,21988,21993,0],[21993,21988,21992,0],[21992,21988,21989,0],[21984,21993,21996,0],[21993,21992,21996,0],[21996,21992,21995,0],[21996,21995,23630,0],[21992,21990,21995,0],[21981,21980,21987,0],[21987,21980,21986,0],[21939,21936,21997,0],[32997,21997,21937,0],[21937,32998,32997,0],[21930,21931,21998,0],[21998,21931,21999,0],[21998,21999,21929,0],[21998,23321,21930,0],[22000,23324,32943,0],[32943,23324,22001,0],[32943,22002,22093,0],[32996,22002,32994,0],[32994,22052,32995,0],[22005,22004,32992,0],[22005,32992,22075,0],[22075,32992,22029,0],[22075,22029,22076,0],[22074,22049,22006,0],[22069,22006,22007,0],[22069,22007,22068,0],[22068,22007,22008,0],[22008,22007,22057,0],[22008,22057,22009,0],[22065,22009,22010,0],[32522,22010,22011,0],[32522,22011,22012,0],[22012,22011,22013,0],[22012,22013,32515,0],[32515,22013,22014,0],[32515,22014,32561,0],[32561,22014,32497,0],[32497,22014,22013,0],[32497,22013,22053,0],[22053,22056,22015,0],[32496,22016,22017,0],[22018,22017,22043,0],[22018,22043,22019,0],[22020,22019,22045,0],[22020,22045,22021,0],[22001,22031,22030,0],[22030,22003,32995,0],[22004,22003,22027,0],[22004,22027,32992,0],[32992,22027,22035,0],[22035,22038,22028,0],[22028,22029,32992,0],[22027,22003,22030,0],[22031,22001,23324,0],[22031,22026,22032,0],[22034,22023,22046,0],[22031,22032,22030,0],[22030,22032,22027,0],[22038,22035,22036,0],[22034,22035,22033,0],[22034,22046,22037,0],[22028,22038,22039,0],[22028,22039,22040,0],[22040,22039,22047,0],[22040,22047,22041,0],[22040,22041,22029,0],[22076,22029,22050,0],[22050,22029,22041,0],[22050,22041,22048,0],[22048,22041,22042,0],[22016,22042,22044,0],[22016,22044,22043,0],[22043,22044,22019,0],[22045,22039,22038,0],[22021,22045,22037,0],[22021,22037,22046,0],[22021,22046,22022,0],[22022,22046,22023,0],[22038,22037,22045,0],[22043,22017,22016,0],[22044,22042,22047,0],[22044,22047,32562,0],[32562,22047,22039,0],[22041,22047,22042,0],[22042,22051,22048,0],[22048,22054,22049,0],[22049,22074,22076,0],[22049,22076,22050,0],[22049,22050,22048,0],[22042,22015,22051,0],[22048,22051,22054,0],[22049,22054,22006,0],[22029,22028,22040,0],[22038,22036,22037,0],[22037,22036,22034,0],[22036,22035,22034,0],[22033,22035,22027,0],[22033,22027,22032,0],[22031,23324,22026,0],[22026,22025,22032,0],[32943,22001,22052,0],[32943,22052,22002,0],[22002,22052,32994,0],[32995,22052,22030,0],[22052,22001,22030,0],[22032,22025,22033,0],[22057,49571,22009,0],[49571,22055,22010,0],[49571,22010,22009,0],[22010,22055,22011,0],[22011,22055,22056,0],[22011,22056,22053,0],[22011,22053,22013,0],[22055,49571,22051,0],[22055,22051,22056,0],[22057,22007,22006,0],[22051,22015,22056,0],[22004,22005,22003,0],[22005,22073,22058,0],[22085,22058,22060,0],[22085,22060,22059,0],[22061,22070,22078,0],[22078,22068,22062,0],[22078,22062,49799,0],[32956,22063,22066,0],[32956,22066,22064,0],[22065,22064,22009,0],[22009,22064,22066,0],[22009,22066,22008,0],[22008,22066,22067,0],[22062,22008,22067,0],[22063,22067,22066,0],[22062,22068,22008,0],[22068,22078,22069,0],[22069,22078,22070,0],[22069,22070,22071,0],[22060,22072,22084,0],[22060,22058,22072,0],[22072,22058,22073,0],[22072,22073,22077,0],[22072,22077,22071,0],[22071,22077,22074,0],[22074,22006,22069,0],[22069,22071,22074,0],[22073,22005,22075,0],[22076,22074,22077,0],[22077,22073,22075,0],[22077,22075,22076,0],[22084,22072,22061,0],[22061,22072,22071,0],[22071,22070,22061,0],[22061,22078,22079,0],[22061,22079,22080,0],[22080,49798,22059,0],[22059,49798,22081,0],[22081,49798,32948,0],[22081,32948,32949,0],[22061,22080,22084,0],[22060,22084,22080,0],[22060,22080,22059,0],[22059,22081,22085,0],[22089,22086,22094,0],[22089,22099,22087,0],[22087,22099,32996,0],[22087,32996,32994,0],[22087,32993,22088,0],[22058,22088,22005,0],[22088,22089,22087,0],[22094,22099,22089,0],[22089,22085,22086,0],[22058,22085,22088,0],[22085,22089,22088,0],[32949,22086,22081,0],[32949,22090,22094,0],[32996,22093,22002,0],[22094,22086,32949,0],[22090,23738,22082,0],[22090,22082,22092,0],[22096,22082,22095,0],[22096,22095,32875,0],[22096,32875,22097,0],[22096,22097,22098,0],[22098,22097,32873,0],[32996,22098,22093,0],[32996,22092,22098,0],[22098,22092,22096,0],[22090,22092,22091,0],[22096,22092,22082,0],[22094,22090,22091,0],[22094,22091,22099,0],[22099,22091,22092,0],[22099,22092,32996,0],[21923,21922,48932,0],[21923,48932,21924,0],[21909,23704,22100,0],[22101,23719,22102,0],[22101,22102,23672,0],[23672,23709,22103,0],[22109,22103,22104,0],[22104,22103,23718,0],[22104,23718,23714,0],[22104,23714,22196,0],[22105,22196,22197,0],[22107,22106,33047,0],[22107,33047,23662,0],[22111,23663,32890,0],[21916,22113,22114,0],[32895,22114,22115,0],[32895,22115,22116,0],[23629,22116,22117,0],[23629,22117,23640,0],[23640,22117,22118,0],[23640,22118,22119,0],[22120,23624,22121,0],[22120,22121,23641,0],[22110,22122,23662,0],[22110,23662,22123,0],[22106,22124,33050,0],[33050,22124,33051,0],[33154,22125,22126,0],[22127,22201,22130,0],[22130,22201,22202,0],[22131,22203,22235,0],[22235,22239,22131,0],[22131,22239,22128,0],[33161,22129,23661,0],[33161,23661,22126,0],[33161,22126,22127,0],[22128,22130,22131,0],[22130,22202,22131,0],[22127,22130,33161,0],[22128,33161,22130,0],[33052,33154,22132,0],[22132,33156,22133,0],[22133,33156,22134,0],[32898,22134,22135,0],[32898,22135,22136,0],[22136,22138,22137,0],[22137,22138,22118,0],[22118,22138,22139,0],[22119,22139,22140,0],[22141,22140,48927,0],[22141,48927,23256,0],[23256,48927,22142,0],[48901,32908,32904,0],[48901,32904,22143,0],[22143,32909,32611,0],[32611,32909,32910,0],[32611,32910,22144,0],[23251,22147,22148,0],[22148,23255,22150,0],[22150,23255,22149,0],[22150,22149,22151,0],[22152,22151,32914,0],[22152,32914,22153,0],[23238,22153,32919,0],[32919,22154,23249,0],[38803,22678,23237,0],[38803,23237,22156,0],[22157,22156,38815,0],[22342,22343,22159,0],[22162,22160,22330,0],[22162,22330,22161,0],[38810,22160,22159,0],[22159,22337,22336,0],[22159,22336,22341,0],[22341,22336,22163,0],[22164,22163,22325,0],[22164,22325,22321,0],[22164,22321,22165,0],[22165,22321,38821,0],[22165,38821,22166,0],[22357,22168,22340,0],[22340,22168,38823,0],[39389,38823,38824,0],[39389,38824,22169,0],[22169,38824,22170,0],[22318,22170,22317,0],[22172,22171,22339,0],[22172,22339,22173,0],[22176,22175,22177,0],[22277,22177,22178,0],[22182,22208,22209,0],[22182,22209,22183,0],[22183,22209,39391,0],[39391,22209,22179,0],[22179,22211,22180,0],[22180,39391,22179,0],[22182,22274,22178,0],[22178,22274,22277,0],[22273,22274,22182,0],[22273,22182,22278,0],[22278,22182,22183,0],[39390,22278,22272,0],[22272,22192,22185,0],[22185,22192,22184,0],[22185,22184,22186,0],[22186,22188,22187,0],[22270,22187,22249,0],[32932,22249,22188,0],[22187,22188,22249,0],[22192,22191,22189,0],[32929,22189,22190,0],[32929,22190,22181,0],[22189,22191,22190,0],[22191,22183,39391,0],[22278,22183,22191,0],[22278,22191,22272,0],[22272,22191,22192,0],[22194,22221,22195,0],[23716,22195,22217,0],[23716,22217,23713,0],[23713,22217,22224,0],[23713,22224,23712,0],[23712,22224,23715,0],[23715,22196,23714,0],[33056,22198,22200,0],[22200,22198,22199,0],[22200,22201,33055,0],[33055,22201,22127,0],[22201,22200,22199,0],[22201,22199,22202,0],[22202,22199,22131,0],[22131,22199,22203,0],[22335,22203,22204,0],[22206,22205,22328,0],[22338,22229,22207,0],[22209,22208,22228,0],[22209,22228,22179,0],[22179,22228,22210,0],[22179,22210,22211,0],[22213,22204,22214,0],[22214,22215,22219,0],[22219,22215,22227,0],[22219,22227,22216,0],[22221,22216,22195,0],[22195,22216,22227,0],[22195,22227,22217,0],[22213,22214,22219,0],[22218,22213,22219,0],[22212,22218,22219,0],[22219,22216,22220,0],[22220,22216,22222,0],[22220,22181,22180,0],[22219,22220,22212,0],[22222,22216,22221,0],[22220,22222,22181,0],[22204,22203,22214,0],[22214,22203,22223,0],[22214,22223,22215,0],[22215,22223,22226,0],[22226,22198,22224,0],[22224,22198,22225,0],[22225,22197,22196,0],[22225,22196,23715,0],[22225,23715,22224,0],[22224,22217,22226,0],[22217,22227,22215,0],[22215,22226,22217,0],[22223,22203,22199,0],[22223,22199,22226,0],[22226,22199,22198,0],[22213,22218,22205,0],[22205,22218,32928,0],[22205,32928,22328,0],[22328,32928,22327,0],[22220,22180,22212,0],[22212,22180,32928,0],[22229,22228,22207,0],[22207,22228,22208,0],[22228,22229,22210,0],[22210,22229,22327,0],[22327,32928,22210,0],[32928,22218,22212,0],[22178,22232,22323,0],[22323,22232,22322,0],[22322,22232,22321,0],[22321,22232,22230,0],[22230,22232,22234,0],[22320,22234,22231,0],[22173,22231,22174,0],[22234,22232,22177,0],[22234,22177,22233,0],[22233,22177,22175,0],[22234,22233,22231,0],[22231,22233,22174,0],[22177,22232,22178,0],[22235,22203,22335,0],[22235,22335,22236,0],[22235,22236,22240,0],[22240,32926,22238,0],[22238,32926,22237,0],[22238,22237,22128,0],[22128,22239,22238,0],[22239,22235,22238,0],[22238,22235,22240,0],[22105,22197,33054,0],[22105,33054,22124,0],[22195,32937,22194,0],[22192,22189,22184,0],[22189,32929,22184,0],[22184,32929,22186,0],[22181,22190,22180,0],[22177,22277,22176,0],[22176,22242,22241,0],[22241,22242,22243,0],[39384,22243,22264,0],[22264,22243,22283,0],[22265,22281,22244,0],[22265,22244,22253,0],[22253,22244,22245,0],[32932,22248,22249,0],[32932,22250,22248,0],[22248,22250,22251,0],[22248,22251,22247,0],[22247,22251,22252,0],[22246,32935,22254,0],[22253,22254,22266,0],[22266,22254,22255,0],[22267,22256,33105,0],[22267,33105,22268,0],[22268,33105,22257,0],[22257,22258,22260,0],[22260,22258,22259,0],[22260,22259,22261,0],[22263,22264,22283,0],[22263,22283,22281,0],[22264,22263,22262,0],[22262,22263,22261,0],[22281,22265,22263,0],[22263,22265,22266,0],[22266,22255,22267,0],[22256,22267,22255,0],[22253,22245,22254,0],[22254,22245,22246,0],[22247,22252,22246,0],[22266,22265,22253,0],[22260,22269,22268,0],[22268,22269,22267,0],[22268,22257,22260,0],[22266,22267,22269,0],[22260,22261,22269,0],[22266,22269,22263,0],[22270,22249,22248,0],[22248,22247,22270,0],[22270,22247,22246,0],[22270,22246,22245,0],[22270,22280,22187,0],[22187,22280,22271,0],[22187,22271,22185,0],[22187,22185,22186,0],[22185,22271,22272,0],[22272,22271,22279,0],[22272,22279,39390,0],[39390,22279,22282,0],[39390,22282,22273,0],[22274,22273,22275,0],[22243,22276,22283,0],[22243,22242,22276,0],[22276,22242,22275,0],[22275,22242,22277,0],[22277,22242,22176,0],[22275,22277,22274,0],[22282,22275,22273,0],[22279,22271,22280,0],[22279,22280,22281,0],[22276,22275,22283,0],[22283,22282,22281,0],[22282,22283,22275,0],[22282,22279,22281,0],[22244,22281,22280,0],[22245,22244,22280,0],[22245,22280,22270,0],[22175,22176,22241,0],[22286,22284,22285,0],[39383,22262,22261,0],[22241,22243,22284,0],[22284,22243,39384,0],[22284,39384,39383,0],[22284,39383,22285,0],[22285,39383,22314,0],[22175,22241,22284,0],[22175,22284,22174,0],[22174,22284,22286,0],[22174,22286,22173,0],[22173,22286,22172,0],[22316,22172,22287,0],[22316,22287,22288,0],[22291,22290,22292,0],[22291,22292,22293,0],[22370,39373,22295,0],[22370,22295,22296,0],[22370,22296,22297,0],[22297,22296,22298,0],[22298,22304,22299,0],[38842,38843,22300,0],[22302,22299,22303,0],[22303,22299,22304,0],[22304,22298,22305,0],[22304,22305,23083,0],[22306,22296,22295,0],[22306,22305,22296,0],[22298,22296,22305,0],[22292,22290,22294,0],[39371,22290,22307,0],[22309,22310,33121,0],[22259,22312,22261,0],[22309,23060,22313,0],[22309,22313,22310,0],[22310,22313,22288,0],[22288,22313,22289,0],[22314,22287,22285,0],[22287,22172,22285,0],[22285,22172,22286,0],[22314,39383,22312,0],[22312,39383,22261,0],[22315,22312,22311,0],[22291,22307,22290,0],[22310,22288,33121,0],[22288,22287,22315,0],[22315,22287,22312,0],[22312,22287,22314,0],[22316,22171,22172,0],[22171,22316,22317,0],[22318,39387,22170,0],[22173,22339,22231,0],[22339,22171,22319,0],[22320,22319,38822,0],[22234,22320,38821,0],[22234,38821,22230,0],[22230,38821,22321,0],[22323,22322,22325,0],[22323,22325,22324,0],[22324,22325,22326,0],[22324,22326,22338,0],[22229,22338,22327,0],[22327,22338,22162,0],[22328,22327,22161,0],[22328,22161,22329,0],[22330,22160,38809,0],[22330,22329,22161,0],[22162,22161,22327,0],[22328,22329,22206,0],[22206,22329,22331,0],[38813,22332,22333,0],[38809,22334,22330,0],[22332,22331,22333,0],[38811,22333,22334,0],[22334,22333,22331,0],[22334,22331,22330,0],[22330,22331,22329,0],[22206,22331,22205,0],[22205,22331,22332,0],[22205,22332,22213,0],[22213,22332,22204,0],[22204,22332,22335,0],[22337,22159,22160,0],[22337,22160,22162,0],[22337,22162,22336,0],[22336,22162,22338,0],[22336,22338,22326,0],[22163,22336,22326,0],[22163,22326,22325,0],[22323,22324,22178,0],[22178,22324,22208,0],[22320,22231,22339,0],[22320,22339,22319,0],[22317,22170,22171,0],[22171,22170,22319,0],[38823,39389,22340,0],[22343,22342,38559,0],[22344,22346,22345,0],[22345,22346,22720,0],[22720,22346,22347,0],[22720,22347,22348,0],[22349,22352,22719,0],[22719,22352,22362,0],[22719,22362,22723,0],[22346,22344,22347,0],[22350,22347,22341,0],[22350,22341,22163,0],[22341,22347,22342,0],[22163,22164,22350,0],[22350,22164,22348,0],[22348,22164,22351,0],[22351,22166,22349,0],[22362,22352,22355,0],[22362,22355,22353,0],[22364,22353,23234,0],[23234,22353,22354,0],[22354,22355,22361,0],[22354,22361,22167,0],[22354,22167,22356,0],[22354,22356,22357,0],[22358,22357,22340,0],[22378,38826,22360,0],[22378,22360,22169,0],[22169,22360,39389,0],[22168,22357,22356,0],[22167,22361,22166,0],[22166,22361,22349,0],[22349,22361,22355,0],[22355,22354,22353,0],[22355,22352,22349,0],[22165,22166,22351,0],[22165,22351,22164,0],[23173,22363,22353,0],[23173,22353,22364,0],[22364,23233,22365,0],[22367,23171,22366,0],[22367,22366,38825,0],[23228,22375,22368,0],[23229,22368,22373,0],[39373,22370,22374,0],[39372,22374,22371,0],[39372,22371,22294,0],[22294,22371,22292,0],[22292,22371,39387,0],[22292,39387,22318,0],[22292,22318,22293,0],[22293,22318,22317,0],[22293,22317,22372,0],[22293,22372,22291,0],[22291,22372,22289,0],[22289,22372,22288,0],[22288,22372,22316,0],[22372,22317,22316,0],[22373,22368,22377,0],[22297,22373,22379,0],[22297,22379,22370,0],[22370,22379,22374,0],[22297,22369,22373,0],[22375,22367,22376,0],[22375,22376,22368,0],[22368,22376,22377,0],[22376,22367,38826,0],[22376,38826,39388,0],[22376,39388,22377,0],[22377,39388,22379,0],[22379,39388,22378,0],[22379,22378,22380,0],[22379,22380,22374,0],[22380,39386,22371,0],[22371,22374,22380,0],[22379,22373,22377,0],[23170,22367,22375,0],[23170,22375,23221,0],[23170,23221,22381,0],[22383,22384,23179,0],[23179,22384,23222,0],[23179,23222,22386,0],[23197,22385,22386,0],[23197,22386,23222,0],[23197,23222,23223,0],[23223,23222,22387,0],[23223,22388,23198,0],[23198,22388,22963,0],[23198,22963,38837,0],[22389,38838,23160,0],[23162,38838,23157,0],[22392,23151,23164,0],[23164,23151,22949,0],[23164,22949,22948,0],[22395,22393,22394,0],[22395,22394,22396,0],[22623,22396,22397,0],[22397,22398,22399,0],[22399,22398,22400,0],[22400,22401,22402,0],[22403,22947,22616,0],[22616,22947,22404,0],[22583,22845,22843,0],[22583,22843,22408,0],[22409,22408,22843,0],[22409,22843,22410,0],[22797,22743,22411,0],[22797,22411,22412,0],[22797,22414,22413,0],[22413,22414,37802,0],[37802,22414,22946,0],[37802,22946,22547,0],[22547,22415,22416,0],[22416,22415,37783,0],[22545,37783,22418,0],[22545,22418,22417,0],[22417,22418,22544,0],[22544,22418,22419,0],[22419,22420,22421,0],[22426,37736,22422,0],[22426,22422,22423,0],[22423,22422,22465,0],[22427,22425,22428,0],[22427,22428,22419,0],[22427,22419,22421,0],[22465,22424,22423,0],[37736,22426,22421,0],[22426,22423,22427,0],[22426,22427,22421,0],[22427,22423,22425,0],[22425,22423,22424,0],[22419,22428,22544,0],[22544,22428,22429,0],[22430,22434,22433,0],[22431,37777,49222,0],[22543,49222,22432,0],[22432,49222,37806,0],[37779,37778,37775,0],[37775,37778,22433,0],[22435,22437,37773,0],[37773,22437,22436,0],[22437,22538,22438,0],[22438,22538,22439,0],[22438,22439,22440,0],[22440,22439,22441,0],[22440,22441,37312,0],[22441,22439,22442,0],[22452,22442,22456,0],[22452,22456,22443,0],[22443,22444,22445,0],[21315,21314,22448,0],[37226,22449,37219,0],[37219,37223,37226,0],[22449,37226,21316,0],[21316,37226,20490,0],[21316,20490,21317,0],[22449,37217,22448,0],[22448,37217,21315,0],[22448,21314,22447,0],[22447,21314,22453,0],[22443,22446,22452,0],[22452,22446,22450,0],[22450,22453,21312,0],[21312,21311,22451,0],[21312,22451,37315,0],[37316,22451,21272,0],[21272,22451,21310,0],[22451,21311,21310,0],[21312,37315,22450,0],[22450,37315,37313,0],[22450,37313,22452,0],[22446,22453,22450,0],[22446,22447,22453,0],[21313,21312,22453,0],[22462,22454,22455,0],[22455,22454,22461,0],[22455,22442,22462,0],[22442,22455,22456,0],[22456,22455,37350,0],[22456,37350,22457,0],[22457,37350,22458,0],[22457,22458,22443,0],[22443,22458,22444,0],[22444,22458,22468,0],[22460,22459,37771,0],[22468,22458,22459,0],[22457,22443,22456,0],[22462,22439,22463,0],[22463,22539,22464,0],[22464,22532,22531,0],[22464,22531,22542,0],[22542,22531,22541,0],[37771,22465,22460,0],[22465,22466,22460,0],[22460,22466,37349,0],[22460,37349,22467,0],[22460,22467,22459,0],[22459,22467,22468,0],[37348,22514,22470,0],[22473,22474,22523,0],[22523,22474,22938,0],[22523,22938,22522,0],[22522,22938,22937,0],[22522,22937,22524,0],[22525,22475,37369,0],[22525,37369,22476,0],[22525,22476,22477,0],[22477,22476,22478,0],[22480,22481,20179,0],[22482,22481,22480,0],[22482,22480,22483,0],[22483,22491,22490,0],[22489,22484,22485,0],[20173,22486,22487,0],[20173,22487,22488,0],[20291,22488,20148,0],[20291,20148,20147,0],[20293,20291,20147,0],[20173,20174,22486,0],[22486,20174,20175,0],[22486,20175,20176,0],[22486,20176,22485,0],[22485,20176,22489,0],[22490,22489,20178,0],[22490,20178,22482,0],[20178,22489,20177,0],[20177,22489,20176,0],[22483,22490,22482,0],[22489,22490,22484,0],[22483,22480,22479,0],[22479,22478,22491,0],[22492,22484,22490,0],[22484,22492,22493,0],[22484,22493,22505,0],[22496,22493,22492,0],[22484,22505,22485,0],[22485,22505,22504,0],[22485,22504,22486,0],[22486,22504,22494,0],[22486,22494,22487,0],[22492,22490,22491,0],[22479,22491,22483,0],[22491,22478,22476,0],[22491,22476,22495,0],[20151,22496,22497,0],[20151,22497,20152,0],[20152,22497,22498,0],[22495,37368,22498,0],[22498,37368,22499,0],[22499,37368,37369,0],[22524,22500,22475,0],[22491,22495,22492,0],[22492,22495,22496,0],[22493,22496,20151,0],[22493,20151,22501,0],[22501,22502,22504,0],[22504,22502,22503,0],[22504,22503,22494,0],[22494,22503,20149,0],[22494,20149,22487,0],[22487,20149,22488,0],[22488,20149,20148,0],[22501,22504,22505,0],[22501,22505,22493,0],[22474,22473,22506,0],[22474,22506,22507,0],[22474,22507,22936,0],[22936,22507,22508,0],[22508,22507,22509,0],[22508,22509,22940,0],[22940,22509,22510,0],[22806,22510,22511,0],[22511,22510,22512,0],[22511,22512,22506,0],[22506,22512,22507,0],[22506,22473,37737,0],[22473,22472,37737,0],[37737,22472,37732,0],[22507,22512,22509,0],[22509,22512,22510,0],[22472,22471,37732,0],[37732,22471,22513,0],[22513,22471,22529,0],[22514,22529,22470,0],[22513,22529,22514,0],[22513,22514,22515,0],[22515,22514,37348,0],[22515,37348,22422,0],[22422,37348,22466,0],[22422,22466,22465,0],[22515,22422,37736,0],[20187,22469,37347,0],[22470,22517,37348,0],[37348,22517,22516,0],[37348,22516,37347,0],[20187,37347,20186,0],[20186,37347,20185,0],[37347,22516,20185,0],[20185,22516,20184,0],[20184,22516,22517,0],[20184,22517,22518,0],[22518,22517,22530,0],[22518,22530,20183,0],[20183,22530,22471,0],[22472,22473,22519,0],[22519,22521,22520,0],[22520,22521,37744,0],[37744,22521,22522,0],[22522,22521,22523,0],[22523,22521,22519,0],[22519,22473,22523,0],[22525,22524,22475,0],[22472,22519,20183,0],[20183,22519,22526,0],[20183,22471,22472,0],[20182,22526,22520,0],[20181,37743,22527,0],[22479,22480,22527,0],[22527,22480,22528,0],[20180,22528,20179,0],[22480,20179,22528,0],[22528,20181,22527,0],[22520,20181,20182,0],[22519,22520,22526,0],[22471,22530,22529,0],[22529,22530,22470,0],[22470,22530,22517,0],[22468,22467,20187,0],[22445,22444,20189,0],[22465,22541,22424,0],[22424,22541,22425,0],[22425,22541,22531,0],[22531,22532,22536,0],[22536,22532,22533,0],[22431,22533,22535,0],[22431,22429,22533,0],[22533,22429,22536,0],[22534,22533,22537,0],[22536,22429,22425,0],[22536,22425,22531,0],[22533,22534,22535,0],[22535,22534,22430,0],[22430,22534,22435,0],[22435,22434,22430,0],[22538,22534,22539,0],[22532,22537,22533,0],[22534,22538,22435,0],[22435,22538,22437,0],[22532,22464,22537,0],[22537,22464,22539,0],[22538,22539,22439,0],[22463,22464,22540,0],[22463,22540,22462,0],[22454,22542,22461,0],[22461,22542,22541,0],[37771,22461,22465,0],[22465,22461,22541,0],[22542,22454,22540,0],[22542,22540,22464,0],[22540,22454,22462,0],[22463,22439,22539,0],[22535,22430,37777,0],[22535,37777,22431,0],[22431,49222,22543,0],[22543,22417,22544,0],[22545,22417,22416,0],[22416,22417,22432,0],[22416,37783,22545,0],[22543,22432,22417,0],[22432,22546,22547,0],[37804,22546,22549,0],[22549,22558,22548,0],[22549,22548,22550,0],[22549,22550,22551,0],[22552,22795,22745,0],[22566,22553,37844,0],[37844,22553,22554,0],[22748,22554,22567,0],[22748,22567,22749,0],[22749,22567,22555,0],[22555,22565,22750,0],[22750,22565,37798,0],[22556,37798,37799,0],[22546,37847,22549,0],[22549,37847,22558,0],[37801,22548,22559,0],[22557,22559,37810,0],[22557,37810,22560,0],[22561,22562,22563,0],[22563,22564,21277,0],[21288,21277,22564,0],[22555,22567,22565,0],[22565,22567,37800,0],[37795,37800,22553,0],[37795,22553,37794,0],[37794,22553,22566,0],[22553,37800,22567,0],[22553,22567,22554,0],[22745,22795,37845,0],[22745,37845,22568,0],[22568,37845,22569,0],[22568,22569,22747,0],[22571,22570,22575,0],[22571,22575,37868,0],[37867,37868,22572,0],[37877,22575,22576,0],[22577,22578,22579,0],[22579,2271,38299,0],[22580,37874,22581,0],[22580,22581,37870,0],[22582,37870,37869,0],[22582,37869,22408,0],[22408,37869,22583,0],[22583,37869,22735,0],[22845,22583,22839,0],[22839,22583,22844,0],[22844,22583,22735,0],[22844,22735,22407,0],[22585,22407,37872,0],[37932,37873,37874,0],[37932,37874,37933,0],[37933,37874,37859,0],[37859,37874,2269,0],[22585,22733,22406,0],[22406,22733,22405,0],[22614,22586,22587,0],[22614,22587,22613,0],[22613,22587,22588,0],[22611,22588,22589,0],[22601,22589,22734,0],[22601,22734,22731,0],[22601,22731,22590,0],[22604,2488,2468,0],[22604,2468,22591,0],[22603,22730,22592,0],[22595,22596,38048,0],[22595,38048,22597,0],[22598,22597,22608,0],[22599,22598,22609,0],[22599,22609,22600,0],[22589,22600,22611,0],[22599,22602,22594,0],[22601,22590,22605,0],[22601,22605,22602,0],[22602,22605,22593,0],[22592,22605,22603,0],[22591,22603,22604,0],[22604,22603,22605,0],[22604,22605,22590,0],[22601,22602,22606,0],[22602,22599,22606,0],[22606,22589,22601,0],[22589,22606,22600,0],[22600,22606,22599,0],[22594,22602,22593,0],[22597,22598,22594,0],[22594,22598,22599,0],[22596,2564,22607,0],[22609,22610,22600,0],[22600,22610,22611,0],[22612,22611,22618,0],[22612,22618,22613,0],[22613,22618,22614,0],[22404,22615,22616,0],[22727,22617,22728,0],[22403,22616,22617,0],[22403,22617,22727,0],[22614,22615,22586,0],[22405,22586,22404,0],[22612,22588,22611,0],[22588,22612,22613,0],[22611,22610,22618,0],[22618,22610,22619,0],[22619,22610,22609,0],[22619,2556,22620,0],[22728,2612,2557,0],[2557,22621,22622,0],[22396,22623,22724,0],[22396,22724,22395,0],[38846,22624,38844,0],[38844,22624,22625,0],[23191,22626,22627,0],[23192,22627,38008,0],[23192,38008,38006,0],[23192,38006,23188,0],[23188,38006,23186,0],[23184,23186,22628,0],[23184,22628,23183,0],[23181,23183,22629,0],[23181,22629,22630,0],[22630,22629,22631,0],[23217,38566,22633,0],[22655,22634,22635,0],[22637,22638,22654,0],[22713,22714,22651,0],[22651,22714,22686,0],[22651,22686,22640,0],[22651,22640,22641,0],[22641,22640,22715,0],[22642,22641,22721,0],[22653,22642,22643,0],[22653,22643,38828,0],[23208,38828,22650,0],[23208,22650,22644,0],[22644,22650,38816,0],[38816,22650,38819,0],[38819,22650,22648,0],[23177,38819,22648,0],[22648,22647,23173,0],[22362,23174,22645,0],[22362,22645,22723,0],[22723,22645,22646,0],[22648,22650,22647,0],[22650,22649,22647,0],[22647,22649,22646,0],[22647,22646,22645,0],[22647,22645,23174,0],[22713,22651,22652,0],[22713,22652,22639,0],[22651,22641,22652,0],[23213,22652,22653,0],[23209,22653,38828,0],[22639,22652,23213,0],[22639,23213,22654,0],[22654,23212,23211,0],[22654,23211,22656,0],[22656,23211,22655,0],[22655,22635,22656,0],[22656,22637,22654,0],[22637,22656,22636,0],[22636,22656,22635,0],[22639,22654,22638,0],[22653,22652,22642,0],[22642,22652,22641,0],[22639,22638,22657,0],[22658,22657,22638,0],[22658,22638,22637,0],[22637,22636,22658,0],[22658,22636,38567,0],[22658,38568,22657,0],[22657,38568,22659,0],[22663,38569,37996,0],[22663,37996,22661,0],[22663,22661,22662,0],[22665,22666,22667,0],[22668,22666,22669,0],[22668,22669,22682,0],[22671,32601,22672,0],[22680,22672,22673,0],[22673,22672,32602,0],[22673,32602,22674,0],[22675,22679,22676,0],[22694,22695,22678,0],[22676,22679,22677,0],[22677,22679,23241,0],[22679,22675,22674,0],[22674,22675,22692,0],[22683,22671,22680,0],[22683,22680,22681,0],[22681,22689,38833,0],[38833,22689,22682,0],[22670,22683,22681,0],[22670,22681,38833,0],[22671,22672,22680,0],[22680,22673,22691,0],[22690,38554,22684,0],[22684,22716,22685,0],[22685,22716,22686,0],[22685,22686,22714,0],[22685,22714,38831,0],[38831,22713,22665,0],[38831,22665,22667,0],[22684,22685,22687,0],[38831,22687,22685,0],[22681,22691,22689,0],[22691,22688,22689,0],[22668,22689,22690,0],[22668,22690,22684,0],[22691,22681,22680,0],[22688,22690,22689,0],[22691,22692,22701,0],[22701,22692,22699,0],[22699,22692,22704,0],[22697,22699,22704,0],[22693,22704,22696,0],[22677,22695,22676,0],[22694,22696,22695,0],[22695,22696,22676,0],[22676,22696,22704,0],[22676,22704,22675,0],[22696,22694,22693,0],[22693,22694,38803,0],[22693,38803,22697,0],[22697,22156,22698,0],[22698,38555,38553,0],[22701,22688,22691,0],[22688,22701,38554,0],[22688,38554,22690,0],[38554,22700,22684,0],[22699,22697,38553,0],[38553,22697,22698,0],[22156,22157,22698,0],[22157,38815,22158,0],[22157,22158,22702,0],[22703,22702,38814,0],[22703,38814,22343,0],[38814,22702,38807,0],[38807,22702,22158,0],[22698,22157,38555,0],[22704,22693,22697,0],[22691,22673,22692,0],[22675,22704,22692,0],[22705,22706,22707,0],[32624,22706,22711,0],[32624,22711,22709,0],[32624,22709,22708,0],[22708,22709,22710,0],[22710,22662,2595,0],[22662,22710,22663,0],[22663,22710,22660,0],[22666,22712,22706,0],[22711,22706,22712,0],[22666,22665,22712,0],[22712,22665,22664,0],[22712,22659,22711,0],[22711,22659,22709,0],[22712,22664,22659,0],[22709,22660,22710,0],[22705,22669,22666,0],[22669,22705,22682,0],[22682,22705,38833,0],[22657,22664,22713,0],[22714,22713,38831,0],[22640,22686,22715,0],[22715,22686,22716,0],[22641,22715,22717,0],[22721,22717,22345,0],[22345,22717,38558,0],[22345,38558,22344,0],[22344,38558,38559,0],[22718,22345,22719,0],[22718,22719,22723,0],[22719,22720,22349,0],[22349,22720,22351,0],[22351,22720,22348,0],[22720,22719,22345,0],[22641,22717,22721,0],[22722,22718,22723,0],[22345,22718,22721,0],[22713,22639,22657,0],[37975,22395,22724,0],[22724,22623,37976,0],[37976,22623,22725,0],[22622,22725,22397,0],[22397,22725,22623,0],[22725,22622,22621,0],[22395,37975,22726,0],[22726,22624,38845,0],[22624,22726,22625,0],[22625,22726,37975,0],[22397,22399,22622,0],[22622,22399,22727,0],[22622,22727,2557,0],[2557,22727,22728,0],[22403,22727,22402,0],[22403,22402,22835,0],[22402,22727,22400,0],[22400,22727,22399,0],[22618,22615,22614,0],[22618,22619,22615,0],[22615,22619,22620,0],[22615,22620,22729,0],[22729,22620,22728,0],[22728,22617,22616,0],[22615,22729,22616,0],[22616,22729,22728,0],[22607,2564,2554,0],[22596,22595,2553,0],[22591,38016,22603,0],[22603,38016,22730,0],[22604,2267,22732,0],[2266,2488,22732,0],[2488,22604,22732,0],[2267,22731,37859,0],[22604,22590,2267,0],[2267,22590,22731,0],[22586,22405,22733,0],[22586,22733,22587,0],[22733,37872,22584,0],[37872,22733,22585,0],[37873,37932,22584,0],[22584,37932,22587,0],[22584,22587,22733,0],[22587,37932,22588,0],[22734,22588,37933,0],[22734,22589,22588,0],[22408,22409,22582,0],[22582,22409,22736,0],[22582,22736,37875,0],[37875,22736,22737,0],[22737,22736,22741,0],[22739,22737,22738,0],[22569,22570,22740,0],[22737,22741,22738,0],[22738,22741,22742,0],[22568,22742,22743,0],[22568,22743,22744,0],[22745,22744,22796,0],[22745,22796,22552,0],[22552,22796,22746,0],[22552,22746,37803,0],[37803,37804,22549,0],[22546,37804,22547,0],[22432,22547,22416,0],[37803,22549,22551,0],[37803,22551,22552,0],[22744,22745,22568,0],[22738,22568,22747,0],[22747,22740,22739,0],[22739,22738,22747,0],[22740,22747,22569,0],[22738,22742,22568,0],[22742,22736,22411,0],[22743,22742,22411,0],[22411,22736,22410,0],[22410,22736,22409,0],[22577,22579,37877,0],[22577,37877,22576,0],[22572,37868,22573,0],[22573,37868,22574,0],[37868,22575,22574,0],[22570,22569,22748,0],[22570,22748,22749,0],[22749,22555,37860,0],[37865,22555,22752,0],[22752,22750,22751,0],[22752,22751,22753,0],[22752,22753,22759,0],[22759,22753,22777,0],[22759,22777,22754,0],[22754,22777,37825,0],[22754,37825,22755,0],[2276,22755,22757,0],[2276,22757,2277,0],[2277,22757,22756,0],[22756,22757,22778,0],[22778,22757,22755,0],[22778,22755,37824,0],[37824,22755,37825,0],[2277,22756,2278,0],[2278,22756,22758,0],[2276,37853,22755,0],[22755,37853,22754,0],[37853,37849,37850,0],[37850,37865,22752,0],[22752,22759,37850,0],[37853,37850,22754,0],[22754,37850,22759,0],[22752,22555,22750,0],[22773,22751,22556,0],[22773,22556,22760,0],[22773,22760,22761,0],[22762,22761,37813,0],[22762,37813,22775,0],[22775,37813,22763,0],[22775,22763,22791,0],[22791,22763,22764,0],[22764,37819,22792,0],[22792,37819,37818,0],[22792,37818,22788,0],[22788,37818,37817,0],[22788,37817,22789,0],[22789,37817,22765,0],[2366,2375,2367,0],[2366,2367,22782,0],[22782,2408,22767,0],[2408,22782,2367,0],[22750,37798,22751,0],[22751,37798,22556,0],[22556,37799,22760,0],[22760,37799,22768,0],[22769,22768,22770,0],[22769,22770,22771,0],[22772,22563,21277,0],[21277,21287,22772,0],[22761,22760,22768,0],[22761,22768,22769,0],[22751,22773,22753,0],[22753,22773,22776,0],[22776,22773,22774,0],[22776,22774,22762,0],[22775,22794,22776,0],[22776,22794,22777,0],[22778,22790,22779,0],[22779,22789,22780,0],[38295,22781,38297,0],[38297,22782,22783,0],[22783,22782,22767,0],[22785,22767,22784,0],[22785,22784,2404,0],[2408,22784,22767,0],[22782,38297,2366,0],[2374,38297,22781,0],[2374,22781,2365,0],[2374,2366,38297,0],[2365,22781,22786,0],[2365,22786,22766,0],[22780,22765,22766,0],[22778,37824,22790,0],[22790,37824,22787,0],[22787,22792,22788,0],[22789,22765,22780,0],[22788,22789,22787,0],[22787,22789,22790,0],[22779,22790,22789,0],[22778,48995,22756,0],[22756,48995,22758,0],[22776,22762,22775,0],[22776,22777,22753,0],[22775,22793,22794,0],[22775,22791,22793,0],[22793,22791,22792,0],[22793,22792,22787,0],[22792,22791,22764,0],[22794,22793,37824,0],[37824,22793,22787,0],[22762,22774,22761,0],[22761,22774,22773,0],[22551,22550,37794,0],[22552,22551,22795,0],[22429,22543,22544,0],[22543,22429,22431,0],[22797,22796,22744,0],[22746,22796,22413,0],[22797,22744,22743,0],[22410,22843,22798,0],[22798,22799,22412,0],[22412,22800,22797,0],[22797,22800,22414,0],[22414,22800,37789,0],[37789,22800,22842,0],[37789,22842,22802,0],[22802,22842,22801,0],[22802,22801,37787,0],[37787,22809,22803,0],[22805,22807,22806,0],[22510,22806,22807,0],[22807,22805,22846,0],[22805,22804,22808,0],[22808,22804,22809,0],[22809,22804,22803,0],[22811,22808,22810,0],[22811,22810,37788,0],[22813,22812,37843,0],[22814,37843,37730,0],[22814,37730,22815,0],[22833,22815,22816,0],[22833,22816,22817,0],[37826,22819,22818,0],[22818,22819,22837,0],[22837,22819,37866,0],[22837,37866,22825,0],[22825,37866,22820,0],[22821,22822,22585,0],[22585,22822,22407,0],[22821,22585,22406,0],[22821,22406,22823,0],[22821,22823,22820,0],[22820,22823,22825,0],[22406,22405,22823,0],[22823,22405,22824,0],[22823,22824,22825,0],[37827,22826,23143,0],[22834,22827,22970,0],[22970,22828,22829,0],[22817,22831,22832,0],[22817,22832,22833,0],[22833,22832,22814,0],[22833,22814,22815,0],[22970,22829,22834,0],[23143,22834,37827,0],[22402,37827,22835,0],[22836,22835,22818,0],[22836,22818,22837,0],[23143,22827,22834,0],[22402,22401,37827,0],[37827,22401,22826,0],[22405,22404,22824,0],[22825,22824,22837,0],[22835,22836,22403,0],[22821,22820,37792,0],[22822,37792,22838,0],[22822,22838,22844,0],[22844,22838,22839,0],[22412,22799,22800,0],[22800,22799,22842,0],[37725,22799,22798,0],[37725,22798,22843,0],[22821,37792,22822,0],[22841,22845,22840,0],[22840,22845,22839,0],[22841,37725,22845,0],[22845,37725,22843,0],[22844,22407,22822,0],[22808,22811,22846,0],[22846,22945,22941,0],[37749,22849,22930,0],[22930,22849,22855,0],[22930,22855,20164,0],[20164,22855,20156,0],[22862,22851,22863,0],[22864,22851,22923,0],[22923,22858,22852,0],[22852,22858,22924,0],[22924,22858,22853,0],[22922,22814,22832,0],[22860,22855,22849,0],[22860,22849,22856,0],[22856,22849,37747,0],[22856,22853,22850,0],[22850,22853,22857,0],[22857,22858,22851,0],[22851,22858,22923,0],[22858,22857,22853,0],[22853,22856,22854,0],[22856,37747,22854,0],[22814,22859,37843,0],[22814,22922,22859,0],[22859,22922,22854,0],[22850,22860,22856,0],[20156,22855,20157,0],[20157,22855,22861,0],[37718,22862,22863,0],[22865,22928,37834,0],[22867,22866,22869,0],[22867,22869,22868,0],[22910,22875,22876,0],[22876,22877,22499,0],[22499,22877,22498,0],[20152,22875,22878,0],[22886,22880,22881,0],[20150,22881,22503,0],[22503,22882,20149,0],[22900,22883,20147,0],[20147,22883,22897,0],[22882,22900,20149,0],[20148,20149,22900,0],[22884,20150,22885,0],[22884,22885,22886,0],[22886,22881,22884,0],[22884,22881,20150,0],[22886,22885,22887,0],[22887,22906,22886,0],[22886,22898,22880,0],[22886,22906,22898,0],[22898,22906,22888,0],[22898,22888,22896,0],[22896,22888,22895,0],[22902,23013,22889,0],[22889,23015,22890,0],[21423,20144,22893,0],[21423,22893,22892,0],[22892,22893,22894,0],[22892,22894,22895,0],[20145,20146,22893,0],[22893,20146,22894,0],[22896,22894,22897,0],[22896,22897,22898,0],[22898,22897,22883,0],[22881,22880,22899,0],[22899,22880,22883,0],[22883,22880,22898,0],[22894,20146,22897,0],[22881,22899,22882,0],[22882,22899,22900,0],[22881,22882,22503,0],[22899,22883,22900,0],[22895,22894,22896,0],[21423,22901,22891,0],[22891,22901,22889,0],[22889,22890,22891,0],[21423,22892,22901,0],[22902,22901,22895,0],[22902,22889,22901,0],[22895,22901,22892,0],[22888,22906,22903,0],[22904,22903,22905,0],[22905,22871,22870,0],[22871,22905,22872,0],[22872,22906,22873,0],[22873,22906,22887,0],[22873,22887,22874,0],[22874,22887,22879,0],[22874,22879,22875,0],[22875,22879,22878,0],[22875,20152,22877,0],[22877,20152,22498,0],[22875,22877,22876,0],[22906,22872,22903,0],[22903,22872,22905,0],[22876,20169,22910,0],[22872,22907,22909,0],[22872,22909,22871,0],[22871,22908,22868,0],[22871,22868,22870,0],[22870,22868,22869,0],[22868,22908,20168,0],[22868,20168,22867,0],[22867,37719,22866,0],[22866,37719,37834,0],[37834,37719,22865,0],[22865,37719,22864,0],[22908,22909,20160,0],[22908,22871,22909,0],[22909,22907,20160,0],[20160,22907,22910,0],[22872,22873,22907,0],[22907,22873,22874,0],[22907,22874,22910,0],[22910,22874,22875,0],[23007,22869,22911,0],[22912,22911,22866,0],[22912,22866,22913,0],[22914,23141,22915,0],[22914,22915,22916,0],[22916,22929,22918,0],[22917,22918,22929,0],[22917,22929,22919,0],[22920,48895,22921,0],[37720,22922,22831,0],[22831,22922,22832,0],[37720,22831,22921,0],[22921,22831,22830,0],[22921,22830,37793,0],[37793,22830,22829,0],[22869,22866,22911,0],[22866,37834,22913,0],[22863,22851,22864,0],[22854,22922,22925,0],[48894,48895,22926,0],[22926,48895,37832,0],[22926,22927,37833,0],[37833,22927,22928,0],[22928,22927,22915,0],[22915,22927,22916,0],[22916,37832,22929,0],[22916,22927,37832,0],[22926,37833,22923,0],[22926,22923,22852,0],[22854,22925,22853,0],[22853,22925,22924,0],[22862,22861,22850,0],[22850,22861,22860,0],[20157,22861,20158,0],[20159,20158,37718,0],[22867,37718,37719,0],[22867,20168,37718,0],[37718,20168,20159,0],[37749,22930,22931,0],[22931,22932,22933,0],[22931,22933,22939,0],[22939,22933,22934,0],[22936,22508,22935,0],[22936,22935,20153,0],[22936,20153,22937,0],[22937,20153,22500,0],[22937,22500,22524,0],[22937,22938,22936,0],[22936,22938,22474,0],[22931,22930,22932,0],[22932,22930,20164,0],[37749,22931,22848,0],[22848,22931,22939,0],[22848,22939,22940,0],[22940,22939,22508,0],[22508,22939,22934,0],[22848,22940,22847,0],[22847,22940,22941,0],[22941,22807,22846,0],[22846,22805,22808,0],[22807,22941,22510,0],[22510,22941,22940,0],[22941,22945,22847,0],[22847,22945,22942,0],[22847,22942,37750,0],[37750,22942,37748,0],[37748,22942,22813,0],[22813,22943,22812,0],[22812,22943,37788,0],[37788,22943,22811,0],[22811,22943,22944,0],[22944,22943,22942,0],[22944,22942,22945,0],[22945,22846,22944,0],[22944,22846,22811,0],[22943,22813,22942,0],[22414,37789,22946,0],[22547,22946,22415,0],[22412,22411,22798,0],[22798,22411,22410,0],[22404,22947,22824,0],[22824,22947,22837,0],[22837,22947,22836,0],[22836,22947,22403,0],[22394,22393,22948,0],[23149,22949,23151,0],[23149,23151,22950,0],[23152,22951,22952,0],[22954,22955,37842,0],[37842,22955,22959,0],[37842,22959,37840,0],[39393,22956,22964,0],[39393,22964,22957,0],[39393,22957,39392,0],[23070,37840,22958,0],[22958,37840,22959,0],[22960,22959,22955,0],[22960,22955,22961,0],[22962,22961,23156,0],[23226,22962,38841,0],[23225,22963,22388,0],[22961,22955,23155,0],[23153,22954,22953,0],[23153,22953,22952,0],[23070,22957,22964,0],[23070,22964,37840,0],[22956,37840,22964,0],[22952,22965,23152,0],[23150,37841,37829,0],[23150,37829,22967,0],[22827,22969,22970,0],[22929,22970,22919,0],[22970,22929,22828,0],[22828,22929,22920,0],[22970,22969,22919,0],[22917,22919,37830,0],[23140,37838,22971,0],[23138,22972,37761,0],[23138,37761,22973,0],[23137,22973,22974,0],[23137,22974,23142,0],[23142,22974,22975,0],[22975,22974,22977,0],[22977,22974,22976,0],[22978,22976,23133,0],[22979,22980,22981,0],[22981,22980,22982,0],[22982,37769,23022,0],[23022,37769,22983,0],[22983,22984,23021,0],[23021,22984,22985,0],[23021,22985,23000,0],[37616,22985,22986,0],[22986,23039,22987,0],[22986,22987,37612,0],[37612,22987,23040,0],[37612,23040,23041,0],[37612,23041,37613,0],[37613,23041,22988,0],[37613,22988,22989,0],[22990,37614,22991,0],[22990,22991,38858,0],[38858,22991,22992,0],[22994,22993,25833,0],[22996,37610,23018,0],[37611,22997,22998,0],[37616,22999,23000,0],[37616,23000,22985,0],[23000,22999,23020,0],[23020,22999,23001,0],[23002,23003,23004,0],[23004,23003,23014,0],[23004,23014,23005,0],[23005,23011,23010,0],[23010,23011,23006,0],[23006,22870,23007,0],[23007,22870,22869,0],[23007,22911,23008,0],[23007,23008,23009,0],[23009,23008,22979,0],[23009,22979,23010,0],[23010,22979,22981,0],[23010,22981,23004,0],[23004,23005,23010,0],[23009,23010,23006,0],[23009,23006,23007,0],[23004,22981,23002,0],[22870,23006,22905,0],[23006,23011,22905,0],[22904,22905,23011,0],[22904,23011,23019,0],[22904,23019,23012,0],[23012,23019,22902,0],[22902,22895,23012,0],[23012,22895,22888,0],[22888,22903,22904,0],[22888,22904,23012,0],[22902,23019,23013,0],[23014,23013,23005,0],[23013,23014,22889,0],[22889,23014,23015,0],[23015,23014,23003,0],[23015,23003,23016,0],[23016,23003,23002,0],[23015,23016,23017,0],[22996,23018,22997,0],[22997,23018,23017,0],[22997,23017,23016,0],[22997,23016,23002,0],[22997,23002,23001,0],[22997,23001,22998,0],[22998,23001,22999,0],[23019,23011,23005,0],[23019,23005,23013,0],[23022,23021,22982,0],[22982,23021,23020,0],[22982,23020,22981,0],[22981,23020,23001,0],[22981,23001,23002,0],[23022,22983,23021,0],[23020,23021,23000,0],[23123,22985,23023,0],[23023,23131,23024,0],[23024,23131,23025,0],[23024,23025,23026,0],[23026,23025,23027,0],[23129,23027,37766,0],[23129,37766,37764,0],[23129,37764,23028,0],[23029,23028,37770,0],[23029,37770,23030,0],[23031,23066,23032,0],[23032,23071,23033,0],[23033,23071,23074,0],[23033,23074,23034,0],[23034,23074,23035,0],[23036,23126,23026,0],[23026,23126,23024,0],[23038,38856,23122,0],[23122,23121,23038,0],[23024,23037,23023,0],[23023,23037,23123,0],[22985,23039,22986,0],[22988,23042,23045,0],[23043,23100,23044,0],[23050,23051,23048,0],[23048,21434,23049,0],[23049,21434,22992,0],[23049,22992,22991,0],[22991,37614,23045,0],[23045,23043,23046,0],[23046,23047,23049,0],[23047,23050,23048,0],[23051,23050,23044,0],[23047,23048,23049,0],[23049,22991,23046,0],[23046,22991,23045,0],[23046,23043,23050,0],[23046,23050,23047,0],[23043,23044,23050,0],[37614,22989,23045,0],[21434,21433,22992,0],[22992,21433,21432,0],[23048,23051,21435,0],[21435,23051,38861,0],[23042,22988,23052,0],[22989,22988,23045,0],[23041,23040,23121,0],[23041,23121,23052,0],[23052,23121,23088,0],[23088,23121,38854,0],[23087,38854,23053,0],[23087,23053,23085,0],[23085,23053,23054,0],[23054,23053,23061,0],[23054,23061,23062,0],[23054,23062,23055,0],[23055,23062,23056,0],[23056,39375,23057,0],[23058,23057,39369,0],[23058,39369,23059,0],[39371,22307,22308,0],[23062,23061,23063,0],[23063,38853,38851,0],[38851,38853,38855,0],[38851,38855,23064,0],[38848,23073,23065,0],[39394,23072,23032,0],[23067,23068,23069,0],[23069,23068,23070,0],[23066,23031,23067,0],[23031,23030,23067,0],[23032,23072,23071,0],[23073,23064,23035,0],[23064,23073,38848,0],[23072,23073,23071,0],[23071,23073,23074,0],[23035,23074,23073,0],[23073,23072,23065,0],[23075,38850,23077,0],[23077,38850,23076,0],[23077,23076,23078,0],[23079,23078,39382,0],[23080,23081,39367,0],[23082,39365,39381,0],[23082,39381,22303,0],[23082,22303,22304,0],[22304,23083,23082,0],[23084,23082,23083,0],[23062,23075,23056,0],[23056,23075,39375,0],[23089,23085,23086,0],[23086,23085,23119,0],[23119,23085,23054,0],[23087,23085,23089,0],[23087,23089,23088,0],[23052,23088,23042,0],[23088,38854,23087,0],[23042,23089,23090,0],[23045,23042,23090,0],[23089,23086,23090,0],[23043,23090,23100,0],[23100,23086,23116,0],[23100,23116,23099,0],[23099,23116,38875,0],[23099,38875,23091,0],[23091,23092,23102,0],[23102,23092,38870,0],[38980,38983,23106,0],[23106,38983,38984,0],[23106,38984,23093,0],[23093,38984,38985,0],[23105,23093,38987,0],[23105,38987,23094,0],[23095,23096,23097,0],[21624,23097,38924,0],[21624,38924,21654,0],[21654,38924,21623,0],[21623,38924,38923,0],[21623,38923,23098,0],[23098,38923,38925,0],[23098,38925,25727,0],[21622,25727,21621,0],[25727,21622,23098,0],[23100,23099,23044,0],[23099,23091,23102,0],[23099,23102,23101,0],[23101,23102,21436,0],[23099,23101,23044,0],[23044,23101,23051,0],[21437,23102,38870,0],[21437,38870,38879,0],[21438,38879,38982,0],[21438,38982,23107,0],[23107,38982,38980,0],[23107,38980,23103,0],[23103,23104,23114,0],[23105,23106,23093,0],[23105,23095,23114,0],[23106,23105,23114,0],[23114,23104,23106,0],[23106,23104,38980,0],[23104,23103,38980,0],[23107,23103,38977,0],[38977,23103,23113,0],[38977,23113,23108,0],[38977,23108,23109,0],[23109,23108,21444,0],[23108,23113,23110,0],[23112,23110,23111,0],[23112,23111,21625,0],[23112,21625,21626,0],[21447,21626,21628,0],[21447,21628,21448,0],[21448,21450,21449,0],[21450,21448,21628,0],[21447,21445,21626,0],[21626,21445,23112,0],[21628,21626,21627,0],[21625,23111,21624,0],[21624,23111,23097,0],[23114,23113,23103,0],[23115,23113,23114,0],[23114,23095,23115,0],[23110,23115,23111,0],[23115,23095,23097,0],[23115,23097,23111,0],[21438,23107,25832,0],[23100,23090,23086,0],[23116,23086,23119,0],[38875,23116,23120,0],[38873,23120,23117,0],[38873,23117,38882,0],[38882,23117,38885,0],[38885,23117,23118,0],[23119,23118,23120,0],[23120,23118,23117,0],[23116,23119,23120,0],[23092,23091,38875,0],[23043,23045,23090,0],[23039,23123,22987,0],[22987,23123,23040,0],[23121,23122,38854,0],[23038,23121,23040,0],[23038,23040,23123,0],[23038,23123,23127,0],[23127,23123,23037,0],[23053,38854,23124,0],[23061,23124,23063,0],[23124,23061,23053,0],[23126,23036,23125,0],[23126,23127,23037,0],[23037,23024,23126,0],[23064,23036,23035,0],[23034,23035,23128,0],[23029,23129,23028,0],[23027,23129,23128,0],[23027,23128,23026,0],[23026,23128,23036,0],[23029,23130,23129,0],[23129,23130,23128,0],[23034,23128,23130,0],[23031,23130,23030,0],[23034,23130,23033,0],[23031,23032,23033,0],[23031,23033,23130,0],[22985,22984,23023,0],[23023,22984,23131,0],[22980,23133,37769,0],[37769,23133,23132,0],[37766,23132,37765,0],[37765,23132,22976,0],[22976,23132,23133,0],[22978,23133,22980,0],[22978,22980,22979,0],[22982,22980,37769,0],[22976,22978,22977,0],[22977,22978,22979,0],[22977,22979,23134,0],[23134,22979,23008,0],[23134,23008,22911,0],[23134,22911,22912,0],[23134,22912,23135,0],[23135,22912,22913,0],[23135,22913,23142,0],[23135,23142,22975,0],[23135,22975,22977,0],[23135,22977,23134,0],[22917,37830,23136,0],[22917,23136,22918,0],[23136,23138,22914,0],[22914,23138,23137,0],[23137,23138,22973,0],[22972,23138,23139,0],[22972,23139,22971,0],[22971,23139,23140,0],[37830,23140,23136,0],[23138,23136,23139,0],[23139,23136,23140,0],[22916,22918,23136,0],[22916,23136,22914,0],[23142,23141,23137,0],[23137,23141,22914,0],[22827,23143,22969,0],[22969,23143,22968,0],[22968,23143,22826,0],[22968,22826,23144,0],[23147,23144,23146,0],[23147,23146,23149,0],[23149,23146,22948,0],[22948,22949,23149,0],[22948,23146,22394,0],[22394,23146,23145,0],[23145,23146,22398,0],[22400,22398,22401,0],[22401,22398,23146,0],[23146,22826,22401,0],[23146,23144,22826,0],[22398,22397,23145,0],[22394,23145,22396,0],[22396,23145,22397,0],[22968,23144,23147,0],[22968,23147,23148,0],[23148,23147,22950,0],[22968,23148,22967,0],[22967,23148,23150,0],[22966,37841,23150,0],[22966,23150,22965,0],[22965,23150,22950,0],[22965,22950,23152,0],[22950,23150,23148,0],[22950,23151,23152,0],[23151,22392,23152,0],[23152,22392,22951,0],[22951,22392,23153,0],[23153,23154,22954,0],[22954,23154,23155,0],[23156,23155,38839,0],[22962,23156,38841,0],[23155,23156,22961,0],[23153,22391,23154,0],[23157,38840,22390,0],[23157,22390,23162,0],[22390,38840,22391,0],[23154,38840,23155,0],[23155,38840,38839,0],[22393,23169,23164,0],[23164,23169,23158,0],[23158,23169,38845,0],[23158,38845,38847,0],[38847,23159,23168,0],[23159,23189,23161,0],[23160,23187,23195,0],[23160,23195,22389,0],[23160,38838,23161,0],[23161,38838,23162,0],[23168,23162,23163,0],[23168,23163,23158,0],[23158,23163,23166,0],[23158,23166,23164,0],[23165,22392,23166,0],[23165,22391,23153,0],[23165,23153,22392,0],[23164,23166,22392,0],[22390,23167,23162,0],[23162,23167,23163,0],[23166,23163,23165,0],[23165,23163,23167,0],[23167,22390,22391,0],[22391,23165,23167,0],[23158,38847,23168,0],[23161,23162,23168,0],[23161,23168,23159,0],[22393,23164,22948,0],[22367,23170,23171,0],[23171,23170,23176,0],[23171,23176,22365,0],[22364,22365,23172,0],[22648,23172,23177,0],[22648,23173,23172,0],[22364,23172,23173,0],[22363,23173,23174,0],[23170,23175,23176,0],[23177,23219,38819,0],[38819,23219,38818,0],[38818,23219,23220,0],[38818,23220,38830,0],[38830,23220,23178,0],[23178,23220,22383,0],[23178,22383,23179,0],[23178,23179,23215,0],[23215,23179,22386,0],[23215,22386,23180,0],[23199,23180,22385,0],[23199,22385,23194,0],[23199,23194,23182,0],[23182,23194,23193,0],[23181,23182,23183,0],[23183,23182,23193,0],[23183,23193,23184,0],[23184,23193,23185,0],[23186,23185,23187,0],[23187,23160,23161,0],[23161,23189,23187,0],[23187,23189,23188,0],[23187,23188,23186,0],[23185,23186,23184,0],[23188,23189,23192,0],[23189,23159,23190,0],[23190,23159,38847,0],[23190,38847,23191,0],[23191,22627,23190,0],[23189,23190,23192,0],[22627,23192,23190,0],[23193,23194,23195,0],[23195,23194,23197,0],[23197,23196,23195,0],[22389,23195,23196,0],[23193,23195,23185,0],[22389,23196,38837,0],[38837,23196,23198,0],[23223,23198,23197,0],[23194,22385,23197,0],[23196,23197,23198,0],[23217,23202,38566,0],[38566,23202,22632,0],[22632,23202,38005,0],[38005,23202,23203,0],[22631,23203,22630,0],[22633,23204,23205,0],[23205,23204,23206,0],[23205,23206,23207,0],[38828,23208,23209,0],[22653,23209,23213,0],[23213,23209,23210,0],[23210,23209,23207,0],[23210,23207,23206,0],[23206,23204,22655,0],[23213,23210,23212,0],[23212,23210,23211,0],[22655,23211,23206,0],[23206,23211,23210,0],[23213,23212,22654,0],[23199,23200,23180,0],[23180,23200,23215,0],[23215,23200,23201,0],[23215,23201,38829,0],[38829,23201,23214,0],[38829,23214,38820,0],[38817,38820,23205,0],[23182,23181,23199,0],[23199,23181,23216,0],[23199,23216,23200,0],[23200,23216,23218,0],[23200,23218,23217,0],[23217,23218,23202,0],[23202,22630,23203,0],[23181,22630,23218,0],[23181,23218,23216,0],[23218,22630,23202,0],[23201,23217,23214,0],[22385,23180,22386,0],[23220,23219,23175,0],[23220,23175,22382,0],[23220,22382,22383,0],[22382,23175,22381,0],[22381,23175,23170,0],[23177,23176,23219,0],[23219,23176,23175,0],[23177,23172,22365,0],[22365,23176,23177,0],[22381,23221,22387,0],[22384,22387,23222,0],[23223,22387,23227,0],[23223,23227,22388,0],[22388,23227,23224,0],[22388,23224,23225,0],[23225,23224,23230,0],[23225,23230,23226,0],[23227,23221,23224,0],[23224,23221,23228,0],[23224,23228,22368,0],[23226,23230,23231,0],[22961,22962,22301,0],[22301,22962,23232,0],[38842,23231,23230,0],[23231,23232,22962,0],[23230,23229,38842,0],[23231,38842,23232,0],[22961,22301,22960,0],[22301,23232,22300,0],[22300,23232,38842,0],[22959,22960,22302,0],[22302,22960,22301,0],[23231,22962,23226,0],[23229,23230,23224,0],[22368,23229,23224,0],[22387,23221,23227,0],[22366,23233,22357,0],[22366,22357,22358,0],[22358,38825,22366,0],[23171,22365,22366,0],[22366,22365,23233,0],[22357,23233,23234,0],[22354,22357,23234,0],[22353,22363,22362,0],[22348,22347,22350,0],[38559,22342,22344,0],[22344,22342,22347,0],[22155,22154,23235,0],[23236,23237,22678,0],[32924,22678,22155,0],[32924,22155,23235,0],[22678,32924,23236,0],[23239,23238,23249,0],[23249,23238,32919,0],[23253,23239,23250,0],[23250,23239,23240,0],[23250,23240,23241,0],[23241,22679,23242,0],[23246,23247,22144,0],[22144,23247,32608,0],[22144,32608,32611,0],[22146,23252,22145,0],[22145,23252,22144,0],[22144,23252,23246,0],[23246,23252,23245,0],[23245,23252,23244,0],[23241,23240,22677,0],[22677,23240,22695,0],[22695,23248,22678,0],[22678,23248,22155,0],[22695,23240,23249,0],[22695,23249,23248,0],[23248,23249,22155,0],[22155,23249,22154,0],[23239,23249,23240,0],[23253,23250,22150,0],[22150,23250,22148,0],[22148,23250,23251,0],[23251,23241,38802,0],[23241,23251,23250,0],[23254,23252,22146,0],[23253,22152,22153,0],[22153,23238,23253,0],[23253,23238,23239,0],[22147,23254,23255,0],[22147,23255,22148,0],[23254,22146,23255,0],[23256,23257,23621,0],[23307,23258,23259,0],[23259,23658,23260,0],[23261,23260,23656,0],[23261,23655,23305,0],[23275,23305,23303,0],[23262,23269,23295,0],[23295,23269,23268,0],[23270,23266,23267,0],[23267,23268,23270,0],[23270,23268,23269,0],[23266,23270,32723,0],[23266,32723,23271,0],[23265,23272,23273,0],[23265,23273,23274,0],[23274,23264,23265,0],[23272,23265,23266,0],[23272,23266,23271,0],[23266,23265,23267,0],[23265,23264,23267,0],[23268,23267,23263,0],[23267,23264,23263,0],[23303,23305,23262,0],[23262,23305,23269,0],[23276,23275,23302,0],[23276,23302,23304,0],[23276,23304,23277,0],[23276,23277,32868,0],[32868,23277,32869,0],[32869,23277,23278,0],[23278,32588,3411,0],[3411,32588,3412,0],[23278,3411,23279,0],[23278,23279,32869,0],[23304,23302,23280,0],[23281,23280,23299,0],[23282,23288,23287,0],[23284,23283,23292,0],[23284,23292,23285,0],[23285,3425,23284,0],[23284,3425,3415,0],[32590,3415,3414,0],[3412,23286,3413,0],[23283,23287,23288,0],[23284,3415,23283,0],[23283,3415,32590,0],[23283,32590,23287,0],[23288,23296,23289,0],[23288,23289,23290,0],[23292,23290,23291,0],[23292,23291,3416,0],[23288,23290,23283,0],[23283,23290,23292,0],[23292,3423,23285,0],[23288,23282,23293,0],[23294,23295,23268,0],[23288,23293,23296,0],[23297,23298,32716,0],[32716,23298,38799,0],[32716,38799,32713,0],[32713,38799,23274,0],[23274,38799,23264,0],[23293,23282,23294,0],[23294,23299,23300,0],[23300,23301,23303,0],[23300,23303,23262,0],[23300,23262,23295,0],[23300,23295,23294,0],[23282,23299,23294,0],[23301,23299,23280,0],[23299,23301,23300,0],[23301,23302,23303,0],[23275,23303,23302,0],[23302,23301,23280,0],[23275,48896,23305,0],[23261,23305,23306,0],[23306,23651,23261,0],[23261,23651,23652,0],[23261,23652,23260,0],[23260,23652,23259,0],[23259,23652,23307,0],[23258,23307,23646,0],[23646,23648,23308,0],[23308,23648,23309,0],[23645,23309,23310,0],[23312,23310,23311,0],[23312,23311,23314,0],[23312,23314,23617,0],[23617,23314,21926,0],[21926,23314,23313,0],[21926,23313,21927,0],[21927,23313,32860,0],[32857,23313,23314,0],[32857,23314,23315,0],[23315,23314,23316,0],[23316,32862,32870,0],[32870,32862,32861,0],[32870,32861,23317,0],[23319,23306,48896,0],[21927,32860,21928,0],[21928,32860,23320,0],[23320,32860,32859,0],[23320,32859,23321,0],[23321,23322,23323,0],[23323,23322,22000,0],[23324,22000,23325,0],[23324,23325,22026,0],[22026,23325,23330,0],[23330,23325,23331,0],[23331,23325,23616,0],[23326,23616,23327,0],[23344,23333,23332,0],[32536,23414,32941,0],[32941,32535,22022,0],[22022,32535,22021,0],[22020,22021,32535,0],[23330,23328,32939,0],[23326,23332,23616,0],[23616,23332,23331,0],[23344,23332,32569,0],[32569,23332,23326,0],[23330,23331,23333,0],[23333,23331,23332,0],[23328,23333,23334,0],[23328,23334,23335,0],[23335,23334,23336,0],[23614,23336,23398,0],[23398,23336,23337,0],[23337,23336,23338,0],[32580,23340,23343,0],[32580,23343,23341,0],[23343,23342,23344,0],[23344,23342,23334,0],[23344,23334,23333,0],[23334,23342,23340,0],[23340,23342,23343,0],[30653,32580,23345,0],[23337,23612,23347,0],[23404,23347,23346,0],[23346,23347,23611,0],[23399,23611,23348,0],[23350,23349,30656,0],[23350,30656,23351,0],[23352,23435,23353,0],[23353,23435,23354,0],[23353,23354,23437,0],[23355,23437,23356,0],[23355,23356,23372,0],[23372,23356,32457,0],[23357,23359,23373,0],[23373,23359,23358,0],[23374,23359,32455,0],[23374,32455,23360,0],[32455,30773,23360,0],[23378,23360,23361,0],[481,32449,23365,0],[49581,32451,501,0],[32451,23366,483,0],[483,23366,32450,0],[32456,32458,23367,0],[23367,32458,32459,0],[32456,23367,23357,0],[23356,23452,32457,0],[23437,23355,23353,0],[23353,23355,23368,0],[23370,23369,23371,0],[23370,23371,32483,0],[49575,23372,32476,0],[32476,23372,23373,0],[32476,23373,32477,0],[32477,23373,23358,0],[23358,23359,23374,0],[23358,23374,32540,0],[32540,23384,23375,0],[23375,32480,23376,0],[32541,23377,32477,0],[23382,23378,23379,0],[23380,49581,23381,0],[23380,23389,23379,0],[23379,23389,49570,0],[23379,49570,23382,0],[23383,23382,23388,0],[23383,23388,23428,0],[23384,23383,23375,0],[23385,23374,23378,0],[23385,23378,23382,0],[23383,23384,23385,0],[23385,23384,23374,0],[32540,23374,23384,0],[23389,23380,23381,0],[23386,23427,23387,0],[23382,49570,23388,0],[23381,486,23389,0],[23389,486,23390,0],[23391,23433,23429,0],[23392,23429,23393,0],[23392,23393,32480,0],[23405,23425,23424,0],[23405,23424,23395,0],[23399,23400,23401,0],[23399,23401,23397,0],[23346,23615,23404,0],[23404,23614,23398,0],[23398,23337,23347,0],[23398,23347,23404,0],[23346,23611,23399,0],[23399,23397,23615,0],[23399,23615,23346,0],[23399,23348,23400,0],[23396,23395,23400,0],[23401,23400,23420,0],[23401,23420,23402,0],[23401,23402,32486,0],[32487,23402,32536,0],[32487,32536,23329,0],[23403,23329,23613,0],[23403,23613,23615,0],[23403,23615,32486,0],[32486,23615,23397,0],[23349,23405,23348,0],[23405,23349,23425,0],[23425,23349,32484,0],[23395,23396,23405,0],[32537,23406,23407,0],[23408,493,494,0],[23408,494,23409,0],[23410,23409,500,0],[23408,23409,23411,0],[23408,23411,23407,0],[23407,23411,32537,0],[32537,23411,23418,0],[23418,23412,23417,0],[23417,23412,23422,0],[23413,32535,23415,0],[23415,32535,23414,0],[23415,23414,32536,0],[23415,32536,23402,0],[23406,32537,23426,0],[23423,23416,23417,0],[23417,23416,23418,0],[23420,23415,23402,0],[23415,23420,23413,0],[23413,23420,23419,0],[23420,23421,23419,0],[23419,23421,23422,0],[23425,23416,23424,0],[23395,23424,23423,0],[23395,23423,23422,0],[23423,23424,23416,0],[23425,32484,23426,0],[23426,32484,23394,0],[49574,23416,23425,0],[49574,23425,23426,0],[23426,23394,23406,0],[23406,23394,23393,0],[23400,23421,23420,0],[23422,23421,23395,0],[23400,23395,23421,0],[23417,23422,23423,0],[23393,23429,23406,0],[23389,23390,23386,0],[23386,23390,23430,0],[23386,23430,23427,0],[23427,23429,23387,0],[23387,23429,23428,0],[23387,23428,23388,0],[23430,23431,23427,0],[23427,23431,23391,0],[23427,23391,23429,0],[23428,23429,23392,0],[23392,32480,23428,0],[23428,32480,23383,0],[486,487,23390,0],[23390,487,23430,0],[23431,488,23391,0],[23391,488,489,0],[23391,489,23432,0],[23391,23432,23433,0],[23433,23432,23434,0],[23407,23434,23408,0],[23408,23434,493,0],[491,493,23432,0],[489,491,23432,0],[23434,23407,23406,0],[23434,23406,23433,0],[23429,23433,23406,0],[487,23431,23430,0],[23378,23374,23360,0],[23357,23373,32456,0],[32456,23373,32457,0],[32457,23373,23372,0],[23355,23372,49575,0],[23348,23611,23610,0],[23348,23610,23349,0],[23351,30656,32490,0],[23351,32490,30648,0],[23352,30648,23435,0],[30657,23435,30658,0],[30658,23435,30648,0],[23351,30648,23352,0],[23435,30657,23354,0],[23354,30657,23575,0],[23354,23575,23436,0],[23354,23436,23437,0],[23437,23436,32470,0],[23437,32470,23451,0],[23451,32470,32468,0],[32466,32468,32467,0],[32465,32467,23439,0],[23439,32467,23438,0],[23441,23440,23442,0],[23443,23442,23581,0],[23443,23581,23444,0],[23445,23444,23446,0],[23446,23579,23450,0],[23448,23449,23582,0],[23449,23450,23578,0],[23578,23450,23579,0],[23581,23579,23446,0],[23581,23446,23444,0],[23450,23448,23447,0],[23447,23448,30634,0],[23448,23450,23449,0],[23437,23451,23356,0],[23356,23451,23452,0],[23452,23451,32466,0],[23453,32464,32463,0],[32463,23454,32473,0],[32473,23454,30767,0],[30767,23454,23455,0],[23455,23454,23456,0],[30764,23457,23559,0],[30764,23559,30763,0],[469,23458,23549,0],[469,23549,23565,0],[23460,30791,23461,0],[23461,30791,30823,0],[23461,30823,23462,0],[462,23462,23463,0],[462,23463,23464,0],[23465,23464,23487,0],[23465,23487,28785,0],[28785,23487,23466,0],[28785,23466,28784,0],[28784,23467,23468,0],[23468,23467,23469,0],[23486,23469,23520,0],[23486,23520,23470,0],[23470,23521,28790,0],[28790,23521,23471,0],[451,452,23515,0],[451,23515,23472,0],[23473,23472,23507,0],[23475,23473,23474,0],[23475,23481,23476,0],[23476,23481,23485,0],[23476,23485,23478,0],[23478,23485,446,0],[446,23484,445,0],[23477,23476,449,0],[448,449,23478,0],[448,23478,447,0],[447,23478,446,0],[23476,23478,449,0],[449,450,23477,0],[23477,450,23479,0],[23475,23476,23477,0],[23475,23477,23473,0],[23473,23477,23479,0],[23472,23479,450,0],[23472,450,451,0],[23472,23473,23479,0],[23473,23507,23474,0],[23474,23507,23506,0],[23474,23506,23480,0],[23480,30626,23482,0],[23482,30626,28805,0],[23480,23481,23474,0],[23475,23474,23481,0],[23483,23482,28805,0],[28805,443,23483,0],[23483,444,445,0],[23483,445,23484,0],[23482,23483,23484,0],[23484,23485,23481,0],[446,23485,23484,0],[23482,23481,23480,0],[23470,28790,28782,0],[23486,23470,28782,0],[23513,23545,23539,0],[23488,23490,23540,0],[23489,23490,23491,0],[23491,23490,23492,0],[23531,23492,23493,0],[23531,23493,23494,0],[23494,23573,23536,0],[23536,23573,23535,0],[23535,23573,23495,0],[23535,23495,23497,0],[23497,23450,23447,0],[23447,30634,23496,0],[23447,23496,23497,0],[23497,23496,23498,0],[23502,23500,23501,0],[23502,23501,30624,0],[23502,30624,23503,0],[23525,23505,23506,0],[23525,23506,23507,0],[23525,23507,23508,0],[23508,23507,23472,0],[23508,23472,23515,0],[23508,23509,23526,0],[23509,23518,23541,0],[23541,23518,23510,0],[23512,23511,23538,0],[23538,23511,23517,0],[23538,23517,23522,0],[23538,23522,23467,0],[23538,23467,23513,0],[23513,23467,28784,0],[23513,28784,23466,0],[23511,23510,23517,0],[23514,23515,23519,0],[23518,23517,23510,0],[23517,23518,23522,0],[23522,23518,23516,0],[23522,23516,23523,0],[23523,23516,23519,0],[23520,23519,23521,0],[23521,23519,23515,0],[23471,23521,452,0],[23521,23515,452,0],[23519,23520,23523,0],[23522,23523,23467,0],[23467,23523,23469,0],[23519,23516,23514,0],[23515,23514,23508,0],[23508,23514,23509,0],[23505,23525,23504,0],[23504,23525,23542,0],[23504,23542,23524,0],[23504,23524,23503,0],[23526,23525,23508,0],[23526,23542,23525,0],[23500,23502,23527,0],[23530,23527,23529,0],[23530,23529,23528,0],[23524,23529,23503,0],[23503,23529,23527,0],[23527,23502,23503,0],[23529,23543,23528,0],[23528,23543,23489,0],[23450,23497,23446,0],[23497,23495,23446,0],[23534,23530,23531,0],[23531,23530,23491,0],[23531,23491,23492,0],[23489,23491,23528,0],[23528,23491,23530,0],[23533,23499,23532,0],[23532,23499,23500,0],[23532,23500,23527,0],[23532,23527,23530,0],[23530,23534,23532,0],[23532,23534,23533,0],[23499,23533,23498,0],[23498,23533,23535,0],[23536,23533,23494,0],[23494,23533,23534,0],[23533,23536,23535,0],[23488,23540,23537,0],[23538,23539,23537,0],[23538,23513,23539,0],[23538,23537,23512,0],[23512,23537,23540,0],[23512,23540,23511,0],[23511,23540,23489,0],[23490,23489,23540,0],[23489,23543,23511,0],[23511,23543,23510,0],[23510,23543,23541,0],[23541,23542,23526,0],[23526,23509,23541,0],[23524,23542,23529,0],[23529,23542,23543,0],[23541,23543,23542,0],[23513,23466,30824,0],[23513,30824,23544,0],[23545,23544,30825,0],[23545,30825,23546,0],[23546,23562,23547,0],[23493,30794,23548,0],[23493,23548,23494,0],[23494,23548,23573,0],[23493,23492,23490,0],[23493,23490,30793,0],[30793,23490,23547,0],[23547,23490,23488,0],[23547,23488,23546,0],[23546,23488,23545,0],[23488,23537,23545,0],[23544,23545,23513,0],[23539,23545,23537,0],[23462,30823,23463,0],[23463,30823,23487,0],[23549,23458,23559,0],[23559,23457,23550,0],[23551,23550,23554,0],[23551,23552,23567,0],[23567,23552,23443,0],[23567,23443,30787,0],[30787,23443,23444,0],[23442,23443,23552,0],[23442,23552,23553,0],[23553,23552,23554,0],[23555,23554,23556,0],[23555,23556,23558,0],[32463,23558,23454,0],[23554,23550,23556,0],[23556,23550,23557,0],[23556,23557,23558,0],[23558,23557,23456,0],[23558,23456,23454,0],[23456,23557,30764,0],[30764,23557,23457,0],[30763,23559,23458,0],[23457,23557,23550,0],[23554,23555,23553,0],[23553,23555,23441,0],[23553,23441,23442,0],[23549,23559,23560,0],[23566,23560,23570,0],[23566,23570,23561,0],[23562,30788,23561,0],[23561,30788,23563,0],[23561,23563,23564,0],[23564,23563,30792,0],[23564,30792,23459,0],[23459,23565,23564,0],[23564,23565,23549,0],[23549,23566,23564,0],[23564,23566,23561,0],[23561,23572,23562,0],[23549,23560,23566,0],[23560,23559,23574,0],[23574,23559,23550,0],[23574,23550,23551,0],[23567,23568,23569,0],[23561,23569,23572,0],[23561,23570,23569,0],[23569,23570,23567,0],[23567,23570,23560,0],[23567,30787,23568,0],[23568,23571,23569,0],[23569,23571,23572,0],[23572,23571,23548,0],[23573,30786,23495,0],[23548,23571,23573,0],[23560,23574,23567,0],[23567,23574,23551,0],[23452,32466,32456,0],[32469,23577,23576,0],[23576,23577,23580,0],[23580,23577,23578,0],[23578,23579,23580,0],[23580,23579,23581,0],[23580,23581,23576,0],[23442,23440,23581,0],[23581,23440,23576,0],[23440,23439,23576,0],[23577,32489,23578,0],[23578,23602,23449,0],[23449,23602,23582,0],[23582,23602,23604,0],[23582,23604,23608,0],[23595,23609,30640,0],[23595,30640,23601,0],[23601,30640,30641,0],[23601,30641,23583,0],[23584,23583,30642,0],[23584,30642,48913,0],[23586,23584,23585,0],[23586,23585,48915,0],[23586,48915,23591,0],[23586,23591,23592,0],[23592,23591,23600,0],[23600,23591,23587,0],[23600,23587,23588,0],[30635,23588,30636,0],[23589,23587,48964,0],[28797,23589,48963,0],[28797,48963,23590,0],[48965,23587,23591,0],[23601,23592,23593,0],[23601,23593,23595,0],[23594,23595,23597,0],[23594,23597,23596,0],[23582,23596,23448,0],[23596,23582,23594,0],[23582,23608,23594,0],[23594,23608,23609,0],[23594,23609,23595,0],[23448,23596,23598,0],[23598,23596,23597,0],[23597,23593,23599,0],[23595,23593,23597,0],[23598,23597,30635,0],[30635,23597,23588,0],[23593,23592,23599,0],[23599,23592,23600,0],[23599,23600,23588,0],[23597,23599,23588,0],[23586,23592,23584,0],[23592,23601,23584,0],[23584,23601,23583,0],[23577,32469,32489,0],[23578,32489,23602,0],[23602,23603,23604,0],[23608,23604,23607,0],[30660,23607,30659,0],[30659,23607,23605,0],[32488,23606,23603,0],[23604,23603,23606,0],[23604,23606,23605,0],[23604,23605,23607,0],[23349,23610,30656,0],[30654,23611,23347,0],[30654,23347,23612,0],[32580,23339,23340,0],[32580,30653,23339,0],[23338,23339,30653,0],[23339,23338,23340,0],[23334,23340,23336,0],[23338,23336,23340,0],[23335,23613,23328,0],[23328,23613,23329,0],[23613,23614,23615,0],[23615,23614,23404,0],[23614,23613,23336,0],[23336,23613,23335,0],[23616,23325,22000,0],[23616,22000,23322,0],[23616,23322,23327,0],[23327,23322,32859,0],[32859,23322,23321,0],[23323,21930,23321,0],[23311,32862,23316,0],[23645,23620,23644,0],[23644,23620,23618,0],[23623,23619,23632,0],[48931,23619,23618,0],[23620,48931,23618,0],[23619,23623,23618,0],[23618,23623,23643,0],[23621,23659,23256,0],[23256,23659,22141,0],[23659,23621,23622,0],[23622,23623,23624,0],[23627,23625,23626,0],[23627,23626,23628,0],[22116,23629,32895,0],[23629,23628,32895,0],[32895,23628,23630,0],[21917,23626,23625,0],[23631,23625,23635,0],[23635,23632,23639,0],[23636,23639,23633,0],[23636,48932,21920,0],[23633,23634,23636,0],[23631,23635,23638,0],[23638,23635,23636,0],[23638,23636,21920,0],[23631,23638,23637,0],[23631,23637,23625,0],[23637,23638,21919,0],[21919,23638,21920,0],[23639,23636,23635,0],[23625,22121,23635,0],[23632,23635,23624,0],[23628,23626,23630,0],[23627,23640,22119,0],[22120,23641,22140,0],[22140,23641,22119,0],[23641,23627,22119,0],[23629,23640,23628,0],[23628,23640,23627,0],[23641,22121,23627,0],[23624,23623,23632,0],[23623,23622,23643,0],[23642,23643,23622,0],[23642,23622,23621,0],[23624,22120,23622,0],[23621,23258,23642,0],[23642,23258,23646,0],[23642,23646,23643,0],[23643,23646,23308,0],[23643,23308,23644,0],[23644,23308,23309,0],[23644,23309,23645,0],[23310,23312,23645,0],[23644,23618,23643,0],[23312,23647,23645,0],[23645,23647,23620,0],[23312,23617,23647,0],[23309,23648,23649,0],[23649,23648,23650,0],[23649,23650,48897,0],[48897,23650,48898,0],[48898,23650,23653,0],[48898,23653,23651,0],[23651,23653,23652,0],[23654,23653,23650,0],[23654,23307,23653,0],[23652,23653,23307,0],[23654,23648,23646,0],[23654,23650,23648,0],[23269,23655,23270,0],[23270,23656,32723,0],[32723,23656,23657,0],[23657,23656,23260,0],[23657,23260,23658,0],[23658,23259,48905,0],[23655,23656,23270,0],[22140,22141,23659,0],[22140,23659,22120,0],[22120,23659,23622,0],[22119,22118,22139,0],[22126,23661,23660,0],[22126,23660,33154,0],[33154,23660,22132,0],[22132,23660,33155,0],[33158,23660,23661,0],[33158,23661,33160,0],[33160,23661,22129,0],[33047,22123,23662,0],[22107,23662,22122,0],[22107,22122,22108,0],[22108,22122,22109,0],[23663,22110,22123,0],[32890,23664,22112,0],[23663,22123,23664,0],[23665,23666,22114,0],[22114,22113,23665,0],[23665,22113,22112,0],[23665,22112,23664,0],[22123,23667,23664,0],[22124,22106,22105,0],[22105,22106,22107,0],[22109,22104,22108,0],[22104,22196,22108,0],[22107,22108,22105,0],[21909,22100,21910,0],[21910,22100,23668,0],[23669,23668,23675,0],[23669,23675,22122,0],[22122,23675,23671,0],[23669,22110,23670,0],[23669,23670,21910,0],[21910,23670,33043,0],[23683,33043,21912,0],[22110,23669,22122,0],[22122,23671,22109,0],[22109,23671,22103,0],[22103,23671,23672,0],[23672,23671,23673,0],[23673,23671,23675,0],[23673,23675,23674,0],[23674,23675,23668,0],[23674,23668,22100,0],[39400,23676,21908,0],[21908,23676,23704,0],[21902,21906,23677,0],[21906,21907,23677,0],[23677,21907,23678,0],[23677,23678,23691,0],[23691,23689,23692,0],[23692,23689,23679,0],[23692,23679,23681,0],[23681,23680,23682,0],[23682,33042,21914,0],[33024,21914,33041,0],[23682,21914,33039,0],[23682,33039,33034,0],[23682,33034,23681,0],[23679,23680,23681,0],[21913,23680,23687,0],[23687,23685,21911,0],[21911,23685,23683,0],[23683,23685,21910,0],[21911,21913,23687,0],[21910,23685,21909,0],[21909,23685,23684,0],[21908,23684,39400,0],[23685,23686,23690,0],[23684,23690,39400,0],[23686,23687,23688,0],[23678,23688,23689,0],[23678,23689,23691,0],[23689,23688,23679,0],[23679,23688,23680,0],[23680,23688,23687,0],[23688,23678,23693,0],[23686,23693,23690,0],[23685,23687,23686,0],[23688,23693,23686,0],[23677,23691,39398,0],[21904,23691,23692,0],[21834,21904,21833,0],[23681,39347,23692,0],[23678,21907,23693,0],[23724,23695,23696,0],[23725,23696,23697,0],[23697,23696,23706,0],[23698,33139,33138,0],[23700,33138,33137,0],[23700,33137,23699,0],[23700,23699,23701,0],[23704,33046,22100,0],[23704,23676,23703,0],[23705,23702,23676,0],[23705,23676,23706,0],[23705,23701,23702,0],[23702,23701,23720,0],[23720,23701,23722,0],[23720,23722,33058,0],[23719,33058,23707,0],[22102,23708,23710,0],[22102,23710,23672,0],[23672,23710,23709,0],[23709,23710,23718,0],[23718,23710,23711,0],[23712,23711,23713,0],[23713,23711,23716,0],[23716,32937,22195,0],[23715,23714,23712,0],[23712,23714,23711,0],[23711,23714,23718,0],[23716,23711,33060,0],[33060,23711,33059,0],[23710,23717,23711,0],[33059,23711,23717,0],[23718,22103,23709,0],[23719,23721,33058,0],[33058,23721,23720,0],[23720,23721,23702,0],[23702,23721,23703,0],[23703,23721,22101,0],[23703,22101,33046,0],[22101,23721,23719,0],[22102,23719,23708,0],[23719,23707,23708,0],[33138,23700,23698,0],[23698,23700,23705,0],[23705,23706,23698,0],[23706,23696,23698,0],[33142,33143,21902,0],[21902,23723,21906,0],[23723,39397,23725,0],[23696,23725,23724,0],[23725,39397,23724,0],[23723,23725,21906,0],[21906,23725,21907,0],[21907,23725,23697,0],[33143,23694,21902,0],[21902,23694,23723,0],[23723,23694,23724,0],[21879,23726,21881,0],[21881,23726,21905,0],[21882,33309,21898,0],[21882,21898,21883,0],[21883,21898,21835,0],[21897,23727,21835,0],[21832,21831,33309,0],[33309,21831,33163,0],[23729,23728,21827,0],[23729,21827,23731,0],[23729,23731,23730,0],[23728,21835,33163,0],[21824,23733,23732,0],[23732,23733,23749,0],[23747,23748,21825,0],[21825,23748,21826,0],[21824,21822,23733,0],[23742,23734,21821,0],[23742,21821,21816,0],[21821,23734,21949,0],[21949,23734,23733,0],[21820,21821,23740,0],[21819,23735,23739,0],[23766,23739,21937,0],[23766,21937,23737,0],[23766,23737,23736,0],[23737,22083,23738,0],[23737,23738,23758,0],[23758,23738,22090,0],[22082,23738,22083,0],[21937,23739,32998,0],[23739,23735,32998,0],[23735,23740,21947,0],[21947,23740,21938,0],[21818,21819,23739,0],[21818,23739,23765,0],[23765,23739,23766,0],[21818,21811,21819,0],[21819,21811,23741,0],[21820,23741,21817,0],[21820,21817,21816,0],[23749,23752,23745,0],[23745,23752,23743,0],[23743,23752,23750,0],[23744,23743,21796,0],[23744,21796,33252,0],[23744,33277,23745,0],[23744,23745,23743,0],[23745,23746,23730,0],[23745,23730,23747,0],[23747,23730,23748,0],[23747,23732,23745,0],[23732,23749,23745,0],[23749,23733,23752,0],[23752,23733,23734,0],[23752,23734,23742,0],[21796,23743,21797,0],[23751,21797,23750,0],[23751,21815,21798,0],[21798,21815,21814,0],[23752,23742,23750,0],[23750,23742,21815,0],[21814,21815,21816,0],[21816,21815,23742,0],[23750,21815,23751,0],[23743,23750,21797,0],[23741,21811,21817,0],[21813,33022,21810,0],[21810,33022,21817,0],[21810,21817,21811,0],[23753,23754,23755,0],[23755,23754,23759,0],[23756,23755,23757,0],[23756,23757,32948,0],[23760,22090,32949,0],[22090,23760,23758,0],[23737,23758,23736,0],[23736,23758,23759,0],[23755,23759,23757,0],[23757,23759,23760,0],[23760,23759,23758,0],[23753,23755,32878,0],[23753,32878,23761,0],[21803,23761,23762,0],[21803,23762,21804,0],[23763,49797,23764,0],[23764,32957,21806,0],[23764,21806,21805,0],[21805,21804,23764,0],[23764,21804,23763,0],[23759,23754,23766,0],[23759,23766,23736,0],[23754,23765,23766,0],[21799,21807,23768,0],[21799,23768,23782,0],[23768,23769,23782,0],[23782,23769,23770,0],[21791,23771,23789,0],[23787,23768,23772,0],[23787,23772,25649,0],[23787,25649,33023,0],[23768,23787,23769,0],[23768,21807,21800,0],[23768,21800,23772,0],[23774,23775,25653,0],[25653,21806,23776,0],[21805,21806,23777,0],[23777,21806,23779,0],[23778,23777,23780,0],[23778,23780,21801,0],[23779,23774,23780,0],[23780,23777,23779,0],[21806,23775,23779,0],[23779,23775,23774,0],[23780,23774,23773,0],[23780,23773,25647,0],[23781,23772,21801,0],[21801,23772,21800,0],[23781,21801,23780,0],[21797,23771,21791,0],[23784,21791,21792,0],[23783,21797,21798,0],[23783,21798,23782,0],[23782,21798,21799,0],[23783,23782,23770,0],[23783,23770,23771,0],[21796,21797,23785,0],[21796,23785,21793,0],[21796,21793,33252,0],[21795,21793,21794,0],[23786,23784,21792,0],[23785,23784,21793,0],[21793,23784,23786,0],[23784,23785,21791,0],[23785,21797,21791,0],[23771,23770,23791,0],[23769,23787,21788,0],[21788,23787,33023,0],[21788,33023,21789,0],[21788,23788,23769,0],[21791,23789,23790,0],[21791,23790,21792,0],[23791,23770,23769,0],[23790,23789,23791,0],[23790,23791,23788,0],[23788,23791,23769,0],[25642,23792,25646,0],[25642,25646,23793,0],[23793,25651,23794,0],[23794,25651,23795,0],[23795,25651,25652,0],[23795,25652,23797,0],[23795,23797,23796,0],[23796,23797,23798,0],[32964,23798,23799,0],[32964,23799,23800,0],[32960,23801,23802,0],[32960,23802,32954,0],[23795,23796,23804,0],[25618,23806,25619,0],[25619,23806,23807,0],[23808,21771,21772,0],[21769,32983,23810,0],[25612,23810,23812,0],[25612,23812,23811,0],[33937,23813,23815,0],[33937,23815,24830,0],[33902,23815,33903,0],[33902,33903,24825,0],[24824,33906,23816,0],[23816,23817,33790,0],[23817,33913,23818,0],[33785,23818,23819,0],[33785,23819,33797,0],[23819,33913,23872,0],[23915,23821,23822,0],[23823,23822,23869,0],[23823,23869,23867,0],[23825,23823,23824,0],[23825,23824,23859,0],[23825,23859,23826,0],[25536,23826,23827,0],[23828,23827,23866,0],[23828,23866,28614,0],[23830,23832,23831,0],[23831,23832,33327,0],[33327,23832,33383,0],[33327,33383,23833,0],[33325,23834,23835,0],[33325,23835,23836,0],[32511,23884,23883,0],[32511,23883,23839,0],[23839,33368,23840,0],[23840,33368,23841,0],[23908,23843,32969,0],[23844,23845,32973,0],[23899,32973,23846,0],[23899,23846,23807,0],[23807,23846,21771,0],[21771,23846,23809,0],[23885,32969,23843,0],[23885,23843,49801,0],[49801,23843,23847,0],[23847,23909,23848,0],[23848,23909,23894,0],[23849,23895,23850,0],[23849,23850,23852,0],[23849,23852,23851,0],[23851,23852,23853,0],[23851,23853,23854,0],[23854,23835,23878,0],[23878,23835,33369,0],[23878,33369,23855,0],[23855,33369,33382,0],[23855,33382,23863,0],[23855,23863,23856,0],[23856,23857,23876,0],[23826,23859,23860,0],[23826,23860,23827,0],[23857,23861,23858,0],[23858,23861,23860,0],[23858,23860,23859,0],[23827,23860,23866,0],[28614,23866,23862,0],[28614,23862,23829,0],[23829,23862,23830,0],[33383,23862,23864,0],[33383,23864,23863,0],[23856,23863,23865,0],[23861,23865,23860,0],[23860,23865,23866,0],[23866,23865,23862,0],[23861,23857,23865,0],[23865,23857,23856,0],[23863,23864,23865,0],[23864,23862,23865,0],[23830,23862,23832,0],[23862,33383,23832,0],[23833,33383,23834,0],[23824,23867,23868,0],[23868,23867,33384,0],[33384,23867,23869,0],[23869,23873,33385,0],[33385,23874,23870,0],[23870,23874,23871,0],[23871,23874,23872,0],[23872,23873,23820,0],[23869,23822,23873,0],[23873,23822,23820,0],[23874,33385,23873,0],[23820,23822,23821,0],[23823,23867,23824,0],[23859,23824,23858,0],[23851,23854,23875,0],[23851,23875,33361,0],[33361,23875,23877,0],[33361,23877,33362,0],[33362,23877,23876,0],[23856,23876,23877,0],[23856,23877,23855,0],[23877,23875,23878,0],[23877,23878,23855,0],[23851,33361,23849,0],[23850,23880,23852,0],[23850,23905,23880,0],[23880,23905,23879,0],[23880,23879,23881,0],[23881,23882,23853,0],[23839,33367,33368,0],[33367,23839,23883,0],[33367,23883,23882,0],[23882,23838,23853,0],[23853,23838,23837,0],[23853,23837,23854,0],[23854,23837,23836,0],[23883,23884,23882,0],[23882,23884,23838,0],[23835,23854,23836,0],[23852,23880,23881,0],[23881,23853,23852,0],[23905,23841,23879,0],[23879,23841,33368,0],[23850,23895,23842,0],[23842,23895,23894,0],[23886,23895,23893,0],[23893,23895,23887,0],[23893,23887,23889,0],[23889,23887,23888,0],[23891,23889,23890,0],[23891,23892,23886,0],[23886,23893,23891,0],[23891,23893,23889,0],[23848,23886,23892,0],[49801,23848,23892,0],[49801,23847,23848,0],[23848,23894,23886,0],[23886,23894,23895,0],[23839,23840,23910,0],[23910,23840,23904,0],[23910,23904,23896,0],[23896,23906,23900,0],[23900,23906,23907,0],[23900,23907,23897,0],[23897,23907,23908,0],[32963,23897,23898,0],[23806,32968,23807,0],[23807,32968,23899,0],[32973,23899,23844,0],[23900,23897,23901,0],[23900,23901,33322,0],[33322,23901,23902,0],[23902,23901,32962,0],[23903,23896,33322,0],[23904,23840,23841,0],[23904,23841,23847,0],[23847,23841,23905,0],[23896,23904,23906,0],[23904,23847,23906,0],[23906,23847,23907,0],[23907,23847,23843,0],[23907,23843,23908,0],[23908,32969,23897,0],[23909,23847,23905,0],[23909,23905,23842,0],[23842,23905,23850,0],[23839,23910,32512,0],[32512,23910,32953,0],[23912,32953,23911,0],[23912,23911,23913,0],[23914,23913,22010,0],[23912,23913,23914,0],[23915,25535,23916,0],[23916,25535,23917,0],[23917,25535,23918,0],[33394,23920,23922,0],[23922,23920,23921,0],[23922,23921,49563,0],[49563,23921,23923,0],[49563,23923,23924,0],[49563,23924,23925,0],[23927,23925,23926,0],[23927,23926,23928,0],[23927,23928,25581,0],[25581,23928,25582,0],[25582,49560,23929,0],[25583,23930,33461,0],[25583,33461,23931,0],[23929,33466,33781,0],[33465,23946,33786,0],[33786,23946,33787,0],[33787,23932,33788,0],[23933,25533,23934,0],[23934,25533,23935,0],[23934,23935,23944,0],[23935,23951,23952,0],[23944,23952,23936,0],[23936,23953,23942,0],[23942,23953,49787,0],[49787,23953,23954,0],[49787,23954,23937,0],[23940,23937,24011,0],[23940,24011,23938,0],[23939,33829,33828,0],[23940,33828,23941,0],[23943,33795,23944,0],[23944,33795,23945,0],[23934,23945,23933,0],[25520,23939,23938,0],[23938,23939,23940,0],[49787,23941,23942,0],[23942,23943,23936,0],[23952,23944,23935,0],[23945,23934,23944,0],[23943,23944,23936,0],[25531,33481,23947,0],[23947,33470,23948,0],[25530,23949,25534,0],[23951,23950,33826,0],[23952,33826,23958,0],[23958,23957,25527,0],[25527,23957,23956,0],[25527,23956,23953,0],[23954,23953,23955,0],[23955,23953,23956,0],[23955,23956,23957,0],[23959,25529,33730,0],[33730,23960,25505,0],[25505,23960,23961,0],[25508,23962,33732,0],[25508,33732,23963,0],[25515,23964,33472,0],[25515,33472,23965,0],[25515,23965,33734,0],[33734,23965,23973,0],[23969,24009,23970,0],[23970,33759,24007,0],[24007,33760,33621,0],[24007,33621,33667,0],[33667,33666,23969,0],[23969,33666,24008,0],[23971,23972,23967,0],[23967,23972,23966,0],[23966,23972,23973,0],[23973,23972,24001,0],[23973,24001,25514,0],[25514,24001,25513,0],[25513,24001,23974,0],[23974,23975,34163,0],[34163,23975,34166,0],[34093,23998,23977,0],[23977,23998,23987,0],[23979,34162,34080,0],[34092,34080,23996,0],[34092,23996,34089,0],[34089,23996,23980,0],[33627,23981,23982,0],[33627,23982,33626,0],[23983,23982,23984,0],[23983,23984,24006,0],[24006,23984,23990,0],[23990,23986,24004,0],[23985,24003,23998,0],[23998,24003,34024,0],[24003,24004,23986,0],[34024,23986,23991,0],[34024,23991,23988,0],[23987,23988,23989,0],[23989,23988,23996,0],[23986,34024,24003,0],[23991,23986,23990,0],[23991,23992,23988,0],[23988,23992,23993,0],[23980,23993,23994,0],[23980,23994,34088,0],[34088,23994,23981,0],[23981,23994,23982,0],[23980,23996,23993,0],[23996,23988,23993,0],[23991,23990,23984,0],[23991,23984,23995,0],[23995,23984,23982,0],[23992,23995,23993,0],[23993,23995,23994,0],[23994,23995,23982,0],[23995,23992,23991,0],[34166,23975,23976,0],[23976,23975,23997,0],[24002,23985,23998,0],[23997,23998,34093,0],[34093,23976,23997,0],[23997,23999,24002,0],[23997,23975,23999,0],[33942,23975,24000,0],[24000,23974,33665,0],[33665,23974,24001,0],[33941,23972,23971,0],[23975,23974,24000,0],[24003,23985,33623,0],[24003,33623,24004,0],[24004,24005,23990,0],[23990,24005,24006,0],[23967,23968,23971,0],[24007,33667,23969,0],[23969,24008,24009,0],[24009,24008,33622,0],[24009,33622,23971,0],[23968,24009,23971,0],[24007,23969,23970,0],[23959,33807,25529,0],[25529,25528,33730,0],[23937,23954,24010,0],[23937,24010,24011,0],[23938,24011,24012,0],[24012,24023,24018,0],[24012,24018,24013,0],[25455,24019,24016,0],[25455,24016,24015,0],[24015,24016,24017,0],[24017,24020,25378,0],[25378,24021,24051,0],[24051,24021,24044,0],[24044,24021,24022,0],[24044,24022,25499,0],[25499,24022,24018,0],[24013,24018,24014,0],[24014,24021,24019,0],[24019,24021,24020,0],[24019,24020,24016,0],[24016,24020,24017,0],[24021,24014,24022,0],[24022,24014,24018,0],[24018,24023,25499,0],[25500,24024,24025,0],[24026,39609,39610,0],[24026,39610,24027,0],[24026,24027,24028,0],[24037,39611,24029,0],[24029,39611,24030,0],[24030,39611,24031,0],[33730,24032,23959,0],[33730,25505,24033,0],[24033,25506,24034,0],[24035,24034,24036,0],[24029,24036,25299,0],[24029,25299,24037,0],[24037,25301,24038,0],[24040,24039,24041,0],[24041,25490,24040,0],[25495,24043,25496,0],[25496,24043,24045,0],[24045,24051,24044,0],[24047,33833,24048,0],[24942,24049,24944,0],[24944,24049,25373,0],[24050,33832,24047,0],[24045,24043,24046,0],[24046,33832,24050,0],[24046,24050,24045,0],[24051,24045,24050,0],[24051,24050,25378,0],[25378,24050,24047,0],[25412,24048,24942,0],[25412,24942,33815,0],[33815,24942,24052,0],[39600,24054,39588,0],[39585,24055,24056,0],[24056,24055,24057,0],[33887,24058,24059,0],[24061,33889,24062,0],[24062,33889,33890,0],[24062,33890,24063,0],[24063,33893,25425,0],[25425,33893,24064,0],[25439,24064,39604,0],[25439,39604,24930,0],[24065,24940,24906,0],[24067,24066,24068,0],[24067,24068,24069,0],[24069,24068,24070,0],[24070,24902,39449,0],[24071,39475,39465,0],[39465,39475,24072,0],[24073,24537,24536,0],[24073,24536,39520,0],[39520,24540,39521,0],[39521,24540,24894,0],[24894,24540,24074,0],[24894,24074,24901,0],[24076,24523,24075,0],[24076,24075,24077,0],[24076,24077,39327,0],[39327,24077,24229,0],[39328,39327,24106,0],[39328,24106,24105,0],[24078,24105,24079,0],[39457,39426,39427,0],[24083,39430,24084,0],[24088,24087,39501,0],[24088,39501,24089,0],[24091,39431,24865,0],[25393,24865,24862,0],[25393,24862,24866,0],[25392,24092,24093,0],[24093,24092,24855,0],[24094,24855,24861,0],[24094,24861,24780,0],[24780,24861,24095,0],[24757,24095,24843,0],[24757,39413,24096,0],[24756,39411,24099,0],[24104,24105,24106,0],[24105,24104,24079,0],[24079,24104,24107,0],[24080,24107,24108,0],[24109,24108,24122,0],[24110,24109,24123,0],[24110,24123,24125,0],[24110,24125,24111,0],[24111,24125,24112,0],[24111,24112,24113,0],[24113,24112,39502,0],[39502,24114,24089,0],[39502,24089,39501,0],[24111,39419,24115,0],[24111,24115,24110,0],[24110,24116,24118,0],[24118,24116,39420,0],[24118,39420,39428,0],[24118,39425,24109,0],[24109,39425,24117,0],[24108,24117,24081,0],[24108,24081,24080,0],[24107,24080,24079,0],[39425,24118,39428,0],[24116,24110,24115,0],[39419,24111,24113,0],[24864,24119,24120,0],[24120,24119,24124,0],[24121,24124,24122,0],[24121,24122,24108,0],[24109,24122,24123,0],[24123,24122,24124,0],[24123,24124,24125,0],[24125,24119,24112,0],[24125,24124,24119,0],[24864,24112,24119,0],[24112,24864,39502,0],[24108,24107,24121,0],[39412,39414,24150,0],[39412,24150,24126,0],[24126,24128,24127,0],[24127,24100,24126,0],[24126,24100,39412,0],[24126,24148,24128,0],[24130,24129,33931,0],[33931,24131,24132,0],[24132,24131,33926,0],[33929,33926,39295,0],[33929,39295,24133,0],[33018,24134,24135,0],[33018,24135,24136,0],[24137,24136,24138,0],[24137,24138,24139,0],[24141,24140,24158,0],[24160,39325,24142,0],[24160,24142,24143,0],[24144,24143,24145,0],[24146,24145,24147,0],[24146,24147,24151,0],[24151,24147,39410,0],[24151,39410,24148,0],[24150,24148,24126,0],[24146,24151,24149,0],[24101,24152,24150,0],[24148,24150,24149,0],[24148,24149,24151,0],[24152,24149,24150,0],[24150,39414,24101,0],[24101,24102,24152,0],[24152,24102,24103,0],[24152,24103,24153,0],[24146,24149,24153,0],[24153,24149,24152,0],[24154,24153,24161,0],[24154,24161,24155,0],[24154,24155,24145,0],[24145,24155,24162,0],[24145,24162,24144,0],[24144,24162,24163,0],[24144,24163,24159,0],[24159,24163,24156,0],[24156,24164,24165,0],[24165,24157,24158,0],[24153,24154,24146,0],[24159,24160,24143,0],[24159,24143,24144,0],[24154,24145,24146,0],[24155,24223,24162,0],[24162,24224,24163,0],[24163,24202,24156,0],[24156,24202,24164,0],[24165,24164,24166,0],[24166,24713,24167,0],[39271,24169,24170,0],[39271,24170,24714,0],[39272,24714,39302,0],[39272,39302,24171,0],[24171,39300,24172,0],[24173,24172,24174,0],[24173,24174,39266,0],[39266,24174,24175,0],[24177,24176,24685,0],[24177,24685,24178,0],[24180,24178,24179,0],[24180,24179,39309,0],[24180,39309,24181,0],[24181,39195,39196,0],[24183,39193,24182,0],[24183,24182,24184,0],[24178,39316,24177,0],[39316,24178,24180,0],[39316,24180,24184,0],[24184,24180,24183,0],[24183,24180,24181,0],[39193,24181,39196,0],[39193,24183,24181,0],[24172,24185,24174,0],[24189,24718,24190,0],[24189,24190,24726,0],[24189,24726,24623,0],[24623,24726,24617,0],[24617,24726,24616,0],[24616,24726,24191,0],[24616,24191,24192,0],[24193,24192,24194,0],[24193,24194,24709,0],[24709,24194,24711,0],[24196,24195,24722,0],[24198,24197,24168,0],[24198,24168,24199,0],[24712,24200,24201,0],[24202,24201,24164,0],[24164,24201,24166,0],[24202,24203,24704,0],[24704,24203,24204,0],[24204,24551,24700,0],[24206,24555,24575,0],[24575,24555,24548,0],[24207,24575,24208,0],[24207,24208,24209,0],[24209,24208,49791,0],[24209,49791,24210,0],[24209,24210,24578,0],[24578,24210,24211,0],[24519,24593,24560,0],[24519,24560,24212,0],[39536,24212,24213,0],[24213,24557,24558,0],[24214,24558,24215,0],[24216,24217,24218,0],[24218,24217,24219,0],[24219,24549,48878,0],[24221,48878,24220,0],[24221,24220,24554,0],[24221,24554,48879,0],[48879,24554,24230,0],[24075,24230,48880,0],[24075,48880,24077,0],[24077,48880,24222,0],[24222,24228,24223,0],[24223,24228,24226,0],[24163,24224,24202,0],[24202,24224,24203,0],[24203,24224,24225,0],[24225,24224,24226,0],[24227,24226,24228,0],[24225,24226,24552,0],[24552,24226,24227,0],[48880,24228,24222,0],[24077,24222,24229,0],[24229,39524,24106,0],[48879,24230,24524,0],[24231,24526,24232,0],[39531,24232,24285,0],[39531,24285,24233,0],[24233,24285,24284,0],[24233,24284,39529,0],[24234,39528,39530,0],[39530,39528,24325,0],[39530,24325,24236,0],[24235,24236,24237,0],[24238,24240,24239,0],[24239,24240,24241,0],[24239,24241,24242,0],[24239,24242,24517,0],[24517,24242,24518,0],[24518,24243,48862,0],[24244,24243,24245,0],[24244,24245,24246,0],[24590,24247,24248,0],[24590,24248,24584,0],[24584,24248,24249,0],[24249,24248,24293,0],[24249,24293,24250,0],[24250,24251,24587,0],[24587,24251,24252,0],[24587,24252,24253,0],[24255,24254,39138,0],[24255,39138,24260,0],[24257,24606,24259,0],[24259,24606,24582,0],[24259,24582,24258,0],[24259,24258,24255,0],[24255,24260,24259,0],[24259,24260,24257,0],[24260,24256,24257,0],[21560,24253,21559,0],[21559,24253,24252,0],[24261,24251,24250,0],[24261,24250,24514,0],[24514,24250,24262,0],[24262,24250,24293,0],[24262,24293,24263,0],[24341,24263,24264,0],[24266,24300,39127,0],[39127,39130,24267,0],[39619,24286,24272,0],[39619,24272,24271,0],[24271,24272,24273,0],[24273,24272,24292,0],[24273,24292,33852,0],[33852,24292,24274,0],[33852,24274,24275,0],[24275,24291,24276,0],[39545,24276,39544,0],[39544,24276,24277,0],[39479,24277,24278,0],[24278,39497,24279,0],[24279,39497,39484,0],[24279,39484,24280,0],[24280,39486,24281,0],[24281,39486,39489,0],[24281,39489,24282,0],[39487,24283,24542,0],[24542,24283,24284,0],[24286,24270,39129,0],[24286,39129,24287,0],[24292,24288,24289,0],[24292,24289,24290,0],[24291,24290,39496,0],[24291,39496,24276,0],[24290,24291,24274,0],[24275,24274,24291,0],[24290,24274,24292,0],[24292,24272,24288,0],[24287,24288,24286,0],[24288,24272,24286,0],[24263,24293,24294,0],[24263,24294,24295,0],[24264,24295,24296,0],[24301,24296,24297,0],[24301,24297,24298,0],[24301,24298,24303,0],[24304,39128,24299,0],[24299,39128,24300,0],[24300,24265,24299,0],[24304,24299,24303,0],[24301,24303,24302,0],[24302,24303,24265,0],[24265,24300,24266,0],[24265,24303,24299,0],[24303,24298,24304,0],[24306,24305,24307,0],[24306,24307,24310,0],[24306,24310,48856,0],[48856,24310,24287,0],[24307,24319,24308,0],[24308,24319,24323,0],[24309,24290,24289,0],[24307,24308,24310,0],[24307,24305,24319,0],[24287,24310,24288,0],[24309,24308,24323,0],[24305,48855,24311,0],[24311,48855,24327,0],[24311,24327,24320,0],[24320,24326,24312,0],[24312,24326,24241,0],[24312,24241,24313,0],[24313,24241,24240,0],[24317,24325,24315,0],[39492,24315,39527,0],[39492,39527,39491,0],[39491,39527,24316,0],[39490,24316,39543,0],[39490,39543,39488,0],[39488,39543,39487,0],[24325,24317,24314,0],[24312,24313,24318,0],[24318,24313,24317,0],[24313,24240,24317,0],[24317,24240,24314,0],[24312,24318,24321,0],[24312,24319,24320,0],[24320,24319,24311,0],[24305,24311,24319,0],[24319,24321,24323,0],[24321,24318,24322,0],[24321,24322,24323,0],[24323,24324,24309,0],[24309,24324,24290,0],[24314,24237,24236,0],[24314,24236,24325,0],[24325,39527,24315,0],[24237,24314,24238,0],[24238,24314,24240,0],[24242,24241,24326,0],[24515,24326,24327,0],[24327,24326,24320,0],[48855,24304,24327,0],[24263,24295,24264,0],[24264,24302,24265,0],[24301,24302,24296,0],[24296,24302,24264,0],[24293,24248,24294,0],[24295,24294,39126,0],[39126,24294,24247,0],[24247,24294,24248,0],[24295,39126,24296,0],[24251,24261,21553,0],[21553,24261,24369,0],[24514,24262,24329,0],[24329,24262,24342,0],[24331,24332,24334,0],[24331,24334,24496,0],[24496,24334,24333,0],[24333,24334,24503,0],[24503,24334,24335,0],[24510,24335,24509,0],[24509,24335,24332,0],[24509,24332,39627,0],[24332,39628,24336,0],[24337,39224,24348,0],[24337,24348,24338,0],[24337,24338,24508,0],[24337,24508,24507,0],[24337,24507,24339,0],[24339,24507,24511,0],[24339,24511,24509,0],[39630,24512,24341,0],[24341,24512,24330,0],[24341,24330,24342,0],[24342,24262,24341,0],[24341,24262,24263,0],[24341,24264,39630,0],[24512,39630,39629,0],[24512,39629,24340,0],[24340,39629,39628,0],[24336,39628,39222,0],[24336,39222,39224,0],[39224,39222,24343,0],[24267,24344,39127,0],[24348,24345,24346,0],[25185,24347,24270,0],[24347,24346,24269,0],[24347,24269,24270,0],[24267,24345,24344,0],[24344,24345,24348,0],[24348,24349,24338,0],[24338,24349,39227,0],[24350,25186,24351,0],[24351,24352,24490,0],[24490,24352,24353,0],[24353,24355,24354,0],[24354,24355,48852,0],[48852,24355,24356,0],[24356,24357,39634,0],[39633,24358,24359,0],[24359,24474,24360,0],[24468,24476,24505,0],[24493,24361,24494,0],[24494,24401,24362,0],[24363,24362,24377,0],[24363,24377,24376,0],[24376,24377,24364,0],[24364,24377,24378,0],[24364,24378,39631,0],[24376,24364,24370,0],[24376,24368,24375,0],[24367,24328,24329,0],[24375,24368,24328,0],[24328,24368,24369,0],[24368,24370,24369,0],[24369,24371,21553,0],[21553,24371,21554,0],[21554,24371,24372,0],[21554,24372,24366,0],[24366,39125,21554,0],[24369,24373,24371,0],[24369,24370,24373,0],[24373,24370,24364,0],[24373,24372,24371,0],[24368,24376,24370,0],[24499,24363,24374,0],[24375,24374,24376,0],[24363,24376,24374,0],[39631,24378,24379,0],[24392,39643,39651,0],[24392,39651,24395,0],[24395,39651,24394,0],[24394,39652,24381,0],[24381,39649,24397,0],[24397,39649,39647,0],[24397,39647,39646,0],[24383,24384,48747,0],[24383,24385,24384,0],[24384,24385,24400,0],[24385,24383,24387,0],[24387,24383,21557,0],[24387,24386,24385,0],[24400,24385,24386,0],[48747,24384,21558,0],[21558,24384,24382,0],[21558,24382,39123,0],[21546,39123,21543,0],[39123,21546,21558,0],[24378,24388,24379,0],[24372,24365,24389,0],[24389,24365,24380,0],[24389,24380,39643,0],[24389,24390,24366,0],[24366,24390,21555,0],[21557,21555,24391,0],[21557,24391,24387,0],[24393,24392,24395,0],[39643,24392,24389,0],[24392,24393,24390,0],[24393,24391,24390,0],[24390,24391,21555,0],[24387,24395,24386,0],[24386,24395,24394,0],[24386,24394,24399,0],[24399,24394,24396,0],[24399,24396,24398,0],[24398,24396,24381,0],[24381,24397,24398,0],[24381,24396,24394,0],[24386,24399,24400,0],[24400,24399,39644,0],[39645,39644,39646,0],[39646,39644,24397,0],[24397,39644,24398,0],[39644,24399,24398,0],[24391,24393,24387,0],[24387,24393,24395,0],[24389,24366,24372,0],[24362,24401,24377,0],[24377,24401,24388,0],[24402,24401,24361,0],[24361,24401,24494,0],[24358,24357,24403,0],[24358,24403,24473,0],[24473,24403,24486,0],[24473,24486,24472,0],[24472,24486,24404,0],[25229,39623,24405,0],[24405,25234,24461,0],[24409,24407,24408,0],[24424,24423,25230,0],[24423,24422,24409,0],[24413,24410,24411,0],[24413,24411,24412,0],[45558,24413,24412,0],[45558,24412,24414,0],[45557,24414,24418,0],[24418,24416,24415,0],[24416,24418,24417,0],[24417,24418,24419,0],[24419,24418,24414,0],[24419,24414,24412,0],[24421,24425,24422,0],[24423,24424,24421,0],[24421,24424,24420,0],[24423,24421,24422,0],[24424,24417,24420,0],[24420,24417,24419,0],[24419,24412,24425,0],[24419,24425,24420,0],[24426,24409,24410,0],[24410,24409,24422,0],[24410,24422,24411,0],[24411,24422,24425,0],[24411,24425,24412,0],[24425,24421,24420,0],[24469,24427,24428,0],[24469,24428,24433,0],[24469,24433,24470,0],[45553,24434,24432,0],[24428,24432,24433,0],[24470,24433,24429,0],[24433,24432,24431,0],[24431,24432,25070,0],[24434,25070,24432,0],[24433,24431,24429,0],[24429,24431,24430,0],[24429,24430,24435,0],[24437,24448,24438,0],[24438,24439,24466,0],[24481,24458,24441,0],[24442,24443,24444,0],[24458,24440,24460,0],[24458,24460,24445,0],[24445,24460,24446,0],[24446,24449,24445,0],[24447,24449,24446,0],[24447,24446,24448,0],[24447,24448,24437,0],[24446,24460,24438,0],[24446,24438,24448,0],[24449,25068,24455,0],[24453,24454,39652,0],[39652,24454,24381,0],[24449,24455,24445,0],[24459,24456,24450,0],[24450,24456,39090,0],[39090,24456,24455,0],[24445,24456,24458,0],[24456,24445,24455,0],[24458,24457,24441,0],[24457,24458,24456,0],[24456,24459,24457,0],[24457,24459,24442,0],[24442,24459,24443,0],[24442,24441,24457,0],[24440,24439,24460,0],[24407,24426,24406,0],[24406,24426,24461,0],[24405,24461,24462,0],[24405,24462,25229,0],[24461,24426,24427,0],[24461,24427,24469,0],[24462,24469,24471,0],[24435,24463,24429,0],[24429,24463,24470,0],[24435,24437,24464,0],[24467,24437,24465,0],[24466,24467,24465,0],[24436,24437,24435,0],[24466,24465,24438,0],[24437,24438,24465,0],[24437,24467,24464,0],[24464,24467,24475,0],[24440,24476,24466,0],[24467,24466,24468,0],[24467,24468,24475,0],[24468,24466,24476,0],[24466,24439,24440,0],[24435,24464,24463,0],[24471,24469,24470,0],[24471,24470,24463,0],[24462,24461,24469,0],[25229,24462,24471,0],[25229,24471,24404,0],[24471,24463,24404,0],[24404,24463,24472,0],[24474,24484,24360,0],[24474,24359,24358,0],[24473,24474,24358,0],[24474,24473,24484,0],[24360,24484,24464,0],[24360,24464,24475,0],[24477,24482,24478,0],[24379,24388,24478,0],[24478,24402,24477,0],[24477,24402,24361,0],[24477,24361,24505,0],[24379,24478,24479,0],[24441,24479,24480,0],[24441,24480,24481,0],[24479,24441,24442,0],[24479,24442,24444,0],[24483,24440,24481,0],[24481,24440,24458,0],[24440,24477,24476,0],[24440,24483,24477,0],[24477,24483,24482,0],[24483,24480,24482,0],[24482,24480,24478,0],[24478,24480,24479,0],[24475,24468,24360,0],[24464,24484,24463,0],[24463,24484,24472,0],[24472,24484,24473,0],[25230,25241,24424,0],[24403,24357,24356,0],[24403,24356,24485,0],[24355,24353,24487,0],[24487,24353,39626,0],[24487,39626,25218,0],[24487,25218,24485,0],[24485,25218,24486,0],[24485,24486,24403,0],[24485,24356,24487,0],[24487,24356,24355,0],[24338,39227,24488,0],[24489,24351,24490,0],[24489,24490,24354,0],[24495,48850,24500,0],[24500,48850,24493,0],[24500,24493,24494,0],[24499,24362,24363,0],[24495,24500,24333,0],[24496,24497,24498,0],[24375,24498,24374,0],[24497,24496,24499,0],[24497,24499,24374,0],[24497,24374,24498,0],[24333,24499,24496,0],[24499,24333,24500,0],[24496,24501,24331,0],[24331,24501,24502,0],[24342,24367,24329,0],[24502,24501,24367,0],[24367,24501,24498,0],[24367,24498,24375,0],[24502,24367,24342,0],[24502,24342,24330,0],[24330,24513,24502,0],[24502,24513,24331,0],[24333,24503,24495,0],[24510,48851,24492,0],[24510,24492,24503,0],[24503,24492,48850,0],[24503,48850,24495,0],[24503,24335,24510,0],[24361,24493,48849,0],[24361,48849,24504,0],[24505,24361,24504,0],[24506,24491,48851,0],[24506,48851,24510,0],[24353,24354,24490,0],[24488,24351,24507,0],[24507,24508,24488,0],[24488,24508,24338,0],[24351,24489,24507,0],[24507,24489,24511,0],[24351,24488,24350,0],[24350,24488,39227,0],[24348,24343,24344,0],[24348,24346,24349,0],[24267,24268,24345,0],[39224,24343,24348,0],[24340,39628,24332,0],[24330,24512,24513,0],[24512,24340,24513,0],[24513,24340,24331,0],[24331,24340,24332,0],[24261,24514,24369,0],[24514,24328,24369,0],[24328,24514,24329,0],[24243,24516,24515,0],[24298,24515,24304,0],[24304,24515,24327,0],[24243,24515,24245,0],[24515,24298,24245,0],[24245,24298,24297,0],[24245,24297,24246,0],[24246,24297,24247,0],[24243,24518,24516,0],[24326,24516,24242,0],[24242,24516,24518,0],[24326,24515,24516,0],[24238,24239,24521,0],[24238,24521,24237,0],[24239,24517,24522,0],[24522,24517,24520,0],[24520,24517,24518,0],[24520,24518,24519,0],[24519,24518,48862,0],[24235,24237,24521,0],[24521,24522,39538,0],[39538,24522,39537,0],[39537,24522,24520,0],[39537,24520,24212,0],[24075,24523,24230,0],[24230,24523,24524,0],[24524,24523,24525,0],[24524,24525,24231,0],[24542,24529,24530,0],[24542,24530,24546,0],[24546,24530,24531,0],[24532,24531,24539,0],[24543,24907,24544,0],[24544,24907,24533,0],[24544,24533,24534,0],[24534,24280,24281,0],[24530,24535,24536,0],[24537,39473,24538,0],[24536,24537,24530,0],[24531,24530,24538,0],[24538,24539,24531,0],[24538,24530,24537,0],[24530,24529,24535,0],[24535,24529,24528,0],[24535,24528,24541,0],[24541,24074,24540,0],[39520,24536,24540,0],[24540,24536,24541,0],[24541,24536,24535,0],[24541,24528,24527,0],[24231,24525,24526,0],[24526,24527,24232,0],[24285,24527,24528,0],[24285,24528,24529,0],[24285,24529,24284,0],[24284,24529,24542,0],[24546,24531,24532,0],[24545,24543,24544,0],[24544,24534,24545,0],[24534,24281,24545,0],[24545,24281,24282,0],[24545,24282,24532,0],[24532,24282,24546,0],[39487,24542,24282,0],[24542,24546,24282,0],[24216,24215,24217,0],[24217,24559,24219,0],[24219,24559,24547,0],[24547,24559,24548,0],[24547,24548,24549,0],[48878,24549,24220,0],[24220,24206,24550,0],[24550,24206,24205,0],[24550,24205,24553,0],[24551,24204,24203,0],[24203,24225,24551,0],[24551,24225,24552,0],[24553,24552,24550,0],[24550,24554,24220,0],[24551,24552,24553,0],[24700,24551,24205,0],[24551,24553,24205,0],[24206,24220,24555,0],[24549,24219,24547,0],[24548,24555,24549,0],[24220,24549,24555,0],[24593,24211,24560,0],[24560,49791,24556,0],[24556,24557,24213,0],[24558,24559,24215,0],[24560,24556,24213,0],[24560,24213,24212,0],[24560,24211,24210,0],[24560,24210,49791,0],[24703,24571,24564,0],[24564,24571,24565,0],[24611,24564,24610,0],[24610,24564,24565,0],[24610,24565,24566,0],[24567,24576,24577,0],[24571,24570,24565,0],[24565,24570,24566,0],[24570,24569,24566,0],[24566,24569,24567,0],[24209,24568,24207,0],[24207,24568,24572,0],[24573,24571,24563,0],[24563,24571,24703,0],[24561,24573,24562,0],[24562,24573,24563,0],[24573,24561,24572,0],[24574,24561,24206,0],[24206,24575,24574,0],[24561,24574,24572,0],[24574,24575,24207,0],[24574,24207,24572,0],[24572,24570,24571,0],[24209,24576,24568,0],[24568,24576,24569,0],[24569,24576,24567,0],[24209,24578,24576,0],[24576,24578,24577,0],[24578,24579,24580,0],[24580,24581,24599,0],[24599,24581,24601,0],[24601,24581,24582,0],[24582,24591,24596,0],[24596,24591,24583,0],[24583,24591,24588,0],[24583,24588,24584,0],[24586,24587,24253,0],[24250,24587,24249,0],[24587,24586,24249,0],[24586,24585,24249,0],[24590,24584,24588,0],[24589,24588,24591,0],[24247,24590,24246,0],[39221,24581,24579,0],[24579,24581,24580,0],[24595,24579,24592,0],[24595,24592,48862,0],[24595,48862,24243,0],[24592,24593,48862,0],[48862,24593,24519,0],[24592,24579,24211,0],[24592,24211,24593,0],[24212,24520,24519,0],[24578,24211,24579,0],[24581,24591,24582,0],[24589,24590,24588,0],[24246,24590,24594,0],[24246,24594,24244,0],[24579,24595,39221,0],[24244,24594,24595,0],[24244,24595,24243,0],[24597,24584,24249,0],[24597,24249,24585,0],[24586,24253,21560,0],[24586,21560,24598,0],[24598,24258,24596,0],[24596,24258,24582,0],[24598,24596,24597,0],[24596,24583,24597,0],[24597,24585,24598,0],[24598,24585,24586,0],[24598,24255,24258,0],[21560,24254,24598,0],[24598,24254,24255,0],[24567,24577,24599,0],[24567,24599,24600,0],[24600,24599,24601,0],[24600,24601,24606,0],[24580,24599,24577,0],[24580,24577,24578,0],[24611,24607,24602,0],[24611,24602,24603,0],[24603,24602,24604,0],[39320,24604,24605,0],[24605,24608,24257,0],[24604,24602,24605,0],[24605,24602,24607,0],[24605,24607,24608,0],[24257,24608,24606,0],[24606,24608,24600,0],[24600,24608,24609,0],[24609,24608,24607,0],[24567,24600,24566,0],[24566,24600,24609,0],[24610,24607,24611,0],[24607,24610,24609,0],[24609,24610,24566,0],[24612,39318,24613,0],[24613,39318,24614,0],[24702,24614,48875,0],[24702,48875,24701,0],[24701,24615,24699,0],[24699,24615,24192,0],[24192,24615,24616,0],[24618,24695,24694,0],[24624,24625,24626,0],[24624,24626,48874,0],[24624,48874,24619,0],[24619,24620,24621,0],[24623,24622,24621,0],[24688,24189,24620,0],[24621,24620,24189,0],[24619,24621,24624,0],[24624,24621,24625,0],[24621,24622,24625,0],[24625,24622,24694,0],[24694,24622,48876,0],[24694,48876,24618,0],[24627,24697,24628,0],[24692,24628,24629,0],[24631,24630,24651,0],[24631,24651,24673,0],[24673,24651,24632,0],[24655,39307,24634,0],[24634,24675,24645,0],[24645,24675,24646,0],[24656,24635,21606,0],[24660,24637,39240,0],[24660,39240,21604,0],[24660,21604,24661,0],[24661,21604,24638,0],[24661,24638,24639,0],[21694,24639,24640,0],[21694,24640,21687,0],[21694,21687,21693,0],[24638,24641,24640,0],[24640,24639,24638,0],[24641,25787,24642,0],[24642,24643,39181,0],[24640,39181,21687,0],[39181,24640,24641,0],[39181,24641,24642,0],[24642,21603,24643,0],[24635,24634,24644,0],[21577,24644,24645,0],[24646,24676,21578,0],[21578,24676,24652,0],[24653,24652,24677,0],[24677,24647,24648,0],[24648,24647,24649,0],[24648,24649,24654,0],[39319,24649,48867,0],[48867,24649,48865,0],[48865,24649,24650,0],[24650,24647,24651,0],[24650,24649,24647,0],[24651,24647,24632,0],[21581,21580,39135,0],[39135,21580,24653,0],[24653,21580,24652,0],[24652,21580,21579,0],[24653,24648,39134,0],[39134,24648,24654,0],[24653,24677,24648,0],[24652,21579,21578,0],[24644,24634,24645,0],[24655,24634,24635,0],[24655,24635,24656,0],[39303,24656,21606,0],[39303,21606,24657,0],[24657,21606,24636,0],[24660,24661,24662,0],[24662,24661,39237,0],[39237,24663,24662,0],[24662,24663,25671,0],[25671,25669,24664,0],[24664,25672,39194,0],[39194,25672,39188,0],[39188,25672,24665,0],[39188,24665,24666,0],[39187,24666,24667,0],[24660,24662,49802,0],[24660,49802,24659,0],[24659,49802,24670,0],[24670,49802,24671,0],[39215,24671,24672,0],[39215,24672,39195,0],[24659,24670,24658,0],[24658,24670,39214,0],[24659,24658,24637,0],[24636,24637,24657,0],[24657,24637,24658,0],[24633,24673,24632,0],[24676,24646,24675,0],[24676,24675,24674,0],[24652,24676,24677,0],[24632,24674,24633,0],[24674,24675,24633,0],[24633,24675,39307,0],[39307,24675,24634,0],[24632,24647,24674,0],[24676,24674,24677,0],[24677,24674,24647,0],[24629,24678,48865,0],[24629,48865,24630,0],[24626,24627,24679,0],[24626,24679,48874,0],[24680,39306,24681,0],[24681,39306,39213,0],[39213,24682,48873,0],[24682,24684,24683,0],[24685,24686,24687,0],[24683,24687,24689,0],[24683,24689,24688,0],[24688,24689,24718,0],[24689,24690,24719,0],[24719,24690,24187,0],[24187,24690,24686,0],[24689,24719,24188,0],[24689,24687,24690,0],[24690,24687,24686,0],[24685,24687,24684,0],[24684,24687,24683,0],[24683,24688,24620,0],[24685,24176,24691,0],[24685,24691,24686,0],[24691,24176,24175,0],[24691,24175,24174,0],[24627,24628,24692,0],[24679,24693,48874,0],[24680,48874,24693,0],[24680,24693,39305,0],[39305,24693,24631,0],[24630,24631,24693,0],[24629,24693,24692,0],[24692,24693,24679,0],[24630,24693,24629,0],[24680,39305,39306,0],[24626,24625,24694,0],[24696,24695,24618,0],[24626,24694,24627,0],[24694,24695,24627,0],[24627,24695,24697,0],[24697,24698,48863,0],[48863,24698,24611,0],[24611,24698,24612,0],[24192,24193,24699,0],[24699,24193,24708,0],[24699,24708,24562,0],[24562,24708,24700,0],[24700,24205,24561,0],[24700,24561,24562,0],[24561,24205,24206,0],[24699,24562,24701,0],[24614,24702,24613,0],[24562,24563,24701,0],[24701,24563,24703,0],[24701,24703,24702,0],[24702,24703,24613,0],[24613,24564,24612,0],[24564,24611,24612,0],[24703,24564,24613,0],[24202,24704,24201,0],[24201,24704,24712,0],[24198,24706,24197,0],[24196,24197,24706,0],[24198,24705,24706,0],[24706,24705,24711,0],[24709,24711,24707,0],[24709,24707,24708,0],[24708,24193,24709,0],[24700,24708,24707,0],[24700,24707,24204,0],[24204,24707,24710,0],[24204,24710,24704,0],[24711,24705,24710,0],[24711,24710,24707,0],[24704,24710,24712,0],[24712,24710,24705,0],[24712,24198,24200,0],[24712,24705,24198,0],[24199,24713,24200,0],[24166,24201,24713,0],[24713,24201,24200,0],[24724,24721,24170,0],[24185,24720,24715,0],[39314,24715,24716,0],[39314,24716,24717,0],[24717,24716,24723,0],[24719,24723,24722,0],[24718,24188,24190,0],[24719,24717,24723,0],[24719,24722,24188,0],[24715,24720,24716,0],[24168,24197,24724,0],[24724,24197,24721,0],[24714,24170,24716,0],[24714,24716,24720,0],[24716,24170,24721,0],[24716,24721,24723,0],[24723,24721,24722,0],[24196,24722,24721,0],[24196,24721,24197,0],[24168,24724,24169,0],[24724,24170,24169,0],[24192,24191,24194,0],[24194,24191,24195,0],[24195,24191,24725,0],[24195,24725,24722,0],[24726,24725,24191,0],[24726,24190,24725,0],[24725,24190,24188,0],[24725,24188,24722,0],[24691,24174,24186,0],[24186,24174,24185,0],[24165,24166,24157,0],[39310,24157,39312,0],[39310,39312,24736,0],[24738,24727,24732,0],[24728,24732,39262,0],[24728,39262,24731,0],[24731,39262,24729,0],[24731,24733,24728,0],[24740,24731,24729,0],[24732,24728,24733,0],[24734,24733,24139,0],[24139,24733,24731,0],[24141,24739,24735,0],[24735,24739,24737,0],[24737,24739,39310,0],[24737,39310,24736,0],[24737,24738,24735,0],[24158,24739,24141,0],[24157,39310,24739,0],[24157,24739,24158,0],[24139,24731,24730,0],[24730,24731,24740,0],[24161,24153,24103,0],[24136,24135,24751,0],[24136,24751,24138,0],[24138,24751,24752,0],[24741,24748,24140,0],[39324,24748,24749,0],[39324,24749,24742,0],[39498,24750,24743,0],[24744,24743,24745,0],[39296,24745,24751,0],[39296,24751,24135,0],[24745,24743,24746,0],[24747,24746,24749,0],[24747,24749,24748,0],[24742,24749,24750,0],[24742,24750,39498,0],[24747,24748,24741,0],[24747,24741,24752,0],[24752,24751,24747,0],[24745,24746,24751,0],[24751,24746,24747,0],[24746,24743,24750,0],[24750,24749,24746,0],[24138,24752,24139,0],[24752,24741,24141,0],[24141,24741,24140,0],[24141,24734,24752,0],[24752,24734,24139,0],[24127,24128,24099,0],[24099,24753,24754,0],[24098,24755,24097,0],[24098,39411,24755,0],[24755,39411,24756,0],[24754,24756,24099,0],[39411,24098,39412,0],[24099,39411,24127,0],[24095,24757,24841,0],[24095,24841,24762,0],[24095,24762,24780,0],[24780,24762,24779,0],[24779,39499,24758,0],[24758,39499,24759,0],[24778,24759,24760,0],[24778,24760,24781,0],[39499,24779,24762,0],[39499,24762,24761,0],[24761,24763,24783,0],[24783,24764,24787,0],[24787,24765,24766,0],[24767,24766,48882,0],[24790,24772,24773,0],[24784,24777,24776,0],[24781,25476,24778,0],[24759,24778,25390,0],[24759,25390,24758,0],[24758,25390,25391,0],[24758,25391,24779,0],[24094,24780,25391,0],[24094,25391,24093,0],[24092,25392,25393,0],[24092,25393,24866,0],[24093,24855,24094,0],[24779,25391,24780,0],[25476,24781,24776,0],[25476,24776,24777,0],[24781,24782,24784,0],[24781,24784,24776,0],[24775,24784,24785,0],[24786,24789,24787,0],[24767,24787,24766,0],[24772,24788,24771,0],[24771,24788,24769,0],[24769,24788,24767,0],[24769,24767,48882,0],[24767,24788,24787,0],[24787,24788,24786,0],[24787,24789,24783,0],[24789,24786,24775,0],[24775,24785,24789,0],[24775,24786,24774,0],[24774,24786,24790,0],[24790,24786,24772,0],[24772,24786,24788,0],[24790,24773,24774,0],[24784,24782,24785,0],[24789,24785,24783,0],[25484,24836,24791,0],[25488,24794,24795,0],[24803,24810,24796,0],[24796,24798,24797,0],[24797,24798,24828,0],[24828,24798,24799,0],[24799,24798,24809,0],[24799,24800,24801,0],[24837,24801,24802,0],[24801,24800,24802,0],[24795,24803,25488,0],[25488,24803,33820,0],[24804,33820,24796,0],[24796,33820,24803,0],[25479,24806,24792,0],[24793,24806,24794,0],[24806,24793,24792,0],[24794,24835,24795,0],[24777,24784,25484,0],[25484,24784,24775,0],[25484,24775,24836,0],[24836,24775,24774,0],[24791,24836,24805,0],[24806,24805,24835,0],[24806,24835,24794,0],[24795,24807,24811,0],[24811,24834,24808,0],[24809,24808,24800,0],[24800,24808,24802,0],[24808,24809,24810,0],[24796,24810,24798,0],[24810,24809,24798,0],[24808,24810,24811,0],[24811,24810,24803,0],[24811,24803,24795,0],[24805,24806,25479,0],[24805,25479,24791,0],[24771,24769,24770,0],[24768,24769,48882,0],[24787,24764,24765,0],[24813,24814,24815,0],[24813,24815,24838,0],[24838,24815,24816,0],[24817,33919,33924,0],[24817,33933,24818,0],[24833,24818,24832,0],[24801,24819,24799,0],[24799,24819,24829,0],[24820,24828,33793,0],[33793,24826,24821,0],[24821,24827,24822,0],[24822,24827,24823,0],[24823,24827,24824,0],[24823,24824,33790,0],[33790,24824,23816,0],[24825,24824,24827,0],[24825,24827,33902,0],[23815,33902,24826,0],[24821,24826,24827,0],[24826,24828,23814,0],[23814,24828,24799,0],[23814,24799,24829,0],[24826,33793,24828,0],[24825,33906,24824,0],[24819,24801,24837,0],[24839,24831,48883,0],[24839,48883,24813,0],[24832,24819,24831,0],[24832,24831,24833,0],[24833,24817,24818,0],[24833,24831,24839,0],[33915,24834,24811,0],[33915,24811,24807,0],[24774,24835,24805,0],[24774,24805,24836,0],[24835,24807,24795,0],[24807,24835,24772,0],[33914,24802,24808,0],[33914,24808,24834,0],[24819,24837,24831,0],[24831,24837,33916,0],[24831,33916,48883,0],[24837,24802,33916,0],[24816,33919,24838,0],[24817,24833,33919,0],[33919,24833,24838,0],[24838,24833,24839,0],[24839,24813,24838,0],[24813,24812,24814,0],[33918,24814,24840,0],[24841,24757,24840,0],[24763,24842,24764,0],[24812,24842,24814,0],[24814,24842,24840,0],[24840,24842,24841,0],[24841,24842,24763,0],[24762,24763,24761,0],[24841,24763,24762,0],[24812,24765,24842,0],[39413,24844,24845,0],[24845,24844,39416,0],[39416,24844,24859,0],[24847,24851,24120,0],[24847,24120,24124,0],[24847,24848,24849,0],[24850,24103,24102,0],[24849,24850,24846,0],[24849,24846,24847,0],[24847,24846,24851,0],[39513,24851,24852,0],[24852,24856,24853,0],[24852,24853,24866,0],[24092,24866,24855,0],[24855,24866,24853,0],[24855,24853,24858,0],[24855,24858,24861,0],[24095,24861,24843,0],[24843,24861,24854,0],[24844,24854,24859,0],[24854,24844,24843,0],[24851,24846,24856,0],[24857,24860,24858,0],[24856,24857,24858,0],[24858,24853,24856,0],[24856,24852,24851,0],[24857,24859,24860,0],[24860,24859,24854,0],[24854,24861,24860,0],[24860,24861,24858,0],[24857,24856,24846,0],[24843,24844,24757,0],[24757,24844,39413,0],[24862,24865,24863,0],[39513,24863,24864,0],[24864,24863,24114,0],[24865,39431,24863,0],[24114,39431,24089,0],[24862,24863,24866,0],[24085,24086,24867,0],[39421,24085,24867,0],[24086,24087,24867,0],[24884,24867,24868,0],[24870,24871,24890,0],[24890,24871,24872,0],[24872,24873,24874,0],[24874,24873,25417,0],[24874,25417,39507,0],[39507,25417,24875,0],[39512,24876,24878,0],[24878,24876,24877,0],[24878,24877,24879,0],[24879,39433,24881,0],[24880,24881,24083,0],[24083,24881,24882,0],[24083,24882,39430,0],[24883,24882,24881,0],[24883,24881,39433,0],[39430,24882,24082,0],[24884,24868,24869,0],[24884,24869,24889,0],[24884,24889,24891,0],[24880,24891,24885,0],[24880,24885,24886,0],[24886,24885,24887,0],[24886,24887,39506,0],[39506,24887,24888,0],[39506,24888,24872,0],[39506,24872,24874,0],[24888,24887,24889,0],[24889,24869,24870,0],[24889,24870,24890,0],[24889,24890,24888,0],[24888,24890,24872,0],[24889,24887,24891,0],[24880,24886,24881,0],[24881,24886,24879,0],[24880,24083,24084,0],[24880,24084,24891,0],[24891,24084,39421,0],[24891,39421,24884,0],[24867,24087,39500,0],[24867,39500,24868,0],[24868,39500,24892,0],[24090,24892,24089,0],[24087,24088,39500,0],[24076,39327,24893,0],[24893,24894,24901,0],[24895,39515,39514,0],[24895,39514,24896,0],[24900,24899,24897,0],[24897,24899,24080,0],[24897,24080,24898,0],[24898,24081,39426,0],[24080,24899,24079,0],[24079,24899,24078,0],[24899,24900,24078,0],[24896,39514,24900,0],[24894,24895,39521,0],[24076,24893,24901,0],[24901,24523,24076,0],[24070,24068,24902,0],[24902,24068,24904,0],[24902,24904,39476,0],[39476,24904,24903,0],[24068,24066,24906,0],[24940,24941,24905,0],[24940,24905,24906,0],[24941,24909,24932,0],[24941,24932,24908,0],[24941,24908,39477,0],[39477,24908,24907,0],[24533,24933,24936,0],[24533,24936,24534,0],[24907,24908,24931,0],[24933,24533,24931,0],[24933,24931,24937,0],[24909,24937,24932,0],[24911,24912,24913,0],[24913,33884,24924,0],[33884,33883,24924,0],[24924,33883,24914,0],[24916,24917,24918,0],[24918,24917,33863,0],[24926,24929,33860,0],[24920,33860,39544,0],[24927,24921,39615,0],[24927,39615,24922,0],[24927,24922,24923,0],[24923,24924,24918,0],[24918,24924,24914,0],[24916,24918,24915,0],[24915,24918,24914,0],[24927,24923,24925,0],[24925,24923,24918,0],[24925,24919,24926,0],[24926,33860,24920,0],[24926,24920,24928,0],[24925,24928,24927,0],[24927,24928,24921,0],[24921,24928,24920,0],[24926,24928,24925,0],[24918,24919,24925,0],[24918,33863,24919,0],[24926,24919,24929,0],[24912,24065,24930,0],[24065,24912,24940,0],[24909,24940,24910,0],[24910,24940,24911,0],[24911,24940,24912,0],[24937,24931,24932,0],[24908,24932,24931,0],[24933,24938,24934,0],[24933,24934,24935,0],[24279,24935,39480,0],[24279,39480,24278,0],[24280,24534,24936,0],[24279,24936,24935,0],[24279,24280,24936,0],[24935,24936,24933,0],[24933,24937,24938,0],[24934,24938,24939,0],[24922,24913,24923,0],[24941,24940,24909,0],[24068,24906,24904,0],[24906,24905,24904,0],[24904,24941,24903,0],[24903,24941,39477,0],[24052,24942,24943,0],[33808,24943,24944,0],[33808,24944,25368,0],[25368,25367,33808,0],[33808,25367,24945,0],[24945,25367,25366,0],[25366,25350,24946,0],[25366,24946,24947,0],[24947,24946,24948,0],[24947,25358,25376,0],[25376,25358,25361,0],[25375,25360,39563,0],[39563,25360,24949,0],[39559,24949,24951,0],[24950,24951,25338,0],[24950,25338,24952,0],[24952,25338,24953,0],[24953,25322,24954,0],[24955,24962,33870,0],[33870,24962,24956,0],[33870,24956,24957,0],[24983,24982,24960,0],[24960,24961,24978,0],[24975,24956,24962,0],[24962,24955,24963,0],[24963,24955,25334,0],[25334,24955,24954,0],[24962,24963,24975,0],[24975,24963,24964,0],[24965,24966,24967,0],[39621,34214,24968,0],[25190,25181,25182,0],[25182,25183,24980,0],[24980,25183,24969,0],[24971,25184,24972,0],[24982,33879,24959,0],[24964,24974,24984,0],[24975,24984,24979,0],[24979,24984,24976,0],[24979,24976,25190,0],[25190,24976,24977,0],[24978,24961,24981,0],[24956,24975,24979,0],[24979,24981,24956,0],[24956,24981,24961,0],[25190,25182,24979,0],[24979,25182,24980,0],[24980,24981,24979,0],[24981,24980,24978,0],[24978,24980,24960,0],[24983,24960,24970,0],[24983,24970,24971,0],[24970,24960,24969,0],[24969,24960,24980,0],[24982,24983,24973,0],[24973,33879,24982,0],[24973,24983,24972,0],[24972,24983,24971,0],[24967,24974,24965,0],[24965,24974,24964,0],[24965,25330,24985,0],[24998,24985,25308,0],[24997,25308,24986,0],[25286,24986,24987,0],[24989,24990,25290,0],[25290,24990,24991,0],[25290,24991,25320,0],[24992,24994,25289,0],[24994,24993,25003,0],[24994,25003,25002,0],[24994,25002,25288,0],[25288,25002,24995,0],[25287,24995,25284,0],[24996,25285,24997,0],[24997,25285,24999,0],[24997,24999,25308,0],[25308,24999,24998,0],[24985,24966,24965,0],[24966,24985,24998,0],[34213,24999,34212,0],[34206,25285,25283,0],[34207,25283,25001,0],[25006,25007,25263,0],[25263,25007,25008,0],[25008,25009,25262,0],[25262,25009,25010,0],[25262,25010,25011,0],[25011,25010,25012,0],[25011,25012,25013,0],[25013,25012,25014,0],[25014,34191,34276,0],[34276,34183,25172,0],[25172,25015,25017,0],[25017,25015,25016,0],[34269,25019,25018,0],[25023,25022,34228,0],[25023,34228,25034,0],[25034,34228,25024,0],[25034,25024,25029,0],[25029,25024,25025,0],[25025,25026,25028,0],[25028,25026,25027,0],[25027,25026,10355,0],[25027,10355,10356,0],[10354,10355,25025,0],[25025,10355,25026,0],[25025,25024,10354,0],[10354,9528,9527,0],[25027,10351,8147,0],[25027,8147,8148,0],[25027,8148,25028,0],[25028,8343,25025,0],[25025,8343,25029,0],[25029,8343,25036,0],[25029,25036,25259,0],[25031,25248,25032,0],[25032,25248,25033,0],[47680,25023,25034,0],[25259,25036,25035,0],[25037,25036,45559,0],[25037,45559,25258,0],[25258,8149,25038,0],[25038,8149,8156,0],[25139,25038,25039,0],[25139,25039,25243,0],[25243,25039,25119,0],[25243,25119,25137,0],[25129,25040,25109,0],[25041,25043,25042,0],[40061,25128,25044,0],[25044,25111,40065,0],[40065,25111,25045,0],[40065,25045,25076,0],[25076,25083,25046,0],[25049,25050,25079,0],[25079,25050,25051,0],[25081,25077,25053,0],[25053,25052,39791,0],[25053,39791,39792,0],[48853,39792,25054,0],[25055,25056,24430,0],[24430,25056,24435,0],[24435,25056,24436,0],[24436,25056,39789,0],[24436,39789,39678,0],[48854,39678,39833,0],[39833,25057,25067,0],[25067,25057,39642,0],[25062,25063,39657,0],[37541,37531,25064,0],[25066,25058,39642,0],[25064,37531,39653,0],[25064,39653,25065,0],[39833,25067,48854,0],[48854,25067,24447,0],[24447,25067,24449,0],[24449,25067,25068,0],[25055,24431,25054,0],[25080,25081,25069,0],[25069,48853,24434,0],[24434,48853,25070,0],[25069,24434,25071,0],[25071,25072,25078,0],[25078,25072,25073,0],[25075,25074,25076,0],[25053,39792,25081,0],[25053,25077,39781,0],[39786,25053,39781,0],[25049,25079,40054,0],[25079,25051,25082,0],[25079,25082,40053,0],[25082,25051,25080,0],[25080,25051,25081,0],[25077,25081,25051,0],[25082,25080,25078,0],[25078,40053,25082,0],[25080,25069,25071,0],[25071,25078,25080,0],[25076,25045,25083,0],[25084,25083,25085,0],[25085,25045,25111,0],[25085,25111,25086,0],[40082,25086,25087,0],[25087,25089,40080,0],[40078,25089,25100,0],[25091,39906,40076,0],[40076,39906,25092,0],[25092,25093,39865,0],[39865,25093,39908,0],[39864,39908,39900,0],[39900,39902,25094,0],[25094,39902,25098,0],[25094,25098,25095,0],[25095,25099,39852,0],[39852,25099,25096,0],[39852,25096,39851,0],[39851,25096,25097,0],[25096,25099,39745,0],[39745,25099,25098,0],[25095,25098,25099,0],[25090,40077,25100,0],[25087,40080,25102,0],[25102,25101,40083,0],[40083,40082,25102,0],[25102,40082,25087,0],[25088,25087,25086,0],[25088,25086,25111,0],[25085,25086,25103,0],[25085,25103,25084,0],[25084,25105,25104,0],[25104,40066,25047,0],[25104,25047,25046,0],[25046,25083,25104,0],[25084,25104,25083,0],[25085,25083,25045,0],[25043,25041,25106,0],[25106,25041,25107,0],[25116,25120,25107,0],[25108,25040,25117,0],[25109,25107,25041,0],[25040,25108,25109,0],[25109,25108,25116,0],[25109,25116,25107,0],[25110,25106,25107,0],[25128,25110,25121,0],[25121,25088,25111,0],[25088,25121,25122,0],[25088,25122,25112,0],[25087,25112,25089,0],[45542,25113,25114,0],[25114,45537,25115,0],[25115,25116,8167,0],[8167,25116,25117,0],[25117,25116,25108,0],[25137,25117,25040,0],[25137,25040,25129,0],[8155,25119,25039,0],[25039,25038,8156,0],[25117,25119,25118,0],[8167,25117,45532,0],[45532,25117,25118,0],[25110,25120,45537,0],[25110,45537,25121,0],[25121,45537,25122,0],[25122,25113,25112,0],[25114,25115,25123,0],[25123,45541,25124,0],[45463,25125,45462,0],[45462,25125,8175,0],[45462,8175,8176,0],[45462,8176,25126,0],[25126,8176,7995,0],[25126,7995,8177,0],[45541,25127,25124,0],[45463,25124,25125,0],[25124,25127,25125,0],[25125,25127,8175,0],[25123,8167,8169,0],[8167,25123,25115,0],[25089,25112,25113,0],[25113,45537,25114,0],[25113,25122,45537,0],[25088,25112,25087,0],[25111,25044,25128,0],[25111,25128,25121,0],[25041,25042,25109,0],[25109,25042,25129,0],[25129,25042,25130,0],[25132,25129,25130,0],[25136,25132,25131,0],[25134,25131,25135,0],[25130,45549,25132,0],[25135,25131,25132,0],[25129,25132,25136,0],[25136,25131,25243,0],[25243,25131,25133,0],[25131,25134,25133,0],[25129,25136,25137,0],[25038,25139,25138,0],[25138,25139,25140,0],[25138,25140,25257,0],[25140,25141,25142,0],[25145,25037,25258,0],[25037,25145,25146,0],[25148,25147,25245,0],[25148,25149,25150,0],[25150,25149,25246,0],[25246,25149,25202,0],[25246,25202,25151,0],[25151,25202,25203,0],[25151,25203,25155,0],[25151,25155,25152,0],[25253,25152,25168,0],[25154,25153,25256,0],[25167,25168,25152,0],[25167,25152,25155,0],[25167,25155,25156,0],[25157,25156,34194,0],[25157,34194,34195,0],[25171,34195,25158,0],[25159,25158,25160,0],[25160,25162,25161,0],[25163,25161,25162,0],[25164,25261,25165,0],[25164,25165,25163,0],[25163,25165,25161,0],[25161,25165,25166,0],[25160,25166,25159,0],[25166,25160,25161,0],[25171,25158,25159,0],[25171,25159,25014,0],[25171,25014,34276,0],[25168,25167,25169,0],[25168,25169,25154,0],[25154,25169,25157,0],[25154,25157,25170,0],[34274,25170,25171,0],[34274,25171,34276,0],[25168,25154,25256,0],[25169,25167,25156,0],[25169,25156,25157,0],[25271,25174,34199,0],[34199,25174,25204,0],[25204,25223,25175,0],[25175,25223,25176,0],[25191,25193,25177,0],[25178,25217,25179,0],[25179,25217,25216,0],[25179,25216,25180,0],[25179,25180,25188,0],[25179,25188,25192,0],[25192,25188,25181,0],[25181,25189,25183,0],[24969,25183,24970,0],[24971,24970,25184,0],[25184,25185,39619,0],[39619,25185,24286,0],[24286,25185,24270,0],[25185,25184,39228,0],[39228,25184,25186,0],[25180,39225,25188,0],[25181,25188,25189,0],[25183,25189,25187,0],[25188,39225,25189,0],[25189,39225,25187,0],[24970,25187,25186,0],[24970,25186,25184,0],[24970,25183,25187,0],[25182,25181,25183,0],[25181,25190,25192,0],[25192,25190,25191,0],[25192,25191,25177,0],[25192,25177,25178,0],[25192,25178,25179,0],[25190,24977,25191,0],[25193,25191,24977,0],[25193,24977,24968,0],[25204,25175,34199,0],[25272,34199,25198,0],[24968,25194,25195,0],[25196,34199,25175,0],[25196,25175,25176,0],[25196,25176,25197,0],[25196,25197,25195,0],[25195,25197,24968,0],[25193,24968,25197,0],[34199,25196,25198,0],[25196,25195,25198,0],[25198,25195,25194,0],[34198,25155,25203,0],[34198,25203,25200,0],[25199,25200,25201,0],[25201,25200,25203,0],[25201,25203,25202,0],[34198,25200,25173,0],[25173,25200,25174,0],[25204,25237,25205,0],[25205,25237,25206,0],[25205,25206,25224,0],[25224,25206,25207,0],[25207,25206,25238,0],[25211,25207,25239,0],[25211,25239,25209,0],[25209,25239,25208,0],[25209,25208,25210,0],[25209,25210,25231,0],[25207,25211,25224,0],[25222,25225,25221,0],[25220,25212,25213,0],[25177,25213,25178,0],[24486,25215,24404,0],[24486,25218,25215,0],[25215,25218,25216,0],[25214,25215,25217,0],[25214,25217,25178,0],[25216,25217,25215,0],[25218,39226,25216,0],[25180,25216,39225,0],[25218,39626,39226,0],[25178,25213,39625,0],[39622,25212,25221,0],[25178,39625,25219,0],[25178,25219,25214,0],[39625,25213,25212,0],[25177,25193,25213,0],[25213,25193,25220,0],[25220,25176,25221,0],[25220,25221,25212,0],[25220,25193,25197,0],[25220,25197,25176,0],[25222,25176,25223,0],[25176,25222,25221,0],[25225,25222,25223,0],[25225,25223,25205,0],[25205,25223,25204,0],[25205,25224,25225,0],[25221,25225,25233,0],[39622,25233,25226,0],[25228,24405,39623,0],[39624,39623,25229,0],[39624,25229,24404,0],[24405,25228,25234,0],[25234,25228,25227,0],[25234,25227,25235,0],[24408,25231,25230,0],[25231,25232,25209,0],[25232,25231,25226,0],[25226,25231,24408,0],[24408,25235,25226,0],[25232,25226,25233,0],[24461,25234,24406,0],[24408,24407,25235,0],[25235,24407,24406,0],[25235,24406,25234,0],[25225,25224,25233,0],[25233,25224,25236,0],[25233,25236,25232,0],[25224,25211,25236,0],[25232,25236,25209,0],[25209,25236,25211,0],[25206,25237,25238,0],[25238,25237,25201,0],[25174,25199,25237,0],[25237,25204,25174,0],[25237,25199,25201,0],[25207,25238,25245,0],[25207,25245,25239,0],[25144,25143,25240,0],[25208,25240,25210,0],[25208,25239,25240,0],[25240,25239,25144,0],[25210,25241,25230,0],[25230,25231,25210,0],[25241,25210,25240,0],[25241,25141,24416,0],[24416,24417,25241,0],[24416,25141,24415,0],[24415,25141,25242,0],[24415,25242,40060,0],[40060,25242,25133,0],[25141,25140,25242,0],[25242,25140,25139,0],[25242,25139,25133,0],[25133,25139,25243,0],[25243,25137,25136,0],[25141,25241,25142,0],[25142,25241,25240,0],[25149,25245,25244,0],[25149,25244,25202,0],[25202,25244,25201,0],[25201,25244,25238,0],[25238,25244,25245,0],[25239,25245,25144,0],[25144,25245,25147,0],[25148,25245,25149,0],[25037,25146,25036,0],[25036,25146,25035,0],[25035,25146,25030,0],[25030,25146,25148,0],[25148,25146,25147,0],[25148,25150,25030,0],[25030,25150,25031,0],[25031,25150,25246,0],[25031,25246,25248,0],[25248,25246,25247,0],[25248,25247,25249,0],[47681,47680,25033,0],[47681,25033,25248,0],[47681,25248,25249,0],[25251,25250,25019,0],[25019,25020,25251,0],[25251,25023,47680,0],[25251,47680,47681,0],[25020,25021,25251,0],[25251,25021,25022,0],[25251,25022,25023,0],[25249,25247,25252,0],[25254,25153,25019,0],[25019,25153,25018,0],[25249,25252,25254,0],[25249,25254,25250,0],[25252,25253,25254,0],[25250,25254,25019,0],[25246,25151,25255,0],[25253,25252,25255,0],[25255,25252,25247,0],[25255,25247,25246,0],[25151,25152,25255,0],[25255,25152,25253,0],[25253,25256,25254,0],[25254,25256,25153,0],[25168,25256,25253,0],[25143,25144,25145,0],[25143,25145,25257,0],[25257,25140,25142,0],[25144,25147,25145,0],[25257,25145,25258,0],[25257,25258,25138,0],[25138,25258,25038,0],[8156,8149,8157,0],[8157,8149,8150,0],[8149,25258,45559,0],[25029,25259,25034,0],[25034,25259,25260,0],[25033,25260,25032,0],[25011,34192,25261,0],[25011,25261,25262,0],[25262,25261,25263,0],[25263,25261,25264,0],[25005,25264,25265,0],[25274,25265,25273,0],[25274,25273,34203,0],[25269,25267,25268,0],[25269,25268,25270,0],[25269,25270,25271,0],[25269,25271,25272,0],[34203,25273,25266,0],[25008,25262,25263,0],[25274,34202,25004,0],[25004,34202,25003,0],[25003,34202,25002,0],[25274,25005,25265,0],[25005,25006,25264,0],[25264,25006,25263,0],[25006,25005,34201,0],[25003,25275,25004,0],[25004,34172,25274,0],[25004,25275,34172,0],[34172,25275,25282,0],[34172,25282,25276,0],[25278,25276,25277,0],[25278,25277,25315,0],[25278,25315,25279,0],[34168,25279,25280,0],[25314,25277,25282,0],[34175,25282,25275,0],[34175,25275,24993,0],[24993,25275,25003,0],[25276,25282,25277,0],[24994,24992,24993,0],[24993,24992,34175,0],[25274,34172,25005,0],[25005,34172,34201,0],[25284,24995,25001,0],[34206,25283,25000,0],[25000,25283,34207,0],[25001,25283,25284,0],[24996,24997,24986,0],[24996,24986,25286,0],[25286,24987,24988,0],[25287,25288,24995,0],[24994,25288,25289,0],[25289,25290,25320,0],[25290,25288,25287,0],[25288,25290,25289,0],[25290,25287,24989,0],[25287,24988,24989,0],[24996,25286,25284,0],[25291,25292,25310,0],[25291,24991,24990,0],[25291,25310,24991,0],[24991,25310,25321,0],[24992,25320,25293,0],[34175,25293,25294,0],[34175,25294,25295,0],[25317,25294,25296,0],[25296,25303,25297,0],[24036,25298,25299,0],[24036,34176,25298,0],[25299,25300,25301,0],[25301,25300,24038,0],[24038,25300,24039,0],[24039,25300,24041,0],[24041,25300,25302,0],[25309,25302,25304,0],[25303,25296,25294,0],[25300,25304,25302,0],[25304,25300,25297,0],[25297,25300,25299,0],[25297,25299,25298,0],[24041,25302,34174,0],[25490,34174,25348,0],[25348,34174,25292,0],[25348,25292,25305,0],[25307,24985,25329,0],[24985,25307,25308,0],[25308,25307,24986,0],[24987,34208,24988,0],[24988,34208,25306,0],[24988,25306,24989,0],[24989,25341,24990,0],[24990,25341,25291,0],[25291,25341,25292,0],[25341,25305,25292,0],[34174,25302,25309,0],[25310,25309,25321,0],[25301,24037,25299,0],[25296,25297,39614,0],[25313,25311,25312,0],[25313,25312,25281,0],[25294,25317,25295,0],[25295,25317,25314,0],[25277,25314,25315,0],[25279,25315,25313,0],[25280,25316,25510,0],[25510,25316,25281,0],[25281,25316,25313,0],[25314,25317,25315,0],[25315,25317,25311,0],[25315,25311,25313,0],[39614,25318,25296,0],[25296,25318,25317,0],[25316,25280,25279,0],[25316,25279,25313,0],[25314,25282,25295,0],[25319,25320,25321,0],[25303,25294,25319,0],[25319,25294,25293,0],[25319,25293,25320,0],[25321,25320,24991,0],[25303,25319,25304,0],[25304,25319,25321,0],[24957,24956,24958,0],[24956,24961,24958,0],[24958,24961,24959,0],[24959,24961,24982,0],[24982,24961,24960,0],[24953,25338,25322,0],[25322,25337,25326,0],[25326,25337,25323,0],[25323,25339,25332,0],[25328,25339,34210,0],[25328,34210,34209,0],[25328,34209,25324,0],[25324,25325,25307,0],[25307,25325,24986,0],[25323,25332,25326,0],[25322,25326,24954,0],[24954,25326,25334,0],[24963,25334,25331,0],[25331,25333,25327,0],[25328,25327,25339,0],[25328,25329,25330,0],[25330,25329,24985,0],[25307,25329,25324,0],[25324,25329,25328,0],[25328,25330,25327,0],[25327,25330,25331,0],[25331,25330,24965,0],[25331,24965,24964,0],[24964,24963,25331,0],[25339,25327,25332,0],[25326,25332,25333,0],[25332,25327,25333,0],[25333,25334,25326,0],[25334,25333,25331,0],[25336,25323,25337,0],[24951,25359,25335,0],[24951,24949,25359,0],[24951,25335,25338,0],[25323,25358,25339,0],[25339,25358,25340,0],[25365,34211,34272,0],[25365,34272,34273,0],[34208,34273,25306,0],[25306,25342,25341,0],[25306,25341,24989,0],[25341,25342,25305,0],[25305,25342,25343,0],[25343,25344,25345,0],[25345,25344,25346,0],[25347,25346,25353,0],[24946,25350,25353,0],[25353,25350,25347,0],[25345,25352,25348,0],[25490,25348,25492,0],[25492,25348,25352,0],[25349,25352,25351,0],[25349,25351,25494,0],[25347,25350,25351,0],[25347,25351,25352,0],[25494,25351,25350,0],[34174,25490,24041,0],[25348,25305,25343,0],[25348,25343,25345,0],[25345,25346,25352,0],[25352,25346,25347,0],[25353,25346,25363,0],[25363,25364,25353,0],[25353,25364,24948,0],[25353,24948,24946,0],[25355,24948,25354,0],[25355,25354,25340,0],[25355,25340,25358,0],[34211,25340,25354,0],[34272,25354,25356,0],[25364,25357,25356,0],[25364,25356,25354,0],[24948,25355,24947,0],[24947,25355,25358,0],[25361,25358,25336,0],[25361,25336,25362,0],[25360,25359,24949,0],[25359,25360,25362,0],[25361,25362,25375,0],[25375,25362,25360,0],[25359,25362,25335,0],[25363,25357,25364,0],[25357,25363,25344,0],[25346,25344,25363,0],[25343,25342,25344,0],[25344,25342,25357,0],[24948,25364,25354,0],[34273,34208,25365,0],[25323,25336,25358,0],[25335,25362,25337,0],[25337,25362,25336,0],[25337,25322,25335,0],[25335,25322,25338,0],[25350,25366,25367,0],[25350,25367,25368,0],[25491,25370,25372,0],[25491,25372,25371,0],[33831,25371,25372,0],[25369,25373,25372,0],[25369,25372,25370,0],[33831,25372,25373,0],[24943,24942,24944,0],[24944,25373,25369,0],[24944,25369,25368,0],[24052,24943,24053,0],[24053,24943,33808,0],[25374,24945,39587,0],[39587,25377,33834,0],[33834,25376,33897,0],[33897,25376,25375,0],[25375,25376,25361,0],[24947,25376,25377,0],[24947,25377,25366,0],[25366,25377,24945,0],[25376,33834,25377,0],[25377,39587,24945,0],[25379,25416,24048,0],[24017,25380,24015,0],[24015,25380,25456,0],[25456,25380,25414,0],[25456,25414,25415,0],[25456,25415,25458,0],[25458,25415,25381,0],[25381,25403,25382,0],[25475,25382,25404,0],[25383,25384,25473,0],[25473,25384,25452,0],[25473,25452,25472,0],[25472,25452,25389,0],[25389,25452,25385,0],[25389,25385,25388,0],[25388,25385,25386,0],[25386,25452,25454,0],[25386,25454,25453,0],[25386,25387,25388,0],[25477,25390,24778,0],[25391,25388,25392,0],[25392,25388,25387,0],[25392,25387,25393,0],[25453,25394,24865,0],[24865,25394,24091,0],[24091,25394,24090,0],[24090,25394,25397,0],[25395,24869,25396,0],[24868,24892,24869,0],[24869,24892,25396,0],[25395,25396,25397,0],[24090,25397,24892,0],[24892,25397,25396,0],[24869,25395,24870,0],[24870,25395,24871,0],[24871,25398,25400,0],[25400,25398,25399,0],[25401,25405,25402,0],[25403,25402,25405,0],[25403,25405,25404,0],[25404,25405,25474,0],[25474,25405,25383,0],[25403,25404,25382,0],[25402,25406,25401,0],[25401,25406,25400,0],[25402,25403,25407,0],[25406,25407,25447,0],[25406,25447,25408,0],[25408,24872,25409,0],[25409,24872,24871,0],[25409,24871,25400,0],[25409,25400,25406,0],[25407,25406,25402,0],[24872,25408,25445,0],[24872,25445,24873,0],[24873,25445,39605,0],[39605,25445,25446,0],[39605,25446,33812,0],[33812,25446,25410,0],[33812,25410,25411,0],[33814,24052,24053,0],[33814,24053,25419,0],[25419,24053,39601,0],[24048,25412,25379,0],[25379,25411,25413,0],[25413,25411,25410,0],[25414,25410,25448,0],[25414,25448,25415,0],[25381,25415,25403,0],[25414,25380,25413,0],[25413,25380,25416,0],[25413,25416,25379,0],[25411,25379,25412,0],[25417,24873,25418,0],[25417,25418,24875,0],[24875,25418,25442,0],[25442,25418,25419,0],[25443,25420,25444,0],[25444,39505,39510,0],[39510,39505,39504,0],[39510,39504,25421,0],[25422,25423,39452,0],[39452,25423,25434,0],[25434,25423,25430,0],[25424,25429,25441,0],[25441,25429,25432,0],[24063,25425,24062,0],[24059,25426,25430,0],[25428,25431,25422,0],[25428,25422,25421,0],[25428,24057,33886,0],[25427,33886,33887,0],[25427,33887,24059,0],[25426,24059,24060,0],[25427,24059,25431,0],[25427,25428,33886,0],[25425,25432,24062,0],[24062,25432,25429,0],[24062,25429,24061,0],[24061,25429,25426,0],[25426,25429,25430,0],[24059,25430,25431,0],[25422,25431,25423,0],[25431,25430,25423,0],[25430,25429,25424,0],[25426,24060,24061,0],[25424,25441,25433,0],[25434,25435,39436,0],[39436,25435,39438,0],[39438,25435,39450,0],[39450,25435,25436,0],[39450,25436,39448,0],[25437,25440,25438,0],[25439,25440,25425,0],[25425,25440,25432,0],[25432,25440,25441,0],[25440,25437,39602,0],[25440,39602,25441,0],[25425,24064,25439,0],[25439,24930,25440,0],[25440,24930,25438,0],[25424,25433,25430,0],[25433,25434,25430,0],[24875,25442,25443,0],[25443,25444,39510,0],[25420,25443,25442,0],[25442,25419,25420,0],[25408,25447,25445,0],[25445,25447,25448,0],[25445,25448,25446,0],[25446,25448,25410,0],[25415,25448,25447,0],[25415,25447,25407,0],[25403,25415,25407,0],[25400,25399,25401,0],[25401,25399,25449,0],[25401,25449,25405,0],[24871,25395,25398,0],[25398,25395,25450,0],[25398,25450,25449,0],[25398,25449,25399,0],[25450,25454,25449,0],[25449,25454,25451,0],[25383,25405,25451,0],[25451,25405,25449,0],[25383,25451,25384,0],[25386,25385,25452,0],[25452,25384,25454,0],[25454,25384,25451,0],[25453,25454,25394,0],[25453,25393,25386,0],[25386,25393,25387,0],[25394,25454,25397,0],[25454,25450,25397,0],[25397,25450,25395,0],[25453,24865,25393,0],[25392,24093,25391,0],[25389,25388,25390,0],[25391,25390,25388,0],[24015,25456,25457,0],[25457,25458,25459,0],[25459,25458,25460,0],[25462,25460,25461,0],[25462,25461,25468,0],[33819,25468,25463,0],[33819,25463,25464,0],[24804,33794,25465,0],[25465,24820,25466,0],[25466,25467,33824,0],[33824,25467,23941,0],[25455,25457,33818,0],[25455,33818,24019,0],[33818,24013,24019,0],[24019,24013,24014,0],[25457,25456,25458,0],[25458,25381,25460,0],[25460,25381,25382,0],[25461,25382,25475,0],[25460,25382,25461,0],[25469,25485,25463,0],[25463,25485,24793,0],[25463,24793,25470,0],[25488,25470,24794,0],[24794,25470,24793,0],[24793,25485,25481,0],[25472,25471,25473,0],[25473,25486,25474,0],[25474,25487,25475,0],[25475,25487,25461,0],[25461,25487,25468,0],[25383,25473,25474,0],[25404,25474,25475,0],[25472,25478,25480,0],[25476,25477,24778,0],[25390,25477,25389,0],[25477,25476,25480,0],[25477,25480,25478,0],[25477,25478,25389,0],[25389,25478,25472,0],[24793,25481,24792,0],[25481,25482,24792,0],[25472,25482,25471,0],[25471,25482,25481,0],[24792,25482,25479,0],[25483,25479,25480,0],[25480,25479,25482,0],[25479,25483,24791,0],[24791,25483,25484,0],[24777,25484,25476,0],[25484,25483,25476,0],[25476,25483,25480,0],[25485,25469,25471,0],[25473,25471,25486,0],[25486,25471,25469,0],[25486,25469,25487,0],[25487,25474,25486,0],[25471,25481,25485,0],[25468,25469,25463,0],[25463,25470,25464,0],[25464,25470,25488,0],[25464,25488,33820,0],[24017,25416,25380,0],[24042,24040,25493,0],[24042,25493,25371,0],[25371,25493,25491,0],[25491,25489,25349,0],[25489,25352,25349,0],[25352,25489,25492,0],[25489,25491,25492,0],[24040,25490,25492,0],[24040,25492,25493,0],[25491,25493,25492,0],[25491,25349,25370,0],[25369,25370,25494,0],[25370,25349,25494,0],[25494,25350,25368,0],[25494,25368,25369,0],[24042,25371,33832,0],[33832,24043,24042,0],[24040,24042,24039,0],[24039,24042,24038,0],[24038,24042,25495,0],[25495,24042,24043,0],[24037,24038,24028,0],[24028,24038,25495,0],[24028,25495,25496,0],[25497,25496,24045,0],[24028,25496,25497,0],[25497,25498,25500,0],[25500,25498,25499,0],[25499,24023,25500,0],[25497,25500,24026,0],[25497,24026,24028,0],[24023,24024,25500,0],[25500,24025,24026,0],[25499,25498,24044,0],[24044,25498,24045,0],[24045,25498,25497,0],[24032,33730,24033,0],[24032,24033,25501,0],[25501,24035,25503,0],[25503,24035,24036,0],[25502,25504,25518,0],[25518,25504,24031,0],[24031,25504,24030,0],[24030,25504,24029,0],[24029,25503,24036,0],[24034,24035,24033,0],[24033,24035,25501,0],[24032,25501,25502,0],[25504,25502,25503,0],[25501,25503,25502,0],[24033,25505,25506,0],[25506,25505,34177,0],[25506,34177,25507,0],[25508,25509,23962,0],[33733,25508,23964,0],[23964,25508,23963,0],[25507,34177,25509,0],[25507,25509,25281,0],[25281,25509,25510,0],[25511,25510,25512,0],[25513,25512,25514,0],[25509,25508,33733,0],[33733,23964,25515,0],[24012,24011,24023,0],[24011,24010,39606,0],[39607,24010,39608,0],[25518,39612,25519,0],[23955,25516,25519,0],[25516,25517,25519,0],[25519,25517,25518,0],[25518,25517,24032,0],[25518,24032,25502,0],[23938,24012,25520,0],[25520,24012,25521,0],[33818,25521,24013,0],[24012,24013,25521,0],[23939,25520,25525,0],[23939,25525,33829,0],[33829,25525,25522,0],[25522,25523,33821,0],[25522,33821,25524,0],[25465,25524,24804,0],[24804,25524,33821,0],[24804,33821,33820,0],[25520,25521,25525,0],[25526,25523,25522,0],[25522,25525,25526,0],[39608,24010,23954,0],[39608,23954,23955,0],[33826,23952,23951,0],[23936,25527,23953,0],[25527,23936,23952,0],[23952,23958,25527,0],[23950,23949,25528,0],[23950,25528,25529,0],[23947,23948,25531,0],[25531,25530,25532,0],[25531,25532,23946,0],[23946,33481,25531,0],[23948,25530,25531,0],[33787,23946,25532,0],[33787,25532,23932,0],[33788,23932,25533,0],[33788,25533,23933,0],[25534,23949,23950,0],[25534,23950,25533,0],[25533,23950,23951,0],[25533,23951,23935,0],[25532,25530,25534,0],[25536,25537,25570,0],[25570,25537,25569,0],[25539,546,25540,0],[33409,550,551,0],[33442,28573,33495,0],[25547,25546,25552,0],[25547,25552,25554,0],[25549,25548,25550,0],[25550,25548,555,0],[25553,28604,25548,0],[25548,28604,555,0],[25548,25554,25553,0],[25545,33495,25551,0],[25545,25551,25546,0],[25546,553,25552,0],[25552,25555,25553,0],[25553,25555,554,0],[25561,25544,25557,0],[25557,25544,549,0],[549,25544,25543,0],[25556,25541,25558,0],[549,25556,25557,0],[25557,25540,548,0],[25557,25556,25558,0],[25557,25558,25540,0],[544,548,546,0],[546,548,25540,0],[549,25543,25556,0],[25556,25543,25559,0],[25559,25543,23921,0],[23921,23920,25559,0],[25556,25559,25541,0],[25541,25559,25542,0],[25542,25559,23920,0],[23923,23921,25560,0],[25560,25544,25567,0],[25567,25544,25561,0],[25566,25562,33417,0],[33417,25562,25563,0],[33417,25564,25566,0],[25566,25564,25565,0],[23925,25565,49562,0],[23925,49562,23926,0],[25565,25564,49562,0],[23925,23924,25565,0],[25567,25561,25562,0],[25562,25561,25568,0],[25562,25566,25567,0],[25567,25566,23924,0],[23924,25566,25565,0],[25560,25567,23924,0],[25560,23924,23923,0],[25568,25561,33427,0],[25568,25563,25562,0],[25561,550,33427,0],[33427,550,33409,0],[33409,551,33442,0],[25544,25560,25543,0],[25560,23921,25543,0],[23920,33394,25542,0],[25558,25539,25540,0],[25539,25558,25572,0],[25558,25541,25572,0],[25572,25541,25538,0],[25541,25542,25538,0],[33394,25569,25542,0],[25542,25569,25538,0],[23826,25536,25570,0],[33394,23919,25569,0],[25569,23919,25570,0],[23919,23918,25570,0],[25570,23918,23826,0],[25569,25537,25538,0],[25538,25537,25571,0],[25538,25571,25572,0],[25572,25571,25573,0],[25575,33375,25576,0],[25575,25576,25577,0],[25576,28615,25577,0],[25577,28615,25539,0],[25577,25539,25572,0],[25574,25575,25573,0],[25575,25577,25573,0],[25573,25577,25572,0],[23828,25537,23827,0],[23828,25574,25537,0],[25537,25574,25571,0],[25574,25573,25571,0],[23827,25537,25536,0],[23826,25535,23825,0],[23825,25535,23915,0],[23825,23915,23823,0],[23820,23821,25578,0],[33783,33784,25581,0],[23929,33781,25582,0],[23930,25583,49560,0],[23931,23929,25583,0],[23820,25578,23872,0],[23872,25578,23819,0],[25578,33797,23819,0],[23814,24829,23815,0],[23815,24829,24830,0],[21768,23810,25612,0],[21768,25612,25584,0],[25584,39340,25585,0],[25585,39339,25586,0],[25586,39339,25595,0],[25594,25595,25610,0],[25617,25587,25588,0],[25617,25588,25589,0],[25589,25588,25590,0],[25589,25590,25591,0],[25591,25590,39336,0],[25610,25617,25593,0],[25610,25593,25594,0],[25586,25598,25600,0],[25600,25598,25601,0],[25601,25598,25596,0],[25601,25596,25608,0],[25608,25596,25609,0],[25609,21745,21747,0],[21745,25609,25596,0],[25597,25596,25598,0],[25598,25586,25595,0],[25598,25595,25594,0],[25591,25599,25589,0],[25589,25599,25593,0],[25593,25617,25589,0],[25593,25599,25594,0],[25591,25592,25599,0],[25598,25594,25597,0],[25597,25594,25599,0],[21743,25597,25592,0],[25592,25597,25599,0],[21743,25596,25597,0],[25600,25601,25602,0],[25603,25602,21764,0],[25604,21764,25605,0],[25604,25605,25606,0],[25606,25605,21749,0],[21749,21750,25606,0],[21764,25602,25605,0],[21764,25607,25603,0],[25586,25603,25607,0],[25607,21766,25585,0],[25585,21766,25584,0],[25607,25585,25586,0],[25586,25600,25603,0],[25603,25600,25602,0],[25601,25609,25602,0],[25602,25609,25605,0],[25605,25609,21749,0],[25601,25608,25609,0],[21748,21749,21747,0],[25610,25595,39339,0],[25613,25612,23811,0],[25613,23811,33013,0],[33013,23811,25614,0],[25614,23811,23812,0],[32990,32991,25615,0],[32990,25615,25614,0],[32990,25614,23812,0],[25612,25613,25611,0],[25611,25613,25616,0],[25617,25616,39341,0],[25617,39341,25587,0],[25617,25610,25616,0],[25610,39339,25616,0],[25616,39339,25611,0],[25584,25612,25611,0],[21771,23809,21770,0],[21770,23809,32983,0],[21770,32983,21769,0],[25643,23804,23805,0],[25643,23805,25618,0],[25618,25619,25620,0],[25620,25619,25621,0],[25621,25619,23807,0],[23807,21771,25621,0],[25621,33011,33010,0],[25622,25629,25623,0],[25633,21776,25632,0],[25632,21776,25624,0],[25625,25627,25626,0],[21778,25626,25627,0],[21775,21776,25628,0],[21775,25628,21774,0],[21774,25628,25630,0],[25630,25628,25629,0],[25630,25629,33010,0],[25630,33010,33011,0],[25630,33011,21773,0],[21776,25633,25623,0],[21776,25623,25628,0],[25624,25631,25632,0],[25632,25631,25625,0],[25625,25631,25627,0],[25623,25633,25622,0],[25622,25644,25634,0],[25621,33010,25620,0],[33010,25629,25634,0],[25634,25629,25622,0],[33011,25621,23808,0],[23808,25621,21771,0],[23795,23804,23794,0],[23794,23804,25635,0],[23794,25635,25636,0],[25637,25636,25645,0],[25637,25645,39345,0],[25637,39345,25642,0],[25641,25650,25639,0],[25641,25639,21786,0],[21786,25639,33275,0],[25638,25639,25640,0],[25638,25640,33276,0],[25639,25638,33275,0],[25639,25650,25640,0],[33276,23792,25642,0],[33276,25642,39345,0],[39345,25645,25633,0],[25633,25645,25644,0],[25644,25622,25633,0],[33276,25640,23792,0],[33010,25634,25620,0],[21789,25641,21786,0],[25650,23792,25640,0],[23794,25636,23793,0],[23793,25637,25642,0],[25637,23793,25636,0],[23804,25643,25635,0],[25635,25643,25645,0],[25645,25643,25644,0],[25645,25636,25635,0],[25644,25643,25634,0],[25634,25643,25620,0],[25620,25643,25618,0],[23793,25646,33321,0],[25648,25649,23772,0],[33023,25649,21790,0],[21790,25649,25650,0],[21790,25650,25641,0],[21790,25641,21789,0],[25650,25648,23792,0],[23792,25648,25646,0],[25647,25646,25648,0],[25648,25650,25649,0],[23772,23781,25648,0],[25648,23781,25647,0],[23793,33321,25651,0],[23774,25652,23773,0],[25652,23774,23797,0],[23797,25653,23799,0],[23797,23799,23798,0],[23797,23774,25653,0],[23799,25654,25655,0],[25655,25654,23802,0],[25655,23800,23799,0],[23800,25655,23801,0],[33404,25654,23776,0],[23799,25653,25654,0],[25654,25653,23776,0],[21736,33215,21737,0],[21739,21737,33214,0],[21739,33214,21740,0],[39297,21739,21738,0],[21739,39297,21737,0],[21722,25656,21704,0],[21722,21704,21720,0],[21702,21704,25657,0],[25657,21701,21702,0],[25657,25660,21701,0],[21701,25660,39408,0],[21701,39408,25658,0],[25658,39408,25659,0],[25660,21727,39408,0],[21725,25657,21724,0],[21724,25657,25656,0],[25656,25657,21704,0],[21720,21713,25661,0],[21720,25661,21721,0],[25661,25668,33240,0],[33240,25662,25663,0],[33238,25664,21717,0],[21717,25664,21716,0],[21716,25663,33290,0],[33290,25663,25667,0],[33290,25667,25665,0],[25665,25667,21715,0],[25667,25668,21714,0],[21714,25668,25666,0],[25667,25663,25662,0],[33240,25668,25662,0],[25662,25668,25667,0],[25668,25661,25666,0],[21705,21706,21712,0],[25684,21709,21708,0],[21698,21708,21709,0],[21709,21699,21698,0],[21696,24668,21695,0],[21697,21695,25669,0],[25669,21695,25673,0],[25670,25669,25671,0],[25671,24663,25670,0],[25669,25673,25672,0],[24665,25672,25673,0],[24666,24665,24667,0],[24667,24665,21695,0],[24665,25673,21695,0],[25669,25672,24664,0],[24668,21696,24669,0],[24669,21696,21708,0],[25676,25677,21712,0],[25677,25678,21713,0],[21713,25678,25680,0],[21713,25680,25666,0],[25678,25677,25679,0],[25678,25679,25680,0],[21681,25680,21682,0],[21682,25680,25682,0],[21682,25682,25681,0],[25681,25682,21693,0],[25680,25679,25682,0],[25666,25680,21681,0],[25676,25685,39236,0],[25674,25683,21697,0],[25684,25683,25685,0],[25675,25685,25683,0],[25685,25675,39236,0],[25683,25674,25675,0],[21697,25670,25674,0],[25674,25670,25686,0],[25674,25686,25675,0],[25675,25686,25689,0],[25689,25687,39235,0],[39235,25687,25688,0],[39235,25688,25679,0],[25679,25688,25682,0],[25675,25689,39236,0],[39236,25689,39235,0],[21687,25690,21688,0],[21688,25690,21692,0],[21611,21686,25691,0],[25691,39180,39238,0],[21611,25691,21610,0],[21681,21682,21690,0],[21681,21690,25699,0],[25699,21690,25693,0],[25693,25694,25698,0],[25695,25698,39179,0],[25695,39179,21683,0],[25696,21683,21684,0],[25696,21684,21685,0],[21683,25696,25695,0],[25695,25696,25697,0],[25697,21673,25695,0],[25698,25695,25700,0],[25698,25700,21680,0],[25698,21680,25699,0],[21715,25699,21680,0],[25699,25693,25698,0],[21679,25700,21673,0],[21673,25700,25695,0],[21679,21680,25700,0],[25694,39179,25698,0],[21679,21670,21677,0],[21677,21670,21674,0],[21674,25702,21677,0],[21677,25702,21678,0],[21678,25701,21679,0],[21679,25701,21680,0],[21680,25701,21715,0],[33289,21676,25703,0],[21869,25703,21868,0],[21868,33300,21867,0],[21867,33300,25704,0],[25704,21668,25705,0],[21862,25706,25705,0],[21867,25704,25705,0],[21867,25705,21866,0],[21866,25705,25706,0],[25706,21862,25707,0],[21860,25707,21861,0],[21861,25707,21862,0],[25706,25707,21865,0],[21858,21865,25707,0],[21862,25705,21668,0],[21671,21670,21673,0],[21668,33302,21667,0],[25709,21667,25718,0],[25709,25718,25779,0],[25710,25779,25708,0],[25711,25709,25710,0],[25711,25710,25713,0],[25713,25714,25712,0],[25712,25714,21661,0],[21661,25714,21613,0],[21613,25714,25708,0],[25713,25712,21666,0],[21665,25712,21662,0],[25710,25709,25779,0],[25713,25710,25708,0],[25713,25708,25714,0],[33302,21669,21667,0],[25716,21669,25715,0],[25716,25715,21671,0],[25716,25717,25718,0],[25718,25717,25779,0],[21671,25715,21670,0],[21667,21669,25718,0],[25718,21669,25716,0],[25711,21666,25719,0],[25721,21662,21661,0],[21661,21662,25712,0],[25735,25749,25722,0],[25722,25723,25734,0],[39149,25723,25748,0],[25748,25747,25752,0],[25725,25724,25747,0],[25725,25747,21660,0],[25724,25725,38926,0],[38926,25725,25726,0],[25724,25728,25752,0],[25752,25728,25729,0],[25729,25728,38931,0],[25729,38915,25746,0],[25746,38915,25730,0],[25746,25730,25751,0],[25730,25731,25732,0],[25750,25732,25744,0],[25750,25744,25733,0],[25750,25733,25734,0],[25734,25733,25737,0],[25735,25737,25739,0],[25735,25739,25736,0],[25735,25736,25755,0],[25739,25738,25741,0],[25740,25741,25745,0],[25740,25745,25742,0],[25742,25745,39033,0],[25745,25741,25743,0],[25743,25744,25745,0],[25732,25731,25744,0],[25737,25733,25738,0],[25730,25732,25751,0],[25729,25746,25752,0],[25724,25752,25747,0],[21660,25747,21617,0],[21617,25747,25748,0],[21616,25723,25722,0],[21616,25722,25749,0],[25749,25735,25755,0],[25723,21649,21617,0],[25723,21617,25748,0],[25723,39149,25734,0],[25752,25753,25748,0],[25748,25753,39149,0],[25750,25751,25732,0],[25737,25735,25722,0],[25737,25722,25734,0],[25721,25754,21663,0],[21663,25754,25755,0],[21663,25755,25736,0],[25738,25739,25737,0],[25739,25741,25736,0],[25708,25778,25756,0],[21615,21614,25758,0],[21614,21596,21595,0],[39239,25759,25763,0],[25774,25760,25761,0],[25762,25761,21647,0],[25762,21647,21642,0],[21647,25761,21641,0],[25759,21594,25763,0],[25763,25766,25767,0],[39060,25764,39059,0],[25764,25767,25799,0],[25764,39062,25767,0],[25807,25766,25768,0],[25769,21593,25770,0],[25768,25770,25807,0],[21594,25769,25768,0],[25763,21594,25768,0],[25763,25768,25766,0],[25767,25766,25807,0],[25767,25807,25799,0],[25764,25799,25765,0],[39239,25763,25771,0],[39239,25771,25774,0],[25760,39061,25761,0],[25761,39061,21641,0],[25760,25774,25771,0],[21614,21595,25758,0],[25758,21595,25773,0],[25758,25773,25772,0],[25772,25773,21643,0],[25761,25762,25774,0],[25762,21642,21643,0],[21595,25759,25773,0],[25773,25759,21643,0],[21597,25708,25757,0],[25708,25756,25757,0],[21672,21685,25778,0],[25756,25778,25775,0],[25776,21610,21600,0],[25775,25776,21600,0],[25775,21600,25777,0],[25777,21598,25757,0],[25775,25777,25756,0],[25756,25777,25757,0],[25775,25778,25776,0],[25779,25778,25708,0],[21600,21610,25692,0],[21573,21572,25780,0],[21573,25780,25781,0],[25781,25780,25789,0],[25789,25780,25782,0],[25793,25782,25783,0],[25783,25782,21589,0],[25780,21589,25782,0],[21589,25780,21572,0],[39242,25781,25789,0],[39242,25789,39241,0],[39241,25789,25784,0],[25784,25789,25785,0],[25785,25786,25787,0],[25787,25786,24642,0],[25792,21602,21603,0],[25785,25788,25784,0],[25788,39240,25784,0],[25787,25788,25785,0],[25789,25782,25790,0],[25789,25790,25785,0],[25785,25790,25786,0],[25782,25793,25790,0],[25790,25792,25786,0],[25786,25792,21603,0],[25786,21603,24642,0],[25791,25783,21591,0],[21591,25804,25791,0],[25791,25793,25783,0],[25791,21602,25793,0],[25793,21602,25792,0],[25793,25792,25790,0],[21569,25794,25810,0],[25810,25794,39077,0],[39077,25796,25795,0],[25796,39075,25809,0],[25809,39075,25797,0],[25809,25797,25798,0],[25800,39074,25799,0],[25800,25801,25806,0],[25800,25806,25798,0],[25800,25798,39074,0],[25796,25809,25802,0],[25796,25802,25803,0],[21591,25803,25804,0],[25805,25802,25808,0],[25808,25802,25806,0],[25808,25806,25801,0],[25808,25801,25770,0],[25770,25801,25807,0],[25801,25800,25807,0],[25798,25806,25809,0],[25809,25806,25802,0],[25802,25805,25803,0],[25803,25805,25804,0],[25810,25795,21590,0],[21590,25795,21591,0],[21591,25795,25803,0],[21588,21569,25810,0],[25823,21588,39243,0],[21569,21588,25823,0],[21565,21564,25813,0],[21565,25813,25814,0],[25811,25814,25812,0],[25816,25815,25811,0],[25816,25811,25817,0],[25817,21547,25818,0],[25818,21547,25819,0],[25819,21547,21545,0],[25822,49792,25823,0],[25823,49792,39244,0],[39244,21569,25823,0],[25818,25821,25816,0],[21566,25821,39133,0],[21566,39133,21568,0],[21568,39133,25822,0],[25822,25823,21568,0],[25817,25818,25816,0],[21565,25814,25815,0],[25814,25811,25815,0],[25811,25812,25817,0],[21535,21515,21536,0],[21536,21515,21514,0],[21536,21514,37653,0],[39155,39146,21511,0],[21511,39146,25824,0],[25824,21510,21511,0],[21479,21480,25826,0],[21481,21479,21533,0],[21533,21479,25825,0],[21487,25825,25826,0],[25826,25825,21479,0],[25827,21486,21485,0],[25828,21454,21453,0],[21465,25830,21464,0],[21482,25828,21489,0],[25829,21453,25831,0],[25829,25831,21464,0],[25829,21464,25830,0],[21452,21462,25831,0],[21452,25831,21461,0],[21464,25831,21462,0],[25828,21453,25829,0],[21452,21450,21657,0],[21443,38973,38975,0],[21443,38975,23109,0],[23109,25832,38977,0],[21439,38864,21436,0],[21436,38864,38863,0],[25833,22993,37603,0],[25833,37603,21430,0],[21430,37603,21431,0],[21430,21429,25834,0],[25835,37621,21429,0],[21429,21428,25835,0],[25835,21428,21424,0],[20140,21424,21426,0],[21430,25834,25833,0],[21428,25836,21427,0],[21424,21427,21426,0],[21426,21427,21425,0],[21425,21427,25836,0],[21425,25836,25847,0],[25847,25837,25846,0],[25837,37597,25838,0],[25838,37597,37600,0],[25838,37600,25839,0],[25838,25839,37649,0],[37649,37634,25840,0],[25844,25842,37639,0],[25844,37639,25843,0],[25843,37639,21441,0],[21441,21442,25843,0],[25843,21442,25844,0],[25849,25845,25846,0],[25846,25845,25848,0],[25846,25848,25847,0],[25846,25837,25849,0],[25849,25837,25838,0],[37591,25847,25848,0],[25838,37649,25849,0],[25850,25845,25851,0],[25850,25851,25862,0],[25862,25851,25852,0],[25858,37642,25857,0],[25857,37642,25856,0],[25856,25854,25855,0],[25855,39013,21468,0],[25855,21468,25856,0],[25858,25859,25860,0],[25860,25859,25861,0],[25862,25863,20136,0],[20135,20136,25865,0],[20135,25865,25864,0],[25864,25865,25866,0],[25864,25866,25867,0],[25868,25869,20134,0],[20134,25869,20133,0],[20133,25869,37588,0],[20133,37588,25870,0],[20133,25870,25871,0],[25871,25872,25873,0],[20136,25850,25862,0],[25862,25852,25861,0],[25861,25853,25860,0],[25853,25861,25852,0],[25863,25862,25861,0],[20137,25850,20136,0],[20137,25848,25850,0],[25850,25848,25845,0],[25863,25874,25875,0],[25875,25874,25876,0],[25876,25874,25884,0],[25884,25874,25877,0],[25877,25878,21533,0],[25874,25879,25877,0],[25879,25861,25859,0],[25861,25879,25863,0],[25863,25879,25874,0],[25877,25879,25878,0],[25879,25880,25878,0],[25878,25880,21476,0],[21467,25880,25882,0],[21467,25882,21475,0],[25879,25859,25880,0],[21475,25882,25881,0],[25881,25882,25857,0],[25857,25856,25881,0],[25856,21468,25881,0],[25858,25857,25882,0],[25858,25882,25859,0],[25859,25882,25880,0],[25863,25875,20136,0],[20136,25875,25865,0],[25865,25875,25876,0],[25865,25876,25895,0],[25883,25876,25884,0],[25884,25877,25897,0],[25897,25877,21533,0],[20270,20271,20119,0],[25999,20119,25885,0],[39017,25885,39020,0],[20124,20125,25997,0],[25997,20125,20126,0],[25997,20126,20127,0],[25987,20129,20131,0],[25987,20131,25986,0],[25986,20131,20130,0],[25886,25986,25887,0],[25907,25887,25888,0],[26026,25891,26014,0],[26014,25891,26015,0],[26015,25891,25892,0],[25892,25891,37589,0],[25894,25866,25895,0],[26022,25895,25883,0],[25897,21533,25898,0],[25897,25898,25899,0],[25898,26007,25899,0],[25902,25900,25901,0],[26019,25903,25924,0],[26019,25924,26016,0],[25906,25908,25907,0],[25887,25907,25908,0],[25909,25908,25922,0],[25985,25909,25910,0],[25910,25919,25983,0],[25983,25919,25981,0],[25981,25919,25911,0],[25981,25911,25978,0],[25912,25917,25913,0],[25976,25913,26013,0],[25924,26013,25916,0],[25916,25917,25923,0],[25923,25917,25918,0],[25923,25918,25920,0],[25919,25920,25911,0],[25911,25918,25978,0],[25920,25922,25923,0],[25923,25922,25921,0],[25923,25921,25905,0],[25920,25919,25922,0],[25921,25922,25908,0],[25921,25908,25906,0],[25921,25906,25905,0],[25919,25910,25922,0],[25922,25910,25909,0],[25923,25904,25916,0],[25916,25904,25924,0],[25904,26016,25924,0],[26013,25924,25914,0],[25914,25924,25915,0],[26018,25902,25903,0],[25903,25902,25925,0],[25903,25925,25926,0],[25926,25925,26012,0],[25926,26012,26000,0],[26000,26012,25965,0],[26000,25965,25927,0],[25927,25965,25929,0],[25929,25928,25962,0],[25929,25962,25975,0],[25977,25975,25930,0],[25977,25930,37521,0],[37521,25930,25931,0],[37519,25931,25932,0],[37394,25933,25967,0],[37394,25967,25934,0],[37394,25934,37393,0],[37393,25934,25935,0],[37431,25940,37429,0],[25941,37705,37427,0],[37427,37705,37425,0],[37426,25942,25943,0],[25943,25959,37666,0],[37666,21525,25943,0],[25943,25944,25945,0],[25945,25944,37674,0],[25945,37674,25946,0],[25946,37545,25947,0],[25947,25948,37490,0],[37490,25948,37493,0],[37493,25948,37526,0],[25950,37481,25954,0],[25954,37481,25951,0],[25954,25951,25955,0],[25954,25955,25953,0],[25953,25955,37482,0],[37482,25955,25952,0],[25947,37490,25946,0],[25943,25942,25958,0],[21526,25957,37699,0],[25957,21526,25956,0],[25958,25959,25943,0],[25959,25958,25956,0],[25942,37425,37704,0],[37704,37425,37705,0],[37708,25974,25973,0],[37708,25973,37709,0],[37709,25973,37710,0],[25961,37711,25966,0],[25961,25966,25930,0],[25930,25975,25961,0],[25961,25975,25962,0],[25964,25928,25965,0],[25965,25928,25929,0],[25928,25964,25963,0],[25963,25962,25928,0],[25966,25932,25931,0],[25966,25931,25930,0],[25933,25932,25967,0],[25934,25967,25972,0],[25972,25967,25960,0],[25940,25960,37713,0],[25940,37713,37710,0],[25940,37710,25968,0],[25968,37710,25973,0],[25968,25973,25969,0],[25969,25973,25970,0],[25941,25970,25974,0],[25941,25974,37705,0],[25969,37429,25968,0],[25968,37429,25940,0],[25971,25940,37431,0],[37431,25939,25971,0],[25940,25971,25960,0],[25960,25971,25972,0],[25972,25936,25935,0],[25936,25972,25937,0],[25937,25972,25938,0],[25972,25971,25938,0],[25970,25973,25974,0],[25960,25967,25932,0],[25929,25975,25976,0],[25929,25976,25927,0],[25927,25976,26013,0],[25913,25976,25977,0],[25977,25976,25975,0],[25912,25913,37523,0],[25912,37522,25978,0],[25978,37522,37520,0],[37399,25979,37395,0],[37395,37520,25980,0],[37519,25932,25933,0],[25978,37520,25981,0],[25982,37381,25983,0],[25983,37381,25984,0],[25983,25984,25910,0],[25985,25984,25986,0],[25985,25986,25886,0],[20129,25987,20127,0],[25997,20127,37385,0],[25997,37385,25988,0],[25996,25988,25989,0],[39031,25991,39030,0],[39030,37571,25992,0],[25992,37571,37411,0],[25992,37411,37412,0],[25992,37412,25993,0],[25993,37412,37570,0],[25993,37570,20115,0],[20115,37570,20442,0],[25991,39031,25990,0],[25995,39017,39020,0],[39020,20123,25995,0],[25998,25996,25994,0],[25994,25996,25990,0],[25990,25996,25989,0],[25996,25997,25988,0],[20123,20124,25998,0],[20123,25998,25995,0],[25996,25998,20124,0],[25996,20124,25997,0],[25994,25995,25998,0],[25885,39017,25999,0],[25999,39018,20118,0],[20118,39018,20117,0],[25910,25984,25985,0],[25985,25886,25909,0],[25909,25886,25887,0],[25909,25887,25908,0],[25982,25983,25981,0],[37520,25979,25981,0],[26000,25927,25926,0],[25927,26013,25914,0],[25927,25914,25926,0],[25926,25914,25915,0],[25926,25915,25903,0],[25925,25902,25901,0],[25925,25901,26001,0],[25925,26001,26012,0],[26012,26001,26011,0],[26011,26001,26002,0],[26011,26002,26006,0],[26006,26003,26004,0],[26004,26003,21530,0],[26004,21530,37698,0],[21527,37698,26005,0],[21530,26003,21532,0],[21532,26003,25827,0],[25827,26003,26008,0],[25827,26008,26007,0],[26007,26009,25899,0],[21530,21529,26005,0],[21530,26005,37698,0],[26002,26010,26006,0],[26006,26010,26008,0],[26006,26008,26003,0],[26008,26009,26007,0],[26008,26010,26009,0],[25899,26009,25900,0],[25900,26009,25901,0],[25901,26009,26010,0],[26010,26002,25901,0],[25901,26002,26001,0],[26012,26011,37707,0],[25965,37707,25964,0],[37707,25965,26012,0],[25903,25915,25924,0],[25904,25923,25905,0],[25911,25920,25918,0],[25918,25917,25912,0],[25913,25917,25916,0],[25918,25912,25978,0],[25916,26013,25913,0],[25906,26026,26014,0],[25906,26014,25905,0],[25905,26014,26015,0],[25905,26015,25904,0],[26020,26016,25892,0],[26020,37589,26017,0],[25894,26017,25893,0],[26017,25894,39022,0],[39022,25902,26018,0],[26019,26018,25903,0],[26020,26019,26016,0],[26018,26019,26017,0],[26018,26017,39022,0],[26020,26017,26019,0],[26015,25892,25904,0],[25904,25892,26016,0],[25893,26017,37589,0],[37589,26020,25892,0],[26021,26022,25883,0],[25883,25896,26021,0],[25902,26021,25900,0],[25900,26021,25896,0],[25900,25896,25899,0],[25902,39022,26021,0],[26021,39022,26022,0],[25884,25897,25896,0],[25899,25896,25897,0],[25891,26026,26023,0],[25891,26023,26024,0],[25870,26024,25871,0],[26023,26025,25872,0],[25872,25890,25873,0],[25873,25890,37587,0],[37587,25890,25889,0],[26025,25890,25872,0],[25872,25871,26024,0],[25872,26024,26023,0],[25890,26025,25907,0],[26025,26026,25907,0],[26026,26025,26023,0],[26026,25906,25907,0],[25887,25986,25888,0],[25888,25986,37524,0],[20124,20123,20383,0],[26027,37579,20110,0],[26027,20110,20109,0],[26028,20441,48725,0],[20441,26028,20440,0],[20440,26028,20108,0],[20108,26028,20112,0],[20107,20440,20108,0],[26188,20107,20109,0],[26188,20109,20110,0],[26184,26029,20099,0],[20099,26029,37555,0],[37555,20097,20099,0],[26029,26184,20106,0],[20106,20111,26029,0],[26029,20111,26038,0],[26038,20111,26030,0],[26030,37577,26031,0],[26178,26031,37578,0],[26178,37578,26032,0],[26032,37578,26174,0],[26032,26170,26033,0],[20095,26033,26034,0],[20095,26034,26035,0],[26035,20093,20094,0],[26035,20094,20095,0],[26036,20096,26178,0],[20096,26037,26178,0],[26178,26037,26038,0],[26178,26038,26031,0],[20093,26176,48671,0],[26044,26039,26040,0],[26040,26039,20088,0],[20087,20088,26053,0],[20087,26053,26041,0],[20086,26041,26042,0],[26042,26043,26194,0],[26194,26043,20083,0],[20083,26043,20082,0],[26040,20089,26044,0],[26044,20089,20091,0],[26176,20093,48669,0],[26034,26045,26046,0],[26046,26045,26167,0],[26046,26167,26120,0],[26046,26123,48667,0],[48667,26123,26048,0],[26047,26048,26157,0],[26157,26073,26049,0],[26049,26072,26050,0],[26051,26052,26053,0],[26053,26052,26054,0],[26053,26054,26041,0],[26041,26054,26042,0],[26042,26054,26043,0],[26043,26054,26069,0],[26043,26069,36141,0],[36143,26064,26055,0],[26055,26064,26065,0],[48690,36154,26056,0],[26056,36154,26057,0],[20074,26057,26058,0],[26058,48682,26060,0],[26060,48682,48689,0],[26060,48689,26059,0],[26060,26059,20069,0],[26061,26063,26062,0],[26058,26062,20074,0],[26061,26062,26058,0],[26061,26058,26060,0],[26062,26063,20074,0],[20069,26061,26060,0],[26065,26064,26068,0],[26065,26068,48665,0],[48665,48692,48693,0],[48693,48692,26066,0],[26066,26067,26052,0],[36143,26067,26068,0],[26068,26064,36143,0],[26067,36143,26069,0],[26067,26069,26054,0],[26068,48692,48665,0],[48692,26068,26067,0],[26051,26053,20088,0],[20088,26039,26051,0],[26051,26039,26070,0],[26070,26177,26050,0],[26050,26177,26071,0],[26047,26071,26048,0],[26050,26071,26047,0],[26050,26047,26049,0],[26049,26047,26157,0],[26039,26177,26070,0],[26051,26070,26072,0],[26051,26072,26052,0],[26052,26072,26066,0],[26070,26050,26072,0],[26149,26148,26150,0],[26149,26150,26166,0],[26149,26166,39707,0],[39707,26166,26075,0],[39706,26075,26076,0],[39704,26076,26165,0],[39704,26165,39708,0],[39708,26165,26077,0],[39708,26077,39710,0],[39710,26077,48673,0],[39710,48673,39712,0],[39712,48673,26158,0],[26158,26152,26078,0],[26091,26092,26080,0],[26080,26089,39695,0],[39695,26081,39684,0],[39684,26081,37515,0],[26083,26082,26084,0],[26083,26084,26085,0],[37566,26084,48735,0],[37566,48735,26086,0],[26090,26088,26089,0],[26090,26089,26080,0],[26090,26080,26092,0],[26092,26091,26093,0],[26100,26102,26162,0],[26162,26102,26094,0],[26162,26094,26095,0],[26097,26096,37518,0],[26086,26097,37518,0],[26099,26100,26098,0],[26092,26093,26098,0],[26098,26093,26099,0],[26100,26162,26098,0],[26093,26091,26159,0],[26093,26159,26138,0],[26093,26138,26099,0],[26100,26099,26139,0],[26139,26142,26100,0],[26100,26142,26101,0],[26100,26101,26102,0],[48696,48695,26103,0],[26103,48727,26104,0],[37496,26104,26141,0],[37496,26141,26105,0],[37496,26105,37499,0],[26106,26105,37563,0],[37422,26108,37413,0],[37422,37413,37421,0],[37414,37421,39028,0],[26109,26127,26110,0],[26110,26111,26180,0],[26181,26111,26112,0],[26181,26112,26179,0],[48726,26113,26126,0],[48726,26126,26114,0],[26168,26125,26115,0],[26122,26119,26124,0],[26122,26124,26123,0],[26120,26121,26117,0],[26120,26117,26122,0],[26117,26121,26115,0],[26120,26122,26123,0],[26046,26120,26123,0],[26124,26119,26118,0],[26048,26123,26124,0],[26125,26114,26126,0],[26114,26125,26168,0],[26109,37407,26127,0],[26110,26127,26108,0],[37413,26108,26127,0],[26110,26108,26111,0],[26111,26108,26107,0],[26111,26107,26128,0],[26128,26107,26106,0],[26106,37563,26128,0],[26128,37563,37557,0],[26128,37557,37562,0],[37562,48694,26131,0],[26129,26126,26130,0],[26130,26126,26113,0],[26112,26113,26179,0],[48694,26129,26131,0],[37562,26131,26128,0],[26132,48727,26103,0],[26132,26103,48695,0],[26132,48695,26094,0],[26091,26079,26133,0],[26133,26152,26134,0],[26134,26135,26145,0],[26145,26135,26154,0],[26145,26154,26136,0],[26145,26136,26137,0],[26099,26138,26139,0],[26139,26138,26140,0],[26139,26140,26144,0],[26142,26144,37558,0],[48734,26141,26104,0],[26101,26142,26143,0],[48734,26143,26141,0],[26144,26142,26139,0],[26138,26137,26140,0],[26079,26078,26133,0],[26133,26078,26152,0],[26134,26152,26135,0],[26147,26165,26150,0],[26151,26155,26146,0],[26151,26146,26147,0],[26150,26151,26147,0],[26135,26152,26146,0],[26146,26152,26153,0],[26147,26146,26153,0],[26147,26153,26077,0],[26147,26077,26165,0],[26152,26158,26153,0],[26117,26154,26122,0],[26136,37564,37565,0],[26137,37565,26140,0],[37565,26137,26136,0],[26135,26146,26154,0],[26154,26146,26155,0],[26154,26155,26122,0],[26122,26155,26119,0],[26119,26155,26151,0],[26119,26151,26118,0],[26118,26151,26148,0],[26151,26150,26148,0],[26118,26148,26156,0],[26124,26156,26048,0],[26048,26156,26157,0],[26073,26157,26074,0],[26074,26157,26149,0],[26156,26124,26118,0],[26156,26148,26157,0],[26157,26148,26149,0],[26091,26133,26159,0],[26133,26134,26160,0],[26133,26160,26159,0],[26145,26160,26134,0],[26160,26145,26137,0],[26160,26137,26159,0],[26159,26137,26138,0],[26090,26161,26088,0],[26088,26161,26087,0],[26087,26161,26097,0],[26097,26161,26095,0],[26097,26095,26096,0],[26095,26161,26162,0],[26098,26162,26161,0],[26098,26161,26092,0],[26092,26161,26090,0],[26082,48735,26084,0],[39695,26089,26081,0],[26081,26082,37515,0],[26082,26164,26163,0],[26164,26082,26081,0],[26081,26089,26164,0],[26089,26088,26164,0],[26086,26163,26097,0],[26097,26163,26087,0],[26087,26163,26088,0],[26088,26163,26164,0],[26165,26076,26166,0],[26165,26166,26150,0],[26166,26076,26075,0],[20093,26035,48669,0],[48669,26035,26034,0],[26045,26169,26167,0],[26168,26169,26171,0],[26168,26171,26114,0],[26169,26168,26167,0],[26168,26115,26121,0],[26168,26121,26167,0],[26167,26121,26120,0],[26169,26045,26170,0],[26170,26171,26169,0],[26034,26033,26045,0],[26045,26033,26170,0],[26171,26174,26175,0],[26114,26175,48726,0],[26175,26114,26171,0],[26173,26174,37578,0],[26172,37581,26113,0],[26113,37581,26179,0],[26173,26172,26175,0],[26173,26175,26174,0],[26170,26174,26171,0],[26174,26170,26032,0],[48671,26176,26177,0],[26039,26044,26177,0],[26177,26044,48671,0],[26177,26176,48670,0],[26177,48670,26071,0],[26178,26032,26033,0],[26178,26033,26036,0],[26036,26033,20095,0],[26179,37581,37582,0],[26179,37582,37574,0],[26179,37574,26181,0],[26181,37574,26180,0],[26180,37568,26110,0],[26110,37568,26109,0],[26029,26037,37555,0],[26182,26183,26184,0],[26184,20099,20101,0],[26186,20106,26185,0],[26185,20106,26184,0],[26183,26185,26184,0],[26183,20104,26185,0],[26185,20104,20105,0],[26185,20105,26186,0],[26186,20105,26187,0],[26186,26187,26188,0],[20103,26182,20102,0],[20102,26182,20101,0],[26182,26184,20101,0],[20096,20097,37555,0],[20094,26190,26191,0],[20096,26191,26192,0],[26192,26193,20454,0],[20092,26193,26190,0],[26190,26193,26192,0],[20084,20086,26194,0],[26194,20086,26042,0],[26194,20083,20084,0],[7933,26197,7949,0],[48664,7950,26197,0],[26197,7933,26198,0],[26197,26198,48664,0],[48664,26198,26195,0],[26198,26314,26195,0],[48664,26195,26199,0],[26199,26200,26201,0],[48662,26201,26315,0],[48662,26315,20076,0],[7928,7930,7943,0],[7943,7930,7946,0],[7930,7931,7946,0],[26211,47718,47721,0],[26204,47721,26203,0],[26204,26203,7921,0],[26208,26205,7919,0],[26208,7919,26206,0],[26206,26220,26221,0],[26210,26207,26222,0],[26345,26224,7925,0],[26206,26221,26208,0],[26208,26207,26209,0],[26209,26207,26210,0],[26213,26210,26345,0],[26213,26345,7925,0],[26207,26208,26221,0],[26205,26208,26209,0],[47721,26204,26211,0],[26211,26204,7937,0],[7937,26204,26212,0],[26210,26212,26209,0],[26209,26212,7921,0],[26204,7921,26212,0],[7937,26212,26213,0],[26213,26212,26210,0],[26211,7937,47718,0],[39955,7917,7918,0],[39955,7918,26214,0],[39955,26214,39954,0],[7921,26214,26215,0],[7920,26215,7918,0],[7917,39955,39958,0],[39958,7916,7917,0],[7916,7915,7917,0],[7915,7914,26216,0],[26216,26260,26217,0],[26217,7919,7918,0],[26205,7920,7919,0],[7920,26205,7921,0],[26209,7921,26205,0],[26206,7919,26217,0],[26206,26217,26260,0],[26218,26260,26216,0],[26218,26216,7914,0],[26206,26260,26219,0],[26206,26219,26220,0],[26207,26265,26222,0],[26226,7926,26306,0],[26226,26306,7929,0],[7929,26306,26294,0],[7929,26294,26227,0],[26228,26229,26329,0],[26331,26229,26230,0],[26230,26229,26297,0],[26230,26297,26298,0],[26342,26298,26231,0],[26342,26231,26232,0],[26338,26301,26289,0],[26288,26289,26290,0],[26288,26290,26284,0],[26284,26290,26233,0],[26271,26269,26287,0],[26270,26234,26241,0],[26241,26240,26236,0],[26236,26240,26283,0],[26237,26236,26238,0],[26238,7269,36937,0],[7269,26238,26239,0],[26283,26239,26236,0],[26241,26234,26240,0],[26240,26234,26242,0],[7217,26242,26278,0],[7217,26278,26279,0],[26250,26244,26245,0],[26245,26244,26257,0],[26245,26257,26246,0],[47709,26246,26247,0],[47709,26247,26248,0],[26248,26247,26277,0],[26248,26277,7900,0],[26248,7900,26357,0],[26248,26357,26249,0],[7890,26249,7889,0],[26248,26249,47709,0],[26279,26243,7707,0],[7707,26243,26250,0],[7707,26250,7706,0],[7706,26250,26251,0],[26250,7215,26251,0],[26251,7215,7216,0],[7216,7729,26251,0],[26278,26252,47717,0],[26253,26268,26254,0],[26255,26267,26272,0],[26255,26272,26264,0],[26255,26263,26281,0],[26280,26281,26256,0],[26275,26256,26258,0],[26275,26258,26257,0],[26257,26258,26259,0],[26259,26258,26260,0],[26259,26260,26218,0],[26260,26266,26219,0],[26219,26266,26262,0],[26219,26262,26220,0],[26221,26220,26261,0],[26261,26220,26262,0],[26261,26262,26281,0],[26261,26281,26263,0],[26264,26273,26222,0],[26222,26273,26223,0],[26264,26222,26265,0],[26221,26261,26265,0],[26221,26265,26207,0],[26261,26264,26265,0],[26264,26261,26263,0],[26256,26281,26262,0],[26262,26266,26256,0],[26256,26266,26258,0],[26258,26266,26260,0],[26255,26254,26268,0],[26255,26268,26267,0],[26267,26268,26269,0],[26269,26253,26270,0],[26270,26253,26252,0],[26270,26252,26234,0],[26234,26252,26242,0],[26270,26287,26269,0],[26267,26271,26272,0],[26272,26271,26308,0],[26272,26308,26273,0],[26272,26273,26264,0],[26267,26269,26271,0],[26279,26274,26244,0],[26246,26257,26259,0],[26246,26259,26276,0],[26246,26276,26247,0],[26247,26276,7913,0],[26247,7913,26277,0],[26277,7902,7901,0],[26257,26244,26275,0],[26274,26279,26278,0],[26274,26278,47717,0],[26243,26279,26244,0],[26243,26244,26250,0],[7900,26277,7901,0],[7913,26276,26218,0],[26259,26218,26276,0],[26275,26282,26256,0],[26256,26282,26280,0],[26281,26280,26254,0],[26281,26254,26255,0],[26274,26282,26244,0],[47717,26252,26253,0],[26242,7217,26283,0],[26283,7218,26239,0],[26236,26239,26238,0],[26285,26286,26235,0],[26285,26235,36932,0],[26236,26237,26241,0],[26241,26237,36932,0],[26241,36932,26235,0],[26235,26286,26287,0],[26235,26287,26241,0],[26241,26287,26270,0],[26286,26271,26287,0],[26284,26233,26286,0],[26286,26233,26271,0],[26290,26289,26291,0],[26290,26291,26292,0],[26227,26294,26295,0],[26228,26295,26296,0],[26228,26296,26229,0],[26229,26296,26297,0],[26297,26296,48750,0],[26297,48750,26298,0],[26289,26300,26291,0],[26289,26301,26300,0],[26300,26301,26299,0],[26299,26301,26231,0],[26231,26301,26232,0],[26298,48750,26231,0],[26231,48750,26299,0],[26300,26299,26302,0],[26300,26302,26304,0],[26304,26293,26303,0],[26293,26309,26303,0],[26303,26309,26307,0],[26303,26307,26304,0],[26307,26300,26304,0],[26307,26292,26300,0],[26292,26291,26300,0],[26304,26302,26305,0],[26228,26227,26295,0],[26294,26306,26293,0],[26293,26306,26225,0],[26225,26306,7926,0],[26293,26225,26309,0],[26309,26223,26307,0],[26307,26223,26273,0],[26307,26273,26292,0],[26292,26273,26308,0],[26292,26308,26233,0],[26292,26233,26290,0],[26308,26271,26233,0],[26223,26309,26224,0],[7929,26227,7928,0],[7928,26227,47716,0],[26313,26201,26200,0],[26313,26200,26314,0],[26312,26310,26311,0],[26312,26321,26201,0],[26312,26201,26313,0],[26313,26344,26312,0],[26314,26200,26195,0],[26195,26200,26199,0],[20076,26315,20077,0],[20077,26315,26316,0],[20077,26316,20079,0],[20079,26316,26317,0],[36104,26317,26316,0],[36104,26316,26318,0],[26318,26316,26319,0],[26318,26319,26321,0],[26319,26316,26315,0],[26315,26201,26319,0],[26312,26311,26320,0],[26321,26319,26201,0],[26318,26321,26320,0],[36106,26320,36105,0],[36105,26311,26328,0],[36105,26328,36107,0],[36107,26328,48700,0],[36107,48701,26322,0],[36108,26322,26323,0],[36108,26323,36109,0],[36109,26323,26324,0],[36110,26324,26325,0],[26327,26326,7372,0],[26327,7372,7371,0],[36105,26320,26311,0],[26333,26328,26329,0],[26333,26329,26341,0],[26341,26329,26331,0],[26341,26331,26330,0],[26339,26330,26230,0],[26230,26330,26331,0],[26229,26331,26329,0],[26329,26328,26332,0],[26332,26328,26311,0],[26332,26228,26329,0],[26311,26310,26332,0],[26328,26333,48700,0],[26335,26334,26326,0],[26335,26326,26325,0],[7372,26334,7379,0],[7379,26334,26340,0],[7378,26340,26339,0],[26343,26339,26230,0],[26343,26230,26298,0],[26343,26298,26342,0],[26336,26337,7679,0],[7679,26337,7684,0],[26232,26301,26336,0],[26301,26338,26336,0],[26336,26338,26337,0],[7678,26337,26338,0],[7678,26338,36933,0],[36933,26338,26289,0],[36933,26289,26288,0],[26330,26339,26340,0],[26330,26340,26341,0],[26341,26340,26334,0],[26326,26334,7372,0],[26333,26341,48700,0],[48700,26341,26334,0],[26232,7377,26342,0],[26232,26336,7377,0],[7377,26336,7376,0],[7376,26336,7679,0],[26335,26325,26324,0],[7928,47716,7930,0],[47716,26310,7930,0],[7930,26310,26344,0],[26223,26345,26210,0],[26223,26224,26345,0],[7925,26224,7926,0],[7926,26224,26225,0],[26223,26210,26222,0],[7903,7914,26346,0],[7916,26354,26346,0],[26354,7916,26355,0],[26354,26355,26353,0],[26353,26355,26347,0],[26347,26348,26353,0],[26353,26348,26351,0],[26353,26351,26352,0],[26349,26351,26348,0],[26353,26352,26354,0],[26354,26352,7903,0],[26355,7916,20029,0],[26355,20029,26356,0],[39957,26356,20029,0],[39958,20029,7916,0],[7887,7888,26358,0],[7887,26358,26357,0],[7888,7889,26358,0],[7886,7887,26357,0],[7886,26357,26362,0],[26360,7901,7902,0],[7902,7907,26360,0],[26360,7907,26359,0],[26360,26359,19366,0],[26360,19366,19782,0],[26360,19782,47710,0],[26360,47710,26361,0],[26362,26361,26363,0],[7886,26363,47711,0],[7886,47711,7885,0],[19366,26359,19781,0],[26363,7886,26362,0],[26361,26362,7901,0],[26361,7901,26360,0],[47712,7895,7894,0],[7894,7895,7893,0],[7894,7893,26365,0],[26364,26365,7887,0],[26365,26364,7894,0],[26365,7892,7888,0],[7888,7892,7889,0],[7892,26365,7893,0],[47691,7207,26366,0],[26368,26367,26374,0],[26368,26374,26375,0],[26368,26375,26369,0],[42954,26371,7142,0],[7142,26371,26384,0],[7142,26384,7126,0],[7206,26372,26366,0],[26366,26372,26373,0],[26380,26386,47692,0],[26380,47692,26377,0],[26380,26377,26376,0],[26380,26376,7197,0],[42952,7197,26376,0],[7198,26377,26378,0],[26378,26388,7200,0],[7200,26388,7201,0],[7200,26379,26378,0],[26378,26379,7199,0],[26378,7199,7198,0],[26377,7198,26376,0],[26381,26382,26383,0],[26371,26370,26384,0],[26370,26369,26383,0],[26383,26369,26381,0],[7197,7126,26383,0],[26384,26370,26383,0],[26384,26383,7126,0],[7197,26383,26382,0],[7197,26382,26380,0],[26380,26382,26385,0],[26385,26382,26381,0],[26385,26381,26375,0],[26385,26386,26380,0],[26381,26369,26375,0],[26374,26367,26373,0],[26373,26367,26366,0],[7206,26366,7207,0],[26386,26385,26373,0],[26386,26373,26387,0],[26387,26373,26372,0],[26377,47692,47694,0],[26377,47694,26388,0],[26388,47694,47695,0],[26388,47695,7201,0],[26377,26388,26378,0],[26385,26375,26374,0],[47693,7204,7203,0],[7204,47693,7205,0],[47693,26387,7205,0],[7205,26387,26372,0],[26386,26387,47692,0],[7199,26389,7198,0],[34812,7180,26390,0],[34812,26390,7194,0],[26390,42953,7194,0],[26392,42945,7119,0],[26392,7122,26391,0],[26391,7122,34810,0],[26391,26394,7194,0],[26393,26394,34810,0],[34810,26394,26391,0],[42953,42950,26395,0],[42947,26391,26395,0],[42953,26395,7194,0],[7194,26395,26391,0],[7143,26396,7119,0],[26403,26396,7111,0],[26397,7111,7144,0],[42948,12677,26398,0],[26398,12677,12680,0],[12680,34397,26398,0],[26398,34397,26428,0],[26398,26428,26430,0],[26398,26430,42948,0],[42948,26430,7110,0],[12676,12680,12677,0],[26397,7144,7145,0],[26397,7145,7110,0],[7145,26399,42948,0],[42948,26399,12677,0],[7115,7114,26400,0],[26401,7108,26400,0],[26400,7108,7115,0],[26426,7109,26402,0],[7112,26403,26402,0],[26402,26403,42949,0],[26402,42949,26426,0],[7114,7112,26400,0],[7112,26402,26400,0],[26400,26402,7109,0],[26400,7109,26401,0],[7105,7106,26404,0],[26405,26406,26432,0],[26406,26405,26404,0],[26404,7106,26406,0],[7105,26404,26407,0],[26418,34830,26408,0],[26409,26421,26413,0],[26413,26421,9119,0],[34804,26412,9237,0],[26410,26413,26411,0],[26409,26413,26414,0],[26419,26451,26415,0],[7101,26416,26456,0],[26416,7101,26420,0],[26416,26420,26415,0],[26418,26417,26407,0],[26418,26407,34830,0],[26451,26419,26414,0],[26418,26419,26417,0],[26417,26419,26415,0],[26418,26408,26419,0],[26419,26408,26414,0],[26414,26408,26409,0],[26420,7104,26407,0],[26407,26417,26420,0],[26420,26417,26415,0],[7103,26420,7101,0],[26435,26437,26422,0],[9118,26422,26423,0],[26423,26422,26424,0],[7109,26426,26425,0],[26425,26426,26427,0],[26427,26426,26428,0],[26428,34399,9112,0],[26428,9112,26429,0],[26424,26429,26423,0],[26423,26429,9114,0],[9112,34399,9110,0],[26427,26428,26429,0],[26428,26426,26430,0],[26425,26424,7109,0],[7109,26424,26437,0],[26421,26409,26431,0],[26431,26432,26436,0],[26436,26401,26437,0],[26401,26436,7108,0],[26405,34830,26404,0],[34830,26405,26433,0],[26432,26433,26405,0],[26436,26432,7108,0],[26432,26431,26434,0],[26408,26434,26409,0],[26409,26434,26431,0],[26421,26431,26435,0],[26437,26435,26436,0],[26436,26435,26431,0],[26422,26437,26424,0],[26407,26404,34830,0],[26439,26438,26440,0],[26439,26440,26445,0],[26441,26455,26442,0],[26442,26454,26446,0],[26446,26454,7094,0],[26446,7094,26443,0],[26444,26441,26442,0],[26441,26444,26445,0],[26445,26444,7095,0],[26445,7095,7096,0],[26439,26445,7718,0],[7718,26445,7097,0],[26443,26444,26446,0],[26446,26444,26442,0],[26445,26440,26441,0],[26441,26440,26447,0],[26447,26440,26448,0],[26448,26440,26438,0],[26448,26438,7100,0],[26448,7100,26449,0],[26449,7100,26456,0],[26452,48783,34802,0],[48778,26453,26410,0],[48778,26410,26411,0],[26451,26450,26415,0],[26415,26450,26416,0],[26439,7099,26438,0],[26438,7099,7132,0],[26438,7132,7102,0],[26438,7102,7100,0],[7093,26443,7094,0],[7092,7094,26465,0],[26465,7089,7090,0],[7092,26465,7091,0],[26465,7090,7091,0],[26454,26442,26462,0],[26462,26442,26455,0],[26457,26456,26450,0],[26457,26450,26460,0],[26458,26460,26459,0],[26458,26459,26452,0],[26452,26459,48783,0],[26459,26460,26451,0],[26451,26460,26450,0],[26450,26456,26416,0],[26455,26447,26461,0],[26455,26461,26462,0],[26463,26464,26466,0],[26464,7089,26465,0],[26466,26464,26454,0],[26466,26454,26462,0],[26447,26455,26441,0],[7094,26454,26465,0],[26465,26454,26464,0],[26444,26443,7095,0],[26528,26467,48763,0],[48763,26467,26529,0],[26468,26529,26538,0],[26468,26538,26469,0],[26468,26469,48762,0],[48762,26469,7750,0],[26470,35667,26501,0],[26501,35667,26471,0],[26471,35667,26504,0],[26504,35667,26472,0],[26504,26472,26473,0],[26473,26472,48835,0],[26473,26474,26503,0],[26854,26475,35246,0],[26853,35245,35241,0],[26853,35241,26852,0],[26852,35241,26851,0],[26851,35241,26493,0],[26861,26493,26476,0],[26860,26476,26492,0],[26492,26476,26477,0],[26492,26477,26488,0],[26488,26478,26490,0],[26479,26478,26489,0],[26479,26489,26480,0],[26479,26480,26862,0],[26481,35382,35224,0],[35224,35382,35378,0],[35275,35378,35377,0],[35275,35377,35225,0],[35225,35377,35321,0],[35225,35321,26482,0],[26478,26488,26477,0],[26476,26487,26477,0],[26480,26489,35384,0],[26480,35384,35279,0],[35279,35384,26481,0],[26479,26490,26478,0],[26488,26490,27413,0],[27413,26491,26488,0],[26488,26491,26492,0],[26492,26491,26860,0],[26493,26861,26850,0],[26850,26861,26494,0],[26495,35448,26496,0],[35448,35385,26558,0],[26498,26554,26555,0],[26507,26500,26506,0],[26506,26500,26499,0],[26506,26499,26561,0],[26856,26502,26503,0],[26471,26504,26502,0],[26502,26504,26473,0],[26502,26473,26503,0],[26502,26507,26471,0],[26470,26501,26550,0],[26505,26550,26501,0],[26506,26505,26507,0],[26505,26471,26507,0],[26550,26505,26506,0],[35668,26470,26508,0],[35668,26508,26509,0],[26509,26508,26510,0],[26509,26510,35661,0],[35661,26510,26511,0],[26512,26513,35657,0],[35657,26513,26515,0],[35657,26515,35656,0],[35656,26515,26514,0],[26513,26510,26508,0],[26508,26470,26516,0],[26516,26550,26515,0],[26515,26550,26514,0],[35662,35656,26564,0],[35662,26564,35651,0],[35651,26845,35665,0],[35665,26845,26846,0],[35665,26846,26754,0],[35665,26754,26517,0],[35665,26517,26518,0],[26518,26520,35664,0],[35664,26520,35663,0],[26521,35676,26522,0],[35673,26522,35675,0],[35673,35675,48767,0],[35673,48767,35672,0],[35672,48767,26523,0],[26525,48802,26526,0],[26526,26537,26527,0],[26527,26467,26528,0],[26529,26467,26527,0],[26529,26527,26537,0],[26541,26534,26539,0],[48766,26533,26539,0],[48766,26539,26534,0],[26534,26535,48766,0],[26536,26526,48802,0],[26529,26537,26538,0],[26541,26539,26540,0],[26540,26532,26531,0],[26532,26540,48768,0],[48768,26540,26533,0],[26533,26540,26539,0],[26530,26538,26535,0],[26530,26535,26534,0],[26536,26535,26537,0],[26536,26537,26526,0],[26537,26535,26538,0],[26538,26530,26469,0],[7751,26469,26542,0],[26541,7753,26542,0],[26542,7753,7751,0],[26469,26530,26542,0],[26530,26534,26542,0],[26542,26534,26541,0],[26541,26531,7745,0],[26531,26532,7755,0],[7755,26532,7744,0],[7744,26532,26543,0],[7744,26543,26544,0],[26544,26543,48769,0],[26544,48769,48770,0],[26544,48770,26545,0],[26718,26545,26546,0],[35682,26547,26548,0],[35680,26548,48772,0],[35680,48772,48771,0],[48767,48764,26523,0],[26523,48764,48765,0],[26543,26532,48768,0],[26528,7084,26527,0],[26527,7084,7082,0],[26527,7082,26526,0],[26526,7082,26549,0],[26526,26549,26525,0],[7084,7083,7082,0],[48802,26524,26536,0],[26516,26470,26550,0],[26514,26550,26551,0],[26551,26559,26552,0],[26565,26563,26553,0],[26554,26553,26555,0],[35457,26556,26557,0],[26496,26558,26556,0],[26556,26558,26557,0],[26496,26556,26497,0],[26563,26552,26559,0],[26563,26559,26561,0],[26499,26560,26561,0],[26561,26562,26563,0],[26563,26562,26553,0],[26553,26562,26555,0],[26555,26562,26560,0],[26560,26562,26561,0],[26514,26551,35656,0],[35656,26551,26564,0],[26564,26552,26845,0],[26845,26552,26565,0],[26846,26565,26844,0],[26846,26844,26750,0],[26566,26844,26567,0],[26567,26841,26568,0],[35691,26570,35446,0],[35691,35446,26571,0],[26571,35650,26588,0],[26588,35650,26572,0],[26573,26572,35442,0],[26573,35442,26574,0],[35649,35519,26575,0],[26575,35519,26576,0],[26576,35519,35518,0],[26576,35518,26577,0],[26576,26822,26575,0],[26575,26822,26579,0],[26575,26579,26839,0],[26839,26579,35690,0],[35690,26578,26588,0],[26578,26579,26586,0],[26586,26579,26587,0],[26587,26579,26822,0],[26587,26822,26826,0],[35685,26826,26580,0],[26582,35684,26581,0],[26585,26586,26587,0],[26589,26580,26836,0],[26589,26836,26699,0],[26699,26836,26590,0],[26698,26590,26830,0],[26697,26830,26831,0],[26697,26831,26695,0],[26591,36854,26694,0],[26693,26592,36856,0],[26593,36851,26594,0],[26594,36851,26595,0],[26594,26595,26596,0],[26596,26595,36845,0],[36847,36846,36859,0],[36859,36846,26597,0],[26776,26598,36858,0],[26776,36858,26775,0],[26775,36857,26599,0],[26601,26600,36838,0],[26602,36837,26793,0],[26793,36837,26794,0],[26794,36837,26603,0],[26603,26604,26802,0],[26802,26604,35540,0],[26802,35540,26801,0],[26801,35540,35541,0],[26801,35541,26605,0],[26605,35541,26606,0],[26607,49516,35549,0],[26617,26607,26608,0],[26610,35582,35583,0],[26610,35583,36672,0],[36672,35583,36674,0],[36664,26611,26612,0],[26612,26613,36677,0],[26616,36678,26614,0],[26616,26614,35732,0],[26616,35732,26615,0],[26612,35734,36676,0],[26616,26615,35734,0],[26616,35734,26612,0],[26616,26612,36677,0],[26616,36677,36678,0],[26608,26609,26617,0],[26617,26609,36667,0],[26617,36667,36668,0],[26617,36668,26618,0],[26621,26619,36825,0],[26621,36825,26620,0],[26621,26606,26622,0],[26619,26621,26618,0],[26619,26618,36669,0],[26621,26622,26618,0],[26607,26617,26622,0],[26607,26622,49516,0],[26618,26622,26617,0],[26600,26601,26599,0],[26599,26601,26623,0],[26623,26601,26624,0],[26623,26624,26625,0],[26625,26777,36859,0],[26626,36859,26778,0],[26626,26778,26627,0],[26690,26774,26628,0],[26688,26628,26632,0],[26688,26632,26629,0],[35716,7849,26630,0],[26630,7849,26631,0],[26631,7849,7847,0],[7850,7849,35716,0],[7851,26629,26632,0],[48756,26634,48757,0],[48757,26634,26774,0],[26682,26633,26627,0],[26774,26686,26633,0],[26774,26633,48757,0],[26628,26774,26634,0],[26628,26634,26632,0],[26627,26633,26686,0],[7851,26632,7852,0],[7852,26632,26640,0],[26635,26640,26636,0],[26638,7853,26635,0],[7852,26640,7853,0],[7853,26640,26635,0],[26638,26637,26639,0],[26639,26637,26663,0],[26663,26637,26641,0],[26663,26641,26786,0],[26643,48786,26644,0],[26645,26644,26646,0],[26645,26646,26676,0],[26676,26646,26810,0],[26675,26811,26812,0],[26675,26812,26677,0],[26677,26812,26648,0],[26648,26647,26673,0],[26673,26647,26649,0],[26650,26651,26652,0],[26653,26671,26652,0],[26653,26654,36894,0],[26653,36894,26656,0],[26655,26656,36890,0],[26655,36890,26670,0],[26670,36890,36888,0],[26668,36888,36891,0],[26668,36891,7249,0],[26668,7249,7247,0],[26671,26653,26656,0],[26671,26656,26655,0],[26671,26655,26670,0],[26658,26657,26668,0],[26658,26668,26669,0],[26658,26669,26678,0],[36887,7246,7244,0],[26645,36886,26659,0],[26645,26659,26644,0],[26644,26659,26643,0],[26643,26659,7242,0],[26643,7242,26660,0],[26667,26660,26661,0],[26661,26662,26786,0],[26786,26662,26663,0],[26665,7854,7853,0],[26638,26665,7853,0],[26665,26664,26666,0],[26666,26664,7239,0],[26661,26786,26642,0],[26661,26642,26667,0],[26667,48786,26643,0],[26643,26660,26667,0],[7242,26659,7243,0],[7243,26659,36900,0],[36900,26659,36886,0],[36900,36886,7244,0],[26657,26674,26668,0],[7247,26669,26668,0],[36888,26668,26674,0],[36888,26674,26670,0],[26652,26671,26670,0],[26652,26670,26650,0],[26650,26670,26672,0],[26673,26672,26658,0],[26658,26672,26657,0],[26674,26657,26672,0],[26650,26672,36797,0],[36797,26672,26673,0],[26649,36797,26673,0],[26648,26673,26677,0],[26811,26675,26676,0],[26677,26678,26675,0],[26673,26658,26677,0],[26658,26678,26677,0],[26637,26638,26636,0],[26636,26638,26635,0],[26640,48756,26636,0],[26636,48756,26679,0],[26636,26679,26637,0],[26637,26679,26680,0],[26641,26680,26681,0],[48758,26681,26682,0],[26633,26680,48757,0],[26632,26634,26640,0],[26640,26634,48756,0],[26679,48756,48757,0],[26679,48757,26680,0],[26629,35720,26688,0],[26688,35720,26683,0],[26683,35720,26684,0],[26683,26684,26689,0],[26690,26692,26594,0],[26690,26594,26685,0],[26685,26691,26686,0],[26686,26691,26627,0],[26685,26686,26774,0],[26685,26774,26690,0],[26690,26628,26687,0],[26687,26628,26688,0],[26688,26683,26687,0],[26683,26689,26687,0],[26687,26689,26690,0],[26690,26689,48789,0],[26692,26690,48789,0],[26627,26691,26626,0],[26626,26691,36847,0],[36847,26691,36845,0],[36845,26691,26596,0],[26593,26692,36856,0],[36856,26692,26693,0],[26592,26693,26694,0],[26695,26591,26696,0],[26696,26591,26694,0],[26696,26694,26773,0],[26696,26697,26695,0],[26699,26590,26698,0],[26694,26693,26700,0],[26700,48790,26773,0],[26773,48790,48788,0],[26701,48788,26702,0],[26703,26704,35717,0],[26703,35717,26705,0],[26703,26705,26706,0],[26703,26706,26744,0],[26744,26706,35687,0],[26744,35687,26707,0],[26708,26710,26767,0],[26709,26710,48773,0],[26714,48794,26712,0],[26714,26712,26713,0],[26714,26713,26740,0],[26714,26740,26715,0],[26716,26715,7743,0],[26547,26718,26546,0],[26545,26718,26716,0],[26545,26716,26544,0],[26547,26717,26718,0],[26544,26716,7744,0],[26715,26716,26718,0],[26715,26718,26714,0],[26718,26717,26714,0],[26714,26717,48794,0],[26720,26719,26721,0],[7867,26723,26724,0],[7867,26724,7863,0],[7863,26724,7868,0],[7868,26724,26725,0],[26725,26724,26722,0],[26722,26724,26723,0],[26725,26726,7862,0],[7861,7862,35723,0],[7867,7864,26723,0],[7864,26742,26723,0],[26723,26727,26722,0],[26722,26727,26730,0],[26730,26727,26728,0],[26730,26728,26721,0],[26720,26721,26729,0],[26720,26729,35686,0],[35686,26729,35688,0],[26721,35726,26730,0],[26730,35726,26722,0],[26738,26732,26741,0],[26738,26741,7740,0],[7740,26741,26733,0],[26735,26736,7742,0],[7740,26737,26738,0],[26738,26737,48796,0],[26740,48796,26715,0],[26732,26738,26713,0],[26713,26738,26740,0],[48796,26740,26738,0],[26732,26713,26731,0],[26731,26712,26739,0],[26731,26713,26712,0],[26739,26712,48794,0],[7740,26734,26737,0],[26733,26741,26743,0],[26733,26743,7865,0],[26741,26732,26743,0],[7865,26743,26742,0],[26739,26727,26742,0],[26742,26743,26731,0],[26731,26743,26732,0],[26742,26731,26739,0],[26727,26723,26742,0],[26703,26744,26702,0],[26702,26744,26701,0],[26701,26744,26761,0],[26761,26744,26707,0],[26761,26707,26745,0],[26758,26748,26749,0],[26750,26566,26751,0],[26762,26752,26772,0],[26519,26518,26517,0],[26762,26751,26752,0],[26751,26517,26750,0],[26750,26517,26754,0],[26750,26844,26566,0],[26566,26567,26752,0],[26752,26567,26755,0],[26755,26567,26568,0],[26757,35453,26756,0],[26757,26756,26758,0],[26758,26749,26757,0],[26757,26749,26755,0],[26757,26755,26568,0],[26568,26569,26757,0],[26757,26569,35453,0],[26758,26756,26816,0],[26760,26759,26815,0],[26699,26815,26589,0],[26758,26816,26747,0],[26747,26759,26760,0],[26815,26699,26760,0],[26759,26747,26816,0],[26746,26747,26745,0],[26747,26760,26745,0],[26745,26760,26761,0],[26761,48791,26701,0],[26701,48791,48788,0],[26754,26846,26750,0],[26519,26517,26762,0],[26762,26517,26751,0],[26518,26519,26763,0],[35681,26766,35677,0],[35677,26766,26764,0],[35679,26764,26765,0],[26765,26764,26772,0],[26772,26764,26753,0],[26753,26764,26519,0],[26519,26764,26766,0],[26763,26766,35681,0],[26763,26519,26766,0],[26520,26518,26763,0],[26753,26519,26762,0],[26751,26566,26752,0],[26748,26770,26768,0],[26768,26770,26767,0],[26768,26767,26709,0],[26768,26709,48839,0],[48839,26709,26769,0],[48839,26769,26755,0],[26758,26747,26748,0],[26748,26747,26770,0],[26747,26746,26770,0],[26767,26710,26709,0],[26708,26770,26771,0],[26771,26745,26707,0],[26771,26770,26745,0],[26745,26770,26746,0],[26770,26708,26767,0],[26772,26753,26762,0],[26765,26772,26709,0],[26709,26772,26769,0],[26769,26772,26752,0],[26709,48773,26765,0],[26765,48773,35679,0],[26694,26700,26773,0],[26594,26692,26593,0],[26594,26596,26685,0],[26685,26596,26691,0],[26599,26623,26775,0],[26775,26623,26776,0],[26598,26776,26597,0],[26777,26780,26778,0],[26682,26627,26778,0],[26778,36859,26777,0],[26601,36838,26779,0],[26601,26779,26624,0],[26624,26779,36884,0],[26780,26781,26785,0],[26785,26781,26782,0],[26785,26782,26788,0],[26784,26781,36884,0],[26781,26784,26782,0],[26782,26784,26783,0],[26777,26625,26780,0],[26787,26785,48758,0],[26681,48758,26641,0],[48758,26682,26787,0],[26785,26787,26780,0],[26780,26787,26778,0],[26778,26787,26682,0],[26642,26788,48759,0],[26788,26782,48759,0],[48786,48759,26783,0],[48786,26783,26789,0],[26789,26790,26644,0],[26644,26790,26646,0],[26789,26783,36885,0],[26789,36885,26790,0],[26790,36885,26809,0],[26809,36885,26791,0],[36838,26792,26779,0],[36838,26602,26792,0],[26803,26602,26793,0],[26805,26793,26794,0],[7554,36826,7557,0],[7557,36826,26799,0],[7557,26799,26620,0],[26620,26799,26621,0],[26605,26800,26801,0],[26795,26794,26802,0],[26802,26794,26603,0],[26795,26802,26796,0],[26796,26802,26801,0],[26796,26801,26797,0],[26797,26801,26800,0],[26797,26800,26798,0],[26798,26800,26799,0],[26605,26606,26800,0],[26800,26606,26621,0],[26792,26602,26791,0],[26791,26602,26803,0],[26791,26803,36842,0],[36842,26803,26804,0],[36840,26806,26808,0],[36840,26808,36793,0],[26797,36793,26796,0],[26795,26796,26807,0],[26806,26804,26807,0],[26807,26804,26805,0],[26805,26794,26807,0],[26805,26804,26793,0],[26807,26796,26808,0],[26807,26808,26806,0],[26804,26803,26793,0],[26646,26790,26809,0],[26646,26809,26810,0],[26676,26810,26811,0],[26648,26812,36843,0],[26648,36843,26647,0],[26647,26813,26649,0],[26809,26814,26810,0],[26810,26814,26811,0],[26811,26814,36843,0],[26811,36843,26812,0],[26809,26791,26814,0],[26814,26791,36842,0],[26781,26780,26625,0],[26781,26625,26624,0],[26781,26624,36884,0],[35685,26580,26589,0],[35685,26589,35684,0],[26589,26815,26581,0],[26589,26581,35684,0],[26815,26759,26581,0],[26581,26816,26582,0],[26582,26816,26756,0],[26582,26756,26817,0],[26817,26756,35453,0],[26582,26817,26583,0],[26583,26817,26570,0],[26818,26822,26576,0],[26818,26576,26577,0],[26825,35523,26832,0],[26832,35523,35706,0],[26832,35706,26695,0],[26819,26577,26821,0],[26821,26577,35518,0],[26577,26819,26823,0],[26827,26823,26824,0],[26825,26824,26820,0],[26824,26823,26820,0],[26822,26818,26826,0],[26826,26818,26828,0],[26826,26828,26838,0],[26826,26838,26580,0],[26827,26828,26577,0],[26827,26577,26823,0],[26827,26824,26837,0],[26837,26824,26834,0],[26837,26834,26829,0],[26836,26829,26590,0],[26590,26829,26833,0],[26590,26833,26830,0],[26831,26830,26833,0],[26832,26695,26831,0],[26833,26834,26835,0],[26832,26831,26835,0],[26835,26831,26833,0],[26832,26835,26825,0],[26825,26835,26824,0],[26833,26829,26834,0],[26835,26834,26824,0],[26837,26829,26836,0],[26837,26836,26828,0],[26838,26828,26836,0],[26836,26580,26838,0],[26828,26827,26837,0],[26577,26828,26818,0],[35649,26575,26839,0],[35649,26839,26574,0],[26573,26574,26839,0],[26567,26840,26841,0],[26841,26840,26842,0],[26842,26843,35460,0],[35460,26843,26553,0],[26553,26843,26565,0],[26565,26843,26844,0],[26840,26844,26843,0],[26843,26842,26840,0],[26567,26844,26840,0],[26565,26846,26845,0],[26845,35651,26564,0],[26551,26552,26564,0],[26511,26510,26512,0],[26510,26513,26512,0],[26499,26500,26857,0],[26499,26857,26848,0],[26847,26848,26855,0],[26847,26855,26849,0],[26849,26853,26850,0],[26850,26852,26851,0],[35246,26853,26855,0],[35246,26855,26854,0],[26475,26856,26474,0],[26856,26475,26854,0],[26852,26850,26853,0],[26855,26848,26854,0],[26854,26848,26857,0],[26857,26500,26507,0],[26857,26507,26856,0],[26507,26502,26856,0],[26854,26857,26856,0],[26855,26853,26849,0],[26555,26560,26858,0],[26555,26858,26498,0],[26498,26858,26849,0],[26847,26858,26848,0],[26499,26848,26560,0],[26847,26849,26858,0],[26848,26858,26560,0],[26554,26498,26859,0],[26859,26494,26495,0],[26494,26859,26850,0],[26850,26859,26849,0],[26849,26859,26498,0],[26554,26859,35459,0],[35459,26495,26497,0],[26497,26495,26496,0],[26859,26495,35459,0],[26476,26860,26861,0],[26493,26850,26851,0],[26479,26862,26863,0],[26864,27418,35462,0],[26864,35462,26865,0],[26865,35462,26866,0],[26866,35462,27416,0],[26866,27416,27415,0],[26871,26869,26867,0],[26867,26869,26868,0],[26870,26869,27429,0],[27424,27425,26868,0],[26868,27425,26867,0],[26869,26870,26868,0],[26868,26870,27424,0],[26867,35417,26871,0],[26867,27408,35416,0],[35416,27408,35425,0],[35431,35432,26892,0],[26931,35431,26874,0],[26931,26874,26875,0],[26875,26874,26897,0],[26875,26897,35628,0],[35628,26897,26907,0],[35628,26907,26876,0],[26936,26877,26909,0],[26936,26909,26878,0],[26914,26878,26879,0],[26880,26912,26881,0],[26881,26912,26882,0],[26881,26882,26943,0],[26944,26943,26883,0],[26944,26883,36877,0],[36877,26883,36878,0],[36878,26883,26884,0],[36878,26884,36882,0],[36882,26884,26904,0],[26885,26906,35776,0],[35755,26906,26886,0],[26888,26887,26889,0],[26888,26889,27434,0],[27434,26889,27435,0],[27435,26889,35750,0],[35509,35750,26890,0],[35428,26890,26873,0],[26891,26873,35742,0],[35431,26892,26874,0],[26874,26892,35751,0],[26874,35751,26893,0],[26893,35751,26896,0],[26896,35751,35759,0],[26896,35759,26895,0],[26895,26902,26898,0],[26895,26898,26896,0],[26896,26898,35629,0],[26896,35629,26893,0],[26907,26897,35629,0],[26898,26901,26899,0],[26899,26901,26900,0],[26912,26900,26882,0],[26898,26902,26901,0],[26901,26902,26903,0],[26903,35753,26904,0],[26884,26883,26905,0],[26905,26883,26882,0],[26882,26900,26905,0],[26884,26905,26904,0],[26904,26905,26903,0],[26943,26882,26883,0],[26904,35753,26885,0],[26906,26885,35754,0],[26900,26901,26905,0],[26893,35629,26897,0],[26907,26908,26876,0],[26876,26908,26909,0],[26876,26909,26877,0],[26898,26911,35629,0],[26910,26911,26879,0],[26879,26911,26880,0],[26880,26911,26912,0],[26898,26899,26911,0],[26911,26899,26912,0],[26899,26900,26912,0],[26893,26897,26874,0],[26892,35432,26891,0],[26878,26914,26936,0],[35435,26936,27407,0],[35435,27407,35733,0],[35435,35733,35738,0],[35738,35733,35406,0],[35406,26915,26916,0],[26918,26917,26919,0],[26918,26919,35571,0],[35571,26919,36862,0],[35571,36862,36863,0],[26923,26922,36865,0],[26923,26613,35581,0],[35581,26613,26611,0],[26923,36686,26922,0],[26936,26924,26877,0],[26925,35738,26928,0],[26928,35738,35405,0],[26928,26927,26925,0],[26926,35405,26929,0],[26929,35405,35407,0],[35405,26926,26928,0],[26926,26927,26928,0],[26935,26929,26934,0],[26934,26930,26933,0],[26933,26930,26932,0],[26933,26932,26931,0],[26931,26932,35431,0],[26933,26931,26875,0],[26934,26933,35630,0],[26934,35630,26935,0],[26935,26926,26929,0],[26926,26935,26927,0],[26927,26935,35630,0],[26936,26914,26937,0],[26937,26914,26941,0],[26941,26940,35736,0],[35736,26940,26939,0],[36611,26938,27397,0],[26938,26939,26940,0],[26948,26940,26941,0],[26942,26914,26913,0],[26881,26943,26944,0],[26949,26945,27385,0],[26949,27385,27382,0],[26947,27382,26946,0],[26950,26947,27405,0],[26950,27405,27406,0],[27382,26947,26949,0],[26949,26947,26950,0],[26941,26942,26948,0],[26948,26951,27406,0],[27406,26951,26950,0],[26951,26942,26952,0],[26945,26881,26944,0],[26881,26952,26913,0],[26913,26952,26942,0],[26946,27382,27402,0],[27402,27383,26953,0],[26953,27383,36881,0],[26953,27377,36171,0],[36171,27377,26954,0],[36171,26954,36880,0],[36880,26954,26955,0],[36880,26955,26956,0],[36170,26956,26957,0],[36170,26957,36166,0],[36166,26957,36165,0],[36166,36165,26958,0],[26958,27380,36177,0],[36177,27380,26959,0],[26961,26960,26962,0],[26962,26963,26964,0],[26964,26963,35819,0],[26964,27016,36164,0],[36164,27016,26965,0],[36164,26965,36158,0],[36158,26965,36163,0],[36158,36163,26966,0],[26967,26966,36163,0],[26969,26968,26970,0],[27283,26971,26972,0],[26974,26973,27031,0],[35942,26976,35937,0],[35937,26976,26977,0],[35939,26977,26978,0],[35939,26978,27036,0],[35939,27036,26979,0],[35939,26979,35943,0],[35943,26979,27298,0],[27290,26979,27052,0],[27290,27052,26980,0],[26980,27052,35895,0],[26980,35895,27280,0],[27270,35896,35897,0],[27270,35897,26982,0],[27269,26983,26984,0],[35903,26984,26985,0],[35903,26985,26986,0],[27004,27003,35904,0],[35904,27003,49550,0],[49550,27001,27267,0],[27267,27001,26987,0],[26987,35832,26988,0],[26988,27121,27220,0],[27220,27121,27219,0],[27219,27121,26989,0],[26990,27122,27265,0],[27089,27119,26992,0],[26993,27115,26994,0],[27108,26995,27118,0],[27065,27118,26996,0],[26998,26997,27116,0],[27006,26998,26999,0],[27005,27000,27001,0],[27001,49550,27005,0],[27005,49550,27003,0],[27005,27003,27002,0],[27002,27003,27004,0],[27005,27002,27000,0],[26997,26998,27006,0],[26997,27006,27059,0],[27059,27006,27007,0],[27059,27007,27058,0],[27058,27007,35841,0],[35841,27007,26986,0],[27004,26986,27007,0],[27004,27007,27002,0],[27002,27007,27006,0],[27002,27006,26999,0],[27002,26999,27000,0],[27009,35841,27008,0],[27009,27008,27010,0],[27010,35857,27061,0],[27061,35857,27011,0],[27012,27011,35860,0],[35947,35860,35859,0],[35947,35859,27013,0],[27013,35859,36162,0],[36162,35859,35862,0],[36161,35862,35817,0],[35817,35861,27023,0],[27023,27024,27014,0],[27014,27024,27029,0],[27015,27029,35968,0],[27015,35968,27016,0],[27015,27016,26964,0],[35966,35965,26968,0],[26968,35965,27057,0],[27057,27017,27018,0],[27333,27018,26971,0],[26971,27018,26972,0],[27019,27020,26973,0],[35933,27020,27021,0],[27023,27026,27024,0],[35865,27022,27025,0],[27026,27025,27027,0],[27026,27027,27028,0],[27028,27029,27024,0],[27028,27024,27026,0],[27031,27030,27040,0],[27031,27040,27032,0],[27034,27051,27035,0],[27035,27036,26978,0],[27035,26978,27034,0],[27034,27045,27051,0],[26978,27037,27034,0],[27033,27037,26977,0],[27033,26977,26976,0],[27039,27031,27032,0],[27030,27031,26973,0],[26974,27031,26975,0],[26976,27039,27038,0],[26976,27038,27033,0],[27033,27038,27042,0],[27042,27038,27032,0],[26975,27039,35942,0],[35942,27039,26976,0],[26975,27031,27039,0],[26977,27037,26978,0],[26973,35932,27030,0],[27030,35932,27040,0],[27040,35871,27041,0],[27032,27041,27042,0],[27037,27033,27034,0],[27034,27033,27043,0],[27034,27043,27044,0],[27034,27044,27045,0],[27045,27046,27050,0],[27048,27047,35907,0],[27048,35890,35923,0],[35923,35891,27049,0],[27050,27051,27045,0],[27051,27053,27035,0],[27035,27053,27036,0],[35895,27052,27053,0],[35895,27053,35894,0],[35894,27053,27054,0],[35894,27054,35893,0],[35893,27054,27049,0],[27049,27054,27050,0],[27050,27054,27051,0],[27051,27054,27053,0],[26979,27036,27052,0],[27050,35924,27049,0],[27041,27032,27040,0],[27018,27017,27055,0],[27020,27056,27021,0],[27333,26970,27018,0],[27018,26970,27057,0],[26965,27016,35966,0],[35841,27009,27058,0],[27058,27110,27059,0],[27059,27110,27109,0],[27109,27110,27060,0],[27061,27012,35806,0],[27063,35806,27062,0],[27063,27062,27064,0],[27065,27064,35809,0],[35809,27088,27066,0],[27067,27070,27068,0],[27067,27068,26993,0],[26992,27068,27105,0],[27069,27070,27072,0],[27072,27070,27071,0],[35823,27072,27073,0],[35798,27074,27081,0],[27075,27081,27076,0],[27075,27076,27087,0],[27077,27087,27078,0],[27078,27087,35810,0],[27077,27079,35804,0],[27077,35804,27080,0],[27080,35798,27081,0],[27081,27075,27080,0],[27080,27075,27077,0],[27087,27077,27075,0],[27077,27078,27079,0],[27076,27081,27073,0],[27074,27073,27081,0],[27073,27072,27086,0],[27068,27070,27069,0],[27071,27070,27088,0],[27082,27088,35808,0],[27087,27083,35810,0],[27071,27085,27072,0],[27071,27088,27084,0],[27071,27084,27085,0],[27072,27085,27086,0],[27086,27087,27076,0],[27083,27087,27084,0],[27083,27084,27082,0],[27082,27084,27088,0],[27087,27086,27084,0],[27084,27086,27085,0],[27070,27066,27088,0],[27068,26992,26993,0],[35782,27089,27105,0],[35782,27105,35784,0],[35784,35827,27090,0],[27090,27106,35777,0],[35777,27106,27091,0],[35795,27092,27443,0],[27443,27093,35480,0],[35480,27093,27094,0],[27095,27094,27096,0],[27095,27096,27097,0],[35495,27098,27447,0],[35495,27456,27099,0],[27099,27456,27455,0],[27099,27455,35746,0],[27423,27101,27102,0],[35291,27421,27104,0],[27100,35372,35373,0],[27089,35782,27119,0],[26992,27105,27089,0],[27090,35826,27106,0],[27090,35827,35826,0],[35827,35784,27105,0],[35827,27105,27107,0],[27069,27107,27068,0],[27068,27107,27105,0],[26993,26994,27067,0],[27067,27108,27070,0],[27067,26994,26995,0],[27067,26995,27108,0],[27061,35806,27063,0],[27063,27060,27110,0],[27063,27064,27060,0],[27060,27064,27065,0],[27065,26996,27109,0],[27109,26996,26997,0],[27109,26997,27059,0],[27109,27060,27065,0],[27061,27110,27010,0],[27010,27110,27009,0],[26997,26996,27116,0],[27116,35833,26998,0],[27111,27118,26995,0],[27111,26995,27113,0],[27111,27113,27112,0],[35835,27112,27113,0],[27113,26995,27114,0],[27115,26993,26992,0],[26995,26994,27114,0],[27114,26994,27115,0],[27111,27112,35833,0],[26998,35833,26999,0],[35833,27116,27111,0],[27111,27116,27118,0],[27116,26996,27118,0],[27117,27118,27065,0],[27065,27066,27117,0],[27117,27066,27070,0],[27117,27070,27108,0],[27065,35809,27066,0],[27118,27117,27108,0],[26992,27119,27115,0],[27115,27119,35830,0],[27115,35830,27120,0],[27120,35837,27114,0],[27114,27115,27120,0],[26989,27121,35839,0],[26989,35839,26990,0],[26990,35839,35840,0],[26990,35840,27122,0],[27122,35840,27123,0],[27122,27123,26991,0],[26987,26988,27220,0],[26987,27220,27274,0],[27274,27220,27273,0],[27273,27218,27124,0],[27144,27125,27127,0],[27127,27125,27126,0],[27127,27126,27128,0],[27128,27508,27136,0],[27141,27136,27129,0],[31976,27130,27131,0],[27134,27527,27530,0],[27134,27530,27135,0],[27128,27126,27508,0],[27129,27136,27137,0],[27129,27137,27138,0],[27130,27138,27488,0],[27130,27488,27131,0],[27130,27129,27138,0],[27127,27139,27204,0],[27204,27139,27142,0],[27201,27203,27140,0],[31980,27140,27143,0],[31980,27143,27141,0],[31980,27141,27130,0],[27136,27141,27128,0],[27141,27143,27128,0],[27140,27203,27143,0],[27143,27203,27142,0],[27143,27139,27128,0],[27139,27143,27142,0],[27146,27145,27278,0],[27278,27145,27148,0],[27278,27148,27279,0],[27279,27148,27147,0],[27147,27148,27322,0],[27322,27148,27149,0],[27321,27149,27213,0],[27293,27213,27150,0],[27185,27187,27151,0],[27151,27187,27152,0],[27152,27187,27153,0],[27153,27188,27154,0],[27156,27154,27155,0],[27156,27155,27157,0],[27157,27155,31412,0],[27157,27158,27159,0],[27159,27158,27169,0],[27160,27159,27171,0],[27160,27171,20727,0],[27160,27163,36412,0],[27160,36412,36414,0],[27160,36414,27161,0],[27161,36414,27157,0],[27157,36414,27156,0],[27161,27157,27159,0],[27159,27160,27161,0],[27160,20727,27163,0],[27163,20727,27162,0],[27163,27162,36411,0],[27164,36411,27165,0],[36419,27165,49521,0],[49521,27167,27166,0],[36421,27166,36420,0],[36420,27166,20747,0],[36420,20747,20748,0],[27165,36411,27168,0],[27168,20726,27165,0],[36411,27162,27168,0],[20727,27171,27172,0],[20727,27172,20728,0],[20728,27172,27173,0],[27174,27175,27176,0],[20729,27179,31422,0],[20729,31422,20734,0],[27176,27177,27174,0],[27174,27177,27178,0],[27174,27178,27173,0],[27173,27178,20728,0],[20729,20728,27179,0],[27179,20728,27178,0],[27171,27159,27170,0],[27170,27159,27169,0],[27180,31989,27181,0],[27180,27181,27211,0],[27211,27181,27210,0],[27211,27210,27182,0],[27182,27183,27184,0],[27184,27183,27208,0],[27184,27186,27212,0],[27212,27186,27185,0],[27212,27185,27150,0],[27153,27187,27188,0],[27185,27186,27187,0],[27187,27186,27189,0],[27187,27189,27188,0],[27188,27189,27154,0],[27154,27189,27155,0],[27155,27189,27190,0],[27191,27190,27208,0],[27191,27208,27192,0],[27193,27192,27194,0],[27197,27196,27207,0],[27199,27198,27200,0],[27199,27200,27201,0],[31979,27201,27140,0],[27142,27203,27204,0],[27201,27200,27202,0],[27203,27202,27146,0],[27146,27202,27205,0],[27205,27202,27200,0],[27205,27200,27198,0],[27201,27202,27203,0],[27204,27203,27146,0],[27204,27144,27127,0],[31989,27205,27181,0],[27205,27206,27181,0],[27181,27206,27210,0],[27210,27206,27207,0],[27205,27198,27206,0],[27206,27198,31972,0],[27206,31972,27207,0],[27207,31972,27197,0],[27205,31989,27146,0],[27190,27189,27184,0],[27190,27184,27208,0],[27189,27186,27184,0],[27209,27196,27194,0],[27194,27196,27195,0],[27196,27209,27182,0],[27196,27182,27210,0],[27196,27210,27207,0],[27209,27194,27192,0],[27209,27192,27183,0],[27183,27192,27208,0],[27211,27182,27184,0],[31990,27212,27150,0],[31992,31990,27213,0],[27213,31990,27150,0],[27204,27214,27144,0],[27146,27278,27214,0],[27214,27215,27144,0],[27144,27215,27124,0],[27144,27124,27125,0],[27125,27124,27216,0],[27217,27216,27218,0],[27217,27218,27219,0],[27219,27218,27220,0],[27219,26989,27221,0],[27219,27221,27217,0],[27217,27221,27266,0],[27223,35792,35794,0],[27223,35794,27224,0],[27224,35794,27225,0],[27229,35367,35287,0],[27229,35287,27247,0],[27247,35287,35295,0],[27249,27232,27233,0],[27236,27234,27235,0],[27236,27235,31964,0],[31964,27237,31963,0],[31963,27237,27239,0],[27239,27237,27238,0],[27239,27238,27240,0],[27241,27240,27242,0],[27241,27242,27517,0],[27517,27242,27243,0],[27243,27242,27244,0],[27243,27244,31961,0],[27243,31961,27246,0],[31960,27245,27246,0],[27246,27245,27478,0],[27252,27254,27231,0],[27252,27231,27248,0],[27248,27231,27249,0],[27253,27249,27233,0],[27253,27233,27250,0],[31965,27496,27516,0],[35220,27260,27248,0],[27248,27260,27251,0],[27254,27252,27251,0],[27251,27252,27248,0],[27253,27248,27249,0],[35220,27248,27253,0],[27229,27247,27254,0],[27254,27247,27230,0],[27254,27230,27231,0],[27231,35221,27249,0],[27250,27233,27234,0],[27250,27234,27236,0],[27225,35365,27224,0],[27223,27224,27255,0],[27256,35364,27262,0],[27256,27262,27257,0],[27257,27262,27258,0],[27257,27258,27510,0],[27510,27258,27502,0],[27502,27258,27259,0],[27260,27261,27259,0],[27259,27261,27502,0],[27262,35364,27263,0],[27262,27263,27258,0],[27258,27263,27259,0],[27223,27222,27264,0],[27266,27221,27222,0],[27222,27221,27265,0],[27264,27222,27265,0],[27265,27221,26990,0],[26990,27221,26989,0],[27217,27266,27216,0],[27216,27266,27507,0],[27216,27507,27125,0],[27125,27507,27126,0],[27216,27124,27218,0],[27218,27273,27220,0],[49550,27267,27268,0],[49551,27268,27269,0],[26984,35903,27269,0],[27269,35903,49551,0],[27270,36188,27275,0],[27275,36188,27271,0],[27272,27273,27124,0],[27273,27272,27274,0],[27274,27272,27271,0],[26987,27274,27267,0],[36189,27275,27276,0],[27276,27275,27271,0],[27276,27271,27277,0],[27277,27271,27272,0],[27277,27272,27215,0],[27215,27272,27124,0],[27215,27214,27277,0],[27214,27278,27276,0],[27214,27276,27277,0],[27276,27278,36189,0],[36189,35896,27270,0],[35896,36189,26981,0],[26981,36189,27279,0],[26981,27279,27147,0],[27278,27279,36189,0],[27147,27280,26981,0],[26973,26974,27281,0],[27281,27282,27283,0],[27283,27284,26971,0],[26971,27284,35951,0],[26971,35951,27333,0],[27333,35951,27285,0],[27285,35951,27343,0],[27343,35951,35949,0],[35944,27287,36155,0],[35944,36155,27288,0],[27288,36155,27298,0],[27288,27298,27289,0],[27289,27298,26979,0],[27289,26979,27290,0],[27290,26980,27291,0],[27290,27291,27297,0],[27297,27291,27292,0],[31994,27313,27294,0],[27294,27323,27295,0],[27296,27288,27289,0],[27296,27289,27297,0],[27296,27297,27292,0],[27297,27289,27290,0],[27296,49517,27288,0],[35943,27298,36155,0],[35943,36155,27299,0],[27300,36155,27287,0],[35949,27286,27301,0],[27301,27319,27342,0],[27342,27330,27302,0],[27347,27302,27303,0],[27304,27331,35984,0],[27305,27331,27306,0],[27305,27306,27308,0],[35945,27308,27310,0],[35945,27310,27309,0],[27309,27310,36418,0],[36413,27153,36416,0],[36416,27153,36414,0],[27153,27156,36414,0],[27156,27153,27154,0],[27151,27152,27311,0],[27312,27310,27308,0],[27312,27308,27313,0],[27323,27313,27307,0],[27323,27307,27314,0],[27323,27314,27315,0],[27308,27307,27313,0],[27314,27307,27306,0],[27314,27306,27320,0],[27314,27320,27316,0],[27317,27316,27329,0],[27317,27329,27318,0],[27318,27329,27319,0],[27318,27319,27286,0],[27316,27317,27314,0],[27315,27314,27317,0],[27307,27308,27306,0],[27312,27313,31994,0],[27312,31994,27311,0],[27311,31994,27185,0],[31994,31993,27185,0],[27185,31993,27150,0],[27150,31993,27293,0],[27213,27293,27321,0],[27291,27321,27292,0],[27292,27321,27293,0],[27321,27322,27149,0],[27321,27291,27322,0],[27322,27291,26980,0],[27322,26980,27280,0],[27322,27280,27147,0],[27294,27313,27323,0],[27324,27323,27315,0],[27315,27287,27324,0],[27323,27324,27295,0],[27295,27324,27288,0],[27288,49517,27295,0],[27152,27310,27311,0],[27311,27310,27312,0],[27331,27305,35984,0],[35984,27305,27325,0],[35945,27325,27308,0],[27305,27308,27325,0],[27303,27302,27326,0],[27303,27326,27327,0],[27327,27326,27328,0],[27327,27328,27331,0],[27331,27328,27320,0],[27320,27328,27330,0],[27320,27330,27316,0],[27316,27330,27329,0],[27286,27319,27301,0],[27330,27328,27326,0],[27326,27302,27330,0],[27331,27304,27327,0],[26970,27333,27332,0],[26970,27332,7489,0],[7496,27332,27333,0],[7496,27333,27285,0],[27335,27334,27340,0],[27340,27344,27335,0],[27335,27344,27359,0],[27359,27338,27336,0],[27359,27336,27369,0],[27336,27338,7471,0],[7471,27338,27337,0],[27337,27338,27345,0],[27346,27345,27344,0],[27346,27344,27339,0],[27341,27340,27342,0],[27342,27340,27301,0],[27301,27340,35949,0],[27339,27344,27341,0],[27341,27344,27340,0],[27340,27334,27343,0],[27340,27343,35949,0],[27359,27344,27338,0],[27338,27344,27345,0],[27355,27346,35980,0],[27355,27347,27354,0],[27354,27347,27348,0],[27348,35979,27349,0],[27350,27352,27351,0],[27350,27349,27352,0],[27351,27352,27353,0],[7623,27351,27353,0],[35977,27353,27352,0],[35979,27352,27349,0],[27353,35977,7467,0],[27348,27349,27354,0],[27354,27349,27350,0],[27354,27350,27356,0],[27355,27354,27356,0],[27355,27356,27346,0],[27346,27356,27345,0],[27345,27356,27358,0],[27358,27350,27357,0],[27357,7469,7470,0],[7470,7471,27358,0],[7470,27358,27357,0],[27351,27357,27350,0],[27358,27356,27350,0],[27345,27358,27337,0],[27361,36874,7487,0],[7486,7487,27363,0],[27363,7487,27362,0],[27363,27362,27366,0],[27366,27362,36636,0],[36636,27362,27364,0],[36636,27364,27368,0],[36636,27368,27365,0],[27366,27365,27367,0],[27366,27367,35962,0],[35962,27367,7474,0],[27367,27365,27368,0],[7474,27367,7473,0],[7472,27336,7471,0],[7473,27367,27368,0],[7473,27368,7472,0],[7472,27368,27336,0],[27362,36874,27364,0],[27360,27364,27361,0],[27368,27369,27336,0],[27360,27369,27364,0],[27364,27369,27368,0],[27364,36874,27361,0],[7487,7488,27370,0],[27285,27334,27370,0],[27370,27334,27335,0],[27370,27335,27361,0],[27361,27335,27360,0],[27361,7487,27370,0],[26970,7489,26969,0],[27283,26972,27281,0],[26970,26968,27057,0],[35966,26968,26965,0],[26965,26968,36163,0],[27385,26944,27371,0],[27371,27372,27381,0],[27373,27372,35804,0],[27374,27373,27079,0],[27374,27079,27375,0],[27374,27375,27384,0],[27384,27375,27376,0],[27377,35812,35820,0],[26955,27378,26956,0],[26957,35818,36165,0],[36165,35818,27380,0],[26959,27379,26960,0],[26960,27379,26962,0],[27379,26963,26962,0],[26964,35819,27015,0],[27380,35819,26963,0],[26963,27379,27380,0],[27373,27374,27381,0],[27382,27381,27383,0],[27382,27383,27402,0],[27383,27381,27384,0],[27384,27381,27374,0],[27385,27371,27381,0],[27381,27372,27373,0],[26944,36877,27371,0],[27371,36877,35801,0],[27371,35801,27372,0],[26881,26913,26880,0],[26942,26941,26914,0],[26938,26940,27386,0],[27394,27387,27388,0],[27394,27388,36174,0],[27394,36174,27389,0],[27393,36182,27390,0],[27390,36187,27391,0],[27390,27392,7499,0],[27390,7499,27396,0],[27390,27396,27393,0],[27398,27396,27394,0],[27395,27396,27397,0],[27396,7499,27397,0],[7498,27397,7499,0],[27395,27394,27396,0],[27394,27395,27387,0],[27398,27394,27389,0],[27398,27389,36182,0],[27396,27398,27393,0],[27392,27390,27391,0],[36182,27393,27398,0],[27392,27391,7481,0],[27388,27387,27399,0],[27404,27400,27401,0],[26946,27403,27401,0],[27403,26946,27402,0],[36875,27403,36876,0],[36875,36876,36172,0],[36172,36876,26953,0],[36875,36167,27404,0],[27404,36167,36173,0],[26946,27401,26947,0],[26947,27401,27405,0],[27401,27400,27405,0],[27405,27400,27406,0],[27406,27386,26948,0],[27387,27386,27406,0],[27387,27406,27400,0],[27387,27400,27399,0],[27386,26940,26948,0],[26941,35735,26937,0],[26937,35735,27407,0],[26937,27407,26936,0],[26914,26879,26913,0],[26913,26879,26880,0],[27408,27427,35425,0],[35425,27427,26872,0],[26872,27427,35509,0],[35428,26872,26890,0],[26866,35645,26865,0],[26865,27411,27412,0],[27413,27414,27412,0],[27412,26864,26865,0],[27412,27414,26864,0],[26864,27414,26863,0],[26863,27414,26490,0],[26863,26490,26479,0],[26866,27415,27410,0],[27410,27415,26871,0],[27410,26871,27409,0],[27415,27416,26871,0],[26871,27416,26869,0],[27417,27418,27420,0],[27420,27418,27419,0],[27420,27419,27421,0],[27421,27103,27420,0],[27103,27102,27420,0],[27420,27102,27417,0],[27102,27101,27417,0],[27422,27423,27429,0],[27427,35508,27428,0],[27427,27428,35509,0],[35509,27428,35750,0],[27425,27426,26867,0],[26867,27426,27408,0],[27408,27426,27431,0],[27425,27424,27453,0],[27422,27429,27416,0],[27429,26869,27416,0],[27101,27423,27422,0],[26870,27429,27454,0],[26870,27454,27424,0],[27424,27454,27453,0],[27453,27457,27430,0],[27431,27432,35508,0],[27428,35508,27436,0],[27428,27436,27433,0],[27433,27436,27434,0],[27433,27435,27428,0],[27431,27430,27432,0],[27432,27450,27436,0],[27436,27450,27449,0],[27436,27449,27437,0],[27434,27438,26888,0],[26887,26888,27444,0],[35768,27444,27439,0],[27440,35748,35770,0],[35770,35748,27441,0],[27442,27093,27443,0],[27446,27444,27438,0],[27448,27446,27437,0],[27448,27437,27449,0],[27446,27438,27437,0],[27438,27444,26888,0],[27445,27446,35747,0],[27097,35747,27448,0],[27097,27448,27447,0],[27447,27448,27449,0],[35745,27449,27450,0],[35745,27450,27451,0],[27454,27455,27452,0],[27452,27455,27456,0],[35745,27447,27449,0],[27453,27454,27452,0],[27452,27456,27451,0],[27451,27456,35745,0],[27453,27452,27457,0],[27430,27457,27432,0],[27457,27452,27451,0],[27457,27451,27450,0],[27457,27450,27432,0],[27439,27444,27445,0],[27445,27444,27446,0],[35508,27432,27436,0],[27436,27437,27434,0],[27434,27437,27438,0],[27431,27426,27430,0],[27430,27426,27425,0],[27430,27425,27453,0],[26470,35668,35667,0],[27459,27458,35340,0],[27460,27459,27461,0],[27553,27462,31954,0],[31954,27462,31953,0],[7068,7067,27463,0],[27463,7067,31950,0],[31950,27464,7063,0],[31950,7067,27464,0],[7064,7063,27464,0],[7065,27464,7066,0],[48830,27459,27460,0],[27461,27553,7073,0],[7073,27553,27465,0],[27465,27466,27535,0],[27468,27466,27467,0],[27468,27467,27469,0],[27468,27469,27644,0],[27469,27645,27644,0],[31955,27470,27471,0],[27474,27472,27473,0],[27474,27473,7056,0],[35338,27524,27520,0],[27476,35311,35310,0],[27476,35310,27477,0],[27476,27477,27478,0],[27478,27477,27480,0],[27478,27480,27479,0],[27479,27518,27481,0],[27481,27518,27485,0],[27485,27518,27484,0],[27482,35308,27483,0],[27483,35308,27533,0],[27483,27526,27482,0],[27482,27526,27492,0],[27482,27492,27484,0],[27484,27492,27485,0],[27241,27481,27485,0],[27241,27485,27493,0],[27493,27485,27491,0],[27493,27491,27486,0],[27486,27491,27487,0],[27132,27131,27490,0],[27489,27490,27485,0],[27489,27485,27492,0],[27491,27490,27131,0],[27491,27131,27487,0],[27491,27485,27490,0],[27489,27492,27528,0],[27528,27492,27526,0],[27132,27490,27489,0],[27132,27489,27133,0],[27481,27241,27517,0],[35307,27493,27486,0],[35307,27486,27500,0],[27500,27494,31962,0],[31962,27494,27495,0],[27495,27496,31965,0],[27496,27497,27514,0],[27514,27497,27513,0],[27498,27497,27494,0],[27138,27499,27488,0],[27488,27499,27487,0],[27487,27499,27500,0],[27487,27500,27486,0],[27500,27499,27494,0],[27494,27499,27498,0],[27494,27497,27495,0],[27138,27137,27499,0],[27499,27137,27498,0],[27256,27257,27503,0],[27256,27503,27504,0],[27256,27504,27255,0],[27255,27504,27505,0],[27505,27504,27506,0],[27505,27506,27222,0],[27222,27506,27266,0],[27266,27506,27507,0],[27505,27222,27255,0],[27223,27255,27222,0],[27257,27510,27503,0],[27508,27126,27509,0],[27508,27509,27512,0],[27512,27509,27501,0],[27509,27126,27503,0],[27509,27503,27510,0],[27509,27510,27511,0],[27511,27510,27502,0],[27511,27502,27515,0],[27515,27501,27511,0],[27509,27511,27501,0],[27136,27508,27512,0],[27136,27512,27498,0],[27136,27498,27137,0],[27512,27501,27513,0],[27512,27513,27498,0],[27504,27503,27506,0],[27507,27506,27126,0],[27126,27506,27503,0],[27501,27515,27514,0],[27514,27515,27516,0],[27516,27515,27261,0],[35220,27516,27261,0],[35220,27261,27260,0],[27261,27515,27502,0],[27498,27513,27497,0],[27513,27501,27514,0],[27516,27496,27514,0],[27481,27517,27479,0],[27479,27517,27243,0],[27533,35309,27521,0],[27521,35310,27519,0],[27519,35311,35336,0],[35336,27520,27519,0],[27519,27520,27522,0],[27519,27522,27521,0],[27521,27522,27523,0],[27521,27525,27533,0],[27523,27525,27521,0],[27520,27524,27522,0],[7054,7053,27523,0],[27523,7053,27531,0],[27523,27531,27525,0],[27533,27525,27532,0],[27533,27532,27483,0],[27528,27527,27529,0],[27529,27133,27528,0],[27528,27133,27489,0],[27135,27530,7052,0],[27530,27532,27531,0],[27531,27532,27525,0],[7054,27523,27522,0],[27484,27518,35308,0],[35309,27533,35308,0],[27644,27536,27468,0],[27468,27536,27534,0],[27534,27535,27468,0],[27468,27535,27466,0],[27538,35256,27544,0],[27544,35256,27540,0],[27540,27539,35250,0],[27540,35250,27550,0],[27550,35250,35249,0],[35249,35251,27547,0],[27547,35251,35248,0],[27548,35248,27541,0],[27548,27541,27542,0],[27544,27551,27537,0],[27544,27537,27538,0],[27540,27550,27544,0],[27544,27550,27551,0],[27551,27550,27546,0],[27551,27546,27552,0],[27552,27546,27545,0],[27545,7074,7073,0],[27547,27548,7074,0],[7074,27545,27547,0],[27547,35248,27548,0],[27549,27548,27542,0],[27549,27542,27543,0],[27547,27546,27550,0],[35249,27547,27550,0],[27534,27552,27535,0],[27535,27552,27465,0],[27536,27537,27534,0],[27551,27552,27534,0],[27551,27534,27537,0],[27465,27552,27545,0],[27465,27545,7073,0],[27466,27553,31954,0],[7061,7062,27554,0],[27554,7062,27555,0],[27554,27555,35201,0],[35201,27555,35200,0],[35200,35341,27556,0],[27566,34911,27558,0],[35138,27562,27561,0],[27572,27563,27564,0],[27572,27564,27623,0],[27562,27563,27561,0],[27561,27563,27570,0],[27570,27563,27572,0],[27570,27572,27565,0],[27568,27569,27635,0],[27568,27636,27640,0],[35202,27640,35199,0],[27568,35202,35204,0],[27568,35204,35198,0],[35198,27566,27567,0],[27567,27566,27558,0],[27567,27558,27571,0],[27567,27571,27565,0],[27565,27571,27570,0],[27565,27569,27567,0],[27567,27569,35198,0],[35198,27569,27568,0],[27568,27640,35202,0],[27570,27571,27560,0],[27560,27571,27559,0],[27570,27560,27561,0],[27560,35138,27561,0],[27571,27558,27559,0],[27573,27572,27623,0],[27634,27573,27620,0],[27574,27634,27575,0],[27621,27597,27641,0],[27576,27597,27578,0],[27576,27578,27577,0],[27577,27578,35205,0],[35205,27599,27642,0],[27642,27599,27608,0],[27579,35206,27473,0],[27473,35206,27602,0],[27595,27621,27618,0],[27595,27618,27580,0],[7035,31935,27581,0],[7034,27581,27582,0],[27582,31936,27594,0],[27594,31936,27632,0],[27594,27632,27583,0],[27583,27585,27586,0],[27583,27586,27592,0],[27586,27587,27591,0],[27588,27587,31934,0],[27588,31934,27590,0],[27588,27590,7027,0],[7027,27590,27589,0],[27589,27590,27631,0],[27631,27590,27584,0],[27586,27585,27584,0],[27592,27591,31925,0],[27592,31925,27593,0],[27582,7033,7034,0],[7034,31942,27581,0],[31942,7035,27581,0],[7033,27582,27593,0],[27591,27592,27586,0],[27592,27593,27582,0],[27592,27582,27594,0],[27592,27594,27583,0],[27585,27631,27584,0],[27580,7035,31943,0],[27580,31943,27595,0],[27621,27595,27596,0],[27621,27596,27597,0],[27601,27606,35212,0],[27601,35212,7042,0],[27601,27605,27602,0],[27602,27605,7056,0],[27604,27605,27603,0],[27604,27603,27652,0],[27604,27652,7054,0],[7054,27652,7053,0],[7053,27652,7043,0],[7043,7044,7045,0],[27603,27605,7042,0],[7042,27605,27601,0],[27606,27601,35206,0],[35206,27601,27602,0],[27600,27608,27599,0],[27606,27607,27600,0],[27600,27607,27608,0],[7040,27606,27600,0],[27611,27609,27598,0],[27599,27598,27609,0],[27599,27609,27600,0],[7040,27600,7039,0],[7039,27600,27609,0],[7039,27609,27610,0],[27609,27611,27610,0],[27610,27611,35208,0],[27611,27616,31944,0],[27596,27612,27597,0],[27598,27614,27611,0],[27614,27613,27611,0],[27613,27615,27612,0],[27613,27612,7036,0],[7036,27612,27596,0],[27596,27595,7036,0],[7036,27595,31943,0],[27611,27613,27616,0],[7037,27616,27613,0],[7037,27613,7036,0],[27617,27618,27575,0],[27617,27575,27622,0],[27617,27622,27632,0],[27632,27622,27619,0],[27583,27619,27622,0],[27583,27622,27620,0],[27634,27620,27575,0],[27621,27633,27618,0],[27618,27633,27575,0],[27622,27575,27620,0],[27620,27573,27623,0],[27620,27623,6997,0],[27625,27624,6998,0],[27624,6997,6998,0],[27620,6997,27583,0],[27583,6997,27585,0],[27585,6997,27626,0],[27627,7021,27589,0],[27589,7019,7027,0],[7027,7019,27628,0],[27628,7019,27629,0],[27628,27629,27630,0],[7026,27630,7024,0],[7024,27630,7025,0],[7025,27630,7018,0],[7018,27630,27629,0],[27589,27631,27627,0],[27627,27631,27626,0],[27631,27585,27626,0],[27618,27617,27580,0],[27583,27632,27619,0],[27575,27633,27574,0],[27635,27569,27565,0],[27635,27636,27568,0],[27574,27633,27637,0],[27574,27637,27636,0],[27640,27636,27637,0],[27633,27621,27637,0],[27574,27636,27634,0],[27634,27636,27635,0],[7058,27554,27638,0],[27638,35201,27576,0],[27639,27576,35199,0],[27639,35199,27640,0],[27639,27640,27641,0],[27641,27640,27637,0],[27576,27639,27597,0],[27597,27639,27641,0],[27637,27621,27641,0],[27638,27576,27577,0],[27638,27577,35205,0],[27638,35205,27642,0],[27638,27642,7057,0],[7060,27554,7058,0],[7060,7058,7059,0],[7058,7057,7059,0],[7059,35197,27643,0],[27643,27471,27470,0],[27643,27470,27644,0],[27643,27644,7060,0],[7061,7060,27645,0],[27645,31952,7061,0],[35197,27472,27643,0],[7048,7050,27646,0],[27646,7050,27647,0],[27646,27647,7047,0],[7047,27647,27649,0],[27649,27647,7051,0],[7051,27647,31985,0],[7045,27649,27648,0],[7045,27648,7043,0],[7043,27648,7053,0],[7052,27648,27649,0],[7047,27649,7046,0],[27655,27650,7048,0],[27603,7042,27651,0],[27603,27651,27652,0],[7044,27652,27651,0],[27653,35213,27654,0],[27653,27654,27668,0],[27668,35209,27667,0],[27667,35209,7046,0],[7046,35209,27655,0],[27655,35209,27656,0],[27655,27656,27665,0],[27666,27656,27661,0],[27666,27661,6917,0],[6917,27661,6918,0],[6918,35215,49545,0],[49545,35360,27731,0],[27718,27657,27664,0],[27718,27664,27658,0],[27659,27658,35207,0],[35207,27662,35216,0],[35216,27662,27663,0],[35216,27663,27660,0],[27663,35360,27660,0],[27660,35360,35215,0],[35207,27658,27662,0],[27658,27664,27662,0],[27662,27664,27663,0],[27657,27731,27664,0],[27664,27731,27663,0],[49545,35215,35360,0],[27661,35215,6918,0],[27665,27666,27650,0],[27665,27650,27655,0],[27665,27656,27666,0],[27668,27667,27651,0],[27668,27651,27653,0],[27651,27667,7044,0],[7045,7044,7046,0],[7046,7044,27667,0],[27685,31921,7031,0],[7032,31931,27669,0],[27669,31931,27674,0],[27674,31931,31930,0],[27674,31930,31932,0],[27674,31932,31933,0],[27674,31933,27670,0],[27670,27746,27671,0],[27671,27746,27672,0],[27775,27783,27671,0],[27775,27671,27774,0],[27774,27671,27673,0],[27673,27671,27672,0],[27671,27783,27670,0],[27670,27783,27674,0],[27670,31933,27764,0],[27764,31933,27675,0],[27677,6963,27759,0],[6964,6963,6965,0],[6965,6963,27677,0],[6965,27677,27678,0],[27678,27677,27679,0],[27679,31764,27686,0],[27686,31764,27680,0],[27675,27680,27762,0],[27762,27680,27761,0],[27677,27676,27679,0],[6965,27678,6967,0],[6967,27678,27681,0],[27681,27678,27682,0],[27681,27682,27687,0],[27687,7031,31917,0],[7031,7030,27683,0],[27683,31949,7027,0],[7027,31949,27588,0],[27678,27679,27682,0],[27682,27679,27684,0],[27684,27685,7031,0],[27684,7031,27687,0],[7032,27685,31931,0],[27679,27686,27684,0],[27684,27686,27685,0],[6967,27681,6968,0],[6968,27681,27687,0],[6969,6968,27687,0],[6973,6974,27688,0],[27688,6974,6975,0],[27688,6975,27689,0],[27688,27689,27690,0],[27688,27690,6971,0],[6973,27688,6972,0],[6972,27688,6971,0],[27690,27689,27693,0],[27693,27689,6976,0],[27693,6976,27694,0],[27691,27690,27695,0],[27695,27690,27693,0],[27695,27693,27694,0],[6961,6962,27696,0],[6947,6961,27696,0],[31763,6963,31762,0],[6963,31763,27759,0],[6947,27696,31903,0],[31903,27696,31904,0],[27697,31894,1438,0],[1438,1437,27697,0],[6939,1435,6938,0],[6938,1435,27698,0],[6938,27698,1401,0],[6938,6937,27699,0],[27699,6936,27700,0],[27700,27701,27737,0],[27737,27701,27702,0],[27702,27701,27703,0],[27704,27703,36221,0],[36221,27703,27705,0],[27706,27724,27707,0],[27707,27724,27708,0],[27709,27708,27720,0],[27709,27720,27710,0],[36244,27711,27719,0],[36244,27719,36243,0],[36243,27719,31926,0],[36243,31926,27772,0],[27772,31926,27712,0],[27714,49544,27715,0],[27715,49544,27716,0],[27715,27716,31947,0],[31947,27716,27659,0],[27732,27711,27710,0],[27710,27720,27727,0],[27727,27720,27721,0],[27726,27721,27722,0],[27726,27722,36219,0],[27865,27722,27723,0],[27722,27721,27724,0],[27708,27724,27720,0],[27722,27724,27723,0],[6926,27723,27725,0],[27725,27723,27706,0],[27725,27706,6929,0],[6929,27706,6930,0],[27706,27723,27724,0],[27721,27726,27727,0],[27727,27726,27728,0],[27727,27728,27730,0],[27730,27728,6922,0],[6922,6921,27729,0],[27729,6921,6919,0],[27731,27729,49545,0],[6922,27728,6923,0],[27728,27726,6923,0],[27710,27727,27730,0],[27729,27730,6922,0],[27710,27730,27732,0],[27711,27732,27719,0],[27732,27730,27731,0],[27718,27658,27717,0],[27717,27658,27659,0],[27717,27659,27716,0],[27729,27731,27730,0],[27732,27731,27657,0],[27721,27720,27724,0],[27771,27712,27716,0],[6939,27699,6940,0],[27733,6940,49533,0],[49533,6940,27734,0],[27735,27734,27736,0],[27735,27737,27739,0],[27739,27737,27742,0],[27742,27737,27784,0],[27784,27702,27738,0],[27738,27702,27703,0],[27738,27703,27704,0],[27737,27735,27700,0],[27737,27702,27784,0],[27735,27739,27734,0],[27734,27739,27740,0],[27740,27739,27742,0],[27740,27742,27741,0],[27741,27743,27754,0],[27754,27743,27744,0],[27744,27743,27745,0],[27745,27769,36236,0],[27753,27755,27766,0],[27753,27766,27672,0],[27752,27672,27746,0],[27670,27764,27747,0],[27747,27764,27748,0],[27748,27763,27749,0],[27749,6960,6945,0],[6945,27750,27749,0],[27753,6942,27754,0],[27754,6942,27741,0],[27752,27746,27747,0],[27747,27746,27670,0],[27672,27752,27753,0],[27747,27751,27752,0],[27752,27751,27753,0],[27755,27753,27754,0],[27755,27754,27744,0],[27755,27744,36236,0],[27744,27745,36236,0],[27747,27748,27756,0],[27756,27748,27749,0],[27756,27749,27750,0],[27756,27751,27747,0],[27753,27751,6942,0],[27751,27756,6942,0],[6960,27749,27757,0],[27757,27765,27758,0],[27758,27760,27759,0],[27759,27760,27676,0],[27676,27677,27759,0],[27759,6962,27758,0],[27758,6962,27757,0],[27762,27763,27764,0],[27764,27675,27762,0],[27757,27749,27763,0],[27748,27764,27763,0],[27765,27763,27762,0],[27765,27762,27761,0],[27763,27765,27757,0],[27673,27672,27766,0],[27773,27767,36236,0],[27773,36236,27768,0],[27768,36236,27769,0],[27769,27738,27704,0],[27769,27745,27738,0],[27745,27784,27738,0],[27673,27766,31927,0],[27712,27771,27773,0],[27712,27773,27772,0],[27771,27770,27773,0],[27770,31927,27766,0],[27771,27713,27770,0],[27770,27713,31927,0],[27775,27780,27776,0],[27669,27777,27778,0],[49542,27776,27779,0],[27776,27780,27779,0],[27779,27780,31937,0],[27779,49543,49542,0],[27778,49542,27781,0],[27593,27781,7033,0],[7033,27781,27782,0],[7033,27782,7034,0],[49542,27778,27777,0],[27783,27775,27776,0],[49542,27777,27776,0],[27776,27777,27783,0],[27780,27775,27774,0],[27741,27742,27743,0],[27745,27743,27784,0],[27784,27743,27742,0],[27734,6940,27736,0],[27699,27736,6940,0],[27735,27736,27700,0],[27700,27736,27699,0],[27810,31899,6928,0],[27785,49531,49528,0],[27868,27785,49528,0],[27868,49528,27786,0],[27788,27789,27790,0],[27809,36403,49527,0],[49527,36403,27791,0],[49527,27791,27807,0],[27791,27805,27792,0],[27792,27805,27793,0],[36398,27793,27796,0],[36398,27796,27800,0],[36398,27800,27794,0],[27794,27800,27801,0],[27794,27801,27795,0],[36397,27795,6892,0],[27800,27796,27797,0],[1458,27798,31390,0],[27799,27801,27803,0],[6890,27795,27801,0],[6890,27801,27799,0],[27801,27800,27804,0],[27801,27804,27803,0],[27804,1460,27802,0],[27804,27802,27803,0],[27803,27802,6889,0],[6889,27802,1461,0],[27804,27800,27797,0],[27791,36409,27805,0],[27793,27805,27798,0],[27793,27798,27796,0],[27787,27789,27786,0],[27786,27789,27788,0],[27786,27788,27822,0],[27823,27822,27806,0],[27823,27806,27837,0],[27886,36402,27808,0],[27886,27808,27807,0],[27807,27808,49527,0],[49527,27806,27809,0],[27790,27809,27822,0],[27790,27822,27788,0],[6928,49531,27810,0],[6929,27810,27725,0],[49531,6927,27810,0],[27810,6927,6926,0],[27810,6926,27725,0],[6922,6923,27876,0],[27876,27811,27863,0],[27814,6914,27815,0],[27842,27815,27816,0],[27816,27861,27842,0],[27842,27861,27817,0],[27842,27817,27843,0],[27843,27817,27839,0],[27817,27875,27836,0],[27835,27818,27819,0],[27824,27819,27820,0],[27824,27820,27821,0],[27821,27820,27823,0],[27822,27823,27786,0],[27821,27837,27824,0],[27824,27837,27825,0],[27824,27825,27826,0],[27826,27825,36230,0],[27826,36230,27829,0],[27829,27827,27828,0],[27828,27827,6897,0],[27828,6897,6898,0],[27828,6898,27830,0],[27830,27831,27832,0],[27832,27831,36216,0],[27832,36216,27833,0],[27833,27824,27826,0],[27826,27829,27833,0],[27833,27829,27832,0],[27830,27832,27828,0],[27828,27832,27829,0],[27824,27833,27819,0],[27819,27833,36216,0],[27835,27839,27836,0],[27836,27875,27818,0],[36216,27834,27819,0],[27834,27835,27819,0],[27835,27836,27818,0],[27823,27837,27821,0],[27837,36402,27825,0],[27814,27815,27838,0],[27814,27838,27844,0],[27844,27838,36245,0],[27841,27839,27835,0],[27841,27835,27834,0],[36245,27838,27843,0],[27843,27838,27842,0],[27842,27838,27815,0],[27814,27844,36241,0],[27844,27845,27857,0],[27849,27846,27847,0],[27847,6902,27853,0],[27853,6902,6903,0],[27853,6903,27848,0],[27848,6903,6904,0],[6904,6905,27848,0],[27878,6902,27847,0],[27878,27847,27846,0],[27878,27846,27881,0],[27845,27846,27857,0],[27857,27846,27849,0],[27857,27849,27850,0],[27857,27850,6912,0],[6912,27850,6911,0],[27851,27852,6909,0],[6909,27855,6908,0],[27851,6911,27850,0],[27851,27850,27852,0],[27852,27850,27853,0],[27847,27853,27850,0],[27847,27850,27849,0],[27854,27852,27853,0],[6907,27854,27848,0],[27848,6905,6907,0],[27853,27848,27854,0],[6909,27852,27855,0],[27855,27852,27854,0],[36241,27856,27813,0],[27813,27856,27858,0],[27813,27858,6914,0],[6912,27856,27857,0],[6912,6913,27856,0],[27856,6913,27858,0],[27814,27813,6914,0],[6914,27859,27815,0],[27815,27859,27812,0],[27815,27812,27816,0],[27860,27862,27874,0],[27862,27860,27861,0],[27862,27861,27816,0],[27812,27862,27816,0],[27811,27862,27863,0],[27812,27863,27862,0],[27874,27862,27811,0],[27874,27811,27864,0],[27873,6924,27865,0],[27873,27865,6925,0],[27873,6925,27872,0],[27872,6925,27866,0],[27867,27866,27785,0],[27867,27785,27868,0],[27867,27868,27870,0],[27870,27868,27869,0],[27869,27818,27875,0],[27869,27875,27870,0],[27872,27871,27874,0],[27873,27874,6924,0],[27874,27873,27872,0],[27867,27872,27866,0],[27867,27871,27872,0],[27874,27871,27860,0],[27860,27871,27870,0],[27860,27870,27861,0],[27817,27861,27875,0],[27875,27861,27870,0],[27785,27866,49531,0],[49531,27866,6927,0],[6927,27866,6925,0],[27811,27876,27864,0],[27874,27864,6924,0],[6924,27864,6923,0],[6923,27864,27876,0],[27812,6916,27863,0],[27666,27877,35359,0],[36193,6902,27879,0],[27879,27878,27880,0],[27880,27881,36237,0],[27878,27881,27880,0],[6902,27878,27879,0],[36210,27882,6895,0],[6895,27882,6894,0],[36395,27882,6896,0],[36395,6896,27883,0],[27883,6896,6897,0],[27883,6897,36231,0],[27884,36233,27885,0],[27889,27887,36401,0],[36401,27887,27886,0],[27886,27887,27825,0],[27825,27887,27888,0],[27888,27889,36233,0],[36233,27889,27885,0],[6886,6887,6885,0],[6887,6888,6885,0],[6885,27891,27890,0],[27890,27891,6877,0],[27890,6877,6883,0],[27892,27893,1462,0],[27891,27892,6877,0],[6877,27892,1473,0],[1473,27892,1472,0],[27891,6885,27892,0],[27894,27895,27896,0],[27896,27895,27897,0],[27923,27898,27897,0],[27898,31440,36590,0],[36590,31440,27899,0],[36590,27899,27900,0],[36590,27900,36387,0],[36590,36387,27901,0],[27901,27902,36589,0],[36589,27902,27903,0],[36589,27903,27897,0],[27908,27896,27903,0],[27904,27903,36388,0],[27904,36388,27905,0],[27905,36388,31426,0],[27905,31421,31424,0],[27907,31424,27906,0],[27907,27906,31395,0],[31395,27906,31405,0],[27903,27904,27908,0],[27908,27909,27894,0],[27894,27909,27910,0],[27894,27910,6884,0],[6884,27910,27890,0],[27890,27910,27911,0],[27910,27909,27911,0],[27911,27909,6886,0],[6886,27909,27912,0],[27915,27914,31393,0],[27919,27915,31420,0],[27919,31420,27921,0],[27921,31420,6891,0],[27921,6891,6890,0],[6890,6889,27921,0],[27921,6889,27916,0],[27916,6889,1461,0],[27916,1461,27920,0],[27916,27920,27917,0],[27914,27918,27913,0],[27914,27915,27918,0],[27918,27915,27917,0],[27917,27915,27919,0],[27917,27919,27916,0],[27920,6887,27917,0],[27917,6887,27918,0],[27918,6887,27913,0],[27919,27921,27916,0],[6886,27912,27913,0],[27894,27896,27908,0],[27897,27903,27896,0],[27897,27895,27923,0],[27923,27895,27922,0],[27923,27922,1486,0],[27923,1486,1487,0],[1487,1488,27923,0],[27923,1488,27898,0],[27922,27894,6881,0],[6881,27894,6884,0],[1486,27922,6881,0],[1482,6874,1474,0],[27926,1473,49525,0],[27926,49525,27924,0],[27924,1480,27925,0],[27925,1480,1479,0],[27925,1479,27928,0],[1480,27924,1481,0],[6879,27926,27927,0],[27926,27924,27925,0],[27926,27925,27927,0],[27925,27928,27927,0],[1452,31387,1454,0],[1454,31387,27929,0],[1454,27929,1455,0],[1450,1451,27930,0],[27942,27931,27945,0],[27942,27945,27932,0],[49404,27932,27944,0],[49404,27944,27933,0],[27941,27933,27934,0],[27934,27935,27953,0],[6934,6935,27937,0],[27937,6935,27938,0],[27938,1429,1399,0],[1429,27938,1400,0],[1400,27938,6937,0],[6937,27938,6936,0],[6936,27938,6935,0],[27937,27938,27936,0],[27953,27936,27934,0],[27934,27936,27939,0],[1397,27940,27941,0],[27941,27940,1449,0],[27941,1449,49404,0],[49404,1449,27942,0],[49404,27942,27932,0],[27939,1398,27934,0],[27934,1398,27941,0],[27941,1398,1397,0],[1398,27939,1399,0],[1399,27939,27936,0],[1399,27936,27938,0],[27953,27935,27952,0],[27952,27935,27948,0],[27947,27948,27943,0],[1453,27945,1452,0],[27945,27946,27944,0],[27944,27946,49396,0],[27944,49396,27943,0],[27943,49396,27947,0],[27948,27947,31895,0],[27948,31895,27952,0],[27952,31895,27949,0],[27949,31895,31896,0],[27949,31896,27950,0],[27950,6934,27951,0],[27951,27937,27953,0],[27953,27937,27936,0],[27937,27951,6934,0],[6934,27950,6933,0],[6933,27950,31897,0],[6933,31897,6931,0],[27951,27952,27949,0],[27951,27949,27950,0],[27946,27945,1453,0],[27930,1451,27931,0],[27931,1451,1452,0],[27931,1452,27945,0],[27932,27945,27944,0],[27944,27943,27933,0],[27933,27948,27935,0],[27948,27933,27943,0],[27934,27933,27935,0],[1449,1448,1393,0],[27954,1393,27955,0],[27954,27955,31379,0],[27956,31379,27963,0],[27958,27956,27957,0],[27958,27957,27962,0],[27959,1387,49398,0],[1387,1389,1388,0],[1389,27960,1390,0],[1390,27960,27961,0],[1389,1387,27959,0],[1389,27959,27960,0],[27960,27959,27962,0],[27961,27962,27957,0],[27961,27957,27963,0],[1392,27963,27955,0],[27955,27963,31379,0],[27956,27963,27957,0],[1392,1391,27963,0],[27963,1391,27961,0],[27962,27961,27960,0],[1393,27954,27942,0],[1372,27964,27971,0],[27971,27964,1610,0],[1370,1368,1366,0],[27968,1365,1363,0],[1364,1363,1365,0],[1366,27965,1370,0],[1366,1365,27965,0],[1370,27965,27966,0],[1609,27966,27967,0],[1609,27967,6817,0],[6817,6816,1609,0],[27966,27968,27967,0],[1365,27968,27965,0],[27965,27968,27966,0],[6818,6123,1362,0],[27969,1367,27970,0],[27970,1367,1385,0],[1385,1367,1384,0],[27972,1368,1369,0],[31578,1369,1371,0],[31578,1371,31569,0],[31569,1371,27971,0],[27971,1371,1372,0],[1369,31578,27972,0],[27972,31578,27973,0],[27975,31575,1379,0],[27973,27974,27972,0],[27972,27974,1383,0],[27972,1383,1384,0],[27972,1384,1368,0],[31575,27975,27974,0],[27974,27975,1383,0],[1383,27975,27976,0],[27975,1379,27976,0],[1381,1379,1380,0],[1367,27969,1365,0],[1365,27969,1360,0],[1365,1360,1364,0],[1360,27969,27978,0],[27978,27969,27977,0],[27978,27977,27979,0],[27979,28004,6113,0],[6113,28004,1359,0],[27981,28008,27982,0],[27981,27982,1357,0],[28003,1357,27982,0],[28003,27982,27983,0],[27983,27982,27984,0],[27984,28009,27985,0],[27985,28009,28007,0],[27988,27986,49382,0],[49382,27987,1388,0],[49382,1388,27988,0],[27988,1388,1389,0],[27988,1389,1390,0],[49400,27989,1391,0],[27988,27990,27986,0],[27988,1390,27990,0],[31547,1416,27993,0],[27995,1420,27996,0],[27995,27996,49401,0],[49401,27996,27991,0],[27997,27996,1420,0],[1420,27994,27997,0],[27997,27994,27992,0],[27992,27994,1416,0],[27994,27993,1416,0],[27993,27994,1419,0],[1419,27994,1396,0],[1396,27994,1420,0],[1420,27995,1421,0],[1421,27995,1422,0],[1416,28000,27992,0],[27991,27996,27998,0],[27991,27998,27985,0],[27985,27998,27999,0],[28002,27999,28000,0],[28000,27999,27992,0],[27992,27999,27997,0],[27997,27999,27996,0],[27996,27999,27998,0],[28000,1417,28001,0],[28001,1417,1418,0],[28001,1418,31548,0],[31548,1356,28003,0],[28000,28001,28002,0],[27999,28002,27984,0],[27999,27984,27985,0],[27984,28002,28001,0],[28003,27983,28001,0],[31548,28003,28001,0],[27983,27984,28001,0],[1417,1351,1418,0],[27986,27990,27991,0],[27991,27990,1390,0],[27991,1390,27989,0],[28005,27986,28006,0],[28005,28006,28004,0],[28005,28004,27979,0],[28005,27979,27977,0],[28010,28006,28007,0],[28010,28007,28009,0],[28010,28009,28008,0],[28008,28009,27984,0],[28008,27984,27982,0],[27985,28007,28006,0],[27985,28006,27986,0],[1359,28004,27980,0],[27980,28004,28006,0],[28010,28008,27980,0],[28010,27980,28006,0],[27979,6113,27978,0],[27969,27970,1386,0],[1358,1359,27980,0],[5947,28011,5938,0],[5938,28011,28012,0],[28012,28011,31644,0],[28026,28014,28015,0],[28027,28015,28016,0],[28016,28017,28024,0],[28065,28017,28018,0],[28018,28017,769,0],[769,28017,28016,0],[769,28016,28015,0],[28015,28014,28365,0],[5938,28012,28019,0],[28020,28019,28026,0],[28020,28026,28025,0],[28021,28023,28071,0],[28071,28023,28022,0],[28023,28021,28024,0],[28024,28021,28025,0],[28027,28026,28015,0],[28014,28026,28013,0],[31644,28013,28012,0],[28026,28019,28013,0],[28013,28019,28012,0],[28025,28026,28027,0],[28025,28027,28024,0],[28024,28027,28016,0],[28028,28082,28022,0],[28082,28068,28029,0],[28084,28029,28063,0],[28033,28042,31680,0],[31680,28042,28034,0],[28076,28035,28036,0],[28038,28037,28049,0],[28038,28049,28039,0],[28038,28040,1289,0],[28038,1289,28041,0],[28041,1289,1290,0],[28041,1290,28035,0],[28035,1290,28036,0],[28037,28041,28035,0],[28037,28035,28034,0],[28041,28037,28038,0],[28032,774,28033,0],[28033,774,28042,0],[28045,28058,28047,0],[28045,28047,31267,0],[31267,28047,28046,0],[780,28046,779,0],[779,28046,28047,0],[779,28047,30960,0],[30960,28047,28048,0],[28042,28062,28049,0],[28049,28037,28042,0],[28034,28042,28037,0],[28049,28062,28050,0],[28050,28056,28057,0],[28050,28057,28039,0],[28049,28050,28039,0],[28038,28039,28040,0],[28052,28053,1275,0],[1275,28053,1274,0],[1275,1274,4396,0],[1274,28053,4373,0],[4373,28053,28051,0],[31195,28054,1288,0],[1288,28054,28055,0],[1289,28040,31195,0],[28039,28057,28040,0],[28040,28057,28051,0],[28051,28057,28059,0],[4373,28059,1273,0],[28059,4373,28051,0],[28062,28043,28050,0],[28050,28043,28056,0],[28059,28060,1273,0],[28056,28059,28057,0],[28043,28044,28056,0],[28056,28058,28059,0],[28060,28059,28045,0],[28060,28045,28061,0],[28060,28061,1272,0],[1272,1273,28060,0],[1272,28061,31268,0],[28044,28058,28056,0],[28058,28045,28059,0],[28042,774,28062,0],[774,776,28062,0],[28062,776,28043,0],[28043,776,777,0],[28043,777,28044,0],[28044,778,28058,0],[28058,778,28048,0],[28058,28048,28047,0],[778,28044,777,0],[28030,28063,28031,0],[28031,28063,773,0],[28381,773,28067,0],[772,28067,28064,0],[771,28066,28018,0],[772,28064,28066,0],[28066,28064,28065,0],[28066,28065,28018,0],[28068,28082,28067,0],[28068,773,28029,0],[28029,773,28063,0],[28082,28028,28069,0],[28082,28069,28067,0],[28023,28028,28022,0],[28022,28070,28071,0],[28071,1296,28080,0],[28080,1296,28072,0],[28080,28072,28025,0],[28080,28025,28021,0],[28025,28072,28020,0],[1296,28071,28073,0],[28079,28074,28075,0],[28076,28075,28077,0],[28076,28077,31679,0],[28070,28074,28071,0],[28071,28074,28073,0],[28074,28070,28077,0],[28074,28077,28075,0],[28079,28075,1291,0],[1291,28075,28078,0],[28036,28078,28076,0],[28076,28078,28075,0],[28074,28079,28073,0],[28073,28079,1295,0],[28079,1294,1295,0],[1294,28079,1292,0],[28021,28071,28080,0],[28070,28081,28077,0],[28083,28081,28082,0],[28083,28082,28029,0],[28082,28081,28022,0],[28022,28081,28070,0],[28081,28083,28077,0],[28077,28083,31679,0],[31679,28083,28084,0],[28029,28084,28083,0],[28024,28017,28023,0],[28023,28017,28065,0],[28023,28065,28069,0],[28069,28028,28023,0],[28069,28065,28064,0],[28064,28067,28069,0],[1284,28090,28085,0],[28087,28085,28086,0],[28086,31194,28052,0],[28052,31194,28053,0],[28054,1286,28055,0],[28085,1286,28086,0],[1282,28087,1276,0],[1282,1276,1277,0],[1276,28087,28086,0],[1276,28086,1275,0],[28086,28052,1275,0],[1277,28150,28088,0],[1284,1283,28089,0],[1285,28148,5965,0],[1284,28089,28090,0],[28088,28091,1283,0],[1283,28091,31263,0],[1283,31263,28089,0],[28093,28092,28094,0],[49612,28094,28097,0],[49612,28097,28095,0],[28095,28097,31244,0],[31244,28097,28096,0],[28089,31263,28092,0],[28092,31263,28097,0],[28092,28097,28094,0],[28096,28097,31263,0],[28089,28092,28090,0],[28090,28092,28093,0],[28090,28093,28148,0],[28148,28093,28098,0],[28148,28098,28143,0],[28143,28098,28099,0],[28099,28100,28101,0],[28101,28102,28141,0],[28141,28102,28103,0],[28140,28103,28104,0],[28104,28112,28142,0],[28142,28112,28113,0],[28105,28114,28116,0],[28116,28106,28107,0],[28107,28106,5977,0],[28107,5977,5958,0],[28107,5958,5959,0],[28107,5959,28105,0],[5978,28106,5980,0],[28136,28106,28115,0],[28108,28115,28109,0],[28111,28110,28103,0],[28104,28103,28110,0],[28113,28114,28105,0],[28112,28104,28110,0],[28110,28117,28112,0],[28114,28117,28115,0],[28114,28115,28116,0],[28115,28106,28116,0],[28114,28113,28117,0],[28117,28113,28112,0],[28110,28109,28117,0],[28117,28109,28115,0],[28120,28119,28121,0],[28120,28121,28131,0],[28122,28130,28123,0],[28123,28130,31607,0],[31607,28130,28125,0],[28125,28130,28124,0],[31301,28124,28126,0],[31301,28126,28127,0],[28127,28126,28132,0],[28127,5856,5855,0],[30202,28128,28129,0],[5854,28129,28128,0],[30202,49605,28128,0],[28128,49605,5855,0],[28124,28130,30297,0],[30297,28130,28131,0],[28131,28130,28122,0],[28124,28133,28126,0],[28126,28133,28132,0],[28132,5856,28127,0],[49599,28134,28118,0],[28118,28134,28108,0],[28108,28135,28115,0],[28137,5982,28139,0],[28139,5982,28134,0],[28134,5982,28108,0],[5982,28137,5983,0],[28115,28135,28136,0],[28136,5980,28106,0],[28118,28108,28109,0],[28120,28131,28122,0],[28122,28123,28139,0],[28139,28123,28137,0],[28137,28123,5983,0],[5983,28123,5914,0],[5912,5914,28138,0],[5912,28138,31304,0],[31306,31303,31605,0],[31303,31304,31605,0],[28120,28122,28134,0],[28134,28122,28139,0],[5978,5977,28106,0],[28105,5960,28113,0],[28104,28142,28146,0],[28104,28146,28140,0],[28103,28140,28144,0],[5960,5961,28113,0],[28113,5961,28142,0],[28145,5967,5964,0],[28145,5964,28147,0],[28143,28147,5965,0],[5964,5965,28147,0],[5966,28146,28142,0],[28101,28141,28099,0],[28099,28141,28143,0],[28143,28141,28144,0],[28145,28144,28140,0],[28145,28140,5967,0],[28146,5966,28140,0],[5966,5967,28140,0],[28145,28147,28144,0],[28144,28147,28143,0],[5965,28148,28143,0],[28149,28088,28150,0],[28149,28150,1280,0],[1280,28150,1279,0],[1279,28150,1281,0],[1279,1281,31271,0],[1270,4361,28151,0],[1271,28151,4370,0],[1271,4370,4371,0],[28151,1271,1270,0],[1254,1265,28152,0],[31033,28152,1266,0],[1266,28152,1265,0],[28152,31033,1252,0],[1249,1250,1248,0],[1248,28156,28153,0],[28153,28156,28154,0],[28155,28154,4363,0],[1267,28154,28156,0],[28156,1250,28157,0],[28157,1250,31038,0],[28157,31038,31033,0],[1266,28157,31033,0],[28156,28157,1267,0],[28157,1266,1267,0],[28156,1248,1250,0],[28158,1246,1241,0],[1246,28158,31032,0],[781,49808,780,0],[49809,780,49808,0],[49809,49808,31266,0],[28159,31266,1245,0],[28159,1245,1246,0],[49808,1244,1245,0],[28162,28160,28161,0],[28162,28161,31656,0],[31656,28161,28163,0],[784,28164,783,0],[783,28164,49585,0],[28161,28160,782,0],[28161,782,49585,0],[28164,28163,49585,0],[49585,28163,28161,0],[28160,1242,1244,0],[1239,1237,30879,0],[30879,1237,31031,0],[31031,1237,28177,0],[31031,28177,28165,0],[28165,28177,28178,0],[28165,28178,28166,0],[28166,28178,31023,0],[31023,28178,1231,0],[31661,28167,28174,0],[31661,28174,28168,0],[28168,28174,28169,0],[28162,28171,28175,0],[28162,28175,28160,0],[28160,28175,1242,0],[1242,28175,28172,0],[1242,28172,1241,0],[1241,28172,1240,0],[28172,28174,28173,0],[28173,28174,30880,0],[30880,28174,1239,0],[1239,28174,1238,0],[1238,28174,28167,0],[28169,28174,28170,0],[28170,28174,28172,0],[28170,28172,28175,0],[28171,28170,28175,0],[1236,1233,28176,0],[28178,28177,1232,0],[1232,28177,1233,0],[1232,827,826,0],[1232,826,28178,0],[28178,826,28179,0],[28178,28179,1231,0],[1231,28179,1230,0],[1230,28179,28194,0],[28194,28179,28180,0],[28181,28195,28192,0],[28184,855,28183,0],[28185,28228,28183,0],[28187,28186,28225,0],[28188,28187,31019,0],[1228,31019,1226,0],[28183,28189,28184,0],[28228,28182,839,0],[839,28182,850,0],[28190,28186,28187,0],[28192,28190,28191,0],[28191,28190,28187,0],[28191,28187,28188,0],[28191,28188,28192,0],[28181,28192,28193,0],[28193,28194,28180,0],[28180,28202,28193,0],[28193,28202,28181,0],[28186,28190,28182,0],[28182,28190,850,0],[850,28190,28195,0],[847,28195,28196,0],[28196,28195,28181,0],[28192,28195,28190,0],[847,28196,838,0],[837,838,28207,0],[835,28207,28206,0],[833,834,28205,0],[833,28205,832,0],[832,28205,831,0],[831,28205,28198,0],[831,28198,830,0],[28197,828,32000,0],[28197,32000,32200,0],[28197,830,28198,0],[28197,28198,828,0],[828,28198,28199,0],[828,28199,28204,0],[828,28204,28343,0],[28199,28200,28201,0],[28201,28196,28181,0],[28181,28202,28201,0],[28204,28202,28343,0],[28343,28202,28203,0],[826,28203,28180,0],[826,28180,28179,0],[28180,28203,28202,0],[28202,28204,28201,0],[28201,28204,28199,0],[28198,28205,28199,0],[28199,28205,28206,0],[28206,28205,834,0],[28196,28200,838,0],[28196,28201,28200,0],[28199,28206,28207,0],[28199,28207,28200,0],[28200,28207,838,0],[834,31797,835,0],[834,835,28206,0],[1221,28208,28210,0],[28210,28208,28254,0],[28210,28254,28209,0],[28209,28215,28210,0],[28210,28215,28211,0],[1220,28212,28219,0],[1220,28219,28213,0],[28213,28219,28214,0],[28213,28214,1210,0],[28213,1210,31184,0],[31184,1210,32406,0],[28213,31185,1220,0],[1220,31185,1219,0],[1219,31185,1217,0],[1217,31185,31184,0],[1217,31184,1211,0],[1211,31184,32406,0],[1219,1217,31186,0],[1217,1211,1216,0],[28211,28215,28216,0],[28216,28215,28221,0],[28217,1197,28220,0],[28220,1197,1180,0],[28220,1180,1179,0],[28211,28216,28212,0],[28212,28216,28219,0],[28214,28219,28220,0],[28218,1208,1179,0],[49577,28214,1208,0],[1208,28214,28220,0],[1216,1215,31188,0],[1217,1216,31186,0],[31186,1216,31188,0],[1215,31190,1213,0],[1213,31190,31189,0],[1207,28218,1178,0],[1178,28218,1179,0],[28238,28217,28221,0],[28221,28215,28239,0],[28239,28209,28233,0],[28233,28209,28254,0],[28231,28254,28242,0],[28231,28242,28222,0],[28241,28222,28243,0],[32234,28243,28253,0],[858,28229,28226,0],[28226,28224,28225,0],[858,28226,857,0],[28227,28226,28186,0],[28227,28186,28182,0],[28186,28226,28225,0],[857,28226,28227,0],[857,28227,28185,0],[28185,28227,28228,0],[28185,28183,855,0],[28182,28228,28227,0],[28226,28229,28224,0],[28250,28187,28225,0],[28225,28224,28250,0],[858,859,28223,0],[28223,859,860,0],[28254,28232,28233,0],[28234,28233,28235,0],[1188,28236,28235,0],[28239,28238,28221,0],[28238,28239,28234,0],[28234,28235,28237,0],[28234,28237,28238,0],[28237,28235,28236,0],[28234,28239,28233,0],[28217,28238,1195,0],[28217,1195,1205,0],[1205,1197,28217,0],[28236,28240,28237,0],[28237,28240,1195,0],[28237,1195,28238,0],[28233,28232,28235,0],[28232,28254,28231,0],[28231,28241,28230,0],[28231,28222,28241,0],[28223,860,28253,0],[28222,28242,28208,0],[28208,32415,1222,0],[32414,1223,28244,0],[28244,1223,28245,0],[28246,28244,28245,0],[28253,28246,28223,0],[28223,28246,28247,0],[28223,28247,858,0],[858,28247,28229,0],[28243,28208,32414,0],[28243,32414,28244,0],[28245,1224,28248,0],[28248,28251,28229,0],[28229,28251,28224,0],[28224,28251,28250,0],[31019,28250,28249,0],[31019,28249,1226,0],[28249,28251,28248,0],[28251,28249,28250,0],[28252,28249,28248,0],[28252,28248,1224,0],[28229,28247,28248,0],[28247,28246,28248,0],[28248,28246,28245,0],[28208,28243,28222,0],[28243,28244,28253,0],[28253,28244,28246,0],[28208,28242,28254,0],[28209,28239,28215,0],[1207,1206,1209,0],[28255,1175,28290,0],[28255,28290,1206,0],[1209,1206,28256,0],[1140,1139,31183,0],[31183,1139,28257,0],[28258,30974,28259,0],[28260,32226,30941,0],[30941,32226,28261,0],[28262,28264,28263,0],[28265,30966,30938,0],[30938,31043,28266,0],[28266,31043,4458,0],[28268,28267,28269,0],[30969,28270,28271,0],[31043,28271,28267,0],[31043,28267,4458,0],[28267,28271,28269,0],[28269,28271,28270,0],[28261,32226,28272,0],[28273,30977,28274,0],[28274,30989,28275,0],[28275,30989,31044,0],[31044,30989,30996,0],[31044,30996,31045,0],[31045,30996,30990,0],[31045,30990,28276,0],[32409,31047,32408,0],[28278,31090,28277,0],[28278,28277,4454,0],[28277,32403,4454,0],[4454,32403,32404,0],[30974,28258,30973,0],[30973,28258,28279,0],[28279,28258,1212,0],[1212,28258,31189,0],[31189,28258,28259,0],[28289,28259,30975,0],[28289,30975,32224,0],[32224,30975,30978,0],[32224,30978,28260,0],[28259,28289,1213,0],[1213,28289,28280,0],[30891,32225,30869,0],[28283,28282,28284,0],[28283,28284,28285,0],[28285,28284,28286,0],[28285,28286,30865,0],[30863,28288,4463,0],[1140,28256,1141,0],[1141,28256,1206,0],[1141,1206,28290,0],[32405,1141,1173,0],[1168,1173,1174,0],[1168,1174,1170,0],[1174,1176,1170,0],[1170,1176,28293,0],[1170,28293,28291,0],[28291,28293,28292,0],[28293,28294,28292,0],[1081,28291,28292,0],[28299,28295,28296,0],[28296,28295,1178,0],[28294,28299,28297,0],[28297,1182,28298,0],[28294,28293,28299,0],[1080,28294,28297,0],[1080,28297,28298,0],[1080,28298,1079,0],[1079,28298,1203,0],[1176,1177,28299,0],[28299,1177,28295,0],[28299,28293,1176,0],[1177,28255,28295,0],[28295,28255,1178,0],[1158,1129,1134,0],[28301,1148,1083,0],[1075,28302,1076,0],[1076,28302,28303,0],[28303,32319,28307,0],[28307,32319,28304,0],[28307,28304,32320,0],[32329,28305,32320,0],[1055,28308,28312,0],[28312,28308,32304,0],[28309,32336,32314,0],[32314,32336,28310,0],[32307,28308,1055,0],[32320,1055,28307,0],[28307,1055,28312,0],[28303,28312,32304,0],[28312,28303,28307,0],[894,1075,893,0],[895,28322,28313,0],[28316,32130,28318,0],[28318,32130,32137,0],[28318,32137,32138,0],[28318,32138,32139,0],[28320,28319,896,0],[896,28319,32324,0],[28316,28318,28319,0],[28316,28319,28320,0],[28316,28320,28313,0],[28313,28320,895,0],[28316,28313,28317,0],[28317,28313,28314,0],[28320,896,895,0],[895,894,893,0],[895,893,28322,0],[889,28315,28321,0],[889,28321,32338,0],[32338,28321,890,0],[890,28321,891,0],[28313,28322,28314,0],[28321,28315,28323,0],[28322,28323,28314,0],[28314,28323,28315,0],[28321,28323,891,0],[891,28323,892,0],[892,28323,28322,0],[874,32126,32338,0],[32126,874,28324,0],[28324,874,28325,0],[28324,28325,28337,0],[28337,28325,28334,0],[28337,28334,28335,0],[28337,28335,28326,0],[28327,28326,32351,0],[32350,32351,32217,0],[32350,32217,28336,0],[32350,28336,28328,0],[28328,28336,851,0],[28328,851,28329,0],[28328,28329,32207,0],[32207,28329,28330,0],[848,28330,839,0],[28331,28333,852,0],[28332,852,28333,0],[28333,28335,28334,0],[31010,28334,28325,0],[28326,28335,28333,0],[28326,28333,28331,0],[28326,28331,32351,0],[32351,28331,32217,0],[28325,32337,31010,0],[28334,31010,28333,0],[28336,28331,852,0],[28337,32216,28324,0],[28327,875,32216,0],[28324,32216,875,0],[31010,873,872,0],[873,869,872,0],[865,866,28338,0],[1186,28339,28338,0],[28338,28339,864,0],[864,28339,31008,0],[31008,28339,1185,0],[856,28342,28341,0],[28341,28342,28340,0],[28341,28340,859,0],[856,28341,859,0],[28184,854,28342,0],[28184,28342,855,0],[855,28342,856,0],[852,853,28189,0],[853,854,28189,0],[854,28184,28189,0],[28343,827,28344,0],[28344,827,825,0],[31662,31660,31770,0],[818,31772,817,0],[817,31772,816,0],[816,31772,819,0],[816,819,28345,0],[819,28346,28345,0],[28345,28346,815,0],[28347,814,815,0],[28347,815,28348,0],[792,31715,791,0],[792,791,28351,0],[791,28349,790,0],[28348,792,28347,0],[815,28346,28348,0],[28348,28346,820,0],[792,28348,31715,0],[31715,28348,820,0],[794,796,31757,0],[797,1327,800,0],[801,800,31890,0],[801,31890,28350,0],[798,799,28351,0],[28351,28352,798,0],[28354,28353,790,0],[790,28355,31685,0],[31685,28355,28356,0],[28357,28359,28385,0],[28385,787,28383,0],[28383,787,28358,0],[787,28385,31713,0],[31713,28385,28359,0],[28359,28356,788,0],[28359,788,31713,0],[790,28353,28352,0],[751,28354,31682,0],[751,31682,752,0],[752,31682,31686,0],[28362,28361,28360,0],[28362,28360,28363,0],[28362,28363,28375,0],[28375,28363,28367,0],[28367,28363,28364,0],[28364,28363,770,0],[28365,28366,31648,0],[28365,31648,28364,0],[28364,31648,28367,0],[28367,31647,28375,0],[31710,31562,28370,0],[28369,28370,28371,0],[28372,28374,31634,0],[28372,31634,31632,0],[28368,31647,28373,0],[28373,31647,28374,0],[28373,28374,28370,0],[28362,28375,28361,0],[28405,28378,28379,0],[28405,28379,771,0],[772,28380,28382,0],[772,28382,28381,0],[28397,28381,28382,0],[28397,28382,28384,0],[28383,28384,28357,0],[28357,28384,28401,0],[28357,28385,28383,0],[28384,28383,28386,0],[28393,28386,28387,0],[28393,28387,28388,0],[28388,28387,31638,0],[31638,28387,28389,0],[31638,28389,28390,0],[783,49585,28392,0],[30965,49586,31637,0],[28391,30965,31637,0],[30958,28391,30961,0],[30961,28391,28392,0],[28392,28391,31637,0],[28392,31637,783,0],[28384,28386,28397,0],[28397,28386,28393,0],[28397,28393,28394,0],[28394,28388,28395,0],[28032,28396,774,0],[28396,28032,28395,0],[28394,773,28397,0],[28386,28383,28398,0],[28389,784,28390,0],[28387,785,28389,0],[785,28398,28358,0],[28358,28398,28383,0],[785,28387,28398,0],[28398,28387,28386,0],[28382,28380,28399,0],[28380,28379,28400,0],[28399,28400,28401,0],[28359,28401,28356,0],[28359,28357,28401,0],[28382,28401,28384,0],[28382,28399,28401,0],[28400,28399,28380,0],[28360,28404,28363,0],[752,31686,753,0],[28351,799,28402,0],[28402,799,795,0],[793,28402,795,0],[793,795,794,0],[28015,28365,28403,0],[28403,28365,28364,0],[28403,28364,770,0],[769,28403,770,0],[771,770,28405,0],[28405,770,28404,0],[28405,28376,28377,0],[28405,28377,28378,0],[770,28363,28404,0],[765,31633,766,0],[766,31633,768,0],[768,31633,31645,0],[768,31645,31648,0],[768,31648,28366,0],[31707,28406,28453,0],[28453,28406,28420,0],[28421,28406,28410,0],[28410,31628,28409,0],[28409,28452,28407,0],[28407,28408,28409,0],[28409,31704,28410,0],[28421,28411,28422,0],[28422,28411,31700,0],[31700,28412,28423,0],[28423,28412,28413,0],[49589,28413,49592,0],[49589,49592,49591,0],[28414,1306,5749,0],[28415,28417,49591,0],[49591,28414,28415,0],[28414,1308,28415,0],[28415,1308,1309,0],[28415,1309,28416,0],[28417,28416,28429,0],[28417,28429,28418,0],[28418,28425,28419,0],[31706,28420,28421,0],[28421,28422,31706,0],[31706,28422,28424,0],[28424,28423,49588,0],[49588,28423,28413,0],[49588,28413,49589,0],[31700,28423,28424,0],[28421,28420,28406,0],[28418,28429,28425,0],[28425,28426,28433,0],[28433,28426,28427,0],[28430,28428,1310,0],[1310,28428,1309,0],[1310,28450,28430,0],[28431,28432,28427,0],[28427,28432,28433,0],[28427,28428,28431,0],[28431,28428,28430,0],[28430,28450,28434,0],[28435,28434,28436,0],[31907,28437,28438,0],[31907,28438,28439,0],[28439,28438,1319,0],[28440,28439,28441,0],[28442,28441,28443,0],[28442,28443,761,0],[28442,761,762,0],[761,28443,760,0],[1320,28441,28439,0],[1320,28439,1319,0],[1319,28438,1318,0],[28438,28437,1346,0],[28436,28451,28444,0],[28444,28451,28445,0],[28444,28445,28446,0],[28446,28445,28448,0],[28446,28448,28447,0],[28447,28448,1312,0],[28448,28445,28449,0],[31550,28449,1311,0],[28449,1312,28448,0],[28449,28445,1311,0],[28445,28451,1311,0],[1311,28451,28450,0],[28451,28436,28450,0],[28450,28436,28434,0],[28436,28444,28437,0],[28444,28446,31909,0],[31909,28446,28447,0],[28428,28427,28426,0],[28428,28426,1309,0],[1309,28426,28416,0],[28425,28429,28426,0],[28416,28426,28429,0],[28415,28416,28417,0],[1300,28407,28452,0],[1300,28452,31629,0],[28453,28420,28419,0],[28453,28419,28454,0],[28454,28425,28433,0],[28425,28454,28419,0],[28442,762,28455,0],[28433,28455,28454,0],[28455,762,28454,0],[31761,28459,6950,0],[31761,6950,28456,0],[28457,28456,31892,0],[28458,31915,49541,0],[49541,31915,31911,0],[31911,744,49541,0],[28456,6950,6949,0],[31761,745,746,0],[31761,746,28459,0],[28459,746,747,0],[28459,747,6951,0],[6951,747,1338,0],[6951,6950,28459,0],[740,741,739,0],[739,741,6986,0],[35125,730,28460,0],[35125,28460,31848,0],[28461,31848,31844,0],[28461,31844,31843,0],[28461,31843,731,0],[731,31843,732,0],[28461,35125,31848,0],[28462,730,35121,0],[28462,35121,34936,0],[727,34936,28463,0],[727,728,34936,0],[34936,728,28462,0],[28463,725,726,0],[726,9036,723,0],[726,723,28467,0],[28464,28467,28465,0],[28464,28465,28466,0],[28464,28466,35065,0],[28464,727,28467,0],[28467,727,726,0],[28470,28469,35062,0],[28470,35062,28471,0],[717,28472,718,0],[718,28473,28474,0],[28472,716,28471,0],[28466,28468,35065,0],[35065,28468,28486,0],[28475,28486,28476,0],[28476,28487,32079,0],[32079,28487,32078,0],[32078,28487,28481,0],[32078,28481,28477,0],[28477,28479,28478,0],[28478,28479,28480,0],[32081,28478,698,0],[698,28480,697,0],[698,28478,28480,0],[28479,28477,28481,0],[28479,28481,28485,0],[28485,28481,28488,0],[28485,28488,28482,0],[28485,28482,35056,0],[35056,28482,28483,0],[28484,28470,28471,0],[28486,28488,28476,0],[28476,28488,28481,0],[28476,28481,28487,0],[28486,28469,28488,0],[726,725,9036,0],[712,35053,711,0],[947,8961,691,0],[688,28489,942,0],[942,943,688,0],[688,943,944,0],[944,28490,688,0],[688,28490,689,0],[658,32188,680,0],[658,680,28491,0],[658,28491,657,0],[657,28491,34938,0],[34938,28491,682,0],[682,28491,681,0],[681,28491,680,0],[657,34938,678,0],[678,34938,655,0],[28492,644,28506,0],[28492,28506,28493,0],[28493,28504,28555,0],[624,28494,28495,0],[28499,28495,28497,0],[626,28499,28500,0],[626,28500,34294,0],[34035,28503,34031,0],[28499,626,625,0],[28499,625,28495,0],[28501,625,34294,0],[28501,34294,28502,0],[633,628,28503,0],[28503,628,28502,0],[28502,628,627,0],[28502,627,28501,0],[34294,625,626,0],[28497,28495,28494,0],[28497,28494,28507,0],[28497,28507,28496,0],[28496,28507,28504,0],[642,28506,28505,0],[28505,644,643,0],[644,28505,28506,0],[28496,28504,642,0],[642,28504,28506,0],[28504,28493,28506,0],[642,28498,28496,0],[28496,28498,28497,0],[34467,28508,28523,0],[28511,28516,28512,0],[28509,28512,28513,0],[28509,28510,28512,0],[28512,28510,28511,0],[28513,28512,28514,0],[28514,28515,649,0],[649,8951,28514,0],[28512,28516,28514,0],[28514,28516,28515,0],[651,28515,28527,0],[651,649,28515,0],[28557,28523,28522,0],[28557,28522,28511,0],[28517,28523,28518,0],[28545,28544,28521,0],[28521,28543,28522,0],[28517,28522,28523,0],[28527,28525,34937,0],[34937,28525,28526,0],[34937,28526,28524,0],[652,28527,28528,0],[28528,28529,28551,0],[28551,28529,28530,0],[28530,28549,28551,0],[28551,28531,654,0],[28532,28549,28533,0],[28532,28533,28536,0],[28532,28536,586,0],[586,28536,28534,0],[28535,28534,28537,0],[618,28537,33704,0],[28537,28534,28538,0],[28537,28538,28546,0],[28547,28546,28538,0],[28547,28538,28539,0],[28539,28534,28533,0],[28533,28534,28536,0],[28539,28541,28540,0],[28540,28541,28529,0],[28542,28529,28550,0],[28542,28550,34937,0],[28542,34937,28543,0],[28543,34937,28524,0],[28529,28542,28540,0],[28547,28545,28553,0],[28547,28553,28546,0],[28546,619,33704,0],[28545,28547,28544,0],[28544,28547,28540,0],[28540,28547,28539,0],[28534,28539,28538,0],[28537,28546,33704,0],[28531,28548,655,0],[28531,655,654,0],[28548,28532,679,0],[679,656,28548,0],[28531,28551,28549,0],[28549,28541,28533,0],[28533,28541,28539,0],[28541,28530,28529,0],[28550,28529,28528,0],[28530,28541,28549,0],[28531,28549,28548,0],[28548,28549,28532,0],[653,28528,28551,0],[653,28551,654,0],[28515,28516,28525,0],[28525,28516,28526,0],[28516,28511,28526,0],[28526,28511,28524,0],[28524,28511,28522,0],[28522,28543,28524,0],[28543,28521,28542,0],[28542,28521,28540,0],[28540,28521,28544,0],[28520,28519,28552,0],[28552,28519,622,0],[28553,28552,28546,0],[28546,28552,619,0],[619,28552,621,0],[28552,622,621,0],[28552,28553,28520,0],[28553,28545,28520,0],[28521,28517,28545,0],[28521,28522,28517,0],[28517,28518,28545,0],[28520,28545,28519,0],[28519,28518,28554,0],[28519,28554,624,0],[28507,28554,28508,0],[624,28554,28507,0],[28554,28518,28523,0],[624,28507,28494,0],[28507,28508,28555,0],[28510,28556,28557,0],[28510,28557,28511,0],[28523,28557,34467,0],[34467,28555,28508,0],[28492,28556,644,0],[644,28556,645,0],[645,28556,28510,0],[28510,28509,646,0],[628,633,632,0],[614,615,28558,0],[614,28558,595,0],[595,28558,34946,0],[596,34945,597,0],[597,33708,598,0],[598,33708,28559,0],[611,33701,28565,0],[28560,33691,33692,0],[28560,28563,28564,0],[28560,28564,28565,0],[28565,28564,611,0],[28559,611,613,0],[28559,613,598,0],[28560,33692,28563,0],[28563,33692,612,0],[614,581,615,0],[581,582,615,0],[615,582,616,0],[616,28566,584,0],[584,585,33715,0],[583,28566,616,0],[583,616,582,0],[567,569,34991,0],[33605,28567,561,0],[561,28567,28568,0],[28568,28567,28571,0],[28568,28571,28598,0],[28598,28571,28569,0],[28569,28571,28570,0],[28570,28571,560,0],[33592,28570,560,0],[560,28571,28567,0],[25555,553,28572,0],[551,28573,33442,0],[28573,552,25551,0],[28574,547,28575,0],[28575,547,28576,0],[28572,28576,33380,0],[554,33380,28577,0],[28577,33379,28578,0],[28606,28579,28607,0],[28602,28603,28580,0],[28580,28603,540,0],[28580,540,28581,0],[28703,28581,28582,0],[525,28584,28581,0],[28702,28582,28583,0],[28583,28584,526,0],[526,28584,525,0],[28584,28583,28582,0],[28584,28582,28581,0],[538,525,28581,0],[28581,28703,28580,0],[28585,28586,28587,0],[28587,28586,556,0],[33591,28588,28589,0],[33566,28589,33569,0],[33566,33569,28590,0],[28590,33569,28591,0],[28600,28706,28707,0],[28600,28707,28592,0],[28592,28594,28593,0],[28593,28594,33574,0],[28593,33574,28595,0],[33565,28595,33590,0],[33565,33590,28596,0],[28596,28597,28568,0],[28568,28598,28596,0],[28568,28597,561,0],[561,28597,562,0],[564,28599,28696,0],[562,28599,563,0],[28591,28706,33563,0],[33563,28600,33564,0],[33564,28600,28592,0],[28600,33563,28706,0],[556,28588,557,0],[557,28588,558,0],[28586,28585,28601,0],[28708,28601,28585,0],[28708,28585,28703,0],[28703,28585,28580,0],[28580,28585,28587,0],[28580,28587,28602,0],[556,555,28602,0],[556,28602,28587,0],[28603,28602,28604,0],[28603,28604,28605,0],[28605,554,28606,0],[554,28577,28606,0],[28579,28606,28577,0],[28579,28577,28578,0],[28603,28605,28607,0],[555,28604,28602,0],[540,28607,541,0],[28581,540,538,0],[28603,28607,540,0],[28578,541,28579,0],[28579,541,28607,0],[25551,28572,553,0],[28576,28572,552,0],[28576,552,28575,0],[28572,25551,552,0],[28608,523,28609,0],[28608,28610,28611,0],[28608,28611,33376,0],[33376,28611,28617,0],[28612,25576,33370,0],[33370,25576,33375,0],[28613,33375,23829,0],[28613,23830,23831,0],[23830,28613,23829,0],[23829,25575,28614,0],[25576,28612,28615,0],[28615,28612,28617,0],[28615,28617,545,0],[28615,545,25539,0],[543,28617,28616,0],[543,545,28617,0],[28616,28617,28611,0],[523,520,33407,0],[33407,520,522,0],[520,49569,522,0],[523,28608,520,0],[537,539,524,0],[49569,520,33373,0],[33373,520,33377,0],[512,28618,513,0],[513,28618,514,0],[514,28619,28625,0],[28625,28619,28620,0],[28621,28761,28769,0],[28769,28761,28622,0],[28769,28622,32270,0],[32270,28622,28624,0],[32270,28624,28623,0],[28623,28624,28763,0],[28763,28624,28622,0],[28621,28628,28620,0],[28626,514,28625,0],[28628,28625,28620,0],[28626,28625,28627,0],[28715,28627,28710,0],[28710,28628,28711,0],[28711,28628,28629,0],[28628,28621,28629,0],[28629,28630,28631,0],[28711,28720,28632,0],[28711,28632,28633,0],[28634,28633,32279,0],[28634,32279,32280,0],[32280,32279,28635,0],[28657,28635,28656,0],[28719,32276,32277,0],[32277,28637,28683,0],[28683,28637,28638,0],[28638,28637,28639,0],[28638,28639,28653,0],[28653,28639,28640,0],[28653,28640,28718,0],[28718,28640,32261,0],[28650,32257,28641,0],[28641,28642,32384,0],[32384,28642,28643,0],[32384,28643,28646,0],[28646,28643,28647,0],[28647,28643,32386,0],[28646,28648,32385,0],[28646,32385,1049,0],[1049,28649,28646,0],[28648,28646,28647,0],[28648,28647,28645,0],[28645,28647,28644,0],[28648,28645,32381,0],[1049,1050,28649,0],[32384,28649,28650,0],[32384,28650,28641,0],[28638,28682,28683,0],[28656,28655,28659,0],[28656,28659,28658,0],[28656,28658,28657,0],[32280,533,532,0],[533,32280,528,0],[32280,28657,528,0],[528,28657,28658,0],[32367,32368,28583,0],[28659,28655,28660,0],[28660,33583,28662,0],[33571,28665,33572,0],[33572,28668,28666,0],[987,28666,28667,0],[28668,28665,28669,0],[28670,33580,1051,0],[33580,28671,28680,0],[28680,28671,28672,0],[28673,33582,28674,0],[33582,28663,28679,0],[28674,28654,28675,0],[28675,28677,28717,0],[28717,28677,28676,0],[28717,28676,32374,0],[32374,28676,28651,0],[28651,28676,28652,0],[28652,28678,28653,0],[28653,28678,28638,0],[28638,28678,28682,0],[28652,28676,28678,0],[28678,28676,28677,0],[33582,28679,28674,0],[28674,28675,28673,0],[28673,28675,28672,0],[28672,28675,28717,0],[28672,28717,28680,0],[28681,32373,1051,0],[28680,28681,33580,0],[28681,1051,33580,0],[28674,28679,28654,0],[28682,28677,28675,0],[28677,28682,28678,0],[28654,28683,28682,0],[28670,988,28684,0],[28668,28669,28685,0],[28670,28684,33580,0],[33580,28684,28669,0],[28685,28669,28684,0],[28685,28684,28667,0],[28685,28667,28668,0],[28666,28668,28667,0],[28668,33572,28665,0],[28709,28662,28686,0],[28686,28662,28700,0],[28700,28662,28687,0],[28700,28687,28688,0],[28699,28687,28689,0],[28689,28690,33571,0],[28689,33571,28691,0],[28689,28691,33587,0],[33587,28692,28697,0],[28697,28692,28594,0],[28594,28692,33574,0],[28691,33574,28692,0],[28693,33575,33567,0],[33589,49564,28695,0],[28695,35035,566,0],[566,35035,35034,0],[33589,565,28696,0],[28594,28592,28697,0],[28707,28698,28592,0],[28592,28698,28697,0],[28699,33587,28688,0],[28707,28700,28698,0],[28686,28706,28701,0],[28701,28704,32368,0],[28708,28703,28702,0],[28708,28702,28704,0],[28705,28704,28701,0],[28705,28701,28591,0],[28591,28701,28706,0],[28700,28707,28686,0],[28686,28707,28706,0],[32368,28704,28583,0],[28708,28704,33569,0],[28708,33569,28601,0],[556,28586,28588,0],[28588,28586,28589,0],[28586,28601,28589,0],[28686,28701,28709,0],[28660,28709,28661,0],[32368,28661,28701,0],[33587,28697,28688,0],[28698,28688,28697,0],[28698,28700,28688,0],[33587,28699,28689,0],[28660,28662,28709,0],[28662,33583,28663,0],[28662,28663,28687,0],[28635,28657,32280,0],[28712,28710,28711,0],[28631,28711,28629,0],[28712,28711,28633,0],[28712,28633,28634,0],[28715,32282,28627,0],[28627,32282,28713,0],[28713,28714,28626,0],[28626,28714,32293,0],[28713,28626,28627,0],[32280,28715,28634,0],[28634,28715,28710,0],[28710,28712,28634,0],[28656,28636,28655,0],[28655,28636,28679,0],[28679,28636,28719,0],[1050,28716,28649,0],[28649,28716,28650,0],[28716,32374,28650,0],[28717,32374,28681,0],[28717,28681,28680,0],[28650,28651,32258,0],[32258,28651,28718,0],[28651,28652,28718,0],[28652,28653,28718,0],[28719,28683,28654,0],[32277,28683,28719,0],[28631,28630,28720,0],[28720,28630,32272,0],[28720,32272,28721,0],[28721,32272,28639,0],[28639,32272,32260,0],[32259,28722,28768,0],[32259,28768,32258,0],[32258,28768,32257,0],[32257,28723,32256,0],[32256,28723,28724,0],[28724,28723,28744,0],[28724,28744,28725,0],[28724,28725,32263,0],[32263,28741,28726,0],[28726,28728,28727,0],[28727,28728,28729,0],[28729,28728,28737,0],[28729,28737,28730,0],[28730,28732,28731,0],[28731,28732,28733,0],[28733,28732,28734,0],[28733,28734,28735,0],[28735,28736,1127,0],[1127,28736,1117,0],[28767,28742,28738,0],[28734,28738,28739,0],[28765,28766,28740,0],[28765,28740,49582,0],[32263,28725,28741,0],[28726,28741,28728,0],[28728,28741,28737,0],[28737,28741,28767,0],[28767,28741,28742,0],[28738,28742,28743,0],[28738,28743,28739,0],[28741,28725,28742,0],[28742,28725,28743,0],[28743,28725,28744,0],[28739,32264,28766,0],[28766,32264,28740,0],[32264,28739,28743,0],[28744,28740,32264,0],[49582,32274,28765,0],[28765,32274,28745,0],[28746,28745,32265,0],[28748,28749,28736,0],[28736,28749,1118,0],[28736,1118,1117,0],[28749,28748,28750,0],[33342,28751,28752,0],[28752,28763,28753,0],[28753,28763,28760,0],[28753,28760,28754,0],[28754,28755,33340,0],[33346,28758,28759,0],[33346,28759,28756,0],[33359,28756,33358,0],[33358,28756,28757,0],[33351,28757,28759,0],[33351,28759,483,0],[483,28759,501,0],[28758,502,28759,0],[28758,33340,28755,0],[28619,28761,28621,0],[28619,28621,28620,0],[28751,32266,32268,0],[28751,32268,28762,0],[32270,32269,28769,0],[28769,32269,28630,0],[28748,28747,32266,0],[28748,32266,28750,0],[28750,32266,33342,0],[33342,32266,28751,0],[28751,28762,28623,0],[28622,28760,28763,0],[28763,28752,28623,0],[28623,28752,28751,0],[28754,28760,28770,0],[28736,28764,28748,0],[28736,28735,28764,0],[28748,28764,28747,0],[28746,28765,28745,0],[28766,28765,28747,0],[28739,28766,28764,0],[28739,28764,28734,0],[28732,28767,28738,0],[28732,28730,28767,0],[28737,28767,28730,0],[28764,28766,28747,0],[28744,28723,28740,0],[28740,28723,28768,0],[28768,28723,32257,0],[28629,28621,28769,0],[28769,28630,28629,0],[28627,28625,28710,0],[28710,28625,28628,0],[28771,28770,28760,0],[32551,511,28618,0],[28771,28760,28622,0],[28771,28622,28761,0],[28618,28771,28619,0],[28618,28619,514,0],[508,28772,485,0],[32545,28773,28774,0],[28774,504,506,0],[504,28774,28775,0],[28775,28772,507,0],[28774,28773,28775,0],[485,28772,487,0],[487,28772,28773,0],[28773,28772,28775,0],[486,485,487,0],[487,32546,23431,0],[501,503,509,0],[509,503,510,0],[470,471,30785,0],[472,28776,471,0],[471,28776,30785,0],[30785,28777,470,0],[460,28786,28778,0],[28779,28778,28780,0],[28779,28780,28781,0],[23469,23486,23468,0],[28778,23468,28780,0],[28779,460,28778,0],[28784,28783,28785,0],[28784,23468,28783,0],[28783,23468,28778,0],[28778,28786,28783,0],[28783,28786,23465,0],[28783,23465,28785,0],[23464,23465,28786,0],[456,28787,455,0],[455,28787,28788,0],[23471,453,28788,0],[28788,453,28789,0],[28788,28789,454,0],[28788,454,455,0],[28789,453,30630,0],[28781,28790,28788,0],[28781,28788,28787,0],[28781,28787,459,0],[28790,28781,28782,0],[23486,28782,28780,0],[28780,28782,28781,0],[441,4062,28807,0],[28807,28811,28791,0],[28791,28811,28808,0],[30810,28809,30803,0],[28794,28813,28826,0],[28826,28813,28795,0],[28825,28795,48962,0],[3389,48962,28796,0],[48961,28796,28823,0],[28823,30639,28797,0],[28797,30639,23589,0],[23589,30639,30638,0],[28822,30639,28823,0],[28800,28823,28821,0],[28800,28821,30623,0],[30623,28821,28801,0],[28801,28814,28815,0],[28801,28815,28802,0],[28802,28815,28803,0],[28802,28803,28804,0],[28804,28803,28806,0],[442,28805,28811,0],[4062,28811,28807,0],[30803,28809,28810,0],[30803,28810,28792,0],[28792,28810,28820,0],[28792,28820,28793,0],[28809,30810,28808,0],[28810,28819,28818,0],[28810,28818,28820,0],[28793,28820,28817,0],[28793,28817,28813,0],[28815,28817,28816,0],[28816,28818,28806,0],[28806,28818,28819,0],[28806,28819,28812,0],[28805,28812,28811,0],[28818,28816,28820,0],[28820,28816,28817,0],[28813,28817,28814,0],[28814,28817,28815,0],[28815,28816,28803,0],[28816,28806,28803,0],[28806,28812,28805,0],[28806,28805,28804,0],[28793,28813,28794,0],[28795,28813,28814,0],[28795,28814,28821,0],[28796,48962,28821,0],[28821,28823,28796,0],[28814,28801,28821,0],[28795,28821,48962,0],[28810,28809,28819,0],[28819,28809,28812,0],[28812,28809,28808,0],[28812,28808,28811,0],[4062,442,28811,0],[443,28805,442,0],[30638,28799,28798,0],[28798,28799,23499,0],[23499,28799,23500,0],[23500,28799,28822,0],[23500,28822,28824,0],[28824,28822,28823,0],[23500,28824,23501,0],[23501,28824,28800,0],[28800,28824,28823,0],[28797,23590,28823,0],[28823,23590,48961,0],[28795,28825,28826,0],[28794,28826,28827,0],[28794,28827,28828,0],[28828,28827,28841,0],[28841,28827,38777,0],[48973,3492,28829,0],[28829,28830,28831,0],[28831,28830,3497,0],[28831,3497,3373,0],[3492,38778,28839,0],[28839,38778,38607,0],[3493,38607,28832,0],[3494,28832,28838,0],[28838,28833,28834,0],[3386,48972,28835,0],[3387,28835,48972,0],[28837,48972,3386,0],[28837,3386,28834,0],[28837,28834,28836,0],[28836,28826,28825,0],[28836,28825,28837,0],[28836,28834,28833,0],[28836,28833,28826,0],[28826,28833,38608,0],[28826,38608,28827,0],[3386,28835,3385,0],[28834,3386,28838,0],[28838,3386,3384,0],[3384,3494,28838,0],[3492,48973,38777,0],[38777,48973,28840,0],[38777,28840,28841,0],[28842,28845,28828,0],[28828,28845,28843,0],[28793,28843,28792,0],[28841,28842,28828,0],[28828,28843,28794,0],[28794,28843,28793,0],[439,440,30806,0],[439,30806,30805,0],[3375,28842,28840,0],[28840,28842,28841,0],[28845,28842,28844,0],[28844,28842,3375,0],[28844,3375,30805,0],[430,28866,432,0],[430,432,28846,0],[28847,3533,28848,0],[28848,3533,3534,0],[28848,3534,3529,0],[28848,28849,28847,0],[28847,28849,429,0],[429,28846,432,0],[423,359,424,0],[422,421,361,0],[362,420,28853,0],[362,421,420,0],[419,418,28850,0],[419,28850,28851,0],[28851,28850,28852,0],[28851,28852,365,0],[365,28852,366,0],[28851,365,362,0],[28851,362,28853,0],[28853,419,28851,0],[362,365,364,0],[418,417,28850,0],[402,358,359,0],[358,28854,28856,0],[28856,28854,357,0],[346,348,28855,0],[28856,28855,28858,0],[28856,28858,28857,0],[28857,28858,28859,0],[426,28859,28860,0],[352,30632,351,0],[351,30632,28861,0],[351,28861,349,0],[349,28861,28860,0],[349,28860,28858,0],[28860,28859,28858,0],[349,28855,348,0],[28855,349,28858,0],[426,28860,427,0],[428,427,28862,0],[428,28862,28863,0],[430,28863,28864,0],[430,28864,28865,0],[28865,28864,354,0],[28865,354,355,0],[354,28864,353,0],[352,353,30632,0],[430,28865,28866,0],[28869,28867,28868,0],[28868,30504,28870,0],[30514,30521,28871,0],[28871,30511,30519,0],[30519,30511,28872,0],[28872,30510,4049,0],[28868,28870,28869,0],[28869,28870,30514,0],[28869,30514,30523,0],[30523,30514,28876,0],[28876,30514,30513,0],[28876,30513,28874,0],[431,28875,28876,0],[28876,28874,431,0],[28856,28877,424,0],[28856,28857,28877,0],[3526,28857,28859,0],[28857,424,28877,0],[110,108,114,0],[114,108,28878,0],[107,28878,108,0],[38703,28879,38705,0],[77,76,38454,0],[28880,38717,38716,0],[28881,38702,38715,0],[38716,38702,28880,0],[28884,38711,28883,0],[28884,28888,28885,0],[28884,28885,28889,0],[28889,28885,28886,0],[28886,28885,28887,0],[28887,28885,28888,0],[28888,28883,30,0],[28888,75,28887,0],[28883,28888,28884,0],[38712,28884,28889,0],[28890,28891,28937,0],[28937,28891,28892,0],[28970,38714,28893,0],[28970,28893,28895,0],[28895,28893,28894,0],[28895,28894,28940,0],[28895,28940,28971,0],[28971,28896,28897,0],[28897,28896,28898,0],[38450,89,28901,0],[28901,28903,38451,0],[38451,28903,28902,0],[28902,28903,28904,0],[28904,28903,28905,0],[28904,28906,85,0],[85,28906,86,0],[28905,28906,28904,0],[28903,28901,28905,0],[28905,28901,89,0],[89,28900,28907,0],[28950,28908,28951,0],[28908,28923,28952,0],[28912,150,151,0],[150,28912,28913,0],[150,28913,28916,0],[28916,28913,28919,0],[28913,28912,28914,0],[28913,28914,28915,0],[28915,28914,28954,0],[28915,28954,28910,0],[28910,28911,28915,0],[28915,28911,28919,0],[28915,28919,28913,0],[148,28918,147,0],[148,149,28916,0],[148,28917,28935,0],[148,28935,28918,0],[145,38724,144,0],[145,146,147,0],[145,147,28918,0],[28916,28919,28933,0],[28920,28911,28921,0],[28921,28910,28922,0],[28922,28909,28952,0],[28952,28923,28922,0],[28944,28923,28941,0],[28944,28941,28943,0],[28924,28938,28892,0],[28892,28891,28925,0],[28892,28925,28926,0],[28925,28891,28927,0],[30443,28889,28886,0],[28930,28929,28931,0],[28931,28929,30443,0],[28891,28932,28927,0],[28927,28932,28928,0],[28928,28932,28929,0],[28932,28890,38712,0],[28932,38712,28889,0],[28889,30443,28932,0],[30443,28929,28932,0],[28890,28932,28891,0],[28892,28926,28942,0],[28933,28942,28934,0],[28917,28934,28935,0],[28935,28928,38724,0],[28918,28935,145,0],[145,28935,38724,0],[28919,28911,28933,0],[28933,28911,28920,0],[28934,28917,28933,0],[28933,28917,28916,0],[28942,28926,28934,0],[28934,28926,28936,0],[28934,28936,28935,0],[28936,28926,28927,0],[28936,28927,28928,0],[28927,28926,28925,0],[38714,28937,28893,0],[28893,28937,28938,0],[28893,28938,28894,0],[28940,28939,28941,0],[28941,28939,28943,0],[28943,28939,28924,0],[28892,28938,28937,0],[28924,28892,28942,0],[28924,28942,28920,0],[28924,28920,28943,0],[28943,28920,28921,0],[28943,28921,28944,0],[28922,28923,28944,0],[28922,28944,28921,0],[28923,28908,28948,0],[28923,28948,28945,0],[28946,28945,28907,0],[28907,28900,28946,0],[28945,28946,28947,0],[28945,28947,28923,0],[28923,28947,28941,0],[28941,28947,28971,0],[28971,28940,28941,0],[28940,28894,28939,0],[28907,28945,28950,0],[28950,28945,28948,0],[28950,28948,28908,0],[28909,28922,28910,0],[28910,28921,28911,0],[28949,28907,28950,0],[28949,28950,28951,0],[28951,28952,38761,0],[38761,28952,38721,0],[38721,28952,28956,0],[28956,28952,28909,0],[28956,28909,28953,0],[28953,28909,28954,0],[28954,28914,28955,0],[28954,28955,28953,0],[28953,28955,28957,0],[28953,28957,28956,0],[28956,28957,38720,0],[38720,28957,28958,0],[38720,28958,38632,0],[38722,38621,28961,0],[28961,38621,38622,0],[38622,38623,105,0],[105,38623,92,0],[28910,28954,28909,0],[28908,28952,28951,0],[90,28949,28959,0],[28951,28959,28949,0],[90,28959,28960,0],[91,28960,38722,0],[38722,28961,91,0],[28960,91,38762,0],[28960,38762,90,0],[91,28961,38622,0],[28899,28898,28900,0],[28900,28898,28946,0],[28898,28896,28946,0],[28946,28896,28947,0],[28898,38453,28962,0],[28963,28964,28965,0],[28965,28964,28970,0],[28965,28970,28966,0],[28966,28970,28895,0],[28882,28967,28964,0],[38454,28964,28968,0],[28969,28962,38453,0],[28969,28968,28962,0],[28962,28968,28963,0],[28967,28970,28964,0],[28898,28962,28897,0],[28897,28965,28971,0],[28897,28962,28965,0],[28965,28966,28971,0],[28971,28966,28895,0],[28965,28962,28963,0],[28972,30,50001,0],[2902,2897,3781,0],[2902,3781,3783,0],[2,49643,29,0],[4,2,28,0],[28973,28,16,0],[18,16,28,0],[49641,16,49646,0],[49639,49646,49647,0],[3796,3807,28974,0],[28975,3808,3742,0],[28975,3742,29259,0],[29259,3742,3741,0],[28982,28976,28977,0],[28982,28977,28978,0],[28978,28977,28980,0],[28978,28980,28979,0],[28979,28980,3744,0],[28979,28983,28978,0],[28978,28983,28981,0],[28978,28981,28982,0],[3812,28982,3813,0],[3813,28982,3820,0],[3820,28982,28981,0],[3820,28981,28983,0],[28983,28984,3824,0],[3824,3822,28983,0],[3744,28980,3743,0],[28980,28977,3743,0],[3810,28976,28982,0],[3810,28982,3811,0],[3811,28982,3812,0],[28985,3732,3733,0],[3730,3732,3828,0],[3732,28985,3828,0],[28985,3733,3735,0],[4794,28986,4795,0],[4795,28986,49656,0],[4767,49656,29994,0],[49656,28986,29994,0],[4794,28988,28987,0],[28987,28988,28989,0],[28989,28988,3851,0],[28989,3851,29963,0],[28989,29963,28990,0],[28990,28991,4776,0],[4776,28991,4775,0],[4776,29991,28990,0],[28990,29991,28989,0],[28987,28989,4766,0],[28992,4753,29131,0],[29131,29197,30139,0],[30139,29197,28993,0],[30139,28993,28994,0],[30139,28994,29211,0],[28995,28996,28997,0],[28997,28996,28998,0],[28997,28998,28999,0],[28999,28998,29213,0],[28999,29213,29138,0],[29138,29213,29000,0],[29002,29000,29001,0],[29002,29001,29003,0],[29002,29003,29084,0],[29003,29011,29078,0],[29078,29011,29007,0],[30044,29004,29005,0],[29006,29009,4634,0],[29006,4634,30038,0],[29005,29004,29007,0],[29005,29007,29011,0],[29005,29011,29008,0],[29005,29008,29009,0],[29010,29009,29008,0],[29005,29009,29006,0],[29001,29010,29003,0],[29003,29010,29011,0],[29011,29010,29008,0],[29000,29002,29138,0],[29138,29002,29082,0],[29138,29082,29083,0],[29135,29063,29064,0],[29135,29064,29065,0],[30046,29014,29021,0],[29021,29025,30049,0],[30049,29025,30050,0],[30050,29025,30051,0],[30051,29025,29017,0],[29017,29026,29018,0],[29018,30026,29015,0],[29016,30052,30051,0],[29015,29016,29018,0],[29018,29016,29019,0],[29018,29019,29017,0],[30051,29019,29016,0],[29021,29014,29020,0],[29021,29020,29022,0],[29022,29023,29024,0],[29025,29024,29026,0],[29059,29027,29067,0],[29071,29067,29027,0],[29026,29027,29018,0],[29018,29027,30072,0],[30072,29029,29028,0],[29028,29029,29030,0],[29028,29030,29031,0],[29032,29033,29034,0],[29034,29033,30147,0],[30147,30076,29035,0],[29041,29036,29037,0],[29038,29037,30074,0],[29038,30074,30077,0],[30184,29057,30186,0],[30187,29039,30359,0],[30359,29039,4702,0],[29039,29040,4702,0],[4702,29040,29101,0],[29036,29041,30076,0],[29035,29041,29042,0],[30149,29042,29043,0],[29043,29044,30126,0],[30126,29044,30125,0],[29045,30125,29044,0],[29045,29044,29046,0],[29038,29047,29037,0],[29037,29047,29041,0],[29041,29047,29042,0],[29042,29047,29048,0],[29042,29048,29043,0],[29043,29048,29044,0],[29047,29038,29048,0],[29048,29038,29046,0],[29048,29046,29044,0],[29038,30077,29046,0],[30076,29041,29035,0],[29049,29031,29050,0],[29049,29050,29051,0],[29051,29050,29086,0],[29051,29052,30075,0],[30075,29052,29054,0],[29054,29052,29053,0],[29054,29053,29055,0],[29054,29055,29036,0],[29036,29055,29056,0],[29056,29116,29057,0],[29056,29057,29058,0],[29058,29057,30184,0],[29049,29051,29032,0],[30072,29027,29059,0],[30072,29059,29029,0],[29029,29059,29060,0],[29060,29059,29061,0],[29060,29061,29080,0],[29066,29062,29063,0],[29066,29063,29083,0],[29063,29062,29064,0],[30045,29074,29065,0],[29065,29074,29012,0],[29062,29066,29080,0],[29059,29067,29061,0],[29061,29067,29068,0],[29062,29070,30045,0],[29064,29062,30045,0],[29070,29062,29069,0],[29069,29062,29080,0],[29069,29080,29061,0],[29069,29061,29068,0],[29069,29068,29070,0],[29070,29068,29071,0],[29070,29071,29023,0],[29070,29023,29072,0],[29070,29072,30045,0],[30045,29072,29074,0],[29074,29072,29073,0],[29073,29075,29074,0],[29074,29013,29012,0],[29014,29075,29020,0],[29020,29072,29022,0],[29022,29072,29023,0],[29073,29072,29020,0],[29020,29075,29073,0],[29087,29077,29078,0],[29087,29078,29007,0],[29003,29078,29079,0],[29079,29076,29002,0],[29002,29076,29081,0],[29060,29080,29081,0],[29060,29081,29029,0],[29029,29081,29076,0],[29076,29079,29077,0],[29077,29079,29078,0],[29080,29066,29082,0],[29083,29082,29066,0],[29080,29082,29081,0],[29081,29082,29002,0],[29079,29002,29084,0],[29079,29084,29003,0],[29029,29085,29030,0],[29030,29085,29050,0],[29050,29031,29030,0],[29029,29089,29085,0],[29086,29088,29087,0],[29087,29088,29077,0],[29077,29088,29089,0],[29077,29089,29076,0],[29076,29089,29029,0],[29088,29086,29085,0],[29087,29122,29090,0],[29094,29092,29128,0],[29094,29128,29093,0],[29126,4697,29093,0],[29093,4697,29097,0],[29093,29097,29094,0],[29094,29096,29092,0],[29092,29096,29095,0],[29092,29095,29091,0],[29091,29095,29053,0],[29091,29053,29052,0],[29055,29053,29095,0],[29118,29096,29097,0],[4697,29106,29120,0],[29098,29103,29113,0],[29113,29103,29099,0],[29099,29103,29040,0],[29040,29039,29100,0],[29100,30186,29057,0],[30186,29100,30187,0],[29040,29103,29101,0],[29109,29104,29105,0],[29105,29104,29106,0],[29105,29106,4696,0],[4696,29106,4697,0],[4696,4701,29105,0],[29107,29108,29109,0],[29109,29108,29102,0],[29105,29107,29109,0],[29109,29102,4693,0],[29109,4693,29104,0],[29104,4693,29103,0],[29103,4693,29101,0],[4701,4695,29105,0],[29105,4695,29107,0],[29107,29110,29108,0],[29107,4695,29110,0],[29106,29104,29098,0],[29098,29104,29103,0],[29097,29096,29094,0],[29055,29111,29112,0],[29112,29113,29114,0],[29115,29114,29116,0],[29115,29116,29056,0],[29115,29056,29055,0],[29113,29099,29114,0],[29099,29117,29114,0],[29114,29117,29116,0],[29099,29040,29100,0],[29099,29100,29117,0],[29117,29100,29057,0],[29117,29057,29116,0],[29112,29114,29115,0],[29115,29055,29112,0],[29111,29096,29118,0],[29118,29097,4697,0],[29096,29111,29095,0],[29055,29095,29111,0],[29112,29111,29118,0],[29112,29118,29119,0],[29119,29120,29106,0],[29106,29098,29119,0],[29119,29098,29113,0],[29119,29113,29112,0],[4697,29120,29118,0],[29120,29119,29118,0],[29091,29052,29121,0],[29091,29121,29090,0],[29090,29121,29086,0],[29086,29121,29051,0],[29051,29121,29052,0],[29091,29090,29092,0],[29092,29090,29122,0],[29092,29122,29124,0],[29124,29123,29128,0],[29128,29092,29124,0],[29124,29122,29087,0],[29128,29123,30043,0],[29127,29126,29093,0],[29126,29127,4698,0],[29127,29128,30043,0],[29128,29127,29093,0],[29124,29087,29123,0],[29123,29087,29007,0],[29007,29004,29123,0],[29004,30044,29123,0],[29123,30044,30043,0],[29087,29090,29086,0],[29085,29086,29050,0],[29026,29017,29025,0],[29025,29021,29022,0],[29022,29024,29025,0],[30139,29156,29131,0],[29159,29160,29174,0],[29174,29160,29129,0],[29172,29129,29130,0],[30138,29130,29159,0],[30138,29159,29131,0],[29131,29156,30138,0],[29169,30138,29132,0],[29169,29132,29168,0],[29168,29132,49619,0],[29134,29135,29065,0],[28997,28999,29137,0],[29137,29135,29157,0],[29157,29135,29134,0],[29135,29137,29136,0],[29136,29137,28999,0],[29135,29136,29063,0],[29063,29136,29083,0],[29083,29136,29138,0],[28999,29138,29136,0],[29134,29065,29012,0],[29134,29012,29154,0],[29154,29012,29139,0],[29152,29139,29140,0],[29151,29142,29152,0],[29152,29142,29141,0],[29152,29141,29153,0],[30140,29141,29142,0],[30140,29142,29183,0],[29142,29151,29143,0],[49986,29144,29147,0],[29144,29145,29146,0],[29148,29146,29014,0],[29014,29146,29075,0],[29148,29147,29144,0],[29144,29146,29148,0],[29145,29143,29149,0],[29143,29151,29149,0],[29145,29149,29140,0],[29145,29140,29146,0],[29146,29140,29150,0],[29012,29013,29139,0],[29140,29139,29150,0],[29013,29075,29150,0],[29150,29075,29146,0],[29149,29151,29152,0],[29149,29152,29140,0],[29154,29139,29153,0],[29153,29182,29154,0],[29134,29154,29133,0],[29167,30140,29183,0],[29183,29142,29143,0],[29153,29141,29182,0],[29182,29141,29155,0],[29132,30138,29158,0],[29158,29137,29157,0],[29134,29133,29157,0],[29157,29133,29158,0],[29158,29133,49619,0],[29158,49619,29132,0],[29159,29130,29160,0],[29160,29130,29129,0],[29131,29159,28992,0],[4754,28992,29179,0],[4754,29179,4755,0],[4754,4755,4756,0],[29186,29196,29162,0],[29162,29161,29175,0],[29162,29175,29181,0],[29163,29165,49620,0],[49620,29165,29164,0],[3773,29164,29165,0],[29165,29163,29166,0],[29169,29168,29130,0],[29168,49619,29170,0],[29168,29170,29130,0],[29130,29170,29172,0],[29167,29166,29171,0],[29171,29166,29163,0],[29171,29172,29167,0],[29167,29172,29155,0],[29170,29155,29172,0],[29129,29172,29173,0],[29172,29171,29173,0],[29129,29173,29174,0],[29174,29173,29175,0],[29177,29175,29161,0],[29177,29161,29178,0],[29196,29178,29161,0],[29196,29161,29162,0],[29175,29177,29174,0],[29176,29174,29177,0],[29174,29176,29159,0],[29159,29176,29179,0],[29159,29179,28992,0],[29176,29177,29179,0],[29179,29177,4755,0],[4755,29177,29180,0],[29177,29178,29180,0],[29173,29181,29175,0],[29167,29183,29166,0],[29173,29171,29181,0],[29181,29171,29184,0],[29181,29184,29185,0],[29185,29184,3777,0],[29162,29185,29186,0],[29178,29196,29195,0],[29180,29195,29187,0],[29187,29195,29188,0],[29187,4759,4758,0],[29187,29188,29189,0],[29186,29191,29196,0],[29191,29194,29192,0],[29189,29192,29193,0],[29193,29192,29194,0],[29193,29194,4761,0],[4761,4760,29193,0],[29189,29188,29192,0],[29192,29188,29190,0],[29192,29190,29191,0],[29189,29193,4760,0],[29272,29194,29191,0],[29272,29191,49621,0],[3771,49621,49622,0],[29190,29188,29195,0],[29190,29195,29196,0],[29190,29196,29191,0],[29181,29185,29162,0],[29171,29163,29184,0],[29178,29195,29180,0],[4755,29180,29187,0],[29187,4758,4755,0],[4753,4752,29131,0],[29131,4752,29197,0],[28994,29215,29198,0],[29198,29215,29207,0],[29198,29207,29199,0],[29199,29203,30024,0],[30024,29203,29200,0],[29200,29203,29209,0],[29200,29209,30023,0],[29202,29203,29205,0],[29205,29203,29207,0],[29204,29205,4630,0],[29202,29205,29204,0],[4630,29205,29206,0],[29206,29207,29215,0],[29208,29214,4750,0],[29206,29205,29207,0],[29207,29203,29199,0],[29203,29202,29209,0],[29209,29201,30023,0],[29201,29209,4633,0],[4633,29210,29201,0],[28995,29211,28996,0],[28996,29211,29212,0],[28998,29200,29213,0],[28994,29198,29211,0],[29211,29198,29212,0],[29198,29199,29212,0],[29197,4751,29216,0],[29216,4751,4750,0],[29216,4750,29214,0],[29214,29206,29215,0],[29215,28994,28993,0],[29215,28993,29216,0],[29216,28993,29197,0],[29215,29216,29214,0],[4781,4750,4751,0],[4751,29197,4752,0],[29217,4748,4636,0],[29221,29220,30377,0],[30377,4560,4561,0],[6153,6152,29222,0],[29222,6152,6150,0],[6150,5647,29222,0],[5647,6150,5646,0],[6154,6153,29222,0],[5647,5666,5648,0],[29223,5664,5662,0],[5664,29223,5666,0],[5666,29223,5648,0],[1714,1715,29253,0],[1714,29253,5655,0],[31352,5668,31351,0],[29226,29225,29255,0],[29226,29255,29227,0],[29226,29227,29228,0],[29244,29226,29228,0],[29244,29228,29242,0],[29242,29229,29243,0],[29229,1726,1725,0],[29245,1725,29230,0],[29245,29230,29231,0],[29248,29231,29232,0],[29867,29234,5566,0],[29232,29231,29230,0],[1725,1724,29230,0],[29230,1724,29232,0],[29232,1724,29233,0],[29233,1724,29235,0],[49436,29235,29237,0],[49436,29237,29236,0],[29236,29237,5564,0],[49436,29236,5565,0],[29233,29235,49436,0],[29233,49436,29234,0],[29235,1724,29238,0],[29237,29238,29239,0],[29240,29239,1740,0],[1730,29239,29238,0],[29235,29238,29237,0],[1728,29241,1719,0],[29241,1728,1727,0],[29241,1727,1726,0],[1726,29229,29241,0],[29241,29229,1719,0],[1719,29229,29242,0],[1719,29242,1718,0],[29227,1718,29228,0],[29228,1718,29242,0],[29244,29242,29243,0],[29244,29243,29245,0],[29245,29243,1725,0],[29226,29246,29225,0],[29225,29246,29224,0],[29226,29244,1701,0],[1701,29244,1694,0],[29244,29245,1694,0],[1694,29247,29895,0],[1694,29245,29231,0],[1694,29231,29247,0],[29247,29231,29248,0],[29248,29232,29249,0],[29251,29249,29878,0],[29251,29878,29250,0],[29249,29251,29252,0],[1696,29252,1697,0],[1697,29252,29250,0],[29250,29252,29251,0],[29253,1715,29255,0],[29255,1715,29227,0],[29227,1715,29254,0],[29254,1718,29227,0],[1716,29254,1715,0],[29253,29255,31351,0],[29255,29225,31351,0],[31351,29225,29224,0],[29256,29257,29258,0],[3744,29256,29258,0],[29259,3741,29260,0],[29260,3741,3839,0],[29260,3839,3843,0],[29260,3843,29259,0],[29259,3843,28975,0],[28975,3843,29261,0],[28975,29261,3752,0],[3840,49658,49657,0],[3840,49657,29262,0],[3840,29262,3841,0],[3841,29262,4768,0],[3762,29264,29262,0],[29264,29263,29262,0],[29264,29265,29263,0],[49626,29263,29265,0],[49626,29265,3761,0],[3761,29265,3787,0],[3787,29265,29266,0],[29266,29264,29267,0],[29264,29266,29265,0],[3785,3787,29268,0],[3785,29268,29269,0],[29270,29269,29274,0],[29274,29269,29273,0],[29273,29995,29996,0],[29996,29285,29271,0],[29996,29271,3770,0],[29996,3770,29273,0],[29273,3770,29272,0],[29274,29273,29275,0],[29274,29275,29276,0],[29279,29278,29277,0],[29278,29279,29280,0],[29280,29279,3792,0],[29280,29270,29276,0],[29276,29270,29274,0],[29280,29276,29278,0],[29280,3792,29281,0],[29281,29270,29280,0],[3793,29279,29277,0],[29282,29277,29278,0],[29278,29276,29282,0],[29282,49623,29277,0],[3771,49622,49623,0],[29282,3771,49623,0],[29282,29276,3771,0],[3771,29276,29275,0],[29272,29275,29273,0],[3770,29271,4761,0],[29271,29285,3769,0],[3769,29285,29289,0],[29289,29285,29286,0],[29286,29287,29288,0],[29288,29289,29286,0],[3768,3769,29289,0],[3768,29289,3766,0],[3765,3766,29997,0],[29997,3766,29288,0],[29288,3766,29289,0],[3785,29269,29290,0],[29290,29269,29281,0],[29281,29269,29270,0],[29291,3682,3746,0],[3823,3822,3826,0],[29293,29292,29294,0],[29294,29295,29300,0],[29300,29295,29296,0],[29296,29295,29937,0],[29296,29297,4797,0],[29297,29296,3724,0],[3724,29296,3723,0],[29296,29937,3723,0],[3723,29937,29936,0],[3723,29936,3722,0],[3722,29936,29298,0],[29299,29298,29936,0],[29299,29936,3719,0],[29299,3719,3720,0],[3720,3721,29299,0],[29294,29300,29293,0],[4800,29293,29301,0],[29293,4800,29292,0],[4800,3818,29292,0],[29303,29293,29302,0],[29303,29302,4799,0],[4799,29302,4797,0],[4799,4797,4798,0],[29301,29303,29304,0],[29304,29303,4799,0],[29293,29300,29302,0],[4797,29302,29296,0],[4798,29305,29304,0],[29304,3830,3831,0],[3830,29304,29305,0],[3830,29305,3829,0],[3829,29305,29306,0],[3829,29306,3728,0],[3728,3844,3829,0],[29297,29307,4797,0],[4797,29307,4798,0],[4798,29307,29305,0],[3738,3836,29308,0],[3738,3736,3836,0],[3738,29308,3739,0],[3739,29308,3740,0],[3838,3839,29308,0],[29308,3839,3740,0],[3839,3741,3740,0],[3814,3815,3832,0],[3832,3815,3831,0],[3831,3815,3816,0],[29309,4801,29295,0],[29295,4801,29310,0],[29310,3719,29936,0],[3719,29310,3718,0],[3718,29310,3717,0],[4801,3717,29310,0],[29292,29309,29294,0],[3718,29321,3720,0],[3720,29321,29311,0],[29311,29313,49638,0],[49638,29313,29312,0],[29312,29313,29315,0],[29312,29315,5540,0],[5540,29315,5541,0],[5541,29315,5349,0],[5349,29315,3709,0],[3709,29315,29314,0],[29322,29313,29311,0],[29313,29314,29315,0],[29311,49638,29316,0],[29311,29316,3720,0],[3718,29317,29318,0],[29318,29317,3691,0],[29317,3718,3716,0],[29317,3716,29319,0],[29317,29319,3691,0],[3691,29319,29320,0],[29320,29319,3689,0],[29321,3718,29318,0],[29311,29321,29322,0],[29322,3694,29313,0],[29313,3694,3696,0],[29313,3696,29314,0],[29314,3696,3709,0],[3691,3690,29323,0],[29323,3690,4830,0],[3691,29323,3692,0],[3692,29323,29324,0],[3696,29325,3708,0],[3708,29325,29326,0],[3708,29326,3697,0],[3697,29326,3698,0],[3698,29327,3699,0],[4824,3699,29332,0],[29327,3698,29326,0],[29325,29328,29330,0],[29330,29328,29329,0],[29328,29324,29329,0],[29329,29324,4830,0],[4830,29324,29323,0],[29325,3696,3695,0],[29325,3695,29328,0],[29328,3695,29324,0],[29324,3695,3693,0],[29330,29331,29326,0],[29326,29331,29327,0],[29326,29325,29330,0],[29327,29331,29332,0],[29327,29332,3699,0],[1794,1793,5350,0],[1792,5350,1793,0],[29333,5332,29746,0],[5268,5331,5250,0],[29334,1804,3704,0],[29334,3704,29335,0],[29335,29355,3668,0],[3668,29355,29336,0],[3668,29336,3667,0],[3667,29336,3666,0],[29337,3666,29339,0],[29337,29339,29338,0],[29338,29339,29340,0],[29340,29339,29356,0],[29340,29356,4824,0],[29338,29340,29362,0],[29362,29340,29332,0],[29362,29332,29363,0],[29363,29332,29341,0],[29341,29342,29343,0],[29343,29342,4823,0],[4823,29342,29330,0],[29330,29342,29341,0],[29332,29340,4824,0],[3665,29344,29348,0],[29348,29344,29345,0],[29345,29344,29346,0],[29346,29364,29373,0],[29373,29364,29347,0],[29373,29347,4836,0],[4836,29347,4829,0],[3666,29337,29344,0],[29344,29337,29346,0],[3665,29348,3664,0],[29348,29349,3664,0],[3664,29349,29350,0],[3663,29350,29351,0],[29352,4834,29351,0],[29351,4834,3661,0],[29351,3661,3663,0],[3661,3662,3663,0],[29350,3663,3664,0],[29351,29350,29371,0],[3668,3669,29335,0],[29335,3669,29334,0],[29334,3669,29358,0],[29358,3669,29357,0],[29357,3671,29353,0],[29353,3671,3672,0],[29335,3704,29354,0],[29335,29354,29355,0],[29336,29355,3666,0],[29339,3666,29355,0],[29339,29355,29356,0],[29356,29355,3702,0],[4824,29356,3702,0],[29334,29358,1806,0],[1806,29358,1807,0],[1807,29358,29357,0],[1807,29357,29359,0],[1807,29359,1809,0],[1809,29359,29360,0],[1809,29360,3673,0],[3673,29360,29361,0],[29364,29343,29347,0],[29347,29343,29365,0],[29347,29365,4829,0],[4829,29365,4821,0],[4821,29365,4830,0],[29365,29343,4823,0],[29343,29364,29341,0],[29341,29364,29363,0],[29364,29346,29363,0],[29363,29346,29362,0],[29362,29346,29337,0],[29362,29337,29338,0],[4820,29366,29367,0],[29320,29366,4822,0],[29320,4822,3690,0],[3690,4822,4830,0],[3655,29368,4847,0],[4847,29368,3657,0],[4847,3657,4849,0],[4849,3657,27,0],[29369,4807,4825,0],[4814,29369,4818,0],[4838,29370,3676,0],[3676,29370,4815,0],[29370,4825,4815,0],[4815,4825,4807,0],[29372,29352,29371,0],[29371,29352,29351,0],[29349,29371,29350,0],[29372,29349,29373,0],[29373,29345,29346,0],[29373,29349,29345,0],[29348,29345,29349,0],[1778,1779,29374,0],[1778,29374,1777,0],[29374,1779,1780,0],[29374,1780,1781,0],[1781,29375,29374,0],[1777,29374,29375,0],[3714,3689,29319,0],[3714,29319,3716,0],[29321,29318,29376,0],[29376,3692,3693,0],[3693,3694,29376,0],[29376,3694,29322,0],[29376,29322,29321,0],[3692,29376,3691,0],[3691,29376,29318,0],[5259,5252,5265,0],[5259,5265,29377,0],[29377,5266,5263,0],[3706,3705,29378,0],[29378,29380,1799,0],[1799,29380,1800,0],[1800,29380,29381,0],[1803,1802,3703,0],[3703,1802,3701,0],[3701,29379,3700,0],[3705,3698,29379,0],[3705,29379,29378,0],[29378,29379,29380,0],[29381,3701,1802,0],[3701,29381,29380,0],[3701,29380,29379,0],[29378,1799,1798,0],[29378,1798,3706,0],[49638,29312,49637,0],[49637,29312,5539,0],[5341,29386,29382,0],[29382,29384,29383,0],[29383,29384,5347,0],[5347,29384,1784,0],[1784,29384,5343,0],[5343,29384,5344,0],[5344,29384,29385,0],[5334,29385,29386,0],[29386,29385,29382,0],[29385,5334,5346,0],[29385,5346,5344,0],[5347,5342,29383,0],[29383,5342,29382,0],[5341,5340,29386,0],[5068,5293,5295,0],[4824,3700,3699,0],[1881,2827,49965,0],[49965,2827,29387,0],[2820,29387,2826,0],[1881,49965,29389,0],[4962,49964,29396,0],[29396,29390,49459,0],[29390,29393,4938,0],[4938,29393,29391,0],[4937,4944,29391,0],[29391,4944,4938,0],[4938,4939,29390,0],[29393,29390,29392,0],[29393,29392,29388,0],[29388,29392,29387,0],[29387,29392,49965,0],[29393,29388,2820,0],[2820,29388,29387,0],[29391,29393,29394,0],[29391,29394,4937,0],[4937,29394,4936,0],[4936,29394,4935,0],[4935,29394,2819,0],[2819,29394,2820,0],[4962,29396,4961,0],[4961,29396,29395,0],[4961,29395,1885,0],[1885,1882,4961,0],[1890,29397,4941,0],[1890,4941,1889,0],[29398,29399,2803,0],[29398,29400,4915,0],[1815,4975,4991,0],[1815,1813,4975,0],[29401,29402,29403,0],[29403,29402,29405,0],[29403,29405,1891,0],[4956,1891,29404,0],[29404,29405,29406,0],[1884,29406,1883,0],[1883,29406,4960,0],[4960,29402,29401,0],[4960,29401,1849,0],[1849,29401,1848,0],[29406,29405,4960,0],[4960,29405,29402,0],[29405,29404,1891,0],[1891,1892,29403,0],[29403,1892,29412,0],[29412,29410,29407,0],[29408,29407,1846,0],[1846,29407,1845,0],[1845,29407,29409,0],[1893,29410,29412,0],[1841,29409,29410,0],[29407,29410,29409,0],[1845,29409,1843,0],[1843,29409,1841,0],[1833,1841,29411,0],[49304,29411,1893,0],[1841,29410,29411,0],[29411,29410,1893,0],[1893,29412,1892,0],[29403,29412,29401,0],[29401,29412,29408,0],[29408,29412,29407,0],[29425,29413,29748,0],[29425,29748,29426,0],[29426,29748,29414,0],[29426,29414,29415,0],[29415,29414,29416,0],[5273,29417,5275,0],[5273,5272,29417,0],[29417,5272,29416,0],[29419,5249,29418,0],[29419,29418,5029,0],[5029,29418,29423,0],[5028,29423,5270,0],[5270,29423,29420,0],[5270,29420,29421,0],[49263,29421,29415,0],[49263,29415,29416,0],[5270,29421,29422,0],[29422,29421,49263,0],[5270,29422,49262,0],[5029,5030,29419,0],[29419,5030,5248,0],[29419,5248,5249,0],[5249,29413,29418,0],[29420,29423,29418,0],[29420,29418,29424,0],[29424,29418,29413,0],[29420,29424,29425,0],[29426,29415,29421,0],[29426,29421,29425,0],[29425,29421,29420,0],[29413,29425,29424,0],[5025,5024,5307,0],[5307,5024,5309,0],[5025,5307,5100,0],[5304,5303,38197,0],[29510,38197,38196,0],[38196,5316,29839,0],[29514,29427,29428,0],[29430,29429,29431,0],[29527,29431,29432,0],[29602,29601,29435,0],[29800,29435,49318,0],[29800,49318,5103,0],[5107,29436,29438,0],[29436,29437,29438,0],[29436,5102,5103,0],[29508,49440,29439,0],[29508,29439,29509,0],[29509,29439,38193,0],[29509,38193,29638,0],[29638,29440,29441,0],[49243,29441,49244,0],[49243,49244,37887,0],[29443,29442,29444,0],[29443,29444,29445,0],[29443,29445,29446,0],[38241,37889,29457,0],[38241,29457,29449,0],[29449,29457,29448,0],[29448,29459,29450,0],[38275,38236,29451,0],[2293,29451,29452,0],[2293,29452,29456,0],[29453,29474,29454,0],[29454,29474,29472,0],[29454,29472,29473,0],[29454,29473,2290,0],[2290,29473,2289,0],[2289,29473,29455,0],[29455,2512,2289,0],[2289,2512,2508,0],[29453,29454,29456,0],[29454,2291,29456,0],[2293,29456,2292,0],[2292,29456,2291,0],[29447,29446,37889,0],[37889,29446,29457,0],[29448,29458,29459,0],[29459,37884,29460,0],[29459,29460,29461,0],[29459,29461,29450,0],[38235,29461,29504,0],[38235,29504,29462,0],[29462,29504,29463,0],[29462,29463,29505,0],[29462,29505,29464,0],[38302,29464,29465,0],[29465,29466,29467,0],[29467,29466,38114,0],[29482,29468,29469,0],[38232,29469,29481,0],[38232,29481,29480,0],[29470,1986,29471,0],[29472,29471,29473,0],[29472,29474,29471,0],[29471,29474,38110,0],[38110,29474,29475,0],[38110,29475,38239,0],[38239,29475,29476,0],[38238,29478,29476,0],[29479,29476,29475,0],[29476,29478,29477,0],[29474,29453,29475,0],[29475,29453,29479,0],[29455,29473,2645,0],[2645,29473,1987,0],[1987,29473,1986,0],[29471,1986,29473,0],[1986,29470,1985,0],[1985,29470,29480,0],[29480,29481,1984,0],[1984,29481,29469,0],[1984,29469,2003,0],[1984,1985,29480,0],[29469,38232,29482,0],[38114,29482,29467,0],[38114,29468,29482,0],[29461,29460,29504,0],[29504,29460,37884,0],[29483,37884,29486,0],[29486,37884,29458,0],[29458,29446,29485,0],[29485,29446,29445,0],[29445,29444,29484,0],[38190,29442,38191,0],[38305,38191,49244,0],[49244,38191,37887,0],[29442,37887,38191,0],[29459,29458,37884,0],[29448,29457,29458,0],[29458,29457,29446,0],[29458,29485,29486,0],[29483,29486,29487,0],[29483,29487,29505,0],[29487,29488,29466,0],[29466,29488,29490,0],[29490,29488,29489,0],[29490,29489,38116,0],[29491,38217,38119,0],[38119,38217,29492,0],[38159,29493,38221,0],[38159,38221,38224,0],[38159,38224,29494,0],[29496,29495,38223,0],[38223,29497,38167,0],[38167,29497,38187,0],[38186,29498,29499,0],[38186,29499,38167,0],[29503,29500,29501,0],[29501,29502,5322,0],[5322,29502,49440,0],[5321,29500,29503,0],[38120,29492,29493,0],[29492,38217,29493,0],[37884,29483,29504,0],[29504,29483,29463,0],[29463,29483,29505,0],[29486,29485,29506,0],[29506,29507,38303,0],[29445,29484,29485,0],[29485,29484,29507,0],[29485,29507,29506,0],[29638,38193,29440,0],[49440,29508,29428,0],[29428,29508,29429,0],[29429,29508,29509,0],[29429,29509,29637,0],[29637,29509,29638,0],[5304,38197,29810,0],[29810,38197,29510,0],[29510,38196,29839,0],[29837,29512,29513,0],[29513,29515,29838,0],[29515,29513,29514,0],[29512,29514,29513,0],[29511,29427,29514,0],[29511,29514,29512,0],[29514,29528,29515,0],[29515,29528,29516,0],[29517,29526,49246,0],[29517,49246,29518,0],[29833,29529,29519,0],[29519,29520,29521,0],[29521,29520,29522,0],[29522,29520,29523,0],[29522,29523,29524,0],[29812,29524,29523,0],[29525,29523,49246,0],[29526,29517,29432,0],[29432,29517,29527,0],[29517,29516,29527,0],[29431,29527,29430,0],[29430,29528,29429,0],[29429,29528,29428,0],[29527,29516,29430,0],[29516,29528,29430,0],[29528,29514,29428,0],[29525,49246,29526,0],[29523,29520,49246,0],[29518,29529,29530,0],[29530,29529,29838,0],[29530,29838,29515,0],[29529,29834,29838,0],[29530,29516,29518,0],[29518,29516,29517,0],[29516,29530,29515,0],[4955,29531,29535,0],[29535,29531,29532,0],[29532,29531,4953,0],[4953,2790,29532,0],[29532,2790,29533,0],[29533,2789,29534,0],[29534,2730,29535,0],[29535,2730,4955,0],[29533,29534,29532,0],[29532,29534,29535,0],[49456,2786,29536,0],[29536,38484,3088,0],[29536,2732,38484,0],[1937,1938,38482,0],[1964,29553,29537,0],[29537,29553,1963,0],[29537,1963,29538,0],[29538,2650,38482,0],[38482,2650,29539,0],[38482,29539,1937,0],[1937,29539,1936,0],[1936,29539,1935,0],[1935,29539,2651,0],[2651,29539,2650,0],[29551,1964,2021,0],[2021,1964,29540,0],[29540,38474,29541,0],[29542,38478,2049,0],[2049,38478,29544,0],[29544,38478,29543,0],[29544,29543,3158,0],[29542,2050,29545,0],[29546,29547,29548,0],[29547,29546,29545,0],[29548,2051,29546,0],[29546,29540,29545,0],[29545,29540,29541,0],[29545,29541,29542,0],[29540,29546,2021,0],[29540,1964,38474,0],[29549,38474,1964,0],[29549,1964,29537,0],[29551,2021,29550,0],[2020,29550,2021,0],[1965,29551,2019,0],[1965,2019,1966,0],[1966,2019,2064,0],[29550,2019,29551,0],[29553,29552,2653,0],[2657,29552,1967,0],[2657,1968,2654,0],[2654,1968,29554,0],[29554,1968,1969,0],[1968,2657,1967,0],[29552,1966,1967,0],[1966,29552,1965,0],[1965,29552,29553,0],[29553,2649,1965,0],[38231,2655,2656,0],[38231,2656,2654,0],[29555,29559,38230,0],[38230,29559,29556,0],[1972,29558,29560,0],[29555,1971,29559,0],[2016,1972,29559,0],[29559,29560,29556,0],[29556,29560,29557,0],[29558,29557,29560,0],[2016,29559,1971,0],[1971,29555,2017,0],[2017,29555,29554,0],[29562,29561,29556,0],[29562,29556,49451,0],[1976,49451,1974,0],[29562,1977,29561,0],[1959,1977,1958,0],[29561,1977,38231,0],[38231,1977,2655,0],[29563,29566,49453,0],[29563,49453,1978,0],[29566,1976,29564,0],[29565,1975,2000,0],[1976,1975,29564,0],[29564,1975,29565,0],[29565,1981,29564,0],[29564,1981,29566,0],[29566,1981,29567,0],[29566,29567,49452,0],[49452,29567,1980,0],[29568,29569,29570,0],[29570,29569,5026,0],[5026,29569,5276,0],[5276,29569,5027,0],[5027,29569,29568,0],[29570,5026,29571,0],[29576,29582,29586,0],[29576,29586,5290,0],[29576,5290,29575,0],[29575,5290,5281,0],[29575,5281,5280,0],[29575,5280,29572,0],[29575,29572,29573,0],[29573,29572,29574,0],[29572,5280,5279,0],[29582,29576,29571,0],[29576,29575,29571,0],[29571,29575,29573,0],[29570,29573,29568,0],[29568,29573,29574,0],[5289,5281,5290,0],[5026,5099,29571,0],[29571,5099,29580,0],[29580,29579,29581,0],[29581,29577,29583,0],[29584,29583,29578,0],[5095,29578,5096,0],[29578,29577,5097,0],[5098,29577,29581,0],[5098,29581,29579,0],[5099,29818,29580,0],[29580,29818,29816,0],[29580,29816,29579,0],[29583,29577,29578,0],[29582,29571,29580,0],[29582,29580,29581,0],[29582,29581,29583,0],[29586,29582,29583,0],[29586,29583,29584,0],[29584,29585,5073,0],[5093,29585,5095,0],[5074,5093,5091,0],[5095,29585,29578,0],[29578,29585,29584,0],[5073,29586,29584,0],[5278,29574,29572,0],[29572,5279,5278,0],[29588,5114,5119,0],[29588,5119,29590,0],[29590,5119,29594,0],[29589,29588,29590,0],[29589,29590,49320,0],[49320,29590,5120,0],[5120,29743,49322,0],[49323,29739,49321,0],[49321,29739,29592,0],[49321,29592,5113,0],[5120,29605,29743,0],[29593,29594,29597,0],[29597,29594,49314,0],[49314,29594,5119,0],[49314,5119,49316,0],[49316,5119,5118,0],[29593,29595,29590,0],[29590,29595,29605,0],[29596,29593,29597,0],[29596,29597,29598,0],[29599,29598,29820,0],[29630,49313,29601,0],[29601,49313,29819,0],[29601,29819,29435,0],[29601,29602,29630,0],[29603,29595,29596,0],[29604,29603,5126,0],[29603,29604,5121,0],[29603,5121,29605,0],[29603,29605,29595,0],[29596,29595,29593,0],[5126,29603,5125,0],[29628,5125,29599,0],[29598,29599,29596,0],[29599,5125,29596,0],[5125,29628,5124,0],[29603,29596,5125,0],[29606,49337,29741,0],[29741,49337,29607,0],[6543,49337,29608,0],[29608,49338,29609,0],[29609,49338,49339,0],[29609,49339,29613,0],[29609,49420,6588,0],[29610,49419,29611,0],[29693,29729,29617,0],[29617,29729,29692,0],[29613,29614,29615,0],[29615,29614,29616,0],[29617,29616,29618,0],[29619,29618,29620,0],[29620,29624,29621,0],[29621,29624,29622,0],[29621,29622,29651,0],[29622,29625,29718,0],[29718,29625,29717,0],[29715,29625,29623,0],[29625,29622,29624,0],[29623,29625,29624,0],[29620,29618,29727,0],[29620,29727,49311,0],[29599,29627,29628,0],[29627,29599,29820,0],[29716,29820,29629,0],[29631,29629,29632,0],[29632,29629,29434,0],[29434,29629,29630,0],[29434,29630,29602,0],[29630,29629,29600,0],[29600,29629,29820,0],[29627,29820,29716,0],[29716,29629,29631,0],[49966,29433,29633,0],[29724,29633,29634,0],[29634,29635,29636,0],[29636,29635,29637,0],[29637,29638,29725,0],[29725,29638,37913,0],[29720,29639,29680,0],[29649,29720,29640,0],[29641,29679,29642,0],[29642,29676,29643,0],[29645,29643,29644,0],[29645,29646,29665,0],[29665,37914,29647,0],[29665,29647,29648,0],[29649,29648,29650,0],[29710,49215,29622,0],[29622,49215,49214,0],[29622,49214,29651,0],[29621,29651,29620,0],[29620,29651,29619,0],[29681,29619,49214,0],[29681,49214,29694,0],[29694,49214,29652,0],[29694,29652,29653,0],[29655,29654,29656,0],[29657,49216,37921,0],[37921,49216,29658,0],[29658,29660,29659,0],[37918,29659,6434,0],[29661,29660,29658,0],[29661,29658,49216,0],[37922,29709,29655,0],[29655,29709,29662,0],[29655,29662,29654,0],[37922,29655,29656,0],[29656,38374,29657,0],[29657,38374,38375,0],[29657,38375,29663,0],[29657,29663,49216,0],[49216,29663,29667,0],[29667,29663,29666,0],[29664,38376,37914,0],[49215,29710,29650,0],[49215,29650,29647,0],[29647,29650,29648,0],[37914,29665,29664,0],[29666,29665,29646,0],[29666,29646,29667,0],[29667,29646,49194,0],[49194,29646,49218,0],[29668,29644,29669,0],[29668,29669,29670,0],[29670,29669,29671,0],[29670,29671,37908,0],[37908,29671,37911,0],[37911,29671,37912,0],[37911,37912,29672,0],[37910,29672,29673,0],[37887,29675,49243,0],[29671,29669,29676,0],[29671,29676,29642,0],[29671,29642,37912,0],[37912,29642,29677,0],[37912,29677,29678,0],[29679,29640,29680,0],[29720,29680,29640,0],[29679,29678,29677,0],[29679,29677,29642,0],[29646,29645,49218,0],[49218,29645,29644,0],[29665,29666,29664,0],[29663,29664,29666,0],[29618,29619,29681,0],[29618,29681,29682,0],[29695,29684,29693,0],[49209,49241,29687,0],[29688,49172,29689,0],[29689,49172,29690,0],[29690,49204,49148,0],[49148,49204,49147,0],[49147,49204,6359,0],[29693,29684,29612,0],[29612,49421,49212,0],[29612,49212,29611,0],[29611,49212,6542,0],[29611,6542,29610,0],[29618,29682,29617,0],[29615,29691,29692,0],[29692,29691,29617,0],[29695,29693,29683,0],[29683,29693,29617,0],[29683,29617,29682,0],[29615,29616,29691,0],[29691,29616,29617,0],[29681,29694,29682,0],[29682,29694,29683,0],[29683,29694,29695,0],[29695,29697,29698,0],[29698,29662,29699,0],[29696,29699,29662,0],[29696,29662,29708,0],[29708,29662,29709,0],[29654,29662,29698,0],[29654,29698,29697,0],[29653,38373,29697,0],[29697,38373,29654,0],[29695,29698,29699,0],[29706,29701,29702,0],[29702,49166,29703,0],[29707,29703,29685,0],[29702,29703,29704,0],[29706,29704,29699,0],[29706,29699,29700,0],[29699,29705,29695,0],[29695,29705,29684,0],[29705,29707,49421,0],[49421,29684,29705,0],[29699,29704,29705,0],[29702,29704,29706,0],[29703,29707,29704,0],[29685,49421,29707,0],[29705,29704,29707,0],[29699,29696,29700,0],[29700,29696,37915,0],[29700,37915,29701,0],[29723,29711,29712,0],[29713,29712,29714,0],[29715,29623,29626,0],[29714,29715,29716,0],[29714,29716,29631,0],[29627,29716,29626,0],[29626,29716,29715,0],[29625,29715,29717,0],[29718,29717,29711,0],[29711,29717,29712,0],[29712,29717,29714,0],[29714,29717,29715,0],[29622,29718,29710,0],[29650,29710,29719,0],[29720,29719,29721,0],[29637,29725,29722,0],[29722,29719,29711,0],[29722,29711,29723,0],[29723,29636,29722,0],[29722,29636,29637,0],[29636,29723,29634,0],[29634,29723,29724,0],[29723,29712,29724,0],[29724,29712,29713,0],[29724,29713,29632,0],[29724,29632,49966,0],[49966,29633,29724,0],[29632,29713,29631,0],[29722,29725,29721,0],[29722,29721,29719,0],[29711,29719,29718,0],[29718,29719,29710,0],[29645,29665,29643,0],[29679,29641,29640,0],[29640,29641,29648,0],[29640,29648,29649,0],[29650,29719,29649,0],[29649,29719,29720,0],[29720,29721,29639,0],[29639,29721,37913,0],[37913,29721,29725,0],[29429,29637,29635,0],[29429,29635,29431,0],[29431,29633,29432,0],[29432,29633,29433,0],[29633,29431,29635,0],[29633,29635,29634,0],[29632,29434,49966,0],[29623,29624,49311,0],[29616,29614,29726,0],[29726,29727,29616,0],[29616,29727,29618,0],[29727,29726,49310,0],[29612,29611,29729,0],[29729,49419,29692,0],[29612,29729,29693,0],[29729,29611,49419,0],[29609,49370,29608,0],[49370,6543,29608,0],[49337,6543,29607,0],[6543,29735,29607,0],[6543,6544,29735,0],[29734,6544,29730,0],[29734,29730,29731,0],[29732,29731,6547,0],[29732,6547,49332,0],[29732,49332,6550,0],[29732,29733,29737,0],[49343,29734,29736,0],[29737,29733,29738,0],[6549,29592,29738,0],[29738,29592,29739,0],[29738,29739,29740,0],[29737,29740,29736,0],[29740,29737,29738,0],[6549,29738,29733,0],[6550,29733,29732,0],[29734,29737,29736,0],[6544,29734,29735,0],[29735,29734,49343,0],[29732,29737,29731,0],[29734,29731,29737,0],[6547,29731,29730,0],[5122,49337,29604,0],[29604,49337,29606,0],[29606,29741,29742,0],[29606,29742,5121,0],[5121,29742,29743,0],[29742,49342,49322,0],[49322,49342,29591,0],[49322,29743,29742,0],[29744,5010,1820,0],[29748,29413,5012,0],[5012,29413,29745,0],[5012,29745,5011,0],[29745,29413,5249,0],[29745,5249,29746,0],[29745,29746,29747,0],[29747,29746,5250,0],[5011,29745,29747,0],[5012,49269,29748,0],[29748,49269,5013,0],[29750,29416,29414,0],[29750,29414,5013,0],[5013,29414,29748,0],[5013,5014,29750,0],[29750,5014,5016,0],[29749,29751,5275,0],[5275,29417,29749,0],[29749,29417,29416,0],[29749,29416,29750,0],[29750,5016,29749,0],[5275,29751,5018,0],[5016,5017,29751,0],[29751,5017,5018,0],[29751,29749,5016,0],[5288,5301,29752,0],[29752,5281,5287,0],[29752,5287,5288,0],[5279,5301,5277,0],[5288,5287,29933,0],[29933,5287,5282,0],[5282,5284,29935,0],[29935,5284,5285,0],[29935,5285,5286,0],[5070,5071,29755,0],[5076,29753,5136,0],[5070,5072,5071,0],[5071,29754,29755,0],[5071,5137,29754,0],[5136,29753,29754,0],[5137,29757,5075,0],[29756,29587,29757,0],[5075,29757,29758,0],[5090,29758,5074,0],[5073,5074,29587,0],[29587,29758,29757,0],[5074,29758,29587,0],[5137,5071,29757,0],[29756,29757,29759,0],[29759,29757,5071,0],[5149,5079,29763,0],[29763,5079,29765,0],[29763,29765,5179,0],[5179,29765,5180,0],[5180,29765,29760,0],[5180,29760,5187,0],[5187,29760,5181,0],[5182,5181,5082,0],[29760,29767,5181,0],[5082,5181,29767,0],[5182,5082,5183,0],[5183,5082,29761,0],[5084,29762,5147,0],[5147,29762,29761,0],[5147,29761,5083,0],[5083,29761,5082,0],[29763,5178,29764,0],[29763,29764,5149,0],[29765,29766,29767,0],[29765,29767,29760,0],[5080,29767,29766,0],[29775,29772,29774,0],[29786,29769,6542,0],[6542,29769,29770,0],[6542,29770,29610,0],[29771,29770,29774,0],[29771,29774,29772,0],[29772,6557,29773,0],[29771,29773,6553,0],[29771,29772,29773,0],[29774,29770,29769,0],[29769,29768,29774,0],[29775,29774,6583,0],[29775,6583,29776,0],[6558,29776,6559,0],[6583,6582,29776,0],[6559,29776,49364,0],[29776,6558,29775,0],[6583,29790,6582,0],[6582,29790,29792,0],[29792,29790,29789,0],[29792,29789,29777,0],[29778,29777,29789,0],[29779,29778,29782,0],[29779,29782,29781,0],[29795,29780,6578,0],[29780,6577,6571,0],[6571,6578,29780,0],[29780,29781,6577,0],[29782,29783,49207,0],[49207,29783,49372,0],[29782,29778,29783,0],[29785,29786,49371,0],[49371,29786,6541,0],[29787,29788,29790,0],[6583,29768,29790,0],[29790,29768,29787,0],[29786,29785,29787,0],[29787,29785,29788,0],[29789,29783,29778,0],[29789,29790,29788,0],[29783,29789,29784,0],[29784,29789,29788,0],[29784,29788,29785,0],[6581,6582,6566,0],[6581,6566,29791,0],[6566,29792,29777,0],[6582,29792,6566,0],[6567,29793,6568,0],[6581,29791,6580,0],[29778,29794,6569,0],[6569,29794,29795,0],[29778,29779,29794,0],[29794,29779,29781,0],[29794,29781,29795,0],[29795,29781,29780,0],[6735,6668,6570,0],[6570,6668,6568,0],[6663,29798,29799,0],[29796,29799,29797,0],[29797,6749,29796,0],[29800,5104,29802,0],[29800,29802,29801,0],[29435,29801,49307,0],[29435,49307,29602,0],[29800,29801,29435,0],[5104,5096,29802,0],[29802,29805,29803,0],[29804,29812,29525,0],[29802,29803,29801,0],[29801,29803,49307,0],[5096,5097,29802,0],[29802,5097,29805,0],[29805,5098,29806,0],[29524,29812,29815,0],[29522,29524,29814,0],[29522,29814,29807,0],[29807,5310,29808,0],[29808,29809,29835,0],[29835,29809,29810,0],[29811,29810,29510,0],[29839,29811,29510,0],[5308,5304,5312,0],[5312,5304,29809,0],[5304,29810,29809,0],[5310,29807,29814,0],[5310,29814,5305,0],[29806,29812,29804,0],[29806,29804,29805,0],[29812,29523,29525,0],[29805,5097,5098,0],[5098,29813,29806,0],[29806,29813,29815,0],[29814,29815,29817,0],[29817,29815,29816,0],[29816,29815,29813,0],[5311,29817,29816,0],[5311,29818,5100,0],[5311,5100,5307,0],[5307,5306,5311,0],[5100,29818,5099,0],[29818,5311,29816,0],[29814,29524,29815,0],[29815,29812,29806,0],[49315,29600,29598,0],[29598,29597,49314,0],[49313,29630,49315,0],[49315,29630,29600,0],[29600,29820,29598,0],[49318,29435,29819,0],[49318,29821,5103,0],[5103,29821,29436,0],[29436,29821,29437,0],[5139,5144,5138,0],[5150,5148,5080,0],[5080,5148,5081,0],[5081,29822,5083,0],[29822,5147,5083,0],[49347,29823,5159,0],[5159,29823,5158,0],[29823,29831,5158,0],[5166,29824,29830,0],[5172,29830,29825,0],[5172,29825,29826,0],[29826,29825,29827,0],[29826,29827,29828,0],[29828,29827,49351,0],[49351,29827,29829,0],[49350,29829,49346,0],[49345,29830,29824,0],[29830,49346,29825,0],[29825,49346,29829,0],[29825,29829,29827,0],[5172,29826,5168,0],[29823,29824,29831,0],[5155,29831,29824,0],[5243,5063,49439,0],[5243,49439,29832,0],[5048,49439,5222,0],[5048,5047,49439,0],[49439,5047,29832,0],[5243,29832,5242,0],[5242,29832,5046,0],[5048,5222,6686,0],[5048,6686,5049,0],[5222,5221,6686,0],[6686,5221,5220,0],[5232,5218,5219,0],[5222,49439,5223,0],[5223,5063,5230,0],[5064,5063,5243,0],[29835,29833,29808,0],[29808,29521,29807,0],[29807,29521,29522,0],[29808,29833,29521,0],[29834,29836,29838,0],[29811,29835,29810,0],[29833,29835,29834,0],[29836,29834,29835,0],[29836,29835,29811,0],[29836,29811,29837,0],[29837,29811,29839,0],[29513,29838,29837,0],[29838,29836,29837,0],[29837,29839,29511,0],[29511,29512,29837,0],[5506,5505,29843,0],[29843,5505,29844,0],[29841,29840,5415,0],[5413,29840,29842,0],[29842,29840,29841,0],[29842,29841,5409,0],[5413,29842,5354,0],[5354,5399,5413,0],[5354,29842,1768,0],[29842,1767,1768,0],[1768,1767,5427,0],[5511,5510,5512,0],[5511,5512,5494,0],[5510,5508,5512,0],[5512,5508,5506,0],[5506,29843,5513,0],[29843,29844,5513,0],[5513,29844,29846,0],[29845,5440,5532,0],[29845,5439,5491,0],[5524,5500,5469,0],[5480,1758,29847,0],[29847,1758,5551,0],[1763,5615,29853,0],[29853,5615,5613,0],[29853,5613,29852,0],[29852,29850,29849,0],[29849,29850,5616,0],[5616,29850,49431,0],[29851,29850,29852,0],[29851,29852,5613,0],[29853,29852,1762,0],[1762,1763,29853,0],[1762,29852,29854,0],[29854,29852,29849,0],[5596,29854,29857,0],[29857,29854,5595,0],[5596,29857,29855,0],[5593,29855,29857,0],[5594,29857,5595,0],[29855,5593,29856,0],[29856,5605,29855,0],[5593,1639,29856,0],[29856,1639,5592,0],[29856,5592,5597,0],[29858,5620,29859,0],[29860,49427,5614,0],[5614,49427,29859,0],[5614,29859,5613,0],[5613,29859,29851,0],[5405,49424,29861,0],[29859,49429,49431,0],[29859,49431,29851,0],[5627,49428,5369,0],[5369,49428,5628,0],[29864,5418,29865,0],[29865,5418,5417,0],[29863,29864,29862,0],[5614,29862,29866,0],[5614,29866,49424,0],[49424,29860,5614,0],[5614,5615,29863,0],[29863,5419,29864,0],[29863,29862,5614,0],[5419,29863,29848,0],[29848,29863,5615,0],[29864,29865,29862,0],[29862,29865,29861,0],[29862,29861,29866,0],[29866,29861,49424,0],[29865,5417,5407,0],[29865,5407,29861,0],[5406,29861,5407,0],[5567,5568,29867,0],[5568,5569,29868,0],[29868,29870,29869,0],[29869,29870,29875,0],[29871,29875,29873,0],[29871,29873,29872,0],[1698,29872,29873,0],[1698,29873,29874,0],[1673,29903,1681,0],[1698,29874,1699,0],[1699,29874,29903,0],[1699,29903,1673,0],[29870,29868,5569,0],[29870,29876,29875,0],[29875,29876,29873,0],[29876,5633,29877,0],[29876,29877,29874,0],[29874,29877,29903,0],[29876,29874,29873,0],[29878,29871,29250,0],[5567,29867,5566,0],[29867,29879,29234,0],[29234,29879,29880,0],[29234,29880,29233,0],[29233,29249,29232,0],[29249,29880,29869,0],[29869,29880,29879,0],[29233,29880,29249,0],[29868,29879,5568,0],[5568,29879,29867,0],[29879,29868,29869,0],[29878,29869,29871,0],[29871,29869,29875,0],[29878,29249,29869,0],[29881,1672,29891,0],[29886,29882,29883,0],[29884,29883,29885,0],[29885,1669,29884,0],[29884,1682,29883,0],[29883,1682,29886,0],[29890,1683,29887,0],[29887,1683,29888,0],[29888,1687,1689,0],[1689,1691,29894,0],[29887,29894,29889,0],[29887,29889,29891,0],[29887,29891,29890,0],[29891,1682,29890,0],[29887,29888,29894,0],[29891,29889,29881,0],[29881,29889,29892,0],[1703,29892,29893,0],[1703,29881,29892,0],[1695,29893,1702,0],[29889,29894,29892,0],[31366,31326,1691,0],[1691,31326,29894,0],[1685,1687,1683,0],[1683,1687,29888,0],[29895,29252,1695,0],[29895,29247,29248,0],[29895,29248,29252,0],[29252,29248,29249,0],[29239,29240,5563,0],[29239,5563,29237,0],[1765,1764,29896,0],[1765,29896,5470,0],[5470,29896,5471,0],[5471,29896,29897,0],[5471,29897,1760,0],[29896,1764,29899,0],[29898,29897,29899,0],[29898,29899,1761,0],[1761,29899,1762,0],[1762,29899,1763,0],[1763,29899,29848,0],[29848,29899,1764,0],[29898,1760,29897,0],[29897,29896,29899,0],[29900,5603,29240,0],[1739,5562,1740,0],[5562,1739,29901,0],[5562,29901,5561,0],[5561,29901,5559,0],[5559,29901,29902,0],[29902,1741,5559,0],[29903,29877,29904,0],[5572,29904,29877,0],[29904,5572,1681,0],[1681,29903,29904,0],[1629,6652,29905,0],[1628,1629,29905,0],[1628,29905,6654,0],[6654,29905,6644,0],[29907,1673,1674,0],[29882,1674,31452,0],[49975,31451,6186,0],[29882,31452,29883,0],[1674,29882,29907,0],[29907,29882,1671,0],[29907,1671,1673,0],[1660,29912,29908,0],[29909,29908,6211,0],[6211,29908,6198,0],[6198,29908,29910,0],[6203,29910,29911,0],[1660,29911,29912,0],[29911,29910,29912,0],[29912,29910,29908,0],[31342,29914,29916,0],[31342,29916,1665,0],[1660,29913,1661,0],[1665,29913,31342,0],[31342,29913,1660,0],[29909,6213,31343,0],[6213,6216,31343,0],[31343,6216,29915,0],[31343,29915,29914,0],[29914,29915,31337,0],[29914,31337,29916,0],[29913,1665,29917,0],[1662,29917,1664,0],[1664,29917,1665,0],[29917,1662,1661,0],[29917,1661,29913,0],[6210,6209,29918,0],[29918,6218,6210,0],[29918,6209,29919,0],[29919,6219,29918,0],[6092,6091,6220,0],[6091,1613,6220,0],[1615,29920,6762,0],[6762,29920,29921,0],[29922,29921,6694,0],[6694,49362,6703,0],[6703,49362,29923,0],[29923,29924,29925,0],[29925,6656,29926,0],[29926,6656,6661,0],[29926,6661,29927,0],[29926,29927,29931,0],[6661,6657,29927,0],[29931,29927,6690,0],[29931,6690,6692,0],[6692,6690,6633,0],[1623,6656,29928,0],[1623,29928,1622,0],[1622,29928,1621,0],[1621,29928,1619,0],[1619,29928,29929,0],[29929,29930,29924,0],[6703,29923,6693,0],[6693,29923,29931,0],[29931,29923,29926,0],[29926,29923,29925,0],[6694,49976,29922,0],[29932,6756,6762,0],[6756,29932,29922,0],[29921,29922,29932,0],[29921,29932,6762,0],[29920,1616,29921,0],[5495,29846,5465,0],[5497,5465,29844,0],[29844,5465,29846,0],[29934,5041,5040,0],[29934,5040,5039,0],[29934,29933,29935,0],[29935,29933,5282,0],[29933,29934,5288,0],[5041,29934,29935,0],[5041,29935,5286,0],[29295,29310,29937,0],[29309,29295,29294,0],[29310,29936,29937,0],[5448,29938,5447,0],[5447,29938,29952,0],[5447,29952,3848,0],[29940,29941,29960,0],[29960,29941,29967,0],[3856,29943,29948,0],[29948,30030,29947,0],[29947,29987,30005,0],[29947,30005,29946,0],[29946,30005,29944,0],[29944,3860,3859,0],[29944,3859,29945,0],[29944,29945,29946,0],[3857,29946,4787,0],[29946,29945,4787,0],[4618,3856,3857,0],[29947,29946,29948,0],[29941,29940,29953,0],[29941,29953,29949,0],[29949,30028,29951,0],[29951,30028,29950,0],[29950,30029,30007,0],[30007,30029,30012,0],[30012,29988,1754,0],[29950,30007,30008,0],[29950,30008,29951,0],[29951,30008,29942,0],[29949,29951,29941,0],[29941,29951,29942,0],[29938,29939,29952,0],[29949,29953,29956,0],[30010,29956,29957,0],[30010,29957,29958,0],[29958,5530,5450,0],[5449,5530,29955,0],[5449,29955,5448,0],[5448,29955,29954,0],[29953,29954,29955,0],[29953,29955,29956,0],[29956,29955,29957,0],[29957,29955,5530,0],[5530,29958,29957,0],[29953,29938,29954,0],[29954,29938,5448,0],[29958,5450,5452,0],[5452,5453,29958,0],[29956,30010,30028,0],[29956,30028,29949,0],[29953,29940,29939,0],[29953,29939,29938,0],[29959,29966,29965,0],[29959,29952,29966,0],[29966,29952,29939,0],[29940,29960,29962,0],[29962,29960,29961,0],[29962,29961,29963,0],[29963,29961,3852,0],[29962,29963,29964,0],[29964,29965,29966,0],[29940,29962,29939,0],[29939,29962,29966,0],[29966,29962,29964,0],[29960,29967,29961,0],[29968,4608,3865,0],[29968,3865,5637,0],[29969,3871,29970,0],[29972,4559,29219,0],[29972,29219,29218,0],[29219,4559,29220,0],[4559,29970,4560,0],[4560,29970,3871,0],[4560,3871,3872,0],[3872,4561,4560,0],[3870,29971,29970,0],[3870,29970,29972,0],[29972,29970,4559,0],[29973,29976,4552,0],[29976,3870,29972,0],[29977,3870,29976,0],[3870,29977,29985,0],[29985,29977,29978,0],[29980,4643,3864,0],[4643,29980,29981,0],[29981,29980,29979,0],[29981,29979,29983,0],[29983,29979,29982,0],[29983,29982,29984,0],[29983,29984,4641,0],[29984,29974,29975,0],[29974,29984,29973,0],[29973,29984,29976,0],[29984,29982,29976,0],[29981,29983,4648,0],[4648,29983,4641,0],[29975,4640,29984,0],[29984,4640,4641,0],[29979,29980,29985,0],[29979,29985,29978,0],[29980,3864,4616,0],[29980,4616,29985,0],[3867,29985,4616,0],[30012,1754,29986,0],[1756,30013,29989,0],[29989,30013,29990,0],[29989,29990,5454,0],[29991,4765,4766,0],[4765,3767,29992,0],[29992,3767,3766,0],[4765,29992,29993,0],[28986,29993,29994,0],[4767,29994,3763,0],[3766,3765,29992,0],[29992,3764,29994,0],[29994,3764,3763,0],[29994,29993,29992,0],[3764,29992,3765,0],[29268,30000,29269,0],[29269,30000,29995,0],[29269,29995,29273,0],[29997,29288,29999,0],[29999,29288,29287,0],[29999,29287,30000,0],[29996,29995,29287,0],[29287,29995,30000,0],[29286,29285,29996,0],[29286,29996,29287,0],[3765,29997,3764,0],[3764,29997,49973,0],[3764,49973,29267,0],[29267,49973,29266,0],[29998,29266,29999,0],[29999,30000,29998,0],[29998,30000,29268,0],[29998,29268,3787,0],[4775,28991,30001,0],[4774,30001,3853,0],[3853,30001,3852,0],[3852,30001,28991,0],[4622,3855,30002,0],[29943,30002,30009,0],[29943,3856,30002,0],[30002,3856,4622,0],[4623,4618,30003,0],[30003,30031,4619,0],[30003,4619,4620,0],[30003,4620,4623,0],[3857,3856,29948,0],[3857,29948,29946,0],[29944,30005,30004,0],[30004,30005,30006,0],[30006,30005,1753,0],[1753,30005,29987,0],[1753,29987,1754,0],[1754,29987,29986,0],[29986,30007,30012,0],[30009,29942,30008,0],[30007,29986,30008,0],[30008,29986,30009,0],[30009,29986,30030,0],[30009,30030,29943,0],[30014,30011,29990,0],[29990,30011,5453,0],[5453,30011,29958,0],[29958,30011,30010,0],[30011,30014,30029,0],[30029,30014,30012,0],[30014,29990,30013,0],[30015,30013,1756,0],[30012,30014,30015,0],[30015,29988,30012,0],[30013,30015,30014,0],[4626,4627,30016,0],[30017,4627,4625,0],[4785,30017,4625,0],[4785,4625,30018,0],[30018,4620,30019,0],[4620,30018,4621,0],[4621,30018,4625,0],[30019,4619,4664,0],[4664,4619,4663,0],[30019,4629,30018,0],[4774,4626,30016,0],[4774,30016,4773,0],[4652,4657,30020,0],[30020,4657,30034,0],[4652,30020,30021,0],[4652,30021,4651,0],[30035,30022,4649,0],[29201,29010,30023,0],[29199,30024,29212,0],[29212,30024,28996,0],[28996,30024,28998,0],[30024,29200,28998,0],[30023,29010,30025,0],[30025,29000,29213,0],[29213,29200,30025,0],[30025,29200,30023,0],[29000,30025,29001,0],[29010,29201,29009,0],[29009,29201,29210,0],[30026,30143,30145,0],[30026,30145,29015,0],[29028,29031,30143,0],[29028,30143,30073,0],[30073,30143,30026,0],[30065,30052,30027,0],[29016,29015,30052,0],[29015,30027,30052,0],[29950,30028,30029,0],[30011,30029,30010,0],[30010,30029,30028,0],[30030,29948,29943,0],[29947,30030,29987,0],[29987,30030,29986,0],[30022,4642,4648,0],[4619,30031,4662,0],[4662,30031,30032,0],[30032,4646,30033,0],[30033,4646,30034,0],[30032,30033,4658,0],[30032,4658,4662,0],[4662,4663,4619,0],[4646,30032,30031,0],[30021,30035,4651,0],[30022,30035,30021,0],[30022,30021,4647,0],[30021,30020,30034,0],[30035,4649,4650,0],[4650,4654,30035,0],[30035,4654,4651,0],[3862,1750,3864,0],[3864,1750,3863,0],[3863,1750,5637,0],[3861,1750,3862,0],[1750,3861,1751,0],[1751,3861,30036,0],[30004,30036,3860,0],[3860,30036,3861,0],[3860,29944,30004,0],[29210,4634,29009,0],[30037,30040,30038,0],[30038,30040,30039,0],[30039,29006,30038,0],[30038,4635,30037,0],[30037,29217,30040,0],[30040,29125,30041,0],[29005,30041,30044,0],[29005,29006,30041,0],[30041,29006,30039,0],[30041,30039,30040,0],[30040,29217,30042,0],[30040,30042,29125,0],[29125,30042,29127,0],[30041,29125,30043,0],[30041,30043,30044,0],[29127,30043,29125,0],[30042,29217,4636,0],[29127,30042,4698,0],[30045,29065,29064,0],[29027,29026,29023,0],[29027,29023,29071,0],[29024,29023,29026,0],[29014,30046,29148,0],[29147,29148,30046,0],[30046,30048,49986,0],[49986,30048,30141,0],[49633,49632,29143,0],[29143,49632,49631,0],[29143,49631,29183,0],[29145,49633,29143,0],[30142,30048,30049,0],[30068,30050,30051,0],[30068,30051,30066,0],[30066,30051,30052,0],[30065,30027,30053,0],[30065,30053,30058,0],[30057,30053,30054,0],[30057,30054,30055,0],[30055,30158,30056,0],[30056,30176,30058,0],[30056,30058,30057,0],[30057,30055,30056,0],[30065,30058,30064,0],[30071,30059,30062,0],[30071,30061,30060,0],[30069,49995,49991,0],[30069,30047,30068,0],[30182,30061,30062,0],[30061,30071,30062,0],[30176,30159,30058,0],[30065,30066,30052,0],[30067,30066,49618,0],[30069,30071,49995,0],[30070,30071,30069,0],[30070,30069,49618,0],[49618,30069,30067,0],[30069,30068,30067,0],[30067,30068,30066,0],[30059,30063,30064,0],[30063,30070,49618,0],[30064,30063,30065,0],[30063,30059,30071,0],[29021,30049,30046,0],[30026,30072,30073,0],[30026,29018,30072,0],[30072,29028,30073,0],[29037,29056,30074,0],[30077,30074,30184,0],[30184,30074,29058,0],[29058,30074,29056,0],[29037,29036,29056,0],[29036,30076,29054,0],[29054,30076,30075,0],[29051,30075,29032,0],[29032,30075,29033,0],[30075,30076,29033,0],[29033,30076,30147,0],[29045,30078,30125,0],[30125,30078,30312,0],[30125,30312,30079,0],[30079,30312,30313,0],[30079,30313,30080,0],[30080,30314,30081,0],[30081,30339,30082,0],[30338,30337,30084,0],[30084,30337,30085,0],[30084,30085,30086,0],[30086,30085,30317,0],[30086,30317,30087,0],[30095,30093,30091,0],[30095,30091,30088,0],[30114,30095,30090,0],[30114,30090,30115,0],[30088,30091,30089,0],[30089,30091,30092,0],[30095,30088,30090,0],[30328,30093,30327,0],[30327,30093,30087,0],[30087,30093,30094,0],[30087,30094,30086,0],[30093,30095,30094,0],[30094,30095,30123,0],[30123,30095,30096,0],[30124,30116,30134,0],[30134,30116,30097,0],[30134,30097,30135,0],[30135,30097,30098,0],[30135,30098,30099,0],[30101,30100,30113,0],[30101,30113,38757,0],[38757,30113,30166,0],[30166,30113,30102,0],[30169,30102,30100,0],[30169,30100,30103,0],[30103,30104,38759,0],[49810,49811,30105,0],[30105,49811,38759,0],[30104,30103,30099,0],[30104,30099,30107,0],[30104,30107,30108,0],[30104,30108,30105,0],[30105,30108,30106,0],[49810,30106,49992,0],[37,49992,30109,0],[30099,30098,30107,0],[30107,30110,30108,0],[30108,30110,30109,0],[30108,30109,30106,0],[30109,30110,30111,0],[30112,40,54,0],[30112,38760,30111,0],[30111,38760,38,0],[30099,30103,30100,0],[30102,30113,30100,0],[30114,30115,30124,0],[30124,30115,30116,0],[30116,30117,30097,0],[30097,30117,30098,0],[30107,30098,30117,0],[30107,30117,30110,0],[30121,30117,30118,0],[30118,30116,30115,0],[30118,30117,30116,0],[30124,30096,30114,0],[30114,30096,30095,0],[30115,30122,30118,0],[30118,30122,30121,0],[30117,30121,30110,0],[30110,30121,30119,0],[30110,30119,30120,0],[30110,30120,30111,0],[30111,30120,30112,0],[30122,38756,30119,0],[30122,30115,38756,0],[38756,30115,30090,0],[30122,30119,30121,0],[30086,30094,30123,0],[30096,30124,30136,0],[30096,30136,38758,0],[38758,30136,30084,0],[30082,30339,30083,0],[30083,30339,30338,0],[29046,30077,29045,0],[30125,30079,30080,0],[30125,30080,30126,0],[30126,30127,30128,0],[30126,30128,29043,0],[29043,30128,30149,0],[30179,30137,30129,0],[30132,30131,30133,0],[30166,30083,38757,0],[38757,30083,30338,0],[30101,38757,30134,0],[30101,30134,30135,0],[30135,30099,30100,0],[30135,30100,30101,0],[30134,38757,30124,0],[30124,38757,30136,0],[30083,30166,30082,0],[30082,30166,30133,0],[30082,30133,30131,0],[30081,30131,30127,0],[30127,30131,30130,0],[30128,30127,30129,0],[30128,30129,30137,0],[30128,30137,30149,0],[30129,30127,30130,0],[30080,30081,30126,0],[29137,29158,28997,0],[28997,29158,28995,0],[28995,29158,30138,0],[28995,30138,29156,0],[28995,30139,29211,0],[49619,29133,29154,0],[49619,29154,29182,0],[29155,29141,30140,0],[29155,30140,29167,0],[30142,30049,30141,0],[30048,30142,30141,0],[30050,30141,30049,0],[30141,30050,30047,0],[30047,30050,30068,0],[29017,29019,30051,0],[30143,29031,30144,0],[30144,29031,29049,0],[30144,29049,29032,0],[29015,30145,30146,0],[29015,30146,30157,0],[30157,30027,29015,0],[30146,30145,30143,0],[30146,30143,30144,0],[30157,30146,30151,0],[30151,30146,30150,0],[30148,30147,29035,0],[30148,29035,29042,0],[30148,29042,30149,0],[30144,29034,30150,0],[30150,29034,30181,0],[30054,30151,30152,0],[30152,30179,30158,0],[30158,30179,30153,0],[30179,30129,30153,0],[30153,30129,30130,0],[30149,30137,30148,0],[30150,30181,30151,0],[30151,30181,30152,0],[30152,30154,30179,0],[30179,30154,30155,0],[30137,30179,30155,0],[30156,30157,30054,0],[30156,30054,30053,0],[30156,30053,30027,0],[30156,30027,30157,0],[30151,30054,30157,0],[30054,30152,30055,0],[30055,30152,30158,0],[30146,30144,30150,0],[30155,29034,30147,0],[30155,30147,30148,0],[30053,30057,30058,0],[30058,30159,30059,0],[30159,30062,30059,0],[30158,30180,30056,0],[30062,30159,30182,0],[30180,30158,30160,0],[30162,30165,30163,0],[30165,30164,30163,0],[30165,30132,30133,0],[30133,30166,30171,0],[30168,30169,30103,0],[30167,30170,30172,0],[30171,30166,30102,0],[30165,30133,30164,0],[30163,30164,30172,0],[30173,30172,49984,0],[49984,30172,30170,0],[30167,30172,30164,0],[30173,49984,30061,0],[30173,30061,30174,0],[30180,30161,30177,0],[30180,30177,30176,0],[30176,30177,30175,0],[30175,30177,30178,0],[30175,30178,30174,0],[30173,30178,30172,0],[30172,30178,30163,0],[30163,30178,30177,0],[30163,30177,30162,0],[30176,30175,30159,0],[30177,30161,30162,0],[30162,30161,30160,0],[30162,30160,30132,0],[30162,30132,30165,0],[30161,30180,30160,0],[30160,30153,30130,0],[30056,30180,30176,0],[30160,30130,30132,0],[30132,30130,30131,0],[30154,30152,30181,0],[30154,30181,30155,0],[30155,30181,29034,0],[30155,30148,30137,0],[30081,30082,30131,0],[30159,30175,30182,0],[30061,30182,30174,0],[30174,30178,30173,0],[30167,30171,30183,0],[30169,30183,30102,0],[30183,30169,30168,0],[30167,30183,30170,0],[30183,30168,30170,0],[30077,30078,29045,0],[30078,30077,30184,0],[30078,30184,30185,0],[30185,30184,30357,0],[30357,30184,30186,0],[30357,30186,30187,0],[4567,30189,30188,0],[4567,30188,4566,0],[30189,4567,4582,0],[4582,4567,4581,0],[30194,4583,4584,0],[30192,4584,30190,0],[4585,30190,4670,0],[30191,30190,4563,0],[4563,4591,4544,0],[4563,4544,4562,0],[30192,30191,4564,0],[30192,4564,30193,0],[30193,4564,4565,0],[30193,4565,4566,0],[30193,4566,30188,0],[4591,4563,30190,0],[4591,30190,4585,0],[30190,30191,30192,0],[30188,30189,4583,0],[30188,4583,30194,0],[30188,30194,30193,0],[30193,30194,30192,0],[30192,30194,4584,0],[30265,30262,30266,0],[30266,30262,30263,0],[30241,30255,30196,0],[30197,30196,30198,0],[30198,30256,30199,0],[30199,30256,30200,0],[49605,30202,30201,0],[30201,30202,31308,0],[31308,30202,30203,0],[30203,28129,30199,0],[30199,30200,31308,0],[31308,30200,30242,0],[31308,30242,30201,0],[30241,30406,30263,0],[30241,30263,30195,0],[30205,4512,30206,0],[30205,30206,30207,0],[30206,31287,30208,0],[30208,31287,3883,0],[3883,31287,31286,0],[3883,30266,30208,0],[30208,30263,30207,0],[30207,30263,30406,0],[30207,30406,30205,0],[30208,30207,30206,0],[30263,30208,30266,0],[30266,3883,3882,0],[3883,31286,49615,0],[4512,30205,3935,0],[3935,30205,31284,0],[30205,30204,31284,0],[31284,30204,30209,0],[30211,30214,30212,0],[30211,30212,30268,0],[30268,30212,30267,0],[30267,30212,30198,0],[30197,30198,30213,0],[30197,30213,30240,0],[30240,30213,31256,0],[31256,30213,30210,0],[31256,30210,30209,0],[30214,30210,30213,0],[30212,30213,30198,0],[30212,30214,30213,0],[30215,30209,30231,0],[30215,30231,30230,0],[30230,30231,30216,0],[30229,30216,31254,0],[30229,31254,30924,0],[30229,30924,30225,0],[30226,30924,30217,0],[30227,30217,30603,0],[30227,30603,30218,0],[30218,30603,30604,0],[30604,30599,30597,0],[30218,30597,30219,0],[30906,30219,30548,0],[30906,30548,30220,0],[30904,30220,3943,0],[3944,3943,30221,0],[3944,30221,3946,0],[3946,30221,30526,0],[4502,30525,30222,0],[30222,30552,4501,0],[30525,4502,3945,0],[30604,30597,30218,0],[30226,30911,30223,0],[30224,30225,30226,0],[30226,30225,30924,0],[30226,30217,30227,0],[30227,30218,30910,0],[30225,30228,30229,0],[30216,30229,30230,0],[30215,30230,30228,0],[30228,30230,30229,0],[30209,30210,30231,0],[30233,30211,30268,0],[30233,30268,30270,0],[30270,31278,30271,0],[30271,31278,30234,0],[30234,30269,30236,0],[30236,30269,30235,0],[30236,30235,30237,0],[30236,30237,30275,0],[30275,30237,30238,0],[30273,31610,30277,0],[30276,30239,30306,0],[30238,30306,31610,0],[31610,30306,30239,0],[31610,30239,30277,0],[30211,30232,30214,0],[30214,30232,30210,0],[30210,30232,30231,0],[30231,30232,31252,0],[30196,30240,30241,0],[30196,30197,30240,0],[30204,30241,30240,0],[49605,30201,5853,0],[5853,30201,30242,0],[5853,30242,5862,0],[5862,30242,30243,0],[5862,30243,30244,0],[5852,30244,30245,0],[31292,30245,30246,0],[31290,30252,30251,0],[31290,30251,4534,0],[30246,30245,30261,0],[30246,30261,30247,0],[30247,30254,30249,0],[30249,30254,30260,0],[30264,30262,30248,0],[30248,6164,4520,0],[30248,4520,30264,0],[30264,4520,30249,0],[4520,30250,30249,0],[30249,30250,30251,0],[30247,30249,30251,0],[30250,4534,30251,0],[30252,30247,30251,0],[30247,30252,30246,0],[30244,30243,30259,0],[30245,30244,30259,0],[30258,30255,30260,0],[30260,30255,30195,0],[30195,30255,30241,0],[30200,30256,30243,0],[30243,30256,30257,0],[30243,30257,30259,0],[30243,30242,30200,0],[30256,30196,30258,0],[30256,30258,30257,0],[30257,30258,30254,0],[30257,30254,30253,0],[30257,30253,30259,0],[30196,30256,30198,0],[30258,30260,30254,0],[30254,30247,30253,0],[30253,30247,30261,0],[30245,30259,30261,0],[30261,30259,30253,0],[30249,30260,30264,0],[30262,30264,30263,0],[30195,30263,30260,0],[30260,30263,30264,0],[30248,30262,30265,0],[30248,30265,4519,0],[3882,4517,30265,0],[3882,30265,30266,0],[30198,30199,30267,0],[30267,30199,5860,0],[30267,5860,5859,0],[30267,5859,30268,0],[30270,30268,31278,0],[30234,31278,5858,0],[30234,5858,30269,0],[30269,31608,30235,0],[5854,5860,28129,0],[28129,5860,30199,0],[28129,30203,30202,0],[30273,30272,30274,0],[30273,30274,30275,0],[31609,30275,30274,0],[30271,30274,30272,0],[30239,30276,30286,0],[30239,30286,30277,0],[30277,30279,30278,0],[30278,30279,30289,0],[30278,30289,31261,0],[31261,30289,30288,0],[31261,30288,31235,0],[31235,30288,30281,0],[31235,30281,30280,0],[30280,30281,31233,0],[31233,30281,31274,0],[31233,31274,30310,0],[31233,30310,31245,0],[49612,30310,30282,0],[30283,49610,31277,0],[31277,49610,30284,0],[31277,30284,30285,0],[30285,30300,28102,0],[28102,28111,28103,0],[28102,28101,30285,0],[30285,28101,31277,0],[30277,30278,30273,0],[30278,31228,30272,0],[30272,30273,30278,0],[30287,30304,30288,0],[30277,30286,30279,0],[31274,30288,30290,0],[30291,30290,30304,0],[30291,30304,30283,0],[30292,30303,30293,0],[30293,30303,49609,0],[49609,30303,30294,0],[30296,31611,30297,0],[30297,31611,28133,0],[30297,28133,28124,0],[30297,28131,30296,0],[30296,28121,30295,0],[30296,28131,28121,0],[30295,28121,30298,0],[30295,30298,30294,0],[30294,30298,49609,0],[30299,30298,30300,0],[30299,30300,30285,0],[30300,30298,30301,0],[30300,30301,28111,0],[28111,30301,30302,0],[30302,49599,28109,0],[28109,49599,28118,0],[28109,28110,30302,0],[28110,28111,30302,0],[28111,28102,30300,0],[28119,30301,28121,0],[28121,30301,30298,0],[30301,28119,30302,0],[28119,49599,30302,0],[30292,30283,30304,0],[30292,30304,30303,0],[30303,30304,30287,0],[30303,30287,30276,0],[30276,30287,30286,0],[30306,30238,30237,0],[30306,30307,30305,0],[30305,30307,30294,0],[30305,30294,30303,0],[30305,30303,30276,0],[30294,30307,30295,0],[30295,30307,30308,0],[30309,31608,28132,0],[28132,28133,30309,0],[30306,30305,30276,0],[30304,30290,30288,0],[30283,30282,30291,0],[30288,30289,30287,0],[30287,30289,30286,0],[30286,30289,30279,0],[30078,30311,30312,0],[30314,30313,30337,0],[30339,30081,30314,0],[30312,30311,30315,0],[30317,30367,30087,0],[30087,30367,30318,0],[30319,30344,30346,0],[30329,30346,30348,0],[30329,30348,30325,0],[30325,30413,30323,0],[30323,30413,30322,0],[30322,30413,30410,0],[30322,30410,30321,0],[30322,30321,30320,0],[30330,30320,226,0],[30320,30330,30322,0],[30322,30330,30324,0],[30322,30324,30323,0],[30325,30323,30324,0],[30325,30324,30334,0],[30325,30334,30326,0],[30327,30319,30328,0],[30327,30318,30344,0],[30319,30326,30328,0],[30319,30346,30326,0],[30326,30346,30329,0],[30326,30329,30325,0],[30330,226,30335,0],[30324,30330,30334,0],[30332,30331,224,0],[30332,224,30333,0],[224,30334,30335,0],[30335,30334,30330,0],[30331,30334,224,0],[30331,30332,30326,0],[30326,30332,30328,0],[30331,30326,30334,0],[30321,216,30320,0],[217,30320,216,0],[30340,30317,30085,0],[30312,30315,30316,0],[30312,30316,30313,0],[30313,30316,30336,0],[30339,30314,30338,0],[30337,30338,30314,0],[30337,30313,30336,0],[30337,30336,30085,0],[30085,30336,30340,0],[30317,30340,30367,0],[30336,30316,30340,0],[30340,30316,30367,0],[30315,30311,30341,0],[30315,30341,30342,0],[30367,30316,30342,0],[30342,30316,30315,0],[30341,30311,30343,0],[30343,30311,30078,0],[30343,30370,30350,0],[30343,30350,30341,0],[30341,30350,30349,0],[30367,30349,30344,0],[30344,30345,30346,0],[30346,30345,30347,0],[30325,30366,30413,0],[30325,30348,30366,0],[30348,30346,30347,0],[30344,30349,30345,0],[30350,30370,30479,0],[30478,30479,30356,0],[30478,30356,30351,0],[30352,30351,4692,0],[4692,4690,30353,0],[4692,30353,30352,0],[30352,30353,30355,0],[30475,30355,30407,0],[30484,30363,238,0],[30484,238,237,0],[30354,30355,30353,0],[241,30353,242,0],[30353,241,30354,0],[30354,241,261,0],[30354,261,239,0],[30354,239,30407,0],[30355,30475,30352,0],[30352,30475,30351,0],[30479,30370,30356,0],[30474,30356,30185,0],[30474,30185,30357,0],[30351,30358,4692,0],[30357,30187,30358,0],[30358,30187,30359,0],[30358,30359,4692,0],[30356,30474,30351,0],[30349,30350,30360,0],[30364,30361,30365,0],[30365,30361,30362,0],[30365,30362,30408,0],[30408,30362,30363,0],[30349,30360,30345,0],[30345,30360,30347,0],[30347,30360,30364,0],[30412,30364,30365,0],[30347,30364,30348,0],[30348,30364,30412,0],[30348,30412,30366,0],[30342,30341,30349,0],[30342,30349,30367,0],[30318,30367,30344,0],[61,30369,30368,0],[61,30368,63,0],[63,30368,34,0],[30369,51,74,0],[30369,72,71,0],[30369,74,72,0],[30369,71,30368,0],[51,30369,61,0],[30078,30185,30343,0],[30343,30185,30370,0],[30356,30370,30185,0],[29034,30144,29032,0],[30371,4637,4675,0],[4676,30371,4678,0],[4678,30371,4675,0],[4678,4675,4673,0],[4679,4678,30372,0],[30372,30374,4680,0],[30372,4680,4679,0],[4673,4747,30372,0],[30372,4747,30381,0],[30372,30381,30373,0],[30373,30381,4703,0],[30372,30373,30374,0],[4704,4681,30373,0],[30373,4681,30374,0],[29221,4546,29220,0],[4558,29220,4546,0],[4545,4546,29221,0],[4545,29221,30379,0],[30375,29221,30376,0],[30376,29221,30377,0],[30376,30377,3875,0],[3875,30377,4561,0],[4561,3874,3875,0],[30376,30378,30375,0],[30375,30378,30379,0],[30379,4544,4545,0],[30379,30378,30380,0],[30379,30380,4544,0],[4544,30380,3878,0],[4700,29126,4698,0],[4743,4546,30382,0],[4585,30382,4591,0],[4591,30382,4545,0],[4593,3880,30383,0],[30383,30384,4596,0],[4596,4595,30383,0],[30384,3880,3881,0],[30386,3894,3913,0],[30386,3913,30387,0],[30388,30387,30389,0],[30388,30389,4730,0],[4730,30389,30390,0],[30390,4728,4730,0],[30387,3913,3923,0],[30387,3923,30389,0],[3923,3918,30389,0],[30389,3918,30390,0],[30391,30388,30394,0],[30394,30388,30392,0],[30394,30392,4732,0],[30394,4732,30395,0],[30388,30391,30387,0],[30387,30391,30386,0],[3892,30391,30394,0],[3892,30394,30393,0],[4717,30393,30395,0],[30395,30393,30394,0],[30396,30428,4721,0],[4721,30428,4720,0],[4720,30428,4725,0],[4720,4725,4734,0],[4723,30485,30396,0],[30396,30485,30397,0],[30396,30397,30428,0],[30397,30485,205,0],[342,197,341,0],[197,205,341,0],[30397,205,30398,0],[30400,30399,332,0],[331,332,30399,0],[331,30399,202,0],[332,30460,30458,0],[30401,312,333,0],[30401,333,30458,0],[30458,333,332,0],[311,281,312,0],[278,280,275,0],[275,280,276,0],[276,280,311,0],[311,280,281,0],[278,279,280,0],[30385,30384,30402,0],[30402,30384,3881,0],[49615,30402,3882,0],[3882,30402,3881,0],[30403,30402,49615,0],[30385,30402,30404,0],[30404,30402,30403,0],[30404,30403,4569,0],[30404,4569,4571,0],[30405,4514,3933,0],[4515,4507,4509,0],[4515,4509,30405,0],[30406,30241,30204,0],[30406,30204,30205,0],[4686,29102,4685,0],[245,258,244,0],[244,258,260,0],[244,260,261,0],[237,262,263,0],[237,263,30481,0],[240,244,261,0],[30355,30354,30407,0],[238,30363,30407,0],[30363,30475,30407,0],[30408,30363,30484,0],[30408,30484,30409,0],[30414,235,30410,0],[30321,30410,215,0],[215,30410,214,0],[214,30410,233,0],[233,30410,235,0],[233,211,214,0],[235,30414,236,0],[236,30414,30409,0],[30409,30414,30411,0],[30412,30411,30366,0],[30409,30411,30408,0],[30408,30411,30365,0],[30411,30412,30365,0],[30366,30411,30413,0],[30413,30414,30410,0],[30414,30413,30411,0],[215,30417,216,0],[30417,215,30415,0],[30415,215,213,0],[30415,213,30416,0],[30416,213,212,0],[30417,284,216,0],[30420,30400,332,0],[30415,30416,283,0],[283,30416,30418,0],[30423,30421,30419,0],[30419,30421,30418,0],[283,30418,30421,0],[283,30421,313,0],[313,30421,30422,0],[332,30422,30420,0],[30420,30422,30423,0],[30423,30422,30421,0],[30423,30419,208,0],[30423,208,206,0],[30420,30423,30400,0],[210,208,212,0],[30416,212,30418,0],[30419,30418,208,0],[209,30427,207,0],[207,30427,30398,0],[207,30398,204,0],[30424,209,266,0],[30424,266,30425,0],[30425,265,30426,0],[30426,265,234,0],[30426,4726,30425,0],[209,30424,30427,0],[30427,30397,30398,0],[4726,4725,30425,0],[30425,4725,30424,0],[30424,4725,30428,0],[30424,30428,30427,0],[30427,30428,30397,0],[266,265,30425,0],[207,204,206,0],[206,204,203,0],[30450,38732,30429,0],[30429,30430,38736,0],[38739,38744,30452,0],[30430,30429,30431,0],[30431,38728,30432,0],[30433,30452,30432,0],[30452,30433,38739,0],[30434,38739,30433,0],[38749,30434,30435,0],[38749,30435,49983,0],[49983,30435,30436,0],[30436,30435,30438,0],[30438,30437,30436,0],[30436,30437,75,0],[30438,30439,30441,0],[30438,30441,30437,0],[30439,30434,30440,0],[30439,30440,30441,0],[75,30441,28886,0],[30441,75,30437,0],[30434,30433,30432,0],[30434,30432,30440,0],[30440,30432,38730,0],[30440,38730,28886,0],[28886,38730,30442,0],[28886,30442,30443,0],[30443,30442,30445,0],[38725,30445,30444,0],[30442,38731,30445,0],[30444,30445,38727,0],[30440,28886,30441,0],[30431,30429,38732,0],[38732,30446,38726,0],[30446,30447,142,0],[30446,142,143,0],[30447,303,30451,0],[30451,303,30448,0],[30451,30448,139,0],[305,303,30449,0],[305,30449,30450,0],[30451,141,30447,0],[30447,30446,303,0],[30449,38732,30450,0],[38732,30449,30446,0],[30446,30449,303,0],[30430,30452,38736,0],[38736,30452,38744,0],[30461,301,30453,0],[30453,301,30454,0],[30454,301,275,0],[30454,275,276,0],[30454,276,273,0],[30453,30454,30455,0],[30453,30455,182,0],[30456,274,311,0],[30456,311,312,0],[30456,312,30401,0],[274,30456,30467,0],[30467,30456,30457,0],[30459,30401,30458,0],[30459,30458,30460,0],[30459,30460,30463,0],[30460,331,30464,0],[30456,30401,30457,0],[30467,30457,30462,0],[30461,30453,182,0],[30455,30454,30468,0],[30468,30454,273,0],[30468,273,274,0],[30462,30457,30459,0],[30462,30459,30463,0],[30464,30463,30460,0],[30459,30457,30401,0],[272,30465,30466,0],[274,30467,30468,0],[30455,30468,30472,0],[30469,30472,30470,0],[316,30471,30466,0],[316,30466,30465,0],[30466,30471,30467,0],[30467,30471,30470,0],[30467,30470,30472,0],[30472,30468,30467,0],[30471,316,317,0],[30471,317,30470,0],[30470,317,30469,0],[30469,181,30472,0],[181,30469,183,0],[183,30469,180,0],[180,30469,317,0],[251,4710,247,0],[247,4710,4711,0],[30473,257,4736,0],[4736,4735,30473,0],[30474,30358,30351,0],[30474,30357,30358,0],[30475,30476,30351,0],[30478,30476,30477,0],[30479,30477,30360,0],[30479,30360,30350,0],[30478,30351,30476,0],[30362,30361,30477,0],[30361,30364,30477,0],[30477,30364,30360,0],[30363,30362,30475,0],[30478,30477,30479,0],[30333,30092,30091,0],[30480,30093,30328,0],[30328,30332,30480,0],[30480,30332,30333,0],[30333,30091,30480,0],[30481,263,30482,0],[30482,263,30473,0],[30482,255,30483,0],[30483,255,256,0],[30483,30481,30482,0],[30484,236,30409,0],[341,205,340,0],[340,205,30485,0],[340,30485,4723,0],[30486,192,191,0],[327,30486,30487,0],[30487,30486,30488,0],[30487,30488,324,0],[30488,30486,191,0],[30487,323,327,0],[30464,201,268,0],[131,30499,30489,0],[162,30491,152,0],[30491,162,30490,0],[133,30489,30490,0],[133,30490,162,0],[152,30491,30492,0],[30493,153,30494,0],[30493,30494,30495,0],[30495,30494,30496,0],[30495,30496,30500,0],[30497,153,30493,0],[154,30493,156,0],[156,30493,30498,0],[156,30498,157,0],[30493,30495,30498,0],[30499,30496,38723,0],[38723,30496,30494,0],[38723,30494,153,0],[38723,153,30492,0],[30496,30499,30501,0],[129,30501,166,0],[131,30501,30499,0],[30496,30501,30500,0],[30500,30501,129,0],[30500,129,30502,0],[30500,30502,128,0],[30489,30499,30490,0],[30490,30499,30491,0],[28865,355,30503,0],[28865,30503,28866,0],[28866,30503,28875,0],[28875,30503,28867,0],[28867,30503,356,0],[28867,356,335,0],[28867,335,336,0],[28867,336,28868,0],[28868,336,3907,0],[28868,3907,3906,0],[28868,3906,30504,0],[30504,3906,3903,0],[30504,3903,30505,0],[30506,30505,30507,0],[30522,30509,30510,0],[30510,30509,4047,0],[30510,4047,4049,0],[30510,28872,30511,0],[30510,30511,30522,0],[30522,30511,30508,0],[4047,30509,28873,0],[30506,30512,30504,0],[30504,30512,28870,0],[28870,30512,30514,0],[30514,30512,30521,0],[30505,30506,30504,0],[3903,3902,30505,0],[30505,3902,3901,0],[30505,3901,30507,0],[30507,3901,3900,0],[30507,3900,30508,0],[30513,30514,28871,0],[28874,30513,38774,0],[38774,30513,4052,0],[38774,4052,4054,0],[30816,4053,30515,0],[30816,30515,30516,0],[30811,30516,4065,0],[4065,30808,30811,0],[30516,30515,4065,0],[4065,30515,4064,0],[4064,30515,4053,0],[4049,4050,28872,0],[28872,4050,30517,0],[30517,4050,30518,0],[30517,30518,28872,0],[28872,30518,30519,0],[30518,4052,30519,0],[4052,30518,4053,0],[4053,30518,4051,0],[30519,4052,28871,0],[30508,30511,30520,0],[30521,30520,28871,0],[30521,30512,30520,0],[30512,30506,30520,0],[30520,30506,30508,0],[28871,30520,30511,0],[30508,3900,30522,0],[30522,3900,4082,0],[30509,30522,4082,0],[30509,4082,28873,0],[28875,28867,30523,0],[30523,28867,28869,0],[30523,28876,28875,0],[337,343,49805,0],[4502,30524,3953,0],[30524,30555,3953,0],[3953,30555,3954,0],[3954,30555,3897,0],[30525,3946,30526,0],[30525,30526,30543,0],[30529,30528,30530,0],[30529,30530,30542,0],[30568,30542,30531,0],[30531,30542,30532,0],[30532,30542,30530,0],[30532,30530,30540,0],[30533,30540,30534,0],[30593,30534,30535,0],[30594,30535,30536,0],[30594,30536,30605,0],[30605,30536,30547,0],[30547,30536,30537,0],[30536,30539,30537,0],[30537,30528,30544,0],[30544,30528,30538,0],[30527,30538,30529,0],[30538,30528,30529,0],[30528,30541,30530,0],[30540,30530,30539,0],[30540,30539,30534,0],[30534,30539,30535,0],[30530,30541,30539,0],[30528,30537,30541,0],[30537,30539,30541,0],[30535,30539,30536,0],[30558,30543,30545,0],[30543,30526,30544,0],[30545,30544,30538,0],[30545,30543,30544,0],[30545,30538,30527,0],[30544,30546,30537,0],[30537,30546,30547,0],[30548,30547,30220,0],[30220,30546,30221,0],[30221,3943,30220,0],[30220,30547,30546,0],[30221,30546,30526,0],[30526,30546,30544,0],[4026,4027,4030,0],[4026,4030,30617,0],[4028,4030,4027,0],[30549,4029,4028,0],[30549,4028,4266,0],[3967,4091,4118,0],[4096,4429,30550,0],[4096,30550,32447,0],[30551,3973,4421,0],[4428,4421,4422,0],[4421,4428,30551,0],[30551,4428,4429,0],[4432,4421,4408,0],[30551,4429,4094,0],[30551,4094,3975,0],[4421,3973,4408,0],[4408,3973,3972,0],[3973,30551,3975,0],[3976,3975,4094,0],[4096,4095,4429,0],[4429,4095,4094,0],[4072,4074,4006,0],[30552,30222,30525,0],[30525,30543,30552,0],[30552,30543,30558,0],[30552,30558,3956,0],[30555,30524,3997,0],[3997,30553,30554,0],[30554,4010,3997,0],[4010,30555,3997,0],[4012,30553,3995,0],[4012,3995,30571,0],[30571,3995,30556,0],[3999,30557,3998,0],[3897,30555,4010,0],[30558,30545,3957,0],[3957,30545,30570,0],[30570,30545,30527,0],[30570,30527,30559,0],[30559,30529,30568,0],[30931,30567,30560,0],[30931,30560,3959,0],[4014,3959,3960,0],[3960,3959,30560,0],[3960,30560,30561,0],[30587,30564,30565,0],[30565,30531,30532,0],[30531,30565,30563,0],[30567,30566,30561,0],[30567,30561,30560,0],[30561,30566,30562,0],[30562,30566,30579,0],[30531,30563,30566,0],[30531,30566,30568,0],[30568,30566,30567,0],[30559,30568,30570,0],[30570,30568,30569,0],[30569,30568,30931,0],[30529,30559,30527,0],[4000,4001,30556,0],[30556,4001,30571,0],[30553,4012,30554,0],[30557,3999,3994,0],[3994,3999,30556,0],[30556,3999,4000,0],[3989,30573,3968,0],[30830,30581,30702,0],[30702,30583,30574,0],[30702,30574,30701,0],[30701,30574,30700,0],[30700,30576,30698,0],[30698,30576,30834,0],[30698,30834,30575,0],[30575,30834,4340,0],[4340,30834,4341,0],[30834,4342,4341,0],[30576,30574,30577,0],[30578,30901,4346,0],[30576,30700,30574,0],[30579,30574,30580,0],[30562,30581,30582,0],[30582,30581,30830,0],[30582,30830,30573,0],[30573,30572,30582,0],[30582,30572,3961,0],[30582,3961,3960,0],[30582,3960,30562,0],[30562,3960,30561,0],[30702,30581,30583,0],[30583,30581,30562,0],[30583,30562,30580,0],[30583,30580,30574,0],[30580,30562,30579,0],[30564,30579,30563,0],[30577,30574,30584,0],[30564,30584,30579,0],[30579,30584,30574,0],[30585,30946,4348,0],[4348,30946,30586,0],[30588,30586,30587,0],[30588,30587,30532,0],[30532,30587,30565,0],[30586,30588,30589,0],[30589,30588,30532,0],[30532,30540,30589,0],[4350,4349,30590,0],[30590,4349,30589,0],[4350,30590,4352,0],[4352,30592,4353,0],[4353,30592,30591,0],[30591,30592,30593,0],[31199,30593,30594,0],[31199,30594,4400,0],[4400,30594,31200,0],[31200,30594,30595,0],[31200,30595,30596,0],[30596,30605,30548,0],[30548,30219,30596,0],[30596,30219,30597,0],[30598,30597,30599,0],[30599,30604,30600,0],[30603,30914,30604,0],[30604,30914,30602,0],[30604,30602,30600,0],[30600,30602,30601,0],[30605,30547,30548,0],[30535,30594,30593,0],[30594,30605,30595,0],[30595,30605,30596,0],[30593,30592,30534,0],[30534,30592,4352,0],[30534,4352,30533,0],[30590,30589,30533,0],[4353,30591,4354,0],[4354,30591,4398,0],[4398,30606,4354,0],[4356,4354,30606,0],[30577,30585,30578,0],[30835,30832,30831,0],[30835,30831,4345,0],[30834,30832,4342,0],[30573,3989,30572,0],[3977,30607,30608,0],[4093,30607,3976,0],[3976,30607,3981,0],[3981,30607,3977,0],[3977,30608,30609,0],[30608,4113,30609,0],[30609,4113,3967,0],[30611,4071,4019,0],[30611,4019,4116,0],[4116,4020,30611,0],[4019,4071,4017,0],[4128,4127,30612,0],[4138,4268,4137,0],[4137,4268,30612,0],[4137,30612,30613,0],[30613,30612,4267,0],[4100,30614,4267,0],[4269,30613,4273,0],[4273,30613,30615,0],[4273,30615,4284,0],[4273,30616,4269,0],[30618,4026,30617,0],[30618,30617,4031,0],[30618,4031,30619,0],[30619,4031,4032,0],[30620,28802,30621,0],[30621,30627,30622,0],[23504,23503,30622,0],[30622,23503,30620,0],[30622,30620,30621,0],[30620,30624,30623,0],[30623,28801,30620,0],[30620,28801,28802,0],[23503,30624,30620,0],[30623,30624,23501,0],[30623,23501,28800,0],[30625,28802,30626,0],[30625,30626,23480,0],[28805,30626,28804,0],[28804,30626,28802,0],[28802,30625,30621,0],[30625,23480,23505,0],[23505,23480,23506,0],[23505,30627,30625,0],[30625,30627,30621,0],[30622,30627,23504,0],[23504,30627,23505,0],[23509,23514,23516,0],[23516,23518,23509,0],[23523,23520,23469,0],[23470,23520,23521,0],[30628,454,28789,0],[30629,30669,28789,0],[30629,28789,30630,0],[30629,30630,30665,0],[30665,30630,30666,0],[30666,30630,30631,0],[30630,453,30631,0],[4052,30513,28871,0],[28863,28862,30632,0],[30632,28862,28861,0],[30632,353,28863,0],[28863,353,28864,0],[4043,30674,4057,0],[30633,30674,4040,0],[30633,4040,446,0],[446,445,30633,0],[30633,445,4058,0],[30674,30633,4057,0],[4057,30633,4048,0],[4048,30633,4058,0],[23496,30634,30635,0],[30636,28798,30637,0],[30637,28798,23499,0],[23499,23498,30637,0],[30636,30637,23496,0],[23496,30635,30636,0],[30637,23498,23496,0],[30636,23588,30638,0],[30636,30638,28798,0],[23589,30638,23587,0],[23587,30638,23588,0],[30635,30634,23598,0],[23598,30634,23448,0],[30639,28822,28799,0],[30639,28799,30638,0],[30641,30642,23583,0],[30644,30645,30650,0],[30650,30645,30646,0],[30646,30645,30661,0],[30646,30661,30647,0],[30647,30659,30658,0],[30647,30658,30648,0],[30647,30648,30649,0],[30649,30648,32490,0],[30650,30646,30649,0],[30650,30649,30651,0],[48960,30651,23612,0],[48960,23612,30652,0],[48959,23337,23338,0],[48907,23338,30653,0],[30653,23345,3403,0],[3403,23345,3404,0],[3404,23345,3406,0],[30653,3403,48907,0],[48907,48908,23338,0],[23338,48908,48959,0],[23337,48959,23612,0],[23611,30654,23610,0],[23612,30651,30654,0],[30654,32491,30655,0],[30656,30655,32490,0],[30654,30655,23610,0],[23610,30655,30656,0],[23575,30657,23606,0],[23606,30657,23605,0],[30657,30658,23605,0],[23605,30658,30659,0],[30659,30647,30660,0],[23607,30660,23609,0],[30640,23609,30660,0],[30640,30660,30641,0],[30641,30660,30661,0],[30661,30645,30662,0],[30661,30662,30641,0],[30641,30662,30642,0],[48912,30642,30643,0],[30643,30642,30662,0],[30643,30662,30644,0],[30644,30662,30645,0],[30647,30661,30660,0],[23609,23608,23607,0],[30704,30691,30663,0],[30704,30663,30664,0],[30664,30663,30688,0],[30664,30688,30668,0],[30668,30688,30676,0],[30668,30676,30802,0],[30802,30676,30677,0],[30802,30677,30665,0],[30665,30677,30678,0],[30665,30678,30629,0],[30665,30666,30667,0],[30668,30667,448,0],[450,30667,30666,0],[452,30666,30631,0],[30629,30678,30669,0],[30669,30678,30670,0],[30670,30678,30679,0],[30670,30680,30671,0],[30671,4038,30673,0],[30671,30673,30672,0],[30672,30628,30669,0],[30669,30670,30672,0],[454,30628,30672,0],[454,30672,30673,0],[4038,456,30673,0],[30671,30672,30670,0],[4041,4040,30674,0],[30674,4043,4042,0],[30674,4042,4041,0],[30690,4026,30675,0],[30675,4026,30618,0],[30675,30618,30619,0],[30619,30686,30689,0],[30689,30686,30676,0],[30676,30686,30677,0],[30679,30678,30687,0],[4037,30671,30681,0],[4037,30681,4035,0],[30671,30680,30681,0],[4034,30682,30684,0],[30684,30682,30683,0],[30684,30683,4032,0],[4032,4132,30684,0],[4035,30681,30685,0],[30685,30681,4034,0],[30681,30680,4034,0],[30683,30687,30686,0],[30619,30683,30686,0],[30619,4032,30683,0],[4034,30680,30682,0],[30683,30682,30687,0],[30686,30687,30678,0],[30686,30678,30677,0],[30679,30687,30682,0],[30680,30670,30679,0],[30676,30688,30689,0],[30689,30688,30663,0],[30689,30663,30690,0],[30689,30690,30675,0],[30691,30690,30663,0],[4145,4146,30692,0],[30692,4146,4147,0],[4147,4148,30692,0],[30692,4148,4144,0],[30693,4144,4270,0],[30616,4144,4148,0],[4270,4272,4278,0],[4278,4272,4279,0],[4169,30714,30695,0],[30714,30694,30695,0],[4340,4339,30575,0],[30575,4339,30696,0],[49617,30696,30697,0],[30697,30696,3970,0],[4338,30696,4339,0],[30698,30699,30700,0],[30702,30701,30830,0],[30575,30696,30698,0],[30696,49617,30698,0],[30698,49617,30699,0],[30700,30699,30701,0],[4117,4118,4091,0],[4488,4111,4096,0],[4096,4111,4095,0],[30664,448,447,0],[4039,447,4040,0],[447,4039,30664,0],[30664,4039,30704,0],[448,30664,30668,0],[4266,4132,30549,0],[4131,4130,4141,0],[30705,30706,4150,0],[4150,30706,4149,0],[30705,4150,30707,0],[30705,30707,4253,0],[4253,4252,30705,0],[30706,30705,4251,0],[30706,4251,30708,0],[4250,30709,30708,0],[4250,30708,4251,0],[4149,30706,30710,0],[30710,30693,4270,0],[30693,30710,30708,0],[30706,30708,30710,0],[30711,4253,30797,0],[30797,4253,30707,0],[30713,30694,30714,0],[30694,30712,4151,0],[4151,30712,4150,0],[4150,30712,30707,0],[30720,30801,4240,0],[4240,30801,30800,0],[30715,30800,30716,0],[4171,30716,30717,0],[4241,4171,4177,0],[4171,4241,30716,0],[30716,4241,30715,0],[30719,4178,4180,0],[30719,30798,30799,0],[4242,30719,4179,0],[4178,30719,30799,0],[4178,30799,30718,0],[4178,30718,4177,0],[4177,30718,4241,0],[30714,30720,30713,0],[30713,30720,30721,0],[30713,30721,30797,0],[30797,30721,30711,0],[30720,4240,30721,0],[30721,4240,4239,0],[30721,4239,4238,0],[30714,4169,30720,0],[30720,4169,30801,0],[30694,30713,30797,0],[30694,30797,30712,0],[30712,30797,30707,0],[30671,4037,4038,0],[4136,4148,4147,0],[4136,4147,4142,0],[4156,30722,4155,0],[4204,30723,30749,0],[30725,32439,32394,0],[32394,30727,30726,0],[30726,30727,30728,0],[30729,30728,30730,0],[30729,30730,31081,0],[30729,31081,30731,0],[30731,31081,31068,0],[30732,30734,30733,0],[30733,30734,31074,0],[30733,31074,30739,0],[30739,31074,30735,0],[30738,30736,30737,0],[30738,30739,30735,0],[30740,31157,32400,0],[32400,31157,31149,0],[32400,31149,32396,0],[32396,31149,31150,0],[31150,30741,31147,0],[31147,32428,30742,0],[30742,30743,30745,0],[30745,30743,30744,0],[30745,30744,32435,0],[32402,32435,30724,0],[32402,30724,30725,0],[32435,32402,30745,0],[30745,32402,30742,0],[30739,31154,30733,0],[30733,31154,32401,0],[30725,30724,32439,0],[30746,4449,31083,0],[31083,4449,4448,0],[30750,30746,30747,0],[30750,30747,30748,0],[30748,30747,31084,0],[32439,31087,32394,0],[32394,31087,30727,0],[32439,30748,31084,0],[30748,30749,30750,0],[30750,30749,30723,0],[30750,30723,4450,0],[30751,30755,30752,0],[4204,30749,4203,0],[4203,30749,32440,0],[4203,32440,30753,0],[32437,30753,30754,0],[32437,30754,32436,0],[30754,32439,30724,0],[30753,32437,30755,0],[30753,30755,30751,0],[30753,30751,4203,0],[30752,30755,30756,0],[472,30756,30757,0],[30758,30757,32436,0],[30758,32436,32438,0],[30758,32438,30759,0],[30759,30744,31164,0],[30744,30759,32438,0],[30744,32438,32435,0],[4202,4203,30751,0],[470,28777,30760,0],[30760,28777,4235,0],[30761,30765,30762,0],[30762,30765,30763,0],[30763,30765,30764,0],[30764,30765,23455,0],[30766,30768,30767,0],[30767,30768,30769,0],[30770,30769,30771,0],[23364,30775,481,0],[30775,23364,30771,0],[30771,23364,23363,0],[30771,23363,30772,0],[30771,30772,32538,0],[32538,30772,32539,0],[30773,32539,30772,0],[30773,30772,30774,0],[23362,30774,23363,0],[23363,30774,30772,0],[23362,23361,30774,0],[30774,23361,23360,0],[30771,32538,30770,0],[30777,477,30775,0],[30777,30775,30771,0],[30775,477,480,0],[30775,480,30776,0],[30776,480,481,0],[479,480,477,0],[476,30777,30778,0],[30778,30769,30768,0],[30778,30777,30769,0],[30769,30777,30771,0],[30764,23455,23456,0],[23455,30766,30767,0],[30763,23458,30762,0],[30762,23458,4235,0],[23455,30779,30780,0],[23455,30780,30766,0],[30766,30780,30781,0],[30766,30781,30768,0],[30783,30781,30780,0],[30768,30781,30778,0],[30778,30781,476,0],[476,30781,30782,0],[31168,30782,474,0],[30782,30781,30783,0],[30782,30783,30784,0],[30784,30785,474,0],[474,30785,31167,0],[474,30782,30784,0],[30784,28777,30785,0],[30785,28776,31167,0],[23455,30765,30779,0],[30765,30761,30779,0],[28777,30780,30761,0],[28777,30761,30762,0],[30780,30779,30761,0],[23571,23568,23573,0],[23568,30786,23573,0],[23568,30787,30786,0],[23535,23497,23498,0],[30788,23546,30789,0],[30789,30790,30791,0],[30791,23460,30789,0],[23563,30789,30792,0],[23459,30792,23460,0],[23460,30792,30789,0],[23563,30788,30789,0],[23547,23562,30793,0],[30793,30795,30794,0],[30794,23493,30793,0],[30793,23562,30795,0],[30795,23562,23572,0],[23572,23548,30794,0],[23572,30794,30795,0],[23462,463,23461,0],[23461,463,30796,0],[30796,23460,23461,0],[463,464,30796,0],[4257,4194,461,0],[23487,30823,30824,0],[30824,23466,23487,0],[28779,28781,459,0],[459,4261,28779,0],[4249,4246,30799,0],[4249,30799,30798,0],[4249,30798,4245,0],[4245,30798,4244,0],[4244,30798,4242,0],[30718,4239,30715,0],[4239,30718,4246,0],[30718,30799,4246,0],[30693,30708,30709,0],[4170,30800,30801,0],[4170,30801,4169,0],[4170,30717,30800,0],[30800,30717,30716,0],[4260,4262,458,0],[458,4263,4260,0],[30802,30665,30667,0],[30802,30667,30668,0],[4040,447,446,0],[28792,28843,30803,0],[30803,28843,28845,0],[30803,28845,30804,0],[30804,28845,28844,0],[30804,28844,30805,0],[30809,30805,30806,0],[30806,440,30807,0],[30807,440,30808,0],[30807,30808,28791,0],[28791,30808,28807,0],[30806,30807,30809,0],[30804,30809,30810,0],[30804,30810,30803,0],[30805,30809,30804,0],[30807,28791,28808,0],[30807,28808,30810,0],[30807,30810,30809,0],[28807,30808,441,0],[30813,30812,30814,0],[38775,30813,30814,0],[38775,30814,3372,0],[3372,30814,436,0],[3372,435,38775,0],[38775,435,434,0],[434,4056,30815,0],[30815,4056,4055,0],[30815,4055,30816,0],[30816,4055,4053,0],[30817,30816,30516,0],[30817,30516,30819,0],[30819,30516,30811,0],[433,4056,434,0],[434,435,3532,0],[437,436,30814,0],[437,30814,30818,0],[30818,30814,30812,0],[437,30818,3498,0],[3498,30818,438,0],[438,30818,30812,0],[30812,30819,440,0],[440,30819,30811,0],[30817,30815,30816,0],[30819,30812,30813,0],[30819,30813,30817,0],[23565,23459,467,0],[23565,467,469,0],[4235,23458,469,0],[4201,4200,4227,0],[467,23459,30820,0],[466,30820,464,0],[464,30820,30796,0],[30796,30820,23460,0],[23460,30820,23459,0],[30820,466,467,0],[30821,4236,30822,0],[4200,30822,4199,0],[4199,30822,4229,0],[4236,30821,4231,0],[4234,470,30760,0],[4231,30760,4235,0],[30760,4231,4234,0],[30752,4233,30751,0],[30790,30823,30791,0],[30790,30825,30824,0],[30790,30824,30823,0],[23546,30825,30789,0],[30789,30825,30790,0],[30825,23544,30824,0],[30826,4440,4441,0],[30826,4441,32424,0],[4166,30826,32422,0],[4166,32422,30827,0],[4437,4439,4438,0],[4439,4437,30828,0],[4439,30828,4321,0],[4437,4436,30828,0],[30697,3985,3984,0],[3984,49617,30697,0],[30829,3969,30701,0],[30573,30830,3968,0],[3968,30830,3969,0],[30833,30577,30578,0],[30831,30578,4346,0],[30831,4346,4345,0],[30576,30577,30833,0],[30832,30833,30831,0],[30831,30833,30578,0],[30832,30834,30576,0],[30835,4345,30836,0],[30832,30835,4342,0],[4343,4342,30836,0],[30836,4342,30835,0],[30838,4345,30837,0],[30849,30837,4346,0],[4346,30837,4345,0],[4344,30838,30860,0],[30839,30840,30855,0],[30855,30840,30841,0],[30855,30841,4457,0],[4457,30841,30854,0],[30854,30841,30842,0],[30854,30842,30843,0],[30854,30843,30845,0],[30845,30843,30844,0],[30845,30844,31042,0],[31042,30844,30852,0],[30848,30847,30862,0],[30848,30862,30861,0],[30848,30861,30849,0],[30849,30861,30850,0],[30837,30850,30838,0],[30850,30837,30849,0],[30853,30955,30851,0],[30853,4466,30852,0],[30852,4466,31042,0],[30854,4461,4457,0],[4457,4461,4459,0],[30854,30845,4461,0],[30934,30839,30860,0],[30860,30839,4472,0],[4471,4472,30839,0],[4471,30839,30855,0],[30855,30937,4456,0],[30855,4456,30856,0],[30857,4456,30858,0],[30857,30858,30859,0],[30859,4454,4470,0],[4470,4454,4469,0],[4453,4469,32404,0],[32404,4469,4454,0],[4456,30857,30856,0],[30858,4456,4455,0],[30856,4471,30855,0],[30937,30855,28268,0],[28268,30855,4457,0],[4472,4473,30860,0],[30860,30838,30850,0],[4466,28288,31040,0],[31040,28288,30863,0],[30863,4463,1260,0],[1260,4463,4465,0],[28287,30863,30898,0],[30898,30864,30897,0],[30897,1258,1256,0],[1258,30897,1259,0],[30898,30897,28286,0],[28286,30897,30865,0],[30865,1255,30866,0],[28282,28283,30867,0],[28282,30867,30868,0],[30869,30868,30870,0],[30869,30870,30891,0],[30890,30871,30872,0],[30890,30872,32218,0],[32414,30873,1223,0],[1223,30873,30874,0],[31027,30884,30881,0],[31027,30881,30876,0],[31026,30876,1249,0],[31026,1249,1247,0],[1247,31721,30877,0],[30877,31721,31722,0],[31722,1240,31025,0],[31025,1240,30878,0],[31025,30878,31031,0],[30879,31031,30880,0],[30879,30880,1239,0],[30880,31031,28173,0],[28173,31031,30878,0],[28173,30878,1240,0],[1240,31722,1241,0],[30884,32227,30881,0],[30881,32227,32233,0],[30881,32233,30882,0],[30881,30882,30883,0],[1249,30883,1250,0],[30883,1249,30876,0],[30883,30876,30881,0],[1223,30874,28245,0],[28245,30874,32229,0],[30888,30875,32227,0],[30888,32227,30884,0],[30884,31030,30885,0],[30885,31030,31021,0],[30885,31021,30886,0],[1226,30887,30886,0],[30886,30887,30888,0],[30886,30888,30885,0],[30887,28252,30888,0],[30888,28252,1225,0],[30888,1225,30875,0],[30885,30888,30884,0],[30871,30889,30872,0],[30873,32218,30872,0],[30870,30871,30890,0],[30870,30890,30891,0],[30868,30869,28281,0],[30868,28281,28282,0],[28283,28285,30866,0],[30866,28285,30865,0],[1255,1254,30866,0],[30866,1254,1253,0],[30866,1253,1251,0],[30866,1251,28283,0],[1251,31034,30867,0],[30868,30867,30892,0],[30868,30892,30870,0],[30867,31034,30892,0],[1255,30865,30897,0],[1256,1257,1265,0],[1265,1257,30893,0],[1265,30893,30894,0],[30894,1266,1265,0],[1256,1265,1254,0],[1266,30894,1267,0],[1267,30894,1268,0],[1268,30894,30895,0],[30895,30894,4365,0],[30895,4365,4364,0],[4367,4365,30893,0],[4367,30893,1257,0],[4367,1257,4366,0],[30893,4365,30894,0],[31270,4366,1257,0],[4366,31270,4387,0],[4387,31270,30896,0],[1260,30864,30898,0],[1260,30898,30863,0],[1259,30897,1260,0],[1260,30897,30864,0],[30564,30587,30899,0],[30899,30587,30946,0],[30946,30587,30586,0],[30564,30899,30900,0],[30585,30577,30900,0],[30564,30900,30584,0],[30584,30900,30577,0],[30901,30585,4348,0],[4348,4347,30901,0],[4348,30902,4347,0],[30849,4347,30848,0],[30848,4347,30902,0],[4349,30903,30947,0],[30906,30905,30907,0],[30911,30908,3936,0],[30911,3936,30223,0],[30908,30911,30909,0],[30909,30911,30910,0],[30909,30910,30907,0],[30907,30910,30219,0],[30906,30220,30905,0],[30220,30904,30905,0],[30906,30907,30219,0],[30218,30219,30910,0],[30909,30907,30908,0],[30908,30907,30912,0],[30908,30912,30913,0],[30913,30912,3942,0],[30904,3942,30912,0],[30904,30912,30905,0],[30905,30912,30907,0],[30913,3936,30908,0],[30914,30217,30925,0],[30602,30914,30915,0],[30916,30917,30922,0],[30922,30917,30918,0],[30918,30919,31222,0],[31222,30919,31224,0],[31224,30919,30920,0],[31257,31255,31258,0],[31258,31255,30211,0],[31258,30211,30233,0],[30602,30915,30601,0],[30601,30915,30921,0],[30601,30921,31206,0],[31206,30921,30916,0],[30922,30918,31223,0],[31249,31207,49616,0],[31219,30923,1279,0],[30918,31222,31223,0],[30922,31223,31207,0],[30916,30921,30915,0],[30914,30603,30217,0],[30217,30924,30925,0],[30928,30925,30926,0],[30928,30926,30918,0],[30928,30918,30917,0],[30928,30917,30927,0],[30927,30917,30916,0],[30914,30925,30927,0],[30914,30927,30915,0],[30915,30927,30916,0],[30925,30928,30927,0],[30931,30568,30567,0],[30929,30557,3958,0],[30929,3958,30930,0],[4499,30557,4500,0],[4500,30557,3994,0],[3994,3995,4500,0],[30557,4499,3958,0],[30930,30931,3959,0],[30860,30850,30932,0],[30932,30934,30860,0],[30850,30861,30932,0],[30932,30861,30933,0],[30933,30861,30862,0],[30933,30862,30949,0],[30953,30949,30847,0],[30934,30932,30935,0],[30843,30842,30933,0],[30843,30933,30950,0],[30843,30950,30844,0],[30844,30950,30852,0],[30842,30841,30935,0],[30935,30936,30934,0],[30934,30936,30839,0],[30839,30936,30840,0],[30936,30935,30840,0],[30935,30932,30842,0],[30842,30932,30933,0],[28267,28268,4457,0],[28267,4457,4458,0],[4458,4457,4459,0],[28265,30944,30939,0],[28263,30939,31041,0],[28263,31041,30943,0],[30943,30942,30940,0],[30940,30942,28284,0],[30940,28282,30941,0],[28284,28282,30940,0],[28284,30942,28286,0],[28286,30942,30898,0],[30898,30942,28287,0],[30942,30943,28287,0],[28263,30943,28262,0],[28262,30943,30940,0],[28262,30940,28261,0],[30940,30941,28261,0],[4458,4460,28266,0],[28266,4460,30938,0],[30938,4460,31039,0],[30938,31039,28265,0],[28265,31039,30944,0],[30939,30944,30945,0],[30939,30945,31041,0],[28268,28269,30937,0],[30937,28269,4455,0],[4327,4435,4407,0],[30946,30585,30900,0],[30946,30900,30899,0],[30947,30903,30902,0],[30902,4348,30947,0],[30954,30948,30952,0],[4405,30952,4355,0],[4355,30952,30948,0],[30949,30953,30846,0],[30949,30846,30853,0],[30949,30853,30950,0],[30950,30853,30852,0],[30950,30933,30949,0],[30955,30853,30846,0],[30955,30846,30951,0],[30948,30954,30903,0],[30954,30952,30953,0],[30953,30952,30951,0],[30953,30847,30954,0],[30954,30847,30903,0],[30955,4464,30851,0],[30956,4464,30951,0],[30956,30951,30952,0],[30956,30952,4405,0],[30951,4464,30955,0],[4465,1264,1263,0],[1263,1264,1262,0],[4465,1263,30957,0],[31269,31196,4358,0],[4359,4380,4370,0],[4372,4380,31198,0],[30958,778,30959,0],[30959,30964,28391,0],[28391,30964,30965,0],[28391,30958,30959,0],[30960,30958,30961,0],[30963,30961,30962,0],[30963,30962,781,0],[779,30961,30963,0],[30961,28392,30962,0],[30962,28392,782,0],[30958,30960,778,0],[777,776,30964,0],[30964,776,775,0],[30964,775,30965,0],[30964,30959,777,0],[777,30959,778,0],[31198,4380,4359,0],[28265,30939,30966,0],[30966,30967,30970,0],[30970,30967,30968,0],[30969,31044,28270,0],[28274,28275,28273,0],[28273,28275,30968,0],[28273,30968,28272,0],[28272,30968,30967,0],[28272,30967,28264,0],[28264,30967,28263,0],[28263,30967,30939,0],[28275,30970,30968,0],[28275,30969,30970,0],[30966,30970,31043,0],[30966,31043,30938,0],[30989,28274,30971,0],[30985,30972,30973,0],[30985,30973,28279,0],[30974,30973,30976,0],[30974,30976,30975,0],[30971,28274,30977,0],[30971,30977,30976,0],[30976,30977,30978,0],[30976,30978,30975,0],[30974,30975,28259,0],[30971,30976,30972,0],[30972,30976,30973,0],[30977,28273,32226,0],[30989,30971,30987,0],[30989,30987,30996,0],[30996,30987,30988,0],[30996,30988,30995,0],[31000,30981,1139,0],[31000,1139,30982,0],[31062,30983,1137,0],[31062,1137,31063,0],[1139,30981,30984,0],[28279,30984,30985,0],[30972,30985,30986,0],[30987,30971,30972,0],[30987,30972,30986,0],[28279,28257,30984,0],[30984,28257,1139,0],[30984,30981,30985,0],[30985,30981,30980,0],[30985,30980,30986,0],[30986,30988,30987,0],[30980,30979,30986,0],[30986,30979,30995,0],[30986,30995,30988,0],[31046,30990,30997,0],[31050,30991,30992,0],[31055,31058,30993,0],[30999,30993,30998,0],[30994,30998,30991,0],[30995,30994,30996,0],[30996,30994,30990,0],[30990,30994,30997,0],[30997,30994,30991,0],[30993,31058,30992,0],[30993,30992,30998,0],[30998,30992,30991,0],[30995,30979,30994,0],[30994,30979,30998,0],[30999,30980,30981,0],[30999,30981,31000,0],[31002,31055,30993,0],[31001,31002,30999,0],[31001,30999,31000,0],[30999,30998,30980,0],[30980,30998,30979,0],[31000,30982,31001,0],[31001,30982,30983,0],[31001,30983,31062,0],[864,31008,871,0],[31005,31004,31011,0],[31015,31006,31003,0],[31015,31004,31006,0],[31006,31004,31005,0],[31005,31007,31006,0],[31006,31007,31018,0],[31018,31007,31009,0],[31018,31009,870,0],[31018,870,31008,0],[31008,870,871,0],[31007,852,28332,0],[28332,28333,31009,0],[31009,28333,31010,0],[870,31009,31010,0],[31007,28332,31009,0],[31005,31011,854,0],[854,31011,31012,0],[854,31012,28342,0],[31011,31004,31012,0],[28340,31012,31013,0],[31014,31016,31015,0],[31004,31015,31016,0],[31004,31016,31012,0],[31016,31017,31012,0],[863,31015,31003,0],[28340,28342,31012,0],[31018,31008,31003,0],[31019,28187,28250,0],[1226,30886,31020,0],[31020,31022,1227,0],[1227,31022,1230,0],[31020,1227,1226,0],[31020,30886,31021,0],[31020,31021,31022,0],[31022,31021,1231,0],[28166,31023,31029,0],[28166,31029,31024,0],[31722,31025,30877,0],[1247,30877,31024,0],[1247,31024,31026,0],[31029,31023,1231,0],[31029,31021,31030,0],[31029,31030,31028,0],[31028,31030,31027,0],[31027,31030,30884,0],[31029,31028,31024,0],[30876,31026,31027,0],[31027,31026,31028,0],[31028,31026,31024,0],[30877,31025,28165,0],[30877,28165,31024,0],[31024,28165,28166,0],[1231,31021,31029,0],[1229,1230,28194,0],[1229,28194,28193,0],[1247,1248,28153,0],[4361,28159,28155,0],[28154,28155,31032,0],[28154,31032,28153,0],[31032,28155,1246,0],[4361,1269,28159,0],[28159,1269,31266,0],[31033,31036,1252,0],[1252,31036,31037,0],[1252,31037,31034,0],[31034,31035,30892,0],[30883,31038,1250,0],[31038,31036,31033,0],[31037,31035,31034,0],[31036,31038,30882,0],[30883,30882,31038,0],[31039,4460,31042,0],[31039,31042,30944,0],[30945,30944,31040,0],[31040,30944,4466,0],[30945,31040,31041,0],[31041,31040,28287,0],[31041,28287,30943,0],[30863,28287,31040,0],[31042,4466,30944,0],[30969,31043,30970,0],[31044,30969,28275,0],[28270,31044,31045,0],[28270,31045,28276,0],[28270,28276,28269,0],[31047,28276,31046,0],[31046,31048,32412,0],[32412,31048,31089,0],[32412,31089,31090,0],[31049,31048,31050,0],[31049,31050,31051,0],[31051,31050,30992,0],[31051,30992,31058,0],[31050,31048,30991,0],[30991,31048,30997,0],[30997,31048,31046,0],[30990,31046,28276,0],[31089,31048,31049,0],[31049,31051,31052,0],[31052,31051,31053,0],[31054,31059,31075,0],[31075,31059,32434,0],[31059,31055,30736,0],[30736,31055,31056,0],[30736,31056,1135,0],[1135,31056,31057,0],[31002,31057,31056,0],[31002,31056,31055,0],[31055,31059,31058,0],[31058,31059,31060,0],[31061,31053,31060,0],[31060,31053,31051,0],[31054,31060,31059,0],[31058,31060,31051,0],[31002,31001,31057,0],[31057,31001,31062,0],[1135,31057,31063,0],[31063,31057,31062,0],[30737,30736,1135,0],[30736,32434,31059,0],[31089,31049,31052,0],[31089,31052,31064,0],[31064,31070,31076,0],[31064,31076,31066,0],[31066,31076,31065,0],[31065,32403,31066,0],[31066,32403,32411,0],[31068,31067,31069,0],[32392,32425,31070,0],[31071,31053,31061,0],[31088,31072,30734,0],[30732,30731,30734,0],[30734,30731,31088,0],[31073,31054,31075,0],[31054,31073,31061,0],[31061,31073,31072,0],[31072,31073,30734,0],[30734,31073,31074,0],[31073,31075,31074,0],[31074,31075,30735,0],[31053,31071,31052,0],[31052,31071,31064,0],[31064,31071,31070,0],[31070,32425,31076,0],[32425,32392,31069,0],[31077,31081,30730,0],[31077,30730,31082,0],[31077,31082,31079,0],[31077,31079,31078,0],[31078,31079,4448,0],[31083,30747,30746,0],[4448,4449,4447,0],[4448,4447,31078,0],[31078,4447,4446,0],[31078,4446,31077,0],[31077,31080,31081,0],[31081,31080,31068,0],[31068,31080,31067,0],[31083,31085,31086,0],[31083,31086,31084,0],[30747,31083,31084,0],[31085,31079,31082,0],[4448,31079,31083,0],[31083,31079,31085,0],[31087,32439,31084,0],[31084,31086,31087,0],[30727,31087,31085,0],[31086,31085,31087,0],[30727,31085,30728,0],[31085,31082,30728,0],[30728,31082,30730,0],[31068,31069,30731,0],[30731,31069,31088,0],[31088,32391,31072,0],[31072,32391,31061,0],[31069,32392,31088,0],[32411,31089,31066,0],[31066,31089,31064,0],[31089,32411,31090,0],[30738,30737,31091,0],[31092,31091,1158,0],[31093,1131,1108,0],[31095,31093,31094,0],[31095,31094,31106,0],[31095,31106,31107,0],[31096,31107,31097,0],[31096,31097,31098,0],[31099,31097,31111,0],[31099,31111,31100,0],[32416,32420,31103,0],[31143,31101,31145,0],[31101,31103,31108,0],[31103,31104,31105,0],[31105,31104,31111,0],[31105,31111,31106,0],[31094,31102,31109,0],[31094,31093,31102,0],[31102,31093,1093,0],[31103,31105,31109,0],[31109,31105,31094,0],[31094,31105,31106,0],[31103,32420,31104,0],[1094,1096,31108,0],[31108,1096,31101,0],[31108,31110,1094,0],[31102,31110,31109,0],[31103,31109,31108,0],[31108,31109,31110,0],[31099,31098,31097,0],[31111,31097,31106,0],[31107,31106,31097,0],[1131,31093,31160,0],[31113,31114,31115,0],[31115,31114,32432,0],[28735,32431,28733,0],[28735,1127,32431,0],[31115,32432,1115,0],[31115,1115,1099,0],[1099,31116,31115,0],[31116,31112,31115,0],[31115,31112,31113,0],[31112,1100,31113,0],[31113,1100,32429,0],[32429,1100,31117,0],[31118,31117,1114,0],[31118,1114,31121,0],[31121,1114,31119,0],[31119,1088,31120,0],[31121,31120,32237,0],[31121,32237,31122,0],[31124,32252,28727,0],[31124,28727,31127,0],[31125,28731,31129,0],[31129,28731,32430,0],[32430,28731,32433,0],[28733,32433,28731,0],[28730,28731,31125,0],[28730,31125,28729,0],[28729,31125,31127,0],[31124,31127,31123,0],[31127,31126,31123,0],[31123,31126,31122,0],[31122,31118,31121,0],[31120,31121,31119,0],[1089,1088,1090,0],[1088,31119,1090,0],[1090,31119,1103,0],[1114,31117,1105,0],[31128,1105,31117,0],[31117,31118,32429,0],[32429,31126,31129,0],[31125,31129,31127,0],[31127,31129,31126,0],[32429,31118,31126,0],[31126,31118,31122,0],[31176,1126,33355,0],[31176,33355,31175,0],[31175,33355,31130,0],[31175,31130,31174,0],[31174,31130,31131,0],[31131,31133,31132,0],[31132,33352,31134,0],[31134,33352,31135,0],[33360,31136,31173,0],[31136,478,31137,0],[30758,30759,31140,0],[32416,31143,32417,0],[31144,31143,31145,0],[31101,31143,31103,0],[31103,31143,32416,0],[31100,31165,31099,0],[31099,31166,31098,0],[31098,31166,31146,0],[30743,30742,32428,0],[31148,30741,31149,0],[31096,31098,32427,0],[32427,31098,31146,0],[32428,31146,30743,0],[30741,31150,31149,0],[31152,31156,31092,0],[31152,31092,1134,0],[30740,31154,31155,0],[31156,31153,31092,0],[31153,31156,31155,0],[31153,31155,31154,0],[30740,31155,31157,0],[31151,31157,31156,0],[31156,31157,31155,0],[31151,31149,31157,0],[31154,30739,31153,0],[31149,31151,31148,0],[31148,31151,31161,0],[31158,31161,31163,0],[31158,31163,32427,0],[31096,32427,31159,0],[31096,31159,31107,0],[31107,31159,31095,0],[31093,31095,31160,0],[31162,31160,31161,0],[1131,31160,31162,0],[1130,31162,31152,0],[1130,31152,1134,0],[31156,31152,31151,0],[31095,31159,31160,0],[31160,31159,31163,0],[31160,31163,31161,0],[32427,31163,31159,0],[30743,31146,31164,0],[31164,31146,31166,0],[31166,31099,31165,0],[31165,31100,32420,0],[32420,31142,31165,0],[31165,31141,31166,0],[31166,31141,31164,0],[31164,30744,30743,0],[31165,31142,31172,0],[31140,30759,31164,0],[31140,31164,31141,0],[31172,31141,31165,0],[30758,472,30757,0],[30758,32441,472,0],[472,32441,28776,0],[28776,32441,31167,0],[473,31180,31168,0],[475,31168,477,0],[31168,474,473,0],[32441,31139,31167,0],[31167,31139,473,0],[31136,31137,31169,0],[31136,31169,31173,0],[31173,31169,31170,0],[31170,31171,32418,0],[31170,32418,31173,0],[31170,32443,31171,0],[31171,32442,31172,0],[31131,31132,31174,0],[31175,31179,1097,0],[1097,31179,31144,0],[1097,31144,31145,0],[1097,31176,31175,0],[1126,31176,1097,0],[1126,1097,1098,0],[31179,31178,31144,0],[31144,31178,31143,0],[31143,31178,32417,0],[32417,31177,32419,0],[32417,31178,31177,0],[31177,31178,31179,0],[31177,31179,31132,0],[31177,31132,31134,0],[31132,31179,31174,0],[31177,31134,31135,0],[31177,31135,33360,0],[480,479,31181,0],[31181,479,478,0],[31181,478,31136,0],[478,31168,31180,0],[477,31168,478,0],[31137,31180,31169,0],[31169,31180,31138,0],[31138,31180,473,0],[473,31139,31138,0],[31180,31137,478,0],[31136,33360,31181,0],[28272,28264,28262,0],[28272,28262,28261,0],[28257,31182,31183,0],[31183,31182,32407,0],[32407,31182,32406,0],[31185,28213,31184,0],[31186,31188,31187,0],[31188,1215,1214,0],[31190,1215,1216,0],[31189,31190,31191,0],[1211,31191,1216,0],[1216,31191,31190,0],[30903,30847,30902,0],[31192,31212,31193,0],[31193,4393,4377,0],[4377,4393,4392,0],[31193,4377,31192,0],[4376,4392,31197,0],[4394,1278,4397,0],[4394,4397,4396,0],[31194,28086,1286,0],[1286,28054,31194,0],[31194,28054,31195,0],[31195,28040,28051,0],[31195,28051,31194,0],[28051,28053,31194,0],[4388,4385,4382,0],[4382,4378,4384,0],[4384,4378,31196,0],[4358,31196,4378,0],[4358,4376,4359,0],[4376,4358,4377,0],[4376,31197,4359,0],[4359,31197,31198,0],[31199,4398,30591,0],[31199,30591,30593,0],[4400,4398,31199,0],[31200,30596,30598,0],[30597,30598,30596,0],[4401,4400,31200,0],[4401,31200,31201,0],[31209,31202,30599,0],[31209,30599,30600,0],[30599,31202,30598,0],[30598,31202,31201,0],[30598,31201,31200,0],[31192,31203,31211,0],[31211,31203,31204,0],[31211,31204,31205,0],[31205,31204,31206,0],[31206,30916,31207,0],[31207,30916,30922,0],[31208,31249,49616,0],[31208,49616,30923,0],[31207,31249,31206,0],[31206,31249,31205,0],[31209,30600,30601,0],[31209,30601,31204,0],[31204,30601,31206,0],[31209,31210,31202,0],[31202,31210,31201,0],[4401,31201,4402,0],[4402,31201,31210,0],[31209,31204,31210,0],[31204,31203,31210,0],[31192,31211,31214,0],[31192,31214,31212,0],[31212,31213,4393,0],[4395,31213,31212,0],[4395,31212,31218,0],[31218,31212,31214,0],[31218,31214,31217,0],[31217,31214,31215,0],[31208,31215,31216,0],[31208,31216,31249,0],[31215,31208,31217,0],[31218,31217,30923,0],[31218,30923,31219,0],[30923,31217,31208,0],[31215,31214,31211,0],[31211,31205,31215,0],[31215,31205,31216,0],[4393,31193,31212,0],[31280,31223,31221,0],[31224,31221,31222,0],[49616,31207,31220,0],[31222,31221,31223,0],[31223,31280,31220,0],[31239,31224,31225,0],[31239,31225,31238,0],[31238,31225,31250,0],[31238,31250,31251,0],[31238,31251,31226,0],[31288,31227,31228,0],[31221,31224,31239,0],[31239,31230,31229,0],[31231,31230,31237,0],[31243,31241,31232,0],[31232,31236,31245,0],[31245,31236,31233,0],[30280,31234,31235,0],[31241,31237,31236,0],[31241,31236,31232,0],[31236,31237,31233,0],[31233,31237,31234,0],[31234,31237,31230,0],[31226,31279,31238,0],[31238,31279,31230,0],[31230,31279,31234,0],[31234,31279,31235,0],[31230,31239,31238,0],[31262,31243,28096,0],[28096,31243,31244,0],[31244,31232,31245,0],[30280,31233,31234,0],[31232,31244,31243,0],[31243,31242,31241,0],[31231,31241,31247,0],[31246,31260,31220,0],[31247,31246,31220,0],[31231,31247,31240,0],[31240,31247,31280,0],[31241,31248,31247,0],[31231,31237,31241,0],[31248,31241,31242,0],[31242,31243,31262,0],[31280,31221,31240,0],[31240,31221,31229,0],[31229,31221,31239,0],[31240,31229,31231,0],[31231,31229,31230,0],[30920,31250,31225,0],[31225,31224,30920,0],[31257,31250,31252,0],[31281,30216,30231,0],[30918,31253,30919,0],[30918,30926,31253,0],[31253,30926,31254,0],[31254,30216,31253,0],[31281,30231,31252,0],[31257,31252,31255,0],[31250,30920,31252,0],[31252,30920,31281,0],[31255,31252,30232,0],[30211,31255,30232,0],[30204,31256,30209,0],[30204,30240,31256,0],[31251,31250,31257,0],[31257,31258,31251,0],[31258,31259,31227,0],[31227,31259,31228,0],[31258,30233,31259,0],[31228,31259,30272,0],[30272,31259,30271,0],[30271,31259,30270,0],[30270,31259,30233,0],[31308,30203,30199,0],[30923,31260,31273,0],[30923,31273,1279,0],[31226,31251,31258,0],[31226,31258,31227,0],[31228,30278,31288,0],[31235,31279,31261,0],[31262,31263,28091,0],[28095,31244,31245,0],[28095,31245,30310,0],[31262,28096,31263,0],[31246,31264,31260,0],[31262,31264,31242,0],[31242,31264,31246,0],[31246,31247,31248,0],[31265,1270,31268,0],[31265,31268,31267,0],[31267,31268,28045,0],[1270,31265,1269,0],[31266,1269,49809,0],[780,49809,28046,0],[31268,1270,4371,0],[31268,28061,28045,0],[31269,4369,4384,0],[31269,4384,31196,0],[4360,31269,4358,0],[30896,31270,1259,0],[31219,31271,31218,0],[31218,31271,4395,0],[1280,31272,28149,0],[28149,31272,28091,0],[28091,31272,31262,0],[31264,31262,31272,0],[31264,31272,1280,0],[31264,1280,31273,0],[31273,1280,1279,0],[31273,31260,31264,0],[31274,30290,30291,0],[31274,30291,30310,0],[28093,28094,28098,0],[28098,28094,31276,0],[28098,31276,31275,0],[28099,28098,31275,0],[31275,31276,28100,0],[28100,31276,31277,0],[31275,28100,28099,0],[28100,31277,28101,0],[30282,30310,30291,0],[30268,5859,31278,0],[5858,31278,5859,0],[31279,31226,31227,0],[31280,31247,31220,0],[31220,31207,31223,0],[30919,31253,31281,0],[30920,30919,31281,0],[31282,30215,31283,0],[31283,30224,3936,0],[31283,3936,3937,0],[31283,3937,31282,0],[31282,3937,3934,0],[31282,31284,30209,0],[30228,31283,30215,0],[30226,30227,30911,0],[4508,3884,31285,0],[31285,31286,31287,0],[31285,31287,4510,0],[4510,31287,4513,0],[4513,31287,30206,0],[31279,31227,31288,0],[31261,31288,30278,0],[31261,31279,31288,0],[30252,31290,30246,0],[30246,31290,31289,0],[31291,31289,31290,0],[4534,31291,31290,0],[5851,30245,5850,0],[30245,5851,5852,0],[30245,31292,5850,0],[5850,31292,31590,0],[5850,31590,31293,0],[5850,31293,5883,0],[5883,31293,5885,0],[5885,31293,31588,0],[5885,31588,5886,0],[31294,31289,31589,0],[31589,31289,31295,0],[31295,31289,4540,0],[31289,31294,30246,0],[31296,5906,31297,0],[31296,31297,49600,0],[49600,31297,31298,0],[31298,49608,31299,0],[49604,49607,31305,0],[49604,31305,31300,0],[28127,5855,31300,0],[28127,31300,31301,0],[31301,31305,31302,0],[5907,31303,31297,0],[31303,5907,31304,0],[31306,31605,31302,0],[28124,31301,31302,0],[31605,28125,31302,0],[31302,28125,28124,0],[31301,31300,31305,0],[31302,31305,31306,0],[31306,31307,31303,0],[31303,31307,31297,0],[31305,49607,31306,0],[31306,49607,49608,0],[31306,49608,31307,0],[31307,49608,31298,0],[31307,31298,31297,0],[30926,30924,31254,0],[30926,30925,30924,0],[4712,3890,31309,0],[31309,248,247,0],[247,4711,31309,0],[4712,31309,4579,0],[4579,31309,4711,0],[4576,4714,4715,0],[4743,30382,4585,0],[4584,4671,30190,0],[30190,4671,4670,0],[29219,4558,4550,0],[29218,29219,4550,0],[4551,4552,29218,0],[29218,4552,29972,0],[29976,29972,4552,0],[29977,29976,29982,0],[29982,29979,29978,0],[29982,29978,29977,0],[3875,3874,6153,0],[3876,6153,6154,0],[3875,6153,30376,0],[30376,6153,3876,0],[6162,6161,31320,0],[31320,6161,6170,0],[31310,6170,5653,0],[5653,6170,6171,0],[5653,5654,31321,0],[31321,5654,31311,0],[31321,31311,31315,0],[31321,31315,31312,0],[31312,31315,4525,0],[4526,4525,31314,0],[31313,31314,31316,0],[31314,31313,6145,0],[4525,31315,31316,0],[4525,31316,31314,0],[31311,31317,31315,0],[31315,31317,31316,0],[5653,31321,31318,0],[31318,31310,5653,0],[31319,31318,4524,0],[31319,6167,6163,0],[31319,6163,31320,0],[31320,6163,6162,0],[31320,6170,31310,0],[31320,31310,31319,0],[4524,31318,31321,0],[4524,31321,31312,0],[6144,6142,6145,0],[6145,6142,6140,0],[5676,6128,31322,0],[5682,31322,31324,0],[31322,5682,5676,0],[5676,5682,6127,0],[6127,5682,6126,0],[31322,6130,31323,0],[31323,6130,1706,0],[1706,31449,5684,0],[5684,31449,31538,0],[5684,5828,1706,0],[1706,5828,31323,0],[31323,31324,31322,0],[4599,5644,31325,0],[6151,3872,31325,0],[31325,3872,4599,0],[4616,3863,4615,0],[4615,3863,3865,0],[1702,29893,31326,0],[31326,29893,29892,0],[31326,31366,1702,0],[6057,6063,31327,0],[31327,31334,31328,0],[31330,31328,31335,0],[31330,31335,6053,0],[6053,31329,6054,0],[6053,6043,31330,0],[31328,31330,31333,0],[6033,6045,6046,0],[6033,6046,31331,0],[6033,31331,6032,0],[6045,6033,31332,0],[31333,31370,31328,0],[31333,6045,31332,0],[31332,6059,31333,0],[31333,6059,31370,0],[31370,6059,31369,0],[6063,6056,31327,0],[31327,6056,31334,0],[31334,6056,31329,0],[31336,1665,29916,0],[6067,31336,6068,0],[31336,29916,6068,0],[6068,29916,31337,0],[6068,31337,31339,0],[31339,31337,31338,0],[6106,31339,31338,0],[6106,31455,6107,0],[6107,31455,6087,0],[6107,6087,6105,0],[6107,6086,6071,0],[6071,6086,6072,0],[6086,6073,6072,0],[6072,6073,6822,0],[31338,31337,31340,0],[31341,31340,6216,0],[6216,31340,29915,0],[29915,31340,31337,0],[31338,31340,31455,0],[31338,31455,6106,0],[31342,1660,29908,0],[31342,29908,31343,0],[29908,29909,31343,0],[31343,29914,31342,0],[31348,31347,1707,0],[31348,31344,31346,0],[31346,31448,1705,0],[1705,31349,31346,0],[31346,31349,31347,0],[31347,31348,31346,0],[1707,5673,31350,0],[31350,5673,1710,0],[31350,1710,1686,0],[1686,1709,31345,0],[1686,31345,31344,0],[1686,31344,31350,0],[31350,31344,1707,0],[1707,31344,31348,0],[5668,29253,31351,0],[31352,31351,29224,0],[31357,31353,6131,0],[6136,31355,31354,0],[31354,31355,5675,0],[5675,31355,31356,0],[31356,31358,31364,0],[31364,31357,5674,0],[5674,31357,1711,0],[1711,31357,6131,0],[31357,31364,31358,0],[31357,31358,31353,0],[31355,31358,31356,0],[31358,31355,6146,0],[6146,31355,6136,0],[31359,31354,5675,0],[31359,6137,31354,0],[6137,31359,6143,0],[31317,6134,31313,0],[31313,31316,31317,0],[5875,5896,31360,0],[5875,31360,5873,0],[5873,31360,5895,0],[5893,5895,5821,0],[5821,5895,31361,0],[5877,31361,5896,0],[5707,5706,5799,0],[5799,5706,5817,0],[5799,5790,5707,0],[31450,4527,31362,0],[31314,6145,4526,0],[4526,6145,31362,0],[31450,31362,6140,0],[31364,31363,31356,0],[5675,31356,31363,0],[1690,31365,49435,0],[1690,49435,31367,0],[1690,31367,31366,0],[31368,31367,49435,0],[29224,31368,31352,0],[29224,29246,31368,0],[31368,1692,31367,0],[1692,31368,29246,0],[31366,1691,1690,0],[31365,1690,1712,0],[1712,1690,1688,0],[6061,6057,31369,0],[31369,6057,31327,0],[31369,31327,31370,0],[31370,31327,31328,0],[6045,31333,6044,0],[31330,6044,31333,0],[6046,6047,31568,0],[6046,31568,31331,0],[5689,31371,6038,0],[31372,6116,6118,0],[31372,6118,6120,0],[6120,6121,31372,0],[31373,1385,49390,0],[49390,1383,1382,0],[31380,1450,31377,0],[31377,1450,31378,0],[31377,31378,49402,0],[49402,31378,27956,0],[49402,27956,27958,0],[27956,31378,31379,0],[31377,49402,31380,0],[1387,31373,31374,0],[1387,31374,49398,0],[31385,1450,31381,0],[1471,1470,1481,0],[1470,1469,31383,0],[1470,31383,31382,0],[31382,31383,31384,0],[31385,31386,1468,0],[31385,1468,1451,0],[31385,31381,31386,0],[31386,31381,31384,0],[31383,1467,31386,0],[1468,31388,31387,0],[49403,1466,1458,0],[1466,49403,31388,0],[31381,31380,31384,0],[27929,31388,31389,0],[27929,31389,1455,0],[31388,27929,31387,0],[1457,31390,36409,0],[36409,31390,27805,0],[27805,31390,27798,0],[27797,27796,27798,0],[1456,31389,36410,0],[36410,31389,1457,0],[36410,1457,36403,0],[36403,1457,36409,0],[31420,27915,31391,0],[31391,27915,31392,0],[31392,27915,31393,0],[31392,31393,31399,0],[31402,31394,31395,0],[31395,31394,27907,0],[27907,31394,31400,0],[31400,31397,31396,0],[31400,31396,27905,0],[31396,31397,31398,0],[31397,27912,31398,0],[31398,27912,27909,0],[27908,31398,27909,0],[31398,27908,31396,0],[31396,27908,27904,0],[31396,27904,27905,0],[31402,31399,31393,0],[31393,31401,31394,0],[31402,31393,31394,0],[31393,27914,31401,0],[27914,27913,31401,0],[31401,27913,27912,0],[27912,31397,31394,0],[27912,31394,31401,0],[27905,31424,31400,0],[31400,31424,27907,0],[31403,31399,31402,0],[31403,31405,31404,0],[31404,36215,31392,0],[31392,31399,31403,0],[31392,31403,31404,0],[31418,31405,31406,0],[31406,31407,31408,0],[31411,31410,31413,0],[27190,31412,27155,0],[27190,27191,31412,0],[31412,27191,31413,0],[31412,31413,31414,0],[31412,31414,27157,0],[27157,31414,27158,0],[31414,31410,31415,0],[31415,31410,36205,0],[36205,31409,31415,0],[27158,31415,31416,0],[31416,31415,31409,0],[31416,31409,31408,0],[31416,31408,31407,0],[31416,31407,31417,0],[31417,31407,31425,0],[31425,31407,31406,0],[31417,31425,27175,0],[27158,31416,27169,0],[27170,31417,27172,0],[27172,31417,27173,0],[27170,27172,27171,0],[27173,31417,27174,0],[27174,31417,27175,0],[27169,31417,27170,0],[27169,31416,31417,0],[31415,27158,31414,0],[31405,31418,31404,0],[31404,36201,31419,0],[31419,36201,6893,0],[31419,6893,6892,0],[6892,6891,31420,0],[36215,31404,31419,0],[31405,31403,31395,0],[31395,31403,31402,0],[31426,31427,31421,0],[31421,31427,31422,0],[31422,36250,20734,0],[31421,27179,31423,0],[31423,27179,27178,0],[27179,31421,31422,0],[27905,31426,31421,0],[27178,27177,31423,0],[31423,27177,31424,0],[31424,27176,27906,0],[31424,27177,27176,0],[27906,27176,27175,0],[27906,27175,31425,0],[31425,31406,31405,0],[31425,31405,27906,0],[36388,31439,31426,0],[31426,31435,31427,0],[31427,31435,36251,0],[36251,31435,31436,0],[36251,31436,31428,0],[31428,20737,31429,0],[31429,20737,20736,0],[20730,31430,31442,0],[31431,31432,1493,0],[20740,31430,20730,0],[20730,31442,20731,0],[20731,31442,31431,0],[20780,31434,36514,0],[36514,31434,1493,0],[36514,1493,1494,0],[20731,31431,31433,0],[31433,31431,31434,0],[20731,31433,36591,0],[31422,31427,36250,0],[31426,31439,31435,0],[31445,31436,36387,0],[31447,1491,36491,0],[1491,31447,31437,0],[27901,36387,31438,0],[27901,31438,27902,0],[27902,31438,31439,0],[27902,31439,36388,0],[27902,36388,27903,0],[31437,27900,27899,0],[31437,27899,1489,0],[1488,31440,27898,0],[31438,31435,31439,0],[31436,31445,31428,0],[31428,31445,31441,0],[31441,31446,31430,0],[31430,31446,31442,0],[31443,31442,36252,0],[36252,31442,31444,0],[36491,31444,31447,0],[31446,31441,31445,0],[31446,31444,31442,0],[31444,31446,31447,0],[31447,31446,31445,0],[31428,31441,20737,0],[20737,31441,20740,0],[20740,31441,31430,0],[31431,31442,31443,0],[31431,31443,31432,0],[31346,31344,31532,0],[31532,31533,31448,0],[31448,31533,1704,0],[31448,1704,31449,0],[31448,31449,1705,0],[31532,31448,31346,0],[4529,5880,5870,0],[5870,5871,4530,0],[5870,4530,4529,0],[6187,6186,31451,0],[31451,49975,31452,0],[31452,1674,31451,0],[6187,31451,1677,0],[1677,31451,1676,0],[29883,31452,29885,0],[6186,31454,49975,0],[31453,1668,31452,0],[31452,1668,29885,0],[1663,1664,6185,0],[6087,31455,6214,0],[6214,31455,31341,0],[31341,31455,31340,0],[31456,1593,31525,0],[1593,31456,1594,0],[1594,31456,1595,0],[1597,1595,31456,0],[1597,31456,31457,0],[31458,31457,31526,0],[31458,31526,31461,0],[31461,31526,1591,0],[1591,31526,1592,0],[31457,31458,31459,0],[31459,31458,31461,0],[1591,31462,31461,0],[31459,31461,1599,0],[1599,31461,31462,0],[1599,31462,1602,0],[1602,31462,36584,0],[1602,36584,31463,0],[31463,36584,36585,0],[36585,6864,31469,0],[31469,6864,31468,0],[31465,31464,31467,0],[36505,31474,31468,0],[31474,36505,31464,0],[31465,31467,31466,0],[31467,31464,36505,0],[1602,31463,31469,0],[31469,31473,31470,0],[31470,31473,31475,0],[31470,31475,31500,0],[31470,31500,31471,0],[31471,31499,31494,0],[31471,31472,1600,0],[1600,31472,1374,0],[31494,31472,31471,0],[31468,31474,31473,0],[31468,31473,31469,0],[31473,31474,31475,0],[31500,31464,31465,0],[31497,36509,31476,0],[31476,31477,31478,0],[31479,31519,36508,0],[36508,1490,31481,0],[31481,1490,31480,0],[31480,1490,1489,0],[31481,31480,31482,0],[31523,31502,31484,0],[31523,31484,31524,0],[31485,31503,31504,0],[31485,31504,31486,0],[31485,31486,31487,0],[31522,31488,31489,0],[31522,31489,31490,0],[31490,31489,31491,0],[31490,31491,31492,0],[31493,36392,31499,0],[31499,36392,31494,0],[31583,36393,36392,0],[31583,36392,31493,0],[31493,31492,31491,0],[31493,31491,31583,0],[31495,36583,31496,0],[31476,31478,31496,0],[31465,31497,31498,0],[31465,31498,31499,0],[31465,31499,31500,0],[31495,31481,36583,0],[36583,31481,31483,0],[1489,31501,31480,0],[31480,31501,31482,0],[31482,31501,31510,0],[31482,31510,31502,0],[31502,31483,31482,0],[31483,31481,31482,0],[31484,36390,31503,0],[31503,36390,49523,0],[49523,1485,1484,0],[31484,31503,31524,0],[31503,49523,31504,0],[31504,49523,1484,0],[31504,1484,31505,0],[31486,31505,6873,0],[1483,31505,1484,0],[31486,31504,31505,0],[31506,31507,1376,0],[31508,31486,6873,0],[31508,31509,31507,0],[31507,31509,1376,0],[1378,31509,31508,0],[31486,31508,31507,0],[31440,36389,31501,0],[31501,36389,31510,0],[31510,36390,31502,0],[31511,31520,1575,0],[1576,31520,31514,0],[1576,31514,31512,0],[31513,31512,31514,0],[31513,31514,31515,0],[31517,31515,31516,0],[1581,31516,6870,0],[31515,31517,31513,0],[31518,36519,1580,0],[31519,31514,31520,0],[31519,31520,36508,0],[36508,31520,31511,0],[36508,31511,1490,0],[1490,31511,1491,0],[1491,31511,1575,0],[31465,31466,31497,0],[31497,31466,36509,0],[31464,31500,31474,0],[31500,31475,31474,0],[31471,31500,31499,0],[31499,31498,31493,0],[31493,31498,31492,0],[31492,31498,31497,0],[31492,31497,31476,0],[31492,31476,31490,0],[31521,31490,31496,0],[31521,31496,36583,0],[31496,31490,31476,0],[31490,31521,31522,0],[31523,31522,36582,0],[31523,36582,31502,0],[31502,36582,31483,0],[31488,31522,31523,0],[31485,31524,31503,0],[31485,31487,31524,0],[31487,31488,31524,0],[31524,31488,31523,0],[31463,36585,31469,0],[31457,1598,1597,0],[1597,1596,1595,0],[31457,31456,31525,0],[31526,31525,31527,0],[31526,31457,31525,0],[31527,31528,6842,0],[6842,31528,6847,0],[6847,31531,31529,0],[31529,31531,6225,0],[6847,31529,6845,0],[6845,31529,31530,0],[31530,6844,6845,0],[31530,31529,6807,0],[6807,31529,6225,0],[6846,6224,31531,0],[31531,6224,6225,0],[6846,31531,6847,0],[6060,31533,31532,0],[31535,31533,6060,0],[1704,31533,31534,0],[31536,31534,6036,0],[31536,6036,6035,0],[31536,6035,5688,0],[31535,6036,31534,0],[31535,31534,31533,0],[6036,31535,6034,0],[5688,5687,31536,0],[31536,5687,31537,0],[5686,31538,5687,0],[31538,31537,5687,0],[31536,31537,31534,0],[1704,31534,31449,0],[31534,31537,31449,0],[31449,31537,31538,0],[6000,5826,5827,0],[5826,6000,5999,0],[31539,6000,5830,0],[5830,5827,5828,0],[5827,5830,6000,0],[31330,6043,6044,0],[31539,5830,5831,0],[31539,5831,31540,0],[31540,6001,31539,0],[31539,6001,6000,0],[31540,5831,5998,0],[31540,5998,31687,0],[5815,5814,5818,0],[5818,6006,5815,0],[31541,31542,5803,0],[5803,31542,5802,0],[5803,5804,31541,0],[5823,5820,5992,0],[5691,5696,31543,0],[31543,5696,5688,0],[5699,5698,5997,0],[5997,5697,31544,0],[31544,5697,6008,0],[31544,6008,31693,0],[6008,5697,6007,0],[1409,1414,1410,0],[1410,1414,1413,0],[1410,1413,1412,0],[1414,1409,31546,0],[31546,1409,31545,0],[1405,1408,1313,0],[31545,1408,31546,0],[31546,1408,1405,0],[31546,1405,1406,0],[1351,1417,1415,0],[1415,1417,31547,0],[31548,1418,31549,0],[31548,31549,1356,0],[6009,1356,1355,0],[1355,1356,31549,0],[1354,6025,1352,0],[1352,1353,1354,0],[6022,6024,31550,0],[1349,31550,6024,0],[1404,1403,31551,0],[31551,1437,31552,0],[1404,31551,49410,0],[1344,1316,31553,0],[31553,1316,31560,0],[31556,1441,31557,0],[49540,31557,31558,0],[31559,1344,31553,0],[31559,31553,31558,0],[31558,31553,49540,0],[1442,31558,31557,0],[31556,31557,31555,0],[31555,31557,49540,0],[31555,49540,31554,0],[1316,1444,31560,0],[31560,1444,1443,0],[1443,31554,31560,0],[31560,31554,31553,0],[756,754,753,0],[757,756,28361,0],[31561,31563,757,0],[28361,31561,757,0],[757,755,756,0],[756,753,31686,0],[756,31686,28361,0],[28361,31686,28360,0],[28368,31561,28375,0],[31561,28368,31562,0],[31561,31562,31563,0],[31563,31562,31710,0],[31563,31710,31564,0],[31563,31564,758,0],[758,757,31563,0],[31564,31710,760,0],[760,31710,28369,0],[760,28369,28371,0],[28369,31710,28370,0],[762,761,31565,0],[762,31565,28453,0],[31561,28361,28375,0],[31568,31566,31567,0],[31371,6039,6038,0],[6040,6039,31567,0],[31371,31567,6039,0],[31567,31371,31568,0],[31568,31371,31331,0],[31566,31568,6047,0],[31339,6069,6068,0],[31572,1375,31573,0],[31573,1375,31509,0],[31509,1377,31573,0],[31573,31574,31572,0],[1377,31575,31574,0],[1377,31574,31573,0],[31572,31574,27973,0],[31572,27973,31571,0],[31571,27973,31570,0],[31570,27973,31578,0],[27974,27973,31575,0],[31575,27973,31574,0],[31509,1375,1376,0],[31569,27971,1610,0],[31569,1610,31577,0],[31577,1610,1373,0],[31577,1373,49384,0],[31577,49384,31576,0],[31576,49385,31571,0],[31571,49385,31572,0],[31571,31570,31576,0],[31576,31570,31577,0],[31569,31577,31570,0],[1375,31572,31579,0],[31580,31579,31581,0],[31488,31487,31581,0],[31581,31487,31506,0],[31581,31506,31580,0],[1376,31580,31506,0],[31579,31584,31581,0],[31581,31584,31582,0],[31581,31582,31488,0],[31583,31582,31584,0],[31582,31583,31489,0],[31582,31489,31488,0],[31583,31491,31489,0],[1471,1472,1462,0],[1462,1472,27892,0],[1462,1464,1471,0],[1464,1463,1471,0],[31335,31334,31329,0],[31329,6053,31335,0],[31334,31335,31328,0],[31535,6060,6034,0],[5994,5824,5993,0],[5993,5823,5992,0],[5823,5993,5824,0],[31585,5886,31586,0],[31585,31586,5867,0],[5867,31586,4532,0],[31585,5867,5865,0],[5886,31588,31586,0],[31586,31588,31587,0],[31587,31588,31295,0],[31295,31588,31589,0],[31587,31295,4532,0],[31587,4532,31586,0],[31588,31293,31589,0],[31589,31293,31590,0],[31589,31590,31294,0],[31294,31590,31292,0],[5864,31585,5865,0],[31591,49597,5894,0],[5894,5844,31591,0],[31591,5872,5890,0],[5845,5844,31595,0],[31595,5844,5717,0],[5717,31592,5801,0],[5844,5894,5717,0],[5717,5894,31592,0],[31593,5846,5897,0],[5897,5903,31593,0],[5847,31593,5903,0],[31594,31595,5717,0],[5845,31595,5897,0],[5717,5718,31594,0],[31594,5718,31601,0],[31601,31599,31600,0],[31600,31599,5782,0],[5782,31599,31596,0],[31598,31597,5783,0],[31597,31598,31596,0],[5782,31596,31598,0],[5722,31597,5720,0],[5720,31597,31596,0],[5720,31596,5719,0],[5719,31596,31599,0],[31600,5898,31601,0],[31601,5898,31594,0],[31602,5725,5723,0],[31602,5723,31603,0],[5725,31602,5727,0],[5727,31602,31604,0],[5727,31604,49595,0],[49594,49595,31592,0],[31304,5907,5910,0],[5910,5912,31304,0],[31304,28138,31605,0],[31607,5914,28123,0],[5914,31607,28138,0],[31607,31606,28138,0],[28138,31606,31605,0],[31605,31606,28125,0],[28125,31606,31607,0],[5856,28132,31608,0],[5856,31608,30269,0],[30307,30235,30309,0],[30307,30309,30308,0],[30309,30235,31608,0],[30235,30307,30237,0],[30237,30307,30306,0],[30269,5858,5856,0],[30271,30234,30274,0],[31609,30274,30234,0],[31609,30234,30236,0],[30236,30275,31609,0],[28133,31611,30309,0],[30308,30309,31611,0],[30308,31611,30296,0],[30296,30295,30308,0],[5798,5705,31624,0],[31624,5705,31612,0],[5704,31614,5808,0],[5704,5808,5703,0],[5744,31616,31615,0],[5704,31615,31614,0],[31614,31615,31613,0],[31615,31616,31613,0],[31613,31616,31612,0],[5808,31614,5815,0],[31616,5744,31617,0],[31618,31617,31619,0],[31618,31619,31698,0],[31698,31619,31695,0],[31698,31695,6012,0],[6012,31695,31691,0],[5740,5739,31620,0],[31620,5754,5753,0],[31641,5941,5954,0],[31623,31622,5932,0],[31623,5932,5931,0],[31622,31623,31621,0],[5931,5927,31623,0],[31621,31623,5767,0],[31621,5767,5768,0],[31625,5932,31622,0],[5928,5777,5766,0],[5928,5766,5767,0],[5928,5767,31623,0],[5798,31624,5793,0],[5793,31624,5794,0],[5794,31624,5758,0],[5736,5773,5735,0],[31625,31622,31642,0],[31622,31621,31642,0],[31642,31621,5951,0],[31641,5951,5768,0],[5768,5951,31621,0],[31626,31625,31642,0],[31626,31642,5950,0],[31629,28452,31627,0],[1298,766,767,0],[31644,28011,31630,0],[31630,28011,31631,0],[31631,28011,5947,0],[31630,31631,767,0],[31627,1299,31629,0],[765,764,31633,0],[31633,764,31632,0],[28374,28372,28370,0],[760,28371,761,0],[761,28371,31565,0],[28371,28370,28372,0],[5974,31626,5936,0],[5936,31626,31635,0],[31635,31626,31636,0],[31636,31626,5950,0],[5948,5946,5945,0],[28394,28393,28388,0],[31638,28390,49586,0],[49586,28390,31637,0],[31637,28390,783,0],[31638,49586,49587,0],[31638,49587,28395,0],[31638,28395,28388,0],[5984,5931,5932,0],[31639,31616,31640,0],[31618,31640,31617,0],[31617,31640,31616,0],[5752,5755,31640,0],[31640,5755,31639,0],[5952,31641,5954,0],[28014,28013,28366,0],[28366,28013,31643,0],[31644,31630,31643,0],[31644,31643,28013,0],[31634,28374,31646,0],[31634,31646,31645,0],[31634,31645,31633,0],[766,768,767,0],[767,31643,31630,0],[31646,28374,31647,0],[31647,28368,28375,0],[31647,31648,31646,0],[31646,31648,31645,0],[31648,31647,28367,0],[31650,31667,31651,0],[31651,31667,31718,0],[31651,31718,31717,0],[31651,31717,31652,0],[31652,31653,31654,0],[31654,31653,31659,0],[31654,31659,31663,0],[31656,31655,28170,0],[31656,28170,28171,0],[31656,28171,28162,0],[28170,31655,28169,0],[28169,31655,31657,0],[31657,31659,31661,0],[31661,31659,31658,0],[31655,31663,31657,0],[31657,31663,31659,0],[31659,31653,31660,0],[31660,31658,31659,0],[28169,31657,28168,0],[28168,31657,31661,0],[31661,31658,31662,0],[31662,1235,31661,0],[28167,31661,1235,0],[31654,31651,31652,0],[31666,31663,31655,0],[31666,31655,31664,0],[31665,31664,28164,0],[28164,31664,28163,0],[31656,31664,31655,0],[31656,28163,31664,0],[31666,31670,31671,0],[31671,31670,31667,0],[31649,31667,31668,0],[31649,31668,786,0],[786,31668,785,0],[785,31668,31669,0],[31669,31665,784,0],[31668,31667,31669,0],[31669,31667,31670,0],[31665,31670,31666,0],[31665,31666,31664,0],[31670,31665,31669,0],[31666,31671,31650,0],[31663,31666,31650,0],[31663,31650,31654,0],[31654,31650,31651,0],[786,31712,31649,0],[31672,31712,31711,0],[31672,31711,31673,0],[31649,31718,31667,0],[31652,31674,31765,0],[5973,31676,31677,0],[31677,31676,31675,0],[31675,31676,5957,0],[49613,31675,31678,0],[5957,31678,31675,0],[28076,31679,28034,0],[28033,31680,28032,0],[28032,31680,28030,0],[28030,31680,28084,0],[28034,28084,31680,0],[28030,28084,28063,0],[28034,28035,28076,0],[28379,28380,28066,0],[28379,28378,28400,0],[28405,28404,28360,0],[28405,28360,28376,0],[31681,28376,31682,0],[28377,31683,28378,0],[28378,31683,28400,0],[28400,31683,28401,0],[28356,28401,31684,0],[31684,28377,31685,0],[31684,31685,28356,0],[31685,31681,31682,0],[790,31685,28354,0],[28354,31685,31682,0],[28377,31684,31683,0],[28377,31681,31685,0],[31681,28377,28376,0],[31686,31682,28376,0],[6003,31687,5702,0],[31540,31687,6003,0],[31689,31688,5703,0],[31689,5703,5702,0],[5744,31688,31696,0],[5744,31696,31619,0],[31689,5701,5700,0],[6011,31694,6009,0],[6009,31694,31692,0],[31692,31694,31693,0],[31693,5699,31544,0],[31544,5699,5997,0],[5699,49593,5700,0],[5700,49593,31690,0],[31690,49593,31691,0],[31691,49593,31694,0],[31694,6011,31691,0],[31691,31695,31690,0],[31689,5700,31696,0],[31619,31696,31695,0],[31690,31695,31696,0],[31690,31696,5700,0],[31619,31617,5744,0],[31689,31696,31688,0],[5745,5742,31697,0],[5743,6013,31697,0],[31618,31698,5743,0],[5743,31698,6013,0],[31702,31701,31699,0],[31699,28412,31702,0],[31702,28412,31700,0],[31700,28411,31705,0],[31702,1303,5740,0],[5740,5741,31702,0],[28407,31703,28408,0],[31704,28421,28410,0],[31704,28409,28408,0],[28421,31704,28411,0],[31705,28411,28408,0],[31705,28408,1301,0],[1301,28408,31703,0],[28420,31706,28419,0],[28419,31706,28418,0],[31707,763,31708,0],[28410,28406,31708,0],[31708,28406,31707,0],[763,764,31708,0],[31708,764,31628,0],[31708,31628,28410,0],[31628,28452,28409,0],[31627,31628,764,0],[31709,31905,1333,0],[31709,1333,1319,0],[31713,31711,31712,0],[31711,31713,789,0],[31711,789,31673,0],[31673,789,31714,0],[31714,28349,791,0],[28349,31714,789,0],[31673,31714,31775,0],[31775,31714,820,0],[31715,820,31714,0],[31720,31672,31718,0],[31718,31716,31717,0],[31717,31716,31652,0],[31719,31775,31716,0],[31672,31719,31718,0],[31718,31719,31716,0],[31672,31720,31712,0],[31712,31720,31649,0],[31649,31720,31718,0],[28164,784,31665,0],[31031,28165,31025,0],[31722,31721,31723,0],[31723,31721,1247,0],[31722,31723,1241,0],[1241,31723,28158,0],[28158,31723,1247,0],[814,28347,31756,0],[31725,31726,31758,0],[31758,31726,31727,0],[31728,31746,31756,0],[31756,31746,31729,0],[31729,31746,31745,0],[31729,31745,31753,0],[31729,31753,31774,0],[31774,31753,31730,0],[31887,31732,31731,0],[31731,31732,31749,0],[31731,31749,31821,0],[31821,31735,31815,0],[31815,31735,31733,0],[31814,31733,31783,0],[31783,31755,31785,0],[31754,31734,31735,0],[31754,31735,31750,0],[31736,31751,31786,0],[31830,31829,31737,0],[31830,31737,31738,0],[31739,31738,31828,0],[31863,31744,31741,0],[31859,31860,805,0],[31860,31742,805,0],[805,31742,31743,0],[31727,31743,31728,0],[31728,31743,31744,0],[31728,31744,31740,0],[31740,31746,31728,0],[31745,31746,31747,0],[31747,31748,31752,0],[31749,31752,31736,0],[31749,31736,31750,0],[31751,31736,31748,0],[31828,31748,31747,0],[31748,31736,31752,0],[31786,31751,31829,0],[31747,31752,31753,0],[31753,31752,31730,0],[31730,31752,31749,0],[31821,31749,31750,0],[31821,31750,31735,0],[31733,31735,31734,0],[31733,31734,31755,0],[31745,31747,31753,0],[31732,31730,31749,0],[31747,31746,31828,0],[31727,31726,31743,0],[31743,31726,805,0],[31742,31741,31743,0],[31743,31741,31744,0],[31736,31786,31750,0],[31750,31786,31787,0],[31750,31787,31754,0],[31733,31755,31783,0],[31756,31729,814,0],[31728,31756,31757,0],[31728,31757,31724,0],[31758,31727,31724,0],[31724,31727,31728,0],[31758,802,31725,0],[31725,802,803,0],[31725,803,804,0],[31758,31724,28350,0],[28350,31724,31759,0],[744,31760,49541,0],[49541,31760,28458,0],[28458,31760,28457,0],[28456,28457,31760,0],[28456,31760,31761,0],[745,31761,31760,0],[6964,28457,31762,0],[28457,6964,28458,0],[6964,6966,28458,0],[27759,31763,27696,0],[27759,27696,6962,0],[27760,27761,31764,0],[31764,27761,27680,0],[31764,27679,27676,0],[31764,27676,27760,0],[31653,31765,31769,0],[31716,31766,31674,0],[31674,31766,31767,0],[32003,31768,31776,0],[31768,32003,31765,0],[31674,31767,31765,0],[31765,31767,31768,0],[32003,31769,31765,0],[31653,31769,31660,0],[31660,31769,31770,0],[31662,31770,821,0],[821,31770,32002,0],[32002,31770,31771,0],[32003,31771,31769,0],[31769,31771,31770,0],[31772,818,31767,0],[818,31773,31767,0],[31767,31773,31768,0],[31776,31773,31889,0],[31776,31889,31777,0],[31778,31777,31824,0],[31824,31888,31887,0],[31732,31886,31730,0],[31730,31886,31774,0],[814,31774,815,0],[815,31774,28345,0],[31773,31776,31768,0],[31767,31766,31772,0],[31772,31766,31775,0],[31772,31775,49971,0],[31772,49971,819,0],[819,49971,820,0],[31776,31777,32004,0],[32004,31777,31997,0],[31778,31826,31779,0],[31779,31826,31818,0],[31779,31818,31780,0],[32010,31781,31819,0],[32011,31819,31782,0],[31782,31783,31784,0],[31813,31785,31734,0],[31734,31754,31787,0],[31786,31834,31787,0],[31834,31835,31787,0],[31787,31835,31836,0],[31734,31836,31788,0],[31790,31812,35094,0],[31790,35094,31791,0],[32012,31791,31792,0],[32012,31792,31793,0],[31793,31792,35048,0],[31793,35048,31794,0],[31794,35048,35046,0],[31794,35046,32014,0],[31794,32014,31795,0],[32013,32204,32205,0],[31797,32204,31798,0],[31799,31798,31800,0],[31799,31800,32021,0],[32021,31800,31801,0],[32021,31801,32015,0],[32014,31802,31795,0],[31795,31796,32012,0],[31801,31800,31803,0],[31803,31798,31802,0],[31803,31802,32014,0],[31803,31800,31798,0],[31798,32204,31802,0],[32013,31796,32204,0],[31796,31795,32204,0],[32204,31795,31802,0],[31793,31794,31795,0],[31791,32012,31804,0],[31804,32012,31784,0],[31804,31784,35099,0],[31785,31809,31789,0],[31809,31785,31813,0],[31791,31804,31790,0],[31788,31836,31805,0],[31808,31806,31807,0],[31809,31808,35097,0],[31809,35097,31810,0],[31810,35097,31811,0],[31810,31811,31812,0],[31812,31790,31810,0],[31810,31790,31789,0],[31805,31806,31788,0],[31788,31806,31813,0],[31809,31813,31808,0],[31808,31813,31806,0],[31734,31785,31755,0],[31785,35099,31783,0],[31783,35099,31784,0],[31733,31814,31816,0],[31815,31733,31816,0],[31815,31816,31820,0],[31820,31816,31822,0],[31822,31817,31818,0],[31818,31817,31780,0],[31780,31817,31781,0],[31781,31817,31819,0],[31819,31817,31816,0],[31817,31822,31816,0],[31821,31815,31820,0],[31820,31822,31823,0],[31820,31823,31827,0],[31820,31827,31821,0],[31821,31827,31731,0],[31823,31822,31825,0],[31823,31825,31827,0],[31887,31827,31824,0],[31824,31826,31778,0],[31778,31997,31777,0],[31824,31825,31826,0],[31826,31825,31818,0],[31827,31825,31824,0],[31825,31822,31818,0],[31827,31887,31731,0],[31783,31782,31814,0],[31814,31782,31819,0],[31814,31819,31816,0],[31737,31828,31738,0],[31737,31829,31751,0],[31751,31748,31737,0],[31828,31737,31748,0],[31829,31830,31831,0],[31832,31831,31833,0],[31832,31869,31834,0],[31832,31786,31829,0],[31829,31831,31832,0],[31786,31832,31834,0],[31836,31835,31877,0],[31877,31835,31837,0],[31877,31837,31870,0],[31877,31870,31838,0],[31840,31841,31842,0],[31842,31841,35102,0],[31843,31842,732,0],[31844,31845,31849,0],[31849,31845,35119,0],[35119,31845,35067,0],[32058,35067,31846,0],[31846,35067,31847,0],[730,729,28460,0],[28460,729,31847,0],[31847,729,31846,0],[28460,31847,31848,0],[31848,31845,31844,0],[31848,31847,31845,0],[31844,31849,35120,0],[31844,35120,31843,0],[31843,35120,31842,0],[7014,733,31850,0],[7014,31850,31851,0],[31851,31850,31852,0],[31868,31871,31853,0],[31853,31871,31874,0],[31853,31874,31865,0],[31854,31869,31855,0],[31854,31855,31865,0],[31865,31855,31864,0],[31864,31862,31856,0],[31856,31862,31857,0],[31856,31857,31858,0],[31859,31858,31860,0],[31858,31857,31860,0],[31742,31860,31741,0],[31863,31741,31861,0],[31830,31862,31878,0],[31878,31862,31864,0],[31857,31741,31860,0],[31741,31857,31861,0],[31858,742,31856,0],[31856,742,741,0],[31864,31856,740,0],[31864,740,31865,0],[31855,31833,31864,0],[31865,31866,31853,0],[31853,31866,31880,0],[31880,31867,31868,0],[31868,31867,31884,0],[31868,31884,31871,0],[31865,740,31866,0],[741,740,31856,0],[31868,31853,31880,0],[31869,31854,31835,0],[31835,31834,31869,0],[31835,31854,31837,0],[31870,31837,31839,0],[31839,31838,31870,0],[31873,31871,31872,0],[31873,31872,31839,0],[31873,31839,31837,0],[31871,31852,31872,0],[31841,31872,31850,0],[31841,31850,35102,0],[35102,31850,733,0],[31841,31839,31872,0],[31839,31841,31840,0],[31850,31872,31852,0],[31837,31854,31873,0],[31873,31874,31871,0],[31874,31873,31865,0],[31865,31873,31854,0],[31839,31840,31838,0],[31838,31840,31875,0],[31875,31807,31876,0],[31836,31877,31805,0],[31805,31877,31838,0],[31805,31838,31876,0],[31875,31876,31838,0],[31876,31807,31806,0],[31876,31806,31805,0],[31832,31833,31869,0],[31869,31833,31855,0],[31878,31831,31830,0],[31830,31738,31861,0],[31861,31738,31879,0],[31879,31738,31739,0],[31879,31739,31740,0],[31879,31740,31744,0],[31879,31744,31863,0],[31879,31863,31861,0],[31830,31861,31862,0],[31878,31864,31833,0],[31878,31833,31831,0],[31880,35110,31881,0],[31880,31881,31867,0],[31867,31881,31882,0],[31883,31882,7013,0],[31883,7013,736,0],[737,31882,31885,0],[31882,31883,31867,0],[31867,31883,31884,0],[31871,31884,31852,0],[35110,738,31885,0],[31885,738,7012,0],[7012,738,6974,0],[31887,816,31732,0],[31732,816,31886,0],[31774,31886,28345,0],[28345,31886,816,0],[31888,31824,31889,0],[31889,817,31888,0],[31888,817,31887,0],[31740,31739,31746,0],[31746,31739,31828,0],[801,28350,31759,0],[31891,31890,812,0],[812,811,31891,0],[31891,811,810,0],[31891,802,28350,0],[28350,31890,31891,0],[802,31891,810,0],[812,31890,749,0],[28456,6949,6948,0],[28456,6948,31892,0],[28457,31892,31762,0],[6952,6948,6949,0],[6948,6952,31902,0],[1440,1439,49536,0],[49416,31894,6941,0],[6941,31894,27697,0],[49532,6941,27733,0],[27733,6941,27697,0],[27733,27697,1436,0],[1436,6940,27733,0],[6934,6933,6935,0],[6935,27701,27700,0],[6936,6935,27700,0],[27699,6937,6936,0],[31895,31901,31896,0],[31896,31901,31897,0],[27950,31896,31897,0],[31895,49394,31898,0],[31898,49394,49408,0],[31898,49408,31899,0],[31899,49408,6928,0],[31898,31899,31901,0],[31898,31901,31895,0],[31899,31900,31901,0],[31900,31897,31901,0],[27701,6935,6932,0],[6932,6935,6933,0],[1440,6952,6958,0],[31902,31903,31904,0],[31762,31892,6948,0],[31904,31762,6948,0],[31762,31904,31763,0],[31763,31904,27696,0],[31906,6956,31905,0],[6955,6956,31906,0],[1442,6953,6955,0],[6955,6953,6954,0],[1442,6955,31906,0],[31906,31905,31709,0],[31906,31709,1317,0],[31906,1317,1442,0],[1317,31709,1318,0],[28436,28437,31907,0],[31908,28439,28440,0],[28436,31907,28435,0],[28435,31907,31908,0],[31908,31907,28439,0],[28435,31908,28431,0],[28431,31908,28432,0],[28432,28440,28455,0],[28455,28433,28432,0],[28434,28435,28431,0],[28434,28431,28430,0],[1316,31909,1315,0],[804,809,807,0],[804,807,805,0],[743,31910,6980,0],[6981,31910,31911,0],[6981,31911,31913,0],[31913,31911,31912,0],[31914,6967,6968,0],[31914,6968,31928,0],[31914,31928,31912,0],[31912,31928,31913,0],[6980,31910,6981,0],[6967,31914,6966,0],[6966,31914,31915,0],[31915,31912,31911,0],[31915,28458,6966,0],[31915,31914,31912,0],[6969,31917,31916,0],[31919,6970,31916,0],[27687,31917,6969,0],[31917,7031,27683,0],[31917,27683,31916,0],[31916,27683,31918,0],[31916,31918,31920,0],[31916,31920,31919,0],[31919,7026,6972,0],[6972,7024,7023,0],[7026,7024,6972,0],[6972,7023,6973,0],[31919,31920,7026,0],[7026,31920,27630,0],[27630,31920,27628,0],[31921,7032,31923,0],[31923,7032,31922,0],[31923,31922,7028,0],[7028,7029,31923,0],[31923,7029,31924,0],[31923,31924,31921,0],[7028,31922,27781,0],[7028,27781,31925,0],[7028,31925,27591,0],[31941,31940,27714,0],[31941,27714,27715,0],[27712,27717,27716,0],[27717,27712,31926,0],[31926,27718,27717,0],[31927,27713,27714,0],[6981,31913,27695,0],[27695,31913,31928,0],[31928,6968,27692,0],[31928,27692,27691,0],[27691,27695,31928,0],[27685,27686,31929,0],[31929,27686,31930,0],[31929,31931,27685,0],[31929,31930,31931,0],[31932,27680,27675,0],[27680,31932,31930,0],[27680,31930,27686,0],[27675,31933,31932,0],[27683,7030,31949,0],[27588,31949,7029,0],[31934,27587,27586,0],[31934,27586,27584,0],[27584,27590,31934,0],[7021,27627,6996,0],[6996,27627,27625,0],[27625,27627,27624,0],[27624,27627,27626,0],[27624,27626,6997,0],[7035,27580,31935,0],[31935,27580,27617,0],[31935,27617,27632,0],[31935,31936,27581,0],[27581,31936,27582,0],[31938,27782,49543,0],[31937,31938,27779,0],[49543,27782,27781,0],[31939,31948,31940,0],[31939,31940,31941,0],[31939,31941,31946,0],[31948,31942,31938,0],[31943,31948,31939,0],[31943,31939,7037,0],[31943,7037,7036,0],[31944,31946,31945,0],[31945,31946,31947,0],[31945,31947,27659,0],[7037,31939,31946,0],[31943,7035,31948,0],[7035,31942,31948,0],[31946,31941,31947,0],[31947,31941,27715,0],[31938,31942,7034,0],[31937,31940,31948,0],[31937,31948,31938,0],[31949,7030,31924,0],[31949,31924,7029,0],[27632,31936,31935,0],[27565,27573,27635,0],[27635,27573,27634,0],[7062,7061,31952,0],[7062,31952,31950,0],[31950,27467,31951,0],[31951,27467,31953,0],[31951,27463,31950,0],[7063,7062,31950,0],[27467,31952,27469,0],[27469,31952,27645,0],[31952,27467,31950,0],[31953,27467,31954,0],[31954,27467,27466,0],[31958,35335,35306,0],[35306,35335,31960,0],[35306,31960,31959,0],[31959,31960,27246,0],[31959,27246,35312,0],[35312,27246,31961,0],[35313,31961,27244,0],[27240,27238,27242,0],[27242,27238,27244,0],[31960,35333,27245,0],[27245,35333,35334,0],[27245,35334,35311,0],[27245,35311,27476,0],[27478,27245,27476,0],[35311,35332,35336,0],[31963,27239,31962,0],[31962,27239,27500,0],[31962,27495,31963,0],[27250,27236,31965,0],[31965,31966,27495,0],[27495,31966,31963,0],[31965,27236,31966,0],[31966,27236,31964,0],[31964,31963,31966,0],[27131,27132,31976,0],[31976,31967,31975,0],[35219,6907,31969,0],[35219,31969,31968,0],[31968,31969,31970,0],[31970,31969,6906,0],[31971,31970,31974,0],[31971,31974,31978,0],[31978,31974,31973,0],[31978,31973,27199,0],[31970,6906,31974,0],[31974,36191,31973,0],[31974,6906,6904,0],[6904,36191,31974,0],[36191,36190,31973,0],[31973,36190,27199,0],[27199,36190,31972,0],[6905,6904,6906,0],[31968,31970,31967,0],[31967,31970,31975,0],[31975,31977,31976,0],[27199,27201,31978,0],[31978,27201,31979,0],[31979,31977,31978,0],[31979,27140,31980,0],[31979,31980,31977,0],[31977,31980,31976,0],[31976,31980,27130,0],[31977,31975,31978,0],[6910,31982,27135,0],[6910,27135,7051,0],[31985,7050,31983,0],[31983,7050,6913,0],[6915,27859,31987,0],[31987,27859,31984,0],[31984,27858,6913,0],[31983,6911,31985,0],[31985,6911,31986,0],[7049,31987,7048,0],[31987,31984,6913,0],[31987,6913,7048,0],[7048,6913,7050,0],[27134,31981,27527,0],[27527,31981,27529,0],[27529,31981,31988,0],[27529,31988,27133,0],[31988,31967,27133,0],[27133,31967,27132,0],[31967,31988,31968,0],[31967,31976,27132,0],[31991,27148,27145,0],[27180,31990,31992,0],[27212,31990,27211,0],[27211,27184,27212,0],[31990,27180,27211,0],[31989,27180,31992,0],[31989,31992,31991,0],[27149,31992,27213,0],[31992,27149,31991,0],[31991,27149,27148,0],[31989,31991,27145,0],[31995,27293,31993,0],[31995,31993,27294,0],[31995,27294,49517,0],[49517,27294,27295,0],[31993,31994,27294,0],[27293,31995,27292,0],[27292,31995,49517,0],[27292,49517,27296,0],[31938,7034,27782,0],[27690,27691,31996,0],[31996,27691,27692,0],[6969,6970,27692,0],[27692,6970,31996,0],[27690,31996,6971,0],[6971,31996,6970,0],[31998,31997,31778,0],[31998,31778,31779,0],[31997,31998,32202,0],[31997,32202,31999,0],[32005,829,32000,0],[32001,28344,825,0],[825,824,32001,0],[32001,824,32006,0],[32006,824,823,0],[31776,32004,32003,0],[32003,32004,31771,0],[31771,32004,31999,0],[31771,31999,32002,0],[32002,31999,32005,0],[32002,32005,32006,0],[32001,32006,32000,0],[32000,32006,32005,0],[32004,31997,31999,0],[821,32002,822,0],[32002,32006,822,0],[822,32006,823,0],[32005,31999,829,0],[829,31999,32202,0],[829,32202,32200,0],[32007,32008,832,0],[832,32008,32203,0],[832,32203,833,0],[832,831,32007,0],[32007,831,32201,0],[31998,31779,32007,0],[31779,31780,32007,0],[32007,31780,32008,0],[32008,31780,31781,0],[32008,31781,32009,0],[32009,31781,32010,0],[32009,32010,32011,0],[31796,32011,31782,0],[31795,32012,31793,0],[31784,32012,31782,0],[31796,32013,32011,0],[32011,32013,32009,0],[32011,32010,31819,0],[32014,32023,32025,0],[32025,32023,32015,0],[32015,32023,32016,0],[32017,32016,32024,0],[32016,32017,32348,0],[32016,32348,32026,0],[32026,32348,32347,0],[32026,32347,32206,0],[32206,32347,32018,0],[843,844,32019,0],[32019,844,32020,0],[32019,32020,32018,0],[882,32017,32024,0],[882,32024,32022,0],[32014,35046,32023,0],[32016,32023,32024,0],[31803,32014,32025,0],[31803,32025,31801,0],[31801,32025,32015,0],[32027,32028,32029,0],[32101,32030,32031,0],[32028,32031,32032,0],[32028,32032,32029,0],[32029,32033,32040,0],[32035,32034,32069,0],[32035,32069,32045,0],[32045,32069,32036,0],[32036,32098,32215,0],[32214,32215,32099,0],[32214,32099,32038,0],[32038,32099,32039,0],[32039,32099,32097,0],[32039,32097,32090,0],[32039,32090,32089,0],[32039,32089,32165,0],[32165,32037,32039,0],[32038,32039,32037,0],[32034,32035,32040,0],[32027,32041,881,0],[881,32041,35089,0],[32041,32035,35088,0],[35088,32035,32045,0],[35088,32045,32043,0],[32042,32043,32044,0],[32042,32044,880,0],[880,35082,878,0],[878,35082,877,0],[32043,32045,32044,0],[32041,35088,35089,0],[32035,32041,32040,0],[32029,32040,32041,0],[32029,32041,32027,0],[32040,32033,32034,0],[32034,32033,32046,0],[32047,32107,32105,0],[32047,32105,32048,0],[32049,32048,35044,0],[886,32056,32079,0],[32079,32056,32054,0],[32079,32054,35064,0],[32054,32055,35127,0],[35127,32055,32067,0],[728,32067,28462,0],[28462,32067,729,0],[729,32067,31846,0],[32067,32055,31846,0],[32058,32055,32054,0],[32058,32054,32056,0],[32057,32056,887,0],[32056,32057,32058,0],[32058,32057,32060,0],[32058,32060,32059,0],[32059,32060,35113,0],[35113,35068,35051,0],[35068,35073,32061,0],[32061,35073,32062,0],[32063,32062,32065,0],[32065,32064,32066,0],[32066,32064,883,0],[31846,32055,32058,0],[35127,32067,35066,0],[35066,32067,32068,0],[727,32068,32067,0],[32034,32046,32069,0],[32093,32069,32046,0],[32047,32048,32049,0],[32086,32049,32071,0],[32086,32071,32175,0],[32175,32071,32073,0],[32072,32074,32174,0],[32174,32074,32082,0],[32174,32082,32172,0],[32172,32082,694,0],[32172,700,713,0],[32049,35044,32071,0],[32071,35044,32050,0],[32085,32052,32083,0],[32083,32052,32106,0],[32083,32106,32053,0],[32083,32053,32075,0],[32083,32075,32084,0],[32075,32053,32076,0],[28477,32076,32077,0],[28477,32077,32078,0],[28476,32079,35064,0],[32077,32076,32080,0],[32076,32053,32080,0],[32076,28477,28478,0],[32074,28478,32081,0],[32074,32081,32082,0],[28478,32074,32084,0],[28478,32084,32076,0],[32076,32084,32075,0],[32072,32084,32074,0],[32085,32083,32084,0],[32085,32084,32072,0],[32072,32073,32085,0],[32085,32073,32050,0],[32050,32073,32071,0],[32052,32085,32051,0],[32051,32085,32050,0],[32091,32092,32087,0],[32090,32166,32089,0],[32089,32166,32165,0],[32092,32091,32070,0],[32092,32070,32107,0],[32107,32047,32092,0],[32092,32047,32086,0],[32070,32091,32093,0],[32093,32094,32095,0],[32069,32095,32036,0],[32036,32095,32098,0],[32069,32093,32095,0],[32093,32091,32094,0],[32098,32094,32096,0],[32097,32096,32090,0],[32098,32099,32215,0],[32095,32094,32098,0],[32097,32098,32096,0],[32090,32096,32088,0],[32088,32096,32100,0],[32109,32100,32087,0],[32096,32094,32100,0],[32100,32094,32087,0],[32087,32094,32091,0],[32030,32101,882,0],[882,32101,32027,0],[32027,32101,32028,0],[32104,32103,32051,0],[35043,35044,32048,0],[35043,32048,32105,0],[32029,32032,32033,0],[35044,32104,32050,0],[32050,32104,32051,0],[32030,32022,35042,0],[35042,32022,32102,0],[32102,883,32103,0],[32052,32103,885,0],[32052,885,32106,0],[32106,885,32053,0],[32052,32051,32103,0],[32046,32033,32107,0],[32105,32107,32032,0],[32032,32107,32033,0],[32107,32070,32046,0],[32088,32100,32108,0],[32108,32100,32109,0],[32109,32087,32110,0],[32088,32108,32163,0],[32088,32163,32090,0],[32159,32108,32109,0],[32110,35037,32111,0],[32111,35037,32171,0],[32160,35012,32112,0],[32112,35012,35010,0],[35010,32113,32164,0],[32113,32114,32116,0],[32115,32117,32149,0],[32149,32118,32168,0],[32168,32118,32119,0],[32168,32119,32209,0],[32209,32155,32120,0],[32120,32155,32156,0],[32121,32122,32146,0],[32123,32146,32125,0],[32123,32125,32124,0],[32125,32146,32126,0],[32126,32146,32122,0],[889,888,32127,0],[32127,32121,32120,0],[32127,32120,32158,0],[32127,32158,32128,0],[32127,32128,28315,0],[28315,32128,28314,0],[28317,28314,32129,0],[28317,32129,32130,0],[28317,32130,28316,0],[32137,32130,32136,0],[32137,32136,32131,0],[32136,35002,34999,0],[32132,34999,32133,0],[32132,32133,910,0],[910,32133,32134,0],[910,32134,32135,0],[32132,34998,32136,0],[32132,32136,34999,0],[32138,32137,32141,0],[32138,32141,32139,0],[32139,32141,35033,0],[32139,35033,32140,0],[32140,35033,34979,0],[34979,899,898,0],[34979,898,32140,0],[32137,32131,911,0],[32137,911,32141,0],[35033,32141,32142,0],[35033,32142,914,0],[32144,900,32143,0],[34978,34979,32145,0],[32145,34979,914,0],[32145,32143,34978,0],[34978,32143,900,0],[32127,28315,889,0],[888,32126,32122,0],[32127,888,32121,0],[32121,888,32122,0],[32124,32125,32147,0],[876,32147,875,0],[875,32147,32125,0],[32117,32148,32149,0],[32149,32148,32150,0],[32153,32150,32151,0],[32153,32151,32152,0],[32153,32152,32154,0],[32153,32154,32155,0],[32155,32154,32156,0],[32156,32157,32158,0],[32128,35000,32129,0],[32129,28314,32128,0],[32158,32120,32156,0],[32155,32209,32119,0],[32155,32119,32153,0],[32153,32119,32118,0],[32153,32118,32150,0],[32150,32118,32149,0],[35030,35031,32161,0],[35030,32161,32111,0],[32111,32161,32162,0],[32112,32159,32161,0],[32112,32161,32160,0],[32160,32161,35031,0],[32111,32162,32110,0],[32162,32159,32109,0],[32162,32109,32110,0],[32161,32159,32162,0],[32163,32164,32090,0],[32090,32164,32166,0],[32165,32166,35014,0],[35014,32166,32116,0],[32113,32116,32166,0],[32113,32166,32164,0],[32163,32112,32164,0],[32164,32112,35010,0],[32165,35014,32167,0],[32165,32167,32037,0],[32037,32167,35015,0],[35015,32167,32168,0],[32168,32167,32149,0],[32168,32169,35015,0],[32163,32108,32112,0],[32112,32108,32159,0],[713,32171,35039,0],[713,35039,32172,0],[32172,32173,32174,0],[32072,32174,32173,0],[32072,32173,32073,0],[32073,32173,35040,0],[32073,35040,32175,0],[32086,32176,32177,0],[32086,32177,32092,0],[32176,32086,32175,0],[32171,713,32170,0],[35030,32111,32170,0],[32170,32111,32171,0],[703,704,949,0],[681,32186,32180,0],[32186,32179,32180,0],[32180,32179,32181,0],[32183,32182,32178,0],[32183,32178,32184,0],[32179,32182,32181,0],[32180,32181,683,0],[32180,683,681,0],[32181,9276,683,0],[953,32184,929,0],[953,940,32184,0],[32184,940,32183,0],[32183,941,32182,0],[32182,941,32185,0],[32182,32185,32181,0],[32181,32185,9276,0],[9276,32185,684,0],[684,32185,685,0],[32185,942,686,0],[32187,32186,32188,0],[680,32188,32186,0],[32189,590,583,0],[32189,32190,671,0],[671,32190,957,0],[955,908,957,0],[908,670,957,0],[32190,32189,32191,0],[32191,32189,959,0],[32192,575,574,0],[577,576,575,0],[1073,960,32193,0],[32198,32193,32196,0],[980,32196,32194,0],[32194,32195,980,0],[32196,980,979,0],[32196,979,32197,0],[32198,32197,32199,0],[32199,978,32198,0],[32197,32198,32196,0],[32195,32194,34950,0],[32195,34950,33562,0],[32195,33562,981,0],[28192,28188,1229,0],[1229,28188,1228,0],[31019,1228,28188,0],[1229,28193,28192,0],[32201,831,830,0],[32201,830,32200,0],[32201,32200,32202,0],[32202,31998,32201,0],[32201,31998,32007,0],[32296,861,31017,0],[31017,861,31013,0],[861,862,28231,0],[833,32204,31797,0],[31797,31798,31799,0],[32009,32205,32008,0],[32008,32205,32203,0],[833,32203,32204,0],[32204,32203,32205,0],[32009,32013,32205,0],[32015,32026,32206,0],[32206,32018,32021,0],[32021,32018,32020,0],[32021,32015,32206,0],[28328,32207,841,0],[32350,28328,32342,0],[32342,28328,32343,0],[32343,28328,32353,0],[32353,841,32344,0],[841,32353,28328,0],[32123,32211,35016,0],[32208,32210,32169,0],[32208,32169,32209,0],[32168,32209,32169,0],[32209,32120,32208,0],[32120,32121,32208,0],[32208,32123,32210,0],[32210,32123,35016,0],[32123,32208,32146,0],[32146,32208,32121,0],[32123,32124,32211,0],[32212,32213,32037,0],[32037,32213,32038,0],[32038,32213,32214,0],[32214,35082,32215,0],[32215,35082,880,0],[32215,880,32044,0],[32215,32044,32036,0],[32036,32044,32045,0],[32211,32212,35016,0],[32147,32211,32124,0],[32212,32211,35083,0],[35083,32211,32147,0],[32147,877,35083,0],[28327,32216,28326,0],[28326,32216,28337,0],[28336,32217,28331,0],[814,31729,31774,0],[30874,30873,30872,0],[32222,31188,1214,0],[31188,32222,31187,0],[31187,49579,32219,0],[32219,49579,28211,0],[31186,31187,32219,0],[1218,32219,28211,0],[1218,28211,28212,0],[30890,32220,32221,0],[32225,32221,28280,0],[28280,1214,1213,0],[1214,28280,32221,0],[32225,30891,32221,0],[32221,30891,30890,0],[32220,30890,32223,0],[32220,32223,49578,0],[49578,49579,31187,0],[32220,49578,32222,0],[32220,32222,32221,0],[32221,32222,1214,0],[28280,28289,32224,0],[32224,28260,32225,0],[32225,28260,30941,0],[32225,30941,30869,0],[30869,30941,28281,0],[32224,32225,28280,0],[32226,28260,30978,0],[30978,30977,32226,0],[32227,30875,32230,0],[32228,32230,32229,0],[32228,32229,30874,0],[30875,32229,32230,0],[30874,30872,32228,0],[32228,30872,30889,0],[32230,32228,32231,0],[32231,30889,30892,0],[30870,30892,30871,0],[30892,30889,30871,0],[32231,32228,30889,0],[32227,32230,32232,0],[32227,32232,32233,0],[32230,32231,32232,0],[32233,32232,30882,0],[1251,30867,28283,0],[867,866,868,0],[868,866,869,0],[866,865,869,0],[872,869,865,0],[865,871,870,0],[865,870,872,0],[860,28230,32234,0],[32234,28230,28241,0],[32234,28241,28243,0],[32235,1152,32388,0],[49580,1151,32387,0],[1149,32389,1150,0],[1086,32236,1085,0],[1085,32236,1148,0],[1086,1087,32235,0],[32235,1087,1089,0],[32235,1089,1152,0],[1152,1162,32388,0],[32237,32254,32253,0],[32238,28301,32239,0],[32239,28301,32247,0],[32382,32240,32241,0],[32241,32240,32313,0],[32241,32313,32334,0],[32241,32334,1060,0],[32334,32313,28311,0],[28311,32313,28310,0],[32240,1084,32242,0],[32244,32248,32245,0],[32244,32245,32246,0],[32246,32245,32247,0],[32245,32248,32243,0],[32245,32243,32239,0],[32245,32239,32247,0],[32238,32239,32253,0],[32253,32239,32251,0],[32251,32243,32248,0],[32250,32248,32244,0],[32250,32244,32249,0],[32249,32252,31124,0],[32249,31124,32250,0],[32250,31124,31123,0],[32248,32250,32251,0],[32251,32250,31123,0],[32251,32237,32253,0],[32237,32251,31123,0],[32237,31123,31122,0],[32249,32244,28644,0],[32249,28644,32252,0],[32237,31120,32254,0],[32238,32253,1085,0],[1085,32253,32254,0],[1085,32254,1087,0],[31120,1087,32254,0],[32255,32379,32381,0],[32255,32381,28645,0],[32255,28645,32246,0],[32246,28645,32244,0],[32244,28645,28644,0],[32262,28643,28642,0],[32262,28642,28724,0],[28642,28641,32256,0],[28641,32257,32256,0],[32257,28650,32258,0],[32258,28718,32259,0],[32259,28718,32261,0],[32260,28640,28639,0],[32260,32261,28640,0],[32259,32261,28722,0],[32256,28724,28642,0],[28643,32262,32386,0],[32263,32262,28724,0],[32264,28743,28744,0],[28746,32265,32268,0],[28746,32268,32266,0],[28746,32266,28747,0],[32265,32267,32268,0],[32268,32267,28762,0],[32267,32271,32269,0],[32267,32269,28762,0],[28762,32269,32270,0],[32272,32269,32271,0],[32272,32271,32273,0],[32273,32260,32272,0],[32260,32273,28722,0],[32273,28745,28722,0],[28722,28745,32274,0],[28722,32274,28768,0],[28721,28632,28720,0],[28632,28721,32278,0],[32278,28721,32277,0],[32278,32277,32276,0],[32275,32276,28719,0],[32275,28719,28636,0],[28637,28721,28639,0],[28633,28632,32278,0],[28633,32278,32279,0],[28635,32275,28636,0],[32278,32276,32279,0],[32279,32276,32275,0],[32279,32275,28635,0],[32280,32281,32282,0],[28715,32280,32282,0],[32280,532,32281,0],[32282,32281,28713,0],[28713,32281,532,0],[28713,532,28714,0],[28714,32283,32293,0],[532,32284,28714,0],[28714,32284,32283,0],[32284,33406,32283,0],[32283,33406,516,0],[515,32285,33336,0],[32286,32287,32291,0],[32291,32287,33331,0],[32291,33331,32558,0],[32288,32290,32545,0],[32289,32290,32558,0],[32289,32545,32290,0],[32291,32558,32550,0],[32291,32550,32292,0],[514,32293,513,0],[32292,515,33336,0],[32292,33336,32286,0],[515,516,32285,0],[33336,33401,32286,0],[32296,31017,32294,0],[32294,31017,31016,0],[32294,31016,31014,0],[32294,32295,32296,0],[32296,32295,862,0],[32296,862,861,0],[31006,31018,31003,0],[32298,866,32297,0],[32300,32297,32339,0],[32300,32339,32301,0],[32301,32339,893,0],[32339,867,892,0],[866,32298,28338,0],[28338,32298,1186,0],[32298,32297,32299,0],[32299,32297,32300,0],[32302,1202,32301,0],[32302,32301,32303,0],[32302,1077,1202,0],[1202,32300,32301,0],[32303,32301,1075,0],[32303,1075,1076,0],[32303,1076,28303,0],[32305,32304,28308,0],[32302,32304,1077,0],[1077,32304,32305,0],[32305,32316,1079,0],[1079,1078,32305,0],[32305,1078,1077,0],[32305,28308,32307,0],[32305,32307,32306,0],[32306,32307,32308,0],[32309,32311,1082,0],[32309,1082,32318,0],[1082,32311,32312,0],[32312,32311,32242,0],[32312,32242,1084,0],[32242,32313,32240,0],[32311,32310,32242,0],[32242,32310,32313,0],[32315,32310,32311,0],[32315,32311,32309,0],[32318,28292,32317,0],[32309,32308,32307,0],[32309,32307,32314,0],[28309,32314,32307,0],[32309,32314,32315,0],[32310,32314,28310,0],[32315,32314,32310,0],[32305,32306,32316,0],[32316,32306,32308,0],[32308,32309,32318,0],[32318,32317,32316,0],[896,32324,28302,0],[28303,28302,32319,0],[32327,32328,32323,0],[32327,32323,32326,0],[32326,32323,32325,0],[32325,32323,32324,0],[32324,32323,32319,0],[32324,32319,28302,0],[32325,32324,28319,0],[32327,32326,897,0],[32327,897,32356,0],[32327,32356,32358,0],[32358,999,32327,0],[32328,32327,999,0],[32328,999,32322,0],[32325,897,32326,0],[28304,32319,32323,0],[28304,32323,32328,0],[32321,32328,32331,0],[32321,28304,32328,0],[32328,32322,32331,0],[28304,32321,32320,0],[32321,32331,32329,0],[32329,32333,1057,0],[1057,32333,32332,0],[1057,32332,1058,0],[1057,28305,32329,0],[32329,32320,32321,0],[998,32330,32333,0],[998,32333,32331,0],[32332,32369,1058,0],[1058,32369,28306,0],[32333,32330,32332,0],[32333,32329,32331,0],[32330,32362,32332,0],[1058,28306,28311,0],[28311,28306,1059,0],[28311,1059,32334,0],[32334,1059,1060,0],[1061,1059,32377,0],[1058,28311,1056,0],[1056,28311,32335,0],[1056,32335,28305,0],[28305,32335,32336,0],[49583,32336,28309,0],[49583,28309,1055,0],[32336,49583,28305,0],[890,891,873,0],[873,32337,890,0],[890,32337,32338,0],[874,32338,32337,0],[873,891,869,0],[869,891,868,0],[868,891,892,0],[867,32339,32297,0],[32340,32349,32355,0],[32355,32349,32341,0],[35085,32354,32344,0],[35085,32344,32345,0],[32345,32344,843,0],[32345,843,32019,0],[32345,32019,32018,0],[32018,32347,32345,0],[32346,32345,32347,0],[32346,32347,32348,0],[32349,32350,32341,0],[32341,32350,32342,0],[32351,32349,28327,0],[32349,32351,32350,0],[32352,32343,32353,0],[32352,32353,35084,0],[35084,32353,32344,0],[35084,32344,32354,0],[877,32147,32355,0],[32355,32147,32340,0],[32355,879,878,0],[32358,32356,898,0],[32357,1024,49584,0],[49584,1024,997,0],[898,1025,32358,0],[32358,1025,999,0],[34968,1029,32359,0],[32360,32359,32361,0],[32361,32359,1030,0],[1030,32359,1029,0],[1028,1029,1033,0],[32369,32362,32363,0],[1038,32363,32362,0],[1046,32364,1062,0],[1035,1045,1046,0],[1045,1035,1044,0],[1044,1035,1043,0],[32366,528,32365,0],[32365,528,28658,0],[32366,32365,32367,0],[32367,28583,32366,0],[28583,526,32366,0],[28658,28659,32365,0],[32365,28659,32367,0],[32367,28659,32368,0],[28660,32368,28659,0],[28660,28661,32368,0],[32332,32362,32369,0],[32369,32363,28306,0],[1023,32370,32371,0],[1034,32371,32370,0],[1023,32371,1002,0],[1002,32371,1001,0],[1039,1023,32372,0],[32374,28716,32373,0],[28716,1050,32373,0],[28681,32374,32373,0],[32376,32375,33572,0],[32376,33572,28666,0],[987,986,32376,0],[987,32376,28666,0],[1036,32377,32363,0],[32363,1038,1036,0],[32336,32335,28310,0],[28310,32335,28311,0],[1063,1054,32378,0],[32378,1054,1053,0],[32378,1053,32379,0],[32379,1053,32381,0],[32379,32255,32383,0],[32379,32383,32378,0],[32378,32383,32380,0],[32378,32380,32241,0],[32241,32380,32382,0],[32241,1060,32378,0],[32378,1060,1063,0],[32383,32255,32246,0],[32382,32380,32383,0],[32383,32240,32382,0],[32383,32247,32240,0],[32247,32383,32246,0],[1048,1049,32385,0],[28646,28649,32384,0],[1052,1048,32385,0],[1053,1052,32381,0],[32381,1052,32385,0],[28648,32381,32385,0],[32386,32262,28726,0],[28726,32262,32263,0],[32386,28726,32252,0],[32386,32252,28647,0],[32252,28726,28727,0],[32252,28644,28647,0],[1182,28297,28299,0],[28296,1182,28299,0],[49580,32387,32388,0],[32387,1086,32388,0],[32388,1086,32235,0],[32387,1151,32389,0],[32389,1086,32387,0],[1161,32390,49580,0],[1149,1148,32236,0],[32236,1086,32389,0],[32236,32389,1149,0],[32390,1145,49580,0],[1159,1129,1158,0],[30739,30738,31153,0],[31153,30738,31091,0],[31153,31091,31092,0],[30735,31075,32434,0],[31071,32391,32392,0],[32392,32391,31088,0],[32392,31070,31071,0],[31061,32391,31071,0],[30731,32399,30729,0],[30729,32393,30728,0],[30728,32393,30726,0],[32402,32395,30742,0],[30742,32395,31147,0],[32396,31150,30726,0],[32397,32396,32393,0],[32398,32393,30729,0],[32399,30731,30732,0],[30729,32399,32398,0],[32397,32398,32400,0],[31154,30740,32401,0],[32401,30740,32400,0],[32401,32400,32398,0],[30733,32401,30732,0],[32401,32398,30732,0],[32398,32399,30732,0],[32398,32397,32393,0],[32393,32396,30726,0],[30726,31150,32394,0],[32394,31150,31147,0],[32394,31147,32395,0],[32397,32400,32396,0],[32394,32395,30725,0],[32395,32402,30725,0],[31065,4443,32403,0],[32403,4443,32404,0],[49576,4453,32404,0],[32405,1139,1140,0],[1140,32407,28256,0],[32407,1140,31183,0],[28256,32407,1209,0],[28211,49579,1221,0],[1221,49579,32415,0],[28279,1212,31182,0],[31182,28257,28279,0],[32408,4455,32409,0],[32409,4455,28269,0],[31047,32409,28276,0],[28276,32409,28269,0],[4455,32408,32410,0],[28278,32410,31090,0],[31090,32410,32408,0],[32411,32403,28277,0],[28277,31090,32411,0],[31047,31046,32412,0],[32412,31090,32408,0],[32412,32408,31047,0],[32223,30890,32413,0],[32413,30890,32218,0],[32413,32218,30873,0],[32413,30873,32414,0],[32413,32414,1222,0],[1222,32415,32413,0],[32413,32415,32223,0],[32223,32415,49578,0],[31142,32420,32416,0],[32418,32416,32417,0],[32417,32419,32418,0],[32418,31171,31142,0],[31142,31171,31172,0],[31142,32416,32418,0],[31173,32418,32419,0],[31111,31104,32420,0],[31111,32420,31100,0],[28764,28735,28734,0],[32424,4442,32422,0],[30827,32422,4446,0],[4446,32422,32421,0],[4446,32421,4445,0],[30827,32423,4165,0],[4165,32423,4163,0],[4452,32423,30827,0],[4452,30827,4447,0],[4447,30827,4446,0],[32422,30826,32424,0],[32421,32422,4442,0],[4442,4443,4444,0],[4442,4444,32421,0],[32421,4444,4445,0],[32425,31069,31067,0],[31067,31065,32425,0],[32425,31065,31076,0],[32426,31148,31158,0],[32426,31158,32427,0],[31146,32428,32427,0],[32427,32428,32426,0],[32426,30741,31148,0],[30741,32426,31147,0],[31147,32426,32428,0],[31152,31162,31151,0],[31151,31162,31161,0],[31114,31113,32430,0],[32433,28733,32431,0],[1127,32432,32433,0],[32433,32432,31114,0],[32433,31114,32430,0],[32433,32431,1127,0],[1134,1129,1128,0],[28300,1128,1133,0],[1128,28300,1134,0],[32434,30736,30738,0],[32434,30738,30735,0],[30724,32435,30754,0],[30754,32435,32438,0],[32436,30754,32438,0],[30749,30748,32440,0],[30753,32440,30754,0],[32439,30754,32440,0],[32439,32440,30748,0],[31138,31139,32443,0],[32441,30758,32442,0],[32442,30758,31140,0],[32442,31140,31141,0],[32442,31141,31172,0],[32442,32443,31139,0],[32442,31139,32441,0],[32442,31171,32443,0],[31170,31169,32443,0],[30755,32437,32436,0],[30755,32436,30757,0],[30757,30756,30755,0],[32444,4211,4158,0],[32446,4212,32445,0],[32446,32445,30722,0],[30722,4156,32446,0],[32446,4156,4157,0],[32446,4157,4308,0],[30550,4430,32447,0],[30550,4428,4430,0],[482,31181,32448,0],[32448,31181,31135,0],[32448,31135,33352,0],[482,32448,32449,0],[32449,32448,33350,0],[32449,32450,23365,0],[23365,32450,23366,0],[32453,32451,23380,0],[32452,23380,23379,0],[32452,23379,23378,0],[32452,23378,23361,0],[23361,23362,32453,0],[23361,32453,32452,0],[32452,32453,23380,0],[23362,23363,32453,0],[23363,23365,32451,0],[32451,23365,23366,0],[23363,32451,32453,0],[23365,23363,23364,0],[23365,23364,481,0],[30774,23360,30773,0],[30773,32455,32454,0],[32454,32455,23359,0],[32454,23359,23357,0],[23357,23367,32454,0],[32539,30773,32454,0],[32456,32457,23452,0],[32459,23453,32475,0],[32475,23453,32463,0],[23453,32459,32458,0],[23453,32458,32460,0],[32460,32458,32466,0],[32466,32458,32456,0],[32459,32475,23367,0],[32467,32460,32466,0],[32468,32466,23451,0],[32460,32467,32461,0],[32462,23555,23558,0],[32462,23558,32463,0],[32462,32463,32464,0],[32464,23453,32460,0],[32462,32464,32461,0],[32461,32464,32460,0],[23441,23555,32465,0],[23441,32465,23440,0],[23440,32465,23439,0],[23555,32462,32461,0],[23555,32461,32465,0],[23445,30787,23444,0],[23445,30786,30787,0],[30786,23445,23495,0],[23495,23445,23446,0],[32468,32470,23438,0],[32469,23438,32470,0],[32469,32470,23436,0],[23438,32469,23576,0],[23438,23576,23439,0],[23438,32467,32468,0],[30769,30770,32471,0],[32471,30770,32538,0],[32538,32472,32474,0],[32474,32472,32473,0],[32473,32472,32463,0],[32463,32472,32475,0],[30767,32471,32474,0],[30767,32474,32473,0],[32474,32471,32538,0],[32475,32472,32454,0],[32475,32454,23367,0],[32479,32484,32481,0],[32478,32477,23377,0],[32478,23377,32479,0],[23376,32479,23377,0],[32484,32479,23394,0],[23394,32479,23376,0],[23394,23376,23393,0],[23393,23376,32480,0],[23383,32480,23375,0],[32478,32481,32482,0],[32482,32481,23371,0],[49575,32476,23371,0],[32483,23371,32481,0],[32478,32479,32481,0],[32483,32481,32484,0],[32483,32484,23350,0],[23350,32484,23349,0],[32483,23350,23370,0],[32485,23370,23350,0],[32485,23350,23351,0],[23369,23370,32485,0],[23369,32485,23368,0],[23403,32486,32487,0],[32487,32486,23402,0],[23401,32486,23397,0],[23403,32487,23329,0],[23436,23575,32488,0],[32488,23575,23606,0],[23436,32488,32469,0],[32469,32488,23603,0],[32469,23603,32489,0],[32489,23603,23602,0],[32490,30655,32491,0],[30654,30651,32491,0],[32491,30649,32490,0],[30646,30647,30649,0],[30651,30649,32491,0],[32485,23351,23352,0],[32485,23352,23353,0],[23419,23422,32492,0],[32492,23422,23412,0],[32492,23412,32493,0],[496,32568,23410,0],[23410,32568,23411,0],[23411,23409,23410,0],[32493,499,32492,0],[32492,499,498,0],[32492,498,32533,0],[32533,497,32534,0],[22019,32534,497,0],[22019,497,22018,0],[22018,32566,32494,0],[22018,32494,32495,0],[22017,32495,32496,0],[22016,32496,22042,0],[22042,32496,22015,0],[22015,32496,22053,0],[22053,32496,32497,0],[32561,32498,32532,0],[32499,32500,32529,0],[32529,32500,32501,0],[32529,32501,32528,0],[32528,32501,32503,0],[32503,32502,32504,0],[32503,32504,32527,0],[32527,33326,32526,0],[32526,33326,32505,0],[32506,32505,32514,0],[32506,32514,33324,0],[33324,33323,32507,0],[32510,32508,32524,0],[32522,33402,22010,0],[23914,33402,32524,0],[23914,32524,32509,0],[32509,32524,32508,0],[23914,32509,23912,0],[32508,32510,32511,0],[32512,32511,23839,0],[32512,32953,23912,0],[32511,32512,32508,0],[32508,32512,32509,0],[32509,32512,23912,0],[32513,23836,23837,0],[23837,23838,32513,0],[32513,23838,33323,0],[32510,33323,32511,0],[32511,33323,23884,0],[23884,33323,23838,0],[32514,32505,23833,0],[32514,23833,23834,0],[32515,32561,32532,0],[32532,32498,32516,0],[32516,32498,32499,0],[32499,32517,32516,0],[32516,32517,32518,0],[32518,32517,32530,0],[32518,32530,32506,0],[32506,33324,32507,0],[32507,32520,32519,0],[32519,32520,32521,0],[32518,32506,32521,0],[32521,32506,32519,0],[32520,32507,32510,0],[32524,33402,32522,0],[32510,32524,32520,0],[32520,32524,32523,0],[32523,32524,32525,0],[22012,32525,32522,0],[32522,32525,32524,0],[32521,33339,32518,0],[33339,32521,32523,0],[32521,32520,32523,0],[32506,32530,32505,0],[32505,32530,32526,0],[32527,32526,32528,0],[32527,32528,32503,0],[32529,32530,32517,0],[32529,32528,32526,0],[32529,32526,32530,0],[32516,32531,32532,0],[32532,32531,32950,0],[32532,32950,32515,0],[32515,32950,22012,0],[32499,32529,32517,0],[22017,22018,32495,0],[22019,22020,32534,0],[32534,22020,32535,0],[23413,23419,32533,0],[32533,23419,32492,0],[23413,32533,32534,0],[23413,32534,32535,0],[23329,32536,32940,0],[32941,23414,32535,0],[23418,23416,49574,0],[32537,23418,49574,0],[32537,49574,23426,0],[23375,23376,23377,0],[32538,32539,32472,0],[32482,23371,32476,0],[32476,32477,32478,0],[32476,32478,32482,0],[32539,32454,32472,0],[32541,32477,23358,0],[32541,32540,23377,0],[32540,32541,23358,0],[23377,32540,23375,0],[32554,492,32542,0],[32554,32542,32553,0],[32545,32560,32543,0],[32544,32543,490,0],[32544,490,489,0],[489,488,32544,0],[32544,488,32546,0],[32545,32543,32544,0],[32545,32544,28773,0],[28773,32544,32546,0],[32546,487,28773,0],[32545,28774,32288,0],[32288,28774,506,0],[32288,506,32547,0],[32288,32547,32290,0],[32290,32547,32548,0],[32290,32548,32550,0],[32290,32550,32558,0],[32547,32549,32548,0],[32548,32549,32550,0],[32549,512,32550,0],[32550,512,32292,0],[512,513,32292,0],[32293,515,513,0],[513,515,32292,0],[32547,506,32551,0],[32552,28770,511,0],[511,32551,32552,0],[32551,32549,32547,0],[506,505,32551,0],[32551,505,32552,0],[32552,505,28770,0],[32542,490,32553,0],[32501,32554,32559,0],[32559,32554,32555,0],[32558,32557,32560,0],[32558,32560,32289,0],[32557,32558,33331,0],[32557,33331,32556,0],[32556,33331,32559,0],[32556,32559,32555,0],[32554,32553,32555,0],[32555,32553,32556,0],[32553,32560,32556,0],[32556,32560,32557,0],[32565,32499,32498,0],[32567,32498,32494,0],[32494,32498,32561,0],[32496,32495,32497,0],[32497,32495,32561,0],[32495,32494,32561,0],[22045,22019,32562,0],[32562,22019,22044,0],[32500,32563,32501,0],[32501,32563,32554,0],[32554,32563,492,0],[32564,500,494,0],[32567,32564,32565,0],[32498,32567,32565,0],[32567,32494,32566,0],[495,32566,499,0],[499,32566,22018,0],[32566,495,32567,0],[32568,496,23412,0],[23412,496,32493,0],[23412,23418,32568,0],[32568,23418,23411,0],[23396,23400,23348,0],[23396,23348,23405,0],[23343,23344,23341,0],[23341,23344,32569,0],[32569,23326,32577,0],[32577,23326,32570,0],[32575,32579,32572,0],[32858,32863,32573,0],[32572,32573,3409,0],[32572,3409,32574,0],[32858,32573,32572,0],[32571,32575,32570,0],[32572,32574,32575,0],[32575,32574,32576,0],[32575,32576,32570,0],[32574,3408,32576,0],[32576,3408,32577,0],[32570,32576,32577,0],[32569,32577,23341,0],[3408,32578,32577,0],[32577,32578,23341,0],[23341,32578,32580,0],[32580,32578,3406,0],[3406,3408,3407,0],[3406,32578,3408,0],[32570,23326,23327,0],[32571,32859,32579,0],[3406,23345,32580,0],[32581,3404,3405,0],[32581,3433,3404,0],[3433,32581,3431,0],[3431,32581,32586,0],[3430,32582,32729,0],[32729,32582,32583,0],[32583,32582,3439,0],[3439,32582,3438,0],[3438,32582,32585,0],[32585,32582,32586,0],[32586,32582,3430,0],[32585,32586,32587,0],[32586,32581,32587,0],[32587,32581,3405,0],[3430,32729,3429,0],[3430,3431,32586,0],[23281,23286,23280,0],[23280,23286,32588,0],[23280,32588,23277,0],[23277,32588,23278,0],[23277,23304,23280,0],[3412,32588,23286,0],[23286,23281,32590,0],[32590,23281,32589,0],[32589,23299,23282,0],[23299,32589,23281,0],[32589,23287,32590,0],[23287,32589,23282,0],[32590,3414,23286,0],[23294,23268,23263,0],[23294,23263,23293,0],[23298,23296,32591,0],[32591,23296,23293,0],[32591,23293,23263,0],[32592,23272,32721,0],[32592,32721,32612,0],[32715,32606,38791,0],[32595,38791,32717,0],[32717,38791,38790,0],[38790,38791,38792,0],[38790,38792,38789,0],[38789,38792,38550,0],[32596,32597,38549,0],[32632,32598,32599,0],[32618,32599,32600,0],[22671,32600,32601,0],[22672,32708,32602,0],[32602,32708,32603,0],[32603,32604,22674,0],[22674,32604,32605,0],[22674,32605,22679,0],[22679,32605,23242,0],[23242,32605,32616,0],[23243,23242,32616,0],[32606,32594,23243,0],[23244,32594,32593,0],[23244,32593,23245,0],[23247,32607,32608,0],[32608,32607,32613,0],[32613,32614,32609,0],[32609,32614,32610,0],[32610,32614,48904,0],[48904,32614,48924,0],[48904,48924,48905,0],[48905,48924,23658,0],[32608,32613,32611,0],[32611,48900,22143,0],[23246,32612,23247,0],[23247,32612,32607,0],[32607,32721,32613,0],[32613,32721,32614,0],[23657,32615,32723,0],[32722,32615,32614,0],[32614,32615,48924,0],[32614,32721,32720,0],[32614,32720,32722,0],[32612,32721,32607,0],[22674,32602,32603,0],[32600,22671,22683,0],[32600,22683,32617,0],[32617,22683,22670,0],[32600,32617,32618,0],[32619,32618,32631,0],[32620,32622,32621,0],[38543,32622,22708,0],[38543,22708,32623,0],[22710,32623,22708,0],[22708,32622,32624,0],[22706,32624,32625,0],[22706,32625,22707,0],[22705,22707,38833,0],[32624,32622,32625,0],[32618,32619,32599,0],[32705,32704,38834,0],[32693,32700,32635,0],[32693,32635,32627,0],[3271,32627,32636,0],[32636,32635,32638,0],[32621,32633,32620,0],[32620,32630,32631,0],[32619,32631,32630,0],[32619,32630,32599,0],[32599,32630,32632,0],[32620,32633,32630,0],[32630,32633,32634,0],[32634,49967,38835,0],[38835,49967,32628,0],[38835,32628,32638,0],[32635,32636,32627,0],[32628,49967,32629,0],[32629,49967,32633,0],[32684,32636,32658,0],[32628,32629,32637,0],[32628,32637,32658,0],[32628,32658,32638,0],[32638,32658,32636,0],[3259,32636,32684,0],[32639,3259,32685,0],[32639,32685,32640,0],[32640,32685,32686,0],[32640,32686,32641,0],[32641,32686,32642,0],[32641,32642,32681,0],[32681,32642,32643,0],[32650,32651,2539,0],[32645,32668,32669,0],[2538,32647,32648,0],[2538,32648,32649,0],[32649,32675,32650,0],[2539,32651,32671,0],[32671,32651,32652,0],[32652,38088,32656,0],[32654,38086,32655,0],[32655,38086,2621,0],[2621,2620,32655,0],[32657,32673,32656,0],[32657,32654,32655,0],[32654,32657,32653,0],[32653,32657,32656,0],[32652,32656,32671,0],[32655,2540,32657,0],[2540,32673,32657,0],[2547,2621,38086,0],[2547,38086,2622,0],[2625,2624,2600,0],[2600,2624,32691,0],[32662,32690,32689,0],[32658,32689,32684,0],[32689,32658,32662,0],[32662,32658,32637,0],[32662,32637,32659,0],[32660,32629,32661,0],[32661,32629,32621,0],[32629,32660,32637,0],[32637,32660,32659,0],[32663,2599,32664,0],[32691,32664,2600,0],[32664,32691,32690,0],[32664,32690,32663,0],[32663,32690,32662,0],[32662,32659,32663,0],[32663,32659,2599,0],[32664,2599,2600,0],[2597,38548,32665,0],[32665,32661,38543,0],[38543,32661,32621,0],[38543,32621,32622,0],[32667,38087,38591,0],[38591,38087,48994,0],[38084,38088,32643,0],[32643,38088,32644,0],[38086,32666,2622,0],[2622,32666,2623,0],[32646,32669,32648,0],[32646,32648,32647,0],[32648,32669,32668,0],[32648,32668,32649,0],[32670,2539,32671,0],[32670,32671,32672,0],[32672,32671,32674,0],[32674,32671,32656,0],[32674,32656,32673,0],[32673,38089,32674,0],[32650,32675,38075,0],[32650,38075,32651,0],[32651,38075,32644,0],[32644,38076,32676,0],[38071,32677,32679,0],[32678,32679,32680,0],[32680,32679,3274,0],[32678,32680,32683,0],[32678,32683,32682,0],[32682,32683,32681,0],[32681,32683,32641,0],[32682,32681,32676,0],[32682,38579,32678,0],[38579,32682,32676,0],[32681,32643,32676,0],[32676,32643,32644,0],[32678,38579,32679,0],[32679,38579,38071,0],[32640,32641,32683,0],[3260,32639,32680,0],[32680,32639,32683,0],[32683,32639,32640,0],[32686,32687,32642,0],[32685,3259,32684,0],[32684,32689,32688,0],[32688,32689,32690,0],[32688,32690,32692,0],[38591,32692,32667,0],[32666,32667,2623,0],[2623,32667,2624,0],[32667,32692,2624,0],[2624,32692,32691,0],[32690,32691,32692,0],[32684,32688,32685,0],[32685,32688,32686,0],[32686,32688,32687,0],[32687,32688,32692,0],[32687,32692,38591,0],[32693,32694,32699,0],[32699,32694,32695,0],[32695,32694,32696,0],[32696,32694,32627,0],[32627,3270,32696,0],[32697,32695,32698,0],[32698,3257,32806,0],[32698,32695,3257,0],[3257,32695,32696,0],[32695,32697,32699,0],[32699,32700,32693,0],[32627,32694,32693,0],[38834,32626,32705,0],[32705,32701,38784,0],[32705,38784,32703,0],[32703,38784,32702,0],[32702,32598,32703,0],[32598,32632,32703,0],[32705,32626,32700,0],[32632,32704,32703,0],[32703,32704,32705,0],[32617,22670,32706,0],[32617,32706,32618,0],[32618,32706,32631,0],[32702,38549,32598,0],[32598,38549,32707,0],[32598,32707,32599,0],[32599,32707,32600,0],[32600,32707,32601,0],[32601,38797,32708,0],[32708,38797,32709,0],[32710,38792,38793,0],[38793,38792,38791,0],[32601,32708,22672,0],[38800,32708,32709,0],[38800,32709,32710,0],[23272,32592,23273,0],[32713,23273,32711,0],[32712,32711,32612,0],[32612,32711,32592,0],[23273,32592,32711,0],[32712,32612,23246,0],[23246,23245,32712,0],[32712,23245,32593,0],[32593,32594,32715,0],[32715,32594,32606,0],[32715,38791,32595,0],[23273,32713,23274,0],[32713,32711,32714,0],[32716,32714,32715,0],[32716,32715,32595,0],[32715,32714,32712,0],[32712,32714,32711,0],[32712,32593,32715,0],[32713,32714,32716,0],[23289,23297,32718,0],[23289,32718,23290,0],[23298,23289,23296,0],[23289,23298,23297,0],[23297,32717,32718,0],[32718,32717,38798,0],[23290,32718,38798,0],[32716,32595,32717,0],[32716,32717,23297,0],[23271,32719,23272,0],[23272,32719,32720,0],[23272,32720,32721,0],[32720,32719,32722,0],[32615,32722,32719,0],[32615,32719,32723,0],[32723,32719,23271,0],[32724,32726,32725,0],[32725,32726,32727,0],[48922,3429,3428,0],[32728,32726,3432,0],[3432,32726,32724,0],[3429,48922,3431,0],[3431,48922,32728,0],[32726,32728,32727,0],[32584,3427,32729,0],[32584,32729,32583,0],[3429,32729,3427,0],[3427,32584,3426,0],[32730,3424,32731,0],[32814,32731,32732,0],[32731,3423,32732,0],[3423,32731,3424,0],[3420,38787,32746,0],[32746,38787,32733,0],[32746,32733,32794,0],[32746,32794,32791,0],[32791,32794,32734,0],[32791,32734,32735,0],[32735,32734,32772,0],[32735,32772,32773,0],[32735,32773,32736,0],[48970,32736,32782,0],[48970,32782,32783,0],[32757,32783,32737,0],[32757,32737,32738,0],[32738,32737,32789,0],[32738,32789,32739,0],[32789,32788,32740,0],[32740,32741,32739,0],[32739,32741,32742,0],[32742,32741,3465,0],[32754,3465,32743,0],[32753,32743,32751,0],[32746,32792,3395,0],[32746,3395,3420,0],[32792,32745,3395,0],[3395,32745,3394,0],[32745,32744,32747,0],[32745,32747,3394,0],[3394,32747,3391,0],[3391,48949,48947,0],[48947,48949,48954,0],[3391,3393,3394,0],[32747,32752,32748,0],[32747,32748,48949,0],[48949,32748,48952,0],[48950,48952,32751,0],[48950,32751,32749,0],[32750,32749,32751,0],[32751,32752,32753,0],[32753,32752,32744,0],[32744,32752,32747,0],[32752,32751,32748,0],[32751,32743,32750,0],[32750,32743,3465,0],[32743,32753,32754,0],[32738,32739,32742,0],[32753,48967,32754,0],[32754,48967,32755,0],[32755,48967,32756,0],[32757,32738,32755,0],[32757,32755,32756,0],[32738,32742,32755,0],[32755,32742,32754,0],[32740,32739,32789,0],[3461,32740,32788,0],[3461,32788,32758,0],[32758,32788,32759,0],[32760,32759,32787,0],[32760,32787,32761,0],[32761,32762,32763,0],[32763,32762,32764,0],[32764,32762,32765,0],[32764,32765,32766,0],[32766,32785,3456,0],[3456,32785,32786,0],[3456,32786,3455,0],[3455,32786,3482,0],[32767,32768,32801,0],[32801,32768,32784,0],[32801,32784,32769,0],[32802,32769,38545,0],[32802,38545,32770,0],[32770,38545,32797,0],[32771,48977,32697,0],[32697,48977,32772,0],[32772,48977,32773,0],[32775,38547,38546,0],[32775,38546,32769,0],[32776,32761,32777,0],[32777,32761,32778,0],[32778,32787,32779,0],[32779,32780,32783,0],[32777,32779,32781,0],[32779,32783,32781,0],[32781,32783,32782,0],[32775,32769,32784,0],[32775,32784,32776,0],[32776,32765,32762,0],[32768,32765,32776,0],[32768,32776,32784,0],[32785,32766,32768,0],[32768,32766,32765,0],[32785,32768,32786,0],[32776,32762,32761,0],[32778,32761,32787,0],[32787,32759,32790,0],[32790,32759,32788,0],[32790,32788,32789,0],[32790,32789,32737,0],[32783,32780,32737,0],[32737,32780,32790,0],[32790,32780,32787,0],[32792,32746,32791,0],[32792,32791,48969,0],[32792,32793,32745,0],[32745,32793,32744,0],[32744,32793,32753,0],[32794,38551,32734,0],[32782,32736,32774,0],[32774,32736,32773,0],[32795,38551,32794,0],[32795,32794,32733,0],[32795,32733,38787,0],[32772,38551,32697,0],[32697,32698,32771,0],[32771,32698,32796,0],[32800,32807,32808,0],[32808,32803,32799,0],[32799,3482,32800,0],[32802,32801,32769,0],[32807,32802,32798,0],[32798,32802,32770,0],[32801,32802,32800,0],[32800,32802,32807,0],[32800,32808,32799,0],[32767,32801,32800,0],[32767,32800,3482,0],[3251,32803,3252,0],[3252,32803,32809,0],[32796,32698,32806,0],[32805,32796,32804,0],[32805,32804,32798,0],[32798,32770,32805,0],[32796,32805,32771,0],[32771,32805,32797,0],[32797,32805,32770,0],[32798,3255,32807,0],[32807,3255,32808,0],[32808,3255,32809,0],[32808,32809,32803,0],[3255,32798,32804,0],[32796,32810,32804,0],[32811,3396,3440,0],[32811,3440,3397,0],[32811,3397,48975,0],[48975,3397,32812,0],[3396,32811,3422,0],[3422,32811,32813,0],[3422,32813,32814,0],[3422,32814,32732,0],[32816,32817,48937,0],[48937,32817,32818,0],[32817,32819,32818,0],[3398,32817,32816,0],[32811,48975,32813,0],[32813,48975,32815,0],[32813,32815,32814,0],[3479,3450,32821,0],[32821,3450,32820,0],[32823,32835,3484,0],[32823,3484,3483,0],[32823,3483,32820,0],[3484,3445,3483,0],[3450,32822,32820,0],[32820,32822,32823,0],[32821,32820,3468,0],[32824,32799,32825,0],[3251,3250,32825,0],[32825,3250,3249,0],[32824,32825,3453,0],[3453,32825,3249,0],[32833,32827,32828,0],[32833,32828,32835,0],[32835,32828,32836,0],[32836,32828,32829,0],[32829,32828,38773,0],[32829,38773,32830,0],[32830,38773,38780,0],[38780,38779,3382,0],[38780,3382,32830,0],[32830,32832,32829,0],[3382,32831,32830,0],[32831,3442,32832,0],[32832,3442,3443,0],[3442,32831,3383,0],[32830,32831,32832,0],[32833,32826,3246,0],[32833,3246,32827,0],[3451,32834,32822,0],[32822,32834,32823,0],[32833,32835,32834,0],[32834,32835,32823,0],[3484,32835,32836,0],[3484,32836,3443,0],[3443,32836,32832,0],[32832,32836,32829,0],[3452,3248,32826,0],[3248,3247,32826,0],[32826,3247,3246,0],[3251,3252,32837,0],[3330,3250,32839,0],[32839,3250,32838,0],[32837,3250,3251,0],[3250,32837,32838,0],[3248,3329,32840,0],[3248,32840,32841,0],[32841,32840,32843,0],[32841,32843,3245,0],[3245,32843,3313,0],[3313,32843,3314,0],[3245,3247,32841,0],[3313,3312,3245,0],[3245,3312,32842,0],[3244,32842,3312,0],[32842,38767,3245,0],[3327,32844,3314,0],[3310,3314,3307,0],[3307,3314,32845,0],[3307,32845,3315,0],[3315,32845,3291,0],[3314,32843,3327,0],[3314,32844,32845,0],[3291,32845,32844,0],[32837,3252,32846,0],[32837,32846,38596,0],[38596,32846,3269,0],[3269,38593,32852,0],[32851,32855,32848,0],[32851,32848,38587,0],[32850,38587,32847,0],[32849,32848,38592,0],[32849,3263,32848,0],[32848,3263,32847,0],[32850,38586,38587,0],[32855,32851,38599,0],[38595,32852,32853,0],[32853,32854,32839,0],[32852,38599,32853,0],[32853,38599,3332,0],[32853,3332,32854,0],[3330,32839,32854,0],[32847,38587,32848,0],[32848,32855,38592,0],[38592,32855,32852,0],[32846,3253,3269,0],[32858,32856,32857,0],[32858,32857,23315,0],[32856,32858,32579,0],[32579,32858,32572,0],[32856,32579,32859,0],[32856,32859,32860,0],[32860,23313,32857,0],[32857,32856,32860,0],[23310,32861,32862,0],[23316,32870,32863,0],[32863,32858,23315,0],[23315,23316,32863,0],[32864,32871,32865,0],[32871,32866,23279,0],[32871,23279,32865,0],[32865,23279,3411,0],[32865,3411,3434,0],[32869,23279,32866,0],[32869,32866,32867,0],[32867,32866,32870,0],[32870,23317,32867,0],[32867,23317,23318,0],[32867,23318,32868,0],[32867,32868,32869,0],[32866,32871,32870,0],[32863,32864,32573,0],[32863,32870,32871,0],[32871,32864,32863,0],[32874,21933,32873,0],[32874,32873,22097,0],[32874,22097,32875,0],[32872,32874,32877,0],[32874,32875,32877,0],[32877,32875,32876,0],[32876,32875,22095,0],[21937,22095,22083,0],[22083,22095,22082,0],[22095,21936,32876,0],[32876,21935,32877,0],[32874,32872,21933,0],[23762,23761,32878,0],[21811,21818,21809,0],[21809,21818,23754,0],[21823,21825,21951,0],[21825,21826,32879,0],[32879,32880,33008,0],[33004,32885,32882,0],[21988,33029,21989,0],[32879,21826,32883,0],[32879,32883,32884,0],[32879,32884,32880,0],[32885,32880,32884,0],[32880,32885,32881,0],[22114,32886,21916,0],[22113,21916,32887,0],[22113,32887,22112,0],[21916,32888,32887,0],[32887,32888,32889,0],[32889,32888,33045,0],[32890,32889,22111,0],[32889,32890,22112,0],[32889,22112,32887,0],[32892,32888,32891,0],[32891,32888,21915,0],[32891,21915,33041,0],[33041,33044,32891,0],[32891,33044,32892,0],[32892,32893,32888,0],[32888,32893,33045,0],[32886,22114,32895,0],[22115,22114,23666,0],[22115,23666,32901,0],[32901,23666,33049,0],[32901,33049,32896,0],[32896,32897,32899,0],[32899,32897,32898,0],[32900,32899,22137,0],[22117,22137,22118,0],[22137,32899,22136,0],[22136,32899,32898,0],[32901,32900,22117,0],[22117,22116,32901,0],[32900,32901,32896,0],[32900,32896,32899,0],[32900,22137,22117,0],[23666,23665,33049,0],[22135,32902,32905,0],[32905,32902,32907,0],[32909,32903,32912,0],[32909,32912,32911,0],[22149,32912,32921,0],[22149,32921,22151,0],[22136,22135,32905,0],[32908,32903,32904,0],[22136,32905,22138,0],[22138,32905,48925,0],[48925,32905,32908,0],[32908,32905,32907,0],[32903,32908,32907,0],[32906,22135,22134,0],[22135,32906,32902,0],[32904,32903,22143,0],[22143,32903,32909,0],[32910,32911,22146,0],[22146,32911,23255,0],[22146,22145,32910,0],[32910,22145,22144,0],[23255,32911,22149,0],[32912,22149,32911,0],[32910,32909,32911,0],[48926,32908,48901,0],[48926,48901,22142,0],[32908,48926,48925,0],[32912,32903,32913,0],[32915,32925,32916,0],[32916,32925,32917,0],[32919,32918,22154,0],[32918,32919,32917,0],[32917,32919,32916,0],[32919,22153,32916,0],[32916,22153,32915,0],[32915,22153,32914,0],[22154,32918,23235,0],[32920,32914,22151,0],[32913,48930,32912,0],[32912,48930,32921,0],[22147,23251,32922,0],[32922,23251,38802,0],[23243,32594,32922,0],[32922,32594,23244,0],[32922,23244,22147,0],[22147,23244,23254,0],[23254,23244,23252,0],[23236,32924,32923,0],[32924,32918,32927,0],[32925,22237,32926,0],[23236,32923,38805,0],[22332,38805,22335,0],[22332,38813,38805,0],[22335,38805,22236,0],[32923,32924,32927,0],[32927,32918,32925,0],[32925,32926,32927,0],[38805,32923,22236,0],[22236,32923,22240,0],[32927,32926,22240,0],[32927,22240,32923,0],[22180,22211,32928,0],[22210,32928,22211,0],[32929,22181,22193,0],[22193,22181,22222,0],[22194,22193,22221,0],[22221,22193,22222,0],[22194,32936,22193,0],[22193,32936,32931,0],[22193,32931,32930,0],[22186,32930,22188,0],[32930,32931,22188,0],[22188,32931,32932,0],[32932,32931,22250,0],[32933,22250,39403,0],[32933,39403,39402,0],[32933,39402,33083,0],[32934,32935,22246,0],[33083,33082,22251,0],[22251,33082,22252,0],[22250,32933,22251,0],[33083,22251,32933,0],[22186,32929,32930,0],[32930,32929,22193,0],[33061,32937,23716,0],[33061,23716,33060,0],[32936,22194,32937,0],[32931,32936,33061,0],[32931,33061,32938,0],[32931,32938,22250,0],[22025,22026,23330,0],[22025,23330,32939,0],[32939,32940,22025,0],[22025,32940,22024,0],[32939,23328,23329,0],[23329,32940,32939,0],[32940,32536,22023,0],[32940,22023,22024,0],[32941,22023,32536,0],[32941,22022,22023,0],[22025,22024,22033,0],[22033,22024,22034,0],[21930,23323,32942,0],[32944,23323,32943,0],[32944,32946,32942,0],[32942,32946,32945,0],[32945,21932,21931,0],[21931,21932,21975,0],[21932,32945,21933,0],[21933,32945,32946,0],[32873,21933,32946,0],[32873,32946,22098,0],[22098,32946,22093,0],[23323,32944,32942,0],[23323,22000,32943,0],[32944,32943,22093,0],[32944,22093,32946,0],[32945,21931,32942,0],[32947,21968,21969,0],[22003,22005,22088,0],[32948,23757,32949,0],[22086,22085,22081,0],[32525,22012,32950,0],[32956,22064,32951,0],[32959,32951,23902,0],[23902,32951,23903,0],[23903,32951,33403,0],[33403,32951,32952,0],[23896,23903,32953,0],[23910,23896,32953,0],[32951,22064,32952,0],[33403,32952,23911,0],[22067,22063,32954,0],[32954,22063,32955,0],[32955,22063,32956,0],[32956,32951,32959,0],[32956,32959,32955,0],[32955,32960,32954,0],[33404,22062,32954,0],[32958,32957,22079,0],[32958,22079,49799,0],[49799,22079,22078,0],[32957,32958,33404,0],[32957,23764,22079,0],[23764,49797,22079,0],[23802,33404,32954,0],[32954,22062,22067,0],[32959,32962,32960,0],[32959,23902,32962,0],[32960,32962,32961,0],[32960,32961,23801,0],[23801,32961,32964,0],[23801,32964,23800,0],[32965,32961,32963,0],[23897,32963,23901,0],[23901,32963,32962,0],[32962,32963,32961,0],[32963,23898,32965,0],[23798,32964,32966,0],[23798,32966,23803,0],[23798,23803,23796,0],[23796,23803,23804,0],[32964,32965,32966,0],[32966,32965,23805,0],[23805,32967,25618,0],[25618,32967,23806,0],[32967,23805,23898,0],[32965,23898,23805,0],[23805,23804,32966,0],[32967,32970,32968,0],[32968,32970,32969,0],[32968,32969,23885,0],[32968,23885,23899,0],[23899,23885,23844,0],[32968,23806,32967,0],[32970,32967,23898,0],[32970,23898,23897,0],[32969,32970,23897,0],[23845,23844,49800,0],[49800,23892,23891,0],[23845,49800,32971,0],[23846,32973,32975,0],[32975,32973,32974,0],[32975,32974,32976,0],[32976,32977,32985,0],[33907,32985,33366,0],[33907,33366,32978,0],[32980,32979,23888,0],[32980,23888,33388,0],[33388,23888,23887,0],[32982,32972,23890,0],[32982,23890,23889,0],[23888,32979,23889,0],[23889,32979,32982,0],[32972,32971,23890,0],[23890,32971,23891,0],[23891,32971,49800,0],[23846,32975,23809,0],[23809,32975,32983,0],[32983,32975,32976,0],[32989,32976,32984,0],[32984,32976,32985,0],[32987,32986,32980,0],[32980,32986,32979,0],[32979,32986,32988,0],[32979,32988,32982,0],[32982,32988,32978,0],[32983,32976,23810,0],[23810,32976,32989,0],[32991,32990,32984,0],[32984,32990,32989,0],[23810,32989,23812,0],[23812,32989,32990,0],[32971,32972,23845,0],[32973,23845,32974,0],[32974,23845,32972,0],[32992,22035,22028,0],[32995,22003,22088,0],[32994,32993,22087,0],[32994,32995,32993,0],[32993,32995,22088,0],[32998,21947,32997,0],[32997,21947,21946,0],[21946,21945,32999,0],[21940,21939,32999,0],[21940,32999,21955,0],[21955,32999,21954,0],[21954,32999,21945,0],[21946,32999,33000,0],[21946,33000,32997,0],[21997,33000,21939,0],[21939,33000,32999,0],[33001,33002,21986,0],[21979,33001,33003,0],[21986,33003,33001,0],[21962,21985,21919,0],[21965,21963,21985,0],[21919,21985,21963,0],[21981,21987,33007,0],[21981,33007,33004,0],[33004,32882,21994,0],[33004,21994,33005,0],[33004,33005,21981,0],[21994,32882,21988,0],[33004,33007,32881,0],[32881,33007,33006,0],[32881,33006,32880,0],[32880,33006,33008,0],[32881,32885,33004,0],[33007,21987,33002,0],[33002,21987,21986,0],[33001,33008,33002,0],[33008,33009,32879,0],[33008,33006,33002,0],[33008,33001,21951,0],[21950,21951,33001,0],[21951,33009,33008,0],[32879,33009,21825,0],[21821,21949,21938,0],[21938,23740,21821,0],[21802,23778,21801,0],[23754,23753,21808,0],[21802,21801,23767,0],[21808,21802,23767,0],[23767,21812,21808,0],[33011,21772,21773,0],[25614,25615,33935,0],[33935,33021,33012,0],[33012,33013,33935,0],[33935,33013,25614,0],[25613,33013,33014,0],[25613,33014,25616,0],[25616,33014,39341,0],[39342,33016,33017,0],[39342,33017,33018,0],[33019,33018,33021,0],[33019,33021,33020,0],[33021,33018,33017,0],[33017,33012,33021,0],[33017,33015,33012,0],[33017,33016,33015,0],[21809,21812,21813,0],[21812,21807,21799,0],[21812,21799,21813,0],[21814,21817,33022,0],[32882,33029,21988,0],[21989,33024,21915,0],[33024,21989,33026,0],[33026,21989,33025,0],[33026,33025,33027,0],[33027,33025,33040,0],[33027,33040,33028,0],[33026,33027,33024,0],[21989,33029,33025,0],[33025,33029,33030,0],[33030,32885,32884,0],[33025,33030,33040,0],[33040,33030,32884,0],[33040,32884,33031,0],[33034,39347,23681,0],[39347,33034,21833,0],[21833,33034,33035,0],[33035,33034,33033,0],[33035,33033,33036,0],[33036,33033,33032,0],[33036,33032,33037,0],[33032,33031,33037,0],[33037,33031,33038,0],[21953,33038,21952,0],[21826,21952,32883,0],[21952,33038,32883,0],[33034,33039,33033,0],[33028,33040,33033,0],[33028,33033,33039,0],[33027,33028,33024,0],[33024,33041,21915,0],[33024,33028,21914,0],[21914,33028,33039,0],[33033,33040,33032,0],[33032,33040,33031,0],[33029,32882,33030,0],[32885,33030,32882,0],[33042,32894,21912,0],[21912,33043,33042,0],[33042,33043,33044,0],[33044,33043,32893,0],[33044,32893,32892,0],[23670,33045,33043,0],[33043,33045,32893,0],[21910,23668,23669,0],[33045,23670,32889,0],[32889,23670,22111,0],[23663,22111,22110,0],[22110,22111,23670,0],[23667,22123,33048,0],[23664,23667,23665,0],[23665,23667,33049,0],[22101,23672,33046,0],[33046,23672,23673,0],[33046,23673,23674,0],[33046,23674,22100,0],[23710,23708,23717,0],[33047,22106,33050,0],[33047,33050,33053,0],[33048,33053,32897,0],[23667,32897,33049,0],[33049,32897,32896,0],[32897,23667,33048,0],[33053,33048,33047,0],[33050,33051,33052,0],[22132,22133,33052,0],[33052,22133,33050,0],[32897,33053,32898,0],[32898,33053,22133,0],[32898,22133,22134,0],[33050,22133,33053,0],[33154,33052,22125,0],[22125,33051,22124,0],[33038,32884,32883,0],[22125,22124,33055,0],[33055,22124,33054,0],[33055,33054,33056,0],[33055,33056,22200,0],[33056,33054,22197,0],[33056,22197,22225,0],[22225,22198,33056,0],[22125,33055,22126,0],[22126,33055,22127,0],[33057,23717,23708,0],[33057,23708,23707,0],[33057,23707,33058,0],[33059,23717,39406,0],[39406,23717,33077,0],[33057,33077,23717,0],[33061,39405,32938,0],[22250,32938,39403,0],[32937,33061,32936,0],[23702,23703,23676,0],[23699,33063,33062,0],[33062,33063,33064,0],[33064,33063,33151,0],[33065,39006,33136,0],[33136,39006,33098,0],[33136,33098,33066,0],[39012,33066,33067,0],[33065,33068,33135,0],[33065,33135,33069,0],[33064,33069,33062,0],[33062,33070,23699,0],[23699,33070,23722,0],[23722,33070,33071,0],[33070,33089,33071,0],[33071,33089,33072,0],[33073,33072,33078,0],[33073,39401,33074,0],[33076,33074,33075,0],[33076,33075,33077,0],[33077,33057,33058,0],[33077,33058,33076,0],[33058,23722,33076,0],[33074,33076,33072,0],[33076,23722,33071,0],[33072,33076,33071,0],[33072,33134,33078,0],[33086,33080,33082,0],[33082,33081,32934,0],[32935,33081,33106,0],[33106,39360,32935,0],[32935,39360,22254,0],[22254,39360,22255,0],[33081,32935,32934,0],[33083,33084,33086,0],[33086,33084,33079,0],[33083,33086,33082,0],[33084,33083,39402,0],[39401,33073,33084,0],[39401,33084,39402,0],[33079,33084,33078,0],[33084,33073,33078,0],[33080,33081,33082,0],[33106,33081,33085,0],[33085,33080,33107,0],[33107,33080,39359,0],[33086,33079,33108,0],[33108,33079,33087,0],[33088,33135,33068,0],[33069,33135,33062,0],[33070,33062,33089,0],[33089,33134,33072,0],[33087,33088,33090,0],[33111,33091,33092,0],[33093,33094,33124,0],[38950,33094,38951,0],[38951,33094,39011,0],[38951,39011,38953,0],[33095,39009,33096,0],[33097,33098,38902,0],[38902,33098,33099,0],[33098,33097,33066,0],[33096,33101,33100,0],[33092,33101,39010,0],[39010,33094,33093,0],[33096,39009,33101,0],[33125,33124,33094,0],[33116,33124,33102,0],[33102,33124,33103,0],[33104,33133,22257,0],[33115,33105,22256,0],[33115,22256,33113,0],[33113,22256,39360,0],[33114,39360,33106,0],[33114,33106,33085,0],[33114,33085,33107,0],[33107,33108,33109,0],[33109,33108,39385,0],[33109,39385,33110,0],[33110,39385,33111,0],[33110,33111,33092,0],[33110,33092,33116,0],[33116,33092,33093,0],[33091,33111,39385,0],[33091,39385,33090,0],[33109,33112,33107,0],[33107,33112,33114,0],[33103,33114,33102,0],[33103,33113,33114,0],[33115,33104,33105,0],[33105,33104,22257,0],[33114,33112,33102,0],[33102,33112,33116,0],[33116,33112,33109,0],[33116,33109,33110,0],[22257,33133,22258,0],[22258,39396,22259,0],[33121,33117,39362,0],[33121,39362,33122,0],[33122,39362,39380,0],[33122,39380,33120,0],[33120,39380,33118,0],[23057,33119,23056,0],[33118,39377,33120,0],[23059,39358,23058,0],[33122,33120,33123,0],[33123,23058,39358,0],[22312,22259,33117,0],[22312,33117,22311,0],[33121,22311,33117,0],[33116,33093,33124,0],[33103,33124,33125,0],[33103,33125,39353,0],[33104,39353,39351,0],[33104,39351,33126,0],[33127,33126,33128,0],[33127,33128,33129,0],[33130,39376,33131,0],[33131,39376,39364,0],[33131,39364,39363,0],[39396,39363,39361,0],[39396,39361,22259,0],[38892,33130,33129,0],[33129,33130,33131,0],[33129,33131,33127,0],[33129,33132,38892,0],[33104,33126,33133,0],[22258,33133,39396,0],[33104,33115,39353,0],[39353,33115,33103,0],[33087,33090,39385,0],[33087,39385,33108,0],[33086,33108,39359,0],[39359,33108,33107,0],[22255,39360,22256,0],[33087,33079,33078,0],[33087,33078,33088,0],[33088,33078,33134,0],[33134,33089,33135,0],[33135,33089,33062,0],[23699,23722,23701,0],[39012,33136,33066,0],[33064,33065,33069,0],[33068,33065,33136,0],[33068,33136,39012,0],[33140,33139,33141,0],[33145,23694,33144,0],[33144,23694,33143,0],[33142,21877,21876,0],[33142,21876,33143,0],[33146,21857,33147,0],[33147,21857,21858,0],[38903,33149,33148,0],[33149,39002,39004,0],[33149,39004,33148,0],[33150,33140,33146,0],[33146,33140,33141,0],[33146,33141,33153,0],[33140,39007,33139,0],[33139,39007,33138,0],[33138,39007,39005,0],[33138,39005,33137,0],[33137,39005,33063,0],[33063,39005,33151,0],[33065,39003,39006,0],[39003,33065,33064,0],[39003,33064,33151,0],[33146,33147,33150,0],[33148,33150,38903,0],[38903,33150,33147,0],[33152,33144,21876,0],[33152,21876,21875,0],[21863,33153,33145,0],[21863,33145,33152,0],[33152,33145,33144,0],[33153,21863,33146,0],[33146,21863,21857,0],[23694,33145,33153,0],[33153,33141,23695,0],[33153,23695,23724,0],[23724,23694,33153,0],[23695,33141,33139,0],[23695,33139,23696,0],[23696,33139,23698,0],[33137,33063,23699,0],[22132,33155,33156,0],[33156,32906,22134,0],[32907,32902,32913,0],[32913,32902,33157,0],[33156,33155,32906,0],[32906,33155,33157,0],[33158,48929,33159,0],[33158,33159,33155,0],[33155,33159,33157,0],[33157,33159,48930,0],[48930,33159,48929,0],[33155,23660,33158,0],[33158,33160,32920,0],[32920,33160,32914,0],[33158,32920,48929,0],[48930,32913,33157,0],[22129,33161,33162,0],[32925,32918,32917,0],[23235,32918,32924,0],[32925,32915,33162,0],[22237,33162,33161,0],[32925,33162,22237,0],[32914,33160,32915,0],[32915,33160,33162,0],[33162,33160,22129,0],[22128,22237,33161,0],[21826,23748,21827,0],[21827,23728,21828,0],[21830,33163,21831,0],[23728,33163,21828,0],[21828,33163,21830,0],[23731,21827,23748,0],[33031,32884,33038,0],[21813,21799,21798,0],[33165,33166,23786,0],[33166,33164,21794,0],[21794,33164,33251,0],[33251,33164,33255,0],[21794,33251,21795,0],[33164,33166,39229,0],[33247,33167,33270,0],[33247,33270,33176,0],[33176,33270,33196,0],[33176,33196,33175,0],[33169,33168,33170,0],[33171,33170,33172,0],[33191,33173,33171,0],[33176,33177,39230,0],[39230,33177,33248,0],[33245,33248,33178,0],[33179,33178,33192,0],[33179,33199,33180,0],[21726,33197,25660,0],[25660,33197,33181,0],[33200,33181,33182,0],[33182,33190,33236,0],[33236,33190,33193,0],[33236,33193,33183,0],[33183,33193,33184,0],[33183,33184,33194,0],[33183,33194,33185,0],[33186,33268,33188,0],[33188,21763,33187,0],[33188,33187,33189,0],[33188,33189,33224,0],[33185,33186,33224,0],[33185,33224,33183,0],[33183,33224,33232,0],[21749,21748,21750,0],[21748,33187,21750,0],[21750,33187,21751,0],[33187,21748,33189,0],[21746,33222,33189,0],[33189,33222,33224,0],[21746,33189,21748,0],[33182,33181,33197,0],[33182,33197,33191,0],[33182,33191,33190,0],[33173,33191,33198,0],[33173,33198,33192,0],[33192,33198,33199,0],[33192,33199,33179,0],[33173,33192,33174,0],[33173,33174,33171,0],[33191,33172,33190,0],[33190,33172,33193,0],[33184,33193,33194,0],[33168,33195,33266,0],[33266,33195,21755,0],[21755,33195,33269,0],[33269,33195,33196,0],[33168,33169,33195,0],[33170,33168,33194,0],[33172,33170,33194,0],[33172,33194,33193,0],[33197,33198,33191,0],[33197,21726,33198,0],[33198,21726,33199,0],[21726,21725,33199,0],[33180,33199,21725,0],[25660,33181,21727,0],[21727,33181,33200,0],[33200,33201,21729,0],[21729,33201,33235,0],[21729,33235,33202,0],[21730,33202,21731,0],[33203,21731,33216,0],[33203,33216,33204,0],[33204,33216,21734,0],[33207,33206,33208,0],[33208,33205,33209,0],[33209,33205,21734,0],[33212,33210,21741,0],[33206,33205,33208,0],[21734,33205,39204,0],[39204,33205,33206,0],[33206,33207,21735,0],[21735,33207,33211,0],[33207,33208,33210,0],[33210,33208,33225,0],[33225,33208,33209,0],[33210,33212,33207,0],[33207,33212,33213,0],[33213,33212,33214,0],[21740,33214,21741,0],[33214,33212,21741,0],[33207,33213,33211,0],[33211,33213,33215,0],[33215,33213,21737,0],[21737,33213,33214,0],[21734,33216,33217,0],[33228,33220,33219,0],[33219,33220,33221,0],[33222,33223,33224,0],[33228,33219,21744,0],[21744,33219,21745,0],[21734,33217,33209,0],[33209,33217,33225,0],[33227,33228,33226,0],[33226,33228,21744,0],[33226,21744,21743,0],[33225,33217,33218,0],[33225,33218,33220,0],[33227,33225,33220,0],[33227,33220,33228,0],[33216,21731,33234,0],[33216,33234,33217,0],[33234,33235,33229,0],[39338,33229,33230,0],[39338,33230,33231,0],[33224,33223,33232,0],[33232,33223,33231,0],[33232,33231,33183,0],[33183,33231,33236,0],[33217,33234,33229,0],[33217,33229,33218,0],[33218,33229,39338,0],[33218,39338,33233,0],[33221,33220,33233,0],[33233,33220,33218,0],[33230,33235,33237,0],[33237,33235,33201,0],[33202,33235,33234,0],[33202,33234,21731,0],[33235,33230,33229,0],[33230,33236,33231,0],[33230,33237,33236,0],[33182,33236,33237,0],[33182,33237,33200,0],[33200,33237,33201,0],[33200,21729,21727,0],[21725,21724,33180,0],[33180,21724,21723,0],[33180,21723,33306,0],[33306,21723,33307,0],[33307,21723,33239,0],[33307,33239,33305,0],[25663,25664,33240,0],[33240,33305,21721,0],[21721,33305,33239,0],[21721,33239,21722,0],[21722,33239,21723,0],[21721,25661,33240,0],[25663,21716,25664,0],[33180,33306,33179,0],[33238,33305,33240,0],[33240,25664,33238,0],[33179,33308,33241,0],[33241,33308,33281,0],[33241,33281,33244,0],[33244,33281,33242,0],[33285,33243,33319,0],[33285,33319,33242,0],[33245,33313,33246,0],[33245,33246,33248,0],[33248,33246,39230,0],[39230,33247,33176,0],[33176,33175,33177,0],[33245,33178,33244,0],[33244,33178,33241,0],[33249,33192,33178,0],[33174,33192,33249,0],[33174,33249,33175,0],[33249,33248,33175,0],[33175,33248,33177,0],[33171,33174,33170,0],[33170,33174,33169,0],[33174,33175,33169,0],[33169,33175,33196,0],[33169,33196,33195,0],[33166,33165,39229,0],[39229,33165,33167,0],[33167,33165,21757,0],[21757,33165,33260,0],[33260,33165,23786,0],[33260,23786,21792,0],[21792,23790,21758,0],[21758,23790,21787,0],[21787,23790,23788,0],[33164,39229,33250,0],[33250,33246,33259,0],[21795,33251,33252,0],[33252,33251,21837,0],[21838,21837,33253,0],[33251,33255,33253,0],[33251,33253,21837,0],[21838,33253,33256,0],[21838,33256,21896,0],[21896,33256,23727,0],[23727,33256,33257,0],[33257,33310,33258,0],[33258,33310,33254,0],[33258,33254,33259,0],[33250,33259,33164,0],[33259,33254,33255,0],[33259,33255,33164,0],[21896,21836,21838,0],[33265,21787,21760,0],[33265,21760,33263,0],[33263,21760,21761,0],[21787,33265,21758,0],[33265,33261,21758,0],[33260,33261,21757,0],[21757,33261,33262,0],[33261,33265,33262,0],[21754,33265,33263,0],[21753,21754,21752,0],[21752,21754,33263,0],[21780,21762,21752,0],[21752,21762,33264,0],[21780,21752,33263,0],[21754,21756,33265,0],[33262,33265,21756,0],[21755,21754,21753,0],[21753,33267,33266,0],[33267,33268,33186,0],[33188,33268,33264,0],[21752,33267,21753,0],[21755,33269,21756,0],[21756,33269,33262,0],[33262,33269,33270,0],[33262,33270,21757,0],[21757,33270,33167,0],[33270,33269,33196,0],[21753,33266,21755,0],[33185,33194,33271,0],[33266,33271,33168,0],[33168,33271,33194,0],[33185,33271,33186,0],[33186,33271,33267,0],[33273,25604,25606,0],[33273,25606,21750,0],[33273,21750,21778,0],[21778,21750,33272,0],[33273,21765,25604,0],[25626,21779,33274,0],[33274,21781,33275,0],[33274,33275,25638,0],[25626,33274,25625,0],[25625,33274,25638,0],[21786,33275,21781,0],[25625,25638,33276,0],[25625,33276,25632,0],[25629,25628,25623,0],[33277,23744,33252,0],[33277,33252,21837,0],[39346,21886,21845,0],[33320,21846,21844,0],[33320,33278,33315,0],[33244,33314,33245,0],[33320,21843,33278,0],[33311,33279,33258,0],[33258,33279,33280,0],[33280,33279,21839,0],[33280,21839,33257,0],[33280,33257,33258,0],[33278,21840,33279,0],[33281,33284,33285,0],[33285,33299,33296,0],[33296,33299,33286,0],[33292,21718,21717,0],[33292,21717,33304,0],[33292,33304,33288,0],[39231,33288,33291,0],[39231,33291,33289,0],[39231,33289,39233,0],[21869,39233,25703,0],[25703,39233,33289,0],[25702,33291,33290,0],[25701,21678,33290,0],[33290,21678,25702,0],[33289,33291,21676,0],[21676,33291,25702,0],[21718,33292,33287,0],[33287,33292,33293,0],[33293,33318,33294,0],[33286,33293,33294,0],[33286,33294,33295,0],[33287,33293,33286,0],[33296,33286,33297,0],[33297,33286,33295,0],[33285,33296,33243,0],[33285,33242,33281,0],[33296,33297,33243,0],[33243,33297,21849,0],[21849,33297,33295,0],[33299,33298,33286,0],[33286,33298,33287,0],[33287,33298,21718,0],[33282,33299,33284,0],[33282,33284,33281,0],[33285,33284,33299,0],[33299,33282,33298,0],[33282,33283,33298,0],[33298,33283,21718,0],[21868,25703,33300,0],[33301,33300,21676,0],[21676,33300,25703,0],[33301,33302,33300,0],[33302,25704,33300,0],[21668,25704,33302,0],[33291,33303,33290,0],[33290,33303,33304,0],[33288,33304,33303,0],[33305,33238,33283,0],[33305,33283,33307,0],[33307,33283,33282,0],[33306,33307,33179,0],[33179,33307,33308,0],[33308,33307,33281,0],[33281,33307,33282,0],[21835,21898,33163,0],[33163,21898,33309,0],[33256,33253,33310,0],[33256,33310,33257,0],[33254,33310,33253,0],[33311,33312,33313,0],[33245,33314,33313,0],[33313,33314,33311,0],[33314,33315,33311,0],[33311,33315,33279,0],[33279,33315,33278,0],[33316,21851,21850,0],[33316,21850,33317,0],[33317,21850,21890,0],[33317,21890,33295,0],[33295,33294,33317,0],[33318,33316,33317,0],[33318,33317,33294,0],[33318,39234,33316,0],[33316,39234,21870,0],[33319,33243,21848,0],[33242,33319,33315,0],[33244,33242,33314,0],[33314,33242,33315,0],[33315,33319,33320,0],[33320,33319,21848,0],[21847,21846,21848,0],[21848,21846,33320,0],[33312,33258,33259,0],[33312,33311,33258,0],[23783,23771,21797,0],[33321,25647,23773,0],[23773,25652,33321,0],[25651,33321,25652,0],[25647,33321,25646,0],[33011,23808,21772,0],[32510,32507,33323,0],[32513,33323,33324,0],[33325,33324,32514,0],[32513,33324,33325,0],[32513,33325,23836,0],[23834,33325,32514,0],[23833,32505,33326,0],[23833,33326,33327,0],[33327,33326,33328,0],[33327,33328,33329,0],[49567,33329,32504,0],[49567,32504,32502,0],[33330,32502,33331,0],[33331,32287,33330,0],[33331,32502,32559,0],[32559,32502,32503,0],[32559,32503,32501,0],[32504,33329,32527,0],[32527,33329,33328,0],[33328,33326,32527,0],[23831,33332,33338,0],[33335,33334,518,0],[517,518,33336,0],[517,33336,32285,0],[33335,33337,33334,0],[33334,33337,33333,0],[33333,33337,33374,0],[33338,28613,23831,0],[33327,33329,23831,0],[23831,33329,33332,0],[33339,32523,32525,0],[33339,32525,32950,0],[33339,32950,32531,0],[32531,32516,33339,0],[33339,32516,32518,0],[28753,1123,28752,0],[28752,1123,33341,0],[1123,28753,33340,0],[33340,28753,28754,0],[33342,28752,33341,0],[33341,1125,33342,0],[1125,28749,28750,0],[28749,1125,1119,0],[28750,33342,1125,0],[1123,33340,33343,0],[33343,33340,28758,0],[28758,33346,33343,0],[33343,33346,33344,0],[1122,33344,33345,0],[28756,33345,33346,0],[33346,33345,33344,0],[28756,33359,33345,0],[33345,33359,33347,0],[33349,33348,31130,0],[31133,33359,33353,0],[33353,33359,33358,0],[33353,33358,33350,0],[33350,33351,32450,0],[32450,33351,483,0],[33350,32448,33353,0],[33353,32448,33352,0],[33353,33352,31132,0],[33353,31132,31133,0],[31130,33348,31131,0],[31131,33348,31133,0],[1122,33347,33348,0],[1121,1122,33348,0],[1121,33348,33354,0],[33354,33348,33349,0],[33356,33355,1126,0],[33355,33349,31130,0],[33354,33349,33357,0],[33354,33357,1118,0],[33354,1118,1119,0],[33357,33349,33356,0],[1116,33356,1126,0],[33355,33356,33349,0],[1118,33357,1117,0],[1117,33357,33356,0],[511,28770,28771,0],[28771,28618,511,0],[33358,28757,33351,0],[33350,33358,33351,0],[31133,33348,33359,0],[33348,33347,33359,0],[502,501,28759,0],[1119,1121,33354,0],[28756,28759,28757,0],[32419,31177,33360,0],[23895,23849,33365,0],[33365,23849,33361,0],[23894,23909,23842,0],[33386,33361,33362,0],[33362,33363,33389,0],[33389,33363,33364,0],[33364,33385,23870,0],[33361,33386,33365,0],[33365,33386,23887,0],[23887,23895,33365,0],[32981,32977,48889,0],[32974,48889,32976,0],[32976,48889,32977,0],[32985,32977,33366,0],[32978,33366,32982,0],[32982,33366,32981,0],[32981,33366,32977,0],[23879,33368,23881,0],[33368,33367,23881,0],[23881,33367,23882,0],[23878,23875,23854,0],[33369,23835,23834,0],[33369,23834,33383,0],[33371,33370,33372,0],[33371,33372,33378,0],[33378,33372,33335,0],[33378,33335,33373,0],[33335,33372,33337,0],[33337,33372,33374,0],[33374,33372,33370,0],[33374,33370,33375,0],[33375,28613,33374,0],[33374,28613,33338,0],[28612,33371,33376,0],[33377,28608,33376,0],[33373,33377,33378,0],[33378,33377,33376,0],[33376,28617,28612,0],[33370,33371,28612,0],[33376,33371,33378,0],[542,28610,28609,0],[541,28609,524,0],[541,524,539,0],[524,28609,523,0],[542,28616,28610,0],[28610,28616,28611,0],[544,33379,33381,0],[33381,33380,33408,0],[33381,33408,544,0],[544,546,545,0],[544,33408,547,0],[33379,28577,33381,0],[33381,28577,33380,0],[33382,33369,33383,0],[33383,23863,33382,0],[23858,23824,23868,0],[23868,33384,23876,0],[23876,33384,33362,0],[33362,33384,33363,0],[23876,23857,23868,0],[33363,33384,33364,0],[33364,33384,33385,0],[33386,33362,33389,0],[33386,33389,33387,0],[33386,33387,33388,0],[33388,32987,32980,0],[33388,23887,33386,0],[33388,33387,32987,0],[32987,48886,33390,0],[33392,33390,33391,0],[33906,33391,48884,0],[32987,33390,32986,0],[32986,33390,33392,0],[33392,33393,32988,0],[32988,33909,32978,0],[32978,33909,33907,0],[33392,32988,32986,0],[33389,33364,33387,0],[23828,28614,25574,0],[25574,28614,25575,0],[23918,25535,23826,0],[33394,23922,33395,0],[33394,33395,23919,0],[23917,23918,33395,0],[23917,33395,33396,0],[33397,25578,23821,0],[33398,33395,23922,0],[33395,33398,33396,0],[33396,33398,33399,0],[33396,33399,33397,0],[33784,25580,23927,0],[25580,33400,23927,0],[23927,33400,23925,0],[25581,33784,23927,0],[25580,25579,33399,0],[33399,25579,33397,0],[25578,33397,33797,0],[33797,33397,25579,0],[23915,23916,23821,0],[23917,33396,23916,0],[33396,33397,23916,0],[23916,33397,23821,0],[25575,23829,33375,0],[33332,33329,49567,0],[518,33334,33401,0],[33401,33334,32286,0],[32287,32286,49566,0],[32287,49566,33330,0],[518,33401,33336,0],[33334,33333,32286,0],[33402,23914,22010,0],[33403,23911,32953,0],[23903,33403,32953,0],[32952,22065,23913,0],[23913,22065,22010,0],[22064,22065,32952,0],[32958,49799,33404,0],[22062,33404,49799,0],[33322,23902,23903,0],[32289,32560,32545,0],[517,32285,33405,0],[33405,32285,516,0],[33405,516,33406,0],[530,531,33406,0],[531,521,33405,0],[33405,521,517,0],[522,521,33407,0],[521,531,33407,0],[531,33405,33406,0],[28711,28631,28720,0],[28721,28637,32277,0],[28635,28636,28656,0],[537,33407,536,0],[537,536,535,0],[33407,537,524,0],[539,538,540,0],[33408,33380,28576,0],[33408,28576,547,0],[33428,33441,33429,0],[33429,33441,33410,0],[33412,33411,33483,0],[33412,33483,33413,0],[33461,23930,33414,0],[33414,23930,33780,0],[33423,33416,33422,0],[33422,33416,33430,0],[33417,33418,25564,0],[33426,33427,33419,0],[33420,33412,33421,0],[33421,33412,33489,0],[33489,33488,33421,0],[33422,33421,33423,0],[33415,33423,33424,0],[33423,33421,33424,0],[33414,33780,33425,0],[33414,33425,33460,0],[33460,33425,33487,0],[33425,33424,33487,0],[33487,33424,33488,0],[33415,33424,33425,0],[33415,33425,33780,0],[33422,33419,33420,0],[33419,33422,33430,0],[33422,33420,33421,0],[33419,33427,33428,0],[33428,33427,33409,0],[25568,33427,33426,0],[25568,33426,25563,0],[33428,33429,33419,0],[33419,33429,33420,0],[33420,33429,33412,0],[33489,33412,33413,0],[33429,33410,33411,0],[33429,33411,33412,0],[33417,25563,33418,0],[33418,25563,33430,0],[25563,33426,33430,0],[33419,33430,33426,0],[33400,49563,23925,0],[25554,25548,33445,0],[33445,25548,25549,0],[25549,33431,33446,0],[33446,33431,33432,0],[33433,33510,33447,0],[33447,33510,33434,0],[33447,33434,33435,0],[33435,33434,33436,0],[33435,33436,33543,0],[33542,33543,33525,0],[33438,33514,33502,0],[33502,33514,33439,0],[33440,33410,33504,0],[33504,33410,33494,0],[33494,33410,33441,0],[33442,33441,33428,0],[33442,33428,33409,0],[33538,25545,33443,0],[33443,33444,33448,0],[33448,33444,25547,0],[33452,33448,33445,0],[33452,33445,25549,0],[25549,33446,33452,0],[33446,33432,33453,0],[33453,33432,33433,0],[33453,33433,33447,0],[33537,33443,33449,0],[33449,33443,33448,0],[33449,33448,33452,0],[33449,33452,33450,0],[33451,33450,33446,0],[33451,33446,33453,0],[33446,33450,33452,0],[33443,25545,33444,0],[25545,25546,33444,0],[25545,33538,33495,0],[33495,33494,33442,0],[33410,33440,33411,0],[33411,33440,33735,0],[33455,33454,33456,0],[33455,33456,33484,0],[33754,33476,33752,0],[33493,33752,33751,0],[33493,33751,33492,0],[33492,33751,33457,0],[33414,33460,33459,0],[33414,33459,33461,0],[33461,33459,33458,0],[33463,33462,33468,0],[33465,33463,33464,0],[33465,33464,33481,0],[33465,33481,23946,0],[33466,23929,23931,0],[23931,33462,33463,0],[33462,23931,33458,0],[33458,23931,33461,0],[23931,33463,33466,0],[33466,33463,33465,0],[33462,33458,33467,0],[33470,33469,33727,0],[33473,33472,23964,0],[33473,23964,23963,0],[23965,33472,23966,0],[23965,23966,23973,0],[33472,33756,23966,0],[23966,33756,33755,0],[23966,33755,33480,0],[23968,33479,24009,0],[23968,23967,33480,0],[23967,23966,33480,0],[33467,33474,33758,0],[33755,33748,33747,0],[33755,33747,33745,0],[33755,33745,33480,0],[33480,33745,33475,0],[33478,33476,33753,0],[33753,33477,33761,0],[33753,33761,33759,0],[33759,33478,33753,0],[33746,33478,23970,0],[33746,23970,33479,0],[33475,33746,33479,0],[33467,33758,33468,0],[33468,33758,33469,0],[33462,33467,33468,0],[33463,33468,33464,0],[33481,33464,33469,0],[33469,33470,33481,0],[33481,33470,23947,0],[33754,33752,33456,0],[33454,33455,33482,0],[33482,33455,33483,0],[33483,33455,33484,0],[33483,33484,33413,0],[33493,33492,33487,0],[33487,33492,33491,0],[33459,33486,33490,0],[33459,33490,33458,0],[33486,33459,33491,0],[33459,33460,33491,0],[33491,33460,33487,0],[33488,33489,33493,0],[33493,33489,33485,0],[33485,33489,33484,0],[33484,33489,33413,0],[33488,33493,33487,0],[33490,33744,33747,0],[33457,33744,33491,0],[33744,33490,33486,0],[33744,33486,33491,0],[33491,33492,33457,0],[33493,33485,33752,0],[33752,33485,33484,0],[33752,33484,33456,0],[33747,33467,33490,0],[33490,33467,33458,0],[33437,33543,33436,0],[33447,33540,33453,0],[33453,33540,33451,0],[25554,33445,25547,0],[25547,33445,33448,0],[33494,33495,33504,0],[33503,33498,33438,0],[33438,33498,33539,0],[33438,33539,33499,0],[33499,33539,33541,0],[33525,33500,33542,0],[33496,33497,33502,0],[33502,33497,33501,0],[33502,33501,33503,0],[33502,33503,33438,0],[33494,33441,33442,0],[33495,33538,33504,0],[33504,33537,33440,0],[33440,33537,33496,0],[33505,25550,556,0],[33507,33506,559,0],[559,33506,558,0],[558,33506,557,0],[556,557,33505,0],[33505,557,33506,0],[33431,33509,33432,0],[33509,33431,33505,0],[33431,25549,33505,0],[33505,25549,25550,0],[33505,33506,33509,0],[33509,33506,33507,0],[33509,33507,33432,0],[33432,33507,33433,0],[33433,33507,33510,0],[33434,33511,33518,0],[33600,33597,33517,0],[33517,33512,33437,0],[33437,33512,33513,0],[33513,33523,33516,0],[33541,33607,33610,0],[33541,33610,33499,0],[33438,33499,33611,0],[33438,33611,33514,0],[33515,33439,33736,0],[33515,33736,33454,0],[33541,33500,33607,0],[33607,33500,33525,0],[33516,33437,33513,0],[33437,33516,33543,0],[33437,33436,33517,0],[33517,33436,33518,0],[33518,33436,33434,0],[33518,33601,33517,0],[33517,33601,33600,0],[33517,33597,33512,0],[33512,33597,33544,0],[33512,33544,33519,0],[33520,33521,34466,0],[34466,33521,33522,0],[33522,33560,608,0],[608,33560,34955,0],[34955,34956,607,0],[607,34956,606,0],[33512,33519,33513,0],[33513,33519,33523,0],[33516,33523,33524,0],[33516,33524,33525,0],[33523,33519,33526,0],[33528,33526,33536,0],[33528,33536,33724,0],[33721,33724,33529,0],[33531,33532,33533,0],[33533,612,28562,0],[33533,33532,33534,0],[33533,33534,612,0],[28563,612,604,0],[28563,604,28564,0],[33718,33530,609,0],[609,33530,33535,0],[33535,33530,33529,0],[33529,33724,33535,0],[33535,33724,33536,0],[33535,33536,34466,0],[33519,33520,33526,0],[33520,33536,33526,0],[33520,34466,33536,0],[33450,33451,33498,0],[33450,33498,33503,0],[33450,33503,33501,0],[33537,33501,33497,0],[33537,33497,33496,0],[33450,33501,33449,0],[33449,33501,33537,0],[33537,33538,33443,0],[33504,33538,33537,0],[33498,33451,33539,0],[33539,33540,33541,0],[33500,33541,33542,0],[33539,33451,33540,0],[33543,33542,33435,0],[33540,33542,33541,0],[33544,33597,33545,0],[33544,33545,33558,0],[33557,33546,34994,0],[33547,34994,34996,0],[33547,34996,33548,0],[33547,33555,34953,0],[33551,33552,34959,0],[34959,33552,606,0],[34959,606,34956,0],[606,33552,605,0],[605,33552,33554,0],[33554,573,33553,0],[33554,33553,604,0],[603,33553,574,0],[574,33553,573,0],[33552,33551,33554,0],[573,33554,33550,0],[33554,33551,33550,0],[33550,33555,572,0],[572,33555,33547,0],[33547,33556,34994,0],[34994,33556,33557,0],[33557,33559,33558,0],[33558,33559,33561,0],[33561,33559,33521,0],[33561,33521,33520,0],[33559,33560,33521,0],[33521,33560,33522,0],[33546,33557,33558,0],[33544,33558,33519,0],[33561,33520,33519,0],[33519,33558,33561,0],[33556,33547,34953,0],[28591,33569,28705,0],[28601,33569,28589,0],[28590,33563,28569,0],[28598,33564,33565,0],[33564,28592,28593,0],[28595,33565,28593,0],[33564,28593,33565,0],[33565,28596,28598,0],[33563,33564,28598,0],[33563,28598,28569,0],[28591,33563,28590,0],[33566,28570,33592,0],[28570,33566,28569,0],[28569,33566,28590,0],[28595,33574,33567,0],[33567,33574,28693,0],[33568,33590,33567,0],[562,33568,28599,0],[28687,28663,28664,0],[28687,28664,28689,0],[28689,28664,33570,0],[28689,33570,28690,0],[28690,33570,33579,0],[28690,33579,28665,0],[28690,28665,33571,0],[33571,33572,33573,0],[33572,32375,33573,0],[33573,28691,33571,0],[28691,33573,32375,0],[28691,32375,33578,0],[33578,28693,33574,0],[33578,33574,28691,0],[28694,33576,49564,0],[28694,33575,33576,0],[32375,32376,33576,0],[32376,986,33576,0],[33576,986,49564,0],[49564,986,33577,0],[49564,33577,35035,0],[28693,33578,33575,0],[33575,33578,33576,0],[28665,33579,28669,0],[28669,33579,28671,0],[33580,28669,28671,0],[28671,33581,28672,0],[33581,28664,28673,0],[28673,28672,33581,0],[28664,33581,33570,0],[33570,33581,33579,0],[33579,33581,28671,0],[28673,28664,33582,0],[28664,28663,33582,0],[28663,33583,28679,0],[28679,33583,28655,0],[28655,33583,28660,0],[1013,1012,33584,0],[33584,1012,33585,0],[33584,33585,1014,0],[33586,33585,1016,0],[1011,33585,1012,0],[33586,965,1015,0],[1015,1014,33586,0],[33586,1014,33585,0],[965,33586,1016,0],[33587,28691,28692,0],[28595,33567,33590,0],[33567,33588,33568,0],[33568,33588,28696,0],[28696,33588,33589,0],[33589,33588,28694,0],[33589,28694,49564,0],[33567,33575,33588,0],[33588,33575,28694,0],[28596,33590,28597,0],[28597,33590,33568,0],[28597,33568,562,0],[33591,33566,33592,0],[33592,558,28588,0],[33508,560,33593,0],[33508,33593,33602,0],[33599,33604,33598,0],[33598,33604,33594,0],[33594,33606,33595,0],[33598,33595,33596,0],[33596,34995,33597,0],[33597,34995,33545,0],[33558,33545,33546,0],[33594,33595,33598,0],[33600,33601,33599,0],[33600,33599,33598,0],[33600,33596,33597,0],[33596,33600,33598,0],[33599,33601,33511,0],[33602,33511,33434,0],[33602,33434,33510,0],[33602,33593,33511,0],[33511,33593,33599,0],[33518,33511,33601,0],[559,33508,33510,0],[559,33510,33507,0],[33508,33602,33510,0],[33593,560,33603,0],[33604,33603,33605,0],[33594,33605,561,0],[33594,561,563,0],[33605,33603,28567,0],[28567,33603,560,0],[33593,33603,33599,0],[33599,33603,33604,0],[33604,33605,33594,0],[33606,33594,563,0],[33606,563,49565,0],[49565,28599,564,0],[563,28599,49565,0],[566,564,565,0],[34991,49565,567,0],[33606,568,33595,0],[33607,33525,33612,0],[33612,33525,33524,0],[33524,33523,33526,0],[33524,33526,33527,0],[33524,33527,33612,0],[33609,33802,33514,0],[33611,33610,33609,0],[33609,33610,33608,0],[33608,33610,33607,0],[33608,33607,33612,0],[33611,33609,33514,0],[33499,33610,33611,0],[33612,33726,33613,0],[33775,33613,33615,0],[33615,33613,33614,0],[33615,33614,33765,0],[33765,33614,33616,0],[33616,33719,34023,0],[34023,33719,33680,0],[33766,34023,33767,0],[33767,34023,33671,0],[34023,33951,33671,0],[33671,33951,33950,0],[33671,33950,33617,0],[33619,33617,33618,0],[33619,33618,34026,0],[33619,34026,33771,0],[33771,34985,33620,0],[33769,33621,33770,0],[33666,33943,24008,0],[24008,33943,33622,0],[33621,33769,33945,0],[33621,33945,33661,0],[33661,33945,33623,0],[33623,33952,24004,0],[24005,33947,33625,0],[24005,33625,33624,0],[33624,33625,34015,0],[33624,34015,34028,0],[33624,34028,23983,0],[23983,34028,33626,0],[33627,33626,33628,0],[33627,33628,34087,0],[34087,33628,34067,0],[34067,33628,34043,0],[34067,34043,34160,0],[33633,33631,33630,0],[33630,33631,33660,0],[33660,33631,34284,0],[33660,34284,33632,0],[33660,33632,34046,0],[33660,34047,33630,0],[34065,33633,34066,0],[34066,33633,34049,0],[33634,34051,34060,0],[34052,33637,34157,0],[34157,33637,33638,0],[34154,33638,34328,0],[34154,34328,34327,0],[34154,34327,34155,0],[34155,34327,34100,0],[34101,34100,34321,0],[34101,34321,33639,0],[33639,34321,34469,0],[33639,34469,33640,0],[33640,34469,33641,0],[34145,33641,34102,0],[33642,34838,34837,0],[33642,34837,33643,0],[33642,33643,33644,0],[33644,33643,34835,0],[33649,34470,33648,0],[33648,34323,33645,0],[33645,34323,33646,0],[33649,33645,33659,0],[33653,33654,33655,0],[33649,33659,33650,0],[33651,34833,34410,0],[34410,34833,33652,0],[33652,34834,8942,0],[33659,33653,33650,0],[33650,33653,33651,0],[33648,33645,33649,0],[33645,33646,33647,0],[33645,33647,33659,0],[33653,33659,33654,0],[33654,33659,34320,0],[33657,33656,33655,0],[33656,8943,33655,0],[33654,34320,33655,0],[33655,34320,33657,0],[9270,8945,33658,0],[9270,33658,28505,0],[33656,33657,33658,0],[33658,8945,33656,0],[34160,34043,33629,0],[33626,23982,23983,0],[33624,23983,24006,0],[33624,24006,24005,0],[33623,23985,33662,0],[33623,33662,33661,0],[33661,33662,33667,0],[33667,33621,33661,0],[33668,33662,33663,0],[33664,33663,24000,0],[33664,33665,33943,0],[33668,33666,33667,0],[33663,33664,33943,0],[33943,33666,33663,0],[33663,33666,33668,0],[33662,33668,33667,0],[33619,33669,33617,0],[33617,33669,33670,0],[34960,33716,28561,0],[33673,33688,33674,0],[33684,33676,34006,0],[33686,34006,34005,0],[33686,34005,33677,0],[33677,34003,33678,0],[33679,33678,34020,0],[33679,34023,33680,0],[33678,33681,33682,0],[34463,33682,33687,0],[33683,33676,33684,0],[33685,33684,34006,0],[33685,34006,33686,0],[33678,33686,33677,0],[33680,33678,33679,0],[33675,33683,33689,0],[33683,33684,33689,0],[33689,33684,33674,0],[33674,33684,33687,0],[33687,34962,33673,0],[33673,34962,34960,0],[33673,34960,28561,0],[28561,33688,33673,0],[33673,33674,33687,0],[33688,33691,33689,0],[33690,33689,33691,0],[33690,33691,33700,0],[33692,33691,33688,0],[33674,33688,33689,0],[33675,33689,33690,0],[33675,33690,33698,0],[33675,33698,33693,0],[34291,34286,33703,0],[34291,33703,34288,0],[34288,33703,33695,0],[34288,33695,621,0],[621,33695,620,0],[34286,33694,33697,0],[33697,33694,33696,0],[33697,33696,33699,0],[33699,33696,33698,0],[33699,33698,33700,0],[33701,28560,28565,0],[33700,33691,33701,0],[33701,33691,28560,0],[28562,33692,33688,0],[33690,33700,33698,0],[33693,33698,33696,0],[33697,33699,33712,0],[33697,33712,33702,0],[33697,33705,33703,0],[33703,33705,33695,0],[619,620,33713,0],[619,33713,33704,0],[33704,33713,33714,0],[33704,33714,618,0],[618,33714,33715,0],[618,33715,28535,0],[33705,33697,33702,0],[33706,33712,33707,0],[33707,33712,33700,0],[33707,33700,33701,0],[33707,33701,611,0],[33707,611,28559,0],[28559,33708,33707,0],[33707,33708,33706,0],[34942,33709,597,0],[34942,597,34945,0],[597,33709,33708,0],[33706,33708,33709,0],[33706,33709,33702,0],[33702,33709,33710,0],[33710,33711,33705,0],[33710,33705,33702,0],[33700,33712,33699,0],[33702,33712,33706,0],[33705,33711,33695,0],[33695,33711,620,0],[620,33711,33713,0],[33714,33713,34944,0],[34944,33713,34943,0],[33710,34943,33711,0],[33711,34943,33713,0],[33697,33703,34286,0],[33675,33693,33981,0],[33675,33981,33683,0],[33676,33980,34006,0],[28561,33716,33531,0],[28561,33531,33533,0],[33533,28562,28561,0],[33716,34961,33717,0],[33717,33531,33716,0],[33717,34961,33718,0],[33718,34961,33725,0],[33718,33725,33529,0],[33718,33529,33530,0],[33680,33719,33672,0],[33672,33719,33720,0],[33720,33719,33529,0],[33529,33719,33721,0],[33528,33723,33526,0],[33526,33723,33527,0],[33723,33528,33724,0],[33723,33724,33722,0],[33720,33529,34464,0],[34464,33529,33725,0],[34464,33725,34961,0],[33722,33614,33726,0],[33722,33726,33723,0],[33723,33726,33527,0],[33614,33613,33726,0],[33527,33726,33612,0],[33616,33614,34465,0],[33616,34465,33719,0],[33672,33720,34464,0],[33756,33472,33757,0],[33757,33472,33473,0],[33471,33473,23963,0],[33471,23963,33727,0],[33729,33731,33825,0],[33729,33825,23949,0],[33729,23949,25530,0],[23948,33728,33729,0],[33729,33728,23960,0],[33729,23960,33731,0],[33731,23960,33730,0],[33731,33730,25528,0],[33732,23960,33728,0],[33825,33731,25528,0],[33727,23963,33732,0],[33727,33732,33728,0],[23962,23961,23960,0],[23962,23960,33732,0],[25514,25512,25515,0],[33733,25515,25512,0],[25514,25515,33734,0],[25514,33734,23973,0],[25512,25510,33733,0],[33733,25510,25509,0],[25511,25512,25513,0],[25546,25547,33444,0],[25551,33495,28573,0],[33440,33496,33735,0],[33482,33735,33515,0],[33439,33515,33502,0],[33502,33515,33735,0],[33502,33735,33496,0],[33515,33454,33482,0],[33483,33411,33482,0],[33482,33411,33735,0],[33739,33738,33740,0],[33772,33740,33741,0],[33742,33775,33803,0],[33609,33608,33742,0],[33742,33608,33613,0],[33613,33608,33612,0],[33456,33454,33736,0],[33737,33798,33738,0],[33738,33798,33740,0],[33752,33476,33750,0],[33457,33750,33743,0],[33744,33743,33745,0],[33745,33749,33746,0],[33746,33476,33478,0],[33746,33475,33745,0],[33744,33745,33747,0],[33747,33748,33474,0],[33474,33467,33747,0],[33749,33745,33743,0],[33749,33743,33750,0],[33749,33750,33746,0],[33476,33746,33750,0],[33744,33457,33743,0],[33457,33751,33750,0],[33750,33751,33752,0],[33476,33754,33753,0],[33738,33754,33737,0],[33737,33754,33456,0],[33456,33736,33737,0],[33738,33739,33477,0],[33477,33753,33754,0],[33754,33738,33477,0],[33756,33757,33748,0],[33748,33757,33474,0],[33756,33748,33755,0],[33474,33757,33758,0],[33727,33469,33471,0],[33469,33758,33471,0],[33471,33758,33473,0],[33473,33758,33757,0],[33480,33475,23968,0],[23968,33475,33479,0],[24009,33479,23970,0],[33478,33759,23970,0],[33759,33761,24007,0],[24007,33761,33760,0],[33477,33739,33762,0],[33768,33763,33804,0],[33768,33804,33764,0],[33669,33805,33777,0],[33669,33777,33806,0],[33806,33777,33778,0],[33766,33765,33616,0],[33766,33616,34023,0],[33767,33671,33617,0],[33767,33617,33670,0],[33670,33669,33806,0],[33768,33764,33620,0],[33768,33620,33769,0],[33768,33769,33762,0],[33762,33769,33770,0],[33762,33770,33760,0],[33760,33761,33762,0],[33762,33761,33477,0],[33762,33763,33768,0],[33620,33764,33771,0],[33771,33764,33805,0],[33771,33805,33619,0],[33619,33805,33669,0],[33670,33806,33765,0],[33621,33760,33770,0],[33763,33762,33739,0],[33763,33739,33740,0],[33804,33805,33764,0],[33777,33805,33776,0],[33776,33805,33772,0],[33776,33772,33741,0],[33776,33741,33773,0],[33776,33773,33778,0],[33774,33778,33775,0],[33774,33775,33615,0],[33773,33775,33778,0],[33777,33776,33778,0],[33670,33765,33767,0],[33767,33765,33766,0],[33416,33423,33779,0],[33418,33779,23930,0],[23930,33779,33780,0],[33780,33779,33415,0],[33415,33779,33423,0],[33781,33466,33465,0],[25581,33782,33783,0],[33790,23817,33789,0],[33789,23817,23818,0],[33789,23818,33788,0],[33787,33788,23818,0],[33790,33789,33788,0],[33790,33788,23933,0],[33790,23933,33791,0],[33791,23933,23945,0],[33792,23945,33795,0],[33792,33795,33796,0],[33792,33796,33793,0],[33792,33793,24821,0],[24796,24797,33794,0],[24796,33794,24804,0],[33794,24820,25465,0],[25466,24820,33796,0],[25467,33796,33795,0],[33795,23943,25467,0],[25467,23943,23942,0],[25467,23942,23941,0],[33796,25467,25466,0],[24820,33793,33796,0],[24797,24828,24820,0],[24797,24820,33794,0],[33790,33791,24823,0],[24823,33791,24822,0],[33792,24821,24822,0],[33786,33787,23818,0],[33786,23818,33785,0],[33785,25579,25580,0],[33797,25579,33785,0],[33784,33783,33785,0],[33785,33783,33786,0],[33783,33782,33786,0],[33465,33786,33782,0],[25581,25582,33782,0],[33782,25582,33781,0],[33798,33736,33439,0],[33801,33798,33802,0],[33801,33802,33799,0],[33799,33802,33609,0],[33609,33742,33799,0],[33801,33799,34984,0],[33801,34984,33800,0],[33801,33800,33798,0],[33798,33800,33740,0],[33800,34984,33741,0],[33514,33802,33439,0],[33439,33802,33798,0],[34984,33799,33803,0],[33803,33775,33773,0],[33742,33803,33799,0],[33740,33800,33741,0],[33740,33772,33804,0],[33740,33804,33763,0],[33772,33805,33804,0],[33806,33778,33774,0],[33806,33774,33765,0],[23958,33826,33807,0],[33807,33826,25529,0],[23955,23957,25516,0],[25516,23957,33807,0],[33807,23957,23958,0],[23959,25516,33807,0],[25516,23959,25517,0],[25517,23959,24032,0],[24053,33808,39601,0],[39601,33808,25374,0],[25374,33808,24945,0],[25419,39601,39600,0],[25419,39600,25420,0],[25444,39600,33809,0],[39505,33810,39504,0],[39504,33810,25428,0],[39504,25428,25421,0],[25428,33810,24056,0],[24056,33811,39585,0],[39585,33811,39599,0],[24056,24057,25428,0],[39600,25444,25420,0],[25419,25418,33814,0],[33814,25418,33813,0],[33813,25418,33812,0],[33813,33812,25411,0],[24052,33814,33813,0],[24052,33813,33815,0],[25412,33815,25411,0],[33815,33813,25411,0],[25459,25460,33816,0],[33816,25460,25462,0],[33816,25462,33817,0],[33819,33817,25468,0],[25468,33817,25462,0],[33816,25526,25459,0],[33818,25457,25459,0],[25526,33816,25523,0],[33817,33819,33821,0],[33821,33819,25464,0],[33821,25464,33820,0],[33821,25523,33817,0],[25526,33822,25459,0],[25526,25525,33822,0],[33822,25521,33818,0],[33818,25459,33822,0],[25521,33822,25525,0],[25524,25465,33823,0],[33824,33823,25466,0],[25466,33823,25465,0],[23948,33470,33728,0],[33728,33470,33727,0],[33825,25528,23949,0],[23950,25529,33826,0],[49787,33827,23941,0],[33824,23941,33828,0],[33828,33829,25522,0],[33824,33828,33823,0],[25524,33823,25522,0],[25522,33823,33828,0],[23939,33828,23940,0],[33830,33831,25373,0],[25371,33831,33832,0],[25373,24049,33830,0],[33830,24049,33833,0],[33832,33833,24047,0],[33833,33831,33830,0],[24047,25416,25378,0],[25378,25416,24017,0],[24942,24048,24049,0],[24049,24048,33833,0],[39587,33834,33900,0],[39587,33900,39589,0],[39586,33900,33901,0],[39584,33901,33835,0],[39584,33835,39598,0],[39598,33835,39596,0],[39598,39596,33836,0],[39549,33837,39564,0],[39549,39564,39571,0],[39549,39571,33838,0],[33839,39547,24915,0],[24915,39547,33840,0],[24915,33840,24916,0],[24916,33840,33841,0],[24917,33841,33842,0],[33844,33845,33846,0],[33848,33875,33849,0],[33848,33849,33850,0],[33851,33880,33854,0],[33854,33880,33852,0],[33853,33859,33854,0],[33854,33859,33851,0],[33853,33854,33855,0],[33855,33854,33852,0],[33852,24275,33855,0],[33855,24275,39545,0],[33855,39545,33853,0],[33853,39545,33856,0],[33853,33856,33861,0],[33861,33862,33857,0],[33857,33862,33864,0],[33857,33864,33858,0],[33858,33851,33859,0],[33858,33859,33857,0],[33857,33859,33853,0],[33861,33857,33853,0],[33851,33858,33850,0],[39545,24275,24276,0],[33856,33860,33861,0],[33862,24919,33863,0],[33862,33842,33845,0],[33862,33845,33844,0],[33845,33842,33843,0],[33842,33862,33863,0],[33864,33862,33844,0],[33864,33844,33848,0],[33848,33844,33846,0],[33858,33848,33850,0],[33848,33858,33864,0],[24917,33842,33863,0],[24919,33862,24929,0],[33862,33861,24929,0],[24929,33861,33860,0],[33848,33846,33875,0],[33875,33846,33847,0],[33875,33847,33865,0],[33865,39576,33872,0],[33872,39576,33866,0],[24953,33866,24952,0],[33875,33865,33867,0],[33867,33865,33873,0],[33867,33873,33868,0],[33868,33869,39617,0],[39617,33869,24958,0],[39617,24958,24959,0],[24958,33869,33871,0],[24958,33871,24957,0],[24957,33871,33870,0],[33868,33873,33871,0],[33868,33871,33869,0],[33870,33871,33873,0],[33874,33872,33866,0],[33874,33866,24953,0],[33874,24953,24954,0],[33865,33872,33873,0],[33873,33872,39616,0],[33874,39616,33872,0],[33849,33875,33867,0],[33849,33867,33876,0],[33877,33876,33878,0],[33878,33876,33879,0],[33850,33849,33877,0],[33880,39618,24271,0],[24271,39618,39619,0],[33850,33877,33851,0],[33877,33880,33851,0],[24271,24273,33880,0],[33868,39617,33876,0],[33868,33876,33867,0],[33845,39574,33846,0],[33846,39574,33847,0],[24917,24916,33841,0],[24915,24914,33839,0],[33839,24914,33895,0],[33839,33895,33881,0],[33895,33882,33893,0],[33895,24914,33882,0],[33882,24914,33883,0],[33882,24064,33893,0],[33884,24913,24912,0],[33882,33883,24064,0],[33839,33881,33885,0],[39548,33896,33892,0],[39548,33892,33891,0],[39548,33891,39550,0],[33837,24058,39565,0],[39597,39565,33886,0],[24058,33887,39565,0],[24058,33888,24060,0],[24060,33888,33889,0],[24060,33889,24061,0],[24060,24059,24058,0],[24058,33837,33888,0],[33889,33888,33891,0],[33889,33891,33890,0],[33890,33892,24063,0],[24063,33892,33893,0],[33888,33837,39549,0],[33888,39549,33891,0],[33893,33892,33894,0],[33893,33894,33895,0],[33881,33894,33896,0],[33896,33894,33892,0],[33885,33881,33896,0],[33892,33890,33891,0],[33900,33834,33897,0],[33899,33897,25375,0],[39563,33835,33899,0],[33898,33899,33835,0],[33899,33898,33897,0],[33898,33900,33897,0],[33835,33901,33898,0],[33902,24827,24826,0],[24825,33903,33904,0],[33904,33903,33911,0],[33393,33911,33909,0],[33909,32988,33393,0],[33393,33905,33911,0],[33911,33905,33904,0],[33904,33906,24825,0],[33904,33905,33391,0],[33904,33391,33906,0],[33391,33905,33392,0],[33392,33905,33393,0],[33911,33903,23813,0],[23813,33903,23815,0],[33910,32991,33908,0],[33910,33908,33909,0],[33909,33908,33907,0],[32985,33907,33908,0],[32991,32984,33908,0],[33908,32984,32985,0],[33910,33909,33911,0],[23813,33910,33911,0],[48884,23816,33906,0],[23816,48884,33912,0],[33912,48884,48885,0],[33912,48885,33913,0],[33913,23819,23818,0],[33913,23817,33912,0],[33912,23817,23816,0],[23932,25532,25534,0],[25534,25533,23932,0],[33464,33468,33469,0],[24770,33914,24834,0],[24770,24834,24771,0],[24771,24834,33915,0],[24771,33915,24772,0],[24772,33915,24807,0],[24770,24769,33914,0],[33914,24769,33916,0],[33914,33916,24802,0],[24769,24768,33916,0],[48882,24766,24765,0],[48882,24765,24812,0],[33918,33917,33922,0],[33918,33922,24815,0],[24815,33922,24816,0],[33918,24840,33917,0],[33917,24840,24096,0],[33922,24096,33920,0],[33920,24096,24097,0],[24097,24755,33920,0],[33920,24755,33921,0],[33921,24755,24756,0],[33921,24756,33923,0],[33921,33919,24816,0],[33921,24816,33922,0],[33921,33922,33920,0],[33919,33921,33923,0],[24096,33922,33917,0],[24096,24840,24757,0],[24814,33918,24815,0],[33924,33925,33930,0],[33930,24132,33929,0],[33929,24132,33926,0],[33927,33932,33924,0],[33924,33932,24817,0],[33927,33924,33930,0],[33927,33930,33928,0],[33927,33928,33019,0],[33019,33928,33929,0],[33929,24133,33019,0],[33929,33928,33930,0],[33932,33933,24817,0],[33933,33936,24818,0],[24818,33936,33934,0],[33934,33936,33937,0],[33934,33937,24829,0],[24830,24829,33937,0],[33938,33936,33935,0],[33938,33935,25615,0],[33935,33936,33021,0],[33937,33936,33938,0],[32991,33938,25615,0],[32991,33910,33938,0],[33938,33910,23813,0],[24832,24818,33934,0],[24829,24819,33934,0],[33932,33927,33020,0],[33932,33020,33933,0],[33933,33020,33936,0],[24756,24754,33939,0],[24754,33925,33939,0],[33923,33939,33940,0],[33923,33940,33919,0],[33919,33940,33924,0],[33925,33924,33939,0],[33939,33924,33940,0],[33729,25530,23948,0],[23971,33622,33941,0],[33941,33622,33943,0],[33941,33665,24001,0],[24001,23972,33941,0],[24000,33665,33664,0],[24000,33663,33942,0],[33943,33665,33941,0],[33945,33769,33944,0],[33945,33953,33623,0],[33623,33953,33952,0],[24004,33952,33946,0],[24004,33946,24005,0],[34014,33947,33948,0],[34013,33948,34011,0],[34011,33948,33949,0],[34011,33949,33950,0],[33618,33949,33948,0],[33950,33949,33617,0],[33946,34025,24005,0],[24005,34025,33947,0],[34026,33946,33771,0],[33771,33946,34985,0],[33620,33944,33769,0],[33946,33952,34985,0],[34985,33952,33953,0],[34011,33950,34012,0],[33954,34021,34022,0],[33954,34022,33966,0],[33956,33954,33955,0],[34016,33956,33957,0],[34016,33957,33998,0],[33957,33964,33958,0],[33958,33964,34039,0],[33958,34039,33959,0],[33959,34039,33960,0],[33960,34038,33961,0],[33961,33962,33963,0],[33963,33962,33993,0],[33962,34036,33993,0],[33964,33957,33955,0],[33964,33955,34038,0],[34038,33955,33965,0],[33965,33967,33966,0],[33955,33967,33965,0],[33955,33954,33967,0],[33967,33954,33966,0],[34037,33966,33968,0],[34037,33968,34004,0],[33969,33970,34001,0],[34001,33970,34007,0],[34001,34007,33971,0],[34001,33971,34000,0],[34000,33971,33991,0],[33991,33972,630,0],[630,33972,34009,0],[34009,33985,629,0],[629,34010,33973,0],[33973,34010,33974,0],[33975,33974,33976,0],[33982,33978,33986,0],[33979,33980,33676,0],[33676,33683,33979,0],[34008,33979,33986,0],[33979,33683,33986,0],[33986,33683,33981,0],[33986,33981,33982,0],[33982,33983,33984,0],[33982,33984,33978,0],[33982,33981,33983,0],[33984,33983,33696,0],[33696,33694,33984,0],[33984,33694,33976,0],[33984,33976,33977,0],[33984,33977,33978,0],[33696,33983,33693,0],[33693,33983,33981,0],[33978,33977,34010,0],[33986,33985,34009,0],[33986,34009,34008,0],[33986,33978,33985,0],[33976,33974,33977,0],[33977,33974,34010,0],[33973,33987,627,0],[33987,34289,625,0],[625,34289,33988,0],[33988,33990,33989,0],[33989,34290,623,0],[33989,28495,33988,0],[33987,625,28501,0],[627,628,33973,0],[34037,33992,33993,0],[33993,631,33963,0],[33999,33996,34285,0],[33999,34285,33960,0],[33960,34285,33997,0],[33959,34041,33958,0],[33958,33998,33957,0],[33959,33960,33997,0],[33999,33960,33961,0],[33999,33961,33994,0],[33994,33961,33963,0],[33999,33994,33995,0],[33996,33999,33995,0],[33991,33992,34000,0],[34000,34037,34004,0],[34001,34004,33969,0],[33992,34037,34000,0],[33993,33992,631,0],[34004,33968,34002,0],[34002,33968,34003,0],[34002,34003,33677,0],[34005,34004,33677,0],[33969,34005,34006,0],[33969,34006,33970,0],[33970,33979,34007,0],[33971,34007,33972,0],[33971,33972,33991,0],[33979,34008,34007,0],[34007,34008,33972,0],[33972,34008,34009,0],[629,33985,34010,0],[33978,34010,33985,0],[33979,33970,33980,0],[33970,34006,33980,0],[33677,34004,34002,0],[34004,34005,33969,0],[34020,34021,34012,0],[33948,34013,34014,0],[34018,34012,33954,0],[33625,34014,34015,0],[34016,34017,33956,0],[33956,34017,34018,0],[33956,34018,33954,0],[33954,34012,34021,0],[34013,34017,34014,0],[34017,34016,34014,0],[34014,34016,34015,0],[34013,34018,34017,0],[34015,34016,34019,0],[34019,33998,33958,0],[33998,34019,34016,0],[34014,33625,33947,0],[34018,34013,34011,0],[33950,33951,34012,0],[34012,33951,34020,0],[34020,33678,34003,0],[34020,34003,34021,0],[34021,34003,34022,0],[34003,33968,34022,0],[33966,34022,33968,0],[34020,33951,33679,0],[33679,33951,34023,0],[33956,33955,33957,0],[33942,33662,23985,0],[33942,23985,24002,0],[33662,33942,33663,0],[23999,33942,24002,0],[34024,23988,23998,0],[23998,23988,23987,0],[33946,34026,34025,0],[34025,34026,33948,0],[33948,34026,33618,0],[33948,33947,34025,0],[34027,34015,34019,0],[34019,33958,34041,0],[34041,33959,34283,0],[34283,33959,33997,0],[34015,34027,34028,0],[33994,34029,33995,0],[34030,34035,34317,0],[34317,34031,34392,0],[34392,34031,636,0],[34031,34317,34035,0],[34035,34030,34034,0],[34034,34030,34029,0],[34029,33994,635,0],[34032,635,34033,0],[33963,631,34033,0],[34032,34033,632,0],[34032,632,633,0],[34033,635,33963,0],[33963,635,33994,0],[34034,635,634,0],[634,28503,34035,0],[634,633,28503,0],[34036,33965,33993,0],[33993,33965,34037,0],[33966,34037,33965,0],[33965,34036,34038,0],[34038,34036,33962,0],[33962,33961,34038,0],[33960,34039,34038,0],[34038,34039,33964,0],[33626,34028,33628,0],[33628,34028,34027,0],[33628,34027,34040,0],[34042,34040,34041,0],[34042,34041,33631,0],[33631,33633,34042,0],[33628,34044,34043,0],[34043,34044,33629,0],[33629,34044,34045,0],[33633,34045,34042,0],[34042,34045,34044,0],[34042,34044,34040,0],[34044,33628,34040,0],[34045,33633,34065,0],[34047,33660,34046,0],[34047,34046,34048,0],[33634,34059,34048,0],[34048,34049,33630,0],[33630,34047,34048,0],[33630,34049,33633,0],[34049,34048,34059,0],[34048,34050,34051,0],[34060,34051,33635,0],[33635,34051,34057,0],[33635,34057,33636,0],[33636,34057,34052,0],[34052,34057,34053,0],[34051,33634,34048,0],[34046,34056,34048,0],[34048,34056,34050,0],[34050,34056,34057,0],[34050,34057,34051,0],[34056,34293,34053,0],[34057,34056,34053,0],[34030,34058,34029,0],[34030,34317,34058,0],[34058,34317,34055,0],[34058,34055,34054,0],[34059,33634,34060,0],[34059,34060,34097,0],[34143,34144,34062,0],[34062,34063,34097,0],[34064,34065,34066,0],[34065,34247,34160,0],[34247,34246,34067,0],[34067,34246,34245,0],[34068,34069,34262,0],[34068,34262,34086,0],[34086,34262,34244,0],[34086,34244,34070,0],[34090,34251,34071,0],[34074,34178,34096,0],[34096,34178,34075,0],[34077,34167,34076,0],[34076,34167,34166,0],[34076,34166,23976,0],[34096,34077,34074,0],[34078,23978,34091,0],[34078,34091,34074,0],[34074,34091,49559,0],[23978,23979,34079,0],[23978,34079,34091,0],[34079,23979,34080,0],[34079,34080,34090,0],[34090,34080,34081,0],[34090,34081,34249,0],[34090,34249,34251,0],[34243,34249,34081,0],[34243,34081,34092,0],[34243,34092,34082,0],[34083,34088,34084,0],[33627,34084,23981,0],[34082,34083,34086,0],[34082,34086,34070,0],[34083,34084,34085,0],[34086,34085,34068,0],[34085,34086,34083,0],[34084,33627,34087,0],[34084,34087,34085,0],[34085,34087,34245,0],[34067,34245,34087,0],[34245,34068,34085,0],[23981,34084,34088,0],[34088,34083,34089,0],[34089,34082,34092,0],[34088,34089,23980,0],[34090,34071,34091,0],[34090,34091,34079,0],[34072,34091,34071,0],[34080,34092,34081,0],[23978,34078,34094,0],[34094,34078,34076,0],[34093,23977,34094,0],[34093,34094,23976,0],[23976,34094,34076,0],[34074,34077,34078,0],[34078,34077,34076,0],[34167,34077,34096,0],[34167,34096,34095,0],[34075,34095,34096,0],[34143,34062,34117,0],[34066,34063,34064,0],[34063,34059,34097,0],[34062,34097,34117,0],[34117,34097,34061,0],[34061,34097,34060,0],[33635,33636,34115,0],[34115,33636,34159,0],[34159,34098,34114,0],[34114,34098,34156,0],[34156,34155,34112,0],[34112,34155,34099,0],[34099,34100,34101,0],[33640,33641,34145,0],[34145,34102,34107,0],[34107,34102,34103,0],[34103,34104,34105,0],[34105,34104,34106,0],[9286,34152,34106,0],[34106,34152,34105,0],[34103,34105,34107,0],[34109,34471,34110,0],[34110,34471,34111,0],[34110,34111,34099,0],[34113,34133,34114,0],[34114,34133,34115,0],[34115,34116,34061,0],[34061,34118,34117,0],[34143,34117,34118,0],[34143,34118,34128,0],[34128,34119,9548,0],[9548,34119,9547,0],[34120,34126,9545,0],[9547,34119,34120,0],[34120,34119,34121,0],[34121,34123,34122,0],[34122,34123,34127,0],[34127,34123,34132,0],[34127,34130,34124,0],[34127,34124,34125,0],[34122,34126,34121,0],[34126,34120,34121,0],[34122,34127,34125,0],[34119,34128,34129,0],[34134,34130,34131,0],[34134,34131,34111,0],[34111,34131,34099,0],[34112,34132,34113,0],[34113,34132,34133,0],[34131,34130,34112,0],[34112,34130,34132,0],[34133,34132,34123,0],[34133,34123,34129,0],[34115,34133,34116,0],[34116,34118,34061,0],[34118,34129,34128,0],[34129,34116,34133,0],[34129,34118,34116,0],[34130,34134,34124,0],[34124,34134,34335,0],[34124,34335,34125,0],[34130,34127,34132,0],[34123,34121,34129,0],[34129,34121,34119,0],[34128,9548,34135,0],[34135,9548,34136,0],[34136,34479,34236,0],[34236,34479,34472,0],[34236,34472,34137,0],[34137,34472,34141,0],[34137,34141,34142,0],[34137,34142,34480,0],[34480,34142,34235,0],[34234,34235,34482,0],[34138,34140,34477,0],[34138,34477,34139,0],[34235,34142,34140,0],[34235,34140,34482,0],[34144,34136,34238,0],[34238,34136,34236,0],[34143,34128,34135,0],[34143,34135,34144,0],[34136,34144,34135,0],[33640,34110,33639,0],[33639,34110,34101,0],[34131,34112,34099,0],[34101,34110,34099,0],[34110,33640,34109,0],[34109,33640,34145,0],[34109,34145,34108,0],[34108,34145,34107,0],[34106,34104,34146,0],[12649,34146,34147,0],[34147,34150,34148,0],[34148,34149,8937,0],[8937,34149,8939,0],[8937,8939,8938,0],[8939,34149,8940,0],[8940,34150,34406,0],[34406,34150,34147,0],[34148,34150,34149,0],[8940,34149,34150,0],[8937,12650,34148,0],[12649,9287,34146,0],[9287,9286,34146,0],[34146,9286,34106,0],[9285,8934,9542,0],[9542,8934,34151,0],[9285,9542,34152,0],[9285,34152,9286,0],[9541,34153,9542,0],[34102,34408,34103,0],[34100,34099,34155,0],[34158,34098,34157,0],[34157,34098,34052,0],[33636,34052,34159,0],[34159,34052,34098,0],[34155,34156,34154,0],[34154,34156,34158,0],[34154,34158,33638,0],[33638,34158,34157,0],[34060,33635,34061,0],[34061,33635,34115,0],[34115,34159,34114,0],[34114,34156,34113,0],[34113,34156,34112,0],[34049,34059,34063,0],[34049,34063,34066,0],[33629,34065,34160,0],[33629,34045,34065,0],[34160,34247,34067,0],[34094,23977,34161,0],[34094,34161,23978,0],[34162,23989,23996,0],[34162,23996,34080,0],[23989,34161,23987,0],[23987,34161,23977,0],[34161,23989,34162,0],[23978,34161,23979,0],[34162,23979,34161,0],[23999,23975,33942,0],[25513,23974,34164,0],[34164,34166,34173,0],[34164,34173,34165,0],[34165,25280,25511,0],[25511,25280,25510,0],[34164,25511,25513,0],[25511,34164,34165,0],[34173,34166,34167,0],[34168,34169,25279,0],[34168,34075,34169,0],[25279,34169,25278,0],[34171,34169,34170,0],[34171,34170,34200,0],[34171,34200,25276,0],[34172,25276,34201,0],[25280,34165,34168,0],[34173,34167,34095,0],[34095,34168,34173,0],[34173,34168,34165,0],[25276,25278,34171,0],[25278,34169,34171,0],[34174,25309,25310,0],[34174,25310,25292,0],[25282,34175,25295,0],[25293,34175,24992,0],[25311,25318,39613,0],[39613,25318,34176,0],[25311,39613,25312,0],[23962,25509,23961,0],[23961,34177,25505,0],[25507,25281,25312,0],[34178,34074,49559,0],[34178,49559,34073,0],[34169,34075,34178,0],[34179,25007,25006,0],[34170,34178,34200,0],[34200,34178,34073,0],[34200,34073,25007,0],[34200,25007,34179,0],[34180,25009,25008,0],[25008,25007,34180,0],[25007,34073,34180,0],[34073,34072,34180,0],[34180,34072,34071,0],[34180,34071,34189,0],[34190,34250,34248,0],[34190,34248,34181,0],[34185,34182,34183,0],[34185,34183,34184,0],[34184,34183,34276,0],[34184,34276,34191,0],[34185,34186,34182,0],[34182,34186,34187,0],[34187,34186,25010,0],[25010,34186,25012,0],[34181,34187,34190,0],[34190,34187,34188,0],[34189,34188,25009,0],[34189,25009,34180,0],[25009,34188,25010,0],[25010,34188,34187,0],[34182,34187,34181,0],[34250,34190,34189,0],[34189,34190,34188,0],[34185,34184,34191,0],[34191,25014,25012,0],[34191,25012,34185,0],[34185,25012,34186,0],[34071,34251,34189,0],[34189,34251,34250,0],[25165,25261,34192,0],[25165,34192,25166,0],[25261,25164,25264,0],[25164,25265,25264,0],[25265,25164,25163,0],[25265,25163,25266,0],[25266,25163,25162,0],[25267,25266,25162,0],[25162,25268,25267,0],[25162,25160,25268,0],[25268,25160,34193,0],[25268,34193,34196,0],[34196,34193,34194,0],[34194,34193,34195,0],[34195,34193,25158,0],[25158,34193,25160,0],[25268,34196,25270,0],[25270,34196,25173,0],[34197,34196,34194,0],[34197,34194,25156,0],[25271,34199,25272,0],[25271,25270,25173,0],[25173,34196,34197,0],[25173,34197,34198,0],[25271,25173,25174,0],[34198,34197,25155,0],[25155,34197,25156,0],[25266,25273,25265,0],[34201,34200,34179,0],[34201,34179,25006,0],[34201,25276,34200,0],[34202,25274,34203,0],[34202,34203,25000,0],[25000,34204,34205,0],[25000,34205,34206,0],[34204,25000,34203,0],[25000,34207,34202,0],[34207,25001,25002,0],[34207,25002,34202,0],[25325,34209,34208,0],[34208,34209,25365,0],[25325,25324,34209,0],[34211,34210,25340,0],[25340,34210,25339,0],[34211,25365,34209,0],[34211,34209,34210,0],[24986,25325,24987,0],[34206,34219,34212,0],[34212,34214,34213,0],[34213,34214,34218,0],[34218,24967,24998,0],[24998,24967,24966,0],[24967,34218,39621,0],[39621,34218,34214,0],[25194,34214,34215,0],[25198,34215,25272,0],[25269,25272,34216,0],[25269,34216,34217,0],[34217,34204,25267,0],[25267,34204,34203,0],[25267,34203,25266,0],[34204,34217,34205,0],[25272,34215,34216,0],[34215,34219,34216,0],[34205,34217,34216,0],[25198,25194,34215,0],[34214,34212,34219,0],[34206,34212,25285,0],[34213,34218,24999,0],[24999,34218,24998,0],[34205,34216,34206,0],[34206,34216,34219,0],[25035,25030,34220,0],[34220,25030,25031,0],[25031,25032,34220,0],[25032,25260,34220,0],[25035,34220,25260,0],[25035,25260,25259,0],[25024,34222,9528,0],[9528,10354,25024,0],[34222,25024,34228,0],[34222,34221,9528,0],[34221,34222,34223,0],[34227,34225,34224,0],[34269,34226,25020,0],[34269,25020,25019,0],[25020,34226,25021,0],[25021,34226,34225,0],[25021,34225,34227,0],[25021,34227,25022,0],[25022,34227,34223,0],[25022,34223,34228,0],[34228,34223,34222,0],[34229,9530,34221,0],[34229,34221,34223,0],[34223,34227,34229,0],[34229,34227,34230,0],[34235,34234,34267,0],[34235,34267,34268,0],[34235,34268,34480,0],[34137,34480,34236,0],[34238,34237,34239,0],[34239,34237,34252,0],[34239,34252,34064,0],[34065,34064,34252,0],[34065,34252,34247,0],[34246,34279,34240,0],[34264,34241,34260,0],[34181,34265,34182,0],[34182,34265,34183,0],[34264,34181,34241,0],[34241,34248,34242,0],[34242,34248,34243,0],[34243,34070,34242,0],[34241,34242,34244,0],[34240,34069,34068,0],[34240,34068,34245,0],[34240,34245,34246,0],[34181,34248,34241,0],[34243,34248,34249,0],[34249,34250,34251,0],[34250,34249,34248,0],[34247,34252,34278,0],[34247,34278,34246,0],[34252,34237,34253,0],[34263,34260,34281,0],[34281,34260,34261,0],[34281,34261,34262,0],[34262,34261,34244,0],[34244,34261,34241,0],[34241,34261,34260,0],[34260,34263,34264,0],[34264,34263,25015,0],[34265,34264,25015,0],[34265,25015,25172,0],[25172,34183,34265,0],[34265,34181,34264,0],[34263,34258,25015,0],[34266,34268,34254,0],[34254,34268,34255,0],[34255,34268,34267,0],[34480,34268,34266,0],[34255,34267,34256,0],[34237,34266,34253,0],[34253,34266,34254,0],[34238,34236,34237,0],[34144,34238,34062,0],[34230,34227,34231,0],[34231,34227,34224,0],[47679,34224,34225,0],[47679,34225,34226,0],[47679,34226,34269,0],[34231,34224,34232,0],[34234,34233,34267,0],[34267,34233,34232,0],[34267,34232,34257,0],[34258,34270,34271,0],[34271,25016,25015,0],[34259,34257,34270,0],[34259,34270,34258,0],[34271,25015,34258,0],[34259,34258,34263,0],[34256,34267,34257,0],[34257,34232,34270,0],[34270,34232,47679,0],[34271,47679,34269,0],[25166,25014,25159,0],[25014,25166,25013,0],[25166,34192,25013,0],[25013,34192,25011,0],[25306,34273,25357,0],[25357,34273,25356,0],[25356,34273,34272,0],[34211,25354,34272,0],[25357,25342,25306,0],[25286,24988,25284,0],[25284,24988,25287,0],[39620,24968,24977,0],[39620,24977,24976,0],[25171,25170,34195,0],[34195,25170,25157,0],[25170,34274,25154,0],[25018,25153,34275,0],[25154,34275,25153,0],[25154,34274,34275,0],[25017,25018,34275,0],[25017,34275,34277,0],[34277,34275,34274,0],[34277,34274,34276,0],[34276,25172,34277,0],[25172,25017,34277,0],[34236,34480,34266,0],[34236,34266,34237,0],[34253,34278,34252,0],[34279,34253,34254,0],[34278,34253,34279,0],[34254,34255,34279,0],[34279,34255,34256,0],[34279,34256,34280,0],[34281,34280,34282,0],[34281,34282,34263,0],[34280,34256,34282,0],[34279,34280,34240,0],[34240,34280,34069,0],[34262,34069,34281,0],[34280,34281,34069,0],[34279,34246,34278,0],[34259,34263,34282,0],[34259,34282,34257,0],[34257,34282,34256,0],[34027,34019,34040,0],[34040,34019,34041,0],[34284,33997,33632,0],[33997,34285,33632,0],[33632,34285,34056,0],[34056,34046,33632,0],[34284,33631,34041,0],[34033,630,632,0],[630,34033,631,0],[34009,629,630,0],[630,629,632,0],[33973,33974,33987,0],[34292,33975,33976,0],[34292,33976,34286,0],[34292,34286,34291,0],[621,34290,34288,0],[34288,34290,34287,0],[34287,33990,34292,0],[34292,33990,34289,0],[33988,34289,33990,0],[33989,33990,34287,0],[33989,34287,34290,0],[34286,33976,33694,0],[34287,34291,34288,0],[34291,34287,34292,0],[33987,33974,34289,0],[34289,33974,33975,0],[34289,33975,34292,0],[34041,34283,34284,0],[34283,33997,34284,0],[34285,33996,34056,0],[34056,33996,34293,0],[34293,33996,33995,0],[34058,33995,34029,0],[33995,34058,34054,0],[34293,34054,34053,0],[34054,34293,33995,0],[34031,34294,636,0],[636,34294,637,0],[637,34294,28500,0],[637,28500,34295,0],[34326,34295,638,0],[638,34295,34296,0],[640,639,641,0],[28498,641,28499,0],[28498,28499,28497,0],[34326,637,34295,0],[641,34297,28499,0],[28499,34297,28500,0],[28500,34297,34295,0],[34295,34297,34296,0],[34296,34297,639,0],[639,34297,641,0],[28503,28502,34031,0],[9070,9132,34298,0],[34298,9132,9130,0],[34298,9130,9060,0],[9267,9265,34299,0],[34299,9261,34300,0],[34300,9261,34301,0],[34300,9267,34299,0],[34302,9079,34304,0],[34302,34304,9102,0],[34308,34304,34303,0],[34303,34304,9081,0],[9081,9082,34305,0],[34306,34305,9136,0],[34307,34306,9099,0],[9099,34309,34307,0],[34307,34309,34303,0],[34307,34303,34305,0],[34308,34303,9100,0],[34308,9100,9101,0],[9100,34303,34309,0],[34308,9101,9102,0],[9102,9103,34302,0],[9078,34310,9105,0],[9105,34310,9103,0],[9103,34310,34302,0],[34305,9083,9136,0],[9096,9136,34312,0],[9096,34312,34311,0],[34315,34316,34424,0],[34424,34316,34313,0],[34313,34316,9086,0],[9086,34316,9085,0],[34316,34315,34312,0],[34312,34315,34314,0],[9247,34314,9094,0],[34314,9247,34311,0],[34311,34312,34314,0],[34424,9091,34315,0],[34314,34315,9094,0],[9094,34315,9091,0],[34316,9084,9085,0],[9079,9081,34304,0],[34304,34308,9102,0],[33658,34318,28505,0],[34318,33658,33657,0],[34318,33657,34320,0],[34318,34320,34319,0],[34325,34323,34321,0],[34321,34100,34322,0],[34322,34100,34327,0],[34321,34323,34469,0],[34469,34323,33648,0],[33646,34323,34330,0],[33646,34330,34324,0],[33646,34324,33647,0],[34324,639,640,0],[34324,640,33647,0],[639,34324,34296,0],[34296,34324,34330,0],[34296,34330,638,0],[638,34330,34325,0],[34326,34325,34322,0],[34326,34322,34391,0],[34391,34322,34327,0],[34391,34327,34390,0],[34390,34327,34328,0],[34390,34328,34329,0],[34329,33638,34388,0],[34388,33638,33637,0],[33638,34329,34328,0],[34323,34325,34330,0],[34325,34321,34322,0],[9545,9549,34331,0],[34331,9546,9545,0],[9549,9534,34331,0],[34476,34331,9532,0],[9531,34476,9552,0],[9549,9536,9535,0],[9549,9535,9534,0],[9534,9533,34331,0],[34331,9533,9532,0],[9537,34332,34485,0],[34485,34332,34486,0],[34333,34486,9538,0],[34333,9538,9539,0],[34333,34153,9541,0],[34333,9541,34486,0],[9538,34486,34332,0],[9538,34332,34336,0],[34334,34471,34108,0],[34108,34471,34109,0],[34108,9540,9539,0],[34108,9539,34334,0],[34334,9539,9538,0],[34334,9538,34335,0],[34335,34336,34125,0],[34335,9538,34336,0],[34336,9544,34125,0],[34125,9544,34122,0],[34335,34134,34334,0],[34108,34107,9540,0],[9540,34107,34105,0],[34153,9540,34152,0],[34337,34338,12644,0],[12644,34338,12643,0],[34337,12644,12718,0],[34337,12721,34338,0],[34338,12721,12640,0],[12732,12640,12721,0],[12593,12725,12726,0],[12726,12725,34340,0],[12726,34340,12727,0],[12633,34340,34339,0],[12728,12634,12730,0],[12634,12635,12730,0],[12730,12635,12636,0],[12634,12728,12633,0],[34340,12725,34339,0],[12725,34341,34339,0],[12725,12724,34341,0],[42958,34341,12724,0],[12592,34342,34343,0],[34343,34342,12830,0],[34343,12830,12827,0],[12827,12830,12828,0],[12828,12829,34345,0],[34344,42814,34346,0],[34346,42814,42815,0],[34346,42815,34345,0],[12815,34345,12789,0],[12815,12828,34345,0],[34345,12829,34346,0],[34344,34346,12776,0],[34344,12776,12589,0],[34347,12589,34348,0],[34348,34381,34380,0],[34348,34380,42497,0],[34360,34372,34349,0],[34349,34372,34373,0],[34349,34373,34350,0],[42496,34350,12970,0],[12970,34352,34351,0],[12968,34351,34352,0],[12968,34352,12971,0],[34353,34354,34355,0],[34355,34354,34357,0],[34357,34354,34350,0],[34357,34350,42496,0],[34359,34355,34356,0],[12787,12585,12785,0],[12785,12585,34356,0],[12584,34356,34355,0],[12584,34355,34357,0],[12584,34357,34358,0],[34358,34357,42496,0],[34358,42496,12970,0],[34358,12970,34351,0],[34358,34351,12898,0],[12967,12898,34351,0],[34356,12585,34359,0],[34359,34353,34355,0],[34350,34354,34349,0],[34360,34349,34353,0],[34360,34353,34380,0],[34380,34353,42497,0],[34353,34349,34354,0],[34348,12780,34347,0],[12589,34361,34348,0],[34348,34361,34368,0],[34369,34368,34362,0],[34364,34363,12751,0],[34363,34362,34365,0],[12742,34365,12744,0],[12591,12744,42824,0],[12744,12743,12742,0],[34363,34366,12751,0],[12751,34366,34367,0],[12751,34367,12739,0],[34367,34366,12742,0],[34363,34365,34366,0],[34366,34365,12742,0],[34362,12590,34365,0],[34365,12590,42824,0],[34348,34368,34369,0],[34369,34362,34370,0],[34370,34362,34363,0],[34370,34363,34364,0],[34370,34364,34377,0],[34370,34377,34371,0],[34371,34377,34379,0],[34379,34377,34376,0],[34379,34376,34372,0],[34376,34377,7173,0],[34376,7173,34374,0],[34374,12969,34375,0],[34375,12969,12970,0],[34375,12970,34350,0],[34350,34373,34375,0],[34375,34373,34376,0],[34375,34376,34374,0],[34376,34373,34372,0],[12969,34374,7158,0],[7158,34374,7173,0],[7156,7173,34377,0],[34377,34364,7156,0],[34378,34370,34371,0],[34378,34371,34379,0],[34378,34379,34380,0],[34380,34379,34372,0],[34380,34372,34360,0],[34378,34380,34381,0],[34369,34378,34381,0],[34369,34381,34348,0],[34368,12590,34362,0],[34368,34361,12590,0],[12583,12967,34382,0],[12782,34383,12897,0],[12782,12584,34383,0],[12941,12937,34384,0],[34384,12937,12935,0],[34385,12935,12857,0],[34385,12857,12856,0],[12935,34385,34384,0],[34384,34385,12940,0],[12940,34385,12856,0],[12935,12937,12936,0],[12873,12937,12941,0],[12873,12941,34386,0],[12941,12795,34386,0],[34386,12795,12794,0],[34387,12870,12869,0],[12868,12287,12869,0],[34053,33637,34052,0],[34053,34054,34388,0],[34388,34054,34055,0],[34055,34389,34329,0],[34329,34389,34390,0],[34388,34055,34329,0],[34389,34055,34317,0],[34389,34317,34390,0],[34390,34317,34392,0],[34390,34392,34391,0],[34053,34388,33637,0],[34394,28498,34319,0],[34393,34320,33659,0],[34393,33659,33647,0],[33647,640,34393,0],[34393,640,34394,0],[34393,34394,34319,0],[34393,34319,34320,0],[33651,33653,33655,0],[34396,34395,9108,0],[34396,9108,9107,0],[9108,34395,9109,0],[9109,34395,9101,0],[34396,9107,12693,0],[34396,12693,9106,0],[12681,34397,12680,0],[9241,34398,12681,0],[12681,34398,34397,0],[34398,9110,34399,0],[34398,34399,34397,0],[34397,34399,26428,0],[34401,12683,12684,0],[34401,12684,34422,0],[9121,34400,9122,0],[9122,34400,12685,0],[12685,34400,34422,0],[12683,34401,9244,0],[9244,34401,34422,0],[33650,33651,33644,0],[33644,34410,34402,0],[34409,34407,34402,0],[34402,34407,33644,0],[33644,34407,34403,0],[33644,34403,33642,0],[34403,34407,34404,0],[34403,34404,34405,0],[34468,34405,34406,0],[34468,34406,34147,0],[34406,34405,34404,0],[34409,8941,34407,0],[34404,34407,8941,0],[33642,34405,34838,0],[34408,34838,34104,0],[34104,34838,34146,0],[34104,34103,34408,0],[34838,34405,34146,0],[34405,34468,34146,0],[33644,34835,33650,0],[34835,33649,33650,0],[8942,34409,33652,0],[34409,34402,33652,0],[33652,34402,34410,0],[12695,12660,12659,0],[12672,12671,34416,0],[34414,34413,34415,0],[34414,12770,12758,0],[12758,34413,34414,0],[12770,12769,12758,0],[34412,12760,34411,0],[34411,34416,12671,0],[34416,12658,12672,0],[34412,12670,34415,0],[12670,34412,34411,0],[12670,34411,12673,0],[12673,34411,12671,0],[34415,34413,34412,0],[34417,12674,34418,0],[34418,12674,34419,0],[34419,12674,34420,0],[12672,12660,12661,0],[12665,12688,34421,0],[34421,12688,34418,0],[34421,12664,12665,0],[34423,34422,34400,0],[34423,34400,9120,0],[9120,34400,9121,0],[9091,34424,9246,0],[34425,8970,8971,0],[8970,34425,8969,0],[8979,34425,8971,0],[8971,34428,34426,0],[34427,34426,34428,0],[34426,34429,8971,0],[8971,34429,9055,0],[8971,9055,8979,0],[8970,8969,34439,0],[34439,8969,34430,0],[34430,34443,34843,0],[34843,34443,34431,0],[34843,34431,34438,0],[34438,34431,34432,0],[34432,34433,34436,0],[34436,34433,34434,0],[35053,8978,34445,0],[8978,8977,34434,0],[34434,34435,34436,0],[8976,34435,34434,0],[34845,35077,8975,0],[34437,8975,8974,0],[8975,35077,717,0],[34435,35077,34436,0],[34442,34439,34840,0],[34442,34840,34440,0],[34442,34440,34441,0],[34428,8971,34441,0],[34441,8971,34442,0],[8971,8970,34442,0],[34442,8970,34439,0],[34430,34843,34847,0],[706,714,34444,0],[34444,714,715,0],[34446,34457,34456,0],[34446,34456,34455,0],[34454,34455,34447,0],[34454,34447,34448,0],[34433,34448,34459,0],[34433,34459,34434,0],[34449,34448,34450,0],[8967,34452,34453,0],[34453,8969,8968,0],[34453,8968,8967,0],[8969,34453,34430,0],[34430,34453,34443,0],[34451,8965,34450,0],[34450,8965,34449,0],[8965,34454,34449,0],[34448,34432,34450,0],[34450,34432,34431,0],[34450,34431,34451,0],[34451,34431,8966,0],[8966,34453,34452,0],[34453,8966,34443,0],[8966,34431,34443,0],[34448,34433,34432,0],[34448,34449,34454,0],[34454,8964,34455,0],[34447,34455,34456,0],[34447,34456,34458,0],[34447,34458,34448,0],[34455,8958,8960,0],[34455,8960,34446,0],[34446,8960,34457,0],[34457,34445,34456,0],[34445,8978,34459,0],[34445,34459,34458,0],[34459,34448,34458,0],[34445,34458,34456,0],[34434,34459,8978,0],[34444,34445,34457,0],[34457,706,34444,0],[9105,34460,9078,0],[9078,34460,9104,0],[34460,9105,12689,0],[34831,34395,9106,0],[9106,34395,34396,0],[34831,9106,9105,0],[9065,9069,9252,0],[9252,9069,9067,0],[9252,9067,34461,0],[34462,9065,9077,0],[9077,9065,9248,0],[9066,9065,34462,0],[9066,34462,9254,0],[9071,9254,9077,0],[9077,9254,34462,0],[9065,9252,9248,0],[34463,33687,33685,0],[33681,33672,34464,0],[34464,34961,33681,0],[33672,33678,33680,0],[33678,33672,33681,0],[33721,33719,34465,0],[33721,34465,33724,0],[33724,34465,33722,0],[34466,33522,33535,0],[33535,33522,609,0],[623,34290,622,0],[28557,28556,34467,0],[34467,28556,28492,0],[34467,28492,28493,0],[34467,28493,28555,0],[34126,34122,9544,0],[34147,34146,34468,0],[34102,33641,34470,0],[34835,34470,33649,0],[33648,34470,34469,0],[34470,33641,34469,0],[34408,34102,34470,0],[34408,34470,34837,0],[34837,34470,34835,0],[34134,34111,34471,0],[34471,34334,34134,0],[34158,34156,34098,0],[34141,34472,34473,0],[34141,34473,34474,0],[34474,34473,34475,0],[34474,34475,34477,0],[34477,34140,34474,0],[34474,34140,34142,0],[34474,34142,34141,0],[34473,34472,34478,0],[34478,9546,34473,0],[34475,34473,9531,0],[34331,34476,9546,0],[9531,34473,34476,0],[34476,34473,9546,0],[9531,34139,34475,0],[34475,34139,34477,0],[34136,9548,34478,0],[34479,34478,34472,0],[34478,34479,34136,0],[34481,34233,34482,0],[34230,34483,34229,0],[34229,34483,9530,0],[9530,34483,34484,0],[34138,34484,34482,0],[34138,34482,34140,0],[34482,34233,34234,0],[34230,34231,34483,0],[34483,34231,34481,0],[34483,34481,34482,0],[34231,34232,34481,0],[34481,34232,34233,0],[34063,34239,34064,0],[34063,34062,34239,0],[34239,34062,34238,0],[9543,34486,9541,0],[34499,34485,34486,0],[9537,34485,34487,0],[9537,34487,9535,0],[34487,34499,34488,0],[34488,34499,34489,0],[34488,34489,34609,0],[34609,34489,34490,0],[34492,34490,34491,0],[34492,34491,34493,0],[34492,34493,34494,0],[34494,34497,34496,0],[34495,34496,8930,0],[8930,34496,34497,0],[12621,34498,34493,0],[34498,34497,34493,0],[34493,34497,34494,0],[34491,34490,8931,0],[8931,34490,34489,0],[8931,34489,8932,0],[8932,34489,9543,0],[9543,34151,8932,0],[34487,34485,34499,0],[34499,34486,9543,0],[34499,9543,34489,0],[34487,34488,34500,0],[34500,34501,9533,0],[9533,34501,9532,0],[34500,34488,34609,0],[34500,34609,34501,0],[34502,8929,8930,0],[34502,8930,34630,0],[34629,34630,34498,0],[34498,34630,8930,0],[8929,34502,34632,0],[8929,34632,34691,0],[34691,9409,34503,0],[34692,34503,34693,0],[34691,34692,8929,0],[34495,34694,34690,0],[34495,34690,34504,0],[34614,34686,34506,0],[9524,34506,34687,0],[9524,34687,9522,0],[34691,42537,34507,0],[34691,34507,9409,0],[34508,9400,9401,0],[34508,9401,9413,0],[34508,9413,9399,0],[34510,34509,34511,0],[34511,34509,9401,0],[9412,34509,34510,0],[9394,34510,9393,0],[9393,34510,34511,0],[9393,34511,34512,0],[34513,34512,34515,0],[34512,34513,9393,0],[34512,34511,34514,0],[34512,34514,34515,0],[34515,34514,9665,0],[34515,9665,9390,0],[9390,9665,9391,0],[9664,9391,9665,0],[9394,9398,34510,0],[34510,9398,9412,0],[9392,34515,9469,0],[9392,9469,9468,0],[9466,34517,34516,0],[34517,49795,9458,0],[9466,34516,9467,0],[9467,34516,9460,0],[9460,34516,9459,0],[9459,34516,34518,0],[34518,34516,34519,0],[34519,34517,9458,0],[34523,34520,34521,0],[34521,10229,10342,0],[10342,10228,34522,0],[10342,34522,34521,0],[34521,34522,34523,0],[10231,34523,10232,0],[10232,34537,10233,0],[10233,34537,34540,0],[10233,34540,34524,0],[34524,34540,34525,0],[34527,34526,34539,0],[34528,34536,34529,0],[34531,10226,34542,0],[34542,10226,34532,0],[43577,34532,34533,0],[43577,34533,43573,0],[43573,34533,34534,0],[10223,34534,10224,0],[34532,10225,34533,0],[34533,10225,10224,0],[34533,10224,34534,0],[34531,34530,34535,0],[34536,34535,34529,0],[34535,34530,34529,0],[34523,34522,10232,0],[10232,34522,34537,0],[34537,34522,34538,0],[34538,34522,10227,0],[34538,10227,34535,0],[34538,34535,34536,0],[34537,34538,34540,0],[34525,34540,34526,0],[34538,34541,34526,0],[34526,34541,34539,0],[34539,34541,34528,0],[34528,34541,34536,0],[34536,34541,34538,0],[10229,34521,34520,0],[34542,34532,34543,0],[34542,34543,34544,0],[34544,34550,34545,0],[34545,34546,43560,0],[34548,34549,43562,0],[34543,43574,34550,0],[34545,34550,34551,0],[34545,34551,34546,0],[34550,34544,34543,0],[34532,43577,34543,0],[34531,34542,34530,0],[34530,34542,34544,0],[34555,34553,34554,0],[8698,34553,34555,0],[34555,34556,34557,0],[8665,34557,34558,0],[8665,43767,8667,0],[8667,43767,34562,0],[34562,43767,34559,0],[34560,34559,34563,0],[8704,9743,34563,0],[34563,9743,34560,0],[9743,8621,34560,0],[34562,34561,9753,0],[8704,34563,34566,0],[34566,34563,34564,0],[34564,34563,34559,0],[43767,8665,34558,0],[34558,34556,34564,0],[34564,34556,34565,0],[34565,34556,34555,0],[34565,34555,34554,0],[34565,34554,34566,0],[34565,34566,34564,0],[8710,34566,34554,0],[34558,34557,34556,0],[34557,8665,43711,0],[34557,43711,34555,0],[8714,34567,34599,0],[34599,34567,34568,0],[34568,34567,8630,0],[34597,34568,8630,0],[34597,8630,34569,0],[34569,8366,8365,0],[8365,34570,34571,0],[34571,34570,34572,0],[34571,34572,34573,0],[34589,34573,9573,0],[34575,34576,34587,0],[34587,34576,9745,0],[9745,34576,34577,0],[34577,43000,34578,0],[34578,43000,34579,0],[9575,34579,34580,0],[8738,9575,8740,0],[8740,8742,8741,0],[8742,34581,9373,0],[9373,34581,9433,0],[9576,8742,8740,0],[8740,8739,8771,0],[9575,8738,8736,0],[8736,8734,34582,0],[8736,34582,9575,0],[9575,34582,34579,0],[34579,34582,34578,0],[34583,9750,34584,0],[34583,34584,34578,0],[34578,34584,34577,0],[34577,34584,9745,0],[9745,34585,34586,0],[34574,34575,34587,0],[34587,9745,34586,0],[34583,34578,8733,0],[8733,34578,34582,0],[8733,34582,8734,0],[9575,34580,43018,0],[34577,34576,43000,0],[34572,43001,34573,0],[34572,34570,8363,0],[34569,8365,34596,0],[34571,34573,34588,0],[34587,34586,34574,0],[34574,34586,43547,0],[43547,34586,34590,0],[43547,34590,34591,0],[34591,34590,9746,0],[34592,9747,8626,0],[34592,8626,34593,0],[43548,8714,34599,0],[43548,34599,34594,0],[43548,34594,34591,0],[34591,34594,43547,0],[43547,34594,34595,0],[34588,34595,34571,0],[34571,34595,34600,0],[34571,34600,34596,0],[34596,34598,34597,0],[34597,34598,34568,0],[34597,34569,34596,0],[34588,34589,34595,0],[34585,34590,34586,0],[8365,34571,34596,0],[34568,34598,34599,0],[34599,34598,34594,0],[34595,34594,34600,0],[34596,34600,34598,0],[34594,34598,34600,0],[8771,34601,34602,0],[34602,34601,34603,0],[34602,34603,34604,0],[34604,8773,8768,0],[34604,8768,8769,0],[34602,34604,8769,0],[8771,8739,34601,0],[9530,34484,34139,0],[34139,34484,34138,0],[9530,34139,34605,0],[34605,34139,9552,0],[34605,9552,9551,0],[9551,9550,34605,0],[9530,34605,9529,0],[9529,34605,9550,0],[9551,34606,34608,0],[34608,34606,34607,0],[34609,34490,34608,0],[34608,34490,34618,0],[34618,34610,34619,0],[34619,34610,34613,0],[34619,34613,34612,0],[34612,34613,34611,0],[9524,34612,34506,0],[34506,34612,34611,0],[34494,34611,34613,0],[34490,34492,34618,0],[34613,34492,34494,0],[34610,34618,34492,0],[34492,34613,34610,0],[34506,34611,34614,0],[34614,34611,34494,0],[34494,34496,34614,0],[34614,34504,34505,0],[34504,34614,34496,0],[34504,34496,34495,0],[9551,34608,34615,0],[9551,34615,9526,0],[34616,10353,9526,0],[9526,9527,9550,0],[9526,9550,9551,0],[9526,34617,34616,0],[34616,34617,9524,0],[9524,34617,34619,0],[34617,34615,34619,0],[34619,34615,34618,0],[34619,34612,9524,0],[34615,34608,34618,0],[34501,34609,34607,0],[34607,9532,34501,0],[34609,34608,34607,0],[12700,12702,34622,0],[8938,34622,34620,0],[8938,34620,12651,0],[34621,34620,42818,0],[42818,34620,34623,0],[34623,34622,34624,0],[34624,34622,12702,0],[12651,34620,34621,0],[8938,8939,34622,0],[34622,8939,12700,0],[12619,42538,34629,0],[34631,34625,42536,0],[42538,12619,34626,0],[42538,34626,34627,0],[42538,34627,34628,0],[12620,12619,34629,0],[34630,34629,34625,0],[34630,34625,34631,0],[34632,34631,42537,0],[34630,34631,34502,0],[34634,34633,34641,0],[34634,34641,34635,0],[34635,34656,34636,0],[34636,34656,34637,0],[34638,34640,42531,0],[34638,42531,42530,0],[34638,42530,34636,0],[34639,34640,42993,0],[34637,34638,34636,0],[34638,42993,34640,0],[34633,12618,34641,0],[34641,12618,34652,0],[34653,34652,34642,0],[34646,12617,34643,0],[42542,34643,12616,0],[34644,12617,34642,0],[34644,34642,34652,0],[34644,34627,12617,0],[34627,34644,12618,0],[12617,34646,34642,0],[34645,42541,42560,0],[34647,42569,34648,0],[34649,34648,34650,0],[34654,34650,42526,0],[34651,42520,34652,0],[34652,34653,34651,0],[34651,34653,34654,0],[34654,34653,34647,0],[34654,34647,34649,0],[34651,34654,42526,0],[34650,34654,34649,0],[34648,34649,34647,0],[34647,34642,34646,0],[34642,34647,34653,0],[34647,34646,42569,0],[42560,34646,34645,0],[34652,12618,34644,0],[42530,34655,34635,0],[42530,34635,34636,0],[34635,34655,34634,0],[34637,34656,8921,0],[8921,34656,34657,0],[34658,34657,42525,0],[34658,42525,42523,0],[34658,42523,34659,0],[42983,34659,42524,0],[42983,42524,34660,0],[34660,42524,42988,0],[34660,42988,42978,0],[42978,42988,34661,0],[34661,34662,34668,0],[34668,34662,34663,0],[34668,34663,34664,0],[34664,34663,46809,0],[34664,46809,46810,0],[34667,46810,34665,0],[34667,34665,34666,0],[34666,34665,12161,0],[34666,12161,12162,0],[42994,34667,8912,0],[8912,34667,8892,0],[8892,34667,12164,0],[34667,42994,46810,0],[46802,12169,8889,0],[46802,8889,46804,0],[46804,8889,8888,0],[8888,34669,8867,0],[8884,8869,8885,0],[34669,8888,8887,0],[8869,8887,8885,0],[43216,9304,34670,0],[34670,9304,34671,0],[34671,9304,34672,0],[34672,34673,9347,0],[9304,34673,34672,0],[9348,34674,34675,0],[34676,34675,9353,0],[34675,34674,9306,0],[9349,9348,34677,0],[9349,34677,9309,0],[9309,34677,9307,0],[9348,34676,34677,0],[9307,34677,34676,0],[9348,34675,34676,0],[43242,9946,34679,0],[10060,34679,9977,0],[9977,34679,9947,0],[34680,34681,47678,0],[47678,34681,34682,0],[43240,34685,34684,0],[43240,34684,43239,0],[45635,45630,34684,0],[45630,43229,43239,0],[45630,43239,34684,0],[34681,10062,34682,0],[34682,10062,45638,0],[34682,45638,34683,0],[34504,9399,34505,0],[34505,9399,34689,0],[34505,34689,34686,0],[34686,34688,34687,0],[34686,34687,34506,0],[34687,34688,9522,0],[9522,34688,9521,0],[9521,34688,34689,0],[34688,34686,34689,0],[34686,34614,34505,0],[9399,34504,34508,0],[34508,34504,34690,0],[9400,34690,9411,0],[9400,9411,9410,0],[34690,34694,9411,0],[34691,34503,34692,0],[34693,9411,34694,0],[34692,34694,8929,0],[34695,9400,9410,0],[34695,9401,9400,0],[9409,9289,34702,0],[34702,9289,34696,0],[34697,9406,9405,0],[9289,9290,34696,0],[34696,9290,34698,0],[34698,9290,9291,0],[34696,34698,34697,0],[9409,34702,34700,0],[34503,34700,34701,0],[9402,34701,9403,0],[9403,34701,34700,0],[34703,34700,34702,0],[34696,34697,34702,0],[34702,34697,34703,0],[34703,9405,9404,0],[34700,9404,9403,0],[9404,9405,9660,0],[9405,34703,34697,0],[9409,34700,34503,0],[34701,9402,9408,0],[9640,9651,9650,0],[9640,9650,9657,0],[34710,9658,9635,0],[34704,9636,34723,0],[34704,34723,34709,0],[34709,34723,34722,0],[34709,34722,34717,0],[34706,34705,9675,0],[9675,9674,34718,0],[34717,34718,34716,0],[34707,43055,43056,0],[34707,43056,34708,0],[34709,34708,34711,0],[34709,34711,34704,0],[9635,34704,34711,0],[9635,34711,34710,0],[34710,34711,34712,0],[34714,34712,34725,0],[34713,34725,9632,0],[34725,34713,34714,0],[34712,34714,34710,0],[34713,34715,34714,0],[34714,34715,9634,0],[34714,9634,34710,0],[34710,9634,9658,0],[9648,9634,34715,0],[9648,34715,9633,0],[9633,34715,34713,0],[34708,34716,34707,0],[34707,34716,34719,0],[34708,34709,34716,0],[34716,34709,34717,0],[9675,34718,34706,0],[34706,34718,34717,0],[34706,34717,34705,0],[34716,34718,34719,0],[34719,9676,9673,0],[9673,34707,34719,0],[34719,34718,9676,0],[9674,9676,34718,0],[34729,9675,34705,0],[43047,34705,34717,0],[43047,34717,34720,0],[43047,34720,34721,0],[34721,34720,9295,0],[34722,34723,34724,0],[34723,9636,34724,0],[9635,9636,34704,0],[9295,34720,8916,0],[8916,34720,34722,0],[8916,34722,34724,0],[34725,34712,43056,0],[43056,34712,34708,0],[34708,34712,34711,0],[9293,42979,34726,0],[34726,42979,42984,0],[34726,8915,8916,0],[34726,8916,9293,0],[9299,9298,34727,0],[34728,34727,9296,0],[9296,34727,9298,0],[34727,34729,43048,0],[34727,43048,9299,0],[34727,34728,34729,0],[34729,34728,8910,0],[34423,9120,9099,0],[9098,34423,9099,0],[34742,9155,9156,0],[34742,9156,34730,0],[34730,34731,34741,0],[34741,34731,34745,0],[34741,34745,34740,0],[34738,34733,34734,0],[34735,34802,34736,0],[34736,34802,48778,0],[34736,48778,34737,0],[34736,34737,9153,0],[34736,9153,34738,0],[34738,9153,34739,0],[34738,34739,34733,0],[34730,34741,9152,0],[9152,34741,34743,0],[9153,34743,34739,0],[34741,34740,34743,0],[34740,34732,34739,0],[34732,34733,34739,0],[34738,34734,34735,0],[34735,34736,34738,0],[34730,9156,34744,0],[34744,9156,9158,0],[34730,34744,34731,0],[34731,34746,34745,0],[34732,34740,34745,0],[34731,34744,34747,0],[34731,34747,34746,0],[34747,9160,34748,0],[34733,34788,34793,0],[34733,34793,34734,0],[34734,34750,34735,0],[34735,34750,35195,0],[34735,35195,34801,0],[34801,35194,34763,0],[34763,34751,34806,0],[34753,34751,34752,0],[34753,34752,48775,0],[34754,34753,34757,0],[34754,34757,26460,0],[26460,34757,26457,0],[34756,34759,26461,0],[26461,34759,34795,0],[26461,34795,26462,0],[34756,34755,34758,0],[34758,34759,34756,0],[26461,26447,34756,0],[34756,26447,26448,0],[34756,26448,26449,0],[34756,26449,34755,0],[26449,26456,34755,0],[34755,26456,26457,0],[26462,34795,26466,0],[26466,34795,26463,0],[34755,26457,34757,0],[34758,34757,48775,0],[48775,34757,34753,0],[34755,34757,34758,0],[34759,34758,34760,0],[34800,34760,34797,0],[34797,34760,48774,0],[34797,48774,34761,0],[48777,34761,48813,0],[48813,34761,35183,0],[35183,34761,48774,0],[35183,48774,35185,0],[34762,34751,34763,0],[34764,34780,34774,0],[34774,34780,34773,0],[34773,34780,34790,0],[34773,34790,34765,0],[34765,34790,34789,0],[34765,34789,9165,0],[34763,34764,34762,0],[34762,34764,34775,0],[34767,34766,34779,0],[34767,34779,48836,0],[48811,34768,48818,0],[48818,34768,48817,0],[48817,48836,35158,0],[34770,34777,34771,0],[35192,34771,34778,0],[35192,34778,34772,0],[34774,34778,34775,0],[34775,34778,34776,0],[34776,34771,34777,0],[34776,34777,34766,0],[34766,35184,34776,0],[34775,34764,34774,0],[34762,34775,35184,0],[34776,34778,34771,0],[34778,34774,34772,0],[48817,34768,48836,0],[34769,48836,34779,0],[34769,34779,48816,0],[34777,48816,34766,0],[34766,48816,34779,0],[35158,48836,34769,0],[34790,34791,34792,0],[34790,34792,34789,0],[34789,34792,34794,0],[34781,34782,9199,0],[9199,34782,9163,0],[9163,34782,34783,0],[9163,34783,34784,0],[34784,34783,34786,0],[9161,34786,34785,0],[9161,9162,34786,0],[9161,34785,35196,0],[35196,34785,48781,0],[34787,34783,34749,0],[34749,34783,34788,0],[34787,34749,48781,0],[34785,34786,34783,0],[34785,34783,34787,0],[34785,34787,48781,0],[34783,34782,34788,0],[9162,34784,34786,0],[9199,9164,34781,0],[34781,9164,34794,0],[34791,34790,34780,0],[34780,34764,34763,0],[34794,48819,34789,0],[34789,48819,9165,0],[34763,35194,34780,0],[34780,35194,34791,0],[34791,35195,34792,0],[34792,35195,34750,0],[34734,34793,34750,0],[34750,34793,34794,0],[34794,34793,34781,0],[34781,34793,34782,0],[34793,34788,34782,0],[34794,34792,34750,0],[34751,34762,35185,0],[34751,35185,34752,0],[34752,35185,48774,0],[34759,34800,34795,0],[34795,34800,26463,0],[26463,34800,34796,0],[34797,34798,34799,0],[34799,34798,48776,0],[34799,48776,7088,0],[7088,48776,7087,0],[34799,34796,34797,0],[34760,34800,34759,0],[34796,34800,34797,0],[26460,26458,34754,0],[34735,34801,34803,0],[34803,34801,34806,0],[34803,34806,26452,0],[34803,26452,34802,0],[34735,34803,34802,0],[34802,26453,48778,0],[26412,34804,26411,0],[34806,34801,34763,0],[34805,34806,34751,0],[34805,34751,34753,0],[34753,34754,34805,0],[34805,34754,34806,0],[26452,34806,26458,0],[34788,34733,34732,0],[34788,34732,48782,0],[48782,34732,34745,0],[48782,34745,48780,0],[48780,34745,34746,0],[35196,34746,34747,0],[35196,34747,9161,0],[9161,34747,34748,0],[9150,9237,26412,0],[9151,9150,34807,0],[34808,9150,26412,0],[26412,26411,9116,0],[9116,26411,9117,0],[26411,26413,9117,0],[9117,26413,9119,0],[9149,34809,9113,0],[9113,34809,9114,0],[9114,34808,9115,0],[9115,34808,26412,0],[9115,26412,9116,0],[34808,9114,34809,0],[34809,34807,34808,0],[34808,34807,9150,0],[7122,7124,34810,0],[7196,26393,34810,0],[7196,34810,7124,0],[34811,34823,7193,0],[7193,34823,34822,0],[7193,34822,34813,0],[7193,34813,34812,0],[7187,34818,34814,0],[34814,34818,7182,0],[41803,34816,34819,0],[41803,34819,34817,0],[7182,34818,34815,0],[34820,34815,34821,0],[34816,34815,34820,0],[34816,34820,34819,0],[34819,34820,34817,0],[34820,34821,26379,0],[26379,7200,34820,0],[34820,7200,34817,0],[7187,34814,7186,0],[7193,26394,34811,0],[34811,26393,34824,0],[34811,34824,34823,0],[34813,34822,7187,0],[34822,34823,34821,0],[7187,34822,34818,0],[34818,34822,34815,0],[34815,34822,34821,0],[34821,34823,7199,0],[7199,34823,26389,0],[26389,34824,42952,0],[42952,26393,7195,0],[42952,34824,26393,0],[34823,34824,26389,0],[34821,7199,26379,0],[34827,34828,7873,0],[34827,7873,7209,0],[34827,7209,34825,0],[34827,34825,34826,0],[34826,34825,7208,0],[26366,34826,7208,0],[26366,26367,34826,0],[34827,34826,42951,0],[34827,42951,7715,0],[34827,7715,34828,0],[7709,7218,7217,0],[7705,7704,7312,0],[7312,7704,7224,0],[7224,7703,34829,0],[7704,7703,7224,0],[48751,34829,7700,0],[7700,34829,7701,0],[34830,26433,26434,0],[26434,26408,34830,0],[26434,26433,26432,0],[26427,26429,26424,0],[26424,26425,26427,0],[34831,9101,34395,0],[34831,9105,9103,0],[34831,9103,9101,0],[9073,9253,9074,0],[9073,9072,9077,0],[9073,9077,9253,0],[34836,34834,34832,0],[34832,34833,8943,0],[34832,34834,33652,0],[34832,33652,34833,0],[34834,34836,12709,0],[33651,33655,34833,0],[34833,33655,8943,0],[33643,34837,34835,0],[34837,34838,34408,0],[34839,8959,8958,0],[8958,8957,34839,0],[34839,8957,8962,0],[34892,9189,8992,0],[34441,34440,8972,0],[8972,34440,34841,0],[34440,34840,34841,0],[34841,34840,34437,0],[34437,34840,34842,0],[34842,34847,34846,0],[34846,34847,34843,0],[34846,34843,34438,0],[34438,34432,34844,0],[34846,34845,34842,0],[34844,34845,34846,0],[34844,34846,34438,0],[34845,34844,35077,0],[34845,8975,34842,0],[34842,8975,34437,0],[35077,34844,34436,0],[34436,34844,34432,0],[34840,34847,34842,0],[34430,34847,34439,0],[34439,34847,34840,0],[34848,724,34933,0],[34933,34932,34856,0],[34856,34932,34855,0],[34855,34932,34931,0],[34850,34849,34925,0],[9026,9025,34922,0],[9026,34922,9050,0],[34925,34924,34850,0],[34849,34850,34851,0],[34855,34851,9024,0],[34853,9022,34854,0],[34852,9023,34853,0],[34853,9023,9022,0],[9022,9037,34854,0],[725,724,34848,0],[34848,34856,48822,0],[34851,34855,34849,0],[34849,34855,34931,0],[34848,34933,34856,0],[48822,34856,34855,0],[725,34854,9037,0],[9024,34851,34850,0],[724,28463,49972,0],[49972,28463,34936,0],[34857,9047,34858,0],[9047,34857,34924,0],[9024,34857,34860,0],[34859,34860,34864,0],[9023,34860,34859,0],[34861,9020,34862,0],[34862,9021,34863,0],[34862,9020,9021,0],[34860,34857,34864,0],[9046,34864,34858,0],[34857,34858,34864,0],[35080,34865,9051,0],[8990,9051,34865,0],[34865,9046,34866,0],[9046,34858,34867,0],[34867,34858,9048,0],[34867,9048,34869,0],[34869,9048,9049,0],[8992,34867,34868,0],[34893,34868,34870,0],[34867,8992,34866,0],[34867,34866,9046,0],[34870,34869,34871,0],[34871,34869,9049,0],[34867,34869,34868,0],[34868,34869,34870,0],[34889,8993,34872,0],[34873,34874,35148,0],[35148,34874,35149,0],[35149,34874,34921,0],[34916,34921,34875,0],[34921,34874,34920,0],[8995,34874,34873,0],[8995,34873,34872,0],[34875,34921,34895,0],[34877,34895,34878,0],[34877,34878,34879,0],[35136,34879,34880,0],[34882,34881,35144,0],[35136,34880,34881,0],[34881,34880,34883,0],[34881,34883,35145,0],[34883,34884,35146,0],[35146,34884,35147,0],[35147,34884,7001,0],[34883,35146,35145,0],[34880,34879,34883,0],[34884,35134,7001,0],[7001,35134,9033,0],[9032,9033,35132,0],[9032,35132,34918,0],[9035,34885,34888,0],[34888,34885,34917,0],[34917,34885,8996,0],[34886,34887,34883,0],[9049,34888,34871,0],[34895,34921,34886,0],[34895,34886,34878,0],[34879,34878,34883,0],[34883,34878,34886,0],[8993,34889,9185,0],[8993,9185,34891,0],[9185,34889,34890,0],[34890,34889,34873,0],[34890,34873,9184,0],[9184,34873,35148,0],[9184,35148,9183,0],[34891,34894,34892,0],[34891,34892,8993,0],[8993,34892,34893,0],[34893,34892,8992,0],[34872,34873,34889,0],[9182,34916,34875,0],[9182,34875,34876,0],[34876,9167,9182,0],[34876,34875,34895,0],[9169,34877,34896,0],[34901,34900,35345,0],[34901,35345,7066,0],[7066,35345,35343,0],[34898,34899,34902,0],[34902,34903,34905,0],[34905,34903,34904,0],[34905,34904,35347,0],[34905,35347,35163,0],[35163,35347,34906,0],[35163,34906,7069,0],[35163,7069,7070,0],[35346,34901,7066,0],[34898,34902,9170,0],[9170,34902,35324,0],[35324,9171,9170,0],[34897,9169,34896,0],[9169,9168,34877,0],[34877,34879,34907,0],[34907,34879,35136,0],[34907,35136,34915,0],[34908,35137,34909,0],[34908,34909,34914,0],[34914,34909,27560,0],[34877,34907,34896,0],[34896,34907,34910,0],[35349,34908,34914,0],[34912,34914,27558,0],[34912,27558,34911,0],[34913,34912,35351,0],[34912,34913,34914,0],[34914,34913,35349,0],[27558,34914,27559,0],[27559,34914,27560,0],[35137,34908,34910,0],[35137,34910,34915,0],[34915,34910,34907,0],[9167,34876,9168,0],[9168,34876,34877,0],[34895,34877,34876,0],[35149,34921,34916,0],[8997,34870,34871,0],[8997,34871,34917,0],[8994,8996,35132,0],[34888,34917,34871,0],[34885,34918,8996,0],[8996,34918,35132,0],[8994,35132,34919,0],[34919,34886,34920,0],[34919,34920,8994,0],[34920,34886,34921,0],[9027,9050,34922,0],[9028,34923,34926,0],[35107,34923,34922,0],[9028,9027,34923,0],[34923,9027,34922,0],[9025,34924,34922,0],[34924,34925,34922,0],[34922,34925,35107,0],[35107,34925,35104,0],[34926,34923,35107,0],[34927,34928,35103,0],[35105,35103,7005,0],[35103,35105,34927,0],[34927,34849,34928,0],[34928,35126,35128,0],[35128,35126,34930,0],[35128,34930,34929,0],[34929,34930,732,0],[732,34930,731,0],[731,34930,35124,0],[35124,34930,35126,0],[35126,34931,34932,0],[34934,34932,34933,0],[35121,34935,34936,0],[9067,9069,9068,0],[9068,34461,9067,0],[9145,8968,34425,0],[34937,28550,28528,0],[34937,28528,28527,0],[34939,9279,653,0],[683,9279,682,0],[34939,653,654,0],[9279,34939,682,0],[682,34939,34938,0],[654,655,34939,0],[34939,655,34938,0],[583,959,32189,0],[34940,33715,33714,0],[33714,34944,34940,0],[34944,617,34940,0],[34940,617,33715,0],[34943,33710,34942,0],[34942,33710,33709,0],[34945,34946,34941,0],[34941,34947,617,0],[34941,34946,28558,0],[596,34946,34945,0],[34941,28558,34947,0],[34945,34941,34944,0],[34944,34941,617,0],[34944,34943,34945,0],[34945,34943,34942,0],[616,28558,615,0],[596,595,34946,0],[596,597,599,0],[32192,573,34949,0],[34949,34948,33562,0],[33562,34948,33549,0],[33549,34948,572,0],[33550,572,34948,0],[34948,34949,573,0],[574,573,32192,0],[33562,34950,34949,0],[34949,34950,32192,0],[32192,34950,575,0],[575,34950,577,0],[34952,577,32194,0],[34952,32194,34951,0],[32196,34951,32194,0],[32196,32193,34951,0],[960,34952,32193,0],[32194,577,34950,0],[33550,33551,34953,0],[33550,34953,33555,0],[34954,34953,34958,0],[34954,34958,34955,0],[34955,34958,34956,0],[34956,34958,34959,0],[34959,34958,33551,0],[34954,34955,33560,0],[33560,33559,34957,0],[33560,34957,34954,0],[34954,34957,33556,0],[33556,34957,33557,0],[33557,34957,33559,0],[33556,34953,34954,0],[33551,34958,34953,0],[608,610,33718,0],[33716,34960,34961,0],[33682,34962,33687,0],[34962,33682,33681,0],[34962,33681,34961,0],[34962,34961,34960,0],[578,961,960,0],[957,34963,956,0],[964,34963,34964,0],[34963,957,34964,0],[668,34965,588,0],[588,34965,676,0],[34965,668,34966,0],[665,34966,664,0],[664,34966,668,0],[34965,34966,665,0],[34967,902,964,0],[32360,34967,32359,0],[34967,965,34968,0],[34968,965,966,0],[966,1029,34968,0],[969,1011,970,0],[968,1011,969,0],[968,969,1004,0],[34969,32134,35003,0],[34969,35003,35027,0],[35027,35003,32148,0],[35027,32148,35028,0],[35028,32148,35004,0],[35006,934,35011,0],[35011,934,35028,0],[35028,934,933,0],[35028,933,34970,0],[35023,34970,34971,0],[35026,34972,34974,0],[34974,34972,34973,0],[34975,34974,34976,0],[34975,34976,35025,0],[34973,925,34974,0],[34974,925,34976,0],[909,34976,925,0],[34973,34972,926,0],[34970,933,932,0],[34970,932,34971,0],[34971,932,34977,0],[932,928,34977,0],[900,899,34978,0],[34978,899,34979,0],[916,918,34981,0],[34981,918,917,0],[34981,917,34980,0],[916,34981,915,0],[915,34981,34982,0],[34982,34981,34983,0],[34983,906,34982,0],[904,915,34982,0],[34983,34981,34980,0],[33803,33773,34984,0],[34984,33773,33741,0],[33685,33686,34463,0],[33682,34463,33678,0],[33678,34463,33686,0],[34985,33953,33944,0],[33944,33953,33945,0],[34985,33944,33620,0],[33774,33615,33765,0],[34986,34993,34990,0],[34990,34993,34992,0],[34989,34992,34987,0],[34987,34988,568,0],[568,34988,33595,0],[33595,34988,33596,0],[33596,34988,34995,0],[568,34989,34987,0],[34986,34990,570,0],[34990,34991,570,0],[570,34991,569,0],[34991,34992,34989,0],[34992,34991,34990,0],[34987,34992,34993,0],[34987,34993,34994,0],[34987,34994,34995,0],[34995,34994,33546,0],[34995,33546,33545,0],[34988,34987,34995,0],[34994,34993,34996,0],[33548,34997,33549,0],[33548,34996,34997,0],[34986,571,34997,0],[34986,34997,34993,0],[34997,34996,34993,0],[609,33522,608,0],[32136,34998,32131,0],[32131,34998,911,0],[32154,35013,32157,0],[32154,32157,32156,0],[32157,35000,32158,0],[32158,35000,32128,0],[35000,35001,32129,0],[32129,35001,32130,0],[32130,35001,32136,0],[32136,35001,32157,0],[32136,32157,35002,0],[35002,35013,34999,0],[35013,35002,32157,0],[32157,35001,35000,0],[32133,34999,32152,0],[32133,32152,32151,0],[32148,32117,35004,0],[35004,32117,32115,0],[35005,35006,32114,0],[32114,35006,35011,0],[35006,35005,935,0],[935,35005,35007,0],[35008,35007,35032,0],[35010,35005,32113,0],[32113,35005,32114,0],[32116,32114,35011,0],[32116,35011,32115,0],[32115,35011,35004,0],[35010,35012,35007,0],[35005,35010,35007,0],[35013,32152,34999,0],[35013,32154,32152,0],[32133,32151,32134,0],[32134,32151,35003,0],[32116,32115,35014,0],[32167,35014,32115,0],[32167,32115,32149,0],[35016,32169,32210,0],[35015,32169,35016,0],[35016,32212,32037,0],[35016,32037,35015,0],[35017,926,32187,0],[35017,32188,924,0],[924,32188,659,0],[32188,35017,32187,0],[32187,926,35018,0],[32187,35018,32186,0],[32186,35018,35019,0],[35019,35020,32178,0],[32178,32182,35019,0],[35019,32182,32179,0],[35019,32179,32186,0],[35018,926,35021,0],[35018,35021,35020,0],[35020,32184,32178,0],[35020,35019,35018,0],[35020,35021,35022,0],[928,35022,927,0],[35022,35021,927,0],[35017,924,925,0],[920,922,923,0],[923,921,920,0],[32134,34969,35024,0],[35024,34969,35023,0],[35023,34969,35027,0],[32134,35024,35025,0],[35025,35024,34975,0],[35026,35024,35023,0],[35026,35023,34972,0],[34972,35023,34971,0],[35023,35027,34970,0],[34970,35027,35028,0],[35011,35028,35004,0],[35024,35026,34975,0],[34975,35026,34974,0],[35029,35031,701,0],[701,35030,32170,0],[32160,35031,35029,0],[701,35031,35030,0],[35012,32160,35032,0],[35012,35032,35007,0],[32160,35029,35032,0],[928,929,35022,0],[35022,929,32184,0],[35022,32184,35020,0],[32140,898,32356,0],[32140,32356,32139,0],[32139,32356,897,0],[32139,897,28318,0],[28318,897,28319,0],[914,34979,35033,0],[984,35034,1019,0],[28661,28709,28701,0],[35034,1069,569,0],[33577,35034,35035,0],[35036,900,1031,0],[899,35036,898,0],[35037,32110,32092,0],[32092,32177,35037,0],[32177,32176,35037,0],[35037,32176,35038,0],[32092,32110,32087,0],[35037,35038,35039,0],[35037,35039,32171,0],[35040,35038,32176,0],[35040,32176,32175,0],[35040,32173,35041,0],[35039,35041,32172,0],[32172,35041,32173,0],[35039,35038,35041,0],[35041,35038,35040,0],[32104,35042,32103,0],[32103,35042,32102,0],[32031,35042,35043,0],[35043,32032,32031,0],[32031,32030,35042,0],[32105,32032,35043,0],[32104,35044,35042,0],[32022,32024,35045,0],[35045,32024,32023,0],[35047,35048,31792,0],[35047,35046,35048,0],[35046,35045,32023,0],[32022,35045,35049,0],[32022,35049,32102,0],[32102,35049,32066,0],[32066,35093,32065,0],[32065,35093,32063,0],[32062,32063,35050,0],[32062,35050,32061,0],[35050,35052,35051,0],[35116,35117,31875,0],[31875,35117,31807,0],[35045,35046,35049,0],[714,693,715,0],[715,693,35053,0],[716,35054,28471,0],[28471,35054,28484,0],[696,697,28480,0],[696,28480,35056,0],[35056,28480,28479,0],[28485,35056,28479,0],[35056,28483,35055,0],[35055,28483,28484,0],[32080,32053,35057,0],[35057,32053,885,0],[35057,35058,32080,0],[32080,35058,32077,0],[32079,32078,886,0],[886,32078,32077,0],[28482,28488,28470,0],[28470,28488,28469,0],[28483,28482,28484,0],[28484,28482,28470,0],[28469,28468,35059,0],[35059,28468,721,0],[35059,721,35061,0],[35063,35061,721,0],[35063,721,720,0],[722,721,35060,0],[35060,721,28468,0],[35060,28468,28466,0],[722,35060,28465,0],[28465,35060,28466,0],[28486,28468,28469,0],[35062,28469,35059,0],[28473,718,28472,0],[28472,28471,28473,0],[28473,28471,35062,0],[35059,35061,35062,0],[35062,35061,28473,0],[28473,35061,28474,0],[35061,35063,28474,0],[28474,35063,9009,0],[9009,35063,720,0],[9009,720,719,0],[28486,28475,35065,0],[35065,28475,35074,0],[35074,28475,35064,0],[35074,35064,32054,0],[32054,35127,35074,0],[28476,35064,28475,0],[35065,35066,28464,0],[28464,35066,32068,0],[28464,32068,727,0],[35067,32058,32059,0],[35067,32059,35119,0],[32059,35113,35119,0],[35120,31849,35114,0],[35120,35114,35115,0],[35120,35115,31840,0],[35068,35113,32060,0],[35069,35070,35071,0],[35071,35070,35058,0],[35071,35058,35072,0],[35072,35057,884,0],[35070,32060,32057,0],[35070,32057,887,0],[887,35058,35070,0],[35070,35069,32060,0],[35068,32060,35073,0],[35073,35071,35100,0],[35100,35071,35072,0],[35066,35065,35074,0],[701,708,702,0],[35008,35032,35075,0],[35008,35075,35009,0],[948,35009,35075,0],[948,35075,35076,0],[948,35076,947,0],[702,703,35075,0],[702,35075,35032,0],[947,937,948,0],[948,936,35009,0],[35032,35029,702,0],[702,35029,701,0],[35078,9204,8986,0],[35078,8986,8988,0],[8988,9191,35078,0],[9044,9017,35079,0],[9044,35079,34863,0],[9044,34863,35080,0],[9023,35080,34863,0],[9019,9041,722,0],[9040,9041,9019,0],[35054,695,696,0],[35054,35055,28484,0],[696,35055,35054,0],[32213,32212,35083,0],[32213,35083,32214,0],[32214,35083,35082,0],[35082,35083,877,0],[32042,879,32343,0],[35086,32343,32352,0],[35086,32352,35084,0],[35085,32346,32348,0],[32346,35085,32345,0],[35087,35085,35089,0],[35089,35085,35111,0],[35086,35087,35088,0],[35089,35088,35087,0],[32042,32343,35086,0],[32064,35090,883,0],[35090,32064,35091,0],[35091,32064,32065,0],[35091,32065,32062,0],[35091,32062,35100,0],[35073,35100,32062,0],[35090,35091,884,0],[884,35091,35072,0],[35072,35091,35100,0],[35049,35046,35047,0],[35093,35047,31792,0],[35092,31792,31791,0],[35092,31791,35094,0],[35049,35047,32066,0],[32066,35047,35093,0],[35093,31792,35092,0],[35093,35092,32063,0],[32063,35094,35098,0],[35096,35117,35052,0],[35096,35052,35050,0],[35096,35050,35097,0],[35117,35096,31807,0],[31807,35096,31808,0],[35096,35097,31808,0],[31811,35097,35095,0],[31811,35095,35098,0],[32063,35092,35094,0],[35094,31812,31811,0],[31811,35098,35094,0],[31789,31790,35099,0],[35099,31785,31789,0],[35099,31790,31804,0],[32063,35098,35050,0],[35050,35095,35097,0],[32012,31796,31782,0],[31734,31787,31836,0],[31884,31883,736,0],[31884,736,734,0],[31852,31884,31851,0],[35101,34929,35102,0],[35102,733,35101,0],[35128,34929,35101,0],[34928,35128,35103,0],[35104,34927,35105,0],[35104,35105,35107,0],[35107,35105,35106,0],[35106,34926,35107,0],[34927,35104,34849,0],[34849,35104,34925,0],[35129,34926,35108,0],[35109,7008,35108,0],[35109,35108,34926,0],[7004,35109,34926,0],[7004,34926,35106,0],[7017,735,49548,0],[737,7007,7013,0],[31882,31881,31885,0],[31885,31881,35110,0],[35086,35084,35087,0],[35087,35084,32354,0],[35087,32354,35085,0],[35111,35085,32348,0],[35111,32348,35112,0],[35112,32348,32017,0],[35111,35112,881,0],[881,35112,32027,0],[32027,35112,32017,0],[881,35089,35111,0],[879,32342,32343,0],[35051,35052,35113,0],[35113,35052,35118,0],[35051,35068,32061,0],[35051,32061,35050,0],[35116,31875,35115,0],[35116,35115,35114,0],[35116,35114,35118,0],[35116,35118,35117,0],[35117,35118,35052,0],[35118,35114,31849,0],[35119,35118,31849,0],[35118,35119,35113,0],[31840,35115,31875,0],[35120,31840,31842,0],[34934,35122,35123,0],[35126,35123,35124,0],[35124,35123,35122,0],[35122,35125,35124,0],[35124,35125,731,0],[35121,35122,34935,0],[34935,35122,34934,0],[34934,35123,34932,0],[34932,35123,35126,0],[34931,35126,34928,0],[34935,34934,49972,0],[724,49972,34933,0],[34933,49972,34934,0],[34935,49972,34936,0],[35073,32060,35069,0],[35071,35073,35069,0],[35128,35101,7015,0],[7015,7005,35128,0],[35128,7005,35103,0],[9029,35129,35130,0],[35130,35129,35108,0],[35130,35108,35326,0],[9029,35130,35131,0],[6992,7003,6991,0],[34887,34886,34919,0],[34887,34919,35132,0],[34883,34887,34884,0],[9033,34887,35132,0],[34887,35134,34884,0],[34882,35135,35139,0],[34881,35139,35136,0],[35139,35135,35137,0],[35137,35135,34909,0],[34909,35135,35138,0],[35137,34915,35139,0],[35139,34915,35136,0],[35135,34882,35138,0],[35138,34882,27562,0],[35139,34881,34882,0],[27562,34882,35140,0],[35140,34882,35144,0],[35143,35140,35141,0],[35143,35141,6996,0],[35143,6996,27625,0],[35143,27562,35140,0],[27562,35143,27563,0],[35140,35144,35141,0],[35141,35144,35142,0],[35142,35144,35145,0],[35147,35145,35146,0],[34881,35145,35144,0],[35145,35147,35142,0],[35147,35325,35142,0],[35149,9183,35148,0],[35150,9230,9166,0],[9166,9230,35156,0],[35150,9166,35153,0],[35150,35153,9231,0],[9231,35153,35151,0],[9232,9231,35151,0],[9232,35151,35152,0],[9232,35152,48821,0],[48821,35152,34765,0],[35191,35152,35151,0],[35191,35151,35153,0],[9232,48821,48820,0],[35155,35157,34770,0],[34770,35157,34769,0],[35153,9166,35154,0],[35154,9166,35156,0],[35154,35156,35155,0],[35158,34769,35157,0],[35156,9179,35155,0],[35155,9179,35190,0],[35189,35159,35160,0],[35163,35161,35162,0],[35163,35162,34905,0],[35161,35163,35164,0],[35161,35164,35188,0],[35161,35188,35165,0],[35167,35168,35174,0],[35186,35170,35169,0],[35169,35170,7081,0],[35171,35172,48826,0],[48824,48826,48825,0],[48825,48826,48823,0],[48825,48823,27458,0],[35188,35173,48823,0],[27458,48823,35173,0],[35161,35165,48808,0],[48818,48805,35167,0],[48818,35167,48811,0],[48811,35167,35174,0],[48811,35174,48812,0],[48812,35174,35175,0],[35175,35186,48837,0],[35177,35175,35176,0],[35177,35176,35178,0],[35178,35176,35187,0],[35178,35187,48815,0],[35178,48815,48814,0],[35179,48814,48813,0],[35179,48813,35180,0],[35180,48813,35182,0],[34766,35181,35184,0],[35184,35181,35182,0],[34762,35184,35185,0],[35183,35185,35184,0],[35184,35182,35183,0],[35181,35180,35182,0],[35175,35174,35186,0],[35186,35169,48837,0],[48837,35169,48838,0],[35169,7081,7083,0],[35169,7083,48838,0],[48838,7083,7084,0],[48838,7084,35187,0],[48815,35187,7085,0],[35167,48805,35166,0],[35166,48805,48808,0],[35166,48808,35165,0],[35188,35164,7070,0],[35188,7070,35173,0],[35163,7070,35164,0],[35159,35189,35158,0],[35159,35158,35157,0],[35159,35157,35190,0],[35159,35190,9181,0],[35152,35191,34772,0],[34772,35191,35192,0],[35154,35193,35153,0],[35153,35193,35191,0],[35191,35193,35192,0],[35192,35193,34771,0],[34771,35193,34770,0],[35195,34791,35194,0],[34801,35195,35194,0],[48780,34746,35196,0],[35143,27564,27563,0],[6998,35143,27625,0],[35197,7059,7057,0],[34911,27566,35198,0],[35200,35199,27576,0],[35200,27576,35201,0],[35200,27556,35199,0],[35199,27556,35202,0],[27556,27557,35202,0],[35202,27557,35203,0],[35202,35203,35204,0],[35198,35204,35203,0],[35198,35203,34911,0],[35205,27598,27599,0],[27608,27607,27579,0],[27579,27607,35206,0],[27606,35206,27607,0],[27598,35205,27578,0],[27597,27612,27578,0],[27578,27612,27615,0],[27615,27614,27578,0],[27578,27614,27598,0],[31944,31945,35208,0],[35207,31945,27659,0],[35208,31945,35207,0],[35216,27660,35217,0],[35328,35214,27656,0],[35328,27656,35209,0],[35209,27668,27654,0],[35218,27654,35211,0],[35211,7041,35210,0],[35210,7041,7039,0],[7038,35208,35207,0],[7038,35210,27610,0],[27610,35210,7039,0],[7039,7041,7040,0],[35212,35211,35213,0],[35213,35211,27654,0],[35212,35213,7042,0],[7042,35213,27653,0],[27651,7042,27653,0],[27656,35214,27661,0],[27661,35214,35215,0],[35215,35214,35328,0],[35215,35328,27660,0],[35217,35218,35211,0],[35211,35210,35217,0],[35207,35216,7038,0],[7038,35216,35210,0],[35210,35216,35217,0],[35218,35217,27660,0],[35218,27660,35328,0],[27532,27530,27527,0],[27532,27527,27528,0],[27532,27528,27526,0],[27532,27526,27483,0],[35219,31968,31988,0],[35219,31988,31981,0],[35219,31981,6908,0],[6908,31981,27134,0],[6908,27134,31982,0],[6908,31982,6909,0],[6909,31982,6910,0],[27253,31965,35220,0],[27250,31965,27253,0],[27234,27233,27232,0],[35297,35221,35276,0],[35276,35221,35222,0],[35276,35222,35223,0],[35378,35223,35224,0],[35275,35225,35273,0],[35273,35225,35227,0],[35227,35225,35226,0],[35271,35227,35228,0],[35231,35229,35230,0],[35317,35230,35229,0],[35317,35229,35233,0],[35233,35229,35232,0],[35232,35228,35265,0],[35232,35265,35270,0],[35232,35270,35233,0],[35236,35261,35319,0],[35319,35261,35237,0],[35237,35261,35269,0],[35238,35268,35239,0],[35243,26483,26484,0],[35239,35243,35238,0],[35238,35243,35240,0],[35246,35240,35245,0],[35241,26485,26486,0],[35244,35243,26484,0],[35243,35244,35240,0],[35245,35242,35241,0],[35245,26853,35246,0],[35240,35246,35238,0],[35247,26475,35318,0],[27541,35248,35356,0],[35251,35249,35353,0],[35251,35353,35356,0],[35251,35356,35248,0],[26474,35358,35254,0],[35254,35318,26475,0],[26475,26474,35254,0],[35318,35254,35253,0],[35318,35253,35252,0],[35253,35254,35358,0],[35252,35253,27541,0],[27541,35253,27542,0],[35250,27539,35355,0],[35258,31958,35257,0],[35255,31958,35256,0],[35255,35256,27538,0],[31957,27538,27537,0],[27539,31958,35258,0],[27539,35258,35355,0],[31958,27539,35256,0],[35256,27539,27540,0],[31958,35306,35257,0],[35258,35257,35259,0],[35236,35262,35261,0],[35231,35300,35263,0],[35263,35316,27238,0],[35258,35259,35354,0],[35354,35259,35260,0],[35240,35244,35245,0],[35269,35268,35238,0],[35264,26483,35239,0],[35266,35264,35267,0],[35267,35228,35226,0],[35267,35226,35266,0],[35228,35227,35226,0],[35264,35265,35267,0],[26483,35243,35239,0],[35234,35239,35268,0],[35268,35269,35235,0],[35235,35269,35261,0],[35235,35234,35268,0],[35264,35239,35234,0],[35270,35234,35235,0],[35270,35235,35233,0],[35234,35270,35265,0],[35234,35265,35264,0],[26483,35266,26482,0],[26482,35266,35226,0],[26482,35226,35225,0],[35378,35275,35223,0],[35223,35275,35274,0],[35276,35274,35322,0],[35322,35274,35273,0],[35322,35273,35271,0],[35271,35228,35272,0],[35272,35228,35299,0],[35263,35298,35231,0],[35227,35271,35273,0],[35273,35274,35275,0],[35223,35274,35276,0],[35223,35222,35224,0],[35224,35222,35277,0],[35224,35277,35278,0],[35224,35278,26481,0],[35279,35280,26480,0],[26480,35280,26862,0],[35280,26481,35281,0],[35281,26481,35278,0],[35281,35278,35283,0],[35282,35283,35294,0],[35282,35294,35288,0],[35288,35296,35284,0],[35286,35284,35296,0],[35286,35296,35287,0],[35367,27229,27228,0],[35283,35282,35289,0],[35504,35289,35291,0],[35291,35289,35290,0],[35506,35369,35376,0],[35506,35376,35507,0],[35507,35376,35372,0],[35507,35372,27423,0],[27423,35372,27429,0],[27429,35372,27100,0],[35292,35277,35293,0],[35293,27247,35294,0],[35288,35294,27247,0],[35288,27247,35295,0],[35296,35295,35287,0],[35295,35296,35288,0],[27247,35293,27230,0],[27231,27230,35221,0],[35221,35297,27249,0],[27249,35297,27232,0],[27230,35293,35221,0],[35283,35278,35292,0],[35292,35278,35277,0],[35293,35222,35221,0],[35277,35222,35293,0],[26481,35280,35279,0],[27235,35272,35298,0],[27237,35298,35263,0],[35263,27238,27237,0],[27237,31964,35298,0],[35298,31964,27235,0],[35272,35299,35298,0],[35272,27235,35322,0],[35272,35322,35271,0],[35231,35298,35229,0],[35298,35299,35229,0],[35229,35299,35232,0],[35232,35299,35228,0],[35231,35305,35300,0],[35300,35305,35301,0],[35301,35302,35259,0],[35301,35305,35302,0],[35304,35262,35302,0],[35302,35262,35303,0],[35236,35303,35262,0],[35236,35260,35303,0],[35303,35260,35302,0],[35302,35260,35259,0],[35306,31959,35257,0],[35257,31959,35315,0],[35263,35300,35316,0],[27500,27239,35307,0],[35307,27241,27493,0],[27241,35307,27240,0],[27240,35307,27239,0],[35309,27477,35310,0],[35311,27519,35310,0],[35310,27521,35309,0],[35309,35308,27480,0],[27480,35308,27518,0],[27480,27518,27479,0],[27477,35309,27480,0],[27478,27479,27243,0],[27246,27478,27243,0],[35312,31961,35313,0],[35314,35313,35300,0],[35300,35301,35314,0],[35312,35313,31959,0],[35314,35301,35315,0],[31959,35313,35315,0],[35315,35313,35314,0],[27238,35316,27244,0],[27244,35316,35313,0],[35300,35313,35316,0],[35305,35231,35230,0],[35305,35230,35304,0],[35233,35235,35262,0],[35233,35262,35317,0],[35235,35261,35262,0],[35237,35318,35252,0],[35237,35252,35319,0],[35246,26475,35247,0],[35237,35269,35318,0],[35318,35269,35238,0],[35318,35238,35247,0],[35247,35238,35246,0],[35358,26474,26473,0],[26485,35242,35320,0],[26484,26483,26482,0],[26484,35321,35320,0],[35242,26484,35320,0],[26484,35242,35244,0],[26485,35380,26486,0],[35276,35322,35297,0],[35297,35322,27232,0],[27232,35322,27234,0],[35293,35294,35292,0],[35292,35294,35283,0],[35282,35288,35323,0],[35290,35282,35323,0],[35324,9172,9171,0],[9172,35324,9173,0],[7000,7001,6999,0],[6999,7001,35133,0],[6999,35133,7002,0],[6994,6999,7002,0],[6991,7003,7011,0],[6991,7011,6990,0],[7003,35131,35130,0],[7020,35141,35325,0],[35142,35325,35141,0],[6991,6993,7002,0],[7010,35130,35326,0],[7011,7003,7010,0],[7010,7003,35130,0],[35326,35108,35327,0],[35327,35108,7008,0],[6998,27623,27564,0],[35143,6998,27564,0],[27654,35218,35328,0],[27654,35328,35209,0],[27473,27472,35197,0],[27642,27608,7057,0],[7057,27608,27579,0],[27471,27472,35329,0],[35329,27472,27474,0],[35329,27474,27475,0],[35331,35337,35332,0],[35331,35332,35334,0],[35334,35333,35255,0],[31958,35255,35335,0],[35333,31960,35335,0],[35333,35335,35255,0],[35311,35334,35332,0],[35336,35332,35338,0],[35338,35332,35337,0],[35338,35337,35330,0],[35336,35338,27520,0],[35338,35329,27475,0],[27475,27524,35338,0],[27471,35330,31955,0],[31955,35330,31956,0],[31956,35331,31957,0],[31957,35331,35255,0],[35255,35331,35334,0],[35331,31956,35337,0],[35330,35337,31956,0],[31955,27536,27470,0],[27470,27536,27644,0],[31955,31956,27536,0],[27536,31956,27537,0],[27537,31956,31957,0],[35255,27538,31957,0],[35339,27463,31951,0],[35339,7070,27463,0],[7070,35339,7071,0],[7071,35339,31951,0],[7071,31951,27462,0],[35340,27462,27553,0],[27553,27461,35340,0],[27462,35340,27458,0],[27462,27458,35173,0],[27462,35173,7071,0],[27461,27459,35340,0],[31953,27462,31951,0],[35200,27555,35341,0],[35342,35343,35352,0],[35344,35352,35343,0],[35344,35343,35345,0],[35344,35345,34900,0],[35341,35342,27556,0],[27556,35342,27557,0],[34900,34901,34903,0],[34903,34901,34904,0],[34903,34902,34900,0],[34900,34902,34899,0],[35346,34906,35347,0],[35346,35347,34904,0],[34901,35346,34904,0],[34902,34905,35348,0],[35324,35348,9174,0],[35324,9174,9173,0],[35348,35324,34902,0],[34899,34898,35349,0],[35349,34898,35350,0],[35350,34908,35349,0],[34899,35349,34913,0],[34899,34913,35351,0],[34899,35351,34900,0],[34900,35351,35344,0],[35350,34898,34897,0],[34910,34908,35350,0],[35201,27638,27554,0],[34912,35352,35344,0],[34912,35344,35351,0],[35352,27557,35342,0],[35352,34912,34911,0],[35352,34911,35203,0],[35203,27557,35352,0],[7065,35342,35341,0],[7065,35341,7064,0],[7064,35341,7063,0],[7063,35341,27555,0],[27555,7062,7063,0],[7065,35343,35342,0],[35258,35354,35355,0],[35355,35354,35353,0],[35353,35249,35355,0],[35355,35249,35250,0],[35354,35260,35353,0],[35353,35260,35356,0],[35260,35236,35356,0],[35356,35236,35357,0],[35356,35357,27541,0],[35357,35236,35319,0],[35357,35319,35252,0],[35252,27541,35357,0],[27543,27542,35253,0],[48834,35253,35358,0],[35358,26473,48834,0],[48834,26473,48835,0],[26474,26856,26503,0],[35265,35228,35267,0],[35322,27235,27234,0],[31978,31975,31971,0],[31971,31975,31970,0],[6916,7049,35359,0],[35359,27877,6920,0],[6920,6921,6922,0],[6920,6922,27876,0],[6920,27877,6919,0],[35360,27663,27731,0],[27260,27259,27251,0],[35362,35361,27228,0],[27228,27254,35362,0],[35362,27254,27251,0],[35362,27251,35361,0],[35361,27251,27259,0],[35361,27259,27263,0],[35361,27263,35363,0],[35363,27263,35364,0],[49557,35364,27256,0],[49557,27256,27255,0],[27226,35363,35364,0],[27226,35364,35365,0],[35364,49557,35365,0],[27255,27224,49557,0],[35367,35366,49558,0],[35367,49558,35287,0],[27227,35366,27228,0],[27228,35366,35367,0],[35368,35463,35479,0],[35284,35463,35285,0],[35285,35463,35368,0],[35285,35368,35371,0],[35370,35369,35291,0],[35370,35291,35290,0],[35290,35323,35370,0],[35369,35370,35371,0],[35371,35370,35285,0],[35371,35368,35375,0],[35371,35375,35376,0],[35376,35369,35371,0],[35479,35375,35368,0],[35372,35376,35373,0],[35373,35376,35374,0],[35374,35376,35375,0],[35320,35321,35377,0],[35320,35379,26485,0],[35320,35377,35379,0],[26477,35381,26478,0],[26486,35383,26487,0],[26487,35383,35381,0],[26487,35381,26477,0],[26486,35380,35383,0],[35383,35380,35382,0],[35381,35383,35384,0],[35381,35384,26489,0],[35383,35382,26481,0],[35384,35383,26481,0],[35380,26485,35379,0],[35377,35378,35379,0],[35379,35378,35380,0],[35241,26486,26493,0],[26860,26491,35385,0],[35385,26491,35386,0],[35385,35386,35449,0],[35449,35386,35387,0],[35450,35387,35388,0],[35450,35388,35451,0],[35451,35388,35389,0],[35390,35389,35388,0],[35390,35388,35391,0],[35391,35388,35387,0],[35386,26491,35392,0],[35386,35392,35387,0],[35387,35392,35438,0],[35438,35393,35436,0],[35436,35393,35394,0],[35521,35637,35633,0],[35521,35633,35395,0],[35396,35636,35397,0],[35398,35635,35399,0],[35399,35635,35423,0],[35399,35423,35512,0],[35512,35423,35400,0],[35400,35424,35514,0],[35514,35424,35401,0],[26917,35404,26916,0],[35404,36869,35403,0],[36869,35402,35403,0],[35403,35402,35412,0],[35403,35412,35408,0],[35404,35405,26916,0],[26916,35405,35406,0],[35406,35405,35738,0],[35407,35405,35408,0],[35408,35405,35404,0],[26929,35407,35408,0],[35408,35412,26929,0],[26929,35412,35409,0],[26929,35409,26934,0],[35409,35412,35411,0],[35409,35411,35410,0],[35410,35411,35424,0],[35424,35411,35401,0],[35411,35412,35401,0],[35401,35412,35413,0],[35402,35413,35412,0],[26934,35409,35410,0],[26934,35410,26930,0],[26930,35410,35433,0],[26930,35433,35414,0],[35416,35418,35417,0],[26871,35417,35418,0],[26871,35418,27409,0],[35638,35418,35639,0],[35639,35418,35419,0],[35639,35419,35415,0],[35741,35415,35427,0],[35741,35427,35414,0],[35741,35414,35420,0],[35741,35420,35421,0],[35421,35420,35422,0],[35422,35420,35434,0],[35422,35434,35635,0],[35635,35434,35423,0],[35400,35423,35424,0],[35416,35419,35418,0],[35416,35417,26867,0],[35419,35425,35426,0],[35419,35426,35415,0],[35415,35426,35427,0],[35425,26872,35426,0],[35426,26872,35427,0],[35427,26872,35428,0],[35427,35428,35429,0],[35414,35430,26932,0],[35414,26932,26930,0],[26932,35430,35431,0],[35431,35430,35432,0],[35430,35429,35432,0],[35432,35429,26873,0],[26873,35429,35428,0],[35414,35427,35430,0],[35430,35427,35429,0],[35423,35434,35424,0],[35424,35434,35433,0],[35424,35433,35410,0],[35435,26924,26936,0],[26877,26924,26925,0],[26925,26924,35738,0],[35436,35437,35438,0],[35438,35437,35391,0],[35438,35391,35387,0],[35394,35637,35436,0],[35436,35637,35439,0],[35439,35444,35440,0],[35441,35443,35445,0],[35445,35443,35442,0],[35443,35444,35439,0],[35442,35443,35647,0],[35443,35441,35444,0],[35444,35441,35440,0],[35437,35440,35390,0],[35391,35437,35390,0],[35650,35445,35442,0],[35650,35442,26572,0],[35441,35445,35390,0],[35441,35390,35440,0],[35389,35446,35452,0],[35437,35436,35440,0],[35440,35436,35439,0],[35438,35392,35447,0],[35438,35447,35393,0],[35392,26491,35447,0],[26558,35385,35449,0],[26558,35449,35450,0],[35450,35449,35387,0],[26558,35450,26557,0],[26557,35450,35451,0],[35452,35451,35389,0],[35452,35454,35455,0],[35455,35454,35453,0],[35455,35453,26569,0],[26570,35454,35446,0],[26570,26817,35454,0],[35454,26817,35453,0],[35452,35455,35451,0],[35451,35455,26557,0],[26557,35455,35456,0],[26554,35459,35460,0],[35460,26553,26554,0],[35459,35461,35460,0],[35461,35458,26842,0],[26842,35460,35461,0],[26557,35456,35457,0],[35457,35458,26556,0],[26556,35458,35461,0],[35448,26495,26494,0],[35448,26494,26861,0],[35448,26861,26860,0],[27104,27421,27419,0],[27419,27418,26863,0],[26863,27418,26864,0],[27418,27417,35462,0],[27417,27101,35462,0],[27416,35462,27422,0],[27422,35462,27101,0],[27104,27419,26862,0],[26862,27419,26863,0],[27103,27421,35291,0],[27103,35291,35369,0],[35290,35289,35282,0],[35382,35380,35378,0],[27516,35220,31965,0],[27228,35361,27227,0],[35366,35488,49558,0],[49558,35488,35787,0],[49558,35787,35487,0],[35284,35286,35463,0],[35479,35464,35484,0],[35484,35464,35465,0],[35484,35465,35466,0],[35484,35466,35467,0],[35483,35467,35767,0],[35483,35767,35468,0],[35470,35469,27225,0],[27225,35794,35470,0],[35481,35472,35796,0],[35481,35796,35473,0],[35473,35796,27443,0],[27443,35480,35473,0],[35473,35480,35481,0],[35481,35474,35475,0],[35475,35474,35485,0],[35485,35476,35483,0],[35467,35483,35499,0],[35467,35499,35477,0],[35486,35477,35493,0],[35486,35493,35478,0],[35478,35479,35486,0],[35481,35480,35474,0],[35482,35470,35471,0],[35482,35471,35475,0],[35481,35475,35472,0],[35472,35475,35471,0],[35475,35485,35482,0],[35483,35468,35485,0],[35482,35485,35468,0],[35486,35479,35484,0],[35465,35464,35487,0],[35465,35487,35787,0],[35488,35366,35489,0],[35489,35366,27227,0],[35489,27227,35492,0],[35492,27227,35490,0],[35490,27227,35361,0],[35490,35361,35363,0],[35490,35363,27226,0],[27226,35365,35491,0],[35490,35491,35492,0],[35491,35490,27226,0],[35487,35464,35463,0],[35463,35464,35479,0],[35375,35479,35374,0],[35494,27099,35746,0],[35373,35374,35746,0],[35746,35374,35493,0],[35746,35493,35494,0],[35479,35478,35374,0],[35374,35478,35493,0],[35494,35497,35785,0],[35495,35785,27098,0],[27098,35785,27095,0],[35493,35477,35496,0],[35497,35496,35498,0],[35498,35496,35499,0],[35498,35499,35474,0],[35493,35496,35494,0],[35494,35496,35497,0],[35496,35477,35499,0],[35474,35476,35485,0],[35476,35499,35483,0],[35474,35480,35500,0],[35500,35480,27094,0],[27094,27095,35500,0],[35500,27095,35786,0],[35500,35786,35498,0],[35489,35492,35501,0],[35501,35492,35503,0],[35469,35502,27225,0],[27225,35502,35365,0],[35365,35502,35503,0],[35503,35491,35365,0],[35491,35503,35492,0],[35289,35504,35505,0],[35505,35281,35283,0],[35505,35283,35289,0],[35281,35505,35280,0],[35280,35505,26862,0],[26862,35505,35504,0],[26862,35504,27104,0],[27104,35504,35291,0],[27423,27102,35506,0],[27423,35506,35507,0],[35369,35506,27103,0],[27103,35506,27102,0],[27427,27408,35508,0],[27408,27431,35508,0],[35509,26890,26872,0],[35414,35433,35434,0],[35414,35434,35420,0],[35398,35399,35511,0],[35398,35511,35520,0],[35510,35520,35522,0],[35522,35520,35648,0],[35648,35520,35511,0],[35648,35511,35649,0],[35649,35511,35519,0],[35511,35399,35518,0],[35518,35399,35512,0],[35513,35512,35400,0],[35513,35400,35529,0],[35529,35400,35514,0],[35529,35514,35515,0],[35740,35515,35516,0],[35516,35413,35402,0],[35514,35517,35515,0],[35515,35517,35516,0],[35516,35517,35413,0],[35413,35517,35401,0],[35401,35517,35514,0],[35511,35518,35519,0],[35513,35518,35512,0],[35518,35513,26821,0],[26821,35530,26819,0],[35510,35397,35520,0],[35397,35398,35520,0],[35397,35510,35396,0],[35439,35521,35443,0],[35396,35522,35395,0],[35522,35646,35395,0],[35646,35521,35395,0],[35637,35521,35439,0],[35396,35510,35522,0],[35521,35646,35443,0],[35523,35524,35531,0],[35531,35524,35620,0],[35524,26820,35525,0],[35526,35527,35740,0],[35740,35527,35528,0],[35529,35530,35513,0],[35513,35530,26821,0],[35529,35515,35528,0],[26825,35524,35523,0],[35706,35692,26591,0],[26591,26695,35706,0],[35523,35531,35624,0],[35620,35524,35525,0],[35523,35624,35532,0],[35532,35624,35533,0],[35707,35533,35534,0],[35534,35558,35702,0],[49813,35535,35697,0],[35535,35556,35555,0],[35535,35555,35536,0],[35537,35536,36857,0],[35538,35546,26600,0],[26600,35546,36839,0],[36839,35546,35539,0],[35548,35545,36860,0],[36860,35545,35542,0],[36860,35542,35708,0],[35552,35708,35547,0],[35552,35547,35554,0],[35626,35547,35544,0],[35545,35544,35542,0],[35544,35545,35540,0],[35544,35540,35539,0],[35544,35539,35626,0],[35626,35539,35546,0],[35539,35540,26604,0],[35542,35544,35708,0],[35708,35544,35547,0],[35543,35554,35547,0],[35541,35540,35545,0],[35545,35548,35541,0],[35541,35548,26606,0],[26606,35548,26622,0],[49516,35548,35549,0],[35551,35552,35588,0],[35592,35552,35554,0],[35592,35554,35553,0],[35554,35555,35556,0],[35597,35556,35601,0],[35560,35700,35557,0],[35557,35700,35702,0],[35557,35702,35558,0],[35615,35558,35559,0],[35622,35559,35533,0],[35533,35559,35534,0],[35534,35559,35558,0],[35560,35561,49813,0],[49813,35561,35601,0],[35561,35560,35710,0],[35561,35710,35600,0],[35562,35600,35710,0],[35562,35710,35595,0],[35595,35710,35711,0],[35563,35709,35712,0],[35563,35712,35607,0],[35607,35712,35606,0],[35564,35613,35565,0],[35565,35566,35572,0],[35526,35567,35619,0],[35526,35619,35525,0],[35526,35740,35567,0],[35618,35567,35617,0],[35567,35740,35568,0],[35569,36868,35570,0],[35571,36863,35570,0],[35570,36863,26920,0],[35570,26920,35612,0],[35612,26920,35572,0],[35573,35572,49814,0],[35573,49814,36685,0],[35573,36685,49959,0],[35575,36684,35587,0],[35575,35587,36872,0],[35576,35577,35578,0],[26609,26608,35584,0],[35584,35576,35580,0],[35583,35580,35586,0],[26611,35586,35581,0],[26611,36674,35586,0],[35586,36674,35583,0],[35580,35583,35584,0],[26609,35584,35582,0],[35576,35584,35577,0],[35576,35587,35580,0],[35587,35585,35586,0],[35586,35585,35581,0],[35586,35580,35587,0],[35576,36872,35587,0],[26608,26607,35579,0],[26608,35579,35584,0],[35584,35579,35577,0],[35577,35579,35578,0],[35576,35578,36872,0],[35549,35589,26607,0],[26607,35589,35579,0],[35588,35590,35551,0],[35551,35590,35589,0],[35589,35590,35579,0],[35579,35590,35578,0],[35588,35552,35591,0],[35591,35592,35602,0],[35591,35602,35593,0],[35594,35562,35608,0],[35608,35595,35563,0],[35562,35595,35608,0],[35594,35602,35596,0],[35598,35600,35599,0],[35562,35594,35599,0],[35599,35594,35596,0],[35599,35596,35598,0],[35562,35599,35600,0],[35561,35600,35601,0],[35601,35598,35597,0],[35601,35600,35598,0],[35556,35597,35553,0],[35592,35591,35552,0],[35598,35553,35597,0],[35592,35598,35596,0],[35592,35596,35602,0],[35553,35554,35556,0],[35588,35591,35593,0],[35593,35602,35578,0],[35578,35602,36872,0],[35578,35590,35593,0],[35593,35590,35588,0],[35575,36871,35610,0],[35604,35605,35573,0],[35604,35573,49959,0],[35607,35609,35608,0],[35594,35608,35609,0],[35594,35609,36871,0],[35610,35609,35611,0],[35610,35611,35603,0],[35603,35606,35605,0],[35603,35605,35604,0],[35610,36871,35609,0],[35609,35607,35611,0],[35603,35611,35606,0],[35606,35611,35607,0],[35608,35563,35607,0],[35606,35564,35605,0],[35605,35564,35565,0],[35605,35572,35573,0],[35605,35565,35572,0],[49959,35574,35604,0],[35604,35574,35603,0],[35602,35594,36871,0],[35569,35570,35612,0],[35569,35566,35568,0],[35566,35617,35568,0],[35568,35617,35567,0],[35566,35613,35617,0],[35615,35559,35614,0],[35617,35616,35621,0],[35617,35621,35618,0],[35525,35619,35620,0],[35619,35567,35618,0],[35618,35621,35623,0],[35619,35623,35620,0],[35617,35613,35616,0],[35621,35616,35614,0],[35621,35614,35559,0],[35621,35559,35622,0],[35621,35622,35623,0],[35623,35622,35624,0],[35624,35622,35533,0],[35624,35531,35623,0],[35566,35565,35613,0],[35549,35548,36860,0],[35549,35550,35551,0],[35549,35551,35589,0],[26600,26599,35538,0],[36857,35536,35625,0],[35625,35543,35538,0],[35538,35543,35626,0],[35538,35626,35546,0],[35536,35555,35625,0],[35625,35555,35543,0],[35554,35543,35555,0],[35556,35535,35601,0],[35601,35535,49813,0],[35627,26823,26819,0],[35627,26819,35530,0],[35627,35530,35529,0],[35527,35526,35525,0],[35527,35525,26820,0],[35527,26820,26823,0],[35527,26823,35627,0],[35527,35627,35528,0],[35528,35627,35529,0],[35630,26875,35628,0],[26908,26907,35629,0],[35629,26911,26908,0],[26908,26910,26909,0],[26909,26910,26879,0],[26879,26878,26909,0],[26876,26877,26925,0],[26925,26927,35628,0],[35628,26876,26925,0],[26927,35630,35628,0],[26875,35630,26933,0],[27411,35645,35394,0],[35631,35644,35632,0],[35633,35632,35641,0],[35633,35641,35395,0],[35395,35641,35634,0],[35395,35634,35396,0],[35396,35634,35636,0],[35643,35422,35397,0],[35397,35422,35635,0],[35632,35633,35631,0],[35394,35631,35637,0],[35633,35637,35631,0],[27411,35394,35393,0],[27411,35393,27412,0],[27412,35447,27413,0],[27413,35447,26491,0],[35447,27412,35393,0],[35638,27409,35418,0],[35632,35638,35641,0],[35641,35638,35642,0],[35642,35639,35640,0],[35638,35639,35642,0],[35639,35415,35640,0],[35415,35421,35640,0],[35641,35642,35634,0],[35634,35642,35643,0],[35643,35642,35640,0],[35422,35640,35421,0],[35422,35643,35640,0],[35638,35632,27409,0],[27409,35632,27410,0],[26866,27410,35644,0],[35632,35644,27410,0],[35644,35631,26866,0],[26866,35631,35645,0],[35631,35394,35645,0],[35645,27411,26865,0],[35643,35636,35634,0],[35636,35643,35397,0],[35397,35635,35398,0],[26487,26476,26493,0],[35646,35522,35647,0],[35647,35443,35646,0],[35649,26574,35648,0],[35648,26574,35442,0],[35442,35647,35648,0],[35648,35647,35522,0],[35445,35650,35389,0],[35389,35650,26571,0],[35445,35389,35390,0],[26558,26496,35448,0],[35448,26860,35385,0],[26559,26551,26506,0],[26559,26506,26561,0],[26506,26551,26550,0],[35662,35655,35656,0],[35656,35655,35652,0],[35659,35653,35671,0],[35671,35653,35673,0],[35670,35671,35654,0],[35670,35654,48803,0],[35653,35652,35674,0],[26522,35674,26521,0],[35674,35652,26521,0],[26521,35652,35663,0],[35663,35652,35655,0],[26512,35658,35669,0],[35653,35659,35657,0],[35657,35659,26512,0],[26512,35659,35658,0],[35653,35657,35656,0],[35653,35656,35652,0],[26512,35660,26511,0],[35661,26511,48801,0],[35661,48801,7078,0],[26509,35661,48828,0],[48828,35661,7078,0],[35655,35662,35663,0],[35663,35662,35664,0],[35651,35665,35666,0],[35651,35666,35662,0],[35662,35666,35664,0],[35664,35666,26518,0],[26518,35666,35665,0],[26472,35667,35668,0],[26472,35668,7076,0],[26472,7076,7075,0],[7076,35668,26509,0],[35660,26512,35669,0],[35660,35669,35670,0],[48803,26524,35670,0],[35670,26524,35660,0],[35659,35671,35658,0],[48803,35654,26523,0],[26523,35654,35672,0],[35673,35674,26522,0],[35653,35674,35673,0],[35671,35673,35654,0],[35654,35673,35672,0],[35675,26522,35676,0],[48771,35676,35680,0],[35682,35681,35677,0],[35678,26711,26717,0],[35678,26717,26547,0],[35678,35677,35679,0],[35678,35679,26711,0],[26711,48794,26717,0],[26711,35679,48773,0],[26764,35679,35677,0],[26763,35681,26520,0],[35663,26520,35676,0],[35663,35676,26521,0],[35681,35680,26520,0],[35680,35681,26548,0],[26548,35681,35682,0],[35682,35677,35678,0],[35682,35678,26547,0],[48771,48770,35676,0],[48770,35675,35676,0],[26508,26516,26513,0],[26516,26515,26513,0],[35446,35389,26571,0],[26588,26572,35690,0],[26578,26586,35683,0],[35683,26586,26585,0],[26588,26578,35683,0],[26571,35683,35691,0],[35691,35683,26584,0],[26584,35683,26585,0],[35683,26571,26588,0],[26583,26584,35684,0],[35684,26585,35685,0],[35685,26585,26826,0],[26826,26585,26587,0],[26584,26585,35684,0],[35684,26582,26583,0],[26720,35686,26771,0],[26720,26771,26719,0],[26719,26771,26707,0],[26719,26707,35687,0],[26771,35686,26708,0],[35686,35688,26710,0],[35686,26710,26708,0],[48773,35688,35689,0],[26721,26728,26729,0],[26729,26728,35689,0],[26729,35689,35688,0],[26839,35690,26573,0],[35690,26572,26573,0],[26570,35691,26583,0],[26583,35691,26584,0],[35692,35706,35705,0],[35692,35705,35693,0],[35701,35703,36850,0],[36850,35703,35695,0],[35695,35703,35696,0],[35537,36844,35535,0],[35537,35535,35536,0],[35535,36844,35697,0],[49813,35698,35699,0],[35699,35698,35703,0],[35699,35703,35700,0],[35700,35703,35701,0],[35700,35701,35702,0],[35702,35701,35694,0],[35702,35694,35704,0],[35693,35704,35694,0],[35696,35703,35698,0],[35704,35693,35707,0],[35704,35707,35534,0],[35534,35702,35704,0],[35698,49813,35697,0],[36844,35696,35698,0],[36844,35698,35697,0],[35707,35705,35533,0],[35533,35705,35532,0],[35532,35705,35706,0],[35532,35706,35523,0],[35705,35707,35693,0],[36853,35692,35693,0],[36853,35693,36852,0],[36852,35693,35694,0],[36851,35694,35701,0],[35708,35552,35551,0],[35708,35551,35550,0],[35550,35549,36860,0],[35613,35564,36861,0],[36861,35712,35614,0],[35614,35712,35709,0],[35558,35709,35557,0],[35710,35560,35711,0],[35560,35557,35711,0],[35711,35709,35563,0],[35712,36861,35606,0],[35606,36861,35564,0],[35709,35711,35557,0],[35558,35615,35709,0],[35615,35614,35709,0],[35613,36861,35616,0],[35456,35713,35458,0],[35458,35457,35456,0],[35455,26569,35456,0],[35456,26569,35713,0],[35713,26569,26568,0],[35713,26568,26841,0],[26841,26842,35713,0],[35713,26842,35458,0],[26752,26755,26769,0],[35727,26706,35714,0],[35721,35715,35722,0],[35722,35715,26630,0],[26630,35715,35716,0],[35718,35715,35721,0],[35718,35721,35717,0],[35717,35721,26705,0],[26705,35721,35714,0],[26706,26705,35714,0],[35715,35718,35719,0],[35719,35720,26629,0],[26629,35716,35719,0],[35719,35716,35715,0],[35717,26704,35718,0],[35718,26704,35719,0],[35714,35721,48754,0],[48754,35721,35722,0],[35724,35722,26630,0],[35724,26630,26631,0],[35723,7862,35724,0],[35724,26631,7847,0],[35724,7847,35723,0],[7862,26726,35724,0],[26726,26725,35725,0],[35725,26725,35726,0],[26722,35726,26725,0],[35714,48754,35727,0],[35687,35727,26719,0],[26721,26719,35727,0],[35727,35687,26706,0],[7857,7856,7843,0],[7835,7845,7856,0],[7856,7845,7843,0],[35728,7836,26666,0],[35728,26666,7238,0],[35728,7238,7237,0],[7278,7237,7238,0],[7237,7236,35728,0],[35728,7236,7836,0],[7837,7234,7838,0],[7838,7234,7839,0],[7840,35729,7841,0],[7839,7234,35730,0],[7839,35730,35729,0],[35730,7234,7233,0],[7841,35729,7842,0],[26556,35461,26497,0],[26497,35461,35459,0],[26915,26614,36679,0],[26915,36679,26919,0],[35731,36862,36680,0],[27407,35732,35733,0],[35732,26614,35733,0],[35406,35733,26915,0],[26915,35733,26614,0],[35734,26615,35735,0],[35735,26941,35736,0],[35735,35736,35734,0],[35736,26939,35737,0],[35736,35737,35734,0],[27407,35735,35732,0],[35732,35735,26615,0],[35435,35738,26924,0],[35516,35739,35740,0],[35740,35528,35515,0],[35569,35568,35739,0],[35739,35568,35740,0],[35421,35415,35741,0],[35742,35749,35743,0],[35743,35749,26887,0],[35743,26887,35768,0],[26891,35742,35744,0],[35744,35742,35743,0],[27447,35745,35495,0],[35495,35745,27456,0],[35746,27455,27454,0],[35746,27454,27100,0],[35746,27100,35373,0],[27097,27447,27098,0],[35747,27096,27445,0],[27445,27096,35748,0],[35748,27096,27094,0],[35748,27094,35765,0],[35765,27094,27093,0],[27097,27096,35747,0],[27439,27445,27440,0],[27440,27445,35748,0],[35785,35495,27099,0],[35785,27099,35494,0],[35467,35477,35486,0],[35742,26873,26890,0],[35749,26889,26887,0],[35749,35742,26890,0],[35749,26890,26889,0],[26889,26890,35750,0],[35750,27428,27435,0],[35751,26892,35752,0],[35751,35752,35759,0],[35759,35752,35756,0],[35762,35754,35760,0],[35760,35754,35764,0],[35764,35754,35758,0],[26903,35758,35753,0],[26885,35753,35754,0],[35754,35762,26906,0],[26906,35762,26886,0],[35755,35743,35768,0],[35743,35755,35744,0],[35752,35744,35756,0],[35752,26892,26891,0],[35752,26891,35744,0],[35755,26886,35744,0],[35744,26886,35757,0],[35744,35757,35756,0],[35756,35757,35762,0],[35757,26886,35762,0],[26903,26902,35763,0],[26903,35763,35758,0],[35761,35764,35759,0],[35760,35764,35761,0],[35761,35756,35762,0],[35756,35761,35759,0],[35761,35762,35760,0],[35759,35764,26894,0],[26894,35763,26895,0],[26895,35763,26902,0],[27429,27100,27454,0],[35765,27093,27442,0],[27442,27441,35765,0],[35765,27441,35748,0],[35466,35788,35766,0],[35766,35790,35502,0],[35767,35467,35466,0],[35466,35766,35767,0],[35767,35766,35468,0],[26887,27444,35768,0],[35768,27439,35769,0],[35769,27439,27440,0],[35769,27440,49555,0],[49555,27440,35770,0],[35770,27441,49552,0],[49552,27441,35771,0],[49552,35771,35825,0],[35825,35772,35824,0],[35824,35772,35821,0],[35821,35772,35773,0],[35795,27091,35773,0],[35795,35773,27092,0],[27092,35773,35774,0],[27092,35774,27442,0],[27442,35771,27441,0],[35773,35772,35774,0],[35774,35772,35771,0],[35771,27442,35774,0],[35771,35772,35825,0],[35768,35769,35755,0],[35755,35769,35775,0],[35775,26906,35755,0],[26906,35775,35776,0],[35779,35797,35471,0],[35779,35471,35791,0],[35791,35471,35470,0],[35471,35797,35472,0],[35472,35797,35796,0],[35777,27091,35778,0],[35778,27091,35795,0],[35795,35797,35779,0],[27090,35777,35780,0],[35780,35793,35781,0],[27122,35781,27265,0],[35781,27122,26991,0],[35781,26991,35783,0],[35783,26991,35782,0],[35782,35829,27119,0],[35782,35784,35783,0],[35781,35783,35780,0],[35780,35783,35784,0],[35780,35784,27090,0],[27095,27097,27098,0],[27442,27443,27092,0],[35786,27095,35785,0],[35498,35786,35497,0],[35785,35497,35786,0],[35487,35463,35286,0],[35487,35286,49558,0],[35788,35465,35787,0],[35787,35488,35789,0],[35466,35465,35788,0],[35788,35787,35789,0],[35503,35502,35790,0],[35789,35790,35766,0],[35503,35790,35501,0],[35501,35790,35789,0],[35501,35789,35488,0],[35501,35488,35489,0],[35792,27264,35793,0],[35793,27264,35781,0],[35792,27223,27264,0],[35781,27264,27265,0],[35779,35791,35778,0],[35778,35791,35793,0],[35793,35780,35777,0],[35792,35793,35791,0],[35468,35766,35469,0],[35469,35766,35502,0],[35469,35470,35482,0],[35469,35482,35468,0],[35792,35791,35794,0],[35470,35794,35791,0],[35795,35796,35797,0],[27443,35796,35795,0],[35799,35803,35800,0],[35804,27372,35802,0],[35802,27372,35801,0],[35802,35801,35803,0],[35798,27080,35803,0],[35798,35803,35799,0],[35803,27080,35802,0],[35802,27080,35804,0],[27373,35804,27079,0],[27376,27375,35814,0],[35805,35807,35806,0],[27062,35807,35808,0],[27062,35808,27064,0],[27064,35808,35809,0],[27088,35809,35808,0],[27082,35808,35807,0],[27082,35807,27083,0],[35810,35807,35805,0],[27083,35807,35810,0],[35810,35805,35814,0],[35810,35814,27375,0],[35810,27375,27079,0],[27377,27376,35814,0],[27377,35814,35812,0],[35812,35814,35811,0],[35812,35811,35813,0],[27012,35813,35806,0],[35806,35813,35811,0],[35806,35811,35805,0],[35816,35815,36161,0],[36161,35817,35816,0],[35818,35816,27014,0],[35818,27014,27380,0],[27380,27014,35819,0],[35818,26957,35816,0],[35815,35816,26957,0],[35815,26957,26956,0],[35817,27023,35816,0],[27014,35816,27023,0],[27378,26955,35820,0],[35823,35828,27072,0],[35823,27073,35822,0],[35822,27073,35821,0],[35821,27073,27074,0],[27074,35798,35824,0],[35825,35824,36883,0],[35825,36883,49556,0],[49556,36883,36882,0],[49556,36882,36879,0],[36879,26885,35776,0],[26885,36879,26904,0],[36882,26904,36879,0],[27074,35824,35821,0],[35826,35822,27106,0],[27106,35822,27091,0],[27091,35822,35773,0],[35773,35822,35821,0],[35822,35826,35823,0],[35826,35827,35823,0],[35823,35827,35828,0],[27072,35828,27069,0],[27069,35828,27107,0],[27107,35828,35827,0],[35798,35799,35824,0],[35829,26991,27123,0],[35829,27123,35830,0],[26987,27001,35832,0],[27001,27000,35834,0],[27112,27000,35833,0],[26999,35833,27000,0],[35832,27001,35834,0],[35836,35834,35835,0],[35831,35836,35838,0],[35831,35838,35837,0],[27114,35837,27113,0],[27113,35837,35838,0],[27113,35838,35835,0],[35835,35838,35836,0],[35831,35837,27120,0],[35832,35834,35836,0],[35832,35836,35831,0],[35839,26988,35832,0],[35839,35832,35831,0],[26988,35839,27121,0],[35840,27120,35830,0],[27120,35840,35831,0],[35831,35840,35839,0],[27123,35840,35830,0],[35830,27119,35829,0],[26991,35829,35782,0],[26986,26985,35841,0],[35841,26985,35842,0],[27008,35841,35842,0],[27008,35842,35853,0],[35842,35843,35851,0],[35856,35844,35845,0],[35845,35916,35846,0],[35847,35848,35915,0],[35854,35915,35849,0],[35854,35849,35858,0],[35850,35852,35851,0],[35851,35852,35853,0],[35853,35852,27008,0],[27008,35852,27010,0],[27010,35852,35857,0],[35853,35842,35851,0],[35851,35855,35854,0],[35915,35854,35847,0],[35847,35846,35916,0],[35846,35847,35854,0],[35851,35856,35855,0],[35855,35856,35846,0],[35846,35856,35845,0],[35855,35846,35854,0],[35851,35843,35856,0],[35852,35850,35857,0],[27011,35857,35858,0],[27011,35858,35860,0],[35860,35858,35849,0],[35859,35849,35862,0],[35859,35860,35849,0],[27023,35861,27026,0],[35864,35866,35865,0],[35928,35914,35926,0],[35926,35914,35925,0],[35925,35914,35867,0],[35925,35867,35868,0],[35925,35868,35926,0],[35926,35868,35885,0],[35885,35869,35880,0],[35885,35880,35870,0],[35870,27041,35927,0],[35927,27041,35871,0],[35871,27040,35932,0],[27042,35876,27043,0],[27044,35876,35879,0],[27044,35879,27046,0],[35909,35877,35882,0],[35909,35882,35910,0],[35910,35882,35873,0],[35906,35873,35918,0],[35906,35918,35917,0],[35874,35917,35845,0],[35874,35845,35844,0],[35874,35844,35875,0],[35875,35844,35887,0],[35887,35844,35843,0],[35843,35844,35856,0],[27046,35872,27050,0],[27050,35872,35924,0],[27046,27045,27044,0],[35876,35880,35879,0],[35879,35880,35878,0],[35878,35877,35909,0],[35909,35872,35878,0],[35872,27046,35878,0],[35878,27046,35879,0],[27041,35870,27042,0],[27042,35870,35876,0],[35870,35880,35876,0],[35878,35880,35881,0],[35881,35884,35882,0],[35882,35918,35873,0],[35882,35877,35881,0],[35878,35881,35877,0],[35882,35884,35918,0],[35911,35883,35868,0],[35911,35868,35867,0],[35884,35881,35883,0],[35881,35880,35869,0],[35869,35868,35881,0],[35881,35868,35883,0],[35868,35869,35885,0],[35885,35870,35927,0],[35849,35915,35862,0],[35858,35857,35850,0],[27112,35835,35834,0],[27112,35834,27000,0],[35887,35843,35886,0],[26985,35886,35842,0],[35842,35886,35843,0],[26985,26984,35886,0],[35886,35900,35887,0],[35887,35900,35888,0],[35902,35888,35899,0],[35902,35899,35889,0],[35902,35889,35890,0],[35890,35891,35923,0],[27049,35891,35892,0],[27049,35892,35893,0],[35893,35892,35894,0],[35894,35892,35895,0],[35895,35892,27280,0],[26981,27280,35892,0],[26981,35892,35896,0],[26982,35897,49518,0],[26982,49518,35899,0],[35899,49518,35898,0],[35898,35889,35899,0],[26982,35899,26983,0],[26983,35899,35900,0],[26983,35900,26984,0],[26984,35900,35886,0],[35900,35899,35888,0],[35889,35898,35890,0],[35890,35898,35891,0],[35892,35891,35901,0],[35892,35901,35896,0],[35896,35901,35897,0],[35897,35901,49518,0],[35890,27048,35902,0],[35902,35875,35887,0],[35888,35902,35887,0],[27048,35907,35902,0],[35875,35902,35905,0],[35875,35905,35874,0],[35874,35905,35917,0],[35903,26986,35904,0],[27004,35904,26986,0],[35858,35850,35854,0],[35854,35850,35851,0],[35917,35905,35906,0],[35906,35905,35907,0],[35906,35907,27047,0],[35908,27047,35924,0],[35910,35908,35909,0],[35909,35908,35872,0],[27047,35908,35910,0],[27047,35910,35906,0],[35906,35910,35873,0],[35924,35872,35908,0],[35883,35911,35921,0],[35883,35921,35918,0],[35913,35911,35867,0],[35912,35911,35913,0],[35920,35913,35866,0],[35920,35866,35919,0],[35919,35848,35847,0],[35867,35914,35913,0],[35914,35866,35913,0],[35866,35848,35919,0],[35866,35864,35848,0],[35848,35864,35863,0],[35848,35863,35915,0],[35916,35845,35917,0],[35916,35917,35922,0],[35922,35917,35918,0],[35847,35916,35919,0],[35912,35920,35921,0],[35912,35921,35911,0],[35912,35913,35920,0],[35919,35916,35920,0],[35920,35916,35922,0],[35920,35922,35921,0],[35918,35921,35922,0],[27043,35876,27044,0],[27043,27033,27042,0],[35924,27047,35923,0],[27047,27048,35923,0],[35924,35923,27049,0],[35927,35926,35885,0],[35929,35926,35927,0],[35926,35929,35928,0],[35914,35935,35934,0],[35914,35934,35866,0],[35914,35928,35935,0],[35929,35927,35871,0],[35929,35871,35932,0],[35930,35936,35935,0],[35935,35936,27022,0],[35935,27022,35934,0],[35934,27022,35865,0],[35865,27025,35864,0],[35864,27025,35931,0],[35817,35931,35861,0],[35817,35862,35931,0],[35931,35862,35863,0],[35931,35863,35864,0],[35936,35930,27021,0],[27021,35930,35932,0],[27021,35932,35933,0],[35933,35932,26973,0],[35933,26973,27020,0],[35932,35930,35929,0],[35929,35930,35928,0],[35928,35930,35935,0],[35866,35934,35865,0],[35936,27021,35970,0],[27022,35970,27025,0],[35970,27022,35936,0],[35941,27299,27300,0],[35940,35941,35942,0],[35940,35942,35937,0],[35937,26977,35940,0],[35940,26977,35939,0],[35941,35940,35943,0],[35941,35943,27299,0],[35939,35943,35940,0],[35944,27288,27324,0],[27287,35944,27324,0],[35945,27309,35974,0],[35974,27309,20749,0],[20749,27309,49519,0],[35945,35974,27325,0],[27012,35860,35813,0],[35813,35860,35947,0],[35813,35947,35946,0],[35946,35947,27378,0],[27378,35947,27013,0],[35946,35812,35813,0],[26972,27019,27281,0],[27281,27019,26973,0],[27283,27282,27284,0],[27284,27282,35948,0],[35949,35948,27286,0],[27286,35948,35950,0],[27286,35950,27318,0],[27318,35950,35938,0],[35948,35949,27284,0],[27284,35949,35951,0],[35948,35952,35950,0],[35950,35952,35954,0],[35954,27300,35938,0],[35954,35938,35950,0],[35954,35941,27300,0],[35941,35954,35953,0],[35938,35955,27318,0],[27318,35955,27317,0],[27317,35955,27315,0],[27315,35955,27287,0],[27020,27019,27056,0],[27056,27019,27055,0],[27282,27281,35952,0],[27281,26974,35952,0],[35952,26974,35953,0],[35953,26974,26975,0],[35953,26975,35942,0],[35953,35942,35941,0],[36874,27362,7487,0],[7486,27363,35956,0],[35957,35956,35958,0],[7478,35961,7476,0],[7476,35961,36637,0],[7476,36637,35962,0],[35962,36637,27366,0],[35962,7474,7475,0],[35960,35959,35958,0],[35960,35958,35963,0],[35961,35963,36637,0],[35963,35961,35960,0],[35956,27363,35958,0],[7486,35956,7485,0],[7485,35956,7484,0],[7484,35956,35957,0],[35957,35958,35959,0],[35957,35959,36180,0],[7482,7483,35964,0],[7478,7479,35964,0],[35964,7479,36873,0],[36873,7481,35964,0],[35964,7481,7482,0],[7478,35964,35961,0],[35961,35964,35960,0],[35960,35964,35959,0],[35964,7483,35959,0],[7495,7493,26969,0],[7495,26969,7489,0],[7489,7496,7495,0],[7495,7496,7497,0],[7497,7496,7488,0],[36157,27017,35965,0],[36157,35965,35966,0],[36157,35966,35967,0],[35967,35966,35968,0],[27017,27057,35965,0],[27055,27017,36157,0],[27055,36157,35969,0],[27055,35969,27056,0],[27056,35969,35970,0],[27025,35970,27027,0],[35970,27021,27056,0],[35969,36157,27027,0],[35969,27027,35970,0],[36157,35967,36156,0],[36156,35967,27028,0],[27028,35967,35968,0],[35968,27029,27028,0],[35972,35971,35973,0],[35972,35973,35983,0],[35983,35973,20750,0],[35983,20750,20751,0],[20749,35973,35971,0],[27325,35974,35971,0],[35971,35974,20749,0],[35975,20754,20753,0],[20755,35975,35976,0],[20755,35976,7465,0],[35977,20755,7465,0],[35977,7465,7467,0],[35977,27352,20755,0],[20755,27352,35978,0],[35978,35979,35982,0],[35982,35979,27348,0],[35985,27348,27303,0],[35985,27303,27327,0],[27348,27347,27303,0],[27302,27347,35980,0],[27341,27342,35981,0],[35981,27342,27302,0],[35981,27302,35980,0],[27347,27355,35980,0],[35979,35978,27352,0],[35978,35982,20754,0],[35983,20751,35985,0],[35983,35985,35972,0],[35971,35972,35984,0],[35971,35984,27325,0],[35972,35985,27327,0],[35972,27327,27304,0],[35987,7442,20788,0],[35987,7441,7442,0],[35986,7441,35999,0],[35987,35990,35997,0],[35997,35990,35988,0],[35991,35988,35989,0],[35991,35989,35993,0],[35989,35988,20682,0],[20682,35988,35990,0],[35992,35991,35995,0],[35991,35992,35988,0],[35988,35992,35997,0],[20683,20704,35993,0],[20705,36597,35994,0],[20705,35995,36597,0],[36597,35995,20704,0],[35992,35996,35997,0],[35997,35996,35998,0],[35997,35998,35999,0],[35996,35992,35995,0],[35999,35987,35997,0],[20800,20792,20970,0],[36002,20797,20796,0],[20796,36000,7438,0],[7437,7438,36000,0],[20795,36000,20796,0],[7437,36000,20965,0],[20965,36000,20795,0],[20795,20970,20971,0],[20795,20971,20965,0],[20965,20971,36001,0],[20964,36001,20972,0],[20972,36001,20971,0],[7438,36002,20796,0],[20797,36002,7439,0],[36005,36003,36007,0],[36004,20986,36003,0],[20965,36003,36005,0],[36005,36007,36009,0],[36005,36009,37076,0],[36007,36003,20986,0],[36007,20986,36012,0],[36012,36006,36007,0],[36007,36006,36009,0],[37076,36009,37075,0],[37075,36009,36008,0],[36008,36009,36010,0],[20983,36010,20987,0],[20983,36008,36010,0],[36009,36006,36013,0],[36013,36006,36011,0],[36011,36006,36012,0],[36009,36013,36010,0],[36010,36013,20987,0],[20987,36013,36011,0],[20991,36011,36012,0],[36056,36014,36015,0],[36050,36051,36016,0],[36018,36029,36048,0],[36048,36029,36019,0],[36020,36046,36027,0],[36044,36021,36022,0],[36042,36022,36023,0],[36034,36035,20946,0],[20836,36024,36025,0],[20833,36025,36036,0],[36026,36021,36020,0],[20832,20833,36028,0],[36046,36028,36027,0],[36036,36027,20833,0],[20833,36027,36028,0],[36036,36026,36027,0],[36027,36026,36020,0],[36028,36046,36019,0],[36028,36019,36029,0],[36028,36029,20832,0],[20832,36029,36031,0],[20954,36031,36030,0],[20954,36030,20830,0],[36031,36032,36030,0],[36032,36031,36018,0],[36032,36018,20979,0],[20979,36033,36032,0],[36030,36032,20831,0],[20830,20831,20829,0],[36032,36033,20831,0],[36029,36018,36031,0],[20979,36018,36017,0],[36025,20835,20836,0],[36024,20836,20838,0],[36024,20838,20946,0],[36034,20944,36035,0],[36037,36035,36038,0],[36036,36025,36024,0],[36036,36024,36037,0],[36035,36037,20946,0],[20946,36037,36024,0],[36036,36038,36026,0],[36026,36066,36021,0],[36023,36039,36042,0],[36042,36039,36040,0],[36065,36040,36041,0],[36065,36041,7348,0],[36065,36064,36040,0],[36042,36040,36043,0],[36042,36043,36022,0],[36022,36043,36044,0],[36044,36054,36021,0],[36021,36054,36062,0],[36062,36045,36020,0],[36020,36045,36046,0],[36046,36045,36047,0],[36046,36047,36048,0],[36047,36049,36050,0],[36050,36049,36051,0],[36015,36051,36049,0],[36015,36049,36052,0],[36054,36063,36772,0],[36772,7426,36060,0],[36060,7426,7427,0],[36056,36015,36052,0],[36014,36056,36058,0],[36014,36058,36057,0],[20982,36057,7432,0],[7432,36057,7430,0],[7430,36057,36058,0],[7430,36058,36059,0],[36055,36060,36059,0],[36059,36058,36055,0],[36055,36058,36771,0],[36771,36058,36056,0],[20982,20981,36057,0],[36057,20981,36014,0],[36052,36061,36056,0],[36056,36061,36771,0],[36052,36049,36053,0],[36062,36053,36045,0],[36045,36053,36047,0],[36047,36053,36049,0],[36053,36062,36052,0],[36052,36062,36061,0],[36061,36062,36054,0],[36772,36063,36043,0],[36772,36043,7425,0],[7425,36043,36064,0],[36043,36063,36044,0],[36044,36063,36054,0],[36065,7348,36639,0],[36040,36064,36043,0],[36048,36019,36046,0],[36021,36062,36020,0],[36039,36041,36040,0],[36041,36039,7351,0],[36041,7351,7350,0],[36022,36066,36023,0],[36023,36066,36035,0],[36035,36066,36038,0],[36021,36066,36022,0],[36016,36017,36050,0],[36017,36016,20979,0],[36016,36067,36070,0],[36069,36068,20992,0],[20992,20989,36069,0],[20989,36067,36069,0],[36069,36067,36051,0],[36069,36051,36015,0],[36069,36015,36068,0],[36068,36015,36014,0],[36016,36051,36067,0],[20989,20980,36070,0],[20978,36033,36071,0],[37063,36072,20977,0],[36072,20978,20977,0],[20950,20949,36073,0],[20950,36073,36074,0],[36085,36075,36076,0],[36076,36075,36089,0],[36076,36089,36077,0],[36078,36077,36952,0],[36952,36077,36953,0],[36078,36951,36088,0],[36088,36951,36087,0],[36715,36079,36080,0],[36081,36716,36082,0],[36081,36082,36083,0],[36083,36084,7360,0],[36083,36085,36086,0],[36086,36085,36076,0],[36083,36086,36081,0],[36081,36086,36087,0],[36087,36086,36088,0],[36088,36086,36076,0],[36077,36078,36076,0],[36088,36076,36078,0],[36091,36077,36089,0],[36075,36090,36089,0],[36090,36074,36091,0],[36090,36091,36089,0],[36091,36074,7362,0],[36093,36990,36092,0],[36093,7419,36991,0],[7419,36093,7400,0],[36092,36990,36094,0],[7400,36093,36092,0],[37072,36094,7401,0],[7401,36094,7402,0],[7402,36094,36990,0],[7402,36096,7403,0],[7403,36096,7383,0],[36096,7402,36095,0],[37007,37004,36098,0],[36098,48699,36099,0],[36101,36102,36103,0],[36108,36103,36104,0],[36104,26318,36106,0],[36106,26318,26320,0],[36106,36105,36107,0],[36104,36106,36108,0],[26325,36112,36110,0],[36111,36110,36112,0],[36113,36112,26325,0],[36113,26325,26326,0],[26326,26327,36113,0],[26327,36130,36114,0],[36115,37007,36111,0],[36111,37007,36098,0],[36098,36099,36111,0],[36111,36112,36115,0],[36115,36112,36113,0],[36115,36113,36114,0],[36114,36113,26327,0],[36111,36099,36110,0],[36099,36100,36110,0],[26324,36110,36100,0],[26324,36100,36109,0],[36109,36100,36101,0],[36109,36101,36103,0],[36108,36109,36103,0],[36107,26322,36106,0],[36106,26322,36108,0],[36104,36103,26317,0],[20079,26317,20080,0],[20080,26317,36117,0],[36116,36117,36118,0],[36119,36118,36117,0],[36119,36117,36120,0],[36100,36120,36101,0],[36101,36120,36102,0],[36102,36117,26317,0],[36102,26317,36103,0],[36117,36102,36120,0],[20080,36117,20081,0],[48698,20081,36121,0],[48698,20080,20081,0],[36117,36116,20081,0],[20081,36116,36121,0],[36121,36116,36122,0],[36122,36123,20085,0],[36116,36118,36122,0],[36122,36118,36124,0],[36122,36124,36125,0],[36123,36125,36126,0],[36123,36126,36974,0],[36123,36974,36127,0],[20086,36127,36128,0],[20086,36128,36994,0],[20086,36994,26041,0],[26041,36994,20087,0],[20087,36994,36995,0],[36096,36095,36097,0],[36097,36095,36954,0],[7383,36096,36097,0],[7383,36097,36129,0],[36131,36130,48721,0],[36131,48721,7369,0],[7369,36135,36132,0],[7369,36132,7370,0],[36135,36133,36136,0],[7373,7380,36137,0],[36137,7374,36753,0],[36753,7374,7375,0],[36753,7375,36134,0],[7374,36137,7380,0],[7372,7379,7371,0],[7371,7379,36133,0],[7371,36133,36135,0],[7380,7381,7374,0],[7379,7373,36133,0],[36133,7373,36136,0],[36137,36136,7373,0],[36132,36135,36136,0],[36970,20076,20077,0],[36139,36138,36140,0],[36140,48697,36141,0],[36140,36141,36142,0],[36142,36141,26069,0],[36142,26069,36143,0],[36142,36143,36139,0],[36139,36143,36144,0],[36148,36144,36145,0],[36149,36145,36146,0],[36149,36146,48688,0],[36144,36143,26055,0],[36145,26055,36146,0],[26055,36145,36144,0],[48688,36146,48666,0],[36146,26055,26065,0],[36146,26065,48666,0],[36970,36138,36147,0],[36148,36145,36150,0],[36150,36145,36149,0],[36150,36149,36151,0],[36150,36151,36152,0],[20074,20073,48691,0],[20074,48691,26057,0],[26057,48691,26056,0],[36152,48663,36150,0],[36148,36150,36153,0],[36148,36153,36147,0],[36147,36153,48663,0],[36147,48663,20075,0],[48663,36153,36150,0],[36147,20075,36970,0],[36970,20075,20076,0],[36149,48688,48690,0],[36149,48690,36151,0],[48687,36154,48688,0],[48688,36154,48690,0],[27300,27299,36155,0],[27025,27026,35931,0],[35931,27026,35861,0],[36156,27028,27027,0],[27027,36157,36156,0],[26964,36164,26962,0],[26962,36164,26966,0],[26962,26966,26961,0],[26961,26966,26967,0],[26961,26967,36159,0],[36159,26967,7491,0],[36159,7491,7492,0],[36159,7492,36160,0],[7484,36160,7492,0],[27015,35819,27014,0],[27015,27014,27029,0],[36161,35815,36162,0],[27013,36162,27378,0],[27378,36162,26956,0],[26956,36162,35815,0],[36162,35862,36161,0],[36163,26968,7490,0],[7490,26968,26969,0],[7490,7491,36163,0],[36163,7491,26967,0],[36164,36158,26966,0],[27380,27379,26959,0],[36165,27380,26958,0],[36166,36167,36168,0],[36166,36168,36170,0],[36168,36169,36170,0],[36170,36169,36880,0],[36880,26956,36170,0],[36171,36169,36172,0],[36172,36168,36875,0],[36875,36168,36167,0],[36173,36167,36166,0],[36173,36166,26958,0],[27399,36174,27388,0],[36174,36178,36175,0],[36182,27389,36175,0],[36175,27389,36174,0],[36174,27399,36178,0],[36175,36178,36176,0],[36173,36177,36178,0],[36173,36178,27399,0],[36177,36173,26958,0],[26959,36176,36177,0],[36177,36176,36178,0],[27399,27400,36173,0],[36168,36172,36169,0],[36172,26953,36171,0],[27387,27395,27386,0],[26950,26951,26952,0],[26950,26952,26881,0],[26881,26945,26950,0],[26945,26949,26950,0],[36160,35957,36179,0],[36179,36180,36181,0],[36181,36180,7483,0],[36181,7483,36186,0],[36186,27391,36187,0],[36182,36187,27390,0],[36179,35957,36180,0],[27391,7482,7481,0],[27391,36186,7482,0],[7482,36186,7483,0],[36160,36179,36183,0],[36183,36179,36181,0],[36183,36181,36184,0],[26960,36184,36185,0],[36185,36176,26959,0],[36185,26959,26960,0],[36184,26960,36183,0],[36187,36185,36186,0],[36186,36185,36181,0],[36185,36184,36181,0],[27055,27019,26972,0],[27055,26972,27018,0],[36183,26960,26961,0],[26961,36159,36183,0],[36183,36159,36160,0],[35904,49551,35903,0],[27269,36188,26982,0],[27269,26982,26983,0],[26982,36188,27270,0],[36188,27269,27268,0],[27268,27274,27271,0],[27268,27267,27274,0],[36188,27268,27271,0],[36227,36190,36191,0],[36227,36191,36192,0],[36227,36192,27879,0],[27879,36192,36193,0],[36193,36192,6904,0],[6904,36192,36191,0],[36194,36195,36239,0],[36194,36239,36214,0],[36214,36239,36196,0],[36211,36196,6896,0],[27197,36194,27196,0],[27196,36194,27195,0],[6895,36199,36213,0],[36213,36199,36197,0],[36213,36197,36207,0],[36207,36197,36198,0],[36198,36200,36201,0],[36201,36200,6893,0],[6893,36200,36199,0],[6893,36199,6894,0],[36199,36200,36197,0],[36197,36200,36198,0],[36198,36201,36204,0],[36198,36204,36202,0],[36202,36204,36203,0],[31406,31408,36203,0],[31406,36203,36204,0],[31418,36204,36201,0],[31418,36201,31404,0],[31406,36204,31418,0],[31408,31409,36205,0],[31408,36205,36203,0],[36203,36205,36206,0],[36203,36206,36202,0],[36202,36206,36198,0],[36198,36206,36207,0],[36207,36206,31411,0],[36212,31411,36208,0],[36212,36208,27193,0],[36212,27193,36209,0],[36211,36214,36196,0],[36209,36214,36210,0],[36209,36210,6895,0],[36209,6895,36213,0],[6896,36210,36211,0],[36210,36214,36211,0],[31411,36212,36213,0],[31411,36213,36207,0],[36213,36212,36209,0],[27193,27194,36209,0],[36209,27194,36214,0],[27194,27195,36214,0],[36214,27195,36194,0],[27193,36208,27192,0],[36206,31410,31411,0],[31419,6892,31420,0],[31392,36215,31391,0],[31391,36215,31420,0],[36196,36240,6897,0],[27830,6900,27831,0],[36216,27831,36217,0],[36216,36217,27841,0],[27839,27840,27843,0],[27840,27839,27841,0],[27841,27834,36216,0],[36217,36218,27841,0],[27841,36218,27840,0],[27840,36218,36245,0],[27840,36245,27843,0],[36217,27831,6900,0],[36219,6923,27726,0],[27708,36223,27707,0],[27707,36223,36220,0],[36220,36224,27769,0],[36220,27769,27704,0],[27704,36221,36220,0],[27769,36224,27768,0],[27707,36220,36222,0],[6930,36222,27705,0],[6930,27706,36222,0],[36222,27706,27707,0],[27705,36222,36221,0],[36221,36222,36220,0],[36223,27708,36244,0],[36223,36244,36243,0],[36223,36243,27768,0],[36223,27768,36224,0],[6899,6898,36240,0],[36190,36227,36225,0],[36225,36227,36226,0],[36225,36226,36194,0],[36227,27879,36228,0],[36228,27879,27880,0],[36226,36227,36228,0],[36226,36228,36195,0],[36190,36225,31972,0],[36229,36239,36195,0],[36229,36195,27880,0],[27880,36195,36228,0],[31986,6910,7051,0],[27818,27869,27823,0],[27823,27869,27786,0],[27786,27869,27868,0],[27818,27820,27819,0],[27823,27820,27818,0],[36230,27825,27888,0],[36230,27827,27829,0],[36230,36232,27827,0],[27827,36231,6897,0],[36232,36233,36231,0],[36231,36233,27883,0],[27883,36233,36395,0],[36233,36232,27888,0],[36230,27888,36232,0],[36395,36233,27884,0],[36232,36231,27827,0],[27723,6926,27865,0],[27705,36234,6930,0],[6930,36234,36235,0],[36235,36234,6931,0],[36234,27705,27703,0],[36234,27703,6932,0],[27703,27701,6932,0],[36234,6932,6931,0],[6899,36238,6900,0],[36237,36238,36229,0],[36237,36229,27880,0],[36229,36238,36239,0],[36239,36240,36196,0],[36239,36238,36240,0],[27857,36241,27844,0],[27857,27856,36241,0],[36241,27813,27814,0],[6920,36242,35359,0],[6916,35359,36242,0],[6916,36242,27863,0],[27708,27709,36244,0],[27768,36243,27772,0],[27711,36244,27709,0],[27711,27709,27710,0],[36242,6920,27876,0],[36242,27876,27863,0],[36245,36218,36247,0],[36247,36218,36246,0],[6900,6901,36217,0],[36217,6901,36246,0],[36217,36246,36218,0],[36246,6901,36247,0],[27844,36245,27845,0],[27845,36247,36248,0],[27845,36248,27846,0],[27846,36248,27881,0],[27881,36248,6901,0],[36245,36247,27845,0],[20741,20734,36249,0],[36249,20736,20735,0],[20736,36250,31429,0],[36252,36264,36253,0],[36253,36264,1576,0],[31432,36253,36254,0],[31432,36254,1492,0],[1492,36254,36255,0],[1492,36255,36256,0],[36256,36255,36260,0],[36256,36260,36257,0],[36252,36253,31432,0],[36252,31432,31443,0],[1576,1577,36253,0],[36253,1577,36259,0],[36253,36259,36254,0],[36254,36259,36255,0],[1577,1578,36259,0],[36259,1578,36255,0],[36255,1578,36260,0],[36260,1578,36593,0],[36260,36593,6501,0],[36260,6501,36263,0],[36261,6500,6499,0],[36261,6499,36262,0],[36261,36262,1496,0],[1496,36262,6255,0],[36260,36263,36261,0],[36260,36261,36257,0],[36257,36261,36258,0],[6500,36261,36263,0],[36252,36491,36264,0],[31433,31434,36517,0],[36517,31434,20780,0],[20780,36265,20779,0],[36267,36266,36511,0],[36272,20778,36267,0],[36272,36267,36268,0],[1542,1544,1543,0],[36511,36268,36267,0],[36267,20778,36266,0],[36266,20778,20779,0],[36427,36270,1541,0],[20776,20777,36271,0],[36271,36272,36427,0],[36271,20777,36272,0],[36427,36272,36270,0],[36265,36513,20779,0],[20779,36513,36266,0],[36511,36510,1545,0],[36511,1545,36268,0],[36268,1545,36269,0],[1545,1544,36269,0],[36268,36269,1541,0],[1541,36269,36595,0],[1549,1543,36274,0],[36274,1543,36273,0],[36274,36273,1500,0],[36274,1500,1502,0],[1502,36275,36274,0],[36275,1549,36274,0],[1500,36273,36594,0],[6480,6475,1568,0],[1567,36279,36277,0],[1567,36277,36278,0],[36278,36277,6467,0],[21136,6467,6466,0],[6466,6467,36277,0],[6466,36277,36279,0],[36279,1567,36276,0],[36276,1568,36279,0],[36279,1568,36280,0],[36280,1568,6460,0],[36280,6466,36279,0],[36280,6460,36281,0],[36281,49957,6464,0],[6464,49957,6462,0],[36281,6465,6466,0],[36281,6466,36280,0],[36278,1508,1567,0],[6302,6301,36292,0],[36292,6301,36282,0],[36283,36301,36284,0],[36283,36284,36285,0],[36285,36284,36286,0],[36285,36286,36303,0],[36285,36303,36287,0],[36287,36303,36304,0],[36287,36304,36288,0],[36288,20628,36289,0],[36288,36289,36287,0],[36287,36289,36285,0],[36290,36283,36285,0],[36285,36289,36290,0],[36290,36289,21162,0],[36282,36290,36291,0],[36282,36291,36292,0],[36293,36294,6303,0],[36293,6302,36292,0],[36291,36300,36292,0],[36292,36300,36293,0],[36293,36300,36294,0],[36295,36298,36296,0],[36296,36385,36297,0],[36297,21116,21121,0],[21121,21116,21117,0],[21121,21117,21118,0],[36297,21121,1519,0],[36297,1519,21129,0],[36297,21129,36296,0],[21129,21122,36296,0],[36299,20631,36384,0],[20631,36299,36300,0],[36300,36299,36298,0],[36300,36298,36294,0],[20629,36291,36290,0],[20629,36290,21162,0],[36282,36283,36290,0],[36283,36282,36301,0],[6299,36301,6301,0],[6301,36301,36282,0],[36301,6299,36284,0],[36284,6299,6297,0],[36303,36286,36302,0],[36303,36302,36305,0],[36304,36305,20627,0],[36304,20627,36288,0],[20627,36305,36306,0],[36306,36305,49057,0],[36306,49057,36307,0],[36374,36307,36308,0],[49023,36309,36310,0],[36311,36310,6445,0],[49509,36311,36370,0],[49509,36370,36312,0],[36313,36312,36371,0],[36377,36382,36346,0],[36377,36346,49507,0],[49507,36346,36315,0],[49506,36315,2339,0],[38271,49043,2343,0],[38271,2343,36316,0],[36317,36333,36318,0],[36318,36333,36319,0],[36320,36322,36321,0],[36321,36322,36323,0],[36323,36324,36325,0],[20593,49232,36326,0],[20593,36326,20592,0],[20592,36326,38330,0],[36323,20593,36321,0],[20617,36328,36329,0],[20592,36329,20594,0],[20594,36329,36328,0],[36329,36327,36330,0],[36329,36330,20617,0],[20617,36330,21150,0],[20617,36331,36328,0],[36328,36331,49231,0],[36328,49231,36321,0],[36327,20591,36330,0],[20591,20590,20601,0],[20591,20601,21169,0],[36320,36319,36333,0],[36320,36333,49040,0],[49040,36333,36335,0],[49040,36335,36334,0],[36334,36335,36337,0],[36334,36337,36336,0],[36341,36338,2341,0],[36367,2340,36339,0],[36367,36339,36340,0],[36367,36340,2337,0],[2337,36340,2338,0],[2337,2338,36348,0],[2340,36368,36345,0],[36338,36342,36343,0],[36338,36343,36337,0],[49039,38332,36324,0],[36324,38332,36325,0],[36342,36341,2335,0],[36337,36343,2345,0],[36337,2345,36336,0],[36336,2345,2346,0],[36336,2346,49039,0],[49039,2346,38332,0],[2346,2347,38332,0],[36342,36338,36341,0],[36338,36337,36344,0],[2342,36344,36318,0],[2342,36318,36316,0],[36317,36344,36335,0],[36337,36335,36344,0],[36344,36317,36318,0],[36344,2342,36338,0],[36338,2342,2341,0],[36320,49040,36322,0],[36322,49040,49039,0],[36322,49039,36323,0],[36323,49039,36324,0],[2339,36339,49043,0],[36339,2340,49043,0],[49043,2340,2343,0],[36315,36346,36347,0],[36347,36346,6320,0],[6320,36346,38371,0],[36348,6321,36349,0],[36349,6321,6442,0],[36352,36369,36350,0],[36352,36350,36351,0],[36351,36350,49235,0],[36352,36351,38253,0],[36353,36362,36355,0],[36353,36355,49234,0],[36354,36355,36356,0],[36356,36365,36358,0],[36365,36364,36357,0],[2311,36357,38251,0],[36358,36365,36357,0],[2335,36354,36360,0],[36360,36354,36356,0],[36358,36359,36356,0],[36356,36359,36360,0],[36357,2311,36358,0],[36358,2311,36361,0],[2333,36361,38272,0],[2312,36361,2311,0],[36361,2333,36359,0],[36361,36359,36358,0],[36354,49234,36355,0],[36355,36362,36363,0],[36365,36363,36364,0],[36365,36355,36363,0],[36365,36356,36355,0],[36353,36366,36367,0],[36366,2336,36368,0],[36366,36368,36367,0],[36367,2337,36353,0],[36353,2337,36369,0],[36353,49234,36366,0],[36348,36350,2337,0],[36369,2337,36350,0],[36311,6445,49955,0],[36311,49955,36370,0],[36312,36370,6316,0],[36312,6316,36371,0],[36372,6316,36370,0],[36370,49955,36372,0],[6445,6444,49955,0],[36373,36306,36307,0],[36373,36307,36374,0],[36373,36374,20625,0],[20625,36374,36381,0],[20625,36381,49035,0],[49035,36381,36375,0],[38270,36375,36376,0],[49507,38267,36377,0],[36383,38267,36378,0],[36379,36378,36376,0],[36379,36376,49508,0],[49508,36376,36380,0],[36380,36376,36375,0],[36380,36375,36381,0],[36377,38267,36383,0],[36377,36383,36382,0],[36382,36383,36314,0],[36304,36303,36305,0],[36384,37109,36385,0],[36385,37109,21115,0],[21115,21116,36385,0],[36385,21116,36297,0],[36384,36385,36299,0],[31447,27900,31437,0],[31447,31445,27900,0],[27900,31445,36387,0],[36387,31436,31438,0],[31438,31436,31435,0],[36389,1488,1487,0],[31510,36389,36390,0],[36390,31484,31502,0],[36389,1487,36390,0],[36390,1487,49523,0],[31584,31579,36391,0],[36393,36391,31494,0],[36393,31494,36392,0],[31494,36391,31472,0],[31584,36391,36393,0],[31583,31584,36393,0],[27882,36394,36396,0],[27882,36396,6894,0],[36395,36394,27882,0],[27884,36399,36395,0],[36395,36399,36394,0],[36396,36394,36399,0],[6894,36396,36397,0],[36397,36396,27794,0],[27795,36397,27794,0],[36400,36399,27885,0],[27885,27889,27792,0],[27792,27889,36401,0],[27792,36401,27791,0],[27791,36401,27807,0],[36400,36398,36399,0],[36398,27794,36399,0],[36399,27794,36396,0],[36398,36400,27793,0],[36400,27885,27793,0],[27793,27885,27792,0],[27807,36401,27886,0],[27825,36402,27886,0],[27885,36399,27884,0],[36409,27791,36403,0],[36403,27809,36408,0],[36408,27809,27790,0],[36408,27790,36404,0],[36408,36404,36405,0],[1456,36405,1455,0],[1455,36405,1454,0],[1454,36405,36407,0],[36407,36406,49393,0],[36404,36406,36405,0],[36406,36407,36405,0],[1454,36407,1453,0],[1453,36407,27946,0],[1456,36410,36408,0],[1456,36408,36405,0],[36408,36410,36403,0],[6888,27893,27892,0],[6888,27892,6885,0],[36412,27163,36411,0],[36412,36411,36416,0],[27153,36413,27152,0],[36416,36414,36412,0],[36416,36411,27164,0],[36416,27164,36415,0],[36419,49521,27166,0],[36419,27164,27165,0],[36413,36416,36417,0],[36416,36415,36417,0],[27152,36417,27310,0],[27310,36417,36418,0],[36419,27166,36421,0],[36420,20748,49519,0],[36420,49519,36421,0],[36421,27309,36419,0],[36419,27309,36415,0],[36415,27164,36419,0],[36415,36418,36417,0],[27152,36413,36417,0],[27341,35981,27339,0],[27339,35981,35980,0],[20753,7454,36422,0],[36422,7454,7455,0],[7452,7455,20763,0],[20768,7455,7454,0],[7458,7459,7452,0],[36423,20718,36428,0],[36423,36428,36429,0],[36425,36424,36435,0],[20710,36435,36424,0],[20710,36424,1540,0],[36426,36424,36427,0],[36427,36429,36271,0],[36271,36429,36428,0],[20718,20719,20784,0],[20784,20774,20775,0],[20775,20776,20784,0],[20718,20784,36428,0],[36428,20784,20776,0],[36428,20776,36271,0],[36427,36424,36429,0],[36426,1540,36424,0],[36424,36425,36429,0],[36429,36425,36430,0],[36431,20715,20716,0],[20716,20718,36431,0],[36431,20718,36423,0],[36431,36423,36430,0],[36430,36423,36429,0],[20715,36431,36434,0],[36434,36431,36430,0],[36434,36430,36433,0],[36433,36430,36432,0],[36432,36430,36425,0],[36433,20712,36434,0],[36433,36432,36436,0],[36425,36435,36432,0],[36432,36435,36436,0],[20710,36436,36435,0],[36437,1538,36442,0],[1556,36441,36442,0],[36439,1506,1509,0],[1506,1510,1509,0],[1509,36438,36439,0],[36439,36438,1552,0],[1552,36438,36440,0],[36441,36440,36442,0],[1530,36442,36440,0],[1557,36442,36443,0],[36443,36442,1530,0],[36443,1530,1532,0],[36442,1557,36437,0],[1531,36444,1532,0],[1558,36478,36445,0],[36444,37177,37103,0],[37103,37177,37105,0],[37105,37177,36446,0],[36448,37098,37099,0],[36448,37099,36475,0],[36475,37099,36449,0],[36449,37099,1526,0],[36449,1526,1525,0],[1525,1524,36449,0],[36475,36466,36450,0],[36456,36450,36467,0],[20659,20660,36453,0],[20659,36453,36451,0],[36451,36453,20637,0],[20637,36454,36452,0],[36452,36454,37179,0],[36452,37179,21112,0],[20659,36451,37185,0],[20637,36452,21195,0],[36454,36455,37179,0],[36454,20637,36453,0],[20660,20663,36456,0],[36456,36463,36464,0],[36464,36463,36457,0],[36464,36457,36458,0],[36458,37093,36465,0],[36465,37093,37096,0],[36460,36459,37084,0],[36460,37084,37091,0],[36460,37091,37085,0],[36483,37085,36461,0],[36462,36461,20669,0],[36462,20669,20670,0],[36462,20670,20671,0],[20663,20664,36456,0],[36456,20664,36463,0],[36457,36463,37094,0],[37093,36458,36457,0],[20660,36456,36467,0],[36456,36464,36450,0],[36465,36447,37098,0],[36465,37096,37107,0],[36450,36464,36458,0],[36450,36466,36467,0],[36467,36466,36469,0],[36467,36469,36468,0],[36468,36469,36470,0],[36468,36470,36476,0],[36468,36476,36455,0],[36455,36454,36453,0],[36455,36453,36468,0],[36468,20660,36467,0],[36470,36469,37178,0],[36470,37178,36477,0],[36477,37178,36471,0],[36473,36472,37181,0],[36472,36473,1516,0],[1516,36473,1515,0],[1515,36473,36474,0],[36474,36475,36449,0],[36474,36449,1524,0],[36474,1524,1515,0],[36473,36471,36474,0],[36474,36471,36475,0],[36476,36477,37179,0],[37179,36455,36476,0],[36475,36450,36448,0],[36448,36450,36458,0],[36448,36458,36465,0],[36465,37098,36448,0],[1532,36444,36478,0],[36478,36444,36488,0],[36478,36488,36479,0],[36479,20702,1533,0],[36479,1533,36445,0],[36479,36445,36478,0],[36479,36480,36486,0],[36489,36490,49514,0],[49514,36490,36481,0],[49514,36481,36482,0],[36482,36481,36460,0],[36460,36483,36482,0],[37085,36483,36460,0],[49514,36482,37150,0],[20689,37150,20691,0],[20689,49514,37150,0],[36484,20692,36485,0],[20691,36485,20692,0],[20702,36479,36486,0],[20702,36486,20687,0],[36489,49514,20690,0],[36489,20690,36487,0],[36487,20690,20688,0],[36486,36487,20688,0],[36486,20688,20687,0],[36489,36487,36480,0],[36487,36486,36480,0],[36489,36488,36490,0],[36490,36488,36444,0],[36490,36444,37103,0],[36489,36480,36488,0],[36488,36480,36479,0],[31413,31410,31414,0],[31411,31413,36208,0],[36208,31413,27192,0],[27192,31413,27191,0],[36250,31427,36251,0],[36251,31428,31429,0],[36251,31429,36250,0],[36491,1575,36264,0],[31514,31519,36493,0],[36493,31519,31479,0],[36493,36494,31516,0],[31516,31515,36493,0],[36493,31515,31514,0],[6870,31516,36494,0],[31477,36494,36495,0],[31477,36495,31478,0],[31477,6862,36494,0],[31477,36509,6862,0],[6862,36509,31466,0],[36495,36494,36493,0],[36495,36493,31479,0],[31513,31517,36497,0],[36497,31517,36519,0],[36519,31518,36496,0],[36496,31518,6502,0],[36496,6501,36497,0],[31513,36497,31512,0],[1577,31512,36497,0],[6242,36499,36500,0],[36500,36499,36501,0],[36500,6496,6242,0],[6242,6496,36502,0],[6500,36502,6499,0],[6500,36498,36502,0],[36502,36498,6242,0],[6868,6858,6859,0],[6866,6859,6865,0],[6865,36578,6866,0],[36503,36504,36581,0],[36581,36504,36586,0],[36504,36505,36586,0],[6863,36503,36506,0],[6863,36506,36507,0],[6862,36507,6870,0],[6860,36506,36503,0],[6860,36503,6859,0],[31495,36495,31479,0],[31495,31479,36508,0],[31481,31495,36508,0],[36495,31495,31496,0],[31478,36495,31496,0],[31477,31476,36509,0],[36510,1496,36594,0],[36512,36510,36511,0],[36512,36511,36492,0],[36492,36258,36512,0],[36510,36512,1496,0],[36258,1496,36512,0],[36511,36266,36492,0],[1496,1497,36594,0],[36594,1497,1498,0],[1495,36492,36513,0],[36513,36492,36266,0],[36513,36265,36514,0],[36513,36514,1495,0],[1495,36514,1494,0],[36514,36265,20780,0],[36518,20782,20767,0],[36518,20767,20759,0],[36518,20759,36515,0],[36518,36515,36516,0],[36516,36515,36591,0],[36591,36515,20732,0],[36516,36517,36518,0],[1580,36519,1581,0],[1581,36519,31516,0],[31516,36519,31517,0],[36520,6486,6495,0],[36520,6495,36521,0],[36520,36521,6237,0],[36520,6237,49083,0],[49083,6237,6236,0],[6236,36522,6505,0],[6505,36522,6504,0],[6235,6233,49092,0],[6235,49092,36559,0],[36559,49092,36523,0],[36523,36524,36525,0],[36525,36524,49090,0],[49090,36524,36526,0],[36526,36524,36527,0],[36526,36527,37174,0],[36526,37174,36528,0],[6270,36529,36553,0],[6270,36553,36530,0],[36530,36553,36531,0],[36532,36531,36533,0],[36533,36531,36534,0],[36534,36551,36535,0],[36535,36548,36536,0],[36536,36548,49122,0],[49121,36546,6524,0],[36538,36537,6593,0],[6593,36537,6592,0],[6524,36546,36539,0],[36540,36547,36541,0],[36542,36543,49100,0],[36587,36544,36545,0],[6232,36545,6233,0],[36546,36547,36540,0],[36540,36539,36546,0],[36547,36546,36548,0],[36547,36548,36549,0],[49097,36554,36550,0],[36550,36554,36551,0],[36550,36551,36531,0],[36550,36531,36552,0],[36552,36553,37173,0],[37173,36553,37170,0],[37170,36553,36529,0],[36553,36552,36531,0],[36554,36535,36551,0],[36534,36531,36551,0],[36535,36554,36549,0],[36535,36549,36548,0],[49122,36548,36546,0],[36555,36541,36556,0],[36555,36556,36557,0],[36533,36534,36558,0],[36558,36534,49124,0],[36531,36532,36530,0],[36523,36525,49086,0],[36523,49086,36559,0],[6235,36559,6234,0],[6448,36560,6305,0],[36561,6298,6296,0],[36561,6296,6304,0],[36560,37169,36302,0],[36302,37169,49055,0],[36302,49055,36305,0],[36561,6305,36302,0],[36561,36302,36286,0],[36286,36284,36561,0],[36561,36284,6297,0],[36562,36563,36564,0],[36564,36563,6268,0],[6268,36563,6267,0],[6267,36563,36565,0],[36565,36563,6287,0],[6287,36563,6290,0],[36565,6286,36566,0],[36566,6286,6284,0],[36566,6284,6451,0],[6453,6452,6283,0],[6453,6283,21148,0],[6453,21148,21143,0],[21143,21144,6453,0],[6283,6452,6451,0],[6451,6450,36566,0],[6271,36567,6270,0],[6270,36567,36528,0],[36528,36567,6269,0],[6269,36567,36564,0],[36564,36567,6271,0],[36564,6271,36562,0],[36568,6851,6834,0],[6834,6854,36568,0],[36568,6854,36569,0],[36568,36569,6857,0],[36570,6851,1590,0],[1590,6851,1589,0],[36571,6835,36570,0],[36572,36570,1590,0],[36572,1590,36573,0],[36573,1591,36574,0],[36573,36574,36572,0],[36572,36574,36575,0],[6843,36575,1592,0],[1592,36575,36574,0],[1592,36574,1591,0],[36575,6836,6849,0],[36572,36575,6849,0],[36572,6849,36571,0],[36572,36571,36570,0],[36576,6245,36577,0],[6249,36577,1584,0],[1584,36577,6871,0],[36577,6245,1583,0],[36577,1583,6871,0],[36576,36577,6249,0],[1588,36579,36580,0],[1588,36580,31460,0],[36579,36578,36580,0],[36503,36581,6859,0],[6859,36581,6865,0],[31521,36583,36582,0],[36582,31522,31521,0],[36582,36583,31483,0],[31460,36580,36584,0],[31460,36584,31462,0],[36580,36578,36585,0],[36585,36578,6864,0],[36584,36580,36585,0],[36586,36505,31468,0],[36587,6231,36588,0],[36589,27897,27898,0],[27898,36590,36589,0],[36589,36590,27901,0],[36516,36591,36517,0],[36591,31433,36517,0],[36518,36517,20780,0],[36518,20780,20782,0],[6467,6469,36278,0],[6492,6494,6257,0],[6257,6256,6492,0],[6256,36592,6492,0],[6492,36592,6252,0],[36510,36594,1543,0],[36510,1543,1545,0],[36273,1543,36594,0],[36269,1544,36595,0],[36595,1544,1542,0],[36268,1541,36270,0],[1553,1541,36595,0],[36268,36270,36272,0],[20778,36272,20777,0],[36596,35994,36597,0],[27348,35985,20751,0],[20751,35982,27348,0],[20791,20797,20679,0],[7469,7626,36599,0],[36599,7626,7522,0],[36599,36600,7469,0],[7470,36600,7501,0],[7501,7502,7473,0],[7473,7502,7474,0],[7475,36604,36602,0],[7475,36602,7576,0],[7477,7576,36603,0],[7576,7477,7475,0],[36605,36604,7502,0],[36604,36605,36601,0],[7502,36604,7474,0],[36605,7595,36601,0],[36601,36602,36604,0],[36606,7590,36607,0],[36609,36607,36608,0],[36609,36608,36610,0],[36609,36610,36611,0],[36611,27397,7498,0],[36611,7498,36609,0],[36607,7590,36608,0],[36613,36612,36614,0],[36614,36616,36615,0],[36617,7581,36618,0],[36618,7581,36619,0],[36618,36619,36661,0],[36661,36619,36621,0],[36621,36619,36620,0],[36655,36622,36623,0],[36655,36623,36666,0],[36666,36626,36624,0],[36624,36626,36630,0],[36620,36619,36632,0],[36621,36620,36625,0],[36621,36625,36622,0],[36626,36631,36632,0],[36632,36625,36620,0],[36632,36627,36630,0],[36630,36627,36629,0],[36629,36627,36628,0],[36629,36628,7587,0],[36629,36624,36630,0],[36630,36626,36632,0],[36631,36626,36623,0],[36666,36623,36626,0],[36632,36631,36625,0],[36631,36623,36625,0],[36622,36625,36623,0],[36627,36632,36619,0],[36617,36616,7579,0],[7578,36610,36608,0],[36607,7500,36606,0],[36606,7500,36603,0],[36601,7595,36633,0],[36605,7502,7503,0],[36634,7628,7440,0],[7627,36634,7632,0],[7632,36634,7639,0],[7639,7631,7632,0],[7440,7639,36634,0],[7480,36607,36635,0],[36182,36175,36187,0],[27300,27287,35955,0],[35948,27282,35952,0],[27329,27330,27319,0],[27330,27342,27319,0],[36636,27365,27366,0],[36637,35963,35958,0],[36637,35958,27363,0],[27363,27366,36637,0],[36638,36064,36065,0],[36638,36065,36639,0],[7347,7345,36640,0],[36640,36638,36639,0],[36641,7504,7616,0],[36641,7616,7530,0],[7530,7529,36641,0],[7506,36641,7507,0],[7506,7504,36641,0],[7529,7526,36641,0],[36641,7526,7507,0],[7527,7526,7528,0],[7598,7599,7609,0],[7598,7608,36643,0],[7609,7338,36644,0],[36646,36644,36645,0],[36646,36645,36647,0],[36648,7546,36649,0],[36647,36648,36649,0],[36647,36649,36646,0],[36646,36649,36650,0],[36650,7570,7544,0],[7609,36644,7608,0],[7608,36644,36651,0],[36646,36650,36651,0],[36651,36644,36646,0],[7591,7583,36652,0],[36654,36656,36655,0],[36655,36656,36657,0],[36658,36657,26609,0],[26609,35582,36658,0],[36658,35582,26610,0],[36658,26610,36659,0],[36659,26610,36673,0],[36659,36673,36660,0],[36660,36673,36662,0],[36660,36662,36661,0],[36661,36662,36663,0],[36615,36663,36675,0],[36615,36675,36614,0],[36614,36675,36664,0],[36614,36664,36613,0],[36613,36664,36676,0],[36613,36676,35737,0],[36612,36613,26939,0],[26939,26938,36612,0],[36612,26938,36610,0],[35737,26939,36613,0],[35737,36676,35734,0],[36658,36659,36657,0],[36657,36659,36622,0],[36657,36622,36655,0],[36655,36666,36654,0],[36654,36666,36665,0],[36654,36665,36653,0],[36665,36666,36624,0],[36622,36659,36671,0],[36622,36671,36621,0],[26609,36657,36667,0],[36668,36667,36656,0],[36656,36667,36657,0],[26618,36668,36669,0],[36668,36656,36669,0],[36628,36627,7581,0],[7581,36627,36619,0],[7581,7582,36628,0],[36628,7582,36670,0],[7586,36670,7585,0],[7582,7585,36670,0],[36628,36670,7587,0],[36615,36618,36661,0],[36661,36663,36615,0],[36618,36615,36616,0],[36618,36616,36617,0],[36671,36659,36660,0],[36671,36660,36661,0],[36621,36671,36661,0],[36663,36662,36672,0],[36672,36662,36673,0],[36672,36673,26610,0],[36672,36674,36675,0],[36675,36674,36664,0],[36674,26611,36664,0],[36664,26612,36676,0],[36677,26613,36681,0],[36677,36681,36678,0],[36678,36681,35731,0],[26614,36678,36679,0],[36678,35731,36680,0],[36678,36680,36679,0],[26919,36679,36862,0],[36679,36680,36862,0],[26613,26612,26611,0],[36865,36681,26923,0],[26923,35581,36682,0],[36682,35581,35585,0],[35574,36683,36684,0],[26923,36682,36686,0],[35574,49959,36683,0],[36683,36686,36682,0],[26922,36686,36685,0],[26922,36685,49814,0],[26922,49814,26921,0],[7602,7603,7345,0],[7602,7345,7344,0],[7603,7604,7345,0],[7664,7357,7355,0],[7664,7355,36687,0],[7664,36687,36690,0],[36689,7354,37066,0],[37067,7359,36084,0],[36084,36083,36082,0],[36084,7359,7360,0],[7353,37067,37066,0],[36691,36698,36692,0],[36712,36692,36694,0],[36712,36694,36693,0],[36693,36694,7646,0],[7646,36694,7647,0],[7647,36694,7648,0],[7648,36694,36695,0],[7649,7648,36696,0],[36696,36706,36697,0],[7653,7660,7650,0],[7653,7650,36697,0],[36697,7650,36696,0],[7650,7649,36696,0],[36694,36692,36698,0],[36691,36687,36688,0],[36687,36691,36690,0],[36694,36698,36695,0],[36695,36698,36699,0],[36695,36699,36708,0],[36708,36699,36700,0],[36703,36700,36701,0],[36703,36701,36702,0],[36703,36702,36707,0],[36707,36702,36720,0],[36704,36705,36697,0],[36697,36705,7653,0],[36704,36697,36706,0],[36704,36706,36707,0],[36704,36707,36720,0],[7652,36705,7655,0],[36703,36707,36700,0],[36700,36707,36706,0],[36700,36706,36708,0],[36708,36706,36696,0],[36708,36696,7648,0],[36708,7648,36695,0],[36699,36698,36709,0],[36699,36709,36701,0],[36699,36701,36700,0],[36698,36691,36709,0],[7646,7645,36693,0],[36693,7645,36710,0],[36693,36710,36711,0],[36693,36711,36712,0],[36712,36711,36713,0],[7663,36711,7662,0],[7662,36711,36714,0],[36711,36710,36714,0],[36714,36710,7644,0],[36712,36713,36692,0],[36692,36713,36691,0],[36691,36713,36690,0],[36687,7355,7354,0],[36687,7354,36688,0],[36688,7354,36689,0],[20947,7360,7359,0],[36715,36080,36081,0],[36715,36081,36087,0],[36716,36081,36080,0],[36079,36717,36718,0],[36079,36718,36080,0],[36080,36718,36716,0],[36718,36717,36719,0],[36719,36717,36721,0],[36719,36721,36702,0],[36720,36702,36732,0],[36938,36732,36733,0],[36733,36732,36721,0],[36733,36721,36723,0],[36723,36721,36722,0],[36729,36087,36951,0],[36087,36729,36715,0],[36724,36079,36715,0],[36724,36715,36729,0],[36727,36946,36730,0],[36727,36730,36728,0],[36727,36728,36729,0],[36729,36728,36724,0],[36731,36730,36944,0],[36731,36944,36726,0],[36731,36722,36724,0],[36722,36731,36723,0],[36723,36731,36725,0],[36725,36731,36726,0],[36944,36730,36946,0],[36728,36730,36731,0],[36728,36731,36724,0],[36722,36721,36717,0],[36732,36702,36721,0],[36701,36719,36702,0],[36734,36733,36723,0],[36734,36723,36725,0],[36732,36938,36764,0],[36764,36938,36735,0],[36735,36938,36736,0],[36746,36736,36737,0],[36737,36738,36741,0],[36737,36741,36739,0],[36739,36741,36740,0],[36740,36741,7683,0],[7683,36741,36742,0],[7683,36742,7684,0],[7684,36742,36134,0],[7683,36743,36740,0],[36739,36740,36752,0],[36739,36752,36744,0],[36744,36757,36745,0],[36745,36766,36735,0],[36745,36735,36746,0],[36744,36745,36746,0],[36744,36746,36739,0],[36737,36739,36746,0],[36752,36743,36747,0],[36757,36747,7682,0],[36749,7682,36748,0],[36749,36748,36750,0],[7323,36751,7680,0],[7680,36751,7681,0],[7682,7691,36748,0],[36751,36748,7681,0],[36743,36752,36740,0],[36741,36943,36742,0],[36742,36943,36753,0],[36137,36754,36136,0],[36136,36754,36132,0],[36134,36742,36753,0],[36137,36753,36940,0],[36137,36940,36754,0],[36755,36756,7343,0],[7343,36756,7344,0],[7344,36756,7611,0],[7343,7601,36755,0],[36750,36745,36749,0],[36749,36745,36757,0],[36749,36757,7682,0],[36757,36752,36747,0],[36752,36757,36744,0],[36758,36760,36761,0],[36758,36761,36763,0],[36763,36761,36762,0],[36735,36736,36746,0],[36735,36766,36763,0],[36760,36758,36759,0],[36735,36763,36764,0],[36764,36720,36732,0],[36760,36759,7654,0],[36760,7654,7655,0],[36762,36761,36765,0],[36762,36765,36720,0],[36762,36720,36764,0],[36764,36763,36762,0],[7325,36759,36750,0],[36750,36766,36745,0],[36758,36766,36750,0],[36758,36750,36759,0],[7525,7612,36642,0],[36642,7612,7508,0],[36767,36072,37063,0],[36767,37063,36768,0],[36768,36769,36767,0],[36769,20829,36767,0],[20831,36072,36767,0],[36770,36055,36771,0],[36770,36771,36054,0],[36061,36054,36771,0],[36055,36770,36772,0],[36054,36772,36770,0],[36772,36060,36055,0],[36773,36774,7668,0],[7668,36774,36775,0],[36776,36775,36778,0],[36776,36778,36777,0],[36777,36778,7644,0],[7644,36778,7643,0],[36777,7645,36776,0],[36776,7645,7334,0],[36776,7334,7335,0],[7335,36779,36776,0],[36776,36779,36775,0],[36775,36779,7667,0],[36774,7339,36775,0],[36775,7340,36778,0],[36778,7340,7643,0],[7341,7643,7340,0],[7339,7340,36775,0],[7341,36780,7601,0],[7601,36780,7599,0],[7599,36780,7609,0],[7609,36780,7339,0],[7550,36782,36781,0],[36781,36782,7338,0],[7338,36782,36644,0],[36644,36782,36645,0],[36832,7552,36783,0],[36834,36788,36787,0],[36787,36788,49515,0],[49515,36789,36821,0],[36821,36789,26798,0],[26798,36789,26797,0],[26797,36789,36793,0],[36793,36789,36790,0],[36794,36790,36788,0],[36794,36788,36801,0],[36801,36788,36835,0],[36801,36835,36791,0],[36792,36791,36836,0],[36784,36792,36785,0],[36793,36794,36840,0],[36793,36790,36794,0],[36794,36801,36795,0],[36794,36795,36840,0],[36796,36795,26813,0],[36796,26813,26647,0],[36806,36804,36797,0],[26649,36806,36797,0],[36797,36804,26650,0],[26650,36804,26651,0],[36798,36808,36799,0],[36798,36799,26654,0],[36895,26651,36798,0],[36807,36798,26651,0],[36800,36801,36805,0],[36805,36801,36791,0],[36805,36791,36792,0],[36805,36792,36802,0],[36802,36792,36803,0],[36803,36804,36802,0],[36802,36804,36805,0],[26813,36795,26649,0],[36804,36806,36805,0],[26651,36804,36803,0],[26651,36803,36807,0],[36807,36803,36809,0],[36807,36809,36798,0],[36798,36809,36808,0],[36808,36809,36810,0],[36811,36810,36818,0],[36811,36818,7336,0],[36811,7336,36812,0],[36813,7332,36814,0],[36813,36814,36816,0],[36816,36814,36815,0],[36816,36815,36817,0],[36816,36817,36799,0],[26654,36799,36894,0],[36799,36817,36894,0],[7333,7332,36812,0],[7333,36812,7335,0],[7335,36812,36779,0],[7336,36818,7552,0],[7552,36818,36783,0],[7336,36779,36812,0],[36808,36820,36799,0],[36799,36820,36816,0],[36816,36820,36813,0],[36812,7332,36819,0],[36812,36819,36811,0],[7332,36813,36819,0],[36819,36813,36820,0],[36810,36811,36819,0],[36810,36819,36820,0],[36810,36820,36808,0],[36823,36809,36803,0],[36805,36806,36800,0],[36792,36784,36803,0],[36803,36784,36823,0],[36801,36800,36795,0],[36795,36800,36806,0],[36795,36806,26649,0],[36790,49515,36788,0],[49515,36821,36822,0],[36822,36821,36826,0],[36826,36821,26799,0],[26799,36821,26798,0],[36783,36818,36810,0],[36810,36809,36783,0],[36783,36809,36823,0],[36783,36823,36831,0],[36831,36823,36784,0],[36824,7332,7661,0],[36824,7661,7659,0],[36824,7659,7658,0],[36814,36824,7658,0],[36647,7548,7547,0],[7547,36648,36647,0],[36647,36645,7548,0],[36645,36782,7548,0],[36825,7567,26620,0],[36825,26619,36669,0],[7566,36669,36653,0],[36653,36669,36656,0],[36654,36653,36656,0],[36669,7566,36825,0],[7549,7551,7572,0],[36826,7554,36822,0],[7554,36827,36822,0],[36787,36822,36827,0],[36787,36827,36834,0],[36834,36827,36828,0],[36834,36828,36786,0],[36786,36828,36785,0],[36785,36830,36784,0],[36784,36830,36831,0],[36831,36830,36833,0],[36831,36833,36832,0],[36832,36783,36831,0],[36830,36785,36828,0],[36827,36829,36828,0],[36828,36829,36830,0],[36830,36829,7553,0],[36830,7553,36833,0],[36835,36836,36791,0],[36788,36834,36835,0],[36836,36785,36792,0],[36785,36836,36786,0],[36786,36836,36835,0],[36786,36835,36834,0],[26602,36838,36837,0],[36837,36838,26603,0],[26603,36838,36839,0],[26600,36839,36838,0],[36839,35539,26603,0],[26604,26603,35539,0],[26804,26806,36841,0],[36841,26806,36840,0],[36841,36840,36796,0],[36796,36840,36795,0],[26804,36841,36842,0],[36842,36841,36843,0],[36843,26814,36842,0],[36857,36858,35537,0],[35537,36858,36844,0],[35696,36844,36849,0],[35696,36849,36848,0],[35695,36845,26595,0],[26597,36849,26598,0],[26598,36849,36858,0],[36846,36847,36848,0],[36846,36848,26597,0],[26597,36848,36849,0],[36848,36847,35695,0],[35695,36847,36845,0],[36849,36844,36858,0],[35696,36848,35695,0],[35701,36850,36851,0],[36853,36852,36855,0],[35692,36853,36854,0],[35692,36854,26591,0],[36853,36855,36854,0],[36856,36855,36852,0],[26595,36851,36850,0],[26595,36850,35695,0],[26694,36854,26592,0],[36854,36855,26592,0],[26593,36856,36852,0],[36851,26593,36852,0],[36852,35694,36851,0],[36857,35625,35538,0],[36857,35538,26599,0],[26775,36858,36857,0],[26791,26779,26792,0],[36859,26597,26776,0],[26623,26625,26776,0],[26776,26625,36859,0],[35550,36860,35708,0],[35574,36684,35575,0],[35574,35575,35610,0],[35603,35574,35610,0],[26920,36863,26921,0],[26921,36863,36864,0],[26921,36864,26922,0],[26922,36864,36865,0],[36863,36862,36864,0],[36864,36862,35731,0],[36864,35731,36865,0],[36681,36865,35731,0],[36683,36682,36866,0],[36866,36682,35585,0],[36683,36866,36684,0],[36684,36866,35587,0],[36866,35585,35587,0],[26923,36681,26613,0],[26918,36869,35404,0],[36867,36868,35739,0],[35739,36868,35569,0],[26918,35571,36869,0],[35571,35570,36868,0],[36869,36867,35402,0],[35402,36867,35739,0],[35402,35739,35516,0],[36869,35571,36868,0],[36868,36867,36869,0],[7578,7579,36616,0],[7578,36870,36610,0],[36612,36870,36614,0],[36614,36870,36616,0],[7578,36616,36870,0],[36871,35575,36872,0],[36871,36872,35602,0],[36635,7499,27392,0],[36873,36635,27392,0],[36611,36610,26938,0],[36185,36187,36176,0],[36176,36187,36175,0],[36173,27400,27404,0],[27403,36875,27401,0],[36875,27404,27401,0],[36876,27403,27402,0],[27402,26953,36876,0],[35801,36877,36878,0],[35800,36878,36882,0],[35801,36878,35800,0],[35803,35801,35800,0],[35775,35769,35776,0],[36879,35776,49554,0],[36880,36169,36171,0],[26955,26954,35820,0],[35820,26954,27377,0],[27377,26953,36881,0],[27384,27376,27383,0],[27383,27376,36881,0],[36881,27376,27377,0],[35800,36882,35799,0],[35799,36882,36883,0],[35799,36883,35824,0],[36884,36885,26784,0],[26791,36884,26779,0],[26784,36885,26783,0],[26645,26676,36886,0],[26669,36887,26678,0],[26669,7246,36887,0],[26676,36887,36886,0],[7244,36886,36887,0],[26676,26675,36887,0],[36887,26675,26678,0],[7250,36892,36889,0],[36889,36897,7250,0],[36892,7250,36890,0],[36888,36890,36891,0],[36890,7250,36891,0],[36891,7250,7249,0],[36889,36892,7328,0],[7328,36892,36893,0],[36890,36893,36892,0],[7329,7328,36894,0],[7329,36894,7330,0],[7328,7329,7656,0],[26653,26652,36895,0],[36895,26652,26651,0],[26654,36895,36798,0],[7328,36893,36894,0],[36894,36893,26656,0],[26656,36893,36890,0],[36897,36889,7252,0],[36897,7252,36896,0],[36897,36896,36898,0],[36897,36898,36899,0],[7248,36899,36913,0],[7248,36913,7247,0],[7247,36913,36924,0],[36924,36903,7245,0],[7245,36903,36900,0],[7245,36901,36924,0],[36924,36901,7247,0],[36899,7248,7249,0],[36896,36909,36898,0],[36915,36902,36903,0],[36905,36903,36924,0],[36905,36924,36904,0],[36904,36924,36913,0],[36904,36913,36912,0],[36914,36905,7281,0],[7281,36906,36907,0],[7256,36907,36908,0],[7256,36908,36909,0],[36909,36896,36910,0],[36907,7256,7257,0],[7281,36907,36911,0],[36907,36906,36908,0],[36908,36912,36909,0],[36909,36912,36898,0],[36898,36912,36899,0],[36899,36912,36913,0],[36912,36908,36904,0],[36904,36908,36906,0],[36904,36906,36905,0],[36905,36906,7281,0],[36915,36914,36917,0],[36915,36917,36902,0],[36902,36917,36916,0],[36902,36916,36900,0],[36900,36916,7243,0],[36915,36903,36914,0],[36914,36903,36905,0],[36914,7283,36918,0],[36914,36918,36917,0],[36920,36919,7279,0],[7279,36919,36926,0],[7279,36926,36921,0],[36921,36922,7280,0],[7280,36922,36918,0],[7280,36918,7283,0],[36920,7279,7278,0],[36920,7278,36923,0],[7238,36923,7278,0],[36900,36903,36902,0],[7256,36909,36910,0],[7256,36910,7255,0],[36917,36918,36922,0],[36916,36917,36922,0],[36916,36922,36925,0],[36925,36922,36926,0],[48785,36926,36927,0],[26661,7241,36927,0],[26661,36927,7240,0],[7240,36927,36923,0],[36923,36927,36920,0],[36920,36927,36919,0],[36919,36927,36926,0],[36921,7287,7279,0],[7301,7305,7275,0],[7295,7302,7276,0],[7277,7276,7278,0],[7305,7302,7275,0],[7304,7234,36928,0],[36928,7305,7304,0],[7258,7317,7319,0],[7687,7688,36929,0],[7687,36929,7677,0],[7677,36929,36930,0],[7676,36930,36931,0],[26237,36931,36932,0],[36932,36931,36930,0],[7677,36930,7676,0],[7677,7676,7675,0],[26285,36929,26288,0],[26288,26284,26286,0],[26288,36929,36933,0],[36933,36929,7688,0],[7688,7678,36933,0],[36929,26285,36930,0],[36930,26285,36932,0],[36936,7676,36931,0],[36936,36931,36937,0],[7268,7267,36935,0],[36934,36935,7266,0],[36934,7266,7265,0],[36934,7673,7674,0],[36934,7674,36935,0],[7676,36936,7674,0],[7674,36936,36935,0],[36935,36936,7268,0],[7268,36936,36937,0],[36931,26237,36937,0],[36937,26237,26238,0],[36943,36741,36738,0],[36943,36738,36726,0],[36726,36738,36725,0],[36734,36737,36736,0],[36738,36737,36725,0],[36725,36737,36734,0],[36734,36736,36938,0],[36734,36938,36733,0],[36722,36717,36079,0],[36953,36077,7364,0],[36951,36078,36939,0],[7368,7366,7382,0],[36754,36941,36132,0],[36132,36941,7370,0],[36753,36942,36940,0],[36940,36942,36754,0],[36941,36754,36949,0],[36754,36942,36949,0],[36753,36943,36942,0],[36943,36726,36942,0],[36942,36945,36949,0],[36949,36945,36947,0],[36949,36947,36941,0],[36942,36726,36945,0],[36945,36726,36944,0],[36945,36944,36946,0],[36945,36946,36947,0],[36947,36946,36950,0],[36947,36950,36941,0],[36941,36950,36948,0],[36941,36948,7370,0],[7370,36948,7368,0],[7368,36948,36939,0],[36939,36948,36951,0],[36950,36946,36727,0],[36948,36950,36951,0],[36951,36727,36729,0],[36952,36939,36078,0],[7368,36939,36953,0],[36953,36939,36952,0],[7368,36953,7366,0],[7366,36953,7365,0],[7365,36953,7364,0],[36131,7370,7368,0],[36114,36129,36097,0],[36114,36097,36954,0],[36114,36954,36115,0],[36115,36954,37007,0],[36095,7402,36990,0],[7400,37072,37045,0],[37045,37072,36955,0],[37048,36955,7414,0],[20843,36956,20842,0],[20924,36957,36958,0],[20924,36958,20926,0],[20926,36958,20847,0],[20927,20926,20847,0],[20847,36958,20846,0],[20927,20928,36960,0],[36960,20928,20939,0],[36960,20939,36959,0],[36959,20939,20929,0],[36959,20929,20936,0],[20927,36960,36961,0],[36963,7406,7405,0],[7405,7394,36967,0],[36961,36960,36959,0],[36961,36959,36962,0],[36962,36959,36963,0],[7406,36963,20936,0],[20936,36963,36959,0],[20927,36961,36965,0],[36965,36961,36962,0],[36965,36962,36964,0],[36964,36968,20941,0],[36964,20941,20940,0],[36965,20925,20926,0],[36965,20926,20927,0],[36965,36964,20925,0],[20925,36964,20940,0],[20941,7391,7390,0],[20942,20920,20921,0],[20942,20921,20922,0],[36968,36964,36966,0],[36963,36966,36962,0],[36962,36966,36964,0],[36967,7392,36968,0],[36968,7392,20941,0],[36968,36966,36967,0],[36967,36966,7405,0],[36130,26327,48721,0],[36130,36129,36114,0],[26321,26312,26320,0],[36147,36138,36969,0],[36147,36969,36148,0],[36148,36969,36144,0],[36144,36969,36139,0],[36140,36142,36139,0],[36139,36969,36138,0],[36970,20077,36971,0],[20078,20080,36972,0],[36972,48698,36140,0],[36140,48698,48697,0],[36972,36140,36138,0],[36972,36138,36971,0],[36971,36138,36970,0],[20078,36972,36971,0],[26052,26067,26054,0],[20085,36121,36122,0],[36119,36124,36118,0],[36119,37005,36124,0],[36124,37005,36997,0],[36125,36973,36999,0],[36125,36999,36126,0],[36974,36126,36975,0],[36974,36975,36992,0],[36992,36975,36976,0],[36993,36992,36977,0],[36993,36977,36996,0],[36996,36977,36978,0],[36996,36978,36979,0],[36979,36978,21064,0],[36979,21064,21060,0],[36979,21060,21044,0],[36979,21044,21045,0],[21064,36978,21057,0],[21057,36978,36977,0],[36992,36976,36977,0],[36976,36980,36985,0],[36985,36980,36981,0],[36981,36982,36983,0],[36981,7397,36982,0],[36984,36982,20933,0],[36984,36983,36982,0],[36977,36986,21057,0],[36986,36985,21058,0],[21058,36985,36983,0],[36983,36985,36981,0],[36985,36986,36976,0],[36976,36986,36977,0],[7399,36987,37002,0],[36991,37002,36988,0],[36989,36990,36093,0],[36989,36093,36991,0],[36989,36991,36988,0],[37002,36991,7399,0],[36974,36992,36127,0],[36127,36992,36993,0],[36127,36993,36128,0],[36128,36993,36995,0],[36128,36995,36994,0],[21047,36995,36996,0],[21047,36996,21045,0],[21045,36996,36979,0],[36993,36996,36995,0],[36125,36124,36973,0],[36997,37001,37010,0],[37010,37001,36998,0],[36998,37000,36999,0],[36999,37000,36975,0],[36976,36975,36980,0],[36975,37000,36980,0],[36980,37000,36981,0],[36981,37000,36998,0],[36987,37006,37002,0],[37002,37006,37009,0],[37009,37006,37003,0],[37004,37003,36098,0],[36098,37003,36119,0],[36119,37003,37005,0],[37005,37003,37006,0],[37005,37006,36997,0],[36988,37002,37009,0],[36989,37009,37008,0],[37008,37009,37007,0],[37007,36954,37008,0],[37008,36954,36095,0],[36989,37008,36990,0],[36990,37008,36095,0],[37009,36989,36988,0],[37003,37004,37009,0],[37009,37004,37007,0],[36987,37001,37006,0],[37006,37001,36997,0],[36975,36126,36999,0],[36999,36973,37010,0],[37010,36973,36997,0],[36997,36973,36124,0],[37012,21042,37011,0],[37012,37011,21040,0],[37012,21040,37013,0],[37014,37012,37013,0],[37014,21076,21056,0],[21056,21076,37015,0],[37015,21076,20446,0],[20428,37017,37018,0],[37019,20430,37016,0],[37016,20430,20472,0],[37016,37017,37019,0],[20480,37019,20428,0],[37020,48717,37237,0],[37237,48717,37021,0],[37237,37021,21075,0],[37237,21075,37022,0],[37022,21075,37236,0],[37021,48717,37014,0],[37240,37242,37018,0],[37240,37018,37239,0],[37020,37239,21079,0],[37017,20428,37019,0],[20272,20411,20419,0],[20390,20273,37023,0],[37023,20273,37352,0],[37023,37352,37024,0],[37023,37024,20389,0],[37023,20389,20390,0],[20325,20410,20409,0],[20410,20276,20277,0],[20937,37035,37034,0],[20937,37034,37025,0],[37025,37034,37026,0],[37026,37034,37027,0],[37026,37027,37028,0],[37038,37028,37029,0],[37038,37029,37228,0],[37228,37029,37030,0],[37030,37196,37031,0],[37031,37196,37032,0],[37031,37032,37230,0],[37230,37032,37081,0],[37230,37081,21007,0],[37033,37027,37055,0],[37055,37027,37052,0],[37052,37027,20849,0],[37052,20849,37050,0],[37050,20849,20850,0],[37027,37034,20849,0],[37034,37035,20849,0],[37027,37033,37028,0],[37028,37033,37029,0],[37037,37036,21087,0],[21036,37036,21037,0],[21037,37036,21071,0],[21071,37036,21035,0],[37036,37037,21035,0],[21035,37037,21088,0],[21088,37037,21087,0],[37025,37026,21036,0],[21036,37026,37028,0],[21036,37028,37036,0],[37038,37228,37227,0],[37028,37038,37036,0],[37036,37038,21087,0],[37039,21195,36452,0],[37039,36452,21112,0],[21113,21111,21112,0],[21112,21111,37039,0],[37039,21111,37040,0],[37180,21114,36477,0],[37041,7399,37042,0],[7421,7395,37042,0],[37042,7395,7396,0],[37042,7396,37043,0],[37043,7410,7398,0],[7398,37041,37043,0],[7398,36987,37041,0],[37044,37045,7417,0],[7417,37045,37046,0],[37047,37046,37048,0],[37047,37048,7413,0],[37046,37047,7417,0],[37051,20850,37049,0],[37056,37049,20851,0],[20850,37051,37050,0],[37052,37050,37051,0],[37052,37051,37053,0],[37053,20853,37054,0],[37054,20855,21097,0],[21097,21103,37054,0],[37054,21103,21102,0],[37054,21102,37053,0],[37053,21102,37052,0],[37052,21102,37055,0],[37033,37055,21101,0],[37033,21101,21100,0],[37051,37049,37053,0],[37053,37049,37056,0],[37056,20851,20854,0],[20854,20853,37056,0],[37056,20853,37053,0],[37057,20919,20918,0],[37057,20918,20874,0],[37057,20856,20919,0],[37062,21095,21105,0],[21095,37058,20868,0],[20855,37058,21097,0],[21097,37058,21096,0],[21096,37058,21095,0],[37059,20999,37078,0],[37059,37078,37060,0],[37059,37060,37077,0],[37059,37077,21096,0],[21096,37077,37061,0],[37061,37077,37194,0],[37061,37194,21098,0],[37061,21097,21096,0],[37062,21096,21095,0],[37062,37059,21096,0],[21100,37195,37033,0],[37033,37195,37029,0],[20826,20827,36768,0],[37064,20819,20818,0],[37064,20818,20809,0],[20809,20818,20816,0],[20808,20671,20807,0],[20807,20671,20670,0],[20819,37064,20820,0],[20897,20881,20899,0],[36956,20922,20921,0],[36704,36720,36765,0],[36765,36761,36705,0],[36705,36704,36765,0],[7655,36705,36761,0],[7655,36761,36760,0],[36719,36701,37065,0],[37065,36701,36688,0],[37065,36688,36689,0],[36701,36709,36688,0],[36691,36688,36709,0],[7330,36894,36817,0],[36689,37070,36718,0],[36719,37065,36718,0],[36718,37065,36689,0],[36718,37068,36716,0],[36716,37069,36082,0],[37070,36689,37066,0],[37066,37067,37070,0],[37070,37067,37068,0],[37068,37067,37069,0],[37068,37069,36716,0],[36082,37069,36084,0],[37068,36718,37070,0],[37069,37067,36084,0],[36074,36090,37071,0],[37071,36090,36075,0],[37071,36075,36085,0],[7416,36955,37072,0],[7416,37072,7401,0],[7415,36955,7416,0],[37073,37045,37044,0],[37073,7400,37045,0],[20914,20910,36958,0],[36958,20910,20846,0],[36066,36026,36038,0],[36018,36048,36017,0],[36017,36048,36050,0],[36050,36048,36047,0],[20837,20838,37074,0],[37074,7424,20837,0],[37076,37075,7435,0],[36071,20958,20978,0],[20978,20958,20977,0],[20993,20977,20958,0],[20644,21002,21001,0],[37193,21002,21003,0],[37060,37193,37077,0],[37060,37078,21002,0],[21002,37078,21001,0],[21002,37193,37060,0],[37190,37080,37081,0],[21003,21004,37079,0],[21004,37189,37079,0],[37082,20816,20862,0],[20862,20816,20808,0],[20667,37083,37089,0],[37086,37083,37084,0],[37085,37091,20805,0],[37085,20805,37108,0],[37084,36459,37086,0],[37086,37087,37089,0],[20666,37092,20649,0],[37092,20666,37088,0],[37083,37086,37089,0],[37089,37088,20666,0],[37088,37089,37087,0],[20667,37089,20801,0],[20801,37089,20666,0],[37086,36459,37090,0],[37086,37090,37087,0],[20667,20668,37083,0],[37083,20668,37084,0],[37084,20668,37091,0],[20805,37091,20668,0],[37094,37092,37095,0],[37095,37087,37093,0],[37093,36457,37095,0],[37095,36457,37094,0],[37092,37094,20665,0],[20665,37094,20664,0],[36463,20664,37094,0],[37092,37088,37095,0],[37087,37090,37093,0],[37093,37090,37096,0],[37087,37095,37088,0],[37098,36447,37097,0],[37097,36447,37101,0],[37097,37101,37100,0],[37100,37099,37097,0],[37097,37099,37098,0],[1527,37100,37101,0],[1527,37101,1528,0],[37101,36447,36446,0],[1527,1526,37100,0],[37100,1526,37099,0],[21135,21134,37102,0],[37102,1517,21135,0],[21135,1517,21136,0],[21136,1517,21137,0],[36459,36460,37106,0],[37106,36460,36481,0],[37106,36481,37103,0],[37103,36481,36490,0],[37106,37104,37107,0],[36465,37104,36447,0],[36447,37104,36446,0],[36446,37104,37105,0],[37103,37105,37106,0],[37106,37105,37104,0],[36459,37106,37107,0],[37104,36465,37107,0],[36461,37085,37108,0],[37108,20669,36461,0],[20634,36386,20632,0],[20632,36386,37109,0],[21115,37109,36386,0],[37114,21229,37110,0],[37111,37110,37112,0],[37111,37117,37113,0],[37114,37113,37115,0],[37115,37113,37116,0],[37116,21185,21186,0],[21186,21188,37116,0],[37115,37116,21188,0],[37115,21188,21223,0],[21185,37116,37113,0],[21185,37113,37117,0],[21227,37118,37160,0],[37118,21227,21183,0],[37117,37111,37118,0],[37160,37118,21226,0],[37118,37111,21226,0],[21226,37111,37112,0],[37118,21183,37117,0],[37115,21228,37114,0],[37114,37110,37113,0],[37113,37110,37111,0],[37112,37110,37165,0],[37165,37110,21225,0],[20510,20511,37123,0],[37123,20511,37119,0],[37119,37120,37122,0],[20512,37122,37120,0],[37120,37119,20511,0],[37120,20504,20512,0],[37122,37121,37123,0],[37135,37125,20508,0],[37126,37125,21350,0],[21350,37136,37126,0],[37126,20508,37125,0],[37125,37124,37132,0],[37132,37124,21351,0],[37127,21351,37123,0],[37127,37123,37121,0],[37127,37121,37275,0],[37127,37275,37274,0],[37128,37274,37129,0],[37128,37129,37286,0],[37129,37274,21261,0],[37134,37286,37280,0],[37134,37280,37130,0],[37287,21353,37131,0],[37134,37131,37132,0],[37132,37131,37133,0],[37133,37136,21350,0],[21353,21352,37133,0],[21353,37133,37131,0],[37133,21352,37136,0],[37130,37287,37131,0],[37130,37131,37134,0],[37286,37134,37128,0],[37132,37133,37125,0],[37125,37133,21350,0],[37127,37128,21351,0],[37122,37123,37119,0],[37123,37124,37135,0],[20509,20510,37135,0],[37126,21343,20508,0],[21343,20500,20508,0],[37126,37136,21344,0],[21344,37136,21349,0],[37135,37124,37125,0],[37135,20510,37123,0],[37124,37123,21351,0],[21344,21349,21345,0],[20818,37137,20817,0],[37143,20815,37138,0],[20966,37139,20814,0],[37139,20974,37140,0],[20974,20969,37140,0],[37140,20969,20793,0],[37140,20793,37152,0],[37140,37152,37141,0],[37139,37144,37138,0],[37143,37141,37142,0],[37143,37142,37137,0],[37143,37137,20819,0],[37139,37138,20814,0],[20814,37138,20815,0],[20819,37137,20818,0],[20671,36485,36462,0],[37144,37143,37138,0],[37140,37144,37139,0],[37143,37144,37141,0],[20694,20695,37145,0],[37145,20695,37148,0],[37145,37148,37146,0],[37146,37147,37145,0],[20695,20673,37148,0],[20700,37149,20674,0],[20674,37149,37148,0],[37151,37150,36482,0],[36482,36483,37151,0],[37151,36483,36461,0],[37151,36462,36485,0],[36462,37151,36461,0],[20691,37150,36485,0],[36485,37150,37151,0],[37144,37140,37141,0],[20673,20695,37153,0],[37154,20701,20697,0],[20690,49514,20689,0],[37155,20675,37156,0],[37155,37156,20967,0],[36599,7615,36600,0],[37112,37157,21226,0],[21226,37157,37162,0],[21226,37162,37158,0],[37158,37161,37159,0],[37160,37159,21253,0],[21253,21182,37160,0],[37159,37160,37158,0],[37159,37161,21254,0],[21254,37161,21255,0],[37162,37161,37158,0],[37161,37162,21256,0],[37157,37163,37162,0],[37162,37163,21256,0],[21163,37164,37167,0],[37164,37157,37165,0],[37167,37165,21225,0],[37166,21225,21229,0],[21229,21230,37166,0],[21225,37166,21258,0],[21225,21258,37167,0],[37167,37164,37165,0],[37168,20612,20611,0],[20612,37168,38343,0],[20612,38343,38341,0],[20612,38341,38339,0],[20612,38339,20613,0],[36560,6307,37169,0],[36533,36558,6306,0],[37171,36527,37172,0],[36529,37174,37170,0],[37175,49094,49096,0],[49094,37175,49099,0],[37171,37170,37174,0],[37171,37174,36527,0],[37170,49099,37173,0],[37173,49099,36552,0],[36552,49099,37175,0],[36550,36552,37175,0],[36550,37175,49097,0],[49097,37175,49096,0],[37174,36529,36528,0],[36438,1529,37176,0],[37176,37101,37177,0],[36444,1531,37177,0],[37177,1531,37176,0],[37176,1531,36438,0],[37176,1528,37101,0],[1528,37176,1529,0],[37177,37101,36446,0],[36475,36471,37178,0],[36475,37178,36466,0],[36469,36466,37178,0],[36299,36296,36298,0],[37179,21113,21112,0],[36459,37107,37090,0],[37090,37107,37096,0],[36477,36476,36470,0],[37181,37180,36473,0],[37181,21119,37180,0],[37182,21196,37183,0],[37183,21195,21197,0],[21197,21208,37183,0],[37183,21208,37184,0],[37183,37184,37185,0],[37185,37184,21202,0],[21202,37184,21201,0],[21201,37184,21199,0],[21201,21199,21200,0],[37183,37185,37182,0],[21111,21110,37040,0],[21110,21109,37186,0],[37186,21109,21107,0],[37189,21221,37188,0],[37188,21221,21005,0],[37188,21005,37187,0],[21007,37081,37187,0],[37081,37080,37187,0],[37187,37080,37188,0],[37080,37079,37188,0],[37188,37079,37189,0],[37190,21099,21098,0],[37081,37032,37190,0],[37080,37190,37191,0],[37194,37192,21098,0],[21098,37192,37191,0],[21098,37191,37190,0],[37080,37191,37192,0],[21003,37079,37193,0],[37193,37079,37192,0],[37192,37079,37080,0],[37194,37077,37193,0],[37029,37195,37030,0],[37030,37195,37196,0],[37195,21099,37196,0],[37032,37196,37190,0],[37038,37227,21087,0],[21087,37227,37197,0],[21030,21029,37198,0],[21030,37198,37238,0],[37238,37199,21031,0],[21031,37199,21032,0],[21031,21030,37238,0],[21026,21017,21024,0],[37200,37265,37201,0],[37205,37201,37202,0],[37202,20426,37206,0],[37200,21024,21023,0],[21028,21026,37205,0],[37205,37202,37206,0],[37206,20426,20427,0],[37205,37206,21028,0],[21028,37206,37207,0],[37207,37206,20427,0],[37205,21026,21024,0],[37205,21024,37200,0],[37200,37201,37205,0],[37208,37202,37264,0],[37208,37255,20245,0],[20245,37255,20244,0],[20245,37204,37208,0],[37202,37208,20426,0],[20426,37208,37203,0],[37209,20246,20244,0],[20247,37210,20242,0],[37210,37209,37211,0],[37211,37209,20244,0],[20230,20243,37216,0],[20230,37216,20229,0],[20229,37216,37215,0],[20229,37215,20220,0],[20222,20220,37215,0],[20222,37215,37212,0],[37213,37214,37210,0],[37257,37212,37211,0],[37211,37212,37213,0],[37210,37211,37213,0],[37212,37215,37213,0],[37215,37216,37213,0],[20230,20231,20243,0],[20243,20231,20232,0],[21316,21315,37217,0],[21316,37217,22449,0],[22448,37218,22449,0],[22449,37218,37219,0],[37328,37219,37218,0],[37218,22448,37220,0],[37220,22448,22447,0],[22445,22446,22443,0],[22446,22445,22447,0],[22447,22445,37220,0],[37218,37220,20189,0],[20189,37220,22445,0],[37225,20190,37221,0],[37224,37221,37222,0],[37221,37224,37225,0],[37224,37222,37223,0],[37224,37223,37219,0],[37224,37219,37225,0],[37225,37219,37328,0],[20486,37222,37221,0],[37223,37222,20488,0],[37223,20488,37226,0],[37226,20488,20490,0],[20486,37221,20209,0],[37228,37030,37229,0],[37231,37229,37230,0],[37231,37230,21092,0],[21092,37230,21091,0],[21092,37234,37231,0],[37229,37030,37031,0],[37229,37031,37230,0],[21007,21091,37230,0],[37197,37227,37232,0],[37232,37227,37231,0],[37229,37231,37228,0],[37228,37231,37227,0],[37197,37232,21085,0],[21084,21085,37233,0],[21084,37233,21093,0],[21084,21093,37325,0],[37325,21093,21094,0],[21093,37233,37234,0],[37234,37233,37231,0],[37231,37233,37232,0],[37244,21033,37243,0],[37235,37199,48715,0],[48715,37199,37238,0],[48715,37238,37022,0],[48714,37236,21074,0],[37241,37020,37198,0],[37022,37238,37237,0],[37237,37238,37020,0],[37020,37238,37198,0],[37020,37241,37239,0],[37207,37240,21029,0],[37207,21029,21028,0],[21029,37240,37198,0],[37198,37240,37241,0],[37241,37240,37239,0],[20428,37242,20427,0],[20427,37242,37207,0],[37199,37235,21032,0],[37235,21033,21032,0],[21033,37235,37243,0],[37244,37243,21034,0],[21069,21067,21066,0],[21066,21061,21069,0],[36473,36477,36471,0],[36473,37180,36477,0],[21191,21236,37250,0],[37248,21248,37251,0],[37251,21248,21249,0],[37251,21249,37252,0],[37252,21249,37245,0],[37252,37245,37246,0],[37246,37245,37247,0],[37247,37249,21371,0],[21371,37246,37247,0],[37247,37245,21241,0],[37247,21241,37249,0],[37249,21241,21240,0],[21247,21248,21235,0],[21248,37248,21235,0],[21236,21235,37250,0],[37250,37248,37253,0],[37250,37253,21192,0],[21192,21191,37250,0],[37253,37248,37251,0],[37253,37251,21380,0],[37253,21380,21372,0],[21380,37251,37252,0],[21192,37253,21373,0],[21192,21373,21009,0],[21373,37253,21372,0],[37263,37265,21021,0],[37263,21021,37262,0],[37254,20244,37255,0],[37211,37256,37257,0],[20224,37258,37254,0],[20224,37254,37262,0],[20224,37262,37261,0],[37254,37258,37256,0],[20224,37261,37259,0],[21020,21366,37260,0],[37260,37259,37261,0],[37259,37260,21366,0],[21020,37260,21022,0],[37260,37261,21021,0],[37263,37262,37255,0],[37255,37208,37264,0],[37255,37264,37263,0],[37263,37264,37265,0],[37265,37264,37201,0],[37201,37264,37202,0],[37254,37255,37262,0],[20643,37266,20649,0],[20646,20647,37267,0],[37267,20647,37266,0],[20646,37267,20645,0],[20645,37267,37266,0],[20652,20643,20650,0],[20649,37266,20648,0],[20652,20641,20642,0],[21083,37325,21082,0],[21082,37325,37268,0],[21341,37272,20512,0],[20512,37272,37273,0],[37269,37273,37270,0],[37271,37270,37310,0],[37271,37310,20513,0],[37270,37271,37269,0],[37273,37269,20512,0],[37273,37272,21239,0],[37273,21239,37270,0],[21239,21251,21233,0],[21233,21232,21239,0],[37121,20513,37275,0],[37275,20513,20514,0],[37275,20514,20515,0],[37274,37275,21261,0],[21261,37275,20515,0],[21262,37129,21263,0],[21330,37277,37322,0],[37322,37277,21267,0],[37277,21330,37283,0],[37283,21330,37276,0],[37322,21268,21330,0],[21308,37276,37278,0],[37278,21306,37279,0],[37279,21306,37292,0],[21308,37278,37279,0],[37276,21331,37278,0],[37278,21331,21270,0],[37278,21270,21306,0],[37281,37280,37285,0],[37281,37285,37282,0],[37282,37295,37294,0],[37283,37285,37284,0],[37286,37129,21262,0],[37285,37280,21264,0],[37286,21262,37280,0],[37280,21262,21264,0],[37285,21264,21309,0],[37285,21309,37284,0],[37277,37283,37284,0],[37280,37281,37130,0],[37291,37292,21311,0],[21311,37292,21307,0],[37292,37291,37290,0],[37292,37290,37293,0],[37289,37288,37294,0],[37282,37294,37281,0],[37294,21308,37293,0],[37294,37293,37289,0],[37293,21308,37279,0],[37293,37279,37292,0],[37293,37290,37289,0],[37130,37281,37287,0],[37287,37281,37294,0],[37287,37294,37288,0],[37295,37282,37283,0],[37283,37282,37285,0],[21180,37299,37298,0],[20519,20520,37298,0],[37298,20520,21180,0],[37302,37297,20585,0],[20521,20522,37296,0],[20522,37297,37296,0],[37296,37297,37301,0],[20521,37296,37298,0],[20521,37298,37299,0],[37300,37296,37301,0],[37301,37297,37302,0],[37302,20582,37304,0],[37302,37304,37301,0],[37301,37304,37303,0],[37303,37305,21333,0],[21333,20518,37303,0],[37303,20518,37300,0],[37303,37300,37301,0],[20518,20519,37300,0],[37300,20519,37298,0],[37300,37298,37296,0],[37303,37304,37307,0],[37303,37307,37305,0],[37305,37307,37306,0],[37305,21332,21333,0],[20538,20537,37308,0],[37308,20537,20585,0],[37308,20585,37297,0],[37309,37308,37297,0],[37309,37297,20522,0],[37309,20524,37308,0],[37270,21231,37310,0],[37311,21301,21274,0],[21273,21274,37772,0],[37772,22438,22440,0],[22442,37314,22441,0],[22441,37314,37312,0],[21273,37312,37316,0],[21273,22440,37312,0],[37311,37316,21272,0],[37314,22442,37313,0],[37313,22442,22452,0],[37312,37314,37315,0],[37312,37315,22451,0],[37313,37315,37314,0],[22451,37316,37312,0],[21311,37318,37291,0],[37291,37318,21355,0],[37291,21355,37290,0],[37290,21355,37289,0],[37289,21355,37319,0],[37289,37319,37288,0],[37288,37319,21353,0],[37288,21353,37287,0],[37323,37324,37322,0],[37322,37324,21268,0],[37322,21267,37323,0],[20574,37323,21336,0],[21336,37323,21267,0],[37320,37321,21293,0],[21295,21294,21337,0],[21294,37321,21337,0],[21337,37321,37324,0],[21337,37324,37323,0],[21268,37324,37321,0],[21269,37321,37320,0],[37317,21323,21356,0],[21355,21356,21321,0],[21321,21356,21323,0],[21022,37200,21019,0],[21018,21020,21019,0],[37268,37325,21094,0],[37326,20479,20480,0],[20428,37326,20480,0],[20247,20242,20241,0],[49956,20228,20418,0],[20205,20482,20218,0],[20218,20483,20205,0],[20485,20487,20219,0],[20219,20487,20218,0],[37218,20189,37328,0],[37328,20189,20188,0],[20188,37329,20190,0],[20190,37329,37343,0],[20190,37343,20207,0],[20207,37343,37330,0],[37333,37334,37336,0],[37336,37337,37333,0],[37333,37337,37332,0],[37332,37337,37338,0],[37332,37338,37331,0],[37331,37338,20193,0],[37331,20193,20191,0],[20193,37338,37340,0],[37342,37337,37336,0],[37342,37336,37335,0],[37337,37339,37338,0],[37338,37339,37340,0],[20193,37340,20400,0],[20400,37340,37339,0],[37341,37342,20397,0],[37341,37339,37342,0],[37342,37339,37337,0],[37331,20191,20207,0],[37331,20207,37330,0],[37335,37336,21401,0],[21401,37336,37334,0],[21401,37334,21400,0],[21400,37334,20184,0],[37334,37333,20185,0],[20185,37333,37332,0],[20186,37332,37331,0],[20185,37332,20186,0],[37330,20186,37331,0],[20186,37330,37343,0],[37343,20187,20186,0],[20187,37343,37329,0],[20190,37225,20188,0],[37225,37328,20188,0],[20201,20415,37344,0],[20203,37344,37345,0],[20203,37345,20204,0],[37346,20204,37345,0],[37346,37345,20216,0],[20216,37345,20417,0],[37347,22469,37348,0],[37348,22469,37349,0],[37348,37349,22466,0],[20187,22467,22469,0],[37216,20243,37214,0],[37214,37213,37216,0],[37258,37257,37256,0],[37352,49512,37024,0],[37352,20273,37351,0],[37352,37351,49512,0],[37351,20331,49512,0],[49512,20331,37353,0],[37353,20333,20387,0],[37353,20387,20388,0],[20339,37354,20338,0],[20338,37354,20337,0],[20339,20340,37376,0],[37376,20340,37355,0],[20131,20129,37355,0],[37355,20129,37375,0],[37375,20129,20128,0],[37354,20339,37376,0],[37355,20340,37361,0],[37355,37361,20132,0],[20132,37360,37356,0],[37356,37360,37359,0],[20348,37359,37360,0],[20132,37361,37360,0],[20348,37358,37359,0],[37362,37374,20371,0],[20371,37374,20346,0],[20353,20352,37363,0],[37363,20352,37364,0],[37364,20352,20354,0],[37367,37365,37366,0],[20352,37365,20354,0],[20316,20305,37367,0],[20316,37367,20361,0],[37367,20305,37365,0],[20361,20362,20316,0],[20367,37366,37365,0],[37365,20352,20367,0],[21409,21408,21414,0],[22496,22495,22497,0],[37370,37369,22475,0],[22475,22500,37370,0],[20150,22878,22885,0],[22887,22885,22879,0],[22885,22878,22879,0],[37371,37717,20378,0],[37372,37371,20321,0],[20284,21415,21410,0],[21410,20178,20177,0],[37716,20284,37373,0],[20177,37373,21410,0],[20340,37374,37361,0],[37361,37374,37362,0],[37361,37362,37360,0],[37360,37362,20348,0],[20340,20339,37374,0],[37374,20339,20345,0],[37374,20345,20346,0],[37376,37355,37375,0],[37376,37375,37379,0],[37376,37379,37354,0],[37375,20128,37379,0],[37379,20128,37378,0],[37378,20128,20126,0],[37378,20126,20385,0],[37378,20385,37377,0],[37379,37378,37354,0],[37354,37378,37377,0],[20337,37354,37377,0],[20127,25987,37380,0],[25986,25984,25987,0],[25987,25984,37380,0],[37382,25984,37381,0],[37382,37381,37383,0],[37383,25982,37397,0],[37397,25982,37399,0],[37382,37384,37380,0],[37380,37384,37385,0],[37380,37385,20127,0],[25989,25988,37403,0],[37403,25988,37385,0],[37403,37385,37384,0],[25990,25989,37404,0],[37404,25989,37403,0],[37404,37403,37386,0],[37404,37386,37387,0],[37387,37386,37388,0],[37388,37400,39023,0],[39023,37400,37389,0],[37390,37392,37391,0],[37391,37393,25935,0],[37393,37391,37392,0],[37394,25980,25933,0],[25933,25980,37519,0],[37392,37390,37396,0],[37392,37396,37395,0],[37392,37395,37394,0],[37394,37395,25980,0],[37396,37390,37398,0],[37396,37398,37397,0],[37397,37398,37383,0],[37395,37396,37399,0],[37396,37397,37399,0],[25979,37399,25981,0],[25981,37399,25982,0],[37390,37389,37398,0],[37389,37400,37398,0],[37398,37400,37401,0],[37402,37386,37403,0],[37401,37400,37402,0],[37402,37400,37386,0],[37388,37386,37400,0],[37398,37401,37383,0],[37383,37401,37382,0],[37382,37401,37384,0],[37384,37401,37403,0],[37393,37392,37394,0],[37406,37408,37569,0],[37569,37408,37583,0],[37583,37408,37407,0],[37404,37387,37405,0],[37405,37387,37410,0],[37405,37410,37406,0],[37406,37410,37408,0],[39027,37409,37387,0],[39027,37387,37388,0],[37409,37408,37410,0],[37409,37410,37387,0],[37408,37409,37407,0],[37407,37409,39028,0],[25990,37404,25991,0],[25991,37404,37405,0],[25991,37571,39030,0],[26127,37407,37413,0],[37413,37407,39028,0],[37413,39028,37421,0],[37414,39025,37415,0],[37415,39025,39024,0],[37415,39024,37391,0],[37391,39024,37390,0],[37415,37391,37416,0],[37415,37416,37420,0],[37417,26106,37419,0],[37419,26106,37418,0],[37419,37418,37422,0],[37422,37418,26108,0],[26108,37418,26107,0],[26107,37418,26106,0],[37417,37419,37420,0],[37420,37419,37414,0],[37422,37421,37414,0],[37422,37414,37419,0],[37415,37420,37414,0],[26106,37417,26105,0],[26105,37417,37499,0],[37391,25935,37416,0],[37416,25935,25936,0],[37416,25936,37433,0],[37433,25937,37423,0],[37423,37432,37483,0],[37483,37432,49793,0],[37486,37430,37424,0],[37486,37424,37491,0],[37491,37424,25949,0],[25949,37424,37428,0],[37492,37427,37425,0],[37492,37425,37426,0],[37426,37425,25942,0],[25970,37427,37428,0],[25970,37428,37424,0],[37429,25969,37424,0],[25969,25970,37424,0],[25970,25941,37427,0],[37429,37424,37430,0],[37430,49793,37431,0],[37430,37431,37429,0],[25936,25937,37433,0],[25937,25938,37423,0],[37432,37423,25938,0],[37416,37433,37420,0],[37420,37433,37434,0],[37420,37434,37417,0],[37435,37433,37494,0],[37435,37494,37436,0],[37436,37494,37437,0],[37437,37482,25952,0],[37437,25952,37438,0],[37438,25952,25955,0],[37438,25955,37439,0],[37504,37440,37441,0],[37442,25948,37506,0],[37506,25948,37443,0],[37446,37448,39656,0],[37447,37448,37449,0],[37447,37449,37450,0],[39683,37450,37451,0],[39683,37451,39682,0],[39682,37451,39667,0],[39682,39667,37514,0],[37452,37453,39715,0],[39715,37453,37454,0],[39715,37454,39716,0],[37455,39716,39893,0],[37455,39893,37456,0],[37480,37457,39809,0],[37480,39809,37458,0],[37458,39809,39733,0],[37475,37459,37460,0],[37460,39733,37462,0],[37461,37462,37471,0],[37471,37462,39738,0],[37471,39738,37463,0],[37463,39738,37465,0],[37464,37465,37467,0],[37467,37465,37466,0],[37467,37466,19985,0],[37466,37465,39738,0],[37467,19983,37468,0],[37468,39988,37470,0],[37470,39988,7957,0],[7957,39988,7958,0],[39920,37469,39919,0],[39919,37469,37468,0],[39919,37468,37470,0],[37468,37469,37467,0],[19985,19995,37467,0],[19995,19983,37467,0],[37462,37461,37460,0],[37472,37461,37471,0],[37472,37471,37473,0],[37473,37463,37464,0],[37464,37467,37469,0],[37465,37464,37463,0],[37471,37463,37473,0],[37460,37461,37474,0],[37459,37475,37476,0],[37459,37476,37477,0],[37456,37479,37455,0],[37456,37457,37479,0],[37479,37457,37478,0],[37478,37457,37480,0],[37480,37458,37477,0],[37480,37477,37478,0],[37475,37460,37474,0],[37458,39733,37460,0],[37458,37460,37459,0],[37439,25955,25951,0],[25951,37481,37439,0],[37439,37481,37440,0],[37440,25950,37441,0],[37441,37491,37525,0],[37525,37491,25949,0],[25949,37488,37525,0],[37488,37526,37525,0],[37441,25950,37491,0],[37481,25950,37440,0],[25953,37482,37483,0],[37485,37484,49793,0],[49793,37430,37485,0],[37483,37484,37485,0],[37485,37486,25950,0],[25950,37486,37491,0],[25945,37489,37426,0],[25945,37426,25943,0],[37493,37489,37490,0],[25946,37490,37489,0],[25946,37489,25945,0],[37493,37526,37488,0],[37487,37488,25949,0],[25950,25954,37485,0],[37485,25954,37483,0],[37483,25954,25953,0],[37485,37430,37486,0],[25949,37428,37487,0],[37487,37492,37493,0],[37493,37492,37489,0],[37493,37488,37487,0],[37487,37428,37427,0],[37487,37427,37492,0],[37489,37492,37426,0],[37437,37494,37482,0],[37482,37494,37483,0],[37433,37423,37494,0],[37494,37423,37483,0],[37433,37435,37434,0],[37434,37435,37436,0],[37499,37495,37496,0],[37496,37495,37500,0],[37500,37497,26104,0],[26104,37497,26103,0],[26096,37498,37501,0],[26096,37501,37518,0],[37500,26104,37496,0],[37499,37417,37434,0],[37495,37499,37434,0],[37495,37434,37436,0],[37436,37437,37495,0],[37495,37437,37500,0],[37500,37437,37497,0],[37498,37438,37501,0],[37501,37438,37502,0],[37507,37505,37506,0],[37507,39654,37508,0],[37567,39655,39656,0],[37567,39656,37447,0],[37567,37447,37450,0],[37567,37450,26085,0],[37567,26085,26084,0],[37450,39683,26085,0],[26085,39683,26083,0],[26083,39683,37509,0],[37511,37510,39714,0],[39714,37510,37512,0],[37512,37510,37513,0],[37452,37513,37514,0],[37509,37514,37510,0],[37509,37510,37511,0],[37513,37510,37514,0],[26083,37509,37515,0],[37505,37507,37516,0],[37505,37516,37504,0],[37516,37517,37503,0],[37503,37504,37516,0],[37516,37508,37517,0],[37517,37518,37501,0],[37517,37501,37502,0],[37516,37507,37508,0],[37517,37508,37566,0],[37517,37566,37518,0],[37518,37566,26086,0],[37505,37504,37441,0],[37504,37503,37440,0],[37440,37503,37439,0],[37503,37502,37439,0],[37439,37502,37438,0],[37438,37498,37437,0],[37437,37498,37497,0],[37520,37519,25980,0],[25931,37519,37521,0],[25977,37521,37523,0],[25977,37523,25913,0],[25912,37523,37522,0],[37520,37395,25979,0],[37520,37522,37519,0],[37519,37522,37521,0],[37522,37523,37521,0],[20130,37524,25986,0],[25888,37524,25889,0],[37442,37525,37526,0],[37525,37442,37441,0],[37442,37526,25948,0],[25948,25947,37443,0],[37443,25947,37551,0],[37443,37551,37444,0],[37444,37551,37527,0],[37445,37550,37548,0],[37528,39662,37529,0],[37528,37529,37547,0],[37531,37541,37546,0],[37532,25063,37533,0],[21521,37533,37534,0],[21523,37535,37668,0],[37535,21522,37534,0],[21522,21521,37534,0],[21521,21520,37533,0],[37533,21520,37532,0],[21520,37536,39657,0],[39657,37536,37537,0],[37537,37538,25062,0],[25062,37538,25061,0],[25061,37538,25060,0],[21520,37539,37540,0],[37540,37539,21519,0],[37542,37543,37544,0],[37544,37543,37545,0],[37544,37534,37542,0],[37677,37546,37553,0],[37553,37546,37554,0],[37554,37546,37547,0],[37527,37549,37550,0],[37552,37527,37551,0],[37552,37551,37543,0],[37543,37542,37552,0],[37552,37542,37553,0],[37549,37553,37554,0],[37549,37554,37529,0],[37529,37554,37547,0],[37553,37549,37552,0],[37542,37677,37553,0],[37543,37551,25947,0],[37676,37534,37544,0],[37676,37544,37545,0],[37545,25946,37676,0],[37550,37549,37548,0],[37548,37529,39662,0],[37548,37549,37529,0],[37552,37549,37527,0],[37541,37530,37547,0],[37531,37546,37677,0],[37541,25064,37530,0],[37444,37527,37445,0],[37445,37527,37550,0],[39681,37548,39662,0],[26038,26037,26029,0],[26038,26030,26031,0],[20096,37555,26037,0],[20457,37556,20458,0],[20101,20458,20102,0],[20102,20458,37556,0],[26105,26141,37557,0],[37557,26141,26143,0],[37557,26143,37558,0],[37559,37561,26144,0],[37559,26144,26140,0],[26144,37561,37558,0],[26140,37565,37559,0],[37559,37565,26125,0],[37560,37561,37559,0],[37559,26125,37560,0],[37558,37561,48694,0],[37558,48694,37562,0],[37562,37557,37558,0],[37557,37563,26105,0],[26115,26125,26116,0],[26116,26125,37565,0],[26117,26116,37564,0],[26117,37564,26154,0],[26136,26154,37564,0],[26116,37565,37564,0],[37508,39655,37566,0],[37566,37567,26084,0],[37568,26180,37573,0],[37569,37570,37411,0],[37571,37405,37406,0],[37571,37406,37411,0],[37569,37411,37406,0],[37405,37571,25991,0],[37411,37570,37412,0],[37570,37572,20442,0],[20442,37572,20114,0],[37569,37572,37570,0],[26180,37574,37573,0],[37568,37573,37572,0],[48724,37575,37576,0],[37577,37578,26031,0],[37577,26030,26027,0],[20111,37579,26030,0],[37579,26027,26030,0],[37576,26027,20109,0],[37576,20109,20112,0],[37576,20112,37580,0],[37580,20113,48723,0],[37575,48724,37582,0],[37575,37582,37581,0],[48724,37574,37582,0],[26109,37568,37583,0],[37583,37407,26109,0],[37569,37583,37568,0],[37584,20364,37585,0],[37584,37585,20307,0],[37584,20307,37586,0],[37585,20308,20307,0],[37714,20315,20314,0],[37714,20314,20312,0],[20320,20312,20314,0],[20314,20315,20313,0],[20312,20320,20298,0],[20132,37587,25889,0],[25889,37524,20132,0],[25891,26024,37588,0],[25891,37588,37589,0],[37589,37588,25869,0],[37590,25867,25866,0],[25867,37590,25868,0],[25868,37590,25869,0],[25870,37588,26024,0],[37589,25869,37590,0],[37589,37590,25893,0],[25893,37590,25894,0],[20360,20359,37595,0],[37596,37595,20138,0],[37596,20138,37591,0],[37596,37591,20137,0],[37593,37592,20359,0],[20359,37592,37595,0],[37595,37592,20138,0],[20353,37363,20139,0],[20353,37593,20351,0],[37592,37593,37594,0],[37594,20138,37592,0],[20139,37594,20353,0],[20360,37595,25868,0],[25868,37595,37596,0],[25867,37596,39015,0],[20135,39015,20137,0],[37597,25837,37598,0],[37598,21431,37597,0],[37597,21431,37599,0],[37600,37599,37602,0],[37600,37602,37607,0],[37607,37602,37628,0],[37628,37602,37604,0],[22993,37601,37603,0],[37603,37601,37602,0],[37603,37602,21431,0],[21431,37602,37599,0],[37602,37601,37604,0],[37601,21433,37604,0],[37606,23048,21435,0],[23048,37606,21434,0],[21434,37606,37605,0],[21434,37605,37604,0],[37607,25839,37600,0],[37599,37600,37597,0],[37608,20299,20302,0],[25836,25837,25847,0],[25836,37598,25837,0],[21422,21423,22891,0],[21422,22891,37609,0],[22890,23017,23018,0],[22891,22890,37609,0],[37610,22996,37611,0],[37611,22996,22997,0],[37611,22998,37615,0],[37615,22998,22999,0],[37615,22999,37616,0],[37616,22986,37612,0],[37614,37613,22989,0],[37613,37614,37612,0],[37612,37614,37616,0],[37611,37615,38857,0],[37610,37617,37624,0],[37624,37617,22995,0],[37610,37611,37617,0],[37617,37611,38857,0],[37620,37619,37621,0],[37620,37621,25835,0],[37620,25835,20143,0],[23018,37623,22890,0],[22890,37623,37609,0],[37609,37622,21422,0],[21422,37622,37620,0],[37622,37609,37623,0],[23018,37610,37623,0],[37622,37623,37618,0],[37622,37618,37619,0],[37618,37623,37610,0],[37618,37610,37624,0],[37622,37619,37620,0],[37624,22995,37625,0],[37624,37625,37626,0],[37626,37625,25833,0],[25833,25834,37626,0],[25833,37625,22994,0],[37624,37626,37618,0],[37618,37626,37619,0],[37627,37364,20303,0],[20303,37364,20354,0],[20303,20354,20304,0],[20303,20302,37627,0],[20302,20301,37627,0],[37364,37627,37363,0],[25851,25845,25849,0],[37647,25851,25849,0],[37647,25849,37649,0],[37628,25839,37607,0],[37631,37635,37630,0],[37631,37630,37632,0],[21441,38864,21439,0],[38862,37639,37638,0],[38862,37638,37632,0],[37632,37638,37631,0],[38862,21441,37639,0],[37639,25842,37633,0],[37637,37633,37640,0],[37637,37640,37634,0],[37637,37634,37636,0],[37636,37634,25839,0],[25839,37634,37649,0],[25840,37634,37640,0],[37640,37633,25841,0],[25841,37633,25842,0],[38862,37632,38860,0],[38860,37632,37630,0],[37630,37605,37606,0],[37605,37630,37635,0],[37605,37635,37629,0],[37605,37629,37604,0],[37604,37629,37628,0],[25839,37628,37636,0],[37628,37629,37636,0],[37636,37629,37637,0],[37638,37633,37637,0],[37638,37637,37631,0],[37639,37633,37638,0],[37631,37637,37635,0],[37635,37637,37629,0],[25840,37640,37646,0],[37646,37640,37641,0],[37646,37641,25860,0],[25860,37641,25858,0],[25858,37641,37642,0],[25855,25854,37643,0],[37643,25854,25844,0],[25844,37644,37645,0],[37645,37644,37641,0],[37645,25841,25842,0],[25842,25844,37645,0],[37641,37640,37645,0],[37645,37640,25841,0],[25844,25854,37644,0],[25854,25856,37644,0],[37644,25856,37642,0],[37642,37641,37644,0],[25840,37646,37649,0],[25851,37647,25852,0],[25860,25853,37646,0],[37646,25853,37648,0],[37646,37648,37649,0],[37649,37648,37647,0],[37647,37648,25852,0],[25852,37648,25853,0],[25894,37590,25866,0],[25895,25866,25865,0],[25883,25895,25876,0],[37650,37651,37652,0],[37650,37652,37660,0],[37670,21514,37672,0],[37672,21514,21515,0],[37653,37651,37654,0],[37653,37654,39158,0],[37653,39158,37655,0],[21513,37655,37656,0],[21512,37656,21511,0],[37656,21512,21513,0],[37651,37653,37652,0],[21527,39157,37651,0],[37651,37650,21527,0],[37651,39157,37654,0],[37654,39157,39156,0],[37654,39156,39158,0],[39158,39156,37657,0],[39158,37657,37656,0],[21511,37656,39155,0],[39155,37657,37658,0],[25824,37684,21493,0],[25824,21493,21510,0],[37650,37660,37661,0],[37661,21527,37650,0],[37661,37660,21526,0],[21526,37660,37670,0],[21526,37670,37662,0],[37664,37665,37666,0],[37666,37665,21524,0],[37666,21524,21525,0],[21524,37665,37667,0],[21517,37669,37667,0],[37667,37665,37671,0],[37671,37665,37664,0],[37667,37671,21517,0],[21523,37668,37669,0],[37663,21526,37662,0],[37662,37670,37672,0],[37663,37662,37672,0],[37663,37672,37671,0],[37663,37671,37664,0],[37672,21515,37671,0],[37671,37673,21517,0],[21514,37652,37653,0],[21514,37670,37652,0],[37652,37670,37660,0],[37533,37677,37542,0],[37533,37542,37534,0],[25944,21524,37675,0],[37675,21524,37668,0],[37675,37668,37535,0],[37674,25944,37676,0],[25943,21525,25944,0],[25944,21525,21524,0],[37678,37659,37679,0],[21485,37680,21531,0],[37682,37658,37657,0],[37658,37682,37659,0],[37682,37681,37683,0],[37682,37683,37679,0],[37679,37683,21485,0],[37679,37659,37682,0],[37681,37680,37683,0],[37683,37680,21485,0],[37678,37684,37659,0],[39170,21510,37685,0],[21499,37685,21509,0],[21499,21509,21498,0],[37686,39170,21500,0],[37686,21500,37687,0],[37687,21500,21501,0],[21499,21500,39170,0],[21510,39170,21511,0],[39170,37686,21512,0],[21512,37686,37688,0],[37688,37686,37687,0],[37687,21501,21538,0],[21538,21501,39051,0],[21538,39051,37689,0],[21538,37689,21540,0],[37689,21502,37690,0],[37690,21502,37691,0],[37691,21502,39081,0],[37691,39120,39124,0],[37692,39051,39039,0],[39040,39041,39065,0],[39041,39042,39071,0],[39071,39042,37693,0],[37695,39070,37694,0],[37695,37694,21650,0],[37695,21650,39150,0],[39041,39071,39065,0],[21531,25827,21485,0],[21485,37696,37679,0],[37678,37679,37696,0],[37697,26006,26004,0],[26004,37698,37661,0],[26004,37661,39171,0],[39171,37699,37700,0],[37699,25957,37700,0],[37700,37702,39159,0],[39159,37702,37701,0],[37707,37701,25964,0],[25964,37701,25963,0],[25963,37701,37703,0],[37703,37701,37702,0],[37703,37702,37704,0],[37703,37704,37705,0],[37704,37702,37706,0],[37706,37702,37700,0],[37700,25957,25956,0],[37700,25956,37706,0],[25942,37706,25958,0],[25958,37706,25956,0],[37706,25942,37704,0],[26004,39171,37697,0],[37707,26011,37697,0],[37697,26011,26006,0],[25974,37708,37705,0],[37705,37708,37703,0],[37708,25963,37703,0],[37708,37709,25962,0],[37708,25962,25963,0],[25961,25962,37709,0],[37709,37710,25961,0],[25961,37710,37711,0],[37711,37710,37712,0],[37711,37712,25966,0],[25966,37712,25932,0],[25932,37712,25960,0],[25960,37712,37713,0],[37713,37712,37710,0],[20302,20303,20312,0],[20302,20312,37608,0],[20312,20303,37714,0],[37714,20303,20304,0],[37714,20304,20305,0],[37714,20305,20316,0],[20316,20315,37714,0],[37715,20366,37716,0],[37716,20366,37717,0],[20284,37716,37371,0],[20363,20373,20371,0],[20371,20373,20372,0],[37718,22863,37719,0],[37719,22863,22864,0],[22862,20158,22861,0],[22851,22862,22850,0],[22852,22924,48894,0],[48894,22926,22852,0],[37720,22925,22922,0],[37730,37843,37721,0],[37730,37721,37731,0],[37731,37721,37722,0],[37724,22841,22840,0],[37725,22841,37726,0],[37725,37726,22799,0],[22841,37727,37726,0],[37726,37727,22842,0],[22842,22799,37726,0],[22841,37723,37727,0],[22809,22801,37729,0],[37729,22810,22808,0],[37729,22808,22809,0],[22809,37787,22801,0],[22801,22842,37728,0],[37727,37728,22842,0],[22841,37724,37723,0],[37723,37724,37722,0],[37843,22812,37721,0],[37721,22812,37722,0],[22812,37788,37722,0],[37722,37788,37723,0],[37731,37722,37724,0],[37369,37368,22476,0],[22476,37368,22495,0],[37740,37732,37733,0],[37733,37734,37739,0],[37739,37734,37735,0],[37752,37735,22420,0],[37752,22420,37786,0],[37786,22420,22419,0],[22420,37735,22421,0],[22421,37735,37734,0],[22421,37734,37736,0],[22515,37736,37733,0],[22515,37733,22513,0],[37734,37733,37736,0],[37733,37732,22513,0],[37737,37732,37740,0],[22506,37737,22511,0],[37738,37735,37752,0],[37735,37738,37739,0],[37739,37738,37740,0],[37740,37738,37741,0],[37740,37741,37737,0],[37737,37741,22511,0],[37740,37733,37739,0],[37738,37751,37742,0],[22511,37741,22806,0],[22806,37741,37742,0],[37738,37742,37741,0],[37742,22805,22806,0],[22477,22527,37745,0],[22477,37745,22525,0],[22477,22478,22479,0],[22477,22479,22527,0],[22520,37744,37743,0],[37743,37744,22527,0],[22527,37744,37745,0],[37743,20181,22520,0],[37744,22522,22524,0],[22524,22525,37744,0],[22525,37745,37744,0],[22849,37746,37747,0],[22854,37747,22859,0],[22849,37748,37746,0],[37746,37748,22813,0],[37750,37748,37749,0],[37750,37749,22848,0],[22848,22847,37750,0],[37749,37748,22849,0],[22804,22805,37742,0],[22804,37742,37751,0],[37738,37752,37751,0],[37753,37761,37754,0],[37762,37754,37761,0],[37762,37761,37755,0],[37762,37755,37763,0],[37763,37755,37756,0],[23068,37757,23070,0],[23070,37757,22957,0],[22957,37757,37759,0],[22957,37759,39392,0],[39392,37759,37760,0],[39392,37760,37758,0],[37758,37760,22971,0],[22971,37760,22972,0],[37759,37756,37755,0],[37756,37759,37757,0],[37760,37759,37755,0],[37760,37755,22972,0],[22972,37755,37761,0],[37761,37753,22973,0],[37762,37763,23028,0],[23028,37763,37770,0],[37762,23028,37764,0],[37762,37764,37754,0],[37754,37764,37765,0],[37754,37765,37753,0],[37765,22976,37753,0],[37765,37764,37766,0],[37767,37768,37769,0],[37769,37768,22983,0],[37769,23132,37767,0],[37767,23132,37766,0],[22983,37768,22984,0],[22984,37768,23131,0],[23131,37768,23025,0],[37768,37767,23025,0],[23025,37767,37766,0],[23025,37766,23027,0],[37770,37763,37756,0],[23030,37770,23068,0],[23030,23068,23067,0],[37757,23068,37770,0],[37757,37770,37756,0],[22976,22974,37753,0],[22459,22458,37771,0],[37771,22458,37350,0],[22455,22461,37350,0],[37350,22461,37771,0],[37772,21274,37774,0],[37772,37774,22436,0],[22436,22564,37773,0],[37774,21288,22436,0],[22436,21288,22564,0],[37772,22436,22437,0],[22562,37807,37775,0],[22433,22434,37775,0],[37775,22434,37776,0],[37776,22564,22563,0],[37776,22563,22562,0],[37776,22562,37775,0],[22434,22435,37776,0],[37777,22433,37778,0],[37777,37778,49222,0],[49222,37778,37779,0],[49222,37779,37806,0],[22564,37776,37773,0],[37773,37776,22435,0],[22804,37780,22803,0],[22803,37780,37781,0],[22803,37781,37787,0],[37787,37781,37782,0],[37782,37781,37784,0],[37784,37783,37785,0],[37783,22415,37785,0],[37783,37784,22418,0],[22418,37784,37786,0],[22418,37786,22419,0],[37752,37786,37781,0],[37784,37781,37786,0],[37781,37780,37751,0],[37781,37751,37752,0],[37723,37788,22810,0],[37727,22810,37729,0],[37727,37729,37728,0],[37728,37729,22801,0],[22810,37727,37723,0],[37789,22802,37790,0],[37789,37790,22946,0],[22946,37790,37785,0],[37790,37787,37782,0],[37782,37784,37790,0],[37790,37784,37785,0],[37787,37790,22802,0],[37731,37724,37791,0],[22816,22815,37792,0],[37792,22815,37730,0],[37792,37730,22838,0],[22838,37730,37731,0],[22838,37731,37791,0],[22838,37791,22839,0],[22839,37791,22840,0],[22817,37831,22830,0],[22830,22831,22817,0],[22920,37793,22828,0],[22828,37793,22829,0],[37832,22927,22926,0],[22795,37794,22566,0],[22795,22551,37794,0],[37795,37794,37801,0],[37795,37801,37796,0],[37798,37797,37799,0],[37798,37800,37797,0],[37797,37800,37795,0],[37795,37796,37797,0],[37800,37798,22565,0],[37794,22550,37801,0],[22795,22566,37845,0],[37845,22566,37844,0],[37802,22547,37804,0],[22413,37802,37804,0],[22413,37804,22746,0],[22746,37804,37803,0],[37848,37809,37805,0],[22558,37805,22548,0],[37846,22432,37806,0],[37808,37806,37779,0],[37808,37779,37807,0],[37807,37779,37775,0],[37846,37808,37848,0],[37848,37808,37809,0],[37809,37808,37807,0],[37809,37807,22562,0],[37809,22562,22561,0],[22561,22560,37809,0],[37809,22560,37810,0],[37809,37810,37805,0],[22548,37805,22559,0],[22559,37805,37810,0],[37846,37806,37808,0],[22561,22770,37811,0],[22561,37811,22560,0],[22560,37811,22557,0],[37811,22770,22768,0],[37811,22768,37799,0],[37799,22557,37811,0],[22770,22561,22771,0],[22561,22563,22772,0],[22561,22772,22771,0],[37823,22769,37812,0],[37823,37812,49223,0],[37823,49223,37813,0],[37813,49230,22763,0],[22763,49230,37814,0],[37814,20550,22764,0],[22764,20550,37815,0],[37815,20551,37816,0],[37818,37816,37817,0],[2365,22766,2363,0],[2363,22766,37820,0],[37820,22766,22765,0],[37820,22765,37817,0],[37819,22764,37815,0],[22763,37814,22764,0],[37819,37815,37818,0],[37818,37815,37816,0],[37817,37816,37820,0],[37820,49227,2363,0],[2363,49227,37821,0],[2373,2364,37822,0],[37822,2364,37821,0],[2364,2363,37821,0],[20562,49227,37820,0],[20562,37820,37816,0],[37823,37813,22761,0],[37823,22761,22769,0],[37824,37825,22794,0],[22794,37825,22777,0],[22830,37831,22829,0],[37826,22829,22819,0],[22829,37826,22834,0],[22835,37827,22818,0],[22818,37827,22834,0],[22818,22834,37826,0],[22919,22969,37828,0],[37828,22967,37835,0],[37835,22967,37829,0],[22967,37828,22968,0],[22919,37828,37830,0],[22817,37866,37831,0],[37866,22819,37831,0],[37831,22819,22829,0],[22920,22929,37832,0],[22920,37832,48895,0],[48894,22924,22925,0],[22865,22864,37833,0],[37833,22864,22923,0],[37833,22928,22865,0],[22913,37834,23141,0],[37834,22928,23141,0],[23141,22928,22915,0],[23140,37830,37835,0],[23140,37836,37838,0],[37836,23140,37835,0],[37836,37835,37829,0],[37836,37829,37841,0],[37836,37841,37837,0],[37836,37837,37838,0],[22971,37838,37758,0],[37758,37838,37837,0],[37758,37837,39392,0],[39392,37837,37839,0],[39393,37839,22966,0],[39393,22966,22956,0],[37840,22956,37842,0],[22954,37842,22953,0],[22953,37842,22952,0],[37839,37837,37841,0],[37839,37841,22966,0],[22956,22966,22965,0],[22956,22965,37842,0],[37842,22965,22952,0],[37843,22859,22813,0],[37746,22813,37747,0],[22550,22548,37801,0],[37801,22559,37796,0],[37796,22559,37797,0],[22559,22557,37797,0],[37799,37797,22557,0],[37844,22554,22569,0],[37844,22569,37845,0],[22569,22554,22748,0],[37847,37846,37848,0],[37847,37848,22558,0],[22558,37848,37805,0],[37847,22546,37846,0],[37846,22546,22432,0],[37850,37849,37862,0],[2275,37852,37851,0],[2275,37851,37849,0],[37849,37851,37862,0],[37849,37853,2275,0],[37851,37852,37854,0],[37854,22577,37855,0],[37855,22577,37856,0],[37855,37856,37861,0],[37863,37861,37856,0],[37863,37856,22576,0],[37863,22576,22575,0],[22576,37856,22577,0],[22577,37854,37857,0],[37857,37854,37852,0],[37857,37852,2273,0],[37857,2273,2272,0],[37857,2272,22578,0],[22577,37857,22578,0],[22579,22578,2271,0],[37858,2270,2269,0],[38299,2271,37858,0],[37858,2271,37878,0],[37880,37878,2271,0],[38299,37858,2269,0],[38299,2269,22580,0],[37859,22731,22734,0],[37863,37860,37861,0],[37862,37865,37850,0],[37861,37862,37855,0],[37855,37851,37854,0],[37851,37855,37862,0],[22575,22570,37863,0],[37860,37863,22749,0],[37865,37862,37864,0],[37864,37862,37861,0],[37864,37861,37860,0],[37860,22555,37865,0],[37865,37864,37860,0],[37751,37780,22804,0],[22817,22816,37866,0],[22820,37866,22816,0],[22742,22741,22736,0],[22952,22951,23153,0],[22737,22739,37867,0],[22737,37867,22572,0],[22737,22572,37875,0],[37875,22572,22573,0],[37867,22739,22740,0],[22571,22740,22570,0],[22740,22571,37868,0],[22740,37868,37867,0],[37869,37870,37871,0],[37872,22407,22735,0],[37872,22735,37871,0],[37871,22735,37869,0],[22584,37872,37873,0],[37871,37870,22581,0],[37871,22581,37873,0],[37873,22581,37874,0],[2269,37874,22580,0],[37873,37872,37871,0],[22582,37875,37870,0],[37870,37875,37876,0],[37870,37876,22580,0],[37876,22573,38391,0],[37877,22574,22575,0],[37877,38391,22574,0],[22574,38391,22573,0],[37876,38391,22580,0],[22580,38391,38299,0],[37875,22573,37876,0],[37878,37880,37879,0],[2286,37879,37880,0],[2286,37880,37881,0],[37881,22578,2272,0],[2272,2285,37881,0],[37881,2285,2286,0],[37881,37880,2271,0],[37878,37879,2270,0],[2270,37879,38092,0],[2270,2268,2269,0],[2268,2270,2266,0],[2266,2270,38092,0],[38390,37882,37883,0],[37883,38283,2510,0],[29446,29447,37885,0],[37888,37885,37886,0],[29673,37886,37910,0],[29673,29674,37886,0],[37888,37886,37887,0],[29443,37888,29442,0],[29442,37888,37887,0],[37887,37886,29675,0],[37886,29674,29675,0],[37885,37888,29443,0],[37885,29443,29446,0],[29447,37889,37885,0],[37885,37889,37909,0],[37909,37889,38244,0],[37909,38244,37890,0],[37891,37892,2300,0],[37891,2300,37893,0],[37908,37893,29670,0],[49192,29668,37894,0],[37894,38381,37895,0],[37895,38381,2304,0],[37895,2304,38384,0],[38384,2304,37896,0],[38384,37896,37897,0],[37897,38382,37898,0],[2306,2307,37898,0],[37898,2307,37899,0],[38389,37900,37905,0],[38347,37901,38348,0],[38348,37901,37902,0],[37902,37901,38352,0],[38352,37901,38370,0],[38370,37904,37903,0],[37903,37904,37900,0],[37905,37906,37901,0],[37901,38347,37905,0],[37905,37900,37906,0],[37905,38347,38345,0],[37899,2308,37907,0],[2308,37899,2307,0],[29668,49192,29644,0],[29644,49192,49218,0],[37893,37908,37891,0],[37891,37908,37890,0],[37890,37908,37911,0],[37890,37911,37909,0],[37885,37909,37886,0],[37886,37909,37910,0],[37910,37909,37911,0],[37911,29672,37910,0],[29673,29672,37912,0],[37912,29678,29673,0],[29673,29639,37913,0],[29673,37913,29674,0],[29674,37913,29675,0],[29675,37913,49243,0],[29648,29641,29665,0],[29665,29641,29643,0],[29641,29642,29643,0],[37914,38376,49242,0],[49242,38376,29652,0],[29652,38376,29653,0],[29696,29708,37915,0],[37915,29708,37929,0],[37929,29708,37916,0],[37920,37923,37917,0],[6434,37919,37918,0],[37918,37919,37920,0],[37920,37930,37923,0],[37923,37930,37916,0],[37920,37917,37918,0],[29659,37918,37917,0],[29659,37917,29658,0],[37922,29656,37923,0],[37922,37923,29709,0],[37923,37916,29709,0],[29709,37916,29708,0],[29656,29657,37921,0],[29658,37917,37921,0],[37921,37917,29656,0],[37917,37923,29656,0],[29701,37915,37924,0],[29701,37924,37925,0],[29701,37925,29702,0],[29702,37925,37926,0],[49165,37926,49184,0],[37927,38360,37928,0],[37924,37915,37929,0],[37929,37930,38358,0],[38358,37930,37931,0],[37931,37930,37920,0],[37931,37920,38353,0],[38353,37920,37919,0],[37930,37929,37916,0],[6388,6389,6599,0],[6599,6389,6366,0],[22588,37932,37933,0],[22734,37933,37859,0],[22594,22593,37935,0],[37935,22593,37934,0],[37934,38051,2553,0],[22595,37935,2553,0],[22595,22597,37935,0],[2575,2614,2574,0],[2574,2551,2567,0],[2574,2614,2551,0],[37936,2614,2552,0],[2572,2573,37937,0],[2572,37937,37938,0],[37938,37939,37948,0],[37938,37948,2571,0],[37938,2571,2572,0],[37938,37937,2602,0],[2548,2605,2604,0],[2548,2604,37937,0],[37937,2604,2602,0],[2602,37939,37938,0],[2548,37937,2617,0],[2617,37937,2550,0],[37937,2573,2550,0],[2550,2573,2551,0],[2603,2625,37940,0],[37940,2625,37941,0],[37940,37941,2606,0],[2606,37941,37951,0],[37944,37942,37954,0],[37954,37943,37953,0],[37954,37953,37944,0],[37944,37953,2593,0],[37945,37944,2593,0],[37945,2593,37946,0],[37946,2593,2592,0],[37946,2592,2591,0],[37944,37945,37942,0],[37942,37945,37947,0],[37947,37945,37949,0],[2571,37948,37950,0],[37950,37948,37949,0],[37942,37947,37951,0],[2606,37951,37939,0],[37945,37946,37949,0],[37949,37946,2591,0],[37949,2590,37950,0],[37950,2590,37952,0],[37952,2570,2571,0],[37952,2571,37950,0],[2590,37949,2591,0],[37952,2590,2589,0],[37943,2595,37953,0],[37953,2595,2594,0],[2597,37943,37958,0],[2597,37958,37955,0],[2599,2598,2601,0],[2601,2598,37956,0],[38542,37956,37957,0],[37942,37957,37954,0],[37956,2598,37955,0],[37956,37955,37958,0],[37956,37958,37957,0],[37957,37958,37954,0],[37954,37958,37943,0],[2568,2569,37961,0],[2584,37960,2587,0],[2587,37959,2589,0],[37952,2589,37959,0],[37959,2587,37960,0],[37960,2569,2570,0],[37960,2584,37961,0],[37961,37962,2568,0],[37962,37961,2583,0],[2588,37963,2587,0],[2587,37963,2586,0],[37965,37963,37964,0],[37965,37964,38012,0],[37965,38012,37986,0],[37986,37967,37966,0],[37966,37967,37968,0],[37968,38010,37979,0],[37979,37970,37969,0],[37969,37970,37971,0],[2581,37971,37972,0],[37973,37972,37974,0],[37973,37974,22724,0],[22724,37974,37975,0],[22724,37976,37973,0],[2582,37973,37977,0],[37977,37973,37976,0],[37976,22725,37977,0],[37977,22725,22621,0],[37972,37973,2581,0],[37972,37978,37974,0],[37978,37972,37971,0],[37971,37970,38044,0],[37971,38044,37978,0],[37974,37978,22625,0],[22625,37978,38045,0],[22625,38045,38844,0],[2581,2580,37971,0],[37971,2580,37969,0],[37981,37980,37983,0],[37981,37983,37966,0],[37966,37983,37982,0],[37966,37982,2586,0],[2583,2585,37984,0],[37985,37984,37980,0],[37985,37980,37979,0],[37985,37979,37969,0],[37985,37969,2580,0],[2580,2579,37985,0],[2579,2578,37985,0],[37985,2578,37984,0],[37980,37984,2585,0],[2585,37983,37980,0],[37968,37979,37981,0],[37968,37981,37966,0],[37986,37966,37965,0],[37979,37980,37981,0],[37965,37966,2586,0],[2586,37963,37965,0],[37970,37979,38010,0],[37970,38010,37987,0],[37987,38010,37988,0],[38007,37988,37991,0],[38007,37991,37989,0],[37989,37991,38011,0],[37990,22628,23186,0],[37990,23186,37989,0],[37967,37986,37991,0],[2588,38002,37963,0],[37992,38001,37993,0],[37993,37994,38572,0],[37995,38571,38570,0],[38570,37996,38569,0],[22660,22709,22659,0],[22661,38000,37998,0],[37998,38000,37997,0],[2592,37998,37999,0],[2592,37999,37994,0],[37994,37999,38572,0],[38571,37997,38000,0],[38571,38000,37996,0],[37996,38000,22661,0],[38572,37999,37997,0],[37997,37999,37998,0],[37998,2592,2593,0],[38571,38572,37997,0],[38002,2588,38575,0],[38575,2588,37992,0],[2588,2590,37992,0],[37992,2590,38001,0],[37994,37993,38001,0],[2590,2591,38001,0],[38001,2591,37994,0],[38002,38576,38003,0],[38003,38576,38004,0],[38004,38005,23203,0],[37989,23186,38006,0],[37989,38006,38007,0],[38007,38006,38008,0],[22627,22626,38008,0],[38008,22626,38009,0],[38009,37987,37988,0],[38007,38009,37988,0],[38009,38007,38008,0],[37967,37991,37988,0],[37967,37988,37968,0],[37968,37988,38010,0],[38012,38014,37990,0],[37991,37986,38011,0],[38011,37986,38012,0],[38011,38012,37990,0],[38011,37990,37989,0],[38015,38013,38003,0],[38015,38003,22631,0],[23203,22631,38004,0],[38004,22631,38003,0],[38002,38003,37964,0],[38002,37964,37963,0],[38003,38013,37964,0],[38012,38013,38014,0],[22628,38014,22629,0],[22628,22629,23183,0],[22628,37990,38014,0],[22629,38014,38015,0],[38015,38014,38013,0],[38015,22631,22629,0],[38016,22591,2265,0],[2530,38019,2264,0],[38019,2530,38018,0],[38019,38018,38017,0],[38019,38020,2264,0],[38017,2265,38020,0],[38017,38020,38019,0],[22730,38016,38052,0],[22730,38052,38051,0],[2553,38051,38024,0],[2553,38024,38021,0],[38051,38023,38024,0],[38021,38024,38023,0],[38051,37934,22730,0],[22730,37934,22592,0],[22592,37934,22593,0],[2626,2531,38029,0],[38029,2531,38026,0],[2260,38093,2261,0],[38093,2260,38026,0],[38026,2260,38025,0],[38026,38025,2111,0],[2111,2536,38027,0],[2535,38027,38053,0],[38053,38027,2536,0],[2536,2110,2112,0],[38030,38028,2535,0],[2535,38028,38027,0],[38027,38028,2111,0],[2111,38028,38026,0],[38026,38028,38029,0],[2626,38029,38030,0],[38030,38029,38028,0],[2109,38025,2108,0],[2108,38025,2260,0],[2131,2136,48985,0],[2131,48985,38032,0],[48985,2137,48986,0],[38033,38034,38042,0],[38042,38034,38035,0],[38035,38034,38036,0],[38035,38036,2106,0],[2106,2105,38035,0],[38035,38037,38042,0],[38042,38037,38040,0],[38038,38095,2104,0],[38038,2104,2103,0],[2103,2102,38038,0],[38038,2102,38039,0],[38038,2639,38095,0],[38095,2640,38040,0],[38040,2640,2141,0],[2143,2141,2640,0],[2141,38041,38042,0],[38033,38042,38041,0],[2141,38042,38040,0],[2105,2104,38035,0],[38035,2104,38037,0],[38094,38036,38034,0],[2106,2493,2505,0],[2500,2506,2492,0],[2610,2609,38046,0],[38043,2610,38046,0],[38044,22626,38045,0],[38045,22626,38844,0],[38844,22626,23191,0],[38009,22626,38044,0],[38009,38044,37987,0],[37987,38044,37970,0],[38045,37978,38044,0],[2555,22607,38046,0],[38046,22607,38043,0],[38047,22608,38048,0],[38048,22608,22597,0],[38047,38048,22607,0],[22607,38048,22596,0],[38022,38021,38049,0],[2619,38022,38049,0],[38021,38023,38049,0],[38049,38023,38050,0],[38050,2522,2616,0],[38050,2616,2619,0],[38050,2619,38049,0],[38023,38052,38050,0],[38050,38052,2521,0],[38017,2521,2265,0],[2521,38052,2265,0],[2265,38052,38016,0],[37939,37951,37947,0],[37947,37948,37939,0],[38053,2537,2538,0],[2536,2537,38053,0],[2534,38053,2528,0],[2528,38053,2538,0],[2536,2112,38054,0],[38054,2112,38055,0],[38054,38055,38056,0],[38054,38056,32646,0],[32646,38056,38057,0],[32646,38057,32669,0],[32669,38057,38058,0],[38060,38059,38061,0],[38060,38061,38063,0],[38063,38061,38062,0],[38063,38062,38064,0],[38063,38064,38073,0],[38065,38066,38067,0],[38068,38067,38437,0],[38069,38070,32677,0],[32677,38070,38580,0],[32677,38580,38082,0],[32677,38082,32679,0],[32677,38071,38072,0],[38072,38078,38073,0],[38063,38073,38074,0],[38079,38074,38075,0],[32644,38075,38076,0],[38076,38077,32676,0],[32676,38077,38579,0],[38074,38080,38063,0],[38063,38080,38060,0],[38075,32675,38079,0],[38079,32675,32668,0],[38079,32668,32645,0],[38080,32645,38060,0],[38060,32645,38058,0],[38058,32645,32669,0],[38080,38074,32645,0],[32645,38074,38079,0],[38074,38073,38078,0],[38074,38078,38077,0],[38074,38077,38075,0],[38075,38077,38076,0],[38071,38579,38078,0],[38071,38078,38072,0],[32677,38072,38069,0],[38069,38067,38068,0],[38069,38068,38070,0],[38072,38081,38069,0],[38067,38081,38065,0],[38081,38067,38069,0],[38065,38081,38064,0],[38081,38072,38073,0],[38580,38581,38082,0],[3274,32679,38082,0],[32646,32647,38054,0],[2537,2536,32647,0],[32647,2536,38054,0],[38057,38056,2113,0],[38057,2113,2114,0],[38057,2114,38058,0],[38058,2114,38060,0],[38060,2114,38059,0],[38062,38083,38064,0],[38064,38083,38065,0],[38065,38083,2125,0],[32643,32642,38084,0],[38084,32642,48994,0],[38085,48994,32653,0],[32656,38085,32653,0],[32654,32653,38086,0],[32666,38086,38087,0],[32666,38087,32667,0],[38086,32653,38087,0],[38087,32653,48994,0],[32656,38088,38085,0],[48994,38085,38084,0],[38084,38085,38088,0],[32644,38088,32651,0],[32651,38088,32652,0],[38089,2527,32670,0],[2527,2529,32670,0],[2527,38089,38090,0],[38089,38091,38090,0],[38090,2526,2527,0],[38026,2531,38093,0],[2261,38093,38392,0],[2107,2493,38094,0],[2107,38094,2254,0],[2254,38094,2258,0],[2258,2257,2254,0],[2254,2257,2259,0],[2516,2514,2071,0],[2514,2516,2513,0],[2515,2102,2502,0],[2517,2502,2102,0],[38095,38040,38037,0],[38037,2104,38095,0],[38097,2241,38096,0],[2215,38099,2216,0],[38099,38096,2216,0],[2216,38096,2241,0],[38097,38096,48988,0],[38097,48988,38098,0],[38097,38098,2232,0],[2232,38098,2218,0],[48988,38096,48987,0],[48987,38096,38099,0],[48987,38099,48991,0],[48991,38099,38100,0],[38100,38636,38101,0],[2223,38101,2225,0],[2225,38101,38102,0],[38102,38103,2226,0],[2226,38103,38104,0],[2226,38104,38107,0],[38102,2226,2225,0],[38099,2215,38100,0],[38100,2215,38663,0],[38663,2215,2214,0],[38663,2214,38639,0],[38639,2214,38105,0],[38107,3541,38106,0],[38106,3542,2224,0],[2224,3542,2126,0],[2126,3542,3543,0],[2225,38106,2224,0],[2222,2224,38108,0],[38108,2128,2129,0],[38108,2129,38109,0],[2219,2129,2115,0],[2129,2219,38109,0],[2219,2221,38109,0],[2221,2222,38109,0],[38109,2222,38108,0],[2224,2126,38108,0],[38108,2126,2128,0],[2128,2126,2127,0],[29470,29471,38110,0],[38111,1983,38133,0],[38133,1983,38112,0],[38112,29469,29468,0],[38112,29468,38132,0],[38132,29468,38113,0],[38113,29468,38114,0],[38116,38115,29490,0],[38114,29466,38115,0],[38115,29466,29490,0],[29487,29466,29465,0],[29487,29465,29505,0],[29464,29505,29465,0],[38114,38115,38113,0],[38113,38118,38117,0],[38117,38118,38128,0],[38128,38118,38119,0],[38126,29492,38120,0],[38126,38120,38131,0],[38123,38121,38122,0],[38123,38122,38142,0],[38123,38142,38163,0],[38123,38163,38124,0],[38131,38124,38125,0],[38126,38125,38129,0],[38126,38129,38128,0],[38128,38127,38183,0],[38128,38183,38117,0],[38128,38119,29492,0],[29492,38126,38128,0],[38126,38131,38125,0],[38129,38125,38227,0],[38129,38130,38127,0],[38129,38127,38128,0],[38121,38123,38131,0],[38131,38123,38124,0],[38120,38158,38131,0],[38131,38158,38121,0],[38119,38118,29491,0],[38132,38184,38133,0],[38133,38184,38229,0],[38133,38229,38134,0],[38172,38135,38136,0],[38173,38175,38178,0],[38173,38178,38137,0],[38137,38178,38179,0],[38137,38179,38138,0],[38137,38139,49293,0],[38140,38142,38141,0],[38141,38142,38161,0],[38141,38161,38143,0],[38143,38161,38152,0],[38143,38152,38144,0],[49247,38144,38145,0],[38146,38145,38149,0],[38146,38149,38148,0],[38148,38149,38147,0],[38148,38147,5325,0],[38148,5325,49256,0],[49256,5325,5324,0],[38147,38149,5315,0],[5315,38149,38153,0],[38153,38149,38150,0],[38152,38151,38144,0],[38144,38151,38145,0],[38149,38145,38150,0],[38150,38145,38151,0],[5315,38153,5317,0],[5317,38153,5318,0],[38153,38150,38154,0],[38154,38150,38151,0],[38154,38151,38155,0],[38155,38160,38156,0],[38156,38160,38157,0],[38156,38157,29494,0],[38120,29493,38158,0],[38158,29493,38159,0],[38159,29494,38157,0],[38159,38157,38162,0],[38156,29494,29495,0],[38155,38156,38154,0],[38151,38152,38155,0],[38155,38152,38160,0],[38160,38152,38161,0],[38160,38161,38157,0],[38161,38142,38162,0],[38122,38162,38142,0],[38142,38140,38163,0],[38124,38163,38227,0],[38124,38227,38125,0],[38140,38139,38163,0],[38163,38139,38228,0],[49454,38130,38129,0],[38161,38162,38157,0],[38159,38162,38122,0],[38159,38122,38158,0],[38153,38165,5318,0],[5320,38165,38166,0],[38186,38167,38187,0],[38167,38168,38223,0],[38223,38168,29496,0],[38168,38154,38156,0],[38156,29495,38168,0],[38168,29495,29496,0],[38168,38166,38154,0],[38154,38166,38165,0],[38154,38165,38153,0],[5320,38211,5321,0],[38211,5320,38169,0],[38169,5320,38166,0],[38169,38166,38168,0],[38169,38168,38167,0],[38169,38167,29499,0],[38137,49293,38173,0],[38170,49449,38174,0],[38174,49449,49447,0],[38174,49447,38171,0],[38177,49448,38136,0],[38136,49448,38172,0],[38135,38172,38134,0],[38173,38174,38176,0],[38175,38176,38177,0],[38177,38176,38171,0],[38177,38136,38175,0],[38176,38175,38173,0],[38173,49293,38170,0],[38173,38170,38174,0],[38174,38171,38176,0],[38137,38138,38228,0],[38137,38228,38139,0],[38179,38178,38180,0],[38179,38180,38181,0],[49454,38181,38130,0],[38130,38181,38182,0],[38182,38181,38180,0],[38180,38178,38136,0],[38136,38178,38175,0],[38130,38182,38127,0],[38127,38182,38183,0],[38183,38182,38184,0],[38184,38182,38229,0],[38133,38112,38132,0],[38111,38133,38134,0],[38111,38134,38172,0],[29491,38116,29489,0],[29489,38214,38218,0],[38218,38214,38215,0],[38219,38218,38216,0],[38219,38216,38225,0],[38185,38186,38187,0],[38186,38185,29498,0],[29498,38185,38188,0],[29498,38188,38189,0],[38200,38189,38378,0],[38201,38378,29484,0],[38201,29484,38199,0],[38199,29484,29444,0],[38199,29444,38190,0],[5322,49440,38194,0],[29427,29511,38195,0],[38197,5303,38198,0],[5302,5313,38198,0],[38198,5313,5314,0],[38197,5314,38196,0],[5314,38147,38196,0],[38196,38147,5316,0],[5316,38147,5315,0],[5314,38197,38198,0],[29839,5316,38195,0],[29839,38195,29511,0],[5316,5317,38195,0],[29427,38194,29428,0],[29428,38194,49440,0],[29442,38190,29444,0],[38200,29498,38189,0],[38200,38201,38205,0],[38200,38205,49245,0],[38200,49245,29498,0],[38200,38378,38201,0],[29499,38206,38210,0],[38210,38206,38212,0],[38212,38202,38306,0],[38306,38202,38307,0],[38307,38202,38203,0],[38203,38199,38192,0],[38192,38199,38190,0],[38190,38191,38305,0],[38305,38192,38190,0],[38199,38204,38201,0],[38201,38204,38205,0],[38199,38203,38204,0],[38205,38204,38202,0],[38205,38202,38206,0],[38206,38202,38212,0],[38202,38204,38203,0],[38209,29502,38208,0],[38209,38208,38193,0],[38193,38208,29440,0],[29502,38207,38208,0],[38209,29439,49440,0],[38207,29502,29500,0],[29500,29502,29501,0],[38211,38212,38306,0],[38210,38212,38211,0],[29499,38210,38169,0],[38210,38211,38169,0],[5321,38211,38306,0],[38188,38185,38216,0],[38188,38216,38304,0],[38304,38216,38213,0],[38214,29488,29487,0],[29489,29488,38214,0],[38215,38213,38216,0],[38216,38185,38225,0],[38216,38218,38215,0],[29489,38218,29491,0],[29491,38220,38217,0],[38217,38220,29493,0],[38187,29497,38185,0],[29497,38223,38222,0],[38222,38223,38224,0],[29494,38224,29495,0],[29495,38224,38223,0],[38222,38224,38221,0],[38222,38226,29497,0],[29497,38226,38225,0],[38225,38185,29497,0],[38225,38226,38219,0],[38219,38226,38220,0],[38226,38221,38220,0],[38220,38221,29493,0],[38226,38222,38221,0],[38220,29491,38219,0],[38219,29491,38218,0],[38121,38158,38122,0],[38164,38227,38163,0],[38164,38163,38228,0],[38129,38227,49454,0],[49454,38227,38164,0],[38180,38136,38135,0],[38180,38135,38182,0],[38182,38135,38229,0],[38229,38135,38134,0],[38230,29556,29561,0],[38230,29561,38231,0],[2654,38230,38231,0],[2654,29555,38230,0],[29470,38240,29480,0],[29480,38240,38232,0],[29482,38232,38233,0],[29482,38233,29467,0],[29467,38233,38234,0],[29477,29464,38302,0],[29464,29477,29478,0],[29464,29478,29462,0],[29462,38238,38235,0],[29461,38235,38236,0],[38275,29450,29461,0],[38275,29461,38236,0],[29478,38238,29462,0],[38237,29452,38236,0],[38236,38235,38237,0],[38236,29452,29451,0],[29479,38238,29476,0],[29479,29453,29456,0],[29479,29456,38237,0],[38237,29456,29452,0],[38237,38235,38238,0],[29477,38234,29476,0],[29476,38234,38239,0],[38110,38239,38240,0],[38110,38240,29470,0],[38232,38240,38233,0],[38240,38239,38233,0],[38233,38239,38234,0],[29467,38234,29465,0],[38379,29487,29486,0],[38278,38242,38246,0],[38246,2483,2299,0],[38246,38242,2483,0],[2298,38242,2297,0],[38242,38278,2297,0],[2297,38278,38243,0],[38243,38276,2295,0],[2295,38276,38298,0],[2295,38298,2294,0],[2295,2297,38243,0],[37889,38241,38244,0],[38244,38245,37890,0],[37890,38245,37891,0],[37891,38245,38246,0],[37891,38246,37892,0],[37892,38246,2299,0],[38278,38246,38244,0],[38278,38244,38241,0],[38244,38246,38245,0],[2299,38247,2300,0],[2300,38247,2301,0],[2459,2457,2458,0],[2459,2463,2457,0],[2457,2306,2458,0],[38248,2456,38249,0],[38249,2456,2463,0],[2462,38249,38250,0],[2461,38250,2460,0],[2460,38250,2463,0],[38250,38249,2463,0],[2463,2456,2457,0],[2456,38248,2308,0],[37907,38251,38252,0],[38252,38251,36364,0],[36364,36363,37903,0],[36363,36362,37903,0],[37903,36362,36352,0],[36352,36362,36369,0],[36369,36362,36353,0],[36352,38370,37903,0],[37903,37900,36364,0],[36364,37900,38252,0],[38252,37900,37907,0],[37899,37907,37900,0],[36364,38251,36357,0],[2313,38251,2315,0],[2315,38251,37907,0],[38253,36351,38254,0],[38254,36351,36349,0],[38370,38253,38352,0],[38370,36352,38253,0],[38255,6424,6322,0],[38256,6339,6342,0],[6341,6342,6340,0],[6342,6339,6340,0],[6346,6339,38256,0],[6346,38256,38259,0],[6346,38259,38258,0],[38258,6435,6346,0],[38259,38257,38258,0],[6347,38257,38260,0],[38260,38257,38259,0],[6605,6347,38260,0],[49508,36312,36379,0],[36379,36383,36378,0],[36383,36313,36314,0],[36312,36313,36379,0],[36379,36313,36383,0],[38262,38263,38266,0],[38266,38263,38264,0],[38264,38263,36318,0],[36318,38263,36316,0],[38264,36318,49031,0],[38264,49031,38265,0],[38261,38268,38267,0],[38262,38266,38261,0],[38261,38266,38268,0],[38268,49028,38269,0],[38270,38269,49036,0],[38267,38268,38269,0],[38267,38269,38270,0],[36376,36378,38270,0],[38270,36378,38267,0],[36316,38263,38271,0],[38267,49507,38261,0],[38261,49507,49506,0],[38261,49506,49042,0],[49042,49506,2339,0],[38319,2334,38272,0],[38272,2334,2333,0],[2334,38319,2344,0],[2345,38319,38321,0],[2345,38321,38322,0],[2347,38322,2348,0],[38272,36361,38273,0],[38273,36361,2312,0],[38273,2312,2332,0],[2332,2312,38369,0],[2332,38369,2310,0],[2332,2310,2331,0],[2331,2454,2330,0],[2328,2329,2330,0],[2454,2331,2309,0],[2309,2331,2310,0],[38276,38275,38298,0],[38277,38274,38276,0],[38276,38243,38277,0],[29449,38277,38241,0],[38277,29449,38274,0],[38274,29449,29448,0],[38243,38278,38277,0],[38277,38278,38241,0],[38275,38274,29450,0],[29450,38274,29448,0],[2470,2485,38279,0],[2282,38280,2285,0],[38282,38280,38279,0],[38282,38279,2485,0],[2485,38281,38283,0],[38280,38282,2286,0],[2286,38282,37882,0],[37882,38282,37883,0],[37883,38282,38283,0],[2290,2510,29454,0],[29454,2510,2291,0],[38283,38282,2485,0],[2282,38287,38285,0],[2283,38317,38316,0],[38316,38317,2321,0],[38316,2321,2320,0],[2321,38317,2322,0],[38287,38292,38285,0],[38285,38292,38284,0],[38284,38292,2323,0],[38284,2323,38286,0],[38317,38286,2322,0],[38284,38286,38317,0],[38287,38288,38300,0],[38300,38288,2280,0],[2280,38288,2284,0],[38291,38300,38301,0],[38291,38301,2416,0],[38291,2416,38289,0],[38289,2417,38290,0],[38290,2325,2324,0],[38291,38289,38290,0],[38291,38290,38292,0],[38292,38290,2323,0],[2323,38290,2324,0],[38287,38291,38292,0],[38293,38294,2414,0],[38294,38293,38296,0],[22781,38296,48996,0],[2406,38296,38293,0],[38295,38296,22781,0],[38296,38295,38294,0],[38294,38295,38297,0],[38294,38297,22783,0],[22785,22783,22767,0],[38294,22783,2405,0],[48995,2407,22758,0],[38275,29451,38298,0],[38299,37877,22579,0],[38287,38300,38291,0],[2279,2416,38301,0],[2279,38301,2274,0],[2274,38301,38300,0],[2274,38300,2280,0],[48995,22778,22779,0],[38234,29477,38302,0],[38302,29465,38234,0],[38214,38303,38215,0],[38215,38303,38213,0],[38213,38303,38304,0],[38306,29500,5321,0],[38306,38307,29500,0],[38207,29500,38192,0],[38192,38307,38203,0],[29500,38307,38192,0],[38281,2485,38308,0],[2322,38286,38309,0],[38309,38286,38310,0],[38309,38312,38311,0],[38312,2326,38311,0],[38311,2326,38314,0],[38309,38310,38313,0],[38313,2324,2444,0],[38313,2444,2443,0],[38311,38314,38309,0],[38316,2320,38315,0],[2474,38315,2319,0],[38316,38315,2474,0],[2474,2473,38316,0],[2442,2452,38312,0],[38272,38273,38320,0],[38320,38273,2432,0],[38320,2432,2433,0],[38320,2433,38323,0],[38320,38323,38318,0],[38318,38319,38272,0],[38272,38320,38318,0],[38319,38318,38321,0],[2348,38322,38323,0],[2348,38323,2434,0],[2434,38323,2433,0],[2434,2420,2421,0],[2434,2421,2348,0],[38321,38318,38323,0],[38323,38322,38321,0],[38312,38309,2443,0],[2443,38309,38313,0],[38312,2443,2442,0],[49012,2404,38324,0],[38324,2404,2403,0],[38324,2403,2399,0],[2399,2396,38324,0],[38324,2412,49012,0],[2399,2403,2400,0],[2400,2403,2401,0],[38325,2401,2403,0],[38325,2403,2402,0],[2425,38326,38327,0],[38327,38326,2431,0],[2431,2424,2422,0],[2422,2424,2423,0],[2424,2431,38326,0],[2431,2401,38327,0],[38327,38325,38328,0],[38328,38325,2410,0],[38328,2425,38327,0],[38325,38327,2401,0],[2350,2349,38329,0],[38329,2352,36326,0],[36326,49232,38329,0],[38329,49232,2350,0],[2347,38331,38332,0],[36325,38332,2350,0],[36325,2350,49232,0],[36326,2352,38333,0],[38333,2352,2427,0],[38333,2427,38335,0],[36326,38333,38330,0],[20590,38334,20589,0],[20589,38334,38336,0],[38336,38334,2353,0],[2353,38334,38333,0],[38330,38333,36327,0],[36327,38333,20590,0],[20590,38333,38334,0],[38333,38335,2353,0],[20602,38336,20600,0],[20600,38336,20603,0],[38336,38337,20603,0],[20603,38337,20604,0],[20604,2356,2357,0],[2356,20604,38337,0],[20601,36332,21169,0],[20614,38338,21152,0],[21152,38338,21159,0],[38338,20614,38339,0],[49015,38340,21160,0],[38339,38340,38338,0],[38338,38340,21159,0],[49015,21159,38340,0],[38341,21256,21160,0],[21160,21256,21257,0],[49013,21257,21161,0],[49013,21160,21257,0],[21257,38342,21161,0],[21256,38341,38343,0],[21256,38343,21255,0],[38344,2385,2437,0],[38391,37877,38299,0],[38345,38346,38388,0],[38388,38346,38384,0],[38384,38346,38349,0],[38384,38349,38385,0],[38345,38389,37905,0],[38345,38347,38346,0],[38346,38347,38348,0],[38346,38348,38349,0],[38350,6431,6417,0],[38350,6417,38385,0],[38350,38385,38349,0],[6418,38350,37902,0],[38350,38349,37902,0],[37902,38349,38348,0],[6418,37902,38351,0],[38351,37902,38352,0],[38352,38253,38254,0],[38352,38254,38351,0],[6404,38354,6405,0],[6405,38354,37919,0],[6405,37919,6406,0],[37919,38354,38353,0],[38356,37928,38360,0],[49184,38360,37927,0],[38360,49185,38362,0],[38362,49185,38357,0],[38357,38358,37931,0],[38357,37931,38359,0],[38357,38359,38362,0],[38362,38359,38361,0],[38361,38359,38354,0],[38354,38359,38353,0],[38353,38359,37931,0],[38356,38360,38355,0],[38355,38360,38361,0],[38360,38362,38361,0],[38354,6404,38363,0],[38364,38363,6401,0],[6401,6400,38364,0],[38364,6400,6399,0],[38364,6399,38365,0],[38355,38365,38356,0],[38364,38365,38355,0],[38364,38355,38363,0],[38363,38355,38361,0],[38363,38361,38354,0],[38366,6402,6401,0],[38363,6404,38366,0],[6404,6403,38366,0],[6409,6402,6403,0],[6402,6409,38367,0],[38367,6437,6402,0],[2308,2314,38368,0],[38369,38368,2310,0],[2308,38368,2315,0],[37904,38370,37906,0],[6443,38371,36314,0],[2476,2460,38372,0],[2476,38372,2477,0],[2477,38372,2483,0],[2460,2476,2461,0],[2461,2476,2319,0],[2319,2476,2475,0],[2319,2475,2474,0],[38372,2299,2483,0],[2299,2459,38247,0],[38372,2459,2299,0],[29669,29644,29643,0],[38376,38375,38373,0],[29654,38373,38374,0],[29654,38374,29656,0],[38375,38374,38373,0],[38375,38376,29664,0],[38375,29664,29663,0],[38373,29653,38376,0],[29680,29639,29678,0],[29678,29639,29673,0],[29680,29678,29679,0],[29506,38303,38379,0],[29506,38379,29486,0],[38304,38303,38377,0],[38189,38188,38377,0],[38377,38188,38304,0],[38377,38303,29507,0],[38377,29507,38189,0],[38189,29507,38378,0],[29507,29484,38378,0],[38379,38303,38214,0],[38214,29487,38379,0],[38249,2462,38380,0],[38380,2462,2316,0],[38380,38248,38249,0],[37897,37896,38382,0],[38382,2306,37898,0],[29668,29670,37894,0],[37894,29670,38383,0],[37894,38383,38381,0],[29670,37893,38383,0],[38383,37893,2303,0],[38383,2303,38381,0],[38384,38385,49200,0],[49198,49200,6415,0],[49198,6415,38386,0],[49197,6414,6413,0],[38386,6420,49197,0],[38384,49200,37895,0],[38385,6417,49200,0],[49200,6417,6415,0],[38384,37897,38388,0],[38389,37899,37900,0],[37899,38389,37898,0],[38388,37897,38389,0],[37897,37898,38389,0],[38280,2282,38279,0],[38279,2282,2481,0],[38279,2481,2470,0],[2288,2509,2511,0],[2511,2509,2498,0],[2510,2509,2288,0],[37883,2288,38390,0],[38393,38392,38093,0],[38393,2518,38392,0],[2181,38395,2175,0],[2181,2175,38396,0],[38396,2175,38394,0],[38396,38394,38398,0],[2180,38396,38398,0],[2180,38398,2172,0],[38396,2180,38397,0],[38396,38397,2181,0],[38394,2175,2174,0],[2039,2157,38399,0],[2039,38399,2158,0],[2158,38399,2159,0],[38399,2157,38400,0],[2060,2022,38402,0],[38402,38403,1970,0],[38403,38402,2027,0],[38402,1970,2018,0],[2018,2060,38402,0],[2064,38404,1966,0],[2064,2063,38404,0],[38404,2063,2061,0],[2184,2160,2186,0],[2184,2186,38405,0],[2152,2156,38406,0],[38406,2156,38407,0],[38408,38407,38409,0],[38407,2156,38401,0],[38407,38401,38409,0],[38406,38407,38410,0],[38406,38410,2151,0],[2151,38410,2192,0],[38414,2193,38412,0],[38414,38412,38411,0],[38411,2043,38416,0],[2043,38411,2042,0],[2042,38411,38412,0],[2042,38412,38409,0],[38409,38412,38408,0],[38408,38412,2193,0],[38407,38408,38410,0],[2193,38414,2195,0],[2195,38414,38413,0],[2195,38413,2196,0],[38413,38414,38411,0],[38413,38411,38415,0],[38415,38416,38417,0],[38417,38416,38418,0],[38417,38418,2200,0],[2200,38418,2210,0],[2210,2202,2200,0],[38413,38417,38419,0],[38413,38419,2196,0],[38419,38417,2199,0],[2199,38417,2200,0],[38417,38413,38415,0],[2211,38418,38416,0],[38416,38415,38411,0],[2037,2038,2158,0],[38401,2157,2039,0],[38401,2039,2040,0],[38401,2040,38409,0],[2194,2195,38423,0],[38423,2195,38420,0],[38420,2229,38421,0],[38421,2229,38422,0],[38420,38421,38423,0],[38423,38421,38640,0],[38423,38640,38424,0],[38423,38424,38425,0],[38425,38424,38426,0],[38425,38426,38410,0],[38410,38426,38105,0],[38410,2193,38425,0],[38425,2193,2194,0],[38425,2194,38423,0],[38420,2195,3175,0],[3219,3217,3221,0],[3221,3217,3222,0],[2252,2120,38427,0],[38428,38427,38429,0],[38430,3281,38429,0],[38429,38427,38430,0],[38430,38427,2120,0],[2252,38427,38434,0],[38434,38427,38428,0],[38435,38428,38431,0],[38431,38438,38432,0],[38432,38438,38588,0],[38066,2118,38436,0],[38432,2118,38433,0],[38428,38435,38434,0],[38435,38433,38434,0],[38434,38433,2123,0],[2123,38433,2119,0],[2119,38433,2118,0],[38436,38432,38588,0],[38432,38433,38431,0],[38431,38433,38435,0],[38432,38436,2118,0],[38066,38436,38067,0],[38588,3283,38436,0],[38436,3283,38437,0],[38436,38437,38067,0],[3282,38438,38429,0],[38429,38438,38431,0],[38429,38431,38428,0],[3586,113,3591,0],[28878,38439,114,0],[38439,28878,38440,0],[38440,28878,38704,0],[38704,28878,107,0],[38443,38442,2923,0],[38442,109,2923,0],[2923,109,2925,0],[38441,38460,38444,0],[85,87,38446,0],[38446,87,38458,0],[38458,87,38448,0],[38448,87,97,0],[97,87,86,0],[38458,38448,38445,0],[38441,38449,38447,0],[38447,38449,96,0],[96,38448,97,0],[95,38447,96,0],[38441,38444,38449,0],[96,38449,38448,0],[38448,38449,38445,0],[38445,38449,38444,0],[38450,28901,38451,0],[28900,38452,28899,0],[38455,78,38452,0],[38452,78,28899,0],[28899,78,38453,0],[28899,38453,28898,0],[28964,38454,28882,0],[38453,78,28969,0],[38701,28969,78,0],[28969,38701,28968,0],[28968,38701,38454,0],[38454,38701,77,0],[38455,38452,38451,0],[38451,38452,28900,0],[38451,28900,38450,0],[38455,38451,38456,0],[38456,38451,28902,0],[38455,38456,79,0],[84,38456,28902,0],[84,28904,85,0],[85,38446,3634,0],[84,85,38457,0],[81,3635,38700,0],[38700,3635,3633,0],[81,38456,84,0],[81,84,38457,0],[81,38457,3635,0],[3635,38457,3634,0],[3634,38457,85,0],[3634,3626,3614,0],[3615,3614,3616,0],[3626,3634,38446,0],[3626,38446,38458,0],[3626,38458,3625,0],[3625,38458,3624,0],[3623,3624,38459,0],[38443,38459,38460,0],[38443,38460,38442,0],[38468,38443,2922,0],[38463,38466,38467,0],[2910,3621,38461,0],[38461,3621,3620,0],[38461,3620,38462,0],[38463,38462,38464,0],[38464,3619,3622,0],[38464,38462,3619,0],[3619,38462,3620,0],[38461,38462,38467,0],[38467,38462,38463,0],[38463,38464,38465,0],[3622,38465,38464,0],[38463,38465,2922,0],[2922,38465,38468,0],[38463,2921,38466,0],[38461,38467,2920,0],[38467,38466,2920,0],[2920,38466,2921,0],[38443,38468,38459,0],[38468,3623,38459,0],[38468,38465,3623,0],[3624,38458,38459,0],[38458,38445,38459,0],[38459,38445,38444,0],[38459,38444,38460,0],[38442,38460,38441,0],[3614,3626,3616,0],[2058,2059,2048,0],[2048,2059,2055,0],[38469,3150,38470,0],[38470,2205,38469,0],[2207,38470,2203,0],[2203,38470,3150,0],[38471,1949,3059,0],[38471,3059,3154,0],[38477,3158,29543,0],[3158,38477,3155,0],[38479,38475,38472,0],[38481,38483,38473,0],[38473,38474,29549,0],[38474,38475,38476,0],[38476,38475,38477,0],[38477,38475,38479,0],[38474,38476,29541,0],[29541,38476,29542,0],[29542,38476,38478,0],[29543,38478,38477,0],[3155,38477,38479,0],[38476,38477,38478,0],[38474,38473,38475,0],[38472,38475,38483,0],[38483,38475,38473,0],[38473,29549,38481,0],[3155,38479,49726,0],[49726,38479,38472,0],[49726,38472,38480,0],[38480,1938,3102,0],[38480,1940,49726,0],[38480,38481,1938,0],[1938,38481,38482,0],[29538,38482,29537,0],[38472,38483,38480,0],[38480,38483,38481,0],[29537,38481,29549,0],[29537,38482,38481,0],[38486,3108,38484,0],[38486,38484,38485,0],[38485,2732,2733,0],[2733,2735,38485,0],[38485,2736,38486,0],[38486,2736,2737,0],[38486,2737,49466,0],[38486,49466,3108,0],[2732,38485,38484,0],[2715,2736,2735,0],[49504,2715,2716,0],[49504,2716,2717,0],[1946,1945,38487,0],[38487,1945,38488,0],[38489,38488,3070,0],[38489,38487,38488,0],[1945,3074,38488,0],[38490,1946,38487,0],[38489,3149,38487,0],[38487,3149,38490,0],[38490,38491,1948,0],[1948,38491,38492,0],[38492,38641,1949,0],[1949,1948,38492,0],[1948,1946,38490,0],[38490,3148,38491,0],[38491,3148,38494,0],[38491,38494,38492,0],[38492,38494,38493,0],[38493,38494,3064,0],[38493,3064,3062,0],[3064,38494,3066,0],[3066,38494,3147,0],[38494,3148,3147,0],[3070,3071,38495,0],[38495,3071,3115,0],[38495,3069,3070,0],[3003,3019,38496,0],[38496,38498,38497,0],[38497,38498,3016,0],[3016,38498,3015,0],[38496,3019,38498,0],[38498,3019,38499,0],[38496,38497,3004,0],[38496,3004,3003,0],[3014,38501,38521,0],[3014,38521,38502,0],[38502,38521,38503,0],[38503,38521,38504,0],[38504,38518,3027,0],[38518,3025,3026,0],[3026,3025,3043,0],[3026,3027,38518,0],[3027,38505,38504,0],[38505,3027,2993,0],[38505,2993,38506,0],[38506,38508,38507,0],[38507,38508,38514,0],[38509,38514,38510,0],[38509,38510,38682,0],[38682,38510,38511,0],[38682,38511,38683,0],[2952,38511,38512,0],[2952,38512,2953,0],[38511,38510,38512,0],[38512,38510,38515,0],[38515,38510,38514,0],[38506,2993,38513,0],[38506,38513,38508,0],[38508,38513,38514,0],[38514,38513,38515,0],[38515,38513,3028,0],[38515,2953,38512,0],[2953,38515,38693,0],[38693,38515,3028,0],[3028,38513,2993,0],[38504,38505,38516,0],[38504,38516,38503,0],[38502,38503,38517,0],[38502,38517,3012,0],[38502,3012,3014,0],[38518,38500,38519,0],[38519,38500,38520,0],[38520,38499,3023,0],[38500,38518,38501,0],[38501,38518,38521,0],[38521,38518,38504,0],[38520,38500,3015,0],[38520,3015,38499,0],[3023,38499,3021,0],[38499,3015,38498,0],[2992,2997,38522,0],[38530,38522,38523,0],[28883,2918,3641,0],[49717,38525,38528,0],[49721,38524,2998,0],[49721,49716,38524,0],[49721,49997,49717,0],[38526,38525,49997,0],[2918,38525,3641,0],[2918,38527,38525,0],[38525,38527,49713,0],[38525,49713,38528,0],[38528,49713,38531,0],[38529,38539,49715,0],[49715,38539,38522,0],[38528,38531,38529,0],[38529,38531,38539,0],[2998,38524,38523,0],[38523,38524,38530,0],[2992,38522,38535,0],[2992,38535,38532,0],[38534,38533,38540,0],[38536,38540,38535,0],[38536,38535,38539,0],[49712,38537,38531,0],[49712,38531,38538,0],[38537,38539,38531,0],[38532,38535,38533,0],[38540,38533,38535,0],[38539,38535,38522,0],[38406,2151,2182,0],[38541,2091,2098,0],[38541,2098,2015,0],[2015,2028,38541,0],[29559,1972,29560,0],[37951,38542,37942,0],[38542,2601,37956,0],[38548,2599,32659,0],[2597,32665,2596,0],[38545,38544,32797,0],[32797,38544,32771,0],[38544,38545,38546,0],[38546,38545,32769,0],[48976,38544,32774,0],[32774,38544,38546,0],[32774,38546,38547,0],[38547,32781,32782,0],[32782,32774,38547,0],[38547,32775,32776,0],[32776,32777,38547,0],[38547,32777,32781,0],[38548,32659,32660,0],[38548,32660,32661,0],[32665,38548,32661,0],[38795,32596,38549,0],[38549,32702,38795,0],[38789,38550,38796,0],[38789,38796,38788,0],[32795,32699,38551,0],[38551,32699,32697,0],[32699,32795,38783,0],[38783,32795,38787,0],[32699,38783,32700,0],[2595,2596,22710,0],[22710,2596,32623,0],[38543,32623,32665,0],[32665,32623,2596,0],[22689,22668,22682,0],[22684,22700,38552,0],[38552,38836,38555,0],[38555,38836,38553,0],[22701,22699,38554,0],[38554,22699,38553,0],[38560,38555,38556,0],[38560,38556,38557,0],[38557,22717,22715,0],[22343,38559,22703,0],[22702,22703,38556,0],[22702,38556,22157,0],[22157,38556,38555,0],[38556,22703,38557,0],[22703,38558,38557,0],[38557,38558,22717,0],[38552,38555,38560,0],[38560,38557,38561,0],[22716,38561,22715,0],[38561,22716,38560,0],[38560,22716,38552,0],[38561,38557,22715,0],[38552,22716,22684,0],[22666,22706,22705,0],[38562,38572,38571,0],[38562,38571,38563,0],[38563,38571,37995,0],[38574,38563,22635,0],[38574,22635,22634,0],[38574,22634,38564,0],[38564,22634,38565,0],[22632,38565,38566,0],[38566,22655,23204,0],[23204,22633,38566,0],[38565,22634,38566,0],[38566,22634,22655,0],[22635,38563,22636,0],[22636,38563,38567,0],[38568,38567,38569,0],[38568,38569,22660,0],[22660,22659,38568,0],[38568,22658,38567,0],[37995,38567,38563,0],[38567,37995,38570,0],[38567,38570,38569,0],[23205,23214,22633,0],[23214,23205,38820,0],[22660,38569,22663,0],[37996,38570,38571,0],[38573,38562,38574,0],[38573,38574,38564,0],[38574,38562,38563,0],[38572,38577,37993,0],[37993,38577,38576,0],[37993,38576,37992,0],[37992,38576,38575,0],[38002,38575,38576,0],[38562,38577,38572,0],[38562,38573,38577,0],[38577,38573,38578,0],[38564,38565,38573,0],[38578,38573,22632,0],[22632,38005,38578,0],[38577,38578,38576,0],[38578,38005,38004,0],[38578,38004,38576,0],[38078,38579,38077,0],[38070,38068,38583,0],[38583,38068,38582,0],[38583,38582,3285,0],[3285,38582,3283,0],[38582,38437,3283,0],[38437,38582,38068,0],[38070,38583,38580,0],[38584,38583,3286,0],[3286,38585,38584,0],[32850,38585,38586,0],[38585,3326,38586,0],[38586,3326,3287,0],[38586,3287,3288,0],[38586,3288,38587,0],[38583,38584,38581,0],[3320,38589,38590,0],[38590,38589,3282,0],[3282,38589,38438,0],[38438,38589,38588,0],[3269,3268,38593,0],[38593,3268,3267,0],[38593,3267,38594,0],[38593,38594,32852,0],[32852,38594,38592,0],[3267,32849,38594,0],[38594,32849,38592,0],[32837,38596,32838,0],[32853,32838,38595,0],[38595,32838,38596,0],[38595,38596,3269,0],[3269,32852,38595,0],[32838,32853,32839,0],[3482,32786,32767,0],[32767,32786,32768,0],[3460,38598,38597,0],[3460,32759,32760,0],[3460,32760,38598,0],[32763,38598,32761,0],[32764,3457,32763,0],[38598,32763,38597,0],[38597,32763,3457,0],[38599,32852,32855,0],[38599,32851,3334,0],[38587,3334,32851,0],[3332,38599,3334,0],[3332,3334,3333,0],[3292,3288,3337,0],[3337,3288,3293,0],[3293,38601,3298,0],[3293,3287,38601,0],[38601,3287,38600,0],[38600,3296,3295,0],[38600,3295,38601,0],[3298,38601,3295,0],[3320,3284,38589,0],[38589,3284,38588,0],[3284,3320,3319,0],[2120,2121,38602,0],[38602,3340,3339,0],[49804,116,49803,0],[49803,116,115,0],[3227,3239,38603,0],[3227,38603,3309,0],[3229,38603,3239,0],[3310,38604,3317,0],[3317,38604,3311,0],[3311,38604,3228,0],[3311,3228,3243,0],[3243,3228,38605,0],[38605,3228,3229,0],[3229,3230,38605,0],[3366,38606,3365,0],[3365,38606,3488,0],[28833,28838,38607,0],[38607,28838,28832,0],[3528,3527,38609,0],[38609,3527,426,0],[38609,426,427,0],[38609,427,428,0],[429,28849,428,0],[428,28849,38609,0],[38609,28849,28848,0],[38609,28848,3528,0],[28861,28862,427,0],[28861,427,28860,0],[38611,38612,38610,0],[38611,38610,38614,0],[38611,38614,3509,0],[38612,38613,3512,0],[3512,38613,3506,0],[28831,3502,48974,0],[38614,3525,3509,0],[38616,38615,3309,0],[38616,3309,3308,0],[158,127,125,0],[158,125,157,0],[127,158,170,0],[170,158,128,0],[38619,38618,38625,0],[38619,38625,38620,0],[38622,38621,38630,0],[38622,38630,38623,0],[38623,38630,38624,0],[38624,38625,38626,0],[38626,38625,38618,0],[124,38618,125,0],[38626,38618,123,0],[38626,123,122,0],[38627,122,120,0],[38627,120,38628,0],[122,38627,38624,0],[122,38624,38626,0],[38623,38624,38628,0],[38628,38624,38627,0],[38623,38628,38629,0],[38623,38629,92,0],[92,38629,119,0],[92,119,93,0],[38629,38628,120,0],[38624,38630,38625,0],[38625,38630,38620,0],[38620,38630,38621,0],[155,38619,28958,0],[155,28958,28957,0],[28957,28955,30497,0],[30497,28955,153,0],[153,28955,38631,0],[152,38631,28912,0],[28912,38631,28914,0],[28914,38631,28955,0],[38619,38620,28958,0],[28958,38620,38632,0],[38722,38632,38621,0],[38621,38632,38620,0],[38634,38633,38635,0],[38635,38640,38421,0],[38421,38422,38635,0],[38635,38422,38634,0],[38102,38101,38636,0],[38636,38663,38633,0],[38633,38102,38636,0],[38637,38104,38103,0],[38637,38103,38638,0],[38638,38103,38102,0],[38633,38634,38102,0],[38102,38634,38638,0],[38637,38638,38634,0],[38637,38634,38422,0],[38639,38426,38640,0],[38639,38640,38635,0],[38424,38640,38426,0],[38105,38426,38639,0],[38633,38639,38635,0],[38492,38493,38641,0],[38641,38493,3062,0],[38641,3062,3059,0],[38641,3059,1949,0],[3140,3142,3139,0],[3142,38642,3139,0],[3142,38643,38642,0],[38642,38643,3052,0],[38642,3052,3053,0],[3052,38643,3051,0],[38643,3143,3051,0],[3142,38517,38684,0],[38684,38517,38503,0],[38644,3560,3559,0],[3559,3557,3168,0],[38644,38645,38646,0],[38646,38645,38647,0],[38646,38647,3192,0],[3192,2945,38646,0],[38646,2945,2943,0],[38646,2943,38644,0],[3192,38647,3167,0],[3167,38647,3168,0],[38647,38645,3168,0],[3168,38645,3559,0],[3559,38645,38644,0],[38648,3191,38649,0],[38649,3191,3197,0],[38648,2947,3192,0],[2948,2947,3047,0],[2947,38648,3047,0],[3047,38648,38649,0],[3190,38650,3049,0],[3049,38650,3050,0],[38678,3172,2198,0],[38678,2198,3189,0],[2930,38665,2931,0],[2931,38665,38651,0],[2931,38651,3579,0],[3579,38651,38652,0],[3579,38652,3576,0],[2928,38653,38654,0],[38658,38654,2964,0],[38656,2964,38655,0],[38655,38675,2956,0],[38655,2956,38657,0],[38657,2956,2957,0],[38657,38656,38655,0],[2928,38654,38658,0],[2926,2927,38658,0],[38658,2927,2928,0],[2962,2987,38660,0],[38659,38661,38660,0],[38660,38661,38662,0],[49709,49710,48982,0],[38662,2962,38660,0],[38663,38636,38100,0],[38633,38663,38639,0],[117,390,382,0],[382,390,383,0],[3580,2935,38688,0],[2931,3580,2933,0],[3579,3580,2931,0],[3575,3577,3576,0],[3576,3577,3579,0],[38664,38651,38666,0],[38666,38651,38665,0],[38666,38665,38667,0],[38666,38667,2968,0],[2968,38667,2970,0],[38668,38664,38672,0],[38672,38664,38669,0],[38669,38664,38666,0],[38669,38666,2976,0],[38669,38670,38672,0],[38672,38670,38671,0],[38672,38671,38674,0],[38672,38674,38673,0],[38673,38674,38654,0],[38654,38653,38673,0],[38654,38674,2964,0],[2964,38674,38655,0],[38655,38674,38676,0],[38655,38676,38675,0],[2965,38675,38676,0],[2965,38676,38671,0],[2965,38671,38670,0],[38676,38674,38671,0],[2967,2965,38670,0],[38668,38672,38673,0],[3144,3049,3051,0],[3051,3049,3050,0],[3143,3144,3051,0],[38677,38678,3189,0],[3172,38678,3170,0],[3170,38678,38677,0],[3189,3188,38677,0],[38680,38679,38681,0],[38680,38681,38509,0],[38680,38509,38682,0],[38680,38682,38679,0],[38679,38682,3194,0],[3194,38682,3193,0],[2951,3193,38683,0],[3193,38682,38683,0],[38514,38509,38507,0],[38516,38507,38687,0],[38516,38687,38684,0],[38516,38684,38503,0],[38684,38685,38643,0],[38684,38643,3142,0],[38643,38685,3143,0],[3143,38685,38686,0],[38686,38685,38687,0],[38685,38684,38687,0],[38686,38681,38679,0],[38516,38505,38506,0],[38506,38507,38516,0],[38681,38686,38687,0],[38681,38687,38507,0],[38507,38509,38681,0],[38688,2933,3580,0],[38688,2934,2933,0],[38689,2954,2973,0],[38689,2973,2966,0],[2958,2956,38690,0],[38690,2956,2955,0],[38690,2955,38699,0],[38691,38692,38534,0],[38532,38533,38534,0],[2988,38692,38693,0],[38694,38693,38699,0],[38699,38693,38691,0],[38693,38694,2954,0],[38694,38699,2955,0],[2958,38690,2986,0],[38695,2986,38696,0],[38534,38696,38691,0],[38695,38696,38697,0],[38695,38697,38698,0],[38695,38698,2987,0],[2987,38698,38660,0],[38696,2986,38699,0],[38699,38691,38696,0],[38690,38699,2986,0],[3632,82,83,0],[3632,83,38700,0],[3632,38700,3633,0],[3610,38701,78,0],[28881,76,38702,0],[76,28881,38454,0],[38454,28881,28882,0],[88,89,102,0],[102,89,38765,0],[38703,107,106,0],[107,38703,38704,0],[38704,38703,38706,0],[94,93,38705,0],[38706,49803,115,0],[38440,38704,38706,0],[94,38705,28879,0],[38705,38706,38703,0],[28890,28937,38711,0],[38711,28937,38707,0],[38710,38709,38708,0],[38708,38709,38707,0],[38707,38709,38711,0],[38709,38710,38711,0],[28890,38711,38712,0],[38712,38711,28884,0],[28937,38714,38707,0],[38707,38714,38708,0],[38708,28880,38710,0],[28880,38713,38717,0],[38717,38713,28967,0],[28967,38713,38714,0],[28970,28967,38714,0],[28967,38715,38716,0],[28967,38716,38717,0],[38702,38716,38715,0],[28881,38715,28882,0],[28882,38715,28967,0],[38708,38714,38713,0],[28938,28924,28894,0],[28894,28924,28939,0],[38702,38719,2918,0],[38719,3636,49786,0],[3638,38718,3607,0],[38719,38702,3608,0],[38721,28956,38720,0],[38720,38632,38721,0],[38721,38632,38722,0],[30492,30491,38723,0],[30499,38723,30491,0],[144,38724,38725,0],[38725,28931,30445,0],[30445,28931,30443,0],[144,38725,30444,0],[30446,143,144,0],[30446,144,30444,0],[30444,38727,38726,0],[30444,38726,30446,0],[38726,38727,38728,0],[38728,38727,38729,0],[38728,38729,30432,0],[30432,38729,38730,0],[38729,38727,38731,0],[38730,38729,38731,0],[38730,38731,30442,0],[38728,38732,38726,0],[30431,38732,38728,0],[38725,38724,28930,0],[28930,28931,38725,0],[30450,38735,38733,0],[30450,38733,305,0],[305,38733,306,0],[306,38733,38734,0],[38734,38735,295,0],[295,307,38734,0],[30450,30429,38735,0],[38733,38735,38734,0],[38735,30429,295,0],[295,38736,38737,0],[38737,38743,73,0],[71,73,38743,0],[71,38743,38738,0],[38738,38743,38739,0],[38739,38743,38744,0],[38739,38740,38738,0],[38738,38747,38741,0],[38741,38747,38742,0],[38738,38741,71,0],[38749,38740,30434,0],[38743,38737,38736,0],[38736,295,30429,0],[38736,38744,38743,0],[295,38737,38745,0],[38737,50,38745,0],[38745,50,38746,0],[49,38746,50,0],[30435,30439,30438,0],[30435,30434,30439,0],[30431,30432,30452,0],[38748,38749,49983,0],[38748,49983,38747,0],[70,38742,38747,0],[38749,38748,38740,0],[38740,38748,38738,0],[38738,38748,38747,0],[30431,30452,30430,0],[292,293,38750,0],[38750,293,38751,0],[38751,293,48,0],[38751,48,47,0],[292,38750,288,0],[292,288,290,0],[38750,38751,222,0],[46,51,60,0],[63,60,61,0],[51,61,60,0],[46,60,45,0],[45,60,58,0],[38752,53,45,0],[38752,45,58,0],[313,312,38753,0],[38753,312,281,0],[222,38751,47,0],[38752,65,41,0],[40,30112,30120,0],[40,30120,38755,0],[38755,30120,30119,0],[38755,30119,38756,0],[38755,38756,38754,0],[38754,38756,42,0],[42,38756,30090,0],[42,30090,30088,0],[42,30088,30089,0],[30338,30084,30136,0],[30338,30136,38757,0],[38758,30086,30123,0],[30123,30096,38758,0],[38758,30084,30086,0],[30314,30080,30313,0],[30164,30133,30171,0],[30171,30167,30164,0],[30168,49984,30170,0],[30168,30103,38759,0],[49984,30168,49811,0],[30061,49810,49992,0],[30168,38759,49811,0],[38760,39,55,0],[38760,55,36,0],[36,30060,66,0],[30109,30111,37,0],[37,30111,38,0],[36,35,67,0],[75,28886,28887,0],[28960,28959,38761,0],[38761,28959,28951,0],[38761,38721,38722,0],[38762,38765,90,0],[38762,38763,38765,0],[102,38765,38764,0],[38764,38765,38763,0],[3358,38770,3357,0],[3357,38770,3356,0],[3356,38770,38766,0],[3244,3354,3355,0],[3244,3355,38766,0],[3244,38766,38767,0],[3245,38767,32827,0],[3245,32827,3246,0],[3356,38766,3355,0],[3358,38772,38770,0],[38770,38772,38768,0],[32828,32827,38768,0],[38769,38770,38768,0],[32827,38767,38768,0],[38768,38767,38769,0],[38769,38767,38766,0],[38769,38766,38770,0],[38771,3358,3489,0],[38771,3489,3379,0],[3379,3381,38771,0],[38772,38780,38773,0],[38772,38773,38768,0],[38773,32828,38768,0],[433,38774,4054,0],[30463,269,271,0],[30463,271,30462,0],[30462,271,272,0],[30463,30464,269,0],[269,30464,268,0],[30815,30817,38775,0],[38775,30817,30813,0],[30815,38775,434,0],[38610,38776,3367,0],[3511,38776,38610,0],[38614,38610,3367,0],[3506,3505,3369,0],[3512,3511,38610,0],[38610,38612,3512,0],[3498,438,3374,0],[3374,3500,3498,0],[38777,38778,3492,0],[38778,38777,38607,0],[28833,38607,38608,0],[38608,38607,28827,0],[38780,38772,3358,0],[38780,3358,38779,0],[38779,3358,38771,0],[38779,38771,3381,0],[38781,3452,32826,0],[38781,32826,3451,0],[3452,38781,3453,0],[3453,38781,3454,0],[3456,3480,38782,0],[3458,38782,3449,0],[3449,38782,3480,0],[32764,32766,3457,0],[32760,32761,38598,0],[32779,32787,32780,0],[38787,3419,38783,0],[3419,3418,38784,0],[38783,3419,32701,0],[32705,32700,32701,0],[32701,32700,38783,0],[38785,3418,38786,0],[38786,3418,3422,0],[3422,3418,38787,0],[3422,38787,3421,0],[38788,38785,3417,0],[3417,38785,38786,0],[38789,38788,23291,0],[23291,38788,3416,0],[38789,38798,38790,0],[32717,38790,38798,0],[32710,32709,32596,0],[32596,32709,32597,0],[32709,38797,32597,0],[32596,38550,32710,0],[32710,38550,38792,0],[32710,38793,38794,0],[38794,38793,38801,0],[32710,38794,38800,0],[38794,38801,32604,0],[32604,32603,38794,0],[32596,38796,38550,0],[32596,38795,38796,0],[3419,38784,32701,0],[38784,38796,32702,0],[38796,38795,32702,0],[32707,38549,38797,0],[38797,38549,32597,0],[32707,38797,32601,0],[38789,23291,38798,0],[38798,23291,23290,0],[23298,32591,38799,0],[32708,38800,38794,0],[38794,32603,32708,0],[38791,32606,38793,0],[38801,38793,32606,0],[38801,32606,32616,0],[32604,38801,32616,0],[32604,32616,32605,0],[23241,23242,23243,0],[23241,23243,38802,0],[32922,38802,23243,0],[38803,22694,22678,0],[38803,22156,22697,0],[23207,23209,23208,0],[38804,23236,38805,0],[23236,38804,38812,0],[38807,22158,38808,0],[38808,38806,38809,0],[38810,38809,22160,0],[38809,38806,22334,0],[22334,38806,38811,0],[38809,38810,38808,0],[22158,38806,38808,0],[38811,38806,38812,0],[38811,38812,38813,0],[38813,38812,38804,0],[38813,38804,38805,0],[38811,38813,22333,0],[38810,22159,38814,0],[38814,22159,22343,0],[38810,38814,38808,0],[38808,38814,38807,0],[38812,38815,23237,0],[38812,23237,23236,0],[38812,38806,38815,0],[23237,38815,22156,0],[22722,22723,22646,0],[22644,38816,38817,0],[38817,38816,38819,0],[38817,38819,38818,0],[38820,38817,38818,0],[38820,38818,38830,0],[22382,22381,22384,0],[22384,22383,22382,0],[38822,22319,38823,0],[38823,22319,38824,0],[22321,22325,22322,0],[22166,38821,22167,0],[22167,38821,22320,0],[22167,22320,22356,0],[22358,22340,22359,0],[22358,22359,38825,0],[38825,22359,38826,0],[38825,38826,22367,0],[22375,23228,23221,0],[22718,22722,38827,0],[22722,22646,38827,0],[38827,22646,22649,0],[38827,22649,22643,0],[22643,22649,38828,0],[38828,22649,22650,0],[22643,22642,38827,0],[22642,22721,38827,0],[38827,22721,22718,0],[23208,22644,38817,0],[23208,38817,23207,0],[23205,23207,38817,0],[38830,23178,38829,0],[38829,23178,23215,0],[38829,38820,38830,0],[22667,22666,22668,0],[22687,38831,22667,0],[22687,22667,22684,0],[22668,22684,22667,0],[32625,32622,32631,0],[32631,32622,32620,0],[32631,38832,32625,0],[32625,38832,22707,0],[22707,38832,38833,0],[22670,38833,32706,0],[32631,32706,38832,0],[38832,32706,38833,0],[32704,32634,38834,0],[38834,38835,32626,0],[32626,38835,32635,0],[32634,32704,32632,0],[32632,32630,32634,0],[32634,38835,38834,0],[32638,32635,38835,0],[22700,38554,38836,0],[22700,38836,38552,0],[38836,38554,38553,0],[22389,38837,38839,0],[22389,38839,38838,0],[38838,38839,23157,0],[38837,38841,38839,0],[23157,38839,38840,0],[23156,38839,38841,0],[23226,38841,23225,0],[38841,22963,23225,0],[38837,22963,38841,0],[22373,22369,23229,0],[23229,22369,38843,0],[23229,38843,38842,0],[38843,22369,22297,0],[38843,22297,22298,0],[22298,22299,38843,0],[23187,23185,23195,0],[38844,23191,38846,0],[22624,38846,38845,0],[38845,23169,22726,0],[22726,23169,22395,0],[22393,22395,23169,0],[38845,38846,38847,0],[23191,38847,38846,0],[37975,37974,22625,0],[2570,37952,37959,0],[2570,37959,37960,0],[38849,23064,38848,0],[38849,23076,38850,0],[38849,38850,23063,0],[23063,38850,23062,0],[23062,38850,23075,0],[23063,38851,38849,0],[38849,38851,23064,0],[38852,23076,38848,0],[38848,23076,38849,0],[23076,38852,23078,0],[23078,38852,39382,0],[39382,38852,23080,0],[38852,38848,23065,0],[38852,23065,23080,0],[23080,23065,23081,0],[38853,23063,23124,0],[38853,23124,23122,0],[23122,23124,38854,0],[38855,38853,38856,0],[23126,38856,23127,0],[23127,38856,23038,0],[23122,38856,38853,0],[38855,38856,23125,0],[23126,23125,38856,0],[38855,23125,23064,0],[23064,23125,23036,0],[37615,38859,38857,0],[38857,38859,22994,0],[22994,22995,38857,0],[38857,22995,37617,0],[22890,23015,23017,0],[37619,37626,25834,0],[37619,25834,37621,0],[38858,38859,37615,0],[38859,38858,21432,0],[38859,21432,22993,0],[22993,22994,38859,0],[21432,38858,22992,0],[22990,38858,37615,0],[22990,37615,37616,0],[22990,37616,37614,0],[38861,38860,37630,0],[38861,37630,37606,0],[38861,37606,21435,0],[38860,38861,38863,0],[38860,38863,38862,0],[38864,21441,38862,0],[38864,38862,38863,0],[21436,23051,23101,0],[38881,38969,38886,0],[38881,38889,38868,0],[38868,38889,38890,0],[38868,38890,38867,0],[38868,38867,38872,0],[38872,38867,38869,0],[38878,38871,39357,0],[38870,38876,38981,0],[39357,38981,38876,0],[38869,38871,38872,0],[38873,38874,38875,0],[38875,38874,38876,0],[39357,38876,38878,0],[38878,38876,38874,0],[38878,38874,38877,0],[38878,38877,38872,0],[38873,38877,38874,0],[38872,38871,38878,0],[38876,23092,38875,0],[38875,23120,38873,0],[23092,38876,38870,0],[38870,38981,38879,0],[38873,38882,38877,0],[38877,38882,38880,0],[38877,38880,38872,0],[38872,38880,38868,0],[38868,38880,38881,0],[38969,38881,38882,0],[38880,38882,38881,0],[38882,38885,38969,0],[38885,23118,38866,0],[38866,23118,38865,0],[23119,38865,23118,0],[23119,23054,38865,0],[23056,38884,23055,0],[38970,38865,38884,0],[38884,38865,23054,0],[38884,23054,23055,0],[38866,38865,38970,0],[38866,38970,38885,0],[38885,38970,38886,0],[38886,38972,38889,0],[38887,39376,38972,0],[38887,38972,38888,0],[38888,38972,38971,0],[39376,33130,38889,0],[38889,33130,38890,0],[38890,33130,38892,0],[38890,38892,38891,0],[38890,38891,38867,0],[38891,38892,39352,0],[39352,39348,38893,0],[38967,38893,38894,0],[38934,38943,38896,0],[38965,38896,38897,0],[38940,38897,38942,0],[38940,38942,38959,0],[38940,38959,38898,0],[38898,38959,38899,0],[38996,39001,39000,0],[38996,39000,38995,0],[38995,39000,38901,0],[38901,39000,38902,0],[39176,39174,39002,0],[39176,39002,33149,0],[39176,33149,38903,0],[38903,33147,21859,0],[38905,38904,38906,0],[38907,38908,38913,0],[39035,39036,38910,0],[39035,38910,38911,0],[38908,38909,25742,0],[38904,38905,38900,0],[38905,38906,38912,0],[38912,38906,38907,0],[38907,38913,38912,0],[38914,25730,38915,0],[38932,38915,25729,0],[38932,25729,38931,0],[38918,38917,38920,0],[38919,23095,23105,0],[38917,38916,38920,0],[38928,39172,38921,0],[38928,38921,38922,0],[38922,38923,23096,0],[23096,38923,23097,0],[38922,23095,38919,0],[38922,38919,38928,0],[23095,38922,23096,0],[39407,38921,25727,0],[39407,25727,38923,0],[38923,38924,23097,0],[38925,38923,25727,0],[25727,38921,38927,0],[25727,38927,25726,0],[25726,38927,38926,0],[25728,25724,38926,0],[38927,38921,39172,0],[38918,38920,39172,0],[38918,39172,38928,0],[38931,38929,38916,0],[38916,38929,38920,0],[38931,25728,38929,0],[38920,38929,39172,0],[38906,38988,38907,0],[38907,38988,38909,0],[38907,38909,38908,0],[38899,38900,38905,0],[38899,38905,38930,0],[38912,38930,38905,0],[38899,38930,38898,0],[38898,38930,38914,0],[38966,38914,38915,0],[38966,38915,38932,0],[38932,38931,38933,0],[38933,38939,38964,0],[38964,38939,38934,0],[38934,38939,38935,0],[38934,38935,38936,0],[38936,38935,38937,0],[38937,38935,38938,0],[38918,38928,38938,0],[38918,38938,38935,0],[38918,38935,38917,0],[38917,38935,38939,0],[38917,38939,38933,0],[38917,38933,38916,0],[38916,38933,38931,0],[38938,38919,23094,0],[38938,23094,38937,0],[23094,38919,23105,0],[38898,38914,38966,0],[38897,38941,38965,0],[38897,38940,38941,0],[38940,38898,38966,0],[38896,38943,38944,0],[38896,38944,38897,0],[38897,38944,38958,0],[38897,38958,38942,0],[38944,38945,38954,0],[38954,38945,38946,0],[38946,39349,38947,0],[38947,39354,38948,0],[38955,38950,38951,0],[38955,38951,38952,0],[38952,38951,38953,0],[38952,38953,38956,0],[38956,38953,38957,0],[33095,38957,38953,0],[38947,38948,38946,0],[38946,38948,38954,0],[38954,38950,38955,0],[38950,38954,38949,0],[38949,38954,38948,0],[38954,38955,38944,0],[38944,38955,38958,0],[38955,38952,38958,0],[38942,38958,38959,0],[38900,38960,38957,0],[38957,38960,38956,0],[38956,38960,38959,0],[38959,38958,38952,0],[38959,38960,38899,0],[38899,38960,38900,0],[38946,38945,38894,0],[38946,38894,38893,0],[38946,38893,39349,0],[39349,38893,39348,0],[38894,38945,38895,0],[38895,38945,38943,0],[38943,38945,38944,0],[38867,38891,38961,0],[39355,38963,38962,0],[38962,38963,38986,0],[38986,38943,38934,0],[38934,38896,38964,0],[38964,38896,38965,0],[38964,38965,38933,0],[38965,38941,38933,0],[38933,38941,38932,0],[38966,38932,38940,0],[38940,38932,38941,0],[38943,38986,38895,0],[38895,38986,38963,0],[38895,38963,38894,0],[38894,38963,39355,0],[38894,39355,38967,0],[39352,38893,38967,0],[38891,39352,38961,0],[38961,39352,39355,0],[38961,39355,38968,0],[38961,38968,38869,0],[38961,38869,38867,0],[38886,38889,38881,0],[38886,38969,38885,0],[38889,38972,39376,0],[38970,38884,38883,0],[38970,38883,38971,0],[38971,38972,38886,0],[21442,38973,38974,0],[39014,38974,21443,0],[39014,21443,21444,0],[25844,21442,38974,0],[25844,38974,37643,0],[37643,38974,21469,0],[21469,38974,21470,0],[21442,21440,38975,0],[25832,23107,38977,0],[38975,25832,23109,0],[38975,38976,25832,0],[38976,21439,38978,0],[21440,21439,38976,0],[21440,38976,38975,0],[38983,38980,38979,0],[38979,38980,38982,0],[38979,38982,38981,0],[38981,38982,38879,0],[38985,38986,38936,0],[38936,38986,38934,0],[38985,38936,38987,0],[38985,38987,23093,0],[38936,38937,38987,0],[38986,38985,38962,0],[38906,38904,38997,0],[38906,38997,38988,0],[38988,38997,38989,0],[39036,38989,38910,0],[21666,38999,38993,0],[38993,38998,39173,0],[39173,38998,39175,0],[39175,38994,38901,0],[38901,38994,38995,0],[38995,38989,38997,0],[38989,38995,38910,0],[38900,38996,38904,0],[38904,38996,38997,0],[38997,38996,38995,0],[38993,38999,38998,0],[39175,38990,38994,0],[38994,38990,38910,0],[38910,38995,38994,0],[38990,39175,38991,0],[38991,39175,38998,0],[38991,38998,38992,0],[38910,38990,38911,0],[38911,38990,38991,0],[38911,38991,38992,0],[25719,21666,38993,0],[25719,38993,21860,0],[39036,38909,38988,0],[38988,38989,39036,0],[39001,38996,38900,0],[38902,33099,39174,0],[39005,39004,33151,0],[33151,39004,39003,0],[33098,39006,33099,0],[39003,39002,39006,0],[39006,39002,33099,0],[39002,39003,39004,0],[33140,33150,39007,0],[39007,33150,33148,0],[39007,33148,39004,0],[39004,39005,39007,0],[39002,39174,33099,0],[33097,38902,39000,0],[33097,39000,39008,0],[39008,39000,39001,0],[39001,38900,38957,0],[39008,39001,33096,0],[33096,39001,33095,0],[33095,39001,38957,0],[39010,33101,39009,0],[39010,39009,39011,0],[39011,39009,38953,0],[39011,33094,39010,0],[39009,33095,38953,0],[33092,33091,33101,0],[33101,33091,33100,0],[33100,33067,33096,0],[33096,33067,33066,0],[33096,33066,39008,0],[39008,33066,33097,0],[33100,33091,33067,0],[33067,33090,39012,0],[33091,33090,33067,0],[39013,21473,21458,0],[21458,21473,21474,0],[21470,38974,39014,0],[39014,21444,21471,0],[21444,21445,21471,0],[21443,38974,38973,0],[39015,37596,20137,0],[25995,25994,39017,0],[39017,25994,39019,0],[39019,39016,39018,0],[39018,39016,20117,0],[39018,25999,39019,0],[39019,25999,39017,0],[20123,39020,20122,0],[39020,25885,20122,0],[20122,25885,39021,0],[39021,25885,20119,0],[20271,20120,39021,0],[20271,39021,20119,0],[39022,25894,25895,0],[39022,25895,26022,0],[39023,37389,39024,0],[39024,39025,39026,0],[39024,39026,39023,0],[39023,39026,39027,0],[39023,39027,37388,0],[39025,37414,39028,0],[39025,39028,39026,0],[39026,39028,39027,0],[39027,39028,37409,0],[37390,39024,37389,0],[25993,20115,20116,0],[20116,20117,39029,0],[39029,39016,25992,0],[25992,39016,39030,0],[39030,39032,39031,0],[39029,25992,25993,0],[39029,25993,20116,0],[25990,39031,25994,0],[25994,39031,39032,0],[39032,39016,39019,0],[39016,39029,20117,0],[25994,39032,39019,0],[21489,25828,25829,0],[21489,25829,25830,0],[25741,25738,25743,0],[25743,25738,25733,0],[25743,25733,25744,0],[25745,25744,39033,0],[39033,25744,25731,0],[25682,25688,21693,0],[25711,25719,21861,0],[25711,21861,25720,0],[39034,21663,25736,0],[25736,25741,39034,0],[39034,25741,25740,0],[38992,21664,38911,0],[21664,39035,38911,0],[39037,39036,39034,0],[39036,39035,39034,0],[39036,39037,38909,0],[39037,25740,38909,0],[38909,25740,25742,0],[21664,39034,39035,0],[21493,37684,21488,0],[39039,21497,37692,0],[37692,21497,39040,0],[39041,39046,39045,0],[39041,39045,39044,0],[39041,39044,39042,0],[37693,39042,39043,0],[39050,39043,39044,0],[39050,39044,39045,0],[39040,21497,39046,0],[39040,39046,39041,0],[39047,39050,39038,0],[39038,39050,39045,0],[39045,39046,39038,0],[39048,39050,39049,0],[39049,39050,39147,0],[39070,39049,37694,0],[37694,39049,21637,0],[39049,39070,39048,0],[39048,39070,37693,0],[37693,39043,39048,0],[39048,39043,39050,0],[21635,39047,21463,0],[21635,21636,39047,0],[39050,39047,21636,0],[21636,39147,39050,0],[39051,37692,39040,0],[39051,39040,39052,0],[21503,39052,21504,0],[21504,39052,39053,0],[21504,39053,21505,0],[21505,39053,39054,0],[39054,39053,39055,0],[39057,39055,39056,0],[39057,39056,39058,0],[39057,39058,39059,0],[39060,39063,39061,0],[39060,39061,25760,0],[25760,25771,39062,0],[39062,25771,25763,0],[39062,25763,25767,0],[39060,39062,25764,0],[39059,39058,39060,0],[39060,39058,39063,0],[39057,39054,39055,0],[39072,39055,39064,0],[39065,39066,39040,0],[39065,39064,39066,0],[39066,39064,39067,0],[39052,39040,39066,0],[39052,39066,39053,0],[39053,39066,39067,0],[39053,39067,39055,0],[39056,39055,39072,0],[39072,39068,39069,0],[39152,39069,37693,0],[39152,37693,39070,0],[37693,39069,39071,0],[39071,39068,39072,0],[39071,39072,39065,0],[39065,39072,39064,0],[39068,39071,39069,0],[21505,39054,39083,0],[39082,39083,39073,0],[39054,25765,39073,0],[39073,25765,25799,0],[25807,25800,25799,0],[25765,39057,39059,0],[39074,25798,25797,0],[21508,25797,39075,0],[39076,39075,25796,0],[39076,25796,39077,0],[39077,25794,39076,0],[39075,39076,39078,0],[39075,39078,21508,0],[21508,39078,39079,0],[39079,39119,21506,0],[21506,39119,39081,0],[21502,39080,39081,0],[21506,39080,21504,0],[39080,21506,39081,0],[39074,39073,25799,0],[39073,39074,39082,0],[25797,21508,39074,0],[39074,21508,39082,0],[21508,21507,39082,0],[39082,21507,39083,0],[39052,21503,39051,0],[39083,39054,39073,0],[39168,39144,39084,0],[39084,39144,39145,0],[39085,39169,39648,0],[39085,39648,39638,0],[39085,39638,39086,0],[39086,39638,39087,0],[39637,24453,39115,0],[39115,24453,24452,0],[39115,24452,39088,0],[39115,39088,39089,0],[39089,37538,39112,0],[39112,37538,37537,0],[25060,37538,39089,0],[25060,39089,39088,0],[24450,39090,39088,0],[25059,25060,39091,0],[25059,39091,25058,0],[25058,39091,25068,0],[25067,39642,25068,0],[25068,39642,25058,0],[25060,39088,39090,0],[25060,39090,39091,0],[21540,21541,39160,0],[21540,39160,21539,0],[39093,39095,39094,0],[21535,39094,21516,0],[21516,39094,39096,0],[21516,39096,21518,0],[21518,39096,39097,0],[39097,39096,39108,0],[39099,39103,39114,0],[39114,39103,39100,0],[39100,39103,39101,0],[39101,39103,39102,0],[39102,39103,39111,0],[39111,39103,39104,0],[39099,39104,39103,0],[39111,39107,39102,0],[39101,39102,39105,0],[39105,39102,39163,0],[39105,39163,39167,0],[39105,39167,39106,0],[39169,39106,39084,0],[39111,39098,39107,0],[39098,39097,39107,0],[39097,39108,39107,0],[39107,39108,39109,0],[39109,39108,39110,0],[39110,39094,39095,0],[21518,39097,21534,0],[21534,39097,21519,0],[21519,39097,39098,0],[21519,39098,39111,0],[39111,39104,37536,0],[37537,39099,39112,0],[39099,37537,37536,0],[39099,39114,39113,0],[39116,39113,39086,0],[39114,39100,39086,0],[39086,39100,39085,0],[39099,39113,39112,0],[39112,39113,39116,0],[39112,39116,39115,0],[39112,39115,39089,0],[39116,39086,39087,0],[39087,39637,39116,0],[39637,39115,39116,0],[39099,37536,39104,0],[21520,37540,37536,0],[37536,37540,39111,0],[21520,39657,37532,0],[39117,39093,39094,0],[39094,21535,39117,0],[39117,21535,21537,0],[39108,39096,39110,0],[21542,39118,39122,0],[39119,39120,39081,0],[39119,39078,39132,0],[39132,49792,39121,0],[39121,49792,25822,0],[39121,25822,25820,0],[39132,39121,39118,0],[39118,39121,25820,0],[39118,25820,39122,0],[39132,39118,39119,0],[39119,39079,39078,0],[39081,39120,37691,0],[39119,39118,39120,0],[39120,39118,39124,0],[21545,21544,25819,0],[21558,21547,25817,0],[21558,25817,25812,0],[21548,25812,21549,0],[25819,21544,25820,0],[39122,25820,21544,0],[39123,24382,39142,0],[21542,39142,39143,0],[21542,39143,39124,0],[21541,39124,39144,0],[39142,21542,21543,0],[39142,21543,39123,0],[24382,39645,39142,0],[21551,21552,21550,0],[21550,21552,21556,0],[39125,24252,21554,0],[24296,39126,24297,0],[24297,39126,24247,0],[24300,39128,39127,0],[24267,39130,24268,0],[24268,48856,39129,0],[24287,39129,48856,0],[48856,24268,39131,0],[39131,24268,39130,0],[39127,39128,39130,0],[24270,24269,39129,0],[39129,24269,24268,0],[39132,39078,39076,0],[21569,39244,25794,0],[25794,39244,39076,0],[39132,39076,39244,0],[39132,39244,49792,0],[39133,25821,25818,0],[39133,25818,25819,0],[39133,25819,25822,0],[24653,39134,39135,0],[39135,39136,21581,0],[39135,39134,39141,0],[39141,24654,39139,0],[39140,24256,24260,0],[39141,39137,39136,0],[39141,39139,39137,0],[39137,39139,39140,0],[39141,39134,24654,0],[39141,39136,39135,0],[39143,39142,39645,0],[39124,39143,39144,0],[39144,39143,39145,0],[39647,39145,39646,0],[39647,39084,39145,0],[39145,39143,39646,0],[37684,25824,37659,0],[21637,39148,21655,0],[21655,39148,39147,0],[21632,39147,21636,0],[21619,21621,25726,0],[21619,25726,25725,0],[39149,25753,25746,0],[39149,25746,25751,0],[39149,25751,25750,0],[25734,39149,25750,0],[25752,25746,25753,0],[25727,25726,21621,0],[21660,21638,39150,0],[39150,21638,39151,0],[39150,39151,37695,0],[37695,39151,39152,0],[37695,39152,39070,0],[39151,21638,21640,0],[39151,21640,39153,0],[39151,39153,39152,0],[39152,39153,39069,0],[39154,39153,39063,0],[39056,39154,39058,0],[39056,39072,39154,0],[39154,39072,39069,0],[39058,39154,39063,0],[39043,39042,39044,0],[37657,39155,37656,0],[37657,39156,37682,0],[37682,39156,21528,0],[21528,39157,21527,0],[39158,37656,37655,0],[39171,37700,39159,0],[37681,21528,21529,0],[21531,37680,21529,0],[21529,37680,37681,0],[37681,37682,21528,0],[39092,37687,39161,0],[39161,37687,21539,0],[39161,21539,39160,0],[39093,39092,39161,0],[39093,39161,39162,0],[39162,39163,39109,0],[39109,39163,39102,0],[39107,39109,39102,0],[39109,39110,39162,0],[39162,39110,39095,0],[39162,39095,39093,0],[39161,39164,39162,0],[39162,39164,39165,0],[39162,39165,39163,0],[39163,39165,39167,0],[39161,39160,39164,0],[39164,39160,39165,0],[39165,39160,39166,0],[39165,39166,39168,0],[39165,39168,39167,0],[39167,39168,39106,0],[39106,39168,39084,0],[39168,39166,39144,0],[39144,39166,21541,0],[39100,39101,39105,0],[39100,39106,39169,0],[39169,39085,39100,0],[39106,39100,39105,0],[21499,39170,37685,0],[37701,37707,39171,0],[39171,37707,37697,0],[39059,25764,25765,0],[39060,25760,39062,0],[38926,38927,39172,0],[38926,39172,25728,0],[38929,25728,39172,0],[39033,25731,38913,0],[39033,38913,25742,0],[25742,38913,38908,0],[25730,38914,38913,0],[25730,38913,25731,0],[38993,39173,39178,0],[39178,39173,39176,0],[39176,39173,39174,0],[39174,39175,38902,0],[39176,38903,39178,0],[39178,38903,21859,0],[38902,39175,38901,0],[39173,39175,39174,0],[21860,38993,39177,0],[39177,38993,39178,0],[39178,21859,39177,0],[21685,21672,25696,0],[21672,25697,25696,0],[21612,21610,25776,0],[21612,21611,21610,0],[21610,25691,39238,0],[21686,25690,39180,0],[21603,39180,24643,0],[39180,25690,24643,0],[24643,25690,39181,0],[39329,39182,21733,0],[39329,21733,39183,0],[39183,39205,39335,0],[39335,39205,39184,0],[39184,39207,39185,0],[39334,39185,39186,0],[39334,39186,39331,0],[39331,39186,39187,0],[39187,39186,39189,0],[39187,39189,24666,0],[24666,39189,39188,0],[39188,39189,39190,0],[39190,48892,39197,0],[39197,48892,39191,0],[39191,39245,39192,0],[39245,39249,39201,0],[39201,39249,39193,0],[39201,39193,39196,0],[39194,39188,39190,0],[39194,39198,39199,0],[24672,24671,24664,0],[39194,39199,24664,0],[24664,39199,24672,0],[24664,24671,25671,0],[39200,39197,39192,0],[39197,39191,39192,0],[39200,39192,39201,0],[39201,39192,39245,0],[39194,39190,39198,0],[39197,39198,39190,0],[39198,39197,39199,0],[39200,39201,39195,0],[39195,39201,39196,0],[39200,39199,39197,0],[39195,24672,39200,0],[39200,24672,39199,0],[39185,39334,39184,0],[39202,39331,39187,0],[39182,33203,21733,0],[39183,21733,39203,0],[39205,21735,39206,0],[39206,21735,33215,0],[33206,21735,39204,0],[39204,21735,39205,0],[39204,39205,39203,0],[39183,39203,39205,0],[39205,39206,39184,0],[39184,39206,39207,0],[39209,39247,48893,0],[39209,48893,39186,0],[39285,39209,39208,0],[39285,39208,39280,0],[39285,39248,39209,0],[39209,39248,39247,0],[39209,39186,39185,0],[39209,39185,39208,0],[39208,39185,39207,0],[39195,24181,39210,0],[39210,24181,39309,0],[39211,49788,39212,0],[39306,39212,39213,0],[39309,24179,49788,0],[39213,49789,24682,0],[39195,39210,39214,0],[24670,24671,39215,0],[39215,39195,39214,0],[39215,39214,24670,0],[39214,39210,24657,0],[21576,21577,21585,0],[21576,21585,39216,0],[21562,48871,39218,0],[39218,48871,48870,0],[48870,48869,39217,0],[39217,48869,21561,0],[21561,21560,39217,0],[39217,21560,21551,0],[39217,21551,21550,0],[48870,21550,39218,0],[21550,48870,39217,0],[25813,39219,25814,0],[25814,39219,25812,0],[25812,39219,21549,0],[21549,39219,48748,0],[21550,48749,39218,0],[39218,48749,48748,0],[39219,39220,48748,0],[48748,39220,21562,0],[48748,21562,39218,0],[24594,24590,24589,0],[24589,24591,39221,0],[39221,24595,24594,0],[24581,39221,24591,0],[24266,39127,39223,0],[24266,39223,39222,0],[39223,24344,24343,0],[24343,39222,39223,0],[24344,39223,39127,0],[24339,39224,24337,0],[24351,25186,25187,0],[24351,39225,24352,0],[24352,39225,39226,0],[39226,39225,25216,0],[39225,24351,25187,0],[25186,24350,39228,0],[39228,24350,39227,0],[39228,39227,24347,0],[24347,39227,24349,0],[24347,24349,24346,0],[24347,25185,39228,0],[39229,33167,33247,0],[39229,33247,39230,0],[33250,39230,33246,0],[33246,33312,33259,0],[33312,33246,33313,0],[39230,33250,39229,0],[33288,39231,39232,0],[39232,39231,39233,0],[39232,39233,21870,0],[21870,39233,21869,0],[39234,39232,21870,0],[39232,33293,33288,0],[33293,39232,33318,0],[33318,39232,39234,0],[21871,21868,21867,0],[39236,39235,25676,0],[25676,39235,25677,0],[25677,39235,25679,0],[39237,24661,24639,0],[24637,24660,24659,0],[39237,24639,21694,0],[25692,21602,21601,0],[21601,21602,25791,0],[39238,21602,25692,0],[39238,25692,21610,0],[25762,39239,25774,0],[25759,39239,21643,0],[39239,25762,21643,0],[25804,25805,21601,0],[25804,21601,25791,0],[21574,21575,39216,0],[21573,21574,21586,0],[21586,21574,39216,0],[25784,39240,39241,0],[39242,39241,21607,0],[21567,21568,39243,0],[39243,21568,25823,0],[39245,39191,39246,0],[39246,39191,39247,0],[39246,39247,39248,0],[39247,48890,48893,0],[39245,39246,39249,0],[39250,39249,39251,0],[39250,39251,39252,0],[39252,39288,39254,0],[39254,39253,39277,0],[39254,39277,39255,0],[39255,39277,39256,0],[39261,39259,39283,0],[39261,39283,39260,0],[39260,39274,39261,0],[39261,24729,39262,0],[39258,39259,39263,0],[39263,39259,39262,0],[39262,39259,39261,0],[39262,24732,39263,0],[39263,24732,24727,0],[39263,24727,39264,0],[39257,39264,39256,0],[39256,39264,39265,0],[39255,39265,24171,0],[39255,24171,39254,0],[39254,24172,24173,0],[24173,24184,24182,0],[39252,24182,39250,0],[39250,39193,39249,0],[24182,39252,24173,0],[39252,39254,24173,0],[24173,39266,24184,0],[24184,39266,39316,0],[39250,24182,39193,0],[24172,39254,24171,0],[39255,39256,39265,0],[39257,39258,39264,0],[39264,39258,39263,0],[39264,39267,39265,0],[39267,39264,24727,0],[24727,39311,39267,0],[39268,39270,39269,0],[39269,39270,39313,0],[39313,24169,39269,0],[39269,24169,39271,0],[39268,39269,39272,0],[39268,39272,39267,0],[39267,39272,39265,0],[39271,39272,39269,0],[24714,39272,39271,0],[24729,39261,39273,0],[24729,39273,39292,0],[39292,39273,39298,0],[21738,39273,39274,0],[21738,39274,39297,0],[39261,39274,39273,0],[39248,39285,39275,0],[39275,39285,39276,0],[39276,39283,39284,0],[39284,39253,39288,0],[39288,39253,39254,0],[39256,39277,39299,0],[39256,39299,39257,0],[39257,39299,39258,0],[39258,39299,39278,0],[39259,39258,39278,0],[39248,39275,39246,0],[39246,39275,39279,0],[39246,39279,39249,0],[39282,39280,39281,0],[39282,39281,21736,0],[21736,39281,33215,0],[33215,39281,39206,0],[21736,39260,39282,0],[39278,39283,39259,0],[39283,39282,39260,0],[39283,39278,39284,0],[39283,39276,39282,0],[39282,39276,39285,0],[39282,39285,39280,0],[39280,39208,39207,0],[39280,39207,39281,0],[39281,39207,39206,0],[39279,39286,39287,0],[39279,39287,39251,0],[39251,39287,39252,0],[39287,39286,39276,0],[39276,39284,39287,0],[39287,39284,39288,0],[39287,39288,39252,0],[39276,39286,39275,0],[39279,39275,39286,0],[39251,39249,39279,0],[39292,39289,39290,0],[39292,39290,39291,0],[39291,39344,24137,0],[24139,24730,24137,0],[24137,24730,39291,0],[39291,24730,24740,0],[39291,24740,39292,0],[39289,39292,39298,0],[24729,39292,24740,0],[24137,39344,24136,0],[33018,33019,24133,0],[39295,33926,24131,0],[39295,24131,39294,0],[39294,24131,39293,0],[39293,24744,39294,0],[24744,24745,39294,0],[39294,24745,39296,0],[24133,39295,24134,0],[39295,39296,24134,0],[24134,39296,24135,0],[39295,39294,39296,0],[39297,39260,21736,0],[39297,21736,21737,0],[21738,21739,39298,0],[39299,39284,39278,0],[39284,39299,39253,0],[39253,39299,39277,0],[39300,24171,39302,0],[39314,39315,39301,0],[39301,39315,24691,0],[39301,24691,24186,0],[39314,39301,24715,0],[24715,39301,24186,0],[24715,24186,24185,0],[39300,24185,24172,0],[24185,39300,24720,0],[24720,39300,39302,0],[39302,24714,24720,0],[39309,49788,39303,0],[39303,24657,39210,0],[24656,39303,39211,0],[39308,39211,39304,0],[24631,24673,39305,0],[39305,24673,39304,0],[39212,39306,39304,0],[39212,39304,39211,0],[39304,39306,39305,0],[24673,24633,39304,0],[39304,24633,39307,0],[24656,39211,24655,0],[24655,39211,39308,0],[39308,39304,39307,0],[39308,39307,24655,0],[39303,39210,39309,0],[39311,24737,24736,0],[24737,39311,24727,0],[24727,24738,24737,0],[24738,24732,24733,0],[24738,24733,24735,0],[24733,24734,24735,0],[24735,24734,24141,0],[39267,39311,39268,0],[39268,39311,24167,0],[39312,24167,24736,0],[24736,24167,39311,0],[39268,24167,39270,0],[24168,24169,39313,0],[24168,39313,24199,0],[24199,39313,24713,0],[39313,39270,24713,0],[24713,39270,24167,0],[39315,24187,24686,0],[24686,24691,39315,0],[39315,39314,24717,0],[24717,24719,24187,0],[24187,39315,24717,0],[24177,24175,24176,0],[24175,24177,39316,0],[39316,39266,24175,0],[24623,24621,24189,0],[24718,24189,24688,0],[24615,24701,48875,0],[24697,39317,24698,0],[24698,39317,24612,0],[24612,39317,39318,0],[39318,39317,24614,0],[24697,24695,39317,0],[24695,24696,39317,0],[48863,24611,24603,0],[24603,24604,48866,0],[48866,24604,39320,0],[48866,39320,39319,0],[39319,39320,39321,0],[39319,39321,39140,0],[39320,24605,39321,0],[39140,39321,24256,0],[24256,39321,24605,0],[24159,24156,24160,0],[39325,24160,24158,0],[24158,24160,24165,0],[24165,24160,24156,0],[39498,39322,24742,0],[24742,39322,24147,0],[24147,39322,39410,0],[24742,39323,39324,0],[24748,39324,24140,0],[39322,24129,39410,0],[39410,24128,24148,0],[24128,39410,24129,0],[24145,24143,39323,0],[24147,24145,39323,0],[24147,39323,24742,0],[39323,24142,39324,0],[39324,24142,39325,0],[39324,39325,24140,0],[24158,24140,39325,0],[24222,24155,24161,0],[24222,24161,39522,0],[24222,39522,24229,0],[24229,39522,39524,0],[24222,24223,24155,0],[24223,24226,24162,0],[24162,24226,24224,0],[24105,24078,39328,0],[39328,24078,39326,0],[39326,24893,39327,0],[39327,39328,39326,0],[39329,39332,39202,0],[39329,39202,39333,0],[39333,39202,39330,0],[39330,39202,39187,0],[39330,39187,24667,0],[24667,24668,39330,0],[39330,24668,39333,0],[39332,39329,39183,0],[24669,39333,24668,0],[24669,39182,39333,0],[39333,39182,39329,0],[39331,39202,39332,0],[39331,39332,39334,0],[39334,39332,39335,0],[39334,39335,39184,0],[39183,39335,39332,0],[33222,33221,33233,0],[39289,39337,39290,0],[21740,39337,39298,0],[39298,39337,39289,0],[21740,39336,39337,0],[39337,39336,25590,0],[39336,21742,25591,0],[25591,21742,25592,0],[25592,21742,21743,0],[21740,21742,39336,0],[33226,21741,33227,0],[33227,21741,33210,0],[33227,33210,33225,0],[33178,33248,33249,0],[21749,25609,21747,0],[21747,33221,21746,0],[21746,33221,33222,0],[33233,39338,33222,0],[39338,33231,33223,0],[39339,25585,39340,0],[39340,25584,25611,0],[39340,25611,39339,0],[33015,39341,33014,0],[33015,33014,33012,0],[33012,33014,33013,0],[25587,39341,39343,0],[39343,39341,33015,0],[33015,33016,39343,0],[39342,33018,24136,0],[24136,39344,39342,0],[39342,39344,33016,0],[25587,39343,25588,0],[25590,25588,39337,0],[39337,25588,39290,0],[39291,39290,39344,0],[39343,39290,25588,0],[39343,33016,39344,0],[39343,39344,39290,0],[21785,21777,21775,0],[25630,21773,21774,0],[33276,39345,25632,0],[25632,39345,25633,0],[21774,21783,21775,0],[21775,21783,21767,0],[21767,21766,21785,0],[21785,21775,21767,0],[21895,21890,39346,0],[23692,39347,21904,0],[21904,39347,21833,0],[21852,21855,21875,0],[21852,21875,21888,0],[21888,21875,21877,0],[38913,38914,38930,0],[39010,33093,33092,0],[33125,33094,38949,0],[38949,33094,38950,0],[39349,39348,33132,0],[33132,33128,39349,0],[39349,39350,38947,0],[39349,33128,39350,0],[39351,39350,33126,0],[33126,39350,33128,0],[38892,33132,39352,0],[39352,33132,39348,0],[39350,39351,38947,0],[38947,39351,39354,0],[39354,39351,39353,0],[38948,39354,38949,0],[33125,38949,39353,0],[38968,39355,38962,0],[38968,38962,38985,0],[38968,38985,38984,0],[38968,38984,38983,0],[39356,38968,38983,0],[38869,39356,38871,0],[38871,39356,39357,0],[38983,38979,39356,0],[39356,38979,39357,0],[39357,38979,38981,0],[22313,23060,22307,0],[22313,22307,22289,0],[22307,22291,22289,0],[33121,33122,22309,0],[22309,33122,33123,0],[22309,33123,39358,0],[22307,23060,22308,0],[23059,23060,39358,0],[22309,39358,23060,0],[23058,33123,39377,0],[33120,39377,33123,0],[33086,39359,33080,0],[33080,33085,33081,0],[39360,33114,33113,0],[39361,33117,22259,0],[39362,39361,39363,0],[33117,39361,39362,0],[39363,39364,39362,0],[39362,39364,39380,0],[23066,23067,39365,0],[39365,23067,23069,0],[23081,23084,22306,0],[22306,23084,23083,0],[22306,23083,22305,0],[22306,22295,23081,0],[23081,22295,39366,0],[23081,39366,39367,0],[39367,39366,39368,0],[39382,39368,22308,0],[39369,22308,23059,0],[23059,22308,23060,0],[22308,39370,39371,0],[22290,39371,22294,0],[22294,39371,39372,0],[39372,39374,39373,0],[39373,39374,39366,0],[22374,39372,39373,0],[22295,39373,39366,0],[22308,39368,39370,0],[39370,39368,39374,0],[39366,39374,39368,0],[39374,39372,39370,0],[39367,39368,23080,0],[39368,39382,23080,0],[39369,23057,23079,0],[23079,23057,39375,0],[23079,39375,23078,0],[23078,39375,23077,0],[33119,38883,38884,0],[33119,38884,23056,0],[38883,33119,38971,0],[38971,33119,39378,0],[38971,39378,38888,0],[39376,38887,39364,0],[33119,23057,39377,0],[38888,39378,39379,0],[38888,39379,38887,0],[33119,39377,39378,0],[39378,39377,39379,0],[38887,39379,39380,0],[38887,39380,39364,0],[33118,39380,39379,0],[39381,39365,23069,0],[22303,39381,22302,0],[23079,39382,39369,0],[39369,39382,22308,0],[39383,39384,22262,0],[39384,22264,22262,0],[22315,22311,33121,0],[22315,33121,22288,0],[23077,39375,23075,0],[39387,39386,22169,0],[39387,22169,22170,0],[22371,39386,39387,0],[38824,22319,22170,0],[38822,38823,22168,0],[38822,22168,22356,0],[22169,39386,22378,0],[39388,38826,22378,0],[22380,22378,39386,0],[39389,22360,22359,0],[39389,22359,22340,0],[38822,22356,22320,0],[39390,22273,22278,0],[22190,39391,22180,0],[22338,22207,22208,0],[22208,22324,22338,0],[37839,39393,39392,0],[39381,22958,22302,0],[39381,23069,22958,0],[22958,23069,23070,0],[39394,39365,23082,0],[23066,39365,39394,0],[23082,23084,39394,0],[39394,23084,39395,0],[39394,39395,23072,0],[23084,23081,39395,0],[23072,39395,23065,0],[23065,39395,23081,0],[23066,39394,23032,0],[23130,23029,23030,0],[33127,33131,39363,0],[33127,39363,39396,0],[33133,33126,39396,0],[39396,33126,33127,0],[23057,23058,39377,0],[22301,22299,22302,0],[38843,22299,22300,0],[22300,22299,22301,0],[33135,33088,33134,0],[33090,33068,39012,0],[33068,33090,33088,0],[23724,39397,23723,0],[21902,23677,21901,0],[21901,23677,39398,0],[21901,39398,39399,0],[21903,39399,39398,0],[23690,23693,21907,0],[23690,21907,23697,0],[23697,23706,39400,0],[23697,39400,23690,0],[39402,39403,39404,0],[39404,39403,39405,0],[39404,39405,33075,0],[33075,39406,33077,0],[39401,39404,33074,0],[33075,33074,39404,0],[39403,32938,39405,0],[33075,39405,33060,0],[33075,33060,39406,0],[39406,33060,33059,0],[33060,39405,33061,0],[33082,32934,22252,0],[22252,32934,22246,0],[38923,38922,39407,0],[39407,38922,38921,0],[39408,21727,21728,0],[39408,21728,25659,0],[25659,21728,39409,0],[24669,21698,21732,0],[21732,21698,21700,0],[21732,21700,39409,0],[21732,39409,21730,0],[25659,39409,21700,0],[21732,39182,24669,0],[33936,33020,33021,0],[24143,24142,39323,0],[24127,39411,39412,0],[24127,39412,24100,0],[24096,39413,24097,0],[39413,24098,24097,0],[39414,39416,39415,0],[39415,39416,24859,0],[39413,24845,39417,0],[39413,39417,24098,0],[39417,24845,39412,0],[39412,24098,39417,0],[39416,39414,24845,0],[39412,24845,39414,0],[39414,39415,24101,0],[24850,39415,39418,0],[24850,39418,24846,0],[24850,24102,39415,0],[39415,24102,24101,0],[24103,24850,39523,0],[24850,24849,39523,0],[39523,24849,24104,0],[24846,39418,24857,0],[24857,39418,24859,0],[24859,39418,39415,0],[24863,24852,24866,0],[24863,39513,24852,0],[39513,24864,24120,0],[24086,39419,24087,0],[39419,24086,24116,0],[39419,24116,24115,0],[39420,24085,39421,0],[39420,39421,39422,0],[39422,39423,39424,0],[39424,39427,39425,0],[39425,39426,24117,0],[24081,24117,39426,0],[39426,39425,39427,0],[39427,39424,39423,0],[39425,39428,39424,0],[39424,39428,39422,0],[39422,39428,39420,0],[39421,39429,39422,0],[39422,39429,39423,0],[39423,39429,39430,0],[39421,24084,39429,0],[39429,24084,39430,0],[24085,39420,24086,0],[24090,24089,39431,0],[39431,24091,24090,0],[39431,24114,24863,0],[24883,39433,39451,0],[39451,39433,39432,0],[39432,39433,39434,0],[39434,39433,39435,0],[39434,39435,39438,0],[39438,39435,39437,0],[39437,39452,39436,0],[39437,39436,39438,0],[39440,39439,39448,0],[39440,39449,39441,0],[39443,39467,39466,0],[39447,39444,39445,0],[39447,39445,39446,0],[39442,39447,39441,0],[39450,39448,39439,0],[39448,24069,24070,0],[39448,24070,39440,0],[39440,24070,39449,0],[39441,39449,39442,0],[39449,24071,39442,0],[39438,39450,39432,0],[39432,39469,39451,0],[39461,24883,39451,0],[39432,39434,39438,0],[39450,39439,39432,0],[25434,39436,39452,0],[25422,39452,39503,0],[39423,24082,39456,0],[39456,24082,39455,0],[39455,24082,39460,0],[39455,39460,39453,0],[39423,39456,39427,0],[39427,39456,39457,0],[39458,39525,39472,0],[39472,39525,39518,0],[39472,39518,39519,0],[39472,39519,24896,0],[24896,39519,24895,0],[39472,24896,24900,0],[39460,39459,39462,0],[39460,24082,39459,0],[39459,24082,24882,0],[39459,24882,39461,0],[39459,39461,39462,0],[39462,39461,39446,0],[39441,39468,39440,0],[39441,39447,39468,0],[39468,39447,39446,0],[39446,39445,39462,0],[39460,39462,39445,0],[39453,39445,39463,0],[39453,39463,39466,0],[39453,39466,39516,0],[39516,39467,24073,0],[24073,39467,39464,0],[24073,39464,24537,0],[24537,39464,39473,0],[39473,39464,39467,0],[39473,39467,24072,0],[24072,39467,39465,0],[39465,39467,39443,0],[39467,39516,39466,0],[39444,39463,39445,0],[39443,39442,39465,0],[39465,39442,24071,0],[39460,39445,39453,0],[24882,24883,39461,0],[39461,39451,39470,0],[39470,39451,39469,0],[39470,39469,39468,0],[39468,39469,39440,0],[39440,39469,39439,0],[39439,39469,39432,0],[39468,39446,39470,0],[39470,39446,39461,0],[39458,39471,39525,0],[39458,39457,39471,0],[39471,39457,39456,0],[24898,39458,39472,0],[24898,39472,24897,0],[39472,24900,24897,0],[24898,39426,39458,0],[39458,39426,39457,0],[39474,24539,39473,0],[39474,39473,39475,0],[24539,24538,39473,0],[39475,39473,24072,0],[24902,39476,39449,0],[39449,39476,24071,0],[24539,39474,24543,0],[24543,39474,24907,0],[24907,39474,39477,0],[39477,39474,39475,0],[24067,25438,24066,0],[24066,25438,24906,0],[24906,25438,24930,0],[24906,24930,24065,0],[25438,24067,25437,0],[25437,24067,24069,0],[25437,24069,39448,0],[24924,24923,24913,0],[24911,24938,24910,0],[24909,24910,24937,0],[24910,24938,24937,0],[24922,24939,24938,0],[24922,24938,24913,0],[24913,24938,24911,0],[39478,24921,24920,0],[39478,24920,39479,0],[24277,39479,39544,0],[39478,39479,39480,0],[39479,24278,39480,0],[39481,39480,24934,0],[24935,24934,39480,0],[39480,39481,39478,0],[39478,39481,24921,0],[24277,24276,39496,0],[24277,39496,39495,0],[24277,39495,39482,0],[39482,39495,39483,0],[39482,39483,39497,0],[39497,39483,39484,0],[39484,39485,39486,0],[39489,39488,24282,0],[39487,24282,39488,0],[39485,39488,39489,0],[39485,39489,39486,0],[24316,39490,39491,0],[24317,39492,24318,0],[24317,24315,39492,0],[39485,39490,39488,0],[39485,39484,39490,0],[39490,39484,39493,0],[39491,39493,39494,0],[39491,39494,39492,0],[39492,39494,24318,0],[39493,39491,39490,0],[39484,39483,39493,0],[39493,39483,39494,0],[24322,39495,24323,0],[24323,39495,24324,0],[24324,39495,39496,0],[24290,24324,39496,0],[39494,24322,24318,0],[39483,24322,39494,0],[39483,39495,24322,0],[39486,24280,39484,0],[39497,24278,39482,0],[39482,24278,24277,0],[24129,39322,39498,0],[24129,39498,33931,0],[24744,39498,24743,0],[24744,39293,39498,0],[39498,39293,33931,0],[24129,24130,24128,0],[33931,39293,24131,0],[24132,24753,33931,0],[33931,24753,24130,0],[24132,33930,24753,0],[24753,24099,24128,0],[24130,24753,24128,0],[24760,39499,24761,0],[24760,24761,24782,0],[24760,24782,24781,0],[39499,24760,24759,0],[24088,24089,39500,0],[39500,24089,24892,0],[39501,24113,39502,0],[39502,24864,24114,0],[25422,39503,25421,0],[39505,25444,33809,0],[24756,33939,33923,0],[24764,24842,24765,0],[24763,24764,24783,0],[24886,39506,24878,0],[24878,39506,39507,0],[24878,39507,39512,0],[24879,24886,24878,0],[39512,39507,24875,0],[24874,39507,39506,0],[39512,39511,24876,0],[39435,24877,24876,0],[24879,24877,39433,0],[39435,39433,24877,0],[39437,39435,39508,0],[39503,39508,25421,0],[39437,39508,39452,0],[39503,39452,39508,0],[39511,39508,39435,0],[39508,39511,39509,0],[39508,39509,39510,0],[39510,39509,25443,0],[39510,25421,39508,0],[25443,39511,39512,0],[25443,39512,24875,0],[24087,39419,39501,0],[39501,39419,24113,0],[39513,24120,24851,0],[24121,24107,24848,0],[24848,24107,24104,0],[24848,24104,24849,0],[24121,24848,24847,0],[24121,24847,24124,0],[24078,24900,39514,0],[24893,39515,24894,0],[24894,39515,24895,0],[39515,24893,39326,0],[39515,39326,39514,0],[39514,39326,24078,0],[39455,39453,39454,0],[39454,39453,39516,0],[39526,39516,39517,0],[39526,39517,39518,0],[39518,39517,39519,0],[39526,39518,39525,0],[39516,39526,39454,0],[39517,39516,24073,0],[24073,39520,39517,0],[39517,39520,39519,0],[24895,39519,39521,0],[39524,39522,39523,0],[39523,39522,24103,0],[39524,39523,24104,0],[39524,24104,24106,0],[24103,39522,24161,0],[39525,39471,39454,0],[39454,39526,39525,0],[39454,39471,39455,0],[39456,39455,39471,0],[39466,39444,39443,0],[39447,39442,39444,0],[39444,39442,39443,0],[24543,24545,24532,0],[24543,24532,24539,0],[24525,24523,24901,0],[24525,24901,24074,0],[24525,24074,24526,0],[24526,24074,24527,0],[24074,24541,24527,0],[39543,24316,39527,0],[39487,39543,24283,0],[24234,39529,39528,0],[24284,24283,39529,0],[48861,39530,24235,0],[24235,39530,24236,0],[39529,24234,24233,0],[24233,24234,39531,0],[39532,24234,39530,0],[39532,39530,48861,0],[48858,48861,39533,0],[48860,39534,39541,0],[48860,39541,24218,0],[24218,39541,24216,0],[24216,39541,39535,0],[24216,39535,39539,0],[24215,39539,24214,0],[39536,39537,24212,0],[39542,39538,24214,0],[39542,24214,39540,0],[39540,24214,39539,0],[24214,39538,39536,0],[39539,39535,39540,0],[39540,39535,39534,0],[39540,39534,39533,0],[39533,39534,48858,0],[39535,39541,39534,0],[24521,39538,39542,0],[39540,39533,39542,0],[24521,39542,24235,0],[24235,39542,39533,0],[24235,39533,48861,0],[39536,24213,24214,0],[24214,24213,24558,0],[24325,39528,39527,0],[39527,39528,39529,0],[39527,39529,39543,0],[39543,39529,24283,0],[39544,33856,39545,0],[39479,24920,39544,0],[39544,33860,33856,0],[33841,33840,39546,0],[33885,39579,33839,0],[33839,39579,39547,0],[33840,39547,39579,0],[39581,33885,39548,0],[39581,39548,39550,0],[39550,33891,33838,0],[39549,33838,33891,0],[33896,39548,33885,0],[39581,39550,33838,0],[39581,33838,39551,0],[39552,39573,39553,0],[39577,39553,39591,0],[39577,39591,39575,0],[39555,39556,39592,0],[39556,39557,39558,0],[39559,39594,39560,0],[39562,33835,39563,0],[39562,39563,39561,0],[39561,24949,39560,0],[39560,24949,39559,0],[39559,24951,24950,0],[39563,33899,25375,0],[39563,24949,39561,0],[39596,33835,39562,0],[39596,39562,39568,0],[39568,39569,39567,0],[39567,39569,39564,0],[39567,39564,33837,0],[39567,33837,39565,0],[39565,39597,39566,0],[39565,39566,39567,0],[39568,39567,39566,0],[39562,39561,39568,0],[39568,39561,39569,0],[39570,39558,39557,0],[39558,39570,39560,0],[39569,39595,39564,0],[39564,39595,39571,0],[39595,39570,39571,0],[39571,39551,33838,0],[39551,39571,39570,0],[39551,39570,39572,0],[39572,39570,39557,0],[39572,39557,39590,0],[39590,39553,39572,0],[39572,39553,39573,0],[39561,39560,39569,0],[39574,33845,33843,0],[33866,39576,39555,0],[39576,33865,39554,0],[39554,33847,39575,0],[39574,39575,33847,0],[33865,33847,39554,0],[39553,39577,39552,0],[39578,39577,39582,0],[39578,39582,39579,0],[39579,39582,39546,0],[39546,33840,39579,0],[39580,39578,39581,0],[39580,39581,39551,0],[39552,39578,39580,0],[39552,39580,39573,0],[39573,39580,39572,0],[39572,39580,39551,0],[39578,39552,39577,0],[39578,39579,33885,0],[39578,33885,39581,0],[33841,39546,33842,0],[33842,39546,33843,0],[33843,39546,39582,0],[39582,39577,39574,0],[39582,39574,33843,0],[33877,33849,33876,0],[33836,39597,39583,0],[39598,24055,39584,0],[24055,39585,39584,0],[39584,39585,39586,0],[39584,39586,33901,0],[39586,39589,33900,0],[39585,39599,39586,0],[39589,24054,39587,0],[39587,24054,25374,0],[39589,39586,39588,0],[39588,39586,39599,0],[39597,33886,39583,0],[39583,33886,24057,0],[39583,24057,24055,0],[33836,39583,39598,0],[39598,39583,24055,0],[39591,39556,39555,0],[39591,39555,39554,0],[39554,39575,39591,0],[39556,39591,39590,0],[39557,39556,39590,0],[39593,39592,39556,0],[39593,39556,39558,0],[39558,39594,24950,0],[24950,39594,39559,0],[39555,39592,33866,0],[33866,39592,24952,0],[39554,39555,39576,0],[24950,39593,39558,0],[39593,24950,24952,0],[39593,24952,39592,0],[39560,39570,39595,0],[39595,39569,39560,0],[39568,39566,39596,0],[39596,39566,39597,0],[39596,39597,33836,0],[24056,33810,33811,0],[33811,33810,39505,0],[33811,39505,33809,0],[39588,39599,33809,0],[39588,33809,39600,0],[25374,24054,39601,0],[39601,24054,39600,0],[25437,39603,39602,0],[39603,25435,25433,0],[25435,39603,25436,0],[39448,25436,25437,0],[25437,25436,39603,0],[25435,25434,25433,0],[24064,33883,39604,0],[39604,33883,33884,0],[39604,33884,24912,0],[39604,24912,24930,0],[25418,24873,39605,0],[39605,33812,25418,0],[24054,39589,39588,0],[25487,25469,25468,0],[23945,33792,24822,0],[33791,23945,24822,0],[24024,24023,39606,0],[39606,24023,24011,0],[24024,39607,24025,0],[24025,39607,39609,0],[39606,24010,39607,0],[39606,39607,24024,0],[39607,39608,39609,0],[39609,39608,25519,0],[39609,25519,39612,0],[25519,39608,23955,0],[24027,39610,24031,0],[24027,24031,39611,0],[24031,39612,25518,0],[39612,24031,39609,0],[39609,24031,39610,0],[24048,25416,24047,0],[24037,24028,24027,0],[24037,24027,39611,0],[24034,25506,39613,0],[39613,25506,25507,0],[24034,39613,24036,0],[24036,39613,34176,0],[25312,39613,25507,0],[34176,25318,39614,0],[39614,25297,25298,0],[39614,25298,34176,0],[25443,39509,39511,0],[24903,39477,39475,0],[39475,39476,24903,0],[39615,24921,39481,0],[24922,39615,24939,0],[24939,39615,39481,0],[24939,39481,24934,0],[33874,24954,39616,0],[39616,24954,24955,0],[39616,24955,33870,0],[33870,33873,39616,0],[39617,24959,33879,0],[39617,33879,33876,0],[33878,33879,24973,0],[33878,24973,24972,0],[39619,24972,25184,0],[33878,33880,33877,0],[39618,33878,39619,0],[24972,39619,33878,0],[39618,33880,33878,0],[24346,24345,24269,0],[24269,24345,24268,0],[24975,24964,24984,0],[39620,24976,24984,0],[39620,24984,24974,0],[39620,24974,24967,0],[39620,39621,24968,0],[24511,24489,24506,0],[24491,24506,24354,0],[24354,24506,24489,0],[24511,24506,24509,0],[24509,24506,24510,0],[24499,24500,24362,0],[24362,24500,24494,0],[39622,25221,25233,0],[25228,39623,25219,0],[25219,39623,39624,0],[25215,25214,39624,0],[39624,25214,25219,0],[39622,25228,39625,0],[39625,25228,25219,0],[25228,39622,25227,0],[25227,39622,25226,0],[25212,39622,39625,0],[25215,39624,24404,0],[24353,24352,39626,0],[39626,24352,39226,0],[24332,24336,39627,0],[39627,24336,24339,0],[39629,39630,24265,0],[24265,39630,24264,0],[39629,24265,24266,0],[24266,39222,39629,0],[39629,39222,39628,0],[24328,24367,24375,0],[24498,24501,24496,0],[24373,39631,24372,0],[24372,39631,24365,0],[39631,24373,24364,0],[24380,24365,24444,0],[24444,24365,24379,0],[24479,24444,24379,0],[24459,24450,24451,0],[24459,24451,24443,0],[24388,24378,24377,0],[24402,24478,24388,0],[24402,24388,24401,0],[39632,24505,24504,0],[39632,24359,24360,0],[39632,24360,24468,0],[39632,24468,24505,0],[24359,39632,39633,0],[39633,39632,39636,0],[24358,39633,39634,0],[39636,39635,39634,0],[39634,24357,24358,0],[39636,48849,39635,0],[39633,39636,39634,0],[39632,24504,39636,0],[39636,24504,48849,0],[24407,24409,24426,0],[24426,24410,45554,0],[24426,45554,24427,0],[24436,24447,24437,0],[24450,39088,24452,0],[24453,39637,24454,0],[39638,24454,39087,0],[39087,24454,39637,0],[24452,24451,24450,0],[39824,39639,39641,0],[39641,39639,39640,0],[39641,39640,25065,0],[25065,25066,39641,0],[39824,39641,39642,0],[39824,39642,25057,0],[25066,25065,25061,0],[25061,25059,25066,0],[25066,25059,25058,0],[25060,25059,25061,0],[24443,24451,39650,0],[39650,24451,24452,0],[24444,24443,24380,0],[24380,24443,39643,0],[24400,39644,24384,0],[24384,39644,39645,0],[24384,39645,24382,0],[39645,39646,39143,0],[39648,39647,39649,0],[39649,24381,24454,0],[39084,39647,39169,0],[39169,39647,39648,0],[39648,39649,39638,0],[39638,39649,24454,0],[24452,24453,39650,0],[39650,24453,39652,0],[39650,39651,39643,0],[39643,24443,39650,0],[39650,39652,39651,0],[39651,39652,24394,0],[25061,39653,25062,0],[25062,39653,25063,0],[25063,39653,37531,0],[39653,25061,25065,0],[37442,37506,37441,0],[37441,37506,37505,0],[37506,37443,37507,0],[37443,37444,37507,0],[37507,37444,39654,0],[39654,37446,39656,0],[39656,37448,37447,0],[37446,39654,37445,0],[39656,39655,39654,0],[39655,37508,39654,0],[37676,37675,37534,0],[37535,37534,37675,0],[37676,25944,37675,0],[25062,39657,37537,0],[39657,25063,37532,0],[25063,37531,37677,0],[37677,37533,25063,0],[37547,37546,37541,0],[39639,39876,39658,0],[39639,39658,39659,0],[39659,39658,39679,0],[39679,39680,39660,0],[39660,39680,39661,0],[39660,39661,39668,0],[39878,39668,37528,0],[39662,37449,37448,0],[39662,37528,39663,0],[37449,39664,39665,0],[37449,39665,39666,0],[37451,39666,39667,0],[37514,39667,39799,0],[37514,39799,37452,0],[37451,37450,39666,0],[39666,37450,37449,0],[37449,39663,39664,0],[39663,37449,39662,0],[39664,39663,39668,0],[39887,39661,39669,0],[39830,39829,39670,0],[39670,39829,39671,0],[39670,39671,39834,0],[39671,39672,39673,0],[39787,39673,39675,0],[39674,39675,39794,0],[39675,39826,39676,0],[39676,39826,39825,0],[39676,39825,39677,0],[39669,39661,39680,0],[39680,39679,39658,0],[37548,39681,37448,0],[37548,37448,37445,0],[39662,37448,39681,0],[37448,37446,37445,0],[39682,37514,37509,0],[37509,39683,39682,0],[39685,39693,39686,0],[39689,39687,39688,0],[39689,39709,39690,0],[39687,39690,39711,0],[26080,39685,39691,0],[39691,39685,39686,0],[39691,39686,39687,0],[39687,39689,39690,0],[39687,39686,39688,0],[39692,39688,39686,0],[39685,39684,39693,0],[39693,39684,37511,0],[39693,37511,39694,0],[39686,39694,39692,0],[39692,39694,39697,0],[39692,39697,39698,0],[39699,39689,39688,0],[39699,39688,39698,0],[39694,39686,39693,0],[37511,39684,37509,0],[37509,39684,37515,0],[26080,39695,39685,0],[39685,39695,39684,0],[39696,39691,39687,0],[39696,39687,39711,0],[39694,39714,39697,0],[48677,39700,48676,0],[48676,39700,48679,0],[48679,48674,39701,0],[39701,48674,39722,0],[39701,39722,48689,0],[48689,39722,39702,0],[48689,39702,39732,0],[48689,39732,26059,0],[39703,39700,39704,0],[26076,39704,39705,0],[26075,39706,48686,0],[26075,48686,39707,0],[39707,48686,48666,0],[48666,48686,48688,0],[39708,39703,39704,0],[39708,39710,39709,0],[39709,39710,39690,0],[39690,39710,39711,0],[39710,39712,39711,0],[39712,26158,26078,0],[39712,26078,39713,0],[39713,26078,48729,0],[48729,26079,26091,0],[39712,39713,39711,0],[39711,39713,39696,0],[39696,39713,39691,0],[39709,39703,39708,0],[39709,39689,39703,0],[39703,39689,39699,0],[37512,39715,48737,0],[48737,39715,39716,0],[37512,48736,39714,0],[39714,48736,39697,0],[37452,39715,37513,0],[39715,37512,37513,0],[37511,39714,39694,0],[39717,48736,39718,0],[39720,37455,37479,0],[39929,37479,37478,0],[39717,39718,39721,0],[39722,39721,39723,0],[39722,39723,39702,0],[39702,39723,39731,0],[39731,39723,39729,0],[7955,39724,39725,0],[39725,39726,39727,0],[39727,7955,39725,0],[7955,39728,39724,0],[39728,39730,39724,0],[39724,39730,39729,0],[7955,20053,39728,0],[7954,7953,39730,0],[39730,7953,39729,0],[39729,7953,39731,0],[39731,7952,39732,0],[39732,7952,20069,0],[20069,26059,39732,0],[39702,39731,39732,0],[39733,39809,39734,0],[39736,39735,39737,0],[39737,39822,39736,0],[39736,39822,39738,0],[39805,39733,39734,0],[39740,39810,39806,0],[39742,39741,39897,0],[39742,39897,39816,0],[39758,39743,39744,0],[39746,39744,25098,0],[39746,25098,39902,0],[25098,39744,39745,0],[39744,39746,39760,0],[39760,39746,39901,0],[39760,39901,39899,0],[39760,39899,39748,0],[39747,39748,39759,0],[39749,39750,39907,0],[39903,39904,39759,0],[39903,39759,39748,0],[39904,39750,39759,0],[39907,39750,39904,0],[39750,39751,39752,0],[39747,39752,39754,0],[39747,39754,39753,0],[39754,40042,39814,0],[39757,39756,39743,0],[39743,39758,39757,0],[39755,39757,39753,0],[39814,39755,39753,0],[39814,39753,39754,0],[39757,39758,39747,0],[39757,39747,39753,0],[39758,39744,39760,0],[39758,39760,39747,0],[39747,39759,39752,0],[39752,39759,39750,0],[39748,39747,39760,0],[39744,39743,39745,0],[25096,39764,25097,0],[39745,39743,39764,0],[39745,39764,25096,0],[39743,39898,39764,0],[39764,39898,39761,0],[39761,39762,39763,0],[39763,40044,25097,0],[25097,39764,39763,0],[39763,39764,39761,0],[39896,39741,39804,0],[39804,39806,39765,0],[39882,39895,39889,0],[39882,39889,39766,0],[39767,39768,39880,0],[39880,39768,39890,0],[39890,39770,39769,0],[39769,39770,37453,0],[37453,37452,39769,0],[39846,39879,39803,0],[39884,39846,39771,0],[39843,39847,39772,0],[39772,39847,39848,0],[39772,39848,39870,0],[39870,39848,39773,0],[39849,39838,39774,0],[39775,39776,39861,0],[39776,39777,39784,0],[39777,39836,39779,0],[39779,39836,39778,0],[39779,39778,39780,0],[39781,39782,39780,0],[39780,39782,39779,0],[39783,39784,39777,0],[39783,39777,39779,0],[39781,25077,39782,0],[39782,40074,39783,0],[39783,40074,40050,0],[39784,40050,39785,0],[39784,39785,39858,0],[39861,39776,39784,0],[39861,39784,39858,0],[39783,39779,39782,0],[39674,39786,39787,0],[39787,39675,39674,0],[39788,39674,39794,0],[39794,39675,39676,0],[39786,39674,25052,0],[25052,39674,39788,0],[39790,39788,39793,0],[39790,39793,39789,0],[39789,25056,39790,0],[39790,39791,39788,0],[39788,39791,25052,0],[39791,39790,39792,0],[25054,39792,39790,0],[25054,39790,25055,0],[39788,39794,39793,0],[39789,39793,39678,0],[39676,39793,39794,0],[39678,39793,39677,0],[39677,39793,39676,0],[39781,39780,39786,0],[39786,39780,39797,0],[39786,39797,39787,0],[39787,39797,39795,0],[39837,39777,39796,0],[39796,39777,39776,0],[39836,39777,39837,0],[39780,39778,39797,0],[39778,39795,39797,0],[39787,39795,39834,0],[39787,39834,39671,0],[39803,39879,39798,0],[39799,39666,39800,0],[39801,39800,39665,0],[39801,39665,39802,0],[39844,39887,39669,0],[39800,39666,39665,0],[39802,39665,39886,0],[39799,39800,39798,0],[39798,39800,39803,0],[39666,39799,39667,0],[37452,39799,39769,0],[39798,39879,39769,0],[39741,39896,39897,0],[39820,39805,39808,0],[39806,39804,39741,0],[39806,39810,39765,0],[39765,39810,39895,0],[39889,39895,39807,0],[39734,39808,39805,0],[39808,39807,39820,0],[39820,39807,39739,0],[39739,39807,39810,0],[39821,39805,39820,0],[39820,39739,39811,0],[39811,39739,39740,0],[39740,39817,39812,0],[39811,39812,19988,0],[19988,39812,39817,0],[19988,39817,19987,0],[19989,19987,39819,0],[39986,39813,39814,0],[39986,39814,39987,0],[39987,39814,40042,0],[39987,40042,7998,0],[39814,39813,39755,0],[39755,39813,39756,0],[19989,39815,39756,0],[19989,39756,39813,0],[19987,39817,39819,0],[19989,39819,39742,0],[19989,39742,39815,0],[39815,39742,39816,0],[39819,39818,39741,0],[39741,39818,39806,0],[39806,39818,39740,0],[39739,39810,39740,0],[39822,39823,39738,0],[39738,39823,37466,0],[39737,39735,39821,0],[39805,39821,39735,0],[39817,39818,39819,0],[39742,39819,39741,0],[39876,39639,39824,0],[40049,39677,39825,0],[39675,39673,39826,0],[39826,39673,39825,0],[39825,39673,39672,0],[39832,39827,39828,0],[39829,39830,39828,0],[39828,39830,39845,0],[39831,39845,39669,0],[39669,39680,39831,0],[39845,39831,39832,0],[39845,39832,39828,0],[39828,39827,39829,0],[39671,39829,39672,0],[39672,39829,39827,0],[39672,39827,39825,0],[40049,39825,39827,0],[40049,39827,39876,0],[39876,39827,39832,0],[39677,40049,39833,0],[39677,39833,39678,0],[39833,40049,25057,0],[25057,40049,39824,0],[39835,39795,39836,0],[39776,39775,39796,0],[39796,39838,39837,0],[39837,39838,39836,0],[39836,39838,39835,0],[39835,39838,39839,0],[39836,39795,39778,0],[39834,39795,39840,0],[39840,39795,39835,0],[39771,39842,39843,0],[39802,39771,39846,0],[39771,39802,39886,0],[39771,39886,39842,0],[39886,39844,39842,0],[39830,39842,39845,0],[39845,39842,39844,0],[39845,39844,39669,0],[39801,39802,39846,0],[39800,39801,39803,0],[39801,39846,39803,0],[39842,39847,39843,0],[39773,39848,39849,0],[39849,39848,39839,0],[39849,39839,39838,0],[39842,39830,39841,0],[39839,39848,39841,0],[39840,39839,39670,0],[39772,39870,39867,0],[39867,39870,39869,0],[39867,39869,39850,0],[39852,39851,39850,0],[39852,39850,39875,0],[39875,39850,39869,0],[39909,25095,39871,0],[39909,39871,39863,0],[39863,39872,39854,0],[39854,39872,39874,0],[39854,39874,39860,0],[39853,39854,39855,0],[40075,39866,39856,0],[39858,39785,40067,0],[39856,39866,39859,0],[39854,39860,39855,0],[39855,39860,39866,0],[39856,39859,39862,0],[39856,39862,39857,0],[39857,39862,39858,0],[39858,40067,39857,0],[39858,39862,39861,0],[39860,39859,39866,0],[39854,39853,39863,0],[39865,39855,40076,0],[39865,40076,25092,0],[39865,39864,39855,0],[40076,39855,39866,0],[39855,39864,39853,0],[39850,39851,40045,0],[39850,40045,39867,0],[25094,25095,39868,0],[25094,39868,39900,0],[39869,39871,39875,0],[25095,39875,39871,0],[39871,39873,39872,0],[39873,39849,39774,0],[39873,39774,39872,0],[39849,39873,39773,0],[39773,39873,39871,0],[39871,39869,39773,0],[39773,39869,39870,0],[39863,39871,39872,0],[39774,39775,39874,0],[39874,39862,39859,0],[39862,39874,39775,0],[39775,39861,39862,0],[39859,39860,39874,0],[39874,39872,39774,0],[39876,39824,40049,0],[39680,39658,39831,0],[39673,39787,39671,0],[39659,39640,39639,0],[39659,39679,39877,0],[39877,39679,39660,0],[39660,39668,39878,0],[39878,37528,37547,0],[39877,37530,39640,0],[39659,39877,39640,0],[37530,25064,39640,0],[25065,39640,25064,0],[37530,39877,39878,0],[39878,39877,39660,0],[39767,39880,39881,0],[39767,39881,40043,0],[40043,39881,40046,0],[40045,40046,39867,0],[39767,40043,39766,0],[39882,39766,40048,0],[40048,40047,39883,0],[39882,40048,39883,0],[39765,39895,39883,0],[39883,39895,39882,0],[39765,39883,39804,0],[39804,39883,40047,0],[39804,40047,39762,0],[39762,40047,39763,0],[39881,39880,39885,0],[39846,39884,39885,0],[39885,39884,39881,0],[40046,39881,39884,0],[39771,39843,39884,0],[39884,39843,40046,0],[39846,39885,39879,0],[39879,39885,39890,0],[39890,39885,39880,0],[39879,39890,39769,0],[39665,39664,39886,0],[39886,39887,39844,0],[39661,39887,39668,0],[39886,39664,39887,0],[39887,39664,39668,0],[39867,40046,39772,0],[39772,40046,39843,0],[39767,39766,39889,0],[39888,39807,39891,0],[39891,39807,39808,0],[39767,39889,39768,0],[39889,39888,39768,0],[39768,39888,39894,0],[39894,39888,39891,0],[39894,39891,39892,0],[39892,39891,39893,0],[39893,39891,39809,0],[39893,39809,37457,0],[37457,37456,39893,0],[37453,39770,37454,0],[37454,39770,39894,0],[39768,39894,39890,0],[39890,39894,39770,0],[39716,37454,39892,0],[39716,39892,39893,0],[39894,39892,37454,0],[39809,39808,39734,0],[39809,39891,39808,0],[39895,39810,39807,0],[39898,39816,39761,0],[39816,39897,39761,0],[39761,39897,39762,0],[39762,39897,39896,0],[39762,39896,39804,0],[39743,39756,39898,0],[39898,39756,39815,0],[39815,39816,39898,0],[39899,39900,39908,0],[39899,39901,39900,0],[39900,39901,39902,0],[39746,39902,39901,0],[39903,39908,25093,0],[39908,39903,39899,0],[39906,25091,39905,0],[39749,7996,39750,0],[39905,39907,39904,0],[39903,25093,39904,0],[39904,25093,39905,0],[25093,25092,39906,0],[39864,39900,39868,0],[39864,39868,39853,0],[39853,39868,39863,0],[39909,39863,39868,0],[39864,39865,39908,0],[39735,37462,39805,0],[39805,37462,39733,0],[39735,39736,37462,0],[37462,39736,39738,0],[37461,37472,39910,0],[37461,39910,37474,0],[37474,39910,39913,0],[37474,39913,37475,0],[39929,37478,39926,0],[39929,39926,39912,0],[39912,39927,39725,0],[39912,39725,48732,0],[48732,39725,39724,0],[39911,37476,37475,0],[39911,37475,39913,0],[39914,39913,39928,0],[39914,39928,39915,0],[39914,39915,39923,0],[39923,39915,39916,0],[39918,39919,7956,0],[39918,39917,39919,0],[39919,39917,39920,0],[39920,39917,39916,0],[39921,39727,39922,0],[39923,39922,39924,0],[39922,39923,39921,0],[39727,39726,39922,0],[39922,39726,39925,0],[39922,39925,39924,0],[39914,39924,39913,0],[39913,39924,39925,0],[39912,39926,39927,0],[39925,39927,39926,0],[39913,39925,39911,0],[37476,39911,39925,0],[37476,39925,39926,0],[39926,37478,37476,0],[39918,39921,39917,0],[39917,39921,39916,0],[39916,39921,39923,0],[39928,39913,39910,0],[37478,37477,37476,0],[48731,39929,39912,0],[39929,48731,39720,0],[37479,39929,39720,0],[39927,39925,39726,0],[39726,39725,39927,0],[39930,20045,20049,0],[19873,7965,39931,0],[39931,7965,19872,0],[19874,19873,39932,0],[19873,39931,19863,0],[19873,19863,39932,0],[39932,19863,19915,0],[19919,19920,19914,0],[19919,19914,39942,0],[39940,19914,39939,0],[39939,19914,19915,0],[19914,39940,39942,0],[19861,39937,19868,0],[39933,39937,39934,0],[39933,39934,19913,0],[39933,19862,39937,0],[39936,19860,19300,0],[19860,39936,19861,0],[39934,39937,39935,0],[39935,39937,39936,0],[39937,19861,39936,0],[19913,39934,19301,0],[19913,19301,39938,0],[39938,19912,19913,0],[39939,19912,39940,0],[39942,39940,39941,0],[39941,40385,19911,0],[19911,39943,39941,0],[39941,19909,39942,0],[19919,39942,19909,0],[39939,19915,19913,0],[39952,39943,19910,0],[39952,19910,39944,0],[39952,39944,19844,0],[39945,39946,39947,0],[39948,39950,39949,0],[39948,39949,19876,0],[19844,39951,39945,0],[19876,39949,40384,0],[39948,39943,39950,0],[39950,39943,39947,0],[39947,39943,39952,0],[39947,39952,39945,0],[39945,39952,19844,0],[19844,39944,39953,0],[19837,39953,19830,0],[39944,19910,19917,0],[19917,19830,39944,0],[39941,39943,39948,0],[39954,26214,40402,0],[40402,26214,39959,0],[40402,39959,20023,0],[39954,39956,39955,0],[39955,39956,39957,0],[39955,39957,39958,0],[20020,39959,47720,0],[20024,20022,39960,0],[20024,39960,39961,0],[39962,48746,40410,0],[20013,39960,20022,0],[20012,20013,39963,0],[20022,39964,39963,0],[20022,39963,20013,0],[20024,39961,20025,0],[20025,39961,20026,0],[20012,39965,20013,0],[20013,39965,39966,0],[39965,20065,20064,0],[39965,20064,20063,0],[20065,39965,20012,0],[20065,20012,39968,0],[20011,39968,20012,0],[39966,39965,39967,0],[20013,39966,39960,0],[39966,39967,48746,0],[40410,48746,39969,0],[40410,39969,20014,0],[20014,39969,39970,0],[20014,39970,19896,0],[39970,20068,19896,0],[20015,39985,39971,0],[39971,39985,39972,0],[39974,39973,19897,0],[39974,19897,19899,0],[19899,19900,39975,0],[39975,19900,19842,0],[39975,19842,19841,0],[19823,19841,19839,0],[19841,19823,39983,0],[39983,40403,40407,0],[39976,40405,40408,0],[39977,39978,39979,0],[19899,39980,39974,0],[39974,39980,47729,0],[39974,47729,39981,0],[39981,47729,47731,0],[39981,39972,39973,0],[39971,39972,47724,0],[20015,39971,20016,0],[39981,39973,39974,0],[19899,39975,39980,0],[39980,39975,39982,0],[39980,39982,47729,0],[47729,39982,39979,0],[39979,39982,39983,0],[39979,39983,40407,0],[40408,39977,40407,0],[40408,40407,39976,0],[39977,39979,40407,0],[39983,39982,19841,0],[19823,19839,19824,0],[39973,39972,39984,0],[39984,39985,19896,0],[39984,39972,39985,0],[20015,20014,19896,0],[20015,19896,39985,0],[19988,39822,39737,0],[19988,39737,39811,0],[39822,19988,39823,0],[39986,19989,39813,0],[19991,19990,39986,0],[39986,39987,19991,0],[8000,19991,39987,0],[19996,39990,39989,0],[39989,7958,39988,0],[19996,39989,19983,0],[19983,39989,39988,0],[39988,37468,19983,0],[39991,39992,20042,0],[20042,39992,19937,0],[7961,19936,19997,0],[7959,19982,39991,0],[39991,19982,39992,0],[39992,19936,19937,0],[39992,19997,19936,0],[7959,7958,39990,0],[39990,7958,39989,0],[8019,8016,39994,0],[8019,39994,39993,0],[8016,8001,39994,0],[8020,39993,39995,0],[8026,39996,8025,0],[39996,8026,39995,0],[39994,8001,39997,0],[39993,39997,39998,0],[39993,39998,39995,0],[39995,39998,39996,0],[8000,7999,39999,0],[7997,8027,7998,0],[8000,39999,39997,0],[39997,39999,39998,0],[39998,39999,40000,0],[40000,39996,39998,0],[39999,7999,40000,0],[7999,8027,40000,0],[39996,40000,8025,0],[8025,40000,8027,0],[40002,7993,40001,0],[8047,40002,40010,0],[8047,40010,8048,0],[40002,8047,40009,0],[40004,40009,40003,0],[40004,40003,40005,0],[40006,40007,8029,0],[8029,40007,40008,0],[40008,40007,7984,0],[7984,40007,7983,0],[7983,40007,40006,0],[7983,40006,8030,0],[8030,40006,48740,0],[8030,48740,40003,0],[40003,48740,40005,0],[7985,8029,40028,0],[40028,40008,8040,0],[8040,40008,7984,0],[40002,40009,40004,0],[40002,40004,7993,0],[7993,40004,7992,0],[8047,7981,40009,0],[40009,7981,40003,0],[40002,40001,40010,0],[40010,40001,7994,0],[40011,40013,40012,0],[8052,40013,8053,0],[40013,40011,8053,0],[8053,40011,7994,0],[8185,40014,40012,0],[40010,7994,8048,0],[8048,7994,40011,0],[8048,40011,40014,0],[40012,40014,40011,0],[40014,8049,8048,0],[8179,7995,8260,0],[8179,8260,45547,0],[45547,8260,8261,0],[8176,8260,7995,0],[40016,8260,8259,0],[40016,40020,40015,0],[40015,40020,8303,0],[40017,8303,8257,0],[40018,40017,8256,0],[8256,8302,40018,0],[40018,40019,40017,0],[40019,8264,8303,0],[40019,8303,40017,0],[8257,8303,40020,0],[40020,40016,8259,0],[40020,8259,8258,0],[40020,8258,40021,0],[8257,40021,45459,0],[8257,45459,40022,0],[40021,8258,8173,0],[8258,8259,8174,0],[45459,45458,40022,0],[40022,8222,8255,0],[8255,8222,8254,0],[8254,8222,8223,0],[8230,8331,8221,0],[40022,8255,8256,0],[40004,7991,7992,0],[40004,40005,7991,0],[37470,7956,39919,0],[37469,39920,37464,0],[39920,39915,37464,0],[39910,37473,39928,0],[37473,37464,39928,0],[39928,37464,39915,0],[39918,7956,40023,0],[39918,20050,20045,0],[20050,39918,40023,0],[40024,40023,7958,0],[19935,19936,7961,0],[19935,7961,7962,0],[19935,7962,40026,0],[40026,7962,48742,0],[7963,19976,40027,0],[19977,40027,19999,0],[40029,19966,40030,0],[40030,19966,8040,0],[40030,8040,8045,0],[40030,8045,40031,0],[40031,40115,40030,0],[40115,7971,40032,0],[40032,7971,7970,0],[40032,7970,40029,0],[40030,40115,40032,0],[40030,40032,40029,0],[8045,40033,40031,0],[40031,40033,40034,0],[40034,40033,40035,0],[40035,40033,8041,0],[40031,40034,40036,0],[40036,40034,40035,0],[19968,40029,7970,0],[7971,8075,40037,0],[40037,8076,40116,0],[40116,8076,8077,0],[40116,8077,40117,0],[19867,40117,8079,0],[8079,40117,8077,0],[8076,40037,8075,0],[8075,7971,8074,0],[8074,7971,40039,0],[7971,40115,40039,0],[40040,8073,7973,0],[40040,7973,40041,0],[7973,8073,7972,0],[40039,7972,40038,0],[40038,7972,8073,0],[40041,40100,19947,0],[19947,8072,40041,0],[40041,8072,40040,0],[8074,40038,19960,0],[8074,19960,19961,0],[19960,40038,19945,0],[19945,40038,47619,0],[25097,40045,39851,0],[40045,40044,40046,0],[40046,40044,40043,0],[40045,25097,40044,0],[39766,40044,40048,0],[40047,40044,39763,0],[40047,40048,40044,0],[39909,39868,25095,0],[39658,39876,39832,0],[25048,40050,40051,0],[25048,40051,25049,0],[40050,25048,40052,0],[40050,40052,39785,0],[40053,25078,25073,0],[25073,25074,40053,0],[40053,25074,25079,0],[25074,25075,40054,0],[25047,40054,25046,0],[25074,40054,25079,0],[40054,25075,25046,0],[25075,25076,25046,0],[25076,40055,40065,0],[45549,40057,45557,0],[45549,45557,40058,0],[25134,40060,25133,0],[25134,25135,40058,0],[48848,40056,40057,0],[40057,40056,40059,0],[40057,40059,45557,0],[40058,24418,24415,0],[40060,40058,24415,0],[40058,40060,25134,0],[40055,40056,40062,0],[40055,40062,40061,0],[40061,40062,40063,0],[25130,45548,45549,0],[40055,40061,40065,0],[25044,40065,40061,0],[40061,40063,25106,0],[25106,25128,40061,0],[25106,40063,25043,0],[40063,40064,25043,0],[25043,40064,25042,0],[40056,48848,40062,0],[40062,48848,40063,0],[40052,25048,40066,0],[40066,25048,25047,0],[40050,39784,39783,0],[40050,40074,40051,0],[25049,40051,25050,0],[25105,40068,40066,0],[39785,40052,40066,0],[40066,25104,25105,0],[25105,40073,40068,0],[40066,40068,39785,0],[39785,40068,40067,0],[40067,40068,40072,0],[40072,40081,40069,0],[39857,40067,40072,0],[39857,40072,39856,0],[39856,40072,40071,0],[39856,40071,40075,0],[40075,40071,40070,0],[40070,40071,40069,0],[40069,40071,40072,0],[40068,40073,40072,0],[25077,40074,39782,0],[40074,25077,25051,0],[40074,25051,40051,0],[25050,40051,25051,0],[39839,39840,39835,0],[39670,39839,39841,0],[39670,39841,39830,0],[25049,40054,25047,0],[25047,25048,25049,0],[39796,39775,39838,0],[39838,39775,39774,0],[40081,40079,40069,0],[40079,40080,40078,0],[40069,40079,40070,0],[40070,25091,40075,0],[40075,25091,40076,0],[40075,40076,39866,0],[40077,40079,25100,0],[25100,40079,40078,0],[40078,40080,25089,0],[40079,40077,40070,0],[25091,40070,40077,0],[40081,25101,40079,0],[40079,25101,40080,0],[25102,40080,25101,0],[25101,40081,40083,0],[40081,40072,40073,0],[25103,25105,25084,0],[40082,40083,25103,0],[25105,25103,40083,0],[40083,40081,40073,0],[25103,25086,40082,0],[39754,39752,39751,0],[40042,39751,7997,0],[39751,40042,39754,0],[7997,39751,7996,0],[39750,7996,39751,0],[8188,8187,40085,0],[40085,40089,8189,0],[8189,40089,40086,0],[8327,40086,40094,0],[40087,40094,40084,0],[40087,40084,40088,0],[40094,40086,40084,0],[40084,40086,40089,0],[40089,40085,40084,0],[8189,40086,40090,0],[40090,40086,8328,0],[8328,40091,40090,0],[40090,40091,8211,0],[8211,40091,8198,0],[8324,40091,8328,0],[8324,8190,40091,0],[40091,8190,8198,0],[8198,8190,8191,0],[8325,40092,8264,0],[8325,8265,8329,0],[40092,8326,8327,0],[40092,8327,40094,0],[40086,8327,8328,0],[8264,40093,8262,0],[8264,40092,40093,0],[40093,40092,40094,0],[40094,40087,40093,0],[40096,8062,40095,0],[40096,19964,8061,0],[40096,8061,8062,0],[7976,40096,40095,0],[19963,40095,8063,0],[19963,8063,8064,0],[19963,8064,8065,0],[19963,8065,8066,0],[7977,40097,48846,0],[48845,48846,40125,0],[40122,40098,8043,0],[8043,40098,8044,0],[8044,40098,40099,0],[40098,40125,40099,0],[40099,40125,40097,0],[48846,40097,40125,0],[8044,40100,40041,0],[40101,8067,40112,0],[40101,40112,40102,0],[40102,40112,40103,0],[40103,8195,19953,0],[19950,19949,8069,0],[8069,19949,8070,0],[19954,19953,8193,0],[19277,40104,40105,0],[40106,10378,40107,0],[40106,40107,40104,0],[40104,40107,40108,0],[19272,40108,19286,0],[40108,19272,40105,0],[40108,40107,19287,0],[10377,40104,19277,0],[10377,19277,10376,0],[40114,10411,10409,0],[40114,10409,10427,0],[40114,10427,10426,0],[10420,10386,40109,0],[40109,10386,10387,0],[40109,10389,40110,0],[40109,40110,40111,0],[10420,40109,40111,0],[19263,40111,10416,0],[40111,40110,10416,0],[10389,40109,10387,0],[8270,8272,8321,0],[8194,8321,19955,0],[19955,8321,8272,0],[8313,8105,40113,0],[40113,8319,8313,0],[10425,10424,40114,0],[10424,10431,10383,0],[40115,7972,40039,0],[40118,40116,40117,0],[19867,19870,40117,0],[40117,19870,40118,0],[40118,19870,40119,0],[40119,19870,19871,0],[40118,40119,40116,0],[7969,40119,19871,0],[8033,40120,40124,0],[8041,8034,8042,0],[8042,8034,40124,0],[8034,8041,40121,0],[8037,40121,8039,0],[8039,40121,8040,0],[40033,40121,8041,0],[40121,8037,8034,0],[8033,8032,40120,0],[48845,40122,40123,0],[40124,40123,8042,0],[8042,40123,40122,0],[40122,48845,40098,0],[40098,48845,40125,0],[8032,7979,40120,0],[40127,47620,19939,0],[19858,40128,19857,0],[19857,40128,40132,0],[40132,40128,40130,0],[40132,40130,40131,0],[40129,40133,19308,0],[40129,19308,40134,0],[40134,19308,19306,0],[40133,40131,19308,0],[40128,40126,40130,0],[40130,40126,19310,0],[40130,19310,40131,0],[40131,19310,19309,0],[40131,19309,19308,0],[40135,19309,19291,0],[10438,10439,19312,0],[19312,47615,19291,0],[19312,19291,19309,0],[19312,19309,19310,0],[40136,19307,40135,0],[19939,19311,40127,0],[40127,19311,40126,0],[40127,40126,40128,0],[7969,20000,7968,0],[19301,19857,40132,0],[39938,40132,40133,0],[19833,19303,40137,0],[19833,40137,19836,0],[40138,19295,19294,0],[19298,40442,40140,0],[40476,40444,40145,0],[40476,40145,40475,0],[40440,40475,40474,0],[40148,40147,14057,0],[14057,40147,40149,0],[14057,40149,14056,0],[14056,40149,14055,0],[40149,40147,40150,0],[40149,40150,14055,0],[14055,40150,14054,0],[40147,40146,40150,0],[40148,14058,40153,0],[40153,14058,40151,0],[40151,14058,40381,0],[40141,40142,19851,0],[40142,40154,19852,0],[40148,40153,40147,0],[40152,40153,40151,0],[40152,40151,40154,0],[40142,40143,40154,0],[40141,19298,40142,0],[40142,19298,40140,0],[40143,40140,40144,0],[40143,40142,40140,0],[40444,40155,40156,0],[40444,40156,40158,0],[40444,40158,40145,0],[40145,40158,14051,0],[47612,40138,19294,0],[47610,19294,19293,0],[40138,47612,40139,0],[40156,40157,47617,0],[40156,47617,40158,0],[40158,47617,14051,0],[47613,40160,40161,0],[40163,10443,43563,0],[43563,40164,43566,0],[43566,40164,40165,0],[40166,40165,40175,0],[40166,40175,40167,0],[40166,40167,40198,0],[40198,40196,40166,0],[40166,40196,40168,0],[40166,40168,40165,0],[40165,40168,40199,0],[40164,43563,40170,0],[40170,40173,40169,0],[40175,40165,40169,0],[40169,40165,40164,0],[40169,40164,40170,0],[43563,10443,40170,0],[40170,40177,40172,0],[40172,40177,19283,0],[40172,19283,40171,0],[40172,40171,10448,0],[40172,10448,10476,0],[10476,10474,40173,0],[40173,10474,10472,0],[40173,10472,40174,0],[40167,40174,10472,0],[40167,40175,40174,0],[40174,40175,40173,0],[40173,40175,40169,0],[40173,40170,40172,0],[40172,10476,40173,0],[10448,40171,19274,0],[19274,40171,40176,0],[19290,10444,10446,0],[10446,19276,19290,0],[19290,19276,40176,0],[40177,40170,10443,0],[10443,40163,10442,0],[10442,40163,10440,0],[47617,40159,14050,0],[14050,40159,40180,0],[14050,40180,14049,0],[47613,40179,40160,0],[40160,40179,40180,0],[40180,40179,14049,0],[14049,40179,14048,0],[40180,40159,40160,0],[40157,40156,47612,0],[47612,40156,40155,0],[14114,40181,40182,0],[40182,40181,40183,0],[40183,40184,40187,0],[40187,40184,40186,0],[40186,40184,40185,0],[40186,40185,19180,0],[19179,40185,40184,0],[14097,40187,14098,0],[14098,40187,40188,0],[40247,40188,40186,0],[40187,14097,40183,0],[40186,40188,40187,0],[40207,40183,43568,0],[40181,43568,40183,0],[43568,40189,40207,0],[40207,40189,40287,0],[40287,40189,40190,0],[40190,40189,40192,0],[40190,40192,40191,0],[40190,40191,19176,0],[19176,19177,40190,0],[19178,40218,40190,0],[40190,40218,40287,0],[19178,40190,19177,0],[40189,14117,40192,0],[19176,40191,40195,0],[19176,40195,19175,0],[19175,40195,40193,0],[40193,40195,40194,0],[40194,40195,40196,0],[40197,40196,40198,0],[19232,40197,10471,0],[10471,40197,40198,0],[40197,40194,40196,0],[14117,40199,40192,0],[40192,40199,40191,0],[40196,40195,40200,0],[40199,40200,40191,0],[40191,40200,40195,0],[19173,10482,40202,0],[40202,10482,40204,0],[40202,40204,40203,0],[40203,40204,19131,0],[19131,40204,40205,0],[19221,40205,10483,0],[40201,19173,19174,0],[19167,19172,40203,0],[19172,40206,40203,0],[40203,40206,40202,0],[40202,40206,19173,0],[40193,40194,40201,0],[40201,40194,19234,0],[19234,40194,19233,0],[40183,40207,40184,0],[40184,40207,19179,0],[40209,40258,40210,0],[40210,40211,40234,0],[40226,40211,40212,0],[40226,40212,18628,0],[18628,40212,40213,0],[40214,40213,40257,0],[40214,40257,40215,0],[40219,40217,40216,0],[40216,19178,19177,0],[40216,40217,19178,0],[40215,40217,40219,0],[40220,40219,40221,0],[40220,40221,18626,0],[18626,40221,40222,0],[40222,45653,40223,0],[18626,40222,18624,0],[18624,40222,40224,0],[40222,40223,40224,0],[40224,40223,19172,0],[40224,19172,19167,0],[40219,40216,45652,0],[45652,40221,40219,0],[18626,40225,40220,0],[40220,40225,40215,0],[40215,40225,40214,0],[40215,40219,40220,0],[40226,18628,18629,0],[40226,18629,40227,0],[40227,18629,18631,0],[40227,18631,40228,0],[40227,40228,40229,0],[40227,40229,40232,0],[40232,40229,40230,0],[40232,40230,40231,0],[40231,40230,10726,0],[40231,10726,40241,0],[40231,40233,40227,0],[40231,40227,40232,0],[40227,40233,40226,0],[40226,40233,40211,0],[40211,40233,40234,0],[47608,40236,40244,0],[40244,40236,40243,0],[40243,40236,40238,0],[40243,40238,40237,0],[40237,40238,10727,0],[18600,40238,40239,0],[40239,40236,40240,0],[40240,40236,47608,0],[47608,40235,40240,0],[40240,40235,40241,0],[40241,40235,40231,0],[40239,40240,40242,0],[40239,40242,18600,0],[18600,40242,10726,0],[40238,18600,10727,0],[40240,40241,40242,0],[40242,40241,10726,0],[10726,40230,10725,0],[10724,40230,40229,0],[40236,40239,40238,0],[40237,14034,40243,0],[40244,14033,40245,0],[40245,40251,40246,0],[40246,40249,19180,0],[40246,19180,40208,0],[19180,40249,40247,0],[40247,40249,40248,0],[40248,40249,40250,0],[40250,40249,40251,0],[40250,40251,40253,0],[40250,40253,40252,0],[14033,40253,40245,0],[40253,14033,40254,0],[40253,40254,40252,0],[14100,14099,14031,0],[40254,40255,40252,0],[40252,40255,14099,0],[14039,40254,14033,0],[40249,40246,40251,0],[40251,40245,40253,0],[14033,40244,40243,0],[40234,40235,40210,0],[40235,47608,40210,0],[40210,47608,40209,0],[40209,40246,40208,0],[40245,40246,40209,0],[40234,40233,40235,0],[40231,40235,40233,0],[18629,18628,18630,0],[40258,40208,40262,0],[40256,40257,40212,0],[40212,40257,40213,0],[40259,40212,40211,0],[40212,40259,40256,0],[40256,40259,40258,0],[40256,40258,40262,0],[40209,40208,40258,0],[40210,40258,40259,0],[40210,40259,40211,0],[40260,40218,19178,0],[19178,40217,40260,0],[40260,40217,40215,0],[40260,40215,40257,0],[40218,40260,40261,0],[40262,40208,40261,0],[40262,40261,40260,0],[40260,40257,40262,0],[40262,40257,40256,0],[14013,14014,47626,0],[14013,47626,40265,0],[14044,40265,40263,0],[14038,40263,14012,0],[14012,40263,40266,0],[14012,40266,47627,0],[14125,40268,14010,0],[40268,40267,40269,0],[40273,40269,40266,0],[47627,40266,40269,0],[40269,40267,47627,0],[14010,40268,40269,0],[14010,40269,40270,0],[47605,47604,40272,0],[14131,40271,40273,0],[40271,40270,40273,0],[40273,40270,40269,0],[40270,14008,14010,0],[40274,10729,40276,0],[40276,18602,40275,0],[40276,40275,18609,0],[18608,10730,18609,0],[18609,10730,40274,0],[40274,40276,18609,0],[18609,40275,18597,0],[18599,40275,18602,0],[18608,18609,10738,0],[10738,40277,40278,0],[10738,40279,18608,0],[18597,18610,40277,0],[10734,10735,10741,0],[18610,10735,40278,0],[18610,40278,40277,0],[40277,10738,18609,0],[18632,18612,18614,0],[18614,18612,18613,0],[18619,18971,40280,0],[18619,40280,18973,0],[18973,40280,40281,0],[40284,40281,40282,0],[40282,47623,45654,0],[45654,47623,40283,0],[40281,40284,18974,0],[18974,40284,18625,0],[40284,40282,18627,0],[18625,18627,40285,0],[18627,18625,40284,0],[18625,40285,18626,0],[18627,40286,40214,0],[40214,40286,45654,0],[40286,40282,45654,0],[40282,40286,18627,0],[40218,19179,40287,0],[40287,19179,40207,0],[40289,40288,40291,0],[40289,40291,40290,0],[40291,40292,40293,0],[40293,40292,40298,0],[40293,40298,40297,0],[40293,40297,19240,0],[10466,19240,10464,0],[40293,19240,10466,0],[10466,10467,40294,0],[10466,40294,40293,0],[40293,40294,40291,0],[10467,10468,40294,0],[40294,10468,10470,0],[40294,10470,40291,0],[40291,10470,40290,0],[40290,10470,40289,0],[40289,10470,10469,0],[19240,40297,40295,0],[40296,19237,40295,0],[40295,19237,19240,0],[10454,40297,40298,0],[10454,40298,10453,0],[40299,40291,40288,0],[40291,40299,40292,0],[10451,40298,40292,0],[40302,43647,43645,0],[40302,43645,43646,0],[19231,40301,10484,0],[10484,40301,43647,0],[10484,43647,40302,0],[40302,19226,10484,0],[40205,40204,10482,0],[40205,10482,40303,0],[19173,40201,10482,0],[10483,40205,40303,0],[19174,40305,40193,0],[40193,40305,19175,0],[40305,40304,19177,0],[19177,40304,40216,0],[19176,19175,19177,0],[19177,19175,40305,0],[40129,40306,40133,0],[40133,40306,39938,0],[39938,40306,19912,0],[40307,40134,19306,0],[40307,19305,19304,0],[19334,19328,19329,0],[40309,40376,40320,0],[40320,40376,40375,0],[40310,40375,40373,0],[40310,40374,40311,0],[40311,40371,40312,0],[40318,40312,19542,0],[40318,19542,40313,0],[40313,40314,40424,0],[40323,40424,40315,0],[40316,40317,40321,0],[40321,40317,40413,0],[40413,40317,19336,0],[40313,40424,40318,0],[40318,40323,40319,0],[40318,40319,40312,0],[40312,40319,40311,0],[40311,40319,40323,0],[40321,40322,40316,0],[40316,40322,40315,0],[40323,40322,40310,0],[40315,40322,40323,0],[40311,40323,40310,0],[40313,19542,19541,0],[40376,40324,40325,0],[40376,40325,40377,0],[40328,40326,40327,0],[40372,40328,40329,0],[40372,40329,40477,0],[40330,40336,40446,0],[40446,40336,40331,0],[40473,40331,40340,0],[40330,40332,40336,0],[40336,40332,40334,0],[40336,40334,40333,0],[40336,40335,40331,0],[40336,40333,40335,0],[40333,40334,40337,0],[14086,14063,40337,0],[40337,14063,40338,0],[40335,40338,40339,0],[40341,40339,19564,0],[40341,19564,40340,0],[40335,40339,40341,0],[40335,40341,40340,0],[40335,40340,40331,0],[40335,40333,40338,0],[40338,40333,40337,0],[40372,40477,40342,0],[40343,40353,40344,0],[40371,40344,40345,0],[40371,40345,40312,0],[40342,40477,40350,0],[40346,40349,40358,0],[40358,40351,40347,0],[40347,40351,40445,0],[40347,40445,19550,0],[19550,40445,19551,0],[40358,40349,40351,0],[40330,40446,40348,0],[40330,40348,40349,0],[40330,40349,40350,0],[40350,40477,40330,0],[40446,40351,40348,0],[40348,40351,40349,0],[40342,40350,40352,0],[40352,40370,40369,0],[40352,40369,40353,0],[40366,40353,40354,0],[40354,40356,40355,0],[40360,40370,40367,0],[40367,40370,40357,0],[40359,40357,40358,0],[40347,19550,19549,0],[40359,19549,19548,0],[40347,19549,40359,0],[40359,19548,19547,0],[40367,40357,19547,0],[19547,40357,40359,0],[40363,40362,40364,0],[40363,19543,40365,0],[40365,40361,40362,0],[40365,40362,40363,0],[40360,40361,40356,0],[40356,40361,40365,0],[40356,40365,40355,0],[40366,40355,19542,0],[40366,19542,40344,0],[40344,19542,40345,0],[40355,40365,19543,0],[40360,40367,19546,0],[19546,40367,40368,0],[40368,19547,19538,0],[40367,19547,40368,0],[40360,19546,40361,0],[40361,19546,19545,0],[40361,19545,40362,0],[40364,40362,19545,0],[40370,40360,40369,0],[40353,40369,40354,0],[40354,40369,40356,0],[40369,40360,40356,0],[40354,40355,40366,0],[40366,40344,40353,0],[40352,40343,40342,0],[40343,40352,40353,0],[40350,40346,40352,0],[40352,40346,40357,0],[40357,40346,40358,0],[40357,40370,40352,0],[40328,40372,40374,0],[40344,40371,40343,0],[40343,40371,40342,0],[40371,40374,40372,0],[40372,40342,40371,0],[40328,40374,40373,0],[40328,40373,40326,0],[40373,40374,40310,0],[40324,40376,40309,0],[40376,40377,40375,0],[40375,40377,40373,0],[40374,40371,40311,0],[40324,40382,40325,0],[40378,40380,19333,0],[40378,19333,14059,0],[40326,40379,40327,0],[40379,40326,40378,0],[40378,40326,40380,0],[40380,40326,40377,0],[40380,40377,40325,0],[40380,40325,40381,0],[40381,40325,40382,0],[40381,40382,19331,0],[40308,19335,19329,0],[19334,19329,19335,0],[19856,40383,19321,0],[19321,40383,19322,0],[39949,39950,40384,0],[40384,39950,19925,0],[20010,20004,20011,0],[20011,20004,39968,0],[20000,7969,7966,0],[7966,7969,19871,0],[39941,39940,40385,0],[39940,40306,40385,0],[19925,39950,40386,0],[39950,39946,40386,0],[47728,40400,40387,0],[40387,40400,40397,0],[39962,40397,40388,0],[20026,40388,47734,0],[40388,40397,40401,0],[47734,40388,40389,0],[40389,40395,40390,0],[40391,40390,40392,0],[40392,40393,26356,0],[26356,40393,26355,0],[26347,26355,40393,0],[47722,19353,26349,0],[26349,19353,26350,0],[40392,40390,40394,0],[40394,40390,40398,0],[40394,40398,40399,0],[40394,40399,47722,0],[19353,47722,19352,0],[19352,40399,19351,0],[19351,40399,40398,0],[19351,40398,20017,0],[20017,40398,40395,0],[40396,40389,40401,0],[40396,40400,47726,0],[40389,40396,40395,0],[40395,40396,20017,0],[40389,40388,40401,0],[40395,40398,40390,0],[40399,19352,47722,0],[47728,40387,20014,0],[40397,40400,40401,0],[40396,40401,40400,0],[47726,40400,47728,0],[40402,39956,39954,0],[47734,20027,47714,0],[26217,7918,7915,0],[26217,7915,26216,0],[19830,39953,39944,0],[19834,19836,40137,0],[19838,19824,19839,0],[19839,19840,19838,0],[40403,19823,40404,0],[39976,40406,40405,0],[19793,40405,19340,0],[40405,19793,40408,0],[40404,40406,40403,0],[40403,39983,19823,0],[40406,39976,40407,0],[40403,40406,40407,0],[40404,19822,40406,0],[19793,19820,40408,0],[39951,40409,39946,0],[39946,40409,40386,0],[40386,40409,19924,0],[19899,40409,19900,0],[19900,40409,39951,0],[19900,39951,19842,0],[20068,39970,39969,0],[40387,40397,40410,0],[40410,40397,39962,0],[40411,19847,40412,0],[19823,19824,40412,0],[19847,19822,40412,0],[19335,40413,19336,0],[19335,40308,40413,0],[40413,40308,40321,0],[40308,40309,40321,0],[40321,40309,40322,0],[40322,40309,40320,0],[40320,40375,40322,0],[40322,40375,40310,0],[40326,40373,40377,0],[40316,40315,40414,0],[40414,40416,40415,0],[40415,40416,40422,0],[40420,40422,40463,0],[40420,40463,40417,0],[40420,40417,19515,0],[40420,19515,40418,0],[40418,19513,40421,0],[40421,40419,40415,0],[40421,40415,40422,0],[40420,40421,40422,0],[40421,40420,40418,0],[19515,40417,19525,0],[19525,40417,40423,0],[40416,40414,40424,0],[40315,40424,40414,0],[40425,19336,40317,0],[40428,40429,47736,0],[47736,40429,40434,0],[40434,40429,40430,0],[40421,40430,40419,0],[40419,40430,40431,0],[40431,40429,40432,0],[40426,40432,40427,0],[40426,40433,40432,0],[40426,40425,40433,0],[40433,40425,40317,0],[40427,40432,40428,0],[40428,40432,40429,0],[40431,40430,40429,0],[40421,19513,40430,0],[40316,40435,40433,0],[40432,40435,40431,0],[40431,40435,40419,0],[40415,40316,40414,0],[40316,40415,40435,0],[40419,40435,40415,0],[40316,40433,40317,0],[40427,40428,40436,0],[40436,40428,19341,0],[40436,19341,19342,0],[40428,47736,19341,0],[40436,19795,19796,0],[40436,19796,40427,0],[7884,7885,19726,0],[19726,7885,47711,0],[47711,19759,19760,0],[40438,19726,19760,0],[40438,19760,40437,0],[7884,19726,40438,0],[40438,40437,19724,0],[40438,19724,19723,0],[7884,40438,40439,0],[40440,40152,40475,0],[40440,40474,40146,0],[40152,40440,40153,0],[40153,40440,40147,0],[40147,40440,40146,0],[40146,14053,40150,0],[40144,40140,40443,0],[40443,40140,40442,0],[40443,40442,40155,0],[40155,40442,40139,0],[40155,40444,40443,0],[40144,40443,40444,0],[40346,40350,40349,0],[40351,40446,40445,0],[40445,40446,40472,0],[40472,40446,40331,0],[40445,40472,19551,0],[19597,40448,19553,0],[40448,19592,40453,0],[40453,19592,19593,0],[40447,19550,40453,0],[40453,19551,40448,0],[19550,19551,40453,0],[19549,40447,40449,0],[19529,40451,40450,0],[40451,19536,40450,0],[19536,40452,40450,0],[40450,40452,19594,0],[40449,19594,40452,0],[40449,40453,19593,0],[40449,40452,19549,0],[19756,40454,40455,0],[19756,40455,19495,0],[19495,40455,19605,0],[19665,19652,40456,0],[40456,19652,48094,0],[19664,40456,19649,0],[19649,40456,48094,0],[40458,19654,48095,0],[40457,40458,40459,0],[40459,40458,49946,0],[40458,40457,19655,0],[40457,40459,19676,0],[19676,40459,19656,0],[19676,19656,19677,0],[48095,19654,48096,0],[48096,19654,40460,0],[48598,40461,19660,0],[19660,40461,19648,0],[19648,40461,19653,0],[19653,40461,40460,0],[40460,40461,48598,0],[40463,40469,40417,0],[40417,40469,40465,0],[40417,40465,40464,0],[40464,40465,40467,0],[19517,40466,19531,0],[40466,19517,40467,0],[40467,19517,40464,0],[40464,19517,40423,0],[40464,40423,40417,0],[40463,40422,40416,0],[40416,40462,40463,0],[40314,40416,40424,0],[40345,19542,40312,0],[19544,19539,40471,0],[19544,40471,40470,0],[40470,40471,40468,0],[40469,40463,40462,0],[19539,19533,40466,0],[19539,40466,40471,0],[40471,40466,40467,0],[40465,40469,40468,0],[40465,40468,40471,0],[40467,40465,40471,0],[19551,40472,19552,0],[19552,40472,40473,0],[19598,40473,19565,0],[40473,40472,40331,0],[19554,19552,40473,0],[40329,40328,40479,0],[40479,40328,40327,0],[14060,40327,40379,0],[40441,14053,40474,0],[40146,40474,14053,0],[14052,40441,14051,0],[14051,40475,40145,0],[40475,14051,40474,0],[40475,40152,40476,0],[40154,40143,40476,0],[40476,40143,40144,0],[40444,40476,40144,0],[40477,40332,40330,0],[40477,40329,40334,0],[40334,40329,40479,0],[40334,40479,40478,0],[14086,40478,14062,0],[14086,40337,40478,0],[40477,40334,40332,0],[40478,40479,14062,0],[14061,14062,40479,0],[14060,40479,40327,0],[40488,19564,40339,0],[19563,40490,13947,0],[13949,14065,14066,0],[13949,14066,40480,0],[14023,14021,13951,0],[13951,14021,40481,0],[13952,40481,14020,0],[14064,40339,14067,0],[14064,40488,40339,0],[14071,14082,40482,0],[14068,14082,14073,0],[14145,13950,40483,0],[14145,40483,40484,0],[14145,40484,40485,0],[40485,40484,40610,0],[40485,40610,40486,0],[40486,40615,40487,0],[40486,40487,14146,0],[40486,14146,40485,0],[40485,14146,14145,0],[13948,14145,14146,0],[40484,40483,13951,0],[40488,14064,40489,0],[13949,40489,14065,0],[13949,40490,40489,0],[40489,40490,19563,0],[40489,19563,40488,0],[14118,14127,14123,0],[14118,14123,14122,0],[40491,14123,14124,0],[40250,40252,40492,0],[40492,40252,14099,0],[11623,10743,40518,0],[11623,40518,47559,0],[47540,40493,47541,0],[47540,47541,40494,0],[40495,47542,47548,0],[47537,40495,47527,0],[47537,47527,40496,0],[40497,47528,47538,0],[47538,47530,47533,0],[47533,47530,47532,0],[40500,40499,47558,0],[47558,11369,40500,0],[40500,11369,40501,0],[40500,11368,40499,0],[11621,11367,40502,0],[11602,40503,11620,0],[11620,40503,40502,0],[11383,40504,45933,0],[45933,40504,40505,0],[40507,40506,47673,0],[40504,11591,40505,0],[11591,11382,40505,0],[40505,11382,40508,0],[40505,40508,47673,0],[40505,47673,40506,0],[40509,10712,40510,0],[40509,40510,47664,0],[10711,40510,10712,0],[40511,19005,19008,0],[40511,19007,10677,0],[40511,10677,19005,0],[19008,19005,19019,0],[14043,14041,40512,0],[14043,40512,14042,0],[40517,14042,40512,0],[47580,40517,40513,0],[40513,40517,47578,0],[40514,47578,40516,0],[18581,40516,10732,0],[18581,18582,40516,0],[40516,18582,40515,0],[40516,40515,40514,0],[18587,40515,18588,0],[18588,40515,18582,0],[10732,40516,10731,0],[40516,47578,40517,0],[10731,40516,40517,0],[18607,18603,40523,0],[18607,40523,10743,0],[10743,40523,40521,0],[10743,40521,40518,0],[40519,18603,40529,0],[40519,45523,40531,0],[40519,40531,40522,0],[40530,47549,40520,0],[40524,47550,40521,0],[40531,40530,40525,0],[40531,40525,40522,0],[40522,40523,18603,0],[40524,40521,40523,0],[40523,40522,40525,0],[40523,40525,40524,0],[40524,40525,40520,0],[40525,40530,40520,0],[18603,40519,40522,0],[40519,40529,40526,0],[40527,47624,10719,0],[47624,40527,10720,0],[10720,40527,45522,0],[10720,45522,40526,0],[10720,40526,40528,0],[40528,40526,40529,0],[10721,10720,40528,0],[40529,18605,18604,0],[47546,40530,40531,0],[47546,40531,45523,0],[14079,14080,40532,0],[40532,14080,14109,0],[14022,14122,40533,0],[40533,14122,40537,0],[40537,14122,40491,0],[40491,14122,14123,0],[14022,40533,14023,0],[40533,40537,14021,0],[14021,40537,40538,0],[14019,13953,40543,0],[40543,13953,40534,0],[40543,40534,40540,0],[40535,40536,14126,0],[14126,40536,14125,0],[14125,40536,14124,0],[14124,40536,40491,0],[40491,40539,40537,0],[40538,40539,40534,0],[40534,40539,40535,0],[40534,14020,40538,0],[40537,40539,40538,0],[40539,40491,40536,0],[40539,40536,40535,0],[40534,40535,40540,0],[40542,40540,14007,0],[40542,14007,14006,0],[40542,14006,40541,0],[14007,40540,40535,0],[14126,14009,40535,0],[40535,14009,14007,0],[40543,40541,14005,0],[14005,14004,40543,0],[40543,14004,14019,0],[40541,40543,40542,0],[40540,40542,40543,0],[13957,14137,13958,0],[13958,14137,14138,0],[13958,14138,40544,0],[13959,13958,40544,0],[18545,40547,18536,0],[18536,40547,18535,0],[18536,18541,18545,0],[40547,40545,40546,0],[40545,18544,40546,0],[40547,18545,40545,0],[40545,18545,18527,0],[18535,40547,18127,0],[18127,40547,18155,0],[18156,40559,40548,0],[40548,40560,40550,0],[40550,40560,40551,0],[40557,40551,40552,0],[40557,40552,40553,0],[18113,40554,18144,0],[40553,40554,40555,0],[18136,40555,40554,0],[40548,40550,40549,0],[18126,18156,18128,0],[18128,18156,40548,0],[18128,40548,40549,0],[40551,40557,40556,0],[40556,40557,40558,0],[40558,40555,18135,0],[40555,40558,40553,0],[40557,40553,40558,0],[40889,18124,40559,0],[40548,40559,40560,0],[18122,40562,18123,0],[18123,40562,18124,0],[18124,40562,40561,0],[40561,40560,18124,0],[18124,40560,40559,0],[11692,10769,40563,0],[40564,13952,40565,0],[40565,40570,40566,0],[40606,40567,40569,0],[40569,40567,40568,0],[40569,40568,13955,0],[40568,40567,40570,0],[13952,40570,40565,0],[40570,40567,40566,0],[14158,14167,40571,0],[40571,14167,14157,0],[40571,14157,40572,0],[40572,14157,40574,0],[40574,14157,40573,0],[40574,40573,14170,0],[14170,40573,14169,0],[40574,14170,14171,0],[40576,40575,14157,0],[40573,14157,40575,0],[40576,14156,40575,0],[14158,40571,14159,0],[14159,40577,40707,0],[13961,13962,40578,0],[40578,13962,40579,0],[40681,40579,40581,0],[40581,40579,40580,0],[40581,40580,40582,0],[40581,40582,40583,0],[40583,40598,40585,0],[40585,40598,40599,0],[40599,40600,13298,0],[40784,40581,13300,0],[13300,40581,40583,0],[13300,40583,40584,0],[40584,13299,13300,0],[40584,40583,40585,0],[40584,40585,13298,0],[40579,13962,40580,0],[40591,40586,13988,0],[40591,13988,40587,0],[40595,40596,40588,0],[40578,40579,14176,0],[40578,14176,14173,0],[13988,40586,40589,0],[13962,40589,40580,0],[40580,40589,40586,0],[40586,40582,40580,0],[40590,40591,40587,0],[40590,40587,40596,0],[40582,40598,40583,0],[40582,40591,40598,0],[40598,40591,40592,0],[40593,40594,13244,0],[40594,40593,40597,0],[18099,40594,40595,0],[40588,18099,40595,0],[40596,40595,40597,0],[40596,40597,40592,0],[40592,40597,40593,0],[40596,40592,40590,0],[40592,40599,40598,0],[40599,40592,40593,0],[40593,40600,40599,0],[40611,40602,40603,0],[40604,40603,14152,0],[40606,40605,40567,0],[14152,40605,40607,0],[40608,40607,40569,0],[40605,40606,40607,0],[40607,40606,40569,0],[14152,40603,40605,0],[40605,40603,40602,0],[40605,40602,40567,0],[40567,40602,40601,0],[40567,40601,40566,0],[40566,40601,40609,0],[40566,40609,40565,0],[40609,40615,40610,0],[40610,40615,40486,0],[40612,40614,40611,0],[40611,40614,40602,0],[14151,40612,40613,0],[40604,40613,40612,0],[40604,40612,40611,0],[40604,40611,40603,0],[40602,40614,40601,0],[40601,40614,40609,0],[40609,40614,40615,0],[40615,14149,40487,0],[40565,40609,40564,0],[40616,40670,40620,0],[40616,40620,40617,0],[40619,40618,40620,0],[40621,40619,47946,0],[47946,40668,14164,0],[47946,14164,47945,0],[40650,40729,40622,0],[40626,40667,40754,0],[13404,40754,13403,0],[13404,40626,40754,0],[40626,40627,40625,0],[40625,40627,40629,0],[40625,40629,40624,0],[40627,40628,40629,0],[40630,40629,40644,0],[40630,40644,40631,0],[47947,40632,40633,0],[40633,40632,40648,0],[40633,40648,40640,0],[40633,40640,40634,0],[40621,40634,40635,0],[40621,40635,40636,0],[40613,40617,40637,0],[40637,40617,40618,0],[40637,40618,40636,0],[40636,40618,40619,0],[40636,40619,40621,0],[40604,40616,40617,0],[40613,40637,40638,0],[40638,40636,40635,0],[14180,40635,40639,0],[40639,40640,40641,0],[14182,40641,14183,0],[14183,40641,40648,0],[14183,40648,40642,0],[40642,40644,40643,0],[40643,40644,40645,0],[40645,40644,40649,0],[14187,40646,14188,0],[14183,40642,40643,0],[13935,40643,40645,0],[13935,40645,40646,0],[40646,14187,14186,0],[14186,40647,40646,0],[40641,14181,40639,0],[40635,40634,40639,0],[40639,40634,40640,0],[40640,40648,40641,0],[40648,40632,40631,0],[40648,40631,40642,0],[40642,40631,40644,0],[40644,40629,40649,0],[40649,40628,40645,0],[40645,40628,13405,0],[40649,40629,40628,0],[40636,40638,40637,0],[40629,40630,40624,0],[40624,40630,40623,0],[40729,40650,40651,0],[40729,40651,40728,0],[40758,40651,40657,0],[40657,40658,47953,0],[40657,47953,40652,0],[40653,40656,40712,0],[40712,40656,13342,0],[40654,13321,13320,0],[40655,40653,40652,0],[40655,40652,13322,0],[47953,13322,40652,0],[40655,13322,13321,0],[40653,40655,40656,0],[40654,13319,40656,0],[40656,13319,13342,0],[40654,40656,13321,0],[13321,40656,40655,0],[40651,40650,40658,0],[40651,40658,40657,0],[40660,13325,13323,0],[40661,40659,14163,0],[14163,40725,40662,0],[14163,14162,40661,0],[40661,14162,40685,0],[40661,40685,40660,0],[40661,40660,40659,0],[40650,40663,40658,0],[40658,40663,40725,0],[40662,40725,40663,0],[40623,40622,40664,0],[40623,40664,40624,0],[40624,40664,40665,0],[40665,40664,40666,0],[40665,40666,40667,0],[40667,40666,40774,0],[40667,40626,40625,0],[40665,40667,40625,0],[40665,40625,40624,0],[40668,47946,40670,0],[40670,47946,40620,0],[40620,47946,40619,0],[40617,40620,40618,0],[40668,40670,40669,0],[40669,40670,14166,0],[14166,40670,14153,0],[40670,40616,14153,0],[14152,14153,40616,0],[40577,14159,40672,0],[40672,14159,40571,0],[40673,40572,40574,0],[40673,40574,40674,0],[40781,40675,40780,0],[40780,40675,40711,0],[40711,40675,47950,0],[40711,47950,14176,0],[47950,40675,40676,0],[40676,40674,40574,0],[40676,40574,14171,0],[40672,40571,40677,0],[40683,40678,40708,0],[13305,40708,40679,0],[13302,40680,40710,0],[13302,40710,13301,0],[13302,13301,14269,0],[40678,40677,40673,0],[40678,40673,40708,0],[40708,40673,40674,0],[40708,40674,40781,0],[40572,40673,40677,0],[40672,40677,40682,0],[40682,40677,40678,0],[40682,40678,40683,0],[40577,40672,40684,0],[40707,40684,40706,0],[40706,40694,40689,0],[40660,40685,13325,0],[13325,40685,40686,0],[40686,40704,40687,0],[40699,40687,40688,0],[40688,40689,40690,0],[40690,40689,40692,0],[40690,40692,40691,0],[40691,40692,14266,0],[14266,40692,13306,0],[40689,40694,40696,0],[40689,40696,40692,0],[40696,40694,40693,0],[40696,40693,40695,0],[40708,13305,40693,0],[40708,40693,40683,0],[40683,40693,40682,0],[40682,40693,40694,0],[40682,40694,40684,0],[40684,40694,40706,0],[40695,40693,13305,0],[40682,40684,40672,0],[40695,13306,40696,0],[40692,40696,13306,0],[40704,40686,40685,0],[40686,40687,13326,0],[40703,40697,40691,0],[40691,40697,40690,0],[40690,40697,40688,0],[40688,40697,40699,0],[40697,40703,40698,0],[40699,40698,13326,0],[13326,40687,40699,0],[40698,40699,40697,0],[13326,40698,49949,0],[49949,40698,40702,0],[40700,40702,40701,0],[40700,40701,13310,0],[13310,13311,13338,0],[13310,13338,40700,0],[40701,40702,40703,0],[40701,40703,49950,0],[49950,40703,40691,0],[40691,14265,49950,0],[40702,40698,40703,0],[40685,14162,40704,0],[40704,14162,14161,0],[40704,14161,40687,0],[40687,14161,40705,0],[40706,40689,40688,0],[40706,40688,40705,0],[40687,40705,40688,0],[14161,40707,40705,0],[40705,40707,40706,0],[40707,40577,40684,0],[40782,40781,40709,0],[40680,40709,40710,0],[40710,40711,40681,0],[40709,40680,13303,0],[40709,13303,40782,0],[40782,13303,40679,0],[40782,40679,40708,0],[13342,13343,40712,0],[40712,13343,40766,0],[14261,13343,13341,0],[13343,13342,13341,0],[13341,13342,13340,0],[14572,13341,13340,0],[14572,13340,14570,0],[14570,13340,40713,0],[40713,13339,13317,0],[13339,40713,13340,0],[14570,40713,41827,0],[14556,14322,14540,0],[14556,14557,14321,0],[14321,14557,14467,0],[14467,14557,14558,0],[14467,14558,14320,0],[14503,14502,40714,0],[40714,14502,48629,0],[40714,48629,14594,0],[40714,14515,14503,0],[14513,14503,14515,0],[14516,14515,40715,0],[40715,14517,14516,0],[14594,40715,14515,0],[14594,14515,40714,0],[14597,40716,14595,0],[14595,40716,14594,0],[14594,40716,40715,0],[14597,14596,40716,0],[40716,14596,40717,0],[40716,40717,40715,0],[40717,14596,14517,0],[14593,14517,14596,0],[40718,40722,40719,0],[40718,40719,40720,0],[40668,40722,40718,0],[40662,40718,14163,0],[47948,40721,40722,0],[40722,40721,40719,0],[40723,40721,14160,0],[14160,40707,40723,0],[40721,40723,40719,0],[40721,47948,14160,0],[40701,49950,13310,0],[40718,40720,14163,0],[40724,40658,40725,0],[14163,40724,40725,0],[40758,40726,40651,0],[40651,40726,40728,0],[40728,40726,40773,0],[40773,40727,40728,0],[40773,40726,40759,0],[40773,40759,40761,0],[40773,40761,40730,0],[40771,40730,40731,0],[40769,40731,40732,0],[40769,40732,40767,0],[40733,40764,40734,0],[40734,40764,13345,0],[40734,13345,40742,0],[40742,13345,13346,0],[40742,13346,48405,0],[40742,48405,40735,0],[40743,40735,40736,0],[40736,40735,40757,0],[13348,13384,40757,0],[40757,13384,40736,0],[40736,13386,40737,0],[40739,40750,40740,0],[48403,40740,40767,0],[48403,40767,40733,0],[48403,40734,40741,0],[40741,40734,40742,0],[40741,40742,40735,0],[40736,40737,40743,0],[40743,40737,48403,0],[40743,48403,40741,0],[40741,40735,40743,0],[13394,13395,40744,0],[40744,13395,40746,0],[40746,13395,40745,0],[40746,40745,40756,0],[40746,40756,40748,0],[40748,40756,40747,0],[40748,40747,40738,0],[40748,40738,40737,0],[40748,40737,13386,0],[40739,40738,40749,0],[40749,40756,40750,0],[40752,40776,40753,0],[40753,13403,40754,0],[40774,40754,40667,0],[40739,40749,40750,0],[40740,40750,40751,0],[40740,40751,40768,0],[40768,40751,40776,0],[40768,40776,40752,0],[40746,40748,40744,0],[13395,13397,40745,0],[40756,40745,40755,0],[40755,13401,40778,0],[40778,13401,13402,0],[40778,13402,40779,0],[40747,40756,40749,0],[40747,40749,40738,0],[40756,40755,40750,0],[40750,40755,40751,0],[13388,40744,13387,0],[40744,40748,13387,0],[13386,13387,40748,0],[13384,13348,13349,0],[13347,13348,40757,0],[40653,40726,40652,0],[40652,40726,40657,0],[40726,40758,40657,0],[40760,40759,40762,0],[40760,40762,40763,0],[40763,40732,40731,0],[40763,40731,40761,0],[40763,40761,40760,0],[40760,40761,40759,0],[40730,40761,40731,0],[40759,40726,40653,0],[40759,40653,40762,0],[40763,40764,40733,0],[13344,40764,40765,0],[40765,40764,40763,0],[48425,40765,40762,0],[48425,40762,40653,0],[40765,40766,13344,0],[40763,40733,40732,0],[40767,40732,40733,0],[40765,40763,40762,0],[40769,40767,40768,0],[40768,40767,40740,0],[40768,40752,40769,0],[40769,40752,40775,0],[40769,40775,40770,0],[40772,40773,40730,0],[40727,40773,40772,0],[40666,40664,40772,0],[40666,40772,40771,0],[40771,40772,40730,0],[40666,40771,40774,0],[40774,40770,40775,0],[40774,40775,40754,0],[40754,40775,40753,0],[40775,40752,40753,0],[40771,40770,40774,0],[40771,40731,40770,0],[40770,40731,40769,0],[13403,40753,40777,0],[40777,40776,40778,0],[40777,40778,40779,0],[40755,40778,40751,0],[40751,40778,40776,0],[40772,40664,40727,0],[40729,40728,40727,0],[40729,40727,40622,0],[40622,40727,40664,0],[40781,40674,40676,0],[40781,40676,40675,0],[40781,40780,40709,0],[40709,40780,40710,0],[40781,40782,40708,0],[40710,40780,40711,0],[40783,14176,40579,0],[40783,40579,40681,0],[40681,40711,40783,0],[14176,40783,40711,0],[40784,13301,40681,0],[40681,13301,40710,0],[40681,40581,40784,0],[14143,13992,40785,0],[40785,13992,13993,0],[40785,13993,14128,0],[40785,14128,13994,0],[40785,13994,13995,0],[40786,40785,13996,0],[40786,13996,40787,0],[40786,40787,13968,0],[13968,13967,14143,0],[40786,14143,40785,0],[14143,40786,13968,0],[13998,40787,13997,0],[13969,40787,13998,0],[13969,13998,13999,0],[13996,40785,13995,0],[41680,13963,18150,0],[41680,18150,41679,0],[41679,18150,41678,0],[18149,40788,41678,0],[18135,13975,40558,0],[40562,18144,40554,0],[40562,40554,40552,0],[40562,40552,40561,0],[40561,40552,40560,0],[40551,40560,40552,0],[40789,40544,14140,0],[13970,13982,40791,0],[40791,13982,40790,0],[40790,13982,13981,0],[14133,13997,47607,0],[47607,13997,13996,0],[47607,13996,14135,0],[14133,47607,14132,0],[14132,47607,40792,0],[47603,14132,40792,0],[47603,40792,40272,0],[40272,40792,14131,0],[14012,47627,14011,0],[10753,10752,11641,0],[11641,10752,40793,0],[10750,40793,10751,0],[10751,40793,10752,0],[11658,10753,11640,0],[11640,10753,11637,0],[40897,11637,11635,0],[11636,11653,11667,0],[11667,11653,40794,0],[11667,40794,11652,0],[11667,11652,11634,0],[40833,40844,40795,0],[40795,40797,40796,0],[40797,40795,11632,0],[11632,11655,11631,0],[40795,40844,11632,0],[11632,40844,11633,0],[11632,40798,40797,0],[40797,40798,11684,0],[11684,40798,11647,0],[40799,11678,11685,0],[11680,40800,40803,0],[40803,40800,40801,0],[40800,11682,40812,0],[11680,40803,11359,0],[40804,40813,40807,0],[11360,40803,40804,0],[40804,40803,40813,0],[40813,40803,40801,0],[40811,40812,40814,0],[40814,47570,40810,0],[40810,47570,47515,0],[40810,47515,40815,0],[40810,40815,40805,0],[40807,40813,40809,0],[40807,40809,40808,0],[40807,40808,40802,0],[40802,40808,11421,0],[11421,40808,40816,0],[40816,40808,40809,0],[40805,40809,40806,0],[40806,40809,40813,0],[40810,40805,40806,0],[40810,40806,40814,0],[40814,40806,40811,0],[40811,40806,40813,0],[40813,40801,40811,0],[40811,40801,40812,0],[47571,40812,11682,0],[47571,11682,47572,0],[47572,11682,11361,0],[40812,47571,40814,0],[40815,47515,11606,0],[40815,11606,11607,0],[40805,40815,40809,0],[40809,40815,40816,0],[40816,40815,11607,0],[40817,11390,11397,0],[40817,11397,11396,0],[40819,40818,11450,0],[40819,11450,11449,0],[11449,40820,11428,0],[11449,11428,40821,0],[40821,11428,11427,0],[11449,40821,40819,0],[40819,40822,40818,0],[40818,40822,11409,0],[40818,11409,11408,0],[40822,40819,11411,0],[11411,40819,11413,0],[40819,40821,11413,0],[11413,40821,11427,0],[40818,11408,40823,0],[40823,11408,11405,0],[40823,11405,11404,0],[40823,11404,10697,0],[10697,10698,40823,0],[40824,18121,18068,0],[18519,18067,40825,0],[11692,40563,11693,0],[11693,40563,40826,0],[40826,10768,11694,0],[40827,11699,40862,0],[40862,11699,40852,0],[40852,40828,40829,0],[40829,40830,40831,0],[40831,40830,40832,0],[40796,40833,40795,0],[40796,40834,40836,0],[40836,40834,40835,0],[40835,40834,11677,0],[40835,11675,40836,0],[40836,40837,40838,0],[40836,40838,40796,0],[11677,40834,11676,0],[11676,40834,11685,0],[11685,40834,40796,0],[40838,40869,40832,0],[40844,40833,40839,0],[40839,40840,40843,0],[40843,40840,40841,0],[40842,40845,11660,0],[40842,11636,11634,0],[40842,11634,40841,0],[40841,11634,40843,0],[40843,40844,40839,0],[11633,40844,11652,0],[11634,11652,40843,0],[11652,40844,40843,0],[11636,40842,11660,0],[11661,40845,40846,0],[40846,40848,40847,0],[40845,40842,40848,0],[40848,40840,40849,0],[40849,40840,40864,0],[40849,40864,40850,0],[40848,40842,40841,0],[40848,40841,40840,0],[40845,40848,40846,0],[40828,40852,40850,0],[40848,40849,40847,0],[40852,40851,40850,0],[40850,40851,40849,0],[40849,40851,40847,0],[11702,40847,40851,0],[40832,40853,40831,0],[40831,40853,40868,0],[40831,40868,40867,0],[40854,40866,40860,0],[40860,11352,40855,0],[40855,11350,40856,0],[40857,11690,11695,0],[11696,11697,40884,0],[11690,40857,40859,0],[40859,40857,11689,0],[40831,40867,40829,0],[40829,40854,40885,0],[40885,40854,40860,0],[40854,40829,40867,0],[40827,40862,40883,0],[40827,40883,11698,0],[40829,40861,40862,0],[40829,40862,40852,0],[11699,40851,40852,0],[40883,40862,40861,0],[40829,40828,40863,0],[40863,40828,40850,0],[40863,40850,40864,0],[40829,40863,40830,0],[40864,40839,40865,0],[40832,40865,40838,0],[40865,40832,40863,0],[40865,40863,40864,0],[40863,40832,40830,0],[40839,40833,40865,0],[40865,40833,40838,0],[40838,40833,40796,0],[40839,40864,40840,0],[40837,40836,11675,0],[11675,11355,11354,0],[11354,11353,40870,0],[40870,11353,40866,0],[40866,40854,40867,0],[40866,40867,40868,0],[40868,40853,40870,0],[40853,40869,40837,0],[40853,40837,40870,0],[11354,40870,11675,0],[11675,40870,40837,0],[40868,40870,40866,0],[11353,40871,40866,0],[40866,40872,40860,0],[40860,40872,11352,0],[40866,40871,40872,0],[11352,11350,40855,0],[40877,11350,40873,0],[40874,11688,40875,0],[40874,40875,40878,0],[40857,40878,11689,0],[11689,40878,40875,0],[40874,40877,40876,0],[40876,40877,40873,0],[11688,40874,11348,0],[11348,40874,40876,0],[40876,40873,11349,0],[11349,40873,11350,0],[11350,40877,40856,0],[11352,40872,11477,0],[40872,40871,11477,0],[40877,40878,40857,0],[40877,40857,40856,0],[40874,40878,40877,0],[40879,40858,11696,0],[40856,40898,40881,0],[40881,40898,40879,0],[40882,40879,40880,0],[40860,40855,40885,0],[40885,40855,40881,0],[40882,40885,40881,0],[40882,40881,40879,0],[11719,11718,40909,0],[40909,11718,11734,0],[11734,11718,11689,0],[11734,11689,40875,0],[11734,40875,11735,0],[40882,40880,40883,0],[40882,40883,40861,0],[11698,40883,40884,0],[40884,40880,40879,0],[40884,40879,11696,0],[40829,40885,40861,0],[40861,40885,40882,0],[40889,40886,18153,0],[18153,40886,18152,0],[18152,40886,18119,0],[40887,40886,40888,0],[40888,40886,40889,0],[18154,18543,40889,0],[40889,18543,40888,0],[40891,40890,40892,0],[40925,40890,40891,0],[40925,40891,40922,0],[40922,40891,40893,0],[40923,40894,10757,0],[11659,10757,40894,0],[18575,11659,40894,0],[40891,40892,40893,0],[40895,40893,11664,0],[40893,40895,18575,0],[40893,18575,40894,0],[40890,40925,40896,0],[11635,40896,40897,0],[40898,40858,40879,0],[40898,40856,40857,0],[40858,40898,11695,0],[40857,11695,40898,0],[11574,40899,11468,0],[11468,40899,11469,0],[41218,40900,11460,0],[11465,41222,41221,0],[40902,40903,11466,0],[40902,11466,40904,0],[41222,40903,40902,0],[40904,40901,40902,0],[40901,40904,41218,0],[41221,41214,11543,0],[11542,41213,11541,0],[11548,11547,40905,0],[40905,11547,11512,0],[11545,41225,11544,0],[11544,41225,11543,0],[11566,40906,11565,0],[11565,40906,11506,0],[11567,11506,40906,0],[11553,11567,40906,0],[40906,11554,11553,0],[11556,40906,11566,0],[11553,11465,11567,0],[11567,11465,11568,0],[40909,41467,40907,0],[40907,41465,40908,0],[40908,41465,11721,0],[11721,11720,40908,0],[40909,11734,41467,0],[41467,11734,11735,0],[40909,40908,11719,0],[11719,40908,11720,0],[40909,40907,40908,0],[40920,45985,11429,0],[11429,45985,45986,0],[46018,40910,40911,0],[40911,45981,46015,0],[46015,45981,40912,0],[40912,45980,40917,0],[40917,45991,40913,0],[40917,40913,40919,0],[40919,10560,11439,0],[10560,40919,40914,0],[10560,40914,40915,0],[10560,40915,10561,0],[47640,40915,40916,0],[40914,40919,40913,0],[40914,40913,40915,0],[40915,40913,45990,0],[40915,45990,40916,0],[40912,40917,46014,0],[46014,40917,40918,0],[46014,40918,11440,0],[40919,40918,40917,0],[10557,11429,45986,0],[10557,45986,46018,0],[45985,40920,40921,0],[40921,40920,10556,0],[11419,47513,11420,0],[40802,11420,40807,0],[18573,18574,47593,0],[47593,18574,47591,0],[40893,40894,40922,0],[40894,40923,40922,0],[40922,40923,40924,0],[40922,40924,40925,0],[40925,40897,40896,0],[40897,40925,40924,0],[40927,11503,11580,0],[40926,11586,11580,0],[11580,11586,40927,0],[11503,40927,11502,0],[11502,40927,11586,0],[11502,11586,11585,0],[11502,11585,11436,0],[11338,17979,11343,0],[11339,11343,17983,0],[17983,11343,17979,0],[41033,40929,40930,0],[41045,40930,40931,0],[40931,40930,41093,0],[40931,41093,40932,0],[40932,41094,40933,0],[40932,40933,41057,0],[41057,40933,40934,0],[41063,40934,40949,0],[40935,40950,41062,0],[41062,40950,40936,0],[41000,40937,40938,0],[40950,40937,40936,0],[40938,40937,40950,0],[40934,40933,41032,0],[40934,41032,40939,0],[41002,40939,41099,0],[41002,41099,40940,0],[40940,41098,40942,0],[40942,41098,40941,0],[40942,40941,40943,0],[40945,40948,40946,0],[40946,40948,17981,0],[40946,17981,17982,0],[40944,40943,40945,0],[40945,40943,40947,0],[40945,40947,40948,0],[40948,40947,17981,0],[40949,40950,40935,0],[40938,40950,41100,0],[40938,41100,40951,0],[40951,41100,41207,0],[40951,41207,40952,0],[40999,41001,40953,0],[40999,40953,40954,0],[40953,11009,40954,0],[40954,11007,40955,0],[11005,40955,11006,0],[11006,40955,11007,0],[40956,40958,40957,0],[40957,40958,40936,0],[40936,40958,41062,0],[41062,40959,41061,0],[41061,40959,40960,0],[41061,40960,41060,0],[41060,40960,40961,0],[40987,40962,40963,0],[40987,40963,40964,0],[40990,40966,40986,0],[40986,40966,40996,0],[40986,40996,40967,0],[40967,40968,40969,0],[40969,40968,41561,0],[40969,41561,40970,0],[40970,41561,41494,0],[41040,40981,41493,0],[41040,41493,40971,0],[41040,40971,40972,0],[40972,40971,41085,0],[41084,41085,41489,0],[41084,41489,40973,0],[40990,40986,40974,0],[40975,40974,40976,0],[40975,40976,41055,0],[41055,40976,41957,0],[41055,41957,40977,0],[40977,41957,41054,0],[41054,40978,41050,0],[40979,40982,40980,0],[40981,40980,41494,0],[41494,40980,40970,0],[40970,40980,40982,0],[40982,40979,40983,0],[40983,40979,41051,0],[40978,41051,41050,0],[41051,40978,40983,0],[40983,40978,40985,0],[40983,40985,40984,0],[40984,41919,40986,0],[40984,40986,40967,0],[40986,41919,40974,0],[40970,40982,40983,0],[40970,40983,40969,0],[40984,40967,40969,0],[40984,40969,40983,0],[40960,40959,41210,0],[40988,40958,40956,0],[41210,40988,40955,0],[40989,41210,11005,0],[11005,11003,40989,0],[40989,40960,41210,0],[40960,40989,40963,0],[40960,40963,40961,0],[40961,40963,40962,0],[11003,11002,40989,0],[40989,11002,40963,0],[40963,11002,40964,0],[40987,40964,11001,0],[40987,11001,40965,0],[40966,40998,40991,0],[40966,40991,40996,0],[40996,40991,40992,0],[40996,40992,40995,0],[40995,40992,10935,0],[40994,10935,17889,0],[40991,40998,40993,0],[10935,40994,40995,0],[40995,40994,40968,0],[40995,40968,40967,0],[40990,40998,40966,0],[40967,40996,40995,0],[11001,11000,40965,0],[40990,40965,40997,0],[40990,40997,40998,0],[40998,40997,10998,0],[11000,40997,40965,0],[40993,40998,10998,0],[11005,41210,40955,0],[40955,40988,40956,0],[40954,40955,40956,0],[40954,40956,40999,0],[41001,40999,41000,0],[40952,41001,40951,0],[40999,40956,40957,0],[40999,40957,41000,0],[40951,41000,40938,0],[40937,41000,40957,0],[40937,40957,40936,0],[40951,41001,41000,0],[40934,40939,40949,0],[40949,40939,41002,0],[41004,41013,41103,0],[41103,41013,41005,0],[41103,41005,41209,0],[41209,41005,41006,0],[41209,41006,41007,0],[41162,41008,41014,0],[41162,41014,41009,0],[41160,41010,41023,0],[41160,41023,41011,0],[41124,41011,11181,0],[41002,40940,41003,0],[41003,40940,41012,0],[41003,41012,41030,0],[41007,41006,41008,0],[41008,41006,41014,0],[41021,41015,41420,0],[41021,41420,41022,0],[41022,41420,41016,0],[41016,41420,41017,0],[41017,41028,41406,0],[41406,41028,40944,0],[41016,11184,41022,0],[41014,41015,41009,0],[41019,41009,41018,0],[41019,41018,11183,0],[41019,11183,41946,0],[41946,11183,11182,0],[11183,41018,41020,0],[41020,41018,41021,0],[41015,41021,41009,0],[41009,41021,41018,0],[41020,41022,11184,0],[41021,41022,41020,0],[41019,41946,41023,0],[41019,41023,41010,0],[41013,41004,41030,0],[41030,41004,41003,0],[41012,40940,40942,0],[41012,40942,41024,0],[41027,41026,41028,0],[41027,41028,41029,0],[41024,40942,40943,0],[41024,40943,41025,0],[41025,40943,40944,0],[41025,40944,41026,0],[41026,40944,41028,0],[41012,41024,41030,0],[41013,41030,41027,0],[41013,41027,41005,0],[41005,41027,41006,0],[41014,41006,41029,0],[41024,41025,41030,0],[41030,41025,41026,0],[41030,41026,41027,0],[40933,41094,41031,0],[40933,41031,41032,0],[40928,40929,17978,0],[17978,40929,41034,0],[41034,40929,41033,0],[41034,41044,41043,0],[41035,41043,41036,0],[41088,41036,41037,0],[41037,41047,41472,0],[41472,41047,41471,0],[41471,41049,41038,0],[41079,41038,41039,0],[40972,41041,41040,0],[41040,41041,40981,0],[40981,41041,40980,0],[41042,40979,41049,0],[41049,40979,40980,0],[40972,41039,41041,0],[41041,41039,41038,0],[41041,41038,40980,0],[41036,41043,41037,0],[41037,41043,41044,0],[41037,41044,41045,0],[41047,41046,41048,0],[41049,41048,41042,0],[41042,41048,41046,0],[41042,41046,41051,0],[41051,41046,41052,0],[41051,41052,41050,0],[41051,40979,41042,0],[41050,41052,41053,0],[41050,41053,41054,0],[41054,41056,40977,0],[41052,40931,40932,0],[41052,40932,41053,0],[41053,40932,41056,0],[41056,40932,41057,0],[41056,41057,41058,0],[41056,41058,40977,0],[40977,41058,41055,0],[41056,41054,41053,0],[41058,41059,41055,0],[41055,41059,40975,0],[41059,40961,40962,0],[40961,41059,41060,0],[41062,41061,40935,0],[40935,41061,40949,0],[40949,41061,41063,0],[41058,41063,41059,0],[41063,41058,40934,0],[40934,41058,41057,0],[41061,41060,41063,0],[41063,41060,41059,0],[40975,41059,40962,0],[40975,40962,40987,0],[40975,40987,40974,0],[40974,40987,40965,0],[40974,40965,40990,0],[41052,41046,40931,0],[40931,41046,41047,0],[40931,41047,41045,0],[41045,41047,41037,0],[41047,41048,41471,0],[41471,41048,41049,0],[41038,41049,40980,0],[40930,41045,41044,0],[40930,41044,41034,0],[40930,41034,41033,0],[17976,41034,41043,0],[17976,41043,41035,0],[41035,41036,41089,0],[41089,41065,41064,0],[41064,41065,41484,0],[41484,41065,41485,0],[41066,41086,41067,0],[41069,41067,41068,0],[41069,41068,41070,0],[41069,41070,41071,0],[41072,41071,41073,0],[41073,41071,41081,0],[10835,41075,40973,0],[40973,41075,41084,0],[10835,40973,10834,0],[41069,41071,41473,0],[41067,41481,41066,0],[41473,41076,41069,0],[41069,41076,41481,0],[41069,41481,41067,0],[41068,41067,41086,0],[41068,41086,41077,0],[41078,41077,41079,0],[41079,41039,41078,0],[41080,41078,41082,0],[41080,41082,41081,0],[41073,41081,41075,0],[41073,41075,41074,0],[41074,41075,10833,0],[41082,41078,41083,0],[41082,41083,41084,0],[41084,41075,41081,0],[41084,41081,41082,0],[10835,10833,41075,0],[40972,41085,41083,0],[40972,41083,41039,0],[41039,41083,41078,0],[41469,41086,41087,0],[41086,41469,41077,0],[41077,41469,41470,0],[41077,41470,41079,0],[41086,41066,41087,0],[41485,41065,41066,0],[41066,41065,41087,0],[41087,41065,41468,0],[41468,41065,41089,0],[41468,41089,41088,0],[41089,41036,41088,0],[41089,17975,41035,0],[41089,41064,17975,0],[41090,40928,40947,0],[41090,40947,40941,0],[40941,40947,40943,0],[17981,40947,40928,0],[40928,41090,41091,0],[40928,41091,40929,0],[40929,41092,40930,0],[40930,41092,41093,0],[41093,41031,41094,0],[41093,41094,40932,0],[41031,41093,41095,0],[41095,41093,41092,0],[41095,41092,40929,0],[41095,40929,41091,0],[41032,41031,41096,0],[41096,41095,41097,0],[41097,41095,41091,0],[41097,41091,41098,0],[41098,41091,41090,0],[41098,41090,40941,0],[41098,40940,41097,0],[41097,40940,41099,0],[41097,41099,41096,0],[41096,41099,40939,0],[41096,40939,41032,0],[41095,41096,41031,0],[41003,41004,41102,0],[41102,41004,41100,0],[41100,41101,41207,0],[41002,41003,41102,0],[40949,41002,40950,0],[41002,41102,40950,0],[40950,41102,41100,0],[41100,41004,41103,0],[41100,41103,41101,0],[41101,41103,41209,0],[41101,41209,41207,0],[41207,41209,41208,0],[41208,41209,41104,0],[41104,41121,41120,0],[41106,41120,41105,0],[41106,41105,41107,0],[41106,41107,41111,0],[41107,41108,41111,0],[41111,41116,41109,0],[41110,41109,10969,0],[10969,41109,41116,0],[41111,41112,41113,0],[41113,41112,41114,0],[41207,41115,40952,0],[41118,41117,41119,0],[41118,41119,41205,0],[41119,41107,41105,0],[41120,41121,41122,0],[41122,41121,41162,0],[41122,41162,41161,0],[41159,41161,41160,0],[41159,41160,41123,0],[41125,41123,41160,0],[41125,41160,41011,0],[41011,41124,41125,0],[41125,41124,41945,0],[41125,41945,41126,0],[41126,41127,41128,0],[41128,41201,41572,0],[41127,41126,41129,0],[41127,41129,41171,0],[41171,41129,41133,0],[41133,41129,41130,0],[41133,41130,41131,0],[41133,41131,41132,0],[41174,41134,41135,0],[41135,41134,41154,0],[41172,41135,41148,0],[41172,41148,41137,0],[41137,41148,41136,0],[41137,41136,41176,0],[41139,41138,41146,0],[41139,41146,41143,0],[41139,41140,42426,0],[42426,11066,42423,0],[42423,11065,11064,0],[11065,42423,11066,0],[11066,41140,11067,0],[11067,41140,41141,0],[11067,41141,41142,0],[41142,16925,11068,0],[41142,41950,11067,0],[11066,42426,41140,0],[41141,41140,41139,0],[41141,41139,41143,0],[41141,41143,41149,0],[41149,41143,41145,0],[41149,41145,11143,0],[11143,41145,41144,0],[41144,41145,41146,0],[41146,41138,41147,0],[41147,41138,41148,0],[41148,41138,41136,0],[41142,41141,41149,0],[41142,41149,16925,0],[16925,41149,41150,0],[41150,11141,41947,0],[41947,11141,11140,0],[11141,41150,11143,0],[41150,41149,11143,0],[41134,16883,41151,0],[41151,16883,41153,0],[41151,41153,41152,0],[41152,41153,11146,0],[16882,11146,41153,0],[16882,41153,11148,0],[11148,41153,16883,0],[11146,41156,41152,0],[41154,41147,41148,0],[41147,41154,41152,0],[11145,41144,41156,0],[41156,41144,41155,0],[41144,41146,41155,0],[41155,41146,41147,0],[41155,41147,41152,0],[41155,41152,41156,0],[11145,41156,11146,0],[41148,41135,41154,0],[41152,41154,41151,0],[41151,41154,41134,0],[11151,41132,41131,0],[11151,41131,11152,0],[41131,41157,11153,0],[11153,11152,41131,0],[41129,41126,41945,0],[41129,41945,41130,0],[41123,41125,41573,0],[41123,41573,41158,0],[41158,41573,41205,0],[41205,41119,41158,0],[41158,41119,41105,0],[41123,41158,41159,0],[41161,41159,41122,0],[41161,41162,41009,0],[41161,41009,41010,0],[41161,41010,41160,0],[41008,41162,41007,0],[41007,41162,41121,0],[41007,41121,41104,0],[41120,41122,41105,0],[41122,41159,41105,0],[41105,41159,41158,0],[41107,41119,41117,0],[41117,41108,41107,0],[41116,41108,41925,0],[41925,41108,10968,0],[10968,41108,41163,0],[10968,41163,41164,0],[41187,41164,41197,0],[41187,41197,41188,0],[41184,41188,41165,0],[41184,41165,41166,0],[41186,41189,41190,0],[41186,41190,41167,0],[41168,41169,41175,0],[41175,41169,41170,0],[41171,41170,41127,0],[41173,41133,41172,0],[41133,41132,41172,0],[41172,41132,41174,0],[41174,41135,41172,0],[41133,41173,41171,0],[41171,41173,41170,0],[41170,41173,41175,0],[41136,41138,42427,0],[41136,42427,41177,0],[42424,41179,41185,0],[41185,42421,41180,0],[41183,41180,42428,0],[10967,42436,10966,0],[10966,42436,10965,0],[10965,42436,42432,0],[10965,42432,41182,0],[41182,42432,42431,0],[41182,42431,41181,0],[41181,42431,42433,0],[42433,11061,41181,0],[10965,41182,11060,0],[10965,11060,11059,0],[41183,42432,41184,0],[41183,41184,41180,0],[41180,41184,41166,0],[41189,41186,41166,0],[41166,41186,41185,0],[41166,41185,41180,0],[42424,41185,41186,0],[42424,41186,41167,0],[41167,41168,41178,0],[41178,41168,41177,0],[41167,41178,42424,0],[10967,41187,42436,0],[42436,41187,42432,0],[41164,41187,10967,0],[41187,41188,42432,0],[42432,41188,41184,0],[41138,41139,42427,0],[41175,41176,41168,0],[41177,41168,41136,0],[41136,41168,41176,0],[41176,41175,41137,0],[41137,41175,41173,0],[41137,41173,41172,0],[41166,41165,41196,0],[41167,41190,41168,0],[41168,41190,41169,0],[41169,41191,41192,0],[41192,41191,41202,0],[41202,41195,41206,0],[41206,41195,41193,0],[41193,41194,41196,0],[41169,41190,41191,0],[41191,41190,41195,0],[41191,41195,41202,0],[41190,41189,41194,0],[41194,41189,41196,0],[41199,41165,41197,0],[41197,41165,41188,0],[41169,41192,41170,0],[41163,41198,41164,0],[41164,41198,41197,0],[41197,41198,41199,0],[41193,41200,41206,0],[41206,41201,41202,0],[41199,41200,41165,0],[41165,41200,41196,0],[41196,41200,41193,0],[41163,41108,41117,0],[41163,41117,41198,0],[41198,41117,41199,0],[41199,41117,41203,0],[41201,41203,41204,0],[41205,41204,41118,0],[41118,41204,41203,0],[41199,41203,41200,0],[41200,41203,41206,0],[41206,41203,41201,0],[41170,41128,41127,0],[41201,41128,41202,0],[41202,41128,41192,0],[41192,41128,41170,0],[41106,41111,41113,0],[41106,41113,41120,0],[41120,41113,41104,0],[41104,41113,41208,0],[41207,41208,41115,0],[41115,41208,41114,0],[41114,41208,41113,0],[41104,41209,41007,0],[41062,40958,40959,0],[40959,40958,41210,0],[40988,41210,40958,0],[40968,40994,41564,0],[41564,40994,41563,0],[11582,11577,11581,0],[11581,11584,11582,0],[11550,41211,11489,0],[46021,41212,41213,0],[41214,41213,11542,0],[41214,11542,11543,0],[41214,11484,41213,0],[11541,41213,41215,0],[11541,41215,40905,0],[41215,41216,40905,0],[40905,41216,11548,0],[11550,11548,41211,0],[41211,11548,41216,0],[41213,41212,41215,0],[11489,41211,11488,0],[41211,41216,11488,0],[11488,41216,11486,0],[11486,41216,41212,0],[11486,41212,46021,0],[11462,11464,11461,0],[11461,41217,11460,0],[11460,41217,41218,0],[41218,41217,40901,0],[11461,11464,41217,0],[40901,41217,41219,0],[40901,41219,41220,0],[41220,41221,41222,0],[41220,41219,41221,0],[41221,41219,11483,0],[41219,41217,11482,0],[11349,40899,41223,0],[41223,40899,11574,0],[11554,11569,41224,0],[11554,41224,47660,0],[47660,41224,11572,0],[11572,41224,11573,0],[11573,41224,11574,0],[11349,41223,40876,0],[40876,41223,11348,0],[41225,11465,41221,0],[41225,41221,11543,0],[41222,40902,41220,0],[41220,40902,40901,0],[11569,41228,41226,0],[11569,41226,41227,0],[11569,41227,41229,0],[41234,11569,41229,0],[41229,11332,11570,0],[11570,11332,11686,0],[11570,11686,41230,0],[11686,11332,11333,0],[11570,41230,41231,0],[41231,41223,41234,0],[41234,41223,11574,0],[41234,11574,41224,0],[41224,11569,41234,0],[41223,41231,11348,0],[11348,41231,41230,0],[41232,11786,41233,0],[41233,11786,11571,0],[11331,11571,11786,0],[11786,41232,11787,0],[41234,41229,11570,0],[13160,11197,13161,0],[13161,11197,11784,0],[13161,11784,41236,0],[13161,41236,41235,0],[11198,41236,41237,0],[41237,41236,11783,0],[41237,11783,41247,0],[41247,11782,11787,0],[41238,11199,41239,0],[41240,41246,11778,0],[41240,11778,41244,0],[41241,41242,11200,0],[11200,41242,11201,0],[11203,41245,11204,0],[11204,41245,11776,0],[41244,41241,41240,0],[11776,41245,11804,0],[41245,41244,11804,0],[41244,41245,41241,0],[41241,41245,11202,0],[41241,11202,41242,0],[11203,41243,41245,0],[41245,41243,11202,0],[11200,41238,41241,0],[11200,11199,41238,0],[41239,41240,41238,0],[11199,11198,41239,0],[41237,41247,41246,0],[41239,41237,41240,0],[41240,41237,41246,0],[11198,41237,41239,0],[41246,41247,41250,0],[41246,41250,11778,0],[11778,41250,41248,0],[11801,11778,11779,0],[11779,11778,41248,0],[41248,41250,41249,0],[11787,41250,41247,0],[11156,41260,41258,0],[41258,41257,41251,0],[41251,41257,41256,0],[41256,41305,16802,0],[41256,16805,41252,0],[41256,41252,41251,0],[11156,41258,41252,0],[41252,41258,41251,0],[41256,41257,41254,0],[41254,18292,41253,0],[41253,18293,41255,0],[41256,41304,41305,0],[41256,41254,41304,0],[41304,41254,41255,0],[41255,41254,41253,0],[18347,18292,41254,0],[18347,41254,18346,0],[18346,41254,41257,0],[18346,41257,18345,0],[18345,41257,41258,0],[18345,41258,18344,0],[18344,41258,41259,0],[18344,41259,18343,0],[41259,41258,41260,0],[41260,11157,41259,0],[11154,41261,41262,0],[41262,41261,16808,0],[16808,41261,16804,0],[16804,41261,16803,0],[16803,41261,11155,0],[16803,11155,41252,0],[41252,16805,16803,0],[13148,13157,41263,0],[41263,13157,13155,0],[13148,41263,13147,0],[41264,14671,41265,0],[41264,41265,41273,0],[41590,41589,41267,0],[41590,41267,41268,0],[41269,41268,41270,0],[41269,41270,41271,0],[41276,41271,41597,0],[41276,41597,41272,0],[41590,41268,41278,0],[41590,41278,41266,0],[41266,41278,41273,0],[41273,41278,41274,0],[41264,41274,14672,0],[14672,41274,14673,0],[14673,41274,14674,0],[14674,41277,41275,0],[41279,41275,41276,0],[41283,41272,41597,0],[41283,41597,16791,0],[41276,41275,41271,0],[41271,41275,41269,0],[41269,41275,41277,0],[41269,41277,41278,0],[41274,41278,14674,0],[41278,41277,14674,0],[41278,41268,41269,0],[14674,41275,14676,0],[14676,41275,41279,0],[14676,41279,41280,0],[41280,41279,41282,0],[41280,41282,41281,0],[41280,41281,11182,0],[11182,41281,41285,0],[11182,41285,41946,0],[41946,41285,11181,0],[41279,41276,41282,0],[41282,41276,41272,0],[41282,41272,41284,0],[41284,41272,41283,0],[41284,41283,41290,0],[41284,41290,41285,0],[41285,41290,41286,0],[11179,41287,41291,0],[41287,11179,41288,0],[41287,41288,41286,0],[41286,41288,41289,0],[41286,41289,41285,0],[41285,41289,11181,0],[41285,41281,41284,0],[41284,41281,41282,0],[41286,41290,41292,0],[41286,41292,41287,0],[41287,41292,41291,0],[41291,41292,16790,0],[16790,11178,41291,0],[16791,41292,41283,0],[41283,41292,41290,0],[41264,41273,41274,0],[16792,16791,11162,0],[16792,11162,11177,0],[16798,16799,41293,0],[41293,16799,41313,0],[41293,41313,41294,0],[41295,41294,41297,0],[41295,41297,41314,0],[41295,41314,41296,0],[41297,41306,41307,0],[41332,41298,41299,0],[41299,41311,41300,0],[41300,41311,41312,0],[41300,41312,41301,0],[41301,41312,16800,0],[41300,41301,41302,0],[41300,41302,41303,0],[41303,41302,41310,0],[41303,41310,41364,0],[18295,41364,41310,0],[18295,41310,41599,0],[16801,41305,41304,0],[41302,16801,41310,0],[41599,41310,16801,0],[41294,41313,41297,0],[41297,41313,41306,0],[41298,41307,41299,0],[41309,16815,41308,0],[41308,11147,16813,0],[41308,16813,41293,0],[41293,41294,41309,0],[41309,41294,41295,0],[41293,41309,41308,0],[16798,41293,16797,0],[16797,41293,16813,0],[11147,41308,16814,0],[41308,16815,16814,0],[16800,16801,41302,0],[16800,41302,41301,0],[41311,41299,41307,0],[41311,41307,41306,0],[16800,41312,16799,0],[41311,41306,41312,0],[41312,41306,41313,0],[41313,16799,41312,0],[41297,41307,41314,0],[41314,41307,18193,0],[18193,41307,41298,0],[16826,41296,41316,0],[41316,41296,41315,0],[41315,18194,41316,0],[16826,41316,41317,0],[41317,41316,18194,0],[18193,41315,41314,0],[41314,41315,41296,0],[41317,18194,16828,0],[16828,18196,16843,0],[16829,16843,41318,0],[18226,18197,41318,0],[18196,18226,16843,0],[41318,16843,18226,0],[41318,18197,41377,0],[41378,41319,41320,0],[41320,41319,18198,0],[41378,41377,41319,0],[41319,41377,18197,0],[41318,41377,41321,0],[41318,41321,16829,0],[18208,18198,18227,0],[18207,41322,18200,0],[18200,41322,18201,0],[41322,18202,18201,0],[16838,16837,16839,0],[16822,16874,16821,0],[16821,16874,16872,0],[11131,11129,41323,0],[11137,41323,42205,0],[11137,42205,41324,0],[11138,41324,41325,0],[11139,41325,41326,0],[11139,41326,16914,0],[41327,11129,11128,0],[17683,17603,41328,0],[17683,41328,41331,0],[17603,17683,41329,0],[17603,41329,17604,0],[17606,41329,17607,0],[17732,17605,17606,0],[17732,17606,17607,0],[17607,41329,17682,0],[17682,41329,17683,0],[41331,17539,17623,0],[17539,41331,17520,0],[41330,17602,17522,0],[17602,41330,41328,0],[41330,17520,41331,0],[17539,17519,17623,0],[41332,41299,41333,0],[41333,41299,41300,0],[41333,41300,41334,0],[41335,41365,18233,0],[18233,41365,41336,0],[18233,41336,42209,0],[18232,41336,41367,0],[18232,41367,41359,0],[41359,41367,41337,0],[41337,41367,41368,0],[41337,41368,41362,0],[41338,41362,41361,0],[18238,41361,41339,0],[18238,41339,18178,0],[18178,41339,41340,0],[41633,41372,41373,0],[41633,41373,41343,0],[18296,41343,41344,0],[41344,41364,18295,0],[41344,18295,18296,0],[42229,41634,41345,0],[42229,41345,41346,0],[42229,41346,41340,0],[41340,41346,18176,0],[41340,18176,18178,0],[18176,41346,18175,0],[18175,41346,18307,0],[18307,18308,41352,0],[41352,18308,41347,0],[41357,41347,42233,0],[41357,42233,41348,0],[41357,41348,41356,0],[18274,41349,18371,0],[41348,41349,18461,0],[41348,18461,41356,0],[41356,18461,41355,0],[41349,41350,18461,0],[41348,18371,41349,0],[18175,18307,41351,0],[41351,18307,41352,0],[41353,41352,41347,0],[41353,41347,41357,0],[41351,41352,41354,0],[18174,41354,41353,0],[41352,41353,41354,0],[18174,41353,41355,0],[41355,41353,41356,0],[18238,41358,41361,0],[41361,41358,41338,0],[41338,41358,41337,0],[41338,41337,41362,0],[41336,18232,42209,0],[18179,41359,41360,0],[41359,41337,41360,0],[41358,41360,41337,0],[41339,41361,41374,0],[41339,41374,41375,0],[41374,41361,41362,0],[41339,41375,41340,0],[41335,18233,41363,0],[41335,41363,41333,0],[41333,41363,18192,0],[18233,18190,41363,0],[41334,41300,41303,0],[41334,41303,41365,0],[41334,41365,41335,0],[41303,41364,41365,0],[41376,41373,41372,0],[41376,41372,41370,0],[41376,41370,41366,0],[41362,41368,41369,0],[41369,41370,41371,0],[41371,41370,41372,0],[41344,41365,41364,0],[41365,41344,41373,0],[41344,41343,41373,0],[41369,41368,41366,0],[41366,41370,41369,0],[41367,41366,41368,0],[41362,41369,41374,0],[41341,41375,41374,0],[41341,41374,41369,0],[41341,41369,41342,0],[41342,41369,18302,0],[18302,41369,41371,0],[41373,41376,41365,0],[41365,41376,41336,0],[41376,41366,41336,0],[41333,18192,41332,0],[42207,41377,41378,0],[41394,41378,41379,0],[41381,41380,18037,0],[18033,41382,41381,0],[41381,41382,41380,0],[41392,41382,41876,0],[41391,41388,16876,0],[41391,16876,16877,0],[41391,16877,16835,0],[16835,16877,16849,0],[16849,16877,41386,0],[41386,16879,41387,0],[16840,41386,41387,0],[16876,41388,16875,0],[41389,41871,16834,0],[16834,41871,41384,0],[16834,41390,41391,0],[41388,41391,41390,0],[41385,41388,41390,0],[41385,41390,41384,0],[41384,41390,16834,0],[16834,41391,16833,0],[16833,41391,16835,0],[41392,41380,41382,0],[41380,41392,41393,0],[41393,41877,41394,0],[41378,41394,42207,0],[41394,41379,41393,0],[41393,41379,41380,0],[41383,41392,41876,0],[41378,41320,41395,0],[41379,41378,41395,0],[41395,42239,41379,0],[41379,42239,41380,0],[41380,42239,18037,0],[18035,18034,18037,0],[18035,18037,42238,0],[18037,42239,42238,0],[11330,11571,41227,0],[11330,41227,41396,0],[41396,41226,41228,0],[41396,41227,41226,0],[11330,41396,11557,0],[11239,11237,11929,0],[11929,11237,11243,0],[11925,11924,41398,0],[41398,11924,41399,0],[41399,11864,41398,0],[11863,41398,11864,0],[41399,11924,41400,0],[41399,41400,11864,0],[11864,41400,11865,0],[11865,41400,11231,0],[11924,11923,41400,0],[46885,41398,11863,0],[41401,11753,46022,0],[41401,46022,11326,0],[11788,41232,41233,0],[11745,11744,11747,0],[11745,11747,40946,0],[17982,41402,40946,0],[40944,41404,41406,0],[40944,40945,41404,0],[41404,40945,41403,0],[41403,40945,40946,0],[17982,11337,41402,0],[41402,11337,11745,0],[41402,11745,40946,0],[11745,11337,11336,0],[11747,41403,40946,0],[11747,41405,41403,0],[41403,41405,41406,0],[41403,41406,41404,0],[41405,11748,41406,0],[11748,41407,41406,0],[41406,41407,41017,0],[41017,41407,41016,0],[41016,41407,11185,0],[11201,41410,41408,0],[41412,41408,41419,0],[46026,13137,41409,0],[13136,41409,13059,0],[41419,41408,41410,0],[41419,41410,46026,0],[41411,11201,41408,0],[41411,41408,41412,0],[41412,46041,41411,0],[41413,46041,41439,0],[41439,46041,41414,0],[46042,41414,41418,0],[46042,41418,41442,0],[41442,41418,41415,0],[41442,41415,13136,0],[13136,41415,41416,0],[41416,41415,41417,0],[41412,41419,41417,0],[41417,41419,41416,0],[41417,41415,41418,0],[41418,46041,41412,0],[41412,41417,41418,0],[13136,41416,41409,0],[41409,41416,41419,0],[41409,41419,46026,0],[11793,11798,11796,0],[11796,11755,11794,0],[11796,11794,11793,0],[11780,41401,11326,0],[11326,11518,11325,0],[11326,11325,11780,0],[11802,11803,11797,0],[11797,11799,11802,0],[41396,11556,11557,0],[11556,41396,11555,0],[11555,41396,41228,0],[41028,41017,41420,0],[41028,41420,41029,0],[41029,41420,41014,0],[41014,41420,41015,0],[41421,11185,11187,0],[41421,11187,41422,0],[41422,11187,14681,0],[14681,14680,41422,0],[41422,41423,41424,0],[14675,41424,14673,0],[14673,41424,14672,0],[14672,41424,41423,0],[41423,41422,14680,0],[11185,41421,11184,0],[11184,41421,41457,0],[41020,14677,41425,0],[41425,14677,41426,0],[41425,41426,41280,0],[41425,41280,11182,0],[41425,11182,11183,0],[41425,11183,41020,0],[41280,41426,14676,0],[14666,41427,41430,0],[41430,41427,41428,0],[41430,41428,41429,0],[41429,14668,41430,0],[14666,41430,14667,0],[41427,13167,41432,0],[41432,41431,13199,0],[13200,41431,41433,0],[14721,41433,13167,0],[13167,41433,41432,0],[41427,41432,41428,0],[41429,41428,41588,0],[41429,41588,14668,0],[14668,41588,41434,0],[14668,41434,41435,0],[41435,41434,41265,0],[41265,41434,41273,0],[13155,13161,41436,0],[41436,13161,41235,0],[41436,41235,41438,0],[41438,41235,11198,0],[13155,41436,13154,0],[13154,41436,13162,0],[41436,41437,13162,0],[13162,41437,41443,0],[13154,13162,13152,0],[41437,41438,41439,0],[41438,41437,41436,0],[11198,41439,41438,0],[41441,13055,13056,0],[13055,41442,13056,0],[13135,13056,41442,0],[41443,13055,13054,0],[41439,41443,41437,0],[13051,13052,41444,0],[41444,13052,41449,0],[41444,41449,41451,0],[41451,41449,41448,0],[41451,41448,41452,0],[41452,41448,41445,0],[41448,41441,13057,0],[41448,13057,41446,0],[41448,41446,41445,0],[41445,41446,41447,0],[41447,41446,13067,0],[41445,41447,41453,0],[41453,41447,13069,0],[41453,13069,13072,0],[13072,13091,41453,0],[41441,41448,41440,0],[41440,41448,46043,0],[46043,41448,41449,0],[13051,41444,41450,0],[41450,13089,13050,0],[13089,41450,41451,0],[41451,41450,41444,0],[41452,41453,13091,0],[41453,41452,41445,0],[41452,13090,41451,0],[13048,41455,13047,0],[13047,41455,13046,0],[13117,41455,41454,0],[41454,41455,13048,0],[13114,13115,13117,0],[13114,13117,41456,0],[13114,41456,13086,0],[13087,13086,13110,0],[41422,41424,41457,0],[41457,41424,41458,0],[14677,41457,41458,0],[14677,41458,41426,0],[41426,41458,14675,0],[41424,14675,41458,0],[41422,41457,41421,0],[41459,11339,41460,0],[41459,41460,41461,0],[41461,41460,17976,0],[41461,41035,41462,0],[41461,41462,41463,0],[41463,41464,11739,0],[11739,41464,41495,0],[11739,41495,11738,0],[41466,11738,41496,0],[41466,41496,17974,0],[41465,40907,41466,0],[41465,41466,17974,0],[41463,41462,41464,0],[41464,41462,17975,0],[41461,41463,41459,0],[41459,41463,11739,0],[41459,11739,11340,0],[40907,41467,41466,0],[41467,11737,41466,0],[41466,11737,11738,0],[17983,41460,11339,0],[41469,41468,41470,0],[41038,41079,41471,0],[41471,41079,41470,0],[41471,41470,41472,0],[41088,41037,41472,0],[41088,41472,41468,0],[41468,41472,41470,0],[41469,41087,41468,0],[41077,41078,41068,0],[41068,41078,41080,0],[41068,41080,41070,0],[41473,41071,41072,0],[41473,41072,41476,0],[41072,41073,41474,0],[41475,10832,41477,0],[41072,41474,41475,0],[41475,41474,10832,0],[10832,41474,10831,0],[10831,41474,10840,0],[10840,41474,41074,0],[41478,41476,41477,0],[41475,41477,41072,0],[41072,41477,41476,0],[41477,17950,41478,0],[41479,41478,41487,0],[41076,41508,41480,0],[41076,41480,41481,0],[41481,41480,41482,0],[41485,41482,41483,0],[41484,41483,41535,0],[41485,41066,41482,0],[41482,41066,41481,0],[41485,41483,41484,0],[41508,41076,41486,0],[41508,41486,41479,0],[41479,41486,41478,0],[41076,41473,41486,0],[41486,41473,41478,0],[41478,17950,41487,0],[41487,17950,41528,0],[40973,41489,41488,0],[41488,41489,41490,0],[41490,41491,41497,0],[41497,41491,42418,0],[42418,17939,41497,0],[41492,42418,41491,0],[41492,41491,41493,0],[41493,41491,40971,0],[41493,40981,41494,0],[41491,41490,40971,0],[40971,41490,41085,0],[41085,41490,41489,0],[41070,41080,41081,0],[41071,41070,41081,0],[41495,41464,17975,0],[41495,17975,41496,0],[41496,11738,41495,0],[41499,41490,41497,0],[40973,41488,41500,0],[41497,17938,41499,0],[17938,41498,41499,0],[41488,41499,41498,0],[41488,41498,41500,0],[41500,41498,41540,0],[41499,41488,41490,0],[41501,17885,17884,0],[17884,17885,17879,0],[41501,10926,10927,0],[41501,41502,17885,0],[17819,41502,41501,0],[17819,41501,10927,0],[41503,41533,17960,0],[17960,41533,41504,0],[17960,41504,17961,0],[17960,17959,41503,0],[17923,41505,16994,0],[17923,17922,17920,0],[16994,41505,16995,0],[10850,41505,17923,0],[17930,17920,17925,0],[17931,17930,17926,0],[17926,17930,17925,0],[17932,17931,17926,0],[41483,41482,41506,0],[41506,41482,41507,0],[41507,41482,41480,0],[41508,41507,41480,0],[41506,41507,17973,0],[17972,17973,41507,0],[17972,41507,41509,0],[41509,41507,41508,0],[41509,41508,41510,0],[41510,41487,17951,0],[17951,17952,41510,0],[41508,41479,41510,0],[41510,41479,41487,0],[41533,41513,41517,0],[41533,41517,41514,0],[41514,41517,41515,0],[10825,41515,41516,0],[41517,41522,41530,0],[41519,41518,41520,0],[41519,41520,41538,0],[41538,41520,17947,0],[41538,17947,41539,0],[41539,17947,41536,0],[41536,17947,17946,0],[41518,41521,41520,0],[41518,41519,41523,0],[41523,41522,41512,0],[41512,41522,41513,0],[41512,17956,41523,0],[41518,41523,41524,0],[41518,41524,41525,0],[41528,41529,41511,0],[41528,41511,17952,0],[41528,17950,41527,0],[41527,17950,41477,0],[41527,41477,17949,0],[41527,17949,41526,0],[41526,17949,17948,0],[41526,17948,17947,0],[41526,17947,41521,0],[17948,10830,17947,0],[41525,41524,41527,0],[41527,41524,41528,0],[41528,41524,41529,0],[41511,41529,17955,0],[41525,41527,41526,0],[41524,17956,41529,0],[41529,17956,17955,0],[17956,41524,41523,0],[41518,41525,41521,0],[17947,41520,41521,0],[41517,41530,41515,0],[41530,41531,41515,0],[41515,41531,10827,0],[41515,10827,41516,0],[10827,41531,17944,0],[17963,41504,41533,0],[41515,41532,41514,0],[41532,17963,41514,0],[41514,17963,41533,0],[41533,41503,41534,0],[41533,41534,41513,0],[41517,41513,41522,0],[41519,41530,41523,0],[41523,41530,41522,0],[17955,17953,41511,0],[41511,17953,17952,0],[41917,17995,17998,0],[41535,41483,41506,0],[10841,10842,10838,0],[41536,17946,17945,0],[41530,41519,41538,0],[41537,41538,41539,0],[41537,41539,41536,0],[41536,17945,17944,0],[41531,41530,41538,0],[41538,41537,41531,0],[17944,41531,41536,0],[41536,41531,41537,0],[41540,10836,10834,0],[41540,10834,40973,0],[41500,41540,40973,0],[41541,41542,10869,0],[10869,41542,10870,0],[16997,41542,10866,0],[17910,17911,17913,0],[17913,17911,17912,0],[11085,11086,11084,0],[42150,17507,41543,0],[41545,41543,41544,0],[17507,41544,41543,0],[17609,17508,42150,0],[17609,42150,17610,0],[17610,42150,17611,0],[17611,41547,17612,0],[17612,41547,17613,0],[41546,17613,41545,0],[41546,41545,41544,0],[41546,41544,17036,0],[41543,41547,17611,0],[17613,41547,41545,0],[41545,41547,41543,0],[17608,17508,17609,0],[17507,42150,17508,0],[17619,17615,41548,0],[41548,41549,17624,0],[41548,17624,17620,0],[41548,17620,17619,0],[41551,42127,41550,0],[17899,17898,41553,0],[17899,41553,10902,0],[10902,41553,41554,0],[41559,41554,17447,0],[10902,41555,41556,0],[17821,10912,41558,0],[17821,41558,41557,0],[41557,41556,17823,0],[17823,41556,41555,0],[17823,41555,17822,0],[17822,10900,10899,0],[17822,41555,10900,0],[10900,41555,10901,0],[10901,41555,41559,0],[17043,17018,41560,0],[17003,17005,17006,0],[10868,10871,10865,0],[10865,41542,41541,0],[41541,10868,10865,0],[41562,41564,41565,0],[41565,41564,41563,0],[41561,41564,41562,0],[41564,41561,40968,0],[41562,41565,41566,0],[41562,41566,41567,0],[41567,41566,41492,0],[10933,41492,10934,0],[41492,41493,41567,0],[41493,41494,41567,0],[41567,41494,41562,0],[41563,10934,41565,0],[41565,10934,41566,0],[41492,41566,10934,0],[41569,41115,41568,0],[41110,10969,41920,0],[41110,41920,41570,0],[41570,10970,41569,0],[41569,10970,40952,0],[41569,40952,41115,0],[40952,11010,41001,0],[41001,11010,40953,0],[41569,41568,41570,0],[41570,41568,41110,0],[41568,41571,41110,0],[41112,41571,41114,0],[41115,41114,41568,0],[41568,41114,41571,0],[41110,41571,41109,0],[41111,41109,41112,0],[41573,41572,41204,0],[41573,41204,41205,0],[41201,41204,41572,0],[41125,41126,41573,0],[41573,41126,41572,0],[41128,41572,41126,0],[13209,41794,41574,0],[41574,42440,13211,0],[13211,13210,41574,0],[41574,13210,13209,0],[18462,18268,41575,0],[41575,18169,18270,0],[18270,18169,41673,0],[18270,41673,18170,0],[18462,41575,18269,0],[18269,41575,18270,0],[41350,41576,41577,0],[41577,41576,18384,0],[18384,18381,41577,0],[41350,41577,18273,0],[41582,18370,41579,0],[41579,41646,41580,0],[41580,41646,41644,0],[41580,41644,41581,0],[41580,41581,41582,0],[41580,41582,41579,0],[41578,41582,18372,0],[18372,41582,41581,0],[41583,11165,41584,0],[41583,41584,13196,0],[13196,41584,13197,0],[13197,41584,41585,0],[13197,41585,41586,0],[41434,41588,41591,0],[41588,41428,41587,0],[41587,41428,41432,0],[41432,13199,41587,0],[41587,13199,41586,0],[41586,13199,13197,0],[41586,41585,41589,0],[41586,41589,41598,0],[41598,41589,41590,0],[41598,41590,41591,0],[41591,41590,41266,0],[41584,41592,41585,0],[41585,41592,41589,0],[41589,41592,41267,0],[41267,41592,41593,0],[41267,41593,41594,0],[41594,11164,41595,0],[41595,11164,11163,0],[41595,11163,11162,0],[41595,11162,41597,0],[41594,41593,11164,0],[11164,41593,11165,0],[11165,41593,41584,0],[41584,41593,41592,0],[41267,41594,41268,0],[41268,41594,41270,0],[41271,41270,41596,0],[41271,41596,41597,0],[41597,41596,41595,0],[41594,41595,41270,0],[41270,41595,41596,0],[41591,41588,41598,0],[41586,41598,41587,0],[14670,41435,41265,0],[41273,41434,41591,0],[41591,41266,41273,0],[41255,41600,41599,0],[41599,41600,18295,0],[41304,41255,16801,0],[16801,41255,41599,0],[41255,18293,41600,0],[41600,18293,18295,0],[41601,11139,16914,0],[41601,16914,16860,0],[41601,16860,16861,0],[16861,16856,41601,0],[41131,41602,11179,0],[41157,41131,11179,0],[16793,11153,41157,0],[41603,18349,41605,0],[41604,41605,18365,0],[41604,18365,18366,0],[18365,41605,41606,0],[41611,41608,18285,0],[41611,18285,41607,0],[41630,41607,18285,0],[18284,18285,41608,0],[41609,41608,18349,0],[41609,18284,41608,0],[18365,41610,18286,0],[18365,41606,41610,0],[41606,41611,41607,0],[41605,18349,41606,0],[41606,18349,41611,0],[41608,41611,18349,0],[41603,41604,18350,0],[18350,41604,41612,0],[18350,41612,41648,0],[41648,41612,41613,0],[18366,41612,41604,0],[41604,41603,41605,0],[41614,18366,18365,0],[18366,41614,41616,0],[41616,41614,41615,0],[41616,41615,18359,0],[18360,41614,18362,0],[18362,41614,18365,0],[41616,18359,41617,0],[41617,18359,18367,0],[41618,41626,41619,0],[41619,41626,41620,0],[41621,18282,41622,0],[41621,41622,18283,0],[18283,41622,41623,0],[41623,41622,41624,0],[41623,41624,41625,0],[18347,18291,41625,0],[41625,18291,41623,0],[41622,18282,41620,0],[41622,41620,41624,0],[41625,41624,18292,0],[41624,41620,41626,0],[18292,41626,18293,0],[18292,41624,41626,0],[18283,41623,41627,0],[41628,41627,18291,0],[41628,18291,18290,0],[41623,18291,41627,0],[18290,41629,41628,0],[18288,41628,18287,0],[18287,41628,41629,0],[18287,41629,18289,0],[41628,18288,41631,0],[41631,18288,41630,0],[41632,41630,41656,0],[41632,41607,41630,0],[41631,41627,41628,0],[18282,18281,18320,0],[18282,18320,18319,0],[41633,41343,18321,0],[41633,18321,18298,0],[41633,18298,18299,0],[41372,41633,18299,0],[41372,18299,41371,0],[41371,18299,18302,0],[41342,18302,18303,0],[41342,18303,41341,0],[41341,18303,41634,0],[41634,18304,18306,0],[41345,18306,18307,0],[41345,18307,41346,0],[18304,41634,18303,0],[18316,18300,41635,0],[18325,18369,18312,0],[18368,18312,18369,0],[41639,18327,18280,0],[41638,18280,18349,0],[18378,18460,18459,0],[41636,18377,18378,0],[18378,18459,41636,0],[18278,41637,41653,0],[18280,41638,41639,0],[18279,41640,41637,0],[41637,41640,41639,0],[41637,41639,41638,0],[41641,41638,18349,0],[41641,18349,41603,0],[41603,18350,41641,0],[41643,41642,18351,0],[18378,18377,18351,0],[41646,18377,41644,0],[41581,41644,18373,0],[18373,18375,18374,0],[18373,41644,18375,0],[18375,41644,41645,0],[18351,18377,41643,0],[41643,18377,41646,0],[41647,18350,41642,0],[41648,41613,18352,0],[18352,41613,41617,0],[41642,41643,41650,0],[41650,41643,41646,0],[41650,41646,41579,0],[41649,41642,41650,0],[41653,41652,18370,0],[18370,41652,41579,0],[41579,41652,41650,0],[18276,41651,18277,0],[41651,18276,18310,0],[18310,18276,42232,0],[18310,42232,18305,0],[41651,18368,18278,0],[41651,18278,18277,0],[18277,18278,41653,0],[41653,41637,41652,0],[41652,41637,41647,0],[41652,41647,41649,0],[41652,41649,41650,0],[41647,41642,41649,0],[18377,41645,41644,0],[41619,41654,41618,0],[41618,41654,18318,0],[41618,18318,18296,0],[18318,41654,18297,0],[41654,41619,18319,0],[18319,41619,41620,0],[18319,41620,18282,0],[41657,11170,11168,0],[41657,11168,18333,0],[18333,41656,41657,0],[11170,41657,18332,0],[41658,18338,41659,0],[41658,41659,41660,0],[13193,41660,13194,0],[13194,41660,41659,0],[13194,41659,13205,0],[13205,41659,18338,0],[41660,13193,41662,0],[13191,41663,41662,0],[41662,41663,41661,0],[18287,18332,41657,0],[18358,18341,41664,0],[41664,18357,18358,0],[18168,41665,41666,0],[41667,41666,18167,0],[41667,18167,41668,0],[41668,18248,18481,0],[18481,18249,41668,0],[18249,41669,41668,0],[41668,41669,41670,0],[41668,41670,41667,0],[41669,18250,41671,0],[41671,18170,41673,0],[41673,18169,41670,0],[41670,18169,41672,0],[41670,41672,41667,0],[41670,41669,41673,0],[41673,41669,41671,0],[41666,41667,41672,0],[18170,41671,18253,0],[41666,41665,18167,0],[18167,18166,41668,0],[41668,18166,18248,0],[18248,18166,18488,0],[41674,18467,18264,0],[18264,18467,18466,0],[18264,18466,18469,0],[41675,18094,18093,0],[41676,18139,18141,0],[41676,18147,18146,0],[18146,18147,41677,0],[41677,41678,40788,0],[41686,40588,41679,0],[41679,40596,41680,0],[41680,40596,40587,0],[40596,41679,40588,0],[41679,41678,41686,0],[41681,41686,18100,0],[41686,41678,41677,0],[41686,41677,18100,0],[18100,41677,41698,0],[41683,41698,41682,0],[41683,41682,18104,0],[18104,41682,18105,0],[18100,41698,18101,0],[18101,41698,41683,0],[18104,41684,41685,0],[18103,41685,41684,0],[18104,41685,18101,0],[18104,18101,41683,0],[18098,41686,41681,0],[41677,40788,41687,0],[41677,41687,18146,0],[41687,40788,18148,0],[41695,41750,41779,0],[41693,41779,41749,0],[41693,41749,41688,0],[41688,41749,14298,0],[18160,41689,41690,0],[18160,41690,14295,0],[14295,41690,14296,0],[14296,41690,14309,0],[14309,41690,14297,0],[14297,41690,41689,0],[41692,41749,41691,0],[18092,41691,41748,0],[18092,41748,18083,0],[41691,18092,41692,0],[41749,41692,14299,0],[41695,41693,41696,0],[41696,41693,41694,0],[41675,41694,18158,0],[41689,18160,41694,0],[41693,41688,41694,0],[41688,14298,41689,0],[41688,41689,41694,0],[41695,41696,18472,0],[18472,41696,41697,0],[18472,41697,18081,0],[18093,18081,41675,0],[41675,18081,41697,0],[41675,41697,41694,0],[41694,41697,41696,0],[41682,41698,18141,0],[41705,13240,41704,0],[41699,41795,41700,0],[41700,41795,41701,0],[41700,41701,41703,0],[41703,41701,14396,0],[14396,14462,41703,0],[41702,14462,14318,0],[41702,41706,41700,0],[41706,41702,14318,0],[41700,41703,41702,0],[41699,41700,41706,0],[14316,41705,41704,0],[41706,14316,41704,0],[41706,14318,14316,0],[41706,41704,41699,0],[41699,41704,41709,0],[13240,41707,41704,0],[41704,41707,41709,0],[41707,13248,41708,0],[41709,41708,41699,0],[41708,41709,41707,0],[14544,14547,14543,0],[14550,14548,14549,0],[14558,14557,41710,0],[41711,14327,14328,0],[14329,41711,14328,0],[41711,14479,14327,0],[14327,14479,14326,0],[14326,14479,14480,0],[14392,14480,41712,0],[14329,14330,41713,0],[41713,14330,41714,0],[41714,41723,41713,0],[41718,41716,14605,0],[41718,14605,41717,0],[41717,14605,14339,0],[14339,14606,41717,0],[41717,14606,14601,0],[41717,14601,41718,0],[41718,14601,41719,0],[14600,41719,14601,0],[41711,14600,41720,0],[41720,41721,14479,0],[41721,41722,41817,0],[41817,14480,41721,0],[41721,14480,14479,0],[14605,41716,41726,0],[41726,41716,41713,0],[41723,41728,41727,0],[41727,41728,14334,0],[14334,41728,14333,0],[41726,41713,41724,0],[41724,41713,41723,0],[41724,41723,41727,0],[41724,41727,41725,0],[41724,41725,41726,0],[41725,41727,14335,0],[14336,14372,14335,0],[14372,41725,14335,0],[14384,14383,14469,0],[14378,14385,14469,0],[14469,14385,14384,0],[12976,41729,12975,0],[12975,41729,41731,0],[12974,41731,41730,0],[12961,12973,41730,0],[12961,41730,12962,0],[12962,41730,14379,0],[41730,41731,14379,0],[14379,41731,41729,0],[12973,41737,41730,0],[41731,12974,41732,0],[41732,12974,41733,0],[41733,41739,41736,0],[41736,41739,41734,0],[13016,41734,13018,0],[41734,13032,41736,0],[41736,13032,41732,0],[41733,41736,41732,0],[41731,41732,12975,0],[41735,12975,13031,0],[13031,12975,41732,0],[12974,41737,41733,0],[41733,41737,12972,0],[41733,12972,41739,0],[41739,12972,41738,0],[41738,12972,7159,0],[41739,41738,41734,0],[13013,13014,13020,0],[13013,13020,41740,0],[41740,13020,13027,0],[41741,7185,13030,0],[41741,13030,13027,0],[13021,13022,13027,0],[41741,13027,13022,0],[41742,41743,13019,0],[7168,13019,13024,0],[13019,41743,13020,0],[41744,41742,41745,0],[41745,7183,41744,0],[7183,13021,41744,0],[41742,41744,41743,0],[41743,41744,13021,0],[13017,7163,7167,0],[34815,34816,7182,0],[7182,34816,41804,0],[7182,41804,13023,0],[41746,14300,14301,0],[18083,41748,41747,0],[41691,41749,41779,0],[41747,41748,41750,0],[13279,41751,13278,0],[13266,41751,13288,0],[13288,41751,13279,0],[41753,41768,41752,0],[41753,41752,41754,0],[41775,41754,41766,0],[41775,41766,41767,0],[41775,41767,41762,0],[41762,41767,41755,0],[41755,41767,41787,0],[41755,41787,41785,0],[41755,41785,41756,0],[41755,41756,41757,0],[41765,41757,41764,0],[41764,41757,41776,0],[41764,41776,41758,0],[41758,41701,41759,0],[41759,13265,41760,0],[41759,41760,41764,0],[41764,41760,41765,0],[41765,41760,13277,0],[41765,13277,41763,0],[41761,41763,41753,0],[41753,41763,13278,0],[41762,41761,41775,0],[13277,13278,41763,0],[41758,41759,41764,0],[41757,41765,41755,0],[41765,41761,41762,0],[41761,41765,41763,0],[41755,41765,41762,0],[41767,41766,41774,0],[41789,41774,14409,0],[14409,41774,41771,0],[41787,41774,41789,0],[41754,41775,41753,0],[13278,41751,41768,0],[41768,13266,41752,0],[41754,41752,41769,0],[41754,41769,41772,0],[41772,41769,13273,0],[41772,13273,13272,0],[13273,41769,13268,0],[41773,41754,41770,0],[41773,41770,41771,0],[41754,41772,41770,0],[41770,41772,13272,0],[41754,41773,41766,0],[41771,41774,41773,0],[41774,41766,41773,0],[41751,13266,41768,0],[13267,13268,13266,0],[41753,13278,41768,0],[41775,41761,41753,0],[14458,41776,14399,0],[14400,41777,14401,0],[14401,41777,14438,0],[14438,41777,14399,0],[41819,14446,14448,0],[14448,14450,41819,0],[18158,18103,18157,0],[13179,13214,18424,0],[41748,41691,41779,0],[41779,41750,41748,0],[18092,18089,18088,0],[41783,41780,18422,0],[18419,18422,41780,0],[18419,41780,18418,0],[18418,41780,18085,0],[41781,18425,13229,0],[13177,13229,18425,0],[14419,18423,41781,0],[14629,14624,41782,0],[14629,41782,14628,0],[14304,18428,41783,0],[41784,41783,18422,0],[41783,41784,14304,0],[41784,13232,14304,0],[14315,14314,14305,0],[14314,14315,14312,0],[41787,41789,41792,0],[41787,41792,41798,0],[41785,41798,41786,0],[14402,41788,41786,0],[41786,41788,41785,0],[41785,41787,41798,0],[41756,41785,41788,0],[41756,41788,14438,0],[41756,14438,14399,0],[41757,41756,14399,0],[41757,14399,41776,0],[41792,41789,41790,0],[14407,41790,41789,0],[14407,41789,14414,0],[41791,41790,14435,0],[41790,14407,14435,0],[41790,41791,41792,0],[41793,41794,13176,0],[41574,41794,42440,0],[42440,41794,41793,0],[13261,14311,13250,0],[14398,41701,41758,0],[14398,41758,14458,0],[14458,41758,41776,0],[13265,41759,41795,0],[14397,41701,14398,0],[41759,41701,41795,0],[41708,41796,41699,0],[41699,41796,41795,0],[41796,13265,41795,0],[41752,13268,41769,0],[41752,13266,13268,0],[41786,41798,41797,0],[41786,41797,14403,0],[14403,41797,14436,0],[14436,41797,14435,0],[14435,41797,41791,0],[41798,41792,41797,0],[41797,41792,41791,0],[41800,14655,41799,0],[41799,14655,14656,0],[14656,14665,41799,0],[41800,41799,41801,0],[41800,41801,14653,0],[13169,41801,41799,0],[14653,14655,41800,0],[13002,13001,13029,0],[13002,13029,41816,0],[13002,41816,41802,0],[41805,7184,41803,0],[41803,7184,41804,0],[41803,41804,34816,0],[41803,34817,41805,0],[41805,41806,41802,0],[41802,41806,41807,0],[41807,41806,41808,0],[41808,41806,41809,0],[41808,41809,41810,0],[41810,41809,41811,0],[41811,7201,7202,0],[41811,7202,41810,0],[41810,7202,41812,0],[41812,12989,42826,0],[41812,42826,41814,0],[41814,42826,41813,0],[41815,41813,12991,0],[41813,42826,12990,0],[41813,12990,12991,0],[12990,42826,12988,0],[41811,41809,34817,0],[34817,41809,41805,0],[41809,41806,41805,0],[41802,41807,13002,0],[13005,41807,41808,0],[13005,41808,41815,0],[41815,41808,41814,0],[41810,41814,41808,0],[41810,41812,41814,0],[41814,41813,41815,0],[41807,13005,13002,0],[41805,41802,41816,0],[41816,7184,41805,0],[14480,41817,41712,0],[14325,14391,41818,0],[14391,41712,41818,0],[41817,48625,41712,0],[41712,48625,41818,0],[41819,14396,14439,0],[41826,14325,41818,0],[41826,41818,14481,0],[41822,14481,41821,0],[41820,41823,14504,0],[41823,41820,14506,0],[41823,14506,41821,0],[41822,14506,14508,0],[14506,41822,41821,0],[14481,14482,41821,0],[41824,14502,14504,0],[41824,14504,41823,0],[41821,14482,41825,0],[14501,41825,14500,0],[14500,41825,14499,0],[14499,41825,14482,0],[41821,41825,41823,0],[41823,41825,41824,0],[48625,14481,41818,0],[14324,41826,14508,0],[14508,41826,41822,0],[41822,41826,14481,0],[14535,14533,14532,0],[14535,14532,14536,0],[41827,40713,13317,0],[41827,13317,13315,0],[13340,13342,13319,0],[13337,13329,13336,0],[13336,13329,13335,0],[41828,18161,18158,0],[18106,18107,41828,0],[41828,18107,18161,0],[41828,41829,18106,0],[18106,41829,18105,0],[13259,13258,41830,0],[41830,13258,14292,0],[41830,14292,14293,0],[14541,14561,41832,0],[41832,41843,41833,0],[14546,14542,41834,0],[41834,14542,41845,0],[41835,14289,13299,0],[14289,41835,14270,0],[14275,41835,14273,0],[41835,14275,14270,0],[41835,13299,14273,0],[14273,13299,40584,0],[14279,41831,13293,0],[14279,13293,41836,0],[41836,13293,41837,0],[41837,14546,41834,0],[14546,13291,14544,0],[41836,41838,41842,0],[41842,41838,41839,0],[41839,41838,41844,0],[14285,41844,41840,0],[14285,41840,14286,0],[14282,41839,41841,0],[14288,41841,14285,0],[14285,41841,41844,0],[41844,41841,41839,0],[41839,14282,41842,0],[41842,14282,14278,0],[41840,41844,41845,0],[41840,41845,41833,0],[14286,41840,41843,0],[41833,41843,41840,0],[41834,41845,41838,0],[41838,41845,41844,0],[41834,41838,41837,0],[14274,13296,41831,0],[41831,13296,13294,0],[18043,18490,18044,0],[41846,18042,18492,0],[18492,18042,18245,0],[18247,41847,18492,0],[41847,18496,18491,0],[18042,18244,18245,0],[18251,18244,18041,0],[18251,18041,18040,0],[18040,42222,41849,0],[41849,42222,41848,0],[41849,41848,42223,0],[41849,42223,41850,0],[41852,41850,41851,0],[41849,41850,18242,0],[18241,18242,41853,0],[18241,41853,41854,0],[41354,18172,41854,0],[41854,18172,18241,0],[41854,41853,41354,0],[18242,41850,41856,0],[41856,41850,41855,0],[41856,41855,41853,0],[18175,41853,41855,0],[41853,18242,41856,0],[41850,41852,41855,0],[41855,41852,18177,0],[18177,42230,18178,0],[18243,41849,18242,0],[41857,42237,41858,0],[41858,41861,41864,0],[41864,41861,18048,0],[42237,41857,41859,0],[41859,41857,41860,0],[10788,41860,41857,0],[18044,41861,41862,0],[41863,42237,18041,0],[41863,18041,18042,0],[41863,18042,41862,0],[41863,41862,41861,0],[42237,41863,41858,0],[10786,41864,18048,0],[41858,41864,41857,0],[41857,41864,10788,0],[41860,10788,10789,0],[10789,18038,41860,0],[41860,18038,41859,0],[41867,10795,41865,0],[41865,10795,41868,0],[41865,41868,41866,0],[41865,18026,41867,0],[10794,41867,10793,0],[10793,41867,18027,0],[41868,41913,41901,0],[41382,18213,41869,0],[41869,18213,18031,0],[41869,18031,41873,0],[41870,41871,41383,0],[41383,41871,41389,0],[41383,41876,41870,0],[18031,41872,41873,0],[41873,41872,41880,0],[41873,41880,41899,0],[41873,41899,41870,0],[41870,41899,41874,0],[41875,41385,41384,0],[41875,41384,41874,0],[41874,41384,41871,0],[41874,41871,41870,0],[41382,41869,41876,0],[41870,41876,41873,0],[41873,41876,41869,0],[41392,41383,41877,0],[41877,41383,16832,0],[41393,41392,41877,0],[41394,41877,16831,0],[41394,16831,16830,0],[16848,16832,41878,0],[16848,41878,41879,0],[41879,41389,16833,0],[16848,16831,16832,0],[16867,41388,41385,0],[16867,41385,16868,0],[16868,41385,41885,0],[41875,41874,41899,0],[41881,41880,41900,0],[41881,41900,41901,0],[41868,41901,41866,0],[41881,10796,41880,0],[41880,10796,41882,0],[41875,41883,42193,0],[42193,41887,41875,0],[41875,41887,41884,0],[41875,41884,41385,0],[41385,41884,41885,0],[41891,11136,41886,0],[41886,11136,41887,0],[41888,41886,11112,0],[11110,41889,16990,0],[16990,41889,10806,0],[10806,41889,10805,0],[41889,11110,11111,0],[41889,11111,16989,0],[10805,41889,41890,0],[41889,16989,41890,0],[11112,41890,16989,0],[41890,11112,10804,0],[10804,11112,41886,0],[10804,41886,41887,0],[41884,41887,11136,0],[41887,18014,10804,0],[41891,41888,11114,0],[41891,11114,41897,0],[41886,41888,41891,0],[41892,41891,41897,0],[41893,41895,42198,0],[11124,42198,41894,0],[11124,41894,11123,0],[11123,41894,16985,0],[41897,41893,41892,0],[41892,41893,11135,0],[41893,41897,41895,0],[16987,41894,41896,0],[42191,41896,41898,0],[41894,41895,41896,0],[41896,41895,41897,0],[41896,41897,41898,0],[41895,41894,42198,0],[41875,41899,41883,0],[41883,41899,41882,0],[41882,41899,41880,0],[41900,41880,41872,0],[41872,18030,41900,0],[41900,18030,41901,0],[41866,41901,18030,0],[16867,16866,41388,0],[41388,16866,16875,0],[16866,16867,41902,0],[41902,16867,16868,0],[16866,41902,16870,0],[16870,11133,41903,0],[41903,11133,11132,0],[41903,16871,16870,0],[11133,16870,41902,0],[41902,16868,11134,0],[16868,41904,11134,0],[41904,11135,11134,0],[10781,10782,18049,0],[18499,10776,18514,0],[18514,10776,10777,0],[10793,18493,18025,0],[10793,18025,41905,0],[41906,18020,41907,0],[18007,41907,18022,0],[18007,41910,41906,0],[41908,18016,18015,0],[41908,18015,41909,0],[41909,41913,41908,0],[41915,18016,41910,0],[41915,41910,41914,0],[41914,41910,18007,0],[41914,18007,18013,0],[18007,41906,41907,0],[18016,41908,41911,0],[41912,41908,41913,0],[41912,41913,41868,0],[41912,18018,41908,0],[18016,41911,41910,0],[41910,41911,41906,0],[41906,41911,18018,0],[41503,17958,41534,0],[41916,17957,41512,0],[41534,17958,41916,0],[41534,41916,41513,0],[41513,41916,41512,0],[17995,41917,17968,0],[17968,41917,17986,0],[17967,17968,17986,0],[17986,41917,17999,0],[17999,41917,17987,0],[17986,10774,10773,0],[17003,41918,17002,0],[41919,40984,40985,0],[41919,40985,41957,0],[41957,40985,41054,0],[40978,41054,40985,0],[41920,41921,41924,0],[41924,41921,41922,0],[41924,41922,41923,0],[10972,10971,41923,0],[41923,10971,41924,0],[41920,41924,41570,0],[10973,41923,41922,0],[41944,10973,41922,0],[41921,41925,41922,0],[41932,41928,41929,0],[41922,41925,41926,0],[41922,41926,41944,0],[41926,41928,41944,0],[41944,41928,41932,0],[41944,41932,41931,0],[41930,41931,10981,0],[41930,10981,10975,0],[10981,41931,10977,0],[10977,41932,41929,0],[10977,41929,10978,0],[41929,41933,10978,0],[10978,41933,10979,0],[10979,41933,10980,0],[41931,41932,10977,0],[41926,41925,10968,0],[41926,10968,41928,0],[41928,10968,41927,0],[10968,10967,41927,0],[41928,41927,41929,0],[41927,42103,41929,0],[41934,10973,41944,0],[41934,41944,10974,0],[41934,10974,41930,0],[41934,41930,41935,0],[41934,41935,11014,0],[11014,10973,41934,0],[41930,10974,41931,0],[11027,11057,42435,0],[11027,42435,41936,0],[41936,42435,41937,0],[41937,10994,41938,0],[41937,41938,41939,0],[41939,41938,11022,0],[41939,11022,41940,0],[10994,41967,41938,0],[41967,11028,41938,0],[41938,11028,11021,0],[41938,11021,11022,0],[41940,11022,11023,0],[11023,41942,41940,0],[41940,41942,41941,0],[41941,41942,11024,0],[11014,41935,41943,0],[11015,41943,11042,0],[41943,11012,11014,0],[41945,41124,11180,0],[41945,11180,41130,0],[41130,11180,41602,0],[41131,41130,41602,0],[41011,41023,41946,0],[41946,11181,41011,0],[41947,11140,16913,0],[16924,16925,41947,0],[41947,16925,41150,0],[41947,16913,16924,0],[11064,11065,17528,0],[17528,11065,41948,0],[41948,41950,41949,0],[41949,41950,41951,0],[41951,41950,11068,0],[11069,11070,11068,0],[11068,11070,41951,0],[41950,41948,11066,0],[11066,41948,11065,0],[17548,17580,17542,0],[41952,16908,16927,0],[41952,16927,16926,0],[16926,16905,41952,0],[16926,16927,16928,0],[16928,16927,16910,0],[16910,16911,16928,0],[16926,16928,16904,0],[16928,16911,16929,0],[16929,16911,41953,0],[16919,41953,41954,0],[16918,41954,16917,0],[16911,41954,41953,0],[16918,16919,41954,0],[16918,16917,42206,0],[42206,16917,16916,0],[42206,16916,16915,0],[41955,41956,16914,0],[41957,40976,40974,0],[40974,41919,41957,0],[40991,40993,40992,0],[40992,40993,41958,0],[41958,10936,10935,0],[10935,40992,41958,0],[10936,41958,10937,0],[10938,10937,10939,0],[41958,10997,10937,0],[10937,10997,41959,0],[10937,41959,10939,0],[41959,41960,10939,0],[41963,41962,41961,0],[41961,10996,11018,0],[11018,10996,11039,0],[10996,41961,41962,0],[41962,41963,17845,0],[41978,41961,41964,0],[41978,41964,41965,0],[41978,41965,41977,0],[41977,41965,41966,0],[41967,41966,11028,0],[41967,10994,41980,0],[41980,10994,41968,0],[41980,41968,41982,0],[41982,41968,41969,0],[10994,10993,41968,0],[41968,10993,41969,0],[17809,10991,10990,0],[17809,10990,17808,0],[41970,17807,41971,0],[41971,17807,42002,0],[41971,17808,41970,0],[17806,17807,17805,0],[17809,17810,10991,0],[10991,17810,41973,0],[41973,17810,41969,0],[41970,41972,17807,0],[17807,41972,17805,0],[41973,41969,10993,0],[10993,10992,41973,0],[10991,41973,11056,0],[11056,41973,10992,0],[41966,41965,11028,0],[11028,41965,41964,0],[11028,41964,10995,0],[10995,41964,11018,0],[11018,41964,41961,0],[41963,41961,10942,0],[41960,41959,41974,0],[41974,10996,41962,0],[41974,41962,41960,0],[10997,41958,40993,0],[17842,17843,17853,0],[10944,41979,10945,0],[10945,41979,41975,0],[10945,41975,41989,0],[41975,41979,41988,0],[41988,41979,41977,0],[41988,41977,41976,0],[41966,41976,41977,0],[41961,41978,10942,0],[41978,41979,10942,0],[10942,41979,10944,0],[41988,41976,41981,0],[41981,41976,41980,0],[41967,41980,41966,0],[41966,41980,41976,0],[10949,41983,41984,0],[41984,17812,10949,0],[10949,17812,41985,0],[10949,41986,41983,0],[41983,41986,41982,0],[41982,41986,10948,0],[41982,10948,41987,0],[41982,41987,41981,0],[41981,41987,41988,0],[41975,41988,41989,0],[41989,41988,10946,0],[10946,41988,41987,0],[41982,41981,41980,0],[11035,11019,41990,0],[41990,11018,11039,0],[11039,10999,41990,0],[41990,10999,11037,0],[41990,11037,11036,0],[41990,11036,11035,0],[17827,17826,41991,0],[17897,41992,41991,0],[41993,10909,10910,0],[10909,41993,41992,0],[41991,41992,41993,0],[17827,41991,41993,0],[10913,10914,41995,0],[41995,10920,41994,0],[41995,41994,10913,0],[10913,41993,10910,0],[17826,42186,41991,0],[41991,42186,17897,0],[41996,10910,41997,0],[41996,41997,41998,0],[41997,10908,10907,0],[10908,41997,17824,0],[17824,41997,10910,0],[10910,41996,10911,0],[41996,41998,10912,0],[10904,41998,10905,0],[10905,41998,10907,0],[10907,41998,41997,0],[42001,17806,42006,0],[42001,42006,41999,0],[42001,41999,42000,0],[42002,42001,42003,0],[42002,42003,42004,0],[42004,42003,10954,0],[42004,10954,17814,0],[17814,42005,42004,0],[42002,42004,41971,0],[41971,42004,42005,0],[41971,42005,17808,0],[17808,42005,17813,0],[42003,42001,42000,0],[42006,17795,42007,0],[42006,42007,41999,0],[42007,17794,17793,0],[42007,17793,41999,0],[41999,17793,42000,0],[17666,17642,17672,0],[17672,17642,17669,0],[42008,17107,17106,0],[42099,17107,17262,0],[17262,17107,42009,0],[42010,42009,42008,0],[42010,42008,17104,0],[42363,42010,42362,0],[17228,42362,17227,0],[42363,17261,42010,0],[42010,17261,42009,0],[42009,17261,17257,0],[17107,42008,42009,0],[42359,17649,17659,0],[17659,17649,17648,0],[17294,17293,42012,0],[42012,17293,17656,0],[42023,42013,42022,0],[42022,42013,17291,0],[17302,42013,42012,0],[17303,42113,42114,0],[17340,17306,17289,0],[17340,17289,17303,0],[17303,42114,17340,0],[42014,17286,17092,0],[42014,17092,42015,0],[42014,42015,42016,0],[17055,42016,17054,0],[42014,42019,17091,0],[42017,42018,17056,0],[17470,17056,42018,0],[42014,42016,42019,0],[42019,42016,17055,0],[17091,42019,42017,0],[17286,42014,17091,0],[42020,17091,42017,0],[42020,42017,42021,0],[42021,17078,17077,0],[42021,17077,17089,0],[42021,17089,42020,0],[17089,17090,42020,0],[42020,17090,17091,0],[17078,42021,17056,0],[17056,42021,42017,0],[17289,42025,42022,0],[42022,42025,42023,0],[42023,42024,42357,0],[42357,42024,17296,0],[42023,42025,42024,0],[17099,42024,42026,0],[17099,42026,17287,0],[17287,42026,17288,0],[42026,42024,42025,0],[42026,42025,17288,0],[17296,42024,17297,0],[17289,42022,17291,0],[41977,41979,41978,0],[42027,17414,17404,0],[42049,42030,42031,0],[42033,42032,42030,0],[42033,42030,42029,0],[42031,42030,42032,0],[42033,42029,42034,0],[42034,42029,42028,0],[42034,42028,17377,0],[17377,17376,42034,0],[42034,17376,42036,0],[42034,42036,42035,0],[42035,42036,17351,0],[17420,42036,17376,0],[42034,42035,42033,0],[42033,42035,42037,0],[42032,42038,42040,0],[42032,42033,42038,0],[42038,42033,42037,0],[42032,42040,42031,0],[42038,42037,42039,0],[42038,42039,42257,0],[42038,42257,42040,0],[42040,42257,42041,0],[42042,42041,42258,0],[42042,42258,17070,0],[17070,42258,17426,0],[42041,42043,42040,0],[42040,42043,42031,0],[42041,42042,42043,0],[42031,42043,42044,0],[42031,42044,42049,0],[42044,17069,42049,0],[42046,42045,42054,0],[17063,42054,42048,0],[17063,42048,17064,0],[17064,42048,42256,0],[17069,42048,42054,0],[17069,42054,42049,0],[42045,42046,42029,0],[42045,42029,42030,0],[42029,42046,42028,0],[42028,42046,42050,0],[42050,17062,42051,0],[42051,17062,17061,0],[17061,17429,42051,0],[42051,17429,17430,0],[42051,17430,17377,0],[42051,17377,42028,0],[17379,17377,42052,0],[17379,42052,17431,0],[17062,42050,17063,0],[17063,42050,42054,0],[42054,42050,42046,0],[42058,42057,17783,0],[17783,42057,17779,0],[42057,42058,42059,0],[42059,42058,17781,0],[42059,17781,17780,0],[42058,17740,42355,0],[42355,17740,17742,0],[42063,17768,42061,0],[42060,42063,42061,0],[17768,42063,17746,0],[17110,42062,17109,0],[17645,17639,42060,0],[42060,17639,42063,0],[17746,42063,42062,0],[42063,17639,17109,0],[42063,17109,42062,0],[17114,17129,42064,0],[17129,17112,42065,0],[17128,17171,17120,0],[17120,17171,42065,0],[17174,17173,42066,0],[42066,42067,17167,0],[17167,42067,42068,0],[17176,42068,42067,0],[17174,42066,17175,0],[17114,17131,42069,0],[42069,17370,17114,0],[17370,42069,17117,0],[17118,42069,17131,0],[42070,42306,42071,0],[42306,42413,42071,0],[42071,17115,17168,0],[17168,17115,17175,0],[17168,17175,42066,0],[17139,17154,42072,0],[42072,17154,17147,0],[42072,17147,17146,0],[17147,17140,17145,0],[17145,17140,42073,0],[17145,42073,17144,0],[17144,42073,17143,0],[42073,17140,17142,0],[17143,42073,17142,0],[42074,17151,17201,0],[42074,42403,17166,0],[42074,17166,17151,0],[17151,17166,17152,0],[42327,42403,42075,0],[42327,42075,17197,0],[17197,42075,17203,0],[17203,42075,17196,0],[17196,42075,42403,0],[17166,42403,42327,0],[42333,42077,42076,0],[42333,42076,42334,0],[42334,42076,42398,0],[42076,42077,42085,0],[42085,42078,42081,0],[42079,42078,42095,0],[42079,42095,42086,0],[42079,42086,42080,0],[42079,42080,42081,0],[42081,42078,42079,0],[42083,42082,17204,0],[17204,42082,17189,0],[17189,42082,42084,0],[42084,42082,42085,0],[42085,42077,42084,0],[42085,42082,42078,0],[42086,42095,17236,0],[17236,42095,17235,0],[17236,42087,42086,0],[42088,17237,17215,0],[17215,17237,17238,0],[17215,17238,42090,0],[17123,42090,42376,0],[42376,42090,42091,0],[42093,17185,17184,0],[17123,17215,42090,0],[42086,42087,42094,0],[17233,42399,42094,0],[17233,42094,42089,0],[42399,42086,42094,0],[42094,42087,42089,0],[42088,42089,17237,0],[17237,42089,42087,0],[17254,42370,42096,0],[42096,42370,17231,0],[17231,42371,17250,0],[17254,42096,42088,0],[42088,42096,42089,0],[17255,17122,42101,0],[42101,17122,42097,0],[42097,17122,17121,0],[17121,17110,42097,0],[42097,17110,42098,0],[17110,17108,42098,0],[42098,17108,42099,0],[42099,17108,17641,0],[17255,42101,42100,0],[42099,17259,42098,0],[17259,42100,42098,0],[42098,42100,42101,0],[42098,42101,42097,0],[42099,17262,17259,0],[17262,17257,17259,0],[42102,17802,17801,0],[10965,10980,42103,0],[42103,10980,41933,0],[42103,41933,41929,0],[42123,17625,42129,0],[42128,42104,41550,0],[41550,42104,17624,0],[17624,42104,42129,0],[41551,41550,41549,0],[41551,41549,17336,0],[17336,41549,41548,0],[17614,17337,17336,0],[17336,41548,17615,0],[17336,17615,17614,0],[42106,42105,17678,0],[42106,17516,42105,0],[42133,42121,17674,0],[17674,42121,42109,0],[17675,42109,42122,0],[17675,42122,42112,0],[42111,42120,42130,0],[42130,42143,42111,0],[42112,42122,42115,0],[17342,42114,42116,0],[17342,42116,42115,0],[42115,42116,42112,0],[42112,42116,42113,0],[42113,42116,42114,0],[17627,42132,17670,0],[17670,17650,17627,0],[42118,17686,42117,0],[42118,42117,42119,0],[42119,42120,42133,0],[42133,42120,42121,0],[42133,42108,42119,0],[42119,42108,42118,0],[42118,42108,42132,0],[42121,42122,42109,0],[42115,42122,42110,0],[42110,42122,42111,0],[42122,42121,42111,0],[42121,42120,42111,0],[42130,42120,42129,0],[42129,42120,42123,0],[42117,42123,42119,0],[42119,42123,42120,0],[42110,42124,17342,0],[42110,17342,42115,0],[42124,42125,17342,0],[17342,42125,17330,0],[42125,42124,42126,0],[42126,42144,42127,0],[41550,42144,42128,0],[41550,42127,42144,0],[42127,42131,42126,0],[42126,42131,42125,0],[42108,42133,17673,0],[42108,17673,17671,0],[42108,17671,17670,0],[17670,42132,42108,0],[42133,17674,42136,0],[42136,42135,42134,0],[42134,42135,17655,0],[17655,42135,17664,0],[17299,42135,42109,0],[17674,42109,42136,0],[42136,42109,42135,0],[42136,42134,17654,0],[42136,17654,17673,0],[42136,17673,42133,0],[17673,17654,17672,0],[42125,17331,17330,0],[17310,42138,42137,0],[41552,42137,42140,0],[41552,42140,42139,0],[42146,42137,41552,0],[42146,41552,17319,0],[42146,17319,42147,0],[42147,17319,17317,0],[42147,17317,42141,0],[42016,42015,42142,0],[17054,42016,42142,0],[42145,42143,42144,0],[42145,42144,42126,0],[42126,42124,42145,0],[42145,42124,42110,0],[42145,42110,42111,0],[42145,42111,42143,0],[42143,42130,42104,0],[42104,42130,42129,0],[42104,42128,42143,0],[42143,42128,42144,0],[42137,42146,17310,0],[17310,42146,17309,0],[17309,42146,42147,0],[17309,42147,42148,0],[42148,42147,42141,0],[17093,42148,17095,0],[17095,42148,42141,0],[17053,17054,42142,0],[17514,42149,42163,0],[42163,42149,17565,0],[17565,42149,17564,0],[41543,17611,42150,0],[42151,42152,17512,0],[17512,42152,42153,0],[42153,42154,42155,0],[42168,17568,42155,0],[42153,42155,11077,0],[42153,11077,17512,0],[42156,16981,42157,0],[42157,16961,16953,0],[42157,16953,16951,0],[42157,16951,42156,0],[42156,16951,16950,0],[11098,16958,10862,0],[10862,16958,11099,0],[16958,16956,11101,0],[11101,16956,16957,0],[11101,16957,42158,0],[42159,42158,42160,0],[42158,42159,11102,0],[11102,11100,42158,0],[42158,11100,11101,0],[42158,16957,42160,0],[11098,42161,16958,0],[16958,42161,16959,0],[11093,42161,42162,0],[11093,42162,11095,0],[42162,42161,11098,0],[42163,42164,42152,0],[42163,42152,17514,0],[42163,17565,42164,0],[42165,16937,42167,0],[42166,16984,16936,0],[16984,42166,16937,0],[16943,42165,42167,0],[42167,16937,11122,0],[11122,16937,42166,0],[42168,42155,42154,0],[42154,17593,42168,0],[42168,17593,17567,0],[42153,42152,42164,0],[42153,42164,42154,0],[17019,17022,42169,0],[42169,17031,17019,0],[17019,17031,17033,0],[17505,17450,17460,0],[17460,17450,17455,0],[17455,17450,17454,0],[17505,17460,17459,0],[17456,42170,42171,0],[42170,42254,42171,0],[17098,17097,42174,0],[42174,17097,17096,0],[42174,17096,42175,0],[42175,17096,17076,0],[42173,42174,42172,0],[42172,17100,42173,0],[42176,42174,42175,0],[42176,42175,17074,0],[16967,16946,42177,0],[42177,16946,42156,0],[16949,42156,16946,0],[16976,16975,16966,0],[16976,16951,16975,0],[42178,17500,17497,0],[17014,42178,17024,0],[17024,42178,17496,0],[17496,42178,17497,0],[17913,10892,42180,0],[11097,42179,42181,0],[11097,42181,11096,0],[42179,10860,42180,0],[17910,17913,10860,0],[10860,17913,42180,0],[42180,10892,42179,0],[42179,10892,42181,0],[11090,42181,10892,0],[11090,10892,17499,0],[17499,17014,11089,0],[11089,11090,17499,0],[17915,42182,17916,0],[17915,17916,10887,0],[42182,17917,17916,0],[17820,17821,17822,0],[17820,17822,10899,0],[41993,42183,17827,0],[17828,17827,42183,0],[17828,42183,17829,0],[42183,41993,10921,0],[10921,41993,10913,0],[10921,10913,41994,0],[17829,42183,10921,0],[42184,42185,10921,0],[10921,42185,10922,0],[17833,17477,17476,0],[10915,10893,42243,0],[42187,11094,11095,0],[16974,42188,42181,0],[42181,42188,11096,0],[11096,42188,11091,0],[11091,42188,42187,0],[42187,42188,11092,0],[42189,16954,16982,0],[16982,16949,42189,0],[42190,11117,11116,0],[42190,11116,11115,0],[42190,11115,42191,0],[11117,42190,16979,0],[16979,42190,42192,0],[42159,16979,42192,0],[16989,11111,42192,0],[42192,11111,42159,0],[42193,18014,41887,0],[42193,41883,10803,0],[42193,10803,42197,0],[41883,41882,10803,0],[49978,10816,10817,0],[49978,10817,42194,0],[10817,10815,42194,0],[42194,10814,10809,0],[41882,10796,42195,0],[41882,42195,10802,0],[41882,10802,10803,0],[42196,10801,10815,0],[42196,10815,10817,0],[42196,10817,42197,0],[10816,42197,10817,0],[11133,11134,42200,0],[42199,42198,11124,0],[41893,42200,11135,0],[11115,11116,42204,0],[42204,11116,42201,0],[11119,42201,11118,0],[11118,42201,11117,0],[11117,42201,11116,0],[42191,11115,42204,0],[42203,42204,42201,0],[42203,42201,11120,0],[42203,11120,11121,0],[42201,11119,42202,0],[42201,42202,11120,0],[42191,42204,16987,0],[16987,42204,42203,0],[16987,42203,16988,0],[11121,16988,42203,0],[42200,42198,42199,0],[11133,42200,42199,0],[41323,11129,42205,0],[41324,42205,16919,0],[41324,16919,16918,0],[16918,42206,41324,0],[41324,42206,41325,0],[41325,42206,41326,0],[41326,42206,16915,0],[41953,41327,11128,0],[11129,41327,42205,0],[42205,41327,16919,0],[16830,41321,42207,0],[16830,42207,41394,0],[42208,18182,18228,0],[42209,42212,42210,0],[42209,42211,42212,0],[42212,42211,18229,0],[18229,42211,18231,0],[18229,18235,42212,0],[42212,18235,18236,0],[42216,42214,18216,0],[42216,18216,18219,0],[42217,42218,42215,0],[42215,42218,18181,0],[42216,42215,42214,0],[42214,42215,42213,0],[42218,42219,18181,0],[18181,42219,18182,0],[18182,42219,18183,0],[42219,42218,18225,0],[42218,42217,42220,0],[42220,42216,18219,0],[42216,42220,42217,0],[42220,42221,18221,0],[42220,18221,18222,0],[18221,42221,18218,0],[42224,41848,42222,0],[42231,42223,18217,0],[42231,18217,18216,0],[18217,42223,41848,0],[18217,41848,42224,0],[42224,42222,18039,0],[41850,42223,41851,0],[41851,42223,42225,0],[41851,42225,42226,0],[41851,42226,41852,0],[41852,42226,42230,0],[41852,42230,18177,0],[42223,42231,42225,0],[42225,42231,42227,0],[42225,42227,42226,0],[18039,41859,18038,0],[18241,42228,18252,0],[42228,18253,18252,0],[42229,41341,41634,0],[41341,42229,41375,0],[41375,42229,41340,0],[42231,18216,42214,0],[42231,42214,42227,0],[42227,42214,18237,0],[18237,42214,42213,0],[18309,42232,41347,0],[41347,42232,42233,0],[42233,42232,18276,0],[42233,18276,18275,0],[18275,41348,42233,0],[42234,41669,18249,0],[18249,42235,42234,0],[42234,42235,18246,0],[18481,18248,18488,0],[42235,18480,18246,0],[18246,18480,18245,0],[18053,18247,42236,0],[42236,18247,18480,0],[18250,18253,41671,0],[42237,41859,18039,0],[42220,18222,18215,0],[41334,41335,41333,0],[18036,18035,42238,0],[42240,42212,18236,0],[18188,42240,18236,0],[18236,18187,18188,0],[18188,18187,18204,0],[42212,42240,42210,0],[41366,41367,41336,0],[41637,41638,41647,0],[41641,41647,41638,0],[42241,10872,10863,0],[42241,10863,11099,0],[17941,17940,42242,0],[42182,17915,17914,0],[10888,17915,10887,0],[17917,42182,10890,0],[42184,10920,17900,0],[17058,17462,42244,0],[17058,42244,42245,0],[42246,17430,17473,0],[17432,42247,17471,0],[17471,42247,17472,0],[17472,42247,17473,0],[42246,17473,42247,0],[17484,42249,42248,0],[42248,42249,17469,0],[42249,42411,17438,0],[17438,42411,17458,0],[42249,17438,17469,0],[42170,17435,17060,0],[17062,17064,42251,0],[42251,17064,42256,0],[17062,42251,17061,0],[17061,42251,42252,0],[42253,42256,17067,0],[42252,42255,42253,0],[42170,42253,42254,0],[42250,42252,42253,0],[42250,42253,17060,0],[17060,42253,42170,0],[42254,42253,17067,0],[17066,42254,17065,0],[17066,17065,17080,0],[42256,42253,42255,0],[42251,42256,42255,0],[42254,17067,17065,0],[42256,42048,42047,0],[42041,42257,17349,0],[42041,17349,42258,0],[42259,17375,17414,0],[17374,42259,42027,0],[17374,42027,17404,0],[17403,17360,17404,0],[17404,17360,17374,0],[17414,42027,42259,0],[17364,17412,17411,0],[17364,17411,42261,0],[42260,42261,17390,0],[17390,42261,17411,0],[17364,42261,17365,0],[17365,42261,17366,0],[17366,42261,42262,0],[42263,42279,42264,0],[42264,42279,17391,0],[42264,42278,42266,0],[42266,42278,42276,0],[42277,17722,42265,0],[42265,17722,42056,0],[42265,42056,17721,0],[17721,42268,42265,0],[42265,42275,42276,0],[42276,42275,42266,0],[42263,42264,42267,0],[42268,42272,42270,0],[42366,42270,42269,0],[42271,42269,42351,0],[42272,42268,17755,0],[17755,17754,42273,0],[17755,42273,42272,0],[42272,42273,42270,0],[42270,42273,42269,0],[42269,42273,42351,0],[42351,42273,17753,0],[42263,42267,42274,0],[42263,42274,17367,0],[42264,42266,42267,0],[42266,42275,42267,0],[42277,42265,42276,0],[17391,17392,42264,0],[42264,17392,42278,0],[17391,42279,17396,0],[17396,42279,42260,0],[42260,42279,42261,0],[42263,42262,42279,0],[42262,42261,42279,0],[17388,17410,17409,0],[17388,17409,17408,0],[17387,17408,42280,0],[17408,17387,17388,0],[17408,17407,42280,0],[17405,42280,17406,0],[17406,42280,17407,0],[42281,17413,42053,0],[42281,42053,17432,0],[17432,42053,17431,0],[42282,17349,17350,0],[42282,17350,42286,0],[42285,42286,42283,0],[42283,42286,17351,0],[17424,42282,42284,0],[42286,42285,42284,0],[42286,42284,42282,0],[42284,42285,42295,0],[42295,42285,42294,0],[42283,17351,17423,0],[42283,42294,42285,0],[42286,17350,42287,0],[42286,42287,17351,0],[17349,42282,17424,0],[17425,42258,17349,0],[17425,17349,17424,0],[42291,17277,42288,0],[42288,17277,42289,0],[42288,42289,17278,0],[17278,42289,17268,0],[42291,42290,17276,0],[42290,42291,42292,0],[42292,42291,49979,0],[49979,42291,42288,0],[17162,17269,42293,0],[17269,17268,42293,0],[17162,42296,17161,0],[17161,42296,42295,0],[17423,42300,42283,0],[42283,42300,42294,0],[42295,42296,42284,0],[42284,42296,42297,0],[17427,42297,42299,0],[17427,17279,17425,0],[17427,17424,42297,0],[17424,42284,42297,0],[42297,42296,42298,0],[42299,42298,42289,0],[42297,42298,42299,0],[42035,17351,42037,0],[42045,42049,42054,0],[42318,17365,42302,0],[17365,42318,17364,0],[17364,42318,42301,0],[42301,42318,42315,0],[42301,42315,42313,0],[42313,17361,17362,0],[42301,42313,17362,0],[42303,42304,42319,0],[42306,42309,42413,0],[42307,42303,17366,0],[17366,42303,42302,0],[42307,17367,42311,0],[42311,42349,42308,0],[42308,42349,42310,0],[42307,42311,42304,0],[42304,42311,42321,0],[42308,42309,42306,0],[42308,42306,42311,0],[42311,42306,42305,0],[42311,42305,42321,0],[42313,42315,42314,0],[42314,42315,42316,0],[42314,42316,42326,0],[42316,42322,42317,0],[42313,42314,17359,0],[42315,42318,42323,0],[42323,42318,42312,0],[42312,42303,42319,0],[42303,42312,42302,0],[42302,42312,42318,0],[42319,42304,42320,0],[42320,42304,42321,0],[42317,42320,17143,0],[17143,42320,17144,0],[17144,42320,42321,0],[17144,42321,42305,0],[42306,42070,42305,0],[42305,42070,17144,0],[42312,42319,42322,0],[42322,42319,42320,0],[42320,42317,42322,0],[42312,42322,42323,0],[42315,42323,42316,0],[17155,42324,42325,0],[17155,42325,17141,0],[17141,42325,42317,0],[42317,42325,42316,0],[42316,42325,42326,0],[42326,17357,17358,0],[17358,42314,42326,0],[17358,17359,42314,0],[42326,42325,17357,0],[17357,42325,42324,0],[42327,17197,17164,0],[17164,17197,42329,0],[42329,17197,42332,0],[42329,42332,42328,0],[42329,42328,42330,0],[42329,42330,42331,0],[42344,17270,42339,0],[42331,42339,17270,0],[42328,17199,42333,0],[42328,42333,42338,0],[42339,42331,42330,0],[42339,42330,42338,0],[42338,42330,42328,0],[17199,42328,42332,0],[42345,42338,42334,0],[42345,42334,42340,0],[42346,42340,42342,0],[42346,42342,42341,0],[42338,42333,42334,0],[42334,42398,42335,0],[42340,42335,42342,0],[42341,42342,42343,0],[42341,42343,17246,0],[17246,42343,42337,0],[42335,42336,42342,0],[42340,42334,42335,0],[42339,42338,42345,0],[42339,42345,42344,0],[42341,17230,42346,0],[42345,42340,42344,0],[42344,42340,42346,0],[42343,42342,42336,0],[42336,42337,42343,0],[17360,17372,17374,0],[42071,17168,17169,0],[42347,42349,42366,0],[42347,42366,42269,0],[42310,42347,42348,0],[42348,42347,42269,0],[42348,42269,42271,0],[42348,42271,17368,0],[42348,17368,42310,0],[42366,42349,42274,0],[42274,42349,17367,0],[17368,42271,42350,0],[17762,42350,42351,0],[17762,42351,17752,0],[42351,42350,42271,0],[42354,17760,17756,0],[17756,42353,42354,0],[42352,17743,42353,0],[17751,17760,17750,0],[17760,42354,17750,0],[17750,42354,17744,0],[17744,42354,42353,0],[42355,17756,17780,0],[42355,17780,17781,0],[17781,42058,42355,0],[17717,17758,17754,0],[42357,17660,42356,0],[42013,42356,42012,0],[42356,42013,42357,0],[17660,42357,17296,0],[17660,42358,17659,0],[17659,42358,42359,0],[17649,42359,42011,0],[42359,42358,17218,0],[42359,17218,17217,0],[17217,42011,42359,0],[17218,42358,17295,0],[42358,17660,17295,0],[17297,17100,17219,0],[17297,17219,42360,0],[17297,42360,17101,0],[17101,42360,17283,0],[17226,17227,42361,0],[42361,17227,42362,0],[42361,42362,42010,0],[42363,42362,17251,0],[42363,17251,17253,0],[42363,17253,17261,0],[17251,17256,42372,0],[17251,42362,17256,0],[17646,42364,17640,0],[42357,42013,42023,0],[17287,17098,17099,0],[17297,42024,17100,0],[17100,42024,17099,0],[42276,42278,42277,0],[42270,42366,42365,0],[42268,42365,42275,0],[42275,42365,42267,0],[42274,42267,42366,0],[42365,42366,42267,0],[42268,42270,42365,0],[42275,42265,42268,0],[42268,17721,17755,0],[17330,42138,17341,0],[17648,42368,42364,0],[42361,17104,17103,0],[17104,42361,42010,0],[42361,17103,17226,0],[42372,42371,17251,0],[17251,42371,17252,0],[42371,42369,17252,0],[17252,42369,42370,0],[42370,42369,17231,0],[17231,42369,42371,0],[42372,17250,42371,0],[42368,17641,17640,0],[17640,42364,42368,0],[17134,42377,42373,0],[42373,42377,42375,0],[42373,42375,17184,0],[17184,42375,42093,0],[42093,42375,42374,0],[42093,42374,42092,0],[42092,42374,17124,0],[17133,42374,42375,0],[42376,42092,17124,0],[42376,42091,42092,0],[17134,42373,17177,0],[42377,17133,42375,0],[17209,17208,17207,0],[42386,17207,17206,0],[42386,17206,42378,0],[42406,17204,42382,0],[42383,42381,42385,0],[42383,42385,17191,0],[17191,42385,17190,0],[42381,42380,42406,0],[42381,42406,42382,0],[42384,17189,42084,0],[17190,42385,42384,0],[42386,42389,42387,0],[42387,42389,42388,0],[42387,42388,17194,0],[17194,17211,42387,0],[42387,17211,17209,0],[42387,17209,42386,0],[42386,17209,17207,0],[42389,42386,42378,0],[42391,42378,42379,0],[42391,42379,42392,0],[17192,42392,42393,0],[42391,17192,42390,0],[42391,42390,42388,0],[42391,42392,17192,0],[42389,42391,42388,0],[42391,42389,42378,0],[42392,42380,42381,0],[42380,42392,42379,0],[42383,42393,42381,0],[17189,42384,42385,0],[42382,17189,42381,0],[42381,17189,42385,0],[42093,42394,17186,0],[42093,17186,17185,0],[42394,42093,42395,0],[42090,17240,42091,0],[42091,17240,17242,0],[42091,17242,42395,0],[42395,17242,42396,0],[42395,42396,42394,0],[17241,17242,17240,0],[42092,42091,42395,0],[42092,42395,42093,0],[17177,17176,17170,0],[42397,42335,42398,0],[42397,42398,42085,0],[42085,42081,42397,0],[42076,42085,42398,0],[42335,42397,42336,0],[42397,42081,42080,0],[42080,42086,42399,0],[42337,42336,42399,0],[42399,42336,42080,0],[42080,42336,42397,0],[42390,17194,42388,0],[42402,17269,17162,0],[42402,17162,42400,0],[42400,17162,17161,0],[17269,42402,42401,0],[42401,17164,42329,0],[42329,42331,42401,0],[17164,42401,17165,0],[17165,42401,42402,0],[17165,42402,42400,0],[42405,17187,42404,0],[17206,42405,42378,0],[42378,42405,42379,0],[42379,42407,42406,0],[42406,42380,42379,0],[42405,42404,42379,0],[17188,42407,42404,0],[42408,17204,42406,0],[42408,42406,42407,0],[42407,42379,42404,0],[42409,17371,42410,0],[42409,42410,17749,0],[17274,17280,42290,0],[17274,42290,17264,0],[17458,42411,17505,0],[17792,42000,17793,0],[42309,42308,42412,0],[42412,42308,42310,0],[42412,42310,17369,0],[17369,42310,17368,0],[17369,42414,42412,0],[42412,42414,17115,0],[42412,17115,42413,0],[17116,17115,42414,0],[42413,42309,42412,0],[17369,17116,42414,0],[17883,42415,17866,0],[17866,42415,17865,0],[42415,17883,17876,0],[42415,42416,17865,0],[10854,17939,42417,0],[42417,17939,42418,0],[41492,10933,42418,0],[42418,10933,42417,0],[10855,10854,42417,0],[10855,42417,10933,0],[16924,16913,41956,0],[16912,16924,41956,0],[42433,42429,42419,0],[42419,42429,42420,0],[42430,42421,41179,0],[41179,42421,41185,0],[42430,42424,42422,0],[42430,42422,11064,0],[11064,42422,42423,0],[42423,42424,42425,0],[41179,42424,42430,0],[42424,42423,42422,0],[41178,42425,42424,0],[42425,41178,42426,0],[41178,41177,42426,0],[42426,41177,42427,0],[42426,42427,41139,0],[11064,11063,42430,0],[42421,42430,42420,0],[41180,42421,42428,0],[41183,42428,42429,0],[42429,42428,42421,0],[42421,42420,42429,0],[11063,11062,42430,0],[42432,41183,42431,0],[42431,41183,42433,0],[42434,11022,11029,0],[41939,41936,41937,0],[41194,41195,41190,0],[41194,41193,41195,0],[42437,42438,17563,0],[17563,17562,42437,0],[17564,42438,17565,0],[42438,17592,17563,0],[42438,42437,17561,0],[17565,42438,17561,0],[17566,17561,42437,0],[17705,10960,17800,0],[17705,17800,10961,0],[10961,17701,17705,0],[18459,18388,18376,0],[18459,18376,41636,0],[13209,18438,42439,0],[13186,13187,13185,0],[13185,13187,13213,0],[13183,13185,13217,0],[13217,13185,13182,0],[42440,13212,13211,0],[14659,14658,42441,0],[42441,14658,14657,0],[42441,14657,14638,0],[14657,14664,42442,0],[42442,14664,14656,0],[42442,14638,14657,0],[14634,14617,42443,0],[14662,42448,42444,0],[42444,42445,42446,0],[42444,42446,14662,0],[42448,42443,42447,0],[42448,42447,42444,0],[42444,42447,42445,0],[42445,42447,14616,0],[42443,42448,14634,0],[14634,42448,14635,0],[42448,42449,14660,0],[14660,14659,14635,0],[14660,14635,42448,0],[14661,42449,14662,0],[42449,42448,14662,0],[14722,13165,14725,0],[14717,14720,14746,0],[14737,42453,14730,0],[14730,14729,14737,0],[42453,14737,14738,0],[42453,14738,14699,0],[14699,14700,42453,0],[14700,12963,42453,0],[42453,12963,42451,0],[42451,42450,42452,0],[42452,14706,14705,0],[42452,42450,14706,0],[12963,42450,42451,0],[14730,42453,14731,0],[42453,42451,14731,0],[14731,42451,14732,0],[14732,42451,42452,0],[42452,14705,14645,0],[13041,14739,14711,0],[12957,42454,42455,0],[12957,12958,42454,0],[14710,42459,42454,0],[42454,42459,42456,0],[42455,42454,42456,0],[42455,42456,12577,0],[12577,12578,42455,0],[42456,42459,42457,0],[42457,12577,42456,0],[12577,42457,13039,0],[13039,42457,13040,0],[42458,13040,42457,0],[42458,42457,42459,0],[14710,42454,13042,0],[13042,42454,12958,0],[13042,12958,42460,0],[12959,42460,12958,0],[12959,13044,42460,0],[42461,12881,12919,0],[12919,12918,42461,0],[12893,13118,13119,0],[42464,42463,42462,0],[42462,42463,12874,0],[12874,12794,42462,0],[42465,42464,12951,0],[12951,12884,42465,0],[42465,12884,12883,0],[42465,12883,42466,0],[42466,12882,42812,0],[42812,42467,12921,0],[12920,42467,42812,0],[12951,42464,42462,0],[12806,42469,12811,0],[12806,12811,12810,0],[12260,42469,12261,0],[42469,14759,12261,0],[14760,14759,12805,0],[12805,14759,12806,0],[12806,14759,42469,0],[14760,12805,42468,0],[14760,42468,12262,0],[12262,42468,12263,0],[42468,12805,12263,0],[12843,12263,12804,0],[12804,12263,12805,0],[12479,14762,42471,0],[42471,42472,12478,0],[12478,42472,12477,0],[12258,42473,12259,0],[12258,12260,42473,0],[42474,12483,42472,0],[42474,42472,42475,0],[42475,42472,42471,0],[42475,14763,42474,0],[42476,42477,12081,0],[42476,12080,42477,0],[12079,12439,12077,0],[12078,12077,46791,0],[46791,12077,42480,0],[46791,42480,12072,0],[12072,42480,42478,0],[42478,42479,14796,0],[42478,42480,42479,0],[42479,42480,42481,0],[42480,12077,42481,0],[42481,12077,12076,0],[12074,14799,12444,0],[42482,12444,14799,0],[12814,12947,42820,0],[12814,42820,42483,0],[49796,12803,42960,0],[42483,49796,12610,0],[12816,12789,12814,0],[12814,42483,12816,0],[13105,13106,13094,0],[16754,42484,11953,0],[11953,42484,11955,0],[42484,16754,11952,0],[42484,11952,42485,0],[42487,42485,42486,0],[11955,42484,42487,0],[11955,42487,42488,0],[16748,11943,11942,0],[11942,16747,16748,0],[16747,11942,16740,0],[42484,42485,42487,0],[42488,42487,16748,0],[16748,42487,11943,0],[42487,42486,11943,0],[42486,42485,42489,0],[42486,42489,11944,0],[11944,42489,42502,0],[42502,42493,16763,0],[42490,13086,13087,0],[42490,13087,13106,0],[13085,42490,42491,0],[42491,42490,13106,0],[42491,13106,13105,0],[47505,13084,13085,0],[13085,42491,42492,0],[42492,42491,13105,0],[47505,13085,42492,0],[13096,13102,42492,0],[42492,13102,13083,0],[13105,13096,42492,0],[42492,13083,47505,0],[16757,11949,11948,0],[42494,11948,11947,0],[42494,11947,11946,0],[11945,42493,11946,0],[11948,42494,16757,0],[16757,42494,42495,0],[16759,42495,11952,0],[16759,11952,13124,0],[11952,42495,42485,0],[42485,42495,42489,0],[16759,16757,42495,0],[16756,16757,16759,0],[42497,34359,12585,0],[12585,12781,42497,0],[14751,42498,12572,0],[12572,42498,13119,0],[13119,42498,12893,0],[12922,12921,42499,0],[42499,12921,12876,0],[42499,12876,12928,0],[42499,12928,12875,0],[12926,12876,12927,0],[12921,42467,12876,0],[12927,12876,42467,0],[12922,42499,12924,0],[12924,42463,12922,0],[12924,42499,12875,0],[12565,12566,11954,0],[12565,11954,12564,0],[12564,11954,42501,0],[14757,42501,11956,0],[42501,14757,12564,0],[11956,42501,11955,0],[11943,42486,11944,0],[42494,42503,42495,0],[42494,11946,42503,0],[42503,42493,42502,0],[42503,42502,42489,0],[42503,42489,42495,0],[12253,12254,12504,0],[12253,12504,14766,0],[12504,12503,14765,0],[14765,12503,42504,0],[12250,42504,12500,0],[12500,42504,12503,0],[12251,42504,42505,0],[12251,42505,42510,0],[42510,42505,42506,0],[42516,42508,34650,0],[34650,42508,42526,0],[42509,42563,42506,0],[42506,42563,42510,0],[42506,42507,42509,0],[42509,42507,42516,0],[42509,42516,34650,0],[34650,34648,42562,0],[34650,42562,42509,0],[42506,42505,42515,0],[42511,42515,42512,0],[42511,42512,42514,0],[42514,42512,42513,0],[42514,42513,42519,0],[42519,42513,42965,0],[42965,42513,12114,0],[42506,42515,42507,0],[42507,42515,42511,0],[42507,42511,42516,0],[42518,42514,42519,0],[42514,42518,42517,0],[42514,42517,42511,0],[42511,42517,42516,0],[34656,42990,34657,0],[42520,34651,42521,0],[42520,42521,42522,0],[42522,42521,42989,0],[42523,42524,34659,0],[42522,42989,42525,0],[42525,42989,42523,0],[42527,42526,42508,0],[42518,42527,42517,0],[42521,34651,42526,0],[34652,42520,34641,0],[8927,34699,42535,0],[42535,34699,42528,0],[42529,42528,9288,0],[9288,9292,34507,0],[34507,9292,9289,0],[8927,42535,8928,0],[34699,42530,42531,0],[34699,42531,42532,0],[42532,42531,34640,0],[34699,42532,9291,0],[9291,42532,8926,0],[42532,42533,8925,0],[34655,42530,8927,0],[34634,34655,8927,0],[42533,42532,34639,0],[34639,42532,34640,0],[42535,42528,42529,0],[42534,42529,9288,0],[42536,42537,34631,0],[42536,34625,34628,0],[42538,34625,34629,0],[34625,42538,34628,0],[34627,42539,34628,0],[42540,12614,34645,0],[34645,12614,42543,0],[34645,42543,42541,0],[42540,34645,42542,0],[42540,12616,12620,0],[12616,42540,42542,0],[34643,42542,34645,0],[12614,42575,42543,0],[42558,42557,42577,0],[42822,42578,42545,0],[42822,42545,42546,0],[42548,42553,12813,0],[42551,42550,42552,0],[42552,42550,42549,0],[12812,42553,42547,0],[12612,42547,42546,0],[42555,42554,42559,0],[42555,42559,42565,0],[42565,42559,42548,0],[42556,42822,42553,0],[42556,42548,42559,0],[42548,42556,42553,0],[42554,42557,42558,0],[42558,42577,42544,0],[42557,42541,42574,0],[42574,42541,42543,0],[42554,42558,42559,0],[12614,42540,12615,0],[12614,12615,12600,0],[12615,42540,12620,0],[34646,42560,42569,0],[42561,42560,42554,0],[42561,42554,42570,0],[42563,42571,42510,0],[42570,42554,42555,0],[42570,42555,42564,0],[42564,42555,42565,0],[42567,42573,42566,0],[42566,42573,42572,0],[42568,42572,42565,0],[42572,42568,42566,0],[42565,42548,42550,0],[42550,42548,42549,0],[42549,42548,12813,0],[42568,42550,42566,0],[42566,42550,42551,0],[42566,42551,12808,0],[42550,42568,42565,0],[42554,42560,42541,0],[34648,42569,42561,0],[34648,42561,42562,0],[42560,42561,42569,0],[42571,42562,42570,0],[42570,42562,42561,0],[42571,42570,42564,0],[42565,42572,42564,0],[42564,42572,42571,0],[42571,42572,42573,0],[42510,42573,12251,0],[42563,42562,42571,0],[42574,42575,42576,0],[42574,42576,42557,0],[42557,42576,42577,0],[42576,12604,42577,0],[42578,12607,42545,0],[42578,42544,12604,0],[42544,42577,12604,0],[42580,12560,42711,0],[42580,42711,42712,0],[42580,42712,42579,0],[42579,12548,42580,0],[12382,12381,42581,0],[42582,12327,42583,0],[42583,42584,42589,0],[42590,42585,42586,0],[42587,42709,42591,0],[42592,42726,42593,0],[12368,12369,46037,0],[42598,42588,42596,0],[42598,42596,42591,0],[42591,42596,42590,0],[42591,42709,42592,0],[42591,42592,42593,0],[42591,42595,42598,0],[42598,42595,42594,0],[12369,42594,42593,0],[42593,42594,42595,0],[42593,42595,42591,0],[42591,42590,42587,0],[42587,42590,42586,0],[42585,42590,42589,0],[42589,42590,42588,0],[42588,42590,42596,0],[42594,12369,12370,0],[42594,12370,42597,0],[42597,12370,12371,0],[42597,12371,42599,0],[42725,42588,42599,0],[12329,12328,42599,0],[42599,12328,42725,0],[42725,42582,42583,0],[42588,42725,42589,0],[42725,12328,42582,0],[42599,42588,42597,0],[42588,42598,42597,0],[42597,42598,42594,0],[12383,12304,12381,0],[12381,12304,42600,0],[12381,42600,42581,0],[42581,42600,12325,0],[12325,42600,12327,0],[42583,12327,42600,0],[42583,42600,42601,0],[12304,42601,42600,0],[12323,14885,42628,0],[42628,14885,42602,0],[42603,42602,42648,0],[42603,42648,14883,0],[42603,14883,42604,0],[42604,14883,42629,0],[42629,14883,14882,0],[42602,42603,42627,0],[42627,42603,42604,0],[42627,42604,42605,0],[42606,42605,42607,0],[42606,42607,42608,0],[42609,42608,42610,0],[42612,42613,42614,0],[42614,42613,46577,0],[42616,42615,42617,0],[42616,42617,42618,0],[42618,42617,42750,0],[42618,42750,42619,0],[42619,42750,42620,0],[42619,42620,42624,0],[42621,42609,42610,0],[42621,42610,42623,0],[42623,42610,42611,0],[42623,42611,42622,0],[42622,42611,42612,0],[42621,42623,42624,0],[42624,42623,42622,0],[42616,42618,46864,0],[46864,42618,42625,0],[46864,42625,42622,0],[42622,42625,42624,0],[42618,42619,42625,0],[42625,42619,42624,0],[42621,42624,42741,0],[42741,42624,42746,0],[42608,42609,42606,0],[42605,42606,42626,0],[42605,42626,42627,0],[42632,42629,42646,0],[42632,42646,42607,0],[42608,42631,42610,0],[42607,42605,42632,0],[42632,42605,42604,0],[42632,42604,42629,0],[42629,14882,42630,0],[42630,42633,42634,0],[42634,42635,42636,0],[42634,42636,42647,0],[42647,42636,12053,0],[42647,12053,12054,0],[42634,42633,42635,0],[42636,42635,42637,0],[42637,42638,12051,0],[12051,42638,42639,0],[12051,12052,42637,0],[12052,12053,42637,0],[42637,12053,42636,0],[14882,46056,42630,0],[42630,46056,42633,0],[42646,42629,42640,0],[42640,42629,42630,0],[42630,42634,42640,0],[42640,42634,42641,0],[42640,42641,42646,0],[46563,42645,42646,0],[42646,42645,42607,0],[42646,46564,46563,0],[42646,42641,46564,0],[42641,46557,46564,0],[46564,46557,42644,0],[42642,42647,12054,0],[42642,42641,42647,0],[42647,42641,42634,0],[14885,14884,42602,0],[42602,14884,42648,0],[14883,42648,15665,0],[15665,42648,14884,0],[15192,42650,42656,0],[15192,42656,15194,0],[42650,15613,15612,0],[15612,42651,42690,0],[42652,42653,42681,0],[42681,42653,42654,0],[15186,42685,12357,0],[42656,42689,15194,0],[15194,42689,42657,0],[42691,42662,42659,0],[42660,42659,42661,0],[42660,42661,15202,0],[15204,42661,42687,0],[42687,42662,46597,0],[46597,42662,42663,0],[46597,42663,42664,0],[42664,42663,42665,0],[42665,42690,42651,0],[42651,42652,42665,0],[42665,42652,42679,0],[42665,42679,42664,0],[42666,42664,42667,0],[42667,42680,42668,0],[42668,42680,42677,0],[42668,42677,42669,0],[42669,42683,42675,0],[42671,42676,42672,0],[15216,15217,42672,0],[42672,15217,42673,0],[42673,47230,42674,0],[42673,42674,42671,0],[42671,42674,42675,0],[42672,42673,42671,0],[42670,42676,42671,0],[42670,42675,42683,0],[42683,42669,42677,0],[42678,42680,42679,0],[42664,42679,42680,0],[42664,42680,42667,0],[42680,42678,42677,0],[42679,42652,42681,0],[42679,42681,42678,0],[42678,42681,42677,0],[42681,42654,42682,0],[42682,42654,42684,0],[42682,42684,42683,0],[15185,42694,15186,0],[42682,42683,42677,0],[42682,42677,42681,0],[42684,42685,42694,0],[42694,42685,15186,0],[42685,42684,42655,0],[42655,42684,42654,0],[42694,42683,42684,0],[46503,15205,42686,0],[46503,42686,42700,0],[42695,42700,42686,0],[42695,42686,42703,0],[42703,42686,42666,0],[42703,42666,42667,0],[42686,15204,42687,0],[15205,15204,42686,0],[42686,42687,42666,0],[42661,42659,42687,0],[42687,42659,42662,0],[42663,42693,42688,0],[42690,42688,42689,0],[42690,42689,42692,0],[42690,42692,15612,0],[15612,42692,42650,0],[42690,42665,42688,0],[42688,42665,42663,0],[42660,42691,42659,0],[42658,42691,15200,0],[42658,15200,15198,0],[42658,15198,15195,0],[42658,15195,42657,0],[42658,42657,42691,0],[42691,42657,42662,0],[42663,42662,42693,0],[42693,42662,42657,0],[42650,42692,42656,0],[42656,42692,42689,0],[42657,42689,42693,0],[42688,42693,42689,0],[42694,15185,15671,0],[15671,15185,15672,0],[15672,15185,15673,0],[12360,15673,15186,0],[15186,15673,15185,0],[42669,42675,47235,0],[42696,42695,47233,0],[15211,47233,42697,0],[42697,47231,42698,0],[42698,47231,15214,0],[15214,15213,42698,0],[42700,42695,42696,0],[15210,42696,15211,0],[15210,15211,42701,0],[47233,15211,42696,0],[15210,46504,42696,0],[42696,46504,42702,0],[42696,42702,42700,0],[42700,42702,46503,0],[47235,42695,42703,0],[47235,42703,42669,0],[42668,42669,42703,0],[42703,42667,42668,0],[47235,42675,47234,0],[42704,42705,12547,0],[12548,12547,42580,0],[42580,12547,42705,0],[42580,42705,12560,0],[42706,12562,42714,0],[42585,42714,42586,0],[42586,42707,42587,0],[42587,42707,42709,0],[42709,42707,11958,0],[42709,11958,42710,0],[42710,11958,42708,0],[42709,42710,42592,0],[42586,42714,12562,0],[12562,42706,12561,0],[12561,42706,42711,0],[12561,42711,12560,0],[42713,42579,42712,0],[42712,42711,42706,0],[42712,42706,42714,0],[42714,42585,12300,0],[12300,42585,42589,0],[12300,42589,42584,0],[12300,42584,12543,0],[12543,42584,42715,0],[42715,42584,42583,0],[42715,42583,42601,0],[42715,42601,12302,0],[42715,12302,12543,0],[42714,12300,42713,0],[42714,42713,42712,0],[42737,16746,16741,0],[16767,42717,16777,0],[16774,42717,42718,0],[16774,16777,42717,0],[42719,16773,16778,0],[16778,16773,16774,0],[42719,42721,42720,0],[13127,42720,42721,0],[16769,42719,16771,0],[16771,42719,42720,0],[16760,42721,16778,0],[16770,16772,16779,0],[16770,16779,42722,0],[16770,42722,42723,0],[42723,42724,46025,0],[42723,46025,16785,0],[42723,16785,16768,0],[42724,16779,13064,0],[13064,13061,42724,0],[42724,42723,42722,0],[42725,42583,42589,0],[42726,42710,11961,0],[42726,11961,42727,0],[42727,11961,42728,0],[42708,11961,42710,0],[42710,42726,42592,0],[42593,42726,46037,0],[42593,46037,12369,0],[42728,16752,12379,0],[12379,16752,12378,0],[42729,42730,42731,0],[42732,42731,42737,0],[42732,42737,16743,0],[42733,42732,11932,0],[16744,11932,42732,0],[42733,11932,11933,0],[42729,16730,16729,0],[11963,16728,11964,0],[11964,12377,11963,0],[11963,16729,16728,0],[11963,16753,16729,0],[16729,16753,42729,0],[42729,42731,42733,0],[42733,42731,42732,0],[11933,42734,42733,0],[42733,42734,16730,0],[16730,42734,16732,0],[16730,42729,42733,0],[16732,42734,42735,0],[16732,42735,16733,0],[16733,42735,46028,0],[42730,42736,42731,0],[42731,42736,16746,0],[42731,16746,42737,0],[16746,42736,42716,0],[42736,42730,16751,0],[42736,16751,11962,0],[42736,11962,16750,0],[16750,42716,42736,0],[42738,16744,11936,0],[42738,11936,11208,0],[42738,11208,11930,0],[16781,16786,46025,0],[42739,12321,42740,0],[42739,42740,12309,0],[12309,42740,12310,0],[12322,42626,42741,0],[12322,42741,42742,0],[42742,42744,42743,0],[42743,42744,12313,0],[42743,12312,42745,0],[42743,42745,42742,0],[42742,42741,42746,0],[42742,42746,42744,0],[42744,42746,42768,0],[42768,42746,42747,0],[42768,42747,12314,0],[12314,42747,42620,0],[12314,42620,42748,0],[42748,42620,42750,0],[42749,42750,42758,0],[42749,42758,42759,0],[42749,42759,42751,0],[42751,42759,42752,0],[46855,42755,42756,0],[46843,46575,46845,0],[46843,46845,14803,0],[46843,14803,14802,0],[42755,42754,42757,0],[42756,42757,42763,0],[42756,42755,42757,0],[42755,46856,42754,0],[42760,42761,42759,0],[42752,42759,42753,0],[42750,42617,42758,0],[42758,42617,42760,0],[42766,42762,42757,0],[42757,42762,42763,0],[42760,42617,42764,0],[42760,42764,42765,0],[42766,42765,42767,0],[42766,42767,42762,0],[42765,42766,42761,0],[42765,42761,42760,0],[42617,42615,42764,0],[42750,42749,42748,0],[12314,12313,42768,0],[42768,12313,42744,0],[42751,42752,12315,0],[42752,42753,42769,0],[12317,46857,12318,0],[42624,42747,42746,0],[42626,42770,42741,0],[42741,42770,42621,0],[42626,42606,42770,0],[42770,42606,42621,0],[42627,42626,46891,0],[42627,46891,42628,0],[42628,46891,12323,0],[12412,12390,12410,0],[12412,12475,12390,0],[12412,12474,12475,0],[42771,12474,12413,0],[12486,12487,42470,0],[12519,12535,42772,0],[12535,12234,42772,0],[42772,12234,12233,0],[42772,12233,12520,0],[42773,14795,42477,0],[42773,42477,42797,0],[46848,42774,42775,0],[42790,42802,42788,0],[42780,42779,42781,0],[42782,42781,46437,0],[42782,46437,46438,0],[42782,46438,46439,0],[46439,12131,42785,0],[46439,42785,42786,0],[46439,42786,42782,0],[42781,42782,42780,0],[42780,42782,42786,0],[42785,42784,42786,0],[42786,42784,42787,0],[42786,42787,42780,0],[42784,42785,42783,0],[46793,42787,42777,0],[42777,42787,42788,0],[42789,42809,42790,0],[42790,42809,42776,0],[42788,42789,42790,0],[42787,42784,42788,0],[42788,42784,42789,0],[42788,42802,42777,0],[42777,42802,42791,0],[42791,42802,42806,0],[46735,42806,42807,0],[46735,42807,42792,0],[46735,42792,46419,0],[46419,42792,46728,0],[46728,42792,46789,0],[46729,46789,46595,0],[46729,46595,42793,0],[42793,46595,46836,0],[46427,46426,42794,0],[46592,42794,46838,0],[42795,46592,46839,0],[42795,46839,42796,0],[42796,46839,12063,0],[42796,12063,12062,0],[12063,46839,12064,0],[12064,46838,46837,0],[46837,46595,46594,0],[46837,46594,12064,0],[42791,46793,42777,0],[42773,42797,12227,0],[42797,42774,12227,0],[12227,42774,12086,0],[42477,12080,42797,0],[42797,12080,12078,0],[42797,12078,42798,0],[42798,12078,42799,0],[42798,42799,42805,0],[42805,42799,12070,0],[42805,12070,42800,0],[42800,12070,42801,0],[42800,42801,42790,0],[42802,42801,42803,0],[42803,12068,42804,0],[42798,42805,42775,0],[42775,42805,42776,0],[42775,42774,42798,0],[42790,42801,42802,0],[42802,42803,42806,0],[42807,42806,42808,0],[42808,42806,42803,0],[42808,42803,42804,0],[42808,42804,12066,0],[42790,42776,42800,0],[42809,42775,42776,0],[42809,42789,42783,0],[42784,42783,42789,0],[42470,12487,12507,0],[12507,12487,12488,0],[12507,12488,12491,0],[12491,12488,12527,0],[12310,42740,42810,0],[12310,42810,12312,0],[12312,42810,42745,0],[12559,12870,12285,0],[12285,12870,34387,0],[12559,12277,12870,0],[12870,12277,42811,0],[12277,12544,42811,0],[42465,12923,42464,0],[12923,42465,42466,0],[12923,42466,42812,0],[12923,42812,12921,0],[12902,12907,12903,0],[12903,12907,12908,0],[12903,12908,12786,0],[12786,12908,12904,0],[12903,48840,12909,0],[42813,12789,34345,0],[42813,34345,42815,0],[12588,42814,34344,0],[42814,12588,12587,0],[12788,42813,42815,0],[12788,42815,12905,0],[12906,12905,12587,0],[12905,42815,12587,0],[12587,42815,42814,0],[12829,12777,12776,0],[34346,12829,12776,0],[34342,12777,12830,0],[42816,42817,34621,0],[42817,12653,34621,0],[34621,12653,12651,0],[8938,12651,8937,0],[12653,42817,12763,0],[12657,42816,12659,0],[12659,42816,42818,0],[12659,42818,12695,0],[42816,34621,42818,0],[12606,12605,12824,0],[12606,12824,12825,0],[12824,12605,42962,0],[42962,12605,12603,0],[12608,12823,49794,0],[42962,12603,42961,0],[42961,12603,12775,0],[12600,12821,42961,0],[12803,49796,42819,0],[42821,42559,42558,0],[42821,42558,42544,0],[42822,42544,42578,0],[42544,42822,42556,0],[42544,42556,42821,0],[42553,42822,42547,0],[42547,42822,42546,0],[34383,12898,12897,0],[7169,42823,7170,0],[7170,42823,42825,0],[12744,34365,42824,0],[42825,42823,7173,0],[7155,42825,7156,0],[42825,7173,7156,0],[41738,13018,41734,0],[42826,12989,7203,0],[12988,47684,12987,0],[12987,47685,13796,0],[47683,12987,13796,0],[14497,42828,42829,0],[42829,14496,14493,0],[14495,14493,14496,0],[14493,14492,42829,0],[14494,42830,14493,0],[42832,13813,42854,0],[14492,42833,48646,0],[48646,42833,14498,0],[14498,42833,42835,0],[14493,42830,42856,0],[14493,42856,14492,0],[14492,42856,42833,0],[13863,42834,42855,0],[42833,42834,42835,0],[13863,13834,42834,0],[42846,14494,14368,0],[42846,14368,42838,0],[42846,42838,42840,0],[42846,42840,42848,0],[42848,42840,42837,0],[42848,42837,42843,0],[42836,42843,13825,0],[13825,42843,42837,0],[13825,42837,13824,0],[13824,42837,42840,0],[42840,42838,42841,0],[42841,13607,42839,0],[13824,42840,42839,0],[42839,42840,42841,0],[13823,42839,13607,0],[42838,42842,42841,0],[14369,42842,14368,0],[14368,42842,42838,0],[42842,13608,42841,0],[42841,13608,13607,0],[14494,42846,42847,0],[42844,42845,13813,0],[42845,42844,42836,0],[42836,13825,13826,0],[13826,13827,42836,0],[42836,13827,13828,0],[42836,13828,42845,0],[42844,42843,42836,0],[42847,42846,42848,0],[42847,42848,42849,0],[42848,42843,42849,0],[14494,42847,42830,0],[42831,42847,42832,0],[42849,42843,42832,0],[42832,42843,42844,0],[42844,13813,42832,0],[14368,14494,14495,0],[14368,14495,14367,0],[14367,14495,42850,0],[42850,14495,14496,0],[42850,14496,42852,0],[42852,14496,42851,0],[42851,14496,42853,0],[42828,42853,42829,0],[42829,42853,14496,0],[14366,42850,42852,0],[14365,42852,14604,0],[14365,14604,14361,0],[14604,42852,42851,0],[42851,42853,14603,0],[14603,42853,42828,0],[42832,42854,42831,0],[42831,42854,42855,0],[42855,42854,13865,0],[42855,13865,13863,0],[13830,13865,42854,0],[42831,42855,42856,0],[42831,42856,42830,0],[42833,42856,42834,0],[42834,42856,42855,0],[13873,13872,13867,0],[42857,13358,42858,0],[42859,42858,13373,0],[42859,13373,13820,0],[42860,13821,42861,0],[13812,42862,13822,0],[13822,42862,13818,0],[13818,42862,13821,0],[13812,13811,42862,0],[42862,13811,42863,0],[42871,42863,13809,0],[42871,13809,42864,0],[42866,42874,42865,0],[42867,42866,42869,0],[42867,42869,42868,0],[42869,42870,42885,0],[42885,42870,13603,0],[42866,42867,42874,0],[42874,42867,42873,0],[42874,42873,42864,0],[42864,42873,42871,0],[42871,42873,42872,0],[42871,42872,42863,0],[42863,42872,42861,0],[42867,42888,42873,0],[42875,42889,42892,0],[42892,42889,42876,0],[42876,42884,42877,0],[48645,42877,13602,0],[48645,13602,13601,0],[48645,13601,13600,0],[48645,13600,42878,0],[42883,13357,42879,0],[42879,42891,42880,0],[42879,42880,42878,0],[42878,42880,48645,0],[13600,13599,42878,0],[42878,13599,42881,0],[42878,42881,42879,0],[42879,42881,42882,0],[42879,42882,42883,0],[13850,42883,42882,0],[13850,42882,14256,0],[42881,13599,13378,0],[42881,13378,42882,0],[13599,13420,13378,0],[42876,42889,42884,0],[42884,42885,42886,0],[42886,42885,13603,0],[42877,42886,13715,0],[42877,13715,13602,0],[13603,13715,42886,0],[42867,42868,42888,0],[42890,42868,42869,0],[42890,42869,42885,0],[42885,42884,42890,0],[42890,42884,42889,0],[42889,42875,42887,0],[42887,42875,42859,0],[42859,13820,42860,0],[42872,42873,42888,0],[42872,42887,42861,0],[42861,42887,42860,0],[42887,42888,42889,0],[42889,42888,42890,0],[42890,42888,42868,0],[42888,42887,42872,0],[42859,42875,42858,0],[42858,42875,42892,0],[42857,42891,42879,0],[42879,13357,42857,0],[42857,13357,13358,0],[42891,42857,42892,0],[42891,42892,42880,0],[13379,13378,13420,0],[49969,13421,13419,0],[13419,13421,42893,0],[13419,42893,42937,0],[42894,42934,42896,0],[42894,42896,42895,0],[42895,42896,13422,0],[42895,13422,13423,0],[13422,42896,13421,0],[13421,42896,42893,0],[42896,42934,42935,0],[42893,42896,42935,0],[42905,42897,42899,0],[42905,42899,42898,0],[42901,42900,42910,0],[42901,42930,48021,0],[42904,42908,42905,0],[42905,42908,42897,0],[13884,42907,42908,0],[42908,42907,48406,0],[48406,42907,13414,0],[13414,42907,13413,0],[42903,42906,42904,0],[42904,42906,42908,0],[42897,42908,48406,0],[42897,48406,48408,0],[42937,48408,48407,0],[42906,13884,42908,0],[48068,14212,42903,0],[42909,42902,47986,0],[42902,48021,47986,0],[47986,48021,14209,0],[42902,42909,14211,0],[42899,48070,42900,0],[42900,48070,42910,0],[42901,42910,42911,0],[42928,42911,42912,0],[42928,42912,42913,0],[42931,42912,42914,0],[42914,42932,48400,0],[42915,13728,42916,0],[48354,42916,42917,0],[42917,42916,14234,0],[42917,14234,14233,0],[42916,13427,13428,0],[42916,13428,14234,0],[13428,13731,14234,0],[14233,14232,42917,0],[42917,14232,48354,0],[42916,48354,42918,0],[42918,42919,42920,0],[42914,42920,42921,0],[42914,42921,42931,0],[42931,42921,42927,0],[42927,42921,42925,0],[48023,42927,42925,0],[42925,42922,48023,0],[48023,42922,48018,0],[48013,42923,48014,0],[48401,42924,42926,0],[42926,42925,42921,0],[42925,42926,42922,0],[42922,42926,48014,0],[42922,48014,48018,0],[48018,48014,42923,0],[42928,48024,42929,0],[42930,42901,42911,0],[42930,42911,42929,0],[42929,42911,42928,0],[42928,42913,42927,0],[42927,42913,42931,0],[42913,42912,42931,0],[42915,48400,42932,0],[42932,42933,13424,0],[13424,42933,42938,0],[13424,42938,13423,0],[13423,42938,42895,0],[42936,42937,42893,0],[42932,42914,42933,0],[48073,48072,42911,0],[42914,42912,42933,0],[42933,42912,48428,0],[42895,42938,42894,0],[42894,42938,48428,0],[42918,42915,42916,0],[48073,42910,48070,0],[48070,42899,48071,0],[48071,42899,42897,0],[42937,42936,48408,0],[48408,42936,42897,0],[42939,13714,49953,0],[49953,13714,13719,0],[13698,42940,13697,0],[13698,13699,42940,0],[42940,13699,13717,0],[42940,13695,13696,0],[13696,13697,42940,0],[13764,42941,13789,0],[13789,42941,13788,0],[13788,42941,42942,0],[13774,42942,13700,0],[13700,42942,13766,0],[13766,42942,42941,0],[42943,13008,12995,0],[12995,13008,13007,0],[12995,13007,12994,0],[12994,13007,13006,0],[12994,13006,12993,0],[13007,42944,12991,0],[12762,12765,12658,0],[12762,12658,12760,0],[12762,12760,12761,0],[12658,34416,12760,0],[12760,34416,34411,0],[42949,26397,7110,0],[42946,42945,26395,0],[26395,42945,42947,0],[26395,42950,42946,0],[26391,42947,26392,0],[26392,42947,42945,0],[7110,7145,42948,0],[42949,26403,26397,0],[7146,42950,7147,0],[42950,7146,7144,0],[42950,7144,42946,0],[26368,42951,26367,0],[42951,26368,7716,0],[42951,7716,7715,0],[26367,42951,34826,0],[42953,26390,7147,0],[7147,42950,42953,0],[7131,42954,42955,0],[7131,42955,7129,0],[42955,42954,7127,0],[42954,7717,26371,0],[26371,7717,42956,0],[42956,7716,26368,0],[26368,26369,42956,0],[26369,26370,42956,0],[7717,7131,7827,0],[42957,7826,47706,0],[7826,42957,7097,0],[7097,42957,7827,0],[7716,7827,42957,0],[7716,42957,7719,0],[7719,7714,7716,0],[12631,12632,34341,0],[12643,34338,12640,0],[12643,12640,42959,0],[12641,12642,12640,0],[12640,12642,42959,0],[12645,12716,12715,0],[12715,12654,12645,0],[12645,12654,12655,0],[42960,12610,49796,0],[42961,12602,42962,0],[42567,42566,12808,0],[42551,12807,12808,0],[12118,12119,12114,0],[12114,12119,42963,0],[12114,42963,12113,0],[42965,42964,34661,0],[42965,34661,42988,0],[34661,42964,34662,0],[34662,42964,42966,0],[34662,42966,34663,0],[34663,42966,42967,0],[34663,42967,46809,0],[42968,42975,42969,0],[42970,42973,42971,0],[46813,12158,12159,0],[46813,12159,42972,0],[42969,42972,42968,0],[46813,42972,42970,0],[42970,42972,42969,0],[46813,42970,42971,0],[14774,42971,42973,0],[14774,42973,12110,0],[12110,42973,42977,0],[42977,42973,42974,0],[42974,42973,42970,0],[42974,42970,42969,0],[12110,42977,12111,0],[42968,46809,42975,0],[42974,42975,42976,0],[42974,42976,42977,0],[42975,42974,42969,0],[42976,42975,42967,0],[42967,42975,46809,0],[42978,34661,34668,0],[42978,34668,42979,0],[42979,34668,42984,0],[42979,9293,42980,0],[42978,42981,34660,0],[42981,42978,42980,0],[42980,9293,42982,0],[42981,42980,42982,0],[9293,8917,42982,0],[42982,8917,8919,0],[34660,42981,42983,0],[34659,42983,34658,0],[42982,8919,42981,0],[42984,8913,34726,0],[34726,8913,8915,0],[42983,42981,8920,0],[8920,42981,8919,0],[42985,34658,8920,0],[34658,42983,8920,0],[42985,8921,34658,0],[34658,8921,34657,0],[42987,14767,42986,0],[42987,42986,42515,0],[42987,42515,42505,0],[42987,14768,14767,0],[42515,42986,12117,0],[42515,12117,42512,0],[12117,12115,42512,0],[42512,12115,42513,0],[42513,12115,12114,0],[12114,42964,42965,0],[42965,42988,42519,0],[42519,42988,42524,0],[42519,42524,42523,0],[42519,42523,42518,0],[42518,42523,42989,0],[42521,42526,42989,0],[42527,42989,42526,0],[42517,42527,42508,0],[34657,42990,42525,0],[42525,42990,42522,0],[42990,42991,42522,0],[42522,42991,42520,0],[42990,34635,42991,0],[42991,34641,42520,0],[34638,42992,42993,0],[42992,34638,34637,0],[34637,8921,42992,0],[42992,8921,8922,0],[42992,8922,8923,0],[8923,42993,42992,0],[34668,42994,42984,0],[42984,42994,8913,0],[42994,34668,34664,0],[34664,46810,42994,0],[34724,9636,42995,0],[8917,42995,8918,0],[8918,42995,9641,0],[42516,42517,42508,0],[42504,14768,42505,0],[42505,14768,42987,0],[34631,34632,34502,0],[43040,42996,42997,0],[43040,42997,43041,0],[43041,42997,9470,0],[43041,9470,9474,0],[42996,9470,42997,0],[9418,9419,9420,0],[9415,9417,9420,0],[9437,42998,9477,0],[9477,42998,9476,0],[9578,9580,42999,0],[42999,9573,34573,0],[42999,9580,9573,0],[34589,9573,34575,0],[34575,9574,34576,0],[34576,9574,34580,0],[43000,34580,34579,0],[34580,43000,34576,0],[34575,34574,34589,0],[9578,42999,43001,0],[8363,43001,34572,0],[43001,42999,34573,0],[9518,43003,43002,0],[43003,9396,43002,0],[9511,9510,43004,0],[9511,43004,9515,0],[43004,9510,43028,0],[43004,43028,8349,0],[8349,10350,43004,0],[9515,43004,10352,0],[10352,43004,43005,0],[10350,43005,43004,0],[43007,9559,10349,0],[43007,10349,43006,0],[43006,10339,8354,0],[9556,43006,9501,0],[10336,10340,43008,0],[10337,10339,10336,0],[10336,10339,10340,0],[10335,10334,10330,0],[10335,10330,43014,0],[10336,43008,43013,0],[43009,10331,43010,0],[43010,43011,10337,0],[10337,43011,10338,0],[43010,10337,43009,0],[43009,10336,43013,0],[43013,10331,43009,0],[10338,43011,43012,0],[43012,10332,10338,0],[43014,43013,43008,0],[43008,10335,43014,0],[8352,9566,43015,0],[43015,9566,9501,0],[10230,34520,10330,0],[43014,10330,34520,0],[43013,10231,10331,0],[43013,43014,10231,0],[10231,43014,34520,0],[10331,10231,10333,0],[43017,10297,43016,0],[10297,8632,43016,0],[43017,43016,8370,0],[8368,43017,8369,0],[8370,43016,43578,0],[43578,43016,43762,0],[9571,9577,9572,0],[9576,43018,43020,0],[43018,43019,43020,0],[43020,43019,9435,0],[9435,43019,9577,0],[9571,9435,9577,0],[9522,9521,43021,0],[9522,43021,9523,0],[9523,43021,9513,0],[43022,8342,43023,0],[43023,43024,43025,0],[43024,43023,8341,0],[8341,43023,8342,0],[43025,43022,43023,0],[8345,8346,43027,0],[8144,43026,8346,0],[43028,9510,9568,0],[43028,9568,8351,0],[10285,8351,8350,0],[43029,9509,9518,0],[9518,9516,43029,0],[43029,9516,9507,0],[9593,9592,9490,0],[9490,9592,43030,0],[43030,9592,9591,0],[43030,43032,43031,0],[43031,43032,43035,0],[43031,43035,9488,0],[43030,9591,43032,0],[43032,9590,43035,0],[43035,9590,9588,0],[43035,9588,43033,0],[43033,9588,43034,0],[9488,43035,43033,0],[9494,43036,9489,0],[34517,34519,34516,0],[9583,9487,43037,0],[43037,9478,9583,0],[9488,43037,9487,0],[43038,9487,9584,0],[43039,9598,9458,0],[43039,9458,49795,0],[43039,43040,43041,0],[43040,49795,9469,0],[9469,42996,43040,0],[9468,9469,49795,0],[49795,43040,43039,0],[9474,9456,43041,0],[9404,9663,43042,0],[43042,9664,43043,0],[9403,43042,43043,0],[9403,9404,43042,0],[9456,9455,43044,0],[9456,43044,9589,0],[9589,43044,9587,0],[9587,43044,43045,0],[43045,43044,9455,0],[43045,9455,9453,0],[9586,9452,9451,0],[9586,43033,9452,0],[9452,43033,43045,0],[9452,43045,9453,0],[9406,34697,34698,0],[9295,9294,34721,0],[34721,9294,43046,0],[43047,34721,43046,0],[43047,43046,43048,0],[43047,43048,34705,0],[34705,43048,34729,0],[8900,8827,8826,0],[8900,8826,43049,0],[8901,8825,43050,0],[8901,43050,8903,0],[8901,8900,43049,0],[8901,43049,8825,0],[8823,8903,43050,0],[8825,8824,43050,0],[8904,43051,8902,0],[8904,8902,8906,0],[8906,8902,8822,0],[8906,8905,8904,0],[8908,43052,8909,0],[8909,43052,43053,0],[43194,43054,9686,0],[43054,43053,9686,0],[9686,43053,43052,0],[43054,9675,8910,0],[43054,8910,43053,0],[34707,9673,43055,0],[43056,43055,9671,0],[9671,43055,9669,0],[9669,43055,9672,0],[9672,43055,9673,0],[34725,43056,9671,0],[9670,9632,34725,0],[9670,34725,9671,0],[9368,9366,43057,0],[9368,43057,8812,0],[43057,9366,9367,0],[9367,43069,43061,0],[43058,43061,43059,0],[43058,43059,43060,0],[43060,43059,43071,0],[43060,43071,9614,0],[43060,43057,43058,0],[43058,9367,43061,0],[9367,43058,43057,0],[43059,43061,43062,0],[9371,43062,43070,0],[9371,43070,43063,0],[45468,43064,43065,0],[43065,43066,43068,0],[43068,43066,43073,0],[43068,43067,8745,0],[8745,8744,9372,0],[43073,43067,43068,0],[45468,43068,8745,0],[45468,8745,9372,0],[43073,43066,43069,0],[43069,43066,43061,0],[43061,43066,43070,0],[43070,43062,43061,0],[43063,43064,9423,0],[45468,9372,9422,0],[45468,9422,9423,0],[43064,45468,9423,0],[43063,43070,43064,0],[9614,43071,9370,0],[9370,43071,43062,0],[43071,43059,43062,0],[43072,9366,8758,0],[8746,43073,8759,0],[9366,9365,8758,0],[8758,9365,43074,0],[8763,43074,43076,0],[43096,43075,9355,0],[9355,43075,9365,0],[9365,43075,43074,0],[43074,43075,43076,0],[43076,43075,9364,0],[43076,9364,9690,0],[43075,43096,9364,0],[9690,9364,43077,0],[9728,9729,9701,0],[9701,9729,9716,0],[9617,9679,43078,0],[43078,9679,9616,0],[43078,9616,43079,0],[9616,43080,43079,0],[9616,9615,43080,0],[9370,43062,43080,0],[9370,43080,9615,0],[43062,9371,43080,0],[43080,9371,43079,0],[43086,9426,43085,0],[43085,9426,43082,0],[43085,43082,43084,0],[43084,43082,9427,0],[43083,43085,43084,0],[43084,9381,43083,0],[43083,9619,43087,0],[43083,43087,43085,0],[43085,43087,43086,0],[43086,43087,43081,0],[43081,43078,43088,0],[43091,43089,43090,0],[43090,43089,9426,0],[43091,43088,43079,0],[43079,43088,43078,0],[43089,43091,9430,0],[43091,43090,43088,0],[43088,43090,43086,0],[43088,43086,43081,0],[43086,43090,9426,0],[43093,43092,8749,0],[8747,8749,8746,0],[43093,8751,43092,0],[43092,8751,8754,0],[8754,8751,8753,0],[43092,8754,8746,0],[8753,43094,8755,0],[8751,8752,43094,0],[43094,8752,45467,0],[43094,45467,43095,0],[43095,34601,8755,0],[43095,8755,43094,0],[9359,9361,43096,0],[9361,9357,9362,0],[43098,8819,43097,0],[43097,8819,9362,0],[43104,43106,43103,0],[43104,43103,43318,0],[8848,43318,43103,0],[8848,43103,8849,0],[8849,43103,8818,0],[8851,43100,8853,0],[8851,43101,8818,0],[8849,43101,8850,0],[8849,8818,43101,0],[43100,8851,8818,0],[43106,43102,43103,0],[43103,43102,8818,0],[43102,43106,8819,0],[43106,43104,43105,0],[43099,8819,43106,0],[43107,43173,43323,0],[43323,43173,43172,0],[43323,43172,43324,0],[43324,43172,43108,0],[43108,43109,43161,0],[43113,43109,43110,0],[43113,43110,43111,0],[9910,9909,9931,0],[43113,43114,43115,0],[43115,43135,43116,0],[43115,43116,43161,0],[43161,43116,43108,0],[43327,43117,43118,0],[43118,43139,43119,0],[43546,43160,43120,0],[43153,43120,43128,0],[43153,43127,43545,0],[43545,43127,43121,0],[9774,9796,43134,0],[43120,43160,43119,0],[43120,43119,43139,0],[43139,43123,43129,0],[43129,43123,43124,0],[43124,43123,43125,0],[43124,43125,43138,0],[43138,9830,43126,0],[43126,9773,43131,0],[43130,43131,43133,0],[43128,43127,43153,0],[43133,43121,43127,0],[43133,43127,43128,0],[43133,43128,43129,0],[43129,43128,43120,0],[43129,43124,43133,0],[43133,43124,43130,0],[43131,43130,43126,0],[43124,43138,43130,0],[43130,43138,43126,0],[43131,9794,43132,0],[43132,43133,43131,0],[43132,9774,43134,0],[43132,43134,43121,0],[43121,43134,43122,0],[43132,43121,43133,0],[43117,43116,43135,0],[43137,43135,43115,0],[43125,43136,43137,0],[9830,43138,43137,0],[43137,43138,43125,0],[43136,43125,43123,0],[43136,43123,43139,0],[43139,43118,43136,0],[43136,43118,43117,0],[43136,43135,43137,0],[9830,43137,43142,0],[43140,43162,9911,0],[9908,43141,43164,0],[43164,43141,10112,0],[43164,10112,9830,0],[9830,10112,9829,0],[9830,43142,43164,0],[43323,43143,43107,0],[43322,43177,43107,0],[43107,43143,43322,0],[43322,43144,43145,0],[8807,43321,43147,0],[43147,43321,43146,0],[43322,43143,43144,0],[43144,43157,43146,0],[43146,43157,43147,0],[43148,43160,43546,0],[43150,43151,43155,0],[43155,43151,8802,0],[8802,43151,8801,0],[8801,43151,43545,0],[8801,43545,43152,0],[43121,43122,43545,0],[43545,43122,43152,0],[43546,43120,43544,0],[43150,43153,43545,0],[43546,43544,43149,0],[43544,43120,43153,0],[43544,43153,43150,0],[8806,43147,43148,0],[8806,43148,43546,0],[43147,8806,8807,0],[43155,8802,43156,0],[43154,43155,8803,0],[8803,43155,43156,0],[8806,43546,43149,0],[8806,43149,43154,0],[43154,43149,43155,0],[43150,43155,43149,0],[43144,43143,43158,0],[43144,43158,43157,0],[43157,43158,43159,0],[43157,43159,43148,0],[43157,43148,43147,0],[43160,43159,43327,0],[43160,43327,43119,0],[43119,43327,43118,0],[43160,43148,43159,0],[43113,43115,43161,0],[43113,43161,43109,0],[43113,43112,43162,0],[43142,43163,43164,0],[9908,43164,43140,0],[43140,43164,43114,0],[43140,43114,43162,0],[43162,43112,9931,0],[43113,43162,43114,0],[43113,43111,43112,0],[43112,43111,9931,0],[9931,43111,43170,0],[9931,9909,43162,0],[43162,9909,9911,0],[43109,43171,43110,0],[43110,43171,43176,0],[43167,43176,43165,0],[9938,43166,10081,0],[43165,43166,9935,0],[43165,9935,43167,0],[43110,43176,43167,0],[43110,43167,43111,0],[43111,43167,43168,0],[43168,43167,9935,0],[9935,9934,43168,0],[43169,9927,9928,0],[43170,9929,9931,0],[43168,43170,43111,0],[43170,43168,9928,0],[9928,43168,43169,0],[9929,43170,9928,0],[43169,43168,9934,0],[43169,9934,9932,0],[43109,43108,43171,0],[43176,43171,43172,0],[43176,43172,43173,0],[43165,43173,43174,0],[43174,43178,43175,0],[9936,10081,43175,0],[43175,10081,43166,0],[43175,43166,43174,0],[43174,43166,43165,0],[43165,43176,43173,0],[43173,43107,43174,0],[43174,43107,43177,0],[43174,43177,43178,0],[9937,43175,43179,0],[43179,43175,43178,0],[43178,8855,43179,0],[43179,8856,9937,0],[8855,43178,43177,0],[43108,43172,43171,0],[43180,9739,8718,0],[45471,8718,43181,0],[43181,9814,9813,0],[43181,9813,8613,0],[43181,8613,8612,0],[9811,9810,8618,0],[8618,9810,9809,0],[8618,9809,43182,0],[43182,9809,43183,0],[9809,9808,43183,0],[9807,8602,43184,0],[9807,43184,9816,0],[8602,8687,43184,0],[43182,43185,8688,0],[8688,43185,8687,0],[43186,43187,8594,0],[8594,43187,8595,0],[8595,43187,43188,0],[8595,43188,8596,0],[43189,43187,43190,0],[43189,43190,43191,0],[43191,43190,8686,0],[43191,8686,8600,0],[43189,43191,10119,0],[43189,8597,43187,0],[43187,8597,43188,0],[43192,43193,8685,0],[10121,8685,8590,0],[8590,8685,8591,0],[8591,8592,9868,0],[8685,43193,8591,0],[8591,43193,8592,0],[43193,43192,8593,0],[8593,43192,8594,0],[43193,8593,8592,0],[43192,43186,8594,0],[43192,8685,43186,0],[43186,8685,8686,0],[43097,9357,8816,0],[8821,43098,8817,0],[43098,43097,8817,0],[9686,9685,43194,0],[43194,9677,9674,0],[43054,43194,9674,0],[43195,43196,8834,0],[8834,43196,8839,0],[43198,43214,43197,0],[43198,43197,34670,0],[43198,34670,43199,0],[43199,34670,34671,0],[43199,34671,43200,0],[43207,43199,43200,0],[43207,43200,43201,0],[43204,43203,9332,0],[43204,9332,9329,0],[43204,9329,9317,0],[43204,9317,43205,0],[43207,43206,43208,0],[43207,43208,43209,0],[43209,43208,9325,0],[9325,43208,43210,0],[9323,9321,9322,0],[9321,9324,9320,0],[9320,9324,43210,0],[9324,9327,43210,0],[9319,9320,43211,0],[43212,43211,43208,0],[43210,43208,43211,0],[43210,43211,9320,0],[9319,43211,43212,0],[9319,43212,43205,0],[43205,43212,43213,0],[43204,43213,43203,0],[43203,43213,43202,0],[43202,43213,43206,0],[43202,43206,43201,0],[43201,43206,43207,0],[9316,9317,9328,0],[43198,43199,43214,0],[43209,43214,43207,0],[43203,43202,43215,0],[43201,43200,43215,0],[43201,43215,43202,0],[34670,43197,43216,0],[43216,43197,46870,0],[43216,46870,9305,0],[12213,12214,43217,0],[43217,12214,12190,0],[43217,12191,12213,0],[12214,12213,12220,0],[12189,43219,43218,0],[12189,43218,12182,0],[12182,43218,12190,0],[12190,43218,43217,0],[12167,12166,12226,0],[12167,12226,12180,0],[12222,12215,43220,0],[43212,43208,43206,0],[43206,43213,43212,0],[9323,8861,43221,0],[43221,8861,8854,0],[8854,8861,43101,0],[8862,8842,43222,0],[43222,8842,8843,0],[8862,43222,8850,0],[8858,43222,43223,0],[43222,8843,43223,0],[9323,43224,8842,0],[43224,8843,8842,0],[8843,43224,43225,0],[43225,10095,10087,0],[43226,10095,43225,0],[43226,43225,43224,0],[10095,43226,10097,0],[10096,10097,43226,0],[9321,43226,9322,0],[43226,43224,9322,0],[8844,8843,10094,0],[8843,43225,10094,0],[10094,43225,10087,0],[10094,10087,10071,0],[10089,43227,9316,0],[9316,43227,9317,0],[9317,43227,9318,0],[9328,9329,9314,0],[9331,9329,9332,0],[9331,9311,9330,0],[9919,9939,43245,0],[43245,9940,43228,0],[43251,43228,43239,0],[43251,43239,43229,0],[43229,43235,43230,0],[43230,43235,43231,0],[43232,43238,43297,0],[43232,43297,10117,0],[43232,10117,43234,0],[43234,43253,43254,0],[43231,43254,43230,0],[43254,43238,43234,0],[43234,43238,43232,0],[43233,10117,43297,0],[43229,45630,43235,0],[45626,43236,45624,0],[45626,45624,43237,0],[43293,43238,43254,0],[43235,43236,43231,0],[43231,43236,45626,0],[43293,45626,43237,0],[43231,43293,43254,0],[43240,43239,43228,0],[43240,43228,9940,0],[43241,43240,43244,0],[9944,47676,9942,0],[9944,9942,9943,0],[9942,47677,43243,0],[47677,43244,43243,0],[43243,43244,9940,0],[9940,43244,43240,0],[43240,43241,34685,0],[34685,43241,34683,0],[34683,43241,34682,0],[43245,43228,43246,0],[43245,43246,9919,0],[43247,43246,43249,0],[43249,43246,43251,0],[43249,43251,43250,0],[43250,43229,43230,0],[43229,43250,43251,0],[43248,43249,43252,0],[43254,43252,43230,0],[43248,43252,43253,0],[43252,43249,43250,0],[43252,43250,43230,0],[43247,43249,9925,0],[9925,43255,9923,0],[9923,43255,9920,0],[43253,43234,43255,0],[43253,43255,43248,0],[43248,43255,9925,0],[43248,9925,43249,0],[9920,45430,43256,0],[9920,43256,9921,0],[9921,43256,10102,0],[9920,43255,45430,0],[9899,9900,9901,0],[9899,9901,43256,0],[43256,9901,10102,0],[43247,9919,43246,0],[8409,10118,43258,0],[43258,10118,43295,0],[43258,43295,43257,0],[43257,43295,43296,0],[43257,43296,8408,0],[43257,8408,43298,0],[43258,43259,45415,0],[45414,8410,8409,0],[45414,8409,45415,0],[43258,45415,8409,0],[43298,8407,43257,0],[43257,8407,43258,0],[43258,8405,43259,0],[45416,43259,8404,0],[43258,8407,8405,0],[43264,43268,43269,0],[43260,43268,43262,0],[43260,43262,43263,0],[10054,43263,10053,0],[43263,43262,10053,0],[10052,43264,43265,0],[43261,43265,43269,0],[43269,43265,43264,0],[43264,10052,43268,0],[10052,43262,43268,0],[43270,43266,43265,0],[43265,43261,43270,0],[43267,43260,43263,0],[8406,8407,45639,0],[43260,43267,8406,0],[43260,8406,43268,0],[43268,43272,43269,0],[43269,43274,43261,0],[43261,43274,43276,0],[43261,43276,43270,0],[43271,10050,43276,0],[43276,10050,43270,0],[43268,8406,43272,0],[43274,43275,43276,0],[43276,43275,43287,0],[43276,43287,43271,0],[43271,43287,43281,0],[43281,45622,10049,0],[10049,45622,43277,0],[10049,43277,43278,0],[43278,45584,43279,0],[43279,45584,43280,0],[10047,43280,9983,0],[10047,9983,10056,0],[9983,43280,9981,0],[9981,43280,45584,0],[9981,45584,10057,0],[10056,10046,10047,0],[43280,10047,43279,0],[43300,43274,43273,0],[43273,43274,43269,0],[43273,43269,43272,0],[43271,43281,10050,0],[10050,43281,10049,0],[43286,45593,10006,0],[45593,43283,43282,0],[43283,43284,10005,0],[10005,43284,10048,0],[43283,10005,43282,0],[43283,10049,43284,0],[10048,43279,43285,0],[43285,43279,10047,0],[10004,43285,10046,0],[10046,43285,10047,0],[43283,43286,10050,0],[45593,43286,43283,0],[45585,43287,45617,0],[45617,43275,43289,0],[45617,43289,43288,0],[43288,43289,43299,0],[43291,43296,43301,0],[43301,43296,43292,0],[43301,43292,43237,0],[43237,43292,43293,0],[43297,43238,43294,0],[43294,43238,43293,0],[43293,43292,43294,0],[43294,43292,43295,0],[43295,43292,43296,0],[43233,43297,47674,0],[43296,43291,8408,0],[8408,43291,43290,0],[8408,43290,43299,0],[8408,43299,43298,0],[43273,45639,43298,0],[43273,43298,43299,0],[43299,43289,43273,0],[43273,43289,43300,0],[43300,43289,43275,0],[43287,43275,45617,0],[43300,43275,43274,0],[43314,9913,10102,0],[43305,43302,43303,0],[43304,43316,43306,0],[43304,43306,9912,0],[43304,9912,9916,0],[43303,43316,43304,0],[43306,43315,10099,0],[43314,9914,43305,0],[9905,9906,9904,0],[9904,9906,43302,0],[43302,43305,9903,0],[9903,43305,9914,0],[9893,43307,45429,0],[45426,9890,43308,0],[45429,43307,9890,0],[45422,9893,45429,0],[10117,10116,43309,0],[43234,43309,43255,0],[43234,10117,43309,0],[43163,43115,43114,0],[43163,43142,43137,0],[43163,43137,43115,0],[43141,9907,43310,0],[43310,9906,43312,0],[9908,9907,43141,0],[10109,10111,43311,0],[10105,10110,43311,0],[43311,10110,10109,0],[10111,43312,43311,0],[43311,43312,10105,0],[43313,43305,43303,0],[43313,9913,43314,0],[43313,43314,43305,0],[43303,43304,43313,0],[10098,43315,9907,0],[9906,43315,43316,0],[9906,43316,43303,0],[9906,43303,43302,0],[43315,9906,9907,0],[43306,43316,43315,0],[9913,43313,43304,0],[9913,43304,9916,0],[9931,9929,9930,0],[43318,43317,43104,0],[43317,43319,43104,0],[43319,43320,43321,0],[43319,43321,8809,0],[43321,43320,43146,0],[43322,43145,43317,0],[43317,43145,43319,0],[43319,43145,43320,0],[43145,43146,43320,0],[43104,43319,43105,0],[43105,43319,43099,0],[43099,43319,8809,0],[9799,9787,9792,0],[43158,43143,43323,0],[43158,43323,43324,0],[43158,43324,43325,0],[43325,43324,43326,0],[43159,43326,43327,0],[43326,43159,43325,0],[43325,43159,43158,0],[43327,43326,43117,0],[43117,43326,43116,0],[43116,43326,43108,0],[43146,43145,43144,0],[9845,45424,43328,0],[43330,43329,45431,0],[45431,43331,9863,0],[9863,43331,9871,0],[9871,43331,9873,0],[9873,9872,9871,0],[8574,9860,9871,0],[9871,9860,9863,0],[9863,43330,45431,0],[43329,43330,43328,0],[10133,10134,8568,0],[8568,10134,43332,0],[8564,8588,43332,0],[43332,8588,43333,0],[43332,43333,8567,0],[43332,8567,8568,0],[10135,43332,10134,0],[43334,43813,43335,0],[43335,43813,10141,0],[43335,43505,43504,0],[43376,43504,43336,0],[43370,43336,43369,0],[43369,43336,43368,0],[43368,43336,43367,0],[43337,10143,43338,0],[43338,10143,10144,0],[43338,10144,43339,0],[43339,10144,10147,0],[43786,43339,43340,0],[43786,43340,43341,0],[43341,43342,43785,0],[43785,43342,43343,0],[43343,43342,43803,0],[43343,43803,43417,0],[43417,43803,43344,0],[43344,43345,43468,0],[43344,43468,43346,0],[43347,44995,43418,0],[43418,44995,43348,0],[43348,44992,43349,0],[43421,44991,43351,0],[43351,44991,43350,0],[43351,43350,43352,0],[43351,43352,43353,0],[43353,43352,43354,0],[43419,43354,43401,0],[43419,43401,43756,0],[43419,43756,43355,0],[43356,43355,43768,0],[43356,43768,43358,0],[43356,43358,43357,0],[43357,43358,43403,0],[43357,43403,43359,0],[43359,43361,43360,0],[43360,43361,43377,0],[43377,43362,43363,0],[43429,43363,43364,0],[43430,43364,43365,0],[43366,43339,43786,0],[43339,43366,43338,0],[43338,43366,43337,0],[43337,43366,43365,0],[43337,43365,43367,0],[43367,43365,43364,0],[43367,43364,43368,0],[43368,43517,43369,0],[43370,43369,43371,0],[43370,43371,43372,0],[43375,43373,8563,0],[43375,8563,43374,0],[43375,43374,43376,0],[43376,43374,43335,0],[43334,43335,43374,0],[43376,43370,43375,0],[43375,43370,43372,0],[43336,43370,43376,0],[43504,43376,43335,0],[43368,43364,43363,0],[43368,43363,43517,0],[43517,43363,43362,0],[43517,43362,43516,0],[43524,43362,43377,0],[43524,43377,43361,0],[43524,43361,43378,0],[43523,43378,43405,0],[43523,43405,43406,0],[43523,43406,43379,0],[43523,43379,43723,0],[43723,43379,43380,0],[43380,43379,43407,0],[43380,43407,43382,0],[43382,43407,43381,0],[43383,43399,43393,0],[43393,43399,43384,0],[43393,43384,43385,0],[43385,43759,43391,0],[43386,44857,43390,0],[43390,8517,44856,0],[8395,43387,43388,0],[8397,43388,43389,0],[8397,43389,43754,0],[43387,8395,44856,0],[44856,8395,43390,0],[43390,8395,8394,0],[43390,8394,10169,0],[43390,10169,43386,0],[10169,8393,43386,0],[43386,8393,43391,0],[43386,43391,44859,0],[8393,43392,43391,0],[43391,43392,43385,0],[43385,43392,43393,0],[43393,10167,8392,0],[43378,43361,43359,0],[43378,43359,43405,0],[43394,43769,43404,0],[43394,43404,43395,0],[43395,43404,43396,0],[43396,43397,43402,0],[43402,43397,43398,0],[43402,43398,43382,0],[43399,43398,43397,0],[43399,43397,43757,0],[43401,43400,43756,0],[43398,43399,43383,0],[43359,43403,43405,0],[43405,43403,43394,0],[43394,43403,43769,0],[43406,43405,43394,0],[43406,43394,43407,0],[43406,43407,43379,0],[43369,43517,43371,0],[43363,43429,43408,0],[43363,43408,43377,0],[43411,43412,43414,0],[43414,43412,43413,0],[43414,43413,43415,0],[43414,43415,43347,0],[43347,43415,43416,0],[43416,43343,43417,0],[43347,43416,43346,0],[43346,43417,43344,0],[43417,43346,43416,0],[43347,43418,43414,0],[43418,43348,43422,0],[43422,43423,43428,0],[43428,43423,43424,0],[43428,43424,43427,0],[43427,43424,43355,0],[43355,43424,43419,0],[43419,43424,43420,0],[43354,43419,43353,0],[43353,43419,43420,0],[43353,43420,43351,0],[43351,43420,43421,0],[43424,43421,43420,0],[43348,43349,43422,0],[43377,43408,43360,0],[43360,43408,43409,0],[43426,43427,43357,0],[43357,43427,43356,0],[43355,43356,43427,0],[43428,43410,43422,0],[43422,43410,43411,0],[43422,43411,43418,0],[43418,43411,43414,0],[43425,43410,43426,0],[43410,43428,43426,0],[43429,43434,43431,0],[43430,43434,43364,0],[43434,43429,43364,0],[43408,43429,43431,0],[43408,43431,43432,0],[43432,43431,43433,0],[43412,43433,43413,0],[43408,43432,43409,0],[43431,43434,43433,0],[43433,43434,43413,0],[43422,43349,43423,0],[43423,43349,43421,0],[43421,43424,43423,0],[43347,43435,43436,0],[43833,43440,43441,0],[43441,43440,43483,0],[43441,43483,43442,0],[43442,43483,43481,0],[43443,43480,45053,0],[45053,43480,43479,0],[43479,43477,44934,0],[44934,43477,43476,0],[44901,44933,44900,0],[44901,44900,44942,0],[44901,44942,44902,0],[44902,44942,44941,0],[44823,44941,44892,0],[44823,44892,43444,0],[44822,43445,43497,0],[44822,43497,43446,0],[43446,43498,44821,0],[44821,43498,43447,0],[43447,43448,43449,0],[43449,43448,43450,0],[43450,43451,44817,0],[44817,43451,43452,0],[43452,43451,43454,0],[43454,43451,43453,0],[43454,43453,43460,0],[43873,43460,43884,0],[43884,43460,43457,0],[43457,43455,43456,0],[43457,43456,43797,0],[43457,43797,43883,0],[43883,43458,44886,0],[8431,8429,8430,0],[43457,43460,43461,0],[43457,43461,43455,0],[43455,43461,43462,0],[43462,43493,44896,0],[44896,43493,43463,0],[44896,43463,43464,0],[44944,43464,43500,0],[44944,43500,43808,0],[43491,43465,44893,0],[43491,44893,43501,0],[43491,43501,43466,0],[43466,43345,43467,0],[43344,43467,43345,0],[43345,43470,43469,0],[43345,43469,43468,0],[43468,43469,43435,0],[43468,43435,43346,0],[43346,43435,43347,0],[43345,43466,43470,0],[43470,43466,43502,0],[43470,43502,44895,0],[43470,44895,43488,0],[43487,43488,43486,0],[43471,43473,43472,0],[43472,43473,43474,0],[43474,43473,43478,0],[43478,43475,43477,0],[43477,43475,43476,0],[43477,43479,43478,0],[43479,43480,43474,0],[43481,43480,43443,0],[43478,43479,43474,0],[43483,43482,43481,0],[43482,43484,43472,0],[43483,43485,43482,0],[43482,43485,43484,0],[43484,43471,43472,0],[43474,43482,43472,0],[43483,43440,43485,0],[43833,43439,43440,0],[43439,43485,43440,0],[43471,43484,45321,0],[43471,45321,43486,0],[43487,43489,43488,0],[43488,43489,43469,0],[43435,43469,43489,0],[43435,43489,43436,0],[43436,43489,43437,0],[43488,43469,43470,0],[43481,43482,43480,0],[43480,43482,43474,0],[43471,43486,43473,0],[43473,43486,44899,0],[43473,44899,43490,0],[43490,44899,44942,0],[43490,44942,44900,0],[43460,43453,43461,0],[43461,43453,43492,0],[43461,43492,43462,0],[43462,43492,43493,0],[43495,43497,43496,0],[44893,43496,43445,0],[44893,43445,43444,0],[43445,43496,43497,0],[43446,43497,43498,0],[43498,43494,43447,0],[43447,43494,43448,0],[43448,43493,43492,0],[43448,43492,43499,0],[43448,43499,43450,0],[43450,43499,43451,0],[43494,43498,43463,0],[43463,43498,43495,0],[43498,43497,43495,0],[43464,43463,43500,0],[43463,43495,43500,0],[43808,43500,43496,0],[43808,43496,43465,0],[43465,43496,44893,0],[43466,43501,43502,0],[43451,43499,43453,0],[43453,43499,43492,0],[43339,10147,43340,0],[43340,10147,10148,0],[43341,43340,43342,0],[43802,43342,10149,0],[10149,43342,43340,0],[43504,43503,43336,0],[43504,43505,43503,0],[43503,43505,10143,0],[10143,43337,43503,0],[43367,43336,43503,0],[43503,43337,43367,0],[9861,9857,43507,0],[9861,43507,43330,0],[43330,43507,43328,0],[9857,9841,43507,0],[43507,9841,9843,0],[43507,9843,43328,0],[43508,9838,8598,0],[8598,9838,43188,0],[8598,9835,43508,0],[8598,43509,9835,0],[9835,9839,9833,0],[9834,9835,9833,0],[9839,9835,43509,0],[43510,9766,43511,0],[8599,43511,9766,0],[43511,43540,43512,0],[43511,43512,43510,0],[8676,8681,8677,0],[8676,8677,10123,0],[8675,43520,43514,0],[43531,43515,43516,0],[43516,43515,43517,0],[43371,43518,43519,0],[43519,43518,43514,0],[43519,43514,43520,0],[43514,43518,43515,0],[43515,43518,43517,0],[43517,43518,43371,0],[43516,43362,43531,0],[43531,43362,43524,0],[43531,43524,8674,0],[8672,8674,43530,0],[8672,43530,43521,0],[43522,43530,43523,0],[43523,43530,43524,0],[43524,43378,43523,0],[43522,43525,43521,0],[43521,43525,8669,0],[43521,8669,8679,0],[43521,8679,8671,0],[43521,8671,8672,0],[8668,43713,43528,0],[43528,43713,43527,0],[43528,43527,43529,0],[43528,43529,8666,0],[8666,43529,8665,0],[8665,43529,8664,0],[43526,8668,8691,0],[43525,43522,43723,0],[43723,43522,43523,0],[43525,43723,43724,0],[8674,43524,43530,0],[43521,43530,43522,0],[8674,8675,43531,0],[43515,43531,43514,0],[43514,43531,8675,0],[8570,8576,43532,0],[43532,8576,8577,0],[43532,10131,10132,0],[10132,8569,8570,0],[10132,8570,43532,0],[8579,10131,43532,0],[43534,43533,9817,0],[9817,9816,9803,0],[9780,43534,9779,0],[43534,9780,43533,0],[43533,9780,43535,0],[9780,43536,43535,0],[43535,43536,43541,0],[9801,9804,9820,0],[9820,9804,43537,0],[9820,43537,8796,0],[8796,43537,9806,0],[9821,9820,8796,0],[43534,9817,9802,0],[9802,9817,9803,0],[9804,43539,43537,0],[43537,43539,43538,0],[43538,9806,43537,0],[43541,43511,43513,0],[9789,43540,9790,0],[43540,43541,9790,0],[9790,43541,43536,0],[9781,43512,9789,0],[43512,43540,9789,0],[43542,9851,9768,0],[9791,9779,43543,0],[9823,43543,9802,0],[43534,9802,9779,0],[9779,9802,43543,0],[43543,9823,9824,0],[43543,9824,9791,0],[43544,43150,43149,0],[43151,43150,43545,0],[43070,43066,43065,0],[43065,43064,43070,0],[9421,9429,9425,0],[9428,9429,9376,0],[9425,9422,9421,0],[9429,9421,9375,0],[9430,9423,9424,0],[43091,43063,9430,0],[8770,8767,8774,0],[8770,8774,8735,0],[34562,34560,34561,0],[8722,8787,9715,0],[34595,34589,43547,0],[43547,34589,34574,0],[34592,34593,43548,0],[43548,34593,8714,0],[43549,34528,34529,0],[43561,43549,43550,0],[43561,43550,43558,0],[43551,34544,34545,0],[34544,43551,34530,0],[34530,43551,34529,0],[43551,43550,34529,0],[34529,43550,43549,0],[43553,43557,43556,0],[43553,43556,43552,0],[43549,43557,34528,0],[34528,43557,43553,0],[43554,43553,43552,0],[43554,43552,10415,0],[34539,34528,43553,0],[34539,43553,43555,0],[43555,43553,43554,0],[34527,8126,8127,0],[8126,34527,43555,0],[8126,43555,43554,0],[8126,43554,8125,0],[34526,34527,8127,0],[34527,34539,43555,0],[43556,43557,19250,0],[19250,43557,43561,0],[19250,43561,43558,0],[43559,43558,43550,0],[43559,43550,43560,0],[43560,43550,43551,0],[43560,43551,34545,0],[43559,19249,43558,0],[43556,19250,19261,0],[43561,43557,43549,0],[34546,34548,34547,0],[34546,34547,43560,0],[34548,34546,34549,0],[34551,34549,34546,0],[34549,34551,10215,0],[34549,10215,43562,0],[43562,10215,10295,0],[10295,10214,43562,0],[40295,40297,10454,0],[40114,10426,10425,0],[40163,43563,40162,0],[40162,10440,40163,0],[43563,43567,40162,0],[40179,43567,43564,0],[14117,43565,14116,0],[14116,43567,43566,0],[43563,43566,43567,0],[43565,43564,14116,0],[14116,43564,43567,0],[14116,43566,40165,0],[43564,43565,43568,0],[43564,43568,43569,0],[40179,43564,14048,0],[14048,43569,14115,0],[14115,43569,40181,0],[40162,43567,47613,0],[47613,43567,40179,0],[43569,14048,43564,0],[43571,19248,43570,0],[43571,43570,34548,0],[34548,43570,34547,0],[19248,19249,43570,0],[19248,43571,10460,0],[43562,10460,34548,0],[34548,10460,43571,0],[43573,43572,10220,0],[43573,10220,10219,0],[10223,10221,43572,0],[43573,10219,43576,0],[43576,10218,43574,0],[43574,10218,43575,0],[43575,34551,34550,0],[43576,43574,34543,0],[43576,43577,43573,0],[34543,43577,43576,0],[43573,34534,43572,0],[43572,34534,10223,0],[43578,43762,43760,0],[43578,43760,8633,0],[8633,43580,43581,0],[10205,10204,10207,0],[10298,10300,10347,0],[43548,34591,34592,0],[34592,34591,9746,0],[9746,9747,34592,0],[8657,8660,43582,0],[8657,43582,8658,0],[10185,10186,43583,0],[8634,43583,10182,0],[43596,43595,8641,0],[8641,43595,8643,0],[8381,43584,43594,0],[43594,43585,43586,0],[43605,43589,43590,0],[43591,43680,43593,0],[43593,43587,43588,0],[43605,43590,43591,0],[43605,43591,43593,0],[43593,43588,43605,0],[43587,8382,43586,0],[43586,8382,43594,0],[8381,43594,8382,0],[43598,43610,8662,0],[43608,43596,8649,0],[43608,8649,43610,0],[43598,43597,43599,0],[43598,43599,43611,0],[43611,43600,43601,0],[43601,43600,43602,0],[43602,43739,43603,0],[43604,43603,8388,0],[43604,8388,8386,0],[43603,43604,43614,0],[43614,43604,43606,0],[43613,43606,43605,0],[43589,43605,43606,0],[43589,43606,43592,0],[43592,43606,43604,0],[43592,43604,8386,0],[43605,43588,43613,0],[43607,43616,43612,0],[43612,43616,43608,0],[43608,43616,43585,0],[43595,43609,43584,0],[43595,43584,8643,0],[43609,43595,43596,0],[43609,43596,43585,0],[43585,43596,43608,0],[43598,43611,43610,0],[43608,43610,43612,0],[43611,43601,43612,0],[43612,43615,43607,0],[43607,43615,43613,0],[43606,43613,43614,0],[43603,43614,43602,0],[43613,43615,43614,0],[43614,43615,43602,0],[43602,43615,43601,0],[43584,43609,43594,0],[43594,43609,43585,0],[43585,43616,43617,0],[43586,43585,43617,0],[43617,43616,43607,0],[43607,43613,43617,0],[43617,43588,43587,0],[43587,43586,43617,0],[43613,43588,43617,0],[10195,43622,43653,0],[43621,43622,10195,0],[43620,8380,8381,0],[43620,8381,43619,0],[43619,43618,43623,0],[43623,43618,43682,0],[43623,43682,43681,0],[43681,43624,43625,0],[43624,43679,43625,0],[43625,43679,43683,0],[43625,43683,43635,0],[43635,43683,43626,0],[43626,43628,43627,0],[43627,43628,43629,0],[43639,43630,45705,0],[45705,45709,43660,0],[43660,43631,10485,0],[10486,43631,10489,0],[10487,10486,10488,0],[10488,10486,10489,0],[43632,43623,43640,0],[43632,43640,43633,0],[43635,43626,43627,0],[43635,43627,43636,0],[43636,43637,43663,0],[43663,43637,43638,0],[43638,43637,43639,0],[43638,43639,45705,0],[43629,43639,43637,0],[43629,43637,43627,0],[43636,43627,43637,0],[43634,43633,43635,0],[43635,43633,43625,0],[43625,43640,43681,0],[43681,43640,43623,0],[43633,43640,43625,0],[43619,43623,43620,0],[43620,43623,43632,0],[43621,43620,43622,0],[43622,43633,43641,0],[43641,43633,43634,0],[43635,43636,43634,0],[43653,43636,43642,0],[43652,43644,43650,0],[43650,43644,43648,0],[43648,43644,43645,0],[43645,43647,43648,0],[43648,43647,43649,0],[43648,43649,43650,0],[45650,43651,43652,0],[43652,43651,10202,0],[10202,10192,43643,0],[43643,10193,43642,0],[43643,10192,10193,0],[43642,10193,43653,0],[43641,43653,43622,0],[43653,43641,43636,0],[43636,43641,43634,0],[43652,43650,45650,0],[10191,10478,43654,0],[43654,10478,43655,0],[43654,43655,10190,0],[10190,43655,10198,0],[10478,10191,10465,0],[10465,10191,43656,0],[43656,10191,45650,0],[43656,45649,10479,0],[43647,40300,43649,0],[43649,40300,19228,0],[43652,43643,43658,0],[43644,43652,43658,0],[43658,43643,43657,0],[43657,43643,43642,0],[43636,43663,43657,0],[43657,43663,43658,0],[43659,43645,43644,0],[43659,43644,43658,0],[43646,43645,43660,0],[45705,43660,43661,0],[43660,10485,43646,0],[43657,43642,43636,0],[43662,43661,43660,0],[43662,43660,43645,0],[43658,43662,43659,0],[43659,43662,43645,0],[43661,43662,43663,0],[43661,43663,43638,0],[43662,43658,43663,0],[45705,43661,43638,0],[43632,43633,43622,0],[43632,43622,43620,0],[10493,10494,43666,0],[43629,43666,43639,0],[43630,10494,10492,0],[43630,10492,45641,0],[45641,10492,10491,0],[43665,10493,43664,0],[43664,10493,43666,0],[43664,43666,43628,0],[43628,43666,43629,0],[43628,43626,43664,0],[45702,43665,45700,0],[45700,43665,43667,0],[43667,10495,45699,0],[45699,10495,45640,0],[19219,45640,10500,0],[45640,19219,45699,0],[43668,10500,43669,0],[43672,43669,10001,0],[43672,10001,43670,0],[43670,16656,43671,0],[43670,43671,43672,0],[43672,43668,43669,0],[16657,43673,43668,0],[16657,43668,43671,0],[43671,43668,43672,0],[45694,43671,16656,0],[10501,10500,43673,0],[43673,10500,43668,0],[10001,43669,43688,0],[43688,43669,43674,0],[43674,10499,43675,0],[43675,43690,43676,0],[43676,10497,43677,0],[43677,10497,43678,0],[43678,43683,43679,0],[43678,43679,10041,0],[10041,43679,43680,0],[43680,43679,43624,0],[43680,43624,43681,0],[43680,43681,43682,0],[43680,43682,8383,0],[43618,8382,43682,0],[8382,8383,43682,0],[10496,43665,43683,0],[43665,43664,43683,0],[43683,43664,43626,0],[10497,10496,43678,0],[43678,10496,43683,0],[43677,43678,10039,0],[43677,10039,43684,0],[43684,10039,45600,0],[43684,45600,43685,0],[43685,45595,43686,0],[43688,43674,45590,0],[45591,43689,43687,0],[43687,43689,43675,0],[43687,43675,45595,0],[45595,43675,43686,0],[43686,43675,43684,0],[43684,43685,43686,0],[43684,43676,43677,0],[43676,43684,43675,0],[43675,43689,43674,0],[45591,45590,43689,0],[43689,45590,43674,0],[43674,43669,10500,0],[43674,10500,10499,0],[43675,10499,43690,0],[10497,43690,10499,0],[43676,43690,10497,0],[16651,16684,43691,0],[16652,45582,16667,0],[16652,16667,16651,0],[16651,16667,16684,0],[16684,16666,43692,0],[43692,16666,16676,0],[43692,16676,43694,0],[43693,16663,16662,0],[43693,16662,43692,0],[16684,43692,16662,0],[16663,43693,16664,0],[16664,43693,43692,0],[16664,43692,43694,0],[16709,16710,16641,0],[43698,11301,45754,0],[16703,43698,43699,0],[43700,43699,43701,0],[43701,43702,10518,0],[10518,43702,10520,0],[10518,43700,43701,0],[43699,43700,16702,0],[43699,16702,16703,0],[43698,16703,43696,0],[43695,43703,43696,0],[43696,43703,43697,0],[43704,43697,43703,0],[43705,8697,43733,0],[43599,43706,43735,0],[43748,43707,43733,0],[43765,43709,43710,0],[43724,43766,43714,0],[43724,43714,43525,0],[43710,43709,8664,0],[43710,8664,43527,0],[43527,8664,43529,0],[43713,43712,43527,0],[43527,43712,43710,0],[43710,43712,43722,0],[43722,43712,43766,0],[43712,43714,43766,0],[43712,43713,43714,0],[43714,43713,8668,0],[43714,8668,43526,0],[43714,43526,8669,0],[43714,8669,43525,0],[43733,43707,43705,0],[43705,43707,43706,0],[43706,43707,43735,0],[8697,8663,43733,0],[43708,8663,43711,0],[43708,43711,8664,0],[8664,43709,43708,0],[43716,43747,43746,0],[43716,43746,43717,0],[43716,43717,43719,0],[43719,43727,43720,0],[43721,43722,43726,0],[43726,43722,43766,0],[43380,43715,43726,0],[43726,43715,43725,0],[43766,43380,43726,0],[43726,43725,43721,0],[43721,43725,43720,0],[43725,43716,43720,0],[43720,43716,43719,0],[43717,43718,43719,0],[43719,43718,43727,0],[43727,43718,43729,0],[43742,43729,43718,0],[43742,43718,43728,0],[43717,43745,43718,0],[43745,43728,43718,0],[43727,43729,43731,0],[43731,43729,43730,0],[43731,43730,43732,0],[43765,43732,43709,0],[43709,43732,43708,0],[8663,43708,43733,0],[43708,43732,43733,0],[43730,43741,43748,0],[43748,43741,43734,0],[43748,43734,43707,0],[43707,43734,43737,0],[43707,43737,43736,0],[43707,43736,43735,0],[43735,43600,43599,0],[43599,43600,43611,0],[43599,43597,43706,0],[43705,43706,8699,0],[8699,43706,43597,0],[43600,43736,43739,0],[43600,43739,43602,0],[43600,43735,43736,0],[43739,43738,8389,0],[43738,43739,43737,0],[43737,43739,43736,0],[43737,43734,43740,0],[43740,43734,43744,0],[43744,43734,43741,0],[43730,43729,43741,0],[43741,43729,43744,0],[43744,43729,43742,0],[43750,43742,43728,0],[43750,43728,43743,0],[43743,43745,8391,0],[8392,8391,43383,0],[8392,43383,43393,0],[43740,43744,43742,0],[43728,43745,43743,0],[43745,43746,43383,0],[43383,8391,43745,0],[43745,43717,43746,0],[43383,43746,43398,0],[43398,43746,43382,0],[43382,43746,43747,0],[43732,43730,43748,0],[43732,43748,43733,0],[43727,43731,43720,0],[43720,43731,43749,0],[43749,43731,43732,0],[43720,43749,43721,0],[43380,43382,43715,0],[43715,43382,43747,0],[43716,43725,43747,0],[43747,43725,43715,0],[43750,43751,10170,0],[8391,43752,43743,0],[43743,43752,43751,0],[43384,43399,43757,0],[43384,43757,43758,0],[43384,43758,43385,0],[43389,43388,43753,0],[43753,43388,10161,0],[43753,10161,10162,0],[10161,43388,43387,0],[43389,43753,8399,0],[8399,43753,8400,0],[8400,43753,10162,0],[43389,8399,43754,0],[8398,43754,43755,0],[43754,8399,43755,0],[43400,43397,43396,0],[43400,43396,43756,0],[43355,43756,43768,0],[43404,43756,43396,0],[43769,43768,43404,0],[43404,43768,43756,0],[43758,43772,43759,0],[43759,43385,43758,0],[10176,10024,8386,0],[10024,10176,10174,0],[43603,43739,8389,0],[8638,10188,43764,0],[43764,10188,43579,0],[43764,43579,8633,0],[43763,43760,43761,0],[43761,43760,43762,0],[8632,43762,43016,0],[8636,43763,43761,0],[43760,43764,8633,0],[43760,43763,43764,0],[43764,43763,8638,0],[43749,43732,43765,0],[43749,43765,43710,0],[43749,43710,43721,0],[43710,43722,43721,0],[43766,43724,43380,0],[43380,43724,43723,0],[34558,34564,34559,0],[34558,34559,43767,0],[8675,8565,43520,0],[43371,43519,43372,0],[43373,43375,10125,0],[10125,43375,43372,0],[10135,8564,43332,0],[43768,43769,43358,0],[43358,43769,43403,0],[43400,43770,43397,0],[43397,43770,43757,0],[43757,43770,43772,0],[43757,43772,43758,0],[43771,43773,43354,0],[43771,43354,44994,0],[44994,43354,43352,0],[44947,43772,43771,0],[43771,43772,43773,0],[43773,43772,43770,0],[43354,43773,43401,0],[43401,43773,43400,0],[43400,43773,43770,0],[44947,43774,43775,0],[44947,43775,45313,0],[45313,43775,43780,0],[43776,43777,44948,0],[44948,43777,44867,0],[43828,44867,43777,0],[43828,43777,43778,0],[43778,43777,43781,0],[43778,43781,43829,0],[43829,43781,43779,0],[43776,43780,43779,0],[43776,43779,43781,0],[43776,43781,43777,0],[43775,43774,43782,0],[43775,43782,43783,0],[43775,43783,43780,0],[43780,43783,43779,0],[43771,43774,44947,0],[43394,43395,43407,0],[43381,43395,43402,0],[43381,43402,43382,0],[43381,43407,43395,0],[43402,43395,43396,0],[43771,44994,43782,0],[43782,43774,43771,0],[43425,43357,43359,0],[43425,43359,43360,0],[43360,43409,43425,0],[43425,43426,43357,0],[43409,43412,43411,0],[43409,43411,43410,0],[43433,43412,43432,0],[43430,43366,43784,0],[43785,43784,43786,0],[43785,43786,43341,0],[43366,43786,43784,0],[43430,43784,43434,0],[43434,43784,43787,0],[43413,43787,43415,0],[43787,43413,43434,0],[43784,43785,43787,0],[43415,43787,43416,0],[43416,43787,43785,0],[43416,43785,43343,0],[10142,43788,10154,0],[43788,43792,43789,0],[43788,43789,10153,0],[10153,43789,43794,0],[10152,43790,43796,0],[43796,43790,8428,0],[44886,8428,43459,0],[8428,43790,43791,0],[43791,43790,43794,0],[43791,43794,43792,0],[43791,43792,43795,0],[43789,43792,43794,0],[43792,43793,43795,0],[43795,8425,8426,0],[43791,43795,8426,0],[43791,8426,8428,0],[43797,43458,43883,0],[43458,43797,43798,0],[43798,43805,43799,0],[43798,43799,43800,0],[43800,43799,10150,0],[43802,10150,43801,0],[43803,43801,43344,0],[43344,43801,43467,0],[43802,43803,43342,0],[43801,43803,43802,0],[43800,10151,43798,0],[43798,10151,43804,0],[43796,43458,43804,0],[43804,43458,43798,0],[43797,43456,43798,0],[43798,43456,44898,0],[43798,44898,43805,0],[43799,43805,44897,0],[43799,44897,43806,0],[43799,43806,43807,0],[43807,43467,43801,0],[43807,43801,10150,0],[43807,10150,43799,0],[43807,43806,43808,0],[43808,43465,43807,0],[43458,43796,44886,0],[44886,43796,8428,0],[10153,10154,43788,0],[10142,43505,43809,0],[43793,43810,43811,0],[43811,43812,8422,0],[8422,8423,43811,0],[8423,8424,43811,0],[43811,8424,43795,0],[43811,43795,43793,0],[43793,43792,43809,0],[43809,43792,43788,0],[43809,43788,10142,0],[43811,43810,43812,0],[8422,43812,8420,0],[8420,43812,43813,0],[43813,43812,10141,0],[43793,43809,43810,0],[43812,43810,10141,0],[10141,43810,43809,0],[43814,8560,8543,0],[43814,8543,8544,0],[43816,43815,43817,0],[43816,43817,44866,0],[43816,44866,43828,0],[43816,43828,8438,0],[43816,8438,43840,0],[8499,43840,8437,0],[8437,43840,8438,0],[43819,43818,43820,0],[43819,43820,43827,0],[43827,43820,44981,0],[44981,43821,43822,0],[43822,43821,44969,0],[43822,44969,43823,0],[8440,43823,8442,0],[8442,44967,45305,0],[45305,44967,43824,0],[43824,43826,43825,0],[43825,43826,8493,0],[43819,43827,8439,0],[8439,43827,43823,0],[43823,43827,43822,0],[43822,43827,44981,0],[8438,43828,43818,0],[43818,43828,43820,0],[43820,43828,43778,0],[43830,43832,44979,0],[44979,43831,43829,0],[43829,43831,43778,0],[44979,43829,43830,0],[43829,43779,43830,0],[43439,43833,43834,0],[44976,43837,43833,0],[44976,43832,43837,0],[43837,43832,43838,0],[44989,43838,43830,0],[44989,43830,43779,0],[43830,43838,43832,0],[43836,43835,43834,0],[43836,43834,43837,0],[43837,43834,43833,0],[43439,43834,43438,0],[43833,43441,44976,0],[8499,43839,43840,0],[43839,8500,43815,0],[43816,43840,43815,0],[43815,43840,43839,0],[43841,8549,8433,0],[8433,8550,43842,0],[43842,43843,43867,0],[43867,43843,8452,0],[8550,43844,43842,0],[43842,43844,43843,0],[43848,43850,8444,0],[43848,8444,8446,0],[43849,8444,43850,0],[43849,43850,43856,0],[43856,43850,43863,0],[8444,43849,8443,0],[8443,43851,43855,0],[43855,43851,43852,0],[43855,43852,43853,0],[43853,43852,43859,0],[43854,8439,8440,0],[43853,43854,43855,0],[43855,43854,8440,0],[43855,8440,8441,0],[43855,8441,8443,0],[8443,43849,43851,0],[43851,43849,43856,0],[43856,44996,43851,0],[43851,44996,43857,0],[43851,43857,43852,0],[43852,43857,43858,0],[43852,43858,43859,0],[8436,43858,43860,0],[43860,43858,43857,0],[8436,43860,8435,0],[43861,43846,43845,0],[43861,43845,8434,0],[8434,43845,43844,0],[43856,43863,44996,0],[44996,43863,43847,0],[43848,43862,43863,0],[43863,43862,43865,0],[43863,43865,43864,0],[43864,43865,45306,0],[43864,45306,8451,0],[43863,43850,43848,0],[43848,44079,43862,0],[43862,44079,43865,0],[43865,44079,45307,0],[43844,43845,43843,0],[43843,43845,8452,0],[43863,43864,43847,0],[43847,43864,43866,0],[43847,43866,43846,0],[43866,8452,43846,0],[43846,8452,43845,0],[8452,8453,43867,0],[43867,8453,44836,0],[43867,44836,43868,0],[43871,43868,43869,0],[43871,43869,43893,0],[43871,43893,44829,0],[43871,44829,43878,0],[43878,44828,43876,0],[43871,43877,43891,0],[43891,43877,43892,0],[43892,43875,44838,0],[44838,43875,43886,0],[43886,43875,43874,0],[43886,43874,43872,0],[43872,43874,43873,0],[43873,43874,43454,0],[43454,43874,43879,0],[43877,43876,43892,0],[43875,43879,43874,0],[43875,43892,43876,0],[43878,43876,43877,0],[43870,43879,43875,0],[43875,43876,43870,0],[43870,44812,43879,0],[43879,44812,43452,0],[43879,43452,43454,0],[43454,43460,43873,0],[44945,43880,43881,0],[44887,43882,43885,0],[44887,43885,43883,0],[43883,43885,43457,0],[43881,43880,43882,0],[43882,43884,43885,0],[43885,43884,43457,0],[43873,43884,43872,0],[43884,43882,43872,0],[43872,43882,43880,0],[43888,43889,43890,0],[43888,43890,43891,0],[43891,43892,43887,0],[43891,43887,43888,0],[43892,44838,43887,0],[43872,43880,43886,0],[43869,44833,43893,0],[43893,44833,44829,0],[44828,44831,44832,0],[44828,44832,44827,0],[44827,44832,43894,0],[44827,43894,44826,0],[44826,43894,44810,0],[43894,44830,43895,0],[43895,44830,44786,0],[44786,44830,43896,0],[44834,43897,43898,0],[43898,43899,43900,0],[45001,8459,8490,0],[8455,45001,8491,0],[8459,45001,8458,0],[43900,44189,45088,0],[45088,44189,43901,0],[45088,43901,45089,0],[45089,43901,43902,0],[43903,44050,43904,0],[43903,43904,44179,0],[44049,44179,43905,0],[44049,43905,43906,0],[44051,43906,44181,0],[43907,44181,43908,0],[43907,43908,44161,0],[43910,43912,43911,0],[43911,43912,44765,0],[44784,44765,43913,0],[43915,43914,44123,0],[43915,44123,43916,0],[43916,44123,44222,0],[43917,44220,44217,0],[43917,44217,44108,0],[44217,43918,44095,0],[44095,43918,44094,0],[44094,43918,44121,0],[44121,45181,45041,0],[44120,45041,45040,0],[44120,45040,44119,0],[44112,44119,43919,0],[44112,43919,43920,0],[43921,45125,45047,0],[44117,45047,43922,0],[44117,43922,43923,0],[43923,45035,43924,0],[44104,45037,43925,0],[43925,43926,44769,0],[44769,43963,43964,0],[44776,43927,43928,0],[44781,44776,43928,0],[44781,43928,45011,0],[45011,43928,43929,0],[45011,45020,43930,0],[44058,45145,43931,0],[43944,43933,43934,0],[45409,43934,43935,0],[43935,43937,43936,0],[43936,43937,43938,0],[43938,43937,43939,0],[45066,45079,43940,0],[43940,45068,45076,0],[45068,45083,45069,0],[45069,45083,43941,0],[43932,43943,43944,0],[43944,43943,43942,0],[45080,45082,45079,0],[43932,45034,43943,0],[43943,45034,43946,0],[43943,43946,43947,0],[45071,43947,43948,0],[45071,43948,45072,0],[45072,43948,43949,0],[45072,43949,44003,0],[44965,43950,44004,0],[44965,44004,43951,0],[45141,43951,43952,0],[43952,43953,43954,0],[43954,43953,44023,0],[44023,43953,43956,0],[43956,44006,43955,0],[43956,43955,43957,0],[43957,43991,44014,0],[44014,43991,43992,0],[44015,43992,43995,0],[44086,43958,44087,0],[44088,44008,43959,0],[43959,44009,45035,0],[45035,44009,43960,0],[43962,44011,45147,0],[45147,44011,43926,0],[43963,44011,43964,0],[43964,44011,44013,0],[43927,44773,44013,0],[44773,43964,44013,0],[43963,44769,43926,0],[43926,44011,43963,0],[44087,43958,43965,0],[44087,43965,44008,0],[44008,43965,43966,0],[44009,43966,43967,0],[45133,43967,43978,0],[45133,43978,45019,0],[45019,43978,43968,0],[45021,43968,43969,0],[43974,44001,43970,0],[43946,45015,43947,0],[43973,44000,43975,0],[43975,44000,44001,0],[43975,44001,43974,0],[43974,43976,45015,0],[45015,43976,43947,0],[43947,43976,43948,0],[43974,43970,43976,0],[43976,43970,43948,0],[43949,43948,43971,0],[43971,43948,43970,0],[43973,43969,44000,0],[43972,43930,43977,0],[43972,43977,43973,0],[43973,43977,43969,0],[43977,43930,45021,0],[43977,45021,43969,0],[43969,43968,45029,0],[43979,43967,43997,0],[43996,43997,43980,0],[45026,43981,43982,0],[45026,43982,45027,0],[44007,45027,43983,0],[44002,44007,43983,0],[43983,43984,43985,0],[43985,43984,43993,0],[43993,43984,43986,0],[43993,43986,43987,0],[43998,43988,43980,0],[43987,43986,43998,0],[43998,43986,43988,0],[43982,43981,43984,0],[43982,43984,43983,0],[43981,43988,43986,0],[43986,43984,43981,0],[43983,43985,43989,0],[43989,43985,43950,0],[44004,45144,44005,0],[44005,43990,43955,0],[43955,43990,43957,0],[43957,43990,43991,0],[43950,43985,45144,0],[45144,43993,43990,0],[43990,43993,43991,0],[43991,43993,43987,0],[43998,43992,43987,0],[43987,43992,43991,0],[44005,45144,43990,0],[43992,43994,43995,0],[43995,43958,44085,0],[43992,43998,43994,0],[43994,43980,43958,0],[43958,43980,43965,0],[43994,43958,43995,0],[45027,43982,43983,0],[43988,43981,43996,0],[43996,43980,43988,0],[43978,43967,43979,0],[43967,43966,43997,0],[43997,43966,43965,0],[43997,43965,43980,0],[44000,45027,44001,0],[44001,45024,43970,0],[43970,45024,44007,0],[43970,44007,43971,0],[44007,44002,43971,0],[44003,44002,44966,0],[44003,43949,44002,0],[44002,43949,43971,0],[44002,43989,44966,0],[44966,43989,43950,0],[44004,43950,45144,0],[43951,44004,43952,0],[44006,44005,43955,0],[43989,44002,43983,0],[45027,44007,45024,0],[45029,44000,43969,0],[45029,43968,43999,0],[43999,43968,43978,0],[45133,44009,43967,0],[43966,44009,43959,0],[43966,43959,44008,0],[43960,44009,45132,0],[43960,45132,43961,0],[43961,45132,43962,0],[43962,45132,44010,0],[44011,44010,44012,0],[44012,45023,45011,0],[45011,43929,44012,0],[43962,44010,44011,0],[43929,43928,44013,0],[44013,43928,43927,0],[43929,44013,44012,0],[44012,44013,44011,0],[44021,44014,44015,0],[44017,44015,45056,0],[45056,43995,44085,0],[45056,44085,44016,0],[44016,45054,45055,0],[44016,45055,45056,0],[44020,44023,44021,0],[44015,44018,44021,0],[44021,44018,44020,0],[44017,44018,44015,0],[43954,44023,44070,0],[44022,44059,43932,0],[43932,43944,44022,0],[45141,43952,44022,0],[44022,43952,43954,0],[44020,44019,44023,0],[44070,44023,44024,0],[44030,44024,44026,0],[44030,44026,44025,0],[44027,44078,8479,0],[8479,44078,44028,0],[44026,44028,44078,0],[8481,44024,44029,0],[8481,44029,8482,0],[8482,45055,8483,0],[8483,45055,8489,0],[8489,45055,45054,0],[44017,44019,44018,0],[44029,44019,44017,0],[44070,44030,44957,0],[44957,44031,44032,0],[44032,45033,44033,0],[44034,45000,44059,0],[44059,45000,44035,0],[44059,44035,43931,0],[43931,44035,44058,0],[44036,44058,44035,0],[44036,44035,44038,0],[44780,44919,44925,0],[44780,44925,44924,0],[44780,44924,44774,0],[44774,44924,44772,0],[44772,44924,44039,0],[44772,44039,44040,0],[44040,44042,44770,0],[44770,44042,44041,0],[44041,44042,44043,0],[44053,45008,44052,0],[44052,44044,44045,0],[44045,44044,44046,0],[44045,44046,44047,0],[43906,44807,44049,0],[44049,44807,43903,0],[43903,44179,44049,0],[44048,43906,44051,0],[44048,44051,44045,0],[44045,44051,44052,0],[44052,44051,44055,0],[44052,44055,43907,0],[44052,43907,44053,0],[44053,43907,44054,0],[43910,44054,43909,0],[43909,44054,44161,0],[44161,44054,43907,0],[43907,44055,44181,0],[44181,44055,44051,0],[44048,44045,44047,0],[44036,44056,44778,0],[44036,44778,45012,0],[45012,44778,44777,0],[45012,44777,45009,0],[45009,44777,44781,0],[44036,44038,44056,0],[45145,44057,45146,0],[44057,45145,44058,0],[44057,44058,44036,0],[43932,44059,43931,0],[44038,44035,45000,0],[44038,45000,44060,0],[44060,45000,44033,0],[44060,44033,45030,0],[45030,44076,44061,0],[44922,44062,44910,0],[44062,44063,44064,0],[44064,44063,44065,0],[44065,44066,44938,0],[44938,44066,44067,0],[44067,44066,44936,0],[44937,44936,44075,0],[44937,44075,44987,0],[44987,44075,8494,0],[44066,44068,44936,0],[44066,44065,44068,0],[44068,44063,44076,0],[44076,44063,44061,0],[44061,44063,44922,0],[44068,44065,44063,0],[44922,44063,44062,0],[44060,45030,44069,0],[44060,44069,44037,0],[44037,44069,44919,0],[44037,44038,44060,0],[44033,44034,44032,0],[44070,44957,44071,0],[44071,44957,44032,0],[44032,44034,44071,0],[44022,44071,44059,0],[44059,44071,44034,0],[44071,44022,44070,0],[44022,43954,44070,0],[44070,44024,44030,0],[44025,44026,44078,0],[44025,44078,44031,0],[44031,44078,44999,0],[44031,44999,44072,0],[44074,44073,44075,0],[44074,44075,44077,0],[44068,44077,44936,0],[44936,44077,44075,0],[44075,8495,8494,0],[44068,44076,44077,0],[44077,44076,45032,0],[44077,45032,44074,0],[44078,44082,44999,0],[44999,44082,8447,0],[44999,8447,44079,0],[45307,8447,44080,0],[44080,8454,8448,0],[8456,8454,44080,0],[44072,44999,44998,0],[44072,44998,44997,0],[44072,44997,44073,0],[44072,44073,44074,0],[44080,44082,44081,0],[44081,44082,44083,0],[44083,44082,44956,0],[44081,8457,8456,0],[8456,44080,44081,0],[8447,44082,44080,0],[44083,44084,44081,0],[44081,44084,8457,0],[44084,8477,8458,0],[8477,44084,44083,0],[45048,44086,44087,0],[44088,44087,44008,0],[44085,44086,44016,0],[44016,44086,45126,0],[45126,44086,45048,0],[44085,43958,44086,0],[43995,45056,44015,0],[44015,44014,43992,0],[43957,44014,44021,0],[43957,44021,43956,0],[43956,44021,44023,0],[43943,43947,43942,0],[44117,43923,44105,0],[44091,45128,44092,0],[44093,44091,44092,0],[44110,44092,44090,0],[44110,44090,44096,0],[44096,44090,44097,0],[44097,44089,44104,0],[44097,44104,43925,0],[44097,43925,44098,0],[44100,44102,44101,0],[44101,44102,44108,0],[44108,44102,43917,0],[43917,44102,43916,0],[43916,44102,43915,0],[44103,43915,44102,0],[44097,44098,44099,0],[44099,44100,44097,0],[44097,44100,44096,0],[44090,44089,44097,0],[45037,44104,43924,0],[43924,44104,44105,0],[43924,44105,43923,0],[44104,44089,44105,0],[44093,44092,44106,0],[44106,44092,44110,0],[44106,44110,44107,0],[44108,44109,44101,0],[44101,44109,44107,0],[44107,44109,44106,0],[44109,45129,44106,0],[44106,45129,44093,0],[44107,44110,44096,0],[44107,44096,44100,0],[44101,44107,44100,0],[43920,44111,44112,0],[44091,44113,44122,0],[45128,44122,44115,0],[45128,44115,44114,0],[44114,44115,44116,0],[44116,44115,44111,0],[44111,44115,44112,0],[44114,44116,44117,0],[44117,44116,45047,0],[45047,44116,44111,0],[44091,44093,44113,0],[44113,44093,44118,0],[44112,44113,44119,0],[44119,44113,44118,0],[45041,44120,44121,0],[44120,44119,44118,0],[44093,45129,44118,0],[44118,44094,44120,0],[44120,44094,44121,0],[44094,44118,45129,0],[44122,44113,44112,0],[44122,44112,44115,0],[43920,43921,44111,0],[44123,43914,43913,0],[44123,43913,44124,0],[44124,44125,45044,0],[44723,44125,44126,0],[44127,44128,44725,0],[44725,44128,44129,0],[44725,44129,44130,0],[45161,44143,44141,0],[44136,45302,44132,0],[44136,44132,44133,0],[44133,44134,44650,0],[44133,44650,44135,0],[44136,44708,45302,0],[44136,44137,44707,0],[44135,44137,44136,0],[44135,44136,44133,0],[44133,44132,44138,0],[44761,44138,44139,0],[44140,44139,45303,0],[44140,45303,44144,0],[44144,44131,44143,0],[44143,44131,44141,0],[44129,44142,44130,0],[44130,44142,45161,0],[44142,44143,45161,0],[44145,44174,44676,0],[44676,44174,44146,0],[44148,44149,45159,0],[45159,44149,44247,0],[44256,45177,44151,0],[44154,44153,44155,0],[44155,44156,44759,0],[44159,44162,44160,0],[43909,44161,44162,0],[44163,44162,44159,0],[44163,44159,44185,0],[44163,44185,44164,0],[44256,44164,45177,0],[44164,44158,45177,0],[45177,44158,44157,0],[44256,44150,44164,0],[44164,44150,44165,0],[44164,44165,44166,0],[44166,44165,44167,0],[44163,44167,44171,0],[44163,44171,44162,0],[44162,44171,43910,0],[44126,44169,44724,0],[44724,44169,44127,0],[43910,44168,43912,0],[44170,43912,44169,0],[44170,44169,44126,0],[43910,43909,44162,0],[44163,44164,44166,0],[44166,44167,44163,0],[43910,44171,44168,0],[44168,44171,44129,0],[44142,44129,44171,0],[44142,44171,44172,0],[45151,44167,44165,0],[44142,44172,44173,0],[44174,44145,44173,0],[44173,44145,44144,0],[44173,44144,44143,0],[44173,44143,44142,0],[45151,44172,44167,0],[44167,44172,44171,0],[44129,44128,44168,0],[44168,44128,44169,0],[44169,44128,44127,0],[43908,44160,44161,0],[44160,44162,44161,0],[44159,44160,45090,0],[44159,45090,44175,0],[44175,45090,44176,0],[44175,44176,44177,0],[44177,44176,44178,0],[44178,43905,44179,0],[43905,44180,43906,0],[43906,44180,44181,0],[44179,43904,44178,0],[44183,44759,44156,0],[44183,44156,44157,0],[44183,44157,44184,0],[44184,44157,44158,0],[44184,44158,44175,0],[44175,44158,44185,0],[44175,44177,44184,0],[44158,44164,44185,0],[44175,44185,44159,0],[44178,43904,44182,0],[44759,44186,44187,0],[44187,44186,44188,0],[44188,43901,44189,0],[44182,44186,44183,0],[44183,44186,44759,0],[44154,44191,44756,0],[44154,44756,44153,0],[44192,45093,44254,0],[44254,45093,44193,0],[44254,44193,45222,0],[44196,44195,44740,0],[44196,44740,44197,0],[44197,44740,44198,0],[44197,44198,44199,0],[44197,44199,44200,0],[44737,44200,45178,0],[44228,44229,44201,0],[44228,44201,44202,0],[44207,44203,44204,0],[44204,44203,44205,0],[8468,8467,44206,0],[44206,43921,43920,0],[43921,44206,8469,0],[44207,44204,45042,0],[44207,45042,44223,0],[44223,45042,44224,0],[44224,45042,44209,0],[44209,45181,44210,0],[44210,45181,44211,0],[44211,45181,44212,0],[44211,44212,45180,0],[45180,44212,44213,0],[44213,44218,44718,0],[45130,44214,45044,0],[44214,44218,44215,0],[44215,44218,44216,0],[44215,44216,44220,0],[44220,44216,44217,0],[43918,44218,44219,0],[44218,44213,44219,0],[43918,44212,44121,0],[44212,43918,44219,0],[44121,44212,45181,0],[43918,44216,44218,0],[44215,44220,44222,0],[44215,44222,44221,0],[44220,43917,43916,0],[44220,43916,44222,0],[44221,44222,44124,0],[44123,44124,44222,0],[44217,44216,43918,0],[44207,44223,44202,0],[44224,44210,44225,0],[44225,44210,44211,0],[44226,44230,44227,0],[44227,44230,44229,0],[44227,44229,44225,0],[44227,44225,44211,0],[44223,44224,44202,0],[44224,44228,44202,0],[44228,44225,44229,0],[45179,44230,44231,0],[44231,44230,44226,0],[44231,44226,44735,0],[44231,44735,44232,0],[44232,44728,44233,0],[44233,44728,44733,0],[44234,44727,44702,0],[44702,44727,44235,0],[44702,44235,44703,0],[44699,44702,44704,0],[44699,44704,44236,0],[45104,44194,44238,0],[44238,44194,45097,0],[45104,45105,45127,0],[45127,44258,44240,0],[44240,44258,44239,0],[44241,44240,44242,0],[44255,44242,44684,0],[44255,44684,44243,0],[44149,44150,44247,0],[44247,44150,44248,0],[44247,44248,44246,0],[44249,44250,44244,0],[44244,44250,44251,0],[44253,44252,44192,0],[44192,44252,44153,0],[44192,44254,44253,0],[44254,45222,44243,0],[44243,45222,44255,0],[44255,44241,44242,0],[44253,44254,44243,0],[44253,44243,44252,0],[44252,44243,44251,0],[44251,44243,44244,0],[44252,44251,44151,0],[44151,44152,44252,0],[44252,44152,44153,0],[44251,44250,44257,0],[44251,44257,44151,0],[44150,44256,44248,0],[44257,44249,44248,0],[44248,44256,44257,0],[44257,44256,44151,0],[44244,44245,44249,0],[44249,44245,44246,0],[45105,44237,45127,0],[45127,44237,44258,0],[44239,44259,44667,0],[44667,44259,44260,0],[44260,44662,44685,0],[44685,44662,44686,0],[44686,45152,44261,0],[44692,45299,44523,0],[44523,45299,45154,0],[44502,45154,44262,0],[44263,45155,44264,0],[44264,45153,44265,0],[44265,44541,44266,0],[44267,44266,44539,0],[44268,44538,44270,0],[44270,44538,44269,0],[44270,44269,44271,0],[44270,44271,44272,0],[44272,44271,44273,0],[44273,44568,44277,0],[44274,44276,44275,0],[44275,44566,44274,0],[44566,44275,44277,0],[45282,44280,44281,0],[45224,44526,44527,0],[44284,44528,44285,0],[44527,44284,44286,0],[44286,44284,44287,0],[44286,44287,45227,0],[45227,44287,44497,0],[45227,44497,44288,0],[44290,44441,45235,0],[45235,44441,44444,0],[44291,44444,44292,0],[44293,44292,44294,0],[45231,44295,44429,0],[45231,44429,45232,0],[44296,44325,44297,0],[44296,44297,44298,0],[44298,45391,44412,0],[44299,44411,44359,0],[44299,44359,44300,0],[45252,44301,45261,0],[44303,44302,44361,0],[44303,44361,44304,0],[44303,44304,44305,0],[44305,44304,44306,0],[44306,44318,44307,0],[44306,44307,45273,0],[45273,44307,44308,0],[45273,44308,44508,0],[44309,44508,45276,0],[44309,45276,44514,0],[44310,45275,45368,0],[45359,45358,44313,0],[44314,45349,44315,0],[45350,45363,44317,0],[44317,45363,44316,0],[44316,45198,44317,0],[44317,45198,45213,0],[44307,44318,44354,0],[44307,44354,44321,0],[44307,44321,44319,0],[44373,44319,44320,0],[44320,44321,44337,0],[44337,44321,44354,0],[44322,44366,44340,0],[44340,44366,44323,0],[44339,44356,44324,0],[44341,44324,45392,0],[44325,45232,44326,0],[44325,44326,44327,0],[44327,44328,44330,0],[44327,44330,44329,0],[44330,44331,44342,0],[44342,44331,44332,0],[44333,44334,44335,0],[44337,44322,44320,0],[44322,44340,44336,0],[44338,44339,44344,0],[44344,44339,44324,0],[44339,44340,44323,0],[44325,44327,44297,0],[45392,44297,44327,0],[45392,44327,44341,0],[44341,44327,44329,0],[44341,44344,44324,0],[44338,44344,44343,0],[44338,44343,44345,0],[44345,44343,44342,0],[44330,44342,44343,0],[44330,44343,44329,0],[44343,44344,44329,0],[44341,44329,44344,0],[44333,44345,44332,0],[44338,44345,44333,0],[44336,44333,44335,0],[44326,45232,44353,0],[44326,44353,45408,0],[44346,45408,45386,0],[44346,45386,44347,0],[44347,45387,44348,0],[44348,44351,44349,0],[44349,44351,44350,0],[44432,44350,44352,0],[44432,44352,44295,0],[45232,44429,44353,0],[45387,44351,44348,0],[44351,45387,44350,0],[44350,45387,44352,0],[44429,45407,45386,0],[44429,45386,44353,0],[44353,45386,45408,0],[44429,44352,45407,0],[44319,44321,44320,0],[44318,44304,44354,0],[44354,44304,44357,0],[44354,44357,44365,0],[44337,44365,44355,0],[44363,44364,45390,0],[44339,44323,44356,0],[44356,44323,44367,0],[44356,44367,45390,0],[44318,44306,44304,0],[44357,44361,44362,0],[44362,44361,44358,0],[44362,44358,44359,0],[44300,44359,44358,0],[44360,44358,44361,0],[44360,44361,44302,0],[44361,44357,44304,0],[44300,44358,44301,0],[44301,44358,44360,0],[44362,44359,44364,0],[44364,44359,44411,0],[44364,44363,44362,0],[44365,44357,44362,0],[44362,44363,44365,0],[44355,44365,44363,0],[44354,44365,44337,0],[44337,44355,44366,0],[44366,44322,44337,0],[44366,44355,44367,0],[44366,44367,44323,0],[44363,45390,44367,0],[44363,44367,44355,0],[44368,44307,44319,0],[44308,44307,44368,0],[44369,44368,44370,0],[44370,45279,44369,0],[45369,45368,44369,0],[44369,44372,44368,0],[45369,44369,44371,0],[44371,44369,45279,0],[44311,44371,45279,0],[45275,44372,44369,0],[45275,44369,45368,0],[45275,44310,44514,0],[44368,44372,44308,0],[44308,44372,44508,0],[44368,44319,45278,0],[45278,44373,45277,0],[45277,44373,44374,0],[44319,44373,45278,0],[44374,44373,44320,0],[44374,44320,44322,0],[44335,44374,44336,0],[44336,44374,44322,0],[44368,45278,44370,0],[45261,44301,44360,0],[44360,44302,45261,0],[44300,44397,44408,0],[44300,44408,44299,0],[44414,44404,44409,0],[45242,44375,45241,0],[45241,44375,44399,0],[44399,44375,44406,0],[44376,44406,44398,0],[44376,44398,44377,0],[44377,44398,44378,0],[45289,44378,45250,0],[45289,45250,44379,0],[44394,44379,45251,0],[44394,45251,44380,0],[44392,44380,44381,0],[44382,45274,44383,0],[44384,45287,44386,0],[44386,44385,44384,0],[44383,45287,44391,0],[44387,44388,44389,0],[45289,44379,44390,0],[44390,44379,44389,0],[44389,44379,44394,0],[44389,44394,44387,0],[44393,44392,44381,0],[44392,44393,44382,0],[44382,44391,44392,0],[44380,44392,44394,0],[44387,44394,44391,0],[44394,44392,44391,0],[45250,44378,44395,0],[44396,44397,45248,0],[44395,44378,44398,0],[44397,45247,44408,0],[44395,44398,44396,0],[44406,44376,44399,0],[45241,44399,45246,0],[44402,45238,45240,0],[44400,45236,45227,0],[44400,45227,44288,0],[44400,44401,45236,0],[45236,44401,45240,0],[45240,44401,44405,0],[45240,44405,44402,0],[45242,45382,44403,0],[44404,44414,44413,0],[44413,44410,44404,0],[44414,44409,44375,0],[44414,44375,44403,0],[44403,44375,45242,0],[45238,44402,45241,0],[44400,44288,44401,0],[44401,44288,45228,0],[44408,44407,44409,0],[44408,44409,44299,0],[44299,44409,44410,0],[44410,44409,44404,0],[44407,44408,45247,0],[44407,45247,44398,0],[44407,44398,44406,0],[44410,44412,44411,0],[44411,44412,44364,0],[44412,44410,44413,0],[44412,44413,44298,0],[44298,44413,44296,0],[45243,44296,44413,0],[45243,44413,44414,0],[44292,44293,44291,0],[44289,44497,44415,0],[44415,44454,44416,0],[44448,44418,44447,0],[44447,44418,44452,0],[44447,44452,44451,0],[44420,44457,44423,0],[44422,44423,44421,0],[44421,44483,44422,0],[44422,44483,44486,0],[44423,44422,45383,0],[44423,45383,44477,0],[44420,44477,44436,0],[44425,44426,44450,0],[44450,44426,44427,0],[44445,44439,44430,0],[44445,44430,44428,0],[44428,44431,44292,0],[44292,44431,44294,0],[44352,44429,44295,0],[44430,44431,44428,0],[44431,44432,44294,0],[44294,44432,44295,0],[44433,44440,44349,0],[44349,44440,45385,0],[44434,44437,44438,0],[44436,44435,44424,0],[44424,44435,44425,0],[44435,44438,44425,0],[44425,44438,44426,0],[44426,44437,44427,0],[44437,44434,45385,0],[44437,44426,44438,0],[44445,44427,44439,0],[44439,44440,44433,0],[44440,44439,44427,0],[44439,44433,44430,0],[44432,44431,44430,0],[44427,44437,44440,0],[44440,44437,45385,0],[44433,44350,44432,0],[44446,44443,44441,0],[44446,44441,44290,0],[44446,44290,44442,0],[44446,44442,45175,0],[44446,45175,44449,0],[44443,44292,44444,0],[44443,44444,44441,0],[44428,44292,44443,0],[44428,44443,44445,0],[44445,44443,44446,0],[44445,44446,44449,0],[44450,44427,44445,0],[44450,44445,44449,0],[44420,44436,44419,0],[44419,44436,44424,0],[45175,44447,44450,0],[45175,44450,44449,0],[44450,44447,44425,0],[44447,45175,44448,0],[44419,44424,44451,0],[44451,44424,44425,0],[44451,44425,44447,0],[44477,44420,44423,0],[44592,44452,44458,0],[44458,44452,44456,0],[44458,44456,44591,0],[44591,44456,44416,0],[44453,44416,44454,0],[44530,44455,44285,0],[44530,44285,44529,0],[44452,44418,44456,0],[44456,44418,44417,0],[44456,44417,44416,0],[44454,44415,44455,0],[44451,44452,44592,0],[44451,44592,44419,0],[44420,44419,44457,0],[44457,44419,44458,0],[44457,44458,44607,0],[44457,44607,44593,0],[44457,44593,44423,0],[44423,44593,44421,0],[44459,45334,44460,0],[44460,45334,44461,0],[44460,44461,44462,0],[44462,44461,44463,0],[44464,44463,44465,0],[44467,45356,45353,0],[44467,45353,45354,0],[44467,45354,44469,0],[44469,45354,44468,0],[44469,44468,44470,0],[44470,44347,44471,0],[44471,44348,44495,0],[44495,44348,44472,0],[44495,44472,44473,0],[44481,44473,44478,0],[44481,44478,44474,0],[45384,44476,44477,0],[44477,44476,44436,0],[44436,44476,44435,0],[44435,44476,44438,0],[44438,44474,44434,0],[44434,44474,44478,0],[44474,44438,44475,0],[44475,44438,44476,0],[45356,44467,44466,0],[44459,44460,44421,0],[44421,44460,44483,0],[44496,44482,45384,0],[45384,44482,44480,0],[44480,44482,44479,0],[44480,44479,44474,0],[44474,44479,44481,0],[44474,44475,44480,0],[44479,44482,44489,0],[44483,44460,44462,0],[44483,44462,44484,0],[44485,45338,45337,0],[45338,44485,44465,0],[44465,44485,44464,0],[44486,44487,44482,0],[44482,44487,44489,0],[44487,44484,44464,0],[44487,44464,44488,0],[44488,44490,44487,0],[44487,44490,44489,0],[44489,44490,44491,0],[44495,44473,44491,0],[44473,44481,44491,0],[44491,44481,44489,0],[44491,44490,44494,0],[44491,44494,44492,0],[44492,44494,44493,0],[44491,44492,44495,0],[44495,44492,44470,0],[44470,44471,44495,0],[44486,44482,44496,0],[44464,44485,44488,0],[44488,44485,44490,0],[44490,44485,44494,0],[44494,44485,44493,0],[44493,44485,45388,0],[44493,45388,44467,0],[44467,45388,44466,0],[44470,44492,44469,0],[44493,44469,44492,0],[44469,44493,44467,0],[44484,44487,44486,0],[44484,44486,44483,0],[44289,44288,44497,0],[44455,44415,44285,0],[44497,44287,44415,0],[44415,44287,44285,0],[44284,44285,44287,0],[44268,44270,44278,0],[44268,44278,44498,0],[44267,44499,44266,0],[44262,44263,44500,0],[44501,44263,44499,0],[44263,44501,44500,0],[44262,44500,45259,0],[44262,45259,44502,0],[44502,45259,45258,0],[45297,45258,45266,0],[44504,44503,44521,0],[44504,44521,44309,0],[44506,44522,45270,0],[44506,45270,44507,0],[44507,45272,44508,0],[44508,45272,45273,0],[44507,44508,44506,0],[44506,44508,44505,0],[44309,44519,44504,0],[44504,44519,44509,0],[44697,44516,44510,0],[44510,44516,44511,0],[45364,44511,45365,0],[45365,44516,44515,0],[44512,44515,44513,0],[44513,44514,44310,0],[44511,44516,45365,0],[44515,44516,44520,0],[44509,44520,44697,0],[44509,44697,44695,0],[44697,44520,44516,0],[44509,44517,44504,0],[44503,44517,44518,0],[44503,44518,45297,0],[44503,45297,45267,0],[45267,45297,45266,0],[44519,44514,44520,0],[44520,44514,44513,0],[44520,44513,44515,0],[44520,44509,44519,0],[44521,44522,44506,0],[44506,44505,44521,0],[44521,44505,44309,0],[44521,44503,45267,0],[44521,45267,44522,0],[45154,44502,44523,0],[44264,44265,44266,0],[44499,44264,44266,0],[44270,44535,44536,0],[44536,44535,44524,0],[44279,44524,44280,0],[44281,44280,44525,0],[44281,44525,44282,0],[44282,44525,44283,0],[44274,44283,44525,0],[44283,44274,44526,0],[44526,44274,44527,0],[44528,45169,44529,0],[44529,45169,44534,0],[44529,44534,44530,0],[44454,44530,44453,0],[44453,44531,44532,0],[44532,44531,45174,0],[44532,45174,44533,0],[44533,45174,44576,0],[44576,45174,44564,0],[44564,45174,45170,0],[45170,45173,45168,0],[45168,45173,44534,0],[45168,44534,45169,0],[44453,44530,44531,0],[44530,44454,44455,0],[44530,44534,44531,0],[44531,44534,45173,0],[44528,44284,45172,0],[44276,44525,44535,0],[44270,44272,44535,0],[44535,44272,44276,0],[44525,44276,44274,0],[44276,44272,44275,0],[44275,44272,44273,0],[44275,44273,44277,0],[44524,44535,44525,0],[44524,44525,44280,0],[44524,44279,44536,0],[44270,44536,44278,0],[44278,44536,44279,0],[44538,44268,44537,0],[44269,44538,45116,0],[45116,44538,45115,0],[45112,44537,44539,0],[44658,44540,44541,0],[44541,44540,44266,0],[44540,44539,44266,0],[44539,44537,44267,0],[44268,44267,44537,0],[44570,44543,44544,0],[44545,44649,44134,0],[44647,44546,44574,0],[44547,44762,44548,0],[44547,44548,44549,0],[44549,44548,45216,0],[44549,45216,44550,0],[45221,44550,45323,0],[45221,45323,44690,0],[44635,44552,44553,0],[44635,44553,45326,0],[44635,45326,44554,0],[44557,44555,44556,0],[44557,44556,44558,0],[45374,44559,44643,0],[44642,44641,45376,0],[44642,45376,44560,0],[44567,45171,45172,0],[44566,44277,44567,0],[44567,44277,44568,0],[44588,44568,44569,0],[44588,44569,44587,0],[44587,44569,44542,0],[44587,44542,44584,0],[44584,44542,44570,0],[44586,44571,44572,0],[44642,44573,44575,0],[44575,44573,44572,0],[45325,44572,45399,0],[44570,44544,45399,0],[44575,45324,44574,0],[44574,45324,44647,0],[45399,44572,44571,0],[44542,44569,44271,0],[44273,44271,44569,0],[44273,44569,44568,0],[44542,44271,44269,0],[44564,45170,44581,0],[44577,44576,44579,0],[44578,44561,45396,0],[44561,44578,44573,0],[44576,44564,44579,0],[44562,44589,44580,0],[44562,44577,44589,0],[44589,44577,44579,0],[44583,44581,44565,0],[44579,44564,44581,0],[44579,44581,44582,0],[44585,44582,44583,0],[44585,44583,44584,0],[44585,44584,44571,0],[44585,44571,44586,0],[44570,44571,44584,0],[44584,44583,44587,0],[44587,44583,44565,0],[44583,44582,44581,0],[44568,44588,44567,0],[44566,44567,45172,0],[45171,44567,44588,0],[44588,44587,44565,0],[44585,44586,44582,0],[44589,44586,44572,0],[44589,44572,44580,0],[44580,44572,44578,0],[44582,44586,44589,0],[44589,44579,44582,0],[44533,44576,44563,0],[44533,44563,44612,0],[44532,44533,44590,0],[44416,44453,44591,0],[44591,44532,44590,0],[44458,44419,44592,0],[44607,44609,44593,0],[44593,44609,44594,0],[44597,44595,44596,0],[44597,44596,44598,0],[44629,44599,45333,0],[45333,44599,45332,0],[45331,44599,45328,0],[45331,45328,45329,0],[45328,44625,44600,0],[44600,44625,44624,0],[44631,44600,44623,0],[44615,44624,44601,0],[44616,44601,45401,0],[44605,44621,44606,0],[44606,44595,44608,0],[44608,44595,44609,0],[44608,44609,44607,0],[44458,44591,44607,0],[44607,44591,44608,0],[44608,44591,44590,0],[44603,44604,44610,0],[45394,44610,44605,0],[44611,44605,44612,0],[44611,44612,44563,0],[44612,44605,44606,0],[44604,44605,44610,0],[45394,44617,45400,0],[45400,44613,45402,0],[45402,44613,45397,0],[45397,45377,44614,0],[44615,45375,44623,0],[44615,44616,44614,0],[44615,44601,44616,0],[44617,45395,45396,0],[45396,45395,44562,0],[44602,45401,44618,0],[44603,44622,44619,0],[44603,44619,44620,0],[44604,44621,44605,0],[44596,44621,44620,0],[44620,44604,44603,0],[44603,44610,44622,0],[44622,44610,44602,0],[44622,44602,44618,0],[44622,44618,44630,0],[44604,44620,44621,0],[45401,44601,44618,0],[44615,44623,44624,0],[44624,44623,44600,0],[44626,44624,44625,0],[44601,44626,44618,0],[44618,44626,44627,0],[44627,45328,44628,0],[44628,44599,44629,0],[44628,44629,44598,0],[44598,44620,44619,0],[44598,44619,44628,0],[44627,44626,44625,0],[44625,45328,44627,0],[44618,44627,44630,0],[44622,44630,44619,0],[44619,44630,44628,0],[44628,44630,44627,0],[44624,44626,44601,0],[44562,44611,44577,0],[44640,44643,44641,0],[44643,44559,44641,0],[44641,44559,45376,0],[44560,45376,45397,0],[45397,45376,45377,0],[44600,44631,45203,0],[44600,45203,44632,0],[44633,44632,44634,0],[44633,44634,45363,0],[44600,44632,45328,0],[44554,45373,44555,0],[44635,45219,44552,0],[45367,44552,44551,0],[44551,44552,45219,0],[44636,44555,45218,0],[45218,44555,44557,0],[45219,44635,44636,0],[44635,44554,44636,0],[44550,45221,44549,0],[44549,45217,44638,0],[44638,45217,44637,0],[44638,44637,45374,0],[44638,45374,44644,0],[44645,44547,44646,0],[44646,44639,44645,0],[44645,44639,44640,0],[44645,44640,44574,0],[44574,44640,44575,0],[44575,44640,44641,0],[44575,44641,44642,0],[44642,44560,44573,0],[44561,44573,44560,0],[44640,44639,44643,0],[44643,44639,44646,0],[44643,44646,44644,0],[44644,44646,44638,0],[45374,44643,44644,0],[44574,44546,44645,0],[44547,44645,44546,0],[44638,44646,44549,0],[44549,44646,44547,0],[44647,44134,44138,0],[44647,44138,44761,0],[44133,44138,44134,0],[44544,44543,44545,0],[44545,44543,44648,0],[44545,44648,44649,0],[44137,44135,44650,0],[44137,44650,44652,0],[44652,44650,44651,0],[44653,44652,44656,0],[44653,44656,44706,0],[44654,44706,44656,0],[44654,44656,44655,0],[44661,44657,44660,0],[44660,44657,44658,0],[44664,44658,44659,0],[44541,44659,44658,0],[44658,44664,44660,0],[44649,44650,44134,0],[44686,44662,45152,0],[44663,44662,45296,0],[44663,45296,44259,0],[44663,44259,44659,0],[44659,44259,44664,0],[44665,44258,44237,0],[44258,44665,44666,0],[44666,44665,44660,0],[44660,44664,44666,0],[44258,44666,44239,0],[44239,44666,44259,0],[44660,44665,45109,0],[44660,45109,44661,0],[44240,44239,44667,0],[44240,44667,44242,0],[44667,44260,44668,0],[44680,44668,44669,0],[44669,44668,44685,0],[44669,44685,45183,0],[44669,45183,45214,0],[45214,45183,44670,0],[44670,45183,45189,0],[45215,44670,44671,0],[45215,44671,44672,0],[44671,45191,44673,0],[44671,44673,44672,0],[44672,44673,44674,0],[44674,44673,44675,0],[44674,44675,45300,0],[44676,45300,44145,0],[44684,44242,44679,0],[44679,44242,44667,0],[44679,44667,44678,0],[44678,44667,44668,0],[44669,45214,44680,0],[44678,44680,44681,0],[44678,44681,44682,0],[44682,44681,44683,0],[44682,44683,44676,0],[44676,44683,45300,0],[44674,45300,44683,0],[44681,44680,45214,0],[44674,44683,44672,0],[44668,44680,44678,0],[44676,44146,44677,0],[44677,45182,44682,0],[44678,44682,45182,0],[44678,45182,44679,0],[44243,44684,44244,0],[44682,44676,44677,0],[44687,44693,44688,0],[44688,44693,44689,0],[44690,44691,44551,0],[44691,44689,45364,0],[45364,44689,44511,0],[44687,44261,44692,0],[44692,44696,44693,0],[44693,44687,44692,0],[44694,44517,44695,0],[44693,44696,44510,0],[44693,44510,44689,0],[44695,44696,44694,0],[44694,44696,44692,0],[44695,44697,44696,0],[44696,44697,44510,0],[44689,44510,44511,0],[44509,44695,44517,0],[44685,44668,44260,0],[45109,44665,44236,0],[44699,44698,45100,0],[44702,45106,44700,0],[44702,44700,44234,0],[44234,44700,44232,0],[44232,44233,44234,0],[44700,45106,44701,0],[44231,44701,45179,0],[45179,44701,44736,0],[44736,45100,45099,0],[44737,45099,45098,0],[44197,45098,44196,0],[44195,45103,44238,0],[44238,45097,44195,0],[44700,44701,44232,0],[44232,44701,44231,0],[45106,44702,44699,0],[44699,44236,44698,0],[44699,45100,45106,0],[44704,44702,44703,0],[44704,44703,44705,0],[45124,44705,45166,0],[45124,45166,45108,0],[45108,45166,44707,0],[45108,44707,44706,0],[45108,44706,44654,0],[45166,44705,45163,0],[45166,45163,44708,0],[44708,45163,44709,0],[44708,44709,44141,0],[44706,44707,44653,0],[44707,44137,44653,0],[44653,44137,44652,0],[44705,44703,44710,0],[45165,44726,44712,0],[45149,44713,44130,0],[44130,44713,44714,0],[45148,44714,44730,0],[45148,44730,44715,0],[44719,44729,44721,0],[44721,44729,44716,0],[44716,44717,44213,0],[44213,44717,45180,0],[44718,45130,44722,0],[44718,44722,44721,0],[44724,44720,44126,0],[44126,44720,44723,0],[44723,44721,44722,0],[44719,44721,44720,0],[44721,44723,44720,0],[45130,45044,44722,0],[44722,45044,44723,0],[44715,44724,45148,0],[44714,45148,44725,0],[44714,44725,44130,0],[44720,44724,44715,0],[44720,44715,44719,0],[44721,44716,44718,0],[44713,44712,44730,0],[44730,44712,44731,0],[44731,44712,44726,0],[44727,44726,45165,0],[44727,45165,44711,0],[44727,44711,44235,0],[44235,44711,44710,0],[44232,44735,44728,0],[44733,44728,44734,0],[44734,44717,44732,0],[44732,44717,44716,0],[44732,44716,44729,0],[44730,44729,44715,0],[44729,44730,44731,0],[44729,44731,44733,0],[44733,44734,44732,0],[44733,44731,44726,0],[44715,44729,44719,0],[44734,44735,44227,0],[44734,44728,44735,0],[44229,44230,45178,0],[44737,44736,45099,0],[44736,44737,45178,0],[44197,44737,45098,0],[44200,44737,44197,0],[44735,44226,44227,0],[44210,44224,44209,0],[44229,45178,44201,0],[44201,45178,44739,0],[44201,44738,44203,0],[44741,44739,44742,0],[44743,44199,44198,0],[44200,44199,44742,0],[44200,44742,44739,0],[44200,44739,45178,0],[44739,44741,44201,0],[44201,44741,44738,0],[44741,44742,44753,0],[44753,44742,44754,0],[44754,44742,44743,0],[44744,44195,45095,0],[45095,44195,45097,0],[44207,44202,44203,0],[44203,44202,44201,0],[45222,44193,44194,0],[44194,44193,45097,0],[44191,44154,44745,0],[44746,44190,44747,0],[44747,44189,8461,0],[44189,43900,8461,0],[8461,43900,8460,0],[44747,8461,44748,0],[44949,44952,44749,0],[44749,44952,44750,0],[45092,44750,44751,0],[45092,44751,44752,0],[44738,44752,44954,0],[44738,44954,44203,0],[44752,44753,45092,0],[45092,44753,44754,0],[44741,44753,44738,0],[44738,44753,44752,0],[44191,44745,44755,0],[44755,44745,44949,0],[44745,44746,44949,0],[44949,44746,44748,0],[45092,44757,44750,0],[44750,44757,44749,0],[44749,44757,44758,0],[44749,44758,44755,0],[44749,44755,44949,0],[44747,44748,44746,0],[44189,44747,44187,0],[44189,44187,44188,0],[44190,44746,44745,0],[44190,44745,44154,0],[44190,44760,44747,0],[44760,44187,44747,0],[44760,44155,44759,0],[44155,44760,44154,0],[44154,44760,44190,0],[44759,44187,44760,0],[44152,45177,44156,0],[44155,44153,44156,0],[44152,44156,44153,0],[44156,45177,44157,0],[44144,45301,44140,0],[44140,45301,44764,0],[44764,45301,44675,0],[44139,44763,44761,0],[45398,44762,44763,0],[44761,44546,44647,0],[44547,44546,44762,0],[44762,44546,44761,0],[44763,44139,44764,0],[44139,44140,44764,0],[44131,44144,45303,0],[44124,43913,44765,0],[44170,44765,43912,0],[44124,44765,45131,0],[44124,45131,44125,0],[43913,43914,44766,0],[44767,44766,45046,0],[44767,45046,44768,0],[44768,45022,44770,0],[44768,44770,44767,0],[44767,44770,44041,0],[44767,44041,44771,0],[44771,44041,44043,0],[44782,43964,44773,0],[44782,44773,44772,0],[44773,43927,44774,0],[44780,44774,44775,0],[44779,44775,44776,0],[44779,44776,44777,0],[44777,44778,44056,0],[44780,44037,44919,0],[44780,44775,44037,0],[44037,44775,44779,0],[44037,44779,44038,0],[44038,44779,44056,0],[44781,44777,44776,0],[44774,44772,44773,0],[43964,44782,44769,0],[44769,44782,45022,0],[44784,44783,44785,0],[43911,44785,44054,0],[43911,44054,43910,0],[43911,44765,44785,0],[44785,44765,44784,0],[44784,43913,44783,0],[44783,44766,44771,0],[44771,44766,44767,0],[44783,43913,44766,0],[44785,44783,45008,0],[45008,44783,44043,0],[44043,44783,44771,0],[45008,44053,44785,0],[44785,44053,44054,0],[43896,44834,43898,0],[43895,44786,44808,0],[44808,44800,44787,0],[44808,44787,44809,0],[44809,44787,44788,0],[44788,44801,44813,0],[44813,44801,44818,0],[44790,44789,44791,0],[44792,44791,44793,0],[44794,44793,44798,0],[44794,44798,44795,0],[44796,44932,44929,0],[45005,44797,44798,0],[45003,44798,44793,0],[45003,44793,44791,0],[44798,44797,44795,0],[44795,44797,44799,0],[44932,44796,44799,0],[44932,44799,45004,0],[45004,44799,44797,0],[44786,44800,44808,0],[44801,44787,44802,0],[44801,44802,45139,0],[45139,44802,45138,0],[44803,45138,44804,0],[44803,44804,44047,0],[44802,44805,44806,0],[44806,44805,44807,0],[44806,44807,44048,0],[44048,44807,43906,0],[44802,44806,45138,0],[45138,44806,44804,0],[44804,44806,44047,0],[43903,44807,44800,0],[44807,44805,44800,0],[44800,44805,44802,0],[44800,44802,44787,0],[44787,44801,44788,0],[44808,44809,44810,0],[44810,44809,44816,0],[44810,44816,44811,0],[44809,44788,44816,0],[44816,44788,44813,0],[44816,44813,44814,0],[43450,44815,43449,0],[43450,44817,44815,0],[44815,44817,44811,0],[44814,44811,44816,0],[44812,44811,43452,0],[43452,44811,44817,0],[44813,44818,44814,0],[44814,44818,44790,0],[44814,44790,44819,0],[44819,44790,44820,0],[44819,44820,44821,0],[44821,44820,43446,0],[43446,44820,44792,0],[43446,44792,44822,0],[44823,44940,44903,0],[44823,44903,44902,0],[44902,44941,44823,0],[44823,43444,44824,0],[44823,44824,44940,0],[44822,44824,43445,0],[43445,44824,43444,0],[44821,43447,43449,0],[44821,43449,44819,0],[44819,43449,44815,0],[44819,44815,44814,0],[44790,44791,44820,0],[44820,44791,44792,0],[44792,44825,44822,0],[44790,44818,44789,0],[44826,44810,44811,0],[44811,44812,44826,0],[44826,44812,44827,0],[44828,43878,44831,0],[44831,43878,44829,0],[44810,43894,44808,0],[43896,44830,44834,0],[43897,8490,8459,0],[43897,8459,43899,0],[43899,43898,43897,0],[44831,44829,44835,0],[44835,44829,44833,0],[8491,44835,44833,0],[44835,44834,44831,0],[44831,44834,44830,0],[44835,43897,44834,0],[43869,43868,44836,0],[44836,8453,8450,0],[43867,43868,43842,0],[43842,43868,43889,0],[43888,43887,44837,0],[44837,43887,44838,0],[44837,44838,43880,0],[43880,44838,43886,0],[8433,44946,43841,0],[43880,44945,44837,0],[44840,8415,44841,0],[44841,8415,44839,0],[8417,44842,8416,0],[8416,44842,44843,0],[8416,44843,44841,0],[44840,44844,8415,0],[44844,10164,8415,0],[44842,44845,44843,0],[44843,44845,8583,0],[44845,44842,45434,0],[45434,44842,8417,0],[44845,8586,8582,0],[44846,8587,9875,0],[9875,8587,9873,0],[9875,9873,9874,0],[44846,9875,9876,0],[44846,9876,44847,0],[8581,44846,44847,0],[44848,44847,9877,0],[9877,9882,44848,0],[9877,44847,9876,0],[9879,9878,45317,0],[45317,45318,9880,0],[45318,9886,9880,0],[9880,9886,8410,0],[9882,44850,9883,0],[9882,9883,44851,0],[44851,44855,44853,0],[44853,44855,44852,0],[44853,44852,45438,0],[45438,44852,8411,0],[44854,45414,45413,0],[44854,45413,8411,0],[8411,44852,44854,0],[44855,44851,9884,0],[9884,44851,9883,0],[44855,9881,44854,0],[44855,44854,44852,0],[8519,43387,44856,0],[8522,8517,44857,0],[8522,44857,44858,0],[44858,44857,44859,0],[44859,43391,44871,0],[44871,43391,43759,0],[44859,44857,43386,0],[44858,44860,44861,0],[44861,44860,44862,0],[8503,44862,44863,0],[44864,44865,8502,0],[8502,44865,44866,0],[8502,44866,43817,0],[44866,44867,43828,0],[44867,44865,44948,0],[44948,44865,44868,0],[44868,44864,44869,0],[45314,44871,43759,0],[44864,44863,44869,0],[44869,44863,44862,0],[44869,44862,44870,0],[44870,44862,44871,0],[44862,44860,44871,0],[44871,44860,44859,0],[44859,44860,44858,0],[44864,44868,44865,0],[44866,44865,44867,0],[44862,8503,44861,0],[8503,8516,44861,0],[44861,8516,44858,0],[44872,44873,9882,0],[9882,44873,44848,0],[44873,44872,8584,0],[8513,8512,8514,0],[8514,8512,44874,0],[8514,44874,44876,0],[8521,44875,44878,0],[8521,44874,44875,0],[8518,44875,10159,0],[10159,44875,44874,0],[8521,44876,44874,0],[8515,44876,8521,0],[45439,44877,10160,0],[45439,10160,10163,0],[10160,10159,10163,0],[44878,8522,44880,0],[8520,44878,44879,0],[44879,44878,44880,0],[44879,44880,8516,0],[8427,8536,44881,0],[8427,44881,8429,0],[44881,8541,8430,0],[8430,8541,8532,0],[8430,8429,44881,0],[10152,43796,44882,0],[44882,10151,44884,0],[44884,10151,44883,0],[44884,44883,10149,0],[44884,10149,10148,0],[44884,10148,44885,0],[44884,44885,44882,0],[44882,44885,10152,0],[10152,44885,43794,0],[10153,44885,10146,0],[10146,44885,10148,0],[44887,44886,44889,0],[43882,44887,44889,0],[43882,44889,44888,0],[8429,44888,43459,0],[44888,44889,43459,0],[43459,44889,44886,0],[8429,8431,44888,0],[44888,8431,44890,0],[8432,43841,44891,0],[44891,44890,8431,0],[44888,44890,43882,0],[43444,44892,44893,0],[43496,43500,43495,0],[44895,44899,43488,0],[43486,43488,44899,0],[43501,44893,44894,0],[44894,44893,44892,0],[44896,43464,44897,0],[44896,44897,44898,0],[43455,44898,43456,0],[43455,43462,44898,0],[44898,43462,44896,0],[44898,44897,43805,0],[43490,44900,43475,0],[43475,44900,43476,0],[43476,44900,44933,0],[43478,43473,43475,0],[43475,43473,43490,0],[44796,44903,44939,0],[44799,44939,44795,0],[44799,44796,44939,0],[44901,44904,44933,0],[44933,44904,44928,0],[44933,44928,44905,0],[44906,44905,44909,0],[44906,44909,44064,0],[44906,44064,44938,0],[44938,44064,44065,0],[44907,44908,44928,0],[44928,44908,44909,0],[44062,44909,44910,0],[45136,44912,44926,0],[44926,44912,44913,0],[44913,44803,44047,0],[45136,44926,44911,0],[44920,44914,44915,0],[44921,44920,44917,0],[44918,44917,44925,0],[44918,44925,44919,0],[44919,44069,44918,0],[45031,44921,44918,0],[44921,44931,44920,0],[44931,44914,44920,0],[44931,44921,44910,0],[44921,44917,44918,0],[44917,44915,44923,0],[44923,44915,44042,0],[44042,44915,44916,0],[44042,44040,44923,0],[44923,44040,44039,0],[44923,44039,44924,0],[44924,44925,44923,0],[44923,44925,44917,0],[44920,44915,44917,0],[44046,44927,44926,0],[44913,44047,44926,0],[44926,44047,44046,0],[44046,44044,44927,0],[44927,44044,44916,0],[44916,44915,44927,0],[44911,44926,44927,0],[44911,44927,44914,0],[44914,44927,44915,0],[44062,44064,44909,0],[44904,44907,44928,0],[44909,44905,44928,0],[44907,44904,44796,0],[44907,44796,44929,0],[44907,44929,44908,0],[44908,44929,44930,0],[44908,44930,44909,0],[44909,44930,44931,0],[44909,44931,44910,0],[44929,44932,44914,0],[44914,44932,44911,0],[44929,44914,44930,0],[44931,44930,44914,0],[43476,44933,44905,0],[43476,44905,44934,0],[44934,44905,44906,0],[45053,44934,44935,0],[44935,44067,45051,0],[44936,45051,44067,0],[44906,44938,44934,0],[44934,44938,44935,0],[44938,44067,44935,0],[44901,44902,44904,0],[44904,44902,44903,0],[44904,44903,44796,0],[44792,44793,44825,0],[44825,44793,44794,0],[44939,44794,44795,0],[44825,44794,44824,0],[44824,44794,44940,0],[44824,44822,44825,0],[44794,44939,44940,0],[44943,44941,44942,0],[44943,44942,44899,0],[44894,44943,43502,0],[43502,44943,44895,0],[44895,44943,44899,0],[44943,44894,44941,0],[44941,44894,44892,0],[43808,43806,44944,0],[44944,43806,44897,0],[44897,43464,44944,0],[43841,44946,44945,0],[44946,44837,44945,0],[44945,43881,44890,0],[44890,44891,44945,0],[43882,44890,43881,0],[44946,8433,43889,0],[43889,8433,43842,0],[43889,43888,44946,0],[44946,43888,44837,0],[8554,8551,8553,0],[8551,8554,8555,0],[8555,8499,8551,0],[44868,44869,45312,0],[44868,45312,45308,0],[45308,45312,45313,0],[44947,45309,43772,0],[43772,45309,43759,0],[44184,44177,44178,0],[44183,44178,44182,0],[44186,44182,43902,0],[43902,44182,44050,0],[44050,44182,43904,0],[44950,44748,8461,0],[8465,45134,8464,0],[44950,44951,44748,0],[44748,44951,44949,0],[44949,44951,44952,0],[44953,44751,8466,0],[44953,8466,8468,0],[8465,8466,45134,0],[44751,44953,44954,0],[44751,44954,44752,0],[44203,44954,44205,0],[44205,44954,44206,0],[44206,44954,8468,0],[44953,8468,44954,0],[44951,45134,44952,0],[44952,45134,44955,0],[44952,44955,44750,0],[44750,44955,44751,0],[44955,45134,8466,0],[44955,8466,44751,0],[44950,8463,44951,0],[44082,44078,44956,0],[44956,44078,44027,0],[44025,44031,44957,0],[44030,44025,44957,0],[43951,45141,44958,0],[44958,45141,45143,0],[45143,44959,45017,0],[45412,45018,44960,0],[45412,44960,44961,0],[44003,44966,44962,0],[45143,45017,44958,0],[44958,45412,44964,0],[44964,45412,44961,0],[44961,44960,45411,0],[44961,45411,44963,0],[44965,43951,44958,0],[43950,44965,44966,0],[44965,44964,44962,0],[44966,44965,44962,0],[44962,44964,44963,0],[44961,44963,44964,0],[8442,43823,44967,0],[44967,43823,44968,0],[44968,43823,44969,0],[44968,44969,44983,0],[44968,44983,44970,0],[44970,44972,45304,0],[45304,44972,44971,0],[44988,44972,44973,0],[44982,44973,44974,0],[44974,44984,44975,0],[43821,44975,44969,0],[44980,44974,44975,0],[44980,44975,43821,0],[44974,44978,44977,0],[43441,44977,44976,0],[44976,44977,43832,0],[44977,44978,43832,0],[43832,44978,44979,0],[44979,44978,44980,0],[44979,44980,43831,0],[43778,43831,44981,0],[43778,44981,43820,0],[44981,43831,43821,0],[43831,44980,43821,0],[44977,43441,44982,0],[44977,44982,44974,0],[44972,44970,44983,0],[44972,44983,44973,0],[44973,44983,44984,0],[44984,44974,44973,0],[44967,44968,43824,0],[43824,44968,44985,0],[44985,44968,44970,0],[43824,44985,43826,0],[43826,44985,45049,0],[43826,45049,44986,0],[44986,45049,44987,0],[44987,8494,44986,0],[8494,8493,44986,0],[44986,8493,43826,0],[43481,44973,43442,0],[43442,44973,44982,0],[43442,44982,43441,0],[44973,43481,44988,0],[44972,44988,44971,0],[44971,44988,43443,0],[43838,44989,44990,0],[43838,44990,43837,0],[43837,44990,43836,0],[43836,44990,44991,0],[44991,44990,43350,0],[43350,44989,43352,0],[43352,44989,44994,0],[43836,44991,43835,0],[43835,44991,44992,0],[43348,44995,44992,0],[44992,44995,44993,0],[44992,44993,43835,0],[43835,44993,43438,0],[43438,43834,43835,0],[43438,44993,43437,0],[43437,44993,43436,0],[43349,44992,44991,0],[43349,44991,43421,0],[44989,43783,44994,0],[43782,44994,43783,0],[43783,44989,43779,0],[44989,43350,44990,0],[44995,43347,43436,0],[44995,43436,44993,0],[43860,43857,44996,0],[8496,8495,44997,0],[8496,44997,44998,0],[8496,44998,43848,0],[44072,44032,44031,0],[44032,44072,45033,0],[44033,45033,45032,0],[44033,45032,45030,0],[44033,45000,44034,0],[8457,8458,45001,0],[44791,44789,45002,0],[45003,44791,45002,0],[44798,45003,45006,0],[44798,45006,45005,0],[44797,45005,45135,0],[44797,45135,45004,0],[45004,45135,45136,0],[45004,45136,44932,0],[45007,45002,45137,0],[45137,45002,44789,0],[45003,45002,45006,0],[45002,45007,45006,0],[44932,45136,44911,0],[44916,44044,45008,0],[44043,44042,45008,0],[45008,44042,44916,0],[45008,44044,44052,0],[45009,45010,45012,0],[45012,45010,45013,0],[45012,45013,44057,0],[44057,44036,45012,0],[44057,45013,45146,0],[45013,45010,43972,0],[43972,45010,43930,0],[45011,43930,45009,0],[45011,45009,44781,0],[43930,45010,45009,0],[45013,43972,43973,0],[45013,43973,45014,0],[45014,43973,43975,0],[43975,43974,45015,0],[45016,45015,43946,0],[45013,45014,45146,0],[45146,45014,45016,0],[45015,45016,43975,0],[43975,45016,45014,0],[43944,43934,45142,0],[45142,43934,44959,0],[44959,43934,45409,0],[45017,45409,45084,0],[45017,45084,45018,0],[45017,44959,45409,0],[45023,45019,45020,0],[45023,45020,45011,0],[45019,43968,45021,0],[43930,45020,45021,0],[45021,45020,45019,0],[43925,44769,45045,0],[45045,44769,45022,0],[45045,45022,44768,0],[45045,44768,45046,0],[45023,44010,45019,0],[45019,44010,45132,0],[45024,44001,45027,0],[43979,45025,43978,0],[43996,43979,43997,0],[43996,43981,45026,0],[45026,45025,43996,0],[45027,45028,45026,0],[45026,45028,45025,0],[45029,43999,45028,0],[45028,43999,45025,0],[45025,43999,43978,0],[45028,45027,45029,0],[45029,45027,44000,0],[44922,45031,44069,0],[44069,45031,44918,0],[44069,45030,44922,0],[45031,44922,44910,0],[44910,44921,45031,0],[44061,44922,45030,0],[45030,45032,44076,0],[44074,45032,45033,0],[44074,45033,44072,0],[43932,43931,45034,0],[43946,45034,43931,0],[45035,43960,45036,0],[45035,45036,43924,0],[43924,45036,45037,0],[45037,45036,43962,0],[43962,45036,43961,0],[43961,45036,43960,0],[44205,45039,44204,0],[45038,43919,44119,0],[45038,44119,45040,0],[45038,45040,44208,0],[44209,44208,45181,0],[45181,44208,45041,0],[44208,45040,45041,0],[43919,45038,45042,0],[45042,45038,44208,0],[44208,44209,45042,0],[43919,45042,45039,0],[45043,44205,44206,0],[45039,44205,45043,0],[45043,44206,43920,0],[45043,43920,45039,0],[45039,43920,43919,0],[44204,45039,45042,0],[44227,44211,44734,0],[44734,44211,44717,0],[44723,45044,44125,0],[45044,44214,44221,0],[44221,44214,44215,0],[43914,43915,44103,0],[45045,44103,44099,0],[45045,44099,44098,0],[45045,44098,43925,0],[45045,45046,44103,0],[44099,44102,44100,0],[44102,44099,44103,0],[43914,44103,45046,0],[43914,45046,44766,0],[45035,43923,43959,0],[43959,43923,44088,0],[44088,43923,43922,0],[44088,43922,44087,0],[44087,43922,45047,0],[44087,45047,45048,0],[45051,44936,45050,0],[45050,44987,45049,0],[44987,45050,44937,0],[44937,45050,44936,0],[45051,45050,44971,0],[45050,45304,44971,0],[44935,45051,44971,0],[44935,44971,45052,0],[43443,45052,44971,0],[43443,45053,45052,0],[45052,45053,44935,0],[44934,45053,43479,0],[8471,45054,8470,0],[8487,8488,8472,0],[8472,8488,45086,0],[45086,8489,45054,0],[44029,44017,8482,0],[8482,44017,45056,0],[8482,45056,45055,0],[43952,44004,44005,0],[43952,44005,43953,0],[43953,44005,44006,0],[43953,44006,43956,0],[44958,45017,45412,0],[45412,45017,45018,0],[45018,45077,44960,0],[45411,44960,45057,0],[45057,45063,45058,0],[45085,45060,43938,0],[43938,45060,45061,0],[45061,45060,45062,0],[45062,45057,45077,0],[45057,45062,45063,0],[45063,45065,45064,0],[45064,45085,45066,0],[45085,45064,45060,0],[45060,45064,45065,0],[45060,45065,45062,0],[45065,45063,45062,0],[45058,45063,45067,0],[45058,45067,45059,0],[45079,45066,43939,0],[45066,45085,43939,0],[43939,45085,43938,0],[43940,45067,45066,0],[45066,45067,45064,0],[45075,45076,45068,0],[45075,45068,45069,0],[45069,43941,45070,0],[45070,43941,45071,0],[45070,45071,45073,0],[45073,45071,45072,0],[45072,44003,45073,0],[45078,45058,45075,0],[45058,45059,45075,0],[45075,45059,45076,0],[45076,45059,43940,0],[45070,45078,45075,0],[45078,45070,45074,0],[45074,45070,45073,0],[45069,45070,45075,0],[44003,44962,45073,0],[45073,44962,45074,0],[44962,45410,45074,0],[45071,43941,43947,0],[43947,43941,43942,0],[44963,45411,45410,0],[44963,45410,44962,0],[44960,45077,45057,0],[45018,45084,45077,0],[45077,45084,45061,0],[45062,45077,45061,0],[45057,45058,45411,0],[45411,45058,45078,0],[45064,45067,45063,0],[45067,43940,45059,0],[43939,43937,45079,0],[45079,43937,45080,0],[45080,43937,43935,0],[43933,43945,43934,0],[43945,43935,43934,0],[43933,45081,43945,0],[43940,45082,45068,0],[43940,45079,45082,0],[45082,45080,43945,0],[45082,43945,45081,0],[45081,43933,43944,0],[43944,43942,45081,0],[45083,45081,43941,0],[45082,45081,45083,0],[43941,45081,43942,0],[45084,45409,43936,0],[43936,43938,45084,0],[45084,43938,45061,0],[45083,45068,45082,0],[8473,8476,8465,0],[45054,8471,45086,0],[8471,45087,45086,0],[45089,44786,43896,0],[45089,43896,43898,0],[45089,43898,45088,0],[45088,43898,43900,0],[44800,44786,43903,0],[44786,45089,43903,0],[43903,45089,44050,0],[44176,45090,44180,0],[44176,44180,43905,0],[44181,44180,43908,0],[43908,44180,44160,0],[44178,44176,43905,0],[45090,44160,44180,0],[45138,44803,45007,0],[45007,44803,45091,0],[45006,45091,45005,0],[45006,45007,45091,0],[44743,44742,44199,0],[44757,45092,44754,0],[44755,44758,44191,0],[44758,44757,45096,0],[45096,44757,44754,0],[44191,44758,45094,0],[45093,44192,45094,0],[45094,44192,44756,0],[45094,44756,44191,0],[44756,44192,44153,0],[44758,45096,45094,0],[45094,45095,45093,0],[45093,45095,44193,0],[45096,44754,44743,0],[45096,44743,44744,0],[45094,45096,45095,0],[45096,44744,45095,0],[45095,45097,44193,0],[44744,44743,44740,0],[44740,44743,44198,0],[44740,44195,44744,0],[45098,45099,45100,0],[45098,45100,45102,0],[45105,45101,44236,0],[44236,45101,44698,0],[44698,45101,45102,0],[44698,45102,45100,0],[45098,45102,44196,0],[44196,45102,45103,0],[45103,45101,45104,0],[44196,45103,44195,0],[44238,45103,45104,0],[45103,45102,45101,0],[45104,45101,45105,0],[44237,45105,44665,0],[44665,45105,44236,0],[45106,45100,44736,0],[45106,44736,44701,0],[45107,45108,45109,0],[45109,45108,44654,0],[45109,44654,44661,0],[44661,44654,44655,0],[45109,44236,45107,0],[44704,45107,44236,0],[44655,45114,44661,0],[44661,45114,45110,0],[44661,45110,44657,0],[44540,45110,45111,0],[44540,45111,44539,0],[44539,45111,45112,0],[45112,45111,45113,0],[45121,45113,44651,0],[44652,44651,45114,0],[45114,44655,44656,0],[45114,44656,44652,0],[44651,45113,45114,0],[45122,45123,45115,0],[45115,45118,45116,0],[44269,45116,45117,0],[45118,45117,45116,0],[45118,45123,45119,0],[44649,45120,44650,0],[44650,45120,45121,0],[44650,45121,44651,0],[45122,45121,45119,0],[45115,45123,45118,0],[44542,44269,45223,0],[45223,44570,44542,0],[44269,45117,45223,0],[45115,44537,45112,0],[45115,45112,45122,0],[45112,45113,45122,0],[45122,45113,45121,0],[45113,45111,45114,0],[45114,45111,45110,0],[44540,44658,45110,0],[45124,45108,45107,0],[45124,45107,44704,0],[44704,44705,45124,0],[45048,45125,45126,0],[45126,45125,8470,0],[45126,8470,45054,0],[45126,45054,44016,0],[45048,45047,45125,0],[44194,45104,45127,0],[44194,45127,44241,0],[44241,45127,44240,0],[44091,44122,45128,0],[44095,44094,45129,0],[44217,44109,44108,0],[44217,44095,44109,0],[44109,44095,45129,0],[44218,44214,45130,0],[44218,45130,44718,0],[44733,44726,44233,0],[44726,44727,44233,0],[44233,44727,44234,0],[44703,44235,44710,0],[44125,45131,44170,0],[44170,45131,44765,0],[44090,45128,44114,0],[44090,44114,44089,0],[45132,44009,45133,0],[45132,45133,45019,0],[8463,8464,45134,0],[45134,44951,8463,0],[44117,44105,44114,0],[44073,44997,44075,0],[44075,44997,8495,0],[45135,45091,44912,0],[44913,44912,44803,0],[45136,45135,44912,0],[45007,45137,45138,0],[45138,45137,45140,0],[45138,45140,45139,0],[45139,45140,44801,0],[45137,44789,45140,0],[45140,44789,44818,0],[45140,44818,44801,0],[43927,44776,44775,0],[43927,44775,44774,0],[45141,44022,45142,0],[44959,45143,45142,0],[43985,43993,45144,0],[43931,45016,43946,0],[43931,45145,45016,0],[45016,45145,45146,0],[45147,43926,43925,0],[43925,45037,45147,0],[45147,45037,43962,0],[44105,44089,44114,0],[44221,44124,45044,0],[44724,44127,45148,0],[45148,44127,44725,0],[45149,44130,45161,0],[44173,44172,45150,0],[45150,44172,45151,0],[45150,44147,44146,0],[44146,44174,45150,0],[45150,44174,44173,0],[44147,45150,44148,0],[45150,45151,44148,0],[44148,45151,44165,0],[44165,44150,44149,0],[44165,44149,44148,0],[44659,45158,44663,0],[45158,45157,44662,0],[44662,45157,45152,0],[45152,45156,44261,0],[45153,44264,45155,0],[45155,44263,45154,0],[45154,44263,44262,0],[45153,45155,45156,0],[45156,45155,45154,0],[45156,45154,45299,0],[45156,45152,45157,0],[45156,45157,45153,0],[45153,45157,45158,0],[45153,45158,44265,0],[44662,44663,45158,0],[45159,44247,44246,0],[45159,44246,44245,0],[45159,44245,44146,0],[44146,44147,45159,0],[44148,45159,44147,0],[45149,45161,45160,0],[45160,45161,45162,0],[45162,45161,44141,0],[45162,44709,45160,0],[45160,45163,44710,0],[45162,44141,44709,0],[45160,44709,45163,0],[44710,45163,44705,0],[45165,45164,44711,0],[45165,44712,45164,0],[45164,44712,45149,0],[45164,45149,45160,0],[45164,45160,44711,0],[44707,45166,44136,0],[44136,45166,44708,0],[45302,44708,44131,0],[44141,44131,44708,0],[44648,44543,45119,0],[45119,44543,45118,0],[45119,45120,44648,0],[44648,45120,44649,0],[44385,44278,44384,0],[44268,44498,45167,0],[44268,45167,44267,0],[45167,44499,44267,0],[44386,44501,44385,0],[44385,44501,44498,0],[44498,44501,45167,0],[45167,44501,44499,0],[45171,44588,45169,0],[45169,44588,44565,0],[45169,44565,45168,0],[45168,44565,44581,0],[45168,44581,45170,0],[45171,45169,44528,0],[45171,44528,45172,0],[45172,44527,44566,0],[44274,44566,44527,0],[44415,45176,44289,0],[45176,44415,44416,0],[45175,45379,44417,0],[44418,44448,44417,0],[44417,44448,45175,0],[44416,44417,45176,0],[45177,44152,44151,0],[44711,45160,44710,0],[44230,45179,45178,0],[44736,45178,45179,0],[45180,44717,44211,0],[44684,44679,44244,0],[44679,45182,44244,0],[44244,45182,44245,0],[44245,45182,44146,0],[44146,45182,44677,0],[45296,44662,44260,0],[44685,45194,45183,0],[45183,45194,45193,0],[45183,45193,45184,0],[45184,45193,45185,0],[45184,45185,45186,0],[45186,45185,45192,0],[45188,45187,45190,0],[45398,45216,44548,0],[45189,45186,45188,0],[45188,45186,45187,0],[45188,45190,44671,0],[44671,45190,45191,0],[44675,44673,44764,0],[44764,44673,45191,0],[45191,45190,45398,0],[44764,45191,44763,0],[45189,45188,44670,0],[44670,45188,44671,0],[45186,45189,45184,0],[45184,45189,45183,0],[44690,45322,44691,0],[45192,45185,45298,0],[45298,44691,45322,0],[45298,45322,45192,0],[45298,45185,44688,0],[45185,45193,44688,0],[44688,45193,44687,0],[44687,45193,44261,0],[44261,45193,45194,0],[44261,45194,44686,0],[44686,45194,44685,0],[45365,44515,44512,0],[45365,44512,45195,0],[45195,44512,45196,0],[45199,45204,45207,0],[44634,45199,44316,0],[44316,45199,45198,0],[45198,45199,45208,0],[44316,45363,44634,0],[44634,45200,45205,0],[45205,45200,45201,0],[45202,45201,45200,0],[45202,45200,44632,0],[44634,44632,45200,0],[45202,44632,45203,0],[44634,45205,45199,0],[45199,45205,45204,0],[45207,45204,45206,0],[45207,45206,45212,0],[45209,45212,45197,0],[45207,45212,45208,0],[45212,45209,45208,0],[45208,45199,45207,0],[45205,44553,45204,0],[45204,44553,45210,0],[45204,45210,45211,0],[45204,45211,45206,0],[45367,45211,45210,0],[45367,45210,44552,0],[44552,45210,44553,0],[45206,45211,45366,0],[45206,45366,45212,0],[45205,45201,44553,0],[44317,45213,44313,0],[44313,44314,45350,0],[44313,45350,44317,0],[45198,45208,45213,0],[45197,45195,45196,0],[45215,45214,44670,0],[44681,45215,44683,0],[44683,45215,44672,0],[45398,45190,45187,0],[45216,45187,44550,0],[45187,45216,45398,0],[44637,45217,45218,0],[44636,45220,45219,0],[44551,45219,44690,0],[44690,45219,45220,0],[44690,45220,45221,0],[45220,45218,45221,0],[45218,45217,45221,0],[45221,45217,44549,0],[45222,44194,44241,0],[44241,44255,45222,0],[44541,44265,44659,0],[44659,44265,45158,0],[45118,44543,45223,0],[45223,44543,44570,0],[45223,45117,45118,0],[44283,45225,45226,0],[44283,45226,44282,0],[44282,45226,44281,0],[44283,44526,45225,0],[45225,44526,45224,0],[45224,44527,44286,0],[45224,44286,45227,0],[45224,45227,45236,0],[45234,44405,44401,0],[45234,44401,45228,0],[44405,45234,45381,0],[44293,44294,45230,0],[45230,45231,45243,0],[45243,45231,45232,0],[45243,45232,44296,0],[44325,44296,45232,0],[44295,45231,44294,0],[45231,45230,44294,0],[45230,45233,45229,0],[44293,45229,44291,0],[44291,45229,45381,0],[45235,45381,45234,0],[45235,44444,44291,0],[45235,44291,45381,0],[45234,45228,45235,0],[45225,45224,45236,0],[45225,45236,45405,0],[45405,45238,45237,0],[45405,45239,45238,0],[45236,45239,45405,0],[45238,45239,45240,0],[45236,45240,45239,0],[45405,45226,45225,0],[45241,44402,45242,0],[45242,44402,45382,0],[45382,45229,45233,0],[45229,45382,45381,0],[44403,45244,44414,0],[44414,45244,45243,0],[45243,45244,45230,0],[45382,45233,44403,0],[44403,45233,45244,0],[45244,45233,45230,0],[45406,45237,45245,0],[44399,44376,45245,0],[44399,45245,45246,0],[45246,45238,45241,0],[45238,45246,45237,0],[45246,45245,45237,0],[44407,44406,44409,0],[44409,44406,44375,0],[45226,45405,45292,0],[45226,45292,45283,0],[45226,45283,44281,0],[45247,44397,44396,0],[44396,44398,45247,0],[45253,44396,45248,0],[45248,44300,44301,0],[45248,44301,45253,0],[44396,45253,45249,0],[44396,45249,45251,0],[44395,45251,45250,0],[45251,44395,44396,0],[45253,44301,45252,0],[45250,45251,44379,0],[44380,45251,45249,0],[44380,45249,44381,0],[45252,45249,45253,0],[45255,45265,45256,0],[45256,45265,45268,0],[45256,45268,45257,0],[45257,45258,45260,0],[45260,45258,45259,0],[45260,45274,45257,0],[45295,45260,45259,0],[45255,45262,45265,0],[45255,45254,45262,0],[45262,45254,45261,0],[44303,45263,44302,0],[44302,45263,45261,0],[45261,45263,45262,0],[45262,45263,45264,0],[45295,45259,44500,0],[45258,45257,45266,0],[45266,45257,45268,0],[45266,45268,45267,0],[45267,45268,45269,0],[45267,45269,44522,0],[44522,45269,45270,0],[45270,45269,45264,0],[45264,45269,45262,0],[45262,45269,45265,0],[45265,45269,45268,0],[44305,44306,45273,0],[44305,45272,45271,0],[45271,45272,44507,0],[44305,45271,44303,0],[44303,45271,45263,0],[45263,45271,45270,0],[45263,45270,45264,0],[44507,45270,45271,0],[45249,45252,44381,0],[44381,45254,44393,0],[44393,45254,45256,0],[45274,45256,45257,0],[44393,45256,45274,0],[44393,45274,44382,0],[45274,45260,44383,0],[45260,45295,44383,0],[44381,45252,45254,0],[45254,45255,45256,0],[44300,45248,44397,0],[44514,45276,45275,0],[44508,44372,45276,0],[45276,44372,45275,0],[45279,45277,45280,0],[45277,44374,44335,0],[45278,45277,45279,0],[45278,45279,44370,0],[45280,44311,45279,0],[45281,45294,45284,0],[45281,45284,45282,0],[45281,45282,45283,0],[45283,45282,44281,0],[45289,44390,45294,0],[45294,44390,45284,0],[45284,44390,44388,0],[45284,44388,45285,0],[45285,44384,45286,0],[44384,44278,45286,0],[44384,45285,44387,0],[44384,44387,45287,0],[45287,44383,44386,0],[44387,45285,44388,0],[44389,44388,44390,0],[45284,45288,45282,0],[45282,45288,44280,0],[44280,45288,44279,0],[44279,45288,45286,0],[44279,45286,44278,0],[45286,45288,45285,0],[45285,45288,45284,0],[45292,45281,45283,0],[45291,45404,45293,0],[45293,45403,45289,0],[45289,45403,44378,0],[45292,45290,45291,0],[45291,45293,45292,0],[45292,45293,45281,0],[45281,45293,45294,0],[45289,45294,45293,0],[44501,44386,44500,0],[44500,44386,45295,0],[45295,44386,44383,0],[44259,44666,44664,0],[44260,44259,45296,0],[44502,45258,45297,0],[44502,45297,44523,0],[44523,45297,44518,0],[44692,44518,44694,0],[44694,44518,44517,0],[44518,44692,44523,0],[44517,44503,44504,0],[44689,45298,44688,0],[44689,44691,45298,0],[45156,45299,44261,0],[45299,44692,44261,0],[44145,45300,45301,0],[45301,45300,44675,0],[45301,44144,44145,0],[45302,45303,44132,0],[45303,45302,44131,0],[44132,45303,44138,0],[43902,43901,44186,0],[44186,43901,44188,0],[44812,43870,44827,0],[44827,43870,43876,0],[43876,44828,44827,0],[43890,43889,43868,0],[43890,43868,43871,0],[43890,43871,43891,0],[8435,43860,44996,0],[44996,43847,8435,0],[8435,43847,43846,0],[8435,43846,43861,0],[44969,44975,44983,0],[44983,44975,44984,0],[45049,44985,45304,0],[45304,44985,44970,0],[45049,45304,45050,0],[43825,45305,43824,0],[8450,8451,45306,0],[45307,45306,43865,0],[8450,45306,8448,0],[45306,45307,8448,0],[43776,44948,45308,0],[45308,44948,44868,0],[43776,45308,43780,0],[43780,45308,45313,0],[43759,45309,45314,0],[45309,45310,45311,0],[44870,45311,45312,0],[44870,45312,44869,0],[45312,45311,45313,0],[45313,45311,45310,0],[45313,45310,44947,0],[44947,45310,45309,0],[45311,45314,45309,0],[44871,45314,45311,0],[44871,45311,44870,0],[10162,44877,45439,0],[10162,45439,45315,0],[45315,45439,8401,0],[8401,10162,45315,0],[45317,9878,45316,0],[45426,45429,9890,0],[45318,45317,43308,0],[45318,43308,9888,0],[45318,9888,9886,0],[9886,9888,9887,0],[45317,45316,43308,0],[45426,43308,45316,0],[45319,10043,45320,0],[45319,45320,10026,0],[10028,45320,10043,0],[43487,43437,43489,0],[43484,43485,45321,0],[45321,43485,43439,0],[45321,43438,43437,0],[43438,45321,43439,0],[43487,43486,45321,0],[45321,43437,43487,0],[43491,43466,43467,0],[43491,43467,43807,0],[43807,43465,43491,0],[44830,43894,44832,0],[44830,44832,44831,0],[44040,44770,45022,0],[44040,45022,44782,0],[45322,44690,45323,0],[45322,45323,45192,0],[45192,45323,45186,0],[45186,45323,45187,0],[45187,45323,44550,0],[44555,44636,44554,0],[44621,44596,44595,0],[44621,44595,44606,0],[44609,44595,44594,0],[44563,44576,44577,0],[44577,44611,44563,0],[45325,45399,45324,0],[45325,45324,44575,0],[45325,44575,44572,0],[44647,45324,44545,0],[44545,45324,44544,0],[44545,44134,44647,0],[44554,45326,45327,0],[45373,44554,45327,0],[45326,44553,45201,0],[45328,44599,44628,0],[44620,44598,44596,0],[44633,45329,44632,0],[44632,45329,45328,0],[45331,45332,44599,0],[45329,45330,45331,0],[44629,45333,45341,0],[45334,45361,44461,0],[44461,45361,45335,0],[44461,45335,44463,0],[44463,45335,45339,0],[44465,45339,45345,0],[44465,45345,45338,0],[45346,45343,45336,0],[45346,45336,45338,0],[45338,45336,45337,0],[44463,45339,44465,0],[45339,45335,45360,0],[45340,45360,45333,0],[45333,45360,45341,0],[45347,45342,44315,0],[45347,44315,45349,0],[45343,45349,45344,0],[45343,45344,45336,0],[45336,45355,45337,0],[45345,45340,45346,0],[45345,45346,45338,0],[45345,45360,45340,0],[45345,45339,45360,0],[45340,45342,45346,0],[45346,45342,45347,0],[45346,45347,45343,0],[45340,45332,45348,0],[45348,45331,45330,0],[45331,45348,45332,0],[45333,45332,45340,0],[45342,45340,45348,0],[45342,45348,44315,0],[45350,44315,45330,0],[45350,44314,44315,0],[45330,44315,45348,0],[45349,44314,45344,0],[45344,45358,45351,0],[45351,45358,45357,0],[45357,45358,44334,0],[44335,44334,45389,0],[44335,45389,45277,0],[45277,45389,45280,0],[45344,45351,45336,0],[45352,44332,44331,0],[45352,44331,45353,0],[45352,45353,45356,0],[44330,44328,45354,0],[45354,44328,44468,0],[44468,44346,44470,0],[45353,45393,45354,0],[45336,45351,45355,0],[45337,45355,44466,0],[44466,45355,45352,0],[45352,45355,45351,0],[45351,44332,45352,0],[44466,45352,45356,0],[45351,45357,44332,0],[44333,44332,45357,0],[44333,45357,44334,0],[44314,44313,45344,0],[45344,44313,45358,0],[45358,45359,45389,0],[45389,45359,44312,0],[45389,44312,45280,0],[45280,44312,44311,0],[45341,45360,45361,0],[45335,45361,45360,0],[44629,45341,44598,0],[44598,45341,45362,0],[45362,45341,45361,0],[45362,45361,45334,0],[44598,45362,44597,0],[44597,45362,45334,0],[44597,45334,44459,0],[44594,44459,44421,0],[44421,44593,44594,0],[44459,44594,44597,0],[44597,44594,44595,0],[45329,44633,45363,0],[45330,45363,45350,0],[45363,45330,45329,0],[45364,44551,44691,0],[45364,45365,45366,0],[45366,45365,45195,0],[45366,45195,45197,0],[45366,45197,45212,0],[45364,45366,45367,0],[45364,45367,44551,0],[45366,45211,45367,0],[45196,44512,44310,0],[45196,44310,45368,0],[45368,45369,45196,0],[45196,45369,45370,0],[45370,45197,45196,0],[45197,45370,45209,0],[45208,45209,45371,0],[45208,45371,45213,0],[45213,45359,44313,0],[45359,45213,45371,0],[45371,45209,45372,0],[45372,45209,44371,0],[44371,45209,45370,0],[44371,45370,45369,0],[45359,45371,44312,0],[44312,45371,44311,0],[44311,45371,45372,0],[44311,45372,44371,0],[44512,44513,44310,0],[44631,45373,45203,0],[45203,45373,45202,0],[45202,45373,45327,0],[45202,45327,45201,0],[45201,45327,45326,0],[44637,45218,44557,0],[45374,44557,44558,0],[44557,45374,44637,0],[45374,45375,45378,0],[45378,45375,44615,0],[45374,45378,44559,0],[44559,45378,45376,0],[45377,45376,45378,0],[45377,45378,44614,0],[44614,45378,44615,0],[45374,44558,45375,0],[45375,44558,44623,0],[44623,44558,44556,0],[44623,44556,44631,0],[44631,44556,45373,0],[45373,44556,44555,0],[44573,44578,44572,0],[44139,44138,45303,0],[44462,44463,44484,0],[44484,44463,44464,0],[44612,44606,44608,0],[44612,44608,44533,0],[44533,44608,44590,0],[44531,45173,45174,0],[45174,45173,45170,0],[44289,45380,44290,0],[44290,45380,44442,0],[44442,45379,45175,0],[45380,45379,44442,0],[45381,44402,44405,0],[45382,44402,45381,0],[44347,44348,44471,0],[44346,44347,44470,0],[44489,44481,44479,0],[44486,44496,45383,0],[44486,45383,44422,0],[44477,45383,45384,0],[45383,44496,45384,0],[44350,44433,44349,0],[44434,44478,45385,0],[44472,44349,45385,0],[44478,44473,45385,0],[45385,44473,44472,0],[44472,44348,44349,0],[45386,45407,45387,0],[45387,45407,44352,0],[44346,44468,45408,0],[45408,44327,44326,0],[44327,45408,44328,0],[44485,45337,45388,0],[45388,45337,44466,0],[45384,44480,44475,0],[44475,44476,45384,0],[45358,45389,44334,0],[44324,44356,45390,0],[44324,45390,45391,0],[45391,44298,45392,0],[45392,44298,44297,0],[45391,45392,44324,0],[44364,44412,45391,0],[45391,45390,44364,0],[44338,44336,44340,0],[44338,44340,44339,0],[44331,44330,45393,0],[44331,45393,45353,0],[45354,45393,44330,0],[44288,44289,44290,0],[44290,45228,44288,0],[45228,44290,45235,0],[44605,44611,45394,0],[44611,45395,45394,0],[45394,45395,44617,0],[44562,45395,44611,0],[44617,45396,44613,0],[44613,45396,44561,0],[44561,44560,44613,0],[44613,44560,45397,0],[44613,45400,44617,0],[44548,44762,45398,0],[45191,45398,44763,0],[45399,44571,44570,0],[45324,45399,44544,0],[44610,45394,45400,0],[44610,45400,44602,0],[44602,45400,45401,0],[45401,45400,45402,0],[45402,45397,44614,0],[45401,45402,44616,0],[44614,44616,45402,0],[45290,45405,45237,0],[45292,45405,45290,0],[45293,45404,45403,0],[45406,45245,45404,0],[45404,45245,44376,0],[45404,44376,44377,0],[45406,45404,45291,0],[45406,45291,45290,0],[45406,45290,45237,0],[45408,44468,44328,0],[43935,43936,45409,0],[45411,45078,45410,0],[45410,45078,45074,0],[8401,45439,10155,0],[8402,10156,45417,0],[8403,8402,45417,0],[45417,10156,45416,0],[45416,10156,45413,0],[45416,45413,45414,0],[45416,45415,43259,0],[45414,45415,45416,0],[45417,45416,8404,0],[8403,45417,8404,0],[9882,44851,44872,0],[44872,44851,45418,0],[44853,45418,44851,0],[44872,45418,8584,0],[9875,45431,45419,0],[9893,45422,43506,0],[43506,45422,9844,0],[9844,45422,45421,0],[45423,45420,45424,0],[45423,45424,45421,0],[45421,45424,9844,0],[9878,44849,45427,0],[45427,44849,45425,0],[45423,45421,45425,0],[45425,45428,45427,0],[45427,45428,45426,0],[45426,45428,45429,0],[45427,45316,9878,0],[45316,45427,45426,0],[45425,45421,45428,0],[45428,45421,45429,0],[45422,45429,45421,0],[10116,9899,45430,0],[45430,9899,43256,0],[45430,43255,43309,0],[45430,43309,10116,0],[45419,45431,43329,0],[45435,45434,8418,0],[8418,10137,45435,0],[45435,45433,45434,0],[45433,45432,45434,0],[45434,45432,8586,0],[45424,45420,45419,0],[45424,45419,43328,0],[43328,45419,43329,0],[44848,8581,44847,0],[44848,44873,8581,0],[8582,8583,44845,0],[8414,44840,45436,0],[45436,44840,45418,0],[45436,45418,44853,0],[45418,44840,8584,0],[45436,45437,8414,0],[8412,8413,45438,0],[45437,45436,45438,0],[45437,45438,8413,0],[8412,45438,8411,0],[44853,45438,45436,0],[34524,34525,45440,0],[10250,45443,45441,0],[45445,10247,45441,0],[45441,45443,45442,0],[45442,45443,45444,0],[45440,45444,10251,0],[45444,45443,10251,0],[10247,45445,10243,0],[10243,45445,45446,0],[45442,45446,45441,0],[45441,45446,45445,0],[10247,10250,45441,0],[10251,10248,45440,0],[10248,10256,45440,0],[45440,10256,10260,0],[45440,10260,34524,0],[45447,8138,8216,0],[8216,8138,8242,0],[45456,45447,45448,0],[8154,8141,45449,0],[45449,8141,45450,0],[45455,8212,45451,0],[45455,45450,8333,0],[8333,45450,8213,0],[45529,8213,45450,0],[8214,8213,45452,0],[45452,8213,45448,0],[45452,45448,45447,0],[45452,45447,8216,0],[45448,8213,45529,0],[8163,45453,8164,0],[8164,45453,45454,0],[45454,45453,45455,0],[45455,45453,45450,0],[45453,45449,45450,0],[8164,45454,8165,0],[8141,8140,45529,0],[45529,8140,45448,0],[8140,45456,45448,0],[8221,8331,45457,0],[45458,8331,8222,0],[8331,45458,8332,0],[8332,45458,45459,0],[8332,45459,8173,0],[8173,45459,40021,0],[45542,45463,45460,0],[45544,45461,25090,0],[25090,45461,39907,0],[39907,45461,39749,0],[39749,45461,45464,0],[45464,45463,45462,0],[45461,45544,45464,0],[45464,45544,45463,0],[45463,45544,45460,0],[39749,45464,8178,0],[39907,39905,25090,0],[40077,25090,25091,0],[25091,25090,39905,0],[45465,10345,10304,0],[8364,45465,10305,0],[8364,10305,10307,0],[10345,45466,10303,0],[45467,34604,34603,0],[45468,43065,43068,0],[9711,9704,9714,0],[9711,9714,45469,0],[45469,9714,8800,0],[8800,9712,45469,0],[8779,8784,8783,0],[8779,8783,8778,0],[9697,8724,9694,0],[9700,9723,9699,0],[9700,9699,9698,0],[43181,8612,45471,0],[8786,8722,8788,0],[8788,8720,8786,0],[9703,9717,9718,0],[9703,9718,9777,0],[43183,9808,45472,0],[45472,9816,43184,0],[45472,43184,43183,0],[45473,8660,45474,0],[45473,45474,8659,0],[45474,8705,8659,0],[45476,45475,9812,0],[45476,9812,8614,0],[45477,45476,8614,0],[45475,45476,45478,0],[45478,45476,8615,0],[45478,8615,8607,0],[8615,45476,45477,0],[8609,8610,45479,0],[8609,45479,45478,0],[45478,8607,8609,0],[45478,45479,8611,0],[9777,9718,9719,0],[43574,43575,34550,0],[10184,43580,8633,0],[10198,43655,10189,0],[10189,43655,8377,0],[8376,8377,10477,0],[10477,8377,43655,0],[43655,10478,10477,0],[10410,8101,10409,0],[10409,8101,10427,0],[45480,10406,10407,0],[45482,45481,19275,0],[45482,8091,8092,0],[45482,8093,45481,0],[45481,8093,19277,0],[19276,19275,19273,0],[19273,19275,45481,0],[18957,18780,45483,0],[18891,45483,45484,0],[18951,18894,45484,0],[18891,45484,18892,0],[18892,45484,18894,0],[18891,18890,45483,0],[45483,18890,18957,0],[45485,18956,18960,0],[45485,18959,18955,0],[45485,18955,18956,0],[18960,18956,18888,0],[18960,18888,18884,0],[18893,18953,45672,0],[45672,45769,18783,0],[18946,18812,45486,0],[45486,18812,18811,0],[18946,45486,45487,0],[45487,18947,18946,0],[45490,45489,45488,0],[45488,18871,18818,0],[45490,45488,18818,0],[45489,45491,45492,0],[45501,45499,45495,0],[18796,45495,18790,0],[18790,45495,45496,0],[18790,45496,45497,0],[18790,45497,18789,0],[45502,45493,18823,0],[18823,45493,45499,0],[18823,45499,45498,0],[45498,45499,45500,0],[45500,45499,45501,0],[45500,45501,18792,0],[18791,45501,45495,0],[45500,18820,18819,0],[45492,45491,45511,0],[45492,45511,45502,0],[45493,45502,45503,0],[45503,45512,45777,0],[45777,45512,45504,0],[45777,45504,45494,0],[45494,45504,45496,0],[45497,45504,45513,0],[45506,45505,18798,0],[18798,45505,45507,0],[45507,45504,45512,0],[45509,18799,45503,0],[45726,45509,45510,0],[45511,45510,45509,0],[45511,45509,45503,0],[45503,45508,45512,0],[45507,45512,45508,0],[18799,45508,45503,0],[45503,45502,45511,0],[45508,18799,18798,0],[45508,18798,45507,0],[45505,45513,45507,0],[45507,45513,45504,0],[45505,45506,18797,0],[45505,18797,45513,0],[45497,45513,18789,0],[18789,45513,18797,0],[45504,45497,45496,0],[45494,45496,45495,0],[45499,45494,45495,0],[18917,18929,18912,0],[18927,18926,18912,0],[18929,18911,18914,0],[45515,18866,45516,0],[45514,45516,45518,0],[45514,45515,45516,0],[18866,45517,45516,0],[18835,45518,18836,0],[45517,18836,45516,0],[45518,45516,18836,0],[45518,18840,45514,0],[45519,45898,45520,0],[45520,45898,45897,0],[45520,45897,45521,0],[45520,45521,40527,0],[45520,40527,45519,0],[45519,40527,10719,0],[45522,45523,40526,0],[40526,45523,40519,0],[45523,45522,47546,0],[45521,47546,45522,0],[45524,10413,45525,0],[8134,45525,10412,0],[8136,45526,45527,0],[45525,8134,8135,0],[45526,45525,45527,0],[45527,45525,8135,0],[34526,8127,45528,0],[34526,45528,34525,0],[45440,34525,45444,0],[45444,34525,45528,0],[10332,10258,10257,0],[10332,10257,10338,0],[10277,10280,10265,0],[10266,10284,10280,0],[10280,10284,10265,0],[8141,45529,45450,0],[8239,10359,8251,0],[8284,8276,8290,0],[8290,8276,8289,0],[8284,8286,8285,0],[19270,19269,45530,0],[45530,19289,19270,0],[45451,45531,45455,0],[45531,45454,45455,0],[8165,45454,45531,0],[8165,45531,8166,0],[8166,45533,45532,0],[8169,45532,8168,0],[8168,45532,45533,0],[8168,45533,45457,0],[8166,45531,45533,0],[8220,45533,45531,0],[25118,45534,45532,0],[8166,45532,45534,0],[8166,45534,8165,0],[8165,45534,45536,0],[45536,45534,45535,0],[45534,25118,45535,0],[45535,25118,8155,0],[25119,8155,25118,0],[45536,8160,8164,0],[25115,45537,25116,0],[25120,25116,45537,0],[8243,8231,8233,0],[8243,8233,8235,0],[8244,45538,8245,0],[45538,8244,8243,0],[8243,8235,45538,0],[45538,8235,8253,0],[45538,8253,8245,0],[45539,8253,8249,0],[45539,8249,8248,0],[8238,8249,8253,0],[45539,8247,8245,0],[45539,8245,8253,0],[8222,40022,45458,0],[45540,8170,45541,0],[45540,8171,8170,0],[10403,10402,10374,0],[10403,8111,10405,0],[25124,45463,45542,0],[25089,25113,45460,0],[25100,45543,25090,0],[25090,45543,45544,0],[45544,45543,45460,0],[45542,45460,25113,0],[25100,25089,45543,0],[45543,25089,45460,0],[25114,25123,45542,0],[45542,25123,25124,0],[45464,25126,8178,0],[8178,25126,8177,0],[45464,45462,25126,0],[40015,8263,8261,0],[8261,8263,45545,0],[8208,8050,8184,0],[8184,8050,8185,0],[8202,8201,8195,0],[8195,8201,8196,0],[8066,8202,45546,0],[45546,40103,40112,0],[40103,45546,8195,0],[8202,8066,8065,0],[45547,8261,45545,0],[25130,25042,45548,0],[45548,25042,40064,0],[40064,40063,48848,0],[40064,48848,40057,0],[25135,45549,40058,0],[40064,40057,45548,0],[45548,40057,45549,0],[40056,40055,45550,0],[40056,45550,45552,0],[25074,25073,25076,0],[25076,25073,45550,0],[25076,45550,40055,0],[40056,45552,40059,0],[45551,45557,40059,0],[45551,40059,45552,0],[45551,45552,25073,0],[45551,25073,45558,0],[45558,25073,25072,0],[45558,45556,24413,0],[24413,45556,45555,0],[24413,45555,45553,0],[24428,24427,24432,0],[24432,24427,45554,0],[24432,45554,45553,0],[45553,45554,24410,0],[45553,24410,24413,0],[45556,45558,25071,0],[25071,45558,25072,0],[45556,25071,45555,0],[25071,24434,45555,0],[45555,24434,45553,0],[25073,45552,45550,0],[24418,40058,45557,0],[45557,45551,24414,0],[24414,45551,45558,0],[25070,48853,25054,0],[25070,25054,24431,0],[48853,25069,25081,0],[45559,47682,45561,0],[45561,43022,43025,0],[43025,45560,45561,0],[43024,8341,45562,0],[43024,45562,8340,0],[8340,45562,8338,0],[45562,8341,45565,0],[45565,8342,45563,0],[45564,8345,43027,0],[45564,43027,45565,0],[45564,45565,45563,0],[45565,43027,45562,0],[43026,45562,43027,0],[10415,8125,43554,0],[43559,34547,43570,0],[34547,43559,43560,0],[9947,34679,10067,0],[9956,45567,45568,0],[45568,45567,9996,0],[9997,9996,45567,0],[9997,45567,45570,0],[45570,45567,9959,0],[9960,9961,45569,0],[9957,9959,45567,0],[9997,45570,9998,0],[9998,45570,45578,0],[45571,45578,45580,0],[45571,9998,45578,0],[45570,9959,45572,0],[45570,45572,45573,0],[45579,45573,45574,0],[16669,45574,45573,0],[45575,45573,45572,0],[45575,45572,45576,0],[45576,45572,9959,0],[16669,45573,45575,0],[16669,45575,16675,0],[16675,45575,45577,0],[45577,45576,9960,0],[45577,9960,45569,0],[45576,45577,45575,0],[9960,45576,9959,0],[45570,45573,45578,0],[45573,45579,45578,0],[45578,45579,45580,0],[45589,45580,16654,0],[16654,45580,45579,0],[16654,45579,16653,0],[45581,16653,16652,0],[45582,45579,45574,0],[45579,45582,16653,0],[16653,45582,16652,0],[45581,10000,16653,0],[45568,10059,9956,0],[9990,9981,10057,0],[9990,45583,9981,0],[9981,45583,9982,0],[10056,9982,9984,0],[9984,9982,9985,0],[9988,9987,9985,0],[9985,9982,45583,0],[9985,45583,9988,0],[9988,45583,9989,0],[43277,10057,45584,0],[43277,45584,43278,0],[10057,43277,45622,0],[45614,45622,43281,0],[45614,43281,45585,0],[43287,45585,43281,0],[10003,10058,45586,0],[45587,45571,45588,0],[45580,45589,45588,0],[45580,45588,45571,0],[10034,45588,45592,0],[45590,45592,9999,0],[45590,9999,43688,0],[45592,45590,45591,0],[45592,45591,10034,0],[45591,45597,10034,0],[45589,45592,45588,0],[10005,45586,10033,0],[10005,10033,43282,0],[43282,10033,45593,0],[45593,10033,10007,0],[43687,45595,45594,0],[45594,45595,45598,0],[10031,45598,45596,0],[45596,45598,45599,0],[45596,45599,10037,0],[45597,43687,45594,0],[43687,45597,45591,0],[10034,45597,10035,0],[10035,45597,45594,0],[45598,45595,43685,0],[45598,43685,45599,0],[45599,43685,45600,0],[45599,45600,10038,0],[10038,10037,45599,0],[10039,10038,45600,0],[45601,9340,9339,0],[45601,9339,9345,0],[45601,9345,9337,0],[46872,45602,16671,0],[16671,45602,16672,0],[16581,16672,9966,0],[9966,16672,45602,0],[45602,9963,9964,0],[45602,9964,9966,0],[46873,45606,45604,0],[46873,45604,16577,0],[16578,16577,45604,0],[45605,45604,45606,0],[45605,45607,45604,0],[45604,45607,16578,0],[45608,16597,43694,0],[43694,16597,16665,0],[16577,45608,46873,0],[16680,9967,45603,0],[16682,16681,45609,0],[45609,16668,16669,0],[45609,16669,16679,0],[16679,16669,16675,0],[45610,16578,16593,0],[16569,16570,16571,0],[10064,10063,10062,0],[34681,10064,10062,0],[45612,9980,45611,0],[45612,45611,45621,0],[45612,45621,45613,0],[45613,45621,45614,0],[45613,45614,45616,0],[45615,45616,45623,0],[45623,45616,45617,0],[45623,45617,45618,0],[45618,45617,43288,0],[45616,45615,45613,0],[45613,45619,45612,0],[45612,45619,45620,0],[45612,45620,10063,0],[10063,9980,45612,0],[45619,45613,45636,0],[45636,45613,45615,0],[10063,45620,10062,0],[45617,45616,45585,0],[45585,45616,45614,0],[45614,45621,45622,0],[45622,45621,45611,0],[45622,45611,10057,0],[45623,45618,45627,0],[45627,45618,45625,0],[45627,45625,45624,0],[45625,43291,43301,0],[43291,45625,43290,0],[43290,45625,43288,0],[43290,43288,43299,0],[43301,43237,45625,0],[45625,43237,45624,0],[45625,45618,43288,0],[45627,45624,45628,0],[45628,45624,45629,0],[45629,45624,43236,0],[45631,45628,45629,0],[45630,45629,43235,0],[45633,45634,45632,0],[45633,45632,45615,0],[45633,45615,45623,0],[45633,45623,45627,0],[45627,45628,45633,0],[45634,45635,45632,0],[45632,45635,45636,0],[45632,45636,45615,0],[45631,45629,45630,0],[45630,45635,45631,0],[45635,34684,34685,0],[34685,34683,45637,0],[45637,45620,45619,0],[45637,45619,45636,0],[45637,45636,34685,0],[34685,45636,45635,0],[34683,45638,45637,0],[45637,45638,45620,0],[45620,45638,10062,0],[45635,45634,45631,0],[43235,45629,43236,0],[45628,45631,45634,0],[43272,8406,45639,0],[45639,43273,43272,0],[10051,43286,10006,0],[10007,10051,10006,0],[10495,10497,10498,0],[10495,10498,45640,0],[43639,43666,43630,0],[43630,43666,10494,0],[43630,45641,45706,0],[45642,45641,10491,0],[45642,10503,45643,0],[45644,45691,45661,0],[45661,45691,19212,0],[45643,10503,45645,0],[45645,45691,45644,0],[45645,45644,45643,0],[45646,19214,10508,0],[45646,10508,45647,0],[45647,10508,45695,0],[45695,10508,45694,0],[10506,45694,10508,0],[16635,16634,45648,0],[16638,16639,16636,0],[16638,16636,16635,0],[10450,40299,10473,0],[10450,10473,10449,0],[40288,10473,40299,0],[40288,10472,10473,0],[45649,43656,45650,0],[45649,45650,43649,0],[43649,45650,43650,0],[45649,43649,19228,0],[40305,19174,45651,0],[45651,19174,40206,0],[45651,40206,40223,0],[40223,45653,45651,0],[40304,45651,45652,0],[40304,45652,40216,0],[45653,40222,45652,0],[40221,45652,40222,0],[40304,40305,45651,0],[18644,47622,18645,0],[18616,18752,45655,0],[18616,45655,45656,0],[45656,45655,18766,0],[18750,18766,45655,0],[18615,18767,18614,0],[18767,18615,45656,0],[18616,45656,18615,0],[19225,10486,10487,0],[19209,19125,45658,0],[45658,19208,45659,0],[45658,45659,45657,0],[45658,45657,10487,0],[10487,45657,19225,0],[19208,45658,19125,0],[45658,10487,19209,0],[19209,10487,19210,0],[19210,10487,45660,0],[10490,45660,10488,0],[10488,45660,10487,0],[10490,45643,45644,0],[45661,19215,45662,0],[45661,45662,45644,0],[45644,45662,45663,0],[45644,45663,10490,0],[45665,19115,45666,0],[19113,45666,19121,0],[19121,45666,19115,0],[19124,19115,45665,0],[19124,45665,19116,0],[19124,19116,19183,0],[19117,45664,19118,0],[19118,45664,19119,0],[19119,45664,19120,0],[19116,45665,19117,0],[19117,45665,45664,0],[45666,19113,45667,0],[45666,45667,19120,0],[45666,19120,45664,0],[45668,45671,18954,0],[45668,18954,18781,0],[19190,45669,45668,0],[19190,45677,45669,0],[45676,45670,19187,0],[45676,19187,19199,0],[19187,45670,19188,0],[19188,45670,18778,0],[45670,45677,19189,0],[19190,19189,45677,0],[45681,45671,18952,0],[45671,45710,18782,0],[18782,45710,18953,0],[18953,45710,19089,0],[18953,19089,45768,0],[18953,45768,45672,0],[45769,45672,45673,0],[45674,19096,19097,0],[45675,19195,45676,0],[45676,19195,19194,0],[45677,45678,45669,0],[45678,19112,45669,0],[45678,45677,19194,0],[19199,45675,45676,0],[45670,45676,45677,0],[45677,45676,19194,0],[45679,45682,45680,0],[45681,45680,45683,0],[45681,45683,19093,0],[19093,45683,19090,0],[19090,45683,45682,0],[45680,45682,45683,0],[45680,19191,45679,0],[45679,45684,45685,0],[45685,45684,45689,0],[45685,45689,19090,0],[45685,19090,45682,0],[45685,45682,45679,0],[45684,19111,45689,0],[45689,19122,19109,0],[45687,45686,19109,0],[45690,19091,45688,0],[19091,45690,19092,0],[19092,45690,19109,0],[19092,19109,45686,0],[19109,45690,45689,0],[45690,45688,19090,0],[19122,45689,19111,0],[45690,19090,45689,0],[19212,45691,19106,0],[19106,45691,45692,0],[19106,45692,10504,0],[45693,10506,10504,0],[45693,16657,10506,0],[10506,16657,45694,0],[45647,45695,16650,0],[45647,16650,16648,0],[45646,45647,16648,0],[45694,16655,45695,0],[45697,45698,45696,0],[45696,45698,19216,0],[45698,45697,19217,0],[19217,45697,19218,0],[45696,45645,10503,0],[45696,10503,45697,0],[19218,45697,10503,0],[19219,45698,45699,0],[45700,45703,45701,0],[45701,45704,10492,0],[10492,45704,10491,0],[45701,45702,45700,0],[45699,45698,45703,0],[45699,45703,45700,0],[45698,19217,45703,0],[45692,45691,45645,0],[19217,19218,45704,0],[45703,45704,45701,0],[45704,45703,19217,0],[19216,10502,45696,0],[19218,10491,45704,0],[45641,45642,45706,0],[45706,45642,45709,0],[45706,45709,45705,0],[45706,45705,43630,0],[45707,10489,45708,0],[45707,45708,45709,0],[45707,45709,45642,0],[10489,43631,45708,0],[45709,45708,43660,0],[43660,45708,43631,0],[45643,10490,45642,0],[19097,19098,45674,0],[45674,19098,45710,0],[16688,10510,19097,0],[19097,10509,16688,0],[45711,16688,16708,0],[16643,16644,16632,0],[19151,19158,45712,0],[45712,19159,19151,0],[45713,18716,18717,0],[19152,45714,19160,0],[45714,19158,19160,0],[18726,18727,45715,0],[45715,18727,45716,0],[18646,45716,18727,0],[18738,45715,45716,0],[18838,18656,18851,0],[18699,18702,18704,0],[45718,18660,45719,0],[45718,45719,45720,0],[45720,45719,45721,0],[45721,45916,18670,0],[18699,18669,18670,0],[18670,18669,45721,0],[18668,45721,18669,0],[18659,45718,45720,0],[18659,45720,18668,0],[18668,45720,45721,0],[18849,18659,45717,0],[18667,45717,18668,0],[18668,45717,18659,0],[18839,45722,18837,0],[18837,45722,18838,0],[18839,45515,45723,0],[45515,45514,45723,0],[45724,18813,45730,0],[45724,45730,18807,0],[45729,18800,18787,0],[18787,18800,18786,0],[18785,18786,45725,0],[18786,18800,45725,0],[45725,18800,45728,0],[18802,18803,45726,0],[18816,18804,18803,0],[18803,18804,45726,0],[45726,18804,45727,0],[45726,45727,18801,0],[18801,45727,45728,0],[45728,45727,18806,0],[18806,45727,18805,0],[18805,45727,18808,0],[18804,18808,45727,0],[18806,45725,45728,0],[18800,45729,18799,0],[45730,45731,18784,0],[19099,45732,19086,0],[19099,19086,19088,0],[19099,45733,45732,0],[19100,10515,16704,0],[10515,19100,10514,0],[10514,19100,45733,0],[45733,19100,45732,0],[10514,45733,10512,0],[19100,16704,19101,0],[45733,19099,10512,0],[45734,45738,45735,0],[45734,45735,10522,0],[10522,45735,45736,0],[10522,45736,10523,0],[45734,45737,45738,0],[45736,45735,45739,0],[45736,45739,45780,0],[45780,45739,10597,0],[10597,45739,45788,0],[45788,45740,45755,0],[45755,45740,45741,0],[45741,45740,45742,0],[45741,45742,45753,0],[45741,45753,11312,0],[11312,45753,45743,0],[45743,45753,45742,0],[45743,45742,45737,0],[45737,45751,45744,0],[45744,45751,45746,0],[45744,45746,45745,0],[45745,11307,45744,0],[11307,45743,45744,0],[45744,45743,45737,0],[45747,45749,10520,0],[10520,45749,45748,0],[45748,45749,45752,0],[45749,45750,45751,0],[45751,45752,45749,0],[45752,45737,18795,0],[45751,45737,45752,0],[45738,45737,45742,0],[45738,45742,45740,0],[45738,45740,45735,0],[45739,45740,45788,0],[45737,45734,18795,0],[45747,45750,45749,0],[45751,45750,45746,0],[11302,45750,45770,0],[11302,45770,11301,0],[43701,45754,43702,0],[45754,45747,43702,0],[43702,45747,10520,0],[45750,45747,45770,0],[45756,45741,11312,0],[10595,45757,46012,0],[45755,45741,45757,0],[45757,45741,45758,0],[45758,45741,45756,0],[10597,10598,45780,0],[45780,10598,10599,0],[11312,11307,11310,0],[11310,11307,11308,0],[11310,11309,11311,0],[45759,11306,11320,0],[45759,10618,45760,0],[45756,45760,45758,0],[45760,11306,45759,0],[10621,10613,10647,0],[45761,10649,45762,0],[45762,10649,45825,0],[45763,10619,45762,0],[45762,10619,10620,0],[45762,10620,45764,0],[45762,45764,45761,0],[10621,45764,10620,0],[16711,16712,16713,0],[19088,45765,45766,0],[19088,19086,45765,0],[45765,18949,45767,0],[45765,45767,45766,0],[45766,45767,45673,0],[45673,45672,45768,0],[45767,18784,45673,0],[45769,45731,18813,0],[18813,45731,45730,0],[45770,45754,11301,0],[43696,43697,43698,0],[43698,45772,11300,0],[45773,43704,11220,0],[45774,11220,11221,0],[11300,45772,11299,0],[11299,45772,11223,0],[11223,45772,11222,0],[11222,45772,11221,0],[11221,45772,45774,0],[43704,45773,43697,0],[43697,45773,45774,0],[45774,45773,11220,0],[45774,45772,43698,0],[45774,43698,43697,0],[11218,16617,45775,0],[11219,45775,45776,0],[11219,45776,11883,0],[11886,45776,45775,0],[11217,43704,43703,0],[10517,18796,18790,0],[10517,18790,19105,0],[45511,45491,45510,0],[45491,45489,45510,0],[45510,45489,18802,0],[45490,18802,45489,0],[45493,45503,45777,0],[45777,45494,45499,0],[45777,45499,45493,0],[45778,18794,18795,0],[18795,18942,45778,0],[45778,18942,45779,0],[45780,10523,45736,0],[45780,10600,10601,0],[45780,10601,10523,0],[10599,10598,45781,0],[45781,10598,45782,0],[45781,45782,45783,0],[45783,45782,45790,0],[45783,45790,45784,0],[10598,10597,45782,0],[45782,10597,45787,0],[45789,10596,46010,0],[46010,10595,45796,0],[45796,10595,10594,0],[45796,10594,10593,0],[10595,46010,10596,0],[45788,10596,45787,0],[45788,45787,10597,0],[45787,10596,45789,0],[45787,45789,46008,0],[45787,46008,45784,0],[45787,45784,45790,0],[45787,45790,45782,0],[10599,45781,45791,0],[45791,45781,45792,0],[45793,45794,47653,0],[47653,45794,45784,0],[45784,45785,47652,0],[47652,45785,45786,0],[45784,45794,45783,0],[10600,10599,45791,0],[45792,10525,45791,0],[45791,10525,10600,0],[10525,10524,10600,0],[10600,10524,10601,0],[45792,45781,45793,0],[45793,45781,45794,0],[45794,45781,45783,0],[45786,45785,10589,0],[45795,46010,45796,0],[45836,45796,10593,0],[10589,10590,10588,0],[10589,10588,45786,0],[10590,10591,45815,0],[45815,10591,45831,0],[45815,45831,45797,0],[45798,45799,45800,0],[45800,45799,45801,0],[45800,45801,45806,0],[45800,45806,45809,0],[45809,45810,45811,0],[45811,45803,45802,0],[45802,45803,45816,0],[45816,45803,10584,0],[10585,45817,10584,0],[45804,45803,45811,0],[45804,45811,45805,0],[45964,45805,45810,0],[45964,45810,45806,0],[45964,45806,10628,0],[10628,45806,45807,0],[45808,10652,10651,0],[10652,45808,45801,0],[45801,45808,45806,0],[45808,45807,45806,0],[45809,45806,45810,0],[45803,45804,10583,0],[45803,10583,10584,0],[45957,45804,45805,0],[45800,45809,45798,0],[45811,45812,45798,0],[45798,45812,45832,0],[45832,45812,45797,0],[45811,45798,45809,0],[45811,45802,45812,0],[10590,45815,10588,0],[45814,10588,45815,0],[45814,45815,45816,0],[45816,45815,45797,0],[45816,45797,45812,0],[47659,45814,45817,0],[10591,10592,45818,0],[45819,45820,47643,0],[47643,45820,10635,0],[47643,10635,10653,0],[45821,45820,45822,0],[45822,45823,45826,0],[45826,45823,45825,0],[45825,45823,45824,0],[45825,45824,45763,0],[45763,45829,45830,0],[45830,45760,10618,0],[45763,45762,45825,0],[45826,10649,10636,0],[10636,45821,45826,0],[45822,45826,45821,0],[45820,45819,45822,0],[45822,45819,45828,0],[45822,45828,45823,0],[45823,45828,45827,0],[45827,45828,45837,0],[45828,45819,10592,0],[10592,45819,45818,0],[45823,45827,45824,0],[45824,10593,10594,0],[45824,10594,45763,0],[45763,10594,45829,0],[10594,46012,45829,0],[45829,46012,45830,0],[45819,47643,45818,0],[45818,45831,10591,0],[45797,45831,45832,0],[45808,10651,10630,0],[45807,10630,10629,0],[45807,10629,10628,0],[10628,10627,45964,0],[45839,10654,45833,0],[45833,10654,10634,0],[16617,16618,16725,0],[16725,16618,16619,0],[11218,45771,11220,0],[11220,43704,11218,0],[11301,43698,11300,0],[45834,11849,11850,0],[45834,11850,11862,0],[11887,45834,11862,0],[11869,11227,46879,0],[46879,11227,11858,0],[45835,11882,11849,0],[45754,43699,43698,0],[45754,43701,43699,0],[18794,45748,45752,0],[18794,18793,45748,0],[45748,18793,10521,0],[45795,45836,45837,0],[45795,45837,46011,0],[46011,45837,10592,0],[45795,45796,45836,0],[45838,10636,10638,0],[45839,45833,10639,0],[45839,10639,10640,0],[10639,45833,45840,0],[10638,45840,45833,0],[10638,45833,45838,0],[18931,18932,45858,0],[18831,45858,18913,0],[18913,45841,45842,0],[18831,18830,45858,0],[45858,18830,18931,0],[18921,18829,18830,0],[18914,45843,18928,0],[45843,18825,18928,0],[45851,18920,45844,0],[45844,45841,45852,0],[45846,45845,10529,0],[45848,45846,10530,0],[45848,10530,45847,0],[45847,10530,45859,0],[45847,45859,18666,0],[45847,18666,18665,0],[45847,18665,45848,0],[45848,45857,45853,0],[45849,45850,45851,0],[45851,45850,18901,0],[45849,45851,45844,0],[45849,45844,45852,0],[45849,45852,45856,0],[45856,45852,45853,0],[45853,45854,45846,0],[45846,45854,45845,0],[45853,45846,45848,0],[45850,45849,45855,0],[45853,45857,45856,0],[45849,45856,45855,0],[45855,45856,18664,0],[18664,45856,10532,0],[10532,45856,45857,0],[18665,45857,45848,0],[18666,45859,45861,0],[45846,10529,10530,0],[10530,10529,46000,0],[45844,45842,45841,0],[45841,18913,45858,0],[45841,45858,45845,0],[10528,45845,18932,0],[18932,45845,45858,0],[45859,19082,45860,0],[47662,45860,19084,0],[19084,45860,19083,0],[45859,45860,45861,0],[45861,45869,18666,0],[19046,45869,45862,0],[19046,45862,45863,0],[45863,45947,19048,0],[45865,18666,45864,0],[18666,45869,45864,0],[45864,45869,19046,0],[19046,45866,45864,0],[45864,45866,45867,0],[45864,45867,47663,0],[45864,47663,45865,0],[45865,47663,10531,0],[10531,18665,45865,0],[45866,19044,45867,0],[45867,19044,45868,0],[45867,45868,47663,0],[47663,45868,19081,0],[45869,45861,45948,0],[45948,45861,45860,0],[19083,45870,19084,0],[45870,45871,19084,0],[45870,45883,45871,0],[45871,45883,45872,0],[45872,45883,10539,0],[45883,45873,10539,0],[45874,45873,45875,0],[45874,45875,45876,0],[45940,45876,45886,0],[45886,45996,45877,0],[45877,45996,46002,0],[45877,46002,45888,0],[45888,47661,47654,0],[47654,47661,45793,0],[47654,45793,47653,0],[45886,45876,45996,0],[45996,45876,45878,0],[45878,45876,45884,0],[45884,45882,46001,0],[46001,45882,45879,0],[19082,46000,45881,0],[45881,46000,45880,0],[19083,45881,45879,0],[19083,45879,45882,0],[19083,45882,45870,0],[45885,45884,45875,0],[45882,45885,45870,0],[45870,45885,45883,0],[45883,45885,45873,0],[45873,45885,45875,0],[45882,45884,45885,0],[45884,45876,45875,0],[47657,45887,45888,0],[45888,45887,45877,0],[45877,45887,47651,0],[45877,47651,45886,0],[45889,45792,45793,0],[45889,45793,47661,0],[45903,10671,18986,0],[18986,10671,18982,0],[45891,45890,10676,0],[45890,45891,10675,0],[10714,18687,45892,0],[45892,18687,18992,0],[45892,18992,45893,0],[45893,18992,19021,0],[45893,19021,10712,0],[45893,10712,40509,0],[45894,10714,45892,0],[45894,45892,45899,0],[45899,45892,47666,0],[45899,47666,45895,0],[45895,47666,47667,0],[45896,47667,47671,0],[45896,47669,45897,0],[45897,47669,47547,0],[45897,47547,45521,0],[45521,47547,47546,0],[47667,45896,45895,0],[45899,45895,45898,0],[45898,45895,45897,0],[45897,45895,45896,0],[10717,10715,45898,0],[10717,45898,45519,0],[45894,45899,10715,0],[10715,45899,45898,0],[45902,45901,45903,0],[45903,45901,45904,0],[19079,45904,45901,0],[19079,45901,45906,0],[45902,10672,45901,0],[45901,45905,45906,0],[45907,45906,45908,0],[45907,45908,18843,0],[18843,45908,18660,0],[18660,45908,45719,0],[45908,45906,45909,0],[45908,45909,45719,0],[45719,45909,45721,0],[45721,45912,45916,0],[45910,45913,10692,0],[45913,45911,10693,0],[10693,45911,10672,0],[45912,45905,45913,0],[45912,45913,19015,0],[19015,45913,45910,0],[45911,45913,45905,0],[45912,45721,45909,0],[10672,45911,45901,0],[45901,45911,45905,0],[45909,45905,45912,0],[18670,45916,45917,0],[45906,45914,45900,0],[45900,45914,18663,0],[45906,45907,45914,0],[18662,45914,45907,0],[18662,45907,18843,0],[18662,18843,18661,0],[45915,18848,18849,0],[18850,18848,45915,0],[18850,45915,45723,0],[45723,45915,18839,0],[18658,18839,45915,0],[18682,18681,19011,0],[19011,18681,19012,0],[10680,45917,45916,0],[45916,45912,19015,0],[45910,10679,19015,0],[10669,19054,10668,0],[10668,19054,45919,0],[45918,19054,10669,0],[45918,10669,19052,0],[45921,45920,19058,0],[45920,45921,45919,0],[45919,45922,10668,0],[19058,45920,19056,0],[19056,45920,19063,0],[10708,11594,11384,0],[11384,11383,45933,0],[11384,10710,10708,0],[11596,45923,45931,0],[45923,11593,45924,0],[45924,11593,45929,0],[45929,45925,45926,0],[45926,45925,45930,0],[45930,45927,45926,0],[45926,45928,45929,0],[45929,45928,45924,0],[45928,11402,45924,0],[45924,11401,45923,0],[45923,11401,11592,0],[45923,11592,45931,0],[11401,45924,11402,0],[11596,45931,11595,0],[11593,45932,45929,0],[40506,40509,45933,0],[40506,45933,40505,0],[11594,10706,45934,0],[11594,45934,45932,0],[45932,45934,45925,0],[45925,45934,45930,0],[45934,10706,10705,0],[10705,45930,45934,0],[10702,10695,45935,0],[10702,45935,45939,0],[45938,45939,45937,0],[45939,45935,45936,0],[10666,45937,45936,0],[10666,10665,45937,0],[45927,10666,45936,0],[45927,45936,45926,0],[45926,45936,45935,0],[10702,10701,10695,0],[10695,10701,10699,0],[10703,10661,10701,0],[10662,10703,45938,0],[45939,45936,45937,0],[45939,45938,10702,0],[10702,45938,10703,0],[45940,45941,45876,0],[45876,45941,45942,0],[45876,45942,45874,0],[45943,10554,40818,0],[10698,10704,10552,0],[10552,10704,10660,0],[45871,19085,45945,0],[45945,45862,45948,0],[45871,45945,19084,0],[19084,45945,47662,0],[19070,19069,10537,0],[10538,45947,45946,0],[10538,45946,19085,0],[19085,45946,45945,0],[45862,45945,45946,0],[45862,45946,45947,0],[45862,45947,45863,0],[45947,10538,19048,0],[45945,45948,47662,0],[45948,45862,45869,0],[45944,10544,45949,0],[19037,45949,19039,0],[19038,19039,45950,0],[45950,19039,45951,0],[45950,45951,47645,0],[47645,45951,10578,0],[19039,10541,45952,0],[19039,45952,45951,0],[45951,45952,10578,0],[19038,45950,19036,0],[19036,45950,45954,0],[19036,45954,45966,0],[45966,45954,45953,0],[45953,10567,10568,0],[19035,10568,19033,0],[10567,45953,45954,0],[45955,10579,10581,0],[45955,10581,10602,0],[10579,45955,10578,0],[10578,45955,47647,0],[45956,47648,45957,0],[45956,45957,45958,0],[45958,45957,45960,0],[45959,45960,45805,0],[47648,10583,45957,0],[45960,45957,45805,0],[45964,10627,45961,0],[45961,10627,45962,0],[10563,45961,45963,0],[45963,45961,45962,0],[45805,45964,45959,0],[45961,45959,45964,0],[45959,10603,45960,0],[10603,45958,45960,0],[45962,45988,10562,0],[45953,19035,45965,0],[45966,45953,45965,0],[45967,45965,19034,0],[45967,19034,45969,0],[45966,45967,19036,0],[19036,45967,19037,0],[19037,45968,45949,0],[45949,45968,45944,0],[45965,45967,45966,0],[45967,45969,19037,0],[19037,45969,45968,0],[45968,45969,10547,0],[45968,10547,45944,0],[45970,45971,47636,0],[45978,45972,45974,0],[45978,45974,45973,0],[45973,45974,10574,0],[45973,10574,10605,0],[45973,10605,10575,0],[45973,10575,45977,0],[45973,45977,47639,0],[47639,45977,45975,0],[10562,45975,45976,0],[45976,45977,10575,0],[10575,10576,10563,0],[10575,10563,45976,0],[45976,10563,45963,0],[45975,45977,45976,0],[45978,45973,47638,0],[45978,47638,47637,0],[45978,47637,45983,0],[45983,47637,45979,0],[45980,45979,40917,0],[40917,45979,45991,0],[45981,40911,45982,0],[45981,45982,45983,0],[45979,45981,45983,0],[45981,45980,40912,0],[45987,45978,45983,0],[45987,45983,45982,0],[45987,45982,45984,0],[46018,45986,40910,0],[40911,40910,45982,0],[45985,45984,45986,0],[45986,45984,40910,0],[40910,45984,45982,0],[45985,40921,45984,0],[45972,45987,47636,0],[45987,45972,45978,0],[10574,45974,10573,0],[10573,45974,45971,0],[45971,45974,47636,0],[47636,45974,45972,0],[47640,10562,45988,0],[45988,10626,47640,0],[10626,45988,10629,0],[10626,10629,10631,0],[10631,10629,10630,0],[10631,10632,45989,0],[45989,10632,10624,0],[10624,10632,10623,0],[40913,45991,45990,0],[47639,45975,45990,0],[47639,45990,45991,0],[40916,45990,10562,0],[10562,45990,45975,0],[45992,10540,45995,0],[45992,45995,45994,0],[45994,45995,45993,0],[45994,45993,45874,0],[45994,45874,45942,0],[45874,45993,45873,0],[45873,45993,45995,0],[19040,45992,45994,0],[19040,45994,45942,0],[19040,45942,10580,0],[10580,45942,10581,0],[10581,45942,45941,0],[46001,45879,45880,0],[45998,45997,45999,0],[46000,45999,45880,0],[45880,45997,46001,0],[45880,45999,45997,0],[46001,45997,46002,0],[46002,45997,45998,0],[46006,45998,46003,0],[45998,45999,46003,0],[46003,45999,46004,0],[46003,46004,10528,0],[46001,45878,45884,0],[45878,46001,45996,0],[45996,46001,46002,0],[46006,46003,10527,0],[46006,46005,45998,0],[45998,46005,46002,0],[45888,46002,46005,0],[45888,46005,46007,0],[46007,46005,46006,0],[46007,46006,47661,0],[47661,46006,45889,0],[46009,46008,45795,0],[45795,46008,46010,0],[46009,45785,46008,0],[46008,45785,45784,0],[46008,45789,46010,0],[46011,46009,45795,0],[10589,45785,46011,0],[46011,45785,46009,0],[46012,45757,45758,0],[46012,45758,45830,0],[45830,45758,45760,0],[11311,45756,11310,0],[11310,45756,11312,0],[45830,10618,10619,0],[45830,10619,45763,0],[10633,10643,46013,0],[46013,10643,10609,0],[45761,45764,10647,0],[10647,45764,10621,0],[46013,10609,10655,0],[10655,10623,46013,0],[10633,46013,10623,0],[40912,46014,46015,0],[40911,46015,46016,0],[40911,46016,46018,0],[46015,46017,46016,0],[46018,46016,11444,0],[46018,11444,10557,0],[11550,11520,11549,0],[11549,11520,11539,0],[11539,11538,11549,0],[11547,11549,11538,0],[11443,11437,11446,0],[11446,11437,11500,0],[11545,11544,11551,0],[11545,11551,11509,0],[11545,11509,11552,0],[46020,11517,11263,0],[11263,11323,46020,0],[11513,11537,11514,0],[11514,11515,11513,0],[11511,11513,11515,0],[41216,41215,41212,0],[11484,46021,41213,0],[11485,46021,11484,0],[11552,11509,11508,0],[11916,11259,46023,0],[11259,11292,46023,0],[13097,13126,13079,0],[13097,13079,13125,0],[46024,13126,13097,0],[46024,16766,13126,0],[13061,13062,42724,0],[42724,13062,46025,0],[46025,13062,13063,0],[46025,13063,16781,0],[46028,46027,11213,0],[11213,46027,11212,0],[11933,11934,46028,0],[11933,46028,42735,0],[42735,42734,11933,0],[46036,16606,46031,0],[46036,46031,46032,0],[46032,46031,16599,0],[46032,16599,46033,0],[46032,46033,46034,0],[46034,46033,16736,0],[46032,46034,16733,0],[16732,46034,16731,0],[16731,46034,16736,0],[46030,16606,46035,0],[46030,46035,46029,0],[16606,46036,46035,0],[46030,46029,16608,0],[16608,46029,46877,0],[42726,42727,46039,0],[42726,46039,46037,0],[12379,46038,46039,0],[46039,42727,12379,0],[42723,16768,16770,0],[13133,46040,13131,0],[13133,13128,46040,0],[41446,13057,13058,0],[13058,13067,41446,0],[41240,41241,41238,0],[41413,41411,46041,0],[46041,41418,41414,0],[41443,41439,41414,0],[41443,41414,46042,0],[41449,13052,46043,0],[13053,46043,13052,0],[13083,13123,11951,0],[11197,11196,11784,0],[16779,42724,42722,0],[15651,15660,15652,0],[46044,15660,46047,0],[15662,46044,46045,0],[15662,46045,46051,0],[46051,46045,46054,0],[46046,46045,46044,0],[46046,46044,46047,0],[46047,15660,46049,0],[46047,46049,46048,0],[46048,46049,14877,0],[14877,46049,46050,0],[14877,46050,14875,0],[15632,46050,15650,0],[15650,46050,46049,0],[15650,46049,15651,0],[15651,46049,15660,0],[46048,14878,46046,0],[46046,46047,46048,0],[15661,46044,15662,0],[15662,46051,15663,0],[15663,46051,46052,0],[46052,46051,46053,0],[46052,46053,15664,0],[14881,15664,46053,0],[46053,46051,46054,0],[46052,42649,15663,0],[46054,14879,46060,0],[46057,46711,42639,0],[46057,42639,42638,0],[46055,46056,14880,0],[42638,42637,46055,0],[42637,42635,46055,0],[46055,42635,46056,0],[46058,46059,46068,0],[46068,46059,46070,0],[46068,46069,46058,0],[46058,46069,46057,0],[46057,46069,46711,0],[46057,42638,46058,0],[46058,42638,14880,0],[46058,14880,46059,0],[46059,14880,46054,0],[14880,42638,46055,0],[46059,46061,46070,0],[46060,46059,46054,0],[46054,46046,14879,0],[46059,46060,46061,0],[46061,14879,46062,0],[46063,46062,46073,0],[46063,46073,46064,0],[46063,46064,46071,0],[46071,46064,46065,0],[46065,46064,14895,0],[46065,14895,14896,0],[46065,14896,46066,0],[46710,46066,14897,0],[46068,46067,46069,0],[46068,46070,46067,0],[46067,46070,46071,0],[46067,46071,46065,0],[46071,46070,46063,0],[46063,46070,46062,0],[46062,46070,46061,0],[46066,14896,14897,0],[14879,14878,46062,0],[14878,46072,46062,0],[46062,46072,46073,0],[46073,46072,14876,0],[46073,14876,46064,0],[14887,46074,14888,0],[14888,46074,46906,0],[46906,46074,14837,0],[46906,14837,14836,0],[46074,14838,14837,0],[46074,14887,14886,0],[46074,14886,46075,0],[46075,14886,14874,0],[14874,14871,46075,0],[46079,15188,46076,0],[46079,46077,46078,0],[46079,46078,46080,0],[46080,46078,42653,0],[46080,42653,46081,0],[46081,42653,42652,0],[46081,42652,42651,0],[46076,46077,46079,0],[46076,15188,15187,0],[15187,47490,46076,0],[46482,46079,46080,0],[16727,11964,16728,0],[46085,46083,46084,0],[46202,46085,46086,0],[46086,46087,46088,0],[46088,47225,46089,0],[12359,46091,46092,0],[12359,46092,46093,0],[46093,46092,46095,0],[46093,46095,46094,0],[46197,46095,47226,0],[46197,47226,46096,0],[46096,46175,47220,0],[47220,46175,46180,0],[47244,46179,46174,0],[46174,47247,47244,0],[46178,46097,46176,0],[46195,46178,46176,0],[46195,46176,46098,0],[46098,46176,46099,0],[46189,46099,46100,0],[15830,46100,15832,0],[15835,46102,46162,0],[15835,46162,46619,0],[46624,46105,46161,0],[46145,46260,46144,0],[46144,46260,46106,0],[46144,46106,46107,0],[46107,46249,46108,0],[46108,46249,46109,0],[46110,46109,46158,0],[46640,46264,46247,0],[46640,46247,46330,0],[46639,46330,46111,0],[46111,46331,46112,0],[46340,46341,46156,0],[46156,46341,46113,0],[46156,46113,46118,0],[46118,46113,46114,0],[46115,46907,46114,0],[46118,46117,46653,0],[46121,46120,46122,0],[46132,46122,46123,0],[15815,46124,46127,0],[15815,46127,46125,0],[46127,46124,46644,0],[46127,46644,46129,0],[46127,46129,46125,0],[46125,46129,46128,0],[46128,46129,46126,0],[46126,46131,46130,0],[46130,46131,15852,0],[15852,15848,46130,0],[15815,15814,46124,0],[46124,15814,46133,0],[46124,46133,46123,0],[46123,46133,46132,0],[46152,46134,15814,0],[46133,46134,46136,0],[46136,46134,46152,0],[46134,46133,15814,0],[46122,46132,46121,0],[46653,46156,46118,0],[46653,46119,46156,0],[46156,46119,46121,0],[46121,46119,46120,0],[46132,46133,46135,0],[46135,46136,46137,0],[46635,46137,46138,0],[46635,46138,46139,0],[46139,46138,46155,0],[46139,46155,46140,0],[46140,46155,46141,0],[46140,46141,46634,0],[46636,46623,46630,0],[46630,46142,46631,0],[46143,46146,46144,0],[46633,46144,46107,0],[46144,46146,46145,0],[46145,46624,46161,0],[46145,46146,46624,0],[46631,46142,46143,0],[46146,46142,46624,0],[46105,46624,46147,0],[46105,46147,46148,0],[46148,46150,46149,0],[46151,46620,46622,0],[46151,46622,46141,0],[47500,46151,15812,0],[46137,46136,46152,0],[46138,46152,46154,0],[46154,15814,46153,0],[46154,46152,15814,0],[46136,46135,46133,0],[46138,46154,46155,0],[46154,46153,46155,0],[46141,46155,46151,0],[46151,46155,15812,0],[46153,15812,46155,0],[46132,46135,46121,0],[46907,15955,46117,0],[46114,46907,46117,0],[46114,46117,46118,0],[46674,46156,46121,0],[46674,46121,46157,0],[46673,46157,46137,0],[46673,46137,46642,0],[46642,46137,46635,0],[46137,46157,46135,0],[46135,46157,46121,0],[46110,46158,46264,0],[46104,46103,46160,0],[46104,46160,46159,0],[46159,46160,46232,0],[46103,46619,46160,0],[46102,46101,47238,0],[46102,47238,46162,0],[46162,47238,46163,0],[46231,46163,47239,0],[47239,46165,46164,0],[46233,46165,46166,0],[46166,47246,46167,0],[46167,47246,46168,0],[46168,47227,47228,0],[46170,47225,46087,0],[46087,46086,46171,0],[46171,46086,46085,0],[46087,47225,46088,0],[46166,46165,47246,0],[46172,46173,46174,0],[46173,47227,46168,0],[46168,47246,46173,0],[46173,47246,47247,0],[46173,47247,46174,0],[46172,46175,46096,0],[46096,47226,46172,0],[46175,46174,46180,0],[46180,46174,46179,0],[46172,46174,46175,0],[47227,46173,46172,0],[46099,46176,46177,0],[46099,46177,46100,0],[46100,46177,15832,0],[46179,47244,46178,0],[46178,46194,46179,0],[47219,46193,46182,0],[15179,15675,46182,0],[46182,15675,46183,0],[46184,46185,46186,0],[46186,46185,46187,0],[46186,46187,47182,0],[47182,46187,46188,0],[46188,46604,47189,0],[47189,46604,47188,0],[47188,46604,46189,0],[47187,46192,47185,0],[47185,46192,46190,0],[46981,46190,46983,0],[46983,46191,15828,0],[46983,46192,46191,0],[46191,46192,15829,0],[47188,15829,47187,0],[47187,15829,46192,0],[46187,46185,46605,0],[46605,46185,46193,0],[46195,46194,46178,0],[46097,46178,47244,0],[46195,46098,46194,0],[46605,46196,46194,0],[46605,46193,46196,0],[46194,46196,46179,0],[46179,46196,46180,0],[46182,46184,15179,0],[46095,46197,46094,0],[47221,46096,47220,0],[46096,47221,46197,0],[12359,12358,46091,0],[46091,46198,46089,0],[46198,46205,46199,0],[46086,46199,46202,0],[46202,46200,46201,0],[46201,12354,46082,0],[46082,46203,46201,0],[46202,46201,46085,0],[46085,46201,46203,0],[46085,46203,46083,0],[46199,46086,46198,0],[46198,46086,46088,0],[46198,46088,46089,0],[46089,46090,46091,0],[46091,46204,46198,0],[46207,46205,46206,0],[46207,46206,12356,0],[46207,12356,46210,0],[46205,46207,46208,0],[46206,46204,12361,0],[12361,46204,12358,0],[12358,46204,46091,0],[46204,46205,46198,0],[46199,46205,46208,0],[46199,46208,46202,0],[46202,46208,46200,0],[46200,46208,46209,0],[46209,46210,12355,0],[46209,12355,12362,0],[46200,46209,12354,0],[46082,12354,12352,0],[46201,46200,12354,0],[12354,46209,12362,0],[46208,46207,46209,0],[46209,46207,46210,0],[12353,12352,12354,0],[46211,46213,46083,0],[46211,46082,46212,0],[46212,16554,46468,0],[46468,16554,46467,0],[46227,46214,46215,0],[46215,12018,46216,0],[46215,46216,46218,0],[46218,46216,46217,0],[46218,46217,46219,0],[46219,46217,46237,0],[46219,46237,46220,0],[46219,46220,46221,0],[46222,46221,46168,0],[46168,47228,46222,0],[46222,46223,46219,0],[46219,46221,46222,0],[47228,46169,46222,0],[46222,46169,46223,0],[46223,46225,46224,0],[46224,46171,46084,0],[46224,46084,46083,0],[46224,46083,46229,0],[46229,46083,46213,0],[46085,46084,46171,0],[46170,46225,46169,0],[46169,46225,46223,0],[46225,46170,46087,0],[46225,46087,46171,0],[46225,46171,46224,0],[46218,46226,46227,0],[46218,46227,46215,0],[46226,46218,46219,0],[46223,46224,46226,0],[46226,46224,46228,0],[46226,46228,46227,0],[46227,46229,46214,0],[46214,46229,46213,0],[46224,46229,46228,0],[46168,46221,46167,0],[46167,46221,46234,0],[46167,46234,46166,0],[46166,46234,46233,0],[46165,46233,46230,0],[46165,46230,46164,0],[46164,46230,46231,0],[46231,46252,46603,0],[46221,46220,46234,0],[46255,46233,46234,0],[46255,46234,46235,0],[46235,46234,46236,0],[46236,46234,46220,0],[46236,46220,46237,0],[46237,46217,46239,0],[46239,46217,46238,0],[46239,46238,46258,0],[46258,46266,46240,0],[46240,46241,46242,0],[46263,46270,46243,0],[46243,46244,46245,0],[46245,46244,46329,0],[46246,46245,46247,0],[46261,46246,46247,0],[46247,46158,46261,0],[46625,46248,46249,0],[46250,46249,46107,0],[46253,46106,46251,0],[46251,46260,46252,0],[46252,46231,46251,0],[46231,46230,46251,0],[46251,46230,46253,0],[46254,46250,46253,0],[46230,46233,46253,0],[46254,46253,46233,0],[46254,46233,46255,0],[46256,46242,46478,0],[46240,46242,46257,0],[46242,46256,46257,0],[46240,46257,46258,0],[46258,46236,46239,0],[46239,46236,46237,0],[46235,46236,46257,0],[46257,46236,46258,0],[46235,46256,46255,0],[46255,46256,46259,0],[46255,46259,46254,0],[46254,46259,46625,0],[46254,46625,46250,0],[46250,46107,46106,0],[46250,46106,46253,0],[46251,46106,46260,0],[46252,46260,46232,0],[46232,46260,46161,0],[46161,46260,46145,0],[46109,46249,46248,0],[46246,46261,46262,0],[46246,46262,46245,0],[46245,46262,46243,0],[46261,46248,46262,0],[46263,46262,46479,0],[46263,46479,46478,0],[46263,46243,46262,0],[46247,46264,46158,0],[46261,46158,46248,0],[46238,46217,46216,0],[46258,46238,12019,0],[46238,46216,12019,0],[12019,46216,12018,0],[12018,46265,12017,0],[12017,46265,16551,0],[12018,46215,46265,0],[46265,46215,46214,0],[46469,46214,46213,0],[46265,46214,16551,0],[46240,46266,46267,0],[16497,46267,46266,0],[46240,46267,46241,0],[46242,46241,46269,0],[46242,46269,46478,0],[46478,46269,46263,0],[46263,46269,46268,0],[46263,46268,46343,0],[46343,46268,16502,0],[16515,46269,16501,0],[46267,16501,46241,0],[16501,46269,46241,0],[46342,46244,46272,0],[46336,46273,46274,0],[46274,46317,46316,0],[46276,46275,46298,0],[46298,46294,46334,0],[46115,46278,46116,0],[46116,46278,46279,0],[15953,15954,46292,0],[15953,46292,46320,0],[46320,46292,46327,0],[46291,46297,15901,0],[46291,15901,15900,0],[46282,15901,46283,0],[46284,46285,46288,0],[46288,46285,46304,0],[46288,46304,46286,0],[46286,46303,46290,0],[46287,46303,15912,0],[46288,46286,46744,0],[46742,46289,46290,0],[46303,46287,46290,0],[46290,46287,46742,0],[46286,46290,46289,0],[46283,46284,46282,0],[46297,46291,46281,0],[46293,46294,46298,0],[46334,46294,46277,0],[46277,46294,46278,0],[46278,46294,46279,0],[46279,46294,15954,0],[15954,46294,46292,0],[46327,46292,46280,0],[46291,46280,46281,0],[46280,46325,46327,0],[46293,46295,46280,0],[46280,46295,46281,0],[46281,46295,46300,0],[46281,46300,46301,0],[46281,46301,46296,0],[46296,46285,46283,0],[15901,46297,46283,0],[46283,46297,46296,0],[46296,46297,46281,0],[46292,46294,46293,0],[46298,46275,46299,0],[46305,46301,46759,0],[46308,46759,46302,0],[46303,46286,46306,0],[46306,46286,46304,0],[46309,46304,46285,0],[46283,46285,46284,0],[46296,46305,46285,0],[46304,46309,46306,0],[46303,46306,46307,0],[46301,46305,46296,0],[46305,46759,46308,0],[46305,46308,46285,0],[46285,46308,46309,0],[46307,46306,46302,0],[46302,46306,46309,0],[46302,46309,46308,0],[46293,46299,46295,0],[46299,46300,46295,0],[46299,46293,46298,0],[46299,46275,46310,0],[46299,46310,46300,0],[46300,46310,46319,0],[46314,46319,46313,0],[46313,46319,46318,0],[46318,46676,46311,0],[46318,46311,46312,0],[46312,16508,16507,0],[16508,46471,16510,0],[46314,46313,46895,0],[46314,46895,46315,0],[46314,46315,46319,0],[46319,46315,46301,0],[46301,46315,46759,0],[46301,46300,46319,0],[46318,46319,46317,0],[46317,46274,46318,0],[46318,46274,46676,0],[46316,46310,46275,0],[46310,46316,46319,0],[46317,46319,46316,0],[46680,15953,46320,0],[46680,46320,46321,0],[46321,46320,46322,0],[46321,46322,46323,0],[46323,46322,46324,0],[46322,46320,46324,0],[46324,46325,15898,0],[15898,46325,15899,0],[15899,46325,46326,0],[46291,46326,46280,0],[46280,46326,46325,0],[46324,46327,46325,0],[46327,46324,46320,0],[15954,15961,46279,0],[46272,46244,46271,0],[46272,46271,16513,0],[46272,16513,46328,0],[46328,16513,46471,0],[16513,46271,16512,0],[46245,46329,46330,0],[46330,46329,46342,0],[46330,46342,46111,0],[46338,46332,46679,0],[46679,46333,46335,0],[46679,46335,46334,0],[46298,46334,46276,0],[46276,46334,46335,0],[46337,46333,46679,0],[46337,46679,46332,0],[46276,46335,46336,0],[46336,46274,46316,0],[46336,46316,46275,0],[46335,46333,46336,0],[46336,46337,46273,0],[46341,46339,46677,0],[46341,46677,46278,0],[46341,46278,46115,0],[46112,46338,46340,0],[46338,46112,46332,0],[46112,46331,46332,0],[46338,46339,46340,0],[46340,46339,46341,0],[46113,46341,46114,0],[46114,46341,46115,0],[46245,46330,46247,0],[46342,46272,46331,0],[46342,46331,46111,0],[46332,46331,46328,0],[46329,46244,46342,0],[46328,46273,46332,0],[46332,46273,46337,0],[46271,46244,46243,0],[46263,46343,46270,0],[46270,46343,46344,0],[46270,46344,46271,0],[46271,46344,16512,0],[46468,46211,46212,0],[12352,12014,46082,0],[46082,12014,46212,0],[46203,46082,46083,0],[46211,46083,46082,0],[11974,46354,12005,0],[12005,46354,46345,0],[46348,46346,46347,0],[46348,46347,46349,0],[46350,11989,11980,0],[11980,11989,12003,0],[11990,11989,12194,0],[12194,11989,46350,0],[12194,46350,46349,0],[12194,46349,46347,0],[46350,11980,11979,0],[46350,11979,46351,0],[46350,46351,46349,0],[46349,46351,46352,0],[46349,46352,46348,0],[46348,46352,46353,0],[46353,46345,46346,0],[46353,46346,46348,0],[46351,11978,46352,0],[12208,46355,46354,0],[46354,46355,46345,0],[46345,46355,46346,0],[46354,11974,46357,0],[12206,12207,11972,0],[12206,11972,46356,0],[12206,46356,16585,0],[16585,8875,12204,0],[16585,12204,12206,0],[12207,12208,46357,0],[46357,12208,46354,0],[12207,46357,11972,0],[46356,11972,46358,0],[46356,46358,16585,0],[16595,46358,11971,0],[11972,11971,46358,0],[46346,46355,46359,0],[12209,46359,46355,0],[46359,46347,46346,0],[12194,12195,11990,0],[46360,12193,46362,0],[46362,12193,46361,0],[46362,46866,46797,0],[12193,12210,46361,0],[46363,46360,46362,0],[46362,46361,46866,0],[46206,12357,12356,0],[12356,12357,47490,0],[12355,12356,47490,0],[11975,12005,46345,0],[46364,46345,46353,0],[46352,11978,46353,0],[11975,46345,46364,0],[11977,46365,46446,0],[46446,46365,46366,0],[16550,46366,16549,0],[46470,16549,46367,0],[46367,16549,46374,0],[46367,46374,46375,0],[46375,46377,46376,0],[46371,46376,46378,0],[46368,46378,46397,0],[46903,46369,46370,0],[46378,46368,46373,0],[46378,46373,46371,0],[16528,46371,46904,0],[16528,46904,46372,0],[16528,46372,16529,0],[46373,46368,46369,0],[46371,16527,46376,0],[16549,46366,46374,0],[46374,46366,46365,0],[46376,46377,46378,0],[46378,46377,46777,0],[46378,46777,46380,0],[46380,46777,46379,0],[46397,46380,46381,0],[46381,46382,46383,0],[46383,46382,46767,0],[46391,46384,46385,0],[46391,46385,46386,0],[46386,46761,46391,0],[46391,16539,46392,0],[46392,16539,46387,0],[46392,46387,46388,0],[46749,46766,46751,0],[46749,46751,46389,0],[46389,46751,46390,0],[46390,46751,46753,0],[46390,46753,16536,0],[16536,16541,46390,0],[46782,46390,16541,0],[46398,46392,46388,0],[46398,46388,46393,0],[46394,46393,46395,0],[46395,46370,46396,0],[46396,46370,46369,0],[46369,46368,46396,0],[46381,46394,46397,0],[46397,46394,46396,0],[46394,46381,46383,0],[46396,46394,46395,0],[46393,46394,46398,0],[46394,46383,46767,0],[46394,46767,46398,0],[46398,46767,46773,0],[46773,46384,46391,0],[46398,46773,46392,0],[46392,46773,46391,0],[46380,46397,46378,0],[46388,46766,46393,0],[46386,46385,46760,0],[46760,46385,46399,0],[46399,46400,46401,0],[46783,46784,46402,0],[46402,46784,46435,0],[46404,46403,42781,0],[42781,46403,46437,0],[46404,46727,46403,0],[46403,46727,46435,0],[46431,46405,46406,0],[46409,46406,46430,0],[16457,16456,46407,0],[46407,16456,46408,0],[46412,46414,46409,0],[46409,46414,46410,0],[46407,46408,46430,0],[46430,46408,46412,0],[46430,46412,46409,0],[16456,16491,46408,0],[46408,16491,46411,0],[46408,46411,46412,0],[46414,46412,46413,0],[46413,46756,46414,0],[46414,46756,46410,0],[46410,46756,46401,0],[46412,46411,46725,0],[46412,46725,46413,0],[16457,46407,46415,0],[46415,46788,46416,0],[46416,46787,46417,0],[46417,46418,46741,0],[46741,46418,46734,0],[46741,46734,46736,0],[46740,46422,46428,0],[16458,46415,46429,0],[46429,46415,46416,0],[46424,46421,46429,0],[46424,46429,46428,0],[46424,46428,46422,0],[46424,46422,46423,0],[46423,46422,46730,0],[46423,46730,46425,0],[46423,46425,16486,0],[46424,46423,46421,0],[16459,46425,42793,0],[16459,42793,46426,0],[46426,42793,46836,0],[16459,46426,16485,0],[16485,46427,16484,0],[16484,46427,46593,0],[46417,46428,46416,0],[16458,46429,46421,0],[46415,46430,46788,0],[46430,46415,46407,0],[46430,46406,46788,0],[46788,46406,46405,0],[46431,46432,46401,0],[46401,46432,46410,0],[46410,46432,46409,0],[46409,46432,46431,0],[46409,46431,46406,0],[46401,46783,46431,0],[46431,46783,46402,0],[46433,46434,46770,0],[46770,46434,46785,0],[46385,46400,46399,0],[46401,46400,46783,0],[46403,46435,46434,0],[46433,46436,46441,0],[46441,46436,46445,0],[46445,46774,12004,0],[46439,46438,46442,0],[46439,46442,46444,0],[46439,46444,12133,0],[12133,11985,46440,0],[46440,11985,11997,0],[12133,12132,46439,0],[12131,46439,12132,0],[46440,11997,11996,0],[46440,11996,12133,0],[46433,46441,46437,0],[46437,46441,46438,0],[46438,46441,46442,0],[46444,46443,11985,0],[11985,12133,46444,0],[46443,46444,46442,0],[46443,46442,46445,0],[46445,46442,46441,0],[11983,46443,46445,0],[11983,46445,12004,0],[11976,11977,46446,0],[46446,16559,11976,0],[16559,16553,46447,0],[16557,46447,12015,0],[16557,12015,46448,0],[16559,46447,16558,0],[16558,46447,16556,0],[46449,46459,46451,0],[46449,46451,46450,0],[46450,46451,46456,0],[46456,46451,16543,0],[46452,16544,46453,0],[46453,16544,16528,0],[46453,16528,16529,0],[46453,16529,46454,0],[46454,46456,46455,0],[46455,46452,46453,0],[46453,46454,46455,0],[46452,46455,16543,0],[16543,46455,46456,0],[16544,46452,16542,0],[16542,46452,16543,0],[46456,46454,46450,0],[46450,46454,46458,0],[46450,46458,46449,0],[46457,46458,46454,0],[16531,16532,16530,0],[16532,46458,16530,0],[16530,46458,46457,0],[16529,46457,46454,0],[16532,46465,46458,0],[46449,46463,46459,0],[46459,46460,46461,0],[12032,46461,12033,0],[12033,46460,16495,0],[16495,46460,46462,0],[46462,46460,46463,0],[46463,46460,46459,0],[16495,46462,16534,0],[46473,46464,46461,0],[46473,46461,12032,0],[46461,46464,46459,0],[16532,46466,46465,0],[46465,46466,46463,0],[46463,46466,46462,0],[46465,46463,46449,0],[46211,46468,46213,0],[46213,46468,46469,0],[46468,46467,46469,0],[46469,16551,46214,0],[16551,46469,16552,0],[16552,46469,46467,0],[16549,46470,16547,0],[46470,46902,16526,0],[16512,46344,16514,0],[46471,46312,46311,0],[46312,46471,16508,0],[16513,16510,46471,0],[12030,46477,46473,0],[12030,46473,12031,0],[12031,46473,12032,0],[46473,46477,46464,0],[46464,46477,46475,0],[46464,46475,46474,0],[46476,46474,12028,0],[12028,46474,12029,0],[12029,46474,46475,0],[46451,46459,46474,0],[46474,46459,46464,0],[46451,46474,46476,0],[46477,46894,46475,0],[46478,46479,46259,0],[46259,46479,46625,0],[46625,46479,46248,0],[46248,46479,46262,0],[46478,46259,46256,0],[16547,46470,12021,0],[15189,46480,46481,0],[15612,15611,42651,0],[46480,15189,46080,0],[46080,15189,15670,0],[46080,15670,46482,0],[46481,46480,46483,0],[46481,46483,15611,0],[15611,46483,42651,0],[46080,46081,46480,0],[46480,46081,46483,0],[46483,46081,42651,0],[14915,46484,14857,0],[46485,14857,46486,0],[46485,46486,46487,0],[46487,15206,46488,0],[46487,46488,46489,0],[46487,46489,46485,0],[15237,46489,46488,0],[15208,15237,46488,0],[15237,15208,15236,0],[15236,15208,15235,0],[15235,15208,47486,0],[46494,47486,46505,0],[46494,46505,15209,0],[46494,15209,46490,0],[46494,46490,46492,0],[46490,46491,46492,0],[46492,46491,46493,0],[46493,46491,15231,0],[46493,15232,15233,0],[46493,15233,46492,0],[46492,15233,46494,0],[15235,47486,15234,0],[46505,47486,15208,0],[46484,46486,14857,0],[46484,14915,14858,0],[46484,14858,46495,0],[46495,46496,15640,0],[15640,46496,46497,0],[46497,46496,14859,0],[46497,14859,14860,0],[15640,15639,46495,0],[46495,15639,46484,0],[47487,14861,46498,0],[46499,46501,46500,0],[47487,46500,14862,0],[46499,46500,46498,0],[46498,46500,47487,0],[15278,15279,15281,0],[15278,15281,46502,0],[46502,14851,15278,0],[14858,14915,14922,0],[46496,14858,14859,0],[14859,14858,14922,0],[14859,14922,14850,0],[46503,42702,46504,0],[46503,46504,15207,0],[15207,15206,46503,0],[46503,15206,15205,0],[46504,46505,15207,0],[15207,46505,15208,0],[46506,15276,14861,0],[14861,15276,46507,0],[14861,46507,46498,0],[46508,14842,47481,0],[46508,47481,46499,0],[46498,46508,46499,0],[14842,46508,14848,0],[46509,46507,15276,0],[46507,46509,46498,0],[46498,46509,46508,0],[46508,46509,14848,0],[16348,46510,46511,0],[46514,46511,14841,0],[46512,46514,46513,0],[46512,16341,46511,0],[46512,46511,46514,0],[46511,16341,16348,0],[46515,46513,46516,0],[46515,46516,15765,0],[14935,46517,15763,0],[15763,46517,46518,0],[46518,15779,15763,0],[46518,46529,15777,0],[15777,46529,46532,0],[15775,46532,15785,0],[15785,46519,15786,0],[15786,46519,15788,0],[46530,46522,15754,0],[46519,46520,15788,0],[15788,46520,15755,0],[15785,15762,15775,0],[15765,46523,46515,0],[46523,16342,46515,0],[46525,46528,46526,0],[46527,46526,15932,0],[16342,46524,46700,0],[46524,15767,46525,0],[46525,15767,46528,0],[46529,47309,46533,0],[46520,46519,46521,0],[46521,46533,46530,0],[46530,46531,46522,0],[46519,15785,47310,0],[47310,15785,46532,0],[47310,46532,46533,0],[46533,46532,46529,0],[46543,46535,46547,0],[46535,15755,46520,0],[46530,15754,46534,0],[46534,15754,46547,0],[46534,46547,46535,0],[46530,46534,46521,0],[46520,46521,46535,0],[46535,46521,46534,0],[46536,46543,46552,0],[46552,46544,46545,0],[46552,46545,46537,0],[46552,46537,15792,0],[15792,46537,15803,0],[15803,46537,15802,0],[15802,46537,15736,0],[15736,46537,15737,0],[15737,46537,16028,0],[16028,46537,46545,0],[16027,46548,15738,0],[15738,46548,46538,0],[46538,46540,46549,0],[46549,46540,46539,0],[15742,46539,15741,0],[15750,15741,15751,0],[15741,46539,15751,0],[15751,46539,46540,0],[15751,46540,15752,0],[46541,46548,46542,0],[46547,46542,46543,0],[46552,46543,46542,0],[46552,46542,46544,0],[46545,46544,16027,0],[15753,15752,46540,0],[46547,46546,46542,0],[46542,46546,46541,0],[46546,15753,46541,0],[46541,15753,46540,0],[46546,47303,15753,0],[46540,46538,46541,0],[46538,46548,46541,0],[46542,46548,46544,0],[46544,46548,16027,0],[46539,15742,15740,0],[46539,15740,46549,0],[46549,15740,15739,0],[15739,46550,46549,0],[46549,46550,46538,0],[46538,46550,15738,0],[15756,46536,46551,0],[46536,46552,46551,0],[46551,46552,15792,0],[15804,15802,46553,0],[15980,46554,46556,0],[46556,46554,46555,0],[46554,15979,46555,0],[15974,46555,15979,0],[15980,46556,15981,0],[15976,15981,46556,0],[15855,15856,15973,0],[15855,15973,15994,0],[15855,15994,15998,0],[15855,15998,15999,0],[15998,15994,15995,0],[42642,14812,46557,0],[46557,14812,46558,0],[46557,46558,42644,0],[14812,12056,46558,0],[46558,42643,46559,0],[46559,42643,46560,0],[42644,46558,46561,0],[46562,46566,46563,0],[46563,46566,42631,0],[42644,46561,46564,0],[46563,46564,46562,0],[46558,46559,46561,0],[46559,46567,46565,0],[46565,42613,46566,0],[46566,42613,42612,0],[46566,42612,42611,0],[46565,46566,46562,0],[46565,46562,46559,0],[46559,46562,46561,0],[46566,42611,42631,0],[42610,42631,42611,0],[42613,46565,46567,0],[42613,46567,46568,0],[46568,46569,46577,0],[46577,46569,46571,0],[46571,46569,46574,0],[46571,46574,46570,0],[46570,42767,46571,0],[46571,42767,42765,0],[42762,42767,42763,0],[42763,42767,46575,0],[46575,46576,46845,0],[46845,46576,46572,0],[46573,46574,46587,0],[46587,46574,12061,0],[46575,46570,46576,0],[46572,46576,46573,0],[46570,46575,42767,0],[42613,46568,46577,0],[42614,46577,42615,0],[42614,42615,42616,0],[42615,46577,46571,0],[42765,42764,46571,0],[46571,42764,42615,0],[12059,12060,46578,0],[12059,46578,46560,0],[46560,46578,46567,0],[46567,46559,46560,0],[46567,46578,46568,0],[46568,46578,46579,0],[46568,46579,46569,0],[46569,46579,46574,0],[46578,12060,46579,0],[46579,12060,46580,0],[46574,46580,12061,0],[12061,46580,12060,0],[46580,46574,46579,0],[46581,46582,46589,0],[46589,46582,16464,0],[12059,46560,46581,0],[46581,46560,46583,0],[46581,46583,46582,0],[46582,46583,46584,0],[46584,46583,46722,0],[46584,46722,46719,0],[46584,16465,16464,0],[46584,16464,46582,0],[12059,46581,46585,0],[46585,46586,12061,0],[12061,46586,46587,0],[46587,46586,46835,0],[46587,46835,46588,0],[46588,46835,42796,0],[12062,46588,42796,0],[46834,46590,46833,0],[46833,46590,46589,0],[46586,46590,46835,0],[46586,46585,46581,0],[46581,46589,46586,0],[46592,46427,42794,0],[46593,46591,46831,0],[46593,46831,16460,0],[42795,46591,46592,0],[46592,46593,46427,0],[46427,16485,46426,0],[46591,46593,46592,0],[42795,46834,46591,0],[12064,46594,12065,0],[12065,46594,14808,0],[46594,46595,46596,0],[46596,46595,46789,0],[46596,46789,12066,0],[42664,42666,46597,0],[46597,42666,42687,0],[46598,16354,46599,0],[46600,16357,16390,0],[46600,16390,46601,0],[46599,46602,46598,0],[46598,16353,46703,0],[46598,46703,16354,0],[14826,16351,16364,0],[14826,16364,16350,0],[16350,16364,12046,0],[12045,12046,16364,0],[16351,16352,16363,0],[16363,16352,16353,0],[16363,16353,16368,0],[16368,16353,46598,0],[16368,46598,46602,0],[46602,46601,16362,0],[46599,46601,46602,0],[46603,46252,47495,0],[46619,47495,46160,0],[46160,47495,46232,0],[46232,47495,46252,0],[46231,47239,46164,0],[46100,15830,47188,0],[46100,47188,46189,0],[47188,15830,15829,0],[46099,46189,46604,0],[46604,46187,46605,0],[46605,46194,46098,0],[46605,46098,46604,0],[46604,46098,46099,0],[15832,46101,15834,0],[15835,15834,46102,0],[46101,46102,15834,0],[46607,15836,15835,0],[15836,46607,15824,0],[46607,46606,15824,0],[46616,46104,46159,0],[46616,46159,46617,0],[46617,46608,46149,0],[46148,46149,46608,0],[46608,46159,46105,0],[46608,46105,46148,0],[46159,46608,46617,0],[15821,46610,46611,0],[15817,46611,46612,0],[15816,46612,46614,0],[15816,46614,46613,0],[46613,46614,15810,0],[15810,46614,46150,0],[46612,46611,47499,0],[47499,46611,46610,0],[47499,46615,46616,0],[47499,46616,46617,0],[46616,46615,46609,0],[46615,47499,46610,0],[15817,46618,46611,0],[46611,46618,15820,0],[46611,15820,15821,0],[15820,46618,15819,0],[46610,15821,46975,0],[46610,46975,46615,0],[46616,46609,46104,0],[46104,46609,15823,0],[46103,46606,46607,0],[46606,46103,15823,0],[15823,46103,46104,0],[46103,46607,46619,0],[15835,46619,46607,0],[46150,46621,46620,0],[46620,46151,47500,0],[47500,46150,46620,0],[46621,46148,46147,0],[46622,46620,46623,0],[46623,46620,46147,0],[46621,46147,46620,0],[46141,46622,46636,0],[46636,46622,46623,0],[46624,46623,46147,0],[46624,46142,46630,0],[46624,46630,46623,0],[46250,46625,46249,0],[46109,46110,46626,0],[46626,46110,46627,0],[46110,46675,46632,0],[46632,46675,46641,0],[46632,46641,46628,0],[46628,46641,46629,0],[46629,46636,46630,0],[46629,46631,46628,0],[46631,46632,46628,0],[46631,46627,46632,0],[46631,46143,46627,0],[46627,46143,46626,0],[46143,46633,46626,0],[46626,46633,46108,0],[46626,46108,46109,0],[46107,46108,46633,0],[46629,46641,46634,0],[46634,46641,46140,0],[46141,46636,46629,0],[46141,46629,46634,0],[46140,46641,46139,0],[46139,46641,46637,0],[46139,46637,46642,0],[46642,46637,46638,0],[46638,46639,46673,0],[46673,46639,46111,0],[46330,46639,46640,0],[46640,46675,46264,0],[46264,46675,46110,0],[46139,46642,46635,0],[46157,46673,46674,0],[46156,46674,46340,0],[46340,46674,46112,0],[46642,46638,46673,0],[46123,46646,46124,0],[46124,46646,46643,0],[46124,46643,46644,0],[46644,46643,15857,0],[46129,46644,46652,0],[46126,46129,46647,0],[46126,46647,46131,0],[46646,46123,46662,0],[46646,46662,46645,0],[46645,46662,46657,0],[46657,15859,15858,0],[15858,46645,46657,0],[46643,46646,15857,0],[46646,46645,15857,0],[46644,15857,46651,0],[46651,15857,46650,0],[46651,46649,46652,0],[46652,46649,46647,0],[46652,46647,46129,0],[46131,46648,15852,0],[15852,46648,47473,0],[46648,46649,15854,0],[15854,46649,46650,0],[15854,46650,15999,0],[46652,46644,46651,0],[46119,46654,46120,0],[46120,46654,46656,0],[46120,46656,46655,0],[46662,46655,46656,0],[46662,46656,46657,0],[46657,46656,15859,0],[15859,46656,46658,0],[15859,46658,46659,0],[46659,47504,46967,0],[46660,46967,46665,0],[46665,47504,46661,0],[46661,47504,46659,0],[46659,46667,15859,0],[46655,46662,46122,0],[46122,46662,46123,0],[46655,46122,46120,0],[46119,46653,46663,0],[46663,46664,46666,0],[46661,46666,15862,0],[15862,46665,46661,0],[46666,46658,46668,0],[46659,46658,46661,0],[46661,46658,46666,0],[46665,15861,46660,0],[46967,46660,15860,0],[46967,46667,46659,0],[46119,46663,46654,0],[46654,46663,46668,0],[46668,46663,46666,0],[46654,46668,46656,0],[46656,46668,46658,0],[15863,46666,46664,0],[15863,46664,15956,0],[46664,46669,15955,0],[46117,46669,46653,0],[46653,46669,46663,0],[46663,46669,46664,0],[15863,15862,46666,0],[46670,15970,46671,0],[46671,15971,15860,0],[46671,15860,46670,0],[15972,15964,46672,0],[15966,46672,15965,0],[46111,46112,46674,0],[46111,46674,46673,0],[46337,46336,46333,0],[46639,46637,46640,0],[46637,46639,46638,0],[46637,46641,46675,0],[46637,46675,46640,0],[46328,46471,46273,0],[46273,46471,46311,0],[46273,46311,46676,0],[46676,46274,46273,0],[46338,46678,46677,0],[46334,46678,46679,0],[46679,46678,46338,0],[46338,46677,46339,0],[46677,46678,46277,0],[46334,46277,46678,0],[46277,46278,46677,0],[15895,46321,46323,0],[15867,46321,46682,0],[46680,46321,15867,0],[15896,46323,15898,0],[15898,46323,46324,0],[15898,15897,15896,0],[15869,15868,46681,0],[46681,46682,46321,0],[46681,46321,15895,0],[46684,46683,46682,0],[15865,46683,15941,0],[46683,46684,15941,0],[15941,46684,15940,0],[15940,46684,15870,0],[46682,46683,15867,0],[15867,46683,46685,0],[15865,46685,46683,0],[46687,16374,16373,0],[46687,46690,46688,0],[16375,15950,46688,0],[46688,15950,46687,0],[46692,16373,16389,0],[16389,16373,16372,0],[16373,46692,46687,0],[46687,46692,46690,0],[16375,46688,46689,0],[46689,46688,46691,0],[46688,46690,46691,0],[46691,46690,46692,0],[16389,16372,16385,0],[16355,46599,16354,0],[46697,15766,46693,0],[15780,46693,46694,0],[15780,46694,46696,0],[15766,46695,46693,0],[15780,46696,15779,0],[15779,46696,15763,0],[15763,46696,15764,0],[15782,46697,46693,0],[46526,46527,46698,0],[46700,46699,46701,0],[46701,16345,46700,0],[46700,46524,46699,0],[46524,46525,46699,0],[46699,46525,46698,0],[46525,46526,46698,0],[46701,46699,46702,0],[46701,46702,16394,0],[46701,16394,14830,0],[46699,46698,46702,0],[46702,46698,16394,0],[16394,46698,16395,0],[16395,46698,46527,0],[46703,15930,16354,0],[46703,16396,15930,0],[46704,14898,46706,0],[46706,14898,46705,0],[46706,46705,46707,0],[46706,46707,46715,0],[46715,46707,12049,0],[12049,46707,14823,0],[14823,46707,14824,0],[14900,46704,46708,0],[46708,46704,46712,0],[46708,46712,46713,0],[46708,46713,46709,0],[46709,46713,46711,0],[46709,46711,46069,0],[46709,46069,46067,0],[46065,46710,46709,0],[46709,46710,46708,0],[46709,46067,46065,0],[46065,46066,46710,0],[42639,46711,46714,0],[42639,46714,12050,0],[12050,46714,46715,0],[46704,46706,46712,0],[46713,46712,46714,0],[46713,46714,46711,0],[46712,46706,46715,0],[46712,46715,46714,0],[16406,46716,16407,0],[14816,16407,46716,0],[46723,46719,46718,0],[46718,46719,12058,0],[46718,12058,12057,0],[46718,12057,46720,0],[46718,46720,46717,0],[46717,46720,46721,0],[46717,46721,46716,0],[12055,46721,46720,0],[12058,46719,46722,0],[46718,46717,16406,0],[46718,16406,46723,0],[46723,16406,46764,0],[16406,46717,46716,0],[46413,46725,46724,0],[46724,46725,16453,0],[46724,16453,16537,0],[46738,46727,46726,0],[46726,46792,46733,0],[46733,46792,46732,0],[46735,46732,42806,0],[42806,46732,42791,0],[42791,46732,42778,0],[42791,42778,46793,0],[46726,46727,46792,0],[46792,46727,46404,0],[46792,46404,42779,0],[46419,46728,46420,0],[46728,46789,46729,0],[46729,42793,46730,0],[46729,46730,46728,0],[46728,46730,46420,0],[46419,46731,46735,0],[46787,46418,46417,0],[46734,46418,46737,0],[46734,46733,46732,0],[46732,46735,46734,0],[46734,46735,46736,0],[46735,46731,46736,0],[46733,46734,46737,0],[46737,46418,46738,0],[46738,46786,46402,0],[46402,46435,46738,0],[46738,46726,46737,0],[46737,46726,46733,0],[46727,46738,46435,0],[46736,46731,46741,0],[46741,46731,46740,0],[46740,46731,46739,0],[46740,46739,46422,0],[46422,46739,46730,0],[46730,46739,46420,0],[46740,46428,46741,0],[15910,15883,46742,0],[15910,46742,15923,0],[15923,46742,15911,0],[15885,46743,15884,0],[15884,46743,15883,0],[46742,46743,46289,0],[46743,15885,46289,0],[46289,15885,46286,0],[46286,15885,46744,0],[15908,46744,15885,0],[15908,15885,15886,0],[15887,46284,46288,0],[15887,46288,46744,0],[15887,46744,15908,0],[46745,15923,15911,0],[46746,15914,15915,0],[15911,46746,46745,0],[46745,46746,15920,0],[46745,15920,15916,0],[15914,46746,46742,0],[46742,46746,15911,0],[46389,46748,46749,0],[46749,46748,46750,0],[16534,46747,12035,0],[46751,46766,46388,0],[46751,46388,46387,0],[46752,46751,46387,0],[46752,46387,16539,0],[46752,16539,46753,0],[46752,46753,46751,0],[16536,46753,16540,0],[16494,16536,16540,0],[16540,46753,16539,0],[16539,46391,46761,0],[46761,46754,16538,0],[16538,46754,46724,0],[46724,46754,46413,0],[46413,46754,46755,0],[46756,46755,46760,0],[46401,46756,46399,0],[46756,46413,46755,0],[46755,46754,46760,0],[16538,46724,16537,0],[46754,46761,46760,0],[12030,12031,46757,0],[46757,46307,46302,0],[46307,46757,46765,0],[46765,46758,46303,0],[46758,15912,46303,0],[46757,46302,12030,0],[12030,46302,46472,0],[46759,46315,46472,0],[46759,46472,46302,0],[16360,16362,46601,0],[16360,46601,16390,0],[46756,46760,46399,0],[46386,46760,46761,0],[46762,16470,46763,0],[46763,16470,16455,0],[16402,16471,46762,0],[16402,46762,16467,0],[16467,46762,16468,0],[16468,46762,16469,0],[16469,46762,46763,0],[16402,16467,16403,0],[16403,16467,46890,0],[16403,46890,16404,0],[46764,16466,46723,0],[46764,16409,16404,0],[46764,16404,16466,0],[46307,46765,46303,0],[46765,46757,12031,0],[16534,46750,46747,0],[46747,46750,46748,0],[46749,16533,46766,0],[46766,16533,46395,0],[46749,46750,16533,0],[46395,16533,46370,0],[46370,16533,16531,0],[46393,46766,46395,0],[46776,46775,46771,0],[46771,46775,46774,0],[46771,46774,46769,0],[46436,46770,46769,0],[46769,46384,46771,0],[46776,46771,46768,0],[46768,46772,46767,0],[46436,46433,46770,0],[46769,46770,46384,0],[46384,46772,46771,0],[46768,46771,46772,0],[46772,46384,46773,0],[46767,46772,46773,0],[46770,46385,46384,0],[46445,46436,46774,0],[46436,46769,46774,0],[11981,46776,46382,0],[46382,46381,11981,0],[46381,46380,11981,0],[11979,46379,46777,0],[11979,46777,46778,0],[46779,46778,46777,0],[46779,46777,46377,0],[11978,46778,46780,0],[46781,46375,46374,0],[46380,11982,11981,0],[46768,46382,46776,0],[46775,12004,46774,0],[46782,46747,46748,0],[46782,46748,46389,0],[46389,46390,46782,0],[46400,46385,46770,0],[46400,46770,46785,0],[46400,46785,46783,0],[46435,46784,46434,0],[46434,46784,46785,0],[46785,46784,46783,0],[46404,42781,42779,0],[46405,46786,46787,0],[46787,46416,46405,0],[46405,46416,46788,0],[46786,46405,46431,0],[46786,46431,46402,0],[46786,46738,46418,0],[46786,46418,46787,0],[46419,46420,46731,0],[46731,46420,46739,0],[42792,42807,42808,0],[42792,42808,46789,0],[42808,12066,46789,0],[42803,42801,12068,0],[12068,42801,12069,0],[46790,12070,42799,0],[42799,12078,46791,0],[42799,46791,46790,0],[46790,46791,12071,0],[46790,12071,12070,0],[42800,42776,42805,0],[46845,14805,14803,0],[14805,46845,46572,0],[42778,46792,42779,0],[42778,46732,46792,0],[42778,42779,46793,0],[42780,42787,46793,0],[42780,46793,42779,0],[11995,11997,11998,0],[12001,11986,11987,0],[12001,11998,46794,0],[11998,11997,46794,0],[46796,46363,46797,0],[46796,46797,12142,0],[46866,12142,46797,0],[46363,46795,46360,0],[46360,46795,12194,0],[46363,46362,46797,0],[46796,46798,46363,0],[12197,46795,46798,0],[46363,46798,46795,0],[46799,12191,46800,0],[12191,43217,46800,0],[46800,43217,43218,0],[46800,43218,12140,0],[12140,43218,43219,0],[12140,43219,46801,0],[46801,12139,12140,0],[46799,46866,12192,0],[46802,46804,46803,0],[46804,8888,8867,0],[8867,8866,46804,0],[8866,9305,46804,0],[46804,9305,46803,0],[46803,9305,46805,0],[46805,9305,46806,0],[46806,9305,8865,0],[46806,8865,8890,0],[8890,8865,46807,0],[8865,8864,46807,0],[8829,8828,8894,0],[8829,46807,46808,0],[8864,46808,46807,0],[46807,8829,8894,0],[42968,42972,46865,0],[42968,46865,46809,0],[12161,46809,46865,0],[12161,34665,46809,0],[46809,34665,46810,0],[12139,46801,46811,0],[46811,46801,12223,0],[46814,12107,12108,0],[46812,12158,46813,0],[12158,46812,12156,0],[46813,42971,46812,0],[46826,46815,46816,0],[46816,46821,14784,0],[14784,46821,14789,0],[46816,14784,46817,0],[12093,46818,14781,0],[12093,46819,14794,0],[46819,14781,14780,0],[46819,12093,14781,0],[14784,46818,46817,0],[46814,46830,12106,0],[12106,46830,46828,0],[46814,12108,14787,0],[14787,12108,14788,0],[46814,14787,46815,0],[46815,14787,46820,0],[46821,46816,46820,0],[46820,46816,46815,0],[46821,46820,46822,0],[46821,46822,14789,0],[46822,46820,14787,0],[46823,46816,46817,0],[46823,46817,46824,0],[12098,46825,12096,0],[12094,46817,46818,0],[12094,46818,12093,0],[12092,12093,14794,0],[12104,46828,12152,0],[46828,46827,46829,0],[12102,46829,12101,0],[46825,12101,46824,0],[46824,12101,46823,0],[46823,12101,46826,0],[46826,12101,46829,0],[12101,46825,12098,0],[12098,12100,12101,0],[12102,12103,46829,0],[46829,12103,12152,0],[46829,12152,46828,0],[46829,46827,46826,0],[46826,46816,46823,0],[46826,46827,46815,0],[46815,46827,46830,0],[46830,46827,46828,0],[46830,46814,46815,0],[16461,16460,46831,0],[46831,46591,46834,0],[16461,46831,46832,0],[16461,46832,16462,0],[16462,46832,16463,0],[46832,46831,46833,0],[46589,16464,16463,0],[46832,46833,16463,0],[16463,46833,46589,0],[46834,46833,46831,0],[46835,46834,42795,0],[42795,42796,46835,0],[46834,46835,46590,0],[46574,46573,46576,0],[46576,46570,46574,0],[14805,12062,12063,0],[14805,12063,14806,0],[46836,46595,46837,0],[42794,46426,46836,0],[42794,46836,46837,0],[42794,46837,46838,0],[46592,46838,46839,0],[46838,12064,46839,0],[14801,46840,14802,0],[46842,14801,14796,0],[14801,46842,46840,0],[14802,46840,46843,0],[46843,46844,46575,0],[46575,46844,42763,0],[42763,46844,42756,0],[46841,42756,46844,0],[46843,46840,46844,0],[46844,46840,46841,0],[12127,46846,12135,0],[12128,46846,12130,0],[12130,46846,46847,0],[42809,46847,46848,0],[42809,46848,42775,0],[42774,46848,12086,0],[46848,46847,12086,0],[46849,46850,12245,0],[12245,46850,46851,0],[46851,46850,46852,0],[46851,46852,14778,0],[14777,46852,46853,0],[46853,14782,14783,0],[14782,46853,46850,0],[46852,46850,46853,0],[46850,46849,14782,0],[14782,46849,14781,0],[46853,14783,14786,0],[14786,14776,46853,0],[14776,14777,46853,0],[14786,14783,14784,0],[14780,46849,14779,0],[14779,46849,12533,0],[14779,12533,12243,0],[12199,46854,12147,0],[46854,12146,12147,0],[46855,46841,12074,0],[46855,12074,12444,0],[46855,12444,42755,0],[12443,12444,42482,0],[12443,42482,12442,0],[12442,42482,12075,0],[12442,12075,12460,0],[12460,12441,12442,0],[42754,46857,42753,0],[42754,46856,46857,0],[42753,46857,42769,0],[42769,46857,12317,0],[12318,46857,12319,0],[12319,46857,46856,0],[12319,46856,12320,0],[42754,42753,46858,0],[46858,42753,42759,0],[46858,42759,42761,0],[46858,42761,42766,0],[42754,46858,42757,0],[42751,12542,46859,0],[46859,12542,46860,0],[46859,46860,46861,0],[46861,46860,46862,0],[46861,46862,46863,0],[46863,46862,12412,0],[46863,12412,46892,0],[12412,46862,12541,0],[12541,46862,46860,0],[12539,12540,12414,0],[12539,12414,46860,0],[12539,46860,12542,0],[42751,46859,42749,0],[46864,42622,42612,0],[46864,42612,42614,0],[46864,42614,42616,0],[12154,12105,12153,0],[12106,12105,12154,0],[12154,12156,12106,0],[46814,12106,12107,0],[12107,12106,12156,0],[14788,12108,12109,0],[14773,14788,14774,0],[14774,14788,12109,0],[46865,42972,12159,0],[46866,46361,12192,0],[16571,45610,16569,0],[8884,8885,8878,0],[8878,46867,46868,0],[46868,46869,8883,0],[46868,46867,46869,0],[46869,46867,8876,0],[46867,8878,8877,0],[8885,8886,8879,0],[8878,46868,8884,0],[8884,46868,8871,0],[8883,8871,46868,0],[16563,12008,11970,0],[46870,43197,46871,0],[46871,43197,43214,0],[46871,43214,9326,0],[46870,46871,8830,0],[8869,34669,8887,0],[46872,16671,45569,0],[45569,9961,46872,0],[12009,12008,16561,0],[16561,12008,12007,0],[16561,12007,16562,0],[16589,16587,16588,0],[45606,46873,16677,0],[16677,46873,16678,0],[16678,46873,45608,0],[45606,16677,45603,0],[16575,16660,16663,0],[46875,46876,46878,0],[46878,46876,46877,0],[46877,46876,16608,0],[46876,46875,16610,0],[46875,46878,46874,0],[11230,11294,11295,0],[11230,11295,46880,0],[46880,11295,11319,0],[46880,11319,11228,0],[46880,11228,11229,0],[46881,11231,46882,0],[11306,11311,11309,0],[11218,11219,45771,0],[11827,11830,11828,0],[46883,11846,11873,0],[11845,46884,11846,0],[46884,11845,11844,0],[46885,11863,11871,0],[46885,11871,11847,0],[46885,11847,11846,0],[11846,46884,46885,0],[46887,11818,46886,0],[11839,11250,46887,0],[11816,11841,16789,0],[46877,46029,16735,0],[46888,16604,16602,0],[16609,46876,46888,0],[46888,16602,16609,0],[16733,46036,46032,0],[11818,11820,11838,0],[11818,11838,46886,0],[11838,11820,11840,0],[11247,11844,11911,0],[11247,46885,11844,0],[11844,46885,46884,0],[11244,11915,11236,0],[46889,46780,46365,0],[46365,46780,46781,0],[46365,46781,46374,0],[46365,11977,46889,0],[46375,46781,46377,0],[46377,46781,46779,0],[46781,46780,46779,0],[46779,46780,46778,0],[12104,12153,12105,0],[16481,16479,46890,0],[46890,16479,16466,0],[16465,16466,16479,0],[16467,16482,16481,0],[16467,16481,46890,0],[16475,46725,46411,0],[46557,42641,42642,0],[46891,42626,12322,0],[42608,42607,42645,0],[42608,42645,42631,0],[42631,42645,46563,0],[12313,12314,46863,0],[46861,46863,12314,0],[12313,46863,46892,0],[12312,46893,12411,0],[12411,46893,46892,0],[46892,46893,12313,0],[42472,12395,12477,0],[46894,46895,46896,0],[46896,46895,16507,0],[16507,46895,46313,0],[46318,46312,46313,0],[46313,46312,16507,0],[16505,16506,46896,0],[46894,46896,46475,0],[46896,16507,16505,0],[16521,12029,46897,0],[16521,46897,46900,0],[46900,46898,46901,0],[46901,46898,16520,0],[46898,46899,16503,0],[16506,46897,12029,0],[46900,46897,46898,0],[46897,16504,46899,0],[46897,46899,46898,0],[16517,46899,16504,0],[16503,16524,16520,0],[16520,46898,16503,0],[16522,12026,12027,0],[46476,12025,16543,0],[46476,16543,46451,0],[16529,46372,16530,0],[16530,46372,46903,0],[16530,46903,46370,0],[46902,46470,46367,0],[46902,46367,46375,0],[46375,46376,46902,0],[46902,46376,16527,0],[46903,46904,46373,0],[46903,46372,46904,0],[46903,46373,46369,0],[11978,46780,46889,0],[14891,46905,14833,0],[14835,46905,46906,0],[46906,46905,14891,0],[14835,46906,14836,0],[14888,46906,14889,0],[46907,46909,46908,0],[46908,46909,15864,0],[46908,15864,15956,0],[15955,46907,46908,0],[15773,46910,15772,0],[15772,46910,15776,0],[15772,15776,15965,0],[15800,15990,15989,0],[15965,46672,15964,0],[15730,15729,15805,0],[15730,15805,46912,0],[46912,16040,16009,0],[15730,46912,15731,0],[15805,16040,46912,0],[46913,47465,46914,0],[46915,46914,16084,0],[16084,46914,47465,0],[46915,16065,16066,0],[46915,16066,46916,0],[46914,46915,46916,0],[46916,16067,46914,0],[16084,16065,46915,0],[46927,46917,16319,0],[46917,46923,47316,0],[47316,46923,47315,0],[15743,15744,46920,0],[47314,46920,46918,0],[46919,46918,46920,0],[46919,46920,46922,0],[46919,46922,46921,0],[15743,47315,46923,0],[15743,46923,15742,0],[15742,46923,15740,0],[15740,46923,46926,0],[46929,46926,46925,0],[46929,46925,46930,0],[16320,46925,46927,0],[46927,46925,46926,0],[46930,46925,16320,0],[46930,16320,46924,0],[46927,46926,46917,0],[46926,46923,46917,0],[15740,46926,15739,0],[46926,46929,15739,0],[15739,46929,46928,0],[15138,16027,15738,0],[15138,15738,46928,0],[15138,46928,15139,0],[15139,46928,46929,0],[15139,46929,46930,0],[15130,46931,46924,0],[46924,46931,46930,0],[46931,15131,15133,0],[46931,15133,46930,0],[46932,15747,15746,0],[15746,15750,46932,0],[15749,14956,46922,0],[46922,46920,15749,0],[15749,46920,15744,0],[15749,15744,15746,0],[46933,46939,46921,0],[46921,46939,46919,0],[46919,46939,14959,0],[46919,14959,46918,0],[46918,14959,47318,0],[14959,46939,46934,0],[46937,46935,46933,0],[46937,46933,46936,0],[46936,15302,15303,0],[46936,15303,46937,0],[46937,15303,46938,0],[46937,46938,15593,0],[15305,46938,15303,0],[46934,46939,46935,0],[46935,46939,46933,0],[46940,15592,46948,0],[46941,47294,46950,0],[46950,47294,15355,0],[46950,15355,15354,0],[15353,46942,46943,0],[15353,46943,15352,0],[15357,15352,15359,0],[15359,15352,46943,0],[46944,46952,46945,0],[46945,46952,14991,0],[46945,46953,46944,0],[46944,46953,46946,0],[46947,46946,46965,0],[46947,46965,46966,0],[46949,46947,46948,0],[46949,46948,46941,0],[46941,46950,46949,0],[46949,46950,15354,0],[46949,15354,46951,0],[46951,15354,46942,0],[46951,46942,46952,0],[46951,46952,46944,0],[46947,46949,46951,0],[46947,46951,46946,0],[46946,46951,46944,0],[46945,14991,14987,0],[46945,14987,46954,0],[46945,46954,46953,0],[46953,46954,46957,0],[46956,46964,46955,0],[46965,46946,46955,0],[46955,46946,46956,0],[46953,46957,46946,0],[46946,46957,46956,0],[46954,14988,46957,0],[46957,14988,14989,0],[46957,14989,46956,0],[46956,14989,46958,0],[46958,46963,46964,0],[46959,46960,46966,0],[46966,46960,46961,0],[46966,46961,46940,0],[15595,46961,46960,0],[15595,46960,15596,0],[15596,46960,46959,0],[15596,46959,46963,0],[46958,46962,46963,0],[46963,14964,14963,0],[46963,14963,15596,0],[46963,46962,14964,0],[46956,46958,46964,0],[46964,46963,46959,0],[46964,46959,46965,0],[46964,46965,46955,0],[46947,46966,46948,0],[46948,46966,46940,0],[46966,46965,46959,0],[46665,15862,15861,0],[15995,15997,15998,0],[15997,15993,15992,0],[15990,15798,15985,0],[15995,15996,46967,0],[46967,15993,15995,0],[46131,46647,46649,0],[46649,46648,46131,0],[46650,46649,46651,0],[46968,15807,15806,0],[46968,15806,15841,0],[15840,46969,15818,0],[15818,46970,46971,0],[46618,15818,46971,0],[46969,47475,15818,0],[15818,47475,46970,0],[46970,47475,46991,0],[46970,46991,46985,0],[46985,46991,15725,0],[15708,47502,47501,0],[47201,47236,46974,0],[15708,47501,15709,0],[15709,47501,15710,0],[15820,47502,46975,0],[15822,47497,46976,0],[15822,46975,47497,0],[46975,15821,15820,0],[46975,47502,46977,0],[46975,46977,47497,0],[47502,15708,46977,0],[46977,15708,46978,0],[47209,46980,47192,0],[47209,47192,46981,0],[46981,46982,46190,0],[46981,46983,46984,0],[46981,46984,47209,0],[46970,46985,46986,0],[15711,46987,46988,0],[15711,46988,15712,0],[15712,46988,46989,0],[15711,46986,46987,0],[46986,46985,46990,0],[46990,46985,15725,0],[46990,15844,46986,0],[46986,15844,46987,0],[15157,46989,15156,0],[15844,15722,47493,0],[47493,15722,46992,0],[47039,46994,46993,0],[15154,46993,46994,0],[46993,15154,47493,0],[46995,15713,46996,0],[46996,15712,46995,0],[46997,15704,46998,0],[15704,15705,46998,0],[46999,47001,47000,0],[46999,47000,15721,0],[46999,15721,15169,0],[46999,15169,15168,0],[47000,47001,15378,0],[15378,47001,47002,0],[15470,47002,15167,0],[15167,47001,46999,0],[15167,46999,15168,0],[47006,47007,47004,0],[15226,47004,15255,0],[15226,15255,47005,0],[15257,47021,47005,0],[47005,47021,15226,0],[47007,47006,47009,0],[47008,47009,47215,0],[47008,47215,47199,0],[47008,47199,15173,0],[47008,47007,47009,0],[47006,15223,47009,0],[47009,15223,47217,0],[47218,47217,42699,0],[47218,42699,15215,0],[47004,47010,15255,0],[47011,47010,47012,0],[47011,47012,47013,0],[15401,47012,47003,0],[47012,15401,15400,0],[15400,15399,47013,0],[47013,15399,15383,0],[47012,15400,47013,0],[47016,47013,15383,0],[47016,15383,47014,0],[47014,15383,47015,0],[47015,15384,15253,0],[47015,15253,47014,0],[47013,47016,47011,0],[47011,47016,47017,0],[47011,47017,15255,0],[47011,15255,47010,0],[47016,47014,47017,0],[47017,47014,15254,0],[15254,47014,15253,0],[47017,15254,15255,0],[47012,47018,47003,0],[47003,47018,47008,0],[47003,47008,15381,0],[47012,47010,47018,0],[47008,47018,47007,0],[47018,47010,47007,0],[47004,47007,47010,0],[47019,47020,15227,0],[15227,47020,47021,0],[47021,47020,42698,0],[47020,47023,42698,0],[42698,47023,15212,0],[47020,47019,47023,0],[47023,47019,47176,0],[47023,47176,46491,0],[47023,46491,47022,0],[47022,46491,46490,0],[47022,15212,47023,0],[47024,15723,47025,0],[47025,15723,47027,0],[47027,15724,47026,0],[47026,15724,16072,0],[47027,47026,47025,0],[47025,47029,47024,0],[47026,16073,47058,0],[47058,16073,47028,0],[47029,47058,47030,0],[47029,47030,47031,0],[47029,47031,47032,0],[47033,47051,47052,0],[47033,47052,47034,0],[47034,47035,47050,0],[47050,47035,47168,0],[47050,47168,15148,0],[15148,47168,15147,0],[47047,15149,47036,0],[47463,47042,47037,0],[47037,47042,47038,0],[47037,47038,47040,0],[46994,47040,47041,0],[15474,47041,47044,0],[15474,47044,15153,0],[15153,47044,47038,0],[47043,15150,15151,0],[47040,47044,47041,0],[47038,47044,47040,0],[15150,47043,47463,0],[15151,15152,47043,0],[47043,15152,47038,0],[47043,47038,47042,0],[47039,47045,47040,0],[47045,47046,47037,0],[47037,47046,47036,0],[47036,47046,47047,0],[47047,47032,47048,0],[47048,47032,47051,0],[47048,47051,47033,0],[47032,47049,47029,0],[47026,47058,47025,0],[47025,47058,47029,0],[47024,47029,47049,0],[47045,47049,47046,0],[47049,47032,47046,0],[47032,47047,47046,0],[15149,47463,47036,0],[47047,47048,47050,0],[47048,47033,47050,0],[47034,47050,47033,0],[47051,47032,47059,0],[47051,47059,47057,0],[47051,47057,47052,0],[47052,47057,47164,0],[47164,47053,47054,0],[47054,47053,16066,0],[16066,16063,47054,0],[47052,47164,47034,0],[47055,47028,16069,0],[47055,16069,47056,0],[47056,16069,16068,0],[47056,16067,46916,0],[46916,47057,47059,0],[47164,47057,46916,0],[47164,46916,47053,0],[16069,47028,16071,0],[47028,47055,47058,0],[47030,47058,47059,0],[47031,47030,47059,0],[47031,47059,47032,0],[47058,47055,47059,0],[47027,15723,15724,0],[46992,47039,47493,0],[47493,47039,46993,0],[47060,15150,16050,0],[47060,16050,47061,0],[47061,47068,47062,0],[15458,47064,47063,0],[47063,47064,47065,0],[47065,47064,47062,0],[47062,47064,47060,0],[47060,47064,15458,0],[47065,47062,47066,0],[47066,47062,47067,0],[47067,16049,16048,0],[16048,16049,16046,0],[16045,16046,16049,0],[16049,47067,47068,0],[47062,47068,47067,0],[47067,16048,16047,0],[47067,16047,15435,0],[47066,47067,15435,0],[47060,47061,47062,0],[47069,16068,47070,0],[15731,47070,16070,0],[47069,47070,47071,0],[47071,47070,15731,0],[47071,15731,16010,0],[47072,15465,15464,0],[47072,15463,15468,0],[15463,47072,15464,0],[15468,15467,47072,0],[15480,15482,15475,0],[47073,15425,47074,0],[47074,15527,15509,0],[47074,15509,47073,0],[47075,15524,47093,0],[47075,47093,47076,0],[47075,47076,47077,0],[47077,47076,47079,0],[47079,47076,47078,0],[47079,47078,47086,0],[47079,47086,47084,0],[47084,47086,47085,0],[47085,47086,47080,0],[47081,47080,47082,0],[15523,47075,47151,0],[47151,47075,47077,0],[47083,47151,47084,0],[47083,47084,47085,0],[47079,47084,47077,0],[47077,47084,47151,0],[47095,47086,47087,0],[47087,47078,15539,0],[15539,47078,15538,0],[15538,47078,47089,0],[15538,47089,47088,0],[47088,47089,47091,0],[47088,47091,47090,0],[15536,47090,15535,0],[15534,15535,15533,0],[15535,47090,47091,0],[47451,47091,47092,0],[47451,47092,47093,0],[47093,47092,47076,0],[47091,47089,47092,0],[47092,47089,47078,0],[47092,47078,47076,0],[47078,47087,47086,0],[15535,47091,15533,0],[15533,47091,47094,0],[47091,47451,47094,0],[15536,15561,47090,0],[15539,15540,47087,0],[47087,15540,47095,0],[47086,47095,47097,0],[47086,47097,47096,0],[47096,47097,47098,0],[47098,47097,15543,0],[15542,15543,15541,0],[15543,47097,15541,0],[15541,47097,47095,0],[15541,47095,15540,0],[47099,47101,47100,0],[47100,47101,47080,0],[47100,47080,47086,0],[47100,47086,47096,0],[47100,47096,47099,0],[47080,47101,47082,0],[47103,47102,47104,0],[47105,15053,47364,0],[15053,47105,47106,0],[15058,16197,15547,0],[15547,16197,16196,0],[15547,16196,47108,0],[47108,16196,47107,0],[15547,47108,15546,0],[47108,47107,15546,0],[15546,47107,15545,0],[15545,47107,47109,0],[47109,47107,47105,0],[47105,47107,47106,0],[47105,47104,47109,0],[15545,47109,47110,0],[47109,47104,47102,0],[47109,47102,47110,0],[15544,47110,47098,0],[47098,47110,47099,0],[47110,47102,47101,0],[47110,47101,47099,0],[47101,47102,47111,0],[47111,47082,47101,0],[47102,47103,47111,0],[47111,47367,47112,0],[47113,15037,47112,0],[47112,15037,47111,0],[47112,15036,47114,0],[47112,47114,47113,0],[47113,47114,15048,0],[15036,15045,47114,0],[15045,47384,47115,0],[15045,47115,47114,0],[47114,47115,15048,0],[47115,15044,15042,0],[15042,15049,47115,0],[47115,47384,15044,0],[15038,47121,47126,0],[47127,47118,47116,0],[47127,47116,47085,0],[47085,47116,47083,0],[47083,47116,47152,0],[47152,47116,47117,0],[47117,47116,47118,0],[47117,47118,47388,0],[47390,47388,47119,0],[47389,47123,47120,0],[47120,15331,47389,0],[47119,47388,47121,0],[47119,47121,47122,0],[47119,47122,15040,0],[47123,15040,47124,0],[14997,47387,47128,0],[47128,47387,15332,0],[47128,15332,47124,0],[47124,15332,47120,0],[47124,47120,47123,0],[47123,47389,15040,0],[15040,47389,47119,0],[15333,15332,47125,0],[47125,16257,15334,0],[47125,15334,15361,0],[47118,47126,47388,0],[47388,47126,47121,0],[47118,47127,47126,0],[15038,47126,47081,0],[47081,47126,47127,0],[47081,47127,47080,0],[47080,47127,47085,0],[15038,47122,47121,0],[15040,15041,47124,0],[47124,15041,47128,0],[47131,15370,15368,0],[47131,15368,47129,0],[47129,15368,15365,0],[15365,15368,15366,0],[15365,15410,47129,0],[47129,15410,47130,0],[47129,47130,47131,0],[15370,47131,15312,0],[47132,15323,47484,0],[15312,47131,47132,0],[15505,15504,15102,0],[15100,15102,15104,0],[47133,15101,15493,0],[47133,47476,47134,0],[47133,47134,47136,0],[47136,47134,16093,0],[16093,47134,16092,0],[47133,47136,47135,0],[16101,47135,47136,0],[16093,16092,47137,0],[47137,16092,47138,0],[47139,47140,16274,0],[47453,16274,47140,0],[47453,47140,15110,0],[15110,47140,47138,0],[15110,47138,16090,0],[16092,16090,47138,0],[16103,16093,47137,0],[16103,47137,47141,0],[47139,47141,47140,0],[47140,47141,47138,0],[47138,47141,47137,0],[16103,47141,16105,0],[47142,47450,47143,0],[47143,47450,16098,0],[15560,47144,15568,0],[15562,47144,15560,0],[15088,47145,15086,0],[47145,47147,47146,0],[47146,47147,47148,0],[47148,16094,47146,0],[16094,16095,47146,0],[47146,16095,47149,0],[16095,16101,47149,0],[47149,16101,16096,0],[47149,16096,16099,0],[16099,16096,16142,0],[47135,16094,15098,0],[15098,16094,47148,0],[47146,47149,47145,0],[47145,47149,15086,0],[15086,47149,16100,0],[16100,47149,16099,0],[47145,15088,47147,0],[47147,15088,15089,0],[47147,15089,15090,0],[15090,15095,47147,0],[47147,15095,47452,0],[47152,47117,15416,0],[15416,47117,15520,0],[15520,47390,47150,0],[15413,47150,15330,0],[15413,15330,15329,0],[15523,47151,15522,0],[15522,47151,47152,0],[47152,47151,47083,0],[15007,15016,16218,0],[15338,15360,47153,0],[15335,47155,47154,0],[47154,47155,15346,0],[15346,47155,47156,0],[47156,47155,14995,0],[15346,47156,15348,0],[14993,14992,15353,0],[15353,14992,14991,0],[15353,14991,46952,0],[47155,15334,14995,0],[15334,16257,14995,0],[16257,47125,14996,0],[47065,47066,47157,0],[47157,15433,47158,0],[47063,47065,47157,0],[47158,15433,15479,0],[15459,47158,15479,0],[15459,15457,47158,0],[16075,47459,47162,0],[16075,47162,47159,0],[47160,47159,47162,0],[47160,47161,16058,0],[16058,47161,16060,0],[16060,47161,16061,0],[16061,47161,47160,0],[16061,47160,16062,0],[16062,47160,47162,0],[16062,47162,47163,0],[16060,16056,16058,0],[47164,47167,47034,0],[47034,47167,47035,0],[47168,47035,47165,0],[47163,47165,47166,0],[47163,47166,47167,0],[47167,47166,47035,0],[47035,47166,47165,0],[15147,47168,16076,0],[15147,16076,15146,0],[16075,16076,47459,0],[47164,47054,47167,0],[47163,47167,16062,0],[47163,47459,47165,0],[47174,15315,47170,0],[47174,47170,47169,0],[47169,47170,15311,0],[47169,15311,47484,0],[47172,47173,15322,0],[47172,15322,47277,0],[47172,47277,47171,0],[47172,47171,47483,0],[47169,47173,47485,0],[47169,47485,47174,0],[15315,47174,47254,0],[15315,47254,15316,0],[15316,47254,15321,0],[47483,47173,47172,0],[15311,47170,15312,0],[15312,47170,15313,0],[15313,47170,15315,0],[47131,47175,47132,0],[47175,47131,47130,0],[15411,15324,47175,0],[47132,47175,15324,0],[15228,15229,47019,0],[47019,15229,47176,0],[47019,15227,15228,0],[46491,47176,15229,0],[46491,15229,15231,0],[15706,46973,47178,0],[46972,15706,47178,0],[46973,15706,47237,0],[47237,15706,15718,0],[15718,15706,15705,0],[15718,15705,15679,0],[15679,15705,15704,0],[46973,47177,47178,0],[46972,47178,46979,0],[46972,46979,46978,0],[46972,46978,15708,0],[47178,47177,47202,0],[47192,47202,47179,0],[47190,47180,47191,0],[47191,47180,47181,0],[47191,47181,46982,0],[46982,47181,47186,0],[47182,47193,46186,0],[47183,46184,46186,0],[47182,46188,47184,0],[47182,47184,47186,0],[47186,47184,47185,0],[47185,47184,47187,0],[47187,47184,47188,0],[47188,47184,47189,0],[47185,46190,47186,0],[47186,46190,46982,0],[47190,47191,47192,0],[47190,47192,47179,0],[46982,46981,47191,0],[47202,47192,46980,0],[47202,46980,46979,0],[47202,46979,47178,0],[46981,47192,47191,0],[47186,47181,47182,0],[47182,47181,47193,0],[47181,47180,47193,0],[47193,47180,47194,0],[47193,47194,47183,0],[47183,47194,47195,0],[47195,47196,15676,0],[47196,15176,15676,0],[15175,15176,47197,0],[47203,47197,47196,0],[47196,47197,15176,0],[47198,47213,47199,0],[47213,47198,47197,0],[15175,47197,47198,0],[47197,47203,15683,0],[15683,47200,15682,0],[47236,47201,46973,0],[46973,47201,47177,0],[47202,47208,47179,0],[47190,47179,47180,0],[47494,47203,47196,0],[47206,47180,47179,0],[47180,47206,47494,0],[47194,47180,47196,0],[47201,46974,47207,0],[15683,47205,47197,0],[47197,47205,47213,0],[47199,47212,15174,0],[47203,47204,15683,0],[15683,47204,47200,0],[47200,47204,47206,0],[47207,47200,47208,0],[47201,47208,47177,0],[47177,47208,47202,0],[47201,47207,47208,0],[15682,47200,47207,0],[47179,47208,47200,0],[47193,47183,46186,0],[46979,46980,47209,0],[47209,46984,15825,0],[47209,15825,47210,0],[47210,46978,46979,0],[47210,46979,47209,0],[46984,46983,15827,0],[47212,15698,15174,0],[15698,47212,47205,0],[47212,47199,47213,0],[47213,47205,47212,0],[15178,15175,47214,0],[47216,47214,47217,0],[47217,47214,47009,0],[47009,47214,47215,0],[15178,47214,47216,0],[15178,47216,15610,0],[15610,47216,47217,0],[47217,47218,15610,0],[15610,47218,15222,0],[15222,47218,15215,0],[15675,47241,46183,0],[46183,47222,47219,0],[47219,47220,46181,0],[46181,47220,46180,0],[47220,47219,47221,0],[47221,47222,46197,0],[46197,47222,46094,0],[47219,47222,47221,0],[47222,47241,46094,0],[12359,46093,47223,0],[46183,47219,46182,0],[47242,47224,46092,0],[47242,46092,46090,0],[47242,46090,47492,0],[47492,46090,46089,0],[47492,46089,47225,0],[46090,46092,46091,0],[47226,47224,47243,0],[47226,47243,47227,0],[47227,47243,47228,0],[47228,47229,46170,0],[46170,47229,47225,0],[46170,46169,47228,0],[46172,47226,47227,0],[42699,47231,47230,0],[47230,47231,47232,0],[47232,47233,47234,0],[42675,42674,47234,0],[47234,42674,47232,0],[47232,42674,47230,0],[42673,15217,47230,0],[47230,15217,42699,0],[42695,47235,47233,0],[47234,47233,47235,0],[47233,47232,42697,0],[42697,47232,47231,0],[15214,47231,42699,0],[47236,46973,47237,0],[47237,15718,15678,0],[47237,15678,47236,0],[47236,15678,15677,0],[47236,15677,46974,0],[46177,46176,47240,0],[46177,47240,47238,0],[47238,47240,47239,0],[47239,46163,47238,0],[46177,47238,15832,0],[15832,47238,46101,0],[47496,46163,46603,0],[46231,46603,46163,0],[47206,47179,47200,0],[15181,15182,46093,0],[46093,15182,47223,0],[15181,46093,46094,0],[15181,46094,47241,0],[47241,47222,46183,0],[47224,47242,47243,0],[47243,47242,47229,0],[47243,47229,47228,0],[46097,47244,47245,0],[46097,47245,46176,0],[47240,46176,47245,0],[47240,47245,47239,0],[47239,47245,46165,0],[47245,47244,46165,0],[46165,47244,47247,0],[46165,47247,47246,0],[15243,47248,47249,0],[15264,47249,15265,0],[47251,47252,15319,0],[15319,47252,47258,0],[47251,15319,47253,0],[47251,47253,47250,0],[47250,47253,15321,0],[47254,47250,15321,0],[47255,47250,47254,0],[47256,47255,47483,0],[47256,47483,47171,0],[47256,47171,47257,0],[47257,47171,47278,0],[47255,47256,47250,0],[47250,47256,47251,0],[47251,47257,47252,0],[47258,47252,15320,0],[47252,47257,47278,0],[47256,47257,47251,0],[15287,15291,47259,0],[47259,15291,47260,0],[15601,47260,15291,0],[15290,47262,47261,0],[15290,47261,15294,0],[47262,15290,15289,0],[47284,47262,47283,0],[47283,47262,15289,0],[15295,47261,47266,0],[47263,47266,47264,0],[47265,15599,15598,0],[47265,15598,47264,0],[47264,15598,47263,0],[15295,47266,15296,0],[47266,47263,15296,0],[15296,47263,47267,0],[47267,47263,15598,0],[47267,15598,47268,0],[47268,15598,15299,0],[47267,47268,15298,0],[15298,47268,15299,0],[15599,47265,15301,0],[15301,47265,47269,0],[47265,47264,47269,0],[47269,47264,47271,0],[47269,47271,47270,0],[47270,47271,47272,0],[47270,47272,47273,0],[15305,15304,47273,0],[47273,15304,47270,0],[15304,15301,47270,0],[47270,15301,47269,0],[47273,47280,47292,0],[47292,47280,15306,0],[15306,47280,47274,0],[15306,47274,15307,0],[15307,47282,15308,0],[15308,47282,47275,0],[15308,47275,47276,0],[15310,47277,15322,0],[47171,47277,47278,0],[47277,47276,47278,0],[47277,15310,47279,0],[47277,47279,47276,0],[47279,15309,47276,0],[47276,15309,15308,0],[47264,47266,47271,0],[47266,47261,47271,0],[47272,47271,47281,0],[47272,47281,47280,0],[47280,47281,47274,0],[47261,47262,47271,0],[47271,47284,47281,0],[47281,47284,47283,0],[47281,47283,15307,0],[15307,47283,47282,0],[47271,47262,47284,0],[15335,15336,15361,0],[47278,47276,15288,0],[15288,47276,47275,0],[15288,47275,47282,0],[47282,47283,15288,0],[15288,47283,15289,0],[15601,15606,47260,0],[47260,15606,47285,0],[47260,47285,47259,0],[47259,47285,15320,0],[15320,47285,15273,0],[47285,15606,15292,0],[47285,15292,15273,0],[14952,47286,16338,0],[47288,14939,14938,0],[47288,14938,47488,0],[47488,14938,14937,0],[47488,14937,47287,0],[47287,46516,47489,0],[46513,47489,46516,0],[47287,14937,14936,0],[47287,14936,46516,0],[46516,14936,14935,0],[14939,47288,14841,0],[14841,47288,46514,0],[14841,46511,47289,0],[14910,47289,16349,0],[16349,47289,46510,0],[46510,47289,46511,0],[47290,47480,14951,0],[47290,14951,14950,0],[14843,47482,14842,0],[14843,47480,47482,0],[47482,47480,47290,0],[47274,47281,15307,0],[47280,47273,47272,0],[47292,47293,47295,0],[47291,47292,47294,0],[47294,47292,47295,0],[47294,47295,15355,0],[15355,47295,15356,0],[47294,46941,46948,0],[47294,46948,47291,0],[47291,46948,15592,0],[15343,15356,47296,0],[47296,15356,47295,0],[47295,47293,47296,0],[15590,47297,47296,0],[47296,47297,15343,0],[14928,47298,14929,0],[14929,47298,14930,0],[14930,47298,47299,0],[47301,47299,47300,0],[47301,47300,47308,0],[47308,47302,47303,0],[46522,47303,15754,0],[47299,15747,47300,0],[47300,15747,47304,0],[47300,47304,47305,0],[47305,47302,47308,0],[47305,47308,47300,0],[47305,47304,46932,0],[14932,47307,46531,0],[14930,47299,47306,0],[47306,47299,47301,0],[47306,47301,47307,0],[47307,47301,47308,0],[47308,46522,46531,0],[46522,47308,47303,0],[47307,47308,46531,0],[46531,46530,47309,0],[47309,46530,46533,0],[46519,47310,46521,0],[46521,47310,46533,0],[47309,14932,46531,0],[47298,15748,47311,0],[47311,15748,15747,0],[15747,46932,47304,0],[15747,47299,47311,0],[47311,47299,47298,0],[46918,47318,47314,0],[47314,47315,15743,0],[47316,47315,47312,0],[47316,47312,47317,0],[46917,47316,47317,0],[16318,47317,16316,0],[16316,47317,47313,0],[47317,16319,46917,0],[47314,15743,46920,0],[47315,47314,47318,0],[47318,47312,47315,0],[14966,14990,47319,0],[14966,47319,14967,0],[14967,47319,14968,0],[47319,14990,47327,0],[47320,16310,47321,0],[47321,16310,16309,0],[47321,16309,16308,0],[47324,47326,47322,0],[47322,47326,14969,0],[47322,14969,47323,0],[47322,47323,14968,0],[14968,47319,47322,0],[47322,47319,47324,0],[47321,47327,47320,0],[47321,16308,47327,0],[47327,16308,47324,0],[16308,47325,47324,0],[47324,47325,47326,0],[47326,47325,14971,0],[47327,16311,47320,0],[47325,16307,14971,0],[15116,15452,16286,0],[16286,15452,47328,0],[47332,15117,47329,0],[47329,15117,15118,0],[15119,16334,47330,0],[47330,16334,47329,0],[47329,16334,47331,0],[47329,47331,47332,0],[47328,47332,16333,0],[16333,16332,47328,0],[47328,16332,16286,0],[16335,16328,47333,0],[16328,14967,47333,0],[47335,47334,47323,0],[47335,47323,16329,0],[47335,16329,15120,0],[15120,16329,47336,0],[16055,47336,16331,0],[47336,16056,15120,0],[16329,16330,47336,0],[47336,16330,16331,0],[47337,47335,47338,0],[47338,16057,47337,0],[16082,47338,15120,0],[15120,47338,47335,0],[15072,16227,47443,0],[15072,47443,16229,0],[47442,15072,16229,0],[16226,47339,47340,0],[47340,47341,47343,0],[16230,47343,47341,0],[16230,16224,47343,0],[47341,47340,47339,0],[16222,47341,16225,0],[16225,47341,47339,0],[16225,47339,16226,0],[16226,47340,15071,0],[15071,47340,47342,0],[15071,47342,15070,0],[15070,47342,15069,0],[47342,47340,47343,0],[47346,47343,16224,0],[47346,16224,47344,0],[15069,47345,15068,0],[15068,47345,47435,0],[47345,15069,47346,0],[15069,47342,47346,0],[47346,47342,47343,0],[16233,16232,47347,0],[47347,16232,47348,0],[47347,47348,47349,0],[47349,47348,16164,0],[16164,16166,47349,0],[47347,47349,47350,0],[47347,47350,16158,0],[16180,47350,47349,0],[47348,16232,16164,0],[16232,47446,16164,0],[15056,47351,47357,0],[15056,47357,15055,0],[15055,47357,15054,0],[47351,16159,47352,0],[15024,47352,47353,0],[15024,47353,16215,0],[16215,47353,47355,0],[47354,47353,16160,0],[16160,47353,47352,0],[16160,47352,16159,0],[16215,47355,47415,0],[47415,47355,47356,0],[47356,47427,15022,0],[15022,15023,47356,0],[47356,15023,47415,0],[47352,15024,47351,0],[15054,47357,15025,0],[15054,15025,15026,0],[15054,15026,47358,0],[15026,15052,47358,0],[15025,47357,15024,0],[15024,47357,47351,0],[15028,47359,15051,0],[15051,47359,47365,0],[15051,47365,47362,0],[47104,47362,47363,0],[47104,47363,47103,0],[47104,47105,47362,0],[47362,47105,47364,0],[47362,47364,15051,0],[47359,47369,47365,0],[47362,47365,47366,0],[47362,47366,47367,0],[47367,47366,47368,0],[47359,47360,47369,0],[47365,47369,47366,0],[47366,47370,47368,0],[47368,47370,15035,0],[15035,47370,47371,0],[15035,47371,15034,0],[15034,47371,47361,0],[47361,47371,47360,0],[47371,47370,47369,0],[47371,47369,47360,0],[47369,47370,47366,0],[47372,47373,16205,0],[16205,47438,47372,0],[15018,47372,16204,0],[47372,47438,16204,0],[16217,47440,16203,0],[16203,47440,47374,0],[47378,47375,47428,0],[47378,47428,47376,0],[47376,47428,47414,0],[47376,47414,47377,0],[47377,15023,47376,0],[47375,47378,47382,0],[47382,47378,47379,0],[47379,47380,47382,0],[47382,47380,47374,0],[47374,47380,15021,0],[47374,15021,16203,0],[47376,47381,47378,0],[47381,47379,47378,0],[47384,15035,47383,0],[47383,15035,47385,0],[15035,15034,47385,0],[47385,15034,47386,0],[47385,47386,15002,0],[47125,15361,15333,0],[47387,14996,47125,0],[47387,47125,15332,0],[47390,15520,47388,0],[15331,15330,47389,0],[15330,47390,47119,0],[47390,15330,47150,0],[15330,47119,47389,0],[47391,14979,16282,0],[47391,16282,14976,0],[14976,16282,16281,0],[14977,47391,14976,0],[14975,14976,16281,0],[47392,16267,47399,0],[47392,47399,47393,0],[47393,47400,47405,0],[47405,47400,47403,0],[47396,47394,47395,0],[47395,16109,16108,0],[47395,16108,47396,0],[16109,47395,16110,0],[47395,47394,16111,0],[16111,47394,47397,0],[15074,16112,47400,0],[15076,16292,16291,0],[16291,16292,47398,0],[47398,16292,47393,0],[47393,16292,47400,0],[47398,47399,16291,0],[47393,47399,47398,0],[47401,47400,47397,0],[47397,47400,16112,0],[47403,47400,47401,0],[47404,47392,47393,0],[47402,47405,47403,0],[47393,47405,47404,0],[47403,47406,16269,0],[47403,16269,47402,0],[47403,47401,47406,0],[16276,47406,16273,0],[16273,47406,47396,0],[16273,47396,16271,0],[16271,47396,16108,0],[47396,47406,47394,0],[47394,47406,47401,0],[47397,47394,47401,0],[16132,47407,16135,0],[16135,47407,16118,0],[16107,16136,16116,0],[16116,16136,16118,0],[16119,16118,47407,0],[16144,47408,15552,0],[15551,47408,15062,0],[15551,15062,47409,0],[15550,47409,15549,0],[16330,14970,16334,0],[16334,14970,47331,0],[14970,14972,16333,0],[16333,47331,14970,0],[15117,47332,15452,0],[47328,15452,47332,0],[16266,16290,47410,0],[16267,47410,47399,0],[47410,16267,16266,0],[16298,16300,16299,0],[16299,16300,16295,0],[16211,16212,16209,0],[16209,16212,47417,0],[16209,47417,16208,0],[16208,47417,47413,0],[16208,47413,47411,0],[16208,47411,16207,0],[16207,47411,47412,0],[47412,47411,47375,0],[47438,47412,47382,0],[47382,47412,47375,0],[47413,47429,47414,0],[47415,47418,47416,0],[47415,47416,16215,0],[47415,47377,47418,0],[47429,47417,47436,0],[47436,16213,47418,0],[47436,47418,47429,0],[47429,47413,47417,0],[47439,16207,47412,0],[16209,16210,16211,0],[47419,47420,16202,0],[16202,47420,47423,0],[16202,47423,47426,0],[47423,47420,47421,0],[47421,47420,47422,0],[47421,47422,47427,0],[47427,47422,15022,0],[47422,47420,15021,0],[15021,47420,47419,0],[47354,16161,47425,0],[16161,47424,47425,0],[16172,47426,16162,0],[16172,47448,47426,0],[47353,47354,47355,0],[47355,47354,47356,0],[47354,47425,47356,0],[47356,47425,47427,0],[47423,47421,47424,0],[47425,47424,47427,0],[47427,47424,47421,0],[47414,47428,47413,0],[47413,47428,47411,0],[47411,47428,47375,0],[47414,47429,47377,0],[47377,47429,47418,0],[15066,16189,47430,0],[47430,16189,16157,0],[47431,16194,16156,0],[16156,16194,16190,0],[16156,16155,15063,0],[16156,15063,15081,0],[16156,15081,16157,0],[47432,47435,16158,0],[47347,47433,47434,0],[16231,47434,47344,0],[47434,47433,47344,0],[47344,47433,47435,0],[47435,47433,16158,0],[15066,47430,15065,0],[16158,47433,47347,0],[47347,47434,16233,0],[47363,47362,47367,0],[47111,47103,47363,0],[47363,47367,47111,0],[16212,16213,47436,0],[47436,47417,16212,0],[16206,47373,15017,0],[16206,15017,47437,0],[47373,16206,47439,0],[47373,47439,16205,0],[47439,47412,16205,0],[16205,47412,47438,0],[47374,47440,47382,0],[47382,47440,47438,0],[47442,16133,16134,0],[16134,15073,15072,0],[16112,15073,47397,0],[47397,15073,16111,0],[16111,15073,16134,0],[15072,47442,16134,0],[15009,15013,16219,0],[16207,47437,16208,0],[16225,47443,16228,0],[16228,47443,16220,0],[16220,47443,47441,0],[47444,15548,15549,0],[47445,47444,15549,0],[15062,47445,47409,0],[47409,47445,15549,0],[47446,16201,47447,0],[16163,16164,47447,0],[47446,47447,16164,0],[47448,16163,47447,0],[47448,47447,47426,0],[16200,16202,16201,0],[16201,16202,47447,0],[16202,16200,47419,0],[16215,16214,16198,0],[16215,16198,15024,0],[47449,16184,15060,0],[16098,16149,16124,0],[16124,16149,16148,0],[16153,47142,16116,0],[16154,47450,16153,0],[16153,47450,47142,0],[16242,15003,16243,0],[15524,15525,47451,0],[47451,15525,47094,0],[47451,47093,15524,0],[15095,15096,15097,0],[47148,47147,47452,0],[47453,15109,47456,0],[47456,15109,15108,0],[47456,15108,47454,0],[47455,47454,15451,0],[15451,15450,47455,0],[47455,47456,47454,0],[15446,47457,47456,0],[47453,47456,47457,0],[47457,15112,15111,0],[15115,15112,15448,0],[15448,15112,47457,0],[47457,15111,47453,0],[47455,15450,47456,0],[47456,15450,15446,0],[47454,15108,47458,0],[47458,15108,16139,0],[16138,47458,15107,0],[16076,47168,47459,0],[47142,47143,47460,0],[47139,16105,47141,0],[47461,16113,47460,0],[47460,47143,47461,0],[47463,47043,47042,0],[47040,47045,47037,0],[47463,47037,47036,0],[46916,47059,47055,0],[47055,47056,46916,0],[15731,46912,16009,0],[47464,47071,16036,0],[16036,16037,16034,0],[47071,47464,47465,0],[47071,47465,46913,0],[16037,16036,47071,0],[47071,46913,47069,0],[16067,47069,46914,0],[47466,16010,16008,0],[47466,16008,47469,0],[47467,16015,16039,0],[47467,47470,16018,0],[47467,16018,47468,0],[47468,16018,16016,0],[16018,47470,47469,0],[47468,16015,47467,0],[47466,47469,16037,0],[16037,47469,47470,0],[16037,47470,16011,0],[16011,47470,16039,0],[47470,47467,16039,0],[15978,47472,15853,0],[47472,47471,47473,0],[47473,47471,47474,0],[47473,47474,15807,0],[47474,15974,15806,0],[15974,47474,46555,0],[46555,47474,47471,0],[15807,47474,15806,0],[15851,15852,15807,0],[15807,15852,47473,0],[47472,47473,15853,0],[15846,15845,15843,0],[15846,15843,47475,0],[47476,47133,15493,0],[47476,15493,15105,0],[47476,15105,47134,0],[47134,15105,15106,0],[15497,15492,47477,0],[47477,15101,15104,0],[15504,15497,15104,0],[15104,15497,47477,0],[15568,15558,15560,0],[15560,15558,47478,0],[15537,47478,15556,0],[15556,47478,15557,0],[15581,15327,15580,0],[16149,16098,47450,0],[47479,47441,15075,0],[47479,15075,16219,0],[47069,46913,46914,0],[16339,14951,47480,0],[47482,47290,47481,0],[47481,14842,47482,0],[47485,47173,47483,0],[47483,47255,47485,0],[47484,47173,47169,0],[47485,47255,47254,0],[47485,47254,47174,0],[15241,15284,15282,0],[15265,15242,15233,0],[15233,15232,15265,0],[47486,46494,15234,0],[15234,46494,15233,0],[47488,47287,47489,0],[47288,47488,46514,0],[46514,47488,47489,0],[46514,47489,46513,0],[46694,46523,15764,0],[14839,16348,14837,0],[14839,14837,14838,0],[49806,14870,14869,0],[49806,14869,46074,0],[46074,14869,14838,0],[42655,47491,42685,0],[42685,47491,12357,0],[42653,46078,42654,0],[46078,46077,42655,0],[42655,46077,47490,0],[46077,46076,47490,0],[47491,42655,47490,0],[47490,12357,47491,0],[47242,47492,47229,0],[47229,47492,47225,0],[46180,46196,46181,0],[46196,46193,46181,0],[46181,46193,47219,0],[46182,46193,46184,0],[46184,46193,46185,0],[46187,46604,46188,0],[46988,46987,47493,0],[47493,46987,15844,0],[15154,46989,46988,0],[47494,47206,47204,0],[47494,47204,47203,0],[46105,46159,46232,0],[46161,46105,46232,0],[47496,47495,46162,0],[46619,46162,47495,0],[46162,46163,47496,0],[47496,46603,47495,0],[46095,47224,47226,0],[46092,47224,46095,0],[15823,15822,46976,0],[46976,47497,47210,0],[47210,47497,46978,0],[46978,47497,46977,0],[47210,15825,46976,0],[47498,47499,46617,0],[47498,46617,46614,0],[46614,46617,46149,0],[47499,47498,46612,0],[46612,47498,46614,0],[47502,15819,47503,0],[15710,47503,15713,0],[47503,15710,47501,0],[47503,47501,47502,0],[15819,46971,46986,0],[46986,46971,46970,0],[47503,15819,46986,0],[47503,46986,15713,0],[15713,46986,15711,0],[15716,46998,15705,0],[47504,46665,46967,0],[15968,15772,15965,0],[11949,13082,13081,0],[11949,13081,13080,0],[13083,11951,47505,0],[11484,11483,11497,0],[47506,11417,47507,0],[47507,11417,11419,0],[11417,47506,11418,0],[11418,47506,47508,0],[11357,47508,47509,0],[11357,47509,47510,0],[47510,47509,11481,0],[11481,47509,11416,0],[11416,47509,47511,0],[47509,47508,47511,0],[47511,47508,47506,0],[40832,40869,40853,0],[40869,40838,40837,0],[47512,11418,11359,0],[47512,11359,47513,0],[47513,11359,11360,0],[47513,40804,40807,0],[40807,11420,47513,0],[47513,11360,40804,0],[40817,11396,11389,0],[11391,11398,11397,0],[11606,47515,47516,0],[11605,47516,47514,0],[47569,11604,47517,0],[47517,11604,11605,0],[11379,47634,47518,0],[11379,47518,11380,0],[11380,47518,11381,0],[47518,47633,11381,0],[47519,47518,11376,0],[47518,47519,47633,0],[47630,47522,47536,0],[11614,11380,11385,0],[47521,47520,47524,0],[47521,47524,47630,0],[47630,47524,47522,0],[47520,47633,47519,0],[47520,47519,47523,0],[11376,47563,47519,0],[47523,47519,47563,0],[47520,47523,47524,0],[47523,47522,47524,0],[47629,47536,47535,0],[47629,47535,47534,0],[47668,47534,47525,0],[47525,47529,47526,0],[47526,47529,47527,0],[47548,47527,40495,0],[47531,47530,47535,0],[47535,47530,47528,0],[47527,47529,40496,0],[40496,47529,40497,0],[40497,47529,47528,0],[47529,47525,47528,0],[47528,47525,47534,0],[47538,47528,47530,0],[47530,47531,47561,0],[47522,47531,47536,0],[47532,11372,47539,0],[47539,11372,11370,0],[47533,47532,40498,0],[47533,40498,40495,0],[47533,40495,47537,0],[47531,47535,47536,0],[47535,47528,47534,0],[40496,40497,47537,0],[47533,47537,47538,0],[47538,47537,40497,0],[40494,40498,47539,0],[47540,40494,47539,0],[40498,40494,47542,0],[40498,47542,40495,0],[47532,47539,40498,0],[47541,40493,47550,0],[47541,47550,47543,0],[47543,47550,40524,0],[47541,47543,40494,0],[40524,40520,47543,0],[47543,40520,47545,0],[47543,47542,40494,0],[47543,47545,47542,0],[47546,47549,40530,0],[47546,47547,47549,0],[47549,47547,47545,0],[47545,47547,47544,0],[47544,47547,47526,0],[47548,47544,47527,0],[47527,47544,47526,0],[47548,47542,47544,0],[47545,47544,47542,0],[47549,47545,40520,0],[11371,47539,11370,0],[47561,11372,47532,0],[11645,47551,11670,0],[11645,11670,47552,0],[11363,11670,47551,0],[11670,11648,47552,0],[11645,11644,47551,0],[47551,11644,47554,0],[47554,11644,47553,0],[47554,47553,11626,0],[47554,11626,11627,0],[47551,47554,47555,0],[11627,47555,47554,0],[11627,11624,11364,0],[11627,11364,47555,0],[11626,47553,47628,0],[11626,47628,47556,0],[10745,11626,47556,0],[11644,11656,47553,0],[47553,11656,47557,0],[47553,47557,47628,0],[11642,11641,40793,0],[47556,47628,10746,0],[10746,47628,10750,0],[10750,47628,40793,0],[40793,47628,47557,0],[47557,11642,40793,0],[18578,10746,10750,0],[10750,10749,18578,0],[10747,18590,10745,0],[18590,18584,10744,0],[47558,40499,47559,0],[47559,40499,11622,0],[40518,40521,47550,0],[47550,40493,40518,0],[11374,11373,47560,0],[47522,47560,47531,0],[47531,47560,47561,0],[47532,47530,47561,0],[47561,47560,11373,0],[47522,47523,47560,0],[47560,47523,47565,0],[47523,47563,47565,0],[47563,47564,47565,0],[47565,47564,47562,0],[47562,47567,47566,0],[47567,47564,47568,0],[47564,47567,47562,0],[47563,11375,47564,0],[47564,11375,47568,0],[47560,47565,11374,0],[11362,47569,11628,0],[11628,47569,47572,0],[47570,47573,47514,0],[47570,47514,47516,0],[47515,47570,47516,0],[47570,40814,47573,0],[47573,40814,47571,0],[47573,47571,47572,0],[47572,11361,11628,0],[11605,47514,47517,0],[47514,47573,47517,0],[47569,47517,47573,0],[47569,47573,47572,0],[11371,47558,47574,0],[47574,47558,47559,0],[47574,47559,40518,0],[47574,40518,40493,0],[47574,40493,47540,0],[47574,47540,11371,0],[11371,47540,47539,0],[40514,47576,47577,0],[40513,47578,47590,0],[40513,47590,47589,0],[47579,47586,47580,0],[47582,47584,47583,0],[47582,47583,47581,0],[47581,47583,14043,0],[47580,40513,47579,0],[47583,47584,14044,0],[14044,47584,47585,0],[47584,47586,47585,0],[47584,47582,47586,0],[47586,47582,47580,0],[47582,47581,47580,0],[47587,14013,47585,0],[47586,47579,47588,0],[47587,47588,18571,0],[47588,47587,47585,0],[47588,47585,47586,0],[47579,47589,47588,0],[47588,47589,14015,0],[47590,47578,47577,0],[14016,47590,47599,0],[40515,18587,47575,0],[47575,18587,10748,0],[47577,47576,47590,0],[11625,11365,11364,0],[11659,18576,18557,0],[18557,18576,10759,0],[11710,47591,47596,0],[47596,47591,11707,0],[11705,11713,10763,0],[18576,18575,18572,0],[47592,47593,47594,0],[18552,47594,10761,0],[47593,11710,47594,0],[47594,11710,10761,0],[10762,47595,11706,0],[10761,11710,47595,0],[11710,47596,47595,0],[47595,47596,11707,0],[47595,11707,11706,0],[47599,47590,47576,0],[14018,10749,47597,0],[47597,47598,14017,0],[47597,14017,14018,0],[14017,47598,47599,0],[47599,47598,47600,0],[47600,47598,18559,0],[18531,18533,47601,0],[47601,18533,18568,0],[47603,18568,47602,0],[18542,47602,18568,0],[47601,18567,18566,0],[47604,18567,40272,0],[18567,47604,18566,0],[47604,47605,40264,0],[40264,47605,14014,0],[47605,14131,47626,0],[47626,14131,40273,0],[14014,47605,47626,0],[14008,14130,47606,0],[47606,14130,40792,0],[40792,47607,47606,0],[14045,14028,14079,0],[14045,14079,40532,0],[40244,40245,47608,0],[47608,40245,40209,0],[40161,40160,47609,0],[40161,47609,47610,0],[47610,47609,47611,0],[47612,19294,47611,0],[47611,19294,47610,0],[19292,40161,40136,0],[40136,40161,47610,0],[40161,19292,47613,0],[47613,19292,47614,0],[47613,47614,40162,0],[40162,47614,47615,0],[40162,47615,10440,0],[10440,47615,40178,0],[47609,40160,40159,0],[47609,40159,47616,0],[47616,40159,40157,0],[47612,47611,40157,0],[40157,47611,47616,0],[47611,47609,47616,0],[40159,47617,40157,0],[19945,19941,19960,0],[19945,47619,19959,0],[47618,19959,8072,0],[47618,8072,19947,0],[19947,19946,47618,0],[19959,47618,19945,0],[40131,40133,40132,0],[14053,14054,40150,0],[40280,18970,47621,0],[47621,18970,18968,0],[47621,18968,18630,0],[47622,18642,18645,0],[40280,47621,47623,0],[40282,40281,47623,0],[47623,40281,40280,0],[47621,18630,47623,0],[47623,18630,40283,0],[18636,10719,47624,0],[18635,18636,47624,0],[18635,47624,18611,0],[18671,47625,18706,0],[18706,47625,18707,0],[40266,47626,40273,0],[47575,10748,47576,0],[10748,14017,47576,0],[47576,14017,47599,0],[40265,47626,40263,0],[40263,47626,40266,0],[47579,40513,47589,0],[47577,47578,40514,0],[47576,40514,47575,0],[40515,47575,40514,0],[47630,47629,47631,0],[47630,47631,47521,0],[40508,47632,47673,0],[47521,47632,47520,0],[47520,47632,47633,0],[11381,47633,47632,0],[47630,47536,47629,0],[11376,47518,47634,0],[47635,45970,47636,0],[47636,45987,45984,0],[47636,45984,40921,0],[40921,10556,10555,0],[40921,10555,10571,0],[47636,40921,47635,0],[47635,40921,10571,0],[47639,47638,45973,0],[47638,47639,47637,0],[47637,47639,45991,0],[47637,45991,45979,0],[10553,47641,45943,0],[45943,47641,10554,0],[10554,47641,10571,0],[10571,47641,10569,0],[40915,47640,10561,0],[47642,10626,10625,0],[47642,47640,10626,0],[45801,45799,45813,0],[45798,45832,45799,0],[45799,45832,45813,0],[47643,10653,45831,0],[45831,10653,45813,0],[45831,45818,47643,0],[45831,45813,45832,0],[47645,10578,10577,0],[10565,47647,47646,0],[45958,10603,45955,0],[45955,10603,47646,0],[47646,10603,10564,0],[47646,10564,10565,0],[45817,45816,10584,0],[45812,45802,45816,0],[10587,10586,45887,0],[10587,45887,47657,0],[47649,10585,47648,0],[47649,47648,10582,0],[47649,10582,47650,0],[45886,47651,47650,0],[45940,45886,47650,0],[45940,47650,10582,0],[10585,47649,10586,0],[45887,10586,47651,0],[10586,47649,47650,0],[10586,47650,47651,0],[45816,45817,45814,0],[10588,47655,45786,0],[45786,47655,47652,0],[45784,47652,47656,0],[45784,47656,47653,0],[45888,47654,47657,0],[47653,47656,47654,0],[47654,47656,47658,0],[47654,47658,47657,0],[47655,47656,47652,0],[45735,45740,45739,0],[10587,47657,47658,0],[10587,47658,47659,0],[47655,47659,47656,0],[47656,47659,47658,0],[45888,46007,47661,0],[45948,45860,47662,0],[47663,19081,10532,0],[10532,19081,10533,0],[10532,10531,47663,0],[45841,45854,45852,0],[45845,45854,45841,0],[10534,19081,45868,0],[45852,45854,45853,0],[47664,10710,45933,0],[47664,45933,40509,0],[47664,40510,10710,0],[11384,11594,47665,0],[11384,47665,11383,0],[11383,47665,11597,0],[45892,45893,47670,0],[47670,40507,47673,0],[47631,47629,47671,0],[47671,47629,47668,0],[47671,47668,45896,0],[45896,47668,47669,0],[47669,47525,47526,0],[47669,47526,47547,0],[47666,45892,47670,0],[45893,40507,47670,0],[40506,40507,40509,0],[40509,40507,45893,0],[47670,47673,47667,0],[47667,47673,47671,0],[47671,47673,47631,0],[47521,47672,47632,0],[47632,47672,47673,0],[47631,47673,47672,0],[47672,47521,47631,0],[47668,47629,47534,0],[47525,47669,47668,0],[18809,18808,18815,0],[18815,18808,18816,0],[47674,43297,43295,0],[34679,10060,47675,0],[47675,10060,10061,0],[47675,10061,34680,0],[47675,34680,47678,0],[43242,34679,47675,0],[43242,47675,9944,0],[9944,47675,47678,0],[47676,47678,34682,0],[9944,47678,47676,0],[47677,43241,43244,0],[34682,43241,47677,0],[34682,47677,47676,0],[47677,9942,47676,0],[9466,9465,9468,0],[9468,9465,9392,0],[9401,34509,9413,0],[47680,25034,25260,0],[25033,47680,25260,0],[25251,47681,25250,0],[25250,47681,25249,0],[47682,43022,45561,0],[43022,47682,8344,0],[8344,47682,25036,0],[12622,12623,12620,0],[12992,47683,13035,0],[47684,12988,42826,0],[47684,42826,7203,0],[47684,7203,7204,0],[47685,47686,42827,0],[42827,47686,7207,0],[42827,7207,47687,0],[47687,7207,47691,0],[7206,7207,47686,0],[12987,47684,7204,0],[7206,47686,7205,0],[12987,7204,47685,0],[47685,7204,47686,0],[47687,47688,13801,0],[47689,13801,13800,0],[13801,47689,47690,0],[47687,47690,13797,0],[47687,13797,42827,0],[47687,47691,47688,0],[47688,47691,7208,0],[7203,47695,47693,0],[47693,47695,47694,0],[47692,26387,47693,0],[42957,47706,7719,0],[47701,7719,47705,0],[47705,7719,47706,0],[47696,47702,47697,0],[47697,47702,47703,0],[47699,47703,7721,0],[47699,7721,7720,0],[47696,47697,47698,0],[7824,47698,7825,0],[47697,47703,47698,0],[47698,47703,47699,0],[47699,47700,7825,0],[47699,7720,47700,0],[47700,7720,47701,0],[47700,47701,47705,0],[7808,47703,7810,0],[7808,7810,7809,0],[7809,7807,7808,0],[7811,7810,47702,0],[47703,47702,7810,0],[7787,47704,7790,0],[7790,47704,7788,0],[7093,7824,7825,0],[7825,47705,7095,0],[7095,47705,7096,0],[7097,7096,7826,0],[7826,7096,47706,0],[7096,47705,47706,0],[47698,7824,47696,0],[47696,7821,7822,0],[47696,7824,7821,0],[7821,7824,7093,0],[47707,7813,7800,0],[7814,7813,7805,0],[47708,7801,7803,0],[47707,47708,7805,0],[7805,47708,7804,0],[7804,47708,7803,0],[7801,47708,47707,0],[26246,47709,7214,0],[7214,47709,7890,0],[7890,47709,26249,0],[26246,7214,26245,0],[26245,7214,7215,0],[26245,7215,26250,0],[26361,47710,19758,0],[26361,19758,47711,0],[47711,19758,19759,0],[19758,47710,19367,0],[19367,47710,19782,0],[7888,7887,26365,0],[26361,47711,26363,0],[19776,19366,19365,0],[19776,19365,19363,0],[19363,19365,19780,0],[19363,19780,19364,0],[26264,26263,26255,0],[26274,47717,26282,0],[26282,47717,26280,0],[47713,19803,19356,0],[40391,26356,20028,0],[40389,20027,47734,0],[40389,40390,20027,0],[20027,40390,40391,0],[40392,26356,40391,0],[20027,20028,47714,0],[47714,20028,39957,0],[39956,40402,39957,0],[39957,40402,47714,0],[26305,26302,48750,0],[48750,26302,26299,0],[26304,26305,26293,0],[26293,26305,47715,0],[26293,47715,26295,0],[26227,26228,47716,0],[47716,26228,26332,0],[47716,26332,26310,0],[26295,26294,26293,0],[26225,26224,26309,0],[26254,26280,47717,0],[26254,47717,26253,0],[26202,47721,47718,0],[47718,7924,26202,0],[7924,7939,26202,0],[26202,7939,7923,0],[7922,7923,47719,0],[7923,7922,26202,0],[7922,47720,26202,0],[26202,47720,47721,0],[47721,47720,26203,0],[26347,40393,40394,0],[26347,40394,26348,0],[26348,40394,47722,0],[26348,47722,26349,0],[47723,47725,47732,0],[47732,47725,47727,0],[39981,47724,39972,0],[47725,47726,47727,0],[47726,47728,47727,0],[47727,47728,47733,0],[47727,47733,47724,0],[39978,47730,47731,0],[47730,19349,47727,0],[47727,19349,47732,0],[47723,47732,19819,0],[47727,47724,47730,0],[39978,47731,47729,0],[47731,47730,47724,0],[47724,39981,47731,0],[39979,39978,47729,0],[47732,19349,19819,0],[47728,20016,47733,0],[47733,20016,39971,0],[47733,39971,47724,0],[20023,20024,20025,0],[20026,39961,39962,0],[39962,40388,20026,0],[20025,40402,20023,0],[40402,20025,47714,0],[47714,20025,47734,0],[20025,20026,47734,0],[47723,19351,20017,0],[47737,40430,19513,0],[47735,19798,19341,0],[47735,19341,47736,0],[47736,40434,47735,0],[19513,19512,47737,0],[19804,47735,40434,0],[47738,19804,40434,0],[40434,47737,47738,0],[47738,47737,47743,0],[47743,47737,19514,0],[19806,47739,47740,0],[19507,19506,47741,0],[47741,19772,19507,0],[19806,19805,47739,0],[19806,47740,19507,0],[19806,19507,19772,0],[47741,19506,47742,0],[19705,47742,19740,0],[19705,19766,47742,0],[47742,19766,47741,0],[19766,19765,19771,0],[19507,47740,19509,0],[19509,47740,19510,0],[19510,47740,47739,0],[47738,47743,19805,0],[19805,47743,47739,0],[47739,47743,19510,0],[19509,47745,19508,0],[19508,47745,47744,0],[19509,19527,47745,0],[19520,47745,47746,0],[19520,47746,19519,0],[47749,19524,47747,0],[47747,19524,19518,0],[47747,19519,47749,0],[47749,19519,47746,0],[19524,47749,19517,0],[19517,47748,40423,0],[19525,19516,19526,0],[19526,19516,47750,0],[47750,19516,47748,0],[47749,47748,19517,0],[47748,19516,40423,0],[19501,19502,47751,0],[19522,19520,47751,0],[47751,19520,19501,0],[19505,47751,19521,0],[47751,19502,19521,0],[19502,19501,19755,0],[19502,19755,19503,0],[19503,47754,19521,0],[19521,47754,47752,0],[19521,47752,19504,0],[47742,19506,19504,0],[19503,47753,47754,0],[47754,47753,19742,0],[19742,19378,47754,0],[47754,19378,19741,0],[19377,47752,19741,0],[19504,47752,47755,0],[19504,47755,47742,0],[47742,47755,19740,0],[19739,47755,19377,0],[47752,47754,19741,0],[19744,47756,19500,0],[19500,47756,19755,0],[47757,19707,19651,0],[47757,19651,19709,0],[47757,19704,19703,0],[19731,13798,47758,0],[13799,19731,47758,0],[13799,47758,19735,0],[19735,47758,47690,0],[19735,47690,47689,0],[47743,19514,19510,0],[19510,19514,19511,0],[19510,19511,19527,0],[47759,19532,19535,0],[19537,19532,47759,0],[47761,19605,47764,0],[47764,19605,47762,0],[40455,47762,19605,0],[47765,47760,47764,0],[47764,47760,47761,0],[47765,47764,47763,0],[47765,47763,19530,0],[47764,47762,47763,0],[47763,47762,19523,0],[40448,19551,19553,0],[47766,47767,19569,0],[47766,47768,47769,0],[47769,47768,13918,0],[47769,13918,47770,0],[47769,47770,47771,0],[19571,47770,47772,0],[19577,19576,47772,0],[47771,19591,47767,0],[47771,47767,47769,0],[47769,47767,47766,0],[47773,47768,19567,0],[47776,47775,19444,0],[19444,47775,47777,0],[47778,47779,47780,0],[19441,47782,47783,0],[47777,47778,47938,0],[47938,47778,47780,0],[47938,47780,19443,0],[19443,47780,47941,0],[47777,47775,47778,0],[47778,47781,47779,0],[47782,47784,47783,0],[47779,47782,47780,0],[47779,47781,47784,0],[47784,47774,19584,0],[19567,19562,13920,0],[47785,13944,47809,0],[47809,13944,47786,0],[19562,47785,13923,0],[13923,47785,47809,0],[13939,14191,47787,0],[13943,47787,47786,0],[47786,47787,47822,0],[47787,13943,13939,0],[13923,47809,47788,0],[47792,47790,47791,0],[47792,47791,47793,0],[47795,14189,13934,0],[47793,47794,47795,0],[47793,47796,47792,0],[47792,47796,47807,0],[47792,47807,47790,0],[47790,47807,47797,0],[47797,47798,47799,0],[47801,47798,47806,0],[47806,47798,47807,0],[47800,47799,47801,0],[47801,47799,47798,0],[47798,47797,47807,0],[47790,47797,47802,0],[47790,47802,13937,0],[13933,47808,13934,0],[13933,47803,47796,0],[47796,47803,47804,0],[47804,47805,47806,0],[47804,47806,47807,0],[47807,47796,47804,0],[13933,47796,47808,0],[47808,47793,47795,0],[13934,47808,47795,0],[47791,47790,13937,0],[47791,13937,47942,0],[47791,47794,47793,0],[47797,47799,47789,0],[47797,47789,47802,0],[47789,47799,47788,0],[47788,47800,13924,0],[47788,13924,13923,0],[47809,47786,47822,0],[13924,47800,13913,0],[13913,47800,47818,0],[47810,47818,47801,0],[47810,47801,47811,0],[47811,47805,47812,0],[47812,47805,47804,0],[47804,47803,47813,0],[47804,47813,47812,0],[47812,47929,47811,0],[13933,13932,47803,0],[47803,13932,47814,0],[47803,47814,47813,0],[47813,47814,47901,0],[47897,47815,47954,0],[47897,47954,47816,0],[47817,13927,13901,0],[47817,13902,47816,0],[47812,47813,47929,0],[47805,47811,47806,0],[47806,47811,47801,0],[13913,13914,13924,0],[47801,47818,47800,0],[13936,47942,13937,0],[47802,47789,13938,0],[47819,19575,13915,0],[47819,13915,19574,0],[19575,47819,19576,0],[19576,47819,47772,0],[19572,47819,47820,0],[19573,47820,19574,0],[19574,47820,47819,0],[47820,19573,19584,0],[47821,19591,19571,0],[47809,47822,47788,0],[47789,47822,13938,0],[13938,47822,47787,0],[47789,47788,47822,0],[47929,47813,13910,0],[13910,47813,47900,0],[13910,47900,13909,0],[40630,40631,40632,0],[40632,40622,40623,0],[40623,40630,40632,0],[47823,40663,40650,0],[47823,40650,40622,0],[40622,40632,47947,0],[13934,14189,13930,0],[13930,48426,13934,0],[13928,14186,47824,0],[13928,47824,13927,0],[13927,47824,14195,0],[47825,14251,47826,0],[14251,47827,47826,0],[47826,47827,13894,0],[13894,47827,47828,0],[13894,47828,13892,0],[13892,47828,13399,0],[14251,47825,13895,0],[14251,13895,13406,0],[14187,14195,47824,0],[14187,47824,14186,0],[47829,13901,47852,0],[47830,47831,47877,0],[47877,47831,47832,0],[47834,47895,47835,0],[47835,47895,47868,0],[47880,47835,47903,0],[47836,47837,14218,0],[14217,47837,47839,0],[14217,47839,47842,0],[47837,47836,47838,0],[47837,47838,47839,0],[47839,47838,47856,0],[47839,47856,47840,0],[47841,48331,48423,0],[14216,48423,48041,0],[47840,47841,47842,0],[47840,47842,47839,0],[47843,47907,47862,0],[47861,47844,47858,0],[47956,47846,47957,0],[47846,47847,47848,0],[47848,47847,47871,0],[47848,47871,14198,0],[14198,47871,47909,0],[14198,47909,14197,0],[14197,47909,47908,0],[14197,47908,47962,0],[47962,47908,47854,0],[47854,47908,47849,0],[47854,47849,13899,0],[13899,47849,47853,0],[13899,47853,47850,0],[47850,47853,47851,0],[47830,47829,47831,0],[47831,47829,47852,0],[47831,47852,47851,0],[47851,47852,13900,0],[13900,14195,47850,0],[47850,14195,13899,0],[13899,13898,47854,0],[47850,47851,13900,0],[47853,47831,47851,0],[47853,48330,47831,0],[47831,48330,47832,0],[14196,47854,47825,0],[14198,47961,47848,0],[47862,47855,47843,0],[47843,47855,47856,0],[47840,47856,47857,0],[47840,47857,47860,0],[14201,47860,47859,0],[14201,47859,14200,0],[14200,47859,47863,0],[47845,47863,47858,0],[47858,47863,47859,0],[47859,47860,47857,0],[47859,47857,47861,0],[47844,47861,47862,0],[47859,47861,47858,0],[47845,47956,47863,0],[14200,47863,47864,0],[47856,47855,47857,0],[47861,47857,47862,0],[47843,47856,47838,0],[47833,47865,47834,0],[47866,47895,47896,0],[47866,47896,47870,0],[47866,47870,47867,0],[47867,47870,47845,0],[47845,47847,47956,0],[47868,47895,47866,0],[47866,47869,47868,0],[47895,47834,47865,0],[47868,47869,47907,0],[47907,47869,47862,0],[47862,47869,47844,0],[47869,47867,47844,0],[47844,47867,47858,0],[47858,47867,47845,0],[47956,47847,47846,0],[47847,47870,47871,0],[47847,47845,47870,0],[47870,47896,47909,0],[47909,47871,47870,0],[47877,47832,47872,0],[47876,47872,47873,0],[47873,47872,47878,0],[47873,47878,47882,0],[47873,47882,47884,0],[47873,47884,47874,0],[13905,47874,13906,0],[47873,47874,47876,0],[13905,47876,47874,0],[47876,47875,47877,0],[47876,47877,47872,0],[47877,13903,47830,0],[13903,47877,47875,0],[47875,13926,13903,0],[47830,13903,47829,0],[19464,19465,19468,0],[47879,47835,47880,0],[47835,47879,47834,0],[47834,47879,19465,0],[47834,19465,47833,0],[19465,47879,19468,0],[19468,47879,19463,0],[19463,47879,47880,0],[19463,47880,47904,0],[47878,47833,47881,0],[47882,47881,47883,0],[47882,47883,47884,0],[47884,47883,47885,0],[13906,19431,19432,0],[13906,19432,19433,0],[13906,19433,13907,0],[13907,19433,13908,0],[47887,13908,19435,0],[13910,47886,13911,0],[47886,13910,47887,0],[47887,13910,13909,0],[47887,13909,13908,0],[47887,19435,19436,0],[47887,19436,19437,0],[47887,47889,47886,0],[47886,47889,47888,0],[47886,47888,13911,0],[47889,47887,19437,0],[19437,19449,47889,0],[47889,19449,47888,0],[19435,13908,19434,0],[19434,13908,19433,0],[47916,19431,47890,0],[47916,47890,19430,0],[19430,47890,47891,0],[47893,47892,19461,0],[47894,47891,47885,0],[47894,47885,47883,0],[47885,47891,47890,0],[47891,47894,48594,0],[47891,48594,19429,0],[47894,47892,47893,0],[47833,47878,47865,0],[47865,47878,47872,0],[47865,47872,47832,0],[47854,13896,47825,0],[13896,47854,13898,0],[47901,47814,47815,0],[47901,47815,47897,0],[47901,47897,47898,0],[47899,47898,47902,0],[13925,13909,47899,0],[47899,13909,47898,0],[47900,47898,13909,0],[47901,47898,47900,0],[13925,47899,13926,0],[13926,47899,13902,0],[47898,47897,47902,0],[47902,13902,47899,0],[13902,47902,47816,0],[47902,47897,47816,0],[47882,47878,47881,0],[47884,47885,47890,0],[47884,47890,47874,0],[47874,47890,19431,0],[47874,19431,13906,0],[19466,47881,19465,0],[19465,47881,47833,0],[19467,47892,19466,0],[47892,47894,19466,0],[47894,47883,19466,0],[19466,47883,47881,0],[47904,47880,47903,0],[47904,47903,47838,0],[47838,47836,47904,0],[47904,47836,48324,0],[19469,47904,48324,0],[19469,48324,48321,0],[47906,48321,47905,0],[47905,19461,47906,0],[19469,48321,47906,0],[47903,47835,47907,0],[47907,47835,47868,0],[47903,47907,47838,0],[47838,47907,47843,0],[47908,47896,47849,0],[47908,47909,47896,0],[47930,47783,19582,0],[47930,19582,19440,0],[19438,19415,47910,0],[19415,47911,19416,0],[47911,47912,19416,0],[47911,19437,47912,0],[47913,19434,47914,0],[47914,19434,47915,0],[47915,19432,19431,0],[19431,47916,47915,0],[47915,47916,47917,0],[47915,47917,47914,0],[47914,47917,19417,0],[19417,47917,19419,0],[47913,47914,19417,0],[47913,19417,47912,0],[19417,19416,47912,0],[19432,47915,19433,0],[19433,47915,19434,0],[47913,47912,19436,0],[19436,47912,19437,0],[48595,47919,19426,0],[48595,19426,19425,0],[19426,47924,47921,0],[47921,47924,47920,0],[47921,47920,47922,0],[47922,19428,47921,0],[19429,47920,47923,0],[19429,47923,47927,0],[47927,47923,19420,0],[19421,47924,47925,0],[47925,47910,19415,0],[19415,47926,47925,0],[47925,47926,19421,0],[19421,19420,47923,0],[47923,47924,19421,0],[19421,47926,19418,0],[47910,47925,47918,0],[47918,47925,47919,0],[47925,47924,47919,0],[47919,47924,19426,0],[47924,47923,47920,0],[19420,19430,47927,0],[19429,47927,47891,0],[47891,47927,19430,0],[19430,19419,47917,0],[47917,47916,19430,0],[19414,47918,47928,0],[47928,47918,47919,0],[47928,47919,48595,0],[47810,47811,47929,0],[47771,47770,19571,0],[47772,47770,19577,0],[19577,47770,13918,0],[13919,13918,47773,0],[13919,47773,19567,0],[13919,19567,13920,0],[47773,13918,47768,0],[47930,19440,19438,0],[19438,47910,47931,0],[47931,19414,47932,0],[47932,19414,47933,0],[47932,47933,19442,0],[19442,47933,19413,0],[19414,47931,47910,0],[19438,47931,47930,0],[47930,47931,47932,0],[47932,47783,47930,0],[19441,47932,19442,0],[47941,19442,47934,0],[47941,47934,47939,0],[47939,47934,47935,0],[47939,47935,47936,0],[47935,47934,19412,0],[47938,47937,19497,0],[47937,47938,47939,0],[47937,47939,19411,0],[19411,47939,47936,0],[47941,47939,19443,0],[47939,47938,19443,0],[47940,19410,19494,0],[19494,19410,19409,0],[19494,19409,19408,0],[19408,19493,19494,0],[47774,47784,47781,0],[47774,47781,47775,0],[47775,47781,47778,0],[47782,19441,47941,0],[19442,47941,19441,0],[47941,47780,47782,0],[47794,47791,47942,0],[47794,47942,47943,0],[47943,47942,14182,0],[47794,47943,47795,0],[47944,40633,40634,0],[47944,40621,47945,0],[47946,47945,40621,0],[40634,40621,47944,0],[47944,47947,40633,0],[47947,47944,47945,0],[47947,47945,47823,0],[47945,40663,47823,0],[40622,47947,47823,0],[40671,14160,47948,0],[47948,14165,40671,0],[40609,40610,40564,0],[40564,40610,40484,0],[13959,40544,47949,0],[47949,40544,40789,0],[13991,47949,40789,0],[13961,47949,13991,0],[40556,40558,18134,0],[47950,40676,14171,0],[13298,40585,40599,0],[40586,40591,40582,0],[13323,13324,47951,0],[47952,47951,13322,0],[13322,47951,13321,0],[13321,47951,13324,0],[13334,13332,13324,0],[13321,13324,13320,0],[40658,40724,47953,0],[40724,40659,47953,0],[14188,40646,13412,0],[13412,40646,40645,0],[13405,13412,40645,0],[47955,47816,47954,0],[13929,48427,14185,0],[47954,48427,47955,0],[47954,47815,13931,0],[47955,13927,47817,0],[47957,47864,47956,0],[47956,47864,47863,0],[47987,14199,47958,0],[14199,47848,47958,0],[47959,47958,47961,0],[47961,47958,47848,0],[47962,14196,47960,0],[47961,14198,14197,0],[47961,14197,47960,0],[47960,14197,47962,0],[47960,13893,47961,0],[47961,13893,47959,0],[47959,13893,13892,0],[13892,13890,47959,0],[47959,13890,47987,0],[47987,13890,47963,0],[47987,47963,47964,0],[47864,47968,47969,0],[47969,47966,47965,0],[47965,47966,47967,0],[47967,47966,47995,0],[47967,47995,14214,0],[47969,47968,47970,0],[47969,47970,47971,0],[47980,47970,47981,0],[47972,47971,47979,0],[47972,47979,47973,0],[14202,14213,47974,0],[47974,14213,47973,0],[14204,47975,14205,0],[14208,14207,14209,0],[14209,14207,47976,0],[14209,47976,47986,0],[14207,14205,47976,0],[47978,47973,47985,0],[47985,47973,47979,0],[47971,47970,47980,0],[47971,47980,47983,0],[47983,47980,47982,0],[47985,47979,47984,0],[47984,47979,47983,0],[47979,47971,47983,0],[47980,48054,47982,0],[47974,47978,47977,0],[47974,47977,47975,0],[47975,47977,14205,0],[14205,47977,47976,0],[47974,47973,47978,0],[47978,47994,47977,0],[47976,47977,47986,0],[47959,47987,47958,0],[14199,47987,47964,0],[14199,47964,47988,0],[47988,47964,47968,0],[47988,47968,47864,0],[47864,47969,14200,0],[14214,14201,47967,0],[47967,14201,47965,0],[47965,14200,47969,0],[13398,13397,13396,0],[13398,13396,47989,0],[47989,13396,13888,0],[13398,47989,48051,0],[48051,47989,13889,0],[48056,13886,47990,0],[48056,47990,47991,0],[47992,47991,47990,0],[47992,14212,47993,0],[47993,14212,14210,0],[48060,14210,47994,0],[47994,47978,47985,0],[42909,47994,14210,0],[47994,47986,47977,0],[13886,13885,47990,0],[47972,14213,47995,0],[47995,47966,47972,0],[48040,48038,14203,0],[48040,14203,47996,0],[47996,14204,47997,0],[47997,48081,47998,0],[47999,47998,48000,0],[47999,48000,48001,0],[48326,48002,48003,0],[48003,48002,48005,0],[48003,48318,48004,0],[48029,48004,48317,0],[48333,48006,48007,0],[48333,48007,48008,0],[48333,48008,48319,0],[48319,48008,14227,0],[14227,48008,14228,0],[14228,48008,14229,0],[14229,48008,14230,0],[14230,48008,48076,0],[14230,48076,48009,0],[48009,48010,14231,0],[48017,48002,48001,0],[48012,48011,48013,0],[48015,42924,48017,0],[48015,48017,48016,0],[48074,48016,48001,0],[48001,48016,48017,0],[48005,48017,48006,0],[48014,42924,48015,0],[42923,48013,48018,0],[48018,48013,48022,0],[48022,48020,48019,0],[14209,48021,14208,0],[48025,14208,48011,0],[48011,48020,48022,0],[48011,48022,48013,0],[48020,48011,14208,0],[48020,14208,48019,0],[48019,14208,42930,0],[42930,14208,48021,0],[42930,42929,48019,0],[48019,42929,48022,0],[48022,42929,48024,0],[48024,42928,42927,0],[48024,42927,48023,0],[48022,48024,48018,0],[48023,48018,48024,0],[48001,48000,48074,0],[48074,48000,48025,0],[48025,48026,14207,0],[14207,14208,48025,0],[48025,48011,48074,0],[48025,48000,48026,0],[14207,48026,14206,0],[48026,48000,47998,0],[47998,48081,48026,0],[47999,48001,48002,0],[47999,48002,48326,0],[47999,48326,48042,0],[48037,48042,48031,0],[48031,48027,14222,0],[48028,48027,48029,0],[48028,14221,14222,0],[14222,48030,48031,0],[48031,48030,48032,0],[14216,48033,48035,0],[14216,48035,48034,0],[14216,48034,14217,0],[48032,48030,48034,0],[48034,48030,14218,0],[48030,14222,14220,0],[48034,48035,48032,0],[48032,48035,48033,0],[48031,48032,48037,0],[48037,48033,48036,0],[48036,48033,48041,0],[48041,48033,14216,0],[48042,48037,48080,0],[48042,48080,47998,0],[47998,47999,48042,0],[14204,47996,14203,0],[48039,48038,48040,0],[48039,48424,48036,0],[48036,48424,48080,0],[48037,48036,48080,0],[48036,48041,48039,0],[48039,48041,48038,0],[48038,48041,14215,0],[48031,48042,48027,0],[48028,14222,48027,0],[48042,48326,48027,0],[48029,48027,48004,0],[48004,48027,48326,0],[48004,48326,48003,0],[19646,48043,14223,0],[19646,14223,19647,0],[19647,14223,19630,0],[14221,14223,48044,0],[14223,48043,48044,0],[19398,48044,48045,0],[19398,48045,19397,0],[48046,48048,19396,0],[19396,48048,48047,0],[48047,48050,19395,0],[48050,19393,19395,0],[48047,19395,49944,0],[19396,48045,48046,0],[48044,48043,48045,0],[48046,48045,19646,0],[19646,48045,48043,0],[48046,19646,19645,0],[48046,19645,48048,0],[48048,19644,48049,0],[48049,19626,48050,0],[48050,48047,48049,0],[48049,48047,48048,0],[48049,19644,48098,0],[47963,13890,48051,0],[47964,47963,47981,0],[48051,13889,47963,0],[13889,48053,48052,0],[48054,47980,48052,0],[48052,47963,13889,0],[47981,47963,47980,0],[48052,48053,48057,0],[48052,48057,48054,0],[47982,48054,48057,0],[48053,13887,48055,0],[48059,48055,48056,0],[48058,48056,47991,0],[48057,48053,48055,0],[47982,48058,48061,0],[48056,48058,48059,0],[48055,48059,48057,0],[48057,48059,48058,0],[47983,47982,48061,0],[47983,48061,47984,0],[47984,48061,48060,0],[48060,48061,14210,0],[14210,48061,47993,0],[47993,47991,47992,0],[47991,47993,48058,0],[48060,47994,47985,0],[47985,47984,48060,0],[48063,48062,48064,0],[48063,48064,48065,0],[13383,48065,14254,0],[14254,48064,13385,0],[13385,48064,48062,0],[13413,48066,13414,0],[13413,48062,48066,0],[48066,48062,48063,0],[48065,13382,48063,0],[13350,13349,48067,0],[13349,14528,48067,0],[13841,48067,14579,0],[42898,42904,42905,0],[14211,14212,48068,0],[42898,42899,42900,0],[42902,14211,42900,0],[42900,14211,48068,0],[42900,48068,42898,0],[42900,42901,42902,0],[48021,42902,42901,0],[42904,42898,48068,0],[42904,48068,42903,0],[13415,13414,48066,0],[13415,48066,48063,0],[13415,48069,13381,0],[13415,13381,13417,0],[42936,48071,42897,0],[48073,42934,42894,0],[48072,42894,48428,0],[42934,48073,48070,0],[42935,42934,48071,0],[48071,42936,42893,0],[48071,42893,42935,0],[48071,42934,48070,0],[48072,42912,42911,0],[48014,48015,48012,0],[48012,48015,48016,0],[48012,48013,48014,0],[48074,48011,48012,0],[48017,48075,48006,0],[48075,48017,42924,0],[48075,42924,48076,0],[19456,48044,48077,0],[48077,48044,19458,0],[19459,19458,19457,0],[48078,47922,19429,0],[19457,48078,48329,0],[19457,48329,19459,0],[48078,19457,48079,0],[48078,48079,47922,0],[19455,48079,19457,0],[47998,48080,47997,0],[48081,47997,14206,0],[14204,14205,14206,0],[14204,14206,47997,0],[14206,48026,48081,0],[14202,14203,48038,0],[48083,48082,48079,0],[48079,48082,19428,0],[48082,48083,48084,0],[48092,48085,19482,0],[48087,19483,48085,0],[19483,48087,48086,0],[48088,19609,19610,0],[48088,48087,48085,0],[48086,48087,19610,0],[48086,19610,48089,0],[19612,19484,48089,0],[19612,48089,19610,0],[19610,48087,48088,0],[48597,47933,19414,0],[48597,19414,47928,0],[47933,48597,19413,0],[19413,48597,19422,0],[19412,47934,19413,0],[47934,19442,19413,0],[48091,19623,19620,0],[48091,19620,48090,0],[48090,19477,19478,0],[48092,19480,19479,0],[19482,19481,19480,0],[19482,19480,48092,0],[19478,48091,48090,0],[48091,19480,19481,0],[48091,19481,19623,0],[19480,48091,19478,0],[19490,19483,48086,0],[19751,19750,48093,0],[48093,19750,19491,0],[48093,19491,48086,0],[19491,19490,48086,0],[19491,19750,19747,0],[19653,48094,19737,0],[19737,48094,19701,0],[19653,19737,19736,0],[19701,48094,19652,0],[19675,19673,19655,0],[19673,19675,13792,0],[13792,19675,13614,0],[13614,19675,13615,0],[40458,48095,49946,0],[49946,49945,40459,0],[48096,40460,48598,0],[19395,19394,49942,0],[48105,48098,48099,0],[48105,48099,48100,0],[48103,48100,48101,0],[48103,48101,48102,0],[48100,48103,48104,0],[48104,19682,19391,0],[48104,48103,19682,0],[19682,19683,19680,0],[19683,19682,48102,0],[48102,19682,48103,0],[48049,48098,48105,0],[48105,48104,19391,0],[48104,48105,48100,0],[48049,48105,19626,0],[19626,48105,48106,0],[19392,48106,19391,0],[48106,48050,19626,0],[19391,48106,48105,0],[48221,48101,48107,0],[48107,48219,48108,0],[19685,48108,48109,0],[48109,19688,19686,0],[19686,19685,48109,0],[19688,48109,19687,0],[19687,48109,48110,0],[19633,48110,48218,0],[19689,19687,48111,0],[19689,48111,48385,0],[48241,48217,48112,0],[48113,48174,48173,0],[48113,48173,48114,0],[48113,48114,48115,0],[48115,48114,48172,0],[48115,48172,48234,0],[48234,48172,48116,0],[48234,48116,48235,0],[48235,48116,48117,0],[48235,48117,48118,0],[48145,48120,48193,0],[48145,48196,48121,0],[48252,48122,48123,0],[48124,48144,49815,0],[49815,48144,48143,0],[48124,49815,13444,0],[48124,13444,48126,0],[48124,48126,48127,0],[48124,48127,48137,0],[48137,48127,48125,0],[48137,48125,48123,0],[48250,48129,48249,0],[48249,48130,48245,0],[48245,48130,48248,0],[48248,48130,13523,0],[13523,13546,48248,0],[48131,13523,48129,0],[48131,48129,48135,0],[48131,48135,48132,0],[13543,48132,13524,0],[13446,13524,48133,0],[48133,13524,48132,0],[48126,48134,48127,0],[48127,48134,48128,0],[48133,48134,13445,0],[13445,48134,48126,0],[13445,48126,13444,0],[13523,48130,48129,0],[48129,48130,48249,0],[48135,48129,48128,0],[48135,48128,48134,0],[48134,48132,48135,0],[48129,48250,48128,0],[48128,48250,48251,0],[48128,48251,48125,0],[48125,48127,48128,0],[48123,48122,48136,0],[48123,48136,48137,0],[48124,48137,48142,0],[48124,48142,48144,0],[13597,48141,48140,0],[13597,48140,48562,0],[13597,48562,13440,0],[13440,48562,13439,0],[13439,48562,13438,0],[48142,48136,48138,0],[48142,48138,48144,0],[48141,13443,48140,0],[48140,13443,48143,0],[48140,48143,48144,0],[48140,48144,48139,0],[48139,48144,48138,0],[48142,48137,48136,0],[48145,48121,48164,0],[48145,48146,48120,0],[48120,48146,48119,0],[48119,48146,48147,0],[48147,48146,48148,0],[48147,48148,48236,0],[48236,48148,49851,0],[48236,49851,48233,0],[48233,48149,48150,0],[48150,48149,48151,0],[48237,48152,48153,0],[48154,48153,49846,0],[48154,49846,49847,0],[48154,49847,48155,0],[48156,13515,48157,0],[48157,13515,13514,0],[48158,48157,13588,0],[48158,13635,13634,0],[48160,48159,13637,0],[13635,48158,48160,0],[48160,48158,48159,0],[48159,48158,13588,0],[48157,48158,48156,0],[48156,48158,13633,0],[13633,48158,13634,0],[48159,13583,13637,0],[13637,48161,13491,0],[13583,13587,13637,0],[13637,13587,48161,0],[13491,48161,13492,0],[13492,48161,13581,0],[13493,13492,13581,0],[48151,48149,48152,0],[48162,48163,49845,0],[48163,48162,48152,0],[48163,48152,48149,0],[48152,48162,48153,0],[48119,48147,48189,0],[48189,48147,48118,0],[48145,48166,48146,0],[48121,48122,48164,0],[48253,48254,48167,0],[48166,48165,48244,0],[48166,48244,48243,0],[48166,48167,48165,0],[48164,48253,48145,0],[48145,48253,48166,0],[48122,48252,48164,0],[48114,48170,48171,0],[48114,48171,48172,0],[48114,48173,48170,0],[48170,48173,48169,0],[48173,48174,48169,0],[48169,48174,48112,0],[48169,48112,48168,0],[48112,48217,48168,0],[48168,48175,48176,0],[19637,48176,19635,0],[19635,48176,48175,0],[19635,48175,19642,0],[19642,48175,48111,0],[48169,48168,48176,0],[48169,48176,48180,0],[48177,48180,48178,0],[48179,48303,48178,0],[19637,48180,48176,0],[48179,48178,48180,0],[48169,48180,48170,0],[48170,48180,48177,0],[48170,48177,48171,0],[48199,48181,48182,0],[48199,48182,48183,0],[48183,48182,48201,0],[48183,48201,48300,0],[48183,48300,48301,0],[48183,48301,48184,0],[48185,48184,48186,0],[48188,48187,48191,0],[48188,48191,48189,0],[48188,48189,48190,0],[48190,48189,48118,0],[48189,48191,48119,0],[48119,48191,48192,0],[48119,48192,48120,0],[48192,48197,48120,0],[48120,48197,48193,0],[48145,48193,48196,0],[48365,48196,48194,0],[48194,48196,48364,0],[48364,48196,48195,0],[48195,48196,48211,0],[48211,48193,48197,0],[48196,48193,48211,0],[48186,48187,48185,0],[48185,48187,48190,0],[48190,48187,48188,0],[48181,48171,48182,0],[48171,48181,48172,0],[48172,48181,48199,0],[48172,48199,48116,0],[48116,48199,48117,0],[48198,48184,48185,0],[48198,48185,48190,0],[48184,48198,48183,0],[48190,48118,48117,0],[48198,48117,48199,0],[48198,48199,48183,0],[48171,48177,48178,0],[48171,48178,48182,0],[48178,48303,48182,0],[48182,48303,48302,0],[48182,48302,48200,0],[48182,48200,48201,0],[48301,14240,48202,0],[48186,48202,48203,0],[48203,48202,14239,0],[48203,14239,48204,0],[48204,48205,48203,0],[48203,48205,48206,0],[48195,48357,48207,0],[48186,48210,48187,0],[48187,48210,48191,0],[48191,48210,48192,0],[48186,48184,48202,0],[48202,48184,48301,0],[48210,48203,48208,0],[48208,48206,48209,0],[48209,48206,48357,0],[48209,48357,48195,0],[48192,48210,48197,0],[48197,48210,48208,0],[48197,48208,48211,0],[48211,48208,48209,0],[48209,48195,48211,0],[48210,48186,48203,0],[48206,48208,48203,0],[48204,14239,48212,0],[48213,48212,48214,0],[48213,48214,48216,0],[48213,48216,48372,0],[48372,48216,48373,0],[14236,48373,14237,0],[48214,48212,48215,0],[48214,48215,48347,0],[48214,48347,48399,0],[48214,48399,48216,0],[48216,48399,14237,0],[14237,48373,48216,0],[48356,48215,48212,0],[48356,48212,14239,0],[48204,48212,48205,0],[48217,48241,48385,0],[48217,48385,48111,0],[48111,48175,48217,0],[48217,48175,48168,0],[48110,48109,48108,0],[48110,48108,48218,0],[19633,48218,48290,0],[19633,48290,19643,0],[19643,48290,19632,0],[48218,48108,48219,0],[48218,48219,48290,0],[48289,48220,48107,0],[48289,48107,48101,0],[48107,48220,48219,0],[19685,48221,48108,0],[48108,48221,48107,0],[19685,19684,48221,0],[19684,48102,48221,0],[48221,48102,48101,0],[48113,48232,48174,0],[48174,48232,48231,0],[48174,48231,48112,0],[48112,48231,48240,0],[48240,48222,48223,0],[48223,48222,48224,0],[48223,48224,48390,0],[48390,48224,48389,0],[48389,48224,48388,0],[48388,48224,48225,0],[48388,48225,13629,0],[48225,48224,48239,0],[48567,48239,48226,0],[13632,48228,48227,0],[48229,48228,48230,0],[48230,48240,48231,0],[48151,48231,48232,0],[48151,48232,48150,0],[48232,48113,48150,0],[48150,48113,48115,0],[48150,48235,48233,0],[48115,48234,48150,0],[48150,48234,48235,0],[48236,48235,48118,0],[48236,48118,48147,0],[48236,48233,48235,0],[48228,48229,48238,0],[48238,48229,48237,0],[48238,48237,48153,0],[48152,48237,48151,0],[48229,48230,48237,0],[48151,48237,48231,0],[48237,48230,48231,0],[48153,48154,48238,0],[48155,48156,13633,0],[48155,13633,48227,0],[48155,48227,48238,0],[48238,48227,48228,0],[48155,48238,48154,0],[48224,48222,48239,0],[48228,48226,48239,0],[48228,48239,48230,0],[48230,48239,48222,0],[48239,48567,13630,0],[48239,13630,48225,0],[48112,48240,48241,0],[48241,48240,48223,0],[49851,48148,49850,0],[49850,48148,48243,0],[48166,48148,48146,0],[48166,48243,48148,0],[48243,48242,49850,0],[48244,48165,48245,0],[48245,48165,48249,0],[13520,48246,13521,0],[48245,48246,48247,0],[48245,48247,48244,0],[48244,48247,48243,0],[48245,48248,48246,0],[13522,13521,48246,0],[13522,48248,13546,0],[48249,48167,48254,0],[48249,48254,48250,0],[48251,48250,48252,0],[48252,48250,48253,0],[48253,48164,48252,0],[48251,48252,48123,0],[48123,48125,48251,0],[48250,48254,48253,0],[48249,48165,48167,0],[48242,48243,48247,0],[48242,48247,13519,0],[48247,48246,13519,0],[13550,13520,13563,0],[13549,13547,13567,0],[13567,13547,48255,0],[13549,13567,13541,0],[13541,13567,13538,0],[48256,13463,48279,0],[48259,48265,48258,0],[48259,48258,48260,0],[49887,48260,48276,0],[48276,48260,48258,0],[48276,48258,48261,0],[48268,48256,48277,0],[48277,48256,48262,0],[48277,48262,48257,0],[48263,48267,48264,0],[48257,48264,48265,0],[48257,48265,48259,0],[48265,48266,48258,0],[48264,48267,48265,0],[48265,13451,48266,0],[48266,13451,13467,0],[48266,13467,13456,0],[13451,48265,48267,0],[13451,48267,13468,0],[13468,48267,48263,0],[48266,13456,48261,0],[48257,48262,48264,0],[48264,48262,13450,0],[48256,48268,48269,0],[48269,48268,48270,0],[48269,49880,13463,0],[13463,49880,13460,0],[48269,13463,48256,0],[48270,48268,48271,0],[48271,49889,49885,0],[49885,49889,48272,0],[49885,48272,48273,0],[49882,48273,48272,0],[49882,48272,48274,0],[48278,49898,48260,0],[48268,48277,48271,0],[48277,48257,49898,0],[49898,48257,48259,0],[48280,48279,13462,0],[48280,13462,13449,0],[13462,48279,13463,0],[48279,48280,48256,0],[48262,48256,48280,0],[48262,48280,13450,0],[13450,13648,13479,0],[13479,48263,13450,0],[48264,13450,48263,0],[13648,13450,48281,0],[13648,48281,13480,0],[13449,13486,48281,0],[48281,13486,13480,0],[48281,13450,13449,0],[13449,13450,48280,0],[49940,48282,13584,0],[13582,48282,48283,0],[48283,48282,13579,0],[13578,13579,48284,0],[48285,48284,13569,0],[13578,48284,48285,0],[13578,48285,13496,0],[13496,48285,13497,0],[13497,48285,13569,0],[13579,48282,49940,0],[13579,49940,48284,0],[48287,13689,48286,0],[48286,13688,13666,0],[48286,13666,48287,0],[13661,48287,13666,0],[48100,48099,48289,0],[48288,48220,48295,0],[48295,48220,48289,0],[48289,48101,48100,0],[48288,19632,48220,0],[48220,19632,48219,0],[48219,19632,48290,0],[48293,19628,19631,0],[48293,19631,48296,0],[48293,48292,19628,0],[48381,48294,48292,0],[48292,48294,48291,0],[48291,48288,48295,0],[48295,48289,48099,0],[48099,48098,48295,0],[48295,48098,48291,0],[48291,19627,48292,0],[48292,19627,19628,0],[48288,48291,48294,0],[48296,19631,48315,0],[48315,19631,48317,0],[48296,48297,48380,0],[48306,48313,48298,0],[48298,48313,14243,0],[48298,14243,14242,0],[48298,14242,48299,0],[48298,48299,48312,0],[48312,48299,48201,0],[48201,48299,48300,0],[48300,48299,48301,0],[48301,14242,14240,0],[48303,48179,48304,0],[48303,48304,48305,0],[48308,48305,48310,0],[48311,48310,48306,0],[48311,48306,48307,0],[48307,48306,48298,0],[48305,48308,48303,0],[48303,48308,48309,0],[48200,48302,48311,0],[48311,48302,48309,0],[48309,48308,48310,0],[48309,48310,48311,0],[48312,48307,48298,0],[48311,48307,48200,0],[48200,48307,48312,0],[48200,48312,48201,0],[48301,48299,14242,0],[14245,48313,48314,0],[48314,48315,14225,0],[48296,48315,48316,0],[48306,48316,48313,0],[48313,48316,48314,0],[48314,48316,48315,0],[48306,48297,48316,0],[48316,48297,48296,0],[14225,14226,48314,0],[48314,14226,14245,0],[14245,14244,48313,0],[48296,48380,48293,0],[48317,48004,48318,0],[14226,48318,48319,0],[14226,48319,14227,0],[14226,14225,48318,0],[48318,14225,48317,0],[48322,48320,48321,0],[48322,48321,48324,0],[48325,48323,14219,0],[48322,48324,48323,0],[48323,48324,14219,0],[14218,14219,47836,0],[14219,48324,47836,0],[48320,48322,48325,0],[48320,48325,14220,0],[48320,14220,48077,0],[48077,14220,19456,0],[48320,19459,48329,0],[19461,19460,47893,0],[47893,19460,48594,0],[47893,48594,47894,0],[19460,48328,48327,0],[48327,48328,48329,0],[48320,48329,48328,0],[47896,47895,48330,0],[48330,47853,47896,0],[47896,47853,47849,0],[47865,47832,48330,0],[47865,48330,47895,0],[14215,48331,48332,0],[14215,48332,14201,0],[14201,48332,47860,0],[48331,14215,48423,0],[48331,47841,48332,0],[48332,47841,47840,0],[48332,47840,47860,0],[48003,48333,48318,0],[48319,48318,48333,0],[48333,48003,48005,0],[48333,48005,48006,0],[48297,48306,48310,0],[13547,13564,48334,0],[48255,13547,48335,0],[48335,13547,13534,0],[13533,13534,48334,0],[13533,48334,13544,0],[48334,13534,13547,0],[49894,13533,13544,0],[13544,13532,49894,0],[48341,48335,48336,0],[48345,49896,49897,0],[48337,49897,49893,0],[48337,49892,48338,0],[48339,48343,49890,0],[48339,49890,48340,0],[48341,48336,48339,0],[48339,48340,48342,0],[48339,48342,13536,0],[48343,48339,48344,0],[48338,48343,49891,0],[48336,48344,48339,0],[48343,48344,49891,0],[48338,49891,48337,0],[48339,13536,48341,0],[13536,13535,48341,0],[48341,13535,48255,0],[48341,48255,48335,0],[48343,48338,49890,0],[49896,48345,48336,0],[49897,48337,48345,0],[48345,48337,49891,0],[48336,49891,48344,0],[48336,48345,49891,0],[48346,14228,48377,0],[48008,48007,48076,0],[48076,48007,48075,0],[14229,14230,48378,0],[48347,48378,48348,0],[48398,48348,48349,0],[14231,48348,48378,0],[14231,48378,14230,0],[48349,14231,48010,0],[14232,48349,48353,0],[13730,13725,48350,0],[48007,48006,48075,0],[42924,48014,42926,0],[42921,42920,48402,0],[48402,42920,42919,0],[42919,48010,48351,0],[48351,48010,48352,0],[48352,48010,48009,0],[14232,48353,48354,0],[42918,48354,42919,0],[42919,48354,48353,0],[42919,48353,48010,0],[48353,48349,48010,0],[48378,48347,48355,0],[48356,48355,48347,0],[48206,48213,48367,0],[48206,48367,48357,0],[48357,48358,48207,0],[48358,48368,48360,0],[48360,48368,48359,0],[48360,48556,48361,0],[48361,48556,49852,0],[48361,49852,48362,0],[48362,49852,48363,0],[48362,48363,48139,0],[48139,48561,48140,0],[48139,48138,48362,0],[48362,48194,48361,0],[48138,48136,48362,0],[48196,48365,48121,0],[48362,48365,48194,0],[48194,48364,48360,0],[48360,48361,48194,0],[48364,48358,48360,0],[48364,48195,48207,0],[48364,48207,48358,0],[48362,48136,48365,0],[48121,48365,48122,0],[48206,48205,48213,0],[48213,48205,48212,0],[48394,13433,48366,0],[48366,48367,48371,0],[48213,48371,48367,0],[48367,48366,48357,0],[48357,48366,48358,0],[48366,13433,48358,0],[48358,13433,48368,0],[48359,48369,48370,0],[48369,48359,13434,0],[48359,48368,13433,0],[48394,48366,13432,0],[13432,48366,48371,0],[48372,13432,48371,0],[48372,48371,48213,0],[13432,48372,48373,0],[48374,48373,14236,0],[14236,14235,48376,0],[48376,14235,48375,0],[48375,13429,13430,0],[48375,13430,48376,0],[14236,48376,48374,0],[48374,13432,48373,0],[48374,48376,13430,0],[48374,13430,13431,0],[48355,48377,48378,0],[48378,48377,14228,0],[48378,14228,14229,0],[48377,48355,14248,0],[48381,48379,48294,0],[48310,48305,48380,0],[48310,48380,48297,0],[48305,48304,48382,0],[48382,48304,48381,0],[48380,48382,48293,0],[48293,48382,48381,0],[48380,48305,48382,0],[48383,48179,48180,0],[19637,48383,48180,0],[48383,19640,48304,0],[48383,48304,48179,0],[48429,19690,48384,0],[48429,48384,19691,0],[48384,19689,48385,0],[48384,48385,48389,0],[48384,48389,48386,0],[48387,13628,19692,0],[19692,13628,48434,0],[13628,48387,13629,0],[13629,48387,48388,0],[48387,48386,48388,0],[48241,48223,48390,0],[48389,48388,48386,0],[48241,48390,48385,0],[48390,48389,48385,0],[48346,14244,14227,0],[14246,48346,48377,0],[48377,14248,14247,0],[48377,14247,14246,0],[48391,13433,48394,0],[48395,48391,48392,0],[48392,48391,48393,0],[48393,48391,48394,0],[48393,48394,13431,0],[13434,13433,48391,0],[13434,48391,48395,0],[13434,13709,48369,0],[48369,13709,13435,0],[13709,13434,48395,0],[13709,48395,48396,0],[13708,48396,48397,0],[48395,48392,48593,0],[48395,48593,48396,0],[48396,48593,48397,0],[48349,14235,48398,0],[48348,48398,48399,0],[48348,48399,48347,0],[48400,42918,42920,0],[42914,48400,42920,0],[48400,42915,42918,0],[48009,48076,48352,0],[42919,48351,48402,0],[48352,48076,48401,0],[48401,48076,42924,0],[48352,48401,48351,0],[48351,48401,48402,0],[48402,48401,42926,0],[47969,47971,47966,0],[47972,47966,47971,0],[47981,47968,47964,0],[14200,47965,14201,0],[47970,47968,47981,0],[40739,48403,40738,0],[40738,48403,40737,0],[40739,40740,48403,0],[40734,48403,40733,0],[13400,13401,48404,0],[13400,48404,13399,0],[13891,13399,48404,0],[13398,48404,13397,0],[13397,48404,40745,0],[40755,40745,13401,0],[13401,40745,48404,0],[13347,40757,48405,0],[48405,40757,40735,0],[48408,48406,48407,0],[48407,48406,13416,0],[13416,48406,13414,0],[48409,13380,49969,0],[48069,13415,13382,0],[48067,48410,13350,0],[13352,13350,48410,0],[48067,13841,48410,0],[48410,13841,13857,0],[49947,13855,13876,0],[13876,48411,48419,0],[48419,48411,48412,0],[13871,48412,48413,0],[48415,48413,13838,0],[13838,48413,13878,0],[48413,48412,13878,0],[13878,48412,48414,0],[13879,48414,48411,0],[48411,13876,13855,0],[13871,48419,48412,0],[48416,48415,13869,0],[13869,48415,13870,0],[13870,48415,13837,0],[13870,13837,13862,0],[48415,48416,48413,0],[48413,48416,13871,0],[13871,48416,48417,0],[48419,13871,48417,0],[13872,48418,13868,0],[13868,48418,48416,0],[13868,48416,13869,0],[48416,48418,48417,0],[13877,48420,48419,0],[48419,48420,13876,0],[13876,48420,13875,0],[13882,14527,14526,0],[13882,14526,48421,0],[48422,48421,14598,0],[14581,48422,14598,0],[14525,48421,14526,0],[14525,14578,14524,0],[14216,47842,48423,0],[48423,47842,47841,0],[48039,48040,48424,0],[48424,48040,47996,0],[48424,47996,48080,0],[40765,48425,40766,0],[48425,40653,40712,0],[48425,40712,40766,0],[48426,14185,13931,0],[48426,13932,13934,0],[13934,13932,13933,0],[47954,13931,48427,0],[42912,48072,48428,0],[42894,48072,48073,0],[19688,19690,48429,0],[48432,48429,48430,0],[48431,19694,48430,0],[48430,19694,48432,0],[48432,19686,48429,0],[48429,19686,19688,0],[48429,19691,48430,0],[48430,19691,48433,0],[48430,48433,48431,0],[48431,48433,13624,0],[13624,48433,19692,0],[49854,48434,13629,0],[49854,13629,49855,0],[48522,13626,48436,0],[48522,48436,48530,0],[48438,48439,49865,0],[48439,48521,48440,0],[48440,48441,48442,0],[48442,48443,48444,0],[48478,48444,48477,0],[48477,48444,48573,0],[48477,48573,48481,0],[48481,48549,48445,0],[48445,48549,48548,0],[48445,48548,48446,0],[48446,48554,48500,0],[48500,48553,48501,0],[48501,48553,48447,0],[48501,48447,48486,0],[48486,48447,48448,0],[48502,48448,48449,0],[48450,48545,48451,0],[48518,48452,48546,0],[48518,48546,48527,0],[48518,48527,48453,0],[48534,48453,48454,0],[48455,48456,48505,0],[48505,48456,48457,0],[49865,48439,48504,0],[48504,48439,48512,0],[48487,48516,48488,0],[48459,48488,48485,0],[48460,48485,48461,0],[48460,48461,48484,0],[48484,48461,49863,0],[48484,49863,48462,0],[48462,49863,48494,0],[48494,49863,48469,0],[48494,48469,48470,0],[48466,48470,48468,0],[48468,48472,48463,0],[48470,48466,48467,0],[48474,48464,48463,0],[48463,48464,48468,0],[48466,48468,48465,0],[48470,48469,48471,0],[48470,48471,48468,0],[48471,48472,48468,0],[48472,48473,48463,0],[48474,48476,48475,0],[48475,48476,48479,0],[48480,48479,48477,0],[48477,48479,48478,0],[48478,48517,48442,0],[48440,48512,48439,0],[48440,48442,48513,0],[48442,48444,48478,0],[48478,48479,48517,0],[48517,48479,49868,0],[48498,48481,48482,0],[48489,48495,49861,0],[48489,49861,48460,0],[48489,48460,48484,0],[48485,48460,49861,0],[48485,48500,48459,0],[48486,48487,48488,0],[48486,48488,48459,0],[48489,48493,48490,0],[48490,48493,48467,0],[48490,48467,48491,0],[48491,48465,48492,0],[48475,48492,48474,0],[48489,48484,48462,0],[48489,48462,48493,0],[48493,48494,48467,0],[48491,48466,48465,0],[48465,48464,48492,0],[48492,48464,48474,0],[48466,48491,48467,0],[48470,48467,48494,0],[48494,48493,48462,0],[48483,48495,48496,0],[48497,48496,48490,0],[48497,48490,48491,0],[48491,48492,48497,0],[48490,48496,48489,0],[48489,48496,48495,0],[48483,48496,48497,0],[48483,48497,48482,0],[48482,48497,48499,0],[48482,48499,48498,0],[48480,48481,48498,0],[48480,48498,48479,0],[48479,48498,48475,0],[48499,48475,48498,0],[48481,48445,48482,0],[48482,48445,48483,0],[48483,48445,48446,0],[48483,48446,48495,0],[48500,48485,48446,0],[48500,48501,48459,0],[48459,48501,48486,0],[48486,48448,48487,0],[48487,48448,48502,0],[48487,48502,48458,0],[48458,48502,48503,0],[48503,48502,48504,0],[48503,48504,48512,0],[48504,48502,48505,0],[48504,48505,48457,0],[48504,48457,49865,0],[48481,48480,48477,0],[48508,48506,48473,0],[48463,48473,48507,0],[48474,48507,48476,0],[48474,48463,48507,0],[48516,48461,48488,0],[48488,48461,48485,0],[49863,48461,49862,0],[48473,49862,48508,0],[49862,48461,48508,0],[48506,48514,48515,0],[48509,48514,48508,0],[48508,48514,48506,0],[48508,48461,48509,0],[48509,48511,48510,0],[48511,48503,48512,0],[48512,48440,48511,0],[48503,48511,48458,0],[48510,48511,48513,0],[48514,48517,48515,0],[48509,48510,48514,0],[48513,48511,48440,0],[48458,48511,48487,0],[48487,48511,48516,0],[48516,48509,48461,0],[48509,48516,48511,0],[48476,49868,48479,0],[49868,48515,48517,0],[48517,48514,48442,0],[48442,48514,48510,0],[48442,48510,48513,0],[48452,48518,48451,0],[48453,48451,48518,0],[48442,48441,48519,0],[48442,48519,48443,0],[48443,48519,48575,0],[48520,48519,48521,0],[48520,48521,49856,0],[49856,48521,48438,0],[48440,48521,48441,0],[48441,48521,48519,0],[48439,48438,48521,0],[13626,49860,48436,0],[13626,48522,13681,0],[13681,48522,13627,0],[48522,48530,13441,0],[48434,49854,48435,0],[48140,48561,48562,0],[48139,48363,48561,0],[48454,48453,48524,0],[48524,48453,48525,0],[48525,48527,48555,0],[13489,48555,48526,0],[13489,13444,48555,0],[48524,48525,48523,0],[48525,48453,48527,0],[48555,48527,48526,0],[48454,48524,48455,0],[48455,48524,48528,0],[48455,48528,48456,0],[48457,48456,49865,0],[49865,48456,48529,0],[48529,48531,49853,0],[49853,48531,48530,0],[48456,48528,48529,0],[48529,48528,48531,0],[48524,48532,48528,0],[48534,48454,48533,0],[48533,48454,48502,0],[48502,48454,48455,0],[48502,48455,48505,0],[48533,48502,48449,0],[48533,48449,48450,0],[48533,48450,48534,0],[48451,48534,48450,0],[48450,48449,48535,0],[48535,48449,48536,0],[48535,48536,48537,0],[48537,48538,48539,0],[48539,13642,13640,0],[48539,48538,48540,0],[13639,48552,48544,0],[48544,48552,48542,0],[48544,48542,48543,0],[48543,48542,13637,0],[48541,13639,13643,0],[13647,13638,48544,0],[48544,13638,13639,0],[13637,48542,48160,0],[48540,48541,13643,0],[48450,48535,48545,0],[13640,48545,48539,0],[48545,13640,48451,0],[48451,13640,48452,0],[13640,13482,48452,0],[48452,13482,48546,0],[13489,48526,13445,0],[13445,48526,13488,0],[13488,48526,48547,0],[48547,48526,48546,0],[48547,48546,13483,0],[13488,48547,13484,0],[48526,48527,48546,0],[48539,48545,48537,0],[48537,48545,48535,0],[48447,48536,48448,0],[48448,48536,48449,0],[48536,48447,48553,0],[48540,48538,48554,0],[48540,48554,48541,0],[48541,48554,48548,0],[48550,48548,48549,0],[48552,13639,48551,0],[48551,13639,48550,0],[48550,13639,48541,0],[48550,48541,48548,0],[48537,48553,48538,0],[48554,48446,48548,0],[48555,13444,49815,0],[48360,48359,48556,0],[48556,48359,48370,0],[48370,48557,49852,0],[49852,48557,48559,0],[48559,48363,49852,0],[48557,48370,48369,0],[48557,48369,13435,0],[13435,48558,48557,0],[48557,48558,48559,0],[48559,48560,48363,0],[48560,48558,13437,0],[48560,13437,13438,0],[48560,13438,48562,0],[48560,48562,48561,0],[48561,48363,48560,0],[48560,48559,48558,0],[13712,13711,13436,0],[48564,13436,13711,0],[48564,13654,48563,0],[13654,48564,13655,0],[13655,48564,48565,0],[48564,13711,48565,0],[48565,13711,48566,0],[48566,13772,13773,0],[49855,13630,49857,0],[48568,48567,13631,0],[48568,13631,48569,0],[48570,48571,48569,0],[48569,48571,48572,0],[48572,48571,48444,0],[48481,48573,48574,0],[48554,48538,48553,0],[48550,48549,49941,0],[48550,49941,48551,0],[48551,49941,13636,0],[48542,48552,13636,0],[13636,48552,48551,0],[49941,48549,48574,0],[48574,48549,48481,0],[13632,48570,13631,0],[48570,48569,13631,0],[48568,48569,48572,0],[48568,48572,49858,0],[48575,49858,48443,0],[49858,48572,48444,0],[49858,48444,48443,0],[48567,49857,13630,0],[49866,13634,48577,0],[49866,48577,48576,0],[48574,48576,49941,0],[48577,13634,13635,0],[48577,13635,13636,0],[48240,48230,48222,0],[48587,48588,48578,0],[13652,48587,13668,0],[13650,13668,13687,0],[13650,13687,13686,0],[13688,13668,48587,0],[13652,13668,13651,0],[13651,13668,13650,0],[13649,13673,13651,0],[48579,48580,48581,0],[48566,13773,48565,0],[48565,13773,13771,0],[48565,13771,48581,0],[48581,48582,48565,0],[48581,13771,48579,0],[48579,13771,48584,0],[48579,48584,48583,0],[48583,48584,13785,0],[13785,48584,48585,0],[13657,48583,13669,0],[13669,48583,13658,0],[13768,48585,48584,0],[13771,13769,48584,0],[48565,48582,13655,0],[48582,48581,48580,0],[48579,48583,48580,0],[48580,48583,13657,0],[13655,13656,48586,0],[48586,13656,48578,0],[48586,48578,48588,0],[13655,48586,13670,0],[13670,48586,13671,0],[13671,48586,48588,0],[13671,48588,13672,0],[13672,48588,48587,0],[13672,48587,13652,0],[13703,13705,48589,0],[48590,48589,48592,0],[48590,48592,13598,0],[13703,48589,48591,0],[48591,48589,13732,0],[48591,13732,13731,0],[48589,48590,13732,0],[13598,48592,48593,0],[13598,48593,48393,0],[48393,48593,48392,0],[13707,48397,13706,0],[13705,13706,48589,0],[13705,13769,13706,0],[48589,13706,48592,0],[48592,48397,48593,0],[48592,13706,48397,0],[19460,48327,48594,0],[19429,48594,48078,0],[48594,48327,48078,0],[48078,48327,48329,0],[48595,19425,19424,0],[47928,48595,48596,0],[47928,48596,48597,0],[19422,48597,48596,0],[48595,19424,48596,0],[48596,19424,19423,0],[48598,19659,48096,0],[48096,19659,48599,0],[7874,34828,7714,0],[7714,7719,7874,0],[47701,7874,7719,0],[13744,48600,13743,0],[13743,48600,48601,0],[48601,48600,48612,0],[48601,48612,48606,0],[48601,48602,48613,0],[48602,48603,48604,0],[48604,48603,13748,0],[48603,48602,48606,0],[48603,48606,48605,0],[48605,48606,48607,0],[48607,48606,48608,0],[48609,48608,48605,0],[48605,48608,48611,0],[48605,48611,48603,0],[48603,48611,13734,0],[13734,48611,48610,0],[48610,48612,48615,0],[48615,48612,48600,0],[48602,48601,48606,0],[48606,48612,48608,0],[48610,48611,48608,0],[48602,48604,48613,0],[13743,48601,48613,0],[48614,13744,13745,0],[48614,48610,48615,0],[48610,48614,48616,0],[13691,48616,13746,0],[13744,48614,48600,0],[48607,48608,48609,0],[48607,48609,48605,0],[48617,13737,13736,0],[13736,13735,48617,0],[13735,13734,48617,0],[48617,13734,48619,0],[48619,13734,13692,0],[13692,48618,48619,0],[48619,48618,48620,0],[48621,48620,48618,0],[48621,48618,13694,0],[48620,42865,13737,0],[48620,13737,48617,0],[48620,48617,48619,0],[13746,48616,48614,0],[13751,13750,13606,0],[13751,48622,13750,0],[13750,48622,13738,0],[13751,13752,48622,0],[48622,13752,13753,0],[13795,13794,48623,0],[13795,48623,48624,0],[48624,47683,13796,0],[48624,13796,13795,0],[13794,13793,48623,0],[48623,13793,12986,0],[48623,12986,48624,0],[12986,14354,14351,0],[14371,14352,14358,0],[14350,14371,14349,0],[41817,41722,48625,0],[48625,41722,14483,0],[48627,48626,14500,0],[14500,48626,48631,0],[14500,48631,14501,0],[14501,48631,48628,0],[48629,14502,48628,0],[14488,14489,48626,0],[48626,14489,48631,0],[48628,48631,48630,0],[48629,48630,14595,0],[48630,48631,14489,0],[14490,48630,14489,0],[48630,48629,48628,0],[14488,48626,48627,0],[14488,48627,14485,0],[14497,42829,14487,0],[41825,14501,41824,0],[13835,14597,48632,0],[48632,14597,14595,0],[48633,14490,42835,0],[42835,42834,48633,0],[48633,42834,13834,0],[48634,13811,13810,0],[13811,48634,48635,0],[48638,13809,48643,0],[48638,48643,48640,0],[48640,48643,48636,0],[48637,48636,13826,0],[13826,48636,48642,0],[13826,48642,13827,0],[48638,48640,48639,0],[48638,48639,13807,0],[13807,48639,13749,0],[13823,13606,48639,0],[13823,48639,48640,0],[13749,48639,13606,0],[48640,48641,13823,0],[48641,48637,13825,0],[13825,48637,13826,0],[48637,48641,48636,0],[48636,48641,48640,0],[48634,48642,13809,0],[13809,48635,48634,0],[48634,13827,48642,0],[48642,48636,48643,0],[48643,13809,48642,0],[13814,13813,42845,0],[13814,42845,13812,0],[13812,42845,13810,0],[13372,13818,13819,0],[13604,42865,42874,0],[13604,42874,13808,0],[13604,13808,13807,0],[42892,42876,48644,0],[42880,42892,48644,0],[42892,42857,42858,0],[48644,42876,42877,0],[48644,42877,48645,0],[48644,48645,42880,0],[14487,42829,14492,0],[14487,14492,48646,0],[14491,14487,48646,0],[48647,41715,41714,0],[14542,48648,41845,0],[41845,48648,41833,0],[41833,48648,41832,0],[14544,13291,14545,0],[14381,14378,14469,0],[14330,48647,41714,0],[48649,47690,47758,0],[47746,47748,47749,0],[47746,47745,47748,0],[47748,47745,47750,0],[19709,19704,47757,0],[47776,19445,48650,0],[47776,48651,47775,0],[47775,48651,47774,0],[48651,19586,47774,0],[19587,48652,19586,0],[19586,47821,19585,0],[48652,47821,19586,0],[19588,19589,19587,0],[47776,48650,48651,0],[48651,48650,19446,0],[48651,19446,19586,0],[19588,19446,48654,0],[48655,48654,48653,0],[40450,48655,19529,0],[19588,48654,19595,0],[48654,48655,19595,0],[19585,47774,19586,0],[40450,19594,48655,0],[19570,19588,19592,0],[48655,48653,19529,0],[19520,47744,47745,0],[19338,40405,40406,0],[19338,40406,19822,0],[19339,19337,19340,0],[40405,19339,19340,0],[40405,19338,19339,0],[48704,7221,48656,0],[48656,48706,48704,0],[7228,48657,48705,0],[48703,48705,7307,0],[48703,7307,7314,0],[7228,48706,48658,0],[48658,48706,48656,0],[48656,7310,48658,0],[48658,7310,48659,0],[48657,7228,7229,0],[48657,7229,48660,0],[7271,48661,7272,0],[7272,48661,48660,0],[7271,7306,48661,0],[48661,7306,7307,0],[48661,7307,48705,0],[48661,48705,48660,0],[48657,48660,48705,0],[7228,48658,7227,0],[7227,48658,48659,0],[7227,48659,7226,0],[7311,48659,7310,0],[26344,26310,26312,0],[26201,48662,26199,0],[26199,48662,48663,0],[26199,48663,48664,0],[48664,48663,26196,0],[48664,26196,7950,0],[26196,48663,20073,0],[48672,48665,26074,0],[26074,48665,26073,0],[26073,48665,48693,0],[26065,48665,48666,0],[48666,48665,48672,0],[48666,48672,39707,0],[48670,48667,26071,0],[26071,48667,26048,0],[26046,48668,26034,0],[26034,48668,48669,0],[26176,48669,48670,0],[48670,48668,48667,0],[48667,48668,26046,0],[26044,20091,48671,0],[48671,20091,20092,0],[48671,20092,20093,0],[39707,48672,26149,0],[26149,48672,26074,0],[26153,26158,48673,0],[26077,26153,48673,0],[48679,39699,39698,0],[48679,39698,48674,0],[39699,48679,39703,0],[39703,48679,39700,0],[39697,48674,39698,0],[48675,39697,39717,0],[39717,39697,48736,0],[39697,48675,48674,0],[48674,48675,39722,0],[39722,48675,39721,0],[48679,39701,48680,0],[48680,48681,48676,0],[48676,48681,48684,0],[48676,48684,48677,0],[39700,48677,48728,0],[48728,48677,48685,0],[48685,48678,39705,0],[48680,48676,48679,0],[48680,48682,48681,0],[48681,48682,48683,0],[48683,48682,26058,0],[48681,48683,48684,0],[48685,48684,48678,0],[48678,48684,48687,0],[48684,48683,48687,0],[48687,48683,36154,0],[39701,48689,48680,0],[48686,39706,39705,0],[48686,39705,48678,0],[48678,48687,48688,0],[48678,48688,48686,0],[36154,48683,26057,0],[48683,26058,26057,0],[36151,48690,48691,0],[36151,48691,36152,0],[20073,36152,48691,0],[48691,48690,26056,0],[26067,26066,48692,0],[26066,26049,48693,0],[48693,26049,26073,0],[37561,37560,48694,0],[48729,26078,26079,0],[48734,26101,26143,0],[26095,26094,48695,0],[48695,26096,26095,0],[48695,48696,26096,0],[37498,26096,48696,0],[37498,48696,37497,0],[37497,48696,26103,0],[26043,36141,48697,0],[26043,48697,20082,0],[48697,48698,20082,0],[36972,20080,48698,0],[36100,36099,48699,0],[36119,48699,36098,0],[36100,48699,36120,0],[36120,48699,36119,0],[26323,48702,26324,0],[48701,26323,26322,0],[48700,26334,26335,0],[48700,48701,36107,0],[48702,48701,48700,0],[48702,48700,26335,0],[48702,26335,26324,0],[48702,26323,48701,0],[7228,48705,48706,0],[7314,48704,48703,0],[48703,48704,48705,0],[48705,48704,48706,0],[7263,7308,7306,0],[7263,7306,7292,0],[7308,7263,48707,0],[7264,48707,48708,0],[48708,48707,7263,0],[7678,7684,26337,0],[26129,26125,26126,0],[26125,26129,37560,0],[37560,26129,48694,0],[26173,37578,37577,0],[26173,37577,26172,0],[37576,26172,37577,0],[37576,37575,26172,0],[26172,37575,37581,0],[20453,20454,48709,0],[20453,48709,20448,0],[20453,20448,48722,0],[20098,48710,20099,0],[48710,20098,20450,0],[20450,20098,20449,0],[48720,20254,20267,0],[20267,20265,20261,0],[20264,20268,20263,0],[20263,20268,20261,0],[36079,36724,36722,0],[48711,20932,21071,0],[21071,21035,48711,0],[48711,21035,21088,0],[48711,21088,21072,0],[21072,21088,48712,0],[21072,48712,21073,0],[48712,48713,21073,0],[21073,48713,21074,0],[21074,48713,48714,0],[48714,48713,37243,0],[37243,48713,21034,0],[21034,48713,48712,0],[48714,37243,37235,0],[48714,37235,48715,0],[48715,37022,37236,0],[48715,37236,48714,0],[20943,48716,20906,0],[48716,20845,20908,0],[20943,20906,20907,0],[20908,20906,48716,0],[20843,20845,36956,0],[36956,20845,48716,0],[20909,20895,20902,0],[48717,37020,21079,0],[48717,21079,21078,0],[21078,37014,48717,0],[48719,20255,48718,0],[48719,48718,20265,0],[20267,20268,48720,0],[48720,20268,20269,0],[48720,20269,20439,0],[48721,26327,7371,0],[48722,20447,20452,0],[20452,20453,48722,0],[26130,26113,26112,0],[48724,37580,48723,0],[48724,37576,37580,0],[48723,20114,37574,0],[37574,20114,37572,0],[37574,37572,37573,0],[37569,37568,37572,0],[20442,20113,48725,0],[48725,20113,26028,0],[25972,25935,25934,0],[26175,26172,48726,0],[48726,26172,26113,0],[26131,26129,26130,0],[26131,26130,26112,0],[26131,26112,26128,0],[26128,26112,26111,0],[39111,37540,21519,0],[48727,26132,48734,0],[48734,26132,26102,0],[48734,26102,26101,0],[37566,39655,37567,0],[39704,39700,48728,0],[39713,48729,39691,0],[39691,48729,26091,0],[39691,26091,26080,0],[39705,39704,48728,0],[39698,39688,39692,0],[7932,7946,7931,0],[39729,39723,48733,0],[48733,39723,48730,0],[48733,48730,48731,0],[48731,48730,39720,0],[39720,48730,39719,0],[39719,48730,39718,0],[39718,48730,39721,0],[39723,39721,48730,0],[48733,48731,48732,0],[48732,39724,48733,0],[39724,39729,48733,0],[39912,48732,48731,0],[48734,26104,48727,0],[48684,48685,48677,0],[48735,26082,26163,0],[37512,48737,48736,0],[48736,48737,39718,0],[39718,48737,39719,0],[39719,48737,37455,0],[39719,37455,39720,0],[37455,48737,39716,0],[48675,39717,39721,0],[37477,37458,37459,0],[39914,39923,39924,0],[48743,48740,48739,0],[48739,48740,40006,0],[48739,40006,8029,0],[48739,8029,7986,0],[48742,7962,19976,0],[19976,7962,19974,0],[48741,19933,40026,0],[48741,40026,7964,0],[48741,7964,20058,0],[40026,48742,7964,0],[7964,48742,7963,0],[40026,19933,19935,0],[19935,19933,19934,0],[40005,48740,48738,0],[48738,48740,48743,0],[40005,48738,7991,0],[7989,7991,8005,0],[8005,7991,48738,0],[7986,48744,48739,0],[48744,7987,48743,0],[48743,7987,8006,0],[48743,8006,48738,0],[48743,48739,48744,0],[8046,8038,48745,0],[39965,20063,39967,0],[39967,20063,48746,0],[37668,21524,37667,0],[37667,37669,37668,0],[21537,21536,37655,0],[37655,21536,37653,0],[21548,48748,24383,0],[24383,48748,21557,0],[48748,48749,21557,0],[48749,21556,21557,0],[21556,21552,21555,0],[37444,37445,39654,0],[26305,48750,26296,0],[47715,26305,26296,0],[26296,26295,47715,0],[7225,48751,7697,0],[7697,48751,7700,0],[7697,7696,7225,0],[7225,7696,48753,0],[48752,48753,7693,0],[7693,48753,7694,0],[7227,48752,7692,0],[7692,48752,7693,0],[48753,7696,7694,0],[35730,7842,35729,0],[7848,7834,7846,0],[7858,7846,7841,0],[7847,7848,7846,0],[7847,7846,35723,0],[48754,35722,26726,0],[48754,26726,35725,0],[35722,35724,26726,0],[48754,35725,35727,0],[35727,35725,35726,0],[35727,35726,26721,0],[7793,7817,48755,0],[7819,48755,7817,0],[7856,7852,7853,0],[7856,7853,7835,0],[7835,7853,7854,0],[26682,26681,26633,0],[26633,26681,26680,0],[48758,26785,26788,0],[26641,48758,26786,0],[48758,26788,26786,0],[26786,26788,26642,0],[48759,26667,26642,0],[7759,7749,48760,0],[7759,48760,7758,0],[7798,7792,48755,0],[7791,7784,7792,0],[7828,48761,7829,0],[7829,48761,7750,0],[26468,48762,48763,0],[48763,7086,7085,0],[7086,48763,48761,0],[7750,48761,48762,0],[48763,26529,26468,0],[26528,48763,7085,0],[7090,7089,7761,0],[7765,7761,26464,0],[26464,7761,7089,0],[7790,7791,7792,0],[48755,7792,7793,0],[7792,7798,7790,0],[48768,26533,48764,0],[48764,48766,48765,0],[26536,48765,48766,0],[48766,48764,26533,0],[48764,48767,26543,0],[48764,26543,48768,0],[48769,35675,48770,0],[48772,26546,26545,0],[48770,48771,26545,0],[26545,48771,48772,0],[48772,26548,26546,0],[26546,26548,26547,0],[48769,26543,35675,0],[35675,26543,48767,0],[48773,26710,35688,0],[48775,34760,34758,0],[48775,34752,48774,0],[48774,34760,48775,0],[7085,48776,48815,0],[48815,48776,48814,0],[35182,48813,35183,0],[48776,34798,48777,0],[48777,34798,34761,0],[34761,34798,34797,0],[48813,48814,48777,0],[48777,48814,48776,0],[48779,48778,26411,0],[48778,48779,34737,0],[34804,34737,48779,0],[48782,34749,34788,0],[34749,48780,48781,0],[48781,48780,35196,0],[34749,48782,48780,0],[48783,26453,34802,0],[48784,26453,48783,0],[26414,26413,48784,0],[48784,26413,26410,0],[48784,26410,26453,0],[48784,26451,26414,0],[26451,48784,48783,0],[48783,26459,26451,0],[7278,7276,7237,0],[36922,36921,36926,0],[7241,48785,36927,0],[36926,48785,36925,0],[36925,48785,36916,0],[36916,48785,7243,0],[7243,48785,7242,0],[7242,48785,7241,0],[7239,26664,26639,0],[26664,26665,26638,0],[26638,26639,26664,0],[26639,26663,7239,0],[7239,26663,26662,0],[7240,7239,26662,0],[26662,26661,7240,0],[26667,48759,48786,0],[48787,26703,26702,0],[48787,26702,48788,0],[48787,48788,48790,0],[26692,48789,26693,0],[48789,26689,48790,0],[48790,26689,26684,0],[48790,26684,48787,0],[48787,26684,26703,0],[26703,26684,26704,0],[26704,26684,35720,0],[48789,48790,26700,0],[48789,26700,26693,0],[26761,26760,48791,0],[48791,26760,26699,0],[48792,48788,48791,0],[48792,48791,26698,0],[26699,26698,48791,0],[48788,48792,26696,0],[26696,48792,26697,0],[26697,48792,26830,0],[26830,48792,26698,0],[26696,26773,48788,0],[48794,48793,26739,0],[26739,48793,26727,0],[26727,48793,26728,0],[48794,48795,48793,0],[48793,48795,35689,0],[48795,48794,26711,0],[26711,48773,48795,0],[7743,48796,26737,0],[26734,26736,26737,0],[26736,26735,26737,0],[26737,26735,7743,0],[7743,26715,48796,0],[48798,48797,7772,0],[48798,7772,7771,0],[48798,7771,7752,0],[7758,48760,7771,0],[7752,7771,48760,0],[48760,7748,7752,0],[26735,48797,7757,0],[7757,48797,48798,0],[48799,7773,7776,0],[48799,7783,7770,0],[7774,7770,7775,0],[7775,7770,7783,0],[26549,7080,48800,0],[48800,48801,35660,0],[35660,48801,26511,0],[7080,48801,48800,0],[7080,7078,48801,0],[48800,35660,48802,0],[48800,48802,26525,0],[26524,48802,35660,0],[26523,48765,48803,0],[26524,48803,26536,0],[35671,35670,35658,0],[35658,35670,35669,0],[48804,35170,35186,0],[35186,35174,48804,0],[48804,35174,35168,0],[35172,35168,35166,0],[35166,35168,35167,0],[35168,35172,48804,0],[35172,35171,48804,0],[35170,48804,35171,0],[35189,35160,48805,0],[48805,35160,48808,0],[48807,48806,9174,0],[48807,9174,35348,0],[9181,48806,35159,0],[35160,48806,48808,0],[35161,48808,35162,0],[35162,48807,34905,0],[34905,48807,35348,0],[48807,35162,48808,0],[48807,48808,48806,0],[34767,48810,35180,0],[35180,48810,35179,0],[35178,35179,35177,0],[35175,35177,48812,0],[48811,48809,34768,0],[48812,48809,48811,0],[35178,48814,35179,0],[35179,48809,48812,0],[48812,35177,35179,0],[35180,35181,34767,0],[34766,34767,35181,0],[48810,34767,34768,0],[48810,34768,48809,0],[48836,34768,34767,0],[34891,9185,9186,0],[34891,9186,34894,0],[35154,35155,34770,0],[34770,35193,35154,0],[34769,48816,34770,0],[35189,48805,48817,0],[48817,48805,48818,0],[48817,35158,35189,0],[48819,9234,9233,0],[48821,9233,48820,0],[48821,34765,9165,0],[48821,9165,9233,0],[9233,9165,48819,0],[34854,34848,34853,0],[34848,48822,34853,0],[34853,48822,34852,0],[34848,34854,725,0],[34855,9024,48822,0],[48822,9024,34852,0],[34859,35080,9023,0],[35350,34897,34896,0],[35350,34896,34910,0],[35165,35188,48823,0],[48823,48826,35172,0],[35165,48823,35166,0],[35166,48823,35172,0],[35171,48824,48827,0],[48827,48824,48825,0],[7079,35171,7078,0],[7079,7081,35170,0],[7079,35170,35171,0],[7078,35171,48827,0],[7078,48827,48828,0],[48828,48827,48829,0],[48829,48830,27460,0],[7077,48829,48831,0],[48831,48829,48833,0],[48832,48833,7074,0],[7074,48833,7072,0],[7072,48833,27460,0],[7077,48831,7076,0],[7076,48831,7075,0],[48832,7075,48831,0],[48825,48830,48829,0],[27459,48825,27458,0],[48829,27460,48833,0],[48829,7077,48828,0],[48825,48829,48827,0],[27543,48834,48835,0],[7075,48835,26472,0],[48834,27543,35253,0],[48835,7075,48832,0],[48835,48832,27549,0],[27549,27543,48835,0],[9017,9018,35079,0],[34862,35079,34861,0],[34861,35079,9018,0],[35176,35175,48837,0],[35176,48837,48838,0],[35176,48838,35187,0],[26748,26768,26749,0],[26755,26749,48839,0],[26768,48839,26749,0],[26520,35680,35676,0],[26782,26783,48759,0],[26374,26373,26385,0],[12910,12909,12895,0],[12903,12786,48840,0],[11341,48841,11346,0],[11346,48841,11687,0],[11738,48841,11739,0],[11739,48841,11340,0],[11340,48841,11341,0],[40036,40035,7973,0],[40122,7973,40035,0],[8286,19946,8277,0],[8286,8277,8285,0],[8276,8275,8289,0],[19951,48843,48844,0],[8274,48843,48842,0],[48842,8273,8274,0],[48844,8275,19951,0],[10376,8094,8097,0],[8193,19953,8196,0],[8196,8197,8193,0],[8193,8197,8192,0],[8067,8066,40112,0],[40112,8066,45546,0],[48845,40124,40120,0],[48845,40120,48847,0],[48847,48846,48845,0],[48846,48847,7977,0],[7977,48847,7979,0],[7979,48847,40120,0],[7977,7979,7978,0],[48845,40123,40124,0],[24493,48850,48849,0],[39635,48849,48851,0],[48851,48849,24492,0],[48851,24491,39635,0],[39635,24491,48852,0],[39635,48852,39634,0],[39634,48852,24356,0],[48852,24491,24354,0],[24492,48849,48850,0],[25081,39792,48853,0],[48854,24447,39678,0],[24436,39678,24447,0],[39848,39842,39841,0],[39842,39848,39847,0],[24455,25068,39091,0],[39091,39090,24455,0],[39627,24339,24509,0],[48855,24305,39128,0],[48855,39128,24304,0],[39130,39128,39131,0],[39131,24306,48856,0],[39128,24305,39131,0],[24309,24310,24308,0],[24289,24288,24310,0],[24289,24310,24309,0],[24234,39532,39531,0],[39531,39532,48857,0],[48859,48857,48858,0],[48859,48858,48860,0],[48860,48858,39534,0],[48861,48858,48857,0],[48861,48857,39532,0],[48859,24231,24232,0],[48859,24232,48857,0],[48857,24232,39531,0],[24571,24573,24572,0],[24601,24582,24606,0],[24605,24257,24256,0],[48866,48864,24603,0],[24697,48863,24628,0],[24628,48863,24678,0],[24678,48863,24603,0],[24678,24603,48864,0],[24678,48864,48865,0],[48865,48864,48867,0],[48867,48866,39319,0],[39319,39139,24654,0],[39139,39319,39140,0],[48866,48867,48864,0],[48865,24650,24630,0],[24630,24650,24651,0],[39317,24696,24614,0],[24614,24696,48875,0],[48868,21582,48869,0],[48869,21582,21561,0],[48871,48872,48870,0],[48870,48872,48869,0],[48869,48872,48868,0],[24680,24681,24619,0],[24619,24681,48873,0],[24619,48873,24620,0],[48873,24682,24683,0],[24683,24620,48873,0],[39213,48873,24681,0],[24680,24619,48874,0],[48875,24617,24616,0],[48875,24618,48876,0],[24622,24623,48876,0],[24623,24617,48876,0],[48876,24617,48875,0],[24260,39138,39140,0],[39140,39138,39137,0],[21607,39241,21605,0],[48859,48860,48877,0],[48878,48877,24218,0],[48878,24218,24219,0],[48877,48878,48879,0],[48877,48879,48859,0],[48859,48879,24524,0],[48878,24221,48879,0],[48881,24554,24550,0],[24554,48881,48880,0],[48880,48881,24227,0],[48881,24550,24552,0],[24227,24228,48880,0],[24812,24813,48882,0],[48882,24813,48883,0],[48882,48883,24768,0],[24768,48883,33916,0],[24753,33930,24754,0],[24754,33930,33925,0],[24157,24166,39312,0],[39312,24166,24167,0],[33391,48885,48884,0],[33913,48885,23872,0],[48886,48887,33390,0],[33390,48887,33391,0],[33391,48887,48885,0],[48887,23870,23871,0],[48887,23871,48885,0],[48885,23871,23872,0],[48886,32987,33387,0],[23870,48887,48888,0],[23870,48888,33364,0],[48887,48886,48888,0],[48886,33387,48888,0],[48888,33387,33364,0],[32972,32982,32981,0],[32972,32981,48889,0],[48889,32974,32972,0],[48890,39247,39191,0],[48893,48890,48891,0],[39189,39186,48891,0],[39189,48891,39190,0],[39190,48891,48892,0],[39191,48892,48890,0],[48892,48891,48890,0],[39186,48893,48891,0],[48894,22925,48895,0],[22925,37720,48895,0],[48895,37720,22921,0],[22921,37793,22920,0],[22150,22151,22152,0],[22150,22152,23253,0],[32591,23263,38799,0],[38799,23263,23264,0],[48896,23306,23305,0],[48896,23275,23276,0],[48896,23276,23319,0],[23276,32868,23319,0],[23319,32868,23318,0],[23319,23318,48898,0],[48898,23318,48897,0],[23319,48898,23306,0],[23306,48898,23651,0],[48904,48903,23257,0],[48904,23257,32610,0],[32610,23257,48902,0],[32610,48902,48899,0],[32610,48899,32609,0],[32613,32609,32611,0],[32611,32609,48900,0],[48900,48899,48901,0],[48900,48901,22143,0],[22142,48901,48902,0],[22142,48902,23257,0],[22142,23257,23256,0],[48899,48902,48901,0],[23257,48903,23621,0],[23621,48903,23258,0],[48899,48900,32609,0],[48904,48905,48903,0],[48903,48905,23259,0],[48903,23259,23258,0],[23309,23649,23310,0],[23310,23649,32861,0],[32861,23649,48897,0],[23317,48897,23318,0],[32861,48897,23317,0],[32865,3434,3410,0],[32573,3410,3409,0],[3410,32573,32864,0],[48906,3438,32585,0],[48959,48908,48909,0],[48909,48910,48911,0],[48911,48910,30644,0],[30644,48910,30643,0],[30643,48910,48918,0],[30643,48918,3401,0],[48912,3401,48913,0],[23584,48913,3400,0],[23584,3400,23585,0],[23585,3400,3399,0],[23585,3399,48914,0],[48914,48935,48923,0],[48923,48935,3398,0],[23591,48916,48965,0],[48916,23591,48915,0],[23585,48914,48915,0],[48915,48914,48916,0],[48916,48914,48948,0],[48916,48948,48917,0],[48917,48938,48963,0],[48963,48938,48946,0],[48963,48946,23590,0],[48961,23590,48947,0],[48913,30642,48912,0],[3401,48912,30643,0],[3400,48913,48921,0],[48907,3402,48908,0],[48908,3402,48909,0],[48909,3402,48918,0],[48909,48918,48910,0],[48918,3402,48920,0],[32724,48919,3403,0],[48919,32724,32725,0],[48919,32725,48920,0],[3401,48920,48921,0],[32819,48921,32725,0],[32819,32725,32727,0],[32725,48921,48920,0],[32819,32727,48922,0],[32819,48922,32818,0],[32818,48922,48937,0],[48937,48922,3428,0],[48948,48914,48923,0],[48923,32812,48941,0],[48941,32812,3397,0],[3398,32812,48923,0],[32615,23657,48924,0],[23657,23658,48924,0],[32913,32903,32907,0],[48925,48928,22138,0],[48928,22142,48927,0],[22142,48928,48926,0],[48926,48928,48925,0],[48927,22140,48928,0],[48928,22140,22139,0],[48929,32920,22151,0],[48929,22151,48930,0],[48930,22151,32921,0],[23634,48931,21924,0],[23634,21924,48932,0],[23634,23633,48931,0],[48931,23633,23619,0],[48931,23620,23647,0],[48931,23647,21924,0],[21924,23647,21925,0],[21920,48932,21921,0],[21921,48932,21922,0],[23647,23617,21925,0],[23632,23619,23639,0],[23639,23619,23633,0],[48936,32730,32731,0],[48936,32731,48933,0],[32816,48933,32815,0],[32815,48933,32814,0],[48934,32817,3398,0],[48934,3398,48935,0],[48935,48914,48934,0],[48934,48914,3399,0],[32816,48937,48933,0],[48937,3428,48936,0],[48936,3428,32730,0],[48965,48916,48917,0],[48938,48917,48939,0],[48938,48939,48940,0],[48940,48939,48942,0],[48942,48939,48941,0],[48944,48942,48943,0],[48943,48942,3440,0],[48943,3440,3395,0],[48938,48940,48945,0],[48946,48945,3392,0],[3392,48947,48946,0],[48946,48947,23590,0],[48946,48938,48945,0],[3392,48945,3393,0],[3393,48945,48940,0],[48943,3393,48944,0],[48940,48942,48944,0],[48939,48917,48948,0],[48939,48948,48923,0],[48941,3397,48942,0],[48942,3397,3440,0],[48941,48939,48923,0],[3391,32747,48949,0],[48953,48950,48951,0],[48950,32749,48951,0],[48950,48953,48952,0],[48956,3387,48955,0],[48955,3387,3388,0],[48953,48956,48955,0],[48953,48955,48954,0],[48954,48955,3388,0],[48952,48953,48949,0],[48953,48954,48949,0],[48951,48957,48956,0],[48956,48957,3387,0],[48951,48956,48953,0],[48958,48957,48971,0],[28835,48957,48958,0],[28835,48958,3385,0],[3475,3385,48958,0],[48959,48909,48911,0],[48959,48911,30652,0],[30652,48911,48960,0],[30652,23612,48959,0],[30651,48960,30650,0],[48960,48911,30650,0],[30644,30650,48911,0],[28796,48961,3389,0],[3389,48961,3390,0],[48961,48947,3390,0],[3390,48947,48954,0],[48962,3389,3388,0],[48962,3388,28825,0],[28825,3388,28837,0],[48963,23589,48964,0],[48964,23587,48965,0],[48965,48917,48964,0],[48964,48917,48963,0],[48966,32793,32792,0],[48966,32792,48969,0],[48966,48967,32793,0],[32793,48967,32753,0],[32756,48967,48966,0],[32756,48966,48968,0],[48968,48966,48969,0],[48968,48969,32791,0],[32791,32735,48968,0],[48968,48970,32756,0],[32756,48970,32757,0],[48970,48968,32735,0],[48970,32735,32736,0],[32757,48970,32783,0],[48957,48951,48971,0],[48971,48951,32749,0],[28837,3388,48972,0],[48974,3501,48973,0],[48974,48973,28829,0],[48975,32812,32816,0],[32816,32815,48975,0],[48977,32771,48976,0],[48976,32771,38544,0],[32773,48977,32774,0],[32774,48977,48976,0],[3255,32804,48978,0],[48978,32804,32810,0],[3601,48979,48980,0],[2906,48980,48981,0],[48981,48980,48979,0],[3600,48980,2906,0],[2904,49718,49785,0],[49785,49718,3604,0],[49710,2912,2911,0],[48982,2910,49711,0],[2910,2911,2909,0],[2220,38100,48983,0],[48983,38100,38101,0],[48983,38101,2223,0],[48990,48984,48985,0],[48985,48984,38032,0],[48984,48990,2220,0],[2220,48983,2221,0],[2221,48983,2223,0],[2248,2249,2133,0],[48985,48986,48989,0],[48989,48990,48985,0],[38098,48988,2243,0],[2243,48988,48987,0],[2243,48987,48986,0],[2220,48990,38100,0],[48990,48989,48991,0],[48990,48991,38100,0],[48987,48991,48989,0],[48989,48986,48987,0],[2236,2212,2213,0],[2218,2144,2233,0],[2233,2232,2218,0],[48993,2167,2168,0],[48993,2168,48992,0],[2167,48993,2632,0],[2632,48993,2631,0],[2631,48993,2630,0],[48993,2639,2630,0],[2134,2246,2249,0],[2249,2246,2133,0],[32649,32650,2539,0],[2539,32670,2529,0],[48994,32642,38591,0],[38591,32642,32687,0],[3262,38584,38585,0],[3262,38585,32850,0],[3262,38581,38584,0],[3288,3334,38587,0],[2182,2153,38406,0],[2251,2126,3543,0],[38025,2109,2255,0],[48995,48996,38296,0],[22786,48996,22780,0],[48996,22779,22780,0],[22786,22781,48996,0],[48996,48995,22779,0],[2408,2367,48997,0],[2408,48997,2409,0],[2382,2409,48997,0],[2409,2382,48998,0],[2402,48998,2382,0],[20607,20529,20528,0],[48999,20528,49000,0],[49000,20528,20537,0],[49001,49000,20538,0],[49001,20538,20526,0],[20538,49000,20537,0],[20537,20528,20535,0],[20609,49001,49004,0],[21170,49004,49002,0],[21170,49002,49003,0],[20527,49003,49002,0],[49001,49002,49004,0],[49001,20526,49002,0],[49002,20526,20527,0],[49004,21170,21171,0],[2357,2356,49006,0],[49006,49005,49007,0],[49010,49007,49008,0],[49008,49009,2378,0],[49008,2378,49010,0],[49010,2377,49006,0],[49006,2377,2357,0],[2377,49010,2378,0],[49006,49007,49010,0],[49007,2354,49011,0],[49007,49011,49008,0],[49011,38335,2427,0],[49011,2427,49233,0],[49011,49233,49008,0],[49008,49233,49009,0],[2427,2426,49233,0],[38335,49011,2353,0],[2353,49011,2354,0],[2354,49007,2355,0],[2356,49005,49006,0],[2358,2377,2376,0],[38322,2347,2346,0],[38331,2347,2348,0],[2404,2405,22785,0],[2414,2405,49012,0],[49012,2413,2414,0],[2458,2306,2305,0],[2464,2458,2305,0],[21154,21159,49015,0],[49015,49014,49016,0],[49017,49016,49038,0],[49017,49038,49018,0],[49018,49038,49019,0],[49022,49019,49020,0],[49022,49020,20626,0],[49022,20626,49037,0],[49037,20626,36373,0],[49037,36373,20625,0],[20626,49020,20627,0],[20627,49020,49019,0],[21156,49018,49021,0],[20624,20623,49021,0],[20624,49021,49037,0],[49037,49021,49022,0],[49022,49021,49018,0],[20623,20622,49048,0],[20623,49048,49021,0],[21156,49017,49018,0],[49016,49017,21154,0],[49016,21154,49015,0],[49018,49019,49022,0],[49016,49014,49038,0],[49019,49038,49053,0],[49019,49053,20627,0],[49054,49014,20628,0],[20628,49014,49013,0],[36374,36308,49023,0],[49023,36308,36309,0],[2355,49007,49005,0],[20617,20618,36331,0],[36331,20618,49025,0],[49026,49027,49041,0],[49041,49027,49031,0],[49031,49027,49032,0],[49032,49027,49033,0],[49032,49033,49030,0],[38270,49036,36375,0],[49036,38269,20621,0],[20621,38269,49028,0],[49028,38268,49029,0],[49029,38268,38266,0],[49030,49029,49032,0],[49031,49032,38265,0],[49029,38266,49032,0],[38265,49032,38266,0],[49028,49029,49030,0],[49027,49026,49034,0],[49034,49049,49033,0],[49033,49049,20620,0],[49034,49033,49027,0],[49035,36375,49036,0],[49035,49036,20623,0],[20623,49036,20622,0],[20621,49028,49030,0],[49030,49033,20620,0],[49037,20625,20624,0],[49038,49014,49054,0],[49039,49040,36334,0],[49039,36334,36336,0],[36320,36321,49231,0],[36320,49231,49041,0],[49041,49231,49026,0],[36320,49041,36319,0],[36319,49031,36318,0],[49031,36319,49041,0],[36317,36335,36333,0],[38265,38266,38264,0],[38262,38261,49042,0],[49043,49042,2339,0],[49043,38271,49044,0],[38271,38263,49044,0],[49044,38263,38262,0],[49043,49044,49042,0],[49042,49044,38262,0],[36321,20593,36328,0],[36328,20593,20594,0],[20618,21150,21158,0],[49045,49004,21171,0],[38343,37168,21255,0],[20618,21158,49046,0],[49046,21158,21157,0],[49050,21155,49047,0],[21155,49050,21154,0],[20618,49046,20619,0],[49052,49047,20620,0],[49048,49047,49051,0],[49052,20620,49049,0],[49052,49049,20619,0],[20619,49049,49026,0],[49050,49052,21153,0],[21153,49052,21157,0],[49050,49047,49052,0],[49051,49047,21155,0],[21157,49052,49046,0],[49049,49034,49026,0],[49054,36288,49053,0],[49054,49053,49038,0],[49056,36305,49055,0],[49056,49055,49060,0],[49056,49060,49057,0],[49057,49060,49061,0],[49057,49061,49058,0],[49055,37169,49060,0],[49058,49061,49062,0],[49058,49062,49063,0],[49059,49058,49063,0],[37169,6307,49060,0],[49060,6307,49061,0],[36305,49056,49057,0],[36307,49057,49058,0],[36308,49058,6313,0],[36308,6313,36309,0],[49059,6313,49058,0],[49058,36308,36307,0],[49071,6268,49074,0],[49071,49074,49091,0],[49091,49074,49090,0],[49090,49064,49085,0],[49085,49064,49065,0],[49066,49065,49067,0],[49067,49068,49084,0],[49084,49068,6486,0],[49084,6486,36520,0],[49068,49069,6487,0],[6487,49069,6264,0],[6264,49072,6484,0],[6484,6487,6264,0],[49068,49067,49069,0],[49065,49070,49067,0],[6268,49071,6269,0],[6269,49071,36528,0],[36528,36529,6270,0],[6270,36530,6446,0],[36528,49071,36526,0],[21144,21145,6454,0],[21145,21146,6454,0],[6454,21146,6455,0],[6482,6455,49073,0],[6483,49073,6265,0],[49072,49073,6263,0],[6263,49073,6455,0],[6263,6455,6490,0],[6265,49073,49072,0],[6482,49073,6483,0],[6267,6266,49078,0],[49074,6268,49078,0],[6266,49075,49077,0],[49077,49075,49079,0],[49077,49079,49076,0],[49076,49079,49070,0],[49076,49070,49065,0],[49077,49074,49078,0],[49077,49078,6266,0],[49065,49064,49076,0],[49076,49064,49077,0],[49064,49090,49077,0],[49077,49090,49074,0],[49079,6265,6264,0],[6265,49079,49075,0],[49079,6264,49070,0],[49070,6264,49069,0],[49080,49065,49081,0],[49066,49084,49088,0],[49088,49084,49082,0],[49082,49083,6236,0],[36520,49083,49084,0],[49084,49083,49082,0],[49066,49081,49065,0],[49066,49067,49084,0],[49065,49080,49085,0],[49085,49080,49086,0],[49086,6234,36559,0],[49087,49088,49082,0],[49087,6234,49089,0],[49087,49089,49088,0],[49066,49088,49081,0],[49081,49088,49089,0],[49081,49089,49080,0],[49080,49089,49086,0],[49089,6234,49086,0],[49086,36525,49085,0],[49085,36525,49090,0],[49090,36526,49091,0],[6236,49087,49082,0],[49098,36544,49100,0],[49098,49100,49105,0],[49105,49100,36543,0],[6233,36545,49092,0],[36523,49092,49103,0],[36523,49103,49104,0],[49104,49093,37171,0],[37172,36524,49104,0],[49104,36524,36523,0],[37171,49093,37170,0],[37170,49093,49099,0],[49095,36557,49096,0],[49096,36557,36556,0],[49096,36556,49097,0],[36554,49097,36549,0],[36549,49097,36547,0],[49097,36556,36541,0],[49097,36541,36547,0],[49096,49094,49095,0],[36557,49095,36542,0],[36542,49095,36543,0],[36543,49095,49105,0],[36544,49098,36545,0],[49105,49095,49094,0],[49105,49094,49099,0],[49100,36588,49101,0],[36588,49100,36587,0],[49100,49101,36542,0],[49102,6798,6805,0],[49102,6805,36555,0],[36555,36540,36541,0],[36555,36557,49102,0],[49102,36557,36542,0],[49102,36542,6798,0],[6798,36542,49101,0],[49071,49091,36526,0],[49092,36545,49098,0],[49098,49105,49104,0],[49104,49105,49093,0],[49093,49105,49099,0],[49104,49103,49098,0],[49103,49092,49098,0],[49106,20630,37166,0],[37166,20630,21258,0],[37166,21230,49106,0],[6486,6485,49107,0],[49107,6485,6250,0],[36539,49108,6523,0],[36539,6523,6524,0],[6526,6523,49108,0],[6526,49108,6803,0],[6803,49108,6804,0],[6523,6526,6522,0],[6805,6804,36555,0],[36555,6804,36540,0],[36539,36540,49108,0],[49108,36540,6804,0],[49109,36538,6593,0],[49110,6593,6594,0],[49111,49110,6610,0],[49110,49111,6593,0],[6593,49111,49109,0],[49109,49111,6310,0],[36537,36538,6524,0],[6794,6800,6227,0],[49113,6794,6227,0],[49113,6227,49114,0],[49113,49114,6792,0],[6514,6792,6513,0],[6792,49114,6513,0],[49116,49115,49117,0],[49116,6623,49118,0],[49118,6623,49119,0],[6515,49115,49116,0],[6515,49116,49118,0],[6623,6622,49119,0],[6621,49119,6622,0],[6759,49120,6758,0],[6758,49120,6760,0],[6758,6760,6757,0],[6757,6760,6762,0],[49122,49121,49112,0],[49122,49112,36536,0],[49121,49122,36546,0],[49124,49123,49062,0],[6307,49124,49061,0],[49061,49124,49062,0],[49062,49123,49063,0],[49063,49123,6309,0],[49063,6309,6312,0],[49124,6308,49123,0],[49123,6308,6309,0],[36537,6524,6525,0],[6591,6590,49125,0],[49125,6590,6529,0],[49125,6529,6530,0],[49127,6392,49128,0],[49127,49128,49143,0],[6594,49143,6597,0],[6592,6591,49126,0],[6592,49126,6593,0],[6593,49126,6594,0],[49129,49127,49126,0],[49129,49126,6591,0],[6393,6591,49130,0],[6393,49130,49132,0],[6393,49132,49145,0],[49146,6533,49134,0],[49146,49134,6360,0],[6360,49134,6534,0],[6591,49125,49130,0],[49125,6530,49131,0],[49125,49131,49130,0],[49132,49130,49131,0],[49134,49133,6535,0],[6535,6534,49134,0],[49133,49134,6533,0],[6533,49132,6532,0],[6533,49145,49132,0],[6532,49132,6531,0],[6531,49132,49131,0],[6362,6393,49145,0],[6716,49135,49136,0],[6791,49135,6716,0],[6725,6719,49136,0],[6719,6715,49136,0],[49139,6721,49137,0],[49137,6629,6630,0],[49139,49138,6745,0],[6745,49138,6631,0],[6630,6631,49138,0],[6629,49137,49140,0],[49140,49137,49141,0],[49140,49141,6764,0],[6764,49141,6627,0],[6764,6627,6628,0],[49140,6764,6629,0],[49137,6721,49141,0],[6630,49138,49137,0],[49121,36538,49109,0],[49109,6310,49121,0],[6310,49112,49121,0],[6610,6608,49142,0],[6610,49142,49111,0],[49111,49142,6310,0],[6310,49142,6311,0],[6598,49143,49128,0],[49128,6365,6598,0],[49127,49143,6594,0],[6616,6615,49144,0],[6366,49144,6367,0],[6615,6367,49144,0],[49144,6366,6369,0],[6801,6517,6518,0],[6801,6518,6520,0],[6518,6519,6520,0],[49118,49119,6516,0],[49118,6516,6515,0],[49119,6619,6516,0],[6362,49145,6394,0],[49147,49149,49151,0],[49148,49151,49418,0],[49148,49418,29690,0],[49148,49147,49151,0],[49149,6360,6534,0],[49149,6534,49150,0],[49149,49150,49151,0],[6534,6536,49150,0],[49152,49156,49153,0],[49153,49156,49418,0],[49418,49156,49154,0],[49154,49156,49158,0],[49154,49158,49155,0],[49152,49153,49150,0],[49150,49153,49151,0],[49151,49153,49418,0],[49150,6536,49152,0],[49152,6538,49156,0],[49156,49157,49158,0],[49158,49157,6539,0],[49158,6539,6540,0],[49158,6540,49155,0],[6538,49157,49156,0],[6361,6394,49146,0],[6533,49146,49145,0],[29690,49172,49159,0],[49159,49172,49160,0],[49203,49175,6354,0],[6354,49175,49161,0],[49161,49175,49162,0],[49163,49169,49164,0],[29703,49166,49168,0],[29703,49168,29685,0],[49166,29702,37926,0],[37926,49165,49166,0],[49166,49165,49169,0],[49168,49169,49167,0],[29687,49167,49174,0],[29687,49174,29688,0],[49174,49167,49163,0],[49163,49167,49169,0],[29687,49241,49167,0],[49166,49169,49168,0],[49165,49164,49169,0],[49165,49184,49164,0],[49164,49184,49170,0],[49164,49170,49163,0],[49161,49163,49170,0],[37927,37928,6353,0],[49163,49161,49162,0],[49171,37927,6353,0],[49171,6382,49161,0],[49171,49161,49170,0],[49171,49170,37927,0],[49184,37927,49170,0],[49162,49175,49174,0],[49162,49174,49163,0],[49172,29688,49160,0],[49175,49173,49174,0],[29688,49174,49160,0],[49160,49174,49173,0],[6354,6355,49203,0],[49177,49176,49178,0],[49203,49178,49181,0],[49181,49178,49176,0],[49175,49203,49181,0],[49175,49181,49179,0],[49159,49179,49176,0],[49180,49183,49204,0],[49179,49181,49176,0],[49159,49176,49182,0],[49159,49182,49180,0],[49180,49182,49183,0],[49183,49182,6396,0],[6396,49182,6358,0],[49176,49177,49182,0],[49182,49177,6358,0],[6358,49177,6357,0],[6357,49177,6384,0],[6374,37928,38356,0],[6352,6374,38356,0],[6352,38356,38365,0],[6399,6352,38365,0],[37925,38357,49185,0],[49184,49185,38360,0],[49185,49184,37926,0],[6407,29659,29660,0],[6407,29660,49186,0],[49186,29660,29661,0],[49186,29661,49187,0],[49186,49187,49188,0],[49188,49187,49189,0],[49202,49189,49199,0],[49199,49191,49196,0],[37894,37895,49190,0],[49196,49190,49199,0],[49187,29661,49217,0],[49189,49187,49193,0],[49189,49193,49191,0],[49192,49195,49218,0],[49192,37894,49190,0],[49192,49190,49196,0],[49193,49194,49195,0],[49195,49196,49193,0],[49193,49196,49191,0],[49192,49196,49195,0],[49193,49187,49194,0],[49191,49199,49189,0],[6407,49188,38387,0],[38387,49188,6413,0],[49197,6413,49202,0],[49201,49198,49199,0],[49199,49190,49201,0],[37895,49201,49190,0],[49201,37895,49198,0],[49198,37895,49200,0],[49198,38386,49199,0],[49199,38386,49202,0],[49189,49202,6413,0],[49189,6413,49188,0],[49188,6407,49186,0],[6407,49238,29659,0],[49239,6409,6403,0],[49239,6403,49240,0],[49177,49178,6384,0],[6384,49178,6356,0],[6356,49178,49203,0],[6355,6356,49203,0],[49159,49160,49179,0],[49205,6575,6538,0],[6538,6536,49205,0],[49205,6536,6535,0],[6575,49206,6537,0],[6537,49206,49372,0],[6575,6576,49206,0],[49206,6576,49207,0],[49207,49372,49206,0],[6576,6577,49207,0],[29782,49207,29781,0],[29781,49207,6577,0],[49155,49208,49154,0],[49154,49208,29689,0],[29689,49208,29688,0],[29688,49208,29687,0],[49155,49210,49208,0],[49208,49210,49209,0],[49209,29687,49208,0],[49155,49211,49210,0],[6540,6541,49211,0],[49211,6541,49212,0],[6542,49212,6541,0],[49210,49211,49213,0],[49210,49213,49209,0],[49209,49213,29686,0],[6540,49211,49155,0],[49211,49212,49213,0],[29686,49213,29685,0],[29694,29653,29697,0],[29694,29697,29695,0],[29619,29651,49214,0],[49216,49217,29661,0],[49216,29667,49217,0],[49187,49217,49194,0],[49217,29667,49194,0],[49218,49195,49194,0],[37924,37929,38358,0],[37924,38358,38357,0],[38357,37925,37924,0],[49185,37926,37925,0],[49050,21153,21154,0],[20532,20531,20578,0],[20578,20543,20542,0],[20578,20542,20532,0],[20544,20578,20587,0],[49219,20539,20586,0],[20586,20579,49219,0],[20583,20586,20584,0],[49220,20575,21335,0],[21335,20575,21336,0],[20575,20574,21336,0],[49220,37306,49221,0],[49221,37306,37307,0],[49221,37307,37304,0],[20569,20577,20568,0],[20568,20559,20569,0],[49220,21335,21334,0],[20574,20572,21337,0],[37305,37306,21332,0],[21332,37306,21334,0],[20611,20610,21175,0],[20611,21175,37168,0],[21292,21276,21275,0],[22771,37812,22769,0],[49223,37812,21285,0],[49223,21285,49224,0],[21284,49224,21286,0],[21286,49224,21285,0],[49224,20549,49226,0],[22771,22772,49225,0],[49225,22772,21287,0],[22771,49225,37812,0],[37812,49225,21285,0],[49223,49224,49226,0],[20558,20556,49227,0],[49227,20556,20555,0],[49227,20562,20558,0],[21282,21284,21281,0],[49229,49228,20560,0],[20560,20559,49229,0],[49229,20565,49228,0],[49228,20565,20566,0],[20560,49228,20570,0],[49230,37813,49223,0],[49223,49226,49230,0],[37814,49230,20550,0],[20550,49230,49226,0],[22444,22468,20188,0],[22444,20188,20189,0],[49231,36331,49025,0],[49231,49025,49026,0],[36314,36313,6443,0],[36323,36325,49232,0],[49233,2426,2425,0],[2425,2379,49233,0],[49233,2379,49009,0],[49234,2335,2336,0],[49234,2336,36366,0],[49235,36349,36351,0],[6325,6323,49237,0],[49238,6411,49239,0],[49239,6411,6410,0],[49238,49239,49240,0],[49168,49167,49241,0],[49209,29686,49241,0],[49241,29686,29685,0],[49241,29685,49168,0],[6342,6317,38256,0],[38256,6317,6343,0],[38256,6343,38259,0],[38259,6343,38260,0],[38260,6343,36372,0],[37914,49242,29647,0],[29647,49242,49215,0],[49242,29652,49214,0],[49214,49215,49242,0],[29669,29643,29676,0],[2319,2317,2461,0],[49243,37913,29638,0],[49243,29638,29441,0],[29441,29440,38208,0],[38208,38207,29441,0],[38305,49244,38192,0],[38192,49244,29441,0],[49245,38206,29499,0],[29498,49245,29499,0],[38205,38206,49245,0],[29529,29518,29519,0],[29520,29519,49246,0],[49246,29519,29518,0],[29433,29804,29525,0],[29804,29803,29805,0],[29432,29433,29525,0],[29525,29526,29432,0],[29503,29501,5319,0],[38144,49247,49274,0],[49274,49247,49248,0],[49248,49247,49249,0],[49276,49249,49303,0],[49250,49252,49251,0],[49303,49249,49250,0],[49250,49249,49253,0],[49250,49253,49252,0],[49252,49253,49270,0],[49270,49253,49271,0],[49270,49271,49254,0],[49254,49271,49255,0],[49254,49255,49256,0],[49256,49255,38148,0],[49258,49257,5019,0],[5019,49257,5020,0],[49252,49257,49251,0],[49251,49257,49259,0],[49257,49258,49259,0],[49258,5018,49259,0],[49259,5018,5017,0],[49259,5017,1825,0],[5017,5015,1825,0],[1825,5015,1824,0],[38144,49274,38143,0],[29833,29834,29529,0],[29521,29833,29519,0],[5024,5025,49260,0],[5271,49260,5276,0],[5271,49262,49260,0],[5024,49260,49261,0],[5023,49261,49262,0],[49260,49262,49261,0],[5272,5023,49263,0],[49263,5023,29422,0],[5022,5021,5324,0],[5013,49269,49264,0],[5015,49264,49265,0],[5015,49265,1824,0],[1823,1824,49265,0],[1823,49265,5328,0],[49266,49267,49268,0],[49269,49267,49264,0],[49267,49266,49264,0],[49264,49266,49265,0],[49268,5328,49266,0],[49266,5328,49265,0],[49269,5327,49267,0],[49254,49256,5020,0],[49254,5020,49270,0],[49252,49270,49257,0],[49257,49270,5020,0],[49272,49271,49253,0],[49272,49253,49249,0],[38148,49255,38146,0],[38146,49272,49247,0],[49247,49272,49249,0],[49271,49272,38146,0],[49271,38146,49255,0],[49247,38145,38146,0],[49249,49276,49294,0],[49249,49294,49248,0],[49248,49294,49273,0],[49274,49273,49275,0],[49275,49273,49289,0],[49275,49289,49292,0],[38141,49292,38140,0],[49273,49274,49248,0],[49274,49275,38143,0],[38143,49275,38141,0],[38141,49275,49292,0],[49276,49303,49277,0],[49441,49277,49278,0],[49278,49279,49441,0],[49441,49279,49285,0],[49285,49279,49280,0],[49285,49280,49286,0],[49286,49280,49283,0],[49286,49283,49281,0],[49281,49283,49442,0],[49442,49283,1916,0],[49442,1916,49443,0],[49283,49280,49282,0],[49283,49282,49298,0],[49283,49298,1916,0],[49284,49285,49287,0],[49287,49285,49286,0],[49287,49286,49290,0],[49290,49446,49288,0],[38170,49293,49288,0],[49288,49293,49289,0],[49288,49289,49290,0],[49290,49289,49287,0],[49287,49289,49291,0],[49273,49291,49289,0],[38140,49292,38139,0],[38139,49292,49293,0],[49289,49293,49292,0],[49273,49294,49291,0],[49294,49287,49291,0],[49287,49294,49284,0],[49295,49251,1826,0],[49295,1826,49278,0],[49279,49278,49296,0],[49296,49278,1932,0],[49296,1932,49302,0],[49296,49302,49297,0],[49298,49297,1917,0],[49302,49299,49300,0],[49300,49299,49455,0],[49300,49455,1918,0],[1918,49455,1919,0],[49297,49300,1917,0],[1917,49300,1918,0],[49300,49297,49302,0],[49299,49302,49301,0],[49279,49296,49282,0],[49282,49297,49298,0],[49282,49280,49279,0],[49282,49296,49297,0],[49277,49303,49295,0],[49295,49278,49277,0],[49295,49303,49251,0],[49251,49303,49250,0],[1842,1841,1833,0],[49304,1894,49305,0],[1833,29411,1831,0],[1831,29411,49305,0],[1831,49305,1895,0],[49304,49305,29411,0],[1842,1833,49306,0],[49307,29803,49966,0],[49307,49966,29434,0],[29434,29602,49307,0],[5125,49308,5126,0],[5126,49308,5127,0],[5127,49308,49309,0],[5127,49309,29728,0],[49310,49312,49311,0],[29626,49312,29627,0],[49312,29626,29623,0],[49312,29623,49311,0],[49310,49311,29727,0],[49318,29819,49317,0],[49317,29819,49313,0],[49316,49313,49315,0],[49316,49315,49314,0],[49314,49315,29598,0],[49316,49317,49313,0],[49316,5118,49317,0],[49317,5118,49319,0],[5113,29588,29589,0],[49322,49320,5120,0],[49320,49323,29589,0],[49323,49320,49322,0],[49323,49321,29589,0],[49321,5113,29589,0],[49324,5111,5112,0],[5111,49324,5110,0],[5110,49325,5109,0],[5109,49325,49326,0],[49326,49325,49327,0],[5184,49327,49330,0],[49330,49327,49328,0],[49328,49327,49325,0],[49325,5110,6549,0],[6549,5110,49324,0],[49328,6550,6548,0],[49329,6548,5188,0],[49328,6548,49330,0],[49330,6548,49329,0],[5109,49326,29762,0],[5183,49326,5184,0],[49327,5184,49326,0],[5184,49330,5182,0],[5182,49330,49329,0],[5182,49329,49331,0],[5189,49331,5188,0],[6556,6554,29773,0],[6556,29773,6557,0],[29773,6554,6553,0],[29739,49323,29591,0],[49333,6548,49332,0],[6547,49334,49332,0],[49332,49334,49333,0],[49333,49334,5188,0],[5188,49334,5200,0],[49334,49335,5200,0],[6586,49335,49336,0],[6586,49336,49369,0],[49334,49336,49335,0],[6548,49333,5188,0],[49338,49337,5122,0],[49338,5122,49339,0],[49339,5122,29728,0],[49339,29728,29614,0],[29614,29613,49339,0],[49337,49338,29608,0],[29609,29613,49420,0],[5124,49309,49308,0],[49312,5123,29627,0],[29627,5123,29628,0],[5124,29628,5123,0],[49340,49341,5115,0],[5115,49341,5114,0],[5119,5114,5118,0],[5118,5114,49341,0],[5118,49341,49319,0],[49319,49341,29437,0],[49341,49340,5108,0],[29437,49341,5108,0],[29740,29739,29591,0],[29741,49342,29742,0],[29740,29591,29736,0],[29736,29591,49342,0],[29736,49342,49343,0],[49343,49342,29741,0],[29735,49343,29607,0],[49343,29741,29607,0],[49317,49319,29821,0],[49317,29821,49318,0],[5141,5143,5139,0],[5139,5140,5141,0],[49344,49366,6565,0],[49344,5210,6579,0],[49345,49346,29830,0],[29823,49347,49345,0],[29823,49345,29824,0],[49345,49347,49348,0],[5163,49349,5162,0],[49349,5163,49350,0],[49349,49350,49348,0],[49352,5163,5164,0],[5164,5165,5056,0],[5161,49349,49348,0],[5161,49348,5160,0],[5160,49348,49347,0],[49345,49348,49346,0],[49346,49348,49350,0],[49351,29829,49352,0],[49352,29829,49350,0],[6636,6689,6662,0],[6637,6662,6689,0],[49353,6638,6639,0],[49354,6640,6674,0],[6674,6640,6641,0],[6639,6640,49353,0],[49354,49353,6640,0],[6208,1628,49355,0],[49355,49356,6094,0],[6094,49356,6095,0],[6095,1627,29906,0],[6095,29906,1620,0],[1620,1619,49357,0],[49357,1618,49361,0],[49361,1618,49359,0],[1617,1616,1615,0],[1618,1617,1615,0],[1618,1615,49359,0],[49359,49358,49361,0],[49358,49359,49360,0],[49359,1615,49360,0],[1620,49375,1621,0],[1621,49375,1626,0],[49356,1627,6095,0],[49358,6096,49361,0],[6096,6095,49361,0],[49357,6095,1620,0],[49357,49361,6095,0],[29929,29928,29930,0],[29930,29925,29924,0],[29924,29923,1617,0],[1617,29923,49362,0],[1617,49362,1616,0],[49362,6694,29921,0],[29921,1616,49362,0],[29930,29928,6656,0],[49363,6098,6091,0],[49363,6091,6092,0],[6094,49363,6093,0],[6093,49363,6092,0],[6585,6584,5196,0],[6563,5196,6559,0],[5196,6584,6559,0],[6559,6584,6558,0],[49364,29776,6581,0],[6580,49364,6581,0],[49344,49367,49366,0],[6565,49366,49365,0],[49367,49365,49366,0],[6589,6588,49420,0],[49369,6545,49368,0],[49368,6545,49370,0],[49368,49370,6588,0],[6588,49370,29609,0],[29791,49367,49344,0],[49344,6579,29791,0],[5208,5209,5211,0],[6569,6568,29793,0],[29777,29778,6569,0],[29777,6569,29793,0],[29784,29785,49371,0],[49371,49372,29784,0],[29784,49372,29783,0],[5054,49374,49373,0],[5234,5231,5051,0],[6691,6705,49417,0],[6691,49417,6701,0],[6691,6633,6705,0],[1620,29906,49375,0],[49377,6195,49376,0],[49376,49433,5586,0],[1648,1635,49376,0],[49376,1635,49377,0],[1633,49377,1635,0],[49432,6192,6193,0],[6511,6786,49380,0],[6772,49380,6788,0],[1607,49381,1606,0],[1606,49381,6808,0],[6808,49381,6814,0],[6830,1609,6831,0],[6831,1609,6816,0],[6831,6816,1608,0],[31507,31506,31487,0],[31507,31487,31486,0],[27987,49382,28005,0],[28005,49382,27986,0],[1386,27987,27969,0],[27969,27987,27977,0],[1373,1374,49384,0],[49384,1374,49383,0],[49384,49383,31576,0],[31576,49383,49385,0],[49385,49383,31579,0],[31579,31572,49385,0],[1484,1485,6880,0],[1484,6880,1483,0],[1483,49386,6875,0],[1483,6880,49386,0],[49387,1478,49388,0],[49402,49389,31380,0],[49402,31376,49389,0],[49389,31376,49388,0],[31373,49390,31374,0],[49390,1477,31374,0],[31374,1477,49391,0],[1477,49387,49391,0],[49391,49387,49388,0],[49391,49388,31376,0],[49391,31376,31375,0],[49390,1382,1381,0],[49390,1381,1477,0],[1481,1470,1480,0],[1480,1470,31382,0],[49388,31382,49524,0],[49388,49524,49389,0],[49389,49524,31380,0],[49388,1479,31382,0],[49525,1481,27924,0],[27928,1478,49392,0],[1450,27930,31378,0],[31378,27930,31379,0],[27954,31379,27942,0],[27942,31379,27930,0],[36404,27790,27789,0],[36404,49405,49393,0],[49393,49405,49407,0],[49393,49407,49395,0],[49395,49407,49394,0],[31895,27947,49394,0],[49394,27947,49396,0],[49394,49396,49395,0],[36404,49393,36406,0],[49393,49396,27946,0],[49393,27946,36407,0],[49395,49396,49393,0],[27822,27809,27806,0],[27958,27962,49397,0],[49397,27962,27959,0],[49397,27959,31375,0],[31375,27959,49398,0],[31375,49398,49391,0],[49391,49398,31374,0],[27977,27987,28005,0],[27991,27989,49399,0],[49399,27989,49400,0],[49400,27955,1394,0],[49400,1394,49399,0],[49399,1394,49401,0],[49399,49401,27991,0],[49401,1394,1422,0],[49401,1422,27995,0],[49397,31375,31376,0],[27958,49397,49402,0],[49402,49397,31376,0],[49403,31389,31388,0],[49404,27933,27941,0],[36404,27789,49405,0],[49405,27789,27787,0],[49405,27787,49406,0],[49406,49528,49529,0],[49529,49528,49531,0],[49405,49406,49407,0],[49407,49530,49408,0],[49406,49409,49407,0],[49394,49407,49408,0],[49410,31551,31552,0],[31894,31893,1438,0],[1438,31893,1443,0],[49411,31894,49416,0],[49539,49411,49412,0],[49412,49411,49535,0],[49412,49535,6946,0],[6946,49535,49414,0],[49414,49415,27750,0],[27750,49415,6944,0],[49414,27750,6945,0],[49414,6945,6946,0],[6946,6947,49413,0],[49413,31903,49538,0],[49413,49538,49539,0],[49413,49539,49412,0],[31903,49413,6947,0],[49413,49412,6946,0],[6944,49415,6943,0],[31894,49411,31893,0],[6085,6104,6100,0],[6085,6100,6220,0],[49417,6632,6698,0],[6697,6698,6630,0],[6698,6699,49417,0],[6697,6696,6699,0],[6732,6730,6736,0],[6736,6733,6732,0],[49160,49173,49179,0],[49179,49173,49175,0],[29689,29690,49418,0],[49418,49154,29689,0],[29613,29615,49420,0],[49420,29615,29692,0],[29692,49419,29610,0],[29692,29610,49420,0],[29612,29684,49421,0],[49213,49212,29685,0],[29685,49212,49421,0],[49371,6539,6537,0],[6537,49372,49371,0],[6734,6707,6753,0],[6729,6728,6708,0],[29930,6656,29925,0],[49422,5393,5392,0],[1625,1623,1622,0],[5425,5424,5366,0],[5425,5366,5403,0],[5403,5387,5426,0],[5405,49423,49424,0],[49424,49423,49425,0],[29859,49427,29858,0],[49427,29860,49425,0],[49425,29860,49424,0],[49423,49426,49425,0],[49427,49426,29858,0],[29858,49426,49428,0],[29858,49428,5620,0],[49430,5623,5612,0],[5612,5623,5619,0],[5624,49430,49429,0],[49429,29859,5620,0],[49430,49431,49429,0],[49431,49430,5612,0],[49438,5621,49437,0],[49437,5621,5627,0],[49433,49376,49379,0],[49379,49378,49432,0],[49379,49432,49433,0],[6195,49379,49376,0],[5606,5566,5598,0],[5598,5566,5600,0],[5566,5565,5600,0],[5598,49434,5605,0],[5605,49434,5596,0],[5596,49434,1762,0],[5596,1762,29854,0],[1713,5669,49435,0],[49435,5669,31352,0],[49435,31352,31368,0],[1713,49435,31365,0],[5602,5564,5563,0],[5563,5564,29237,0],[49436,5565,5566,0],[49436,5566,29234,0],[3865,3863,5637,0],[30375,30379,29221,0],[29849,5616,5611,0],[5611,5594,5595,0],[5595,29849,5611,0],[49437,5369,5370,0],[49437,5370,5371,0],[49437,5371,49438,0],[49438,5371,5626,0],[49437,5627,5369,0],[5063,5223,49439,0],[29828,5169,29826,0],[5168,29826,5169,0],[49350,5163,49352,0],[49351,5164,5056,0],[5236,5225,5058,0],[29755,29754,29753,0],[49440,29502,38209,0],[49276,49277,49441,0],[49276,49441,49284,0],[49284,49441,49285,0],[49286,49281,49290,0],[49290,49281,49446,0],[49443,1914,49444,0],[1980,49444,1979,0],[1979,49444,1914,0],[49443,49444,49446,0],[49443,49446,49442,0],[49442,49446,49281,0],[49450,49445,29567,0],[49450,29567,1981,0],[49288,49446,38170,0],[38171,49447,49505,0],[38171,49505,38177,0],[38177,49505,1982,0],[38177,1982,49448,0],[49448,1982,38111,0],[49448,38111,38172,0],[49450,49447,49449,0],[49450,49449,49445,0],[49445,49449,49444,0],[49449,38170,49446,0],[1974,49451,29557,0],[29557,49451,29556,0],[29566,49452,49453,0],[1980,49453,49452,0],[38164,38228,38138,0],[38138,38179,49454,0],[49454,38179,38181,0],[49454,38164,38138,0],[1930,1897,49455,0],[49456,29536,3088,0],[3088,1901,49456,0],[49457,4941,29397,0],[49457,29397,49458,0],[4940,49459,29390,0],[4940,29390,4939,0],[29396,49459,29395,0],[49459,49458,29395,0],[29395,49458,29397,0],[2708,2713,2709,0],[2709,2713,2675,0],[2717,49460,2740,0],[2717,2740,49461,0],[49461,2740,2738,0],[49462,2740,49460,0],[49462,49460,2769,0],[2717,49461,49504,0],[49460,2718,2769,0],[2769,2718,2691,0],[2769,2691,2770,0],[2769,2743,49462,0],[2740,49462,2742,0],[2742,49462,2743,0],[49465,3086,3084,0],[3084,3086,49464,0],[49464,3086,49463,0],[3086,3087,49463,0],[49466,2737,49463,0],[49463,2739,49464,0],[3111,3113,3077,0],[3109,3077,3110,0],[49468,49469,49470,0],[49470,49469,2686,0],[49471,49470,2687,0],[49470,49471,2695,0],[49470,2695,49468,0],[2687,49470,2777,0],[2683,49472,49469,0],[49469,49468,2697,0],[2772,49473,49479,0],[49479,49474,49728,0],[49728,49474,49475,0],[49475,2783,49476,0],[49476,2783,49477,0],[49728,49478,2773,0],[49728,2773,49479,0],[49473,2748,49479,0],[49479,2748,49474,0],[49475,49678,2783,0],[2764,49473,2765,0],[2765,49473,2772,0],[2682,2684,2683,0],[49480,49495,49481,0],[2774,49481,2772,0],[2765,2772,49482,0],[49482,49501,49484,0],[49501,2772,49481,0],[2772,49501,49482,0],[49501,49495,49483,0],[49497,49486,49496,0],[49496,49486,49494,0],[49489,49494,49487,0],[2885,49489,2884,0],[2884,49489,49488,0],[49490,49488,49491,0],[49491,49487,49492,0],[49483,49493,49484,0],[49484,49493,49494,0],[49494,49486,49485,0],[49493,49483,49491,0],[49483,49495,49491,0],[49491,49495,49490,0],[49495,2684,49490,0],[49491,49488,49487,0],[49487,49488,49489,0],[49494,49489,49496,0],[49496,49489,2885,0],[49496,2885,2891,0],[49486,49497,49485,0],[49485,49497,49498,0],[49484,49485,49498,0],[49484,2762,49482,0],[49985,49500,49499,0],[49484,49501,49483,0],[49501,49481,49495,0],[2685,49480,2776,0],[49480,49481,2776,0],[2776,49481,49502,0],[2774,2782,49502,0],[2774,49502,49481,0],[2721,2714,2722,0],[2724,2721,2734,0],[2734,2721,49503,0],[2734,49503,2716,0],[49503,2721,2719,0],[49503,2719,2716,0],[49504,49461,2737,0],[2737,2736,49504,0],[49504,2736,2715,0],[49447,49450,49505,0],[49505,49450,1982,0],[1982,49450,1981,0],[1982,1981,29565,0],[38115,38118,38113,0],[38115,38116,38118,0],[38118,38116,29491,0],[38184,38132,38113,0],[38113,38117,38184,0],[38184,38117,38183,0],[36348,49235,36350,0],[36348,36349,49235,0],[38371,36346,36382,0],[36314,38371,36382,0],[36315,49506,49507,0],[49508,49509,36312,0],[49508,36380,49510,0],[49508,49510,49509,0],[49024,6612,36309,0],[36380,36381,49511,0],[36380,49511,49510,0],[49509,49510,36311,0],[36310,36311,49510,0],[36310,49510,49511,0],[36374,49023,36381,0],[36381,49023,49511,0],[49023,36310,49511,0],[6308,36535,36536,0],[36534,36535,49124,0],[49124,36535,6308,0],[36524,37172,36527,0],[6389,6369,6366,0],[6326,6408,49237,0],[49237,6408,6325,0],[6443,36313,36371,0],[20344,20339,20338,0],[20344,20345,20339,0],[49512,37353,20388,0],[49512,20388,37024,0],[49513,20662,20653,0],[20653,20662,20655,0],[20663,20662,20664,0],[20651,20664,49513,0],[20647,20648,37266,0],[20865,20866,20807,0],[20807,20866,20862,0],[20867,20863,20866,0],[20798,20680,20681,0],[37147,20690,20691,0],[37147,20691,20692,0],[20692,37145,37147,0],[36843,36841,26647,0],[26647,36841,36796,0],[36789,49515,36790,0],[26622,35548,49516,0],[35901,35891,49518,0],[49518,35891,35898,0],[7454,7453,20771,0],[20771,20768,7454,0],[20726,20725,49520,0],[49520,20725,20745,0],[20745,27167,49520,0],[49521,49520,27167,0],[49521,27165,49520,0],[49520,27165,20726,0],[20722,20732,36515,0],[6475,6480,6261,0],[6261,6474,6475,0],[1571,1570,49522,0],[49522,1572,1571,0],[1486,1485,49523,0],[49523,1487,1486,0],[49524,31382,31384,0],[49524,31384,31380,0],[1472,1471,49525,0],[49525,1471,1481,0],[49525,1473,1472,0],[27774,31927,49526,0],[49526,31927,27714,0],[27774,49526,27780,0],[27780,49526,31940,0],[27714,31940,49526,0],[27806,49527,27837,0],[27837,49527,36402,0],[36402,49527,27808,0],[49406,27787,49528,0],[49528,27787,27786,0],[49409,49406,49529,0],[49529,49531,49409,0],[49530,6928,49408,0],[49530,49407,49409,0],[6928,49530,49531,0],[49530,49409,49531,0],[49416,6941,49532,0],[49533,49534,49532,0],[49532,49534,6943,0],[49532,6943,49415,0],[6943,49534,6942,0],[49532,49415,49416,0],[49416,49415,49414,0],[49416,49414,49535,0],[49416,49535,49411,0],[31893,49411,49537,0],[49537,49411,49539,0],[49537,49539,49538,0],[49536,49538,31902,0],[49536,31902,6952,0],[6952,1440,49536,0],[49536,1439,49537,0],[31893,49537,1439,0],[49536,49537,49538,0],[49538,31903,31902,0],[1315,31909,28447,0],[1315,28447,1313,0],[27698,1402,31545,0],[49540,31553,31554,0],[27765,27760,27758,0],[27761,27760,27765,0],[27755,27767,27766,0],[27767,27755,36236,0],[27779,31938,49543,0],[49542,49543,27781,0],[27777,27669,27674,0],[49544,27714,27713,0],[49544,27713,27771,0],[27771,27716,49544,0],[27719,27732,27657,0],[27729,6919,6918,0],[27729,6918,49545,0],[31982,27134,27135,0],[49547,49546,6995,0],[6995,7020,49547,0],[49547,7020,35325,0],[35325,7000,49547,0],[49547,7000,49546,0],[27836,27839,27817,0],[31880,31866,740,0],[31880,740,739,0],[49548,7013,7007,0],[49548,735,7013,0],[49549,27927,27928,0],[27928,49392,49549,0],[36194,27197,36225,0],[36225,27197,31972,0],[49550,27268,49551,0],[49551,35904,49550,0],[35812,35946,35820,0],[35820,35946,27378,0],[27078,35810,27079,0],[36879,49553,49556,0],[49552,35825,49553,0],[35770,49552,49553,0],[35770,49553,49554,0],[35770,49554,49555,0],[49555,49554,35776,0],[49555,35776,35769,0],[36879,49554,49553,0],[49556,49553,35825,0],[35764,35758,26894,0],[35763,26894,35758,0],[26903,26905,26901,0],[26938,27386,27395,0],[26938,27395,27397,0],[35806,35807,27062,0],[49557,27224,35365,0],[49558,35286,35287,0],[35288,35284,35323,0],[35370,35323,35285,0],[35329,35338,35330,0],[27524,27475,27522,0],[27522,27475,7054,0],[27475,27474,7055,0],[7055,27474,7056,0],[35381,26489,26478,0],[35050,35098,35095,0],[26411,34804,48779,0],[34243,34082,34070,0],[49559,34091,34072,0],[49559,34072,34073,0],[33416,33418,33430,0],[49561,23930,49560,0],[49560,25582,23928,0],[23930,49561,33418,0],[33418,49561,25564,0],[25564,49561,49562,0],[49562,49561,23928,0],[23928,23926,49562,0],[49561,49560,23928,0],[33447,33435,33542,0],[33447,33542,33540,0],[49563,33400,23922,0],[23922,33400,33398,0],[23915,23822,23823,0],[23869,33385,33384,0],[25580,33399,33398,0],[33400,25580,33398,0],[33591,28589,33566,0],[49564,35035,28695,0],[49565,564,567,0],[566,567,564,0],[49566,33332,49567,0],[49567,32502,33330,0],[49566,32286,33333,0],[49567,33330,49566,0],[33332,49568,33338,0],[33332,49566,49568,0],[33338,49568,33333,0],[33333,49568,49566,0],[521,522,49569,0],[32500,32499,32565,0],[32565,32564,32500,0],[32500,32564,32563,0],[32564,494,32563,0],[23389,23386,49570,0],[49570,23386,23387,0],[49570,23387,23388,0],[490,32543,32560,0],[32560,32553,490,0],[49572,49571,22057,0],[22057,22006,49572,0],[22051,49572,22054,0],[22054,49572,22006,0],[49572,22051,49571,0],[21803,21804,49573,0],[49573,21804,23777,0],[23761,49573,23778,0],[23778,49573,23777,0],[21805,23777,21804,0],[23371,23369,49575,0],[49575,23369,23368,0],[49575,23368,23355,0],[23353,23368,32485,0],[49576,32404,4443,0],[32406,1210,49577,0],[49577,1210,28214,0],[28220,1179,1208,0],[28221,28217,28220,0],[28221,28220,28216,0],[28216,28220,28219,0],[31187,32222,49578,0],[49580,32388,1162,0],[32429,31129,31113,0],[31113,31129,32430,0],[32271,32267,32273,0],[32273,32267,28745,0],[32265,28745,32267,0],[28719,28654,28679,0],[32270,28623,28762,0],[501,484,49581,0],[32451,49581,23380,0],[28755,28754,28770,0],[28768,32274,49582,0],[28740,28768,49582,0],[32357,49584,1025,0],[999,1025,1000,0],[1000,1025,49584,0],[31036,31035,31037,0],[30892,31035,32231,0],[32232,32231,31035,0],[31035,31036,32232,0],[32232,31036,30882,0],[31679,28084,28034,0],[49585,782,28392,0],[783,28390,784,0],[49586,30965,49587,0],[28395,49587,28396,0],[28396,49587,775,0],[28282,28281,30941,0],[1233,28177,1237,0],[1237,28176,1233,0],[31672,31673,31719,0],[31719,31673,31775,0],[28455,28440,28442,0],[28442,28440,28441,0],[28440,28432,31908,0],[28424,28418,31706,0],[28417,28418,49588,0],[28417,49588,49589,0],[49589,49591,28417,0],[28418,28424,49588,0],[49590,1306,28414,0],[49590,28414,49591,0],[49590,49591,1305,0],[1305,49591,49592,0],[1305,49592,5751,0],[5751,49592,28413,0],[28413,28412,31699,0],[49590,1305,1306,0],[1355,6026,1354,0],[1354,6026,6025,0],[1304,31699,31701,0],[31693,31694,49593,0],[49593,5699,31693,0],[6017,6009,1355,0],[27967,1363,6818,0],[27967,6818,6817,0],[27968,1363,27967,0],[31562,28373,28370,0],[28373,31562,28368,0],[5757,5758,31624,0],[31624,31612,5757,0],[5757,31612,5756,0],[5770,5734,5771,0],[5713,49596,49594,0],[49594,49596,49595,0],[49596,5727,49595,0],[31592,5894,5714,0],[49597,5891,5873,0],[49597,5873,5895,0],[5811,5726,5810,0],[5721,5720,5719,0],[5721,5719,49598,0],[49598,5716,49614,0],[49599,28119,28120,0],[28120,28134,49599,0],[5902,5990,31296,0],[5902,31296,49600,0],[5902,49600,5849,0],[5849,49600,49601,0],[49601,49600,31298,0],[5883,49602,5851,0],[5851,49602,31299,0],[31299,49602,31298,0],[5718,49598,5719,0],[49605,49606,5855,0],[5855,49606,31300,0],[31300,49606,49604,0],[49607,49604,49603,0],[49607,49603,49608,0],[5853,49606,49605,0],[49608,49603,31299,0],[30298,30299,49609,0],[49609,30299,30284,0],[49609,30284,49610,0],[49609,49610,30293,0],[30293,49610,30292,0],[30292,49610,30283,0],[49611,31277,31276,0],[31277,49611,30283,0],[49611,30282,30283,0],[49611,31276,28094,0],[1285,28090,28148,0],[1286,28085,28090,0],[1282,28088,1283,0],[30282,49611,49612,0],[49612,49611,28094,0],[28095,30310,49612,0],[49613,5975,31675,0],[31602,31603,49614,0],[49614,5721,49598,0],[5721,49614,31603,0],[49614,5715,31604,0],[49614,31604,31602,0],[31286,31285,49615,0],[49615,31285,3884,0],[49616,31220,31260,0],[49616,31260,30923,0],[4377,4391,31192,0],[28272,32226,28273,0],[49617,30829,30699,0],[49618,30066,30063,0],[30063,30066,30065,0],[49619,29182,29170,0],[30002,3855,3854,0],[29967,29941,3854,0],[3854,29941,29942,0],[3854,29942,30002,0],[29942,30009,30002,0],[49621,29186,29185,0],[49621,29185,3777,0],[3777,29184,3776,0],[29186,49621,29191,0],[3778,49620,29164,0],[49620,3778,3775,0],[3776,49620,3775,0],[3777,49622,49621,0],[49622,29284,49623,0],[29277,49623,29283,0],[29283,49623,29284,0],[29163,49620,29184,0],[29184,49620,3776,0],[3760,49627,49624,0],[49624,3755,49625,0],[49626,49625,4768,0],[49625,49626,49624,0],[49624,49626,3761,0],[3755,49624,49627,0],[49627,3788,49628,0],[49628,3759,49629,0],[3757,49629,3759,0],[49628,49629,49627,0],[3788,49627,3760,0],[3760,49624,3761,0],[49630,29290,29281,0],[29166,29183,29165,0],[29165,29183,49631,0],[29165,49631,49635,0],[29165,49635,3773,0],[49632,49635,49631,0],[49632,49633,49634,0],[49634,29145,29144,0],[29145,49634,49633,0],[49635,49632,49634,0],[3773,49986,49991,0],[5539,49636,49637,0],[49637,49636,49638,0],[29316,49638,3721,0],[49638,49636,3721,0],[3721,49636,5537,0],[49639,49647,3681,0],[3681,3747,49640,0],[49640,3747,13,0],[15,49640,13,0],[3747,3681,3682,0],[3681,49640,49642,0],[15,28973,49641,0],[49642,49639,3681,0],[49642,49640,49641,0],[49639,49642,49646,0],[49646,49642,49641,0],[49643,1,49644,0],[49644,2859,29,0],[49646,49652,49647,0],[49646,16,49645,0],[49645,16,17,0],[4851,19,18,0],[18,19,49649,0],[49649,49648,49645,0],[49645,17,49649,0],[49649,17,18,0],[4851,4850,19,0],[49649,19,20,0],[49649,20,49648,0],[3679,49650,3678,0],[3678,49650,49651,0],[3677,49650,3674,0],[3677,49651,49650,0],[49648,49652,49645,0],[49645,49652,49646,0],[3679,49652,49650,0],[3679,49647,49652,0],[49650,49652,49648,0],[20,19,26,0],[49653,4831,24,0],[49653,24,25,0],[49654,49655,3,0],[1,3,49655,0],[49657,49656,3762,0],[29262,49657,3762,0],[49657,49658,49656,0],[4793,49656,49658,0],[2684,2682,49490,0],[2682,2884,49490,0],[49490,2884,49488,0],[49659,2893,49660,0],[2892,49660,2893,0],[2877,2879,2878,0],[2688,2778,2771,0],[2749,49665,49662,0],[49664,49666,3127,0],[49664,3127,49663,0],[49664,2748,49662,0],[49662,49666,49664,0],[49666,49662,49665,0],[2749,2760,49661,0],[49665,2749,3126,0],[49667,3124,3126,0],[49763,49667,49700,0],[49700,49699,49692,0],[49692,49698,49693,0],[49693,49698,49668,0],[49668,49698,49669,0],[49682,49669,49680,0],[49661,49680,49669,0],[49661,49669,49701,0],[49661,49701,49670,0],[49670,49667,3126,0],[3126,2749,49661,0],[3126,49661,49670,0],[49667,49763,3124,0],[49671,3122,3121,0],[49671,3121,49672,0],[49465,49674,49672,0],[49672,49674,49671,0],[49673,49671,49675,0],[49673,49762,3122,0],[49673,3122,49671,0],[49671,49674,49675,0],[49673,49675,49676,0],[49673,49676,3125,0],[49665,3127,49666,0],[49674,3082,49675,0],[3127,49676,49678,0],[49678,49676,49677,0],[49677,49676,49675,0],[49677,49675,49679,0],[49679,49675,3082,0],[3125,49762,49673,0],[49663,3127,49678,0],[2744,49679,2741,0],[2741,3083,2739,0],[49464,2739,3084,0],[3084,2739,3083,0],[2739,2742,2741,0],[49677,49679,2747,0],[49679,2744,2747,0],[49680,49681,49696,0],[49669,49682,49683,0],[49683,49702,49684,0],[49683,49684,49705,0],[49669,49683,49668,0],[49668,49683,49705,0],[49668,49705,49694,0],[49694,49705,3133,0],[49691,49686,3132,0],[3123,3132,49687,0],[49688,49763,49690,0],[49690,49763,49689,0],[49690,49689,49691,0],[49691,49689,49692,0],[49691,49692,49693,0],[49685,49693,49694,0],[49685,49694,3133,0],[49694,49693,49668,0],[49691,49693,49685,0],[49690,49691,3132,0],[49690,3132,3123,0],[49692,49689,49700,0],[49689,49763,49700,0],[3121,3123,3120,0],[3129,3120,49695,0],[3129,49695,3130,0],[3130,49695,49687,0],[3007,49687,3132,0],[3007,3131,49687,0],[49687,3131,3130,0],[3123,49687,49695,0],[49691,49685,49686,0],[49680,49696,49682,0],[49682,49696,49697,0],[2758,49697,49696,0],[49699,49669,49698,0],[49698,49692,49699,0],[49699,49700,49667,0],[49701,49699,49670,0],[49667,49670,49699,0],[49701,49669,49699,0],[3123,49688,49690,0],[49684,49703,3001,0],[49703,49702,49704,0],[49704,3000,49703,0],[49697,49702,49683,0],[49697,49683,49682,0],[3001,3000,3029,0],[49705,49684,49706,0],[49705,49706,3133,0],[49684,3018,49706,0],[3011,3009,3017,0],[3013,3012,3017,0],[3017,3012,3011,0],[49714,38697,38696,0],[49714,38696,38540,0],[38534,38540,38696,0],[38698,49707,38660,0],[38660,49707,38659,0],[38659,49707,49708,0],[49708,49707,38537,0],[38537,49707,49714,0],[38537,49714,38539,0],[38539,49714,38536,0],[38537,49712,49708,0],[38659,49708,2913,0],[38659,2913,49709,0],[38659,49709,38661,0],[38662,38661,49709,0],[49709,2913,49710,0],[2962,49711,2963,0],[48982,49711,38662,0],[38662,49711,2962,0],[2960,2962,2961,0],[2914,49712,38538,0],[2914,49713,2917,0],[2917,49713,2916,0],[49713,38527,2916,0],[38536,49714,38540,0],[49707,38697,49714,0],[38697,49707,38698,0],[49715,38522,38530,0],[38529,49715,49716,0],[38524,49716,38530,0],[38530,49716,49715,0],[49716,49721,49717,0],[49716,49717,38529,0],[38531,49713,38538,0],[2963,49711,2920,0],[3601,48980,49718,0],[49718,48980,3600,0],[38718,3636,38719,0],[38718,38719,3608,0],[2917,2916,2915,0],[49997,49721,49719,0],[3040,49719,49720,0],[49720,49721,2998,0],[3036,49722,3038,0],[3020,3001,3029,0],[49723,3031,49724,0],[49722,49724,3030,0],[49724,49722,49723,0],[49723,49722,3036,0],[3019,3021,38499,0],[49725,3073,3072,0],[49725,3070,38488,0],[49725,38488,3074,0],[49725,3074,3073,0],[3156,3155,49726,0],[49726,1941,3156,0],[49727,1939,3099,0],[49476,49477,49728,0],[49478,49728,49477,0],[4928,49729,2810,0],[2811,49729,49730,0],[2811,49730,4930,0],[49737,2832,49770,0],[49734,49731,49732,0],[49731,49770,49732,0],[49732,4896,4897,0],[49764,49770,49733,0],[49734,49733,49731,0],[49736,4897,4898,0],[4898,49768,49736,0],[4897,49736,49734,0],[49734,49736,49733,0],[49733,49736,49735,0],[49736,49768,49735,0],[4903,49738,2807,0],[4903,49764,49739,0],[49739,49764,49765,0],[49739,49765,2867,0],[49738,49739,2867,0],[49738,2806,2807,0],[2866,49741,49740,0],[49990,49741,2863,0],[2863,49741,49742,0],[49742,49741,2867,0],[49743,2820,2823,0],[29359,29357,29353,0],[49748,1856,49744,0],[49744,1856,2821,0],[49744,2821,2817,0],[49747,2829,49746,0],[49746,2829,2813,0],[49746,2813,49745,0],[49746,49745,2811,0],[4930,2816,49747,0],[49747,2816,2815,0],[4930,49747,49746,0],[4930,49746,2811,0],[49748,49744,49743,0],[49749,1858,1875,0],[49749,1875,49750,0],[49750,49760,1863,0],[1875,1874,49750,0],[1858,49749,49751,0],[49752,49749,49750,0],[49752,49750,49753,0],[1863,1862,49753,0],[1863,49753,49750,0],[49752,49753,1860,0],[49752,1860,1859,0],[1859,49754,49752,0],[49752,49754,49749,0],[49749,49754,49751,0],[49751,49754,49773,0],[1860,49753,1861,0],[49753,1862,1861,0],[49755,49760,49750,0],[49755,49750,1874,0],[1874,1872,49755,0],[49755,1871,49756,0],[49756,1869,1864,0],[1864,1869,49757,0],[49758,49757,49783,0],[49758,49783,49759,0],[49759,2839,49758,0],[49758,2839,1865,0],[49758,1865,1877,0],[49758,1877,49757,0],[2839,49759,1866,0],[1866,49759,1867,0],[1864,1863,49760,0],[49756,49760,49755,0],[49755,1872,1871,0],[49756,1871,49761,0],[2813,4900,49745,0],[49745,4900,2812,0],[49493,49491,49492,0],[3124,49763,49762,0],[49762,49763,49688,0],[49484,49498,2762,0],[49499,2762,49498,0],[49494,49493,49487,0],[49487,49493,49492,0],[49764,49733,49735,0],[49767,49768,49765,0],[49765,50000,49766,0],[2867,49766,49742,0],[49742,49766,2863,0],[49768,49767,49735,0],[49735,49767,49764,0],[49764,49767,49765,0],[49765,49768,50000,0],[49731,49733,49770,0],[49770,2832,49732,0],[49732,2832,49769,0],[49732,49769,4896,0],[4896,49769,4895,0],[4895,49769,3643,0],[3643,49769,2852,0],[2850,2852,2833,0],[2852,49769,2833,0],[2833,49769,2832,0],[4897,4896,4895,0],[2831,4902,49771,0],[49771,4902,4901,0],[49771,4901,49772,0],[49772,4901,2814,0],[49772,2814,49773,0],[49773,2814,2829,0],[1880,1879,49774,0],[49774,1879,2833,0],[1879,1880,1878,0],[1880,49774,49771,0],[1880,49771,1859,0],[1859,49771,49772,0],[2832,2831,2833,0],[2833,2831,49774,0],[49774,2831,49771,0],[2846,2845,49775,0],[49775,2845,49776,0],[49775,3642,2846,0],[49778,49777,2845,0],[2845,49777,49776,0],[3643,2851,3642,0],[49779,4894,3643,0],[49730,49729,4928,0],[2830,4900,49780,0],[1854,2824,2825,0],[29359,29353,29360,0],[29360,29353,29361,0],[49777,49782,49776,0],[49776,49782,49781,0],[49777,49778,49782,0],[49782,49778,4891,0],[49782,4891,4889,0],[4889,4893,49782,0],[49761,1869,49756,0],[1869,49783,49757,0],[49783,1869,49759,0],[4854,4853,2862,0],[2862,4853,3655,0],[30105,38759,30104,0],[49785,3604,49784,0],[49785,49784,49786,0],[49785,49786,2903,0],[49785,2903,2904,0],[49786,49784,3605,0],[38718,3638,3636,0],[16242,47385,15002,0],[47437,16207,16206,0],[33685,33687,33684,0],[23937,23940,33827,0],[23937,33827,49787,0],[39213,39212,49788,0],[24178,49789,24179,0],[24179,49789,49788,0],[49788,49789,39213,0],[49789,24178,24684,0],[24684,24178,24685,0],[24684,24682,49789,0],[24194,24195,24706,0],[24706,24195,24196,0],[24696,24618,48875,0],[24706,24711,24194,0],[24215,24559,24217,0],[24559,24558,24548,0],[49790,24548,24558,0],[49790,24558,24557,0],[49790,24557,24556,0],[24548,49790,24208,0],[24208,49790,49791,0],[24208,24575,24548,0],[24569,24570,24572,0],[24569,24572,24568,0],[25822,25819,25820,0],[25939,37431,49793,0],[25939,49793,37432,0],[25938,25939,37432,0],[25018,25017,34269,0],[34269,25017,25016,0],[34269,25016,34271,0],[12695,42818,34623,0],[34623,34620,34622,0],[12825,12607,12606,0],[49794,12818,12608,0],[9468,49795,34517,0],[12947,12831,42820,0],[42820,12831,42819,0],[49796,42820,42819,0],[13084,47505,11951,0],[16593,16594,16570,0],[16570,16569,16593,0],[16593,16569,45610,0],[16655,16650,45695,0],[11884,45771,11219,0],[33569,28704,28705,0],[49798,22080,49797,0],[49797,22080,22079,0],[23756,32948,23762,0],[49798,49797,23763,0],[32948,49798,23762,0],[23762,32878,23756,0],[21804,49798,23763,0],[21804,23762,49798,0],[23892,49800,49801,0],[23885,49801,23844,0],[21803,49573,23761,0],[49802,24662,25671,0],[25671,24671,49802,0],[28930,38724,28928,0],[28928,28935,28936,0],[38706,38705,49803,0],[49803,38705,93,0],[49803,93,118,0],[49804,49803,118,0],[340,339,49805,0],[49805,339,338,0],[338,337,49805,0],[49805,341,340,0],[14871,14870,49806,0],[46074,46075,49806,0],[49806,46075,14871,0],[45403,45404,44377,0],[44377,44378,45403,0],[44537,45115,44538,0],[45176,45379,45380,0],[45380,44289,45176,0],[49808,1245,31266,0],[1269,31265,49809,0],[49809,31265,31267,0],[49809,31267,28046,0],[32355,32341,879,0],[879,32341,32342,0],[49810,30105,30106,0],[30106,30109,49992,0],[38754,49812,38755,0],[38755,49812,40,0],[49812,38754,65,0],[30957,1263,30896,0],[35700,35560,35699,0],[35699,35560,49813,0],[35612,35572,35566,0],[35572,26920,49814,0],[49814,26920,26921,0],[26919,26917,26916,0],[26919,26916,26915,0],[49815,48523,48525,0],[48525,48555,49815,0],[13510,49816,13559,0],[13510,13559,13501,0],[13501,13559,13516,0],[13516,13502,13501,0],[49816,13560,13559,0],[13568,49822,49819,0],[49819,13497,13568,0],[49824,49821,49818,0],[49819,49825,13495,0],[13495,13496,49819,0],[49820,49818,49821,0],[49817,49822,49824,0],[49824,49822,49821,0],[49817,49819,49822,0],[49820,49823,13589,0],[49820,13589,13492,0],[13492,13589,13594,0],[49823,49820,49821,0],[49823,49821,49822,0],[49824,49829,49817,0],[49817,49829,49828,0],[49817,49828,49825,0],[49826,49827,49825,0],[49825,49827,13495,0],[49825,49819,49817,0],[49828,49830,49826,0],[49826,49825,49828,0],[49828,49829,49830,0],[49826,49830,13494,0],[49826,13494,48283,0],[13494,49830,13580,0],[13580,49830,49829,0],[49831,49832,13503,0],[13504,13553,49835,0],[49835,13553,13554,0],[49833,13554,13452,0],[49833,49937,49834,0],[49835,13505,13504,0],[49835,13554,49834,0],[49833,49834,13554,0],[13452,13554,13556,0],[13551,49836,49832,0],[49832,49836,13503,0],[13562,49831,13561,0],[13561,49831,49837,0],[13503,49837,49831,0],[13552,13566,13555,0],[13552,13551,13566,0],[13566,13551,13565,0],[13551,13550,13565,0],[49838,13539,13563,0],[49838,13541,13548,0],[13563,13539,13550,0],[49939,49840,49841,0],[13594,13595,49842,0],[49842,13595,49839,0],[13595,13499,49839,0],[49839,13499,49843,0],[49843,13499,13596,0],[49843,13596,49844,0],[49844,13475,49843,0],[49845,49848,49846,0],[49845,49846,48153,0],[48153,48162,49845,0],[49848,49847,49846,0],[49847,49849,48156,0],[48156,49849,13515,0],[48156,48155,49847,0],[49851,49850,13517,0],[48149,48233,48163,0],[48163,48233,49851,0],[49849,49847,49848,0],[49852,48556,48370,0],[49860,48435,49854,0],[49860,49854,49859,0],[49854,49855,49859,0],[49859,49855,49856,0],[49856,49855,48520,0],[48519,48520,49857,0],[49858,49857,48567,0],[49858,48567,48568,0],[49858,48575,49857,0],[49857,48575,48519,0],[48520,49855,49857,0],[49859,48438,48437,0],[49860,49859,48437,0],[48437,48436,49860,0],[48475,48499,48492,0],[48492,48499,48497,0],[48507,48506,48515,0],[48473,48506,48507,0],[48495,48446,49861,0],[49861,48446,48485,0],[49862,48473,49864,0],[49862,49864,49863,0],[49863,49864,48469,0],[48469,49864,48471,0],[49864,48472,48471,0],[49864,48473,48472,0],[48438,49865,49853,0],[48436,48438,49853,0],[48529,49853,49865,0],[48436,48437,48438,0],[49866,48576,49867,0],[48444,49867,48573,0],[48574,48573,48576,0],[48573,49867,48576,0],[48444,48571,49867,0],[49867,48571,49866,0],[13634,49866,48570,0],[48570,49866,48571,0],[49868,48476,48507,0],[49868,48507,48515,0],[13540,49869,49870,0],[13540,49870,49877,0],[13464,49871,49872,0],[13464,49872,49876,0],[49876,49872,49873,0],[13457,13456,49874,0],[49874,49875,49873,0],[49873,49875,49876,0],[13464,49876,49870,0],[49870,49875,49877,0],[13455,49877,49874,0],[13455,49874,13456,0],[13457,49874,49878,0],[49879,49881,48275,0],[49879,48275,13458,0],[49879,13458,49878,0],[49878,13458,13457,0],[49872,49871,13465,0],[13465,49871,13459,0],[49872,49879,49873,0],[49879,49878,49873,0],[13464,49870,49880,0],[49880,49869,13460,0],[49869,49880,49870,0],[49869,13540,13548,0],[49869,13548,13541,0],[48276,13458,48275,0],[48273,49882,49883,0],[48273,49883,49886,0],[13466,49883,49884,0],[13466,49884,49881,0],[49883,49882,49884,0],[48273,49886,49885,0],[49885,49886,13459,0],[13459,49886,13465,0],[13459,48271,49885,0],[49882,48274,49884,0],[49884,48274,48275,0],[13458,48276,48261,0],[49887,48276,48274,0],[48275,48274,48276,0],[49888,49887,48274,0],[49888,48274,48272,0],[49888,48272,49889,0],[13466,13465,49886,0],[49886,49883,13466,0],[49889,48271,48277,0],[49889,48277,49898,0],[49887,49888,48260,0],[48278,49889,49898,0],[49889,48278,49888,0],[13531,48340,49890,0],[49892,49890,48338,0],[49892,48337,49893,0],[13531,49893,13532,0],[49893,13531,49892,0],[13531,49890,49892,0],[49893,49897,49894,0],[49894,49897,13533,0],[49894,13532,49893,0],[48255,13535,13538,0],[48335,13534,49895,0],[49895,49897,49896,0],[49895,49896,48335,0],[48335,49896,48336,0],[13534,13533,49895,0],[49898,48259,48260,0],[48261,48258,48266,0],[48278,48260,49888,0],[49884,48275,49881,0],[49876,49875,49870,0],[49875,49874,49877,0],[49899,49911,49900,0],[49901,49900,49902,0],[49901,49902,49915,0],[49915,49902,49920,0],[49919,49903,49904,0],[49905,49906,49930,0],[49930,49906,49931,0],[49931,49906,49932,0],[49932,49909,49907,0],[49908,49911,49899,0],[49904,49903,49912,0],[49904,49912,49906,0],[49906,49909,49932,0],[49904,49906,49905,0],[49912,49903,49910,0],[49900,49910,49902,0],[49900,49911,49910,0],[49910,49911,49912,0],[49912,49911,49909,0],[49907,49909,49908,0],[49908,49909,49911,0],[49906,49912,49909,0],[49903,49902,49910,0],[49900,49901,49899,0],[49899,49901,13593,0],[49914,49913,49933,0],[49933,49913,49915,0],[49915,49913,13593,0],[49915,13593,49901,0],[13592,13593,49913,0],[49933,49915,49920,0],[49920,49902,49916,0],[49916,49902,49903,0],[49903,49919,49916,0],[49918,49917,49905,0],[49904,49905,49919,0],[49905,49917,49919,0],[49916,49919,49917,0],[49920,49916,49921,0],[49921,49922,49914,0],[49913,49914,13469,0],[49916,49917,49921,0],[49925,49926,49927,0],[13507,49927,13474,0],[13474,49927,49926,0],[13474,49926,13473,0],[49927,49936,49928,0],[49927,49928,49925,0],[49925,49928,49924,0],[49925,49924,49929,0],[49930,49918,49905,0],[49925,49929,49926,0],[49930,49931,49929,0],[49931,49932,13472,0],[49931,13472,13473,0],[49926,49931,13473,0],[49931,49926,49929,0],[49921,49923,49922,0],[49914,49933,49921,0],[49934,49914,49922,0],[49914,49934,13469,0],[49924,49928,49922,0],[49922,49928,49935,0],[49935,49928,49936,0],[49935,49936,49834,0],[49834,49936,49835,0],[49834,49937,49935,0],[49935,49937,49934,0],[49934,49937,13469,0],[49935,49934,49922,0],[49924,49922,49923,0],[13469,49937,49833,0],[49924,49923,49929,0],[49917,49918,49921,0],[49921,49918,49923,0],[49923,49918,49929,0],[49918,49930,49929,0],[13471,13470,49840,0],[49840,49839,13476,0],[13476,49839,13475,0],[49843,13475,49839,0],[49840,13470,49841,0],[13472,49907,49938,0],[13472,49938,13470,0],[49907,13472,49932,0],[49908,49938,49907,0],[49839,49840,49939,0],[13570,13569,48284,0],[48284,49940,13570,0],[13512,13571,49940,0],[49940,13571,13570,0],[49940,13584,13512,0],[49829,49824,49818,0],[49829,49818,13580,0],[48576,48577,49941,0],[49941,48577,13636,0],[13520,13519,48246,0],[19625,48050,48106,0],[49942,48097,49943,0],[49943,48097,48083,0],[49943,48083,19399,0],[49944,19397,19396,0],[19397,49943,19398,0],[49943,19397,49944,0],[49943,49944,49942,0],[49954,19658,49945,0],[40459,49945,19656,0],[49945,49946,48599,0],[48599,49946,48095,0],[48599,48095,48096,0],[49920,49921,49933,0],[48604,13743,48613,0],[49947,13844,13843,0],[13356,13861,13843,0],[13844,13356,13843,0],[49948,13840,13882,0],[49948,48421,48422,0],[49949,40702,40700,0],[49950,14265,13308,0],[14563,13307,14267,0],[14561,49951,41832,0],[41832,49951,41843,0],[41843,49951,14267,0],[14563,14267,49951,0],[14561,14563,49951,0],[41841,14288,14282,0],[13332,13331,49952,0],[13337,13318,13329,0],[14565,14536,14532,0],[13715,13713,49953,0],[13719,13715,49953,0],[13726,13725,13717,0],[13717,13725,13733,0],[13717,13733,13727,0],[19776,19363,19369,0],[48599,19390,49954,0],[49954,19390,19681,0],[39811,39740,39812,0],[39737,39821,39811,0],[39811,39821,39820,0],[40318,40424,40323,0],[18148,40788,18149,0],[40659,40660,13323,0],[49159,49180,29690,0],[49204,29690,49180,0],[38345,38388,38389,0],[38296,2406,2407,0],[2407,48995,38296,0],[6318,6345,6322,0],[6322,6345,6341,0],[20418,20417,49956,0],[49956,20417,20416,0],[20416,20417,37345,0],[37345,37344,20416,0],[20206,20210,20211,0],[49957,36281,6460,0],[49957,6460,6461,0],[49957,6461,6462,0],[49958,20820,20994,0],[36686,36683,49959,0],[49959,36685,36686,0],[1868,1867,49759,0],[1868,49759,1869,0],[49960,4859,4861,0],[4861,4859,4862,0],[4859,49960,4856,0],[4877,3671,3670,0],[49961,3670,3669,0],[4877,3670,49962,0],[4877,49962,4869,0],[49962,3670,49961,0],[3655,2857,2862,0],[4854,2862,49963,0],[4854,49963,3644,0],[2862,2861,49963,0],[49740,49741,49990,0],[49964,4962,49965,0],[49965,4962,29389,0],[49965,29392,49964,0],[49964,29392,29396,0],[29396,29392,29390,0],[2632,2633,2635,0],[29804,29433,29803,0],[29803,29433,49966,0],[29714,29631,29713,0],[32634,32633,49967,0],[2479,2473,2475,0],[2475,2478,2479,0],[49968,47603,47602,0],[49968,47602,14134,0],[14134,14133,49968,0],[40923,10757,11638,0],[40924,40923,11638,0],[49969,13420,13421,0],[42938,42933,48428,0],[42240,18189,18190,0],[42240,18190,42210,0],[49970,1601,1603,0],[49970,1605,1599,0],[49970,1599,1602,0],[6837,6836,36575,0],[6837,36575,6843,0],[6837,6843,6841,0],[820,49971,31775,0],[31775,31766,31716,0],[36427,1541,36426,0],[49973,29997,29999,0],[49973,29999,29266,0],[0,3800,49974,0],[29243,29229,1725,0],[49975,31454,31453,0],[31453,31452,49975,0],[5964,28055,5965,0],[49977,49976,6695,0],[29922,49976,49977,0],[10808,10807,49978,0],[10809,10808,42194,0],[10808,49978,42194,0],[10806,10816,49978,0],[49978,10807,10806,0],[42192,42190,16980,0],[41888,11113,11114,0],[11113,16980,42191,0],[42191,16980,42190,0],[17432,17381,42281,0],[17267,17272,49979,0],[17244,49981,49980,0],[17243,49980,17241,0],[49980,17243,17244,0],[49981,17205,49980,0],[49980,17205,49982,0],[49982,17205,17188,0],[17241,49980,49982,0],[2864,2865,49740,0],[2864,49740,49993,0],[2914,38538,49713,0],[38747,49983,70,0],[49983,30436,30,0],[30061,49984,49811,0],[49991,3772,29283,0],[3773,49991,29283,0],[49499,49498,49985,0],[49985,49498,2886,0],[49985,2886,2887,0],[3640,2903,49786,0],[30046,49986,29147,0],[49986,30141,49991,0],[1,49655,49644,0],[49717,38528,38529,0],[49988,49987,49990,0],[49497,2886,49498,0],[49779,3643,3642,0],[70,49983,30,0],[28883,38711,38710,0],[49986,49634,29144,0],[49992,30060,30061,0],[49717,49997,38525,0],[49995,30071,30060,0],[49993,49987,2869,0],[49993,2895,49994,0],[2872,49994,2870,0],[2870,49994,2895,0],[49987,49988,2900,0],[2900,49988,2897,0],[49494,49485,49484,0],[2854,49781,2853,0],[2872,2891,2882,0],[2872,2882,2881,0],[2881,2882,2878,0],[2891,2872,49496,0],[49496,2872,2871,0],[30063,30071,30070,0],[3757,3759,3794,0],[30069,30141,30047,0],[30141,30069,49991,0],[38702,49989,3608,0],[3779,2854,49644,0],[49500,2767,2761,0],[3781,49998,3780,0],[49998,3781,2897,0],[49781,2854,4898,0],[2899,3039,2900,0],[2854,49988,50000,0],[50000,4898,2854,0],[2897,49988,2854,0],[49988,2863,50000,0],[50001,3641,2902,0],[38526,49997,2757,0],[49999,2901,3039,0],[49987,49993,49990,0],[69,68,67,0],[31,70,30,0],[169,171,28854,0],[178,186,132,0],[309,284,38753,0],[344,191,193,0],[196,342,343,0],[334,343,335,0],[170,169,406,0],[413,410,396,0],[592,589,672,0],[599,613,600,0],[711,698,712,0],[994,995,1004,0],[1062,32364,1054,0],[962,1074,580,0],[964,1074,963,0],[580,958,581,0],[902,903,905,0],[1162,1164,1160,0],[1146,1169,1145,0],[1202,1201,32300,0],[1329,1328,1320,0],[1423,1434,1431,0],[27993,1419,1411,0],[6939,31551,1403,0],[1565,1526,1527,0],[1564,1563,1565,0],[1573,1569,1574,0],[1662,1659,1661,0],[1887,1889,1888,0],[1903,1904,1923,0],[49278,1826,1932,0],[1961,1912,1911,0],[2008,2007,2009,0],[38097,2232,2231,0],[2144,2146,2217,0],[2402,2380,38325,0],[2390,2325,2415,0],[2387,2441,2395,0],[2384,2432,38273,0],[2468,2467,2265,0],[2495,2492,2506,0],[2494,2261,2262,0],[1990,2513,2499,0],[1990,2514,2513,0],[2561,2580,2582,0],[2554,2562,2608,0],[2564,2607,2565,0],[2615,2617,2618,0],[2619,2618,37936,0],[2637,2638,2101,0],[2643,1993,1992,0],[1978,1958,29562,0],[2708,2670,2671,0],[2751,2750,49996,0],[2782,2780,2775,0],[2787,2785,2728,0],[2692,2792,2779,0],[2794,2701,2700,0],[2824,2826,2825,0],[2880,2881,2879,0],[2946,2971,2944,0],[2976,2974,2967,0],[2959,2987,2960,0],[2997,38532,2990,0],[3024,3022,3033,0],[3030,3000,3037,0],[2997,2991,2996,0],[3108,3119,3088,0],[3091,3090,3089,0],[3181,3183,3178,0],[3356,3359,3357,0],[3475,3485,3385,0],[3379,3489,3486,0],[3521,3518,3536,0],[3216,3218,3544,0],[3200,3559,3560,0],[3565,3563,3198,0],[3555,3556,3554,0],[3208,3570,3569,0],[3603,2908,2911,0],[80,38700,83,0],[3639,3612,3602,0],[29290,3790,3788,0],[3798,3800,3799,0],[3802,3756,3796,0],[3749,3748,29258,0],[3819,3686,3817,0],[3985,3981,3984,0],[4048,4058,4063,0],[4023,4044,4075,0],[4113,4092,4486,0],[4020,4491,4089,0],[4189,4187,4192,0],[4196,4248,4197,0],[4120,4122,4266,0],[4288,4286,4283,0],[4413,4414,4416,0],[4414,4420,4419,0],[4412,4410,4417,0],[4407,4435,4436,0],[4314,4479,4313,0],[4119,4489,4121,0],[4087,4022,4023,0],[4589,4572,4576,0],[3869,3870,29985,0],[3866,3867,4615,0],[4653,4617,4647,0],[4765,29991,4764,0],[3849,4796,4788,0],[4836,4827,29352,0],[25,4843,4845,0],[4871,3664,3663,0],[4886,3672,4887,0],[4863,4862,1868,0],[2812,2810,49745,0],[2805,2806,4923,0],[4923,2804,2803,0],[4926,4918,4920,0],[2676,2678,2677,0],[4945,1887,1888,0],[2727,2729,2789,0],[2661,29531,2662,0],[4973,1811,4980,0],[5008,4990,5005,0],[5117,5129,5130,0],[5144,5149,5138,0],[5227,5240,5228,0],[5236,5240,5237,0],[5264,5257,1796,0],[1789,1790,5251,0],[5284,5282,5283,0],[5314,5313,5325,0],[5006,5329,5004,0],[4998,1800,1801,0],[5350,5348,3710,0],[1787,5345,1788,0],[5417,5408,5409,0],[5421,5401,5400,0],[5515,5495,5525,0],[5458,5529,5459,0],[5540,5541,5542,0],[1779,1778,5435,0],[5430,5431,5547,0],[1770,1768,5427,0],[1649,5585,5588,0],[1643,5580,5589,0],[1637,5630,5376,0],[5589,5591,5590,0],[5581,5634,5579,0],[4605,5641,4604,0],[5738,5762,5739,0],[31703,5943,5773,0],[5780,5783,5784,0],[5810,5708,5811,0],[5874,5873,5881,0],[5882,5901,5902,0],[5976,1293,5969,0],[5900,5905,5990,0],[5698,5834,5695,0],[5804,5824,5994,0],[5820,5823,5709,0],[6019,6016,6018,0],[6126,5680,6125,0],[6138,6140,6142,0],[6146,6147,31358,0],[6149,31311,5654,0],[30250,6164,4521,0],[5651,6171,6175,0],[1685,1684,1709,0],[1632,1631,6195,0],[6206,29911,6194,0],[6245,36576,6246,0],[6294,6295,6284,0],[6281,6295,6280,0],[6278,36293,6303,0],[6333,6436,6335,0],[6343,6317,6316,0],[6345,6317,6344,0],[6433,6425,6424,0],[6350,6330,6377,0],[6348,6436,6435,0],[6442,6441,6426,0],[6497,6255,36262,0],[6553,6586,6587,0],[49142,6606,6311,0],[6530,6528,6519,0],[6650,6652,6651,0],[6689,6633,6637,0],[6712,6711,6572,0],[6752,6743,6706,0],[49977,6755,29922,0],[6811,6076,6077,0],[1595,1596,6808,0],[1585,1589,6832,0],[6838,6853,6848,0],[742,6984,6982,0],[6978,6979,6980,0],[41745,7166,7175,0],[7157,7160,7158,0],[7303,7236,7237,0],[7278,7279,7277,0],[7390,37047,7413,0],[7514,7528,7536,0],[7538,7594,7505,0],[7540,7542,7539,0],[7611,7612,7602,0],[7509,7610,7507,0],[7433,20982,7431,0],[7663,7665,7664,0],[7723,7722,7702,0],[7816,7803,7802,0],[7695,7869,7870,0],[7875,7871,7726,0],[7212,7727,7216,0],[7209,7898,34825,0],[8015,8013,8011,0],[8030,7982,7983,0],[8204,8062,8210,0],[8230,8221,8232,0],[8244,8228,8229,0],[8280,8281,8282,0],[8290,8289,8288,0],[8304,8306,8305,0],[8268,8267,8309,0],[8508,8528,8524,0],[8529,8538,8533,0],[8529,8533,8509,0],[8557,8532,8558,0],[8677,8683,10123,0],[8625,8655,8626,0],[8753,8744,8745,0],[8750,8756,43093,0],[8725,8724,8782,0],[8829,43195,8833,0],[9031,9034,34918,0],[8983,9054,9002,0],[9175,9176,9172,0],[9173,9174,9181,0],[9175,9180,9179,0],[9156,9211,9157,0],[8982,9210,8981,0],[34748,9206,9202,0],[9190,9192,9191,0],[34743,9237,9152,0],[9062,9058,9057,0],[652,9280,651,0],[9549,9545,34126,0],[9396,9520,9521,0],[9511,9519,9395,0],[9518,9509,9395,0],[9506,9505,9560,0],[9416,9417,9415,0],[9614,9683,9681,0],[9678,9680,9677,0],[9726,9727,9731,0],[9730,43156,9729,0],[8717,43180,8612,0],[34585,9751,34590,0],[8729,9758,9757,0],[8730,9755,8732,0],[9831,9832,9798,0],[9841,9857,9856,0],[9956,9955,9969,0],[10027,10039,10042,0],[45586,10035,10033,0],[10082,43243,10084,0],[10068,9946,10077,0],[10113,10108,10114,0],[9900,9895,9901,0],[9887,10118,8409,0],[10133,10136,10134,0],[10133,10132,10136,0],[43334,10138,8562,0],[10140,10138,10139,0],[10139,10127,10140,0],[10196,10177,10179,0],[10196,10199,10197,0],[10199,10195,10194,0],[8378,10208,8379,0],[10272,8143,10270,0],[10263,10290,10288,0],[43572,10222,10291,0],[10314,10318,10319,0],[10402,10399,10400,0],[10619,10618,10620,0],[10632,10651,10633,0],[10986,10989,11046,0],[11280,11281,11268,0],[11269,11277,11279,0],[11431,11432,46019,0],[46019,11454,11424,0],[11473,11475,11474,0],[11459,11479,11458,0],[11535,11534,11520,0],[11520,11534,11523,0],[11439,10559,11492,0],[11510,11509,11551,0],[11480,11578,11457,0],[40926,11580,11578,0],[11587,11582,11583,0],[11585,11583,11584,0],[11388,11611,11608,0],[11410,11388,11409,0],[47566,11603,11598,0],[40859,11716,11690,0],[11332,11740,11331,0],[11518,11324,11325,0],[11805,11771,11777,0],[11810,11809,11795,0],[16788,11841,11842,0],[11880,11215,11836,0],[11909,11897,11824,0],[11919,11258,11920,0],[11815,11255,11919,0],[11918,11917,11238,0],[11917,11914,11237,0],[12212,8881,12192,0],[42785,12131,42783,0],[12089,12231,12237,0],[12362,12349,12353,0],[12248,14770,12496,0],[12532,12495,12505,0],[12426,12514,12471,0],[14790,12517,12518,0],[12414,12413,12541,0],[12707,8946,8947,0],[12722,12724,12596,0],[12592,12593,12746,0],[12747,12773,12729,0],[12848,12849,12268,0],[12868,12872,12866,0],[12889,12888,12575,0],[12919,12881,12925,0],[12944,12943,12939,0],[12839,42960,12803,0],[12791,12798,12790,0],[12793,12951,12950,0],[42462,12950,12951,0],[7159,12971,12969,0],[12979,13028,13009,0],[12984,12983,12982,0],[12962,14708,13043,0],[13093,13072,13073,0],[13135,13059,13058,0],[13238,13239,13255,0],[13448,13483,13485,0],[13562,13561,13557,0],[13627,13439,13683,0],[13694,13716,48621,0],[13614,13762,13613,0],[13614,13761,13762,0],[13599,13600,13422,0],[13966,14141,14139,0],[40268,14031,40267,0],[14105,14104,14106,0],[14096,14095,14113,0],[14139,14138,13967,0],[14167,14158,14168,0],[14175,13957,14174,0],[14177,14172,14170,0],[14182,47942,14181,0],[14250,13408,47828,0],[13888,13393,13392,0],[48065,13351,13382,0],[13351,13352,14255,0],[13344,14259,14260,0],[14284,13305,14288,0],[14281,14282,14283,0],[14352,14353,14355,0],[14359,14370,13609,0],[14648,14437,14404,0],[14444,14445,14443,0],[14395,14325,14465,0],[14383,14384,14386,0],[14377,12977,12978,0],[14336,14376,14375,0],[41725,14475,14337,0],[14551,14599,14510,0],[14582,14586,14583,0],[13240,41705,13242,0],[13231,41784,18422,0],[14646,14647,14645,0],[13164,14666,14667,0],[14703,14707,14704,0],[14712,14684,14685,0],[13037,13038,12576,0],[12571,13120,12572,0],[12283,12929,12568,0],[14770,14769,12249,0],[14785,14789,14773,0],[14850,14914,46502,0],[14853,14918,14854,0],[14944,14946,14933,0],[16218,15011,15007,0],[15042,14999,15049,0],[15140,15135,16029,0],[15249,15373,15389,0],[15409,15390,15389,0],[15390,15409,15372,0],[15327,15410,15364,0],[15118,15454,16043,0],[15460,15462,15459,0],[15431,15492,15489,0],[15496,15497,15503,0],[15556,15550,15539,0],[15547,15546,15548,0],[15579,15589,15309,0],[15642,15643,15638,0],[46486,15201,15202,0],[15669,12325,12326,0],[15696,15695,15169,0],[15688,15717,15699,0],[15724,46990,15725,0],[12037,15918,15916,0],[15783,15949,46697,0],[15871,15926,15870,0],[15737,16028,16029,0],[47071,16010,47466,0],[15128,15129,16321,0],[16083,16078,16079,0],[16136,16107,16109,0],[16109,16110,16135,0],[15505,15094,15500,0],[16181,16182,16183,0],[16235,16200,16234,0],[14987,14978,46954,0],[14983,14985,14984,0],[14983,14981,14980,0],[16309,16310,16312,0],[16307,16315,14971,0],[16330,16334,16331,0],[14911,14923,14939,0],[15876,15877,16371,0],[16387,46692,16386,0],[16397,16367,16362,0],[16352,16391,16393,0],[16437,16397,12041,0],[16414,16412,46764,0],[16401,16416,16422,0],[16476,16477,16400,0],[12030,46472,46894,0],[46901,16522,16521,0],[16560,16561,16556,0],[12014,12013,16555,0],[11971,11970,16595,0],[16631,16630,16626,0],[16680,16674,16670,0],[16697,16692,16698,0],[16714,16644,16643,0],[16717,16649,16658,0],[16615,16614,16621,0],[16765,13077,16766,0],[16775,42717,16776,0],[16845,16847,16836,0],[16852,16853,16858,0],[11147,16884,16882,0],[16902,16900,16899,0],[16899,16931,16930,0],[16891,16900,16898,0],[16947,11081,11080,0],[16942,16945,16941,0],[17012,16998,17011,0],[10862,42162,11098,0],[17026,11084,17025,0],[17031,17034,17030,0],[17157,42327,17158,0],[17150,17153,17154,0],[17170,17171,17178,0],[17181,17149,17148,0],[17125,42374,17126,0],[17239,17238,17245,0],[17233,17232,17247,0],[17103,17102,17226,0],[17305,17288,17289,0],[17287,17288,17304,0],[17313,42139,17312,0],[17322,17325,17326,0],[17407,17362,17406,0],[17459,17460,17464,0],[17494,17495,17493,0],[17494,17500,10894,0],[17493,17495,17501,0],[17047,17046,17045,0],[17540,17553,17552,0],[17553,17525,17552,0],[42168,17575,17568,0],[17560,17583,17559,0],[17562,17563,17588,0],[17513,17688,17514,0],[17513,42151,17609,0],[17698,16909,16908,0],[17756,17757,17780,0],[17748,17745,17768,0],[10962,17799,17816,0],[10893,10916,10894,0],[41992,17824,10909,0],[17871,17867,17870,0],[17865,17867,17866,0],[10904,10903,41557,0],[10891,10890,17907,0],[17911,17918,17909,0],[10850,17923,17924,0],[18142,18110,18108,0],[13970,40549,40550,0],[18076,18163,18162,0],[18323,18330,18329,0],[18321,18297,18323,0],[41629,18345,18343,0],[13188,18356,18437,0],[18470,41747,18471,0],[18470,18262,18265,0],[18082,18257,41750,0],[18073,18121,18072,0],[18057,18056,18478,0],[18511,18502,18508,0],[10782,18498,10783,0],[18518,18516,18517,0],[10773,18520,10772,0],[10774,10775,18520,0],[18527,18545,18537,0],[10755,10754,11639,0],[18560,10754,18561,0],[18579,18580,18583,0],[18678,18691,18677,0],[18737,18730,18725,0],[18716,18761,18742,0],[18743,18722,18739,0],[18841,18833,18845,0],[18881,18895,18814,0],[18890,18944,18895,0],[18897,18899,18898,0],[18870,18915,18906,0],[18937,18936,18938,0],[18816,18803,18878,0],[18961,18774,18775,0],[18646,18647,18689,0],[10718,10717,45519,0],[18678,19014,18679,0],[19009,18994,19010,0],[19214,19091,19092,0],[19139,18958,18776,0],[19128,19200,19206,0],[19219,10500,10501,0],[19223,19220,45657,0],[40301,19231,19230,0],[19242,19243,19241,0],[19274,19272,10447,0],[19473,19471,19472,0],[13946,19555,19556,0],[19578,13916,19579,0],[19636,19633,19643,0],[19634,19642,48111,0],[13804,13797,19669,0],[19706,19707,19702,0],[19716,19715,19734,0],[19358,19807,19359,0],[19344,19343,19811,0],[19859,8079,8078,0],[19879,19878,19882,0],[19911,19917,19910,0],[19925,19930,19929,0],[19923,39984,19895,0],[8068,19962,19963,0],[19972,8018,48744,0],[20019,20002,20018,0],[19888,20061,20008,0],[20211,20210,20214,0],[20315,20316,20362,0],[20358,20360,20350,0],[20356,20367,20350,0],[20327,20332,20326,0],[20424,20234,20232,0],[20266,20259,20258,0],[20446,20434,20451,0],[20444,20462,20436,0],[20599,20598,20606,0],[20739,20740,20730,0],[20764,20762,20760,0],[20788,20787,35987,0],[20799,20970,20796,0],[20668,20803,20805,0],[20858,20888,20860,0],[20894,20912,20902,0],[7411,20934,7408,0],[20844,20954,20830,0],[20841,20956,20953,0],[21040,21041,21074,0],[21038,21070,21068,0],[21072,21073,21038,0],[21086,37197,21085,0],[21016,21015,21089,0],[20657,20656,20655,0],[21120,21109,21117,0],[21137,1516,6469,0],[21171,21170,36332,0],[21189,21209,21193,0],[21217,21218,21006,0],[21219,21215,21210,0],[21260,21259,20517,0],[21280,21284,21286,0],[21360,21364,21368,0],[20209,20206,20486,0],[20202,20203,21393,0],[20317,21418,20318,0],[25835,20142,20143,0],[21477,21448,21474,0],[21578,21583,21584,0],[21690,21682,21689,0],[21874,21866,21853,0],[21946,21949,21945,0],[21956,21943,21979,0],[21995,21990,32886,0],[21999,21975,21974,0],[22190,22191,39391,0],[22175,22174,22233,0],[22182,22178,22208,0],[22269,22261,22263,0],[22442,22439,22462,0],[22497,22495,22498,0],[22428,22425,22429,0],[22539,22534,22537,0],[22605,22592,22593,0],[22404,22586,22615,0],[23173,22647,23174,0],[22674,22692,22673,0],[22657,22659,22664,0],[22665,22713,22664,0],[22780,22766,22786,0],[37777,22430,22433,0],[22413,22796,22797,0],[22855,22860,22861,0],[22954,23155,22955,0],[22988,23041,23052,0],[23042,23088,23089,0],[23113,23115,23110,0],[23123,23039,22985,0],[22913,23141,23142,0],[22950,23147,23149,0],[38840,23154,22391,0],[22363,23174,22362,0],[23217,22633,23214,0],[23217,23201,23200,0],[22364,23234,23233,0],[22159,22341,22342,0],[23333,23328,23330,0],[23385,23382,23383,0],[494,500,23409,0],[493,23434,23432,0],[23484,23481,23482,0],[23494,23534,23531,0],[23487,23464,23463,0],[23554,23552,23551,0],[23311,23316,23314,0],[23634,48932,23636,0],[22121,23624,23635,0],[23627,22121,23625,0],[23307,23654,23646,0],[23305,23655,23269,0],[23656,23655,23261,0],[22123,33047,33048,0],[23663,23664,32890,0],[22105,22108,22196,0],[23685,23690,23684,0],[23704,23703,33046,0],[23705,23700,23701,0],[23735,21947,32998,0],[33277,23746,23745,0],[25647,23781,23780,0],[23775,21806,25653,0],[23872,23874,23873,0],[23997,24002,23998,0],[24020,24021,25378,0],[33832,24046,24043,0],[24109,24117,24108,0],[24110,24118,24109,0],[24312,24321,24319,0],[24392,24390,24389,0],[25055,24430,24431,0],[24480,24483,24481,0],[24477,24505,24476,0],[24424,25241,24417,0],[24423,24409,24408,0],[24334,24332,24335,0],[24239,24522,24521,0],[24285,24232,24527,0],[24583,24584,24597,0],[24658,39214,24657,0],[24629,24628,24678,0],[24689,24188,24718,0],[24679,24627,24692,0],[24199,24200,24198,0],[24783,24785,24782,0],[24800,24799,24809,0],[24826,23814,23815,0],[24774,24773,24835,0],[24835,24773,24772,0],[24783,24782,24761,0],[24891,24887,24885,0],[24884,39421,24867,0],[24229,24106,39327,0],[24898,24080,24081,0],[24931,24533,24907,0],[24905,24941,24904,0],[25053,39786,25052,0],[25119,25117,25137,0],[25107,25120,25110,0],[25128,25106,25110,0],[45549,25135,25132,0],[24423,24408,25230,0],[25226,25235,25227,0],[25199,25174,25200,0],[25240,25143,25142,0],[25147,25146,25145,0],[25143,25257,25142,0],[25283,25285,25284,0],[34212,24999,25285,0],[25285,24996,25284,0],[25289,25320,24992,0],[25304,25297,25303,0],[25317,25318,25311,0],[25304,25321,25309,0],[25414,25413,25410,0],[25428,25427,25431,0],[25406,25408,25409,0],[24015,25457,25455,0],[25480,25482,25472,0],[25503,24029,25504,0],[24026,24025,39609,0],[25552,25553,25554,0],[25583,23929,49560,0],[23801,25655,23802,0],[21715,25667,21714,0],[25666,25661,21713,0],[24668,24667,21695,0],[25685,25676,21711,0],[21615,21661,21613,0],[25769,25770,25768,0],[21684,25776,21685,0],[21572,21570,21589,0],[25795,25810,39077,0],[25795,25796,25803,0],[21487,21486,25827,0],[21462,21452,21657,0],[25834,21429,37621,0],[25971,25939,25938,0],[25884,25896,25883,0],[25890,25907,25889,0],[25889,25907,25888,0],[20112,20109,20108,0],[26117,26115,26116,0],[26132,26094,26102,0],[26143,26142,37558,0],[26049,26066,26072,0],[26180,26111,26181,0],[26187,26189,26188,0],[26190,26192,26191,0],[36127,20086,20084,0],[7918,26215,26214,0],[26253,26269,26268,0],[26275,26244,26282,0],[26242,26252,26278,0],[26283,26240,26242,0],[26342,7377,26343,0],[26352,26351,26350,0],[26349,26350,26351,0],[7903,26346,26354,0],[26389,42952,26376,0],[26401,7109,26437,0],[26422,26421,26435,0],[7097,26445,7096,0],[26501,26471,26505,0],[26531,26541,26540,0],[26536,48766,26535,0],[7239,7238,26666,0],[26672,26670,26674,0],[36859,26626,36847,0],[48786,26789,26644,0],[26799,26800,26621,0],[36793,26808,26796,0],[26794,26795,26807,0],[26816,26581,26759,0],[26578,35690,26579,0],[26565,26552,26563,0],[35432,26873,26891,0],[26942,26951,26948,0],[27038,27039,27032,0],[27052,27036,27053,0],[27076,27073,27086,0],[27012,27061,27011,0],[27110,27061,27063,0],[27009,27110,27058,0],[27127,27128,27139,0],[27130,27141,27129,0],[27146,31989,27145,0],[27209,27183,27182,0],[27214,27204,27146,0],[27228,27229,27254,0],[27275,36189,27270,0],[27311,27185,27151,0],[27331,27320,27306,0],[27334,27285,27343,0],[27358,7471,27337,0],[27335,27359,27360,0],[27369,27360,27359,0],[27385,27381,27382,0],[27385,26945,26944,0],[27414,27413,26490,0],[27433,27434,27435,0],[27446,27448,35747,0],[27488,27487,27131,0],[27495,27497,27496,0],[27531,7052,27530,0],[27135,7052,7051,0],[27482,27484,35308,0],[27548,27549,7074,0],[27547,27545,27546,0],[27465,27553,27466,0],[27614,27615,27613,0],[27645,7060,27644,0],[27472,27471,27643,0],[27649,7045,7046,0],[27682,27684,27687,0],[6988,6987,7022,0],[27766,27767,27770,0],[27767,27773,27770,0],[27774,27673,31927,0],[1400,6938,1401,0],[27855,27854,6907,0],[27871,27867,27870,0],[36199,6895,6894,0],[27922,27895,27894,0],[27952,27951,27953,0],[27942,27930,27931,0],[1395,1447,1426,0],[1395,1448,1447,0],[1609,1372,27966,0],[1368,1370,1369,0],[1379,1381,27976,0],[27986,27991,27985,0],[28413,31699,5751,0],[773,28068,28067,0],[28135,28108,5982,0],[28116,28107,28105,0],[28103,28144,28141,0],[28197,32200,830,0],[32295,1189,28235,0],[1222,32414,28208,0],[28291,1167,1170,0],[31014,31015,863,0],[788,28356,28355,0],[773,28381,28397,0],[28395,28032,28394,0],[28353,28354,751,0],[28424,28422,31700,0],[28454,762,28453,0],[28525,28527,28515,0],[28518,28519,28545,0],[28508,28554,28523,0],[28504,28507,28555,0],[28562,612,33692,0],[28606,28607,28605,0],[28682,28675,28654,0],[33589,28695,565,0],[28704,28702,28583,0],[28582,28702,28703,0],[28699,28688,28687,0],[28650,32374,28651,0],[28738,28734,28732,0],[28765,28746,28747,0],[28761,28619,28771,0],[23486,28780,23468,0],[23471,28788,28790,0],[38607,3493,28839,0],[368,3573,369,0],[189,347,187,0],[28916,28917,148,0],[28933,28920,28942,0],[150,28916,149,0],[28900,89,38450,0],[28896,28971,28947,0],[28968,28964,28963,0],[3807,3758,28974,0],[28983,28979,28984,0],[3822,3820,28983,0],[29013,29074,29075,0],[29068,29067,29071,0],[29085,29089,29088,0],[30187,29100,29039,0],[29013,29150,29139,0],[29152,29153,29139,0],[30138,29169,29130,0],[29170,29182,29155,0],[29209,29202,4633,0],[29296,29302,29300,0],[29303,29301,29293,0],[29307,29306,29305,0],[29355,29354,3702,0],[29349,29372,29371,0],[29375,1781,1776,0],[29385,29384,29382,0],[2820,29394,29393,0],[1848,29401,29408,0],[2508,2512,1990,0],[29555,2654,29554,0],[29570,29571,29573,0],[5278,29568,29574,0],[5113,29592,6549,0],[29700,29701,29706,0],[29624,29620,49311,0],[6583,29774,29768,0],[29798,29797,29799,0],[5045,5242,5046,0],[5046,29832,5047,0],[5593,29857,5594,0],[1689,29894,29888,0],[29892,29894,31326,0],[3850,29965,29964,0],[29970,29971,29969,0],[28989,29991,4766,0],[3787,29266,29998,0],[3764,29267,3763,0],[4618,30031,30003,0],[29010,29001,30025,0],[30034,4647,30021,0],[30059,30064,30058,0],[30048,30046,30049,0],[30081,30127,30126,0],[29156,30139,28995,0],[30160,30158,30153,0],[30182,30175,30174,0],[30183,30171,30102,0],[30226,30223,30224,0],[30258,30196,30255,0],[30319,30327,30344,0],[30087,30318,30327,0],[239,238,30407,0],[30372,4678,4673,0],[4700,4698,4699,0],[30382,4546,4545,0],[4690,242,30353,0],[30423,206,30400,0],[30418,212,208,0],[38727,30445,38731,0],[30447,141,142,0],[30461,182,138,0],[4731,257,30473,0],[30476,30362,30477,0],[30362,30476,30475,0],[30093,30480,30091,0],[30518,4050,4051,0],[30508,30506,30507,0],[30563,30579,30566,0],[30563,30565,30564,0],[30568,30529,30542,0],[3957,3956,30558,0],[4352,30590,30533,0],[30589,30540,30533,0],[30589,4349,30586,0],[4020,30610,30611,0],[4267,30614,30613,0],[4273,4271,30616,0],[30615,30613,30614,0],[30628,28789,30669,0],[30682,30680,30679,0],[30689,30675,30619,0],[4251,30705,4252,0],[481,30775,30776,0],[23546,30788,23562,0],[4279,4272,4286,0],[30701,3969,30830,0],[30829,30701,30699,0],[30576,30833,30832,0],[4344,30860,4473,0],[4462,28288,4466,0],[30897,1256,1255,0],[30585,30901,30578,0],[30847,30848,30902,0],[30847,30949,30862,0],[30953,30951,30846,0],[30961,779,30960,0],[30967,30966,30939,0],[31002,30993,30999,0],[28159,1246,28155,0],[30935,30841,30840,0],[28271,31043,30969,0],[31060,31054,31061,0],[28727,28729,31127,0],[31128,31117,1100,0],[31148,31161,31158,0],[31175,31174,31179,0],[33360,31135,31181,0],[31249,31216,31205,0],[31246,31248,31242,0],[30288,31274,30281,0],[30216,31281,31253,0],[30227,30910,30911,0],[31294,31292,30246,0],[31310,31318,31319,0],[4527,4526,31362,0],[1383,49390,1385,0],[31384,31383,31386,0],[31397,31400,31394,0],[31424,31421,31423,0],[31434,31431,1493,0],[31466,31467,6863,0],[6843,31527,6842,0],[31570,31578,31569,0],[31594,5897,31595,0],[5725,5724,5723,0],[30273,30275,31610,0],[30275,30238,31610,0],[5739,5754,31620,0],[31632,31634,31633,0],[31667,31650,31671,0],[31716,31674,31652,0],[31684,28401,31683,0],[31686,28376,28360,0],[5699,5700,5834,0],[5702,5703,6003,0],[28411,31704,28408,0],[31627,28452,31628,0],[31714,791,31715,0],[31724,31757,31759,0],[31788,31813,31734,0],[31789,31809,31810,0],[31847,35067,31845,0],[31862,31861,31857,0],[31824,31777,31889,0],[816,31887,817,0],[27733,49533,49532,0],[31726,804,805,0],[27628,31920,31918,0],[31926,27719,27718,0],[31944,7037,31946,0],[27573,27565,27572,0],[31972,27198,27199,0],[32000,28344,32001,0],[32015,32016,32026,0],[727,32067,728,0],[32097,32099,32098,0],[32086,32047,32049,0],[32046,32070,32093,0],[32031,32028,32101,0],[686,685,32185,0],[670,671,957,0],[31013,31012,31017,0],[28253,860,32234,0],[32239,32243,32251,0],[32260,28722,32261,0],[32272,28630,32269,0],[32291,32292,32286,0],[893,1075,32301,0],[32313,32310,28310,0],[32308,32318,32316,0],[998,32331,32322,0],[32389,1151,1150,0],[32405,30982,1139,0],[32407,32406,1209,0],[31169,31138,32443,0],[32461,32467,32465,0],[30767,30769,32471,0],[497,32533,498,0],[22039,22045,32562,0],[32571,32579,32575,0],[23327,32859,32571,0],[23327,32571,32570,0],[32606,23243,32616,0],[32629,32633,32621,0],[32668,32675,32649,0],[48922,32727,32728,0],[32751,48952,32748,0],[32754,32742,3465,0],[32777,32778,32779,0],[32806,32810,32796,0],[32772,32734,38551,0],[3483,3468,32820,0],[32862,23311,23310,0],[32878,23755,23756,0],[23754,21818,23765,0],[22115,32901,22116,0],[22034,22024,22023,0],[32949,23757,23760,0],[32960,32955,32959,0],[32965,32964,32961,0],[32966,23804,23803,0],[33006,33007,33002,0],[33052,33051,22125,0],[33073,33074,33072,0],[33115,33113,33103,0],[33128,33132,33129,0],[21876,33144,33143,0],[32902,32906,33157,0],[23730,23731,23748,0],[33186,33188,33224,0],[21730,21729,33202,0],[33179,33241,33178,0],[33171,33172,33191,0],[33253,33255,33254,0],[33260,21758,33261,0],[33266,33267,33271,0],[21781,33274,21779,0],[39346,21844,21846,0],[21844,21843,33320,0],[21839,33279,21840,0],[21887,21889,21888,0],[33333,33374,33338,0],[32506,32507,32519,0],[33345,33347,1122,0],[33360,31173,32419,0],[28608,28609,28610,0],[23857,23858,23868,0],[23918,23919,33395,0],[32952,23913,23911,0],[23900,33322,23896,0],[33424,33421,33488,0],[33525,33543,33516,0],[32375,33576,33578,0],[28696,28599,33568,0],[33592,28588,33591,0],[28561,28562,33688,0],[33613,33775,33742,0],[33736,33798,33737,0],[33785,25580,33784,0],[33465,33782,33781,0],[33817,25523,33816,0],[23941,33827,23940,0],[33832,33831,33833,0],[33880,24273,33852,0],[33895,33894,33881,0],[39565,33887,33886,0],[33900,33898,33901,0],[33019,33020,33927,0],[33938,23813,33937,0],[24832,33934,24819,0],[33618,33617,33949,0],[34000,34004,34001,0],[34012,34018,34011,0],[34089,34083,34082,0],[34095,34075,34168,0],[34152,9542,34153,0],[34163,34164,23974,0],[34177,23961,25509,0],[34169,34178,34170,0],[34164,34163,34166,0],[25002,25001,24995,0],[34208,24987,25325,0],[34214,25194,24968,0],[34217,25267,25269,0],[34214,34219,34215,0],[34070,34244,34242,0],[34224,47679,34232,0],[34031,28502,34294,0],[34306,34307,34305,0],[34303,9081,34305,0],[34326,638,34325,0],[9540,34105,34152,0],[34340,12633,12728,0],[34378,34369,34370,0],[12869,12287,34387,0],[34326,34391,34392,0],[34405,33642,34403,0],[8941,34409,8942,0],[33651,34410,33644,0],[8976,34434,8977,0],[34482,34484,34483,0],[9535,34487,34500,0],[10228,10227,34522,0],[34538,34526,34540,0],[34520,10230,10229,0],[34553,8702,8701,0],[9576,34581,8742,0],[34589,34588,34573,0],[34615,34617,9526,0],[34646,34643,34645,0],[34667,34666,12164,0],[34694,34692,34693,0],[34700,34703,9404,0],[34717,34722,34720,0],[34775,34776,35184,0],[34773,34772,34774,0],[34806,34754,26458,0],[26394,26393,34811,0],[34863,35079,34862,0],[34898,9170,34897,0],[34928,34849,34931,0],[616,34947,28558,0],[34952,34951,32193,0],[609,608,33718,0],[34968,32359,34967,0],[34967,32360,902,0],[34972,34971,34977,0],[33722,34465,33614,0],[571,33549,34997,0],[35009,936,35008,0],[935,35007,35008,0],[32150,32148,35003,0],[35003,32151,32150,0],[35021,926,927,0],[35042,35044,35043,0],[35055,696,35056,0],[35075,703,35076,0],[34740,34739,34743,0],[734,31851,31884,0],[35066,35074,35127,0],[9033,35134,34887,0],[34909,35138,27560,0],[35155,35190,35157,0],[35190,9179,9181,0],[7041,35211,35212,0],[35242,35245,35244,0],[35242,26485,35241,0],[35266,26483,35264,0],[35304,35302,35305,0],[35259,35257,35315,0],[35315,35301,35259,0],[35230,35317,35304,0],[35317,35262,35304,0],[26482,35321,26484,0],[6996,35141,7020,0],[35326,35327,7010,0],[35329,35330,27471,0],[6920,6919,6921,0],[35416,35425,35419,0],[35403,35408,35404,0],[35452,35446,35454,0],[35476,35474,35499,0],[35500,35498,35474,0],[26820,35524,26825,0],[35547,35626,35543,0],[35584,35583,35582,0],[35563,35595,35711,0],[35598,35592,35553,0],[35612,35566,35569,0],[35618,35623,35619,0],[35620,35623,35531,0],[26911,26910,26908,0],[26493,26486,26487,0],[35720,35719,26704,0],[35467,35486,35484,0],[35754,35753,35758,0],[26895,35759,26894,0],[35795,35779,35778,0],[35789,35766,35788,0],[35778,35793,35777,0],[35805,35811,35814,0],[35918,35884,35883,0],[35902,35907,35905,0],[35915,35863,35862,0],[35953,35954,35952,0],[35966,27016,35968,0],[35972,27304,35984,0],[20965,36004,36003,0],[36037,36038,36036,0],[36016,36070,20979,0],[36074,36073,7362,0],[36122,36125,36123,0],[31410,36206,36205,0],[31419,31420,36215,0],[36220,36223,36224,0],[36195,36194,36226,0],[27768,27772,27773,0],[6899,36240,36238,0],[36249,20735,20741,0],[38330,36327,20592,0],[36345,36341,2341,0],[2342,36316,2343,0],[36415,27309,36418,0],[35980,27346,27339,0],[1530,36440,36438,0],[36478,36443,1532,0],[36468,36453,20660,0],[36497,6501,36593,0],[36496,36497,36519,0],[6859,6866,6868,0],[36561,6304,6305,0],[6305,36560,36302,0],[6851,36570,6835,0],[35955,35938,27300,0],[7526,7527,36642,0],[36675,36663,36672,0],[7353,7359,37067,0],[7691,7681,36748,0],[36766,36758,36763,0],[36767,20829,20831,0],[36775,7667,7668,0],[36774,36773,7338,0],[36787,49515,36822,0],[36856,26592,36855,0],[35616,36861,35614,0],[26918,35404,26917,0],[36612,36610,36870,0],[36884,26791,36885,0],[26654,26653,36895,0],[7249,36897,36899,0],[26285,26288,26286,0],[36951,36950,36727,0],[20940,20923,20925,0],[36966,36963,7405,0],[20085,20083,36121,0],[36998,36999,37010,0],[37242,20428,37018,0],[36477,21114,37179,0],[37042,37043,37041,0],[21101,37055,21102,0],[21095,20858,21105,0],[20809,20816,37082,0],[21183,21185,37117,0],[37127,37274,37128,0],[20815,37143,20819,0],[20672,36484,36485,0],[38342,37163,37157,0],[36296,36299,36385,0],[21196,21195,37183,0],[21110,37186,37040,0],[37193,37192,37194,0],[37190,37196,21099,0],[37203,37208,37204,0],[37232,37233,21085,0],[37207,37242,37240,0],[37250,21235,37248,0],[20244,37254,37256,0],[21083,21084,37325,0],[21273,37772,22440,0],[37327,20479,37326,0],[20487,21318,20218,0],[20399,20400,37339,0],[37349,22469,22467,0],[20356,37358,37357,0],[20284,21410,37373,0],[37383,37381,25982,0],[25984,37382,37380,0],[37401,37402,37403,0],[37483,49793,37484,0],[26083,37515,26082,0],[37503,37517,37502,0],[37545,37543,25947,0],[37576,37577,26027,0],[20353,37594,37593,0],[22995,22994,37625,0],[37363,37627,20301,0],[37674,37676,25946,0],[21509,37685,21494,0],[37661,37699,39171,0],[37717,37371,37716,0],[37718,20158,22862,0],[22850,22857,22851,0],[22974,22973,37753,0],[37772,22437,22438,0],[37791,37724,22840,0],[22946,37785,22415,0],[22969,22968,37828,0],[37835,37830,37828,0],[37747,22813,22859,0],[2270,37858,37878,0],[37863,22570,22749,0],[37792,22820,22816,0],[37906,37900,37904,0],[2553,37935,37934,0],[22594,37935,22597,0],[2551,2614,37936,0],[37948,37947,37949,0],[37960,37961,2569,0],[37964,38013,38012,0],[2111,2110,2536,0],[2136,2137,48985,0],[38051,38052,38023,0],[2493,38036,38094,0],[1983,29469,38112,0],[38193,29439,38209,0],[38237,38238,29479,0],[38275,38276,38274,0],[2510,38283,2291,0],[2325,38290,2417,0],[2322,38309,38314,0],[2412,38324,2396,0],[38331,2350,38332,0],[20588,20604,2357,0],[38336,20602,20589,0],[38341,21160,38340,0],[38339,38341,38340,0],[38363,38366,6401,0],[37901,37906,38370,0],[2303,2304,38381,0],[38394,2174,38398,0],[38066,38065,2125,0],[37942,38542,37957,0],[38559,38558,22703,0],[38573,38565,22632,0],[38580,38583,38581,0],[2120,38602,3339,0],[38615,38616,3303,0],[398,399,38617,0],[38618,124,123,0],[38662,49709,48982,0],[2967,38670,38669,0],[38693,38692,38691,0],[38440,38706,115,0],[38713,28880,38708,0],[28880,28883,38710,0],[38740,38739,30434,0],[38761,38722,28960,0],[38774,433,28874,0],[28827,38607,38777,0],[22158,38815,38806,0],[22387,22384,22381,0],[32635,32700,32626,0],[23051,38863,38861,0],[38928,38919,38938,0],[38952,38956,38959,0],[39352,38967,39355,0],[38971,38886,38970,0],[25832,38976,38978,0],[21442,38975,38973,0],[38937,23094,38987,0],[38999,38992,38998,0],[21471,21470,39014,0],[39016,39032,39030,0],[39037,39034,25740,0],[21663,39034,21664,0],[39055,39067,39064,0],[39080,21502,21504,0],[39057,25765,39054,0],[39086,39113,39114,0],[39094,39110,39096,0],[37658,37659,39146,0],[25824,39146,37659,0],[39069,39153,39154,0],[21541,39166,39160,0],[39171,39159,37701,0],[24594,24589,39221,0],[33303,33291,33288,0],[33292,33288,33293,0],[21874,21871,21867,0],[25770,21593,21592,0],[21686,39180,25691,0],[24171,39265,39272,0],[24133,24134,33018,0],[39297,39274,39260,0],[49788,39211,39303,0],[33223,33222,39338,0],[21890,21886,39346,0],[33036,21831,21832,0],[38912,38913,38930,0],[39353,38949,39354,0],[38869,38968,39356,0],[39372,39371,39370,0],[39377,33118,39379,0],[38826,22359,22360,0],[22958,22959,22302,0],[23035,23036,23128,0],[39402,39404,39401,0],[24082,39423,39430,0],[24086,39420,24116,0],[39444,39466,39463,0],[39475,24071,39476,0],[39511,39435,24876,0],[39520,39521,39519,0],[39537,39536,39538,0],[24215,24216,39539,0],[39594,39558,39560,0],[39574,39577,39575,0],[39591,39553,39590,0],[33811,33809,39599,0],[25441,39602,25433,0],[25433,39602,39603,0],[39621,39620,24967,0],[39224,24339,24336,0],[39631,24379,24365,0],[39641,25066,39642,0],[39663,37528,39668,0],[39706,26076,39705,0],[39728,20001,39730,0],[39756,39757,39755,0],[39790,25056,25055,0],[39798,39769,39799,0],[39740,39818,39817,0],[39875,25095,39852,0],[37530,39878,37547,0],[39889,39807,39888,0],[39903,39748,39899,0],[25093,39906,39905,0],[39910,37472,37473,0],[39916,39915,39920,0],[19874,39932,19920,0],[39932,19914,19920,0],[39951,39946,39945,0],[39950,39947,39946,0],[19909,39941,39948,0],[39975,19841,39982,0],[19991,8000,19992,0],[39993,39994,39997,0],[40008,40028,8029,0],[19967,40028,19966,0],[40043,40044,39766,0],[39831,39658,39832,0],[39840,39670,39834,0],[40083,40073,25105,0],[40085,8187,40084,0],[8326,40092,8325,0],[8069,40101,19950,0],[40105,40104,40108,0],[40107,10378,19287,0],[40110,10417,10416,0],[10439,47615,19312,0],[47612,40155,40139,0],[19233,40194,40197,0],[40272,14131,47605,0],[40288,40289,10472,0],[40301,40300,43647,0],[39938,19301,40132,0],[40381,19333,40380,0],[40433,40435,40432,0],[19726,47711,19760,0],[40437,19725,19724,0],[40439,40438,19723,0],[40447,40453,40449,0],[19665,40456,19664,0],[40416,40314,40462,0],[19565,40473,40340,0],[40474,14051,40441,0],[40476,40152,40154,0],[40334,40478,40337,0],[14060,14061,40479,0],[14071,40482,14070,0],[11363,11621,40502,0],[14020,40534,13953,0],[18544,18543,40546,0],[40595,40594,40597,0],[40592,40591,40590,0],[40571,40572,40677,0],[40718,40662,14164,0],[14163,40659,40724,0],[40753,40776,40777,0],[40553,40552,40554,0],[11641,11637,10753,0],[40871,11353,11477,0],[40856,40881,40855,0],[40884,40883,40880,0],[40893,40892,11664,0],[11338,11343,11342,0],[41010,41009,41019,0],[41029,41006,41027,0],[41085,41084,41083,0],[41145,41143,41146,0],[41182,41181,11060,0],[41189,41166,41196,0],[41118,41203,41117,0],[41108,41116,41111,0],[11332,41229,11740,0],[41259,11157,11159,0],[18208,18207,18200,0],[17629,17732,17607,0],[41328,41330,41331,0],[41353,41357,41356,0],[41397,11237,11239,0],[41400,11923,11232,0],[14667,41430,14668,0],[41431,41432,41433,0],[41451,13090,13089,0],[13110,13086,41456,0],[41474,41073,41074,0],[41478,41473,41476,0],[10886,16999,10878,0],[41506,11721,41535,0],[10902,41559,41555,0],[10970,11010,40952,0],[41571,41112,41109,0],[18370,41582,41578,0],[41598,41588,41587,0],[14670,41265,14671,0],[41607,41610,41606,0],[18305,18306,18304,0],[41345,41634,18306,0],[18350,41647,41641,0],[41653,18370,18277,0],[18334,41655,18340,0],[41661,41660,41662,0],[18141,18139,18140,0],[41676,18146,18139,0],[14299,14298,41749,0],[41779,41693,41695,0],[41703,14462,41702,0],[41713,41716,14329,0],[41767,41774,41787,0],[13262,13261,13250,0],[13319,13339,13340,0],[41836,41837,41838,0],[18243,18040,41849,0],[41863,41861,41858,0],[18027,41867,18026,0],[41867,10794,10795,0],[41884,11136,41885,0],[18018,41911,41908,0],[41914,17961,41915,0],[41521,41525,41526,0],[41570,41924,10971,0],[41949,17527,41948,0],[10990,41970,17808,0],[10942,10944,10943,0],[41982,17811,41983,0],[41995,10914,10915,0],[42018,42017,42019,0],[42018,42019,17055,0],[42052,17377,17430,0],[42028,42050,42051,0],[42049,42045,42030,0],[42413,17115,42071,0],[42174,42173,17098,0],[42172,42174,42176,0],[17833,17476,17832,0],[10800,10802,42195,0],[42200,41893,42198,0],[41321,41377,42207,0],[42215,42216,42217,0],[18309,18305,42232,0],[18485,18479,18482,0],[18481,18488,18482,0],[10851,17009,10848,0],[17485,17486,17484,0],[42251,42255,42252,0],[17067,42256,42047,0],[42307,42304,42303,0],[42323,42322,42316,0],[42071,17169,42070,0],[42393,42392,42381,0],[41561,41562,41494,0],[42423,42425,42426,0],[11062,42420,42430,0],[41183,42429,42433,0],[14645,14732,42452,0],[12890,12881,42461,0],[42498,12889,12893,0],[14754,14752,42500,0],[14756,12564,14757,0],[11954,11955,42501,0],[11946,42493,42503,0],[42528,9292,9288,0],[42534,42535,42529,0],[42535,42534,8928,0],[42541,42557,42554,0],[42509,42562,42563,0],[42571,42573,42510,0],[42543,42575,42574,0],[12328,12327,42582,0],[42602,42627,42628,0],[42675,42670,42671,0],[15200,42691,42660,0],[16777,16774,16773,0],[42719,16778,42721,0],[42759,42758,42760,0],[42620,42747,42624,0],[42774,42797,42798,0],[42556,42559,42821,0],[42832,42847,42849,0],[42847,42831,42830,0],[42866,42870,42869,0],[42874,42864,13808,0],[42862,42863,42861,0],[42862,42861,13821,0],[42860,42887,42859,0],[42877,42884,42886,0],[42911,42910,48073,0],[26371,42956,26370,0],[12632,34339,34341,0],[42958,12631,34341,0],[42551,42552,12807,0],[42978,42979,42980,0],[42518,42989,42527,0],[34635,34641,42991,0],[34635,42990,34656,0],[42995,8917,34724,0],[9420,9417,9418,0],[9501,43006,8354,0],[43011,43010,43012,0],[8352,9565,9566,0],[9521,9512,43021,0],[43026,43027,8346,0],[9507,9516,9553,0],[9489,43036,9593,0],[8746,8759,8747,0],[9689,9690,43077,0],[8753,8751,43094,0],[8749,43092,8746,0],[43105,43099,43106,0],[43139,43129,43120,0],[43136,43117,43135,0],[43114,43164,43163,0],[9813,9812,8613,0],[8618,43182,8617,0],[43190,43187,43186,0],[43097,8816,8817,0],[9676,9674,9677,0],[43204,43205,43213,0],[9317,9329,9328,0],[43207,43214,43199,0],[12168,12167,12180,0],[8850,43222,8858,0],[45626,43293,43231,0],[43252,43254,43253,0],[43251,43246,43228,0],[43294,43295,43297,0],[43315,10098,10099,0],[8847,43317,43318,0],[43324,43108,43326,0],[43426,43428,43427,0],[43425,43409,43410,0],[43430,43365,43366,0],[43494,43493,43448,0],[43493,43494,43463,0],[9783,43510,43512,0],[9375,9376,9429,0],[34562,34559,34560,0],[43556,19261,43552,0],[43575,10215,34551,0],[43578,8633,43581,0],[8649,8662,43610,0],[43612,43601,43615,0],[43610,43611,43612,0],[43652,10202,43643,0],[45650,10191,43651,0],[43750,10170,8390,0],[8388,43603,8389,0],[43409,43432,43412,0],[10152,43794,43790,0],[8501,43815,8500,0],[43878,43877,43871,0],[43980,43994,43998,0],[44029,44024,44019,0],[44019,44024,44023,0],[44080,8448,45307,0],[44020,44018,44019,0],[44090,44092,45128,0],[43921,45047,44111,0],[43912,44168,44169,0],[44213,44212,44219,0],[44246,44248,44249,0],[44250,44249,44257,0],[44528,44529,44285,0],[44332,44345,44342,0],[44333,44336,44338,0],[44391,44382,44383,0],[44299,44410,44411,0],[44430,44433,44432,0],[44505,44508,44309,0],[44514,44519,44309,0],[44499,44263,44264,0],[44527,45172,44284,0],[44562,44578,45396,0],[44562,44580,44578,0],[44591,44453,44532,0],[44716,44213,44718,0],[44714,44713,44730,0],[44729,44733,44732,0],[44225,44228,44224,0],[44761,44763,44762,0],[44777,44056,44779,0],[44772,44040,44782,0],[44806,44048,44047,0],[44814,44815,44811,0],[43894,43895,44808,0],[44857,8517,43390,0],[43794,44885,10153,0],[43883,44886,44887,0],[43501,44894,43502,0],[44939,44903,44940,0],[44945,44891,43841,0],[44183,44184,44178,0],[44958,44964,44965,0],[44978,44974,44980,0],[44988,43481,43443,0],[8455,8457,45001,0],[45023,44012,44010,0],[43979,43996,45025,0],[44999,44079,44998,0],[43945,45080,43935,0],[45087,8472,45086,0],[45089,43902,44050,0],[45122,45119,45123,0],[45121,45120,45119,0],[44658,44657,45110,0],[44125,44170,44126,0],[44912,45091,44803,0],[45135,45005,45091,0],[44022,43944,45142,0],[45141,45142,45143,0],[45149,44712,44713,0],[44278,44385,44498,0],[45176,44417,45379,0],[45214,45215,44681,0],[45220,44636,45218,0],[45229,44293,45230,0],[45272,44305,45273,0],[45261,45254,45252,0],[44387,44391,45287,0],[45319,10026,10045,0],[10012,10043,45319,0],[45343,45347,45349,0],[45387,44347,45386,0],[45420,9875,45419,0],[9877,45425,44849,0],[45425,9877,45423,0],[45452,8216,8215,0],[34604,45467,8727,0],[19282,19285,40177,0],[45672,18783,18893,0],[45498,45500,18819,0],[40527,45521,45522,0],[10412,45525,10413,0],[8159,8157,8151,0],[8165,45536,8164,0],[8170,25127,45541,0],[8195,45546,8202,0],[8180,45547,45545,0],[45628,45634,45633,0],[45640,10498,10500,0],[45652,45651,45653,0],[45665,45666,45664,0],[45670,19189,18778,0],[45700,43667,45699,0],[18837,45515,18839,0],[11312,45743,11307,0],[45768,45766,45673,0],[45754,45770,45747,0],[45775,11219,11218,0],[10589,46011,10592,0],[45804,45957,10583,0],[45811,45810,45805,0],[45825,10649,45826,0],[45827,10593,45824,0],[45807,45808,10630,0],[11887,11862,11893,0],[45880,45879,45881,0],[45909,45906,45905,0],[45900,19079,45906,0],[10680,45916,19015,0],[45921,45922,45919,0],[45929,45932,45925,0],[40818,40823,45943,0],[10544,10543,45949,0],[45981,45979,45980,0],[46015,46014,46017,0],[11445,46019,11432,0],[46027,46028,11934,0],[46029,46035,16735,0],[42633,46056,42635,0],[46060,14879,46061,0],[46142,46146,46143,0],[46138,46137,46152,0],[46983,46190,46192,0],[46206,46205,46204,0],[46226,46219,46223,0],[46228,46229,46227,0],[46235,46257,46256,0],[46248,46158,46109,0],[46269,16515,46268,0],[46293,46280,46292,0],[46276,46336,46275,0],[46328,46331,46272,0],[46271,46243,46270,0],[46373,46904,46371,0],[46368,46397,46396,0],[46416,46428,46429,0],[46433,46403,46434,0],[46433,46437,46403,0],[46447,16557,16556,0],[46458,46465,46449,0],[46461,46460,12033,0],[16514,46344,46343,0],[14858,46496,46495,0],[15639,15201,46484,0],[46505,46504,15210,0],[15777,46532,15775,0],[12056,42643,46558,0],[46562,46564,46561,0],[46590,46586,46589,0],[46594,46596,14808,0],[46150,46148,46621,0],[46629,46630,46631,0],[46627,46110,46632,0],[46144,46633,46143,0],[46669,46117,15955,0],[15869,46681,15895,0],[46686,15889,15904,0],[46693,46695,46694,0],[14824,46707,46705,0],[46710,14900,46708,0],[42793,46425,46730,0],[46741,46428,46417,0],[46743,46742,15883,0],[46768,46767,46382,0],[11986,12001,46794,0],[43219,12189,46801,0],[12107,12156,46812,0],[46847,42809,42783,0],[46849,14780,14781,0],[42766,42757,46858,0],[46883,11873,11910,0],[11926,46885,11247,0],[11839,46887,46886,0],[46791,12072,12071,0],[42609,42621,42606,0],[12411,12311,12312,0],[14835,14833,46905,0],[46922,14956,46921,0],[46995,15712,15714,0],[47001,15167,47002,0],[15380,47003,15381,0],[47008,15173,15381,0],[16073,16071,47028,0],[47098,47099,47096,0],[15504,15104,15102,0],[47135,15098,47133,0],[47189,47184,46188,0],[47180,47494,47196,0],[47194,47196,47195,0],[15175,47215,47214,0],[15181,47241,15180,0],[47248,15265,47249,0],[47313,47312,47318,0],[47312,47313,47317,0],[47327,47324,47319,0],[47327,14990,16311,0],[47346,47344,47345,0],[47344,47435,47345,0],[47117,47388,15520,0],[16292,15074,47400,0],[47416,47418,16213,0],[47432,16158,15066,0],[47430,16157,15065,0],[15097,47452,15095,0],[47168,47165,47459,0],[46078,42655,42654,0],[47493,15154,46988,0],[46150,46614,46149,0],[15838,46613,15809,0],[11613,11380,11614,0],[11645,47552,11646,0],[10762,10761,47595,0],[14135,47606,47607,0],[10564,10603,10604,0],[47646,47647,45955,0],[47670,47667,47666,0],[47679,34271,34270,0],[12615,12620,12623,0],[7204,7205,47686,0],[13801,47690,47687,0],[47693,47694,47692,0],[7825,47698,47699,0],[47703,7808,7721,0],[7813,47707,7805,0],[20028,20027,40391,0],[40393,40392,40394,0],[19804,47738,19805,0],[47755,47752,19377,0],[40358,40347,40359,0],[47767,19591,19589,0],[47779,47784,47782,0],[47793,47808,47796,0],[47799,47800,47788,0],[19572,47772,47819,0],[47857,47855,47862,0],[47867,47869,47866,0],[47900,47813,47901,0],[47783,47784,19583,0],[47784,19584,19583,0],[47940,47937,19411,0],[47940,19411,19410,0],[13332,13320,13324,0],[13929,47955,48427,0],[47955,47817,47816,0],[14213,47972,47973,0],[48009,14231,14230,0],[48017,48005,48002,0],[48033,48037,48032,0],[48047,49944,19396,0],[47980,47963,48052,0],[48058,47982,48057,0],[48061,48058,47993,0],[48065,48064,14254,0],[48012,48016,48074,0],[48133,48132,48134,0],[13543,48131,48132,0],[48166,48253,48167,0],[48117,48198,48190,0],[13632,48226,48228,0],[13522,48246,48248,0],[48309,48302,48303,0],[48317,14225,48315,0],[48322,48323,48325,0],[48122,48365,48136,0],[48356,14248,48355,0],[48402,42926,42921,0],[13382,13415,48063,0],[48412,48411,48414,0],[47997,48080,47996,0],[13628,13629,48434,0],[48464,48465,48468,0],[48451,48453,48534,0],[48523,48532,48524,0],[48546,13482,13483,0],[48553,48537,48536,0],[48500,48554,48553,0],[13688,48587,48578,0],[13785,13658,48583,0],[48608,48612,48610,0],[48614,48615,48600,0],[14541,41832,48648,0],[48649,47758,19662,0],[48669,48668,48670,0],[48682,48680,48689,0],[20268,20267,20261,0],[20267,48719,20265,0],[48723,37574,48724,0],[48728,48685,39705,0],[26163,26086,48735,0],[39969,48746,20063,0],[26665,7855,7854,0],[48763,48762,48761,0],[26637,26680,26641,0],[26728,48793,35689,0],[35689,48795,48773,0],[48800,26525,26549,0],[26536,48803,48765,0],[35160,35159,48806,0],[48809,35179,48810,0],[34777,34770,48816,0],[48824,35171,48826,0],[48832,48831,48833,0],[48825,27459,48830,0],[24305,24306,39131,0],[24654,24649,39319,0],[48875,24616,24615,0],[24524,24231,48859,0],[48860,24218,48877,0],[24552,24227,48881,0],[48880,24230,24554,0],[3410,32864,32865,0],[48928,22139,22138,0],[32814,48933,32731,0],[3399,32817,48934,0],[48936,48933,48937,0],[3393,48940,48944,0],[3500,3501,48974,0],[38064,38081,38073,0],[2255,2110,38025,0],[20609,49000,49001,0],[22785,2405,22783,0],[20622,49036,20621,0],[49015,49013,49014,0],[49046,49052,20619,0],[36288,20627,49053,0],[49067,49070,49069,0],[49104,37171,37172,0],[36538,49121,6524,0],[49138,49139,49137,0],[6597,49143,6598,0],[6594,49126,49127,0],[49145,49146,6394,0],[49197,49202,38386,0],[36587,49100,36544,0],[20539,20584,20586,0],[20559,20560,20569,0],[49220,21334,37306,0],[20593,36323,49232,0],[38192,29441,38207,0],[5322,29427,5323,0],[5323,5319,29501,0],[49263,29416,5272,0],[29821,49319,29437,0],[29591,49323,49322,0],[5188,49331,49329,0],[49368,6586,49369,0],[6580,29791,6579,0],[1648,49376,5586,0],[1479,1480,31382,0],[6701,49417,6699,0],[49425,49426,49427,0],[5164,49351,49352,0],[49284,49294,49276,0],[49449,49446,49444,0],[49459,4940,49458,0],[3109,3111,3077,0],[2697,49468,2696,0],[20662,49513,20664,0],[36421,49519,27309,0],[7453,20746,20771,0],[31940,31937,27780,0],[27783,27777,27674,0],[27719,27657,27718,0],[27887,27889,27888,0],[35285,35323,35284,0],[33418,33416,33779,0],[49578,32415,49579,0],[484,23381,49581,0],[49587,30965,775,0],[6026,31549,1351,0],[31298,49602,49601,0],[30299,30285,30284,0],[49640,15,49641,0],[49643,49644,29,0],[3120,3123,49695,0],[49702,49703,49684,0],[49720,49719,49721,0],[3031,3030,49724,0],[3103,49727,3099,0],[49476,49728,49475,0],[49734,49732,4897,0],[49739,49738,4903,0],[29398,4915,29399,0],[1864,49760,49756,0],[50000,2863,49766,0],[2825,1853,1854,0],[49790,24556,49791,0],[24438,24460,24439,0],[12823,12825,49794,0],[42483,42820,49796,0],[49800,23844,49801,0],[28930,28928,28929,0],[49810,30061,49811,0],[65,40,49812,0],[13539,49838,13548,0],[49851,13517,48163,0],[48436,49853,48530,0],[48438,49859,49856,0],[13533,49897,49895,0],[49873,49878,49874,0],[49839,49939,49842,0],[19658,19656,49945,0],[48421,49948,13882,0],[13332,49952,13320,0],[2327,2439,2318,0],[49970,1602,1601,0],[6901,36248,36247,0],[31195,1288,1289,0],[2757,49999,2755,0]], + + 'end': (new Date).getTime() + } + +postMessage( model ); diff --git a/examples/obj/male02/Male02_slim.js b/examples/obj/male02/Male02_slim.js new file mode 100644 index 0000000000000000000000000000000000000000..cac2a87eeb14884e69fac223919c6ed79b30b5b3 --- /dev/null +++ b/examples/obj/male02/Male02_slim.js @@ -0,0 +1,92 @@ +// Converted from: ../../examples/obj/male02/male02.obj +// vertices: 2746 +// faces: 5004 +// materials: 5 +// +// Generated with OBJ -> Three.js converter +// http://github.com/alteredq/three.js/blob/master/utils/exporters/convert_obj_threejs_slim.py + + +var model = { + 'materials': [ { + "a_dbg_color" : 0xffeeeeee, + "a_dbg_index" : 0, + "a_dbg_name" : "male-02-1noCullingID_male-02-1noCulling.JP", + "col_ambient" : [0.0, 0.0, 0.0], + "col_diffuse" : [0.64000000000000001, 0.64000000000000001, 0.64000000000000001], + "col_specular" : [0.16500000000000001, 0.16500000000000001, 0.16500000000000001], + "illumination" : 2, + "map_diffuse" : "male-02-1noCulling.JPG", + "optical_density" : 1.0, + "specular_coef" : 154.901961, + "transparency" : 1.0 + }, + + { + "a_dbg_color" : 0xffee0000, + "a_dbg_index" : 1, + "a_dbg_name" : "orig_02_-_Defaul1noCu_orig_02_-_Defaul1noCu", + "col_ambient" : [0.0, 0.0, 0.0], + "col_diffuse" : [0.64000000000000001, 0.64000000000000001, 0.64000000000000001], + "col_specular" : [0.16500000000000001, 0.16500000000000001, 0.16500000000000001], + "illumination" : 2, + "map_diffuse" : "orig_02_-_Defaul1noCulling.JPG", + "optical_density" : 1.0, + "specular_coef" : 154.901961, + "transparency" : 1.0 + }, + + { + "a_dbg_color" : 0xff00ee00, + "a_dbg_index" : 2, + "a_dbg_name" : "FrontColorNoCullingID_orig_02_-_Defaul1noCu", + "col_ambient" : [0.0, 0.0, 0.0], + "col_diffuse" : [0.80000000000000004, 0.80000000000000004, 0.80000000000000004], + "col_specular" : [0.16500000000000001, 0.16500000000000001, 0.16500000000000001], + "illumination" : 2, + "map_diffuse" : "orig_02_-_Defaul1noCulling.JPG", + "optical_density" : 1.0, + "specular_coef" : 154.901961, + "transparency" : 1.0 + }, + + { + "a_dbg_color" : 0xff0000ee, + "a_dbg_index" : 3, + "a_dbg_name" : "_01_-_Default1noCulli__01_-_Default1noCulli", + "col_ambient" : [0.0, 0.0, 0.0], + "col_diffuse" : [0.64000000000000001, 0.64000000000000001, 0.64000000000000001], + "col_specular" : [0.16500000000000001, 0.16500000000000001, 0.16500000000000001], + "illumination" : 2, + "map_diffuse" : "_01_-_Default1noCulling.JPG", + "optical_density" : 1.0, + "specular_coef" : 154.901961, + "transparency" : 1.0 + }, + + { + "a_dbg_color" : 0xffeeee00, + "a_dbg_index" : 4, + "a_dbg_name" : "FrontColorNoCullingID_male-02-1noCulling.JP", + "col_ambient" : [0.0, 0.0, 0.0], + "col_diffuse" : [0.80000000000000004, 0.80000000000000004, 0.80000000000000004], + "col_specular" : [0.16500000000000001, 0.16500000000000001, 0.16500000000000001], + "illumination" : 2, + "map_diffuse" : "male-02-1noCulling.JPG", + "optical_density" : 1.0, + "specular_coef" : 154.901961, + "transparency" : 1.0 + }], + + 'normals': [[-0.253945,0.750999,0.609455],[-0.306619,0.533250,0.788415],[-0.309854,0.686026,0.658254],[-0.086215,0.449202,0.889248],[0.270058,0.706626,0.653981],[-0.279092,0.889553,0.361583],[-0.877041,0.424635,0.224647],[-0.537675,0.591845,0.600482],[-0.174017,0.883938,0.433943],[0.182592,0.831996,-0.523850],[0.308054,0.920927,-0.238624],[0.550218,0.830683,0.084628],[0.181341,0.833247,0.522263],[0.113193,0.638539,0.761193],[-0.163823,0.544572,0.822535],[-0.258248,0.674276,0.691794],[-0.257332,0.677358,0.689138],[-0.033753,0.891903,0.450911],[0.000031,0.533799,-0.845576],[-0.232582,0.955290,0.182501],[-0.490005,0.820673,-0.293893],[-0.098270,0.917020,-0.386486],[-0.016785,0.999664,0.019684],[0.160009,0.980804,-0.111209],[0.186438,0.824488,-0.534227],[0.542955,0.451460,-0.708029],[0.829493,0.500229,-0.248329],[0.093173,0.990051,0.105258],[0.032868,0.998199,0.049898],[0.488388,0.803125,0.341166],[-0.211676,0.931028,0.297189],[0.210395,0.790277,0.575457],[0.712149,0.663320,0.229774],[0.732902,0.665609,0.140538],[0.334208,0.925352,0.178808],[0.441847,0.831568,-0.336497],[0.698843,0.566149,-0.437117],[0.468398,0.440596,-0.765770],[0.533341,0.361034,-0.764946],[0.572131,0.746727,-0.339091],[0.715690,0.106357,-0.690237],[0.817805,0.449995,-0.358654],[0.429182,0.886196,0.174474],[0.175512,0.820338,0.544237],[-0.022217,0.585009,0.810694],[-0.020844,0.348949,0.936888],[-0.200140,0.405408,0.891934],[-0.309763,0.446516,0.839412],[-0.299112,0.506760,0.808496],[-0.421583,0.533982,0.732871],[-0.197394,0.687124,0.699179],[-0.584613,0.632771,0.507706],[-0.209967,0.751427,0.625477],[-0.488754,0.826777,0.278390],[-0.607013,0.792566,-0.057436],[-0.047029,0.932646,0.357677],[-0.074252,0.997162,0.010895],[-0.160375,0.986908,0.016419],[-0.068575,0.978607,-0.193793],[-0.490951,0.488327,-0.721427],[0.028993,0.446791,-0.894162],[0.309763,0.401502,-0.861873],[0.482192,0.416028,-0.770928],[0.386090,0.210425,-0.898129],[0.509171,-0.064608,-0.858211],[0.668477,-0.179937,-0.721610],[0.731132,-0.354869,-0.582629],[0.917142,-0.327219,-0.227424],[0.736351,-0.043214,-0.675161],[0.886898,0.160924,-0.432997],[0.942656,0.186193,0.276955],[0.721274,0.584185,0.372082],[0.317972,0.715842,0.621601],[0.085086,0.558428,0.825159],[0.218268,0.244026,0.944853],[0.448408,0.142705,0.882351],[0.138981,0.151158,0.978668],[-0.145054,0.225776,0.963286],[-0.328898,0.298715,0.895871],[-0.460311,0.402997,0.790979],[-0.562120,0.359416,0.744865],[-0.535478,0.532090,0.655812],[-0.558245,0.768273,0.313150],[-0.712516,0.643757,-0.279000],[-0.673788,0.663594,-0.324992],[-0.275521,0.554521,-0.785211],[-0.180609,0.839930,-0.511704],[0.059603,0.412488,-0.908994],[0.106632,0.403394,-0.908750],[0.318308,0.328227,-0.889309],[0.330515,0.153417,-0.931211],[0.402722,-0.039979,-0.914426],[0.632710,-0.270394,-0.725608],[0.783044,-0.244026,-0.572069],[0.779168,-0.246284,-0.576373],[0.916135,-0.274850,-0.291757],[0.621265,-0.097842,-0.777429],[0.524827,0.158849,-0.836207],[0.900662,0.146855,-0.408887],[0.971831,0.058321,0.228278],[0.636525,0.009308,0.771172],[0.620533,0.103702,0.777245],[0.477493,0.365429,0.799005],[0.367901,0.094699,0.925016],[0.306253,0.341746,0.888455],[0.339763,0.123814,0.932310],[0.423048,0.053194,0.904508],[0.486038,0.088839,0.869381],[0.505020,0.085055,0.858882],[0.244942,0.057161,0.967834],[-0.101413,0.107608,0.988983],[-0.325816,0.191900,0.925718],[-0.519883,0.239937,0.819819],[-0.713309,0.200110,0.671651],[-0.442854,0.258400,0.858516],[-0.875088,0.130161,0.466109],[-0.927915,0.046693,0.369823],[-0.928129,0.045412,0.369396],[-0.915677,0.075076,0.394757],[-0.989349,0.000427,0.145482],[-0.987854,0.006653,0.155187],[-0.951231,-0.085665,-0.296243],[-0.959258,-0.085208,-0.269326],[-0.701437,-0.192816,-0.686117],[-0.782708,-0.123661,-0.609943],[-0.547960,-0.178014,-0.817316],[-0.360210,-0.302011,-0.882626],[-0.434858,-0.292032,-0.851802],[-0.259346,-0.294015,-0.919919],[-0.145054,-0.311716,-0.939024],[-0.031678,-0.229377,-0.972808],[0.136143,-0.039460,-0.989898],[0.249550,-0.025422,-0.968017],[0.245003,0.207007,-0.947142],[0.337077,-0.053499,-0.939940],[0.438459,-0.200262,-0.876125],[0.633351,-0.273080,-0.724052],[0.782556,-0.290780,-0.550462],[0.794031,-0.234016,-0.560991],[0.971984,-0.029237,-0.233192],[0.917234,0.312723,0.246651],[0.493301,0.830714,0.257942],[-0.219581,0.442427,-0.869472],[-0.564898,0.576525,-0.590320],[-0.060976,0.075259,-0.995270],[0.515702,0.221351,-0.827662],[0.495285,0.232765,-0.836940],[0.909879,0.218207,-0.352733],[0.967589,0.102908,0.230567],[0.637349,0.026337,0.770074],[0.115268,-0.072207,0.990692],[0.138005,-0.119358,0.983184],[0.170263,-0.099826,0.980316],[0.319529,-0.356578,0.877895],[0.664754,-0.117710,0.737693],[0.775048,0.066897,0.628315],[0.703970,-0.001556,0.710196],[0.673757,0.001953,0.738914],[0.505173,0.027192,0.862575],[0.492691,0.016663,0.870022],[0.156652,0.033357,0.987060],[-0.104068,0.122379,0.986999],[-0.291482,0.181280,0.939207],[-0.485214,0.153172,0.860836],[-0.542497,0.164251,0.823817],[-0.802545,0.087039,0.590197],[-0.916837,0.056551,0.395184],[-0.868740,0.067965,0.490524],[-0.940672,0.047151,0.335948],[-0.988586,0.023408,-0.148717],[-0.857265,0.001373,-0.514817],[-0.684255,-0.039674,-0.728141],[-0.684561,-0.002411,-0.728935],[-0.525956,-0.134342,-0.839808],[-0.357891,-0.054689,-0.932127],[-0.194006,-0.159490,-0.967925],[0.113590,-0.137455,-0.983947],[-0.000671,-0.075198,-0.997162],[0.223487,-0.047517,-0.973540],[0.130039,-0.043458,-0.990539],[0.314737,0.012574,-0.949065],[0.389080,-0.057894,-0.919370],[0.681783,0.039460,-0.730461],[0.724326,-0.089908,-0.683523],[0.894559,-0.090609,-0.437635],[0.854610,-0.206671,-0.476333],[0.701804,-0.204260,-0.682424],[0.444685,-0.168798,-0.879604],[0.303964,-0.197607,-0.931944],[0.176214,-0.243385,-0.953764],[-0.181555,-0.243538,-0.952727],[0.232337,-0.237342,-0.943205],[0.334025,-0.239601,-0.911557],[0.337107,-0.194250,-0.921201],[0.427412,-0.221870,-0.876370],[0.837519,-0.254952,-0.483200],[0.958434,-0.233436,-0.163854],[0.950133,0.024842,0.310770],[0.779290,0.187933,0.597797],[-0.073580,0.994079,0.079592],[-0.952788,0.226997,-0.201483],[-0.883419,-0.429395,0.187445],[-0.900266,-0.350780,-0.257759],[-0.863430,-0.368816,0.344157],[-0.921018,-0.292886,-0.256752],[-0.898892,-0.317789,0.301614],[-0.924497,-0.264107,-0.274758],[-0.894803,-0.346477,0.281472],[-0.908750,-0.248054,-0.335582],[-0.955535,-0.237526,0.174657],[-0.850307,-0.104434,-0.515793],[-0.549760,-0.150517,-0.821619],[-0.449812,-0.214911,-0.866848],[-0.427198,-0.306864,-0.850459],[0.188147,-0.301584,-0.934660],[0.142857,-0.145665,-0.978942],[0.058290,-0.012299,-0.998199],[0.735069,-0.021241,-0.677633],[0.668874,0.123142,-0.733085],[0.975097,0.104617,-0.195410],[0.947600,0.210852,-0.239937],[0.589160,0.230079,-0.774529],[0.931303,0.291757,-0.217933],[0.542650,0.239540,-0.805048],[-0.098148,0.067263,-0.992889],[-0.033418,0.066103,-0.997223],[-0.605090,-0.095004,-0.790429],[-0.671560,-0.141423,-0.727287],[-0.676626,-0.177587,-0.714560],[-0.634785,-0.195502,-0.747490],[-0.089541,0.054445,-0.994476],[0.540819,0.222907,-0.811060],[0.927641,0.241585,-0.284707],[0.954497,0.153081,0.255837],[0.666494,0.067080,0.742454],[0.099887,-0.049898,0.993744],[-0.530381,-0.207099,0.822047],[-0.468184,-0.216620,0.856655],[-0.188025,-0.445357,0.875362],[-0.523942,-0.289621,0.800989],[-0.550615,-0.398968,0.733207],[-0.998535,0.043184,0.031617],[-0.773064,-0.127903,0.621235],[-0.997162,-0.070009,-0.027070],[-0.822230,-0.190497,-0.536271],[-0.446394,-0.297647,-0.843867],[0.209357,-0.352916,-0.911924],[0.782556,-0.231452,-0.577929],[0.770562,-0.182440,-0.610645],[0.999725,-0.022126,-0.000763],[0.998810,-0.002808,-0.048280],[0.894284,0.190680,0.404797],[0.923795,0.169408,0.343303],[0.921506,0.283761,-0.265084],[0.936552,0.209815,0.280770],[0.672384,0.078402,0.736015],[0.121677,-0.122868,0.984924],[0.109226,-0.394147,0.912503],[-0.172826,-0.079440,0.981719],[-0.786493,0.140110,0.601459],[-0.997589,-0.062410,0.029695],[-0.843776,-0.237068,-0.481460],[-0.845027,-0.222602,-0.486129],[-0.446181,-0.328929,-0.832270],[-0.428571,-0.346721,-0.834315],[0.205756,-0.333445,-0.920011],[0.219245,-0.349437,-0.910916],[0.788018,-0.220374,-0.574816],[0.999817,-0.016205,-0.007355],[0.845790,0.163366,0.507828],[0.843715,0.142338,0.517533],[0.405927,0.273782,0.871883],[0.452742,0.115421,0.884121],[-0.215979,0.276437,0.936430],[-0.789026,0.146123,0.596698],[-0.998749,-0.049013,0.009613],[-0.840846,-0.166631,-0.514969],[-0.449202,-0.276162,-0.849635],[-0.514847,-0.854549,-0.067995],[-0.300333,-0.923917,-0.236946],[0.205298,-0.297281,-0.932432],[0.819544,-0.192602,-0.539628],[0.802149,-0.204291,-0.561052],[0.997406,-0.040345,0.059328],[0.999512,-0.027528,0.014008],[0.846553,0.140355,0.513413],[0.446211,0.264687,0.854854],[0.425520,0.273934,0.862453],[-0.206732,0.303476,0.930113],[-0.222114,0.288186,0.931455],[-0.802911,0.172185,0.570635],[-0.998688,0.009339,-0.050295],[-0.601123,-0.788934,0.127201],[-0.273659,-0.934141,-0.228950],[-0.497055,-0.861141,-0.106479],[-0.543626,-0.643635,-0.538652],[-0.042695,-0.744896,-0.665792],[0.152348,-0.974578,-0.164159],[0.375683,-0.896420,0.234993],[0.587878,-0.732933,-0.342296],[0.761040,-0.595538,0.257057],[0.258065,-0.802545,0.537858],[0.062197,-0.975799,-0.209540],[0.288827,-0.950896,0.111118],[0.252815,-0.878353,0.405652],[0.837428,0.090793,0.538926],[0.446577,0.215613,0.868343],[-0.203131,0.299753,0.932127],[-0.818262,0.215278,0.532945],[-0.610584,-0.710501,0.349803],[-0.645558,-0.763329,0.023103],[-0.807123,-0.512131,-0.293619],[-0.245369,-0.921262,0.301737],[-0.948088,-0.314707,0.045106],[-0.796503,-0.091830,0.597613],[-0.193182,-0.100681,0.975951],[0.323283,-0.289438,0.900937],[-0.177190,-0.600482,0.779748],[-0.586566,-0.502060,0.635487],[-0.746635,-0.613941,0.256050],[-0.134556,-0.694418,0.706839],[0.112735,-0.789605,0.603137],[-0.447188,-0.653127,0.611072],[0.072054,-0.722739,0.687338],[0.605823,-0.457625,0.650777],[0.655812,-0.129887,0.743645],[0.932249,-0.069704,0.354991],[0.738029,-0.029817,0.674062],[0.508988,-0.032960,0.860103],[0.509049,-0.022095,0.860408],[0.224738,-0.019837,0.974212],[0.017182,0.045778,0.998779],[-0.270211,0.098086,0.957762],[-0.505264,0.081515,0.859066],[-0.701041,0.098575,0.706259],[-0.637715,0.078463,0.766228],[-0.390973,0.073000,0.917478],[-0.870022,0.040345,0.491287],[-0.822810,0.075625,0.563219],[-0.769524,0.140996,0.622852],[-0.907010,0.132511,0.399670],[-0.993042,0.097049,-0.066347],[-0.880978,0.040437,-0.471358],[-0.744743,0.025422,-0.666860],[-0.776818,0.083285,-0.624165],[-0.770043,0.115848,-0.627338],[-0.768334,0.115299,-0.629536],[-0.766800,0.124069,-0.629781],[-0.488052,0.066530,-0.870235],[-0.771050,0.112125,-0.626789],[-0.513688,0.085421,-0.853694],[-0.109989,0.052889,-0.992492],[-0.060183,-0.046602,-0.997070],[0.073183,0.020447,-0.997101],[0.239906,0.052004,-0.969390],[0.621723,0.073550,-0.779748],[0.880215,0.025727,-0.473830],[0.893002,-0.095218,-0.439833],[0.977691,-0.064974,-0.199591],[0.966643,-0.064028,0.247963],[0.787347,-0.023133,0.616047],[0.588244,-0.035676,0.807855],[0.588610,-0.015473,0.808222],[0.359874,-0.071139,0.930265],[0.133366,0.009461,0.990997],[-0.187841,0.045106,0.981140],[-0.440687,0.058657,0.895718],[-0.572710,0.077059,0.816095],[-0.266854,0.070223,0.961150],[-0.812952,0.065615,0.578600],[-0.756645,0.115604,0.643513],[-0.723136,0.157659,0.672414],[-0.872005,0.155522,0.464064],[-0.990997,0.130375,-0.029633],[-0.911527,0.113559,-0.395215],[-0.890835,0.138066,-0.432813],[-0.870174,0.145726,-0.470656],[-0.755913,0.097964,-0.647267],[-0.791650,0.207190,-0.574755],[-0.639271,0.162542,-0.751579],[-0.766747,0.064302,-0.638691],[-0.673849,0.093905,-0.732841],[-0.531632,0.038057,-0.846095],[-0.456008,0.065310,-0.887539],[-0.558336,0.175054,-0.810907],[-0.379009,0.143406,-0.914182],[-0.155004,0.048097,-0.986724],[-0.154942,0.032655,-0.987365],[-0.006561,0.036042,-0.999298],[0.004639,0.068178,-0.997650],[0.160100,0.041536,-0.986206],[0.172369,0.073824,-0.982238],[0.032594,0.082064,-0.996063],[0.200018,0.096408,-0.975005],[0.615101,0.097140,-0.782434],[0.852077,0.064089,-0.519425],[0.879543,0.046663,-0.473464],[0.959716,0.056887,-0.275063],[0.984222,0.038148,0.172613],[0.819514,0.019013,0.572710],[0.632527,-0.025513,0.774102],[0.632923,-0.008728,0.774132],[0.499496,-0.009888,0.866237],[0.205542,0.013367,0.978545],[-0.108219,0.037690,0.993408],[-0.376476,0.076815,0.923215],[-0.614368,0.117649,0.780175],[-0.713370,0.121616,0.690146],[-0.688314,0.099734,0.718497],[-0.890957,0.123569,0.436903],[-0.991119,0.132054,-0.014954],[-0.977935,0.204016,-0.044618],[-0.951628,0.267190,-0.151585],[-0.936857,0.267190,-0.225562],[-0.700766,0.254646,-0.666341],[-0.933226,0.238227,-0.268899],[-0.658284,0.205054,-0.724265],[-0.707907,0.207312,-0.675161],[-0.943205,0.233192,-0.236549],[-0.956999,0.212531,0.197333],[-0.916135,0.195837,0.349712],[-0.797540,0.156621,0.582537],[-0.791101,0.152745,0.592273],[-0.798608,0.161351,0.579791],[-0.789453,0.161138,0.592273],[-0.660573,0.117374,0.741508],[-0.630848,0.108951,0.768181],[-0.294992,0.008423,0.955443],[-0.210517,-0.011017,0.977508],[0.063356,-0.047121,0.996857],[0.072481,-0.045106,0.996338],[0.273812,-0.023316,0.961486],[0.315104,-0.017029,0.948882],[0.045503,-0.036653,0.998260],[-0.378277,0.039918,0.924802],[-0.675619,0.155034,0.720725],[-0.759026,0.184362,0.624378],[-0.626759,0.149388,0.764733],[-0.277413,0.052400,0.959288],[0.010559,0.000214,0.999939],[0.290780,0.019440,0.956572],[0.368908,-0.001129,0.929441],[0.568743,0.067049,0.819758],[0.597156,0.077883,0.798303],[0.731773,0.130589,0.668905],[0.617512,0.110385,0.778741],[0.704581,0.146184,0.694357],[0.730583,0.121372,0.671896],[0.715354,0.136509,0.685263],[0.876125,0.181616,0.446516],[0.879391,0.233375,0.414930],[0.939665,0.314371,-0.134648],[0.956725,0.276193,-0.091464],[0.804987,0.241279,-0.541978],[0.885342,0.095553,-0.455000],[0.764672,0.049104,-0.642506],[0.785668,0.058138,-0.615864],[0.785791,0.041078,-0.617084],[0.831538,0.072787,-0.550645],[0.851039,0.081881,-0.518662],[0.938810,0.071169,-0.336955],[0.990783,0.069948,0.115818],[0.834834,0.006256,0.550401],[0.656758,-0.020325,0.753777],[0.657460,-0.007416,0.753410],[0.526261,-0.005921,0.850276],[0.237587,-0.003235,0.971343],[-0.057344,0.024293,0.998047],[-0.318400,0.078280,0.944700],[-0.566698,0.114780,0.815882],[-0.680135,0.087283,0.727836],[-0.708243,0.063234,0.703116],[-0.872463,0.111209,0.475814],[-0.893094,0.207923,0.398846],[-0.915799,0.238777,0.322855],[-0.774773,0.169591,0.609027],[-0.716178,0.168859,0.677145],[-0.557176,0.113498,0.822565],[-0.237526,0.040712,0.970519],[-0.000824,-0.011933,0.999908],[0.245979,0.001434,0.969268],[0.549883,0.047578,0.833857],[0.538469,-0.005432,0.842616],[0.250649,-0.006653,0.968047],[-0.014710,0.008026,0.999847],[-0.262459,0.041505,0.964019],[-0.534043,0.066012,0.842860],[-0.687857,0.091220,0.720054],[-0.746940,0.147191,0.648335],[0.672842,0.001099,0.739769],[0.680654,0.036164,0.731681],[0.682516,0.118809,0.721122],[0.582293,0.090884,0.807855],[0.705527,0.110874,0.699942],[0.693655,0.019135,0.720023],[0.675527,-0.007172,0.737266],[0.858425,0.006989,0.512833],[0.871242,0.048189,0.488449],[0.871334,0.184820,0.454482],[0.989166,0.145909,-0.014222],[0.911222,0.062624,-0.407056],[0.829524,0.095676,-0.550188],[0.943022,0.068239,-0.325571],[0.997253,0.045289,0.058596],[0.999542,0.027985,0.008637],[0.530320,0.059877,-0.845637],[0.532090,0.018555,-0.846461],[0.767632,0.022401,-0.640461],[0.644154,0.206244,-0.736534],[0.721702,0.339061,-0.603442],[0.949034,0.267190,-0.167150],[0.930845,0.209967,0.298990],[0.736595,0.127445,0.664174],[0.739586,0.132908,0.659780],[0.956786,0.258858,-0.132389],[0.817896,0.264046,-0.511155],[0.682516,0.260109,-0.683004],[0.569414,0.242256,-0.785516],[0.551042,0.251717,-0.795556],[0.582781,0.254311,-0.771783],[0.554949,0.271920,-0.786157],[0.345103,0.198431,-0.917325],[0.308176,0.217841,-0.926023],[0.069948,0.092105,-0.993286],[0.012757,0.063082,-0.997925],[-0.065004,0.039003,-0.997101],[-0.037843,0.046083,-0.998199],[0.112918,0.108249,-0.987671],[-0.023164,0.061434,-0.997833],[0.145329,0.068392,-0.986999],[0.447768,0.114750,-0.886715],[0.668416,0.147649,-0.728935],[0.518418,0.282815,-0.806970],[0.542131,0.259621,-0.799158],[0.362896,0.214850,-0.906705],[-0.139439,0.062258,-0.988250],[-0.115238,0.036500,-0.992645],[-0.098666,0.035310,-0.994476],[-0.075442,0.015442,-0.997009],[-0.233955,0.106937,-0.966338],[-0.338481,0.131809,-0.931669],[-0.530351,0.183691,-0.827601],[-0.523087,0.179052,-0.833216],[-0.521317,0.180578,-0.834010],[-0.508560,0.180242,-0.841945],[-0.508713,0.202521,-0.836756],[-0.150548,0.079287,-0.985412],[-0.174932,0.059420,0.982757],[-0.421186,0.060152,0.904965],[-0.145726,0.009369,0.989257],[-0.481063,0.076937,0.873287],[-0.784020,0.123661,0.608234],[-0.844722,0.144658,0.515213],[-0.985992,0.146336,0.079958],[-0.980438,0.196814,0.001221],[-0.889615,0.170537,-0.423627],[-0.829615,0.215094,-0.515213],[-0.979492,0.199438,-0.027863],[-0.827967,0.197028,-0.524979],[-0.974364,0.216529,-0.060976],[-0.829096,0.194830,-0.524003],[-0.949461,0.289285,-0.121708],[-0.750694,0.304147,-0.586413],[-0.925260,0.340526,-0.166967],[-0.705924,0.223121,-0.672170],[-0.953825,0.228614,-0.194769],[-0.667318,0.139348,-0.731590],[-0.950102,0.208960,-0.231544],[-0.643727,0.168340,-0.746483],[-0.955107,0.190252,-0.226997],[-0.648000,0.190130,-0.737510],[-0.961943,0.161596,-0.220252],[-0.651418,0.162908,-0.740989],[-0.967895,0.169805,-0.185278],[-0.638661,0.188757,-0.745933],[-0.955504,0.174780,-0.237526],[-0.629048,0.207556,-0.749107],[-0.954436,0.153050,-0.256081],[-0.628498,0.216407,-0.747063],[-0.953429,0.178655,-0.242958],[-0.632008,0.227119,-0.740898],[-0.956572,0.151616,-0.248878],[-0.648885,0.162999,-0.743187],[-0.955809,0.150884,-0.252205],[-0.671346,0.157384,-0.724204],[-0.936460,0.237617,-0.257973],[-0.714347,0.222114,-0.663564],[-0.934660,0.203192,-0.291665],[-0.627674,0.149388,-0.764000],[-0.910703,0.171514,-0.375683],[-0.561571,0.153691,-0.812983],[-0.889065,0.118137,-0.442244],[-0.474776,0.076357,-0.876766],[-0.707938,-0.641163,-0.296152],[-0.284249,-0.730461,-0.620930],[-0.122593,-0.975097,0.184698],[-0.792413,-0.609943,0.001099],[-0.696921,-0.527604,0.485672],[-0.307291,-0.512101,0.802026],[0.249458,-0.603809,0.757073],[-0.064669,0.178716,0.981750],[-0.732139,0.241157,0.637013],[-0.981017,0.189795,0.039277],[-0.950285,0.227790,0.212195],[-0.603107,0.259743,0.754173],[-0.044069,0.104373,0.993530],[0.591113,0.047121,0.805170],[0.523942,-0.648305,0.552385],[0.849055,0.028962,0.527451],[0.613178,-0.114231,0.781610],[0.916807,-0.156774,0.367168],[0.602222,-0.276162,0.749016],[0.919431,-0.240455,0.311075],[0.695120,-0.161687,0.700430],[0.934355,-0.214576,0.284402],[0.978851,-0.181402,-0.094363],[0.954833,-0.178533,-0.237434],[0.929136,-0.261605,0.261208],[0.936033,-0.189489,-0.296457],[0.629719,-0.075411,-0.773125],[0.541307,-0.035554,-0.840052],[0.102725,0.039094,-0.993927],[0.693106,-0.062136,-0.718101],[0.691366,0.064730,-0.719565],[0.083956,0.128849,-0.988098],[0.231361,0.035188,-0.972198],[0.794671,0.037111,-0.605884],[0.989654,0.107608,-0.094821],[0.994903,0.090091,0.044679],[0.639332,-0.671621,0.374310],[0.635762,-0.751976,-0.174047],[0.204474,-0.776025,-0.596606],[-0.102939,0.093936,-0.990234],[0.524125,0.015992,-0.851466],[0.936583,-0.128544,-0.325938],[0.927732,-0.114414,-0.355235],[0.533311,0.054872,-0.844111],[-0.041780,0.117283,-0.992187],[-0.014649,0.173650,-0.984680],[0.553941,0.041261,-0.831507],[0.935759,-0.065645,-0.346416],[0.944700,-0.113315,-0.307688],[0.569720,0.026276,-0.821406],[-0.009369,0.178320,-0.983917],[-0.004852,0.161962,-0.986755],[0.560533,0.011780,-0.828028],[0.942808,-0.142644,-0.301218],[0.931211,-0.174718,-0.319803],[0.537584,-0.039430,-0.842250],[-0.008667,0.124851,-0.992126],[-0.031739,0.072176,-0.996857],[0.522874,-0.064394,-0.849940],[0.906613,-0.208533,-0.366802],[0.863948,-0.227119,-0.449416],[0.490890,-0.108798,-0.864376],[-0.064119,0.093112,-0.993561],[-0.119694,0.060549,-0.990936],[0.457350,-0.200201,-0.866421],[0.866543,-0.211615,-0.451949],[0.565996,-0.696646,-0.440809],[0.212836,-0.518662,-0.828028],[-0.048311,-0.933744,-0.354625],[-0.045259,-0.991241,-0.123814],[-0.610065,-0.647084,-0.457228],[-0.723258,-0.690207,-0.020966],[-0.848262,-0.235450,-0.474288],[-0.885647,-0.451521,0.108280],[-0.845973,-0.247627,-0.472182],[-0.872189,-0.442061,0.209387],[-0.870632,-0.230262,-0.434706],[-0.928587,-0.308878,0.205542],[-0.895566,-0.169622,-0.411267],[-0.945250,-0.275399,0.174993],[-0.908505,-0.134251,-0.395672],[-0.938139,-0.258980,0.229713],[-0.910245,-0.105411,-0.400403],[-0.963408,-0.186163,0.192785],[-0.898679,-0.053468,-0.435255],[-0.952971,-0.247566,0.174688],[-0.889096,-0.100833,-0.446455],[-0.939848,-0.299692,0.163732],[-0.900357,-0.116977,-0.419050],[-0.959258,-0.228217,0.166478],[-0.901486,-0.179724,-0.393689],[-0.944609,-0.288461,0.156377],[-0.921018,-0.180914,-0.344890],[-0.952361,-0.252144,0.171392],[-0.952300,-0.187536,-0.240669],[-0.944426,-0.268105,0.190069],[-0.957976,-0.191595,0.213324],[-0.964568,0.050447,-0.258889],[-0.987030,0.039583,-0.155461],[-0.653859,-0.002045,-0.756584],[-0.562334,-0.767052,-0.308817],[-0.049806,-0.775567,-0.629261],[-0.025300,0.031098,-0.999176],[0.432142,-0.716605,-0.547441],[0.642476,0.100345,-0.759697],[0.772881,-0.619221,-0.138554],[0.956755,0.151067,-0.248543],[0.672842,0.207404,-0.710105],[0.082827,0.152348,-0.984832],[-0.555071,0.058443,-0.829737],[-0.589312,-0.013306,-0.807764],[-0.557787,-0.023072,-0.829615],[-0.461165,0.014100,-0.887173],[-0.443892,0.066500,-0.893582],[0.191839,0.160314,-0.968230],[0.130741,0.183081,-0.974334],[0.732231,0.212287,-0.647084],[0.711539,0.218879,-0.667653],[0.972228,0.177709,-0.152135],[0.972686,0.178198,-0.148686],[0.693442,0.282540,-0.662770],[0.102084,0.238533,-0.965728],[-0.454360,0.104709,-0.884610],[-0.475661,0.089938,-0.874996],[0.096652,0.243080,-0.965148],[0.690695,0.272225,-0.669942],[0.968535,0.204779,-0.141362],[0.971191,0.180120,-0.155950],[0.691580,0.263497,-0.672475],[0.092715,0.226905,-0.969481],[-0.491256,0.074007,-0.867824],[-0.480728,0.060945,-0.874722],[-0.455245,0.009033,-0.890286],[0.097629,0.190283,-0.976836],[0.120792,0.138707,-0.982910],[0.701163,0.244636,-0.669668],[0.713858,0.218665,-0.665212],[0.977783,0.192297,-0.083285],[0.975219,0.186346,-0.119114],[0.699789,0.254006,-0.667623],[0.139103,0.171178,-0.975341],[-0.445723,-0.021577,-0.894894],[-0.444075,-0.066500,-0.893490],[0.150914,0.132054,-0.979675],[0.678335,0.227424,-0.698630],[0.968230,0.216193,-0.125431],[0.963713,0.233100,-0.129826],[0.694296,0.200476,-0.691183],[0.173345,0.069735,-0.982360],[-0.430158,-0.160558,-0.888333],[-0.241218,-0.486831,-0.839503],[0.269448,-0.082705,-0.959441],[0.707999,0.319926,-0.629566],[0.963286,0.253029,-0.089541],[0.896664,0.436872,-0.071505],[0.729209,0.395520,-0.558367],[0.376385,0.073000,-0.923551],[-0.024628,-0.343760,-0.938719],[-0.033143,-0.687338,-0.725547],[-0.003296,-0.368816,-0.929472],[-0.021027,-0.272011,-0.962035],[0.083102,0.040590,-0.995697],[0.478683,0.127842,-0.868587],[0.847102,0.149815,-0.509812],[0.455336,0.176275,-0.872677],[0.101840,0.194800,-0.975524],[0.004151,0.058107,-0.998291],[-0.086184,0.020356,-0.996063],[-0.379528,0.021516,-0.924894],[-0.268136,-0.125401,-0.955168],[-0.165502,0.005646,-0.986175],[-0.472060,0.133305,-0.871395],[-0.080355,0.201392,-0.976196],[0.012909,0.200690,-0.979553],[0.012635,0.251534,-0.967742],[0.036348,0.199683,-0.979156],[0.006867,0.151769,-0.988372],[0.000244,0.162725,-0.986663],[0.361461,0.165777,-0.917508],[0.466292,0.168340,-0.868435],[0.847865,0.136143,-0.512375],[0.901395,0.089297,-0.423627],[0.994690,0.102695,0.002380],[0.995178,0.056459,0.079958],[0.854030,0.065218,0.516068],[0.792016,0.052187,0.608234],[0.485092,0.033998,0.873775],[0.421613,-0.072115,0.903897],[0.145146,-0.003021,0.989380],[0.120151,-0.092349,0.988433],[0.000702,0.015564,0.999878],[-0.049898,-0.003845,0.998718],[-0.187964,-0.012726,0.982086],[-0.025880,-0.074679,0.996857],[-0.115940,0.003906,0.993225],[-0.149052,0.045930,0.987732],[-0.214728,0.215400,0.952605],[-0.230628,0.364818,0.902036],[-0.318125,0.390545,0.863826],[-0.442427,0.363536,0.819788],[-0.332041,0.263985,0.905545],[-0.307566,0.113315,0.944731],[-0.448073,0.109928,0.887173],[-0.270241,0.034059,0.962157],[-0.004303,-0.041932,0.999084],[-0.137974,-0.023103,0.990143],[-0.464614,0.057009,0.883633],[-0.854396,0.144292,0.499161],[-0.862392,0.162145,0.479568],[-0.887387,0.197790,0.416395],[-0.897916,0.234046,0.372723],[-0.907895,0.228553,0.351390],[-0.924192,0.190588,0.330882],[-0.937803,0.141240,0.317118],[-0.942595,0.101230,0.318125],[-0.937376,0.107974,0.331095],[-0.901669,0.117771,0.416059],[-0.920621,0.143498,0.363018],[-0.962645,0.019623,0.269967],[-0.962279,0.046815,0.267953],[-0.961180,0.116764,0.249916],[-0.953642,0.094333,0.285684],[-0.941588,0.166753,0.292550],[-0.944914,0.211890,0.249367],[-0.605853,0.093936,0.789972],[-0.033174,-0.072268,0.996826],[0.166326,-0.046266,0.984954],[0.065554,-0.105441,0.992248],[-0.577197,0.010041,0.816523],[-0.612934,-0.003388,0.790094],[0.024476,-0.120853,0.992340],[0.629048,-0.237434,0.740196],[0.631214,-0.195929,0.750420],[0.942106,-0.200568,0.268624],[0.923826,-0.272408,0.268838],[0.935301,-0.219459,0.277474],[0.943480,-0.156438,0.292093],[0.915433,-0.224036,0.334300],[0.924161,-0.247749,0.290719],[0.918424,-0.262886,0.295541],[0.901914,-0.362407,0.234840],[0.937895,-0.327982,0.112949],[0.753197,-0.657430,-0.020600],[-0.035585,-0.951781,0.304666],[0.428571,-0.692984,0.579699],[-0.025513,-0.655446,0.754784],[-0.025086,-0.251778,0.967437],[-0.000061,-0.127384,0.991852],[-0.157781,-0.040468,0.986633],[-0.545518,0.055483,0.836238],[-0.598437,0.058779,0.798975],[-0.572466,0.098300,0.813990],[-0.560533,0.078463,0.824366],[-0.570544,0.036439,0.820429],[-0.591937,-0.017396,0.805780],[-0.586871,-0.029908,0.809107],[-0.577776,-0.029542,0.815638],[-0.537980,0.019379,0.842708],[-0.569079,-0.127079,0.812372],[-0.670003,-0.172430,0.722007],[-0.034944,-0.260781,0.964751],[0.627491,-0.312021,0.713340],[0.602039,-0.299631,0.740074],[0.630360,-0.171545,0.757073],[0.652455,-0.193854,0.732566],[0.611133,-0.214911,0.761742],[0.631672,-0.240974,0.736808],[0.652913,-0.220588,0.724570],[0.638447,-0.290536,0.712699],[0.621784,-0.365154,0.692801],[0.076449,-0.151433,0.985504],[0.090732,-0.121891,0.988372],[0.073458,-0.125523,0.989349],[0.086337,-0.150700,0.984771],[0.092105,-0.153722,0.983795],[0.065096,-0.151097,0.986358],[0.029633,-0.131382,0.990875],[0.016419,-0.270363,0.962584],[-0.476943,0.069796,0.876125],[-0.115238,-0.026368,0.992981],[-0.005005,-0.072176,0.997375],[0.111515,-0.050233,0.992462],[0.144932,-0.086428,0.985656],[-0.005737,-0.305582,0.952147],[-0.425214,-0.737114,0.525163],[-0.601215,-0.464614,0.650105],[-0.130070,-0.222022,0.966308],[-0.666372,-0.369457,0.647603],[-0.720695,-0.275369,0.636158],[-0.691153,-0.303262,0.655965],[-0.670461,-0.277566,0.688040],[-0.713614,-0.249001,0.654775],[-0.694235,-0.228126,0.682607],[-0.662282,-0.354503,0.660024],[-0.684957,-0.365368,0.630299],[-0.694052,-0.252022,0.674337],[-0.690237,-0.292764,0.661672],[-0.753685,-0.215278,0.620960],[-0.672811,-0.329234,0.662496],[-0.733390,-0.135228,0.666189],[-0.940001,0.009339,0.340983],[-0.685171,-0.692343,0.226112],[-0.611591,-0.668294,0.423444],[0.111148,-0.972594,0.204138],[-0.388806,-0.618397,0.682913],[0.141758,-0.512284,0.847011],[-0.147313,0.177557,0.972991],[-0.749229,0.051820,0.660237],[-0.166173,0.082644,0.982604],[-0.127354,-0.134739,0.982635],[-0.260598,-0.112918,0.958800],[-0.154637,-0.171545,0.972961],[-0.113468,-0.186468,0.975860],[-0.049379,-0.323618,0.944884],[-0.100162,-0.333598,0.937376],[-0.118290,-0.196905,0.973235],[-0.152837,-0.216681,0.964171],[-0.179449,-0.219428,0.958953],[-0.166204,-0.218726,0.961516],[-0.149266,-0.194525,0.969451],[-0.170446,-0.188177,0.967223],[0.504837,0.053072,0.861568],[0.542039,0.008332,0.840297],[0.518113,-0.006836,0.855251],[0.472213,0.013092,0.881375],[0.464125,0.010834,0.885678],[0.130802,-0.035249,0.990753],[0.861263,0.062471,0.504288],[0.864559,0.086520,0.494980],[0.874996,0.148869,0.460646],[0.988342,0.147771,-0.036103],[0.993713,0.110538,-0.016541],[0.849757,0.126255,-0.511795],[0.946196,0.316568,-0.066866],[0.856319,0.239998,0.457228],[0.867702,0.217139,0.447066],[0.886593,0.178106,0.426832],[0.487442,0.029603,0.872616],[0.493637,-0.011872,0.869564],[0.515641,-0.064150,0.854396],[0.510483,-0.076907,0.856410],[0.500809,-0.077059,0.862087],[0.457900,-0.030457,0.888455],[0.494125,-0.174291,0.851711],[0.603687,-0.212439,0.768364],[0.537736,-0.048921,0.841670],[0.499496,-0.037599,0.865474],[0.485153,0.042756,0.873348],[0.463027,0.229194,0.856166],[0.579089,0.243294,0.778100],[0.590075,-0.514054,0.622486],[0.790246,-0.588702,0.169958],[0.947539,0.206244,0.244148],[0.907407,0.218360,0.358989],[0.914640,0.208502,0.346294],[0.956023,0.231666,-0.179662],[0.951994,0.264412,-0.154057],[0.768395,0.273324,-0.578631],[0.696493,0.212317,-0.685385],[0.952879,0.204321,-0.224158],[0.015595,0.111118,-0.993683],[0.907743,0.157353,0.388836],[0.921628,0.085665,0.378430],[0.932035,0.110538,0.345042],[0.932646,0.039552,0.358531],[0.933317,0.012268,0.358806],[0.970183,0.200568,-0.136021],[0.880825,0.129276,0.455397],[0.857509,0.099857,0.504654],[0.901028,0.096103,0.422926],[0.907529,0.090304,0.410108],[0.901975,0.130619,0.411481],[-0.017182,0.204505,-0.978698],[-0.433088,0.214789,-0.875362],[-0.342967,0.200476,-0.917692],[0.014466,0.162084,-0.986663],[-0.449141,0.209845,-0.868435],[-0.497543,0.006867,-0.867397],[-0.733818,0.052034,-0.677328],[0.224342,-0.180578,-0.957610],[-0.022858,-0.251320,-0.967620],[-0.350627,-0.267525,-0.897458],[0.024781,0.405286,-0.913846],[0.064760,-0.090365,-0.993774],[-0.549394,-0.360546,-0.753746],[-0.834620,-0.149449,-0.530137],[-0.910062,0.048616,-0.411542],[-0.998169,-0.026002,0.054567],[-0.922269,0.082034,0.377697],[-0.763634,0.261574,0.590228],[-0.671102,0.474013,0.569964],[-0.514756,0.761681,0.393445],[-0.379070,0.923215,0.062807],[-0.299936,0.836390,-0.458754],[0.012848,0.476089,-0.879269],[0.017548,-0.172430,-0.984863],[-0.670827,-0.476424,-0.568316],[-0.889492,0.255348,-0.378857],[-0.930235,0.287820,-0.227515],[-0.955412,0.204718,0.212683],[-0.838832,0.215491,0.499893],[-0.635365,0.630970,0.445143],[-0.879727,0.133793,0.456191],[-0.884213,-0.239448,0.400983],[-0.726859,-0.476089,0.494919],[-0.867214,-0.127323,0.481338],[-0.878170,0.441755,0.183325],[-0.978759,0.172033,0.111423],[-0.784082,-0.226691,0.577715],[-0.983245,0.040498,0.177587],[-0.706107,-0.273598,0.653096],[-0.978942,-0.037019,0.200690],[-0.706595,-0.247780,0.662801],[-0.968413,-0.001068,0.249275],[-0.672292,-0.266640,0.690573],[-0.155217,-0.528794,0.834407],[-0.227332,-0.940123,0.253853],[-0.609088,-0.733665,0.301126],[-0.957915,0.039583,0.284249],[-0.954131,-0.063021,0.292581],[-0.791345,0.112156,0.600940],[-0.948943,0.234809,0.210517],[-0.912900,0.333445,-0.235267],[-0.890194,0.276406,-0.362133],[-0.906613,0.120914,-0.404248],[-0.957640,-0.057405,-0.282113],[-0.536119,-0.060854,-0.841914],[-0.584674,-0.387036,-0.712943],[0.026002,-0.178350,-0.983612],[0.073244,0.130161,-0.988769],[0.627766,0.009919,-0.778314],[0.672689,0.144566,-0.725639],[0.956938,-0.099673,-0.272530],[0.958190,-0.081759,-0.274117],[0.703665,0.171758,-0.689413],[0.112156,0.326090,-0.938658],[-0.515000,0.232917,-0.824915],[-0.512040,0.412000,-0.753655],[-0.525773,0.454512,-0.718955],[-0.929899,0.296731,-0.217231],[-0.933348,0.266823,-0.240059],[-0.910489,0.240913,-0.336070],[-0.889859,0.265542,-0.370952],[-0.841639,0.390576,-0.372875],[-0.675436,0.634175,-0.376202],[-0.514847,0.844844,0.145268],[-0.231330,0.540208,-0.809076],[0.226447,-0.028565,-0.973571],[-0.670003,-0.713248,-0.205756],[-0.815851,0.500290,0.289956],[-0.316721,0.943693,0.095492],[0.049898,0.998718,0.005524],[-0.975249,-0.015076,-0.220557],[-0.998321,0.044679,-0.036683],[0.455672,-0.387310,0.801447],[0.926603,0.016724,0.375652],[0.875973,-0.418744,0.239357],[0.421461,-0.541551,0.727348],[-0.292337,-0.492752,0.819575],[-0.205329,-0.465987,0.860591],[-0.142155,-0.448195,0.882534],[0.484481,-0.550218,0.680044],[0.101291,-0.919034,0.380840],[0.714408,-0.670766,0.199164],[0.752464,-0.365062,0.548173],[-0.001007,0.827021,0.562120],[-0.602557,0.656301,0.454024],[-0.940733,0.287454,0.179815],[-0.966552,-0.154180,-0.204810],[-0.614093,-0.546373,-0.569475],[-0.002136,-0.519852,-0.854244],[0.527085,-0.247108,-0.813044],[0.907620,-0.313639,-0.278970],[0.670644,-0.650868,0.355724],[0.911405,-0.346263,0.222236],[0.904874,-0.373974,0.203253],[0.946165,-0.131840,-0.295602],[0.707450,0.133122,-0.694082],[0.128697,0.400189,-0.907315],[0.122440,0.405194,-0.905972],[0.702445,0.181158,-0.688253],[0.945036,-0.143498,-0.293771],[0.842799,0.537034,-0.035279],[0.549486,0.821406,-0.152745],[0.146947,0.493545,-0.857173],[-0.530992,0.456557,-0.713828],[-0.435926,0.442763,-0.783502],[-0.392621,0.364605,-0.844325],[-0.426832,0.354747,-0.831813],[-0.106784,0.489303,-0.865535],[0.505814,-0.503128,0.700674],[0.332255,-0.843471,0.422010],[0.975005,0.116581,0.189123],[0.614185,0.631642,0.473006],[0.619373,0.543474,0.566546],[-0.014801,0.748924,0.662465],[-0.626606,0.605426,0.490677],[-0.946806,0.269509,0.175634],[-0.968322,-0.166509,-0.186010],[-0.621509,-0.595325,-0.509171],[0.010254,-0.730094,-0.683248],[0.014405,-0.790155,-0.612690],[0.624439,-0.608997,-0.488998],[0.624928,-0.652577,-0.428480],[0.929716,-0.326426,-0.170324],[0.940642,-0.319132,-0.115360],[0.963042,0.110660,0.245521],[0.968566,0.112033,0.222022],[0.638356,0.554491,0.533830],[-0.029817,0.758965,0.650441],[-0.644642,0.590625,0.485366],[-0.948241,0.252693,0.192236],[-0.972777,-0.165258,-0.162267],[-0.638966,-0.576830,-0.508866],[0.029237,-0.779168,-0.626087],[0.641011,-0.633808,-0.432813],[0.942564,-0.309000,-0.126621],[0.951323,-0.268410,-0.151311],[0.973327,0.144322,0.178259],[0.635395,0.584674,0.504349],[-0.053957,0.788659,0.612415],[-0.660939,0.600208,0.450423],[-0.951292,0.241829,0.191076],[-0.976440,-0.174413,-0.126926],[-0.641285,-0.608997,-0.466720],[0.056429,-0.798334,-0.599536],[0.661702,-0.611347,-0.434004],[0.593554,-0.453230,0.664968],[0.558702,-0.251045,0.790429],[0.437544,-0.098575,0.893765],[0.232978,0.023072,0.972198],[-0.014710,0.028718,0.999451],[-0.200629,-0.096683,0.974853],[-0.297708,-0.297403,0.907132],[-0.279305,-0.574847,0.769097],[0.039003,-0.813807,0.579760],[0.445357,-0.704123,0.552995],[-0.361614,-0.532579,0.765221],[-0.377850,-0.222297,0.898770],[-0.271035,-0.003601,0.962554],[-0.769524,-0.047304,0.636799],[-0.749229,-0.461501,0.475021],[-0.347942,-0.903958,0.248573],[0.003784,-0.781304,0.624104],[0.357219,-0.916898,0.177831],[0.185583,-0.286081,0.940031],[-0.620075,0.330515,0.711509],[-0.087619,0.224219,0.970580],[-0.189825,0.681082,0.707144],[0.336039,0.328410,0.882717],[0.509659,0.633686,0.581927],[0.638539,0.050111,0.767937],[0.880154,0.162358,0.445998],[0.897366,-0.246193,0.366161],[0.760369,-0.590747,0.269814],[0.417035,-0.652760,0.632405],[0.569170,-0.444075,0.691946],[0.647694,-0.240822,0.722800],[0.543046,-0.506363,-0.669820],[-0.503250,0.789880,0.350414],[-0.352611,0.691763,0.630146],[-0.324503,0.528153,0.784661],[0.483596,-0.476363,0.734275],[0.867672,-0.267342,0.419111],[0.812006,-0.403516,0.421613],[-0.336955,0.220649,0.915281],[-0.444929,-0.160405,0.881039],[-0.732688,-0.627552,0.263253],[-0.971221,-0.237373,-0.018097],[-0.517777,-0.826289,-0.221595],[-0.340220,-0.907254,-0.247200],[-0.181371,-0.962004,-0.203925],[-0.076571,-0.990356,0.115299],[0.102634,-0.621326,0.776757],[0.217750,-0.966002,0.139134],[0.297983,-0.902341,0.311411],[0.321970,-0.813044,0.485000],[0.450880,-0.770714,0.450179],[0.486618,-0.661885,0.570147],[0.530534,-0.530168,0.661367],[0.695151,-0.480697,0.534471],[0.672140,-0.733970,0.097354],[0.899258,-0.418378,0.127445],[0.920927,-0.337504,0.194769],[0.937803,-0.299081,-0.176092],[0.900540,-0.291421,-0.322520],[0.972655,-0.231758,0.014710],[0.899899,0.220344,-0.376293],[0.601184,-0.198096,-0.774132],[0.571154,0.386090,-0.724326],[0.150761,0.231605,-0.961028],[0.088839,-0.279122,-0.956114],[0.292917,-0.317209,-0.901975],[0.584948,-0.295602,-0.755242],[0.797754,-0.324870,-0.507920],[0.869350,-0.173376,-0.462722],[0.544176,-0.152257,-0.825007],[0.118748,-0.154973,-0.980743],[-0.777856,-0.096103,-0.621021],[-0.401654,-0.058901,-0.913877],[-0.062258,-0.283944,-0.956786],[-0.418500,-0.317240,-0.850978],[-0.349498,-0.399457,-0.847468],[-0.271157,-0.719657,-0.639149],[-0.660482,-0.489090,-0.569659],[-0.654714,-0.657277,-0.373180],[-0.560411,-0.755455,-0.339427],[-0.530076,-0.788324,-0.312235],[-0.443709,-0.880673,-0.165838],[-0.096377,-0.989837,0.104312],[0.251869,-0.891171,0.377270],[0.416517,-0.802637,0.426893],[0.383190,-0.549150,0.742668],[0.316538,-0.464766,0.826899],[0.065859,-0.324503,0.943571],[0.007050,-0.110508,0.993835],[-0.073977,-0.270882,0.959746],[-0.029786,-0.391552,0.919645],[0.014588,0.187384,0.982147],[-0.280404,-0.188238,0.941221],[-0.131565,0.772607,0.621082],[-0.365856,0.794763,0.484207],[0.007904,0.909879,0.414747],[-0.593707,0.247902,0.765526],[-0.195624,-0.952788,0.232185],[-0.165899,-0.896634,0.410443],[-0.233314,-0.696310,0.678732],[-0.141362,-0.740989,0.656453],[-0.111850,-0.919004,0.378002],[-0.030122,-0.360363,0.932310],[-0.027406,-0.055635,0.998047],[-0.232093,-0.411206,0.881466],[-0.460189,-0.675069,0.576556],[-0.608112,0.137455,0.781823],[-0.806330,-0.402600,0.433241],[-0.374645,-0.893521,0.247444],[-0.387066,0.915860,0.106418],[-0.614856,-0.690481,0.380932],[-0.616260,-0.733879,0.285684],[-0.962462,-0.041536,0.268166],[-0.903714,-0.347240,0.250343],[-0.356731,-0.915311,0.186865],[-0.822687,-0.430494,0.371258],[-0.791650,-0.415723,0.447676],[-0.918027,-0.258217,0.300882],[-0.937254,-0.309427,0.160466],[-0.967742,-0.095828,0.232887],[-0.887478,-0.446669,-0.113132],[-0.823542,-0.530992,-0.199500],[-0.780023,-0.510422,-0.361919],[-0.787255,-0.453078,-0.418195],[-0.627461,-0.687063,-0.366375],[-0.945311,-0.083621,-0.315256],[-0.922422,-0.142796,-0.358776],[-0.884823,-0.308390,-0.349223],[-0.933470,-0.307077,-0.185095],[-0.896695,-0.425733,-0.121067],[-0.930509,-0.359386,0.070223],[-0.906400,-0.325571,0.269051],[-0.919706,-0.203894,0.335459],[-0.916562,0.017518,0.399487],[-0.872646,0.120151,0.473312],[-0.902280,0.130192,0.410993],[-0.612018,0.087954,0.785913],[-0.245033,0.110691,0.963164],[-0.433180,-0.720817,0.541063],[-0.738304,-0.669881,0.078249],[-0.935514,-0.274056,0.222816],[-0.983215,0.103946,0.149754],[-0.820948,-0.528428,-0.216285],[-0.415967,-0.909360,-0.001129],[-0.517930,-0.854274,-0.044069],[-0.498276,-0.866329,-0.034242],[-0.192816,-0.954222,0.228584],[0.137791,-0.875912,0.462355],[0.090579,-0.682363,0.725364],[0.152287,-0.864376,0.479202],[0.154180,-0.776391,0.611072],[0.084872,-0.916898,0.389904],[0.398877,-0.546800,0.736106],[0.394452,-0.199133,0.897061],[-0.049226,-0.188482,0.980834],[-0.113987,-0.758202,0.641957],[-0.566668,-0.403760,0.718223],[-0.561907,0.393536,0.727561],[-0.942930,-0.175024,0.283212],[-0.609180,-0.750755,0.255379],[-0.298654,-0.881558,0.365581],[-0.644642,-0.764367,-0.012574],[-0.969481,-0.178594,-0.167821],[-0.926695,0.194555,-0.321421],[-0.858272,0.461989,-0.223334],[-0.944304,0.273629,-0.182623],[-0.844844,0.524796,0.103793],[-0.455489,0.660909,0.596393],[-0.850093,0.525956,-0.026093],[-0.902676,0.416883,0.106357],[-0.966247,0.250465,-0.060213],[-0.925504,0.288736,0.245003],[-0.933744,0.113559,0.339427],[-0.979858,-0.078616,0.183386],[-0.949522,-0.301950,0.084902],[-0.968383,-0.170782,-0.181646],[-0.983245,-0.050417,-0.174993],[-0.998047,0.033784,0.051973],[-0.986328,-0.133824,0.095859],[-0.883908,-0.044099,0.465499],[-0.806391,0.237159,0.541704],[-0.995575,0.083407,-0.043001],[-0.966643,0.198553,0.161748],[-0.525559,0.506943,0.683187],[-0.500259,0.569720,0.651997],[0.123569,0.401318,0.907529],[0.241310,0.509384,0.825983],[0.114078,0.510239,0.852412],[0.411206,0.253151,0.875668],[0.540056,0.172430,0.823756],[0.095157,0.087680,0.991577],[0.005646,-0.288217,0.957518],[-0.164739,0.006165,0.986297],[-0.177221,0.119236,0.976897],[-0.106052,-0.216132,0.970580],[-0.168554,-0.440321,0.881832],[-0.249886,-0.423963,0.870479],[-0.623096,0.235694,0.745750],[-0.545701,-0.125126,0.828578],[-0.088198,0.877865,0.470656],[0.116977,0.946379,0.301065],[-0.113590,0.433210,0.894101],[-0.047182,-0.338481,0.939787],[0.150792,-0.375622,0.914396],[0.326853,-0.444136,0.834193],[0.400067,-0.327158,0.856075],[0.142247,-0.318339,0.937223],[0.058290,-0.094272,0.993835],[-0.100528,0.100955,0.989776],[-0.007691,0.274819,0.961455],[0.297403,0.231361,0.926267],[0.433363,0.442427,0.785119],[0.081301,0.182684,0.979797],[-0.614673,0.030610,0.788171],[-0.861110,-0.192907,0.470351],[-0.929044,-0.368694,-0.030183],[-0.889523,-0.456801,0.007691],[-0.890866,-0.016266,0.453932],[-0.460524,0.740745,0.489029],[-0.782891,0.002380,0.622120],[-0.652303,0.569689,0.499893],[-0.664785,0.567156,0.486129],[-0.739280,0.124699,0.661733],[-0.663472,-0.568499,0.486404],[-0.948698,-0.024445,0.315165],[-0.875027,0.302072,0.378216],[-0.971648,-0.159612,0.174383],[-0.967162,-0.211066,-0.141392],[-0.940184,-0.038972,-0.338389],[-0.874050,0.075777,-0.479843],[-0.970061,0.173193,-0.170080],[-0.993347,-0.060976,-0.097568],[-0.534654,-0.619160,-0.575091],[-0.816980,-0.380657,-0.433119],[0.724296,-0.316538,-0.612507],[0.360424,-0.709983,-0.604938],[0.149480,-0.079012,-0.985595],[0.371502,0.928404,-0.006592],[-0.820673,0.403088,-0.404920],[-0.770531,0.566851,0.291452],[-0.696097,0.699973,-0.159429],[0.536149,0.804437,-0.255684],[-0.714316,0.421125,-0.558855],[0.680380,0.372631,-0.631031],[-0.098331,-0.269845,-0.957854],[0.624775,-0.144383,-0.767327],[-0.918271,0.272622,-0.287088],[-0.994934,0.080355,-0.060244],[-0.963469,-0.267434,0.012543],[-0.954161,-0.246284,-0.169897],[-0.985412,-0.140141,0.096225],[-0.956084,-0.234352,0.175939],[-0.898434,-0.261696,0.352489],[-0.726890,-0.208258,0.654378],[-0.617084,-0.585131,0.526109],[-0.667745,-0.111179,0.735984],[-0.818354,-0.158208,0.552477],[-0.915952,-0.250862,0.313120],[-0.881405,-0.359661,0.306131],[-0.716392,-0.594317,0.365398],[-0.689444,-0.640706,0.337779],[-0.928922,0.258065,0.265450],[-0.840022,-0.506363,0.194769],[-0.877132,-0.212958,0.430403],[-0.612720,-0.106815,0.783013],[-0.250862,-0.202094,0.946684],[0.247627,-0.386364,0.888455],[0.284677,0.064058,0.956450],[-0.325236,0.229865,0.917234],[-0.237831,-0.053835,0.969787],[0.143681,-0.150853,0.978027],[0.063509,-0.175176,0.982452],[-0.413343,-0.003143,0.910550],[-0.148839,0.291086,0.945036],[-0.315836,0.564592,0.762535],[-0.299509,0.561632,0.771264],[-0.075991,-0.037599,0.996368],[-0.321421,-0.573656,0.753380],[-0.460036,0.120487,0.879665],[-0.348613,0.739036,0.576403],[-0.027253,0.244484,0.969237],[-0.371502,-0.588794,0.717795],[-0.224433,-0.026307,0.974120],[-0.553850,-0.112888,0.824915],[-0.462172,-0.212256,0.860988],[-0.128819,-0.273324,0.953246],[-0.340220,-0.165410,0.925657],[-0.172369,-0.648457,0.741447],[-0.191717,-0.602191,0.774957],[0.005310,-0.519059,0.854701],[-0.268105,-0.164892,0.949156],[-0.354228,0.196539,0.914243],[-0.208625,-0.223029,0.952208],[-0.589740,0.270547,0.760888],[-0.797082,0.203253,0.568621],[-0.858638,-0.155980,0.488235],[-0.955657,0.072970,0.285257],[-0.895718,0.350719,0.273232],[-0.902951,0.362133,0.231330],[-0.759209,0.302408,0.576250],[-0.578997,0.324015,0.748161],[-0.569109,0.365917,0.736320],[-0.715415,0.391491,0.578661],[-0.685781,0.580554,0.438826],[-0.476699,0.620319,0.622822],[-0.380261,0.386425,0.840266],[-0.368938,0.296487,0.880856],[-0.041139,0.337748,0.940306],[0.001465,0.348430,0.937315],[-0.248299,0.573901,0.780358],[-0.061495,0.863247,0.500961],[-0.267434,0.893796,0.359996],[0.076571,0.993927,-0.078829],[-0.454695,0.869228,0.193976],[-0.237953,0.926054,-0.292856],[0.073519,0.737022,-0.671834],[-0.422834,0.593646,-0.684652],[0.398083,0.772210,-0.495132],[0.647572,0.728416,-0.223670],[0.359111,0.917020,0.173345],[0.313456,0.747459,0.585681],[0.190619,0.556688,0.808527],[0.506180,0.251106,0.825037],[0.301187,0.060793,0.951598],[-0.043458,0.059206,0.997284],[-0.089846,-0.371563,0.924039],[-0.086215,-0.263344,0.960814],[0.056825,-0.249611,0.966674],[0.143010,-0.157140,0.977142],[0.216407,-0.285195,0.933714],[0.555376,-0.061525,0.829279],[0.391491,-0.266549,0.880703],[0.367656,-0.231178,0.900754],[0.407178,-0.071383,0.910550],[0.192267,0.015809,0.981201],[0.407758,-0.191534,0.892758],[0.547410,-0.329936,0.769036],[0.587970,-0.473830,0.655538],[0.568896,-0.165258,0.805597],[0.678671,0.052339,0.732536],[0.599231,0.381634,0.703726],[0.539689,0.383160,0.749596],[0.637593,0.416028,0.648335],[0.756279,0.229865,0.612507],[0.816675,0.085482,0.570696],[0.952452,0.156346,0.261422],[0.777703,0.575579,0.252693],[0.525346,0.736534,0.426008],[0.872677,-0.134953,0.469253],[0.918241,-0.090640,-0.385479],[-0.066164,0.934996,-0.348369],[0.412427,-0.311869,-0.855922],[0.133091,0.810511,-0.570360],[0.336558,0.684378,0.646748],[0.723167,0.399518,0.563341],[0.453993,0.376019,-0.807733],[0.947844,-0.285684,-0.141240],[0.611042,-0.402264,0.681722],[0.334330,-0.080996,0.938932],[-0.085116,0.556475,0.826472],[0.403394,0.152470,0.902219],[0.533341,-0.105930,0.839229],[0.494522,-0.704062,0.509598],[0.485916,-0.711905,-0.506974],[0.675802,-0.637532,0.369854],[0.589923,-0.143895,-0.794488],[-0.481521,0.177953,-0.858150],[-0.254463,-0.213202,-0.943266],[-0.669210,-0.111667,-0.734611],[-0.749901,0.109134,-0.652455],[-0.773095,0.252937,-0.581622],[-0.775597,0.437391,-0.455092],[-0.850703,0.404187,-0.335978],[-0.819971,0.572008,0.019562],[-0.629994,0.761773,-0.150945],[-0.526688,0.752434,-0.395428],[0.199622,-0.473190,0.858028],[-0.793176,-0.582324,0.178014],[-0.523270,-0.538957,0.660024],[0.008759,-0.594378,0.804102],[-0.282571,-0.058901,0.957427],[-0.614673,0.029603,0.788202],[-0.861141,-0.050172,0.505814],[-0.860439,-0.103244,0.498947],[-0.535752,-0.505020,0.676656],[-0.277047,-0.112033,0.954283],[-0.180425,-0.592669,0.784967],[-0.493118,-0.610218,0.620014],[-0.612110,-0.117161,0.782006],[-0.848384,-0.179693,0.497879],[-0.728660,-0.584429,0.356975],[-0.892087,-0.378613,0.246529],[-0.952666,0.202002,0.227088],[-0.555925,0.779015,0.289834],[-0.302622,0.952727,-0.026460],[-0.418653,0.882839,0.212806],[-0.673513,-0.123325,0.728782],[-0.567583,0.234870,0.789087],[-0.831507,0.444075,0.333689],[0.239662,0.648030,0.722892],[-0.383404,0.635151,0.670461],[-0.427900,-0.305002,0.850765],[0.013428,0.973540,0.228004],[0.788995,0.614277,-0.010224],[0.079897,0.952757,0.292917],[0.746940,0.655812,-0.109287],[0.866970,-0.419752,-0.268532],[0.884457,0.188757,-0.426679],[0.719047,0.694632,0.020966],[0.878903,0.236885,-0.413984],[0.493698,0.869472,0.015412],[0.492965,0.808954,-0.320200],[-0.128584,0.989907,0.059587],[-0.128584,0.989907,0.059588],[-0.128583,0.989907,0.059587],[0.450026,0.455580,-0.768029],[0.789483,0.139103,-0.597766],[0.928068,-0.201880,-0.312876],[0.493545,-0.796319,-0.349620],[0.030881,-0.999448,-0.012282],[0.030886,-0.999448,-0.012269],[0.030885,-0.999448,-0.012268],[0.030886,-0.999448,-0.012268],[-0.638966,-0.730857,0.239784],[-0.510788,-0.819910,0.258461],[-0.798730,0.431379,0.419385],[-0.660573,0.568163,0.490707],[0.322764,-0.717154,0.617634],[0.786065,0.336436,0.518509],[0.923460,-0.328623,0.197943],[0.469283,-0.879543,-0.078341],[0.125187,0.911130,0.392560],[0.042817,0.898618,0.436567],[-0.128574,0.989898,0.059572],[-0.656240,0.651295,0.380963],[-0.675741,0.728294,0.113620],[-0.128583,0.989907,0.059588],[-0.203314,0.841700,-0.500137],[-0.685202,0.490463,-0.538408],[-0.287942,0.138035,-0.947630],[0.356487,0.134404,-0.924558],[0.748589,0.087008,-0.657277],[0.583605,-0.686117,-0.434278],[0.409864,-0.563066,-0.717582],[0.030893,-0.999447,-0.012273],[0.030894,-0.999447,-0.012273],[0.315050,-0.001913,0.949073],[0.315049,-0.001912,0.949073],[-0.087940,-0.927720,-0.362769],[-0.049104,-0.967009,-0.249886],[-0.685598,-0.718070,0.119449],[-0.887478,-0.248695,0.387951],[0.030885,-0.999420,-0.012268],[0.030889,-0.999448,-0.012260],[-0.958586,0.103488,0.265236],[-0.696646,0.522782,0.491256],[-0.917692,0.103885,0.383404],[-0.968596,0.140110,0.205237],[-0.974425,0.046144,0.219886],[-0.926542,0.080508,-0.367412],[-0.740776,-0.522355,-0.422346],[-0.651326,-0.735130,0.187841],[-0.363384,0.068728,-0.929075],[-0.153264,-0.559343,-0.814631],[0.209601,0.079501,-0.974517],[-0.866207,0.173376,-0.468612],[-0.918590,-0.033212,0.393813],[0.315050,-0.001912,0.949073],[0.839814,0.032596,-0.541895],[-0.407239,0.644276,0.647298],[-0.363262,-0.813074,0.454848],[0.241554,-0.289254,0.926237],[-0.888150,0.316752,0.332865],[-0.935484,-0.353282,-0.002899],[-0.001317,-0.999964,-0.008362],[-0.418043,-0.892575,-0.168859],[-0.783898,0.592059,-0.186834],[-0.087924,0.973785,0.209662],[-0.166295,0.951445,0.258889],[-0.722526,0.634327,-0.274850],[-0.233772,0.906674,0.351054],[-0.723441,0.677450,-0.132817],[-0.148564,0.898648,0.412702],[-0.496597,0.862972,-0.092837],[0.104038,0.993652,0.042390],[0.104058,0.993667,0.042409],[0.104058,0.993667,0.042408],[-0.311167,0.422437,-0.851283],[0.274392,0.835170,-0.476577],[-0.160436,0.112583,-0.980590],[0.474075,0.147557,-0.868007],[0.736869,0.535447,-0.412610],[0.610675,0.767174,0.196081],[0.563494,0.669881,0.483413],[0.564409,0.534562,0.628986],[0.677511,0.455245,0.577654],[0.523667,0.588458,0.615986],[0.212531,0.648488,0.730918],[0.464064,-0.804254,0.371166],[0.590869,-0.711753,0.379742],[0.662069,-0.698233,0.272195],[0.875484,0.131260,0.465072],[0.788720,-0.222205,0.573138],[0.811396,0.120548,0.571886],[0.902219,0.074190,0.424787],[0.899930,0.179724,0.397259],[0.932310,0.223945,-0.283883],[0.553850,0.074709,-0.829249],[0.981658,0.104617,-0.159307],[0.827998,-0.503403,-0.246864],[0.340434,-0.558428,-0.756432],[-0.001321,-0.999964,-0.008369],[-0.001322,-0.999964,-0.008369],[0.614307,-0.715903,0.331736],[0.812194,-0.005942,0.583357],[-0.512729,-0.006499,0.858526],[-0.512729,-0.006500,0.858526],[-0.703258,0.006864,-0.710901],[-0.590686,0.063295,-0.804376],[-0.457656,-0.704001,-0.543046],[-0.832789,-0.228980,-0.503983],[-0.230049,-0.577380,-0.783349],[0.004120,0.069369,-0.997559],[-0.653127,0.101535,-0.750389],[-0.778314,0.220588,-0.587817],[-0.775842,0.162236,-0.609668],[-0.385205,-0.811274,-0.439802],[0.127293,-0.966369,-0.223426],[-0.001312,-0.999939,-0.008362],[-0.001319,-0.999964,-0.008360],[-0.001318,-0.999964,-0.008362],[-0.777062,-0.444868,-0.445204],[-0.001309,-0.999964,-0.008376],[-0.434828,0.791742,-0.428938],[0.188596,-0.926500,-0.325620],[0.188596,-0.926501,-0.325620],[0.711661,0.346385,-0.611164],[0.754997,0.405133,-0.515549],[0.903073,0.285562,-0.320750],[0.662618,0.344005,-0.665242],[0.571368,0.402814,-0.714988],[0.480850,0.329539,-0.812494],[0.552690,0.297555,-0.778436],[0.675283,0.356395,-0.645711],[0.849513,0.314066,-0.423841],[0.938902,0.319712,-0.127262],[0.966399,0.199744,-0.161748],[0.928922,0.199927,-0.311563],[0.918546,0.329722,-0.218024],[0.977752,0.193121,-0.081668],[0.928861,0.294443,0.224677],[0.906339,0.158177,0.391766],[0.823603,0.256630,0.505722],[0.690481,0.012879,0.723197],[0.599658,-0.059969,0.797967],[0.376507,-0.155187,0.913297],[0.330058,-0.101230,0.938505],[0.512680,-0.043214,0.857479],[0.258370,0.038850,0.965239],[0.249367,0.054506,0.966857],[0.194067,0.203467,0.959624],[0.174322,0.218574,0.960112],[0.149388,0.287637,0.945982],[0.878170,0.096255,0.468490],[0.978027,0.204596,-0.039705],[0.858577,0.487197,-0.159429],[0.754692,0.647938,-0.102847],[0.648335,0.759056,-0.058718],[0.650716,0.755913,-0.071505],[0.678640,0.727805,-0.098483],[0.899319,0.433973,0.053407],[0.770501,0.588641,-0.244514],[0.517289,0.711692,-0.475265],[0.415662,0.610675,-0.673971],[0.392651,0.659200,-0.641255],[0.747551,0.175024,0.640675],[0.779687,0.226600,0.583667],[0.747398,0.398785,0.531297],[0.769066,0.409589,0.490616],[0.657888,0.576647,0.484359],[0.933866,0.349162,0.077059],[0.861263,0.484298,-0.153844],[0.832759,0.398572,-0.384198],[0.398053,0.500595,-0.768700],[0.348918,0.498978,-0.793237],[0.318705,0.681967,-0.658254],[-0.545396,0.593646,-0.591693],[-0.996877,0.022597,-0.075660],[-0.848018,0.323313,-0.419843],[-0.996781,0.022682,-0.076893],[-0.562487,0.661153,-0.496445],[0.648213,0.680441,-0.341716],[0.730705,0.656240,-0.188086],[0.711447,0.681936,-0.169591],[0.881497,0.471236,0.029511],[0.513077,0.318461,-0.797052],[0.566881,0.377361,-0.732261],[0.423536,0.306314,-0.852473],[-0.024079,0.606311,-0.794824],[-0.333323,0.577380,-0.745323],[-0.441450,0.839869,-0.315714],[0.249397,0.449934,-0.857509],[0.668294,0.107334,-0.736076],[0.322123,0.536729,-0.779809],[-0.206946,0.773461,-0.599048],[0.341288,0.564837,-0.751274],[0.010895,0.330058,-0.943876],[0.079073,0.355602,-0.931272],[0.324686,0.329661,-0.886502],[0.330393,0.378643,-0.864528],[0.241798,0.308725,-0.919889],[0.165014,0.273049,-0.947722],[0.052248,0.182195,-0.981842],[-0.111698,0.362041,-0.925413],[0.204016,0.391736,-0.897153],[-0.121647,0.635029,-0.762810],[-0.112522,0.650410,-0.751183],[-0.397656,0.720634,-0.567888],[-0.308084,0.477218,-0.822993],[-0.275063,0.142613,-0.950774],[0.052644,0.278848,-0.958861],[-0.004913,0.341319,-0.939909],[-0.260598,0.234230,-0.936583],[-0.526872,0.178014,-0.831050],[-0.232795,0.531907,-0.814142],[-0.280313,0.776727,-0.563982],[-0.315867,0.810694,-0.492904],[-0.311960,0.820002,-0.479812],[-0.624775,0.195410,-0.755943],[-0.460829,0.314646,-0.829798],[-0.680258,0.267006,-0.682577],[-0.847896,0.089297,-0.522538],[-0.876705,0.019593,-0.480575],[-0.833766,0.023438,-0.551592],[-0.811884,0.450880,-0.370830],[-0.629902,0.594043,-0.500290],[-0.620777,0.687735,-0.376293],[-0.622272,0.739097,-0.257729],[-0.652669,0.648213,-0.392132],[-0.678732,0.720115,-0.143834],[-0.981353,0.190832,0.022523],[-0.920835,-0.038209,-0.388043],[-0.974700,-0.092898,-0.203162],[0.822108,0.067415,-0.565294],[0.878475,0.212806,-0.427747],[0.967071,0.035218,-0.251961],[0.692801,0.144597,-0.706473],[0.592120,0.290414,-0.751671],[0.445051,0.089877,-0.890957],[0.525132,0.284463,-0.802026],[0.819117,0.127293,-0.559282],[0.949309,-0.226112,-0.218238],[0.963988,0.139225,-0.226417],[0.972808,0.152379,-0.174230],[0.983032,0.056490,-0.174322],[0.995575,0.081454,-0.046419],[0.998474,0.054201,0.009522],[0.934660,0.156316,0.319254],[0.935362,0.006897,0.353557],[0.677267,-0.034791,0.734886],[0.729820,-0.021912,0.683279],[0.555071,-0.162999,0.815638],[0.378887,-0.114628,0.918302],[0.532853,-0.045747,0.844935],[0.195868,-0.163274,0.966918],[0.062014,-0.216224,0.974364],[0.182348,0.001556,0.983215],[0.241646,0.238533,0.940580],[0.091403,0.510849,0.854762],[0.896237,0.049318,0.440809],[0.821741,0.198126,0.534288],[0.842586,0.305979,0.443098],[0.735893,0.562487,0.376873],[0.760216,0.566668,0.317637],[0.665181,0.697592,0.266182],[0.951323,0.306192,0.034089],[0.794366,0.562181,-0.230018],[0.788965,0.518784,-0.329173],[0.858119,0.364208,-0.361827],[0.847194,0.381329,-0.369915],[0.833583,0.412976,-0.366802],[0.871700,0.462325,0.162420],[0.888852,0.447279,0.099033],[0.834895,0.548479,0.045534],[0.835932,0.548784,-0.004364],[0.713858,0.700278,0.001801],[0.872585,0.410382,-0.264840],[0.796411,0.377789,-0.472213],[0.913877,0.022858,-0.405286],[0.707907,0.113132,-0.697134],[0.880123,0.178594,-0.439833],[0.937223,0.279397,-0.208563],[0.894009,0.063723,-0.443464],[0.752403,0.329508,-0.570330],[0.500717,0.427869,-0.752434],[0.457472,0.185766,-0.869594],[0.761773,0.121464,-0.636311],[0.962218,0.091464,-0.256355],[0.767205,-0.004273,-0.641377],[0.323069,0.380871,-0.866329],[0.129063,0.640126,-0.757317],[0.218207,0.484909,-0.846858],[0.130497,0.334452,-0.933317],[0.098666,0.334605,-0.937162],[0.097598,0.400708,-0.910977],[0.091983,0.423566,-0.901151],[0.259468,0.247322,-0.933531],[0.046937,0.271950,-0.961150],[0.047243,0.288644,-0.956236],[-0.191229,0.307352,-0.932157],[0.047182,0.260933,-0.964171],[0.037233,0.384289,-0.922422],[0.304544,0.051393,-0.951079],[0.320322,0.231971,-0.918455],[0.265816,0.089328,-0.959868],[0.245643,0.058473,-0.967589],[0.045808,0.148381,-0.987854],[-0.066103,0.098605,-0.992920],[-0.193091,0.204840,-0.959532],[-0.400189,0.050630,-0.915006],[-0.495712,0.427107,-0.756188],[-0.197058,0.347697,-0.916654],[0.099002,0.224708,-0.969359],[-0.155339,0.235878,-0.959258],[-0.152409,0.281625,-0.947325],[-0.382214,0.237312,-0.893063],[-0.297189,0.606067,-0.737785],[-0.346782,0.301126,-0.888272],[-0.195959,0.629383,-0.751946],[-0.274575,0.604511,-0.747765],[-0.301675,0.635334,-0.710837],[-0.298379,0.643788,-0.704611],[-0.434156,0.093112,-0.895993],[-0.578539,0.071017,-0.812525],[-0.676992,0.167516,-0.716636],[-0.762658,0.052614,-0.644612],[-0.666707,0.286386,-0.688070],[-0.856777,0.368358,-0.360820],[-0.387738,0.448286,-0.805383],[-0.850642,0.149266,-0.504044],[-0.279244,0.326334,-0.903043],[-0.935514,-0.047151,-0.350078],[-0.839167,-0.284341,0.463576],[-0.879086,0.463088,0.112705],[-0.728019,0.054018,-0.683401],[-0.834773,-0.041597,-0.548967],[-0.817316,-0.054964,-0.573534],[0.857936,-0.455885,-0.236763],[0.904752,-0.315531,0.286019],[0.728904,-0.560625,0.392865],[-0.999786,-0.017640,-0.008881],[-0.974517,0.219916,0.043519],[-0.941374,0.329875,0.070376],[-0.826044,0.561785,0.044862],[-0.136845,0.214331,-0.967101],[-0.198553,0.023011,-0.979797],[-0.449263,0.050325,-0.891964],[0.216742,0.066500,-0.973937],[0.240059,0.232948,-0.942381],[0.438063,0.084017,-0.894986],[0.495163,0.290231,-0.818873],[0.739952,0.104892,-0.664418],[0.608814,0.104495,-0.786370],[0.848506,0.057680,-0.526017],[0.854793,0.224555,-0.467849],[0.740410,0.305765,-0.598559],[0.975249,0.197607,-0.098941],[0.981445,-0.035310,-0.188421],[0.983215,0.034730,0.178961],[0.925199,0.058565,0.374859],[0.800470,-0.044984,0.597644],[0.689901,-0.184057,0.700064],[0.347880,-0.376659,0.858516],[0.399640,-0.260720,0.878780],[0.922697,-0.061800,0.380474],[0.730644,0.098544,0.675588],[0.306131,-0.324717,0.894864],[0.652211,0.040132,0.756951],[0.799127,0.434553,0.415326],[0.987060,0.159124,-0.018464],[0.986023,0.114994,0.120304],[0.951537,0.207678,-0.226661],[0.821955,0.153294,-0.548479],[0.719230,0.245216,-0.650044],[0.659627,0.500290,-0.560839],[0.744316,0.457686,-0.486251],[0.857418,0.513291,-0.036653],[0.871853,0.472793,0.127628],[0.826350,0.562395,0.028382],[0.663686,0.743492,0.081912],[0.741172,0.648579,0.173162],[0.650960,0.753441,-0.092441],[0.618793,0.720206,-0.313669],[0.494003,0.869167,-0.021119],[0.682791,0.590442,-0.430311],[0.681478,0.645924,-0.343974],[0.606281,0.695608,-0.385327],[0.441664,0.543016,-0.714133],[0.370220,0.192267,-0.908811],[0.311197,0.632954,-0.708853],[0.280923,0.731651,-0.621052],[0.262825,0.702475,-0.661367],[0.276070,0.668142,-0.690878],[0.123264,0.511734,-0.850246],[0.000275,0.691427,-0.722404],[-0.063753,0.652089,-0.755425],[-0.108860,0.771874,-0.626331],[0.008972,0.596393,-0.802606],[-0.041932,0.760247,-0.648244],[0.023896,0.464736,-0.885098],[0.192694,0.239051,-0.951659],[0.100467,0.139653,-0.985076],[-0.003815,0.158147,-0.987396],[0.042451,0.653401,-0.755791],[-0.056398,0.725700,-0.685659],[-0.258858,0.760796,-0.595080],[-0.235664,0.874660,-0.423566],[-0.530106,0.662404,-0.529283],[-0.438948,0.578021,-0.687857],[-0.130100,-0.267434,-0.954741],[-0.482498,0.170263,-0.859157],[-0.456832,0.573412,-0.680044],[-0.415235,0.751579,-0.512497],[-0.762719,0.007538,-0.646657],[-0.970550,0.081942,-0.226447],[-0.863186,0.384930,-0.326609],[-0.996765,0.037019,-0.070956],[-0.941038,-0.279153,0.191015],[-0.993378,-0.081332,0.080813],[-0.799341,0.325938,-0.504715],[-0.185736,0.509537,-0.840144],[-0.586749,0.081362,-0.805628],[-0.179052,0.827052,0.532792],[0.595996,0.766991,-0.237678],[0.578997,0.755760,-0.305856],[0.724570,0.582202,-0.368755],[0.568316,0.635517,-0.522568],[0.480544,0.851558,-0.209449],[0.734977,0.417554,-0.534227],[0.851619,0.373516,-0.367718],[0.949339,0.307871,-0.062716],[0.790155,0.611713,-0.037355],[0.555406,0.831050,0.029054],[0.032105,0.997131,0.068239],[-0.021851,0.999451,0.024232],[0.340312,0.863308,-0.372631],[0.442640,0.668325,-0.597797],[0.494736,0.445143,-0.746361],[0.722739,0.403851,-0.560778],[0.731681,0.305307,-0.609424],[0.891964,0.324656,-0.314585],[0.978576,0.195776,-0.063326],[0.942717,0.280526,0.180425],[0.803339,0.545457,0.238899],[0.494736,0.851741,0.172430],[0.093387,0.984283,0.149785],[0.102329,0.987426,0.120334],[0.032716,0.965697,0.257515],[0.197424,0.979919,-0.027314],[0.295236,0.845943,-0.444014],[0.384838,0.659780,-0.645375],[0.476821,0.392529,-0.786462],[0.486953,0.232185,-0.841975],[0.675558,0.308878,-0.669454],[0.932096,0.305673,-0.194250],[0.670003,0.506455,-0.542711],[0.259896,0.455061,-0.851650],[0.621265,0.617664,-0.482131],[0.577441,0.262886,-0.772912],[0.628101,0.356975,-0.691366],[0.657033,0.454848,-0.601123],[0.583239,0.605853,-0.541032],[0.157140,0.294565,-0.942595],[0.488815,0.411908,-0.768975],[0.041383,0.397015,-0.916868],[0.044404,0.487381,-0.872036],[-0.365490,0.256508,-0.894742],[-0.122135,0.263558,-0.956847],[-0.063662,0.424268,-0.903287],[0.024689,0.681967,-0.730949],[0.111454,0.874966,-0.471114],[-0.113010,0.697684,-0.707389],[-0.191473,0.463515,-0.865139],[-0.208441,0.396466,-0.894040],[-0.296121,0.211585,-0.931394],[0.212043,0.419843,-0.882443],[-0.269356,0.366771,-0.890439],[-0.282785,0.528123,-0.800653],[-0.659413,0.107364,-0.744041],[-0.452986,0.141148,-0.880245],[-0.527635,0.348704,-0.774590],[-0.282723,0.648793,-0.706473],[-0.103854,0.862606,-0.495071],[-0.366558,0.629994,-0.684622],[-0.369945,0.352733,-0.859462],[-0.333110,0.258461,-0.906735],[-0.432356,0.214301,-0.875851],[-0.479904,0.280923,-0.831111],[-0.469680,0.429212,-0.771447],[-0.676077,0.169530,-0.717032],[-0.582995,0.321818,-0.745994],[-0.350993,0.499283,-0.792138],[-0.663015,0.397565,-0.634266],[-0.869655,0.038026,-0.492141],[-0.954192,0.015900,-0.298746],[-0.825037,0.295328,-0.481704],[-0.840144,0.301614,-0.450697],[-0.739464,0.556413,-0.378887],[-0.733573,0.542894,-0.408765],[-0.870510,0.398083,-0.289346],[-0.777398,0.439406,-0.450026],[-0.858730,0.449416,-0.246101],[-0.783898,0.590289,-0.192450],[-0.818079,0.315317,-0.480911],[-0.904508,0.419324,0.077364],[-0.903256,0.427503,0.036256],[-0.879788,0.471816,0.057619],[-0.692587,0.542863,-0.474929],[-0.783898,0.250710,-0.567949],[-0.813837,0.107303,-0.571062],[-0.937773,0.114963,-0.327616],[-0.945555,0.017609,-0.324900],[-0.964232,0.044649,-0.261208],[-0.928922,-0.070284,-0.363475],[-0.979034,0.136387,-0.151189],[-0.979583,0.121799,-0.159795],[-0.942808,0.320597,0.091128],[-0.981414,0.189032,-0.032319],[-0.942595,0.101047,-0.318186],[-0.833216,0.272378,-0.481124],[-0.922269,0.183325,-0.340251],[-0.927396,-0.007599,-0.373913],[-0.976318,0.090701,-0.196356],[-0.978545,0.180548,-0.098941],[-0.982482,0.161748,-0.092410],[-0.766137,0.541276,-0.346385],[-0.873531,0.187262,-0.449263],[-0.795709,0.021912,-0.605243],[-0.971587,0.166845,-0.167791],[-0.970489,0.154393,-0.185064],[-0.970641,0.131230,-0.201514],[-0.972594,0.120304,-0.198859],[-0.933958,0.203925,-0.293405],[-0.943876,0.028382,-0.328990],[-0.846492,-0.176000,-0.502396],[-0.987365,0.061068,-0.146153],[-0.960784,0.272561,-0.050569],[-0.960784,0.268258,-0.070162],[-0.996307,0.080447,-0.029267],[-0.995575,-0.042787,-0.083407],[-0.963439,0.105075,0.246376],[-0.935026,0.242683,0.258400],[-0.846583,0.501389,0.178411],[-0.855403,0.515885,0.046022],[-0.632649,0.730369,0.257424],[-0.620624,0.708426,0.336009],[-0.826563,0.469497,0.310404],[-0.942717,0.333384,0.008667],[-0.958586,0.284646,0.005524],[-0.985961,0.161168,-0.042879],[-0.629749,0.624653,0.461684],[-0.802820,0.409070,0.433699],[-0.844844,0.234901,0.480636],[-0.856807,0.066897,0.511246],[-0.844508,-0.061525,0.531938],[-0.801141,-0.129643,0.584246],[-0.795587,-0.082858,0.600116],[-0.755028,0.631031,0.178014],[-0.889950,0.410718,0.198065],[-0.933348,0.277749,0.227363],[-0.942351,0.296304,0.155370],[-0.962951,0.236793,0.128971],[-0.560259,0.670583,0.486190],[-0.617542,0.258095,0.742973],[-0.950407,0.268777,0.156285],[-0.608295,-0.010620,0.793603],[-0.753502,-0.113254,0.647603],[-0.286935,-0.168523,0.942991],[-0.541093,0.229499,0.809015],[-0.140416,0.445784,0.884030],[0.057772,0.796869,0.601337],[-0.321024,0.847530,0.422590],[0.031037,0.968596,0.246620],[0.178899,0.961272,0.209510],[0.030824,0.979827,0.197394],[0.047975,0.908567,0.414930],[0.149480,0.853511,0.499130],[-0.006928,0.966277,0.257332],[0.126865,0.922544,0.364360],[0.016968,0.930692,0.365368],[0.156438,0.925840,0.344005],[0.088687,0.947996,0.305643],[0.303720,0.931150,0.201605],[0.216620,0.967009,0.133854],[0.362041,0.911191,0.196478],[0.472182,0.856471,0.208472],[0.166875,0.979858,-0.109592],[0.027497,0.991943,-0.123600],[-0.217414,0.899777,-0.378246],[-0.342753,0.696585,-0.630268],[-0.422895,0.837153,-0.346873],[-0.490524,0.831690,-0.260018],[-0.550401,0.824824,-0.129246],[-0.700369,0.557421,-0.445784],[-0.525681,0.832728,-0.173650],[-0.718772,0.604572,-0.343272],[-0.867794,0.486618,-0.100497],[-0.856777,0.511948,0.061586],[-0.578173,0.813990,0.055696],[-0.538865,0.836879,-0.095798],[-0.265114,0.962798,0.051698],[-0.384228,0.923063,0.016724],[-0.302927,0.950591,0.067751],[-0.192480,0.977050,-0.090915],[-0.235633,0.866787,0.439467],[-0.292032,0.934080,0.205298],[-0.323618,0.921201,0.215857],[0.013825,0.991913,0.126041],[0.443190,0.754112,0.484603],[0.597247,0.741508,0.305643],[0.813715,0.446944,0.371563],[0.658284,0.447005,0.605640],[0.592059,0.405866,0.696219],[0.623554,0.463576,0.629475],[0.344737,0.770135,0.536668],[0.033052,0.968139,0.248115],[-0.045015,0.972808,0.227058],[-0.022645,0.991882,0.125095],[-0.118442,0.928678,0.351421],[-0.140721,0.952910,0.268532],[-0.225471,0.967711,0.112613],[-0.335582,0.941984,0.004028],[-0.289438,0.932585,0.215522],[-0.267190,0.899503,0.345622],[-0.180486,0.811548,0.555681],[-0.184271,0.784112,0.592608],[-0.105472,0.699210,0.707083],[-0.283273,0.941954,0.180029],[-0.094150,0.910276,0.403119],[-0.001679,0.840632,0.541551],[0.103671,0.686850,0.719321],[0.101840,0.658040,0.746025],[0.179571,0.563585,0.806269],[0.018921,0.766320,0.642140],[-0.000671,0.808802,0.588031],[-0.339610,0.799341,0.495682],[-0.722617,0.569689,0.391461],[-0.861232,0.419843,0.286264],[-0.943419,0.318827,0.091037],[-0.921781,0.292245,0.254677],[-0.953887,0.294107,-0.059816],[-0.328623,0.297250,0.896451],[-0.283639,-0.029420,0.958464],[-0.474563,-0.209021,0.855007],[-0.011017,-0.011719,0.999847],[0.149449,0.168981,0.974212],[0.322092,0.334300,0.885678],[-0.409955,0.628590,0.660878],[-0.102420,0.480605,0.870907],[-0.102695,0.263009,0.959288],[-0.145878,0.100986,0.984100],[-0.166540,-0.017335,0.985870],[0.182989,0.518845,0.835017],[-0.005982,0.836360,0.548143],[0.389172,0.736930,0.552660],[0.027375,0.746422,0.664876],[0.264901,0.810785,0.521928],[0.359874,0.838374,0.409375],[0.707907,0.478408,0.519578],[0.534135,0.462539,0.707602],[0.229072,0.526017,0.819025],[0.453536,0.378674,0.806757],[0.251595,0.211798,0.944334],[-0.207343,0.028993,0.977813],[0.403211,-0.080142,0.911557],[0.281228,-0.309091,0.908475],[0.772485,-0.203009,0.601672],[0.541307,0.114536,0.832972],[0.359386,0.219916,0.906888],[0.313120,0.139927,0.939329],[0.290994,0.136143,0.946959],[0.302042,0.163060,0.939238],[0.677175,0.174047,0.714927],[0.836604,0.045839,0.545854],[0.762810,-0.112644,0.636708],[0.632099,-0.241432,0.736290],[0.663717,-0.002411,0.747948],[0.516434,0.247963,0.819605],[0.707907,0.306223,0.636433],[0.399884,0.190435,0.896542],[0.260567,0.202857,0.943876],[0.269265,0.286233,0.919523],[0.269967,0.296976,0.915891],[0.274117,0.328929,0.903684],[0.634388,0.344188,0.692099],[0.665731,0.372051,0.646779],[0.533128,0.431257,0.727805],[0.516800,0.607318,0.603351],[0.772149,0.350749,0.529801],[0.393017,0.536546,0.746727],[0.313211,0.568438,0.760735],[0.246895,0.688955,0.681448],[0.886227,0.270730,0.375835],[0.935209,0.125675,0.331004],[0.978057,0.208197,-0.007508],[0.823878,0.389080,-0.412030],[0.951048,0.308695,-0.014161],[0.919034,0.067324,0.388318],[0.927824,0.372906,-0.007172],[0.920316,0.217750,0.324839],[0.974059,0.140690,0.177129],[0.961455,0.246956,0.120701],[0.970916,0.237068,0.032960],[0.882748,0.453841,0.121433],[0.257759,0.298715,0.918851],[0.258431,0.306619,0.916044],[0.967559,0.243294,0.067721],[0.872616,0.373791,-0.314310],[0.629231,0.435987,-0.643391],[0.799280,0.524613,-0.293069],[0.698294,0.419996,-0.579577],[0.709250,0.384106,-0.591083],[0.847468,0.341563,-0.406323],[0.607166,0.349834,-0.713370],[0.308695,0.420576,-0.853084],[0.537004,0.554369,-0.635792],[0.872127,0.424909,-0.242500],[0.574969,0.597705,-0.558672],[0.174932,0.547227,-0.818476],[0.560076,0.462935,-0.687002],[0.750511,0.333934,-0.570238],[0.722800,0.439100,-0.533555],[0.861965,0.310556,-0.400647],[0.915006,0.377361,-0.142491],[0.984466,0.175390,-0.001465],[0.907743,0.282296,0.310251],[0.959288,0.205664,0.193457],[0.873928,0.103977,0.474746],[0.758354,0.091922,0.645314],[0.713370,0.234046,0.660512],[0.647420,0.064547,0.759392],[0.710013,0.129154,0.692221],[0.717368,0.195898,0.668538],[0.653310,0.052705,0.755211],[0.713126,0.103488,0.693319],[0.628834,0.058260,0.775323],[0.397931,0.083499,0.913602],[0.392407,0.073916,0.916807],[0.703696,0.082522,0.705679],[0.701437,-0.150304,0.696646],[0.695853,-0.157933,0.700583],[0.686117,-0.179968,0.704856],[0.664174,-0.056276,0.745415],[0.821467,0.000305,0.570208],[0.838466,0.021058,0.544511],[0.838923,0.240211,0.488296],[0.835597,0.370251,0.405774],[0.831355,0.381939,0.403607],[0.966887,0.255165,0.001831],[0.933744,0.356853,-0.027161],[0.890347,0.453322,0.041932],[0.882107,0.463729,0.082614],[0.807154,0.579699,0.111423],[0.938749,0.233985,-0.252876],[0.812128,0.435347,-0.388409],[0.757286,0.617237,-0.213263],[0.927427,0.373363,0.020173],[0.639943,0.752037,-0.157659],[0.625263,0.728843,-0.278909],[0.687399,0.621204,-0.376202],[0.436262,0.417463,-0.797082],[0.292795,0.402631,-0.867244],[0.247963,0.404401,-0.880306],[0.394757,0.471145,-0.788751],[0.751122,0.443464,-0.488998],[0.499161,0.476516,-0.723685],[-0.014863,0.375011,-0.926878],[0.434828,0.314463,-0.843806],[0.788934,0.448012,-0.420484],[0.097385,0.399243,-0.911649],[0.070009,0.584002,-0.808710],[0.407208,0.565752,-0.716971],[0.058748,0.780999,-0.621723],[-0.354564,0.550523,-0.755730],[-0.162633,0.408307,-0.898221],[-0.209418,0.284494,-0.935514],[0.075625,0.392926,-0.916440],[0.267037,0.481796,-0.834590],[-0.049135,0.386242,-0.921079],[-0.511673,0.308145,-0.801965],[-0.442274,0.179327,-0.878750],[-0.316752,0.224128,-0.921628],[-0.312876,0.320688,-0.893979],[-0.343425,0.477737,-0.808557],[-0.365856,0.501572,-0.783898],[-0.352733,0.641560,-0.681143],[-0.637440,0.141850,-0.757317],[-0.642872,0.078921,-0.761864],[-0.704611,0.087008,-0.704184],[-0.601550,0.308115,-0.736991],[-0.559191,0.387982,-0.732597],[-0.529344,0.491012,-0.691824],[-0.780511,0.150792,-0.606647],[-0.787988,0.282479,-0.547014],[-0.864071,0.115726,-0.489853],[-0.836451,-0.032655,-0.547014],[-0.895321,0.044374,-0.443190],[-0.908750,0.068392,-0.411634],[-0.927396,-0.014435,-0.373699],[-0.939787,-0.030915,-0.340312],[-0.946532,-0.063814,-0.316172],[-0.948576,-0.054750,-0.311686],[-0.945891,-0.025666,-0.323374],[-0.888363,0.004334,-0.459090],[-0.899411,-0.050508,-0.434095],[-0.854946,0.179876,-0.486496],[-0.818659,0.233345,-0.524705],[0.096530,-0.926695,-0.363140],[-0.766137,-0.287881,0.574572],[-0.763634,-0.512864,-0.392163],[-0.044984,-0.302713,0.951994],[0.650136,-0.688040,0.322336],[0.594073,-0.190558,0.781487],[0.857753,-0.501846,0.111179],[0.202216,0.193518,0.959990],[0.399396,-0.076479,0.913572],[0.697317,-0.699545,-0.156041],[0.235603,-0.620136,-0.748253],[-0.384472,-0.444227,-0.809198],[0.235023,-0.597400,-0.766717],[-0.734367,-0.312296,-0.602588],[-0.796381,-0.450362,-0.403607],[-0.965423,0.257027,0.043367],[-0.842891,0.290841,0.452651],[-0.994110,0.106388,0.020356],[-0.382336,0.363933,0.849300],[-0.321726,0.336375,0.885037],[-0.416425,0.572039,0.706626],[-0.355754,0.777154,0.519059],[-0.777306,0.623707,0.081942],[-0.274789,0.729392,0.626453],[-0.760949,0.633961,0.137883],[-0.385022,0.515519,0.765496],[-0.892972,0.398907,0.208441],[-0.904843,0.195898,0.377941],[-0.953276,-0.015015,-0.301675],[-0.947569,0.157689,-0.277840],[-0.901395,0.041566,-0.430921],[-0.868709,-0.017365,-0.494980],[-0.790735,-0.017457,-0.611896],[-0.879635,0.058931,-0.471938],[-0.341166,-0.178961,-0.922788],[-0.133610,-0.214393,-0.967559],[-0.721335,-0.021363,-0.692251],[0.063082,-0.192572,-0.979247],[0.390637,-0.275704,-0.878262],[0.467299,-0.232612,-0.852901],[0.760765,-0.292093,-0.579547],[0.909574,-0.227912,-0.347392],[0.982208,-0.123386,0.141423],[0.948820,-0.090732,0.302469],[0.776177,0.009583,0.630421],[0.743645,0.105594,0.660176],[0.309030,0.138951,0.940825],[0.126255,0.242470,0.961882],[-0.448775,0.172155,0.876888],[-0.428205,0.272134,0.861721],[-0.879910,0.118900,0.459975],[-0.914914,-0.039583,-0.401685],[-0.824366,-0.032655,-0.565081],[0.345317,0.404462,0.846828],[0.340403,0.592303,0.730247],[0.254799,0.565874,0.784082],[0.131382,0.334208,0.933287],[0.708640,-0.102084,0.698141],[-0.262978,0.254433,0.930631],[-0.526322,0.264870,0.807947],[-0.940855,-0.242653,-0.236335],[-0.697745,-0.447035,-0.559679],[-0.751091,-0.247353,-0.612079],[-0.916837,-0.303690,-0.259072],[-0.828547,-0.206610,-0.520371],[-0.862270,-0.350414,-0.365612],[-0.789483,-0.216712,-0.574206],[-0.421064,-0.368755,-0.828669],[-0.203162,-0.331309,-0.921354],[0.396100,-0.232154,-0.888363],[-0.105136,-0.212165,-0.971557],[0.358104,-0.204352,-0.911008],[0.249153,-0.266549,-0.931028],[0.743950,-0.231422,-0.626850],[0.835902,-0.100436,-0.539537],[0.990539,-0.026337,-0.134587],[-0.773247,-0.152043,-0.615558],[-0.948576,-0.079989,-0.306223],[-0.872951,0.123447,-0.471847],[-0.830622,-0.103549,-0.547105],[0.894528,0.139164,0.424757],[0.841487,0.204321,0.500076],[0.714835,0.131840,0.686697],[0.731681,-0.042726,0.680258],[0.056673,0.266610,0.962127],[-0.379986,0.159581,0.911100],[-0.913755,0.064333,0.401074],[-0.531816,-0.210669,-0.820215],[-0.992004,0.037660,-0.120304],[-0.114170,-0.221229,-0.968505],[0.433699,-0.327036,-0.839595],[-0.776818,0.040223,0.628407],[-0.906644,0.265450,0.327860],[-0.562883,-0.001129,-0.826502],[-0.957427,0.234993,-0.167486],[-0.091464,-0.177435,-0.979858],[0.445845,-0.328593,-0.832575],[-0.716605,0.061312,0.694754],[-0.873196,0.301889,0.382519],[-0.618000,0.012879,-0.786035],[-0.920713,0.350841,-0.170721],[-0.185125,-0.072390,-0.980041],[0.360881,-0.343120,-0.867183],[-0.547533,-0.018830,0.836543],[-0.800958,0.325083,0.502731],[-0.580035,0.068667,-0.811670],[-0.806940,0.571306,-0.149724],[-0.056185,-0.040834,-0.997559],[0.362987,-0.463393,-0.808374],[0.482772,-0.369335,-0.794031],[0.898709,-0.126041,-0.419965],[0.919553,-0.373455,-0.122166],[0.989380,-0.043733,0.138493],[0.997436,0.031159,0.063967],[0.896756,0.007263,0.442427],[0.832179,-0.173406,0.526627],[0.526322,-0.146428,0.837550],[-0.463546,0.195929,0.864101],[0.921049,-0.301584,-0.246254],[0.449171,0.069369,0.890713],[0.106906,0.096438,0.989563],[-0.534562,0.172308,0.827357],[-0.910154,0.198950,0.363323],[-0.594806,-0.002075,-0.803827],[-0.914029,0.381512,-0.137669],[-0.098392,0.055788,-0.993561],[0.420454,-0.241676,-0.874508],[0.475661,-0.286233,-0.831721],[0.962798,-0.246803,0.109775],[0.466506,-0.140019,0.873348],[-0.374340,0.136906,0.917112],[-0.562975,0.170751,0.808618],[-0.994018,-0.063265,0.088931],[-0.512070,-0.585253,0.628651],[0.030732,-0.635701,-0.771294],[0.316843,-0.948149,0.023957],[0.293283,-0.661153,0.690512],[0.858150,-0.510727,0.051881],[0.490921,-0.235664,-0.838710],[0.891446,-0.383831,-0.240669],[-0.652882,0.097140,-0.751183],[0.113132,-0.162938,0.980102],[-0.587207,0.253548,0.768670],[-0.874416,0.390637,0.287637],[-0.534471,0.151799,-0.831416],[-0.744194,0.645985,-0.169744],[0.001892,0.135929,-0.990692],[0.429121,-0.304147,-0.850459],[0.502121,-0.335490,-0.797021],[0.864803,-0.426954,-0.264168],[0.905545,-0.423597,0.022797],[0.110477,0.000549,0.993866],[-0.417615,0.170629,0.892422],[-0.562670,0.261238,0.784295],[-0.980712,0.194922,0.013764],[-0.697439,-0.502426,0.510941],[-0.072604,-0.578784,-0.812220],[0.013031,-0.996826,-0.078402],[0.037416,-0.807001,0.589312],[0.673818,-0.738884,0.002045],[-0.012665,-0.317301,0.948210],[0.455092,-0.340526,0.822718],[0.803003,-0.544115,-0.243080],[0.484176,-0.332072,-0.809473],[-0.499313,0.329997,-0.801080],[-0.453627,0.212745,0.865413],[-0.558641,0.271859,0.783563],[-0.828730,0.478744,0.289773],[-0.479934,0.293039,-0.826899],[-0.674490,0.714957,-0.183996],[-0.013337,0.253822,-0.967132],[-0.421400,0.462996,-0.779748],[-0.158818,-0.448897,-0.879330],[0.428358,-0.293069,-0.854732],[0.348613,-0.258187,-0.900967],[0.424329,-0.324595,-0.845302],[0.840358,-0.446120,-0.307779],[0.881069,-0.241981,0.406354],[0.554430,-0.196570,0.808649],[0.510880,-0.378704,0.771722],[-0.433027,0.195776,0.879818],[-0.463363,0.259529,0.847285],[-0.687765,0.599109,0.409894],[-0.271706,0.422285,-0.864742],[0.418653,-0.412305,-0.809137],[0.446120,-0.484085,-0.752739],[0.767663,-0.601337,-0.221412],[0.692618,-0.721183,0.011414],[-0.064516,-0.128880,0.989532],[-0.447401,0.260811,0.855434],[-0.525956,0.334056,0.782128],[-0.568468,0.807245,-0.158544],[0.150609,0.092990,-0.984191],[0.450117,-0.454756,-0.768487],[0.598315,-0.770043,-0.221412],[0.190802,-0.534684,0.823206],[-0.253700,-0.218268,0.942320],[-0.852840,-0.209876,0.478072],[-0.860469,0.503342,-0.078768],[-0.334788,0.463759,-0.820246],[-0.106113,-0.491501,-0.864376],[0.446730,-0.894375,0.022034],[-0.196661,-0.760552,0.618732],[-0.158788,-0.987243,-0.009735],[0.051454,-0.056001,0.997101],[-0.462569,0.192022,0.865535],[-0.602771,0.305399,0.737144],[-0.931089,0.358013,-0.069765],[-0.813929,-0.373852,0.444624],[-0.120701,-0.988098,-0.095065],[-0.126469,-0.825770,0.549608],[0.567003,-0.823389,-0.021973],[-0.148595,-0.339030,0.928953],[0.348674,-0.441084,0.826930],[0.734001,-0.624317,-0.267281],[0.851619,-0.523942,-0.014222],[-0.215522,0.419691,0.881680],[-0.077273,-0.929685,0.360057],[0.570788,0.258339,0.779382],[-0.758538,-0.353679,0.547227],[-0.779168,0.314035,0.542436],[-0.771477,-0.618976,0.147160],[0.021851,-0.990143,-0.138279],[-0.178167,-0.950499,-0.254494],[-0.835414,-0.419233,0.355358],[-0.574450,0.631550,0.520676],[0.130741,0.878018,0.460372],[-0.404248,0.660054,0.633137],[0.189276,0.880215,0.435163],[-0.271645,0.887997,0.370952],[0.232154,0.964965,0.122227],[0.889096,0.405957,0.211341],[0.948546,0.314035,-0.039949],[0.166601,0.969543,-0.179388],[0.732627,0.615314,-0.290902],[0.929472,-0.362438,-0.068575],[0.870479,-0.484756,0.085238],[0.677419,-0.723014,-0.135166],[0.694662,-0.707785,-0.128208],[0.848842,0.436628,0.297952],[0.790155,-0.552263,0.265694],[-0.096622,0.995025,-0.023194],[-0.827021,0.368236,0.424726],[-0.464431,0.884945,0.034120],[-0.869839,0.435804,0.231056],[-0.471816,0.881039,-0.032929],[-0.885250,0.447554,0.126438],[-0.964629,0.161016,0.208625],[-0.999908,-0.005158,-0.010071],[-0.992676,-0.103427,0.062319],[-0.785455,-0.538835,-0.304422],[-0.773095,-0.573992,-0.269845],[-0.230934,-0.852626,-0.468642],[-0.258919,-0.904172,-0.339671],[-0.857448,-0.512070,0.050203],[-0.215491,-0.940184,-0.263741],[-0.797082,-0.547777,0.254036],[-0.664083,-0.716422,0.213782],[-0.140843,-0.933714,-0.329051],[-0.211951,-0.933042,-0.290628],[-0.586047,-0.624592,0.516129],[-0.342692,-0.847682,0.404889],[-0.172765,-0.920530,-0.350322],[0.362865,-0.888760,-0.279946],[0.280038,-0.676931,0.680654],[0.739891,0.365398,0.564806],[0.778191,0.532548,-0.332804],[0.261391,0.861721,0.434858],[0.479446,0.795618,-0.370251],[0.426374,-0.101108,-0.898862],[0.233711,-0.405957,-0.883480],[0.435621,-0.520951,-0.734001],[0.559832,-0.557329,-0.613117],[0.628803,-0.626728,-0.460189],[0.430464,-0.823115,-0.370312],[0.584613,-0.763970,-0.272988],[0.914853,-0.385083,-0.121189],[0.938902,-0.335856,0.075014],[0.813074,-0.499466,-0.298959],[0.977111,-0.188299,-0.098880],[0.879727,-0.260048,-0.398022],[0.907743,-0.196600,-0.370525],[0.840358,-0.337779,-0.423841],[0.934263,-0.176061,-0.310038],[0.839442,-0.323954,-0.436262],[0.936125,-0.188849,-0.296609],[0.972839,-0.123905,-0.195471],[0.962676,-0.078890,-0.258858],[0.820276,0.507065,0.264504],[0.710868,0.351909,0.608936],[0.334880,0.704947,0.625172],[0.335765,0.440260,0.832698],[-0.283181,0.636525,0.717338],[-0.473128,0.494980,0.728751],[-0.849757,0.301737,0.432234],[-0.889492,0.256569,0.378033],[-0.987396,-0.143437,0.066775],[-0.997711,-0.016297,0.065249],[-0.816858,-0.442915,-0.369457],[-0.657674,-0.637989,-0.400464],[-0.278664,-0.673666,-0.684439],[-0.270058,-0.778161,-0.567003],[0.133213,-0.662099,-0.737449],[0.254250,-0.735801,-0.627613],[0.379955,-0.768517,-0.514756],[0.170934,-0.855342,-0.489029],[-0.324595,-0.835871,-0.442610],[-0.690695,-0.680135,-0.245552],[-0.989837,-0.135868,0.041780],[-0.883053,0.391522,0.258644],[-0.328623,0.903226,0.275979],[0.175390,0.971648,-0.158483],[0.300333,0.946196,0.120396],[0.757469,0.561693,-0.332682],[0.844783,0.493576,-0.206610],[0.913480,-0.218024,-0.343486],[0.834712,-0.542802,0.092563],[0.992279,-0.114658,0.046815],[0.373333,0.845027,0.382733],[-0.222114,0.837764,0.498764],[-0.846217,0.272866,0.457595],[-0.923093,0.051515,0.381054],[-0.917447,-0.079897,0.389721],[-0.537461,0.426344,0.727531],[-0.472549,0.406110,0.782128],[-0.325968,0.406903,0.853298],[-0.108890,0.309854,0.944517],[0.142399,-0.098270,0.984893],[0.230079,0.864650,0.446547],[0.678579,0.695517,-0.236061],[0.789239,0.613056,-0.035096],[0.196081,0.837092,0.510666],[0.221809,0.797662,0.560778],[0.840388,0.529588,0.115177],[0.334758,0.468001,0.817835],[-0.216010,-0.903104,-0.371105],[0.604419,-0.580737,-0.545305],[-0.150853,-0.879971,-0.450392],[0.529588,-0.502213,-0.683584],[-0.190527,-0.887265,-0.420026],[-0.674429,-0.720267,0.162175],[-0.604266,-0.625813,0.493118],[-0.390881,-0.856594,0.336802],[-0.120212,-0.855831,-0.503067],[0.420209,-0.871181,-0.253822],[0.252602,-0.714133,0.652791],[0.717795,0.240974,0.653188],[0.100528,-0.180059,0.978484],[-0.133000,0.230659,0.963866],[-0.294259,0.355602,0.887082],[-0.410535,0.430525,0.803797],[-0.828669,-0.491745,0.267312],[-0.492691,0.499771,0.712333],[0.321848,0.831477,0.452773],[0.331950,0.824458,0.458327],[0.826441,0.535295,-0.174352],[0.870174,0.488662,-0.063173],[0.950926,-0.289682,-0.108676],[0.567797,0.641255,0.516098],[-0.276650,-0.893338,-0.354076],[0.537400,-0.640309,-0.548753],[-0.236763,-0.895871,-0.375896],[0.467971,-0.568590,-0.676504],[-0.260109,-0.905698,-0.334666],[-0.678854,-0.703665,0.209723],[-0.644734,-0.585131,0.491836],[-0.532701,-0.776116,0.337352],[-0.193884,-0.898679,-0.393414],[0.289193,-0.956603,-0.034822],[0.033235,-0.686331,0.726493],[0.559832,0.210486,0.801386],[-0.151097,-0.090701,0.984344],[-0.281716,0.295572,0.912809],[-0.344920,0.376843,0.859645],[-0.420026,0.456191,0.784478],[-0.844111,-0.452223,0.287912],[-0.505844,0.536363,0.675558],[0.311228,0.849940,0.425092],[0.353282,0.829829,0.431867],[0.819727,0.526078,-0.226356],[0.885769,0.456710,-0.082461],[0.895016,-0.419660,-0.150853],[0.665639,0.595416,0.449843],[-0.281930,-0.891171,-0.355327],[-0.836940,-0.340312,0.428571],[-0.673696,-0.685202,0.276772],[-0.251747,-0.866939,-0.430128],[-0.305582,-0.864467,-0.399091],[-0.620167,-0.530412,0.577929],[-0.566881,-0.756310,0.326456],[-0.270180,-0.843287,-0.464553],[0.243660,-0.957762,-0.152623],[0.025300,-0.725333,0.687918],[0.634663,0.170812,0.753655],[-0.093905,-0.086306,0.991821],[-0.187719,0.333018,0.924009],[-0.215979,0.398999,0.891110],[-0.275307,0.500992,0.820460],[-0.367534,0.617817,0.695090],[0.328898,0.799676,0.502304],[0.922575,0.382916,-0.047029],[0.445936,-0.697684,-0.560656],[0.394391,-0.549730,-0.736351],[0.829981,0.520554,-0.200262],[0.336100,0.806543,0.486312],[0.347636,0.807337,0.476760],[0.756615,0.587024,-0.287912],[0.339579,-0.451766,-0.824946],[0.293954,-0.389050,-0.873043],[0.697653,0.626972,-0.346599],[0.354320,0.805048,0.475723],[0.949767,0.306619,-0.062105],[0.646718,-0.244331,-0.722495],[0.969024,-0.185827,0.162542],[0.921445,-0.033815,-0.386944],[-0.198401,-0.877712,-0.436140],[0.424177,-0.492508,-0.759911],[0.745201,0.589038,-0.312510],[0.292367,0.855922,0.426466],[0.284188,0.848842,0.445692],[0.679220,0.635639,-0.366863],[0.377392,-0.443007,-0.813196],[0.696188,-0.294595,-0.654592],[0.943663,0.330607,0.013276],[0.460524,-0.409650,-0.787439],[0.735649,0.608081,-0.298349],[0.323283,0.840297,0.435163],[0.335398,0.844081,0.418317],[0.587359,0.700156,-0.405896],[0.322214,-0.304086,-0.896481],[0.554369,-0.108127,-0.825190],[0.876644,0.430097,-0.215583]], + + 'vertices': [[5.525918,160.268674,9.037866],[2.538448,158.317792,9.079453],[2.477424,158.087522,9.471276],[5.239724,160.304685,8.571535],[7.485003,162.267774,6.294600],[4.342689,161.491559,9.027525],[6.525479,164.167463,8.294611],[7.782677,163.243467,3.057653],[8.114612,165.094068,4.977483],[6.461070,163.831693,0.152121],[6.666443,164.081510,0.147904],[4.145691,163.917203,-1.349857],[4.270820,164.255719,-1.702671],[7.699261,161.035550,-1.201763],[7.956215,163.495756,3.144453],[7.816794,162.411344,6.304332],[7.396981,157.610578,9.477953],[4.909208,153.474119,13.396928],[0.138268,156.448484,9.860105],[0.387989,156.876096,9.162562],[0.485104,158.376966,8.855923],[-1.230329,158.281431,7.707945],[-0.352456,159.679853,8.214219],[-1.364175,160.393415,6.588379],[-3.006832,160.225110,5.570500],[-2.884761,161.551740,4.213920],[-3.007041,161.391507,5.614268],[-2.519568,160.785627,7.220661],[-2.209268,160.508497,8.216133],[-1.398420,160.223234,9.001387],[1.548057,160.369138,8.527976],[-0.434561,160.481687,9.601181],[0.611689,160.738233,9.664421],[2.299788,161.311246,9.755930],[1.051402,161.562726,11.737082],[4.013890,162.508924,10.071199],[2.456774,162.674054,11.965762],[5.109277,163.811002,10.262104],[6.287856,165.966001,9.952673],[6.818292,166.510129,8.938274],[8.574885,167.291654,5.823680],[8.612619,167.725965,3.411990],[9.880752,171.967191,0.668558],[10.551398,171.353086,4.787600],[10.070442,175.780774,0.862194],[7.702705,172.279996,-2.421641],[7.507767,176.322416,-2.093890],[4.008097,175.872495,-3.869104],[4.170493,172.053571,-3.787959],[4.539924,168.218030,-1.880062],[6.418032,168.207013,-0.855027],[7.868234,168.167676,0.717487],[7.480235,165.643277,1.374673],[6.186073,165.768094,-0.605069],[3.949120,165.696729,-1.381153],[1.408393,163.782926,-1.686616],[1.249541,164.029279,-1.823383],[-1.461155,163.154310,-0.306305],[-1.654157,163.403028,-0.352893],[1.377694,160.974576,-3.502268],[4.778788,160.942655,-3.010711],[8.059458,161.392759,-1.739539],[4.990699,161.298429,-3.602450],[9.748251,157.710264,-3.357489],[12.785135,158.294446,0.568777],[9.853910,161.176343,1.377966],[9.365835,160.906690,1.562047],[8.713474,160.283857,5.200570],[9.011241,160.513990,5.540484],[11.486915,156.259412,11.317650],[12.326140,158.779981,6.348562],[12.513297,158.172513,6.440275],[17.704708,156.177427,7.815475],[19.234883,155.436063,2.806100],[12.845392,157.673337,0.191843],[16.436366,152.514264,-2.220930],[18.629204,152.265455,-1.146751],[23.032238,153.635145,4.163418],[21.136221,150.889341,0.452739],[25.881518,151.702405,5.553714],[22.197378,154.122983,8.897996],[15.828249,155.027448,12.140534],[11.227403,152.108991,15.251848],[10.774130,146.550626,18.196568],[4.157826,146.181058,17.634310],[-1.882761,146.503873,15.677268],[-0.625874,153.191984,12.046202],[-5.738404,153.371366,9.522115],[-1.431472,158.049787,8.048773],[-5.195841,157.489103,4.895252],[-3.525124,160.181348,5.744067],[-3.559619,162.301587,2.164299],[-3.500863,160.165998,0.755605],[-3.951312,160.388975,0.823233],[-1.672830,160.800199,-2.455075],[-1.932969,161.062620,-2.911441],[1.441318,161.328916,-4.147970],[-3.650675,158.174390,-5.343540],[1.250278,157.628248,-6.450019],[5.622066,157.667417,-5.241153],[9.841456,157.303006,-3.495355],[10.623321,152.814313,-4.884645],[17.238363,146.003919,-2.723311],[18.877726,146.072904,-1.733048],[19.905768,145.912366,-0.683481],[20.691836,145.461927,0.969286],[22.993189,149.327070,2.434752],[26.546108,148.440549,5.449248],[26.776654,148.947324,9.560558],[25.958214,151.884504,9.736619],[20.391587,153.313291,12.677901],[13.517465,151.850095,15.551594],[12.890650,146.815229,17.804966],[12.342983,141.486371,18.490983],[10.461537,140.705091,19.795880],[3.827999,140.351484,19.685135],[-2.550192,140.490796,17.670671],[-7.761843,146.066068,13.296581],[-12.316506,146.711011,9.070521],[-11.584409,151.760495,7.267336],[-9.463118,155.991422,3.868578],[-7.034762,158.510175,-0.548681],[-7.224379,157.897718,-0.588298],[-3.450121,157.553342,-5.669045],[-9.131849,156.276426,-6.214125],[-4.823264,152.227186,-9.489002],[1.274425,157.220365,-6.613017],[5.706041,157.127302,-5.457593],[6.141503,152.781812,-6.539029],[11.705604,145.663282,-5.247322],[16.930596,140.738569,-1.192503],[18.337178,141.146985,0.403821],[19.110193,142.440549,1.871429],[20.388916,142.552045,3.209666],[20.874790,147.032575,1.966904],[23.746186,147.978040,2.595022],[26.648316,146.076307,5.390547],[27.231343,146.119367,9.369288],[25.068121,145.669233,12.604665],[24.243578,148.815030,12.967261],[23.322886,151.299390,13.099782],[19.626883,149.872938,14.947182],[17.491228,151.300763,15.535679],[15.224616,147.091626,17.024228],[14.327942,141.834623,17.341910],[14.218063,140.532911,17.557066],[12.413600,139.933820,18.790877],[10.443520,139.589734,19.870900],[3.774039,139.088483,19.891410],[-2.655020,139.059369,17.996664],[-8.727892,140.230359,15.115875],[-13.879530,140.470548,10.970689],[-8.429453,140.225812,14.295912],[-14.737313,140.834516,8.781472],[-14.721156,139.672300,8.942146],[-15.547212,139.989179,6.818858],[-15.367582,135.737424,7.907191],[-16.124218,136.008664,5.994336],[-15.925777,128.012441,8.656683],[-14.822790,136.317457,-0.048293],[-15.179970,127.974683,3.292344],[-11.938766,136.085126,-5.630992],[-12.441085,127.949529,-2.179565],[-10.587122,127.951940,-3.445184],[-9.980970,135.922513,-6.329147],[-9.745290,140.154279,-8.121223],[-7.673202,139.881238,-8.547119],[-7.647461,140.959501,-8.898058],[-5.549632,140.574003,-9.229916],[-5.407140,145.969098,-10.380696],[0.957750,145.574338,-9.061951],[1.505381,152.737790,-8.136957],[6.453498,145.626203,-7.206715],[11.312282,140.295438,-4.624027],[16.917717,139.825483,-0.772653],[18.178972,140.090772,0.762767],[19.468960,140.357725,2.332955],[20.740607,140.575239,3.805230],[19.046740,141.349515,9.811599],[20.858265,143.300123,3.862602],[20.434571,144.653882,1.241521],[16.781918,143.517347,2.417377],[21.314284,141.978132,0.947346],[24.704052,143.032667,1.873380],[24.219231,145.559339,2.231335],[27.137657,143.653989,5.049853],[27.260414,145.377729,9.278745],[25.336977,142.810422,12.198504],[21.923317,141.690839,13.663531],[21.517601,144.437162,14.109277],[20.847262,147.459913,14.695457],[17.853916,145.584989,13.949933],[16.661568,146.780729,16.243349],[16.513532,141.960050,16.373178],[16.280713,140.714765,16.547959],[15.770796,136.311048,16.937945],[14.036785,136.015729,17.941848],[12.325257,135.720517,18.931070],[10.683153,135.425367,19.877795],[4.291992,134.761808,20.395743],[-2.315846,134.584806,19.184050],[-8.586994,134.671293,16.406118],[-8.797613,138.967206,15.316413],[-13.888827,139.355481,11.076211],[-14.601466,135.466398,9.840266],[-14.985003,128.031865,10.300092],[-15.117615,118.782811,11.081658],[-15.277363,118.760045,5.741794],[-13.421456,118.726484,0.061580],[-11.754030,118.711652,-1.559530],[-10.086606,118.696828,-3.180641],[-8.733157,127.954366,-4.710802],[-8.419180,118.681981,-4.801750],[-6.879192,127.956746,-5.976420],[-0.362502,128.003972,-5.565542],[-1.715968,118.649335,-5.186635],[4.540218,128.042608,-4.868721],[3.266916,118.627172,-5.000027],[8.075283,118.610761,-3.679569],[9.134638,128.088323,-3.021282],[14.352504,118.592290,-1.296746],[15.127369,128.153814,0.122256],[16.064944,128.176397,2.162495],[17.383593,136.000913,1.707493],[16.417548,135.812009,0.189344],[10.634446,135.388395,-3.862367],[5.192066,135.338010,-5.579249],[0.420157,135.292402,-7.260670],[-5.815753,135.597822,-7.862217],[1.096324,139.269452,-8.125153],[6.178982,139.265760,-6.283798],[6.243003,140.141065,-6.482917],[11.255415,139.367475,-4.428121],[18.597822,136.195813,3.774734],[19.669882,136.378400,5.520013],[19.216297,140.395246,10.234046],[17.358818,143.322538,13.192107],[16.033521,144.262861,7.520589],[14.814632,142.690046,6.120665],[14.673251,142.596738,10.459177],[16.052449,139.955762,6.041206],[15.881385,139.809720,10.010852],[17.644047,135.619169,5.862767],[17.521052,135.371274,9.529269],[19.569109,129.079419,5.357359],[19.680590,128.884275,9.053891],[21.496159,124.685766,3.223093],[21.194042,124.383481,8.141360],[22.239804,121.091680,3.668688],[24.431134,122.622716,0.101506],[25.037314,120.637029,0.066523],[25.435726,118.521482,0.449331],[28.811211,117.995000,0.066989],[28.420845,120.615850,-0.623979],[27.703377,123.058927,-0.891024],[31.308449,121.085904,0.891667],[30.675688,123.603750,0.406866],[32.597138,121.867643,4.034526],[32.212754,124.049062,3.499430],[29.810599,125.958646,0.305520],[31.564284,126.419378,3.303982],[27.758435,131.302137,0.729014],[24.644915,130.613736,-0.124309],[26.753626,125.338979,-0.774144],[23.561136,124.797078,0.477424],[21.576710,129.793409,1.402088],[19.369807,136.253934,2.091101],[17.873970,140.733655,2.264071],[22.827971,137.175153,0.413892],[26.168511,137.913923,1.327119],[28.317913,138.232831,4.537311],[28.200350,137.953748,8.748620],[26.469176,137.350171,11.975482],[23.099041,136.448453,13.676761],[19.758501,135.709653,12.763533],[18.416538,140.678968,13.006397],[17.547692,143.408552,13.187131],[21.650172,129.177823,11.960993],[23.089298,124.746480,11.089897],[21.218991,122.430127,5.897946],[22.273648,123.372587,9.124693],[21.533510,118.247007,7.291879],[22.591572,117.156942,3.925631],[25.529520,116.200658,1.295354],[28.866078,115.927327,0.944590],[31.582281,116.310514,2.623900],[31.621964,118.416349,1.697954],[32.640684,117.203847,5.691878],[32.794296,119.624585,4.719207],[31.849610,122.853116,7.864910],[31.122811,126.450307,7.426668],[29.727984,131.595685,3.636110],[29.644648,131.307142,8.118766],[27.831866,130.686536,11.287913],[24.763689,129.866239,12.814316],[26.195549,125.410787,12.037965],[25.079268,123.768384,10.859291],[22.591862,119.140340,10.359823],[21.766751,113.564153,8.993889],[22.965119,112.415120,5.458893],[23.403622,106.560262,7.760620],[25.986269,105.737218,5.505532],[25.748121,111.525304,3.019353],[29.112023,105.444333,5.057480],[28.978657,111.272527,2.718282],[31.631024,111.646695,4.358114],[32.692137,112.504896,7.312502],[31.548386,113.625951,10.765517],[31.381438,118.396932,9.360031],[28.644675,119.250188,11.688405],[28.564165,123.466314,10.439153],[25.308106,119.523519,12.039162],[22.827852,114.422345,11.948268],[22.350540,107.599065,10.961365],[23.520840,101.546720,9.549656],[26.116621,100.697263,7.210999],[26.358713,96.051450,8.410722],[29.353810,95.196431,8.246507],[29.190157,100.379552,6.673998],[31.567484,100.714910,8.143784],[31.586918,105.793462,6.587593],[32.340513,101.575277,11.058933],[32.465645,106.651258,9.511420],[31.412565,107.690076,12.712165],[28.829916,108.513112,14.967254],[28.710755,114.543744,13.287031],[25.704180,108.806005,15.415316],[25.480217,114.796506,13.588102],[23.229283,108.456868,13.885203],[22.394346,102.603437,12.796702],[23.619930,97.437177,10.410322],[26.876930,97.236104,9.531220],[24.879826,98.250951,11.002681],[26.643296,95.404653,9.920324],[28.975518,94.706716,9.693998],[29.047741,96.609929,9.392357],[30.563090,96.611577,10.639140],[30.556727,94.708463,10.994961],[30.782992,95.409215,13.326329],[30.844202,97.240468,12.795365],[31.461226,95.198743,9.980425],[31.875914,96.057508,12.950103],[30.439570,97.444684,16.021307],[31.214007,102.631978,14.305974],[28.618239,103.481450,16.644633],[25.544712,103.799161,17.181646],[23.167385,103.463796,15.711860],[22.183573,98.824361,13.481514],[23.819313,99.266828,13.244743],[24.450922,96.535657,11.587530],[26.887552,96.669774,13.520439],[23.235783,97.667737,14.058777],[23.462044,98.368490,16.390144],[25.043263,98.370229,17.691121],[27.375523,97.672300,17.464821],[27.786581,99.271184,16.508887],[25.615731,99.897374,16.647708],[24.100415,99.895704,15.400958],[24.705694,99.685453,18.185119],[27.700777,98.830442,18.020893],[22.598284,99.683126,16.451216],[29.783653,98.256345,15.037397],[29.567873,96.541288,15.797595],[29.326193,126.122648,10.623396],[18.402306,136.635343,11.709246],[15.344860,128.292486,17.329483],[13.691480,128.288717,18.253971],[12.038098,128.284932,19.178462],[10.384716,128.281164,20.102950],[3.985313,128.243978,20.856192],[-2.165348,128.196935,20.157253],[-7.841606,128.138967,17.687787],[-13.805927,135.195966,11.826092],[-13.103461,128.070791,13.586907],[-7.489651,128.130880,16.374249],[-14.044234,128.051336,11.943499],[-14.105490,118.784368,12.497733],[-13.925986,114.022634,13.744504],[-15.110297,114.042707,12.363527],[-15.867527,114.047933,7.015239],[-14.118267,114.004552,1.023977],[-12.636509,113.973661,-0.628563],[-13.228161,111.345990,-0.096031],[-11.856365,111.301412,-1.879251],[-14.364066,104.827535,-0.101331],[-13.033679,104.556379,-1.774583],[-10.484565,111.256803,-3.662469],[-11.663886,104.301488,-3.464954],[-3.327886,111.026517,-4.647019],[-2.674386,113.777990,-4.659435],[2.402164,113.681554,-4.791626],[7.378623,113.589010,-3.779700],[14.144863,113.464101,-1.849350],[15.455274,118.596212,0.750752],[17.002520,128.198995,4.202732],[17.940094,128.221586,6.242973],[17.469231,128.267080,12.345699],[15.964656,118.660398,15.865822],[14.573557,118.671422,16.911994],[13.182453,118.682439,17.958167],[11.791350,118.693456,19.004334],[5.154845,118.732511,20.913190],[-0.741245,118.760290,21.041314],[-6.325909,118.777730,19.146085],[-12.081240,118.787488,15.329880],[-6.085715,118.769765,17.585518],[-13.093368,118.785940,13.913808],[-12.741675,114.002546,15.125478],[-13.809956,111.368749,14.543665],[-15.101531,111.409864,13.197703],[-16.235050,111.444837,7.874153],[-14.599957,111.390584,1.687189],[-15.717157,105.104131,1.562667],[-16.039169,101.790830,1.440061],[-14.750803,101.280668,-0.193007],[-16.147772,98.035772,0.741449],[-14.600923,97.056020,-0.795144],[-13.488939,100.782178,-1.845654],[-13.085015,96.068990,-2.323015],[-12.176932,100.311200,-3.535935],[-11.562138,95.098150,-3.874865],[-13.354305,91.783712,-3.080780],[-11.863031,90.990606,-4.298010],[-4.570944,93.201558,-5.485017],[-4.837644,98.560811,-5.558685],[0.651496,98.310293,-5.918712],[0.887948,102.953847,-5.616849],[6.132820,98.050992,-5.558416],[6.347147,102.701856,-5.255266],[1.792706,110.861867,-4.999176],[6.863243,110.699094,-4.202695],[13.907141,110.473142,-2.599018],[15.317159,113.445104,0.035446],[16.558045,118.600133,2.798249],[17.660815,118.604055,4.845746],[17.722744,118.630071,10.821155],[16.669725,113.445287,15.144587],[15.263620,113.473897,16.298876],[13.857515,113.502523,17.453165],[12.451410,113.531133,18.607456],[6.065507,113.655950,20.837805],[0.116878,113.769513,21.330712],[-5.655774,113.876302,19.812081],[-11.557366,113.982480,16.506456],[-12.518385,111.327588,15.889629],[-14.372805,104.885366,15.246220],[-15.861170,105.159658,13.851301],[-17.071560,105.319532,8.009066],[-17.394233,102.305486,7.379409],[-18.194370,98.934415,5.996123],[-19.679430,93.872960,5.067412],[-16.690958,93.436208,-0.773413],[-21.016933,88.372266,4.727675],[-18.000509,87.984350,-1.164897],[-20.143821,78.816114,-1.701128],[-23.156816,79.185247,4.202860],[-23.255060,78.927938,9.992946],[-21.094656,88.103925,10.547263],[-21.992830,78.565618,11.849600],[-19.721958,87.699338,12.469852],[-20.730604,78.203298,13.706257],[-18.432821,87.345548,14.309420],[-19.468376,77.840986,15.562912],[-17.099890,86.985807,16.161319],[-10.421043,85.620618,20.198142],[-12.242788,76.345067,19.773562],[3.294945,83.952382,21.070339],[4.167638,74.653425,20.585614],[12.642975,74.922078,18.872256],[10.803420,84.164327,19.656019],[2.963057,87.519407,21.292247],[-9.662814,89.440648,20.398850],[-15.913837,91.515935,16.471284],[-17.212492,92.192624,14.640871],[-13.845286,95.749936,17.159266],[-8.734779,93.173406,20.641189],[0.412047,93.098523,21.283202],[9.169510,91.779302,20.408848],[10.051238,87.982824,20.005951],[17.833676,85.640569,16.141699],[20.429978,76.560407,15.143794],[19.325634,86.120008,14.434283],[16.572927,90.139516,16.626986],[18.017145,90.923330,14.953874],[20.769980,86.597791,12.740701],[19.586630,91.808873,13.190686],[22.327965,87.146245,10.976713],[20.909832,92.614652,11.537748],[21.331143,93.252599,5.774589],[19.649943,98.056890,6.733699],[17.667650,96.945867,0.991593],[17.644198,100.294629,1.512915],[16.311942,99.872701,-0.155878],[16.238434,103.440717,-0.067831],[14.875358,103.286992,-1.754572],[15.118626,110.434751,-0.703170],[16.489459,113.426114,1.920240],[17.661755,113.407110,3.805036],[18.344116,113.404767,10.009088],[17.040014,110.377202,14.599040],[15.636268,110.422681,15.827490],[14.232515,110.468114,17.055940],[12.828761,110.513547,18.284388],[6.605338,110.714284,20.727990],[0.639273,110.906240,21.470876],[-5.239546,111.094854,20.211567],[-11.226811,111.286451,17.235591],[-12.850799,104.586660,16.678413],[-14.907835,101.389272,15.010778],[-16.328220,101.885274,13.573667],[-17.910381,98.618169,11.944981],[-19.787645,93.617200,10.874389],[-18.614744,92.942907,12.691516],[-15.310972,96.711042,15.405090],[-11.809968,100.316778,18.026108],[-5.391248,98.584699,20.707251],[0.651746,98.310293,21.390648],[6.683320,98.021116,20.707273],[13.176091,99.131055,18.055728],[13.030928,103.147947,18.144008],[6.988631,102.669355,20.748417],[0.850273,102.955289,21.416121],[-5.284152,103.231740,20.735457],[-11.276809,104.292325,18.111098],[-13.371758,100.835264,16.544254],[-16.716675,97.711728,13.595852],[14.579045,103.302594,16.750771],[14.748362,99.514928,16.612910],[16.117104,95.396627,15.763842],[14.557574,94.414464,17.375143],[17.626614,96.458646,14.123516],[16.291787,99.964948,15.149142],[16.107553,103.485479,15.346637],[17.634278,103.644842,13.954071],[17.778031,100.369886,13.727061],[18.947674,97.420087,12.591018],[18.897333,100.966070,7.751270],[17.602486,103.603315,1.609910],[16.330110,110.396344,1.192678],[17.541588,110.357885,3.088527],[18.632309,110.324605,9.394333],[18.865629,103.774480,8.180233],[13.476306,103.155111,-3.451125],[13.604550,99.118779,-3.535855],[14.977310,99.473836,-1.837845],[16.120806,96.065320,-0.634235],[18.840370,93.118467,-0.350975],[22.785952,87.800199,5.204326],[24.693215,78.054723,10.031375],[23.272133,77.556615,11.735514],[21.851057,77.058507,13.439652],[25.122856,78.693235,4.286056],[22.671625,78.682287,-1.883452],[20.306498,87.754918,-0.955951],[20.895163,78.393583,-3.337795],[18.423725,87.324453,-2.296804],[19.118696,78.104871,-4.792143],[16.625680,87.006284,-3.723731],[17.342234,77.816167,-6.246486],[14.801826,86.662160,-5.128706],[6.482432,85.206266,-6.328300],[8.012559,75.958768,-7.065136],[0.066948,85.454839,-6.473954],[0.234364,89.078016,-6.359706],[5.941345,89.045049,-6.010003],[0.416734,93.098264,-6.124455],[5.836929,92.776891,-5.699044],[13.036905,94.287343,-3.880158],[14.581348,95.162298,-2.250116],[17.106867,92.226163,-1.694605],[15.382698,91.364232,-3.059506],[13.650336,90.471486,-4.405390],[-4.912645,89.460027,-5.754822],[-5.006540,85.499097,-5.733389],[-6.298394,76.134755,-6.024691],[-0.358379,76.011396,-6.588209],[-14.423472,77.759855,-5.489337],[-12.419039,86.838651,-4.816391],[-14.249807,87.202291,-3.569412],[-16.330257,78.111936,-4.226599],[-18.237037,78.464032,-2.963863],[-16.113233,87.560361,-2.316534],[-14.987756,92.592161,-1.897594],[-4.546478,103.197027,-5.281491],[-3.487330,113.555051,18.702002],[-8.284695,113.772680,16.929552],[-3.638113,110.231160,18.766848],[-8.763907,110.463689,16.977365],[-11.755474,113.930112,13.932880],[-12.242605,110.621518,13.980695],[-13.136101,113.992750,8.315988],[-13.623235,110.684125,8.315988],[-11.755472,113.930120,2.750048],[-12.242602,110.621488,2.365045],[-15.186523,104.523702,7.446609],[-13.335751,104.450727,1.728314],[-15.656051,101.791189,7.089488],[-13.932517,101.135480,1.606922],[-16.243301,98.978666,6.334155],[-14.311414,97.693578,1.091560],[-16.824241,97.204854,5.255096],[-15.000788,95.105481,-0.101926],[-17.711859,93.603856,4.975748],[-15.395681,92.128522,-0.279254],[-19.064890,87.929181,4.702088],[-15.999065,87.497518,-0.514219],[-21.025970,78.887678,4.304298],[-17.669536,78.455106,-1.803281],[-22.434063,69.730413,3.764686],[-19.213924,69.329572,-2.390410],[-23.455843,62.272058,2.977703],[-20.424595,61.914731,-3.233782],[-23.937965,58.403604,2.273852],[-20.954979,58.051496,-3.828774],[-24.436819,54.766729,1.566820],[-21.388784,54.397630,-4.474727],[-24.804535,50.653661,0.521110],[-21.770172,51.038652,-5.134030],[-26.178430,42.298642,-0.852717],[-23.376180,41.962636,-6.476477],[-26.914642,33.007627,-1.631220],[-24.276357,32.694093,-6.984682],[-28.258558,25.874887,-2.304823],[-25.131323,27.206733,-7.592731],[-29.823931,20.113653,-2.907261],[-26.825472,20.948566,-7.988447],[-30.025821,14.151688,-3.806730],[-27.263145,12.775710,-8.994360],[-31.066391,8.434492,-4.749870],[-26.671861,6.289930,-10.535600],[-31.164589,7.198390,-4.710536],[-26.586801,5.199395,-10.564415],[-24.367367,11.636580,-3.173260],[-33.040954,8.095465,1.813198],[-30.953710,8.722031,7.190865],[-27.908218,8.702785,9.009549],[-23.804317,8.033759,7.727626],[-27.778946,9.711871,8.835933],[-30.838653,9.731207,7.008762],[-32.940574,9.286708,1.715956],[-31.213856,15.206845,2.175552],[-28.792454,15.874142,6.506165],[-25.624168,14.453648,7.870727],[-23.714193,9.225067,7.624258],[-19.327038,7.123584,2.358518],[-19.268652,8.359937,2.295406],[-22.413807,13.058113,6.064310],[-19.109857,11.864147,0.979150],[-20.110660,15.370759,6.166479],[-17.621349,14.866476,0.668035],[-19.513704,20.956394,6.070799],[-16.792288,20.678970,0.807575],[-16.784904,15.563283,-4.404572],[-16.301805,20.801915,-5.187198],[-13.948442,30.038925,1.846854],[-13.704114,30.273509,-4.148763],[-18.239984,22.104446,-8.439849],[-16.434294,31.035413,-7.735378],[-21.160890,23.410301,-9.229449],[-18.514829,17.253608,-8.306216],[-18.737365,11.662168,-8.363559],[-22.569603,12.132995,-9.992235],[-21.016500,5.362099,-10.764221],[-17.099296,5.337344,-8.424974],[-17.707193,11.029826,-5.053244],[-15.984596,6.222390,-4.153462],[-16.023836,5.132642,-4.256511],[-17.290113,4.104606,-8.328791],[-21.114677,4.128775,-10.612714],[-20.514454,31.969592,-8.829845],[-15.085226,40.198907,-7.059371],[-11.752023,39.301210,-3.358392],[-10.384490,48.431825,-2.079914],[-13.616190,49.297510,-5.570809],[-19.030115,41.102113,-8.117553],[-17.729782,50.239354,-6.674248],[-12.785647,52.557268,-4.866343],[-9.834981,51.752321,-1.375516],[-9.296340,55.382177,-0.701441],[-11.862272,56.103963,-4.191661],[-17.137190,53.553586,-6.033606],[-16.395998,57.142003,-5.407797],[-11.223263,59.942960,-3.580239],[-8.613321,59.210470,-0.065505],[-6.997282,66.532491,0.886602],[-9.976224,67.353765,-2.817131],[-15.815288,60.994336,-4.812012],[-14.756351,68.448201,-4.099360],[-8.207485,76.450803,-2.475367],[-4.837461,75.588521,1.552085],[-2.650761,85.192594,2.042162],[-5.909591,85.556424,-1.558218],[-13.107914,77.564199,-3.782309],[-11.463349,86.473173,-2.528954],[-5.400156,87.950452,-2.004459],[-2.179380,87.034772,2.140443],[-1.906646,88.232763,2.190976],[-5.104148,89.490621,-2.284382],[0.200168,88.324170,1.928893],[0.161930,87.481229,7.001372],[2.487993,88.021306,1.955793],[1.373825,86.774434,7.259632],[2.781588,86.794767,1.797670],[1.878421,85.694906,7.428326],[3.351107,84.900014,1.520266],[2.719399,84.099660,7.627397],[6.922779,75.112333,-0.154813],[6.808174,74.270482,6.700913],[9.528088,66.109838,-1.321114],[9.185263,65.379651,5.581435],[11.343676,58.884641,-2.591221],[11.066357,58.169439,4.306916],[12.170414,55.115644,-3.413703],[12.163532,52.749845,3.234084],[12.838769,51.544790,-4.270742],[12.355151,49.676359,2.441886],[13.507110,48.284379,-5.134887],[13.431361,46.905843,1.144446],[15.141560,39.273828,-6.870183],[14.931295,38.641019,-0.613389],[17.311424,30.340101,-8.059603],[17.007960,29.712285,-2.095052],[20.154412,20.986938,-9.464382],[20.094204,20.473256,-3.470593],[20.998562,15.523856,-9.687568],[21.031430,14.692150,-3.909122],[22.442446,11.742583,-3.934105],[22.002794,11.112940,-10.178758],[20.649336,6.086254,-9.912560],[22.684948,5.274720,-13.845671],[22.884650,4.046465,-13.715905],[27.110161,4.194299,-15.118288],[27.012810,5.426135,-15.282028],[32.410517,5.407314,-13.882664],[32.456997,6.499357,-13.831339],[35.557591,7.465156,-7.168323],[35.435898,8.698614,-7.222542],[32.087176,13.141740,-12.500640],[27.585816,12.468616,-14.263113],[23.529293,11.882201,-13.274711],[23.085711,17.514964,-12.938322],[22.360707,22.522855,-12.431886],[20.346134,31.367374,-11.320495],[18.784846,40.450765,-10.179956],[24.493075,32.416551,-11.968844],[22.794302,41.465158,-10.806810],[28.056706,33.058660,-9.739568],[26.955975,42.262880,-8.717301],[30.186384,33.046430,-4.155425],[29.223686,42.256997,-2.847924],[25.079148,51.212110,-6.944110],[21.211514,50.472154,-8.901086],[17.030586,49.414384,-8.247421],[16.083464,52.611108,-7.413215],[20.506226,53.730085,-8.104691],[24.581669,54.515748,-6.106680],[27.587349,50.487321,-1.068764],[27.055153,54.517965,0.202746],[24.028214,58.113950,-5.268261],[19.649698,57.260904,-7.319045],[15.041766,56.095105,-6.598619],[14.284025,59.878030,-5.801543],[12.846166,67.208036,-4.678618],[18.951210,61.058828,-6.531230],[17.704529,68.437200,-5.438197],[23.379717,61.923353,-4.475858],[21.970631,69.252454,-3.269550],[25.821078,61.902379,2.000099],[24.604494,69.280713,3.170726],[20.223688,78.301709,-2.237899],[15.878965,77.493657,-4.685159],[10.756010,76.229467,-3.856356],[7.115364,85.113592,-2.058498],[13.414509,86.081846,-2.892101],[18.251106,87.201459,-0.523152],[22.997078,78.366269,4.169868],[20.850371,87.337636,4.969357],[17.586962,91.818654,-0.048249],[12.447438,88.573720,-2.805789],[6.459198,87.493261,-2.351234],[6.178723,89.033880,-2.580500],[11.874060,90.122365,-2.729175],[17.126810,94.772870,0.284301],[19.385174,92.968610,5.483538],[18.396181,96.500310,5.888689],[15.862789,96.750333,1.301143],[11.156825,93.602117,-3.746446],[5.967540,92.005391,-4.268250],[0.320803,90.983503,-1.642719],[-4.692689,92.439580,-4.011151],[0.438064,93.568471,-4.301566],[5.851701,97.403699,-4.360567],[11.105035,98.115476,-3.273839],[15.547899,99.903501,1.744271],[10.978853,102.616445,-2.552734],[5.826544,102.183042,-3.921305],[0.649264,98.225850,-4.360925],[-4.615793,97.889516,-4.361332],[-9.628716,94.263112,-3.649693],[-10.391548,90.747365,-2.560925],[-10.730356,89.077680,-2.554854],[-9.777710,99.087591,-3.273887],[-4.035498,102.626027,-3.960828],[0.872477,102.408429,-3.944489],[1.184018,110.012410,-1.541628],[5.048722,109.837102,-1.541628],[1.334801,113.336301,-1.030121],[5.199506,113.160985,-1.030121],[10.174928,109.604574,-1.652328],[9.997279,112.943342,-1.030120],[14.610640,109.403341,2.365045],[14.425075,112.742482,2.750048],[15.991270,109.340711,8.315988],[15.805706,112.679860,8.315988],[14.610644,109.403341,13.980695],[14.425077,112.742490,13.932880],[11.131944,109.561139,16.977365],[10.954298,112.899923,16.929550],[6.006150,109.793668,18.766848],[6.156933,113.117559,18.702001],[1.184018,110.012418,18.766848],[1.334801,113.336301,18.702002],[-0.407615,118.749212,18.873699],[5.395039,118.724523,19.352627],[4.337269,128.235891,19.542651],[4.600279,134.754575,19.490208],[4.126436,140.346937,18.865172],[4.456264,146.176526,16.814352],[-1.687845,146.500959,15.141733],[-7.463405,146.061536,12.476622],[-2.291958,140.486875,16.961171],[-1.953079,134.577451,18.054265],[-8.275810,134.667905,15.538145],[-1.702019,128.186284,18.428052],[0.818206,102.410512,18.593646],[-4.116403,102.629194,18.579658],[-9.782676,103.679021,17.178897],[-13.837304,104.385579,13.344460],[-14.302681,101.566717,13.161293],[-15.382522,98.850950,12.269901],[-16.242677,96.737089,11.400650],[-17.470884,93.268102,10.894673],[-18.918518,87.610372,10.585955],[-20.769991,78.566533,9.850283],[-22.188949,69.436490,8.791694],[-23.354994,62.020051,7.780604],[-23.805141,59.215299,7.614428],[-24.208629,57.117696,7.503753],[-25.094337,51.953267,7.253133],[-25.215574,48.374566,5.436426],[-26.381801,42.070661,4.820635],[-27.229400,32.800229,4.114803],[-28.276882,27.150106,3.379005],[-29.935772,21.094493,2.989831],[-25.724609,23.608665,7.207643],[-25.371053,18.464032,8.128464],[-22.701698,22.279449,8.024605],[-20.804937,31.192497,8.692377],[-24.885097,32.126678,7.597907],[-23.472173,41.261766,8.578637],[-19.527286,40.358556,9.636820],[-16.657156,30.379649,6.950719],[-14.757645,39.409234,7.938719],[-12.116197,39.079011,2.919360],[-10.876509,47.464746,4.257187],[-9.955746,50.331449,5.461953],[-9.872156,53.452630,6.063434],[-8.938723,58.948266,6.871797],[-7.263138,66.256933,7.834159],[-5.097771,75.240812,8.576905],[-1.671433,84.585584,8.275132],[-1.012089,85.998632,7.796964],[-0.846043,86.970601,7.512961],[0.195488,88.220998,12.806684],[-2.718995,88.067342,13.100036],[0.320805,90.983526,17.188921],[-8.491827,91.579625,17.361404],[0.554277,96.130285,18.143665],[-6.048157,96.576742,18.266804],[-11.754188,97.873594,16.550845],[-13.570284,95.082311,15.336194],[-14.566367,91.834989,15.094140],[-15.834772,86.759404,14.819176],[-17.878586,77.735654,14.149043],[-19.360233,68.613668,13.205058],[-20.315460,61.156053,12.102587],[-21.041673,56.766572,11.425021],[-21.524944,53.835065,10.890210],[-22.489177,49.671338,10.604847],[-22.776630,46.893411,9.284389],[-18.663034,45.951581,10.387823],[-13.829885,45.767736,8.490540],[-13.540533,49.307958,10.352345],[-12.843438,53.090471,10.566001],[-12.137773,56.438485,10.759550],[-11.543727,59.315778,10.948881],[-9.972307,66.639417,12.068706],[-7.886385,75.680570,13.238843],[-6.072731,84.783254,13.891134],[-4.294547,86.680242,13.538135],[-8.975409,89.231984,17.036900],[-10.102707,85.584371,16.529728],[-12.579964,76.546903,15.551070],[-14.580105,67.519231,14.487286],[-15.723434,60.104680,13.334359],[-16.435737,56.163251,12.775701],[-17.200826,51.827085,12.059853],[-18.137636,48.675027,11.772111],[-10.319219,100.862127,17.030236],[-4.552411,99.826009,18.377916],[0.698680,99.438398,18.381146],[5.934201,99.343664,18.389752],[6.956664,95.716871,18.185066],[9.109373,90.216810,16.952227],[3.099082,87.665990,12.810416],[5.040580,85.777570,12.838763],[9.609637,87.910261,16.559438],[7.068173,83.517812,12.780613],[8.992645,74.481710,11.704572],[11.332641,65.512182,10.093469],[13.279217,58.295102,8.623299],[13.937048,55.443307,8.303774],[14.714416,52.123327,7.959892],[15.492492,48.371091,7.567074],[16.011868,44.965116,5.514577],[17.094521,38.667569,4.640175],[19.230217,29.744443,3.249395],[22.315552,20.431876,2.029271],[22.996214,14.859021,1.817624],[24.913630,12.794191,1.687199],[22.401356,8.242585,-2.896577],[20.740185,4.999015,-10.009462],[22.479056,7.007590,-2.827757],[28.324570,11.746085,-7.229838],[25.663065,7.979389,3.386767],[29.372658,8.742434,5.529053],[29.255972,9.749531,5.336017],[25.564337,9.168940,3.271583],[27.797386,14.167381,4.047629],[27.420132,18.158483,4.428546],[25.287613,21.657716,4.352051],[23.186041,30.485780,5.417357],[21.671162,39.554769,6.831399],[20.646479,45.076082,7.859971],[19.949856,47.696107,9.363174],[18.937042,50.811788,9.766490],[18.035712,55.082494,10.687864],[17.208100,58.970308,11.432354],[15.837631,66.279394,12.952461],[13.528869,75.214147,14.448206],[10.799890,84.247808,15.891261],[15.348414,90.518323,15.146004],[14.309265,93.753591,15.503099],[12.671595,96.655904,16.692714],[11.673182,99.802045,17.086925],[11.399717,102.678930,17.266068],[5.740788,102.186147,18.609738],[15.545031,103.065374,13.430551],[15.750796,100.231389,13.263161],[16.485036,97.620794,12.638730],[17.169352,100.459424,7.283539],[16.925732,103.144254,7.578819],[15.222643,103.243055,1.905315],[17.629681,97.847448,6.697030],[17.292187,95.625600,11.887355],[18.607290,92.239599,11.320343],[20.161354,86.627721,10.783991],[16.695089,85.487539,14.678250],[18.978810,76.531370,13.584694],[20.695996,67.508558,12.192883],[21.875286,60.151098,10.702666],[22.735300,55.824258,9.812276],[23.315499,52.940000,9.135694],[24.372620,48.815069,8.671701],[24.827400,46.133859,7.206307],[25.680619,40.569162,6.204543],[27.332985,31.534961,4.769006],[28.349715,23.071103,3.906948],[31.131973,15.682558,3.255050],[32.636442,9.867800,4.214091],[32.737425,8.860154,4.412339],[35.954064,8.343859,-0.389217],[35.844006,9.533013,-0.500641],[34.229149,15.212269,-0.686180],[32.972687,20.887643,-0.056067],[33.419701,20.297710,-5.989230],[31.707747,25.988992,-5.162406],[29.057219,27.633209,-10.620122],[30.886864,21.433853,-11.261817],[33.999962,14.363394,-6.856103],[25.319128,23.910011,-12.860778],[31.182198,26.885724,0.569268],[29.975504,32.463010,1.569434],[28.908936,41.656621,2.793059],[27.583906,47.892846,3.705355],[27.235398,51.342054,5.731139],[26.431614,58.094453,1.094721],[26.242609,56.468599,6.232772],[25.795000,58.549753,6.441284],[25.283806,61.332269,6.746448],[23.903713,68.652364,8.123644],[22.238272,77.676328,9.635658],[-2.680686,110.187703,-1.541630],[-9.150865,103.528707,-2.613893],[-7.806890,110.420247,-1.652328],[-2.529904,113.511609,-1.030121],[-7.327677,113.729261,-1.030121],[-9.672992,113.911840,-3.933642],[-11.154752,113.942739,-2.281102],[1.162860,140.197538,-8.317541],[-5.597812,139.608274,-8.966363],[-8.026212,135.759870,-7.025641],[-7.045693,151.705823,-9.896515],[-7.779881,145.995694,-10.852050],[-9.745286,141.344938,-8.566195],[-10.281109,142.501355,-8.078527],[-14.293265,140.175687,-2.076149],[-16.370586,140.306211,4.704463],[-15.592092,141.198560,6.598776],[-14.257784,146.597791,7.859472],[-13.555701,150.948377,5.869101],[-12.020303,154.637678,2.855129],[-10.937358,156.303159,-1.302262],[-14.840354,154.818326,-6.339439],[-11.611754,151.292386,-9.924105],[-9.575311,146.600492,-11.094872],[-10.572512,143.575635,-8.568507],[-13.763241,141.186872,-2.516520],[-16.446361,141.562650,4.419389],[-15.196522,146.019071,5.902216],[-15.049853,150.185941,4.842352],[-15.118882,153.187543,1.747091],[-17.575128,150.623441,0.579180],[-16.059892,148.612089,3.523635],[-15.224701,145.420911,1.853101],[-17.918676,147.170667,-0.159308],[-17.814470,152.630887,-2.457572],[-18.737282,148.719053,-3.901579],[-18.131740,144.738904,-1.380781],[-19.589220,145.070035,-4.684984],[-17.687736,140.983152,-2.787999],[-19.549080,142.760022,-5.639807],[-18.399942,135.982251,-5.204130],[-20.009233,137.539472,-7.981343],[-19.187677,129.985257,-8.393776],[-16.248003,128.930692,-7.180120],[-17.359747,125.284437,-10.045673],[-20.345918,125.718282,-10.642673],[-20.864286,131.500104,-11.055331],[-22.047594,127.223592,-13.695711],[-20.919420,126.114782,-13.289813],[-22.880697,124.517965,-15.153837],[-22.026760,128.453290,-17.369244],[-22.552934,126.132284,-18.261657],[-23.034071,123.736287,-18.442414],[-23.408743,121.330922,-17.509065],[-21.118536,123.020009,-20.703398],[-21.555290,119.610830,-19.401861],[-18.010931,122.559415,-21.470876],[-17.480732,126.056936,-21.451510],[-14.463397,125.363576,-20.359955],[-13.962711,127.947126,-19.521638],[-12.079835,126.597928,-16.356237],[-11.004028,131.094648,-13.736977],[-12.848929,132.947522,-17.066689],[-16.955745,128.797513,-20.696869],[-20.570656,126.350553,-20.650035],[-20.035984,128.990857,-19.874713],[-18.835623,134.127378,-17.451656],[-20.826027,133.275541,-14.897194],[-20.027176,139.250196,-11.663418],[-19.177398,144.369489,-9.519436],[-19.048939,146.659787,-8.607720],[-18.227831,149.572812,-7.793895],[-17.310333,153.113843,-6.534040],[-15.151867,154.832548,-2.156287],[-14.402665,150.681989,-10.272837],[-10.849767,146.433072,-11.544985],[-11.408623,146.005262,-11.557491],[-10.578876,145.378949,-9.016739],[-10.915743,143.831876,-4.726787],[-13.599749,143.678602,1.350671],[-14.519789,144.504239,2.752255],[-14.627621,145.497007,4.278319],[-10.744166,141.688672,-0.379326],[-7.567124,141.971494,-3.222434],[-8.237000,139.491376,-5.040470],[-10.881304,139.044767,-2.103323],[-14.412136,142.053480,0.112267],[-14.371727,139.561826,-1.451300],[-15.162294,134.792280,-3.805994],[-13.201012,128.805402,-8.008796],[-14.279521,125.091100,-10.867824],[-14.598016,125.966672,-13.091282],[-17.726085,126.594526,-12.357075],[-17.914993,125.288144,-9.603419],[-21.062416,124.381254,-10.379357],[-23.139276,122.071157,-12.376646],[-23.452631,119.015157,-15.027328],[-21.667930,116.862752,-16.901270],[-18.457739,118.989095,-20.128905],[-14.898309,122.530416,-20.451693],[-12.824368,123.027417,-17.637442],[-12.303338,125.387571,-12.829976],[-11.210580,129.657239,-10.563269],[-9.644242,135.622205,-7.585377],[-9.679903,137.114728,-10.790565],[-11.271474,138.890149,-14.044660],[-15.788633,134.002088,-18.280333],[-14.595281,140.083677,-15.419365],[-9.891881,143.168073,-11.920588],[-8.239632,141.113477,-8.812784],[-7.507982,143.595929,-7.412062],[-8.896679,145.716947,-9.870834],[-13.249715,144.648755,-13.073742],[-17.863998,140.218091,-14.530389],[-16.642324,145.110395,-12.137707],[-15.727312,147.924054,-11.546148],[-15.457912,149.026456,-11.045903],[-12.432476,147.167005,-11.111850],[-11.893563,134.657865,-4.694974],[-12.730052,124.471029,-15.211989],[-13.082062,122.365957,-12.155969],[-14.866761,124.518361,-10.282026],[-15.341577,121.276914,-6.526224],[-18.318109,122.028615,-5.863494],[-21.374986,121.180120,-6.589042],[-23.501844,118.702443,-8.731519],[-23.756349,115.833532,-11.220074],[-21.997045,113.768735,-13.017948],[-18.619730,116.092969,-17.579864],[-19.020498,113.017026,-13.680676],[-15.472294,116.999860,-16.803929],[-15.963623,113.865529,-12.955129],[-13.275035,119.580114,-14.572650],[-13.869479,116.269849,-10.876171],[-13.582271,119.212118,-8.324091],[-14.449809,115.050588,-3.663283],[-16.024771,117.126783,-1.856170],[-18.802187,117.828206,-1.237779],[-21.721096,116.886899,-2.044329],[-23.666670,114.662450,-3.967732],[-23.895714,112.004491,-6.273309],[-22.320759,109.928296,-8.080427],[-19.543384,109.226888,-8.698807],[-16.624416,110.168180,-7.892276],[-14.678855,112.392629,-5.968865],[-15.077798,109.019063,-1.868901],[-14.789045,111.726583,0.479488],[-16.259420,113.816327,2.297986],[-18.927307,114.490079,2.891993],[-21.773638,113.490499,2.034613],[-23.711242,111.199384,0.053342],[-24.000026,108.491849,-2.295030],[-22.529636,106.402120,-4.113536],[-19.861767,105.728376,-4.707546],[-17.015402,106.727949,-3.850172],[-16.740742,103.233663,1.595317],[-15.107769,106.446927,2.249526],[-15.084684,109.952344,3.313129],[-16.680288,112.410955,4.379865],[-19.285173,112.883672,5.042299],[-21.904281,111.189908,5.047388],[-23.537229,107.976636,4.393172],[-23.560285,104.471219,3.329547],[-21.964674,102.012601,2.262793],[-19.359831,101.539899,1.600386],[-21.509695,103.672628,1.739459],[-22.650285,105.468091,2.513581],[-22.622701,108.033300,3.289779],[-22.575050,107.554731,5.115843],[-22.646856,104.703435,4.261267],[-21.483286,102.722028,3.425912],[-19.636638,103.332723,1.263133],[-19.528852,102.367360,2.928914],[-19.245229,106.986471,4.128182],[-21.295351,110.186826,5.663256],[-21.437500,110.388425,3.771605],[-19.296430,111.594327,5.694370],[-19.547374,111.633909,3.774980],[-17.341974,111.239644,5.197343],[-17.674343,111.294004,3.298676],[-16.178413,109.258237,4.362005],[-16.250208,106.406942,3.507418],[-17.529922,103.774854,2.960002],[-17.746523,104.578199,1.266520],[-16.561308,106.933332,1.748334],[-16.533746,109.498540,2.524561],[-15.299236,119.703206,-19.412497],[-3.296780,162.163785,2.370961],[-2.560644,164.304929,1.203434],[0.289547,165.212491,-1.129516],[1.736918,167.829984,-1.954085],[-0.601872,167.430509,-1.338232],[-3.212231,166.661878,1.110049],[-4.077941,166.122815,1.862788],[-4.132687,163.950818,3.049303],[-3.706201,162.625699,4.046129],[-4.621641,161.648572,7.309610],[-4.607253,160.652326,9.196085],[-4.466242,159.948423,10.757763],[-3.520216,159.846982,11.711536],[-2.363524,159.916608,12.398810],[-0.801000,160.594770,12.166636],[-0.286213,161.709607,12.847326],[-1.992462,160.940183,13.137280],[-1.482335,162.493940,13.572147],[-2.409107,161.951566,13.482933],[-1.944557,163.393918,13.723260],[-2.881439,163.002668,13.481014],[-2.928611,163.743757,14.025565],[-3.666427,163.600980,13.873587],[-3.730122,164.189695,13.706907],[-4.658883,164.074048,13.251504],[-3.721273,164.173688,13.222681],[-4.425246,164.036451,12.951556],[-4.621795,164.128019,13.205047],[-4.020082,164.286817,13.682652],[-2.830042,164.025861,13.575826],[-3.200273,164.150449,14.004843],[-2.496727,164.088209,13.912843],[-2.408725,164.315351,14.095508],[-3.025234,164.524564,14.182395],[-4.253835,164.739881,14.030461],[-4.990912,164.426267,13.683543],[-5.101578,164.971769,13.835812],[-5.500383,164.758725,13.057606],[-5.228127,164.305097,12.739845],[-4.856459,164.190870,12.336735],[-5.418007,164.065030,11.556074],[-5.742105,164.188901,12.021095],[-5.949807,164.568815,11.899941],[-6.018959,164.369962,11.277936],[-5.824651,164.138578,11.315596],[-6.085066,164.072095,10.558251],[-5.936237,164.039777,10.784180],[-5.787656,163.452054,10.723951],[-5.770022,162.558820,10.225863],[-5.468855,161.997846,11.094984],[-5.253513,160.989515,10.592223],[-5.371613,161.786527,8.878474],[-5.163533,162.789350,6.018566],[-5.022064,165.890973,2.673601],[-4.947592,166.043607,1.712032],[-5.275598,168.246152,2.159844],[-6.504730,167.853071,4.842864],[-5.597279,164.716962,5.185949],[-6.516660,164.504590,7.632826],[-5.908059,163.044233,7.746285],[-6.307353,163.808927,9.407739],[-6.249388,164.074079,10.176721],[-6.387897,164.844968,10.672732],[-5.839031,165.417615,11.902626],[-5.288633,165.697278,13.105032],[-5.549046,165.190793,13.155866],[-4.847200,165.521268,13.520642],[-4.333615,165.682828,13.850367],[-5.008722,166.054593,13.737810],[-5.386843,166.264295,13.083326],[-5.726684,166.573881,12.100713],[-5.824592,167.150663,12.003144],[-5.911304,166.626874,12.770704],[-5.807920,166.515485,12.983488],[-5.660714,166.589094,13.583898],[-5.567257,166.308896,14.046086],[-5.396332,166.266233,14.238315],[-5.167576,166.302854,14.358013],[-4.278108,166.247526,13.948628],[-4.691246,166.574430,14.340509],[-5.182393,166.647687,15.105186],[-4.074410,166.489255,14.336389],[-3.840806,166.595548,14.386601],[-4.891386,166.913099,15.102861],[-5.622636,167.076215,15.320450],[-5.484660,166.558072,14.913733],[-6.100874,167.031370,15.155415],[-6.014447,167.664029,15.056948],[-6.376141,167.087613,14.732384],[-6.024723,166.566236,14.492246],[-5.813226,166.465070,14.776081],[-6.282101,166.664335,14.246930],[-6.345452,166.935102,13.968049],[-6.001969,167.373838,12.664983],[-5.626725,167.959653,12.992213],[-6.339042,167.513379,13.794562],[-6.380366,167.644422,14.497085],[-5.645257,168.257383,14.595584],[-5.913192,168.157758,14.065297],[-5.496121,169.137616,13.613091],[-5.537895,168.423978,12.588933],[-5.614056,168.085004,12.003108],[-6.698914,167.867460,9.655821],[-6.915572,166.158185,9.455939],[-6.634188,164.642118,9.413663],[-7.052251,166.504453,7.581183],[-6.807258,169.661695,5.734575],[-7.184102,168.181058,7.640060],[-6.967192,169.458463,8.378433],[-6.392699,169.020551,9.954425],[-5.343901,169.548139,10.905476],[-4.931641,170.186429,11.984818],[-5.077093,170.040204,13.087305],[-4.811711,170.173353,13.565063],[-5.218754,169.280759,14.069126],[-4.711724,169.125745,14.225267],[-5.067659,168.144971,14.725184],[-5.382889,167.629346,15.275555],[-4.713786,167.488782,15.062977],[-3.702247,167.339048,14.459779],[-3.107339,167.109556,14.123797],[-3.236557,166.536207,14.044107],[-3.038798,165.375257,14.088039],[-4.329265,165.172345,14.107831],[-1.723175,164.774396,14.313267],[-1.700042,164.005750,13.980503],[-1.955937,163.979581,13.890565],[-2.067026,163.991300,13.824295],[-2.095620,164.054181,13.663609],[-2.231143,164.019697,13.701268],[-2.979539,164.046003,13.754023],[-2.169162,163.908780,13.866875],[-1.289993,163.999036,14.047235],[-0.534845,163.721570,13.912840],[0.965908,162.940244,13.111007],[1.250969,164.387082,13.694993],[-0.445703,164.548505,14.243403],[-0.390057,166.059461,14.548713],[-0.604492,167.775266,14.412152],[-3.140857,168.047574,13.933292],[-3.721338,168.396497,14.006648],[-4.099754,167.936551,14.183922],[-4.286323,170.028241,13.704453],[-4.666364,170.837125,13.391738],[-5.069321,170.804822,12.916005],[-5.195670,170.768064,12.126837],[-4.998948,170.823133,11.558154],[-4.995427,170.291181,11.153971],[-5.418657,170.304334,10.618850],[-6.532828,169.578214,10.066692],[-6.581923,170.016446,9.931786],[-6.493874,170.089292,9.820552],[-5.188010,170.384702,10.462529],[-6.540801,170.946149,9.884774],[-7.059260,170.353391,8.581810],[-7.134993,170.174878,8.524786],[-7.187542,169.945783,8.493647],[-7.127196,170.276304,7.185139],[-6.547019,171.709028,4.294460],[-5.708872,171.743177,2.859035],[-5.259092,170.806730,1.846844],[-4.780078,168.528379,0.379038],[-4.891804,166.712293,0.651049],[-4.822926,167.927930,-0.505641],[-3.939692,168.038038,-0.570221],[-4.030394,166.714521,0.741134],[-3.726161,170.190305,0.076358],[-4.575548,172.031156,0.347224],[-4.696231,171.532071,1.204176],[-5.269321,171.557172,0.842298],[-5.256119,171.894056,-0.321584],[-4.554808,171.955442,-0.168535],[-4.996137,171.263456,-1.490569],[-4.307452,171.257871,-1.383634],[-4.809712,169.431180,-1.692144],[-4.080940,169.396955,-1.503932],[-6.408001,175.688520,5.644234],[-7.631025,172.487211,7.588999],[-7.596584,171.661298,7.805502],[-7.239249,170.978711,6.932533],[-7.245894,170.901410,7.727472],[-7.228032,170.747709,8.234851],[-7.123503,171.026746,8.989453],[-6.693005,171.045942,10.065490],[-5.880068,170.978727,10.629528],[-5.708222,171.174344,10.696317],[-6.568456,171.392621,9.934280],[-7.110407,171.406949,8.971715],[-7.320296,172.093473,9.458703],[-6.541284,171.973874,10.596034],[-5.572965,171.349119,11.239784],[-5.029242,170.303647,10.920573],[-5.750792,171.589963,12.045222],[-5.487758,171.863340,13.075749],[-4.906774,171.899564,13.720159],[-4.107684,170.790281,13.666505],[-3.312084,170.739576,13.596864],[-3.249237,170.160978,13.297833],[-2.114041,169.499280,13.426188],[-0.946852,168.938169,14.204582],[0.729707,169.342023,14.385402],[0.680504,169.826749,14.634186],[-1.011335,169.494687,14.375886],[0.641842,170.057233,14.594142],[-0.860330,169.929883,14.397149],[-0.772401,170.002729,14.285820],[0.571495,170.237943,14.537158],[-0.807268,170.859403,14.359456],[-1.706429,170.332029,13.179695],[-1.803656,170.249647,13.440142],[-2.190847,170.260709,13.135771],[-1.689466,170.915326,13.900043],[-2.425722,170.252302,13.159472],[-1.792276,171.115094,13.752479],[-0.943811,170.958951,14.552392],[0.204204,170.915876,14.708291],[-0.840222,171.305951,14.404824],[-2.349074,171.300336,13.755838],[-1.477946,171.897275,14.547667],[-3.082858,171.549604,14.127385],[-1.891778,172.384549,14.835916],[-4.072540,172.667188,14.036959],[-4.141339,171.842969,14.126548],[-4.803803,172.752729,13.604764],[-5.402078,172.687299,12.999334],[-6.711437,172.457471,11.074460],[-7.457122,172.862790,9.675975],[-7.087971,174.118375,9.103482],[-6.590211,176.077054,8.425268],[-5.192215,173.801175,12.671420],[-4.543551,173.804151,13.291769],[-4.158293,175.798124,12.836882],[-4.912101,175.868436,12.088455],[-4.540499,178.332975,10.577348],[-3.195565,178.317472,11.652573],[-3.248029,175.843244,13.387164],[-3.784424,173.779874,13.770116],[0.142902,174.008985,14.746745],[0.716884,175.966520,14.128021],[-1.825900,178.291898,12.695930],[-0.172543,180.793805,10.490971],[-1.543484,181.001401,9.588577],[2.970284,182.013135,3.827270],[-2.755377,180.832883,8.475223],[0.482856,181.498197,2.279703],[3.231910,179.632154,-1.781268],[-0.707352,178.573545,-1.716045],[6.126198,180.103681,-0.251443],[8.303562,179.555433,2.176854],[5.065371,181.428876,5.856083],[2.717390,180.252683,10.619666],[1.222074,178.340909,12.841234],[3.363546,175.540677,13.270342],[1.713381,172.345853,14.881751],[-0.346525,172.755216,15.225372],[-0.183334,171.985486,15.028676],[0.225364,171.295972,14.696846],[0.956436,170.623899,14.622339],[1.455904,170.769758,14.518707],[1.479499,171.523984,14.888842],[4.632218,171.539899,13.019185],[2.226985,170.835508,14.320363],[1.941567,170.139112,14.262767],[3.259775,169.509382,13.591290],[1.474738,168.050062,14.397766],[1.468456,166.375562,14.231085],[3.405902,164.580747,12.212393],[5.725854,165.728376,11.061709],[4.017632,167.693876,13.054939],[5.822212,171.568723,11.858356],[7.178180,171.352430,10.471445],[4.753495,177.518964,11.630174],[5.824138,178.711683,10.020920],[8.319370,176.516462,8.214965],[9.523488,174.370191,7.340509],[11.135052,175.488508,4.373161],[9.175870,178.424024,5.997219],[6.448426,180.041105,8.037506],[9.871277,171.840329,6.699779],[8.011951,170.012723,9.237253],[7.989672,171.841062,10.153627],[8.650708,167.847562,9.255834],[8.483608,171.758176,10.007169],[8.801040,171.681394,10.649189],[9.860303,171.038694,10.103996],[9.589418,171.047620,9.462044],[9.976313,169.207471,9.847465],[8.800207,167.721830,10.126402],[7.942761,168.335889,10.308454],[7.668738,171.361432,10.939680],[6.677590,170.626142,11.162712],[6.329931,168.070569,11.217266],[6.643558,165.868238,10.758232],[7.375634,166.541959,9.642857],[7.671918,166.522214,10.456284],[9.616315,169.189740,9.185956],[0.338098,175.651853,-4.053217],[0.000062,171.512723,-3.447086],[-1.681029,172.015104,-2.316108],[-2.170892,174.547117,-1.786257],[-2.687009,176.682996,-0.374857],[-3.792796,178.857175,2.515479],[-5.116762,177.668287,3.927028],[-5.419807,178.441404,7.657642],[-3.591300,180.348127,5.696109],[-1.995000,180.168851,1.447916],[-2.807032,170.789975,13.268813],[-5.209689,160.491254,11.680865],[-4.276829,160.389982,12.691031],[-3.068620,160.458875,13.351842],[-3.427216,161.545591,13.558623],[-4.463415,161.598905,12.953350],[-5.302964,161.573972,12.094713],[-5.039194,162.561399,12.082607],[-4.349819,162.711988,12.829369],[-3.460938,162.537519,13.314341],[-3.636023,162.903745,13.541532],[-4.547519,162.903547,13.086267],[-4.756758,163.530698,13.366357],[-5.511999,163.628888,12.433229],[-5.210284,162.927564,12.312915],[-5.332733,163.039731,11.567925],[-5.835720,163.787717,11.756740],[-5.323805,164.213804,12.463131],[-5.554254,164.084958,11.744606],[-5.685081,164.071943,11.005674],[-5.680770,164.108442,10.865616],[-5.844779,164.048429,10.875986],[-5.862864,163.964643,10.984161],[36.521351,4.633015,17.042181],[31.725897,3.748839,17.399251],[31.814560,0.879828,17.364036],[34.518009,5.793547,10.992541],[39.458863,4.587950,9.349998],[32.966793,7.301695,6.373665],[38.524933,5.724672,4.525447],[38.663223,1.249740,4.470540],[36.776795,4.000945,0.409773],[35.234825,7.593331,0.928877],[33.533421,8.067764,-3.761832],[32.358851,12.816683,-3.582223],[29.995919,12.812862,-8.617727],[26.563483,12.316663,-7.781389],[24.865479,12.310853,-11.348959],[27.757614,12.684378,-11.313304],[30.419892,8.037188,-9.109269],[34.253781,3.367808,-4.422045],[36.861958,1.244402,0.375949],[33.159741,1.057247,6.297027],[39.563008,1.218156,9.308635],[29.025009,0.849574,12.805962],[27.018111,0.842434,8.335301],[26.879856,5.317311,8.390237],[28.920628,4.227326,12.847425],[36.632595,1.033211,16.997993],[40.086869,4.043418,14.449950],[40.175534,1.174407,14.414731],[31.476845,8.764083,2.844633],[28.933029,12.256928,-1.675724],[24.639002,11.700693,-1.701230],[22.977200,11.798228,-6.907567],[22.979487,12.007184,-10.373991],[24.284495,7.881053,-11.838532],[27.508602,7.983149,-12.036948],[31.068901,3.776568,-9.333296],[31.148894,1.187425,-9.365066],[27.791039,1.123751,-12.632089],[26.591381,1.027977,-7.852498],[29.436781,1.054225,-2.827679],[21.829615,0.861381,-6.272140],[24.069762,0.866454,-1.046448],[29.370587,3.196964,-2.801386],[24.003561,3.009193,-1.020154],[31.594691,1.060120,2.124074],[25.712673,0.854332,4.076224],[25.627512,3.610875,4.110050],[26.488095,7.287317,3.831783],[24.618765,7.755874,-0.803196],[22.314883,7.753624,-6.419341],[21.749623,3.450522,-6.240370],[21.559412,3.501927,-10.905283],[21.639403,0.912785,-10.937053],[24.250378,1.012055,-12.448667],[24.170386,3.601196,-12.416897],[27.711046,3.712893,-12.600319],[22.074942,7.796565,-10.520170],[34.319981,1.225069,-4.448338],[-37.268093,4.446888,18.747276],[-37.272838,0.845224,18.717157],[-32.645736,0.827418,20.117376],[-40.171753,3.747047,15.451940],[-40.175534,0.876554,15.427935],[-38.474315,0.914896,10.574716],[-38.469871,4.286430,10.602909],[-34.034622,5.636084,13.261943],[-31.561020,7.166452,9.072192],[-36.544563,5.427463,6.082757],[-29.381771,8.654159,5.933742],[-32.604459,7.371018,3.263235],[-25.827320,12.325113,2.160299],[-28.899454,12.750548,-0.269832],[-22.564464,12.223499,-3.464796],[-25.807121,12.621891,-4.842902],[-20.350120,12.129723,-6.700871],[-23.195822,12.446192,-7.133508],[-22.269295,7.918538,-7.729520],[-19.162849,7.906971,-6.837938],[-18.647409,11.897448,-5.436443],[-19.176470,11.807251,-2.024925],[-21.606437,11.854531,2.829642],[-24.687673,7.320988,7.990912],[-26.004551,5.360899,12.376949],[-28.931968,4.234197,16.298716],[-32.641956,3.697912,20.141382],[-28.936424,0.854700,16.270457],[-26.010465,0.883717,12.339491],[-23.815309,0.913229,8.463394],[-23.811685,3.671174,8.486439],[-21.101248,3.092362,3.834975],[-21.872902,7.820975,3.864950],[-17.783788,3.573256,-0.778950],[-18.409433,7.858121,-1.120158],[-17.289320,7.889720,-5.072401],[-18.814310,3.629479,-7.333863],[-16.590414,3.609458,-5.292740],[-16.593815,1.019000,-5.314386],[-18.817714,1.039022,-7.355507],[-22.097133,1.010036,-3.374370],[-17.787189,0.982799,-0.800594],[-21.104067,0.948535,3.817063],[-25.959011,3.123060,0.934057],[-25.961826,0.979233,0.916145],[-30.378855,3.150992,-1.705349],[-30.381672,1.007164,-1.723262],[-26.222194,1.036104,-5.837739],[-26.218790,3.626561,-5.816095],[-22.236599,1.051453,-8.300968],[-22.233196,3.641911,-8.279324],[-25.745386,7.904480,-5.500982],[-29.941673,7.871966,-0.953493],[-33.903049,3.734946,2.460162],[-33.906670,0.977002,2.437119],[-29.139196,0.946874,5.284120],[-31.569229,0.918800,9.019963],[-34.040878,0.886916,13.222229],[-36.550407,0.950238,6.045355],[9.174092,174.057447,-0.902525],[8.752777,177.626981,1.173966],[10.108987,174.221341,0.675669],[8.322501,173.927076,-1.915557],[6.755841,177.993039,-1.016395],[7.242102,174.011686,-2.754499],[8.669404,169.914975,-2.989108],[9.772615,170.118238,-2.374446],[10.806170,169.889158,-0.809267],[11.174961,169.914563,0.272080],[11.155698,169.396802,2.228956],[10.795054,173.618711,2.463895],[10.039306,177.317151,3.910257],[11.242911,173.664838,3.744926],[9.903651,177.246076,5.848261],[10.629992,173.709775,7.009378],[8.387847,177.723386,8.624042],[8.697583,173.969175,9.475089],[9.696381,171.403440,8.389245],[9.047779,170.760495,8.547397],[9.283717,168.058408,8.175660],[10.015332,168.088956,7.921010],[9.422888,166.955091,8.006031],[10.131121,167.036969,7.818738],[10.296577,165.732557,8.014281],[9.806049,165.580610,8.137947],[10.887614,164.191388,8.389580],[11.438507,168.887662,6.168681],[11.596412,169.170118,3.835941],[11.952305,166.889020,1.928184],[12.370203,166.594083,3.234032],[13.111130,165.860090,0.670041],[13.664985,165.475461,1.643971],[15.642750,163.511121,0.755849],[12.063521,166.710859,5.349996],[12.161598,166.653760,3.617223],[13.533263,165.558271,3.597820],[12.835603,165.532743,3.144396],[15.343331,164.099515,3.206549],[10.540498,166.541059,7.484591],[11.777434,166.609021,6.017404],[11.503771,165.412153,7.071523],[11.994301,165.700864,6.061568],[13.936791,164.576810,4.761508],[12.189338,166.743131,1.944617],[12.120101,167.309949,-0.109138],[11.436613,167.686429,-1.395989],[10.721321,167.592634,-2.788422],[9.481381,167.236631,-3.557777],[9.434205,165.801740,-4.924914],[10.788486,165.749387,-4.223869],[10.791676,165.933759,-4.210834],[10.937034,164.054365,-6.649537],[11.866741,166.346143,-2.753945],[12.462585,166.294904,-1.959070],[14.093449,164.373823,-2.842111],[12.773707,165.766965,-0.793570],[7.398609,169.964261,-4.050907],[8.940394,167.547590,-3.838457],[7.091875,167.723417,-5.102156],[8.137494,166.097516,-5.517734],[7.218270,165.633878,-5.465815],[6.637793,164.409314,-7.911620],[5.830122,167.973096,-5.865915],[5.236114,166.040754,-6.725331],[4.525873,166.218274,-7.462853],[3.433410,166.217756,-7.049245],[2.890281,164.807355,-9.266669],[4.319461,168.062818,-5.333410],[5.678033,170.195005,-4.918731],[5.051500,174.282041,-3.435464],[4.138058,177.696790,-2.427548],[4.276214,174.121030,-3.933286],[4.700106,169.979444,-4.856108],[2.857818,169.762510,-5.601608],[2.569869,168.078306,-5.617978],[0.728888,165.279889,-7.114900],[-0.018622,165.588773,-7.171582],[-1.797709,163.432218,-8.772267],[-1.184272,165.186963,-6.714337],[0.962288,167.725965,-5.297486],[0.603126,169.620450,-4.935729],[2.080222,173.630018,-4.173253],[1.165484,177.451398,-3.015231],[0.572187,173.539808,-4.348250],[-1.553116,169.795408,-3.785811],[-1.138536,167.684934,-4.723529],[-2.490325,165.730146,-6.276537],[-1.493391,165.874708,-6.677639],[-4.226505,164.520459,-7.215063],[-1.987927,173.859800,-2.850376],[-0.686235,177.406278,-2.416511],[-2.999635,177.895658,-0.263207],[-3.970800,174.160840,-0.411828],[-3.089408,171.750669,-2.232864],[-2.776871,169.728635,-2.723934],[-2.468229,166.938443,-3.781193],[-1.542334,166.919172,-4.645071],[-3.333606,165.674054,-4.411404],[-2.885832,165.955839,-4.684429],[-5.163885,163.266538,-5.344706],[-3.907682,165.631376,-3.511126],[-2.294919,166.726285,-3.102295],[-3.044617,169.302732,-2.211920],[-3.150838,171.512479,-1.829267],[9.791420,170.271955,-1.492584],[9.911613,173.816541,0.531801],[10.412108,170.345670,0.399902],[8.732127,170.302045,-2.643190],[7.625027,173.973905,-2.208786],[7.815943,170.309507,-3.364689],[7.711461,166.181608,-3.030225],[9.449427,165.685697,-1.882357],[10.116421,165.718717,-0.715517],[10.179821,166.251035,0.335074],[10.911272,165.876264,2.321974],[11.032762,170.420530,2.877451],[10.943424,173.660199,3.810190],[11.096962,170.531568,4.439467],[10.327667,173.714338,6.773432],[11.076373,170.686368,6.460787],[10.070810,170.975599,7.912203],[8.697583,173.969175,9.475089],[9.392617,171.048810,8.388362],[8.161297,166.490491,8.364826],[9.283764,166.389005,8.021275],[7.785024,164.789777,8.190686],[8.811635,164.713483,8.108411],[8.982226,163.828473,7.657198],[8.184006,163.480542,7.950514],[8.982364,161.795728,8.872030],[10.461699,166.204984,6.586839],[9.771676,164.619764,7.728155],[10.766775,165.184064,5.714929],[10.815326,164.204313,6.744124],[11.171659,164.159284,5.971679],[12.797517,162.537214,6.159688],[11.035674,166.001676,4.250777],[11.283204,164.991010,1.242388],[11.772981,165.034498,2.531032],[11.869294,163.711683,1.513394],[12.189987,163.771406,2.309400],[13.082521,161.797635,2.115526],[11.282550,165.146558,5.061771],[11.614592,165.078657,3.402721],[12.021129,164.114820,4.716337],[12.000924,164.137922,3.757363],[13.520104,162.588071,4.217458],[10.960468,164.967115,0.522691],[10.543394,164.918897,-0.826544],[9.437128,164.903303,-1.817541],[11.052915,162.287717,-1.177498],[11.494758,162.297208,-0.698170],[11.645856,162.334363,0.226955],[12.038600,160.692334,0.167544],[9.007802,164.843747,-3.442766],[7.825402,164.837842,-4.232996],[8.451579,162.209745,-4.502053],[9.324567,162.204145,-4.100054],[9.525028,162.232801,-3.335822],[9.099806,160.363828,-4.356609],[6.372798,165.782605,-3.561837],[7.342625,164.837079,-4.554513],[5.122356,164.877790,-5.005681],[7.210331,162.196958,-5.535604],[5.967158,162.224927,-5.656515],[6.601281,160.737104,-6.243054],[3.577057,164.892545,-5.602583],[4.032511,162.255140,-6.142815],[3.270858,162.268171,-6.310724],[3.134768,161.187543,-6.643653],[2.526193,162.292554,-6.209177],[1.922571,164.965680,-4.954152],[4.228006,166.245054,-4.641387],[5.213918,170.411405,-4.169465],[4.408594,173.899793,-3.762976],[4.535143,170.441816,-4.566060],[3.158283,166.316449,-4.297341],[1.904433,166.323621,-5.272508],[2.134504,170.613172,-4.838465],[0.974743,173.811017,-3.969771],[1.067826,170.695875,-4.556926],[1.185000,166.069669,-4.580305],[0.150064,164.995435,-5.369236],[0.728464,162.358472,-5.815276],[-0.102044,162.379529,-5.839883],[-0.082754,160.133313,-6.510798],[-0.925274,162.415632,-5.523938],[-1.040440,165.056333,-4.700870],[-0.996054,166.558591,-3.134829],[-3.084862,165.133970,-4.103053],[-3.557495,163.205228,-5.248670],[-2.711843,163.165021,-5.643520],[-3.915464,161.969556,-6.226069],[-0.938967,170.950940,-3.487257],[-1.749810,173.897062,-2.652318],[-3.970800,174.160840,-0.411828],[-2.585081,171.121747,-2.758665],[-2.056244,166.408811,-2.948898],[-3.709762,165.203565,-2.735570],[-2.644583,165.150907,-3.396610],[-3.819301,163.251996,-3.695867],[-3.145990,163.224256,-3.914112],[-3.384025,161.228208,-4.586358],[-3.212685,163.277341,-2.759749],[-3.359594,165.232404,-1.764026],[-2.208763,166.467405,-2.286060],[-3.025818,171.219037,-1.969703],[-2.864459,166.521344,-2.144235],[-2.973351,165.012647,-1.810506],[-2.923280,164.810392,-2.192023],[-4.407516,163.475873,-1.342732],[-2.873976,166.588529,-1.209376],[-2.874863,164.896360,-0.908690],[-2.946484,164.850324,-1.650736],[-4.034048,163.055280,0.801606],[0.355039,173.533613,-3.181465],[1.689010,169.651853,-4.277769],[-0.659203,169.405530,-3.499449],[4.770545,169.853528,-3.559571],[3.734928,174.113798,-2.896068],[6.537095,170.131650,-3.031370],[6.931571,174.375470,-1.288621],[8.413914,170.079633,-1.638898],[6.950342,164.568967,-2.081544],[9.550650,169.781217,0.171017],[9.237947,174.030561,1.398710],[6.908007,174.375837,-1.307011],[10.323720,173.382795,4.598495],[10.991049,169.511121,2.981917],[10.800848,169.232145,5.444436],[9.745376,172.744748,7.500452],[8.130499,172.195005,10.167088],[10.174518,169.199643,7.540229],[9.626478,168.868741,7.617122],[8.907854,163.272626,5.982988],[10.195361,163.533262,5.299633],[10.936118,161.393766,4.652638],[10.233728,160.794874,4.675598],[12.842027,159.131635,3.130353],[11.324227,161.468503,3.827709],[9.892006,163.745542,3.981051],[9.707694,164.057355,2.191855],[9.925481,164.258619,1.244558],[9.048399,164.412244,-0.078584],[8.587972,164.470960,-0.640470],[9.229616,162.272306,-1.429741],[10.153275,162.123975,-0.326403],[10.890721,161.955610,0.843422],[10.573129,161.750379,2.032100],[10.710737,161.481000,3.362196],[13.315000,159.352552,1.580479],[11.905873,160.410703,0.908438],[11.882487,160.525052,0.302067],[11.275254,160.632276,-0.608308],[13.899577,159.351148,-0.826771],[10.638184,160.640546,-1.002892],[9.849509,160.775434,-2.162519],[9.101207,160.945524,-3.489903],[7.356608,162.345075,-2.769395],[4.934286,164.544233,-3.051227],[5.186989,162.357923,-4.026213],[7.282171,161.000486,-4.781947],[5.949184,160.969282,-5.344810],[7.625477,158.727460,-6.842985],[3.471650,162.283536,-4.647823],[5.261139,160.953016,-5.636086],[3.741705,160.787351,-5.576121],[4.786377,159.021863,-7.933485],[2.343331,160.656736,-5.638818],[2.932245,158.815412,-7.836412],[2.049458,162.139783,-4.855562],[3.175832,164.481519,-3.665272],[2.457068,164.425092,-3.762426],[0.873544,164.276288,-3.814497],[0.668971,161.975568,-4.869433],[1.673574,160.650998,-5.974609],[0.582034,160.547101,-6.013666],[0.439890,159.384107,-8.336073],[-0.019149,160.422574,-5.670965],[-0.171479,161.771344,-3.972975],[0.184558,164.075910,-3.130549],[-1.429916,163.767652,-2.346680],[-1.372567,161.504575,-3.391065],[-1.285036,159.390607,-6.562171],[-2.712424,163.558454,-1.914426],[-2.442818,161.419889,-2.824743],[-2.089899,161.494672,-3.669338],[-2.347306,159.172193,-5.339963],[-2.237857,160.877302,-2.608020],[-2.697277,163.383420,-0.978618],[-2.541224,169.392011,-2.383648],[-4.537884,172.386655,0.280171],[-2.332103,172.927472,-1.925300],[-2.489105,169.052030,-1.838367],[11.264894,159.009229,-4.312692],[12.157756,158.797422,-2.680349],[9.393258,179.627027,1.195463],[8.490467,179.485044,-0.035970],[7.018248,181.977201,2.423139],[10.329129,177.214917,0.221857],[10.850228,177.195875,0.815918],[11.441569,176.671354,3.285259],[10.349946,179.436231,3.782885],[7.583940,181.936780,4.421019],[4.824160,182.833753,5.084627],[4.424214,182.966993,4.000515],[6.618953,181.973661,1.796516],[6.726759,179.385755,-1.511929],[7.644099,177.223386,-2.754843],[9.410909,177.447461,-1.177822],[10.580369,174.098676,-0.918985],[11.945704,174.374540,0.165459],[11.476929,173.787214,2.556984],[11.473402,176.480100,4.993132],[10.071661,179.175199,5.314908],[7.663190,181.786847,5.644355],[4.459652,182.677686,6.316942],[3.320863,182.353559,5.718865],[3.673737,182.385862,4.629712],[3.721211,182.870572,3.455206],[5.221282,182.025617,0.801235],[6.238542,179.470105,-1.763592],[6.491483,177.296964,-3.349232],[8.139798,173.622876,-3.366175],[9.819259,174.005567,-2.347180],[10.378145,171.291257,-2.619345],[10.218124,171.621488,-3.424187],[9.141691,171.337110,-3.811323],[11.379650,169.390790,-4.785201],[6.727988,173.754636,-4.255069],[7.981265,171.670423,-3.808707],[7.142944,171.635862,-4.751130],[8.375641,169.432096,-5.890133],[4.695986,174.377866,-5.424858],[6.220543,171.619184,-5.732936],[5.245040,171.756452,-6.232233],[5.630503,169.868177,-7.267964],[4.234880,171.782804,-5.779085],[3.254175,174.108793,-4.974324],[4.321381,177.535673,-4.551117],[4.160913,179.708555,-2.790290],[3.989588,182.175229,0.488127],[3.584616,179.578840,-2.639931],[3.322613,177.349637,-4.084081],[0.595570,177.234830,-4.243899],[1.158315,174.270734,-5.310940],[3.131367,171.962247,-5.568236],[1.662678,172.092054,-5.894232],[2.658298,169.864576,-7.715231],[1.001360,171.748304,-5.321976],[-0.161417,174.136167,-4.338331],[-0.106114,176.972120,-3.763445],[1.020319,179.940854,-2.498736],[1.923187,182.115018,0.460568],[0.583034,179.809888,-2.191470],[-1.874986,177.093152,-3.002554],[-1.644870,174.178342,-3.819043],[-1.113383,171.049390,-4.260524],[-0.266174,171.171232,-4.708549],[-0.448231,169.060621,-5.772018],[-3.119783,174.241208,-3.255241],[-2.589044,172.758848,-4.063251],[-1.750468,172.892652,-4.350510],[-2.090058,171.480634,-5.386119],[-2.782382,172.349851,-3.801805],[-3.307530,174.034498,-2.858122],[-3.348929,177.030164,-2.135933],[-3.381919,176.600721,-1.440708],[-2.636946,180.132520,-0.143377],[-3.058598,179.929044,0.399271],[-4.022622,176.676038,-0.996028],[-4.578401,174.221387,-1.750284],[-4.798023,174.118116,-1.172525],[-6.426344,171.757459,-1.780559],[-4.003043,176.391263,-0.167531],[-5.170835,173.877134,-0.455683],[-5.072134,174.141340,-1.112013],[-6.316338,171.741681,-0.460297],[-3.484760,179.989667,1.054644],[-4.869578,176.435453,0.240009],[-5.923301,172.435071,0.509903],[-6.244532,172.655011,1.449946],[-6.508038,169.828779,1.905282],[-6.729654,170.178174,2.566433],[-7.120614,167.887983,3.881906],[-7.389870,168.228650,4.430269],[-8.003435,166.131910,6.592765],[-7.255012,168.478879,4.945068],[-6.781789,170.541852,3.552355],[-6.556038,172.728605,2.448554],[-5.739808,175.838300,1.825412],[-6.530628,175.701551,3.025409],[-7.012360,172.599195,3.582934],[-7.138959,170.866758,4.315539],[-7.114721,170.625104,3.634856],[-7.589604,168.650403,5.227161],[-5.135923,179.641370,3.243233],[-6.984422,176.054670,5.216749],[-7.385690,173.085538,5.894018],[-7.093678,172.785184,3.634896],[-7.978786,170.464536,6.217485],[-7.753099,170.100629,4.893550],[-8.378893,168.120298,6.755980],[-7.420953,176.297132,5.720542],[-7.996885,173.153592,6.004124],[-7.820745,170.752546,6.548580],[-7.773876,173.085965,6.818670],[-7.247772,176.177427,6.407328],[-7.664516,176.646146,7.585463],[-8.222918,173.370374,7.759811],[-8.156331,169.688306,8.854392],[-7.957661,173.111524,8.907457],[-7.424598,176.066449,9.078713],[-6.321981,178.234662,9.475658],[-6.552889,179.416166,7.903706],[-4.505382,180.340909,9.822249],[-4.692749,180.435163,11.293487],[-6.263900,178.296659,11.224538],[-7.454445,175.842634,9.386299],[-7.564042,175.453061,10.441709],[-7.921172,173.025754,9.529118],[-4.383179,179.254117,12.507005],[-5.938977,177.152036,12.502320],[-7.492415,175.750058,10.908216],[-7.073988,175.032972,11.960949],[-7.880819,173.762891,10.421160],[-7.421871,173.513639,10.995176],[-7.896828,171.112912,10.034049],[-4.254424,179.250943,13.195505],[-5.650962,176.795728,13.436834],[-6.690302,174.726819,12.220581],[-6.673464,174.395490,12.954591],[-7.517977,171.851484,11.320289],[-4.156068,179.247861,14.039946],[-5.673150,176.648313,14.320081],[-6.560966,174.345395,13.048366],[-6.397122,174.250425,13.867629],[-7.481526,171.232526,12.078127],[-5.518347,174.109479,14.109856],[-3.939087,176.436002,14.340281],[-3.047497,178.348264,14.070504],[-2.220017,180.973493,12.379777],[-2.526704,180.895017,11.658538],[-0.217475,181.594373,10.208412],[-0.550330,181.909681,9.852291],[0.068629,181.602338,9.603099],[-0.539059,181.857725,9.314984],[-0.041048,182.482999,8.596191],[0.689348,181.823530,8.955679],[1.311050,181.833371,8.279332],[0.499743,182.818342,7.865614],[1.146513,183.105451,6.971029],[2.072922,182.432889,7.472611],[2.028058,183.085889,5.833771],[2.912322,182.341825,6.384486],[2.628998,183.007383,5.109704],[3.243088,182.931287,4.243988],[2.797194,183.134321,3.174500],[1.603663,183.324750,3.717169],[0.174058,182.318265,1.334944],[-1.071111,180.249616,-1.413322],[-1.367531,182.196058,2.364993],[-1.484178,182.333616,2.868736],[-2.425879,181.867078,4.021524],[-4.467423,179.544843,2.185589],[-3.048654,181.392301,5.041222],[-6.085990,179.532590,5.271877],[-6.356607,179.489881,5.823279],[-6.181250,179.091153,6.471521],[-4.717606,181.345823,8.291221],[-4.013910,181.559690,6.713309],[-2.005459,182.317670,7.621233],[-1.113860,182.671323,6.562503],[-0.485930,183.033323,5.687655],[0.553119,183.301374,4.500587],[-2.518131,182.260190,8.818410],[-2.812668,181.522687,9.489009],[-2.891047,181.738538,10.810871],[4.015460,182.535184,7.188828],[6.253922,181.746045,8.319719],[7.196538,181.681119,6.936666],[9.316920,178.914563,7.111787],[8.824831,178.709501,8.743507],[8.364202,178.743543,8.964381],[7.032263,178.705289,10.191760],[5.426256,181.574140,9.278602],[3.210519,182.478727,8.169111],[2.329749,182.149289,8.996177],[1.711383,182.183469,9.762186],[0.952847,181.732221,10.167642],[0.220468,181.482465,10.327466],[0.062536,181.566816,10.627830],[0.348557,181.788938,10.198148],[-0.088494,181.419950,12.787962],[0.720966,181.751661,12.482708],[0.508835,180.669019,14.350242],[1.069535,180.940336,14.165604],[1.304303,179.588529,15.537380],[0.590344,181.855161,10.102376],[1.290321,181.360288,12.490047],[2.165247,181.577344,12.106609],[2.386827,179.738569,14.125046],[2.943522,180.000730,13.817811],[2.849031,177.963743,15.262717],[-0.005375,180.427411,12.750555],[-0.982998,180.652372,13.046149],[-1.516525,180.359449,12.464593],[-2.742360,178.422712,14.487420],[-3.676116,176.434980,14.980327],[-4.464402,174.559308,14.286382],[-4.524571,174.484144,14.876203],[-5.114637,172.379239,13.936110],[-3.306630,176.702070,15.674246],[-4.075105,174.345563,15.681751],[-4.946239,171.765241,14.567436],[-2.540790,174.095914,15.415834],[-1.768373,176.272077,15.178786],[-1.098958,178.007367,14.510047],[-2.251276,178.541974,15.157087],[-0.132904,178.114637,14.405863],[-0.489132,175.990583,15.250393],[-1.238077,173.871976,15.631956],[-2.765492,172.354123,15.347208],[1.571613,178.781217,14.514243],[1.173259,181.182508,12.547268],[2.061971,180.547971,12.214135],[2.656074,180.886258,11.565497],[3.415664,181.334791,11.274746],[4.049725,181.009931,10.237095],[5.776610,178.780637,11.519987],[4.980108,179.401685,12.580192],[4.108298,178.876966,13.128079],[2.840518,178.534986,13.738057],[1.470226,176.377881,15.438081],[0.143412,173.828809,15.560961],[1.330238,173.758863,15.870147],[0.877350,171.830045,15.354093],[1.833569,173.658384,15.190007],[2.473339,175.860425,14.602835],[4.363094,175.844373,13.848787],[4.156903,172.719343,14.468633],[2.692440,173.421628,14.817670],[2.599508,170.341718,15.382277],[5.656501,175.905759,13.375619],[6.039205,175.476865,12.333497],[5.036131,172.102796,14.272035],[3.837798,170.424054,14.750269],[5.180367,171.649869,13.150236],[7.988167,175.665082,11.099935],[9.121751,175.405637,10.153024],[8.856558,173.063688,11.086129],[7.354501,173.321119,11.446780],[7.496512,170.301938,12.268178],[6.581566,170.499448,12.473834],[5.754806,167.819883,13.699987],[9.517626,175.347730,9.392671],[9.514762,173.105329,10.561861],[8.972362,173.267774,10.862927],[9.432782,171.128293,12.622093],[10.035345,175.381528,8.971084],[10.255206,173.524976,10.021496],[9.774817,173.435026,10.286499],[10.556010,171.561094,11.898032],[10.858563,175.917646,6.784084],[11.494417,173.588666,6.408947],[12.094702,173.918851,4.477180],[12.012175,171.931089,2.628003],[12.479775,172.335172,3.813315],[12.014078,171.683362,4.918087],[13.423395,169.964704,2.628393],[10.629794,173.832578,8.588738],[11.217322,173.911893,6.636997],[11.283190,172.558835,7.650576],[11.213642,173.005536,6.486768],[12.230426,171.151059,6.026352],[6.741535,171.393613,12.795579],[5.092595,168.520521,14.222464],[12.339448,171.910932,0.830350],[12.264484,172.101377,-0.437172],[11.648361,171.850156,-1.355243],[13.237481,169.551847,-2.347287],[9.831288,171.277051,-2.421698],[9.057492,174.055600,-1.570540],[10.247223,171.329923,-1.179600],[7.754397,173.890088,-2.664807],[8.714409,171.028058,-3.006871],[10.546156,169.220777,-3.544535],[10.748967,169.268751,-2.603343],[11.006289,167.756940,-4.637116],[9.797116,169.009321,-3.846036],[6.759667,177.992429,-1.021306],[10.102075,174.092679,-0.189333],[8.952806,177.595243,0.917173],[11.020734,174.132200,0.945802],[10.430671,177.282163,3.797538],[11.614191,173.718046,3.449080],[10.181383,177.241880,6.065015],[11.265426,173.563108,5.958813],[10.579939,173.568372,7.597430],[9.648406,173.831128,9.197147],[8.573103,177.720579,8.768624],[8.677633,173.990720,9.795275],[6.361623,174.728971,12.018207],[6.347880,178.382139,10.962464],[5.690616,171.959775,12.597617],[6.960177,170.363248,11.348907],[6.177633,169.004041,12.684160],[5.437484,169.520231,12.959350],[4.502479,166.713605,13.585852],[6.945695,169.095838,11.907510],[6.087867,166.840192,12.352825],[5.573057,167.181470,12.941090],[4.633229,165.131315,13.332431],[8.591912,170.874296,9.807374],[9.550878,170.823972,8.652228],[11.546200,171.476316,6.157112],[11.717877,169.004499,5.790470],[11.037128,169.017194,7.180677],[12.719885,166.680600,5.925750],[11.744019,171.077634,2.937842],[12.050083,170.568723,4.407697],[12.635050,169.195920,2.782238],[12.662952,168.962140,3.796410],[13.769969,167.674329,2.477186],[11.413643,171.689435,0.922758],[10.919612,171.425428,-0.340761],[12.332417,169.572110,0.085249],[11.406133,170.722532,2.150592],[12.525037,169.588727,0.946385],[13.859857,168.091764,-0.358959],[12.211852,169.333005,-0.529881],[6.510259,174.055173,-3.831891],[4.918656,174.132154,-4.508070],[5.164182,171.419141,-5.221543],[6.623438,171.297712,-5.208308],[7.468488,171.019040,-4.262313],[7.492913,169.303068,-6.354325],[6.574866,169.361768,-6.289277],[8.372945,167.174344,-6.694147],[7.969685,169.079877,-5.697629],[3.605313,171.760267,-5.594430],[3.465741,170.205869,-6.641519],[4.440388,169.931989,-6.304056],[3.349754,168.805158,-8.412052],[2.747390,170.168638,-6.331620],[2.132273,171.836759,-5.483347],[1.115502,173.880933,-4.685938],[3.298429,174.179075,-4.744453],[4.279382,177.674375,-2.608975],[1.535910,177.392637,-3.490778],[-0.960164,177.409894,-2.638195],[-1.185927,173.750943,-3.766621],[1.558576,171.231183,-5.019187],[-0.392824,170.809308,-4.550451],[1.481921,169.364103,-5.930011],[0.334536,169.169950,-5.518712],[1.309583,167.862287,-7.255299],[-2.609339,173.767347,-2.703910],[-1.265709,171.664975,-3.916212],[-3.403344,171.063535,-2.062321],[-1.434667,169.219968,-4.237190],[-2.426018,169.209791,-3.485876],[-1.922317,166.901563,-5.509514],[-3.930517,174.036023,-1.408288],[-3.160744,177.897550,-0.396840],[-4.421955,174.188352,-0.436068],[-4.565930,170.996473,-0.070192],[-5.626629,170.697797,1.106152],[-6.438564,171.951612,3.559252],[-6.513927,169.236585,3.362369],[-6.033028,168.829053,2.071375],[-6.294340,167.068067,3.272467],[-6.568771,167.405713,4.048331],[-6.828186,165.345258,4.970695],[-6.879377,169.633695,4.073308],[-7.194326,166.931119,5.040408],[-5.853484,174.913236,2.477148],[-4.716177,178.548978,2.319733],[23.045674,89.000532,19.900073],[22.068897,89.725370,20.547841],[22.281119,89.258100,19.673230],[22.683747,89.546216,20.944157],[23.750477,89.432004,20.045271],[23.357374,89.893262,20.833218],[24.880005,91.353902,19.045408],[23.987808,92.022367,20.237347],[24.076454,92.267606,20.186298],[25.069611,91.561925,18.964416],[23.829207,91.157239,18.534666],[22.657894,91.483220,18.446180],[23.953037,91.354352,18.392946],[22.735813,91.671155,18.277634],[23.262058,92.958967,16.892266],[22.630724,95.186567,17.914591],[22.180073,92.451078,19.309511],[22.161494,92.207929,19.423023],[23.079043,92.171651,20.031115],[23.118904,92.420514,19.947734],[23.712637,95.342779,18.882147],[24.420426,97.254804,16.945583],[23.045305,96.800443,15.859147],[25.828657,98.406064,15.931129],[24.479586,98.228826,15.053000],[26.317053,99.287900,15.341036],[25.143337,99.144475,14.506573],[25.226738,101.515310,13.408178],[25.241274,101.000745,11.937403],[24.946427,98.585218,13.050343],[25.613772,98.081968,12.013561],[26.052845,100.592046,10.983793],[26.428190,100.046575,9.518680],[25.771363,97.462949,10.523172],[27.057854,96.983922,9.747046],[27.818178,99.699872,8.896166],[27.048163,102.760541,8.795910],[28.535757,102.540494,8.321032],[29.204649,99.649618,9.181753],[29.910444,102.609952,8.767110],[30.242153,99.766866,9.851140],[30.969057,102.759275,9.421601],[30.628937,100.217183,11.526726],[31.014509,103.320073,11.248113],[29.896403,103.892660,12.925961],[29.900196,100.828138,13.113910],[27.748423,104.390035,14.194492],[27.821135,101.679120,14.698796],[26.232929,104.308683,13.687129],[26.529982,101.804960,14.388763],[25.282173,104.017392,12.589475],[25.508843,103.548818,11.105836],[26.463089,103.232381,10.232601],[27.861149,99.104802,15.492401],[27.496292,98.203885,16.344162],[26.513428,97.193540,17.749294],[25.270441,94.983388,19.639107],[26.333958,93.020597,18.855319],[24.368250,92.470891,17.958354],[24.973936,90.536924,19.351325],[24.196726,90.660566,18.539216],[25.127810,93.662671,14.737087],[25.878784,90.149511,17.051330],[25.713289,92.817319,13.486894],[26.774664,89.271497,15.406566],[26.244042,92.352552,12.124569],[27.532606,88.783819,13.626144],[27.928719,91.420225,10.911115],[28.402796,88.512830,12.149615],[29.082392,91.287832,11.304595],[26.901432,95.872533,9.970295],[28.423992,95.734853,10.120490],[28.454903,96.812940,9.871063],[29.506777,96.908994,10.557904],[29.615576,95.867513,10.836676],[30.206454,97.234502,12.072314],[25.511227,96.388799,10.805647],[25.270853,96.503743,12.485814],[24.470324,97.591657,13.463522],[23.456625,95.100103,14.584486],[29.607247,98.049672,13.907963],[29.750006,97.041417,14.280366],[27.724001,93.695836,17.963588],[27.610914,89.685048,18.242465],[26.130766,90.579648,19.614801],[25.003943,87.582738,19.864949],[24.350394,87.548940,19.298862],[25.129009,87.048742,18.121975],[24.349007,87.287847,19.353804],[25.083456,86.798284,18.193762],[26.042998,86.973714,18.452405],[26.462713,89.485341,17.738961],[25.108811,86.809926,17.300088],[25.755011,86.263662,16.121580],[25.041123,86.553411,17.327708],[25.671192,86.018606,16.176822],[26.585274,86.067754,16.508277],[27.445078,88.815816,15.989359],[26.198447,86.735883,15.588454],[26.811617,86.406118,14.522630],[26.108629,86.487584,15.602710],[26.708428,86.168828,14.580047],[27.665522,86.037145,14.795391],[28.380089,88.525213,14.191529],[27.261282,87.477102,13.783637],[27.740904,86.913900,12.771423],[27.139439,87.242116,13.782020],[27.592959,86.702016,12.810049],[28.341620,86.517583,13.038501],[29.146553,88.102422,12.419211],[30.086594,91.410703,12.223148],[29.776915,87.994085,13.190262],[29.903776,92.273656,14.197891],[30.328099,96.230420,12.448289],[29.180262,92.988630,15.916121],[28.661814,88.935544,16.523125],[26.728184,86.513814,18.356433],[25.752011,86.779584,18.027572],[26.908070,86.991628,19.101929],[25.929032,87.482869,20.105363],[25.892842,87.221639,20.139269],[24.987953,87.321264,19.906100],[24.206642,84.853818,19.786482],[24.795353,84.581762,18.709905],[24.138375,84.604352,19.790374],[24.713209,84.337682,18.730984],[25.463280,84.378560,18.928478],[25.991696,86.720907,18.512076],[26.835343,86.743139,19.158400],[25.301716,84.545568,20.388695],[24.630741,84.759374,20.254808],[24.549996,84.513578,20.253550],[23.092472,82.664441,19.433488],[23.299546,82.269567,19.861227],[23.924582,81.978429,18.662246],[24.413393,81.967901,19.109947],[23.968958,82.162626,19.951817],[25.918282,84.008176,19.468930],[25.363409,84.139486,18.940115],[26.038717,84.239454,19.470135],[23.563483,82.455549,18.539085],[25.208075,84.304494,20.378117],[25.676728,86.526250,18.050601],[24.399624,84.200231,17.701197],[24.989531,83.867315,16.670305],[24.269306,83.984739,17.686414],[24.849308,83.657766,16.672824],[25.551911,83.503675,16.907072],[26.495547,85.822034,16.551361],[27.366551,85.976804,17.198048],[27.254771,85.738920,17.238003],[26.640005,86.261800,18.363296],[24.793099,83.977559,18.268946],[24.654108,83.768117,18.238044],[22.668904,82.516141,17.097524],[22.774868,82.065900,17.444235],[23.423468,81.767133,16.360537],[23.791704,81.534986,16.841645],[23.388590,81.748441,17.552955],[25.847824,83.042684,17.456254],[25.299528,83.345334,18.409216],[25.451500,83.542768,18.452900],[26.015093,83.233373,17.476992],[25.399079,83.302053,16.898639],[23.204069,82.305822,16.252665],[26.856209,86.617513,16.250475],[26.755055,86.373060,16.263911],[25.321726,84.715459,15.651324],[25.847332,84.426816,14.807647],[25.172467,84.513288,15.608481],[25.680954,84.234914,14.793295],[24.226753,83.290555,14.363481],[24.363701,82.637075,14.358559],[26.226942,83.722432,14.932113],[26.405646,83.902723,14.956053],[27.556559,85.799215,14.832454],[28.370030,85.876027,15.411128],[29.485512,88.616186,14.729923],[27.766522,86.254728,16.623092],[28.504566,86.661275,14.599611],[27.832028,87.137487,14.237030],[27.688122,86.918462,14.222084],[26.048596,86.008649,13.524498],[26.567705,85.702833,12.746376],[26.908520,85.236966,13.025574],[28.179041,86.315435,13.078007],[28.774575,86.296331,13.676689],[28.605992,86.096334,13.697536],[28.340508,86.454778,14.566406],[26.324106,85.609029,13.938480],[26.124241,85.453924,13.875749],[25.862541,85.838880,13.467772],[26.364859,85.544919,12.714733],[26.695458,85.093374,12.989337],[27.167359,84.838506,13.555852],[26.747872,85.116872,14.238732],[26.537449,84.979802,14.164373],[24.424282,84.500638,13.151369],[24.612599,85.025029,12.917506],[25.002230,84.780500,12.342363],[24.884060,84.193258,12.444869],[26.950024,84.703641,13.507045],[24.913929,84.194967,13.427767],[25.174544,83.956319,12.932122],[27.651362,86.016698,16.621423],[25.686264,84.419683,16.226934],[25.522642,84.229406,16.176350],[23.884392,83.469030,14.890372],[23.831352,83.020154,15.327032],[24.766434,82.383115,14.811855],[24.371300,82.618421,15.461403],[26.650292,83.368017,15.471578],[26.088488,83.710851,16.405848],[26.262289,83.885518,16.472575],[26.840185,83.536809,15.508275],[28.245905,85.644018,15.443983],[-16.500465,107.681363,13.871337],[-16.636774,106.534261,13.441871],[-15.795072,107.611265,13.617065],[-17.319530,106.864698,13.083190],[-17.096853,107.779859,13.401072],[-17.985992,107.409604,11.024321],[-16.860790,107.039556,11.049654],[-16.930172,107.071431,10.788059],[-18.132976,107.483220,10.781935],[-17.364013,108.806806,11.594025],[-16.423618,108.878126,11.559264],[-17.417873,108.939275,11.370079],[-16.422127,108.996770,11.321791],[-18.204738,110.453786,8.923071],[-16.544473,110.387258,8.343826],[-15.355951,108.691449,11.077401],[-15.253235,109.782003,8.035327],[-17.140095,110.127118,5.865677],[-15.527673,109.416135,5.450511],[-15.646282,107.110883,6.151141],[-16.088268,107.500036,8.889364],[-15.700918,107.361081,10.772326],[-15.681730,107.348867,11.035525],[-15.384960,108.595029,11.326829],[-15.822124,106.653379,13.285287],[-17.300113,107.665288,9.902230],[-19.391477,108.309301,10.046270],[-19.303018,110.112569,6.459010],[-20.474226,107.779355,8.952072],[-19.339306,109.828893,4.472425],[-21.440473,107.341970,4.172427],[-21.412382,105.550374,7.970033],[-21.906683,105.373716,3.665419],[-21.707796,103.695936,7.291274],[-21.129303,103.949254,2.888673],[-21.413009,101.663419,6.613262],[-20.227808,101.115400,6.210401],[-20.087013,99.714116,9.242539],[-20.898327,100.048192,9.726033],[-19.561039,99.148816,10.873832],[-20.173420,99.361554,11.353659],[-20.029032,99.260755,11.550066],[-19.427944,99.058339,11.082860],[-18.541466,98.547078,12.103547],[-18.913231,98.576169,12.682586],[-18.696392,98.494451,12.780204],[-18.331711,98.466924,12.214770],[-16.478500,97.969503,12.530231],[-16.839775,98.042547,13.022261],[-16.236345,98.763677,12.870339],[-16.432153,98.941877,12.327119],[-18.029733,99.439061,12.668081],[-17.686348,99.484258,12.180803],[-16.644792,98.295606,12.045145],[-17.958942,98.663427,11.784262],[-18.158180,98.752553,11.662123],[-18.765171,99.241811,10.771710],[-18.883901,99.342122,10.559946],[-19.290918,99.953618,8.921368],[-19.023973,101.144628,5.979714],[-18.777757,101.385610,9.807063],[-17.692201,102.967252,6.270048],[-17.082554,104.542852,2.264254],[-16.891660,105.931081,3.228840],[-17.424106,104.983350,1.269008],[-17.353000,106.536832,1.728292],[-18.146864,106.550214,-1.521038],[-18.007843,107.919957,-0.760724],[-18.356216,109.143789,-3.797598],[-18.144474,110.358320,-2.744454],[-17.435518,111.210935,-2.007108],[-17.351887,108.933050,-0.272053],[-17.564636,110.254430,0.490653],[-17.582784,112.393003,-0.980873],[-18.921661,110.794500,0.697302],[-18.775858,113.053792,-0.403305],[-20.325208,110.899938,1.218221],[-20.370317,113.153570,-0.311132],[-22.116606,108.912542,0.525079],[-22.138574,111.769391,-1.505997],[-22.601049,107.468458,-0.352633],[-22.807340,110.267888,-2.806552],[-22.311485,108.874669,-4.017256],[-21.959142,106.117315,-1.300521],[-21.123499,108.574651,-4.281760],[-20.835592,105.717000,-1.661573],[-19.680692,108.495000,-4.355931],[-19.421839,105.735662,-1.835799],[-18.648123,103.990804,1.210120],[-18.405477,103.473737,2.201717],[-19.914526,103.395864,2.478308],[-21.100616,104.397992,1.902757],[-21.859884,105.724637,2.646134],[-21.373037,107.699773,3.151117],[-19.757541,109.712720,3.255094],[-17.684921,109.754453,3.972276],[-18.230839,109.819852,2.941693],[-16.305786,109.058873,3.485865],[-17.030172,109.166990,2.465478],[-16.206915,107.429097,2.969551],[-17.238277,105.938512,7.137894],[-17.005394,106.896413,11.716037],[-17.802887,107.151769,12.476093],[-18.955890,107.076848,12.749016],[-20.145098,105.243940,12.296831],[-20.604898,103.365728,11.474149],[-20.927927,101.679120,10.413802],[-20.157774,100.297994,11.780304],[-20.002632,100.154691,11.943976],[-18.699781,99.321218,13.027715],[-18.482834,99.219159,13.108452],[-16.732637,98.600759,13.240109],[-18.234077,99.547979,12.569238],[-17.876472,99.602178,12.070477],[-18.577081,100.365484,11.151882],[-19.249695,100.350942,11.543097],[-19.379507,100.493779,11.363208],[-18.680912,100.514005,10.957103],[-19.726612,101.437154,10.260779],[-19.060463,100.350698,12.344161],[-18.231750,100.610158,11.929081],[-18.931328,100.226171,12.535594],[-18.111582,100.498372,12.134721],[-17.710590,99.383298,13.678110],[-19.681253,100.378026,13.060406],[-18.194422,99.389242,14.323338],[-17.974642,99.289609,14.423416],[-17.502672,99.281370,13.795191],[-15.614925,98.701970,14.290801],[-16.089884,98.736585,14.744028],[-15.378454,99.756139,14.739011],[-15.892437,99.438024,15.064042],[-17.663522,100.287786,14.886025],[-17.874458,100.415380,14.804406],[-19.339926,101.545690,13.692025],[-19.825092,100.497945,12.875516],[-19.481334,101.694608,13.528543],[-18.454691,101.748723,13.225096],[-18.580860,101.895147,13.046822],[-17.733442,101.526006,12.689787],[-17.848922,101.676977,12.508753],[-18.552519,103.172391,10.656786],[-19.300956,103.134054,11.315957],[-18.642998,101.781682,13.782135],[-17.833067,101.878637,13.351225],[-18.514137,101.663030,13.975728],[-17.711900,101.766973,13.553395],[-16.856716,100.560003,15.512971],[-19.325298,101.862378,14.547081],[-17.377937,100.646985,16.136184],[-17.167417,100.542333,16.260340],[-16.660862,100.452550,15.654488],[-14.657058,99.524946,16.790709],[-15.132171,99.664281,17.210006],[-14.309313,100.659551,17.316164],[-14.926023,100.415227,17.538051],[-16.871086,101.547048,16.711810],[-17.072250,101.676061,16.598858],[-19.018776,103.134618,14.999399],[-19.474006,101.971868,14.361503],[-19.152965,103.282110,14.827841],[-18.107536,103.363263,14.573289],[-18.227255,103.504308,14.388827],[-17.397117,103.068532,14.015913],[-17.509561,103.210729,13.825817],[-18.328951,105.132016,11.138188],[-18.912618,105.008031,12.088888],[-18.116609,103.863820,14.150977],[-18.913763,103.983846,14.842832],[-18.751671,103.864782,15.007713],[-17.972173,103.736493,14.325461],[-16.464096,102.687780,15.398816],[-16.932861,102.716306,16.071064],[-16.717418,102.592733,16.167718],[-16.263988,102.559224,15.515820],[-14.243545,101.368390,16.443160],[-14.731669,101.515951,16.866750],[-13.840182,102.551931,17.034362],[-14.439954,102.341977,17.287196],[-16.222666,103.614324,16.529238],[-16.418388,103.760152,16.427095],[-18.106046,105.115209,15.311881],[-18.240598,105.269239,15.149769],[-17.442215,105.501714,14.702678],[-16.830822,105.350789,14.131682],[-17.317041,104.020223,13.648960],[-17.178892,103.900014,13.832962],[-16.728012,105.198095,14.317910],[-17.325893,105.345220,14.875042],[-15.903866,104.069043,16.012065],[-15.553482,103.999852,15.465861],[-15.946007,102.936078,14.922833],[-15.759891,102.803434,15.055195],[-15.377247,103.847890,15.591416],[-15.717840,103.920995,16.127890],[-13.746759,102.597524,16.425278],[-14.054888,101.718900,15.979717],[-17.494846,104.361234,6.879537],[-16.753874,107.702550,1.964251],[-20.028744,103.880521,1.489626],[-16.321850,100.792196,15.058822],[-16.005626,101.882100,15.543110],[-16.466470,102.018361,16.127744],[-16.278362,101.886510,16.259129],[-15.828163,101.754941,15.690860],[-16.139147,100.683599,15.214379],[-14.424968,99.827512,16.338414],[-14.125029,100.703954,16.770057],[-17.210897,99.787870,13.221070],[-16.908777,100.678686,13.654345],[-17.339119,100.766485,14.269848],[-17.139124,100.636167,14.373918],[-16.722646,100.541707,13.771882],[-17.015281,99.681203,13.352841],[-15.548679,99.189962,13.839915],[-15.366236,99.755727,14.110650]], + + 'uvs': [[0.640670,0.530275,0.630557,0.534924,0.631820,0.538257],[0.640670,0.530275,0.637860,0.527896,0.630557,0.534924],[0.637860,0.527896,0.640670,0.530275,0.642922,0.506717],[0.516116,0.018815,0.516878,0.015738,0.502577,0.011020],[0.516116,0.018815,0.528663,0.016514,0.516878,0.015738],[0.516116,0.018815,0.528663,0.019620,0.528663,0.016514],[0.528663,0.019620,0.516116,0.018815,0.513075,0.038795],[0.513075,0.038795,0.516116,0.018815,0.501865,0.014232],[0.516116,0.018815,0.502577,0.011020,0.501865,0.014232],[0.502577,0.011020,0.488634,0.008958,0.501865,0.014232],[0.488634,0.008958,0.502577,0.011020,0.492504,0.006211],[0.642922,0.506717,0.640670,0.530275,0.645468,0.506717],[0.645468,0.506717,0.640670,0.530275,0.654573,0.536610],[0.640670,0.530275,0.631820,0.538257,0.654573,0.536610],[0.631820,0.538257,0.650532,0.566337,0.654573,0.536610],[0.631820,0.538257,0.620774,0.546977,0.650532,0.566337],[0.631820,0.538257,0.620774,0.541736,0.620774,0.546977],[0.630557,0.534924,0.620774,0.541736,0.631820,0.538257],[0.033936,0.018815,0.033174,0.015738,0.021389,0.016514],[0.033936,0.018815,0.047475,0.011020,0.033174,0.015738],[0.033936,0.018815,0.048187,0.014232,0.047475,0.011020],[0.033936,0.018815,0.036977,0.038795,0.048187,0.014232],[0.021389,0.019620,0.036977,0.038795,0.033936,0.018815],[0.021389,0.019620,0.021389,0.039948,0.036977,0.038795],[0.528663,0.019620,0.513075,0.038795,0.528663,0.039948],[0.512760,0.041572,0.528663,0.039948,0.513075,0.038795],[0.512760,0.041572,0.528663,0.043046,0.528663,0.039948],[0.512760,0.041572,0.505389,0.066884,0.528663,0.043046],[0.505389,0.066884,0.512760,0.041572,0.481066,0.058744],[0.481066,0.058744,0.512760,0.041572,0.496061,0.035312],[0.496061,0.035312,0.512760,0.041572,0.513075,0.038795],[0.496061,0.035312,0.513075,0.038795,0.498586,0.032397],[0.513075,0.038795,0.501865,0.014232,0.498586,0.032397],[0.498586,0.032397,0.501865,0.014232,0.486375,0.021420],[0.501865,0.014232,0.488634,0.008958,0.486375,0.021420],[0.653424,0.506717,0.645468,0.506717,0.654573,0.536610],[0.307083,0.040380,0.308825,0.070260,0.308820,0.040367],[0.334638,0.075019,0.308820,0.040367,0.308825,0.070260],[0.330357,0.040367,0.308820,0.040367,0.334638,0.075019],[0.467408,0.029325,0.496061,0.035312,0.481673,0.022535],[0.481066,0.058744,0.496061,0.035312,0.467408,0.029325],[0.481066,0.058744,0.467408,0.029325,0.467438,0.033960],[0.330357,0.040367,0.334638,0.075019,0.332384,0.040367],[0.346385,0.040367,0.332384,0.040367,0.334638,0.075019],[0.462997,0.061678,0.467438,0.033960,0.454992,0.033914],[0.462997,0.061678,0.479446,0.060338,0.467438,0.033960],[0.479446,0.060338,0.462997,0.061678,0.467172,0.099144],[0.462997,0.061678,0.454814,0.099702,0.467172,0.099144],[0.446549,0.063019,0.454814,0.099702,0.462997,0.061678],[0.454814,0.099702,0.446549,0.063019,0.442457,0.100260],[0.446549,0.063019,0.430100,0.064359,0.442457,0.100260],[0.430100,0.064359,0.446549,0.063019,0.442546,0.033868],[0.446549,0.063019,0.454992,0.033914,0.442546,0.033868],[0.446549,0.063019,0.462997,0.061678,0.454992,0.033914],[0.360385,0.040367,0.346385,0.040367,0.347888,0.075418],[0.346385,0.040367,0.334638,0.075019,0.347888,0.075418],[0.334638,0.075019,0.339526,0.104457,0.347888,0.075418],[0.334638,0.075019,0.304745,0.101696,0.339526,0.104457],[0.334638,0.075019,0.308825,0.070260,0.304745,0.101696],[0.304745,0.101696,0.342998,0.139258,0.339526,0.104457],[0.304745,0.101696,0.307570,0.142468,0.342998,0.139258],[0.304745,0.101696,0.275026,0.139737,0.307570,0.142468],[0.304745,0.101696,0.275026,0.101696,0.275026,0.139737],[0.620774,0.546977,0.620774,0.566337,0.650532,0.566337],[0.620774,0.546977,0.591686,0.566337,0.620774,0.566337],[0.609729,0.538257,0.591686,0.566337,0.620774,0.546977],[0.609729,0.538257,0.586975,0.536610,0.591686,0.566337],[0.600879,0.530275,0.586975,0.536610,0.609729,0.538257],[0.596080,0.506717,0.586975,0.536610,0.600879,0.530275],[0.588125,0.506717,0.586975,0.536610,0.596080,0.506717],[0.243349,0.040401,0.241232,0.040367,0.241227,0.070260],[0.051466,0.032397,0.068379,0.022535,0.063677,0.021420],[0.051466,0.032397,0.053991,0.035312,0.068379,0.022535],[0.036977,0.038795,0.053991,0.035312,0.051466,0.032397],[0.037292,0.041572,0.053991,0.035312,0.036977,0.038795],[0.037292,0.041572,0.068986,0.058744,0.053991,0.035312],[0.037292,0.041572,0.044663,0.066884,0.068986,0.058744],[0.037292,0.041572,0.021389,0.043046,0.044663,0.066884],[0.021389,0.043046,0.037292,0.041572,0.021389,0.039948],[0.021389,0.039948,0.037292,0.041572,0.036977,0.038795],[0.021389,0.043046,0.021389,0.069656,0.044663,0.066884],[0.528663,0.043046,0.505389,0.066884,0.528663,0.069656],[0.505389,0.066884,0.504744,0.070165,0.528663,0.069656],[0.504744,0.070165,0.505389,0.066884,0.479446,0.060338],[0.505389,0.066884,0.481066,0.058744,0.479446,0.060338],[0.479446,0.060338,0.481066,0.058744,0.467438,0.033960],[0.467172,0.099144,0.504744,0.070165,0.479446,0.060338],[0.504744,0.070165,0.467172,0.099144,0.502865,0.099698],[0.502865,0.099698,0.467172,0.099144,0.465189,0.134023],[0.467172,0.099144,0.454814,0.099702,0.465189,0.134023],[0.454814,0.099702,0.453493,0.132838,0.465189,0.134023],[0.454814,0.099702,0.442457,0.100260,0.453493,0.132838],[0.453493,0.132838,0.442457,0.100260,0.441796,0.131654],[0.441796,0.131654,0.442457,0.100260,0.430100,0.130470],[0.442457,0.100260,0.430100,0.100818,0.430100,0.130470],[0.442457,0.100260,0.430100,0.064359,0.430100,0.100818],[0.578039,0.098326,0.593411,0.098326,0.578039,0.077282],[0.593411,0.098326,0.578039,0.098326,0.593411,0.122401],[0.578039,0.098326,0.578039,0.122401,0.593411,0.122401],[0.430100,0.033822,0.430100,0.064359,0.442546,0.033868],[0.374386,0.040367,0.360385,0.040367,0.361137,0.075818],[0.360385,0.040367,0.347888,0.075418,0.361137,0.075818],[0.347888,0.075418,0.351146,0.104557,0.361137,0.075818],[0.347888,0.075418,0.339526,0.104457,0.351146,0.104557],[0.339526,0.104457,0.353461,0.138090,0.351146,0.104557],[0.339526,0.104457,0.342998,0.139258,0.353461,0.138090],[0.353461,0.138090,0.342998,0.139258,0.353845,0.167533],[0.342998,0.139258,0.343575,0.170347,0.353845,0.167533],[0.342998,0.139258,0.308837,0.173321,0.343575,0.170347],[0.342998,0.139258,0.307570,0.142468,0.308837,0.173321],[0.307570,0.142468,0.275026,0.171872,0.308837,0.173321],[0.275026,0.139737,0.275026,0.171872,0.307570,0.142468],[0.275026,0.139737,0.242483,0.142468,0.275026,0.171872],[0.245954,0.101696,0.242483,0.142468,0.275026,0.139737],[0.245954,0.101696,0.207054,0.139258,0.242483,0.142468],[0.245954,0.101696,0.210526,0.104457,0.207054,0.139258],[0.245954,0.101696,0.215414,0.075019,0.210526,0.104457],[0.241227,0.070260,0.215414,0.075019,0.245954,0.101696],[0.241232,0.040367,0.215414,0.075019,0.241227,0.070260],[0.241232,0.040367,0.219695,0.040367,0.215414,0.075019],[0.053991,0.035312,0.082644,0.029325,0.068379,0.022535],[0.053991,0.035312,0.068986,0.058744,0.082644,0.029325],[0.068986,0.058744,0.082614,0.033960,0.082644,0.029325],[0.070606,0.060338,0.082614,0.033960,0.068986,0.058744],[0.070606,0.060338,0.087055,0.061678,0.082614,0.033960],[0.070606,0.060338,0.082880,0.099144,0.087055,0.061678],[0.070606,0.060338,0.045308,0.070165,0.082880,0.099144],[0.044663,0.066884,0.045308,0.070165,0.070606,0.060338],[0.021389,0.069656,0.045308,0.070165,0.044663,0.066884],[0.021389,0.069656,0.021389,0.073284,0.045308,0.070165],[0.528663,0.069656,0.504744,0.070165,0.528663,0.073284],[0.504744,0.070165,0.502865,0.099698,0.528663,0.073284],[0.528663,0.073284,0.502865,0.099698,0.528663,0.098681],[0.502865,0.099698,0.498271,0.135241,0.528663,0.098681],[0.502865,0.099698,0.465189,0.134023,0.498271,0.135241],[0.465189,0.134023,0.467202,0.165863,0.498271,0.135241],[0.465189,0.134023,0.454834,0.164544,0.467202,0.165863],[0.453493,0.132838,0.454834,0.164544,0.465189,0.134023],[0.453493,0.132838,0.442467,0.163225,0.454834,0.164544],[0.453493,0.132838,0.441796,0.131654,0.442467,0.163225],[0.441796,0.131654,0.430100,0.161906,0.442467,0.163225],[0.441796,0.131654,0.430100,0.130470,0.430100,0.161906],[0.578039,0.057673,0.593411,0.057673,0.578039,0.036612],[0.578039,0.077282,0.593411,0.057673,0.578039,0.057673],[0.578039,0.077282,0.593411,0.077282,0.593411,0.057673],[0.578039,0.077282,0.593411,0.098326,0.593411,0.077282],[0.593411,0.077282,0.593411,0.098326,0.611196,0.098326],[0.611196,0.098326,0.593411,0.098326,0.611196,0.122401],[0.593411,0.098326,0.593411,0.122401,0.611196,0.122401],[0.611196,0.122401,0.593411,0.122401,0.611196,0.144791],[0.593411,0.122401,0.593411,0.144791,0.611196,0.144791],[0.593411,0.122401,0.578039,0.122401,0.593411,0.144791],[0.578039,0.122401,0.578039,0.144791,0.593411,0.144791],[0.374386,0.040367,0.361137,0.075818,0.374386,0.076217],[0.361137,0.075818,0.374386,0.104756,0.374386,0.076217],[0.361137,0.075818,0.362766,0.104657,0.374386,0.104756],[0.361137,0.075818,0.351146,0.104557,0.362766,0.104657],[0.351146,0.104557,0.363924,0.136922,0.362766,0.104657],[0.351146,0.104557,0.353461,0.138090,0.363924,0.136922],[0.363924,0.136922,0.353461,0.138090,0.364116,0.164720],[0.353461,0.138090,0.353845,0.167533,0.364116,0.164720],[0.364116,0.164720,0.353845,0.167533,0.363159,0.178812],[0.353845,0.167533,0.353032,0.181276,0.363159,0.178812],[0.353845,0.167533,0.343575,0.170347,0.353032,0.181276],[0.343575,0.170347,0.342905,0.183741,0.353032,0.181276],[0.343575,0.170347,0.308837,0.173321,0.342905,0.183741],[0.308837,0.173321,0.308893,0.187488,0.342905,0.183741],[0.308837,0.173321,0.275026,0.187639,0.308893,0.187488],[0.275026,0.171872,0.275026,0.187639,0.308837,0.173321],[0.275026,0.171872,0.241215,0.173321,0.275026,0.187639],[0.242483,0.142468,0.241215,0.173321,0.275026,0.171872],[0.207054,0.139258,0.241215,0.173321,0.242483,0.142468],[0.207054,0.139258,0.206477,0.170347,0.241215,0.173321],[0.556870,0.622183,0.555701,0.653268,0.587680,0.655830],[0.196207,0.167533,0.206477,0.170347,0.207054,0.139258],[0.196207,0.167533,0.197020,0.181276,0.206477,0.170347],[0.186893,0.178812,0.197020,0.181276,0.196207,0.167533],[0.186893,0.178812,0.187851,0.192904,0.197020,0.181276],[0.177867,0.190788,0.187851,0.192904,0.186893,0.178812],[0.177867,0.190788,0.180467,0.232208,0.187851,0.192904],[0.148499,0.188829,0.180467,0.232208,0.177867,0.190788],[0.148499,0.188829,0.152314,0.232208,0.180467,0.232208],[0.120465,0.189155,0.152314,0.232208,0.148499,0.188829],[0.120465,0.189155,0.119747,0.232208,0.152314,0.232208],[0.120465,0.189155,0.107738,0.232208,0.119747,0.232208],[0.120465,0.189155,0.108401,0.190032,0.107738,0.232208],[0.107993,0.176629,0.108401,0.190032,0.120465,0.189155],[0.107993,0.176629,0.095777,0.177727,0.108401,0.190032],[0.095218,0.164544,0.095777,0.177727,0.107993,0.176629],[0.095218,0.164544,0.082850,0.165863,0.095777,0.177727],[0.084863,0.134023,0.082850,0.165863,0.095218,0.164544],[0.084863,0.134023,0.051781,0.135241,0.082850,0.165863],[0.047187,0.099698,0.051781,0.135241,0.084863,0.134023],[0.021389,0.098681,0.051781,0.135241,0.047187,0.099698],[0.021389,0.098681,0.021389,0.135907,0.051781,0.135241],[0.528663,0.098681,0.498271,0.135241,0.528663,0.135907],[0.498271,0.135241,0.501369,0.167377,0.528663,0.135907],[0.498271,0.135241,0.467202,0.165863,0.501369,0.167377],[0.467202,0.165863,0.466490,0.178825,0.501369,0.167377],[0.467202,0.165863,0.454275,0.177727,0.466490,0.178825],[0.467202,0.165863,0.454834,0.164544,0.454275,0.177727],[0.454834,0.164544,0.442059,0.176629,0.454275,0.177727],[0.454834,0.164544,0.442467,0.163225,0.442059,0.176629],[0.442467,0.163225,0.429843,0.175531,0.442059,0.176629],[0.442467,0.163225,0.430100,0.161906,0.429843,0.175531],[0.430100,0.161906,0.404427,0.161906,0.429843,0.175531],[0.578039,0.036612,0.593411,0.036612,0.578039,0.004108],[0.593411,0.057673,0.593411,0.036612,0.578039,0.036612],[0.611196,0.057673,0.593411,0.036612,0.593411,0.057673],[0.593411,0.036612,0.611196,0.057673,0.611196,0.036612],[0.611196,0.057673,0.629763,0.057673,0.611196,0.036612],[0.611196,0.057673,0.629763,0.077282,0.629763,0.057673],[0.611196,0.077282,0.629763,0.077282,0.611196,0.057673],[0.629763,0.077282,0.611196,0.077282,0.629763,0.098326],[0.611196,0.077282,0.611196,0.098326,0.629763,0.098326],[0.611196,0.077282,0.593411,0.077282,0.611196,0.098326],[0.593411,0.077282,0.611196,0.077282,0.593411,0.057673],[0.593411,0.057673,0.611196,0.077282,0.611196,0.057673],[0.629763,0.098326,0.611196,0.098326,0.629763,0.122401],[0.611196,0.098326,0.611196,0.122401,0.629763,0.122401],[0.629763,0.122401,0.611196,0.122401,0.629763,0.144791],[0.611196,0.122401,0.611196,0.144791,0.629763,0.144791],[0.611196,0.144791,0.629763,0.165701,0.629763,0.144791],[0.611196,0.144791,0.611196,0.165701,0.629763,0.165701],[0.593411,0.144791,0.611196,0.165701,0.611196,0.144791],[0.593411,0.144791,0.593411,0.165701,0.611196,0.165701],[0.578039,0.144791,0.593411,0.165701,0.593411,0.144791],[0.578039,0.144791,0.578039,0.165701,0.593411,0.165701],[0.578039,0.165701,0.593411,0.185252,0.593411,0.165701],[0.593411,0.185252,0.578039,0.165701,0.578039,0.185252],[0.362766,0.104657,0.374386,0.135754,0.374386,0.104756],[0.362766,0.104657,0.363924,0.136922,0.374386,0.135754],[0.363924,0.136922,0.374386,0.161906,0.374386,0.135754],[0.363924,0.136922,0.364116,0.164720,0.374386,0.161906],[0.374386,0.161906,0.364116,0.164720,0.373286,0.176347],[0.364116,0.164720,0.363159,0.178812,0.373286,0.176347],[0.373286,0.176347,0.363159,0.178812,0.372185,0.190788],[0.363159,0.178812,0.362201,0.192904,0.372185,0.190788],[0.363159,0.178812,0.353032,0.181276,0.362201,0.192904],[0.353032,0.181276,0.352218,0.195019,0.362201,0.192904],[0.353032,0.181276,0.342905,0.183741,0.352218,0.195019],[0.342905,0.183741,0.342234,0.197135,0.352218,0.195019],[0.342905,0.183741,0.308893,0.187488,0.342234,0.197135],[0.308893,0.187488,0.308948,0.201655,0.342234,0.197135],[0.308893,0.187488,0.275026,0.187639,0.308948,0.201655],[0.275026,0.187639,0.275026,0.203405,0.308948,0.201655],[0.275026,0.187639,0.241104,0.201655,0.275026,0.203405],[0.275026,0.187639,0.241159,0.187488,0.241104,0.201655],[0.241215,0.173321,0.241159,0.187488,0.275026,0.187639],[0.241215,0.173321,0.207148,0.183741,0.241159,0.187488],[0.206477,0.170347,0.207148,0.183741,0.241215,0.173321],[0.197020,0.181276,0.207148,0.183741,0.206477,0.170347],[0.197020,0.181276,0.197834,0.195019,0.207148,0.183741],[0.187851,0.192904,0.197834,0.195019,0.197020,0.181276],[0.187851,0.192904,0.190111,0.232208,0.197834,0.195019],[0.187851,0.192904,0.180467,0.232208,0.190111,0.232208],[0.180467,0.232208,0.181544,0.279386,0.190111,0.232208],[0.152314,0.232208,0.181544,0.279386,0.180467,0.232208],[0.152314,0.232208,0.153167,0.279386,0.181544,0.279386],[0.119747,0.232208,0.153167,0.279386,0.152314,0.232208],[0.119747,0.232208,0.121415,0.279386,0.153167,0.279386],[0.119747,0.232208,0.109176,0.279386,0.121415,0.279386],[0.107738,0.232208,0.109176,0.279386,0.119747,0.232208],[0.107738,0.232208,0.096937,0.279386,0.109176,0.279386],[0.095729,0.232208,0.096937,0.279386,0.107738,0.232208],[0.095729,0.232208,0.084698,0.279386,0.096937,0.279386],[0.083719,0.232208,0.084698,0.279386,0.095729,0.232208],[0.049312,0.232208,0.084698,0.279386,0.083719,0.232208],[0.049312,0.232208,0.049215,0.279386,0.084698,0.279386],[0.021389,0.232208,0.049215,0.279386,0.049312,0.232208],[0.021389,0.232208,0.021389,0.279386,0.049215,0.279386],[0.528663,0.232208,0.500837,0.279386,0.528663,0.279386],[0.500740,0.232208,0.500837,0.279386,0.528663,0.232208],[0.500740,0.232208,0.465354,0.279386,0.500837,0.279386],[0.466333,0.232208,0.465354,0.279386,0.500740,0.232208],[0.465354,0.279386,0.466333,0.232208,0.454323,0.232208],[0.466333,0.232208,0.453715,0.190910,0.454323,0.232208],[0.466333,0.232208,0.465779,0.191788,0.453715,0.190910],[0.465779,0.191788,0.466333,0.232208,0.500042,0.193714],[0.500042,0.193714,0.466333,0.232208,0.500740,0.232208],[0.500042,0.193714,0.500740,0.232208,0.528663,0.195165],[0.528663,0.195165,0.500740,0.232208,0.528663,0.232208],[0.021389,0.195165,0.021389,0.232208,0.049312,0.232208],[0.021389,0.195165,0.049312,0.232208,0.050010,0.193714],[0.050010,0.193714,0.049312,0.232208,0.083719,0.232208],[0.084273,0.191788,0.050010,0.193714,0.083719,0.232208],[0.049346,0.180546,0.050010,0.193714,0.084273,0.191788],[0.049346,0.180546,0.021389,0.195165,0.050010,0.193714],[0.049346,0.180546,0.021389,0.181510,0.021389,0.195165],[0.021389,0.167855,0.021389,0.181510,0.049346,0.180546],[0.528663,0.167855,0.500706,0.180546,0.528663,0.181510],[0.501369,0.167377,0.500706,0.180546,0.528663,0.167855],[0.501369,0.167377,0.466490,0.178825,0.500706,0.180546],[0.466490,0.178825,0.465779,0.191788,0.500706,0.180546],[0.466490,0.178825,0.454275,0.177727,0.465779,0.191788],[0.465779,0.191788,0.454275,0.177727,0.453715,0.190910],[0.454275,0.177727,0.441651,0.190032,0.453715,0.190910],[0.454275,0.177727,0.442059,0.176629,0.441651,0.190032],[0.442059,0.176629,0.429587,0.189155,0.441651,0.190032],[0.442059,0.176629,0.429843,0.175531,0.429587,0.189155],[0.429843,0.175531,0.402990,0.175368,0.429587,0.189155],[0.429843,0.175531,0.404427,0.161906,0.402990,0.175368],[0.404427,0.161906,0.374386,0.161906,0.402990,0.175368],[0.578039,0.236631,0.593411,0.206704,0.578039,0.206704],[0.593411,0.236631,0.593411,0.206704,0.578039,0.236631],[0.611196,0.236631,0.593411,0.206704,0.593411,0.236631],[0.593411,0.206704,0.611196,0.236631,0.611196,0.206704],[0.629763,0.236631,0.611196,0.206704,0.611196,0.236631],[0.629763,0.236631,0.629763,0.206704,0.611196,0.206704],[0.664468,0.236631,0.629763,0.206704,0.629763,0.236631],[0.664468,0.236631,0.664468,0.206704,0.629763,0.206704],[0.710904,0.236631,0.664468,0.206704,0.664468,0.236631],[0.710904,0.236631,0.710904,0.206704,0.664468,0.206704],[0.744670,0.236631,0.710904,0.206704,0.710904,0.236631],[0.744670,0.236631,0.744670,0.206704,0.710904,0.206704],[0.744670,0.236631,0.772503,0.236631,0.744670,0.206704],[0.759916,0.036612,0.773537,0.004108,0.744670,0.004108],[0.771967,0.036612,0.773537,0.004108,0.759916,0.036612],[0.771967,0.036612,0.785828,0.036612,0.773537,0.004108],[0.771967,0.036612,0.787625,0.057673,0.785828,0.036612],[0.771967,0.036612,0.771308,0.057673,0.787625,0.057673],[0.759916,0.036612,0.771308,0.057673,0.771967,0.036612],[0.757911,0.057673,0.771308,0.057673,0.759916,0.036612],[0.757911,0.057673,0.771213,0.077282,0.771308,0.057673],[0.757644,0.077282,0.771213,0.077282,0.757911,0.057673],[0.757644,0.077282,0.770986,0.098326,0.771213,0.077282],[0.757644,0.077282,0.758540,0.098326,0.770986,0.098326],[0.744670,0.077282,0.758540,0.098326,0.757644,0.077282],[0.744670,0.077282,0.744670,0.098326,0.758540,0.098326],[0.744670,0.077282,0.710904,0.077282,0.744670,0.098326],[0.710904,0.077282,0.744670,0.077282,0.710904,0.057673],[0.710904,0.057673,0.744670,0.077282,0.744670,0.057673],[0.744670,0.077282,0.757644,0.077282,0.744670,0.057673],[0.744670,0.057673,0.757644,0.077282,0.757911,0.057673],[0.744670,0.057673,0.757911,0.057673,0.744670,0.036612],[0.744670,0.036612,0.757911,0.057673,0.759916,0.036612],[0.759916,0.036612,0.744670,0.004108,0.744670,0.036612],[0.744670,0.036612,0.744670,0.004108,0.710904,0.004108],[0.744670,0.036612,0.710904,0.004108,0.710904,0.036612],[0.710904,0.036612,0.710904,0.004108,0.664468,0.004108],[0.710904,0.036612,0.664468,0.004108,0.664468,0.036612],[0.664468,0.036612,0.664468,0.004108,0.629763,0.004108],[0.664468,0.036612,0.629763,0.004108,0.629763,0.036612],[0.629763,0.036612,0.629763,0.004108,0.611196,0.004108],[0.629763,0.036612,0.611196,0.004108,0.611196,0.036612],[0.611196,0.036612,0.611196,0.004108,0.593411,0.004108],[0.593411,0.036612,0.611196,0.036612,0.593411,0.004108],[0.593411,0.036612,0.593411,0.004108,0.578039,0.004108],[0.611196,0.036612,0.629763,0.057673,0.629763,0.036612],[0.629763,0.057673,0.664468,0.057673,0.629763,0.036612],[0.629763,0.057673,0.664468,0.077282,0.664468,0.057673],[0.629763,0.077282,0.664468,0.077282,0.629763,0.057673],[0.664468,0.077282,0.629763,0.077282,0.664468,0.098326],[0.629763,0.077282,0.629763,0.098326,0.664468,0.098326],[0.664468,0.098326,0.629763,0.098326,0.664468,0.122401],[0.629763,0.098326,0.629763,0.122401,0.664468,0.122401],[0.664468,0.122401,0.629763,0.122401,0.664468,0.144791],[0.629763,0.122401,0.629763,0.144791,0.664468,0.144791],[0.629763,0.144791,0.664468,0.165701,0.664468,0.144791],[0.629763,0.144791,0.629763,0.165701,0.664468,0.165701],[0.629763,0.165701,0.664468,0.185252,0.664468,0.165701],[0.629763,0.165701,0.629763,0.185252,0.664468,0.185252],[0.611196,0.165701,0.629763,0.185252,0.629763,0.165701],[0.611196,0.165701,0.611196,0.185252,0.629763,0.185252],[0.593411,0.165701,0.611196,0.185252,0.611196,0.165701],[0.593411,0.165701,0.593411,0.185252,0.611196,0.185252],[0.593411,0.185252,0.593411,0.206704,0.611196,0.185252],[0.593411,0.206704,0.593411,0.185252,0.578039,0.185252],[0.593411,0.206704,0.578039,0.185252,0.578039,0.206704],[0.611196,0.185252,0.593411,0.206704,0.611196,0.206704],[0.611196,0.185252,0.611196,0.206704,0.629763,0.206704],[0.629763,0.206704,0.629763,0.185252,0.611196,0.185252],[0.664468,0.206704,0.629763,0.185252,0.629763,0.206704],[0.664468,0.206704,0.664468,0.185252,0.629763,0.185252],[0.710904,0.206704,0.664468,0.185252,0.664468,0.206704],[0.710904,0.206704,0.710904,0.185252,0.664468,0.185252],[0.744670,0.206704,0.710904,0.185252,0.710904,0.206704],[0.744670,0.206704,0.744670,0.185252,0.710904,0.185252],[0.769841,0.206704,0.744670,0.185252,0.744670,0.206704],[0.769841,0.206704,0.768282,0.185252,0.744670,0.185252],[0.769841,0.206704,0.800728,0.206704,0.768282,0.185252],[0.772503,0.236631,0.800728,0.206704,0.769841,0.206704],[0.772503,0.236631,0.800728,0.236631,0.800728,0.206704],[0.773537,0.004108,0.800728,0.036612,0.800728,0.004108],[0.785828,0.036612,0.800728,0.036612,0.773537,0.004108],[0.785828,0.036612,0.800728,0.057673,0.800728,0.036612],[0.785828,0.036612,0.787625,0.057673,0.800728,0.057673],[0.787625,0.057673,0.800728,0.077282,0.800728,0.057673],[0.787570,0.077282,0.800728,0.077282,0.787625,0.057673],[0.787570,0.077282,0.800728,0.098326,0.800728,0.077282],[0.787570,0.077282,0.784899,0.098326,0.800728,0.098326],[0.771213,0.077282,0.784899,0.098326,0.787570,0.077282],[0.771213,0.077282,0.770986,0.098326,0.784899,0.098326],[0.770986,0.098326,0.769679,0.122401,0.784899,0.098326],[0.758540,0.098326,0.769679,0.122401,0.770986,0.098326],[0.744670,0.098326,0.769679,0.122401,0.758540,0.098326],[0.744670,0.098326,0.744670,0.122401,0.769679,0.122401],[0.744670,0.098326,0.710904,0.098326,0.744670,0.122401],[0.710904,0.077282,0.710904,0.098326,0.744670,0.098326],[0.710904,0.077282,0.664468,0.077282,0.710904,0.098326],[0.664468,0.077282,0.710904,0.077282,0.664468,0.057673],[0.664468,0.057673,0.710904,0.077282,0.710904,0.057673],[0.664468,0.057673,0.710904,0.057673,0.664468,0.036612],[0.664468,0.036612,0.710904,0.057673,0.710904,0.036612],[0.710904,0.057673,0.744670,0.057673,0.710904,0.036612],[0.710904,0.036612,0.744670,0.057673,0.744670,0.036612],[0.629763,0.036612,0.664468,0.057673,0.664468,0.036612],[0.664468,0.077282,0.664468,0.098326,0.710904,0.098326],[0.710904,0.098326,0.664468,0.098326,0.710904,0.122401],[0.664468,0.098326,0.664468,0.122401,0.710904,0.122401],[0.710904,0.122401,0.664468,0.122401,0.710904,0.144791],[0.664468,0.122401,0.664468,0.144791,0.710904,0.144791],[0.664468,0.144791,0.710904,0.165701,0.710904,0.144791],[0.664468,0.144791,0.664468,0.165701,0.710904,0.165701],[0.664468,0.165701,0.710904,0.185252,0.710904,0.165701],[0.664468,0.165701,0.664468,0.185252,0.710904,0.185252],[0.710904,0.165701,0.710904,0.185252,0.744670,0.185252],[0.710904,0.165701,0.744670,0.185252,0.744670,0.165701],[0.744670,0.165701,0.744670,0.185252,0.768282,0.185252],[0.744670,0.165701,0.768282,0.185252,0.768194,0.165701],[0.768194,0.165701,0.768282,0.185252,0.800728,0.185252],[0.800728,0.206704,0.800728,0.185252,0.768282,0.185252],[0.800728,0.206704,0.834866,0.206704,0.800728,0.185252],[0.834866,0.236631,0.834866,0.206704,0.800728,0.206704],[0.834866,0.236631,0.877873,0.236631,0.834866,0.206704],[0.834866,0.004108,0.877873,0.036612,0.877873,0.004108],[0.834866,0.036612,0.877873,0.036612,0.834866,0.004108],[0.834866,0.036612,0.877873,0.057673,0.877873,0.036612],[0.834866,0.036612,0.834866,0.057673,0.877873,0.057673],[0.800728,0.036612,0.834866,0.057673,0.834866,0.036612],[0.800728,0.036612,0.800728,0.057673,0.834866,0.057673],[0.800728,0.057673,0.834866,0.077282,0.834866,0.057673],[0.800728,0.077282,0.834866,0.077282,0.800728,0.057673],[0.800728,0.077282,0.834866,0.098326,0.834866,0.077282],[0.800728,0.077282,0.800728,0.098326,0.834866,0.098326],[0.800728,0.098326,0.834866,0.121477,0.834866,0.098326],[0.800728,0.098326,0.800728,0.122676,0.834866,0.121477],[0.784899,0.098326,0.800728,0.122676,0.800728,0.098326],[0.784899,0.098326,0.769679,0.122401,0.800728,0.122676],[0.769679,0.122401,0.800728,0.144791,0.800728,0.122676],[0.768916,0.144791,0.800728,0.144791,0.769679,0.122401],[0.768916,0.144791,0.800728,0.165701,0.800728,0.144791],[0.768194,0.165701,0.800728,0.165701,0.768916,0.144791],[0.768194,0.165701,0.800728,0.185252,0.800728,0.165701],[0.800728,0.165701,0.800728,0.185252,0.834866,0.185252],[0.834866,0.206704,0.834866,0.185252,0.800728,0.185252],[0.834866,0.206704,0.877873,0.206704,0.834866,0.185252],[0.877873,0.236631,0.877873,0.206704,0.834866,0.206704],[0.877873,0.236631,0.914315,0.236631,0.877873,0.206704],[0.914315,0.036612,0.914315,0.004108,0.877873,0.004108],[0.914315,0.036612,0.948307,0.036612,0.914315,0.004108],[0.914315,0.036612,0.948307,0.057673,0.948307,0.036612],[0.914315,0.036612,0.914315,0.057673,0.948307,0.057673],[0.877873,0.036612,0.914315,0.057673,0.914315,0.036612],[0.877873,0.036612,0.877873,0.057673,0.914315,0.057673],[0.877873,0.057673,0.914315,0.077282,0.914315,0.057673],[0.877873,0.077282,0.914315,0.077282,0.877873,0.057673],[0.877873,0.077282,0.914315,0.098326,0.914315,0.077282],[0.877873,0.077282,0.877873,0.098326,0.914315,0.098326],[0.834866,0.077282,0.877873,0.098326,0.877873,0.077282],[0.834866,0.077282,0.834866,0.098326,0.877873,0.098326],[0.834866,0.098326,0.877873,0.121879,0.877873,0.098326],[0.834866,0.098326,0.834866,0.121477,0.877873,0.121879],[0.834866,0.121477,0.877873,0.144791,0.877873,0.121879],[0.834866,0.144791,0.877873,0.144791,0.834866,0.121477],[0.834866,0.144791,0.877873,0.165701,0.877873,0.144791],[0.834866,0.165701,0.877873,0.165701,0.834866,0.144791],[0.834866,0.165701,0.877873,0.185252,0.877873,0.165701],[0.834866,0.165701,0.834866,0.185252,0.877873,0.185252],[0.800728,0.165701,0.834866,0.185252,0.834866,0.165701],[0.800728,0.165701,0.834866,0.165701,0.800728,0.144791],[0.800728,0.144791,0.834866,0.165701,0.834866,0.144791],[0.800728,0.144791,0.834866,0.144791,0.800728,0.122676],[0.800728,0.122676,0.834866,0.144791,0.834866,0.121477],[0.877873,0.206704,0.877873,0.185252,0.834866,0.185252],[0.877873,0.206704,0.914315,0.206704,0.877873,0.185252],[0.914315,0.236631,0.914315,0.206704,0.877873,0.206704],[0.914315,0.236631,0.948307,0.236631,0.914315,0.206704],[0.914315,0.004108,0.948307,0.036612,0.948307,0.004108],[0.963121,0.036612,0.948307,0.004108,0.948307,0.036612],[0.963121,0.036612,0.963121,0.004108,0.948307,0.004108],[0.963121,0.004108,0.963121,0.036612,0.986738,0.036612],[0.963121,0.036612,0.986738,0.057673,0.986738,0.036612],[0.963121,0.036612,0.963121,0.057673,0.986738,0.057673],[0.963121,0.036612,0.948307,0.036612,0.963121,0.057673],[0.963121,0.057673,0.948307,0.036612,0.948307,0.057673],[0.963121,0.077282,0.963121,0.057673,0.948307,0.057673],[0.963121,0.077282,0.986738,0.077282,0.963121,0.057673],[0.963121,0.077282,0.986738,0.098326,0.986738,0.077282],[0.963121,0.077282,0.963121,0.098326,0.986738,0.098326],[0.948307,0.077282,0.963121,0.098326,0.963121,0.077282],[0.948307,0.077282,0.948307,0.098326,0.963121,0.098326],[0.914315,0.077282,0.948307,0.098326,0.948307,0.077282],[0.914315,0.077282,0.914315,0.098326,0.948307,0.098326],[0.914315,0.098326,0.948307,0.122443,0.948307,0.098326],[0.914315,0.098326,0.914315,0.122125,0.948307,0.122443],[0.877873,0.098326,0.914315,0.122125,0.914315,0.098326],[0.877873,0.098326,0.877873,0.121879,0.914315,0.122125],[0.877873,0.121879,0.914315,0.144791,0.914315,0.122125],[0.877873,0.144791,0.914315,0.144791,0.877873,0.121879],[0.877873,0.144791,0.914315,0.165701,0.914315,0.144791],[0.877873,0.165701,0.914315,0.165701,0.877873,0.144791],[0.877873,0.165701,0.914315,0.185252,0.914315,0.165701],[0.877873,0.165701,0.877873,0.185252,0.914315,0.185252],[0.914315,0.206704,0.914315,0.185252,0.877873,0.185252],[0.914315,0.206704,0.948307,0.206704,0.914315,0.185252],[0.948307,0.236631,0.948307,0.206704,0.914315,0.206704],[0.963121,0.236631,0.948307,0.206704,0.948307,0.236631],[0.963121,0.236631,0.963121,0.206704,0.948307,0.206704],[0.963121,0.236631,0.986738,0.236631,0.963121,0.206704],[0.963121,0.004108,0.986738,0.036612,0.986738,0.004108],[0.692389,0.852334,0.692391,0.830957,0.672401,0.835305],[0.692389,0.852334,0.712380,0.835307,0.692391,0.830957],[0.692389,0.852334,0.724733,0.846694,0.712380,0.835307],[0.692389,0.852334,0.724733,0.860767,0.724733,0.846694],[0.712378,0.872153,0.724733,0.860767,0.692389,0.852334],[0.963121,0.144791,0.986738,0.165701,0.986738,0.144791],[0.963121,0.165701,0.986738,0.165701,0.963121,0.144791],[0.963121,0.165701,0.986738,0.185252,0.986738,0.165701],[0.963121,0.165701,0.963121,0.185252,0.986738,0.185252],[0.963121,0.165701,0.948307,0.165701,0.963121,0.185252],[0.948307,0.144791,0.948307,0.165701,0.963121,0.165701],[0.914315,0.144791,0.948307,0.165701,0.948307,0.144791],[0.914315,0.165701,0.948307,0.165701,0.914315,0.144791],[0.914315,0.165701,0.948307,0.185252,0.948307,0.165701],[0.914315,0.165701,0.914315,0.185252,0.948307,0.185252],[0.948307,0.206704,0.948307,0.185252,0.914315,0.185252],[0.963121,0.206704,0.948307,0.185252,0.948307,0.206704],[0.963121,0.185252,0.948307,0.185252,0.963121,0.206704],[0.948307,0.165701,0.948307,0.185252,0.963121,0.185252],[0.963121,0.206704,0.986738,0.206704,0.963121,0.185252],[0.986738,0.236631,0.986738,0.206704,0.963121,0.206704],[0.986738,0.206704,0.986738,0.185252,0.963121,0.185252],[0.914315,0.144791,0.948307,0.144791,0.914315,0.122125],[0.914315,0.122125,0.948307,0.144791,0.948307,0.122443],[0.948307,0.122443,0.948307,0.144791,0.963121,0.144791],[0.963121,0.144791,0.948307,0.144791,0.963121,0.165701],[0.948307,0.122443,0.963121,0.144791,0.963121,0.122510],[0.963121,0.144791,0.986738,0.144791,0.963121,0.122510],[0.963121,0.122510,0.986738,0.144791,0.986738,0.122624],[0.692388,0.876502,0.712378,0.872153,0.692389,0.852334],[0.672399,0.872151,0.692388,0.876502,0.692389,0.852334],[0.963121,0.098326,0.986738,0.122624,0.986738,0.098326],[0.963121,0.098326,0.963121,0.122510,0.986738,0.122624],[0.963121,0.098326,0.948307,0.098326,0.963121,0.122510],[0.948307,0.098326,0.948307,0.122443,0.963121,0.122510],[0.672399,0.872151,0.692389,0.852334,0.660045,0.860764],[0.660045,0.860764,0.692389,0.852334,0.660047,0.846690],[0.660047,0.846690,0.692389,0.852334,0.672401,0.835305],[0.963121,0.057673,0.986738,0.077282,0.986738,0.057673],[0.914315,0.077282,0.948307,0.077282,0.914315,0.057673],[0.914315,0.057673,0.948307,0.077282,0.948307,0.057673],[0.963121,0.077282,0.948307,0.057673,0.948307,0.077282],[0.834866,0.077282,0.877873,0.077282,0.834866,0.057673],[0.834866,0.057673,0.877873,0.077282,0.877873,0.057673],[0.877873,0.004108,0.877873,0.036612,0.914315,0.036612],[0.744670,0.144791,0.768194,0.165701,0.768916,0.144791],[0.744670,0.144791,0.744670,0.165701,0.768194,0.165701],[0.710904,0.144791,0.744670,0.165701,0.744670,0.144791],[0.710904,0.144791,0.710904,0.165701,0.744670,0.165701],[0.710904,0.122401,0.710904,0.144791,0.744670,0.144791],[0.744670,0.122401,0.710904,0.122401,0.744670,0.144791],[0.710904,0.098326,0.710904,0.122401,0.744670,0.122401],[0.744670,0.122401,0.744670,0.144791,0.768916,0.144791],[0.744670,0.122401,0.768916,0.144791,0.769679,0.122401],[0.800728,0.036612,0.834866,0.036612,0.800728,0.004108],[0.834866,0.036612,0.834866,0.004108,0.800728,0.004108],[0.800728,0.236631,0.834866,0.236631,0.800728,0.206704],[0.771213,0.077282,0.787570,0.077282,0.771308,0.057673],[0.771308,0.057673,0.787570,0.077282,0.787625,0.057673],[0.772503,0.236631,0.769841,0.206704,0.744670,0.206704],[0.402990,0.175368,0.374386,0.161906,0.373286,0.176347],[0.402990,0.175368,0.373286,0.176347,0.401553,0.188829],[0.401553,0.188829,0.373286,0.176347,0.372185,0.190788],[0.401553,0.188829,0.372185,0.190788,0.369585,0.232208],[0.372185,0.190788,0.362201,0.192904,0.369585,0.232208],[0.362201,0.192904,0.359941,0.232208,0.369585,0.232208],[0.362201,0.192904,0.352218,0.195019,0.359941,0.232208],[0.352218,0.195019,0.350296,0.232208,0.359941,0.232208],[0.352218,0.195019,0.342234,0.197135,0.350296,0.232208],[0.342234,0.197135,0.340652,0.232208,0.350296,0.232208],[0.342234,0.197135,0.306314,0.232208,0.340652,0.232208],[0.342234,0.197135,0.308948,0.201655,0.306314,0.232208],[0.308948,0.201655,0.275026,0.232208,0.306314,0.232208],[0.308948,0.201655,0.275026,0.203405,0.275026,0.232208],[0.241104,0.201655,0.275026,0.232208,0.275026,0.203405],[0.241104,0.201655,0.243738,0.232208,0.275026,0.232208],[0.207818,0.197135,0.243738,0.232208,0.241104,0.201655],[0.207818,0.197135,0.209400,0.232208,0.243738,0.232208],[0.555568,0.680311,0.558346,0.716515,0.590347,0.716755],[0.207818,0.197135,0.199756,0.232208,0.209400,0.232208],[0.197834,0.195019,0.199756,0.232208,0.207818,0.197135],[0.197834,0.195019,0.190111,0.232208,0.199756,0.232208],[0.190111,0.232208,0.190696,0.279386,0.199756,0.232208],[0.190111,0.232208,0.181544,0.279386,0.190696,0.279386],[0.181544,0.279386,0.190797,0.304052,0.190696,0.279386],[0.181544,0.279386,0.181386,0.304052,0.190797,0.304052],[0.153167,0.279386,0.181386,0.304052,0.181544,0.279386],[0.153167,0.279386,0.153311,0.304052,0.181386,0.304052],[0.121415,0.279386,0.153311,0.304052,0.153167,0.279386],[0.121415,0.279386,0.120921,0.304052,0.153311,0.304052],[0.109355,0.304052,0.120921,0.304052,0.121415,0.279386],[0.109355,0.304052,0.109263,0.318018,0.120921,0.304052],[0.097770,0.318018,0.109263,0.318018,0.109355,0.304052],[0.097770,0.318018,0.107420,0.352184,0.109263,0.318018],[0.097770,0.318018,0.096562,0.352534,0.107420,0.352184],[0.086277,0.318018,0.096562,0.352534,0.097770,0.318018],[0.086277,0.318018,0.085705,0.352884,0.096562,0.352534],[0.086277,0.318018,0.049196,0.318018,0.085705,0.352884],[0.049390,0.304052,0.049196,0.318018,0.086277,0.318018],[0.049390,0.304052,0.021389,0.304052,0.049196,0.318018],[0.021389,0.279386,0.021389,0.304052,0.049390,0.304052],[0.528663,0.279386,0.500662,0.304052,0.528663,0.304052],[0.528663,0.279386,0.500837,0.279386,0.500662,0.304052],[0.500837,0.279386,0.463828,0.304052,0.500662,0.304052],[0.500837,0.279386,0.465354,0.279386,0.463828,0.304052],[0.463828,0.304052,0.465354,0.279386,0.453115,0.279386],[0.465354,0.279386,0.454323,0.232208,0.453115,0.279386],[0.453115,0.279386,0.454323,0.232208,0.442314,0.232208],[0.454323,0.232208,0.441651,0.190032,0.442314,0.232208],[0.453715,0.190910,0.441651,0.190032,0.454323,0.232208],[0.441651,0.190032,0.429587,0.189155,0.442314,0.232208],[0.442314,0.232208,0.429587,0.189155,0.430305,0.232208],[0.429587,0.189155,0.397738,0.232208,0.430305,0.232208],[0.429587,0.189155,0.401553,0.188829,0.397738,0.232208],[0.429587,0.189155,0.402990,0.175368,0.401553,0.188829],[0.401553,0.188829,0.369585,0.232208,0.397738,0.232208],[0.397738,0.232208,0.369585,0.232208,0.368508,0.279386],[0.369585,0.232208,0.359941,0.232208,0.368508,0.279386],[0.359941,0.232208,0.359356,0.279386,0.368508,0.279386],[0.359941,0.232208,0.350296,0.232208,0.359356,0.279386],[0.350296,0.232208,0.350203,0.279386,0.359356,0.279386],[0.350296,0.232208,0.340652,0.232208,0.350203,0.279386],[0.340652,0.232208,0.341050,0.279386,0.350203,0.279386],[0.340652,0.232208,0.305381,0.279386,0.341050,0.279386],[0.340652,0.232208,0.306314,0.232208,0.305381,0.279386],[0.306314,0.232208,0.275026,0.279386,0.305381,0.279386],[0.306314,0.232208,0.275026,0.232208,0.275026,0.279386],[0.275026,0.232208,0.243738,0.232208,0.275026,0.279386],[0.243738,0.232208,0.244671,0.279386,0.275026,0.279386],[0.243738,0.232208,0.209400,0.232208,0.244671,0.279386],[0.209400,0.232208,0.209002,0.279386,0.244671,0.279386],[0.558346,0.716515,0.559682,0.763879,0.591931,0.764000],[0.209400,0.232208,0.199849,0.279386,0.209002,0.279386],[0.199756,0.232208,0.199849,0.279386,0.209400,0.232208],[0.199756,0.232208,0.190696,0.279386,0.199849,0.279386],[0.190696,0.279386,0.190797,0.304052,0.199849,0.279386],[0.190797,0.304052,0.200209,0.304052,0.199849,0.279386],[0.190797,0.304052,0.191245,0.318018,0.200209,0.304052],[0.181386,0.304052,0.191245,0.318018,0.190797,0.304052],[0.181386,0.304052,0.181694,0.318018,0.191245,0.318018],[0.153311,0.304052,0.181694,0.318018,0.181386,0.304052],[0.153311,0.304052,0.153667,0.318018,0.181694,0.318018],[0.120921,0.304052,0.153667,0.318018,0.153311,0.304052],[0.120921,0.304052,0.120756,0.318018,0.153667,0.318018],[0.109263,0.318018,0.120756,0.318018,0.120921,0.304052],[0.109263,0.318018,0.118277,0.351834,0.120756,0.318018],[0.107420,0.352184,0.118277,0.351834,0.109263,0.318018],[0.107420,0.352184,0.118046,0.369077,0.118277,0.351834],[0.107392,0.370376,0.118046,0.369077,0.107420,0.352184],[0.107392,0.370376,0.117655,0.388788,0.118046,0.369077],[0.107392,0.370376,0.106421,0.391892,0.117655,0.388788],[0.096737,0.371675,0.106421,0.391892,0.107392,0.370376],[0.096737,0.371675,0.095186,0.394996,0.106421,0.391892],[0.086083,0.372975,0.095186,0.394996,0.096737,0.371675],[0.083952,0.398100,0.095186,0.394996,0.086083,0.372975],[0.095186,0.394996,0.083952,0.398100,0.093566,0.416329],[0.083952,0.398100,0.081970,0.417657,0.093566,0.416329],[0.083952,0.398100,0.047627,0.402085,0.081970,0.417657],[0.048557,0.377092,0.047627,0.402085,0.083952,0.398100],[0.048557,0.377092,0.021389,0.375208,0.047627,0.402085],[0.021389,0.352659,0.021389,0.375208,0.048557,0.377092],[0.528663,0.352659,0.501495,0.377092,0.528663,0.375208],[0.528663,0.352659,0.500850,0.354449,0.501495,0.377092],[0.528663,0.318018,0.500850,0.354449,0.528663,0.352659],[0.528663,0.318018,0.500856,0.318018,0.500850,0.354449],[0.528663,0.304052,0.500856,0.318018,0.528663,0.318018],[0.528663,0.304052,0.500662,0.304052,0.500856,0.318018],[0.500662,0.304052,0.463775,0.318018,0.500856,0.318018],[0.500662,0.304052,0.463828,0.304052,0.463775,0.318018],[0.463775,0.318018,0.463828,0.304052,0.452263,0.304052],[0.463828,0.304052,0.453115,0.279386,0.452263,0.304052],[0.452263,0.304052,0.453115,0.279386,0.440876,0.279386],[0.453115,0.279386,0.442314,0.232208,0.440876,0.279386],[0.440876,0.279386,0.442314,0.232208,0.430305,0.232208],[0.440876,0.279386,0.430305,0.232208,0.428637,0.279386],[0.428637,0.279386,0.430305,0.232208,0.396885,0.279386],[0.430305,0.232208,0.397738,0.232208,0.396885,0.279386],[0.396885,0.279386,0.397738,0.232208,0.368508,0.279386],[0.396885,0.279386,0.368508,0.279386,0.368666,0.304052],[0.359356,0.279386,0.368666,0.304052,0.368508,0.279386],[0.359356,0.279386,0.359255,0.304052,0.368666,0.304052],[0.350203,0.279386,0.359255,0.304052,0.359356,0.279386],[0.350203,0.279386,0.349843,0.304052,0.359255,0.304052],[0.341050,0.279386,0.349843,0.304052,0.350203,0.279386],[0.341050,0.279386,0.340432,0.304052,0.349843,0.304052],[0.341050,0.279386,0.305677,0.304052,0.340432,0.304052],[0.305381,0.279386,0.305677,0.304052,0.341050,0.279386],[0.305381,0.279386,0.275026,0.304052,0.305677,0.304052],[0.275026,0.279386,0.275026,0.304052,0.305381,0.279386],[0.244671,0.279386,0.275026,0.304052,0.275026,0.279386],[0.244671,0.279386,0.244375,0.304052,0.275026,0.304052],[0.209002,0.279386,0.244375,0.304052,0.244671,0.279386],[0.209002,0.279386,0.209620,0.304052,0.244375,0.304052],[0.200209,0.304052,0.209620,0.304052,0.209002,0.279386],[0.200209,0.304052,0.200796,0.318018,0.209620,0.304052],[0.191245,0.318018,0.200796,0.318018,0.200209,0.304052],[0.191245,0.318018,0.191280,0.353511,0.200796,0.318018],[0.181694,0.318018,0.191280,0.353511,0.191245,0.318018],[0.181694,0.318018,0.181027,0.352527,0.191280,0.353511],[0.153667,0.318018,0.181027,0.352527,0.181694,0.318018],[0.153667,0.318018,0.151942,0.352172,0.181027,0.352527],[0.120756,0.318018,0.151942,0.352172,0.153667,0.318018],[0.118277,0.351834,0.151942,0.352172,0.120756,0.318018],[0.118277,0.351834,0.151305,0.369187,0.151942,0.352172],[0.118046,0.369077,0.151305,0.369187,0.118277,0.351834],[0.118046,0.369077,0.150506,0.388733,0.151305,0.369187],[0.117655,0.388788,0.150506,0.388733,0.118046,0.369077],[0.117655,0.388788,0.149680,0.413472,0.150506,0.388733],[0.116757,0.413674,0.149680,0.413472,0.117655,0.388788],[0.116757,0.413674,0.149227,0.441213,0.149680,0.413472],[0.116226,0.441213,0.149227,0.441213,0.116757,0.413674],[0.115696,0.481791,0.149227,0.441213,0.116226,0.441213],[0.115696,0.481791,0.148775,0.481791,0.149227,0.441213],[0.148775,0.481791,0.177636,0.481791,0.149227,0.441213],[0.149227,0.441213,0.177636,0.481791,0.178017,0.441213],[0.177636,0.481791,0.188522,0.481791,0.178017,0.441213],[0.178017,0.441213,0.188522,0.481791,0.188776,0.441213],[0.188522,0.481791,0.199408,0.481791,0.188776,0.441213],[0.188776,0.441213,0.199408,0.481791,0.199535,0.441213],[0.199408,0.481791,0.210294,0.481791,0.199535,0.441213],[0.199535,0.441213,0.210294,0.481791,0.210294,0.441213],[0.210294,0.441213,0.210294,0.481791,0.245412,0.441213],[0.245412,0.441213,0.210294,0.481791,0.245717,0.481791],[0.245412,0.441213,0.245717,0.481791,0.275026,0.441213],[0.275026,0.441213,0.245717,0.481791,0.275026,0.481791],[0.275026,0.441213,0.275026,0.481791,0.304335,0.481791],[0.304640,0.441213,0.275026,0.441213,0.304335,0.481791],[0.275026,0.424618,0.275026,0.441213,0.304640,0.441213],[0.275026,0.424618,0.245412,0.441213,0.275026,0.441213],[0.245108,0.422226,0.245412,0.441213,0.275026,0.424618],[0.245108,0.422226,0.210294,0.441213,0.245412,0.441213],[0.210294,0.418244,0.210294,0.441213,0.245108,0.422226],[0.199535,0.441213,0.210294,0.441213,0.210294,0.418244],[0.199535,0.441213,0.210294,0.418244,0.199662,0.416686],[0.199662,0.416686,0.210294,0.418244,0.211317,0.398471],[0.211317,0.398471,0.210294,0.418244,0.245108,0.422226],[0.211317,0.398471,0.245108,0.422226,0.245739,0.406681],[0.245739,0.406681,0.245108,0.422226,0.275026,0.424618],[0.245739,0.406681,0.275026,0.424618,0.275026,0.407458],[0.275026,0.407458,0.275026,0.424618,0.304313,0.406681],[0.304313,0.406681,0.275026,0.424618,0.304944,0.422226],[0.304944,0.422226,0.275026,0.424618,0.304640,0.441213],[0.304944,0.422226,0.304640,0.441213,0.339758,0.441213],[0.339758,0.441213,0.304640,0.441213,0.339758,0.481791],[0.304640,0.441213,0.304335,0.481791,0.339758,0.481791],[0.350517,0.441213,0.339758,0.441213,0.339758,0.481791],[0.350517,0.441213,0.339758,0.418244,0.339758,0.441213],[0.350517,0.441213,0.350390,0.416686,0.339758,0.418244],[0.361276,0.441213,0.350390,0.416686,0.350517,0.441213],[0.361276,0.441213,0.361022,0.415128,0.350390,0.416686],[0.372035,0.441213,0.361022,0.415128,0.361276,0.441213],[0.372035,0.441213,0.371654,0.413570,0.361022,0.415128],[0.400373,0.413472,0.371654,0.413570,0.372035,0.441213],[0.400373,0.413472,0.399546,0.388733,0.371654,0.413570],[0.432397,0.388788,0.399546,0.388733,0.400373,0.413472],[0.432397,0.388788,0.432006,0.369077,0.399546,0.388733],[0.442660,0.370376,0.432006,0.369077,0.432397,0.388788],[0.442660,0.370376,0.442632,0.352184,0.432006,0.369077],[0.453490,0.352534,0.442632,0.352184,0.442660,0.370376],[0.453490,0.352534,0.452282,0.318018,0.442632,0.352184],[0.463775,0.318018,0.452282,0.318018,0.453490,0.352534],[0.463775,0.318018,0.452263,0.304052,0.452282,0.318018],[0.452282,0.318018,0.452263,0.304052,0.440697,0.304052],[0.452263,0.304052,0.440876,0.279386,0.440697,0.304052],[0.440697,0.304052,0.440876,0.279386,0.428637,0.279386],[0.440697,0.304052,0.428637,0.279386,0.429131,0.304052],[0.429131,0.304052,0.428637,0.279386,0.396741,0.304052],[0.428637,0.279386,0.396885,0.279386,0.396741,0.304052],[0.396741,0.304052,0.396885,0.279386,0.368666,0.304052],[0.396741,0.304052,0.368666,0.304052,0.368358,0.318018],[0.359255,0.304052,0.368358,0.318018,0.368666,0.304052],[0.359255,0.304052,0.358807,0.318018,0.368358,0.318018],[0.349843,0.304052,0.358807,0.318018,0.359255,0.304052],[0.349843,0.304052,0.349256,0.318018,0.358807,0.318018],[0.340432,0.304052,0.349256,0.318018,0.349843,0.304052],[0.340432,0.304052,0.339704,0.318018,0.349256,0.318018],[0.340432,0.304052,0.305596,0.318018,0.339704,0.318018],[0.305677,0.304052,0.305596,0.318018,0.340432,0.304052],[0.305677,0.304052,0.275026,0.318018,0.305596,0.318018],[0.275026,0.304052,0.275026,0.318018,0.305677,0.304052],[0.244375,0.304052,0.275026,0.318018,0.275026,0.304052],[0.244375,0.304052,0.244456,0.318018,0.275026,0.318018],[0.209620,0.304052,0.244456,0.318018,0.244375,0.304052],[0.209620,0.304052,0.210348,0.318018,0.244456,0.318018],[0.200796,0.318018,0.210348,0.318018,0.209620,0.304052],[0.200796,0.318018,0.201534,0.354496,0.210348,0.318018],[0.200796,0.318018,0.191280,0.353511,0.201534,0.354496],[0.191280,0.353511,0.190466,0.371234,0.201534,0.354496],[0.191280,0.353511,0.180241,0.369385,0.190466,0.371234],[0.181027,0.352527,0.180241,0.369385,0.191280,0.353511],[0.151942,0.352172,0.180241,0.369385,0.181027,0.352527],[0.151305,0.369187,0.180241,0.369385,0.151942,0.352172],[0.151305,0.369187,0.179191,0.388863,0.180241,0.369385],[0.150506,0.388733,0.179191,0.388863,0.151305,0.369187],[0.150506,0.388733,0.178398,0.413570,0.179191,0.388863],[0.149680,0.413472,0.178398,0.413570,0.150506,0.388733],[0.149680,0.413472,0.178017,0.441213,0.178398,0.413570],[0.149227,0.441213,0.178017,0.441213,0.149680,0.413472],[0.178017,0.441213,0.189030,0.415128,0.178398,0.413570],[0.178017,0.441213,0.188776,0.441213,0.189030,0.415128],[0.188776,0.441213,0.199662,0.416686,0.189030,0.415128],[0.188776,0.441213,0.199535,0.441213,0.199662,0.416686],[0.189030,0.415128,0.199662,0.416686,0.200608,0.395269],[0.199662,0.416686,0.211317,0.398471,0.200608,0.395269],[0.200608,0.395269,0.211317,0.398471,0.210917,0.374932],[0.210917,0.374932,0.211317,0.398471,0.245739,0.406681],[0.210917,0.374932,0.245739,0.406681,0.245051,0.381642],[0.245051,0.381642,0.245739,0.406681,0.275026,0.407458],[0.245051,0.381642,0.275026,0.407458,0.275026,0.382106],[0.275026,0.382106,0.275026,0.407458,0.305001,0.381642],[0.305001,0.381642,0.275026,0.407458,0.304313,0.406681],[0.339136,0.374932,0.305001,0.381642,0.304313,0.406681],[0.338265,0.355480,0.305001,0.381642,0.339136,0.374932],[0.338265,0.355480,0.305738,0.359663,0.305001,0.381642],[0.339704,0.318018,0.305738,0.359663,0.338265,0.355480],[0.305596,0.318018,0.305738,0.359663,0.339704,0.318018],[0.305596,0.318018,0.275026,0.359977,0.305738,0.359663],[0.275026,0.318018,0.275026,0.359977,0.305596,0.318018],[0.244456,0.318018,0.275026,0.359977,0.275026,0.318018],[0.244456,0.318018,0.244314,0.359663,0.275026,0.359977],[0.210348,0.318018,0.244314,0.359663,0.244456,0.318018],[0.210348,0.318018,0.211787,0.355480,0.244314,0.359663],[0.210348,0.318018,0.201534,0.354496,0.211787,0.355480],[0.201534,0.354496,0.200691,0.373083,0.211787,0.355480],[0.201534,0.354496,0.190466,0.371234,0.200691,0.373083],[0.190466,0.371234,0.189899,0.392066,0.200691,0.373083],[0.179191,0.388863,0.189899,0.392066,0.190466,0.371234],[0.178398,0.413570,0.189899,0.392066,0.179191,0.388863],[0.178398,0.413570,0.189030,0.415128,0.189899,0.392066],[0.189030,0.415128,0.200608,0.395269,0.189899,0.392066],[0.189899,0.392066,0.200608,0.395269,0.200691,0.373083],[0.200691,0.373083,0.200608,0.395269,0.210917,0.374932],[0.211787,0.355480,0.200691,0.373083,0.210917,0.374932],[0.211787,0.355480,0.210917,0.374932,0.245051,0.381642],[0.211787,0.355480,0.245051,0.381642,0.244314,0.359663],[0.244314,0.359663,0.245051,0.381642,0.275026,0.382106],[0.244314,0.359663,0.275026,0.382106,0.275026,0.359977],[0.275026,0.359977,0.275026,0.382106,0.305738,0.359663],[0.305738,0.359663,0.275026,0.382106,0.305001,0.381642],[0.179191,0.388863,0.190466,0.371234,0.180241,0.369385],[0.339704,0.318018,0.338265,0.355480,0.348518,0.354496],[0.348518,0.354496,0.338265,0.355480,0.349361,0.373083],[0.338265,0.355480,0.339136,0.374932,0.349361,0.373083],[0.349361,0.373083,0.339136,0.374932,0.349444,0.395269],[0.339136,0.374932,0.338735,0.398471,0.349444,0.395269],[0.339136,0.374932,0.304313,0.406681,0.338735,0.398471],[0.338735,0.398471,0.304313,0.406681,0.304944,0.422226],[0.338735,0.398471,0.304944,0.422226,0.339758,0.418244],[0.339758,0.418244,0.304944,0.422226,0.339758,0.441213],[0.338735,0.398471,0.339758,0.418244,0.350390,0.416686],[0.349444,0.395269,0.338735,0.398471,0.350390,0.416686],[0.349444,0.395269,0.350390,0.416686,0.361022,0.415128],[0.360153,0.392066,0.349444,0.395269,0.361022,0.415128],[0.349361,0.373083,0.349444,0.395269,0.360153,0.392066],[0.359586,0.371234,0.349361,0.373083,0.360153,0.392066],[0.348518,0.354496,0.349361,0.373083,0.359586,0.371234],[0.358772,0.353511,0.348518,0.354496,0.359586,0.371234],[0.349256,0.318018,0.348518,0.354496,0.358772,0.353511],[0.339704,0.318018,0.348518,0.354496,0.349256,0.318018],[0.349256,0.318018,0.358772,0.353511,0.358807,0.318018],[0.358807,0.318018,0.358772,0.353511,0.369025,0.352527],[0.369025,0.352527,0.358772,0.353511,0.369811,0.369385],[0.358772,0.353511,0.359586,0.371234,0.369811,0.369385],[0.369811,0.369385,0.359586,0.371234,0.370861,0.388863],[0.370861,0.388863,0.359586,0.371234,0.360153,0.392066],[0.371654,0.413570,0.370861,0.388863,0.360153,0.392066],[0.399546,0.388733,0.370861,0.388863,0.371654,0.413570],[0.399546,0.388733,0.398747,0.369187,0.370861,0.388863],[0.432006,0.369077,0.398747,0.369187,0.399546,0.388733],[0.432006,0.369077,0.431775,0.351834,0.398747,0.369187],[0.442632,0.352184,0.431775,0.351834,0.432006,0.369077],[0.442632,0.352184,0.440789,0.318018,0.431775,0.351834],[0.452282,0.318018,0.440789,0.318018,0.442632,0.352184],[0.452282,0.318018,0.440697,0.304052,0.440789,0.318018],[0.440789,0.318018,0.440697,0.304052,0.429131,0.304052],[0.440789,0.318018,0.429131,0.304052,0.429296,0.318018],[0.429296,0.318018,0.429131,0.304052,0.396385,0.318018],[0.429131,0.304052,0.396741,0.304052,0.396385,0.318018],[0.396385,0.318018,0.396741,0.304052,0.368358,0.318018],[0.396385,0.318018,0.368358,0.318018,0.369025,0.352527],[0.358807,0.318018,0.369025,0.352527,0.368358,0.318018],[0.398110,0.352172,0.396385,0.318018,0.369025,0.352527],[0.429296,0.318018,0.396385,0.318018,0.398110,0.352172],[0.431775,0.351834,0.429296,0.318018,0.398110,0.352172],[0.440789,0.318018,0.429296,0.318018,0.431775,0.351834],[0.431775,0.351834,0.398110,0.352172,0.398747,0.369187],[0.398747,0.369187,0.398110,0.352172,0.369811,0.369385],[0.398110,0.352172,0.369025,0.352527,0.369811,0.369385],[0.398747,0.369187,0.369811,0.369385,0.370861,0.388863],[0.371654,0.413570,0.360153,0.392066,0.361022,0.415128],[0.464347,0.352884,0.463775,0.318018,0.453490,0.352534],[0.500856,0.318018,0.463775,0.318018,0.464347,0.352884],[0.500856,0.318018,0.464347,0.352884,0.500850,0.354449],[0.464347,0.352884,0.463969,0.372975,0.500850,0.354449],[0.463969,0.372975,0.464347,0.352884,0.453315,0.371675],[0.464347,0.352884,0.453490,0.352534,0.453315,0.371675],[0.453315,0.371675,0.453490,0.352534,0.442660,0.370376],[0.453315,0.371675,0.442660,0.370376,0.443631,0.391892],[0.443631,0.391892,0.442660,0.370376,0.432397,0.388788],[0.432397,0.388788,0.433295,0.413674,0.443631,0.391892],[0.433295,0.413674,0.432397,0.388788,0.400373,0.413472],[0.433295,0.413674,0.400373,0.413472,0.400825,0.441213],[0.400825,0.441213,0.400373,0.413472,0.372035,0.441213],[0.400825,0.441213,0.372035,0.441213,0.372416,0.481791],[0.372416,0.481791,0.372035,0.441213,0.361530,0.481791],[0.372035,0.441213,0.361276,0.441213,0.361530,0.481791],[0.361530,0.481791,0.361276,0.441213,0.350644,0.481791],[0.361276,0.441213,0.350517,0.441213,0.350644,0.481791],[0.350644,0.481791,0.350517,0.441213,0.339758,0.481791],[0.401277,0.481791,0.400825,0.441213,0.372416,0.481791],[0.434356,0.481791,0.400825,0.441213,0.401277,0.481791],[0.434356,0.481791,0.433826,0.441213,0.400825,0.441213],[0.433826,0.441213,0.434356,0.481791,0.445388,0.481791],[0.433826,0.441213,0.445388,0.481791,0.445139,0.441213],[0.445139,0.441213,0.445388,0.481791,0.456420,0.481791],[0.445139,0.441213,0.456420,0.481791,0.456453,0.441213],[0.456453,0.441213,0.456420,0.481791,0.467452,0.481791],[0.456453,0.441213,0.467452,0.481791,0.467767,0.441213],[0.467767,0.441213,0.467452,0.481791,0.501550,0.441213],[0.501550,0.441213,0.467452,0.481791,0.501880,0.481791],[0.528663,0.441213,0.501550,0.441213,0.501880,0.481791],[0.528663,0.418813,0.501550,0.441213,0.528663,0.441213],[0.528663,0.418813,0.501220,0.419780,0.501550,0.441213],[0.528663,0.402251,0.501220,0.419780,0.528663,0.418813],[0.528663,0.402251,0.502425,0.402085,0.501220,0.419780],[0.528663,0.375208,0.502425,0.402085,0.528663,0.402251],[0.528663,0.375208,0.501495,0.377092,0.502425,0.402085],[0.501495,0.377092,0.466100,0.398100,0.502425,0.402085],[0.463969,0.372975,0.466100,0.398100,0.501495,0.377092],[0.466100,0.398100,0.463969,0.372975,0.454866,0.394996],[0.463969,0.372975,0.453315,0.371675,0.454866,0.394996],[0.454866,0.394996,0.453315,0.371675,0.443631,0.391892],[0.443631,0.391892,0.444891,0.415002,0.454866,0.394996],[0.443631,0.391892,0.433295,0.413674,0.444891,0.415002],[0.433295,0.413674,0.433826,0.441213,0.444891,0.415002],[0.433826,0.441213,0.433295,0.413674,0.400825,0.441213],[0.444891,0.415002,0.433826,0.441213,0.445139,0.441213],[0.444891,0.415002,0.445139,0.441213,0.456486,0.416329],[0.456486,0.416329,0.445139,0.441213,0.456453,0.441213],[0.456486,0.416329,0.456453,0.441213,0.468082,0.417657],[0.468082,0.417657,0.456453,0.441213,0.467767,0.441213],[0.468082,0.417657,0.467767,0.441213,0.501220,0.419780],[0.501220,0.419780,0.467767,0.441213,0.501550,0.441213],[0.502425,0.402085,0.468082,0.417657,0.501220,0.419780],[0.466100,0.398100,0.468082,0.417657,0.502425,0.402085],[0.466100,0.398100,0.456486,0.416329,0.468082,0.417657],[0.454866,0.394996,0.456486,0.416329,0.466100,0.398100],[0.454866,0.394996,0.444891,0.415002,0.456486,0.416329],[0.500850,0.354449,0.463969,0.372975,0.501495,0.377092],[0.021389,0.375208,0.021389,0.402251,0.047627,0.402085],[0.047627,0.402085,0.021389,0.402251,0.048832,0.419780],[0.021389,0.402251,0.021389,0.418813,0.048832,0.419780],[0.048832,0.419780,0.021389,0.418813,0.048502,0.441213],[0.021389,0.418813,0.021389,0.441213,0.048502,0.441213],[0.048502,0.441213,0.021389,0.441213,0.048172,0.481791],[0.021389,0.441213,0.021389,0.481791,0.048172,0.481791],[0.528663,0.441213,0.501880,0.481791,0.528663,0.481791],[0.048502,0.441213,0.048172,0.481791,0.082600,0.481791],[0.082285,0.441213,0.048502,0.441213,0.082600,0.481791],[0.048832,0.419780,0.048502,0.441213,0.082285,0.441213],[0.081970,0.417657,0.048832,0.419780,0.082285,0.441213],[0.047627,0.402085,0.048832,0.419780,0.081970,0.417657],[0.081970,0.417657,0.082285,0.441213,0.093599,0.441213],[0.093599,0.441213,0.082285,0.441213,0.093632,0.481791],[0.082285,0.441213,0.082600,0.481791,0.093632,0.481791],[0.093599,0.441213,0.093632,0.481791,0.104664,0.481791],[0.104913,0.441213,0.093599,0.441213,0.104664,0.481791],[0.093566,0.416329,0.093599,0.441213,0.104913,0.441213],[0.093566,0.416329,0.081970,0.417657,0.093599,0.441213],[0.105161,0.415002,0.093566,0.416329,0.104913,0.441213],[0.095186,0.394996,0.093566,0.416329,0.105161,0.415002],[0.106421,0.391892,0.095186,0.394996,0.105161,0.415002],[0.106421,0.391892,0.105161,0.415002,0.116757,0.413674],[0.116757,0.413674,0.105161,0.415002,0.116226,0.441213],[0.105161,0.415002,0.104913,0.441213,0.116226,0.441213],[0.116226,0.441213,0.104913,0.441213,0.115696,0.481791],[0.104913,0.441213,0.104664,0.481791,0.115696,0.481791],[0.117655,0.388788,0.106421,0.391892,0.116757,0.413674],[0.199849,0.279386,0.200209,0.304052,0.209002,0.279386],[0.021389,0.304052,0.021389,0.318018,0.049196,0.318018],[0.049196,0.318018,0.021389,0.318018,0.049202,0.354449],[0.021389,0.318018,0.021389,0.352659,0.049202,0.354449],[0.049202,0.354449,0.021389,0.352659,0.048557,0.377092],[0.049202,0.354449,0.048557,0.377092,0.086083,0.372975],[0.086083,0.372975,0.048557,0.377092,0.083952,0.398100],[0.085705,0.352884,0.049202,0.354449,0.086083,0.372975],[0.049196,0.318018,0.049202,0.354449,0.085705,0.352884],[0.086083,0.372975,0.096737,0.371675,0.085705,0.352884],[0.085705,0.352884,0.096737,0.371675,0.096562,0.352534],[0.096737,0.371675,0.107392,0.370376,0.096562,0.352534],[0.096562,0.352534,0.107392,0.370376,0.107420,0.352184],[0.559682,0.763879,0.596890,0.790847,0.591931,0.764000],[0.559682,0.763879,0.571220,0.791282,0.596890,0.790847],[0.202267,0.497596,0.233770,0.513589,0.232654,0.497596],[0.202267,0.497596,0.202909,0.513589,0.233770,0.513589],[0.177568,0.497596,0.202909,0.513589,0.202267,0.497596],[0.177568,0.497596,0.177732,0.513589,0.202909,0.513589],[0.148485,0.497596,0.177732,0.513589,0.177568,0.497596],[0.148485,0.497596,0.147661,0.513589,0.177732,0.513589],[0.115413,0.497596,0.147661,0.513589,0.148485,0.497596],[0.115912,0.513589,0.147661,0.513589,0.115413,0.497596],[0.115912,0.513589,0.145671,0.548398,0.147661,0.513589],[0.115318,0.548413,0.145671,0.548398,0.115912,0.513589],[0.115318,0.548413,0.145484,0.561863,0.145671,0.548398],[0.115876,0.564003,0.145484,0.561863,0.115318,0.548413],[0.115876,0.564003,0.145481,0.574934,0.145484,0.561863],[0.116928,0.579665,0.145481,0.574934,0.115876,0.564003],[0.116928,0.579665,0.146296,0.584612,0.145481,0.574934],[0.119077,0.593674,0.146296,0.584612,0.116928,0.579665],[0.119077,0.593674,0.146942,0.600119,0.146296,0.584612],[0.119417,0.605967,0.146942,0.600119,0.119077,0.593674],[0.119417,0.605967,0.148052,0.625356,0.146942,0.600119],[0.119736,0.626230,0.148052,0.625356,0.119417,0.605967],[0.119736,0.626230,0.151635,0.669173,0.148052,0.625356],[0.121439,0.669173,0.151635,0.669173,0.119736,0.626230],[0.121439,0.669173,0.154256,0.710763,0.151635,0.669173],[0.123711,0.710763,0.154256,0.710763,0.121439,0.669173],[0.123711,0.710763,0.154944,0.742128,0.154256,0.710763],[0.124300,0.744584,0.154944,0.742128,0.123711,0.710763],[0.124300,0.744584,0.154294,0.759591,0.154944,0.742128],[0.124083,0.762244,0.154294,0.759591,0.124300,0.744584],[0.124083,0.762244,0.153634,0.776232,0.154294,0.759591],[0.123522,0.778774,0.153634,0.776232,0.124083,0.762244],[0.123522,0.778774,0.151734,0.795089,0.153634,0.776232],[0.122778,0.793784,0.151734,0.795089,0.123522,0.778774],[0.122778,0.793784,0.150750,0.834394,0.151734,0.795089],[0.122869,0.834394,0.150750,0.834394,0.122778,0.793784],[0.122869,0.834394,0.150394,0.875484,0.150750,0.834394],[0.122479,0.875484,0.150394,0.875484,0.122869,0.834394],[0.122479,0.875484,0.149574,0.908472,0.150394,0.875484],[0.120849,0.900836,0.149574,0.908472,0.122479,0.875484],[0.120849,0.900836,0.148905,0.935267,0.149574,0.908472],[0.121397,0.929038,0.148905,0.935267,0.120849,0.900836],[0.121397,0.929038,0.149867,0.957845,0.148905,0.935267],[0.121761,0.957845,0.149867,0.957845,0.121397,0.929038],[0.121761,0.957845,0.152232,0.982983,0.149867,0.957845],[0.120945,0.982983,0.152232,0.982983,0.121761,0.957845],[0.120945,0.982983,0.152532,0.994548,0.152232,0.982983],[0.121673,0.994548,0.152532,0.994548,0.120945,0.982983],[0.595130,0.852574,0.590794,0.824922,0.618958,0.829512],[0.595130,0.852574,0.565748,0.830761,0.590794,0.824922],[0.595130,0.852574,0.551805,0.848576,0.565748,0.830761],[0.595130,0.852574,0.551880,0.863807,0.551805,0.848576],[0.564245,0.876189,0.551880,0.863807,0.595130,0.852574],[0.219274,0.982983,0.220349,0.994548,0.238118,0.994548],[0.200804,0.982983,0.220349,0.994548,0.219274,0.982983],[0.200804,0.982983,0.201307,0.994548,0.220349,0.994548],[0.179560,0.982983,0.201307,0.994548,0.200804,0.982983],[0.179560,0.982983,0.179453,0.994548,0.201307,0.994548],[0.152232,0.982983,0.179453,0.994548,0.179560,0.982983],[0.152232,0.982983,0.152532,0.994548,0.179453,0.994548],[0.152232,0.982983,0.179560,0.982983,0.149867,0.957845],[0.149867,0.957845,0.179560,0.982983,0.178761,0.955706],[0.179560,0.982983,0.200804,0.982983,0.178761,0.955706],[0.178761,0.955706,0.200804,0.982983,0.200352,0.953032],[0.200352,0.953032,0.200804,0.982983,0.219274,0.982983],[0.200352,0.953032,0.219274,0.982983,0.219910,0.956241],[0.219910,0.956241,0.219274,0.982983,0.238730,0.982983],[0.219274,0.982983,0.238118,0.994548,0.238730,0.982983],[0.266107,0.994548,0.238730,0.982983,0.238118,0.994548],[0.266107,0.982983,0.238730,0.982983,0.266107,0.994548],[0.266107,0.982983,0.238454,0.957845,0.238730,0.982983],[0.265787,0.957845,0.238454,0.957845,0.266107,0.982983],[0.265787,0.957845,0.238959,0.944182,0.238454,0.957845],[0.265660,0.938436,0.238959,0.944182,0.265787,0.957845],[0.265660,0.938436,0.237029,0.918843,0.238959,0.944182],[0.265660,0.938436,0.265521,0.915388,0.237029,0.918843],[0.047472,0.943538,0.018685,0.916595,0.018824,0.940756],[0.047114,0.918238,0.018685,0.916595,0.047472,0.943538],[0.047114,0.918238,0.018676,0.875484,0.018685,0.916595],[0.047114,0.918238,0.047771,0.875484,0.018676,0.875484],[0.070598,0.915456,0.047771,0.875484,0.047114,0.918238],[0.070598,0.915456,0.071091,0.875484,0.047771,0.875484],[0.071091,0.875484,0.070598,0.915456,0.092453,0.911878],[0.092453,0.911878,0.070598,0.915456,0.070867,0.936705],[0.070598,0.915456,0.047114,0.918238,0.070867,0.936705],[0.070867,0.936705,0.047114,0.918238,0.047472,0.943538],[0.070210,0.957845,0.070867,0.936705,0.047472,0.943538],[0.092453,0.911878,0.070867,0.936705,0.070210,0.957845],[0.092453,0.911878,0.070210,0.957845,0.095603,0.957845],[0.095603,0.957845,0.070210,0.957845,0.095076,0.982983],[0.070210,0.957845,0.070864,0.982983,0.095076,0.982983],[0.070864,0.982983,0.070210,0.957845,0.046596,0.957845],[0.070210,0.957845,0.047472,0.943538,0.046596,0.957845],[0.046596,0.957845,0.047472,0.943538,0.018951,0.957845],[0.047472,0.943538,0.018824,0.940756,0.018951,0.957845],[0.046596,0.957845,0.018951,0.957845,0.047691,0.982983],[0.047691,0.982983,0.018951,0.957845,0.019271,0.982983],[0.048010,0.994548,0.047691,0.982983,0.019271,0.982983],[0.070931,0.994548,0.047691,0.982983,0.048010,0.994548],[0.070864,0.982983,0.047691,0.982983,0.070931,0.994548],[0.070864,0.982983,0.046596,0.957845,0.047691,0.982983],[0.070864,0.982983,0.070931,0.994548,0.095809,0.994548],[0.630519,0.865194,0.595130,0.852574,0.630883,0.847398],[0.618415,0.877711,0.595130,0.852574,0.630519,0.865194],[0.618415,0.877711,0.590184,0.880463,0.595130,0.852574],[0.048010,0.994548,0.019271,0.982983,0.019271,0.994548],[0.590184,0.880463,0.564245,0.876189,0.595130,0.852574],[0.630883,0.847398,0.595130,0.852574,0.618958,0.829512],[0.095076,0.982983,0.095809,0.994548,0.121673,0.994548],[0.095076,0.982983,0.070864,0.982983,0.095809,0.994548],[0.120945,0.982983,0.095076,0.982983,0.121673,0.994548],[0.095603,0.957845,0.095076,0.982983,0.120945,0.982983],[0.121761,0.957845,0.095603,0.957845,0.120945,0.982983],[0.092453,0.911878,0.095603,0.957845,0.121761,0.957845],[0.092453,0.911878,0.121761,0.957845,0.121397,0.929038],[0.099991,0.875484,0.092453,0.911878,0.121397,0.929038],[0.099991,0.875484,0.071091,0.875484,0.092453,0.911878],[0.071516,0.834394,0.071091,0.875484,0.099991,0.875484],[0.071091,0.875484,0.071516,0.834394,0.048337,0.834394],[0.071516,0.834394,0.048076,0.795436,0.048337,0.834394],[0.071516,0.834394,0.071320,0.795574,0.048076,0.795436],[0.071320,0.795574,0.071516,0.834394,0.099204,0.834394],[0.099204,0.834394,0.071516,0.834394,0.099991,0.875484],[0.099204,0.834394,0.099991,0.875484,0.122479,0.875484],[0.122479,0.875484,0.099991,0.875484,0.120849,0.900836],[0.099991,0.875484,0.121397,0.929038,0.120849,0.900836],[0.122869,0.834394,0.099204,0.834394,0.122479,0.875484],[0.100575,0.795038,0.099204,0.834394,0.122869,0.834394],[0.100575,0.795038,0.071320,0.795574,0.099204,0.834394],[0.071151,0.781060,0.071320,0.795574,0.100575,0.795038],[0.071320,0.795574,0.071151,0.781060,0.047851,0.780961],[0.071151,0.781060,0.047562,0.764868,0.047851,0.780961],[0.071151,0.781060,0.070935,0.764910,0.047562,0.764868],[0.070935,0.764910,0.071151,0.781060,0.100733,0.780343],[0.100733,0.780343,0.071151,0.781060,0.100575,0.795038],[0.100733,0.780343,0.100575,0.795038,0.122778,0.793784],[0.122778,0.793784,0.100575,0.795038,0.122869,0.834394],[0.123522,0.778774,0.100733,0.780343,0.122778,0.793784],[0.100293,0.763967,0.100733,0.780343,0.123522,0.778774],[0.100293,0.763967,0.070935,0.764910,0.100733,0.780343],[0.070976,0.747360,0.070935,0.764910,0.100293,0.763967],[0.070935,0.764910,0.070976,0.747360,0.047617,0.747671],[0.070976,0.747360,0.048062,0.710763,0.047617,0.747671],[0.070976,0.747360,0.069615,0.710763,0.048062,0.710763],[0.069615,0.710763,0.070976,0.747360,0.100458,0.746215],[0.100458,0.746215,0.070976,0.747360,0.100293,0.763967],[0.100458,0.746215,0.100293,0.763967,0.124083,0.762244],[0.124083,0.762244,0.100293,0.763967,0.123522,0.778774],[0.124300,0.744584,0.100458,0.746215,0.124083,0.762244],[0.101008,0.710763,0.100458,0.746215,0.124300,0.744584],[0.101008,0.710763,0.069615,0.710763,0.100458,0.746215],[0.068338,0.669173,0.069615,0.710763,0.101008,0.710763],[0.069615,0.710763,0.068338,0.669173,0.046246,0.669173],[0.068338,0.669173,0.041383,0.631779,0.046246,0.669173],[0.068338,0.669173,0.061609,0.627185,0.041383,0.631779],[0.061609,0.627185,0.068338,0.669173,0.098848,0.669173],[0.098848,0.669173,0.068338,0.669173,0.101008,0.710763],[0.098848,0.669173,0.101008,0.710763,0.123711,0.710763],[0.123711,0.710763,0.101008,0.710763,0.124300,0.744584],[0.121439,0.669173,0.098848,0.669173,0.123711,0.710763],[0.092553,0.626549,0.098848,0.669173,0.121439,0.669173],[0.092553,0.626549,0.061609,0.627185,0.098848,0.669173],[0.058648,0.617843,0.061609,0.627185,0.092553,0.626549],[0.058648,0.617843,0.038683,0.624459,0.061609,0.627185],[0.058648,0.617843,0.035635,0.618173,0.038683,0.624459],[0.055705,0.609985,0.035635,0.618173,0.058648,0.617843],[0.014029,0.616663,0.035635,0.618173,0.055705,0.609985],[0.014029,0.616663,0.014029,0.627517,0.035635,0.618173],[0.511902,0.618173,0.533509,0.627517,0.533509,0.616663],[0.511902,0.618173,0.531017,0.631582,0.533509,0.627517],[0.508855,0.624459,0.531017,0.631582,0.511902,0.618173],[0.508855,0.624459,0.529300,0.635260,0.531017,0.631582],[0.506155,0.631779,0.529300,0.635260,0.508855,0.624459],[0.506155,0.631779,0.528267,0.636670,0.529300,0.635260],[0.501291,0.669173,0.528267,0.636670,0.506155,0.631779],[0.501291,0.669173,0.528267,0.669173,0.528267,0.636670],[0.499476,0.710763,0.528267,0.669173,0.501291,0.669173],[0.499476,0.710763,0.528267,0.710763,0.528267,0.669173],[0.499921,0.747671,0.528267,0.710763,0.499476,0.710763],[0.499921,0.747671,0.528267,0.748447,0.528267,0.710763],[0.499976,0.764868,0.528267,0.748447,0.499921,0.747671],[0.499976,0.764868,0.528267,0.771760,0.528267,0.748447],[0.499687,0.780961,0.528267,0.771760,0.499976,0.764868],[0.499687,0.780961,0.528267,0.784713,0.528267,0.771760],[0.499462,0.795436,0.528267,0.784713,0.499687,0.780961],[0.499462,0.795436,0.528494,0.797794,0.528267,0.784713],[0.499201,0.834394,0.528494,0.797794,0.499462,0.795436],[0.499201,0.834394,0.528613,0.834394,0.528494,0.797794],[0.499767,0.875484,0.528613,0.834394,0.499201,0.834394],[0.499767,0.875484,0.528862,0.875484,0.528613,0.834394],[0.500424,0.918238,0.528862,0.875484,0.499767,0.875484],[0.500424,0.918238,0.528852,0.916595,0.528862,0.875484],[0.500066,0.943538,0.528852,0.916595,0.500424,0.918238],[0.500066,0.943538,0.528714,0.940756,0.528852,0.916595],[0.500066,0.943538,0.528586,0.957845,0.528714,0.940756],[0.500942,0.957845,0.528586,0.957845,0.500066,0.943538],[0.500942,0.957845,0.499847,0.982983,0.528586,0.957845],[0.476674,0.982983,0.499847,0.982983,0.500942,0.957845],[0.476674,0.982983,0.476607,0.994548,0.499847,0.982983],[0.476674,0.982983,0.451729,0.994548,0.476607,0.994548],[0.452462,0.982983,0.451729,0.994548,0.476674,0.982983],[0.452462,0.982983,0.425865,0.994548,0.451729,0.994548],[0.426593,0.982983,0.425865,0.994548,0.452462,0.982983],[0.425865,0.994548,0.426593,0.982983,0.395006,0.994548],[0.426593,0.982983,0.395306,0.982983,0.395006,0.994548],[0.426593,0.982983,0.425777,0.957845,0.395306,0.982983],[0.425777,0.957845,0.426593,0.982983,0.451935,0.957845],[0.451935,0.957845,0.426593,0.982983,0.452462,0.982983],[0.451935,0.957845,0.452462,0.982983,0.477328,0.957845],[0.477328,0.957845,0.452462,0.982983,0.476674,0.982983],[0.476674,0.982983,0.500942,0.957845,0.477328,0.957845],[0.477328,0.957845,0.500942,0.957845,0.500066,0.943538],[0.477328,0.957845,0.500066,0.943538,0.476671,0.936705],[0.476671,0.936705,0.500066,0.943538,0.500424,0.918238],[0.476671,0.936705,0.500424,0.918238,0.476940,0.915456],[0.476940,0.915456,0.500424,0.918238,0.499767,0.875484],[0.476940,0.915456,0.499767,0.875484,0.476447,0.875484],[0.476447,0.875484,0.499767,0.875484,0.499201,0.834394],[0.476022,0.834394,0.476447,0.875484,0.499201,0.834394],[0.476022,0.834394,0.447546,0.875484,0.476447,0.875484],[0.448334,0.834394,0.447546,0.875484,0.476022,0.834394],[0.448334,0.834394,0.425059,0.875484,0.447546,0.875484],[0.424669,0.834394,0.425059,0.875484,0.448334,0.834394],[0.425059,0.875484,0.424669,0.834394,0.397144,0.875484],[0.424669,0.834394,0.396788,0.834394,0.397144,0.875484],[0.424669,0.834394,0.424760,0.793784,0.396788,0.834394],[0.424760,0.793784,0.424669,0.834394,0.446963,0.795038],[0.446963,0.795038,0.424669,0.834394,0.448334,0.834394],[0.446963,0.795038,0.448334,0.834394,0.476218,0.795574],[0.476218,0.795574,0.448334,0.834394,0.476022,0.834394],[0.476218,0.795574,0.476022,0.834394,0.499462,0.795436],[0.499462,0.795436,0.476022,0.834394,0.499201,0.834394],[0.499687,0.780961,0.476218,0.795574,0.499462,0.795436],[0.476386,0.781060,0.476218,0.795574,0.499687,0.780961],[0.476386,0.781060,0.446963,0.795038,0.476218,0.795574],[0.446805,0.780343,0.446963,0.795038,0.476386,0.781060],[0.446805,0.780343,0.424760,0.793784,0.446963,0.795038],[0.424016,0.778774,0.424760,0.793784,0.446805,0.780343],[0.424760,0.793784,0.424016,0.778774,0.395804,0.795089],[0.424016,0.778774,0.393904,0.776232,0.395804,0.795089],[0.424016,0.778774,0.423455,0.762244,0.393904,0.776232],[0.423455,0.762244,0.424016,0.778774,0.447245,0.763967],[0.447245,0.763967,0.424016,0.778774,0.446805,0.780343],[0.447245,0.763967,0.446805,0.780343,0.476603,0.764910],[0.476603,0.764910,0.446805,0.780343,0.476386,0.781060],[0.476386,0.781060,0.499976,0.764868,0.476603,0.764910],[0.499976,0.764868,0.476386,0.781060,0.499687,0.780961],[0.476603,0.764910,0.499976,0.764868,0.499921,0.747671],[0.476603,0.764910,0.499921,0.747671,0.476562,0.747360],[0.476562,0.747360,0.499921,0.747671,0.499476,0.710763],[0.477923,0.710763,0.476562,0.747360,0.499476,0.710763],[0.477923,0.710763,0.447080,0.746215,0.476562,0.747360],[0.446530,0.710763,0.447080,0.746215,0.477923,0.710763],[0.446530,0.710763,0.423238,0.744584,0.447080,0.746215],[0.423826,0.710763,0.423238,0.744584,0.446530,0.710763],[0.423238,0.744584,0.423826,0.710763,0.392594,0.742128],[0.423826,0.710763,0.393282,0.710763,0.392594,0.742128],[0.423826,0.710763,0.426099,0.669173,0.393282,0.710763],[0.426099,0.669173,0.423826,0.710763,0.448690,0.669173],[0.448690,0.669173,0.423826,0.710763,0.446530,0.710763],[0.448690,0.669173,0.446530,0.710763,0.479200,0.669173],[0.479200,0.669173,0.446530,0.710763,0.477923,0.710763],[0.479200,0.669173,0.477923,0.710763,0.501291,0.669173],[0.501291,0.669173,0.477923,0.710763,0.499476,0.710763],[0.506155,0.631779,0.479200,0.669173,0.501291,0.669173],[0.485929,0.627185,0.479200,0.669173,0.506155,0.631779],[0.485929,0.627185,0.448690,0.669173,0.479200,0.669173],[0.454984,0.626549,0.448690,0.669173,0.485929,0.627185],[0.454984,0.626549,0.426099,0.669173,0.448690,0.669173],[0.427802,0.626230,0.426099,0.669173,0.454984,0.626549],[0.426099,0.669173,0.427802,0.626230,0.395903,0.669173],[0.427802,0.626230,0.399486,0.625356,0.395903,0.669173],[0.427802,0.626230,0.428121,0.605967,0.399486,0.625356],[0.428121,0.605967,0.427802,0.626230,0.458627,0.613632],[0.458627,0.613632,0.427802,0.626230,0.454984,0.626549],[0.458627,0.613632,0.454984,0.626549,0.488890,0.617843],[0.488890,0.617843,0.454984,0.626549,0.485929,0.627185],[0.488890,0.617843,0.485929,0.627185,0.508855,0.624459],[0.508855,0.624459,0.485929,0.627185,0.506155,0.631779],[0.488890,0.617843,0.508855,0.624459,0.511902,0.618173],[0.491833,0.609985,0.488890,0.617843,0.511902,0.618173],[0.491833,0.609985,0.458627,0.613632,0.488890,0.617843],[0.460701,0.606979,0.458627,0.613632,0.491833,0.609985],[0.428121,0.605967,0.458627,0.613632,0.460701,0.606979],[0.428461,0.593674,0.428121,0.605967,0.460701,0.606979],[0.428121,0.605967,0.428461,0.593674,0.400596,0.600119],[0.428461,0.593674,0.401242,0.584612,0.400596,0.600119],[0.428461,0.593674,0.430610,0.579665,0.401242,0.584612],[0.430610,0.579665,0.428461,0.593674,0.464993,0.590443],[0.428461,0.593674,0.460701,0.606979,0.464993,0.590443],[0.464993,0.590443,0.460701,0.606979,0.492055,0.597846],[0.492055,0.597846,0.460701,0.606979,0.491833,0.609985],[0.492055,0.597846,0.491833,0.609985,0.533509,0.603843],[0.491833,0.609985,0.533509,0.616663,0.533509,0.603843],[0.491833,0.609985,0.511902,0.618173,0.533509,0.616663],[0.014029,0.603843,0.014029,0.616663,0.055705,0.609985],[0.055483,0.597846,0.014029,0.603843,0.055705,0.609985],[0.014029,0.592556,0.014029,0.603843,0.055483,0.597846],[0.492055,0.597846,0.533509,0.603843,0.533509,0.592556],[0.495920,0.573685,0.492055,0.597846,0.533509,0.592556],[0.495920,0.573685,0.464993,0.590443,0.492055,0.597846],[0.467046,0.570144,0.464993,0.590443,0.495920,0.573685],[0.467046,0.570144,0.430610,0.579665,0.464993,0.590443],[0.467046,0.570144,0.431662,0.564003,0.430610,0.579665],[0.467046,0.570144,0.466164,0.549887,0.431662,0.564003],[0.466164,0.549887,0.467046,0.570144,0.496005,0.552149],[0.496005,0.552149,0.467046,0.570144,0.495920,0.573685],[0.496005,0.552149,0.495920,0.573685,0.533509,0.571972],[0.533509,0.571972,0.495920,0.573685,0.533509,0.592556],[0.014029,0.571972,0.014029,0.592556,0.051618,0.573685],[0.051618,0.573685,0.014029,0.592556,0.055483,0.597846],[0.051618,0.573685,0.055483,0.597846,0.082545,0.590443],[0.082545,0.590443,0.055483,0.597846,0.086837,0.606979],[0.055483,0.597846,0.055705,0.609985,0.086837,0.606979],[0.086837,0.606979,0.055705,0.609985,0.088911,0.613632],[0.055705,0.609985,0.058648,0.617843,0.088911,0.613632],[0.088911,0.613632,0.058648,0.617843,0.092553,0.626549],[0.088911,0.613632,0.092553,0.626549,0.119736,0.626230],[0.119736,0.626230,0.092553,0.626549,0.121439,0.669173],[0.119417,0.605967,0.088911,0.613632,0.119736,0.626230],[0.119417,0.605967,0.086837,0.606979,0.088911,0.613632],[0.119077,0.593674,0.086837,0.606979,0.119417,0.605967],[0.119077,0.593674,0.082545,0.590443,0.086837,0.606979],[0.116928,0.579665,0.082545,0.590443,0.119077,0.593674],[0.080492,0.570144,0.082545,0.590443,0.116928,0.579665],[0.080492,0.570144,0.051618,0.573685,0.082545,0.590443],[0.051533,0.552149,0.051618,0.573685,0.080492,0.570144],[0.051533,0.552149,0.014029,0.571972,0.051618,0.573685],[0.051533,0.552149,0.014029,0.551275,0.014029,0.571972],[0.014029,0.513589,0.014029,0.551275,0.051533,0.552149],[0.533509,0.513589,0.496005,0.552149,0.533509,0.551275],[0.533509,0.513589,0.495792,0.513589,0.496005,0.552149],[0.533509,0.497596,0.495792,0.513589,0.533509,0.513589],[0.533509,0.497596,0.494481,0.497596,0.495792,0.513589],[0.494481,0.497596,0.464350,0.513589,0.495792,0.513589],[0.494481,0.497596,0.465065,0.497596,0.464350,0.513589],[0.465065,0.497596,0.431626,0.513589,0.464350,0.513589],[0.465065,0.497596,0.432124,0.497596,0.431626,0.513589],[0.431626,0.513589,0.432124,0.497596,0.399877,0.513589],[0.432124,0.497596,0.399053,0.497596,0.399877,0.513589],[0.399053,0.497596,0.369806,0.513589,0.399877,0.513589],[0.399053,0.497596,0.369970,0.497596,0.369806,0.513589],[0.369970,0.497596,0.344629,0.513589,0.369806,0.513589],[0.345271,0.497596,0.344629,0.513589,0.369970,0.497596],[0.345271,0.497596,0.313768,0.513589,0.344629,0.513589],[0.314884,0.497596,0.313768,0.513589,0.345271,0.497596],[0.314884,0.497596,0.273769,0.513589,0.313768,0.513589],[0.273769,0.497596,0.273769,0.513589,0.314884,0.497596],[0.273769,0.513589,0.273769,0.497596,0.232654,0.497596],[0.591931,0.764000,0.596890,0.790847,0.621219,0.790956],[0.591931,0.764000,0.621219,0.790956,0.621219,0.764093],[0.621219,0.764093,0.621219,0.790956,0.650507,0.764000],[0.650507,0.764000,0.621219,0.790956,0.645548,0.790847],[0.650507,0.764000,0.645548,0.790847,0.682756,0.763879],[0.682756,0.763879,0.645548,0.790847,0.671218,0.791282],[0.684092,0.716515,0.650507,0.764000,0.682756,0.763879],[0.684092,0.716515,0.652091,0.716755,0.650507,0.764000],[0.686870,0.680311,0.652091,0.716755,0.684092,0.716515],[0.686870,0.680311,0.654864,0.684003,0.652091,0.716755],[0.686737,0.653268,0.654864,0.684003,0.686870,0.680311],[0.686737,0.653268,0.654758,0.655830,0.654864,0.684003],[0.685568,0.622183,0.654758,0.655830,0.686737,0.653268],[0.685568,0.622183,0.653291,0.624885,0.654758,0.655830],[0.651242,0.583644,0.653291,0.624885,0.685568,0.622183],[0.651242,0.583644,0.621219,0.623974,0.653291,0.624885],[0.651242,0.583644,0.621190,0.583644,0.621219,0.623974],[0.591606,0.583644,0.621219,0.623974,0.621190,0.583644],[0.591606,0.583644,0.589147,0.624885,0.621219,0.623974],[0.591606,0.583644,0.556870,0.622183,0.589147,0.624885],[0.556870,0.622183,0.587680,0.655830,0.589147,0.624885],[0.589147,0.624885,0.587680,0.655830,0.621219,0.655350],[0.621219,0.655350,0.587680,0.655830,0.621219,0.685096],[0.587680,0.655830,0.587574,0.684003,0.621219,0.685096],[0.555701,0.653268,0.587574,0.684003,0.587680,0.655830],[0.555701,0.653268,0.555568,0.680311,0.587574,0.684003],[0.555568,0.680311,0.590347,0.716755,0.587574,0.684003],[0.587574,0.684003,0.590347,0.716755,0.621219,0.716985],[0.621219,0.716985,0.590347,0.716755,0.621219,0.764093],[0.590347,0.716755,0.591931,0.764000,0.621219,0.764093],[0.590347,0.716755,0.558346,0.716515,0.591931,0.764000],[0.652091,0.716755,0.621219,0.716985,0.621219,0.764093],[0.654864,0.684003,0.621219,0.716985,0.652091,0.716755],[0.654864,0.684003,0.621219,0.685096,0.621219,0.716985],[0.654758,0.655830,0.621219,0.685096,0.654864,0.684003],[0.621219,0.655350,0.621219,0.685096,0.654758,0.655830],[0.653291,0.624885,0.621219,0.655350,0.654758,0.655830],[0.621219,0.623974,0.621219,0.655350,0.653291,0.624885],[0.621219,0.623974,0.589147,0.624885,0.621219,0.655350],[0.587574,0.684003,0.621219,0.716985,0.621219,0.685096],[0.652091,0.716755,0.621219,0.764093,0.650507,0.764000],[0.245954,0.101696,0.275026,0.139737,0.275026,0.101696],[0.232654,0.497596,0.233770,0.513589,0.273769,0.513589],[0.233770,0.513589,0.313768,0.513589,0.273769,0.513589],[0.313768,0.513589,0.233770,0.513589,0.273769,0.549969],[0.233770,0.513589,0.234067,0.550332,0.273769,0.549969],[0.202909,0.513589,0.234067,0.550332,0.233770,0.513589],[0.202909,0.513589,0.205123,0.547411,0.234067,0.550332],[0.177732,0.513589,0.205123,0.547411,0.202909,0.513589],[0.177732,0.513589,0.176053,0.547055,0.205123,0.547411],[0.147661,0.513589,0.176053,0.547055,0.177732,0.513589],[0.145671,0.548398,0.176053,0.547055,0.147661,0.513589],[0.145671,0.548398,0.176128,0.560351,0.176053,0.547055],[0.145484,0.561863,0.176128,0.560351,0.145671,0.548398],[0.145484,0.561863,0.175951,0.573271,0.176128,0.560351],[0.145481,0.574934,0.175951,0.573271,0.145484,0.561863],[0.145481,0.574934,0.175630,0.583169,0.175951,0.573271],[0.146296,0.584612,0.175630,0.583169,0.145481,0.574934],[0.146296,0.584612,0.175332,0.598992,0.175630,0.583169],[0.146942,0.600119,0.175332,0.598992,0.146296,0.584612],[0.146942,0.600119,0.174855,0.624467,0.175332,0.598992],[0.148052,0.625356,0.174855,0.624467,0.146942,0.600119],[0.148052,0.625356,0.175536,0.669173,0.174855,0.624467],[0.151635,0.669173,0.175536,0.669173,0.148052,0.625356],[0.151635,0.669173,0.176088,0.710763,0.175536,0.669173],[0.154256,0.710763,0.176088,0.710763,0.151635,0.669173],[0.154256,0.710763,0.176159,0.741363,0.176088,0.710763],[0.154944,0.742128,0.176159,0.741363,0.154256,0.710763],[0.154944,0.742128,0.177150,0.753811,0.176159,0.741363],[0.154944,0.742128,0.177981,0.763030,0.177150,0.753811],[0.154294,0.759591,0.177981,0.763030,0.154944,0.742128],[0.154294,0.759591,0.179815,0.786296,0.177981,0.763030],[0.153634,0.776232,0.179815,0.786296,0.154294,0.759591],[0.153634,0.776232,0.175244,0.803451,0.179815,0.786296],[0.151734,0.795089,0.175244,0.803451,0.153634,0.776232],[0.151734,0.795089,0.176119,0.834394,0.175244,0.803451],[0.150750,0.834394,0.176119,0.834394,0.151734,0.795089],[0.150750,0.834394,0.177429,0.875484,0.176119,0.834394],[0.150394,0.875484,0.177429,0.875484,0.150750,0.834394],[0.150394,0.875484,0.176202,0.901736,0.177429,0.875484],[0.149574,0.908472,0.176202,0.901736,0.150394,0.875484],[0.149574,0.908472,0.175870,0.931005,0.176202,0.901736],[0.148905,0.935267,0.175870,0.931005,0.149574,0.908472],[0.148905,0.935267,0.178761,0.955706,0.175870,0.931005],[0.149867,0.957845,0.178761,0.955706,0.148905,0.935267],[0.178761,0.955706,0.201108,0.915956,0.175870,0.931005],[0.178761,0.955706,0.200352,0.953032,0.201108,0.915956],[0.201108,0.915956,0.200352,0.953032,0.219910,0.956241],[0.201108,0.915956,0.219910,0.956241,0.217801,0.936873],[0.217801,0.936873,0.219910,0.956241,0.238454,0.957845],[0.219910,0.956241,0.238730,0.982983,0.238454,0.957845],[0.217801,0.936873,0.238454,0.957845,0.238959,0.944182],[0.217603,0.917527,0.217801,0.936873,0.238959,0.944182],[0.201108,0.915956,0.217801,0.936873,0.217603,0.917527],[0.217768,0.875484,0.201108,0.915956,0.217603,0.917527],[0.197581,0.875484,0.201108,0.915956,0.217768,0.875484],[0.176202,0.901736,0.201108,0.915956,0.197581,0.875484],[0.175870,0.931005,0.201108,0.915956,0.176202,0.901736],[0.176202,0.901736,0.197581,0.875484,0.177429,0.875484],[0.177429,0.875484,0.197581,0.875484,0.197897,0.834394],[0.197897,0.834394,0.197581,0.875484,0.216931,0.834394],[0.216931,0.834394,0.197581,0.875484,0.217768,0.875484],[0.216931,0.834394,0.217768,0.875484,0.238987,0.875484],[0.217768,0.875484,0.237029,0.918843,0.238987,0.875484],[0.217768,0.875484,0.217603,0.917527,0.237029,0.918843],[0.217603,0.917527,0.238959,0.944182,0.237029,0.918843],[0.265521,0.915388,0.238987,0.875484,0.237029,0.918843],[0.265521,0.915388,0.265512,0.875484,0.238987,0.875484],[0.265512,0.875484,0.240265,0.834394,0.238987,0.875484],[0.265512,0.875484,0.265761,0.834394,0.240265,0.834394],[0.047771,0.875484,0.018925,0.834394,0.018676,0.875484],[0.047771,0.875484,0.048337,0.834394,0.018925,0.834394],[0.071091,0.875484,0.048337,0.834394,0.047771,0.875484],[0.048337,0.834394,0.019044,0.797794,0.018925,0.834394],[0.048337,0.834394,0.048076,0.795436,0.019044,0.797794],[0.048076,0.795436,0.019271,0.784713,0.019044,0.797794],[0.048076,0.795436,0.047851,0.780961,0.019271,0.784713],[0.071320,0.795574,0.047851,0.780961,0.048076,0.795436],[0.047851,0.780961,0.019271,0.771760,0.019271,0.784713],[0.047851,0.780961,0.047562,0.764868,0.019271,0.771760],[0.047562,0.764868,0.019271,0.748447,0.019271,0.771760],[0.047562,0.764868,0.047617,0.747671,0.019271,0.748447],[0.070935,0.764910,0.047617,0.747671,0.047562,0.764868],[0.047617,0.747671,0.019271,0.710763,0.019271,0.748447],[0.047617,0.747671,0.048062,0.710763,0.019271,0.710763],[0.048062,0.710763,0.019271,0.669173,0.019271,0.710763],[0.048062,0.710763,0.046246,0.669173,0.019271,0.669173],[0.069615,0.710763,0.046246,0.669173,0.048062,0.710763],[0.046246,0.669173,0.019271,0.636670,0.019271,0.669173],[0.046246,0.669173,0.041383,0.631779,0.019271,0.636670],[0.041383,0.631779,0.018237,0.635260,0.019271,0.636670],[0.041383,0.631779,0.038683,0.624459,0.018237,0.635260],[0.061609,0.627185,0.038683,0.624459,0.041383,0.631779],[0.038683,0.624459,0.016521,0.631582,0.018237,0.635260],[0.038683,0.624459,0.035635,0.618173,0.016521,0.631582],[0.014029,0.627517,0.016521,0.631582,0.035635,0.618173],[0.273769,0.614328,0.271918,0.626012,0.273769,0.622837],[0.273769,0.614328,0.249539,0.614620,0.271918,0.626012],[0.273769,0.596120,0.249539,0.614620,0.273769,0.614328],[0.273769,0.596120,0.230342,0.594572,0.249539,0.614620],[0.273769,0.577053,0.230342,0.594572,0.273769,0.596120],[0.230758,0.576585,0.230342,0.594572,0.273769,0.577053],[0.202517,0.574961,0.230342,0.594572,0.230758,0.576585],[0.202517,0.574961,0.199296,0.586095,0.230342,0.594572],[0.175951,0.573271,0.199296,0.586095,0.202517,0.574961],[0.175630,0.583169,0.199296,0.586095,0.175951,0.573271],[0.175630,0.583169,0.201140,0.600670,0.199296,0.586095],[0.175332,0.598992,0.201140,0.600670,0.175630,0.583169],[0.175332,0.598992,0.197828,0.624062,0.201140,0.600670],[0.174855,0.624467,0.197828,0.624062,0.175332,0.598992],[0.174855,0.624467,0.197848,0.669173,0.197828,0.624062],[0.175536,0.669173,0.197848,0.669173,0.174855,0.624467],[0.175536,0.669173,0.199052,0.710763,0.197848,0.669173],[0.176088,0.710763,0.199052,0.710763,0.175536,0.669173],[0.176088,0.710763,0.200105,0.741188,0.199052,0.710763],[0.176159,0.741363,0.200105,0.741188,0.176088,0.710763],[0.176159,0.741363,0.199864,0.761048,0.200105,0.741188],[0.177150,0.753811,0.199864,0.761048,0.176159,0.741363],[0.177150,0.753811,0.199536,0.774158,0.199864,0.761048],[0.177981,0.763030,0.199536,0.774158,0.177150,0.753811],[0.177981,0.763030,0.199060,0.793048,0.199536,0.774158],[0.179815,0.786296,0.199060,0.793048,0.177981,0.763030],[0.179815,0.786296,0.197262,0.806573,0.199060,0.793048],[0.175244,0.803451,0.197262,0.806573,0.179815,0.786296],[0.175244,0.803451,0.197897,0.834394,0.197262,0.806573],[0.176119,0.834394,0.197897,0.834394,0.175244,0.803451],[0.177429,0.875484,0.197897,0.834394,0.176119,0.834394],[0.197262,0.806573,0.197897,0.834394,0.217658,0.807335],[0.217658,0.807335,0.197897,0.834394,0.216931,0.834394],[0.217658,0.807335,0.216931,0.834394,0.240265,0.834394],[0.216931,0.834394,0.238987,0.875484,0.240265,0.834394],[0.217658,0.807335,0.240265,0.834394,0.241839,0.806003],[0.265761,0.834394,0.241839,0.806003,0.240265,0.834394],[0.265761,0.834394,0.265880,0.800929,0.241839,0.806003],[0.265880,0.800929,0.238809,0.789066,0.241839,0.806003],[0.265880,0.800929,0.266107,0.787248,0.238809,0.789066],[0.266107,0.787248,0.241143,0.772629,0.238809,0.789066],[0.266107,0.787248,0.266107,0.773058,0.241143,0.772629],[0.266107,0.773058,0.242852,0.757878,0.241143,0.772629],[0.266107,0.773058,0.266107,0.748140,0.242852,0.757878],[0.266107,0.748140,0.243972,0.745019,0.242852,0.757878],[0.266107,0.748140,0.243864,0.710763,0.243972,0.745019],[0.266107,0.748140,0.266107,0.710763,0.243864,0.710763],[0.266107,0.710763,0.242630,0.669173,0.243864,0.710763],[0.266107,0.710763,0.266107,0.669173,0.242630,0.669173],[0.266107,0.669173,0.243191,0.629670,0.242630,0.669173],[0.266107,0.636670,0.243191,0.629670,0.266107,0.669173],[0.266107,0.636670,0.245807,0.620849,0.243191,0.629670],[0.268754,0.630195,0.245807,0.620849,0.266107,0.636670],[0.268754,0.630195,0.249539,0.614620,0.245807,0.620849],[0.271918,0.626012,0.249539,0.614620,0.268754,0.630195],[0.230342,0.594572,0.245807,0.620849,0.249539,0.614620],[0.230342,0.594572,0.226433,0.606246,0.245807,0.620849],[0.199296,0.586095,0.226433,0.606246,0.230342,0.594572],[0.199296,0.586095,0.201140,0.600670,0.226433,0.606246],[0.201140,0.600670,0.222533,0.624394,0.226433,0.606246],[0.201140,0.600670,0.197828,0.624062,0.222533,0.624394],[0.197828,0.624062,0.221002,0.669173,0.222533,0.624394],[0.197828,0.624062,0.197848,0.669173,0.221002,0.669173],[0.197848,0.669173,0.220913,0.710763,0.221002,0.669173],[0.197848,0.669173,0.199052,0.710763,0.220913,0.710763],[0.199052,0.710763,0.221945,0.742442,0.220913,0.710763],[0.199052,0.710763,0.200105,0.741188,0.221945,0.742442],[0.200105,0.741188,0.221523,0.760132,0.221945,0.742442],[0.200105,0.741188,0.199864,0.761048,0.221523,0.760132],[0.199864,0.761048,0.220832,0.779685,0.221523,0.760132],[0.199864,0.761048,0.199536,0.774158,0.220832,0.779685],[0.199536,0.774158,0.218450,0.793830,0.220832,0.779685],[0.199536,0.774158,0.199060,0.793048,0.218450,0.793830],[0.199060,0.793048,0.217658,0.807335,0.218450,0.793830],[0.199060,0.793048,0.197262,0.806573,0.217658,0.807335],[0.218450,0.793830,0.217658,0.807335,0.241839,0.806003],[0.238809,0.789066,0.218450,0.793830,0.241839,0.806003],[0.220832,0.779685,0.218450,0.793830,0.238809,0.789066],[0.241143,0.772629,0.220832,0.779685,0.238809,0.789066],[0.221523,0.760132,0.220832,0.779685,0.241143,0.772629],[0.242852,0.757878,0.221523,0.760132,0.241143,0.772629],[0.221945,0.742442,0.221523,0.760132,0.242852,0.757878],[0.221945,0.742442,0.242852,0.757878,0.243972,0.745019],[0.220913,0.710763,0.221945,0.742442,0.243972,0.745019],[0.220913,0.710763,0.243972,0.745019,0.243864,0.710763],[0.221002,0.669173,0.220913,0.710763,0.243864,0.710763],[0.221002,0.669173,0.243864,0.710763,0.242630,0.669173],[0.222533,0.624394,0.221002,0.669173,0.242630,0.669173],[0.222533,0.624394,0.242630,0.669173,0.243191,0.629670],[0.226433,0.606246,0.222533,0.624394,0.243191,0.629670],[0.226433,0.606246,0.243191,0.629670,0.245807,0.620849],[0.175951,0.573271,0.202517,0.574961,0.176128,0.560351],[0.176128,0.560351,0.202517,0.574961,0.204835,0.560118],[0.204835,0.560118,0.202517,0.574961,0.230758,0.576585],[0.204835,0.560118,0.230758,0.576585,0.232213,0.562307],[0.232213,0.562307,0.230758,0.576585,0.273769,0.577053],[0.232213,0.562307,0.273769,0.577053,0.273769,0.563509],[0.273769,0.563509,0.273769,0.577053,0.315325,0.562307],[0.315325,0.562307,0.273769,0.577053,0.316780,0.576585],[0.273769,0.577053,0.317196,0.594572,0.316780,0.576585],[0.273769,0.577053,0.273769,0.596120,0.317196,0.594572],[0.317196,0.594572,0.273769,0.596120,0.297999,0.614620],[0.297999,0.614620,0.273769,0.596120,0.273769,0.614328],[0.297999,0.614620,0.273769,0.614328,0.275620,0.626012],[0.275620,0.626012,0.273769,0.614328,0.273769,0.622837],[0.275620,0.626012,0.278784,0.630195,0.297999,0.614620],[0.301730,0.620849,0.297999,0.614620,0.278784,0.630195],[0.317196,0.594572,0.297999,0.614620,0.301730,0.620849],[0.317196,0.594572,0.301730,0.620849,0.321104,0.606246],[0.321104,0.606246,0.301730,0.620849,0.304347,0.629670],[0.281431,0.636670,0.304347,0.629670,0.301730,0.620849],[0.281431,0.669173,0.304347,0.629670,0.281431,0.636670],[0.281431,0.669173,0.304908,0.669173,0.304347,0.629670],[0.281431,0.710763,0.304908,0.669173,0.281431,0.669173],[0.281431,0.710763,0.303674,0.710763,0.304908,0.669173],[0.281431,0.748140,0.303674,0.710763,0.281431,0.710763],[0.281431,0.748140,0.303566,0.745019,0.303674,0.710763],[0.281431,0.748140,0.304685,0.757878,0.303566,0.745019],[0.281431,0.773058,0.304685,0.757878,0.281431,0.748140],[0.281431,0.773058,0.306395,0.772629,0.304685,0.757878],[0.281431,0.787248,0.306395,0.772629,0.281431,0.773058],[0.281431,0.787248,0.308728,0.789066,0.306395,0.772629],[0.281658,0.800929,0.308728,0.789066,0.281431,0.787248],[0.281658,0.800929,0.305698,0.806003,0.308728,0.789066],[0.281777,0.834394,0.305698,0.806003,0.281658,0.800929],[0.281777,0.834394,0.307273,0.834394,0.305698,0.806003],[0.282026,0.875484,0.307273,0.834394,0.281777,0.834394],[0.282026,0.875484,0.308550,0.875484,0.307273,0.834394],[0.282016,0.915388,0.308550,0.875484,0.282026,0.875484],[0.282016,0.915388,0.310509,0.918843,0.308550,0.875484],[0.281878,0.938436,0.310509,0.918843,0.282016,0.915388],[0.281878,0.938436,0.308579,0.944182,0.310509,0.918843],[0.281750,0.957845,0.308579,0.944182,0.281878,0.938436],[0.281750,0.957845,0.309083,0.957845,0.308579,0.944182],[0.281750,0.957845,0.281431,0.982983,0.309083,0.957845],[0.499847,0.982983,0.528267,0.982983,0.528586,0.957845],[0.499528,0.994548,0.528267,0.982983,0.499847,0.982983],[0.499528,0.994548,0.528267,0.994548,0.528267,0.982983],[0.595130,0.852574,0.590184,0.880463,0.618415,0.877711],[0.595130,0.852574,0.564245,0.876189,0.590184,0.880463],[0.551880,0.863807,0.564245,0.876189,0.595130,0.852574],[0.328263,0.982983,0.309419,0.994548,0.327189,0.994548],[0.328263,0.982983,0.308808,0.982983,0.309419,0.994548],[0.327628,0.956241,0.308808,0.982983,0.328263,0.982983],[0.327628,0.956241,0.309083,0.957845,0.308808,0.982983],[0.329737,0.936873,0.309083,0.957845,0.327628,0.956241],[0.329737,0.936873,0.308579,0.944182,0.309083,0.957845],[0.329934,0.917527,0.308579,0.944182,0.329737,0.936873],[0.329934,0.917527,0.310509,0.918843,0.308579,0.944182],[0.329770,0.875484,0.310509,0.918843,0.329934,0.917527],[0.329770,0.875484,0.308550,0.875484,0.310509,0.918843],[0.330606,0.834394,0.308550,0.875484,0.329770,0.875484],[0.330606,0.834394,0.307273,0.834394,0.308550,0.875484],[0.329880,0.807335,0.307273,0.834394,0.330606,0.834394],[0.329880,0.807335,0.305698,0.806003,0.307273,0.834394],[0.329088,0.793830,0.305698,0.806003,0.329880,0.807335],[0.308728,0.789066,0.305698,0.806003,0.329088,0.793830],[0.326706,0.779685,0.308728,0.789066,0.329088,0.793830],[0.306395,0.772629,0.308728,0.789066,0.326706,0.779685],[0.326015,0.760132,0.306395,0.772629,0.326706,0.779685],[0.304685,0.757878,0.306395,0.772629,0.326015,0.760132],[0.325593,0.742442,0.304685,0.757878,0.326015,0.760132],[0.325593,0.742442,0.303566,0.745019,0.304685,0.757878],[0.326625,0.710763,0.303566,0.745019,0.325593,0.742442],[0.326625,0.710763,0.303674,0.710763,0.303566,0.745019],[0.326536,0.669173,0.303674,0.710763,0.326625,0.710763],[0.326536,0.669173,0.304908,0.669173,0.303674,0.710763],[0.325004,0.624394,0.304908,0.669173,0.326536,0.669173],[0.325004,0.624394,0.304347,0.629670,0.304908,0.669173],[0.321104,0.606246,0.304347,0.629670,0.325004,0.624394],[0.346397,0.600670,0.321104,0.606246,0.325004,0.624394],[0.348242,0.586095,0.321104,0.606246,0.346397,0.600670],[0.348242,0.586095,0.317196,0.594572,0.321104,0.606246],[0.345021,0.574961,0.317196,0.594572,0.348242,0.586095],[0.345021,0.574961,0.316780,0.576585,0.317196,0.594572],[0.342703,0.560118,0.316780,0.576585,0.345021,0.574961],[0.342703,0.560118,0.315325,0.562307,0.316780,0.576585],[0.342415,0.547411,0.315325,0.562307,0.342703,0.560118],[0.342415,0.547411,0.313471,0.550332,0.315325,0.562307],[0.344629,0.513589,0.313471,0.550332,0.342415,0.547411],[0.313768,0.513589,0.313471,0.550332,0.344629,0.513589],[0.313768,0.513589,0.273769,0.549969,0.313471,0.550332],[0.273769,0.549969,0.273769,0.563509,0.313471,0.550332],[0.234067,0.550332,0.273769,0.563509,0.273769,0.549969],[0.234067,0.550332,0.232213,0.562307,0.273769,0.563509],[0.205123,0.547411,0.232213,0.562307,0.234067,0.550332],[0.205123,0.547411,0.204835,0.560118,0.232213,0.562307],[0.176053,0.547055,0.204835,0.560118,0.205123,0.547411],[0.176053,0.547055,0.176128,0.560351,0.204835,0.560118],[0.313471,0.550332,0.273769,0.563509,0.315325,0.562307],[0.344629,0.513589,0.342415,0.547411,0.369806,0.513589],[0.369806,0.513589,0.342415,0.547411,0.371484,0.547055],[0.371484,0.547055,0.342415,0.547411,0.342703,0.560118],[0.371484,0.547055,0.342703,0.560118,0.371410,0.560351],[0.371410,0.560351,0.342703,0.560118,0.345021,0.574961],[0.371586,0.573271,0.371410,0.560351,0.345021,0.574961],[0.402054,0.561863,0.371410,0.560351,0.371586,0.573271],[0.402054,0.561863,0.401867,0.548398,0.371410,0.560351],[0.432220,0.548413,0.401867,0.548398,0.402054,0.561863],[0.432220,0.548413,0.431626,0.513589,0.401867,0.548398],[0.464350,0.513589,0.431626,0.513589,0.432220,0.548413],[0.466164,0.549887,0.464350,0.513589,0.432220,0.548413],[0.495792,0.513589,0.464350,0.513589,0.466164,0.549887],[0.495792,0.513589,0.466164,0.549887,0.496005,0.552149],[0.466164,0.549887,0.432220,0.548413,0.431662,0.564003],[0.431662,0.564003,0.432220,0.548413,0.402054,0.561863],[0.431662,0.564003,0.402054,0.561863,0.402057,0.574934],[0.402057,0.574934,0.402054,0.561863,0.371586,0.573271],[0.402057,0.574934,0.371586,0.573271,0.371908,0.583169],[0.371908,0.583169,0.371586,0.573271,0.348242,0.586095],[0.371586,0.573271,0.345021,0.574961,0.348242,0.586095],[0.371908,0.583169,0.348242,0.586095,0.346397,0.600670],[0.372206,0.598992,0.371908,0.583169,0.346397,0.600670],[0.401242,0.584612,0.371908,0.583169,0.372206,0.598992],[0.401242,0.584612,0.402057,0.574934,0.371908,0.583169],[0.430610,0.579665,0.402057,0.574934,0.401242,0.584612],[0.430610,0.579665,0.431662,0.564003,0.402057,0.574934],[0.400596,0.600119,0.401242,0.584612,0.372206,0.598992],[0.400596,0.600119,0.372206,0.598992,0.372683,0.624467],[0.372683,0.624467,0.372206,0.598992,0.349710,0.624062],[0.372206,0.598992,0.346397,0.600670,0.349710,0.624062],[0.346397,0.600670,0.325004,0.624394,0.349710,0.624062],[0.349710,0.624062,0.325004,0.624394,0.326536,0.669173],[0.349710,0.624062,0.326536,0.669173,0.349690,0.669173],[0.349690,0.669173,0.326536,0.669173,0.326625,0.710763],[0.349690,0.669173,0.326625,0.710763,0.348486,0.710763],[0.348486,0.710763,0.326625,0.710763,0.325593,0.742442],[0.348486,0.710763,0.325593,0.742442,0.347433,0.741188],[0.347433,0.741188,0.325593,0.742442,0.326015,0.760132],[0.347433,0.741188,0.326015,0.760132,0.347674,0.761048],[0.347674,0.761048,0.326015,0.760132,0.326706,0.779685],[0.347674,0.761048,0.326706,0.779685,0.348001,0.774158],[0.348001,0.774158,0.326706,0.779685,0.329088,0.793830],[0.348001,0.774158,0.329088,0.793830,0.348478,0.793048],[0.348478,0.793048,0.329088,0.793830,0.329880,0.807335],[0.348478,0.793048,0.329880,0.807335,0.350276,0.806573],[0.350276,0.806573,0.329880,0.807335,0.349641,0.834394],[0.329880,0.807335,0.330606,0.834394,0.349641,0.834394],[0.349641,0.834394,0.330606,0.834394,0.349957,0.875484],[0.330606,0.834394,0.329770,0.875484,0.349957,0.875484],[0.349957,0.875484,0.329770,0.875484,0.346430,0.915956],[0.329770,0.875484,0.329934,0.917527,0.346430,0.915956],[0.346430,0.915956,0.329934,0.917527,0.329737,0.936873],[0.346430,0.915956,0.329737,0.936873,0.327628,0.956241],[0.346430,0.915956,0.327628,0.956241,0.347186,0.953032],[0.347186,0.953032,0.327628,0.956241,0.328263,0.982983],[0.347186,0.953032,0.328263,0.982983,0.346734,0.982983],[0.346734,0.982983,0.328263,0.982983,0.327189,0.994548],[0.346734,0.982983,0.327189,0.994548,0.346231,0.994548],[0.551805,0.848576,0.551880,0.863807,0.595130,0.852574],[0.565748,0.830761,0.551805,0.848576,0.595130,0.852574],[0.367978,0.982983,0.346231,0.994548,0.368085,0.994548],[0.367978,0.982983,0.346734,0.982983,0.346231,0.994548],[0.368777,0.955706,0.346734,0.982983,0.367978,0.982983],[0.368777,0.955706,0.347186,0.953032,0.346734,0.982983],[0.368777,0.955706,0.346430,0.915956,0.347186,0.953032],[0.346430,0.915956,0.368777,0.955706,0.371668,0.931005],[0.398633,0.935267,0.371668,0.931005,0.368777,0.955706],[0.398633,0.935267,0.397964,0.908472,0.371668,0.931005],[0.426689,0.900836,0.397964,0.908472,0.398633,0.935267],[0.426689,0.900836,0.425059,0.875484,0.397964,0.908472],[0.425059,0.875484,0.426689,0.900836,0.447546,0.875484],[0.447546,0.875484,0.426689,0.900836,0.426140,0.929038],[0.426140,0.929038,0.426689,0.900836,0.398633,0.935267],[0.426140,0.929038,0.398633,0.935267,0.397671,0.957845],[0.397671,0.957845,0.398633,0.935267,0.368777,0.955706],[0.397671,0.957845,0.368777,0.955706,0.367978,0.982983],[0.395306,0.982983,0.397671,0.957845,0.367978,0.982983],[0.425777,0.957845,0.397671,0.957845,0.395306,0.982983],[0.425777,0.957845,0.426140,0.929038,0.397671,0.957845],[0.455085,0.911878,0.426140,0.929038,0.425777,0.957845],[0.447546,0.875484,0.426140,0.929038,0.455085,0.911878],[0.447546,0.875484,0.455085,0.911878,0.476447,0.875484],[0.476447,0.875484,0.455085,0.911878,0.476940,0.915456],[0.455085,0.911878,0.476671,0.936705,0.476940,0.915456],[0.455085,0.911878,0.477328,0.957845,0.476671,0.936705],[0.455085,0.911878,0.451935,0.957845,0.477328,0.957845],[0.455085,0.911878,0.425777,0.957845,0.451935,0.957845],[0.395306,0.982983,0.367978,0.982983,0.368085,0.994548],[0.395306,0.982983,0.368085,0.994548,0.395006,0.994548],[0.565748,0.830761,0.595130,0.852574,0.590794,0.824922],[0.590794,0.824922,0.595130,0.852574,0.618958,0.829512],[0.618958,0.829512,0.595130,0.852574,0.630883,0.847398],[0.595130,0.852574,0.630519,0.865194,0.630883,0.847398],[0.595130,0.852574,0.618415,0.877711,0.630519,0.865194],[0.476607,0.994548,0.499528,0.994548,0.499847,0.982983],[0.425059,0.875484,0.397144,0.875484,0.397964,0.908472],[0.397964,0.908472,0.397144,0.875484,0.371336,0.901736],[0.397144,0.875484,0.370109,0.875484,0.371336,0.901736],[0.397144,0.875484,0.396788,0.834394,0.370109,0.875484],[0.396788,0.834394,0.371419,0.834394,0.370109,0.875484],[0.396788,0.834394,0.395804,0.795089,0.371419,0.834394],[0.424760,0.793784,0.395804,0.795089,0.396788,0.834394],[0.395804,0.795089,0.372294,0.803451,0.371419,0.834394],[0.395804,0.795089,0.393904,0.776232,0.372294,0.803451],[0.393904,0.776232,0.367723,0.786296,0.372294,0.803451],[0.393904,0.776232,0.393244,0.759591,0.367723,0.786296],[0.423455,0.762244,0.393244,0.759591,0.393904,0.776232],[0.423455,0.762244,0.423238,0.744584,0.393244,0.759591],[0.423238,0.744584,0.423455,0.762244,0.447080,0.746215],[0.447080,0.746215,0.423455,0.762244,0.447245,0.763967],[0.447080,0.746215,0.447245,0.763967,0.476562,0.747360],[0.476562,0.747360,0.447245,0.763967,0.476603,0.764910],[0.423238,0.744584,0.392594,0.742128,0.393244,0.759591],[0.393244,0.759591,0.392594,0.742128,0.369557,0.763030],[0.392594,0.742128,0.370387,0.753811,0.369557,0.763030],[0.392594,0.742128,0.371379,0.741363,0.370387,0.753811],[0.392594,0.742128,0.393282,0.710763,0.371379,0.741363],[0.393282,0.710763,0.371450,0.710763,0.371379,0.741363],[0.393282,0.710763,0.395903,0.669173,0.371450,0.710763],[0.426099,0.669173,0.395903,0.669173,0.393282,0.710763],[0.395903,0.669173,0.372002,0.669173,0.371450,0.710763],[0.395903,0.669173,0.399486,0.625356,0.372002,0.669173],[0.399486,0.625356,0.372683,0.624467,0.372002,0.669173],[0.399486,0.625356,0.400596,0.600119,0.372683,0.624467],[0.428121,0.605967,0.400596,0.600119,0.399486,0.625356],[0.372002,0.669173,0.372683,0.624467,0.349690,0.669173],[0.372683,0.624467,0.349710,0.624062,0.349690,0.669173],[0.372002,0.669173,0.349690,0.669173,0.348486,0.710763],[0.371450,0.710763,0.372002,0.669173,0.348486,0.710763],[0.371450,0.710763,0.348486,0.710763,0.347433,0.741188],[0.371379,0.741363,0.371450,0.710763,0.347433,0.741188],[0.371379,0.741363,0.347433,0.741188,0.347674,0.761048],[0.370387,0.753811,0.371379,0.741363,0.347674,0.761048],[0.370387,0.753811,0.347674,0.761048,0.348001,0.774158],[0.370387,0.753811,0.348001,0.774158,0.369557,0.763030],[0.369557,0.763030,0.348001,0.774158,0.348478,0.793048],[0.369557,0.763030,0.348478,0.793048,0.367723,0.786296],[0.367723,0.786296,0.348478,0.793048,0.350276,0.806573],[0.372294,0.803451,0.367723,0.786296,0.350276,0.806573],[0.372294,0.803451,0.350276,0.806573,0.349641,0.834394],[0.371419,0.834394,0.372294,0.803451,0.349641,0.834394],[0.370109,0.875484,0.371419,0.834394,0.349641,0.834394],[0.370109,0.875484,0.349641,0.834394,0.349957,0.875484],[0.371336,0.901736,0.370109,0.875484,0.349957,0.875484],[0.371336,0.901736,0.349957,0.875484,0.346430,0.915956],[0.371336,0.901736,0.346430,0.915956,0.371668,0.931005],[0.397964,0.908472,0.371336,0.901736,0.371668,0.931005],[0.393244,0.759591,0.369557,0.763030,0.367723,0.786296],[0.431626,0.513589,0.399877,0.513589,0.401867,0.548398],[0.401867,0.548398,0.399877,0.513589,0.371484,0.547055],[0.399877,0.513589,0.369806,0.513589,0.371484,0.547055],[0.401867,0.548398,0.371484,0.547055,0.371410,0.560351],[0.281431,0.982983,0.308808,0.982983,0.309083,0.957845],[0.281431,0.982983,0.281431,0.994548,0.308808,0.982983],[0.281431,0.994548,0.309419,0.994548,0.308808,0.982983],[0.278784,0.630195,0.281431,0.636670,0.301730,0.620849],[0.014029,0.497596,0.014029,0.513589,0.051746,0.513589],[0.051746,0.513589,0.014029,0.513589,0.051533,0.552149],[0.051746,0.513589,0.051533,0.552149,0.081374,0.549887],[0.081374,0.549887,0.051533,0.552149,0.080492,0.570144],[0.080492,0.570144,0.115876,0.564003,0.081374,0.549887],[0.080492,0.570144,0.116928,0.579665,0.115876,0.564003],[0.115318,0.548413,0.081374,0.549887,0.115876,0.564003],[0.083187,0.513589,0.081374,0.549887,0.115318,0.548413],[0.083187,0.513589,0.051746,0.513589,0.081374,0.549887],[0.053057,0.497596,0.051746,0.513589,0.083187,0.513589],[0.053057,0.497596,0.014029,0.497596,0.051746,0.513589],[0.082473,0.497596,0.053057,0.497596,0.083187,0.513589],[0.082473,0.497596,0.083187,0.513589,0.115912,0.513589],[0.115912,0.513589,0.083187,0.513589,0.115318,0.548413],[0.115413,0.497596,0.082473,0.497596,0.115912,0.513589],[0.533509,0.551275,0.496005,0.552149,0.533509,0.571972],[0.049215,0.279386,0.021389,0.279386,0.049390,0.304052],[0.049215,0.279386,0.049390,0.304052,0.086224,0.304052],[0.086224,0.304052,0.049390,0.304052,0.086277,0.318018],[0.086224,0.304052,0.086277,0.318018,0.097770,0.318018],[0.086224,0.304052,0.097770,0.318018,0.097789,0.304052],[0.097789,0.304052,0.097770,0.318018,0.109355,0.304052],[0.097789,0.304052,0.109355,0.304052,0.109176,0.279386],[0.121415,0.279386,0.109176,0.279386,0.109355,0.304052],[0.109176,0.279386,0.096937,0.279386,0.097789,0.304052],[0.086224,0.304052,0.097789,0.304052,0.096937,0.279386],[0.096937,0.279386,0.084698,0.279386,0.086224,0.304052],[0.084698,0.279386,0.049215,0.279386,0.086224,0.304052],[0.197834,0.195019,0.207818,0.197135,0.207148,0.183741],[0.207148,0.183741,0.207818,0.197135,0.241159,0.187488],[0.241159,0.187488,0.207818,0.197135,0.241104,0.201655],[0.500706,0.180546,0.465779,0.191788,0.500042,0.193714],[0.500706,0.180546,0.500042,0.193714,0.528663,0.195165],[0.500706,0.180546,0.528663,0.195165,0.528663,0.181510],[0.528663,0.135907,0.501369,0.167377,0.528663,0.167855],[0.021389,0.135907,0.021389,0.167855,0.048683,0.167377],[0.048683,0.167377,0.021389,0.167855,0.049346,0.180546],[0.048683,0.167377,0.049346,0.180546,0.083562,0.178825],[0.083562,0.178825,0.049346,0.180546,0.084273,0.191788],[0.095777,0.177727,0.083562,0.178825,0.084273,0.191788],[0.082850,0.165863,0.083562,0.178825,0.095777,0.177727],[0.082850,0.165863,0.048683,0.167377,0.083562,0.178825],[0.051781,0.135241,0.048683,0.167377,0.082850,0.165863],[0.021389,0.135907,0.048683,0.167377,0.051781,0.135241],[0.095777,0.177727,0.084273,0.191788,0.096337,0.190910],[0.096337,0.190910,0.084273,0.191788,0.095729,0.232208],[0.084273,0.191788,0.083719,0.232208,0.095729,0.232208],[0.108401,0.190032,0.096337,0.190910,0.095729,0.232208],[0.095777,0.177727,0.096337,0.190910,0.108401,0.190032],[0.108401,0.190032,0.095729,0.232208,0.107738,0.232208],[0.021389,0.073284,0.021389,0.098681,0.047187,0.099698],[0.045308,0.070165,0.021389,0.073284,0.047187,0.099698],[0.045308,0.070165,0.047187,0.099698,0.082880,0.099144],[0.047187,0.099698,0.084863,0.134023,0.082880,0.099144],[0.082880,0.099144,0.084863,0.134023,0.095238,0.099702],[0.095238,0.099702,0.084863,0.134023,0.096559,0.132838],[0.096559,0.132838,0.084863,0.134023,0.095218,0.164544],[0.096559,0.132838,0.095218,0.164544,0.107585,0.163225],[0.107585,0.163225,0.095218,0.164544,0.107993,0.176629],[0.107585,0.163225,0.107993,0.176629,0.120209,0.175531],[0.120209,0.175531,0.107993,0.176629,0.120465,0.189155],[0.120209,0.175531,0.120465,0.189155,0.147062,0.175368],[0.120465,0.189155,0.148499,0.188829,0.147062,0.175368],[0.147062,0.175368,0.148499,0.188829,0.176766,0.176347],[0.148499,0.188829,0.177867,0.190788,0.176766,0.176347],[0.176766,0.176347,0.177867,0.190788,0.186893,0.178812],[0.176766,0.176347,0.186893,0.178812,0.185936,0.164720],[0.185936,0.164720,0.186893,0.178812,0.196207,0.167533],[0.185936,0.164720,0.196207,0.167533,0.196591,0.138090],[0.207054,0.139258,0.196591,0.138090,0.196207,0.167533],[0.210526,0.104457,0.196591,0.138090,0.207054,0.139258],[0.210526,0.104457,0.198906,0.104557,0.196591,0.138090],[0.210526,0.104457,0.202164,0.075418,0.198906,0.104557],[0.215414,0.075019,0.202164,0.075418,0.210526,0.104457],[0.215414,0.075019,0.203667,0.040367,0.202164,0.075418],[0.217668,0.040367,0.203667,0.040367,0.215414,0.075019],[0.082614,0.033960,0.087055,0.061678,0.095060,0.033914],[0.087055,0.061678,0.103503,0.063019,0.095060,0.033914],[0.087055,0.061678,0.095238,0.099702,0.103503,0.063019],[0.087055,0.061678,0.082880,0.099144,0.095238,0.099702],[0.103503,0.063019,0.095238,0.099702,0.107595,0.100260],[0.095238,0.099702,0.096559,0.132838,0.107595,0.100260],[0.107595,0.100260,0.096559,0.132838,0.108256,0.131654],[0.108256,0.131654,0.096559,0.132838,0.107585,0.163225],[0.108256,0.131654,0.107585,0.163225,0.119952,0.161906],[0.119952,0.161906,0.107585,0.163225,0.120209,0.175531],[0.119952,0.161906,0.120209,0.175531,0.145625,0.161906],[0.120209,0.175531,0.147062,0.175368,0.145625,0.161906],[0.145625,0.161906,0.147062,0.175368,0.175666,0.161906],[0.147062,0.175368,0.176766,0.176347,0.175666,0.161906],[0.175666,0.161906,0.176766,0.176347,0.185936,0.164720],[0.175666,0.161906,0.185936,0.164720,0.186128,0.136922],[0.186128,0.136922,0.185936,0.164720,0.196591,0.138090],[0.198906,0.104557,0.186128,0.136922,0.196591,0.138090],[0.198906,0.104557,0.187286,0.104657,0.186128,0.136922],[0.188915,0.075818,0.187286,0.104657,0.198906,0.104557],[0.175666,0.076217,0.187286,0.104657,0.188915,0.075818],[0.175666,0.076217,0.175666,0.104756,0.187286,0.104657],[0.578039,0.393080,0.593411,0.413990,0.578039,0.413990],[0.578039,0.393080,0.593411,0.393080,0.593411,0.413990],[0.578039,0.370691,0.593411,0.393080,0.578039,0.393080],[0.593411,0.370691,0.593411,0.393080,0.578039,0.370691],[0.593411,0.370691,0.611196,0.393080,0.593411,0.393080],[0.611196,0.370691,0.611196,0.393080,0.593411,0.370691],[0.611196,0.370691,0.629763,0.393080,0.611196,0.393080],[0.629763,0.370691,0.629763,0.393080,0.611196,0.370691],[0.629763,0.370691,0.664468,0.393080,0.629763,0.393080],[0.664468,0.370691,0.664468,0.393080,0.629763,0.370691],[0.710904,0.393080,0.664468,0.393080,0.664468,0.370691],[0.664468,0.393080,0.710904,0.393080,0.710904,0.413990],[0.710904,0.393080,0.744670,0.413990,0.710904,0.413990],[0.710904,0.393080,0.744670,0.393080,0.744670,0.413990],[0.710904,0.370691,0.744670,0.393080,0.710904,0.393080],[0.744670,0.370691,0.744670,0.393080,0.710904,0.370691],[0.744670,0.370691,0.768916,0.393080,0.744670,0.393080],[0.744670,0.370691,0.769679,0.370691,0.768916,0.393080],[0.744670,0.346615,0.769679,0.370691,0.744670,0.370691],[0.758540,0.346615,0.769679,0.370691,0.744670,0.346615],[0.770986,0.346615,0.769679,0.370691,0.758540,0.346615],[0.770986,0.346615,0.784899,0.346615,0.769679,0.370691],[0.771213,0.325572,0.784899,0.346615,0.770986,0.346615],[0.771213,0.325572,0.787570,0.325572,0.784899,0.346615],[0.771213,0.325572,0.771308,0.305962,0.787570,0.325572],[0.757911,0.305962,0.771308,0.305962,0.771213,0.325572],[0.757911,0.305962,0.759916,0.284901,0.771308,0.305962],[0.744670,0.284901,0.759916,0.284901,0.757911,0.305962],[0.759916,0.284901,0.744670,0.284901,0.744670,0.252397],[0.744670,0.284901,0.710904,0.252397,0.744670,0.252397],[0.744670,0.284901,0.710904,0.284901,0.710904,0.252397],[0.710904,0.284901,0.744670,0.284901,0.744670,0.305962],[0.744670,0.305962,0.744670,0.284901,0.757911,0.305962],[0.744670,0.305962,0.757911,0.305962,0.757644,0.325572],[0.757644,0.325572,0.757911,0.305962,0.771213,0.325572],[0.771213,0.325572,0.770986,0.346615,0.757644,0.325572],[0.757644,0.325572,0.770986,0.346615,0.758540,0.346615],[0.757644,0.325572,0.758540,0.346615,0.744670,0.325572],[0.744670,0.325572,0.758540,0.346615,0.744670,0.346615],[0.744670,0.325572,0.744670,0.346615,0.710904,0.325572],[0.710904,0.325572,0.744670,0.346615,0.710904,0.346615],[0.744670,0.346615,0.744670,0.370691,0.710904,0.346615],[0.710904,0.346615,0.744670,0.370691,0.710904,0.370691],[0.710904,0.346615,0.710904,0.370691,0.664468,0.346615],[0.664468,0.346615,0.710904,0.370691,0.664468,0.370691],[0.710904,0.370691,0.710904,0.393080,0.664468,0.370691],[0.664468,0.346615,0.664468,0.370691,0.629763,0.346615],[0.629763,0.346615,0.664468,0.370691,0.629763,0.370691],[0.629763,0.346615,0.629763,0.370691,0.611196,0.346615],[0.611196,0.346615,0.629763,0.370691,0.611196,0.370691],[0.611196,0.346615,0.611196,0.370691,0.593411,0.346615],[0.593411,0.346615,0.611196,0.370691,0.593411,0.370691],[0.593411,0.346615,0.593411,0.370691,0.578039,0.346615],[0.578039,0.346615,0.593411,0.370691,0.578039,0.370691],[0.107506,0.033868,0.119952,0.064359,0.119952,0.033822],[0.103503,0.063019,0.119952,0.064359,0.107506,0.033868],[0.103503,0.063019,0.107595,0.100260,0.119952,0.064359],[0.107595,0.100260,0.119952,0.100818,0.119952,0.064359],[0.107595,0.100260,0.119952,0.130470,0.119952,0.100818],[0.107595,0.100260,0.108256,0.131654,0.119952,0.130470],[0.108256,0.131654,0.119952,0.161906,0.119952,0.130470],[0.578039,0.305962,0.578039,0.284901,0.593411,0.305962],[0.593411,0.305962,0.578039,0.284901,0.593411,0.284901],[0.593411,0.284901,0.578039,0.284901,0.578039,0.252397],[0.593411,0.284901,0.578039,0.252397,0.593411,0.252397],[0.593411,0.484921,0.578039,0.484921,0.578039,0.454993],[0.593411,0.484921,0.578039,0.454993,0.593411,0.454993],[0.593411,0.454993,0.578039,0.454993,0.593411,0.433541],[0.593411,0.433541,0.578039,0.454993,0.578039,0.433541],[0.175666,0.135754,0.175666,0.161906,0.186128,0.136922],[0.175666,0.135754,0.186128,0.136922,0.187286,0.104657],[0.187286,0.104657,0.175666,0.104756,0.175666,0.135754],[0.593411,0.433541,0.578039,0.433541,0.578039,0.413990],[0.593411,0.413990,0.593411,0.433541,0.578039,0.413990],[0.611196,0.433541,0.593411,0.433541,0.593411,0.413990],[0.611196,0.433541,0.593411,0.454993,0.593411,0.433541],[0.593411,0.454993,0.611196,0.433541,0.611196,0.454993],[0.611196,0.454993,0.611196,0.433541,0.629763,0.454993],[0.629763,0.454993,0.611196,0.433541,0.629763,0.433541],[0.611196,0.413990,0.629763,0.433541,0.611196,0.433541],[0.611196,0.413990,0.629763,0.413990,0.629763,0.433541],[0.611196,0.393080,0.629763,0.413990,0.611196,0.413990],[0.611196,0.393080,0.629763,0.393080,0.629763,0.413990],[0.629763,0.393080,0.664468,0.413990,0.629763,0.413990],[0.629763,0.393080,0.664468,0.393080,0.664468,0.413990],[0.664468,0.393080,0.710904,0.413990,0.664468,0.413990],[0.664468,0.413990,0.710904,0.413990,0.710904,0.433541],[0.710904,0.413990,0.744670,0.433541,0.710904,0.433541],[0.710904,0.413990,0.744670,0.413990,0.744670,0.433541],[0.744670,0.433541,0.744670,0.413990,0.768282,0.433541],[0.768282,0.433541,0.744670,0.413990,0.768194,0.413990],[0.744670,0.413990,0.744670,0.393080,0.768194,0.413990],[0.768194,0.413990,0.744670,0.393080,0.768916,0.393080],[0.768194,0.413990,0.768916,0.393080,0.800728,0.413990],[0.800728,0.413990,0.768916,0.393080,0.800728,0.393080],[0.769679,0.370691,0.800728,0.393080,0.768916,0.393080],[0.769679,0.370691,0.800728,0.370965,0.800728,0.393080],[0.784899,0.346615,0.800728,0.370965,0.769679,0.370691],[0.784899,0.346615,0.800728,0.346615,0.800728,0.370965],[0.787570,0.325572,0.800728,0.346615,0.784899,0.346615],[0.787570,0.325572,0.800728,0.325572,0.800728,0.346615],[0.787570,0.325572,0.787625,0.305962,0.800728,0.325572],[0.771308,0.305962,0.787625,0.305962,0.787570,0.325572],[0.771308,0.305962,0.771967,0.284901,0.787625,0.305962],[0.759916,0.284901,0.771967,0.284901,0.771308,0.305962],[0.771967,0.284901,0.759916,0.284901,0.773537,0.252397],[0.759916,0.284901,0.744670,0.252397,0.773537,0.252397],[0.772503,0.484921,0.744670,0.484921,0.744670,0.454993],[0.744670,0.484921,0.710904,0.454993,0.744670,0.454993],[0.744670,0.484921,0.710904,0.484921,0.710904,0.454993],[0.710904,0.484921,0.664468,0.454993,0.710904,0.454993],[0.710904,0.484921,0.664468,0.484921,0.664468,0.454993],[0.710904,0.284901,0.664468,0.252397,0.710904,0.252397],[0.710904,0.284901,0.664468,0.284901,0.664468,0.252397],[0.664468,0.284901,0.710904,0.284901,0.710904,0.305962],[0.710904,0.305962,0.710904,0.284901,0.744670,0.305962],[0.710904,0.305962,0.744670,0.305962,0.744670,0.325572],[0.744670,0.325572,0.744670,0.305962,0.757644,0.325572],[0.710904,0.325572,0.710904,0.305962,0.744670,0.325572],[0.664468,0.305962,0.710904,0.305962,0.710904,0.325572],[0.664468,0.305962,0.664468,0.284901,0.710904,0.305962],[0.629763,0.284901,0.664468,0.284901,0.664468,0.305962],[0.664468,0.284901,0.629763,0.284901,0.629763,0.252397],[0.629763,0.284901,0.611196,0.252397,0.629763,0.252397],[0.629763,0.284901,0.611196,0.284901,0.611196,0.252397],[0.611196,0.284901,0.629763,0.284901,0.629763,0.305962],[0.629763,0.305962,0.629763,0.284901,0.664468,0.305962],[0.629763,0.305962,0.664468,0.305962,0.664468,0.325572],[0.664468,0.325572,0.664468,0.305962,0.710904,0.325572],[0.710904,0.325572,0.710904,0.346615,0.664468,0.325572],[0.710904,0.346615,0.664468,0.346615,0.664468,0.325572],[0.664468,0.325572,0.664468,0.346615,0.629763,0.325572],[0.629763,0.325572,0.664468,0.346615,0.629763,0.346615],[0.629763,0.325572,0.629763,0.346615,0.611196,0.325572],[0.611196,0.325572,0.629763,0.346615,0.611196,0.346615],[0.611196,0.325572,0.611196,0.346615,0.593411,0.325572],[0.593411,0.325572,0.611196,0.346615,0.593411,0.346615],[0.578039,0.325572,0.593411,0.325572,0.593411,0.346615],[0.578039,0.325572,0.578039,0.305962,0.593411,0.325572],[0.593411,0.325572,0.578039,0.305962,0.593411,0.305962],[0.593411,0.325572,0.593411,0.305962,0.611196,0.305962],[0.593411,0.305962,0.593411,0.284901,0.611196,0.305962],[0.611196,0.284901,0.611196,0.305962,0.593411,0.284901],[0.611196,0.305962,0.611196,0.284901,0.629763,0.305962],[0.611196,0.305962,0.629763,0.305962,0.629763,0.325572],[0.629763,0.325572,0.629763,0.305962,0.664468,0.325572],[0.611196,0.325572,0.611196,0.305962,0.629763,0.325572],[0.593411,0.325572,0.611196,0.305962,0.611196,0.325572],[0.611196,0.284901,0.593411,0.284901,0.593411,0.252397],[0.611196,0.252397,0.611196,0.284901,0.593411,0.252397],[0.611196,0.484921,0.593411,0.484921,0.593411,0.454993],[0.611196,0.484921,0.593411,0.454993,0.611196,0.454993],[0.629763,0.484921,0.611196,0.484921,0.611196,0.454993],[0.629763,0.484921,0.611196,0.454993,0.629763,0.454993],[0.664468,0.484921,0.629763,0.484921,0.629763,0.454993],[0.664468,0.284901,0.629763,0.252397,0.664468,0.252397],[0.664468,0.484921,0.629763,0.454993,0.664468,0.454993],[0.664468,0.454993,0.629763,0.454993,0.629763,0.433541],[0.664468,0.454993,0.629763,0.433541,0.664468,0.433541],[0.629763,0.413990,0.664468,0.433541,0.629763,0.433541],[0.629763,0.413990,0.664468,0.413990,0.664468,0.433541],[0.664468,0.413990,0.710904,0.433541,0.664468,0.433541],[0.710904,0.454993,0.664468,0.433541,0.710904,0.433541],[0.710904,0.454993,0.664468,0.454993,0.664468,0.433541],[0.744670,0.454993,0.710904,0.454993,0.710904,0.433541],[0.744670,0.454993,0.710904,0.433541,0.744670,0.433541],[0.744670,0.454993,0.744670,0.433541,0.769841,0.454993],[0.769841,0.454993,0.744670,0.433541,0.768282,0.433541],[0.769841,0.454993,0.768282,0.433541,0.800728,0.454993],[0.768282,0.433541,0.800728,0.433541,0.800728,0.454993],[0.768282,0.433541,0.768194,0.413990,0.800728,0.433541],[0.800728,0.433541,0.768194,0.413990,0.800728,0.413990],[0.800728,0.433541,0.800728,0.413990,0.834866,0.433541],[0.834866,0.433541,0.800728,0.413990,0.834866,0.413990],[0.800728,0.413990,0.800728,0.393080,0.834866,0.413990],[0.834866,0.413990,0.800728,0.393080,0.834866,0.393080],[0.800728,0.370965,0.834866,0.393080,0.800728,0.393080],[0.800728,0.370965,0.834866,0.369766,0.834866,0.393080],[0.800728,0.346615,0.834866,0.369766,0.800728,0.370965],[0.800728,0.346615,0.834866,0.346615,0.834866,0.369766],[0.800728,0.325572,0.834866,0.346615,0.800728,0.346615],[0.800728,0.325572,0.834866,0.325572,0.834866,0.346615],[0.800728,0.305962,0.834866,0.325572,0.800728,0.325572],[0.800728,0.305962,0.834866,0.305962,0.834866,0.325572],[0.800728,0.284901,0.834866,0.305962,0.800728,0.305962],[0.800728,0.284901,0.834866,0.284901,0.834866,0.305962],[0.800728,0.284901,0.800728,0.252397,0.834866,0.284901],[0.773537,0.252397,0.800728,0.252397,0.800728,0.284901],[0.772503,0.484921,0.800728,0.454993,0.800728,0.484921],[0.772503,0.484921,0.769841,0.454993,0.800728,0.454993],[0.772503,0.484921,0.744670,0.454993,0.769841,0.454993],[0.800728,0.484921,0.800728,0.454993,0.834866,0.484921],[0.800728,0.454993,0.834866,0.454993,0.834866,0.484921],[0.800728,0.454993,0.800728,0.433541,0.834866,0.454993],[0.800728,0.433541,0.834866,0.433541,0.834866,0.454993],[0.834866,0.454993,0.834866,0.433541,0.877873,0.454993],[0.834866,0.433541,0.877873,0.433541,0.877873,0.454993],[0.834866,0.433541,0.834866,0.413990,0.877873,0.433541],[0.877873,0.433541,0.834866,0.413990,0.877873,0.413990],[0.834866,0.413990,0.834866,0.393080,0.877873,0.413990],[0.877873,0.413990,0.834866,0.393080,0.877873,0.393080],[0.834866,0.369766,0.877873,0.393080,0.834866,0.393080],[0.834866,0.369766,0.877873,0.370168,0.877873,0.393080],[0.834866,0.346615,0.877873,0.370168,0.834866,0.369766],[0.834866,0.346615,0.877873,0.346615,0.877873,0.370168],[0.834866,0.325572,0.877873,0.346615,0.834866,0.346615],[0.834866,0.325572,0.877873,0.325572,0.877873,0.346615],[0.834866,0.305962,0.877873,0.325572,0.834866,0.325572],[0.834866,0.305962,0.877873,0.305962,0.877873,0.325572],[0.834866,0.284901,0.877873,0.305962,0.834866,0.305962],[0.834866,0.284901,0.877873,0.284901,0.877873,0.305962],[0.834866,0.284901,0.834866,0.252397,0.877873,0.284901],[0.800728,0.252397,0.834866,0.252397,0.834866,0.284901],[0.834866,0.252397,0.877873,0.252397,0.877873,0.284901],[0.834866,0.484921,0.834866,0.454993,0.877873,0.484921],[0.834866,0.454993,0.877873,0.454993,0.877873,0.484921],[0.877873,0.484921,0.877873,0.454993,0.914315,0.484921],[0.877873,0.454993,0.914315,0.454993,0.914315,0.484921],[0.877873,0.454993,0.877873,0.433541,0.914315,0.454993],[0.877873,0.433541,0.914315,0.433541,0.914315,0.454993],[0.877873,0.433541,0.877873,0.413990,0.914315,0.433541],[0.914315,0.433541,0.877873,0.413990,0.914315,0.413990],[0.877873,0.413990,0.877873,0.393080,0.914315,0.413990],[0.914315,0.413990,0.877873,0.393080,0.914315,0.393080],[0.877873,0.370168,0.914315,0.393080,0.877873,0.393080],[0.877873,0.370168,0.914315,0.370414,0.914315,0.393080],[0.877873,0.346615,0.914315,0.370414,0.877873,0.370168],[0.877873,0.346615,0.914315,0.346615,0.914315,0.370414],[0.877873,0.325572,0.914315,0.346615,0.877873,0.346615],[0.877873,0.325572,0.914315,0.325572,0.914315,0.346615],[0.877873,0.305962,0.914315,0.325572,0.877873,0.325572],[0.877873,0.305962,0.914315,0.305962,0.914315,0.325572],[0.877873,0.284901,0.914315,0.305962,0.877873,0.305962],[0.877873,0.284901,0.914315,0.284901,0.914315,0.305962],[0.877873,0.284901,0.877873,0.252397,0.914315,0.284901],[0.877873,0.252397,0.914315,0.252397,0.914315,0.284901],[0.914315,0.284901,0.914315,0.252397,0.948307,0.284901],[0.914315,0.252397,0.948307,0.252397,0.948307,0.284901],[0.914315,0.484921,0.914315,0.454993,0.948307,0.484921],[0.914315,0.454993,0.948307,0.454993,0.948307,0.484921],[0.914315,0.454993,0.914315,0.433541,0.948307,0.454993],[0.914315,0.433541,0.948307,0.433541,0.948307,0.454993],[0.914315,0.433541,0.914315,0.413990,0.948307,0.433541],[0.948307,0.433541,0.914315,0.413990,0.948307,0.413990],[0.914315,0.413990,0.914315,0.393080,0.948307,0.413990],[0.948307,0.413990,0.914315,0.393080,0.948307,0.393080],[0.914315,0.370414,0.948307,0.393080,0.914315,0.393080],[0.914315,0.370414,0.948307,0.370732,0.948307,0.393080],[0.914315,0.346615,0.948307,0.370732,0.914315,0.370414],[0.914315,0.346615,0.948307,0.346615,0.948307,0.370732],[0.914315,0.325572,0.948307,0.346615,0.914315,0.346615],[0.914315,0.325572,0.948307,0.325572,0.948307,0.346615],[0.914315,0.305962,0.948307,0.325572,0.914315,0.325572],[0.948307,0.305962,0.948307,0.325572,0.914315,0.305962],[0.963121,0.325572,0.948307,0.325572,0.948307,0.305962],[0.963121,0.346615,0.948307,0.325572,0.963121,0.325572],[0.963121,0.346615,0.948307,0.346615,0.948307,0.325572],[0.963121,0.346615,0.963121,0.370800,0.948307,0.346615],[0.963121,0.346615,0.986738,0.370913,0.963121,0.370800],[0.963121,0.346615,0.986738,0.346615,0.986738,0.370913],[0.963121,0.325572,0.986738,0.346615,0.963121,0.346615],[0.963121,0.325572,0.986738,0.325572,0.986738,0.346615],[0.963121,0.305962,0.986738,0.325572,0.963121,0.325572],[0.986738,0.305962,0.986738,0.325572,0.963121,0.305962],[0.692389,0.852334,0.660045,0.860764,0.660047,0.846690],[0.692389,0.852334,0.672399,0.872151,0.660045,0.860764],[0.692388,0.876502,0.672399,0.872151,0.692389,0.852334],[0.712378,0.872153,0.692388,0.876502,0.692389,0.852334],[0.963121,0.370800,0.986738,0.370913,0.986738,0.393080],[0.963121,0.370800,0.986738,0.393080,0.963121,0.393080],[0.986738,0.413990,0.963121,0.393080,0.986738,0.393080],[0.986738,0.413990,0.963121,0.413990,0.963121,0.393080],[0.986738,0.433541,0.963121,0.413990,0.986738,0.413990],[0.986738,0.433541,0.963121,0.433541,0.963121,0.413990],[0.963121,0.433541,0.986738,0.433541,0.986738,0.454993],[0.724733,0.846694,0.692389,0.852334,0.712380,0.835307],[0.724733,0.860767,0.692389,0.852334,0.724733,0.846694],[0.724733,0.860767,0.712378,0.872153,0.692389,0.852334],[0.712380,0.835307,0.692389,0.852334,0.692391,0.830957],[0.692389,0.852334,0.672401,0.835305,0.692391,0.830957],[0.692389,0.852334,0.660047,0.846690,0.672401,0.835305],[0.986738,0.284901,0.986738,0.305962,0.963121,0.284901],[0.963121,0.284901,0.986738,0.305962,0.963121,0.305962],[0.963121,0.284901,0.963121,0.305962,0.948307,0.284901],[0.963121,0.305962,0.948307,0.305962,0.948307,0.284901],[0.963121,0.325572,0.948307,0.305962,0.963121,0.305962],[0.948307,0.284901,0.948307,0.305962,0.914315,0.284901],[0.914315,0.284901,0.948307,0.305962,0.914315,0.305962],[0.948307,0.252397,0.963121,0.284901,0.948307,0.284901],[0.963121,0.252397,0.963121,0.284901,0.948307,0.252397],[0.963121,0.284901,0.963121,0.252397,0.986738,0.284901],[0.963121,0.252397,0.986738,0.252397,0.986738,0.284901],[0.963121,0.484921,0.963121,0.454993,0.986738,0.484921],[0.948307,0.454993,0.963121,0.454993,0.963121,0.484921],[0.948307,0.433541,0.963121,0.454993,0.948307,0.454993],[0.948307,0.433541,0.963121,0.433541,0.963121,0.454993],[0.948307,0.433541,0.948307,0.413990,0.963121,0.433541],[0.963121,0.433541,0.948307,0.413990,0.963121,0.413990],[0.948307,0.413990,0.948307,0.393080,0.963121,0.413990],[0.963121,0.413990,0.948307,0.393080,0.963121,0.393080],[0.963121,0.393080,0.948307,0.393080,0.948307,0.370732],[0.963121,0.370800,0.963121,0.393080,0.948307,0.370732],[0.963121,0.370800,0.948307,0.370732,0.948307,0.346615],[0.963121,0.454993,0.963121,0.433541,0.986738,0.454993],[0.963121,0.454993,0.986738,0.454993,0.986738,0.484921],[0.948307,0.454993,0.963121,0.484921,0.948307,0.484921],[0.785828,0.284901,0.773537,0.252397,0.800728,0.284901],[0.771967,0.284901,0.773537,0.252397,0.785828,0.284901],[0.771967,0.284901,0.785828,0.284901,0.787625,0.305962],[0.785828,0.284901,0.800728,0.305962,0.787625,0.305962],[0.785828,0.284901,0.800728,0.284901,0.800728,0.305962],[0.787625,0.305962,0.800728,0.305962,0.800728,0.325572],[0.578039,0.346615,0.578039,0.325572,0.593411,0.346615],[0.593411,0.393080,0.611196,0.393080,0.611196,0.413990],[0.593411,0.393080,0.611196,0.413990,0.593411,0.413990],[0.593411,0.413990,0.611196,0.413990,0.611196,0.433541],[0.095060,0.033914,0.103503,0.063019,0.107506,0.033868],[0.203667,0.040367,0.189667,0.040367,0.202164,0.075418],[0.202164,0.075418,0.189667,0.040367,0.188915,0.075818],[0.188915,0.075818,0.189667,0.040367,0.175666,0.040367],[0.175666,0.040367,0.175666,0.076217,0.188915,0.075818],[0.202164,0.075418,0.188915,0.075818,0.198906,0.104557],[0.217668,0.040367,0.215414,0.075019,0.219695,0.040367],[0.068986,0.058744,0.044663,0.066884,0.070606,0.060338],[0.048187,0.014232,0.036977,0.038795,0.051466,0.032397],[0.051466,0.032397,0.063677,0.021420,0.048187,0.014232],[0.048187,0.014232,0.063677,0.021420,0.061418,0.008958],[0.048187,0.014232,0.061418,0.008958,0.047475,0.011020],[0.047475,0.011020,0.061418,0.008958,0.057549,0.006211],[0.598626,0.506717,0.596080,0.506717,0.600879,0.530275],[0.603688,0.527896,0.598626,0.506717,0.600879,0.530275],[0.610991,0.534924,0.603688,0.527896,0.600879,0.530275],[0.610991,0.534924,0.600879,0.530275,0.609729,0.538257],[0.620774,0.541736,0.610991,0.534924,0.609729,0.538257],[0.620774,0.541736,0.609729,0.538257,0.620774,0.546977],[0.496061,0.035312,0.498586,0.032397,0.481673,0.022535],[0.498586,0.032397,0.486375,0.021420,0.481673,0.022535],[0.021389,0.019620,0.033936,0.018815,0.021389,0.016514],[0.734711,0.682676,0.666689,0.645477,0.652530,0.679951],[0.734711,0.682676,0.772191,0.598829,0.666689,0.645477],[0.810021,0.717975,0.772191,0.598829,0.734711,0.682676],[0.810021,0.717975,0.834136,0.647845,0.772191,0.598829],[0.872898,0.745890,0.810021,0.717975,0.834136,0.647845],[0.505646,0.703207,0.505646,0.733864,0.560725,0.714180],[0.505646,0.703207,0.450566,0.714180,0.505646,0.733864],[0.505646,0.677670,0.450566,0.714180,0.505646,0.703207],[0.452648,0.672525,0.450566,0.714180,0.505646,0.677670],[0.452648,0.672525,0.358761,0.679951,0.450566,0.714180],[0.452648,0.672525,0.344602,0.645477,0.358761,0.679951],[0.452648,0.672525,0.383917,0.627157,0.344602,0.645477],[0.452648,0.672525,0.427811,0.639825,0.383917,0.627157],[0.452648,0.672525,0.466470,0.643417,0.427811,0.639825],[0.452648,0.672525,0.505646,0.652882,0.466470,0.643417],[0.505646,0.677670,0.505646,0.652882,0.452648,0.672525],[0.558643,0.672525,0.505646,0.652882,0.505646,0.677670],[0.558643,0.672525,0.544821,0.643417,0.505646,0.652882],[0.558643,0.672525,0.583480,0.639825,0.544821,0.643417],[0.627374,0.627157,0.583480,0.639825,0.558643,0.672525],[0.627374,0.627157,0.610686,0.578123,0.583480,0.639825],[0.680411,0.592508,0.610686,0.578123,0.627374,0.627157],[0.680411,0.592508,0.657500,0.549847,0.610686,0.578123],[0.680411,0.592508,0.742774,0.563336,0.657500,0.549847],[0.742774,0.563336,0.680411,0.592508,0.666689,0.645477],[0.680411,0.592508,0.627374,0.627157,0.666689,0.645477],[0.666689,0.645477,0.627374,0.627157,0.558643,0.672525],[0.666689,0.645477,0.558643,0.672525,0.652530,0.679951],[0.558643,0.672525,0.560725,0.714180,0.652530,0.679951],[0.558643,0.672525,0.505646,0.677670,0.560725,0.714180],[0.505646,0.677670,0.505646,0.703207,0.560725,0.714180],[0.772191,0.598829,0.742774,0.563336,0.666689,0.645477],[0.772191,0.598829,0.804176,0.503881,0.742774,0.563336],[0.772191,0.598829,0.826246,0.529137,0.804176,0.503881],[0.834136,0.647845,0.826246,0.529137,0.772191,0.598829],[0.834136,0.647845,0.872623,0.572623,0.826246,0.529137],[0.916147,0.604880,0.872623,0.572623,0.834136,0.647845],[0.722249,0.765122,0.800792,0.865828,0.797520,0.819230],[0.722249,0.765122,0.727736,0.830860,0.800792,0.865828],[0.722249,0.765122,0.668995,0.766946,0.727736,0.830860],[0.727511,0.699183,0.668995,0.766946,0.722249,0.765122],[0.727511,0.699183,0.656211,0.710972,0.668995,0.766946],[0.656211,0.710972,0.727511,0.699183,0.668995,0.766946],[0.668995,0.766946,0.727511,0.699183,0.722249,0.765122],[0.727511,0.699183,0.796709,0.766795,0.722249,0.765122],[0.727511,0.699183,0.805791,0.730727,0.796709,0.766795],[0.727511,0.699183,0.796709,0.766795,0.805791,0.730727],[0.727511,0.699183,0.722249,0.765122,0.796709,0.766795],[0.722249,0.765122,0.797520,0.819230,0.796709,0.766795],[0.965840,0.632559,0.916147,0.604880,0.916400,0.681655],[0.916400,0.681655,0.916147,0.604880,0.834136,0.647845],[0.872898,0.745890,0.834136,0.647845,0.916400,0.681655],[0.964869,0.708937,0.916400,0.681655,0.872898,0.745890],[0.964869,0.708937,0.965840,0.632559,0.916400,0.681655],[0.995908,0.662391,0.965840,0.632559,0.964869,0.708937],[0.045451,0.632559,0.015383,0.662391,0.046422,0.708937],[0.045451,0.632559,0.046422,0.708937,0.094891,0.681655],[0.046422,0.708937,0.138393,0.745890,0.094891,0.681655],[0.046422,0.708937,0.086385,0.775817,0.138393,0.745890],[0.964869,0.708937,0.872898,0.745890,0.924906,0.775817],[0.276581,0.682675,0.358761,0.679951,0.344602,0.645477],[0.239100,0.598829,0.276580,0.682675,0.344602,0.645477],[0.201270,0.717975,0.276580,0.682675,0.239100,0.598829],[0.177155,0.647845,0.201270,0.717975,0.239100,0.598829],[0.177155,0.647845,0.138393,0.745890,0.201270,0.717975],[0.094891,0.681655,0.138393,0.745890,0.177155,0.647845],[0.095144,0.604880,0.094891,0.681655,0.177155,0.647845],[0.045451,0.632559,0.094891,0.681655,0.095144,0.604880],[0.722249,0.765122,0.796709,0.766795,0.797520,0.819230],[0.722249,0.765122,0.797520,0.819230,0.800792,0.865828],[0.095144,0.604880,0.177155,0.647845,0.138668,0.572623],[0.138668,0.572623,0.177155,0.647845,0.185045,0.529137],[0.185045,0.529137,0.177155,0.647845,0.239100,0.598829],[0.185045,0.529137,0.239100,0.598829,0.207115,0.503881],[0.239100,0.598829,0.268517,0.563336,0.207115,0.503881],[0.239100,0.598829,0.344602,0.645477,0.268517,0.563336],[0.268517,0.563336,0.344602,0.645477,0.330880,0.592508],[0.330880,0.592508,0.344602,0.645477,0.383917,0.627157],[0.383917,0.627157,0.400605,0.578123,0.330880,0.592508],[0.427811,0.639825,0.400605,0.578123,0.383917,0.627157],[0.427811,0.639825,0.432724,0.595978,0.400605,0.578123],[0.466470,0.643417,0.432724,0.595978,0.427811,0.639825],[0.466470,0.643417,0.469369,0.613000,0.432724,0.595978],[0.466470,0.643417,0.505646,0.616099,0.469369,0.613000],[0.505646,0.652882,0.505646,0.616099,0.466470,0.643417],[0.544821,0.643417,0.505646,0.616099,0.505646,0.652882],[0.544821,0.643417,0.541922,0.613000,0.505646,0.616099],[0.544821,0.643417,0.578567,0.595978,0.541922,0.613000],[0.583480,0.639825,0.578567,0.595978,0.544821,0.643417],[0.610686,0.578123,0.578567,0.595978,0.583480,0.639825],[0.594904,0.554145,0.578567,0.595978,0.610686,0.578123],[0.594904,0.554145,0.561122,0.570477,0.578567,0.595978],[0.576373,0.527920,0.561122,0.570477,0.594904,0.554145],[0.576373,0.527920,0.555161,0.544794,0.561122,0.570477],[0.566781,0.505101,0.555161,0.544794,0.576373,0.527920],[0.566781,0.505101,0.544010,0.516360,0.555161,0.544794],[0.548635,0.499575,0.544010,0.516360,0.566781,0.505101],[0.548635,0.499575,0.533669,0.500556,0.544010,0.516360],[0.532016,0.489354,0.533669,0.500556,0.548635,0.499575],[0.532016,0.489354,0.505646,0.486442,0.533669,0.500556],[0.530555,0.484209,0.505646,0.486442,0.532016,0.489354],[0.530555,0.484209,0.505646,0.484824,0.505646,0.486442],[0.530555,0.484209,0.505646,0.483309,0.505646,0.484824],[0.530555,0.484209,0.528476,0.477266,0.505646,0.483309],[0.548795,0.488207,0.528476,0.477266,0.530555,0.484209],[0.548795,0.488207,0.547850,0.478826,0.528476,0.477266],[0.562558,0.484742,0.547850,0.478826,0.548795,0.488207],[0.565054,0.478973,0.547850,0.478826,0.562558,0.484742],[0.555388,0.471435,0.547850,0.478826,0.565054,0.478973],[0.526618,0.465654,0.547850,0.478826,0.555388,0.471435],[0.547850,0.478826,0.526618,0.465654,0.528476,0.477266],[0.526618,0.465654,0.505646,0.475914,0.528476,0.477266],[0.505646,0.457734,0.505646,0.475914,0.526618,0.465654],[0.484673,0.465654,0.505646,0.475914,0.505646,0.457734],[0.482815,0.477266,0.505646,0.475914,0.484673,0.465654],[0.505646,0.483309,0.505646,0.475914,0.482815,0.477266],[0.528476,0.477266,0.505646,0.475914,0.505646,0.483309],[0.505646,0.483309,0.482815,0.477266,0.480736,0.484209],[0.480736,0.484209,0.482815,0.477266,0.462496,0.488207],[0.482815,0.477266,0.463441,0.478826,0.462496,0.488207],[0.482815,0.477266,0.484673,0.465654,0.463441,0.478826],[0.455903,0.471435,0.463441,0.478826,0.484673,0.465654],[0.446237,0.478973,0.463441,0.478826,0.455903,0.471435],[0.446237,0.478973,0.448733,0.484742,0.463441,0.478826],[0.435670,0.490939,0.448733,0.484742,0.446237,0.478973],[0.448733,0.484742,0.435670,0.490939,0.440597,0.492106],[0.435670,0.490939,0.444510,0.505101,0.440597,0.492106],[0.434918,0.527920,0.444510,0.505101,0.435670,0.490939],[0.434918,0.527920,0.456130,0.544794,0.444510,0.505101],[0.434918,0.527920,0.450169,0.570477,0.456130,0.544794],[0.416387,0.554145,0.450169,0.570477,0.434918,0.527920],[0.416387,0.554145,0.432724,0.595978,0.450169,0.570477],[0.400605,0.578123,0.432724,0.595978,0.416387,0.554145],[0.353791,0.549847,0.400605,0.578123,0.416387,0.554145],[0.330880,0.592508,0.400605,0.578123,0.353791,0.549847],[0.268517,0.563336,0.330880,0.592508,0.353791,0.549847],[0.242019,0.492836,0.268517,0.563336,0.353791,0.549847],[0.207115,0.503881,0.268517,0.563336,0.242019,0.492836],[0.207115,0.503881,0.242019,0.492836,0.212698,0.481982],[0.212698,0.481982,0.242019,0.492836,0.224425,0.412181],[0.224425,0.412181,0.242019,0.492836,0.287730,0.411923],[0.242019,0.492836,0.312553,0.501999,0.287730,0.411923],[0.242019,0.492836,0.353791,0.549847,0.312553,0.501999],[0.312553,0.501999,0.353791,0.549847,0.371588,0.488330],[0.353791,0.549847,0.384700,0.529074,0.371588,0.488330],[0.353791,0.549847,0.416387,0.554145,0.384700,0.529074],[0.384700,0.529074,0.416387,0.554145,0.434918,0.527920],[0.384700,0.529074,0.434918,0.527920,0.414384,0.499603],[0.414384,0.499603,0.434918,0.527920,0.428068,0.490635],[0.428068,0.490635,0.434918,0.527920,0.435670,0.490939],[0.428068,0.490635,0.435670,0.490939,0.430719,0.469724],[0.435670,0.490939,0.446237,0.478973,0.430719,0.469724],[0.430719,0.469724,0.446237,0.478973,0.447693,0.450306],[0.446237,0.478973,0.455903,0.471435,0.447693,0.450306],[0.455903,0.471435,0.483008,0.443372,0.447693,0.450306],[0.455903,0.471435,0.482847,0.455235,0.483008,0.443372],[0.455903,0.471435,0.484673,0.465654,0.482847,0.455235],[0.484673,0.465654,0.505646,0.457734,0.482847,0.455235],[0.483008,0.443372,0.482847,0.455235,0.505646,0.457734],[0.483008,0.443372,0.505646,0.457734,0.505646,0.446604],[0.528283,0.443372,0.505646,0.446604,0.505646,0.457734],[0.505646,0.432012,0.505646,0.446604,0.528283,0.443372],[0.483008,0.443372,0.505646,0.446604,0.505646,0.432012],[0.478951,0.432476,0.483008,0.443372,0.505646,0.432012],[0.450473,0.422825,0.483008,0.443372,0.478951,0.432476],[0.447693,0.450306,0.483008,0.443372,0.450473,0.422825],[0.447693,0.450306,0.450473,0.422825,0.443706,0.402082],[0.443706,0.402082,0.450473,0.422825,0.460933,0.418649],[0.478951,0.432476,0.460933,0.418649,0.450473,0.422825],[0.478951,0.432476,0.474485,0.424466,0.460933,0.418649],[0.478951,0.432476,0.483329,0.423358,0.474485,0.424466],[0.478951,0.432476,0.496841,0.426144,0.483329,0.423358],[0.505646,0.432012,0.496841,0.426144,0.478951,0.432476],[0.505646,0.432012,0.505646,0.425672,0.496841,0.426144],[0.505646,0.432012,0.514450,0.426144,0.505646,0.425672],[0.532340,0.432476,0.514450,0.426144,0.505646,0.432012],[0.527962,0.423358,0.514450,0.426144,0.532340,0.432476],[0.527962,0.423358,0.525762,0.417459,0.514450,0.426144],[0.536806,0.424466,0.525762,0.417459,0.527962,0.423358],[0.550358,0.418649,0.525762,0.417459,0.536806,0.424466],[0.533392,0.407457,0.525762,0.417459,0.550358,0.418649],[0.518612,0.405386,0.525762,0.417459,0.533392,0.407457],[0.518612,0.405386,0.513210,0.417481,0.525762,0.417459],[0.518612,0.405386,0.505646,0.406145,0.513210,0.417481],[0.505646,0.392785,0.505646,0.406145,0.518612,0.405386],[0.492679,0.405386,0.505646,0.406145,0.505646,0.392785],[0.498081,0.417481,0.505646,0.406145,0.492679,0.405386],[0.498081,0.417481,0.505646,0.418384,0.505646,0.406145],[0.496841,0.426144,0.505646,0.418384,0.498081,0.417481],[0.505646,0.425672,0.505646,0.418384,0.496841,0.426144],[0.514450,0.426144,0.505646,0.418384,0.505646,0.425672],[0.514450,0.426144,0.513210,0.417481,0.505646,0.418384],[0.514450,0.426144,0.525762,0.417459,0.513210,0.417481],[0.505646,0.406145,0.505646,0.418384,0.513210,0.417481],[0.496841,0.426144,0.498081,0.417481,0.485529,0.417459],[0.485529,0.417459,0.498081,0.417481,0.492679,0.405386],[0.477899,0.407457,0.485529,0.417459,0.492679,0.405386],[0.460933,0.418649,0.485529,0.417459,0.477899,0.407457],[0.474485,0.424466,0.485529,0.417459,0.460933,0.418649],[0.483329,0.423358,0.485529,0.417459,0.474485,0.424466],[0.496841,0.426144,0.485529,0.417459,0.483329,0.423358],[0.459824,0.398572,0.460933,0.418649,0.477899,0.407457],[0.443706,0.402082,0.460933,0.418649,0.459824,0.398572],[0.443706,0.402082,0.459824,0.398572,0.468591,0.381977],[0.459824,0.398572,0.474975,0.397930,0.468591,0.381977],[0.459824,0.398572,0.477899,0.407457,0.474975,0.397930],[0.474975,0.397930,0.477899,0.407457,0.492679,0.405386],[0.474975,0.397930,0.492679,0.405386,0.488245,0.391217],[0.488245,0.391217,0.492679,0.405386,0.505646,0.392785],[0.505646,0.375441,0.488245,0.391217,0.505646,0.392785],[0.505646,0.375441,0.486576,0.378066,0.488245,0.391217],[0.484983,0.356522,0.486576,0.378066,0.505646,0.375441],[0.468591,0.381977,0.486576,0.378066,0.484983,0.356522],[0.468591,0.381977,0.488245,0.391217,0.486576,0.378066],[0.468591,0.381977,0.474975,0.397930,0.488245,0.391217],[0.461468,0.367378,0.468591,0.381977,0.484983,0.356522],[0.443706,0.402082,0.468591,0.381977,0.461468,0.367378],[0.449505,0.376381,0.443706,0.402082,0.461468,0.367378],[0.399939,0.386303,0.443706,0.402082,0.449505,0.376381],[0.396624,0.438171,0.443706,0.402082,0.399939,0.386303],[0.396624,0.438171,0.430719,0.469724,0.443706,0.402082],[0.408109,0.477218,0.430719,0.469724,0.396624,0.438171],[0.408109,0.477218,0.428068,0.490635,0.430719,0.469724],[0.414384,0.499603,0.428068,0.490635,0.408109,0.477218],[0.384700,0.529074,0.414384,0.499603,0.408109,0.477218],[0.371588,0.488330,0.384700,0.529074,0.408109,0.477218],[0.371588,0.488330,0.408109,0.477218,0.396624,0.438171],[0.355938,0.434339,0.371588,0.488330,0.396624,0.438171],[0.312553,0.501999,0.371588,0.488330,0.355938,0.434339],[0.287730,0.411923,0.312553,0.501999,0.355938,0.434339],[0.287730,0.411923,0.355938,0.434339,0.302382,0.355907],[0.302382,0.355907,0.355938,0.434339,0.349186,0.382761],[0.355938,0.434339,0.396624,0.438171,0.349186,0.382761],[0.349186,0.382761,0.396624,0.438171,0.399939,0.386303],[0.349186,0.382761,0.399939,0.386303,0.364746,0.353320],[0.364746,0.353320,0.399939,0.386303,0.405315,0.356252],[0.399939,0.386303,0.449505,0.376381,0.405315,0.356252],[0.405315,0.356252,0.449505,0.376381,0.437919,0.341543],[0.437919,0.341543,0.449505,0.376381,0.463951,0.330317],[0.463951,0.330317,0.449505,0.376381,0.461468,0.367378],[0.463951,0.330317,0.461468,0.367378,0.488933,0.338604],[0.461468,0.367378,0.484983,0.356522,0.488933,0.338604],[0.488933,0.338604,0.484983,0.356522,0.505646,0.338205],[0.505646,0.338205,0.484983,0.356522,0.505646,0.353235],[0.484983,0.356522,0.505646,0.375441,0.505646,0.353235],[0.505646,0.353235,0.505646,0.375441,0.526308,0.356522],[0.526308,0.356522,0.505646,0.375441,0.524715,0.378066],[0.524715,0.378066,0.505646,0.375441,0.523046,0.391217],[0.505646,0.375441,0.505646,0.392785,0.523046,0.391217],[0.505646,0.392785,0.518612,0.405386,0.523046,0.391217],[0.523046,0.391217,0.518612,0.405386,0.536316,0.397930],[0.536316,0.397930,0.518612,0.405386,0.533392,0.407457],[0.536316,0.397930,0.533392,0.407457,0.551467,0.398572],[0.551467,0.398572,0.533392,0.407457,0.550358,0.418649],[0.551467,0.398572,0.550358,0.418649,0.567585,0.402082],[0.567585,0.402082,0.550358,0.418649,0.560818,0.422825],[0.560818,0.422825,0.550358,0.418649,0.532340,0.432476],[0.550358,0.418649,0.536806,0.424466,0.532340,0.432476],[0.536806,0.424466,0.527962,0.423358,0.532340,0.432476],[0.560818,0.422825,0.532340,0.432476,0.528283,0.443372],[0.532340,0.432476,0.505646,0.432012,0.528283,0.443372],[0.560818,0.422825,0.528283,0.443372,0.563598,0.450306],[0.528283,0.443372,0.555388,0.471435,0.563598,0.450306],[0.528283,0.443372,0.528444,0.455235,0.555388,0.471435],[0.528283,0.443372,0.505646,0.457734,0.528444,0.455235],[0.528444,0.455235,0.505646,0.457734,0.526618,0.465654],[0.528444,0.455235,0.526618,0.465654,0.555388,0.471435],[0.563598,0.450306,0.555388,0.471435,0.565054,0.478973],[0.563598,0.450306,0.565054,0.478973,0.580572,0.469724],[0.580572,0.469724,0.565054,0.478973,0.575621,0.490939],[0.565054,0.478973,0.562558,0.484742,0.575621,0.490939],[0.575621,0.490939,0.562558,0.484742,0.570694,0.492106],[0.570694,0.492106,0.562558,0.484742,0.567731,0.491428],[0.567731,0.491428,0.562558,0.484742,0.564346,0.490604],[0.564346,0.490604,0.562558,0.484742,0.548795,0.488207],[0.564346,0.490604,0.548795,0.488207,0.562436,0.491944],[0.562436,0.491944,0.548795,0.488207,0.547538,0.493198],[0.548795,0.488207,0.530555,0.484209,0.547538,0.493198],[0.547538,0.493198,0.530555,0.484209,0.532016,0.489354],[0.532016,0.489354,0.548635,0.499575,0.547538,0.493198],[0.547538,0.493198,0.548635,0.499575,0.562436,0.491944],[0.564488,0.494613,0.562436,0.491944,0.548635,0.499575],[0.567731,0.491428,0.562436,0.491944,0.564488,0.494613],[0.567731,0.491428,0.564346,0.490604,0.562436,0.491944],[0.570694,0.492106,0.567731,0.491428,0.564488,0.494613],[0.570694,0.492106,0.564488,0.494613,0.566781,0.505101],[0.564488,0.494613,0.548635,0.499575,0.566781,0.505101],[0.575621,0.490939,0.570694,0.492106,0.566781,0.505101],[0.575621,0.490939,0.566781,0.505101,0.576373,0.527920],[0.575621,0.490939,0.576373,0.527920,0.583223,0.490635],[0.583223,0.490635,0.576373,0.527920,0.596907,0.499603],[0.596907,0.499603,0.576373,0.527920,0.626591,0.529074],[0.626591,0.529074,0.576373,0.527920,0.594904,0.554145],[0.626591,0.529074,0.594904,0.554145,0.657500,0.549847],[0.657500,0.549847,0.594904,0.554145,0.610686,0.578123],[0.639703,0.488330,0.626591,0.529074,0.657500,0.549847],[0.603182,0.477218,0.626591,0.529074,0.639703,0.488330],[0.603182,0.477218,0.596907,0.499603,0.626591,0.529074],[0.603182,0.477218,0.583223,0.490635,0.596907,0.499603],[0.580572,0.469724,0.583223,0.490635,0.603182,0.477218],[0.580572,0.469724,0.575621,0.490939,0.583223,0.490635],[0.614667,0.438171,0.580572,0.469724,0.603182,0.477218],[0.567585,0.402082,0.580572,0.469724,0.614667,0.438171],[0.567585,0.402082,0.563598,0.450306,0.580572,0.469724],[0.567585,0.402082,0.560818,0.422825,0.563598,0.450306],[0.611352,0.386303,0.567585,0.402082,0.614667,0.438171],[0.561786,0.376381,0.567585,0.402082,0.611352,0.386303],[0.549823,0.367378,0.567585,0.402082,0.561786,0.376381],[0.549823,0.367378,0.542700,0.381977,0.567585,0.402082],[0.526308,0.356522,0.542700,0.381977,0.549823,0.367378],[0.526308,0.356522,0.524715,0.378066,0.542700,0.381977],[0.524715,0.378066,0.523046,0.391217,0.542700,0.381977],[0.542700,0.381977,0.523046,0.391217,0.536316,0.397930],[0.542700,0.381977,0.536316,0.397930,0.551467,0.398572],[0.567585,0.402082,0.542700,0.381977,0.551467,0.398572],[0.522358,0.338604,0.526308,0.356522,0.549823,0.367378],[0.505646,0.338205,0.526308,0.356522,0.522358,0.338604],[0.505646,0.338205,0.505646,0.353235,0.526308,0.356522],[0.505646,0.312167,0.505646,0.338205,0.522358,0.338604],[0.488933,0.338604,0.505646,0.338205,0.505646,0.312167],[0.486414,0.314760,0.488933,0.338604,0.505646,0.312167],[0.465897,0.312540,0.488933,0.338604,0.486414,0.314760],[0.463951,0.330317,0.488933,0.338604,0.465897,0.312540],[0.456568,0.309170,0.463951,0.330317,0.465897,0.312540],[0.448859,0.323962,0.463951,0.330317,0.456568,0.309170],[0.437919,0.341543,0.463951,0.330317,0.448859,0.323962],[0.434189,0.324895,0.437919,0.341543,0.448859,0.323962],[0.434189,0.324895,0.406797,0.344032,0.437919,0.341543],[0.434189,0.324895,0.403776,0.332764,0.406797,0.344032],[0.434189,0.324895,0.403740,0.330880,0.403776,0.332764],[0.437417,0.321035,0.403740,0.330880,0.434189,0.324895],[0.403270,0.310402,0.403740,0.330880,0.437417,0.321035],[0.371415,0.325302,0.403740,0.330880,0.403270,0.310402],[0.368299,0.330563,0.403740,0.330880,0.371415,0.325302],[0.403740,0.330880,0.368299,0.330563,0.403776,0.332764],[0.368299,0.330563,0.406797,0.344032,0.403776,0.332764],[0.367243,0.337476,0.406797,0.344032,0.368299,0.330563],[0.367243,0.337476,0.405315,0.356252,0.406797,0.344032],[0.364746,0.353320,0.405315,0.356252,0.367243,0.337476],[0.337583,0.330911,0.364746,0.353320,0.367243,0.337476],[0.302382,0.355907,0.364746,0.353320,0.337583,0.330911],[0.302382,0.355907,0.349186,0.382761,0.364746,0.353320],[0.270203,0.304421,0.302382,0.355907,0.337583,0.330911],[0.270203,0.304421,0.287730,0.411923,0.302382,0.355907],[0.234039,0.310948,0.287730,0.411923,0.270203,0.304421],[0.224425,0.412181,0.287730,0.411923,0.234039,0.310948],[0.211063,0.339350,0.224425,0.412181,0.234039,0.310948],[0.181399,0.406194,0.224425,0.412181,0.211063,0.339350],[0.181399,0.406194,0.212698,0.481982,0.224425,0.412181],[0.181399,0.406194,0.185585,0.456326,0.212698,0.481982],[0.155340,0.417950,0.185585,0.456326,0.181399,0.406194],[0.138908,0.428766,0.185585,0.456326,0.155340,0.417950],[0.138908,0.428766,0.173114,0.468137,0.185585,0.456326],[0.791204,0.959402,0.741138,0.935774,0.822926,0.947185],[0.689476,0.956045,0.741138,0.935774,0.791204,0.959402],[0.741138,0.935774,0.689476,0.956045,0.691441,0.943414],[0.164039,0.298396,0.183152,0.317027,0.189747,0.318092],[0.164039,0.298396,0.155052,0.318580,0.183152,0.317027],[0.145955,0.304332,0.155052,0.318580,0.164039,0.298396],[0.145955,0.304332,0.131669,0.337805,0.155052,0.318580],[0.117628,0.334856,0.131669,0.337805,0.145955,0.304332],[0.131669,0.337805,0.117628,0.334856,0.130525,0.381112],[0.117628,0.334856,0.116567,0.387329,0.130525,0.381112],[0.757672,0.992688,0.711084,0.987045,0.791204,0.959402],[0.711084,0.987045,0.691532,0.967606,0.791204,0.959402],[0.791204,0.959402,0.691532,0.967606,0.689476,0.956045],[0.130525,0.381112,0.116567,0.387329,0.138908,0.428766],[0.130525,0.381112,0.138908,0.428766,0.155340,0.417950],[0.130525,0.381112,0.155340,0.417950,0.131669,0.337805],[0.131669,0.337805,0.155340,0.417950,0.181399,0.406194],[0.131669,0.337805,0.181399,0.406194,0.155052,0.318580],[0.155052,0.318580,0.181399,0.406194,0.183152,0.317027],[0.181399,0.406194,0.211063,0.339350,0.183152,0.317027],[0.189747,0.318092,0.183152,0.317027,0.211063,0.339350],[0.189747,0.318092,0.211063,0.339350,0.234039,0.310948],[0.189747,0.318092,0.234039,0.310948,0.308723,0.201321],[0.234039,0.310948,0.270203,0.304421,0.308723,0.201321],[0.270203,0.304421,0.341337,0.277712,0.308723,0.201321],[0.270203,0.304421,0.351011,0.293945,0.341337,0.277712],[0.270203,0.304421,0.331087,0.311337,0.351011,0.293945],[0.270203,0.304421,0.337583,0.330911,0.331087,0.311337],[0.331087,0.311337,0.337583,0.330911,0.349200,0.312241],[0.337583,0.330911,0.367243,0.337476,0.349200,0.312241],[0.349200,0.312241,0.367243,0.337476,0.368299,0.330563],[0.349200,0.312241,0.368299,0.330563,0.371415,0.325302],[0.349200,0.312241,0.371415,0.325302,0.362110,0.314774],[0.362110,0.314774,0.371415,0.325302,0.403270,0.310402],[0.403270,0.310402,0.379203,0.306833,0.362110,0.314774],[0.403270,0.310402,0.403633,0.305986,0.379203,0.306833],[0.428013,0.304332,0.403633,0.305986,0.403270,0.310402],[0.433979,0.301029,0.403633,0.305986,0.428013,0.304332],[0.405301,0.298646,0.403633,0.305986,0.433979,0.301029],[0.379203,0.306833,0.403633,0.305986,0.405301,0.298646],[0.379516,0.299939,0.379203,0.306833,0.405301,0.298646],[0.362110,0.314774,0.379203,0.306833,0.379516,0.299939],[0.349200,0.312241,0.362110,0.314774,0.379516,0.299939],[0.349200,0.312241,0.379516,0.299939,0.351011,0.293945],[0.351011,0.293945,0.379516,0.299939,0.384740,0.284048],[0.379516,0.299939,0.421209,0.285476,0.384740,0.284048],[0.379516,0.299939,0.405301,0.298646,0.421209,0.285476],[0.405301,0.298646,0.447295,0.298594,0.421209,0.285476],[0.447295,0.298594,0.405301,0.298646,0.433979,0.301029],[0.433979,0.301029,0.448859,0.323962,0.447295,0.298594],[0.433979,0.301029,0.428013,0.304332,0.448859,0.323962],[0.448859,0.323962,0.428013,0.304332,0.446285,0.322874],[0.446285,0.322874,0.428013,0.304332,0.437417,0.321035],[0.437417,0.321035,0.428013,0.304332,0.403270,0.310402],[0.446285,0.322874,0.437417,0.321035,0.434189,0.324895],[0.448859,0.323962,0.446285,0.322874,0.434189,0.324895],[0.448859,0.323962,0.456568,0.309170,0.447295,0.298594],[0.456568,0.309170,0.463757,0.289668,0.447295,0.298594],[0.456568,0.309170,0.465897,0.312540,0.463757,0.289668],[0.463757,0.289668,0.465897,0.312540,0.486847,0.281937],[0.465897,0.312540,0.486414,0.314760,0.486847,0.281937],[0.486414,0.314760,0.505646,0.282835,0.486847,0.281937],[0.486414,0.314760,0.505646,0.312167,0.505646,0.282835],[0.505646,0.282835,0.505646,0.312167,0.524877,0.314760],[0.505646,0.312167,0.522358,0.338604,0.524877,0.314760],[0.524877,0.314760,0.522358,0.338604,0.545394,0.312540],[0.545394,0.312540,0.522358,0.338604,0.547340,0.330317],[0.547340,0.330317,0.522358,0.338604,0.549823,0.367378],[0.547340,0.330317,0.549823,0.367378,0.561786,0.376381],[0.547340,0.330317,0.561786,0.376381,0.573372,0.341543],[0.573372,0.341543,0.561786,0.376381,0.605976,0.356252],[0.605976,0.356252,0.561786,0.376381,0.611352,0.386303],[0.646545,0.353320,0.605976,0.356252,0.611352,0.386303],[0.644048,0.337476,0.605976,0.356252,0.646545,0.353320],[0.644048,0.337476,0.604494,0.344032,0.605976,0.356252],[0.642992,0.330563,0.604494,0.344032,0.644048,0.337476],[0.642992,0.330563,0.607515,0.332764,0.604494,0.344032],[0.642992,0.330563,0.607551,0.330880,0.607515,0.332764],[0.639876,0.325302,0.607551,0.330880,0.642992,0.330563],[0.608021,0.310402,0.607551,0.330880,0.639876,0.325302],[0.573874,0.321035,0.607551,0.330880,0.608021,0.310402],[0.607551,0.330880,0.573874,0.321035,0.577102,0.324895],[0.573874,0.321035,0.565006,0.322874,0.577102,0.324895],[0.583278,0.304332,0.565006,0.322874,0.573874,0.321035],[0.562432,0.323962,0.583278,0.304332,0.577312,0.301029],[0.577312,0.301029,0.583278,0.304332,0.607658,0.305986],[0.608021,0.310402,0.607658,0.305986,0.583278,0.304332],[0.632088,0.306833,0.607658,0.305986,0.608021,0.310402],[0.605990,0.298646,0.607658,0.305986,0.632088,0.306833],[0.605990,0.298646,0.577312,0.301029,0.607658,0.305986],[0.605990,0.298646,0.563996,0.298594,0.577312,0.301029],[0.590082,0.285476,0.563996,0.298594,0.605990,0.298646],[0.590082,0.285476,0.547534,0.289668,0.563996,0.298594],[0.584650,0.272966,0.547534,0.289668,0.590082,0.285476],[0.520932,0.260822,0.547534,0.289668,0.584650,0.272966],[0.520932,0.260822,0.524444,0.281937,0.547534,0.289668],[0.520932,0.260822,0.505646,0.282835,0.524444,0.281937],[0.505646,0.255711,0.505646,0.282835,0.520932,0.260822],[0.490359,0.260822,0.505646,0.282835,0.505646,0.255711],[0.490359,0.260822,0.486847,0.281937,0.505646,0.282835],[0.463757,0.289668,0.486847,0.281937,0.490359,0.260822],[0.426641,0.272966,0.463757,0.289668,0.490359,0.260822],[0.421209,0.285476,0.463757,0.289668,0.426641,0.272966],[0.447295,0.298594,0.463757,0.289668,0.421209,0.285476],[0.384740,0.284048,0.421209,0.285476,0.426641,0.272966],[0.384740,0.284048,0.426641,0.272966,0.387666,0.266494],[0.381574,0.237535,0.387666,0.266494,0.426641,0.272966],[0.341337,0.277712,0.387666,0.266494,0.381574,0.237535],[0.341337,0.277712,0.384740,0.284048,0.387666,0.266494],[0.341337,0.277712,0.351011,0.293945,0.384740,0.284048],[0.308723,0.201321,0.341337,0.277712,0.381574,0.237535],[0.308723,0.201321,0.381574,0.237535,0.380852,0.195097],[0.380852,0.195097,0.381574,0.237535,0.491037,0.236354],[0.381574,0.237535,0.490359,0.260822,0.491037,0.236354],[0.381574,0.237535,0.426641,0.272966,0.490359,0.260822],[0.505646,0.235625,0.491037,0.236354,0.490359,0.260822],[0.505646,0.194544,0.491037,0.236354,0.505646,0.235625],[0.482509,0.194949,0.491037,0.236354,0.505646,0.194544],[0.380852,0.195097,0.491037,0.236354,0.482509,0.194949],[0.380852,0.195097,0.482509,0.194949,0.457733,0.144898],[0.457733,0.144898,0.482509,0.194949,0.505646,0.146085],[0.505646,0.146085,0.482509,0.194949,0.505646,0.194544],[0.505646,0.146085,0.505646,0.194544,0.528782,0.194949],[0.528782,0.194949,0.505646,0.194544,0.520254,0.236354],[0.505646,0.194544,0.505646,0.235625,0.520254,0.236354],[0.505646,0.235625,0.520932,0.260822,0.520254,0.236354],[0.505646,0.235625,0.505646,0.255711,0.520932,0.260822],[0.490359,0.260822,0.505646,0.255711,0.505646,0.235625],[0.629717,0.237535,0.520254,0.236354,0.520932,0.260822],[0.630439,0.195097,0.520254,0.236354,0.629717,0.237535],[0.630439,0.195097,0.528782,0.194949,0.520254,0.236354],[0.553558,0.144898,0.528782,0.194949,0.630439,0.195097],[0.505646,0.146085,0.528782,0.194949,0.553558,0.144898],[0.570037,0.087488,0.505646,0.146085,0.553558,0.144898],[0.570037,0.087488,0.505646,0.088535,0.505646,0.146085],[0.505646,0.017001,0.505646,0.088535,0.570037,0.087488],[0.505646,0.017001,0.441254,0.087488,0.505646,0.088535],[0.505646,0.017001,0.363815,0.021521,0.441254,0.087488],[0.604644,0.780974,0.539295,0.835105,0.510878,0.794021],[0.604644,0.780974,0.617877,0.841465,0.539295,0.835105],[0.604644,0.780974,0.668995,0.766946,0.617877,0.841465],[0.604644,0.780974,0.656211,0.710972,0.668995,0.766946],[0.583765,0.736924,0.656211,0.710972,0.604644,0.780974],[0.656211,0.710972,0.583765,0.736924,0.604644,0.780974],[0.604644,0.780974,0.583765,0.736924,0.510878,0.794021],[0.583765,0.736924,0.604644,0.780974,0.510878,0.794021],[0.604644,0.780974,0.510878,0.794021,0.539295,0.835105],[0.647476,0.021521,0.505646,0.017001,0.570037,0.087488],[0.647476,0.021521,0.570037,0.087488,0.652748,0.093697],[0.652748,0.093697,0.570037,0.087488,0.633189,0.150921],[0.570037,0.087488,0.553558,0.144898,0.633189,0.150921],[0.633189,0.150921,0.553558,0.144898,0.630439,0.195097],[0.633189,0.150921,0.630439,0.195097,0.702568,0.201321],[0.630439,0.195097,0.629717,0.237535,0.702568,0.201321],[0.702568,0.201321,0.629717,0.237535,0.669954,0.277712],[0.629717,0.237535,0.623625,0.266494,0.669954,0.277712],[0.629717,0.237535,0.584650,0.272966,0.623625,0.266494],[0.629717,0.237535,0.520932,0.260822,0.584650,0.272966],[0.623625,0.266494,0.584650,0.272966,0.626551,0.284048],[0.584650,0.272966,0.590082,0.285476,0.626551,0.284048],[0.626551,0.284048,0.590082,0.285476,0.631775,0.299939],[0.590082,0.285476,0.605990,0.298646,0.631775,0.299939],[0.605990,0.298646,0.632088,0.306833,0.631775,0.299939],[0.631775,0.299939,0.632088,0.306833,0.649181,0.314774],[0.649181,0.314774,0.632088,0.306833,0.608021,0.310402],[0.608021,0.310402,0.639876,0.325302,0.649181,0.314774],[0.662091,0.312241,0.649181,0.314774,0.639876,0.325302],[0.631775,0.299939,0.649181,0.314774,0.662091,0.312241],[0.660281,0.293945,0.631775,0.299939,0.662091,0.312241],[0.626551,0.284048,0.631775,0.299939,0.660281,0.293945],[0.669954,0.277712,0.626551,0.284048,0.660281,0.293945],[0.623625,0.266494,0.626551,0.284048,0.669954,0.277712],[0.669954,0.277712,0.660281,0.293945,0.741088,0.304421],[0.741088,0.304421,0.660281,0.293945,0.680204,0.311337],[0.660281,0.293945,0.662091,0.312241,0.680204,0.311337],[0.680204,0.311337,0.662091,0.312241,0.673708,0.330911],[0.662091,0.312241,0.644048,0.337476,0.673708,0.330911],[0.662091,0.312241,0.642992,0.330563,0.644048,0.337476],[0.662091,0.312241,0.639876,0.325302,0.642992,0.330563],[0.673708,0.330911,0.644048,0.337476,0.646545,0.353320],[0.673708,0.330911,0.646545,0.353320,0.708909,0.355907],[0.708909,0.355907,0.646545,0.353320,0.662105,0.382761],[0.646545,0.353320,0.611352,0.386303,0.662105,0.382761],[0.662105,0.382761,0.611352,0.386303,0.614667,0.438171],[0.662105,0.382761,0.614667,0.438171,0.655353,0.434339],[0.655353,0.434339,0.614667,0.438171,0.639703,0.488330],[0.614667,0.438171,0.603182,0.477218,0.639703,0.488330],[0.655353,0.434339,0.639703,0.488330,0.698738,0.501999],[0.698738,0.501999,0.639703,0.488330,0.657500,0.549847],[0.769272,0.492836,0.698738,0.501999,0.657500,0.549847],[0.723561,0.411923,0.698738,0.501999,0.769272,0.492836],[0.723561,0.411923,0.655353,0.434339,0.698738,0.501999],[0.708909,0.355907,0.655353,0.434339,0.723561,0.411923],[0.708909,0.355907,0.662105,0.382761,0.655353,0.434339],[0.741088,0.304421,0.708909,0.355907,0.723561,0.411923],[0.741088,0.304421,0.673708,0.330911,0.708909,0.355907],[0.741088,0.304421,0.680204,0.311337,0.673708,0.330911],[0.777252,0.310948,0.741088,0.304421,0.723561,0.411923],[0.702568,0.201321,0.741088,0.304421,0.777252,0.310948],[0.702568,0.201321,0.669954,0.277712,0.741088,0.304421],[0.821544,0.318092,0.702568,0.201321,0.777252,0.310948],[0.731505,0.158600,0.702568,0.201321,0.821544,0.318092],[0.633189,0.150921,0.702568,0.201321,0.731505,0.158600],[0.652748,0.093697,0.633189,0.150921,0.731505,0.158600],[0.652748,0.093697,0.731505,0.158600,0.753851,0.126406],[0.753851,0.126406,0.731505,0.158600,0.821544,0.318092],[0.588114,0.915611,0.691441,0.943414,0.637276,0.885150],[0.674906,0.870999,0.637276,0.885150,0.691441,0.943414],[0.674252,0.818022,0.637276,0.885150,0.674906,0.870999],[0.674252,0.818022,0.617877,0.841465,0.637276,0.885150],[0.668995,0.766946,0.617877,0.841465,0.674252,0.818022],[0.668995,0.766946,0.604644,0.780974,0.617877,0.841465],[0.656211,0.710972,0.604644,0.780974,0.668995,0.766946],[0.617877,0.841465,0.604644,0.780974,0.539295,0.835105],[0.617877,0.841465,0.539295,0.835105,0.571174,0.876075],[0.748826,0.090533,0.647476,0.021521,0.652748,0.093697],[0.748826,0.090533,0.652748,0.093697,0.753851,0.126406],[0.617877,0.841465,0.571174,0.876075,0.588114,0.915611],[0.617877,0.841465,0.588114,0.915611,0.637276,0.885150],[0.668995,0.766946,0.674252,0.818022,0.727736,0.830860],[0.674252,0.818022,0.716267,0.865986,0.727736,0.830860],[0.674252,0.818022,0.674906,0.870999,0.716267,0.865986],[0.716267,0.865986,0.674906,0.870999,0.691441,0.943414],[0.716267,0.865986,0.691441,0.943414,0.741138,0.935774],[0.689476,0.956045,0.741138,0.935774,0.691441,0.943414],[0.741138,0.935774,0.689476,0.956045,0.791204,0.959402],[0.689476,0.956045,0.691532,0.967606,0.791204,0.959402],[0.856239,0.318580,0.865336,0.304332,0.847252,0.298396],[0.879622,0.337805,0.865336,0.304332,0.856239,0.318580],[0.879622,0.337805,0.893663,0.334856,0.865336,0.304332],[0.893663,0.334856,0.879622,0.337805,0.880766,0.381112],[0.879622,0.337805,0.855951,0.417950,0.880766,0.381112],[0.879622,0.337805,0.829892,0.406194,0.855951,0.417950],[0.856239,0.318580,0.829892,0.406194,0.879622,0.337805],[0.856239,0.318580,0.828139,0.317027,0.829892,0.406194],[0.856239,0.318580,0.847252,0.298396,0.828139,0.317027],[0.847252,0.298396,0.821544,0.318092,0.828139,0.317027],[0.828139,0.317027,0.821544,0.318092,0.800228,0.339350],[0.821544,0.318092,0.777252,0.310948,0.800228,0.339350],[0.777252,0.310948,0.786866,0.412181,0.800228,0.339350],[0.777252,0.310948,0.723561,0.411923,0.786866,0.412181],[0.786866,0.412181,0.723561,0.411923,0.769272,0.492836],[0.786866,0.412181,0.769272,0.492836,0.798593,0.481982],[0.798593,0.481982,0.769272,0.492836,0.804176,0.503881],[0.804176,0.503881,0.769272,0.492836,0.742774,0.563336],[0.769272,0.492836,0.657500,0.549847,0.742774,0.563336],[0.838177,0.468137,0.798593,0.481982,0.804176,0.503881],[0.825706,0.456326,0.798593,0.481982,0.838177,0.468137],[0.829892,0.406194,0.798593,0.481982,0.825706,0.456326],[0.829892,0.406194,0.786866,0.412181,0.798593,0.481982],[0.800228,0.339350,0.786866,0.412181,0.829892,0.406194],[0.828139,0.317027,0.800228,0.339350,0.829892,0.406194],[0.829892,0.406194,0.825706,0.456326,0.855951,0.417950],[0.855951,0.417950,0.825706,0.456326,0.872383,0.428766],[0.872383,0.428766,0.825706,0.456326,0.838177,0.468137],[0.741138,0.935774,0.791204,0.959402,0.822926,0.947185],[0.828090,0.917778,0.741138,0.935774,0.822926,0.947185],[0.800792,0.865828,0.741138,0.935774,0.828090,0.917778],[0.800792,0.865828,0.716267,0.865986,0.741138,0.935774],[0.727736,0.830860,0.716267,0.865986,0.800792,0.865828],[0.822926,0.947185,0.855034,0.941267,0.828090,0.917778],[0.872383,0.428766,0.880766,0.381112,0.855951,0.417950],[0.894724,0.387329,0.880766,0.381112,0.872383,0.428766],[0.894724,0.387329,0.893663,0.334856,0.880766,0.381112],[0.711084,0.987045,0.757672,0.992688,0.791204,0.959402],[0.691532,0.967606,0.711084,0.987045,0.791204,0.959402],[0.617877,0.841465,0.668995,0.766946,0.674252,0.818022],[0.668995,0.766946,0.727736,0.830860,0.674252,0.818022],[0.668995,0.766946,0.722249,0.765122,0.727736,0.830860],[0.722249,0.765122,0.800792,0.865828,0.727736,0.830860],[0.716267,0.865986,0.727736,0.830860,0.800792,0.865828],[0.674252,0.818022,0.727736,0.830860,0.716267,0.865986],[0.674252,0.818022,0.716267,0.865986,0.674906,0.870999],[0.716267,0.865986,0.691441,0.943414,0.674906,0.870999],[0.716267,0.865986,0.741138,0.935774,0.691441,0.943414],[0.716267,0.865986,0.800792,0.865828,0.741138,0.935774],[0.741138,0.935774,0.800792,0.865828,0.828090,0.917778],[0.741138,0.935774,0.828090,0.917778,0.822926,0.947185],[0.828090,0.917778,0.855034,0.941267,0.822926,0.947185],[0.173114,0.468137,0.207115,0.503881,0.212698,0.481982],[0.173114,0.468137,0.212698,0.481982,0.185585,0.456326],[0.674906,0.870999,0.691441,0.943414,0.637276,0.885150],[0.637276,0.885150,0.691441,0.943414,0.588114,0.915611],[0.189747,0.318092,0.279786,0.158600,0.257440,0.126406],[0.189747,0.318092,0.308723,0.201321,0.279786,0.158600],[0.279786,0.158600,0.308723,0.201321,0.378102,0.150921],[0.308723,0.201321,0.380852,0.195097,0.378102,0.150921],[0.378102,0.150921,0.380852,0.195097,0.457733,0.144898],[0.378102,0.150921,0.457733,0.144898,0.441254,0.087488],[0.441254,0.087488,0.457733,0.144898,0.505646,0.146085],[0.505646,0.088535,0.441254,0.087488,0.505646,0.146085],[0.441254,0.087488,0.358543,0.093697,0.378102,0.150921],[0.363815,0.021521,0.358543,0.093697,0.441254,0.087488],[0.363815,0.021521,0.262465,0.090533,0.358543,0.093697],[0.539295,0.835105,0.617877,0.841465,0.571174,0.876075],[0.617877,0.841465,0.588114,0.915611,0.571174,0.876075],[0.617877,0.841465,0.637276,0.885150,0.588114,0.915611],[0.674252,0.818022,0.637276,0.885150,0.617877,0.841465],[0.674252,0.818022,0.674906,0.870999,0.637276,0.885150],[0.262465,0.090533,0.257440,0.126406,0.358543,0.093697],[0.257440,0.126406,0.279786,0.158600,0.358543,0.093697],[0.279786,0.158600,0.378102,0.150921,0.358543,0.093697],[0.505646,0.282835,0.524877,0.314760,0.524444,0.281937],[0.524444,0.281937,0.524877,0.314760,0.545394,0.312540],[0.524444,0.281937,0.545394,0.312540,0.547534,0.289668],[0.547534,0.289668,0.545394,0.312540,0.554723,0.309170],[0.554723,0.309170,0.545394,0.312540,0.547340,0.330317],[0.554723,0.309170,0.547340,0.330317,0.562432,0.323962],[0.562432,0.323962,0.547340,0.330317,0.573372,0.341543],[0.562432,0.323962,0.573372,0.341543,0.577102,0.324895],[0.577102,0.324895,0.573372,0.341543,0.604494,0.344032],[0.573372,0.341543,0.605976,0.356252,0.604494,0.344032],[0.577102,0.324895,0.604494,0.344032,0.607515,0.332764],[0.607551,0.330880,0.577102,0.324895,0.607515,0.332764],[0.577102,0.324895,0.565006,0.322874,0.562432,0.323962],[0.563996,0.298594,0.554723,0.309170,0.562432,0.323962],[0.563996,0.298594,0.547534,0.289668,0.554723,0.309170],[0.563996,0.298594,0.562432,0.323962,0.577312,0.301029],[0.608021,0.310402,0.583278,0.304332,0.573874,0.321035],[0.331087,0.311337,0.349200,0.312241,0.351011,0.293945],[0.406797,0.344032,0.405315,0.356252,0.437919,0.341543],[0.430719,0.469724,0.447693,0.450306,0.443706,0.402082],[0.432724,0.595978,0.469369,0.613000,0.450169,0.570477],[0.450169,0.570477,0.469369,0.613000,0.475618,0.582520],[0.505646,0.616099,0.475618,0.582520,0.469369,0.613000],[0.505646,0.616099,0.505646,0.581585,0.475618,0.582520],[0.535673,0.582520,0.505646,0.581585,0.505646,0.616099],[0.532561,0.555608,0.505646,0.581585,0.535673,0.582520],[0.505646,0.557535,0.505646,0.581585,0.532561,0.555608],[0.478730,0.555608,0.505646,0.581585,0.505646,0.557535],[0.475618,0.582520,0.505646,0.581585,0.478730,0.555608],[0.456130,0.544794,0.475618,0.582520,0.478730,0.555608],[0.450169,0.570477,0.475618,0.582520,0.456130,0.544794],[0.456130,0.544794,0.478730,0.555608,0.480714,0.529127],[0.480714,0.529127,0.478730,0.555608,0.505646,0.557535],[0.480714,0.529127,0.505646,0.557535,0.505646,0.525135],[0.505646,0.525135,0.505646,0.557535,0.530577,0.529127],[0.530577,0.529127,0.505646,0.557535,0.532561,0.555608],[0.530577,0.529127,0.532561,0.555608,0.555161,0.544794],[0.555161,0.544794,0.532561,0.555608,0.535673,0.582520],[0.555161,0.544794,0.535673,0.582520,0.561122,0.570477],[0.561122,0.570477,0.535673,0.582520,0.541922,0.613000],[0.541922,0.613000,0.535673,0.582520,0.505646,0.616099],[0.561122,0.570477,0.541922,0.613000,0.578567,0.595978],[0.544010,0.516360,0.530577,0.529127,0.555161,0.544794],[0.544010,0.516360,0.530468,0.518456,0.530577,0.529127],[0.533669,0.500556,0.530468,0.518456,0.544010,0.516360],[0.533669,0.500556,0.505646,0.517602,0.530468,0.518456],[0.533669,0.500556,0.505646,0.500991,0.505646,0.517602],[0.505646,0.486442,0.505646,0.500991,0.533669,0.500556],[0.477622,0.500556,0.505646,0.500991,0.505646,0.486442],[0.477622,0.500556,0.505646,0.517602,0.505646,0.500991],[0.480823,0.518456,0.505646,0.517602,0.477622,0.500556],[0.505646,0.525135,0.505646,0.517602,0.480823,0.518456],[0.530468,0.518456,0.505646,0.517602,0.505646,0.525135],[0.530468,0.518456,0.505646,0.525135,0.530577,0.529127],[0.505646,0.525135,0.480823,0.518456,0.480714,0.529127],[0.467281,0.516360,0.480714,0.529127,0.480823,0.518456],[0.456130,0.544794,0.480714,0.529127,0.467281,0.516360],[0.444510,0.505101,0.456130,0.544794,0.467281,0.516360],[0.444510,0.505101,0.467281,0.516360,0.462656,0.499575],[0.467281,0.516360,0.477622,0.500556,0.462656,0.499575],[0.467281,0.516360,0.480823,0.518456,0.477622,0.500556],[0.462656,0.499575,0.477622,0.500556,0.479275,0.489354],[0.477622,0.500556,0.505646,0.486442,0.479275,0.489354],[0.505646,0.486442,0.480736,0.484209,0.479275,0.489354],[0.505646,0.484824,0.480736,0.484209,0.505646,0.486442],[0.505646,0.484824,0.505646,0.483309,0.480736,0.484209],[0.480736,0.484209,0.463753,0.493198,0.479275,0.489354],[0.480736,0.484209,0.462496,0.488207,0.463753,0.493198],[0.462496,0.488207,0.448855,0.491944,0.463753,0.493198],[0.462496,0.488207,0.446945,0.490604,0.448855,0.491944],[0.462496,0.488207,0.448733,0.484742,0.446945,0.490604],[0.462496,0.488207,0.463441,0.478826,0.448733,0.484742],[0.446945,0.490604,0.448733,0.484742,0.443560,0.491428],[0.448733,0.484742,0.440597,0.492106,0.443560,0.491428],[0.443560,0.491428,0.440597,0.492106,0.446803,0.494613],[0.444510,0.505101,0.446803,0.494613,0.440597,0.492106],[0.444510,0.505101,0.462656,0.499575,0.446803,0.494613],[0.448855,0.491944,0.446803,0.494613,0.462656,0.499575],[0.448855,0.491944,0.443560,0.491428,0.446803,0.494613],[0.446945,0.490604,0.443560,0.491428,0.448855,0.491944],[0.448855,0.491944,0.462656,0.499575,0.463753,0.493198],[0.463753,0.493198,0.462656,0.499575,0.479275,0.489354],[-4.085537,-112.649086,-4.706486,-111.579254,-4.470658,-111.592827],[0.776762,0.864153,0.782079,0.837917,0.769518,0.827644],[0.776762,0.864153,0.815969,0.866518,0.782079,0.837917],[0.815969,0.866518,0.776762,0.864153,0.809602,0.899712],[0.809602,0.899712,0.848027,0.868191,0.815969,0.866518],[0.809602,0.899712,0.840076,0.905509,0.848027,0.868191],[0.829210,0.931584,0.840076,0.905509,0.809602,0.899712],[0.862826,0.923477,0.840076,0.905509,0.829210,0.931584],[0.862826,0.923477,0.873018,0.898990,0.840076,0.905509],[0.903387,0.912076,0.873018,0.898990,0.862826,0.923477],[0.903387,0.912076,0.919497,0.890141,0.873018,0.898990],[0.951669,0.904036,0.919497,0.890141,0.903387,0.912076],[0.919497,0.890141,0.954976,0.885779,0.955775,0.862938],[0.954976,0.885779,0.980478,0.858279,0.955775,0.862938],[0.954976,0.885779,0.975495,0.876319,0.980478,0.858279],[0.972361,0.912798,0.951669,0.904036,0.939505,0.928816],[0.939505,0.928816,0.951669,0.904036,0.903387,0.912076],[0.939505,0.928816,0.903387,0.912076,0.892753,0.940264],[0.892753,0.940264,0.903387,0.912076,0.862826,0.923477],[0.892753,0.940264,0.862826,0.923477,0.856476,0.940411],[0.856476,0.940411,0.862826,0.923477,0.829210,0.931584],[0.699381,0.916250,0.698785,0.950511,0.673039,0.918264],[0.728102,0.920716,0.698785,0.950511,0.699381,0.916250],[0.726961,0.986319,0.698785,0.950511,0.728102,0.920717],[0.698785,0.950511,0.726961,0.986319,0.698120,0.988745],[0.834759,0.798695,0.803784,0.808826,0.844220,0.825716],[0.844220,0.825716,0.803784,0.808826,0.813106,0.828247],[0.803784,0.808826,0.769518,0.827644,0.813106,0.828247],[0.765212,0.952119,0.757820,0.979697,0.726960,0.986319],[0.776762,0.864153,0.769518,0.827644,0.756229,0.863754],[0.776762,0.864153,0.756229,0.863754,0.780488,0.887942],[0.780488,0.887942,0.756229,0.863754,0.767166,0.897560],[0.757754,0.927306,0.765212,0.952119,0.728102,0.920716],[0.728102,0.920716,0.765212,0.952119,0.726960,0.986319],[0.798647,0.918412,0.809602,0.899712,0.767166,0.897560],[0.829210,0.931584,0.809602,0.899712,0.798647,0.918412],[0.809602,0.899712,0.780488,0.887942,0.767166,0.897560],[0.809602,0.899712,0.776762,0.864153,0.780488,0.887942],[0.813106,0.828247,0.769518,0.827644,0.782079,0.837917],[0.815969,0.866518,0.813106,0.828247,0.782079,0.837917],[0.815969,0.866518,0.848027,0.868191,0.813106,0.828247],[0.848027,0.868191,0.844220,0.825716,0.813106,0.828247],[0.848027,0.868191,0.874353,0.868256,0.844220,0.825716],[0.840076,0.905509,0.874353,0.868256,0.848027,0.868191],[0.840076,0.905509,0.873018,0.898990,0.874353,0.868256],[0.873018,0.898990,0.914143,0.866880,0.874353,0.868256],[0.873018,0.898990,0.919497,0.890141,0.914143,0.866880],[0.919497,0.890141,0.955775,0.862938,0.914143,0.866880],[0.914143,0.866880,0.955775,0.862938,0.921756,0.841663],[0.955775,0.862938,0.956233,0.839058,0.921756,0.841663],[0.955775,0.862938,0.980478,0.858279,0.956233,0.839058],[0.980478,0.858279,0.977586,0.844848,0.956233,0.839058],[0.987599,0.816495,0.982129,0.789034,0.974095,0.819526],[0.990266,0.918435,0.963680,0.939159,0.983252,0.945496],[0.972361,0.912798,0.963680,0.939159,0.990266,0.918435],[0.963680,0.939159,0.972361,0.912798,0.939505,0.928816],[0.963680,0.939159,0.939505,0.928816,0.927431,0.953306],[0.927431,0.953306,0.939505,0.928816,0.892753,0.940264],[0.920833,0.968405,0.927431,0.953306,0.892753,0.940264],[0.927431,0.953306,0.920833,0.968405,0.948663,0.980125],[0.592484,0.930747,0.591990,0.959119,0.567705,0.943066],[0.625559,0.953104,0.591989,0.959119,0.592484,0.930747],[0.591989,0.959119,0.625559,0.953104,0.591473,0.988763],[0.625560,0.953104,0.624976,0.986516,0.591473,0.988763],[0.638221,0.953334,0.624976,0.986516,0.625560,0.953104],[0.638221,0.953334,0.637637,0.986746,0.624976,0.986516],[0.672468,0.951055,0.637637,0.986746,0.638221,0.953334],[0.672468,0.951055,0.671830,0.987672,0.637637,0.986746],[0.698785,0.950511,0.671830,0.987672,0.672468,0.951055],[0.698785,0.950511,0.698120,0.988745,0.671830,0.987672],[0.861455,0.790754,0.834759,0.798695,0.844220,0.825716],[0.861455,0.790754,0.844220,0.825716,0.867472,0.807692],[0.875938,0.831819,0.867472,0.807692,0.844220,0.825716],[0.897053,0.790928,0.867472,0.807692,0.875938,0.831819],[0.897053,0.790928,0.861455,0.790754,0.867472,0.807692],[0.897053,0.790928,0.875938,0.831819,0.906575,0.819284],[0.921756,0.841663,0.906575,0.819284,0.875938,0.831819],[0.941923,0.802728,0.906575,0.819284,0.921756,0.841663],[0.941923,0.802728,0.930494,0.777801,0.906575,0.819284],[0.957597,0.766755,0.930494,0.777801,0.941923,0.802728],[0.952141,0.751421,0.930494,0.777801,0.957597,0.766755],[0.952141,0.751421,0.923939,0.762724,0.930494,0.777801],[0.591990,0.959119,0.591473,0.988763,0.565107,0.980683],[0.591990,0.959119,0.565107,0.980683,0.561796,0.963165],[0.975875,0.761793,0.970898,0.745729,0.952141,0.751421],[0.954645,0.964889,0.970118,0.987876,0.975831,0.972229],[0.954645,0.964889,0.948663,0.980125,0.970118,0.987876],[0.927431,0.953306,0.948663,0.980125,0.954645,0.964889],[0.963680,0.939159,0.927431,0.953306,0.954645,0.964889],[0.963680,0.939159,0.954645,0.964889,0.983252,0.945496],[0.983252,0.945496,0.954645,0.964889,0.975831,0.972229],[0.982129,0.789034,0.975875,0.761793,0.966142,0.792761],[0.966142,0.792761,0.975875,0.761793,0.957597,0.766755],[0.975875,0.761793,0.952141,0.751421,0.957597,0.766755],[0.957597,0.766755,0.941923,0.802728,0.966142,0.792761],[0.966142,0.792761,0.941923,0.802728,0.953428,0.827961],[0.953428,0.827961,0.941923,0.802728,0.921756,0.841663],[0.966142,0.792761,0.953428,0.827961,0.974095,0.819526],[0.974095,0.819526,0.982129,0.789034,0.966142,0.792761],[0.567705,0.943066,0.591990,0.959119,0.561796,0.963165],[0.923939,0.762724,0.897053,0.790928,0.930494,0.777801],[0.923939,0.762724,0.891066,0.778525,0.897053,0.790928],[0.930494,0.777801,0.897053,0.790928,0.906575,0.819284],[0.914143,0.866880,0.921756,0.841663,0.875938,0.831819],[0.874353,0.868256,0.914143,0.866880,0.875938,0.831819],[0.874353,0.868256,0.875938,0.831819,0.844220,0.825716],[0.673039,0.918264,0.698785,0.950511,0.672468,0.951055],[0.673039,0.918264,0.672468,0.951055,0.638752,0.922935],[0.638752,0.922935,0.672468,0.951055,0.638221,0.953334],[0.638752,0.922935,0.638221,0.953334,0.625560,0.953104],[0.638752,0.922935,0.625560,0.953104,0.626091,0.922704],[0.626091,0.922704,0.625560,0.953104,0.592484,0.930747],[0.920833,0.968405,0.892753,0.940264,0.886925,0.952673],[0.776762,0.864153,0.756229,0.863754,0.769518,0.827644],[0.756229,0.863754,0.776762,0.864153,0.780488,0.887942],[0.767166,0.897560,0.756229,0.863754,0.780488,0.887942],[0.765212,0.952119,0.757754,0.927306,0.728102,0.920716],[0.798647,0.918412,0.767166,0.897560,0.809602,0.899712],[0.809602,0.899712,0.767166,0.897560,0.780488,0.887942],[0.776762,0.864153,0.809602,0.899712,0.780488,0.887942],[0.809602,0.899712,0.776762,0.864153,0.815969,0.866518],[0.848027,0.868191,0.809602,0.899712,0.815969,0.866518],[0.848027,0.868191,0.840076,0.905509,0.809602,0.899712],[0.874353,0.868256,0.840076,0.905509,0.848027,0.868191],[0.874353,0.868256,0.873018,0.898990,0.840076,0.905509],[0.914143,0.866880,0.873018,0.898990,0.874353,0.868256],[0.914143,0.866880,0.919497,0.890141,0.873018,0.898990],[0.955775,0.862938,0.919497,0.890141,0.914143,0.866880],[0.955775,0.862938,0.954976,0.885779,0.919497,0.890141],[0.980478,0.858279,0.954976,0.885779,0.955775,0.862938],[0.980478,0.858279,0.975495,0.876319,0.954976,0.885779],[0.972361,0.912798,0.990266,0.918435,0.963680,0.939159],[0.990266,0.918435,0.983252,0.945496,0.963680,0.939159],[0.987599,0.816495,0.974095,0.819526,0.982129,0.789034],[0.977586,0.844848,0.980478,0.858279,0.956233,0.839058],[0.956233,0.839058,0.980478,0.858279,0.955775,0.862938],[0.956233,0.839058,0.955775,0.862938,0.921756,0.841663],[0.921756,0.841663,0.955775,0.862938,0.914143,0.866880],[0.921756,0.841663,0.914143,0.866880,0.875938,0.831819],[0.875938,0.831819,0.914143,0.866880,0.874353,0.868256],[0.875938,0.831819,0.874353,0.868256,0.844220,0.825716],[0.844220,0.825716,0.874353,0.868256,0.848027,0.868191],[0.844220,0.825716,0.848027,0.868191,0.813106,0.828247],[0.813106,0.828247,0.848027,0.868191,0.815969,0.866518],[0.813106,0.828247,0.815969,0.866518,0.782079,0.837917],[0.815969,0.866518,0.776762,0.864153,0.782079,0.837917],[0.776762,0.864153,0.769518,0.827644,0.782079,0.837917],[0.813106,0.828247,0.782079,0.837917,0.769518,0.827644],[0.803784,0.808826,0.813106,0.828247,0.769518,0.827644],[0.844220,0.825716,0.813106,0.828247,0.803784,0.808826],[0.834759,0.798695,0.844220,0.825716,0.803784,0.808826],[0.861455,0.790754,0.844220,0.825716,0.834759,0.798695],[0.861455,0.790754,0.867472,0.807692,0.844220,0.825716],[0.897053,0.790928,0.867472,0.807692,0.861455,0.790754],[0.897053,0.790928,0.875938,0.831819,0.867472,0.807692],[0.897053,0.790928,0.906575,0.819284,0.875938,0.831819],[0.930494,0.777801,0.906575,0.819284,0.897053,0.790928],[0.941923,0.802728,0.906575,0.819284,0.930494,0.777801],[0.941923,0.802728,0.921756,0.841663,0.906575,0.819284],[0.953428,0.827961,0.921756,0.841663,0.941923,0.802728],[0.966142,0.792761,0.953428,0.827961,0.941923,0.802728],[0.974095,0.819526,0.953428,0.827961,0.966142,0.792761],[0.974095,0.819526,0.966142,0.792761,0.982129,0.789034],[0.982129,0.789034,0.966142,0.792761,0.975875,0.761793],[0.966142,0.792761,0.957597,0.766755,0.975875,0.761793],[0.957597,0.766755,0.966142,0.792761,0.941923,0.802728],[0.957597,0.766755,0.941923,0.802728,0.930494,0.777801],[0.952141,0.751421,0.957597,0.766755,0.930494,0.777801],[0.975875,0.761793,0.957597,0.766755,0.952141,0.751421],[0.975875,0.761793,0.952141,0.751421,0.970898,0.745729],[0.565107,0.980683,0.591990,0.959119,0.561796,0.963165],[0.565107,0.980683,0.591473,0.988763,0.591990,0.959119],[0.952141,0.751421,0.930494,0.777801,0.923939,0.762724],[0.923939,0.762724,0.930494,0.777801,0.897053,0.790928],[0.923939,0.762724,0.897053,0.790928,0.891066,0.778525],[0.638221,0.953334,0.624976,0.986516,0.637637,0.986746],[0.638221,0.953334,0.625560,0.953104,0.624976,0.986516],[0.638752,0.922935,0.625560,0.953104,0.638221,0.953334],[0.638752,0.922935,0.626091,0.922704,0.625560,0.953104],[0.892753,0.940264,0.920833,0.968405,0.886925,0.952673],[0.927431,0.953306,0.920833,0.968405,0.892753,0.940264],[0.927431,0.953306,0.948663,0.980125,0.920833,0.968405],[0.954645,0.964889,0.948663,0.980125,0.927431,0.953306],[0.954645,0.964889,0.970118,0.987876,0.948663,0.980125],[0.954645,0.964889,0.975831,0.972229,0.970118,0.987876],[0.983252,0.945496,0.975831,0.972229,0.954645,0.964889],[0.963680,0.939159,0.983252,0.945496,0.954645,0.964889],[0.963680,0.939159,0.954645,0.964889,0.927431,0.953306],[0.963680,0.939159,0.927431,0.953306,0.939505,0.928816],[0.927431,0.953306,0.892753,0.940264,0.939505,0.928816],[0.939505,0.928816,0.892753,0.940264,0.903387,0.912076],[0.892753,0.940264,0.862826,0.923477,0.903387,0.912076],[0.892753,0.940264,0.856476,0.940411,0.862826,0.923477],[0.672468,0.951055,0.673039,0.918264,0.638752,0.922935],[0.672468,0.951055,0.698785,0.950511,0.673039,0.918264],[0.671830,0.987672,0.698785,0.950511,0.672468,0.951055],[0.671830,0.987672,0.698120,0.988745,0.698785,0.950511],[0.726960,0.986319,0.698785,0.950511,0.698120,0.988745],[0.698785,0.950511,0.726960,0.986319,0.727571,0.951210],[0.726960,0.986319,0.765212,0.952119,0.727571,0.951210],[0.726960,0.986319,0.757820,0.979697,0.765212,0.952119],[0.727571,0.951210,0.765212,0.952119,0.728102,0.920716],[0.698785,0.950511,0.727571,0.951210,0.728102,0.920716],[0.698785,0.950511,0.728102,0.920716,0.699381,0.916250],[0.829210,0.931584,0.798647,0.918412,0.809602,0.899712],[0.829210,0.931584,0.809602,0.899712,0.840076,0.905509],[0.862826,0.923477,0.829210,0.931584,0.840076,0.905509],[0.856476,0.940411,0.829210,0.931584,0.862826,0.923477],[0.698785,0.950511,0.699381,0.916250,0.673039,0.918264],[0.862826,0.923477,0.840076,0.905509,0.873018,0.898990],[0.903387,0.912076,0.862826,0.923477,0.873018,0.898990],[0.903387,0.912076,0.873018,0.898990,0.919497,0.890141],[0.951669,0.904036,0.903387,0.912076,0.919497,0.890141],[0.939505,0.928816,0.903387,0.912076,0.951669,0.904036],[0.951669,0.904036,0.972361,0.912798,0.939505,0.928816],[0.972361,0.912798,0.963680,0.939159,0.939505,0.928816],[0.637637,0.986746,0.671830,0.987672,0.672468,0.951055],[0.637637,0.986746,0.672468,0.951055,0.638221,0.953334],[0.638221,0.953334,0.672468,0.951055,0.638752,0.922935],[0.561796,0.963165,0.591990,0.959119,0.567705,0.943066],[0.591990,0.959119,0.592484,0.930747,0.567705,0.943066],[0.591989,0.959119,0.625559,0.953104,0.592484,0.930747],[0.625559,0.953104,0.591989,0.959119,0.591473,0.988763],[0.591473,0.988763,0.624976,0.986516,0.625560,0.953104],[0.625560,0.953104,0.626091,0.922704,0.592484,0.930747],[0.921756,0.841663,0.875938,0.831819,0.906575,0.819284],[0.875938,0.831819,0.844220,0.825716,0.867472,0.807692],[-1.213924,2.175955,-1.243910,2.091856,-1.274247,2.175938],[-1.243910,2.091856,-1.213924,2.175955,-1.150366,2.175965],[-1.150366,2.175965,-1.150499,2.091419,-1.243910,2.091856],[-4.164889,1.066553,-4.197845,1.170213,-4.137818,1.170086],[-4.137818,1.170086,-4.197845,1.170213,-4.197140,1.259086],[-1.150366,2.175965,-1.213924,2.175955,-1.150396,2.247025],[-1.213924,2.175955,-1.213257,2.247009,-1.150396,2.247025],[-1.213257,2.247009,-1.213924,2.175955,-1.274088,2.246995],[-1.213924,2.175955,-1.274247,2.175938,-1.274088,2.246995],[-1.641531,2.254281,-1.660398,2.183226,-1.688697,2.254264],[-1.688697,2.254264,-1.688611,2.183226,-1.746296,2.254260],[-1.688611,2.183226,-1.746807,2.183200,-1.746296,2.254260],[-1.688611,2.183226,-1.748267,2.098870,-1.746807,2.183200],[-1.688611,2.183226,-1.688541,2.098772,-1.748267,2.098870],[-2.174173,2.135754,-2.233738,2.033690,-2.229737,2.135726],[-2.229737,2.135726,-2.233738,2.033690,-2.312609,2.033757],[-2.229737,2.135726,-2.312609,2.033757,-2.313521,2.135749],[-2.839895,2.034670,-2.877928,2.034709,-2.839376,2.135721],[-2.839376,2.135721,-2.877928,2.034709,-2.926258,2.034759],[-2.839376,2.135721,-2.926258,2.034759,-2.926218,2.135716],[-3.463975,1.989814,-3.492539,2.091531,-3.418042,2.091524],[-3.418042,2.091524,-3.492539,2.091531,-3.490777,2.178065],[-3.418042,2.091524,-3.490777,2.178065,-3.417544,2.178069],[-3.417544,2.178069,-3.490777,2.178065,-3.491107,2.290194],[-3.417544,2.178069,-3.491107,2.290194,-3.416189,2.290147],[-3.416189,2.290147,-3.491107,2.290194,-3.417256,2.386935],[-3.491107,2.290194,-3.489571,2.386855,-3.417256,2.386935],[-3.417256,2.386935,-3.489571,2.386855,-3.436989,2.489137],[-2.838801,2.222284,-2.926218,2.135716,-2.926041,2.222278],[-2.838801,2.222284,-2.839376,2.135721,-2.926218,2.135716],[-2.230272,2.222260,-2.313521,2.135749,-2.313275,2.222291],[-2.229737,2.135726,-2.313521,2.135749,-2.230272,2.222260],[-2.174841,2.222297,-2.229737,2.135726,-2.230272,2.222260],[-2.174841,2.222297,-2.174173,2.135754,-2.229737,2.135726],[-2.175949,2.334365,-2.174841,2.222297,-2.230272,2.222260],[-2.175949,2.334365,-2.230272,2.222260,-2.232654,2.334253],[-2.178117,2.430508,-2.175949,2.334365,-2.232654,2.334253],[-2.232626,2.430156,-2.178117,2.430508,-2.232654,2.334253],[-2.199865,2.536784,-2.178117,2.430508,-2.232626,2.430156],[-2.230272,2.222260,-2.313275,2.222291,-2.313134,2.334275],[-2.232654,2.334253,-2.230272,2.222260,-2.313134,2.334275],[-2.312655,2.430411,-2.232654,2.334253,-2.313134,2.334275],[-2.232654,2.334253,-2.312655,2.430411,-2.232626,2.430156],[-2.272568,2.536784,-2.232626,2.430156,-2.312655,2.430411],[-2.838801,2.222284,-2.926041,2.222278,-2.925820,2.334372],[-2.838969,2.334443,-2.838801,2.222284,-2.925820,2.334372],[-2.838969,2.334443,-2.925820,2.334372,-2.904340,2.431004],[-2.838969,2.334443,-2.904340,2.431004,-2.839508,2.431179],[-2.893258,2.534724,-2.839508,2.431179,-2.904340,2.431004],[-1.688697,2.254264,-1.746296,2.254260,-1.745156,2.346343],[-1.691211,2.346447,-1.688697,2.254264,-1.745156,2.346343],[-1.641357,2.346474,-1.688697,2.254264,-1.691211,2.346447],[-1.641357,2.346474,-1.641531,2.254281,-1.688697,2.254264],[-1.213257,2.247009,-1.274088,2.246995,-1.274333,2.339045],[-1.211834,2.339086,-1.213257,2.247009,-1.274333,2.339045],[-1.213257,2.247009,-1.211834,2.339086,-1.150396,2.247025],[-1.150396,2.247025,-1.211834,2.339086,-1.150466,2.339127],[-1.211834,2.339086,-1.150609,2.418566,-1.150466,2.339127],[-1.211834,2.339086,-1.213268,2.418604,-1.150609,2.418566],[-1.213268,2.418604,-1.211834,2.339086,-1.274238,2.418403],[-1.274238,2.418403,-1.211834,2.339086,-1.274333,2.339045],[-1.211826,2.503123,-1.213268,2.418604,-1.274238,2.418403],[-1.211826,2.503123,-1.150609,2.418566,-1.213268,2.418604],[-1.641381,2.426117,-1.641357,2.346474,-1.691211,2.346447],[-1.692520,2.426119,-1.641381,2.426117,-1.691211,2.346447],[-1.692462,2.510728,-1.641381,2.426117,-1.692520,2.426119],[-1.692462,2.510728,-1.692520,2.426119,-1.746656,2.425852],[-1.692520,2.426119,-1.691211,2.346447,-1.746656,2.425852],[-1.746656,2.425852,-1.691211,2.346447,-1.745156,2.346343],[-4.137818,1.170086,-4.197140,1.259086,-4.138954,1.259123],[-4.138954,1.259123,-4.197140,1.259086,-4.196353,1.382683],[-4.138954,1.259123,-4.196353,1.382683,-4.138202,1.382891],[-4.138202,1.382891,-4.196353,1.382683,-4.196116,1.479175],[-4.138202,1.382891,-4.196116,1.479175,-4.139833,1.479197],[-4.196116,1.479175,-4.169056,1.554130,-4.139833,1.479197],[-3.873768,1.258917,-3.875038,1.382948,-3.824220,1.382801],[-3.824220,1.382801,-3.875038,1.382948,-3.872772,1.479393],[-3.825378,1.479464,-3.824220,1.382801,-3.872772,1.479393],[-3.824220,1.382801,-3.825378,1.479464,-3.776519,1.479528],[-3.825378,1.479464,-3.829144,1.554086,-3.776519,1.479528],[-3.829144,1.554086,-3.825378,1.479464,-3.872772,1.479393],[-3.824220,1.382801,-3.776519,1.479528,-3.763759,1.384287],[-3.816013,1.259078,-3.824220,1.382801,-3.763759,1.384287],[-3.816013,1.259078,-3.873768,1.258917,-3.824220,1.382801],[-3.815362,1.171031,-3.873768,1.258917,-3.816013,1.259078],[-3.815362,1.171031,-3.875978,1.170252,-3.873768,1.258917],[-3.819637,1.078534,-3.875978,1.170252,-3.815362,1.171031],[-3.873764,1.078490,-3.875978,1.170252,-3.819637,1.078534],[-3.819637,1.078534,-3.815362,1.171031,-3.791513,1.170416],[-3.815362,1.171031,-3.769352,1.259226,-3.791513,1.170416],[-3.815362,1.171031,-3.816013,1.259078,-3.769352,1.259226],[-3.816013,1.259078,-3.763759,1.384287,-3.769352,1.259226],[-2.422973,1.259401,-2.422475,1.386966,-2.345092,1.259393],[-2.345092,1.259393,-2.422475,1.386966,-2.344512,1.387118],[-2.344512,1.387118,-2.422475,1.386966,-2.411665,1.479761],[-2.344512,1.387118,-2.411665,1.479761,-2.343838,1.479904],[-2.343838,1.479904,-2.411665,1.479761,-2.345288,1.554238],[-2.343838,1.479904,-2.345288,1.554238,-2.272361,1.479991],[-2.344512,1.387118,-2.343838,1.479904,-2.272361,1.479991],[-2.344512,1.387118,-2.272361,1.479991,-2.269954,1.387991],[-2.271875,1.259656,-2.344512,1.387118,-2.269954,1.387991],[-2.345092,1.259393,-2.344512,1.387118,-2.271875,1.259656],[-2.345145,1.169130,-2.345092,1.259393,-2.271875,1.259656],[-2.345145,1.169130,-2.422973,1.259401,-2.345092,1.259393],[-2.420887,1.169655,-2.422973,1.259401,-2.345145,1.169130],[-2.345335,1.078458,-2.420887,1.169655,-2.345145,1.169130],[-2.420335,1.078489,-2.420887,1.169655,-2.345335,1.078458],[-2.345335,1.078458,-2.345145,1.169130,-2.272395,1.169307],[-2.345145,1.169130,-2.271875,1.259656,-2.272395,1.169307],[-2.918242,1.134161,-2.918241,1.231215,-2.823488,1.231365],[-2.823488,1.231365,-2.918241,1.231215,-2.918239,1.326059],[-2.823488,1.231365,-2.918239,1.326059,-2.837804,1.326198],[-2.918239,1.326059,-2.855562,1.418725,-2.837804,1.326198],[-2.918239,1.326059,-2.909631,1.418694,-2.855562,1.418725],[-2.909631,1.418694,-2.878680,1.493125,-2.855562,1.418725],[-2.822959,1.134239,-2.918242,1.134161,-2.823488,1.231365],[-2.874755,1.017112,-2.918242,1.134161,-2.822959,1.134239],[-2.918417,1.017268,-2.918242,1.134161,-2.874755,1.017112],[-2.822192,1.016925,-2.874755,1.017112,-2.822959,1.134239],[-2.822959,1.134239,-2.764565,1.016563,-2.822192,1.016925],[-2.822959,1.134239,-2.764596,1.134250,-2.764565,1.016563],[-2.822959,1.134239,-2.761215,1.231367,-2.764596,1.134250],[-2.822959,1.134239,-2.823488,1.231365,-2.761215,1.231367],[-2.823488,1.231365,-2.761607,1.325836,-2.761215,1.231367],[-2.823488,1.231365,-2.808156,1.326310,-2.761607,1.325836],[-2.808156,1.326310,-2.762069,1.418363,-2.761607,1.325836],[-2.808156,1.326310,-2.794018,1.418424,-2.762069,1.418363],[-2.762764,1.493153,-2.762069,1.418363,-2.794018,1.418424],[-2.762764,1.493153,-2.735533,1.418648,-2.762069,1.418363],[-2.762069,1.418363,-2.735533,1.418648,-2.761607,1.325836],[-2.735462,1.327132,-2.761607,1.325836,-2.735533,1.418648],[-2.761607,1.325836,-2.735462,1.327132,-2.761215,1.231367],[-2.735462,1.327132,-2.735746,1.231826,-2.761215,1.231367],[-2.761215,1.231367,-2.735746,1.231826,-2.764596,1.134250],[-2.764596,1.134250,-2.735746,1.231826,-2.735431,1.134344],[-2.764596,1.134250,-2.735431,1.134344,-2.750458,1.016563],[-1.658420,0.156849,-1.688406,0.072751,-1.718743,0.156832],[-1.688406,0.072751,-1.658420,0.156849,-1.594862,0.156860],[-1.594862,0.156860,-1.594995,0.072314,-1.688406,0.072751],[-3.842736,-0.952552,-3.875692,-0.848892,-3.815665,-0.849020],[-3.815665,-0.849020,-3.875692,-0.848892,-3.874987,-0.760020],[-1.594862,0.156860,-1.658420,0.156849,-1.594892,0.227919],[-1.658420,0.156849,-1.657753,0.227903,-1.594892,0.227919],[-1.657753,0.227903,-1.658420,0.156849,-1.718584,0.227890],[-1.658420,0.156849,-1.718743,0.156832,-1.718584,0.227890],[-1.774766,0.235175,-1.793633,0.164120,-1.821932,0.235158],[-1.821932,0.235158,-1.821846,0.164120,-1.879531,0.235154],[-1.821846,0.164120,-1.880042,0.164094,-1.879531,0.235154],[-1.821846,0.164120,-1.821776,0.079666,-1.880042,0.164094],[-1.821776,0.079666,-1.881502,0.079764,-1.880042,0.164094],[-2.253242,0.164040,-2.282861,0.080269,-2.308806,0.164017],[-2.282861,0.080269,-2.391678,0.080317,-2.308806,0.164017],[-2.308806,0.164017,-2.391678,0.080317,-2.392590,0.164037],[-2.839376,0.164014,-2.839895,0.081066,-2.926218,0.164009],[-2.839895,0.081066,-2.926258,0.081139,-2.926218,0.164009],[-3.463975,0.044246,-3.492539,0.127740,-3.418042,0.127734],[-3.492539,0.127740,-3.490777,0.198771,-3.418042,0.127734],[-3.418042,0.127734,-3.490777,0.198771,-3.417544,0.198775],[-3.490777,0.198771,-3.491107,0.290811,-3.417544,0.198775],[-3.417544,0.198775,-3.491107,0.290811,-3.416189,0.290773],[-3.491107,0.290811,-3.417256,0.370221,-3.416189,0.290773],[-3.491107,0.290811,-3.489571,0.370155,-3.417256,0.370221],[-3.417256,0.370221,-3.489571,0.370155,-3.436989,0.454113],[-2.839376,0.164014,-2.926218,0.164009,-2.926041,0.235063],[-2.839376,0.164014,-2.926041,0.235063,-2.838801,0.235068],[-2.838801,0.235068,-2.926041,0.235063,-2.925820,0.327075],[-2.838969,0.327134,-2.838801,0.235068,-2.925820,0.327075],[-2.838969,0.327134,-2.925820,0.327075,-2.925758,0.406347],[-2.838969,0.327134,-2.925758,0.406347,-2.839508,0.406539],[-2.893258,0.491533,-2.839508,0.406539,-2.925758,0.406347],[-2.309341,0.235049,-2.392590,0.164037,-2.392344,0.235074],[-2.309341,0.235049,-2.308806,0.164017,-2.392590,0.164037],[-2.253910,0.235079,-2.308806,0.164017,-2.309341,0.235049],[-2.253910,0.235079,-2.253242,0.164040,-2.308806,0.164017],[-2.255018,0.327070,-2.253910,0.235079,-2.309341,0.235049],[-2.290855,0.327011,-2.255018,0.327070,-2.309341,0.235049],[-2.255018,0.327070,-2.290855,0.327011,-2.255958,0.361270],[-2.255958,0.361270,-2.290855,0.327011,-2.277383,0.358612],[-2.255958,0.361270,-2.277383,0.358612,-2.257186,0.405988],[-2.309341,0.235049,-2.392344,0.235074,-2.392203,0.326995],[-2.311723,0.326977,-2.309341,0.235049,-2.392203,0.326995],[-2.311723,0.326977,-2.392203,0.326995,-2.391724,0.405908],[-2.311723,0.326977,-2.391724,0.405908,-2.311695,0.405699],[-2.311695,0.405699,-2.391724,0.405908,-2.311247,0.493224],[-1.821932,0.235158,-1.879531,0.235154,-1.878391,0.327237],[-1.824446,0.327341,-1.821932,0.235158,-1.878391,0.327237],[-1.824446,0.327341,-1.774592,0.327369,-1.821932,0.235158],[-1.824446,0.327341,-1.774616,0.407012,-1.774592,0.327369],[-1.774616,0.407012,-1.824446,0.327341,-1.825755,0.407013],[-1.824446,0.327341,-1.879891,0.406746,-1.825755,0.407013],[-1.824446,0.327341,-1.878391,0.327237,-1.879891,0.406746],[-1.825755,0.407013,-1.879891,0.406746,-1.825697,0.491623],[-1.774616,0.407012,-1.825755,0.407013,-1.825697,0.491623],[-1.821932,0.235158,-1.774592,0.327369,-1.774766,0.235175],[-1.657753,0.227903,-1.718584,0.227890,-1.718829,0.319939],[-1.656330,0.319980,-1.657753,0.227903,-1.718829,0.319939],[-1.657753,0.227903,-1.656330,0.319980,-1.594892,0.227919],[-1.594892,0.227919,-1.656330,0.319980,-1.594962,0.320021],[-1.656330,0.319980,-1.595105,0.399460,-1.594962,0.320021],[-1.656330,0.319980,-1.657764,0.399498,-1.595105,0.399460],[-1.657764,0.399498,-1.656330,0.319980,-1.718734,0.399297],[-1.656330,0.319980,-1.718829,0.319939,-1.718734,0.399297],[-1.656322,0.484017,-1.657764,0.399498,-1.718734,0.399297],[-1.595105,0.399460,-1.657764,0.399498,-1.656322,0.484017],[-3.815665,-0.849020,-3.874987,-0.760020,-3.816801,-0.759983],[-3.874987,-0.760020,-3.874200,-0.636423,-3.816801,-0.759983],[-3.874200,-0.636423,-3.816049,-0.636215,-3.816801,-0.759983],[-3.816049,-0.636215,-3.874200,-0.636423,-3.873963,-0.539931],[-3.816049,-0.636215,-3.873963,-0.539931,-3.817680,-0.539909],[-3.817680,-0.539909,-3.873963,-0.539931,-3.846903,-0.464975],[-3.790425,-0.760189,-3.791695,-0.636158,-3.740877,-0.636305],[-3.740877,-0.636305,-3.791695,-0.636158,-3.789429,-0.539713],[-3.740877,-0.636305,-3.789429,-0.539713,-3.742035,-0.539641],[-3.742035,-0.539641,-3.789429,-0.539713,-3.745801,-0.465020],[-3.693176,-0.539578,-3.742035,-0.539641,-3.745801,-0.465020],[-3.740877,-0.636305,-3.742035,-0.539641,-3.693176,-0.539578],[-3.680416,-0.634819,-3.740877,-0.636305,-3.693176,-0.539578],[-3.732670,-0.760027,-3.740877,-0.636305,-3.680416,-0.634819],[-3.732670,-0.760027,-3.790425,-0.760189,-3.740877,-0.636305],[-3.732019,-0.848075,-3.790425,-0.760189,-3.732670,-0.760027],[-3.732019,-0.848075,-3.792635,-0.848854,-3.790425,-0.760189],[-3.736294,-0.940572,-3.792635,-0.848854,-3.732019,-0.848075],[-3.790421,-0.940616,-3.792635,-0.848854,-3.736294,-0.940572],[-3.736294,-0.940572,-3.732019,-0.848075,-3.708170,-0.848689],[-3.708170,-0.848689,-3.732019,-0.848075,-3.686009,-0.759879],[-3.732019,-0.848075,-3.732670,-0.760027,-3.686009,-0.759879],[-3.686009,-0.759879,-3.732670,-0.760027,-3.680416,-0.634819],[-3.265605,-0.759713,-3.343486,-0.759705,-3.342988,-0.632139],[-3.265658,-0.849976,-3.343486,-0.759705,-3.265605,-0.759713],[-3.265658,-0.849976,-3.341400,-0.849451,-3.343486,-0.759705],[-3.265848,-0.940648,-3.341400,-0.849451,-3.265658,-0.849976],[-3.340848,-0.940616,-3.341400,-0.849451,-3.265848,-0.940648],[-3.265848,-0.940648,-3.265658,-0.849976,-3.192908,-0.849799],[-3.192908,-0.849799,-3.265658,-0.849976,-3.192388,-0.759449],[-3.265605,-0.759713,-3.192388,-0.759449,-3.265658,-0.849976],[-3.265605,-0.759713,-3.265025,-0.631988,-3.192388,-0.759449],[-3.265605,-0.759713,-3.342988,-0.632139,-3.265025,-0.631988],[-3.265025,-0.631988,-3.342988,-0.632139,-3.309991,-0.539298],[-3.265025,-0.631988,-3.309991,-0.539298,-3.264351,-0.539201],[-3.264351,-0.539201,-3.309991,-0.539298,-3.265801,-0.464868],[-3.192874,-0.539115,-3.264351,-0.539201,-3.265801,-0.464868],[-3.265025,-0.631988,-3.264351,-0.539201,-3.192874,-0.539115],[-3.190467,-0.631115,-3.265025,-0.631988,-3.192874,-0.539115],[-3.192388,-0.759449,-3.265025,-0.631988,-3.190467,-0.631115],[-2.918241,-0.659046,-2.918239,-0.564203,-2.823488,-0.658896],[-2.823488,-0.658896,-2.918239,-0.564203,-2.837804,-0.564063],[-2.837804,-0.564063,-2.918239,-0.564203,-2.855562,-0.471536],[-2.918239,-0.564203,-2.909631,-0.471568,-2.855562,-0.471536],[-2.855562,-0.471536,-2.909631,-0.471568,-2.878680,-0.397136],[-2.918242,-0.756100,-2.918241,-0.659046,-2.823488,-0.658896],[-2.822959,-0.756022,-2.918242,-0.756100,-2.823488,-0.658896],[-2.918417,-0.872994,-2.918242,-0.756100,-2.822959,-0.756022],[-2.822192,-0.873337,-2.918417,-0.872994,-2.822959,-0.756022],[-2.822959,-0.756022,-2.764565,-0.873698,-2.822192,-0.873337],[-2.764565,-0.873698,-2.822959,-0.756022,-2.764596,-0.756012],[-2.764596,-0.756012,-2.822959,-0.756022,-2.761215,-0.658895],[-2.822959,-0.756022,-2.823488,-0.658896,-2.761215,-0.658895],[-2.823488,-0.658896,-2.761607,-0.564425,-2.761215,-0.658895],[-2.823488,-0.658896,-2.808156,-0.563952,-2.761607,-0.564425],[-2.761607,-0.564425,-2.808156,-0.563952,-2.762069,-0.471899],[-2.808156,-0.563952,-2.794018,-0.471838,-2.762069,-0.471899],[-2.762069,-0.471899,-2.794018,-0.471838,-2.762764,-0.397109],[-2.762764,-0.397109,-2.735533,-0.471613,-2.762069,-0.471899],[-2.762069,-0.471899,-2.735533,-0.471613,-2.761607,-0.564425],[-2.735533,-0.471613,-2.735462,-0.563130,-2.761607,-0.564425],[-2.761215,-0.658895,-2.761607,-0.564425,-2.735462,-0.563130],[-2.761215,-0.658895,-2.735462,-0.563130,-2.735746,-0.658435],[-2.761215,-0.658895,-2.735746,-0.658435,-2.764596,-0.756012],[-2.764596,-0.756012,-2.735746,-0.658435,-2.735431,-0.755918],[-2.594712,-0.755716,-2.608504,-0.657475,-2.574317,-0.657594],[-2.574317,-0.657594,-2.608504,-0.657475,-2.604759,-0.563373],[-2.576900,-0.562640,-2.574317,-0.657594,-2.604759,-0.563373],[-2.576900,-0.562640,-2.604759,-0.563373,-2.591082,-0.471270],[-2.533985,-0.658380,-2.503424,-0.657941,-2.516402,-0.755768],[-2.533985,-0.658380,-2.499522,-0.562391,-2.503424,-0.657941],[-2.533985,-0.658380,-2.530165,-0.562880,-2.499522,-0.562391],[-2.530165,-0.562880,-2.519431,-0.471374,-2.499522,-0.562391],[-2.764596,-0.756012,-2.735431,-0.755918,-2.750458,-0.873698],[-2.911842,1.071953,-2.911668,1.180363,-2.822959,1.180436],[-3.174328,1.009210,-3.231843,1.093788,-3.146494,1.093383],[-3.231843,1.093788,-3.174328,1.009210,-3.231422,1.009239],[-3.784801,1.009281,-3.827691,1.094342,-3.772469,1.094779],[-3.826006,1.009240,-3.827691,1.094342,-3.784801,1.009281],[-4.164889,0.998170,-4.197845,1.094306,-4.137818,1.094188],[-4.137818,1.094188,-4.197845,1.094306,-4.197140,1.176728],[-3.826008,1.176571,-3.827691,1.094342,-3.772469,1.094779],[-3.827691,1.094342,-3.784801,1.009281,-3.772469,1.094779],[-3.827691,1.094342,-3.826006,1.009240,-3.784801,1.009281],[-3.231843,1.093788,-3.231422,1.009239,-3.174328,1.009210],[-3.231843,1.093788,-3.174328,1.009210,-3.146494,1.093383],[-2.911668,1.180363,-2.911842,1.071953,-2.822959,1.180436],[-2.911842,1.071953,-2.822192,1.071636,-2.822959,1.180436],[-2.822959,1.180436,-2.822192,1.071636,-2.764565,1.071301],[-2.822959,1.180436,-2.764565,1.071301,-2.764596,1.180445],[-2.750458,1.071301,-2.735431,1.180532,-2.764596,1.180445],[-2.764596,1.180445,-2.735431,1.180532,-2.735746,1.270939],[-2.764596,1.180445,-2.735746,1.270939,-2.761215,1.270514],[-2.761215,1.270514,-2.735746,1.270939,-2.762069,1.443937],[-2.735746,1.270939,-2.735533,1.444202,-2.762069,1.443937],[-2.762069,1.443937,-2.735533,1.444202,-2.762764,1.513298],[-2.762764,1.513298,-2.817028,1.442350,-2.762069,1.443937],[-2.817028,1.442350,-2.823488,1.270512,-2.762069,1.443937],[-2.823488,1.270512,-2.761215,1.270514,-2.762069,1.443937],[-2.823488,1.270512,-2.822959,1.180436,-2.761215,1.270514],[-2.911668,1.180363,-2.822959,1.180436,-2.823488,1.270512],[-2.911667,1.270373,-2.911668,1.180363,-2.823488,1.270512],[-3.174144,1.177013,-3.146494,1.093383,-3.114517,1.177257],[-3.233431,1.177020,-3.146494,1.093383,-3.174144,1.177013],[-3.233431,1.177020,-3.231843,1.093788,-3.146494,1.093383],[-3.782043,1.176721,-3.772469,1.094779,-3.746522,1.176858],[-3.772469,1.094779,-3.782043,1.176721,-3.826008,1.176571],[-3.826008,1.176571,-3.782043,1.176721,-3.788290,1.291463],[-3.788290,1.291463,-3.782043,1.176721,-3.742264,1.292842],[-3.782043,1.176721,-3.746522,1.176858,-3.742264,1.292842],[-3.233052,1.295327,-3.233431,1.177020,-3.174144,1.177013],[-3.233052,1.295327,-3.174144,1.177013,-3.173702,1.295468],[-3.173702,1.295468,-3.174144,1.177013,-3.114517,1.177257],[-3.173702,1.295468,-3.114517,1.177257,-3.113055,1.296277],[-2.911665,1.358332,-2.911667,1.270373,-2.823488,1.270512],[-2.911665,1.358332,-2.823488,1.270512,-2.837804,1.358462],[-2.872106,1.513273,-2.911665,1.358332,-2.837804,1.358462],[-3.173702,1.295468,-3.113055,1.296277,-3.133179,1.381574],[-3.173189,1.381519,-3.173702,1.295468,-3.133179,1.381574],[-3.224822,1.381386,-3.173702,1.295468,-3.173189,1.381519],[-3.224822,1.381386,-3.233052,1.295327,-3.173702,1.295468],[-3.174293,1.450458,-3.224822,1.381386,-3.173189,1.381519],[-3.174293,1.450458,-3.173189,1.381519,-3.133179,1.381574],[-3.788290,1.291463,-3.742264,1.292842,-3.751977,1.381170],[-3.789171,1.381111,-3.788290,1.291463,-3.751977,1.381170],[-3.825250,1.381045,-3.788290,1.291463,-3.789171,1.381111],[-3.788290,1.291463,-3.825250,1.381045,-3.826975,1.291600],[-3.826008,1.176571,-3.788290,1.291463,-3.826975,1.291600],[-4.197140,1.176728,-4.196353,1.291354,-4.138954,1.176763],[-4.138954,1.176763,-4.196353,1.291354,-4.138202,1.291547],[-4.196353,1.291354,-4.183674,1.380847,-4.138202,1.291547],[-4.183674,1.380847,-4.146772,1.380861,-4.138202,1.291547],[-4.183674,1.380847,-4.169056,1.450358,-4.146772,1.380861],[-3.826008,1.176571,-3.826975,1.291600,-3.788290,1.291463],[-3.825250,1.381045,-3.788290,1.291463,-3.826975,1.291600],[-3.788290,1.291463,-3.825250,1.381045,-3.789171,1.381111],[-3.825250,1.381045,-3.809546,1.450317,-3.789171,1.381111],[-3.788290,1.291463,-3.789171,1.381111,-3.751977,1.381170],[-3.789171,1.381111,-3.770640,1.450317,-3.751977,1.381170],[-3.788290,1.291463,-3.751977,1.381170,-3.742264,1.292842],[-3.782043,1.176721,-3.788290,1.291463,-3.742264,1.292842],[-3.826008,1.176571,-3.788290,1.291463,-3.782043,1.176721],[-3.772469,1.094779,-3.826008,1.176571,-3.782043,1.176721],[-3.827691,1.094342,-3.826008,1.176571,-3.772469,1.094779],[-4.137818,1.094188,-4.197140,1.176728,-4.138954,1.176763],[-3.772469,1.094779,-3.782043,1.176721,-3.746522,1.176858],[-3.782043,1.176721,-3.742264,1.292842,-3.746522,1.176858],[-3.233431,1.177020,-3.233052,1.295327,-3.174144,1.177013],[-3.174144,1.177013,-3.233052,1.295327,-3.173702,1.295468],[-3.233052,1.295327,-3.224822,1.381386,-3.173702,1.295468],[-3.173702,1.295468,-3.224822,1.381386,-3.173189,1.381519],[-3.224822,1.381386,-3.174293,1.450458,-3.173189,1.381519],[-3.173189,1.381519,-3.174293,1.450458,-3.127869,1.381582],[-3.173702,1.295468,-3.173189,1.381519,-3.127869,1.381582],[-3.127869,1.381582,-3.113055,1.296277,-3.173702,1.295468],[-3.173702,1.295468,-3.114517,1.177257,-3.113055,1.296277],[-3.173702,1.295468,-3.174144,1.177013,-3.114517,1.177257],[-3.146494,1.093383,-3.174144,1.177013,-3.114517,1.177257],[-3.146494,1.093383,-3.233431,1.177020,-3.174144,1.177013],[-3.231843,1.093788,-3.233431,1.177020,-3.146494,1.093383],[-2.911668,1.180363,-2.911667,1.270373,-2.823488,1.270512],[-2.911667,1.270373,-2.911665,1.358332,-2.823488,1.270512],[-2.823488,1.270512,-2.911665,1.358332,-2.837804,1.358462],[-2.911665,1.358332,-2.872106,1.513273,-2.837804,1.358462],[-2.911668,1.180363,-2.823488,1.270512,-2.822959,1.180436],[-2.822959,1.180436,-2.823488,1.270512,-2.761215,1.270514],[-2.823488,1.270512,-2.762069,1.443937,-2.761215,1.270514],[-2.817028,1.442350,-2.762069,1.443937,-2.823488,1.270512],[-2.762764,1.513298,-2.762069,1.443937,-2.817028,1.442350],[-2.762764,1.513298,-2.735533,1.444202,-2.762069,1.443937],[-2.762069,1.443937,-2.735533,1.444202,-2.735746,1.270939],[-2.762069,1.443937,-2.735746,1.270939,-2.761215,1.270514],[-2.764596,1.180445,-2.761215,1.270514,-2.735746,1.270939],[-2.822959,1.180436,-2.761215,1.270514,-2.764596,1.180445],[-2.764565,1.071301,-2.822959,1.180436,-2.764596,1.180445],[-2.822192,1.071636,-2.822959,1.180436,-2.764565,1.071301],[-2.911842,1.071953,-2.822959,1.180436,-2.822192,1.071636],[-2.764596,1.180445,-2.750458,1.071301,-2.735431,1.180532],[-2.764596,1.180445,-2.735746,1.270939,-2.735431,1.180532],[-3.809546,1.450317,-3.825250,1.381045,-3.789171,1.381111],[-3.770640,1.450317,-3.789171,1.381111,-3.751977,1.381170],[-2.761215,1.270514,-2.822959,1.180436,-2.764596,1.180445],[-1.718743,4.415484,-1.658420,4.415500,-1.718994,4.337938],[-1.658420,4.415500,-1.718743,4.415484,-1.718584,4.481048],[-1.774766,4.487770,-1.793633,4.422209,-1.821932,4.487755],[-1.821932,4.487755,-1.821846,4.422209,-1.879531,4.487751],[-1.821846,4.422209,-1.880042,4.422184,-1.879531,4.487751],[-1.880042,4.422184,-1.821846,4.422209,-1.821776,4.344283],[-1.880042,4.422184,-1.821776,4.344283,-1.881502,4.344374],[-1.881502,4.344374,-1.821776,4.344283,-1.880752,4.253557],[-1.821776,4.344283,-1.821345,4.253551,-1.880752,4.253557],[-1.718994,4.337938,-1.657819,4.337867,-1.659606,4.253051],[-1.658420,4.415500,-1.657819,4.337867,-1.718994,4.337938],[-1.658420,4.415500,-1.594862,4.415509,-1.657819,4.337867],[-1.658420,4.415500,-1.594892,4.481076,-1.594862,4.415509],[-1.658420,4.415500,-1.657753,4.481060,-1.594892,4.481076],[-1.657753,4.481060,-1.658420,4.415500,-1.718584,4.481048],[-1.657753,4.481060,-1.718584,4.481048,-1.718829,4.565981],[-1.774592,4.572837,-1.774766,4.487770,-1.821932,4.487755],[-1.821932,4.487755,-1.824446,4.572811,-1.774592,4.572837],[-1.824446,4.572811,-1.821932,4.487755,-1.878391,4.572715],[-1.821932,4.487755,-1.879531,4.487751,-1.878391,4.572715],[-2.498179,4.572561,-2.497071,4.487682,-2.614932,4.487653],[-2.497071,4.487682,-2.614397,4.422114,-2.614932,4.487653],[-2.497071,4.487682,-2.496403,4.422135,-2.614397,4.422114],[-2.496403,4.422135,-2.497818,4.344786,-2.614397,4.422114],[-2.497818,4.344786,-2.614117,4.344880,-2.614397,4.422114],[-2.614117,4.344880,-2.497818,4.344786,-2.612236,4.253583],[-2.614117,4.344880,-2.612236,4.253583,-2.696038,4.253582],[-2.612236,4.253583,-2.695379,4.111292,-2.696038,4.253582],[-2.612236,4.253583,-2.615356,4.111293,-2.695379,4.111292],[-1.880752,4.253557,-1.821345,4.253551,-1.852480,4.111291],[-1.659606,4.253051,-1.595081,4.253042,-1.617530,4.111459],[-1.657819,4.337867,-1.595081,4.253042,-1.659606,4.253051],[-1.657819,4.337867,-1.594995,4.337499,-1.595081,4.253042],[-1.594862,4.415509,-1.594995,4.337499,-1.657819,4.337867],[-3.634805,3.391564,-3.574778,3.391454,-3.601849,3.302783],[-3.574778,3.391454,-3.634805,3.391564,-3.634100,3.467679],[-3.574778,3.391454,-3.634100,3.467679,-3.575914,3.467711],[-3.575914,3.467711,-3.634100,3.467679,-3.633313,3.573535],[-1.594892,4.481076,-1.656330,4.566019,-1.594962,4.566057],[-1.657753,4.481060,-1.656330,4.566019,-1.594892,4.481076],[-1.656330,4.566019,-1.657753,4.481060,-1.718829,4.565981],[-1.718734,4.639205,-1.656330,4.566019,-1.718829,4.565981],[-1.657764,4.639390,-1.656330,4.566019,-1.718734,4.639205],[-1.656330,4.566019,-1.657764,4.639390,-1.616046,4.639366],[-1.657764,4.639390,-1.656322,4.717375,-1.616046,4.639366],[-1.656322,4.717375,-1.657764,4.639390,-1.718734,4.639205],[-1.656330,4.566019,-1.616046,4.639366,-1.594962,4.566057],[-3.575914,3.467711,-3.633313,3.573535,-3.575162,3.573713],[-3.575162,3.573713,-3.633313,3.573535,-3.633076,3.656176],[-3.576793,3.656195,-3.575162,3.573713,-3.633076,3.656176],[-3.606016,3.720372,-3.576793,3.656195,-3.633076,3.656176],[-4.093904,3.467534,-4.095174,3.573762,-4.044356,3.573636],[-4.044356,3.573636,-4.095174,3.573762,-4.072944,3.656389],[-4.044356,3.573636,-4.072944,3.656389,-4.045514,3.656424],[-4.045514,3.656424,-4.072944,3.656389,-4.049280,3.720335],[-3.996655,3.656479,-4.045514,3.656424,-4.049280,3.720335],[-4.044356,3.573636,-4.045514,3.656424,-3.996655,3.656479],[-4.044356,3.573636,-3.996655,3.656479,-3.983895,3.574909],[-4.036150,3.467673,-4.044356,3.573636,-3.983895,3.574909],[-4.036150,3.467673,-4.093904,3.467534,-4.044356,3.573636],[-4.035498,3.392263,-4.093904,3.467534,-4.036150,3.467673],[-4.035498,3.392263,-4.096114,3.391597,-4.093904,3.467534],[-4.096114,3.391597,-4.035498,3.392263,-4.039773,3.313044],[-4.035498,3.392263,-4.011649,3.391737,-4.039773,3.313044],[-4.035498,3.392263,-3.989488,3.467799,-4.011649,3.391737],[-4.035498,3.392263,-4.036150,3.467673,-3.989488,3.467799],[-4.036150,3.467673,-3.983895,3.574909,-3.989488,3.467799],[-3.541158,3.467949,-3.540660,3.577203,-3.463277,3.467942],[-3.463277,3.467942,-3.540660,3.577203,-3.462697,3.577333],[-3.462697,3.577333,-3.540660,3.577203,-3.529850,3.656678],[-3.462697,3.577333,-3.529850,3.656678,-3.462023,3.656801],[-3.462023,3.656801,-3.529850,3.656678,-3.463473,3.720465],[-3.463473,3.720465,-3.390546,3.656875,-3.462023,3.656801],[-3.462697,3.577333,-3.462023,3.656801,-3.390546,3.656875],[-3.462697,3.577333,-3.390546,3.656875,-3.388139,3.578081],[-3.390060,3.468168,-3.462697,3.577333,-3.388139,3.578081],[-3.463277,3.467942,-3.462697,3.577333,-3.390060,3.468168],[-3.463330,3.390635,-3.463277,3.467942,-3.390060,3.468168],[-3.463330,3.390635,-3.541158,3.467949,-3.463277,3.467942],[-3.463330,3.390635,-3.539072,3.391085,-3.541158,3.467949],[-3.539072,3.391085,-3.463330,3.390635,-3.463520,3.312979],[-3.463520,3.312979,-3.463330,3.390635,-3.390580,3.390787],[-3.463330,3.390635,-3.390060,3.468168,-3.390580,3.390787],[-2.918242,3.471036,-2.918241,3.554159,-2.823488,3.554287],[-2.823488,3.554287,-2.918241,3.554159,-2.918239,3.635388],[-2.823488,3.554287,-2.918239,3.635388,-2.837804,3.635508],[-2.837804,3.635508,-2.918239,3.635388,-2.855562,3.714753],[-2.918239,3.635388,-2.909631,3.714726,-2.855562,3.714753],[-2.909631,3.714726,-2.878680,3.778474,-2.855562,3.714753],[-2.823488,3.554287,-2.808156,3.635603,-2.761607,3.635198],[-2.761607,3.635198,-2.808156,3.635603,-2.762069,3.714443],[-2.808156,3.635603,-2.794018,3.714495,-2.762069,3.714443],[-2.794018,3.714495,-2.762764,3.778497,-2.762069,3.714443],[-2.762764,3.778497,-2.735533,3.714687,-2.762069,3.714443],[-2.762069,3.714443,-2.735533,3.714687,-2.761607,3.635198],[-2.735533,3.714687,-2.735462,3.636307,-2.761607,3.635198],[-2.761607,3.635198,-2.735462,3.636307,-2.761215,3.554289],[-2.735462,3.636307,-2.735746,3.554682,-2.761215,3.554289],[-2.761215,3.554289,-2.735746,3.554682,-2.764596,3.471112],[-2.735746,3.554682,-2.735431,3.471192,-2.764596,3.471112],[-2.594712,3.471365,-2.608504,3.555504,-2.574317,3.555402],[-2.574317,3.555402,-2.608504,3.555504,-2.604759,3.636099],[-2.604759,3.636099,-2.576900,3.636726,-2.574317,3.555402],[-2.591082,3.714982,-2.576900,3.636726,-2.604759,3.636099],[-2.533985,3.554729,-2.503424,3.555106,-2.516402,3.471321],[-2.533985,3.554729,-2.499522,3.636940,-2.503424,3.555106],[-2.530165,3.636521,-2.499522,3.636940,-2.533985,3.554729],[-2.530165,3.636521,-2.519431,3.714892,-2.499522,3.636940],[-1.938599,3.548173,-1.877068,3.478823,-1.938841,3.478822],[-1.877068,3.478823,-1.938599,3.548173,-1.876925,3.548240],[-1.876925,3.548240,-1.938599,3.548173,-1.938809,3.615874],[-1.876925,3.548240,-1.938809,3.615874,-1.876838,3.615718],[-1.938809,3.615874,-1.938442,3.656266,-1.876838,3.615718],[-1.876838,3.615718,-1.938442,3.656266,-1.876737,3.656164],[-1.938442,3.656266,-1.938218,3.681015,-1.876737,3.656164],[-1.876737,3.656164,-1.938218,3.681015,-1.876675,3.680993],[-1.938218,3.681015,-1.876256,3.733627,-1.876675,3.680993],[-1.876675,3.680993,-1.876256,3.733627,-1.828956,3.680945],[-1.825324,3.655370,-1.876675,3.680993,-1.828956,3.680945],[-1.876737,3.656164,-1.876675,3.680993,-1.825324,3.655370],[-1.819740,3.616053,-1.876737,3.656164,-1.825324,3.655370],[-1.876838,3.615718,-1.876737,3.656164,-1.819740,3.616053],[-1.876925,3.548240,-1.876838,3.615718,-1.819740,3.616053],[-1.876925,3.548240,-1.819740,3.616053,-1.807715,3.548395],[-1.807715,3.548395,-1.786750,3.680511,-1.716725,3.548780],[-1.786750,3.680511,-1.717170,3.680441,-1.716725,3.548780],[-1.786750,3.680511,-1.735164,3.700389,-1.717170,3.680441],[-1.786750,3.680511,-1.776886,3.704670,-1.735164,3.700389],[-1.776886,3.704670,-1.765089,3.733564,-1.735164,3.700389],[-1.807715,3.548395,-1.716725,3.548780,-1.715767,3.478890],[-0.985835,0.599393,-0.894473,0.599466,-0.985869,0.514510],[-0.985835,0.599393,-0.895035,0.690356,-0.894473,0.599466],[-0.985835,0.599393,-0.985798,0.690255,-0.895035,0.690356],[-0.985798,0.690255,-0.894804,0.784931,-0.895035,0.690356],[-0.985798,0.690255,-0.985406,0.783006,-0.894804,0.784931],[-0.985406,0.783006,-0.943378,0.857393,-0.894804,0.784931],[-0.838494,0.599406,-0.836651,0.690267,-0.798587,0.599397],[-0.798587,0.599397,-0.836651,0.690267,-0.798487,0.690225],[-0.798487,0.690225,-0.836651,0.690267,-0.798639,0.781993],[-0.798487,0.690225,-0.798639,0.781993,-0.758454,0.690271],[-0.798487,0.690225,-0.758454,0.690271,-0.757742,0.599470],[-0.662570,0.599549,-0.662600,0.690390,-0.599919,0.599552],[-0.662600,0.690390,-0.600133,0.690368,-0.599919,0.599552],[-0.662600,0.690390,-0.600396,0.785455,-0.600133,0.690368],[-0.600133,0.690368,-0.600396,0.785455,-0.521169,0.690438],[-0.600133,0.690368,-0.521169,0.690438,-0.520213,0.599569],[-0.599919,0.599552,-0.600133,0.690368,-0.520213,0.599569],[-0.599919,0.599552,-0.520213,0.599569,-0.520477,0.514381],[-0.599919,0.599552,-0.520477,0.514381,-0.599657,0.514449],[-0.599657,0.514449,-0.520477,0.514381,-0.520697,0.415828],[0.031395,0.634811,0.072822,0.511017,0.031355,0.510967],[0.031395,0.634811,0.072825,0.634640,0.072822,0.511017],[0.031573,0.748317,0.072825,0.634640,0.031395,0.634811],[0.031573,0.748317,0.056998,0.746716,0.072825,0.634640],[0.031573,0.748317,0.054325,0.797233,0.056998,0.746716],[0.072825,0.634640,0.125837,0.511020,0.072822,0.511017],[0.072825,0.634640,0.124825,0.634905,0.125837,0.511020],[0.072739,0.745724,0.124825,0.634905,0.072825,0.634640],[0.072739,0.745724,0.126143,0.746844,0.124825,0.634905],[0.072739,0.785465,0.126143,0.746844,0.072739,0.745724],[0.072739,0.785465,0.102844,0.786099,0.126143,0.746844],[0.072739,0.836821,0.102844,0.786099,0.072739,0.785465],[0.168220,0.635359,0.187481,0.511072,0.167944,0.511006],[0.168220,0.635359,0.187312,0.635612,0.187481,0.511072],[0.168178,0.744931,0.187312,0.635612,0.168220,0.635359],[0.168178,0.744931,0.190181,0.744837,0.187312,0.635612],[0.188784,0.787209,0.190181,0.744837,0.168178,0.744931],[0.187481,0.511072,0.187312,0.635612,0.212987,0.511159],[0.187312,0.635612,0.212594,0.635945,0.212987,0.511159],[0.190181,0.744837,0.212594,0.635945,0.187312,0.635612],[0.190181,0.744837,0.212184,0.744743,0.212594,0.635945],[0.213055,0.837008,0.212184,0.744743,0.190181,0.744837],[0.212184,0.744743,0.213055,0.837008,0.264492,0.745015],[0.264528,0.635751,0.212184,0.744743,0.264492,0.745015],[0.212594,0.635945,0.212184,0.744743,0.264528,0.635751],[0.264548,0.511096,0.212594,0.635945,0.264528,0.635751],[0.212987,0.511159,0.212594,0.635945,0.264548,0.511096],[0.213377,0.343184,0.212987,0.511159,0.264548,0.511096],[0.213377,0.343184,0.167697,0.343156,0.212987,0.511159],[0.214060,0.124190,0.167697,0.343156,0.213377,0.343184],[0.126486,0.125625,0.075171,0.125984,0.126017,0.343143],[0.072739,-0.039977,0.075171,0.125984,0.126486,0.125625],[0.072739,-0.039977,0.032381,0.126531,0.075171,0.125984],[-0.597826,0.082682,-0.662468,0.154089,-0.598401,0.154846],[-0.662541,0.082421,-0.662468,0.154089,-0.597826,0.082682],[-0.985722,0.081055,-0.893714,0.154910,-0.894284,0.081734],[-0.985722,0.081055,-0.985788,0.155643,-0.893714,0.154910],[-1.716029,3.102358,-1.806582,3.182442,-1.714845,3.183447],[-1.806765,3.103459,-1.806582,3.182442,-1.716029,3.102358],[-1.806765,3.103459,-1.880520,3.181962,-1.806582,3.182442],[-1.880602,3.103744,-1.880520,3.181962,-1.806765,3.103459],[-2.765764,3.110532,-2.822605,3.189329,-2.765130,3.190436],[-2.823271,3.110502,-2.822605,3.189329,-2.765764,3.110532],[-2.823271,3.110502,-2.918243,3.190993,-2.822605,3.189329],[-2.918240,3.111865,-2.918243,3.190993,-2.823271,3.110502],[-3.536874,3.190869,-3.465752,3.120602,-3.495525,3.058426],[-3.536874,3.190869,-3.463906,3.196173,-3.465752,3.120602],[-3.538520,3.313006,-3.463906,3.196173,-3.536874,3.190869],[-3.538520,3.313006,-3.463520,3.312979,-3.463906,3.196173],[-3.538520,3.313006,-3.539072,3.391085,-3.463520,3.312979],[-2.918243,3.323226,-2.918417,3.370921,-2.822145,3.322577],[-2.918417,3.370921,-2.822192,3.370628,-2.822145,3.322577],[-2.918417,3.370921,-2.822959,3.471103,-2.822192,3.370628],[-2.918417,3.370921,-2.918242,3.471036,-2.822959,3.471103],[-2.822959,3.471103,-2.918242,3.471036,-2.823488,3.554287],[-2.822959,3.471103,-2.823488,3.554287,-2.761215,3.554289],[-2.823488,3.554287,-2.761607,3.635198,-2.761215,3.554289],[-2.822959,3.471103,-2.761215,3.554289,-2.764596,3.471112],[-2.822959,3.471103,-2.764596,3.471112,-2.764565,3.370318],[-2.750458,3.370318,-2.764596,3.471112,-2.735431,3.471192],[-1.939309,3.395608,-1.938841,3.478822,-1.877046,3.395688],[-1.877046,3.395688,-1.938841,3.478822,-1.877068,3.478823],[-1.877046,3.395688,-1.877068,3.478823,-1.807485,3.395655],[-1.807485,3.395655,-1.877068,3.478823,-1.807901,3.478847],[-1.877068,3.478823,-1.807715,3.548395,-1.807901,3.478847],[-1.876925,3.548240,-1.807715,3.548395,-1.877068,3.478823],[-1.807715,3.548395,-1.715767,3.478890,-1.807901,3.478847],[-1.807485,3.395655,-1.807901,3.478847,-1.715767,3.478890],[-1.807485,3.395655,-1.715767,3.478890,-1.716787,3.395336],[-0.985987,0.415471,-0.985869,0.514510,-0.894451,0.514462],[-0.985869,0.514510,-0.894473,0.599466,-0.894451,0.514462],[-0.838494,0.599406,-0.798624,0.514409,-0.838584,0.514365],[-0.798624,0.514409,-0.838494,0.599406,-0.798587,0.599397],[-0.798587,0.599397,-0.758471,0.514310,-0.798624,0.514409],[-0.798587,0.599397,-0.757742,0.599470,-0.758471,0.514310],[-0.798587,0.599397,-0.798487,0.690225,-0.757742,0.599470],[-0.662570,0.599549,-0.599657,0.514449,-0.662559,0.514407],[-0.662570,0.599549,-0.599919,0.599552,-0.599657,0.514449],[-0.599277,0.415628,-0.662559,0.514407,-0.599657,0.514449],[-0.662559,0.514407,-0.599277,0.415628,-0.662457,0.415507],[-0.662487,0.329795,-0.662457,0.415507,-0.599277,0.415628],[-0.985998,0.330135,-0.894633,0.415479,-0.893977,0.329715],[-0.985998,0.330135,-0.985987,0.415471,-0.894633,0.415479],[-1.716025,3.318019,-1.807485,3.395655,-1.716787,3.395336],[-1.807394,3.316793,-1.807485,3.395655,-1.716025,3.318019],[-1.880493,3.316884,-1.807485,3.395655,-1.807394,3.316793],[-1.880493,3.316884,-1.877046,3.395688,-1.807485,3.395655],[-1.906354,3.316884,-1.939309,3.395608,-1.877046,3.395688],[-2.764757,3.323550,-2.822192,3.370628,-2.764565,3.370318],[-2.822145,3.322577,-2.822192,3.370628,-2.764757,3.323550],[-2.765130,3.190436,-2.822145,3.322577,-2.764757,3.323550],[-2.822605,3.189329,-2.822145,3.322577,-2.765130,3.190436],[-2.918243,3.323226,-2.822145,3.322577,-2.822605,3.189329],[-2.918243,3.190993,-2.918243,3.323226,-2.822605,3.189329],[-1.880520,3.181962,-1.880493,3.316884,-1.806582,3.182442],[-1.806582,3.182442,-1.880493,3.316884,-1.807394,3.316793],[-1.806582,3.182442,-1.807394,3.316793,-1.714845,3.183447],[-1.714845,3.183447,-1.807394,3.316793,-1.716025,3.318019],[-0.985788,0.155643,-0.985998,0.330135,-0.893977,0.329715],[-0.985788,0.155643,-0.893977,0.329715,-0.893714,0.154910],[-0.662468,0.154089,-0.662487,0.329795,-0.599140,0.329684],[-0.662487,0.329795,-0.599277,0.415628,-0.599140,0.329684],[-0.599140,0.329684,-0.599277,0.415628,-0.520697,0.415828],[-0.599657,0.514449,-0.520697,0.415828,-0.599277,0.415628],[-0.599140,0.329684,-0.520697,0.415828,-0.521182,0.329141],[0.032427,0.343156,0.031355,0.510967,0.075171,0.343160],[0.075171,0.343160,0.031355,0.510967,0.072822,0.511017],[0.075171,0.343160,0.072822,0.511017,0.126017,0.343143],[0.126017,0.343143,0.072822,0.511017,0.125837,0.511020],[0.167697,0.343156,0.167944,0.511006,0.187481,0.511072],[0.167697,0.343156,0.187481,0.511072,0.212987,0.511159],[0.075171,0.125984,0.075171,0.343160,0.126017,0.343143],[0.075171,0.125984,0.032427,0.343156,0.075171,0.343160],[0.032381,0.126531,0.032427,0.343156,0.075171,0.125984],[-0.599140,0.329684,-0.521182,0.329141,-0.598401,0.154846],[-0.662468,0.154089,-0.599140,0.329684,-0.598401,0.154846],[-2.822192,3.370628,-2.822959,3.471103,-2.764565,3.370318],[-0.985987,0.415471,-0.894451,0.514462,-0.894633,0.415479],[-0.798756,0.415554,-0.838584,0.514365,-0.798624,0.514409],[-0.798624,0.514409,-0.758471,0.514310,-0.798756,0.415554],[-4.093900,3.313006,-4.039773,3.313044,-4.055399,3.102313],[-4.096114,3.391597,-4.039773,3.313044,-4.093900,3.313006],[-2.926784,4.253634,-2.841585,4.111105,-2.926708,4.111092],[-2.840952,4.253630,-2.841585,4.111105,-2.926784,4.253634],[-2.926258,4.345643,-2.840952,4.253630,-2.926784,4.253634],[-2.839895,4.345575,-2.840952,4.253630,-2.926258,4.345643],[-2.614117,4.344880,-2.696038,4.253582,-2.697269,4.344884],[-2.614397,4.422114,-2.614117,4.344880,-2.697269,4.344884],[-2.614397,4.422114,-2.697269,4.344884,-2.698181,4.422131],[-2.839895,4.345575,-2.926218,4.422106,-2.839376,4.422110],[-2.839895,4.345575,-2.926258,4.345643,-2.926218,4.422106],[-3.463975,4.311602,-3.492539,4.388641,-3.418042,4.388635],[-3.624413,4.311410,-3.671927,4.388674,-3.624039,4.388667],[-3.624413,4.311410,-3.672107,4.311403,-3.671927,4.388674],[-3.624413,4.311410,-3.624759,4.250973,-3.672107,4.311403],[-3.672107,4.311403,-3.624759,4.250973,-3.671281,4.250973],[-3.624759,4.250973,-3.624709,4.112139,-3.671281,4.250973],[-3.671281,4.250973,-3.624709,4.112139,-3.671158,4.112139],[-3.838899,4.246660,-3.839382,4.113582,-3.907263,4.246702],[-3.907263,4.246702,-3.839382,4.113582,-3.907331,4.113591],[-0.565051,1.175445,-0.565168,1.033588,-0.613492,1.175570],[-0.613492,1.175570,-0.565168,1.033588,-0.613527,1.031376],[-0.613492,1.175570,-0.613527,1.031376,-0.672709,1.175117],[-0.672709,1.175117,-0.613527,1.031376,-0.672698,1.036608],[0.727591,0.124345,0.661723,0.001422,0.662061,0.125749],[0.662061,0.125749,0.661723,0.001422,0.613155,0.126143],[0.927468,0.023379,0.862235,0.024818,0.863362,0.170172],[0.861898,0.170624,0.861918,0.022113,0.813027,0.094734],[0.861898,0.170624,0.813027,0.094734,0.813233,0.343218],[0.861798,0.343184,0.861898,0.170624,0.813233,0.343218],[0.861798,0.343184,0.813233,0.343218,0.813562,0.485578],[0.862091,0.485626,0.861798,0.343184,0.813562,0.485578],[0.862091,0.485626,0.813562,0.485578,0.837776,0.629140],[0.927521,0.170234,0.927468,0.023379,0.863362,0.170172],[0.868961,0.343186,0.927521,0.170234,0.863362,0.170172],[0.927776,0.343196,0.927521,0.170234,0.868961,0.343186],[0.862091,0.485626,0.927776,0.343196,0.868961,0.343186],[0.927821,0.485542,0.927776,0.343196,0.862091,0.485626],[0.927821,0.485542,0.862091,0.485626,0.895345,0.628703],[0.662061,0.125749,0.613155,0.126143,0.613370,0.343218],[0.403343,0.343110,0.358033,0.124420,0.358048,0.343107],[0.358033,0.124420,0.309579,0.343139,0.358048,0.343107],[0.214060,0.124190,0.213377,0.343184,0.264533,0.343239],[0.213377,0.343184,0.264548,0.511096,0.264533,0.343239],[0.309579,0.343139,0.309502,0.511499,0.328185,0.511507],[0.309502,0.511499,0.309481,0.636283,0.328185,0.511507],[0.309481,0.636283,0.333735,0.636201,0.328185,0.511507],[0.309548,0.747043,0.333735,0.636201,0.309481,0.636283],[0.309548,0.747043,0.338047,0.746951,0.333735,0.636201],[0.329826,0.784743,0.338047,0.746951,0.309548,0.747043],[0.338047,0.746951,0.357988,0.636119,0.333735,0.636201],[0.338047,0.746951,0.357965,0.746886,0.357988,0.636119],[0.357890,0.836921,0.357965,0.746886,0.338047,0.746951],[0.357965,0.746886,0.357890,0.836921,0.403385,0.746494],[0.403332,0.635868,0.357965,0.746886,0.403385,0.746494],[0.357988,0.636119,0.357965,0.746886,0.403332,0.635868],[0.403296,0.511344,0.357988,0.636119,0.403332,0.635868],[0.358116,0.511521,0.357988,0.636119,0.403296,0.511344],[0.333735,0.636201,0.357988,0.636119,0.358116,0.511521],[0.328185,0.511507,0.333735,0.636201,0.358116,0.511521],[0.309579,0.343139,0.328185,0.511507,0.358116,0.511521],[0.358048,0.343107,0.309579,0.343139,0.358116,0.511521],[0.358048,0.343107,0.358116,0.511521,0.403296,0.511344],[0.358048,0.343107,0.403296,0.511344,0.403343,0.343110],[0.468596,0.343377,0.457636,0.511702,0.487178,0.511506],[0.487178,0.511506,0.457636,0.511702,0.462959,0.636664],[0.487178,0.511506,0.462959,0.636664,0.497961,0.636301],[0.462959,0.636664,0.472092,0.744902,0.497961,0.636301],[0.497961,0.636301,0.472092,0.744902,0.496695,0.745564],[0.472092,0.744902,0.493034,0.836415,0.496695,0.745564],[0.662228,0.485626,0.613698,0.485578,0.612965,0.629634],[0.661934,0.343184,0.613698,0.485578,0.662228,0.485626],[0.661934,0.343184,0.613370,0.343218,0.613698,0.485578],[0.661934,0.343184,0.662061,0.125749,0.613370,0.343218],[0.661934,0.343184,0.727591,0.124345,0.662061,0.125749],[0.727912,0.343196,0.727591,0.124345,0.661934,0.343184],[-0.741699,1.296138,-0.785542,1.174766,-0.816000,1.294754],[-0.613743,1.298103,-0.672709,1.175117,-0.672714,1.296138],[-0.613743,1.298103,-0.613492,1.175570,-0.672709,1.175117],[-0.564477,1.298785,-0.613492,1.175570,-0.613743,1.298103],[-0.564477,1.298785,-0.565051,1.175445,-0.613492,1.175570],[-3.907363,4.325044,-3.838899,4.246660,-3.907263,4.246702],[-3.835677,4.325044,-3.838899,4.246660,-3.907363,4.325044],[-3.835677,4.325044,-3.907363,4.325044,-3.907895,4.390561],[-0.564477,1.298785,-0.613743,1.298103,-0.564243,1.416260],[-0.613743,1.298103,-0.614130,1.416281,-0.564243,1.416260],[-0.613743,1.298103,-0.672742,1.416259,-0.614130,1.416281],[-0.613743,1.298103,-0.672714,1.296138,-0.672742,1.416259],[-0.741483,1.416259,-0.741699,1.296138,-0.816000,1.294754],[-0.816000,1.294754,-0.815910,1.416253,-0.741483,1.416259],[0.727957,0.485542,0.727912,0.343196,0.662228,0.485626],[0.727912,0.343196,0.661934,0.343184,0.662228,0.485626],[0.662228,0.485626,0.662859,0.628646,0.727957,0.485542],[0.662228,0.485626,0.612965,0.629634,0.662859,0.628646],[0.662859,0.628646,0.612965,0.629634,0.612370,0.752985],[0.662859,0.628646,0.612370,0.752985,0.662454,0.755231],[0.612370,0.752985,0.662578,0.861484,0.662454,0.755231],[0.703243,0.755029,0.662454,0.755231,0.662578,0.861484],[0.728104,0.628761,0.662454,0.755231,0.703243,0.755029],[0.662859,0.628646,0.662454,0.755231,0.728104,0.628761],[0.727957,0.485542,0.662859,0.628646,0.728104,0.628761],[-0.815910,1.416253,-0.815828,1.578365,-0.741408,1.577067],[-0.815828,1.578365,-0.742200,1.707268,-0.741408,1.577067],[-0.815828,1.578365,-0.815797,1.707101,-0.742200,1.707268],[-0.815797,1.707101,-0.781450,1.789689,-0.742200,1.707268],[-0.614066,1.576176,-0.672751,1.577067,-0.672735,1.707553],[-0.614130,1.416281,-0.672751,1.577067,-0.614066,1.576176],[-0.614130,1.416281,-0.672742,1.416259,-0.672751,1.577067],[-0.741483,1.416259,-0.815910,1.416253,-0.741408,1.577067],[-0.564243,1.416260,-0.614130,1.416281,-0.614066,1.576176],[-0.564243,1.416260,-0.614066,1.576176,-0.564518,1.576307],[-0.564518,1.576307,-0.614066,1.576176,-0.613604,1.707762],[-0.614066,1.576176,-0.672735,1.707553,-0.613604,1.707762],[-0.672735,1.707553,-0.613559,1.791839,-0.613604,1.707762],[-0.565747,1.707655,-0.613604,1.707762,-0.613559,1.791839],[-0.564518,1.576307,-0.613604,1.707762,-0.565747,1.707655],[-3.832266,4.475622,-3.907224,4.475635,-3.907204,4.548275],[-3.907895,4.390561,-3.907224,4.475635,-3.832266,4.475622],[-3.832543,4.390537,-3.907895,4.390561,-3.832266,4.475622],[-3.835677,4.325044,-3.907895,4.390561,-3.832543,4.390537],[-3.671927,4.388674,-3.672326,4.454194,-3.624432,4.454203],[-3.672326,4.454194,-3.630742,4.539108,-3.624432,4.454203],[-3.672326,4.454194,-3.672330,4.539127,-3.630742,4.539108],[-3.672330,4.539127,-3.633579,4.611844,-3.630742,4.539108],[-3.672330,4.539127,-3.672732,4.612065,-3.633579,4.611844],[-3.672732,4.612065,-3.638585,4.657456,-3.633579,4.611844],[-3.624039,4.388667,-3.671927,4.388674,-3.624432,4.454203],[-3.624039,4.388667,-3.624432,4.454203,-3.561716,4.454206],[-3.561716,4.454206,-3.624432,4.454203,-3.563216,4.539107],[-3.624432,4.454203,-3.624531,4.539105,-3.563216,4.539107],[-3.563216,4.539107,-3.624531,4.539105,-3.594719,4.611826],[-3.492539,4.388641,-3.490777,4.454181,-3.418042,4.388635],[-3.418042,4.388635,-3.490777,4.454181,-3.417544,4.454184],[-3.417544,4.454184,-3.490777,4.454181,-3.417256,4.612376],[-3.490777,4.454181,-3.489571,4.612315,-3.417256,4.612376],[-3.436989,4.689782,-3.417256,4.612376,-3.489571,4.612315],[-2.839376,4.422110,-2.926218,4.422106,-2.926041,4.487667],[-2.838801,4.487672,-2.839376,4.422110,-2.926041,4.487667],[-2.614932,4.487653,-2.698181,4.422131,-2.697935,4.487677],[-2.614932,4.487653,-2.614397,4.422114,-2.698181,4.422131],[-2.614932,4.487653,-2.697935,4.487677,-2.697794,4.572492],[-2.617314,4.572476,-2.614932,4.487653,-2.697794,4.572492],[-2.498179,4.572561,-2.614932,4.487653,-2.617314,4.572476],[-2.498179,4.572561,-2.617314,4.572476,-2.500346,4.645377],[-2.500346,4.645377,-2.617314,4.572476,-2.617286,4.645111],[-2.617286,4.645111,-2.617314,4.572476,-2.683146,4.645270],[-2.617314,4.572476,-2.697794,4.572492,-2.683146,4.645270],[-2.616838,4.725870,-2.617286,4.645111,-2.683146,4.645270],[-2.500346,4.645377,-2.617286,4.645111,-2.616838,4.725870],[-2.838801,4.487672,-2.926041,4.487667,-2.925820,4.572566],[-2.838969,4.572620,-2.838801,4.487672,-2.925820,4.572566],[-2.838969,4.572620,-2.925820,4.572566,-2.925758,4.645709],[-2.839508,4.645886,-2.838969,4.572620,-2.925758,4.645709],[-2.893258,4.724310,-2.839508,4.645886,-2.925758,4.645709],[-3.832266,4.475622,-3.907204,4.548275,-3.834711,4.548249],[-3.907204,4.548275,-3.877101,4.626742,-3.834711,4.548249],[-1.824446,4.572811,-1.878391,4.572715,-1.864221,4.646149],[-1.825755,4.646324,-1.824446,4.572811,-1.864221,4.646149],[-1.774616,4.646322,-1.824446,4.572811,-1.825755,4.646324],[-1.824446,4.572811,-1.774616,4.646322,-1.774592,4.572837],[-1.825697,4.724392,-1.774616,4.646322,-1.825755,4.646324],[-1.825697,4.724392,-1.825755,4.646324,-1.864221,4.646149],[0.311778,-0.652145,0.329319,-0.854833,0.273740,-0.652145],[0.329319,-0.854833,0.311778,-0.652145,0.369634,-0.857437],[0.369634,-0.857437,0.311778,-0.652145,0.358740,-0.652145],[0.311778,-0.652145,0.306922,-0.573046,0.358740,-0.652145],[0.306922,-0.573046,0.311778,-0.652145,0.281926,-0.573046],[0.281926,-0.573046,0.311778,-0.652145,0.273740,-0.652145],[0.306328,-0.464314,0.306922,-0.573046,0.281926,-0.573046],[0.306922,-0.573046,0.306328,-0.464314,0.343581,-0.573046],[0.358740,-0.652145,0.306922,-0.573046,0.343581,-0.573046],[0.369634,-0.991401,0.329319,-0.854833,0.369634,-0.857437],[0.329319,-0.854833,0.369634,-0.991401,0.249463,-0.857437],[0.369634,-0.991401,0.250380,-0.991401,0.249463,-0.857437],[0.249463,-0.857437,0.250380,-0.991401,0.216405,-0.854833],[0.250380,-0.991401,0.158061,-0.991401,0.216405,-0.854833],[0.216405,-0.854833,0.158061,-0.991401,0.159190,-0.857437],[-1.841979,-0.792754,-1.841546,-0.939466,-1.793711,-0.945786],[-1.841979,-0.792754,-1.793711,-0.945786,-1.798155,-0.789424],[-1.798155,-0.789424,-1.793711,-0.945786,-1.779115,-0.790876],[-1.793711,-0.945786,-1.729275,-0.785188,-1.779115,-0.790876],[-1.793711,-0.945786,-1.718254,-0.945072,-1.729275,-0.785188],[-1.282158,-0.945270,-1.238243,-0.793618,-1.298809,-0.793618],[-1.254722,-0.945270,-1.190301,-0.790699,-1.243585,-0.793618],[-1.254722,-0.945270,-1.189316,-0.945270,-1.190301,-0.790699],[-1.190301,-0.790699,-1.190823,-0.563427,-1.243585,-0.793618],[-1.243585,-0.793618,-1.190823,-0.563427,-1.242682,-0.563427],[-1.242682,-0.563427,-1.190823,-0.563427,-1.238539,-0.453802],[-1.190823,-0.563427,-1.200377,-0.453802,-1.238539,-0.453802],[-1.200377,-0.453802,-1.218924,-0.332491,-1.238539,-0.453802],[-1.216752,-0.563427,-1.200377,-0.453802,-1.238539,-0.453802],[-1.238539,-0.453802,-1.200377,-0.453802,-1.231899,-0.412734],[-1.231899,-0.412734,-1.200377,-0.453802,-1.207105,-0.409792],[-1.207105,-0.409792,-1.218924,-0.332491,-1.231899,-0.412734],[-1.238243,-0.793618,-1.177372,-0.557716,-1.266940,-0.559144],[-1.238243,-0.793618,-1.266940,-0.559144,-1.298809,-0.793618],[-1.356508,-0.560572,-1.298809,-0.793618,-1.266940,-0.559144],[-1.779115,-0.790876,-1.729275,-0.785188,-1.730170,-0.557839],[-1.803244,-0.567549,-1.779115,-0.790876,-1.730170,-0.557839],[-1.798155,-0.789424,-1.779115,-0.790876,-1.803244,-0.567549],[-1.799589,-0.465222,-1.803244,-0.567549,-1.730170,-0.557839],[-1.799589,-0.465222,-1.730170,-0.557839,-1.730582,-0.462308],[-1.799589,-0.465222,-1.730582,-0.462308,-1.755968,-0.336911],[-1.842003,-0.568141,-1.841979,-0.792754,-1.798155,-0.789424],[-1.842003,-0.568141,-1.798155,-0.789424,-1.803244,-0.567549],[-1.835422,-0.465453,-1.842003,-0.568141,-1.803244,-0.567549],[-1.835422,-0.465453,-1.803244,-0.567549,-1.799589,-0.465222],[-1.816051,-0.348477,-1.835422,-0.465453,-1.799589,-0.465222],[0.205707,-0.652145,0.216405,-0.854833,0.159190,-0.857437],[0.249463,-0.857437,0.216405,-0.854833,0.205707,-0.652145],[0.244376,-0.652145,0.249463,-0.857437,0.205707,-0.652145],[0.244376,-0.652145,0.205707,-0.652145,0.209917,-0.570736],[0.209917,-0.570736,0.205707,-0.652145,0.158468,-0.652145],[0.205707,-0.652145,0.159190,-0.857437,0.158468,-0.652145],[0.159719,-0.569658,0.209917,-0.570736,0.158468,-0.652145],[0.213241,-0.464351,0.209917,-0.570736,0.159719,-0.569658],[0.213241,-0.464351,0.245348,-0.570736,0.209917,-0.570736],[0.245348,-0.570736,0.244376,-0.652145,0.209917,-0.570736],[0.329319,-0.854833,0.249463,-0.857437,0.273740,-0.652145],[0.198508,-0.860206,0.152353,-0.991529,0.152353,-0.860206],[0.152353,-0.991529,0.198508,-0.860206,0.266685,-0.860206],[0.266685,-0.860206,0.198508,-0.860206,0.248248,-0.654914],[0.198508,-0.860206,0.210209,-0.654914,0.248248,-0.654914],[0.210209,-0.654914,0.198508,-0.860206,0.152353,-0.860206],[0.210209,-0.654914,0.152353,-0.860206,0.163247,-0.654914],[0.215065,-0.575815,0.210209,-0.654914,0.163247,-0.654914],[0.210209,-0.654914,0.215065,-0.575815,0.240061,-0.575815],[0.240061,-0.575815,0.215065,-0.575815,0.215659,-0.464324],[0.215659,-0.464324,0.215065,-0.575815,0.178406,-0.575815],[0.215065,-0.575815,0.163247,-0.654914,0.178406,-0.575815],[0.248248,-0.654914,0.210209,-0.654914,0.240061,-0.575815],[0.266685,-0.860206,0.268852,-0.657518,0.304601,-0.654914],[0.304601,-0.654914,0.268852,-0.657518,0.312070,-0.573505],[0.268852,-0.657518,0.276640,-0.573505,0.312070,-0.573505],[0.276640,-0.573505,0.308747,-0.464360,0.312070,-0.573505],[0.312070,-0.573505,0.308747,-0.464360,0.362268,-0.572427],[0.363519,-0.654914,0.312070,-0.573505,0.362268,-0.572427],[0.363519,-0.654914,0.304601,-0.654914,0.312070,-0.573505],[0.362798,-0.860206,0.304601,-0.654914,0.363519,-0.654914],[0.293904,-0.860206,0.304601,-0.654914,0.362798,-0.860206],[0.293904,-0.860206,0.266685,-0.860206,0.304601,-0.654914],[0.265768,-0.991529,0.266685,-0.860206,0.293904,-0.860206],[0.152353,-0.991529,0.266685,-0.860206,0.265768,-0.991529],[0.265768,-0.991529,0.293904,-0.860206,0.363927,-0.991529],[0.363927,-0.991529,0.293904,-0.860206,0.362798,-0.860206],[-1.793711,-0.945786,-1.841546,-0.939466,-1.841979,-0.792754],[-1.793711,-0.945786,-1.841979,-0.792754,-1.798155,-0.789424],[-1.841979,-0.792754,-1.842003,-0.568141,-1.798155,-0.789424],[-1.798155,-0.789424,-1.842003,-0.568141,-1.803244,-0.567549],[-1.842003,-0.568141,-1.835422,-0.465453,-1.803244,-0.567549],[-1.803244,-0.567549,-1.835422,-0.465453,-1.799589,-0.465222],[-1.835422,-0.465453,-1.816051,-0.348477,-1.799589,-0.465222],[-1.793711,-0.945786,-1.798155,-0.789424,-1.779115,-0.790876],[-1.779115,-0.790876,-1.798155,-0.789424,-1.803244,-0.567549],[-1.779115,-0.790876,-1.803244,-0.567549,-1.730170,-0.557839],[-1.803244,-0.567549,-1.799589,-0.465222,-1.730170,-0.557839],[-1.730170,-0.557839,-1.799589,-0.465222,-1.730582,-0.462308],[-1.799589,-0.465222,-1.755968,-0.336911,-1.730582,-0.462308],[-1.729275,-0.785188,-1.779115,-0.790876,-1.730170,-0.557839],[-1.793711,-0.945786,-1.779115,-0.790876,-1.729275,-0.785188],[-1.718254,-0.945072,-1.793711,-0.945786,-1.729275,-0.785188],[-1.298809,-0.793618,-1.238243,-0.793618,-1.282158,-0.945270],[-1.298809,-0.793618,-1.250870,-0.558888,-1.238243,-0.793618],[-1.356508,-0.560572,-1.250870,-0.558888,-1.298809,-0.793618],[-1.238243,-0.793618,-1.250870,-0.558888,-1.177372,-0.557716],[-1.243585,-0.793618,-1.242682,-0.563427,-1.208300,-0.563427],[-1.242682,-0.563427,-1.238539,-0.453802,-1.208300,-0.563427],[-1.216752,-0.563427,-1.238539,-0.453802,-1.200377,-0.453802],[-1.238539,-0.453802,-1.231899,-0.412734,-1.200377,-0.453802],[-1.231899,-0.412734,-1.207105,-0.409792,-1.200377,-0.453802],[-1.231899,-0.412734,-1.218924,-0.332491,-1.207105,-0.409792],[-1.238539,-0.453802,-1.210941,-0.453802,-1.208300,-0.563427],[-1.238539,-0.453802,-1.218924,-0.332491,-1.210941,-0.453802],[-1.243585,-0.793618,-1.208300,-0.563427,-1.190301,-0.790699],[-1.243585,-0.793618,-1.190301,-0.790699,-1.254722,-0.945270],[-1.254722,-0.945270,-1.190301,-0.790699,-1.189316,-0.945270],[0.984274,0.633885,0.987662,0.621613,0.982536,0.627607],[0.984274,0.633885,0.993746,0.622669,0.987662,0.621613],[0.697346,0.598814,0.700495,0.611436,0.706796,0.607321],[0.706796,0.607321,0.704318,0.599518,0.697346,0.598814],[0.726623,0.605420,0.704318,0.599518,0.706796,0.607321],[0.726623,0.605420,0.722268,0.591750,0.704318,0.599518],[0.726623,0.605420,0.723501,0.589255,0.722268,0.591750],[0.723501,0.589255,0.726623,0.605420,0.729310,0.607035],[0.729310,0.607035,0.726623,0.605420,0.721644,0.614889],[0.726623,0.605420,0.700495,0.611436,0.721644,0.614889],[0.706796,0.607321,0.700495,0.611436,0.726623,0.605420],[0.961855,0.627013,0.984274,0.633885,0.964464,0.615349],[0.964464,0.615349,0.959715,0.626606,0.961855,0.627013],[0.962031,0.614461,0.959715,0.626606,0.964464,0.615349],[0.959715,0.626606,0.962031,0.614461,0.939910,0.611412],[0.939910,0.611412,0.962031,0.614461,0.950104,0.585449],[0.950104,0.585449,0.962031,0.614461,0.969403,0.603813],[0.962031,0.614461,0.971180,0.605527,0.969403,0.603813],[0.962031,0.614461,0.964464,0.615349,0.971180,0.605527],[0.964464,0.615349,0.982536,0.627607,0.971180,0.605527],[0.964464,0.615349,0.984274,0.633885,0.982536,0.627607],[0.971180,0.605527,0.982536,0.627607,0.987662,0.621613],[0.971180,0.605527,0.987662,0.621613,0.979968,0.600485],[0.979968,0.600485,0.987662,0.621613,0.993746,0.622669],[0.717152,0.584377,0.697346,0.598814,0.722268,0.591750],[0.722268,0.591750,0.697346,0.598814,0.704318,0.599518],[0.719716,0.584085,0.717152,0.584377,0.722268,0.591750],[0.969403,0.603813,0.979968,0.600485,0.978484,0.598368],[0.969403,0.603813,0.971180,0.605527,0.979968,0.600485],[0.961053,0.576407,0.969403,0.603813,0.978484,0.598368],[0.961053,0.576407,0.950104,0.585449,0.969403,0.603813],[0.945213,0.562298,0.950104,0.585449,0.961053,0.576407],[0.945213,0.562298,0.934406,0.571403,0.950104,0.585449],[0.931385,0.553651,0.934406,0.571403,0.945213,0.562298],[0.931385,0.553651,0.920691,0.561797,0.934406,0.571403],[0.927573,0.547215,0.920691,0.561797,0.931385,0.553651],[0.927573,0.547215,0.916978,0.553359,0.920691,0.561797],[0.914541,0.530072,0.916978,0.553359,0.927573,0.547215],[0.901300,0.531115,0.916978,0.553359,0.914541,0.530072],[0.901300,0.531115,0.903886,0.555444,0.916978,0.553359],[0.901300,0.531115,0.892546,0.556357,0.903886,0.555444],[0.890079,0.531571,0.892546,0.556357,0.901300,0.531115],[0.876422,0.532394,0.892546,0.556357,0.890079,0.531571],[0.876422,0.532394,0.878601,0.558002,0.892546,0.556357],[0.876422,0.532394,0.864651,0.559005,0.878601,0.558002],[0.876422,0.532394,0.863173,0.532895,0.864651,0.559005],[0.874243,0.506785,0.863173,0.532895,0.876422,0.532394],[0.874243,0.506785,0.861696,0.506785,0.863173,0.532895],[0.861696,0.506785,0.851582,0.533236,0.863173,0.532895],[0.851245,0.506786,0.851582,0.533236,0.861696,0.506785],[0.851245,0.506786,0.841922,0.533252,0.851582,0.533236],[0.843415,0.506786,0.841922,0.533252,0.851245,0.506786],[0.843415,0.506786,0.827193,0.533245,0.841922,0.533252],[0.843415,0.506786,0.829384,0.506786,0.827193,0.533245],[0.829384,0.506786,0.813397,0.506786,0.827193,0.533245],[0.827193,0.533245,0.813397,0.506786,0.810045,0.532019],[0.792147,0.506786,0.810045,0.532019,0.813397,0.506786],[0.792147,0.506786,0.788828,0.529384,0.810045,0.532019],[0.792147,0.506786,0.777815,0.506786,0.788828,0.529384],[0.777815,0.506786,0.774519,0.524664,0.788828,0.529384],[0.912104,0.506785,0.926248,0.527000,0.924923,0.506785],[0.912104,0.506785,0.914541,0.530072,0.926248,0.527000],[0.898713,0.506785,0.914541,0.530072,0.912104,0.506785],[0.898713,0.506785,0.901300,0.531115,0.914541,0.530072],[0.890079,0.531571,0.901300,0.531115,0.898713,0.506785],[0.898713,0.506785,0.887612,0.506785,0.890079,0.531571],[0.874243,0.506785,0.890079,0.531571,0.887612,0.506785],[0.874243,0.506785,0.876422,0.532394,0.890079,0.531571],[0.926248,0.527000,0.914541,0.530072,0.927573,0.547215],[0.774519,0.524664,0.771222,0.542543,0.785509,0.551982],[0.771222,0.542543,0.762723,0.548137,0.785509,0.551982],[0.785509,0.551982,0.762723,0.548137,0.778954,0.557835],[0.778954,0.557835,0.762723,0.548137,0.753145,0.552275],[0.778954,0.557835,0.753145,0.552275,0.767090,0.566215],[0.767090,0.566215,0.753145,0.552275,0.738857,0.565304],[0.767090,0.566215,0.738857,0.565304,0.747760,0.579444],[0.738857,0.565304,0.719716,0.584085,0.747760,0.579444],[0.747760,0.579444,0.719716,0.584085,0.723501,0.589255],[0.719716,0.584085,0.722268,0.591750,0.723501,0.589255],[0.747760,0.579444,0.723501,0.589255,0.753045,0.605600],[0.753045,0.605600,0.723501,0.589255,0.729310,0.607035],[0.753045,0.605600,0.729310,0.607035,0.724537,0.615992],[0.729310,0.607035,0.721644,0.614889,0.724537,0.615992],[0.753045,0.605600,0.724537,0.615992,0.732329,0.619920],[0.939910,0.611412,0.950214,0.626251,0.959715,0.626606],[0.939910,0.611412,0.953189,0.640268,0.950214,0.626251],[0.939910,0.611412,0.944324,0.640537,0.953189,0.640268],[0.910549,0.604017,0.944324,0.640537,0.939910,0.611412],[0.910549,0.604017,0.920565,0.645812,0.944324,0.640537],[0.895802,0.607673,0.920565,0.645812,0.910549,0.604017],[0.895802,0.607673,0.897754,0.648381,0.920565,0.645812],[0.881665,0.607744,0.897754,0.648381,0.895802,0.607673],[0.881665,0.607744,0.877154,0.647826,0.897754,0.648381],[0.861754,0.613577,0.877154,0.647826,0.881665,0.607744],[0.861754,0.613577,0.856461,0.645688,0.877154,0.647826],[0.861754,0.613577,0.849323,0.614914,0.856461,0.645688],[0.865394,0.572350,0.849323,0.614914,0.861754,0.613577],[0.865394,0.572350,0.851636,0.573374,0.849323,0.614914],[0.851918,0.559687,0.851636,0.573374,0.865394,0.572350],[0.840429,0.559718,0.851636,0.573374,0.851918,0.559687],[0.840429,0.559718,0.838777,0.572735,0.851636,0.573374],[0.840429,0.559718,0.825002,0.559703,0.838777,0.572735],[0.840429,0.559718,0.827193,0.533245,0.825002,0.559703],[0.841922,0.533252,0.827193,0.533245,0.840429,0.559718],[0.841922,0.533252,0.840429,0.559718,0.851582,0.533236],[0.851582,0.533236,0.840429,0.559718,0.851918,0.559687],[0.863173,0.532895,0.851582,0.533236,0.851918,0.559687],[0.863173,0.532895,0.851918,0.559687,0.864651,0.559005],[0.864651,0.559005,0.851918,0.559687,0.865394,0.572350],[0.864651,0.559005,0.865394,0.572350,0.879861,0.569529],[0.879861,0.569529,0.865394,0.572350,0.861754,0.613577],[0.879861,0.569529,0.861754,0.613577,0.881665,0.607744],[0.879861,0.569529,0.881665,0.607744,0.895140,0.571925],[0.881665,0.607744,0.895802,0.607673,0.895140,0.571925],[0.895140,0.571925,0.895802,0.607673,0.910549,0.604017],[0.895140,0.571925,0.910549,0.604017,0.906389,0.565126],[0.906389,0.565126,0.910549,0.604017,0.919833,0.587894],[0.910549,0.604017,0.939910,0.611412,0.919833,0.587894],[0.919833,0.587894,0.939910,0.611412,0.950104,0.585449],[0.919833,0.587894,0.950104,0.585449,0.934406,0.571403],[0.919833,0.587894,0.934406,0.571403,0.920691,0.561797],[0.906389,0.565126,0.919833,0.587894,0.920691,0.561797],[0.906389,0.565126,0.920691,0.561797,0.916978,0.553359],[0.903886,0.555444,0.906389,0.565126,0.916978,0.553359],[0.892546,0.556357,0.906389,0.565126,0.903886,0.555444],[0.892546,0.556357,0.895140,0.571925,0.906389,0.565126],[0.878601,0.558002,0.895140,0.571925,0.892546,0.556357],[0.878601,0.558002,0.879861,0.569529,0.895140,0.571925],[0.878601,0.558002,0.864651,0.559005,0.879861,0.569529],[0.827193,0.533245,0.806694,0.557253,0.825002,0.559703],[0.827193,0.533245,0.810045,0.532019,0.806694,0.557253],[0.810045,0.532019,0.785509,0.551982,0.806694,0.557253],[0.788828,0.529384,0.785509,0.551982,0.810045,0.532019],[0.774519,0.524664,0.785509,0.551982,0.788828,0.529384],[0.806694,0.557253,0.785509,0.551982,0.804877,0.567113],[0.804877,0.567113,0.785509,0.551982,0.778954,0.557835],[0.804877,0.567113,0.778954,0.557835,0.773344,0.599086],[0.778954,0.557835,0.767090,0.566215,0.773344,0.599086],[0.767090,0.566215,0.753045,0.605600,0.773344,0.599086],[0.767090,0.566215,0.747760,0.579444,0.753045,0.605600],[0.773344,0.599086,0.753045,0.605600,0.777280,0.635512],[0.777280,0.635512,0.753045,0.605600,0.758004,0.629942],[0.753045,0.605600,0.732329,0.619920,0.758004,0.629942],[0.732329,0.619920,0.744729,0.630581,0.758004,0.629942],[0.758004,0.629942,0.744729,0.630581,0.743835,0.655717],[0.953189,0.640268,0.952908,0.667345,0.960494,0.666419],[0.944324,0.640537,0.952908,0.667345,0.953189,0.640268],[0.938718,0.673495,0.952908,0.667345,0.944324,0.640537],[0.938718,0.673495,0.953629,0.669675,0.952908,0.667345],[0.938718,0.673495,0.939946,0.675733,0.953629,0.669675],[0.938718,0.673495,0.931537,0.676867,0.939946,0.675733],[0.920565,0.645812,0.931537,0.676867,0.938718,0.673495],[0.920565,0.645812,0.924017,0.659049,0.931537,0.676867],[0.920565,0.645812,0.918580,0.675509,0.924017,0.659049],[0.904603,0.678522,0.918580,0.675509,0.920565,0.645812],[0.904603,0.678522,0.918600,0.677928,0.918580,0.675509],[0.904603,0.678522,0.905093,0.680994,0.918600,0.677928],[0.904603,0.678522,0.898425,0.679798,0.905093,0.680994],[0.897754,0.648381,0.898425,0.679798,0.904603,0.678522],[0.897754,0.648381,0.896814,0.667893,0.898425,0.679798],[0.897754,0.648381,0.889745,0.676836,0.896814,0.667893],[0.877706,0.674161,0.889745,0.676836,0.897754,0.648381],[0.877706,0.674161,0.889094,0.679336,0.889745,0.676836],[0.877706,0.674161,0.877560,0.676690,0.889094,0.679336],[0.877706,0.674161,0.870801,0.674790,0.877560,0.676690],[0.877154,0.647826,0.870801,0.674790,0.877706,0.674161],[0.877154,0.647826,0.873203,0.660091,0.870801,0.674790],[0.877154,0.647826,0.863459,0.664861,0.873203,0.660091],[0.851400,0.661540,0.863459,0.664861,0.877154,0.647826],[0.851400,0.661540,0.861677,0.667422,0.863459,0.664861],[0.851400,0.661540,0.850622,0.663816,0.861677,0.667422],[0.851400,0.661540,0.841743,0.660241,0.850622,0.663816],[0.856461,0.645688,0.841743,0.660241,0.851400,0.661540],[0.856461,0.645688,0.845291,0.643793,0.841743,0.660241],[0.849323,0.614914,0.845291,0.643793,0.856461,0.645688],[0.835203,0.612512,0.845291,0.643793,0.849323,0.614914],[0.835203,0.612512,0.832307,0.642045,0.845291,0.643793],[0.835203,0.612512,0.816288,0.606763,0.832307,0.642045],[0.838777,0.572735,0.816288,0.606763,0.835203,0.612512],[0.838777,0.572735,0.822848,0.571460,0.816288,0.606763],[0.838777,0.572735,0.825002,0.559703,0.822848,0.571460],[0.825002,0.559703,0.806694,0.557253,0.822848,0.571460],[0.822848,0.571460,0.806694,0.557253,0.804877,0.567113],[0.822848,0.571460,0.804877,0.567113,0.797969,0.602435],[0.804877,0.567113,0.773344,0.599086,0.797969,0.602435],[0.797969,0.602435,0.773344,0.599086,0.797158,0.638879],[0.797158,0.638879,0.773344,0.599086,0.777280,0.635512],[0.797158,0.638879,0.777280,0.635512,0.774073,0.665762],[0.777280,0.635512,0.770329,0.666049,0.774073,0.665762],[0.777280,0.635512,0.776691,0.638810,0.770329,0.666049],[0.777280,0.635512,0.764492,0.663708,0.767844,0.665216],[0.777280,0.635512,0.749596,0.657300,0.764492,0.663708],[0.758004,0.629942,0.749596,0.657300,0.777280,0.635512],[0.758004,0.629942,0.743835,0.655717,0.749596,0.657300],[0.743835,0.655717,0.749254,0.659855,0.749596,0.657300],[0.743835,0.655717,0.741987,0.657639,0.749254,0.659855],[0.960494,0.666419,0.952908,0.667345,0.961101,0.668763],[0.952908,0.667345,0.953629,0.669675,0.961101,0.668763],[0.961101,0.668763,0.953629,0.669675,0.960397,0.692258],[0.949134,0.696185,0.960397,0.692258,0.953629,0.669675],[0.949134,0.696185,0.961060,0.694651,0.960397,0.692258],[0.949134,0.696185,0.950119,0.698480,0.961060,0.694651],[0.949134,0.696185,0.942679,0.698947,0.950119,0.698480],[0.939946,0.675733,0.942679,0.698947,0.949134,0.696185],[0.939946,0.675733,0.932481,0.678870,0.942679,0.698947],[0.931537,0.676867,0.932481,0.678870,0.939946,0.675733],[0.764492,0.663708,0.767854,0.668096,0.767844,0.665216],[0.764492,0.663708,0.762541,0.665625,0.767854,0.668096],[0.749596,0.657300,0.762541,0.665625,0.764492,0.663708],[0.762541,0.665625,0.749596,0.657300,0.749254,0.659855],[0.749254,0.659855,0.741961,0.681579,0.762541,0.665625],[0.749254,0.659855,0.737206,0.680638,0.741961,0.681579],[0.741987,0.657639,0.737206,0.680638,0.749254,0.659855],[0.960397,0.692258,0.966383,0.690897,0.961101,0.668763],[0.960397,0.692258,0.966864,0.693364,0.966383,0.690897],[0.960397,0.692258,0.961060,0.694651,0.966864,0.693364],[0.966130,0.714647,0.966864,0.693364,0.961060,0.694651],[0.966130,0.714647,0.970574,0.717272,0.966864,0.693364],[0.956433,0.722397,0.970574,0.717272,0.966130,0.714647],[0.744333,0.706859,0.731682,0.706731,0.745408,0.712357],[0.744333,0.706859,0.736782,0.703885,0.731682,0.706731],[0.744333,0.706859,0.752787,0.687792,0.736782,0.703885],[0.752787,0.687792,0.744333,0.706859,0.745408,0.712357],[0.758268,0.691386,0.752787,0.687792,0.745408,0.712357],[0.754770,0.686158,0.752787,0.687792,0.758268,0.691386],[0.752787,0.687792,0.754770,0.686158,0.741961,0.681579],[0.762541,0.665625,0.741961,0.681579,0.754770,0.686158],[0.762541,0.665625,0.754770,0.686158,0.758447,0.688450],[0.758447,0.688450,0.754770,0.686158,0.758268,0.691386],[0.942679,0.698947,0.943931,0.701226,0.950119,0.698480],[0.950119,0.698480,0.943931,0.701226,0.956433,0.722397],[0.950119,0.698480,0.956433,0.722397,0.957948,0.717657],[0.957948,0.717657,0.956433,0.722397,0.966130,0.714647],[0.957948,0.717657,0.966130,0.714647,0.961060,0.694651],[0.957948,0.717657,0.961060,0.694651,0.950119,0.698480],[0.762541,0.665625,0.758447,0.688450,0.767854,0.668096],[0.752787,0.687792,0.741961,0.681579,0.742237,0.684108],[0.737206,0.680638,0.742237,0.684108,0.741961,0.681579],[0.737206,0.680638,0.735690,0.682938,0.742237,0.684108],[0.735690,0.682938,0.731682,0.706731,0.742237,0.684108],[0.742237,0.684108,0.731682,0.706731,0.736782,0.703885],[0.742237,0.684108,0.736782,0.703885,0.752787,0.687792],[0.939946,0.675733,0.949134,0.696185,0.953629,0.669675],[0.918580,0.675509,0.926114,0.674392,0.924017,0.659049],[0.918580,0.675509,0.926284,0.676422,0.926114,0.674392],[0.918580,0.675509,0.918600,0.677928,0.926284,0.676422],[0.918600,0.677928,0.920462,0.701593,0.926284,0.676422],[0.908810,0.703079,0.920462,0.701593,0.918600,0.677928],[0.908810,0.703079,0.920626,0.704058,0.920462,0.701593],[0.908810,0.703079,0.909250,0.705498,0.920626,0.704058],[0.908810,0.703079,0.902026,0.704514,0.909250,0.705498],[0.905093,0.680994,0.902026,0.704514,0.908810,0.703079],[0.905093,0.680994,0.898684,0.681613,0.902026,0.704514],[0.898425,0.679798,0.898684,0.681613,0.905093,0.680994],[0.791026,0.670928,0.787973,0.669830,0.791077,0.673677],[0.797158,0.638879,0.787973,0.669830,0.791026,0.670928],[0.797158,0.638879,0.774073,0.665762,0.787973,0.669830],[0.787973,0.669830,0.774073,0.665762,0.786758,0.672084],[0.786758,0.672084,0.774073,0.665762,0.774083,0.668270],[0.770329,0.666049,0.774083,0.668270,0.774073,0.665762],[0.770329,0.666049,0.769489,0.668658,0.774083,0.668270],[0.769489,0.668658,0.766047,0.692481,0.774083,0.668270],[0.920462,0.701593,0.927581,0.700860,0.926284,0.676422],[0.920462,0.701593,0.927522,0.703526,0.927581,0.700860],[0.920626,0.704058,0.927522,0.703526,0.920462,0.701593],[0.921779,0.725328,0.927522,0.703526,0.920626,0.704058],[0.927522,0.703526,0.921779,0.725328,0.925130,0.729715],[0.910802,0.731138,0.925130,0.729715,0.921779,0.725328],[0.775597,0.716478,0.762220,0.718623,0.779989,0.721960],[0.775597,0.716478,0.768663,0.715103,0.762220,0.718623],[0.781055,0.696271,0.768663,0.715103,0.775597,0.716478],[0.781055,0.696271,0.770515,0.695175,0.768663,0.715103],[0.781055,0.696271,0.770276,0.691868,0.770515,0.695175],[0.781055,0.696271,0.782378,0.694245,0.770276,0.691868],[0.785971,0.698766,0.782378,0.694245,0.781055,0.696271],[0.785823,0.695904,0.782378,0.694245,0.785971,0.698766],[0.786758,0.672084,0.782378,0.694245,0.785823,0.695904],[0.786758,0.672084,0.770276,0.691868,0.782378,0.694245],[0.786758,0.672084,0.774083,0.668270,0.770276,0.691868],[0.774083,0.668270,0.766047,0.692481,0.770276,0.691868],[0.766047,0.692481,0.770515,0.695175,0.770276,0.691868],[0.766047,0.692481,0.765167,0.695054,0.770515,0.695175],[0.765167,0.695054,0.762220,0.718623,0.770515,0.695175],[0.770515,0.695175,0.762220,0.718623,0.768663,0.715103],[0.791077,0.673677,0.786758,0.672084,0.785823,0.695904],[0.787973,0.669830,0.786758,0.672084,0.791077,0.673677],[0.909250,0.705498,0.902026,0.704514,0.902655,0.707090],[0.909250,0.705498,0.902655,0.707090,0.910802,0.731138],[0.785971,0.698766,0.781055,0.696271,0.779989,0.721960],[0.781055,0.696271,0.775597,0.716478,0.779989,0.721960],[0.909250,0.705498,0.910802,0.731138,0.913244,0.725852],[0.913244,0.725852,0.910802,0.731138,0.921779,0.725328],[0.920626,0.704058,0.913244,0.725852,0.921779,0.725328],[0.909250,0.705498,0.913244,0.725852,0.920626,0.704058],[0.896814,0.667893,0.889745,0.676836,0.894703,0.679213],[0.889745,0.676836,0.894349,0.681006,0.894703,0.679213],[0.889745,0.676836,0.889094,0.679336,0.894349,0.681006],[0.889094,0.679336,0.883996,0.700765,0.894349,0.681006],[0.874436,0.698882,0.883996,0.700765,0.889094,0.679336],[0.874436,0.698882,0.883330,0.703146,0.883996,0.700765],[0.874160,0.701327,0.883330,0.703146,0.874436,0.698882],[0.874160,0.701327,0.872675,0.718902,0.883330,0.703146],[0.874160,0.701327,0.868285,0.722640,0.872675,0.718902],[0.874160,0.701327,0.866275,0.701211,0.868285,0.722640],[0.874160,0.701327,0.866378,0.698686,0.866275,0.701211],[0.874436,0.698882,0.866378,0.698686,0.874160,0.701327],[0.877560,0.676690,0.866378,0.698686,0.874436,0.698882],[0.877560,0.676690,0.870459,0.676715,0.866378,0.698686],[0.877560,0.676690,0.870801,0.674790,0.870459,0.676715],[0.816926,0.668756,0.813294,0.667672,0.817912,0.671211],[0.815656,0.637957,0.813294,0.667672,0.816926,0.668756],[0.815656,0.637957,0.798161,0.667069,0.813294,0.667672],[0.815656,0.637957,0.797158,0.638879,0.798161,0.667069],[0.815656,0.637957,0.797969,0.602435,0.797158,0.638879],[0.816288,0.606763,0.797969,0.602435,0.815656,0.637957],[0.822848,0.571460,0.797969,0.602435,0.816288,0.606763],[0.832307,0.642045,0.816288,0.606763,0.815656,0.637957],[0.832307,0.642045,0.815656,0.637957,0.823109,0.660926],[0.815656,0.637957,0.820524,0.663632,0.823109,0.660926],[0.815656,0.637957,0.816882,0.650594,0.820524,0.663632],[0.815656,0.637957,0.816926,0.668756,0.816882,0.650594],[0.873203,0.660091,0.863459,0.664861,0.867742,0.670206],[0.863459,0.664861,0.866684,0.672041,0.867742,0.670206],[0.863459,0.664861,0.861677,0.667422,0.866684,0.672041],[0.861677,0.667422,0.853261,0.682631,0.866684,0.672041],[0.861677,0.667422,0.845295,0.678461,0.853261,0.682631],[0.850622,0.663816,0.845295,0.678461,0.861677,0.667422],[0.850622,0.663816,0.838700,0.677805,0.845295,0.678461],[0.850622,0.663816,0.841283,0.662631,0.838700,0.677805],[0.850622,0.663816,0.841743,0.660241,0.841283,0.662631],[0.841743,0.660241,0.832002,0.660715,0.841283,0.662631],[0.841743,0.660241,0.832307,0.642045,0.832002,0.660715],[0.845291,0.643793,0.832307,0.642045,0.841743,0.660241],[0.832307,0.642045,0.823109,0.660926,0.832002,0.660715],[0.832002,0.660715,0.823109,0.660926,0.832028,0.663217],[0.832028,0.663217,0.823109,0.660926,0.824318,0.663006],[0.820524,0.663632,0.824318,0.663006,0.823109,0.660926],[0.820524,0.663632,0.820313,0.666482,0.824318,0.663006],[0.820313,0.666482,0.822447,0.681162,0.824318,0.663006],[0.866684,0.672041,0.853261,0.682631,0.858454,0.685551],[0.853261,0.682631,0.857058,0.687593,0.858454,0.685551],[0.853261,0.682631,0.852076,0.684812,0.857058,0.687593],[0.845295,0.678461,0.852076,0.684812,0.853261,0.682631],[0.845295,0.678461,0.844467,0.680798,0.852076,0.684812],[0.845295,0.678461,0.838700,0.677805,0.844467,0.680798],[0.844467,0.680798,0.838700,0.677805,0.838295,0.680312],[0.838700,0.677805,0.832613,0.678309,0.838295,0.680312],[0.832028,0.663217,0.832613,0.678309,0.838700,0.677805],[0.832028,0.663217,0.825077,0.679651,0.832613,0.678309],[0.832028,0.663217,0.824318,0.663006,0.825077,0.679651],[0.824318,0.663006,0.822447,0.681162,0.825077,0.679651],[0.822447,0.681162,0.825485,0.681522,0.825077,0.679651],[0.822447,0.681162,0.822079,0.683863,0.825485,0.681522],[0.822079,0.683863,0.825136,0.702435,0.825485,0.681522],[0.857058,0.687593,0.844736,0.698581,0.844883,0.703758],[0.852076,0.684812,0.844736,0.698581,0.857058,0.687593],[0.852076,0.684812,0.839260,0.695890,0.844736,0.698581],[0.844467,0.680798,0.839260,0.695890,0.852076,0.684812],[0.844467,0.680798,0.835182,0.700569,0.839260,0.695890],[0.844467,0.680798,0.838295,0.680312,0.835182,0.700569],[0.838295,0.680312,0.832607,0.680735,0.835182,0.700569],[0.838295,0.680312,0.832613,0.678309,0.832607,0.680735],[0.832613,0.678309,0.825077,0.679651,0.832607,0.680735],[0.832607,0.680735,0.825077,0.679651,0.825485,0.681522],[0.832607,0.680735,0.825485,0.681522,0.827717,0.698022],[0.825485,0.681522,0.825136,0.702435,0.827717,0.698022],[0.831863,0.697522,0.827717,0.698022,0.825136,0.702435],[0.832607,0.680735,0.827717,0.698022,0.831863,0.697522],[0.832607,0.680735,0.831863,0.697522,0.835182,0.700569],[0.831863,0.697522,0.825136,0.702435,0.835182,0.700569],[0.835182,0.700569,0.844883,0.703758,0.844736,0.698581],[0.839260,0.695890,0.835182,0.700569,0.844736,0.698581],[0.832028,0.663217,0.838700,0.677805,0.841283,0.662631],[0.841283,0.662631,0.832002,0.660715,0.832028,0.663217],[0.797158,0.638879,0.794179,0.667408,0.798161,0.667069],[0.794179,0.667408,0.798861,0.669484,0.798161,0.667069],[0.794179,0.667408,0.793354,0.670034,0.798861,0.669484],[0.793354,0.670034,0.793432,0.692644,0.798861,0.669484],[0.883996,0.700765,0.890029,0.702262,0.894349,0.681006],[0.883996,0.700765,0.889264,0.704676,0.890029,0.702262],[0.883330,0.703146,0.889264,0.704676,0.883996,0.700765],[0.877922,0.719848,0.889264,0.704676,0.883330,0.703146],[0.877922,0.719848,0.880866,0.724169,0.889264,0.704676],[0.868285,0.722640,0.880866,0.724169,0.877922,0.719848],[0.807965,0.711940,0.795659,0.715767,0.810835,0.717103],[0.807965,0.711940,0.801325,0.711682,0.795659,0.715767],[0.810067,0.694209,0.801325,0.711682,0.807965,0.711940],[0.810067,0.694209,0.799414,0.693857,0.801325,0.711682],[0.810067,0.694209,0.798241,0.691633,0.799414,0.693857],[0.811189,0.692112,0.798241,0.691633,0.810067,0.694209],[0.811983,0.669803,0.798241,0.691633,0.811189,0.692112],[0.811983,0.669803,0.798861,0.669484,0.798241,0.691633],[0.811983,0.669803,0.798161,0.667069,0.798861,0.669484],[0.813294,0.667672,0.798161,0.667069,0.811983,0.669803],[0.813294,0.667672,0.811983,0.669803,0.817912,0.671211],[0.817912,0.671211,0.811983,0.669803,0.814471,0.693324],[0.811983,0.669803,0.811189,0.692112,0.814471,0.693324],[0.814471,0.693324,0.811189,0.692112,0.814963,0.696172],[0.814963,0.696172,0.811189,0.692112,0.810067,0.694209],[0.814963,0.696172,0.810067,0.694209,0.810835,0.717103],[0.810067,0.694209,0.807965,0.711940,0.810835,0.717103],[0.798861,0.669484,0.793432,0.692644,0.798241,0.691633],[0.793432,0.692644,0.799414,0.693857,0.798241,0.691633],[0.793432,0.692644,0.792550,0.695415,0.799414,0.693857],[0.792550,0.695415,0.795659,0.715767,0.799414,0.693857],[0.799414,0.693857,0.795659,0.715767,0.801325,0.711682],[0.868285,0.722640,0.877922,0.719848,0.872675,0.718902],[0.883330,0.703146,0.872675,0.718902,0.877922,0.719848],[0.877560,0.676690,0.874436,0.698882,0.889094,0.679336],[0.905093,0.680994,0.908810,0.703079,0.918600,0.677928],[0.838777,0.572735,0.835203,0.612512,0.849323,0.614914],[0.838777,0.572735,0.849323,0.614914,0.851636,0.573374],[0.856461,0.645688,0.851400,0.661540,0.877154,0.647826],[0.877154,0.647826,0.877706,0.674161,0.897754,0.648381],[0.897754,0.648381,0.904603,0.678522,0.920565,0.645812],[0.944324,0.640537,0.920565,0.645812,0.938718,0.673495],[-30.622080,-83.367462,-29.315384,-80.513290,-29.370056,-83.157234],[-30.794760,-83.643562,-28.910404,-80.645950,-29.466593,-83.518417],[30.792715,-85.366386,29.464312,-85.243790,29.039476,-82.992798],[0.993746,0.622669,0.984274,0.633885,0.987662,0.621613],[0.697346,0.598814,0.706796,0.607321,0.700495,0.611436],[0.706796,0.607321,0.697346,0.598814,0.704318,0.599518],[0.726683,0.604751,0.706796,0.607321,0.704318,0.599518],[0.700495,0.611436,0.706796,0.607321,0.726683,0.604751],[0.700495,0.611436,0.726683,0.604751,0.721644,0.614889],[0.721644,0.614889,0.726683,0.604751,0.725228,0.614673],[0.725228,0.614673,0.726683,0.604751,0.729349,0.606975],[0.729349,0.606975,0.726683,0.604751,0.722135,0.591479],[0.726683,0.604751,0.704318,0.599518,0.722135,0.591479],[0.697346,0.598814,0.722135,0.591479,0.704318,0.599518],[0.722135,0.591479,0.697346,0.598814,0.716945,0.584415],[0.716945,0.584415,0.723605,0.589397,0.722135,0.591479],[0.719612,0.583943,0.723605,0.589397,0.716945,0.584415],[0.719612,0.583943,0.747760,0.579444,0.723605,0.589397],[0.719612,0.583943,0.738857,0.565304,0.747760,0.579444],[0.969403,0.603813,0.961053,0.576407,0.978484,0.598368],[0.950104,0.585449,0.961053,0.576407,0.969403,0.603813],[0.950104,0.585449,0.945213,0.562298,0.961053,0.576407],[0.950104,0.585449,0.934406,0.571403,0.945213,0.562298],[0.934406,0.571403,0.950104,0.585449,0.919833,0.587894],[0.919833,0.587894,0.950104,0.585449,0.939910,0.611412],[0.950104,0.585449,0.962031,0.614461,0.939910,0.611412],[0.950104,0.585449,0.969403,0.603813,0.962031,0.614461],[0.962031,0.614461,0.969403,0.603813,0.964464,0.615349],[0.964464,0.615349,0.969403,0.603813,0.971180,0.605527],[0.969403,0.603813,0.978484,0.598368,0.971180,0.605527],[0.971180,0.605527,0.978484,0.598368,0.979968,0.600485],[0.971180,0.605527,0.979968,0.600485,0.987662,0.621613],[0.979968,0.600485,0.993746,0.622669,0.987662,0.621613],[0.971180,0.605527,0.987662,0.621613,0.982536,0.627607],[0.987662,0.621613,0.984274,0.633885,0.982536,0.627607],[0.964464,0.615349,0.982536,0.627607,0.984274,0.633885],[0.964464,0.615349,0.971180,0.605527,0.982536,0.627607],[0.964464,0.615349,0.984274,0.633885,0.961855,0.627013],[0.964464,0.615349,0.961855,0.627013,0.962031,0.614461],[0.962031,0.614461,0.961855,0.627013,0.959715,0.626606],[0.962031,0.614461,0.959715,0.626606,0.939910,0.611412],[0.939910,0.611412,0.959715,0.626606,0.950214,0.626251],[0.725228,0.614673,0.753045,0.605600,0.732329,0.619920],[0.725228,0.614673,0.729349,0.606975,0.753045,0.605600],[0.723605,0.589397,0.753045,0.605600,0.729349,0.606975],[0.723605,0.589397,0.747760,0.579444,0.753045,0.605600],[0.767090,0.566215,0.753045,0.605600,0.747760,0.579444],[0.767090,0.566215,0.773344,0.599086,0.753045,0.605600],[0.778954,0.557835,0.773344,0.599086,0.767090,0.566215],[0.804877,0.567113,0.773344,0.599086,0.778954,0.557835],[0.804877,0.567113,0.797969,0.602435,0.773344,0.599086],[0.822848,0.571460,0.797969,0.602435,0.804877,0.567113],[0.822848,0.571460,0.816288,0.606763,0.797969,0.602435],[0.838777,0.572735,0.816288,0.606763,0.822848,0.571460],[0.838777,0.572735,0.835203,0.612512,0.816288,0.606763],[0.849323,0.614914,0.835203,0.612512,0.838777,0.572735],[0.845291,0.643793,0.835203,0.612512,0.849323,0.614914],[0.845291,0.643793,0.832307,0.642045,0.835203,0.612512],[0.841743,0.660241,0.832307,0.642045,0.845291,0.643793],[0.841743,0.660241,0.832002,0.660715,0.832307,0.642045],[0.841743,0.660241,0.832028,0.663217,0.832002,0.660715],[0.841283,0.662631,0.832028,0.663217,0.841743,0.660241],[0.838700,0.677805,0.832028,0.663217,0.841283,0.662631],[0.838700,0.677805,0.832613,0.678309,0.832028,0.663217],[0.838700,0.677805,0.832607,0.680735,0.832613,0.678309],[0.838295,0.680312,0.832607,0.680735,0.838700,0.677805],[0.835182,0.700569,0.832607,0.680735,0.838295,0.680312],[0.835182,0.700569,0.831863,0.697522,0.832607,0.680735],[0.835182,0.700569,0.825136,0.702435,0.831863,0.697522],[0.844736,0.698581,0.844883,0.703758,0.835182,0.700569],[0.844883,0.703758,0.844736,0.698581,0.857058,0.687593],[0.844736,0.698581,0.852076,0.684812,0.857058,0.687593],[0.852076,0.684812,0.844736,0.698581,0.839260,0.695890],[0.839260,0.695890,0.844736,0.698581,0.835182,0.700569],[0.835182,0.700569,0.844467,0.680798,0.839260,0.695890],[0.835182,0.700569,0.838295,0.680312,0.844467,0.680798],[0.844467,0.680798,0.838295,0.680312,0.845295,0.678461],[0.845295,0.678461,0.838295,0.680312,0.838700,0.677805],[0.845295,0.678461,0.838700,0.677805,0.850622,0.663816],[0.838700,0.677805,0.841283,0.662631,0.850622,0.663816],[0.850622,0.663816,0.841283,0.662631,0.851400,0.661540],[0.851400,0.661540,0.841283,0.662631,0.841743,0.660241],[0.851400,0.661540,0.841743,0.660241,0.856461,0.645688],[0.856461,0.645688,0.841743,0.660241,0.845291,0.643793],[0.856461,0.645688,0.845291,0.643793,0.849323,0.614914],[0.861754,0.613577,0.856461,0.645688,0.849323,0.614914],[0.861754,0.613577,0.877154,0.647826,0.856461,0.645688],[0.861754,0.613577,0.881665,0.607744,0.877154,0.647826],[0.879861,0.569529,0.881665,0.607744,0.861754,0.613577],[0.879861,0.569529,0.895140,0.571925,0.881665,0.607744],[0.878601,0.558002,0.895140,0.571925,0.879861,0.569529],[0.878601,0.558002,0.892546,0.556357,0.895140,0.571925],[0.876422,0.532394,0.892546,0.556357,0.878601,0.558002],[0.876422,0.532394,0.890079,0.531571,0.892546,0.556357],[0.874243,0.506785,0.890079,0.531571,0.876422,0.532394],[0.874243,0.506785,0.887612,0.506785,0.890079,0.531571],[0.887612,0.506785,0.898713,0.506785,0.890079,0.531571],[0.898713,0.506785,0.901300,0.531115,0.890079,0.531571],[0.898713,0.506785,0.914541,0.530072,0.901300,0.531115],[0.898713,0.506785,0.912104,0.506785,0.914541,0.530072],[0.912104,0.506785,0.926248,0.527000,0.914541,0.530072],[0.924923,0.506785,0.926248,0.527000,0.912104,0.506785],[0.777815,0.506786,0.788828,0.529384,0.774519,0.524664],[0.792147,0.506786,0.788828,0.529384,0.777815,0.506786],[0.792147,0.506786,0.810045,0.532019,0.788828,0.529384],[0.813397,0.506786,0.810045,0.532019,0.792147,0.506786],[0.813397,0.506786,0.827193,0.533245,0.810045,0.532019],[0.829384,0.506786,0.827193,0.533245,0.813397,0.506786],[0.843415,0.506786,0.827193,0.533245,0.829384,0.506786],[0.843415,0.506786,0.841922,0.533252,0.827193,0.533245],[0.851245,0.506786,0.841922,0.533252,0.843415,0.506786],[0.851245,0.506786,0.851582,0.533236,0.841922,0.533252],[0.851245,0.506786,0.861696,0.506785,0.851582,0.533236],[0.861696,0.506785,0.863173,0.532895,0.851582,0.533236],[0.874243,0.506785,0.863173,0.532895,0.861696,0.506785],[0.874243,0.506785,0.876422,0.532394,0.863173,0.532895],[0.876422,0.532394,0.864651,0.559005,0.863173,0.532895],[0.878601,0.558002,0.864651,0.559005,0.876422,0.532394],[0.879861,0.569529,0.864651,0.559005,0.878601,0.558002],[0.879861,0.569529,0.865394,0.572350,0.864651,0.559005],[0.879861,0.569529,0.861754,0.613577,0.865394,0.572350],[0.865394,0.572350,0.861754,0.613577,0.849323,0.614914],[0.865394,0.572350,0.849323,0.614914,0.851636,0.573374],[0.851636,0.573374,0.849323,0.614914,0.838777,0.572735],[0.851636,0.573374,0.838777,0.572735,0.840429,0.559718],[0.840429,0.559718,0.838777,0.572735,0.825002,0.559703],[0.825002,0.559703,0.838777,0.572735,0.822848,0.571460],[0.825002,0.559703,0.822848,0.571460,0.806694,0.557253],[0.806694,0.557253,0.822848,0.571460,0.804877,0.567113],[0.806694,0.557253,0.804877,0.567113,0.785509,0.551982],[0.785509,0.551982,0.804877,0.567113,0.778954,0.557835],[0.762723,0.548137,0.785509,0.551982,0.778954,0.557835],[0.762723,0.548137,0.771222,0.542543,0.785509,0.551982],[0.920691,0.561797,0.927573,0.547215,0.931385,0.553651],[0.920691,0.561797,0.916978,0.553359,0.927573,0.547215],[0.916978,0.553359,0.920691,0.561797,0.906389,0.565126],[0.906389,0.565126,0.920691,0.561797,0.919833,0.587894],[0.920691,0.561797,0.934406,0.571403,0.919833,0.587894],[0.934406,0.571403,0.920691,0.561797,0.931385,0.553651],[0.934406,0.571403,0.931385,0.553651,0.945213,0.562298],[0.753145,0.552275,0.762723,0.548137,0.778954,0.557835],[0.753145,0.552275,0.778954,0.557835,0.767090,0.566215],[0.738857,0.565304,0.753145,0.552275,0.767090,0.566215],[0.738857,0.565304,0.767090,0.566215,0.747760,0.579444],[0.919833,0.587894,0.910549,0.604017,0.906389,0.565126],[0.919833,0.587894,0.939910,0.611412,0.910549,0.604017],[0.910549,0.604017,0.939910,0.611412,0.944324,0.640537],[0.939910,0.611412,0.953189,0.640268,0.944324,0.640537],[0.939910,0.611412,0.950214,0.626251,0.953189,0.640268],[0.732329,0.619920,0.758004,0.629942,0.744729,0.630581],[0.732329,0.619920,0.753045,0.605600,0.758004,0.629942],[0.753045,0.605600,0.777280,0.635512,0.758004,0.629942],[0.773344,0.599086,0.777280,0.635512,0.753045,0.605600],[0.773344,0.599086,0.797158,0.638879,0.777280,0.635512],[0.797969,0.602435,0.797158,0.638879,0.773344,0.599086],[0.797969,0.602435,0.815656,0.637957,0.797158,0.638879],[0.816288,0.606763,0.815656,0.637957,0.797969,0.602435],[0.816288,0.606763,0.832307,0.642045,0.815656,0.637957],[0.835203,0.612512,0.832307,0.642045,0.816288,0.606763],[0.832307,0.642045,0.823358,0.660850,0.815656,0.637957],[0.832307,0.642045,0.832002,0.660715,0.823358,0.660850],[0.832002,0.660715,0.824318,0.663006,0.823358,0.660850],[0.832002,0.660715,0.832028,0.663217,0.824318,0.663006],[0.832028,0.663217,0.825495,0.679614,0.824318,0.663006],[0.832028,0.663217,0.832613,0.678309,0.825495,0.679614],[0.825495,0.679614,0.832613,0.678309,0.825991,0.681728],[0.825991,0.681728,0.832613,0.678309,0.832607,0.680735],[0.825991,0.681728,0.832607,0.680735,0.827717,0.698022],[0.827717,0.698022,0.832607,0.680735,0.831863,0.697522],[0.825136,0.702435,0.827717,0.698022,0.831863,0.697522],[0.825136,0.702435,0.825991,0.681728,0.827717,0.698022],[0.825136,0.702435,0.822079,0.683863,0.825991,0.681728],[0.822079,0.683863,0.825495,0.679614,0.825991,0.681728],[0.822079,0.683863,0.822734,0.681200,0.825495,0.679614],[0.852076,0.684812,0.858454,0.685551,0.857058,0.687593],[0.852076,0.684812,0.853261,0.682631,0.858454,0.685551],[0.853261,0.682631,0.852076,0.684812,0.844467,0.680798],[0.852076,0.684812,0.839260,0.695890,0.844467,0.680798],[0.853261,0.682631,0.844467,0.680798,0.845295,0.678461],[0.861677,0.667422,0.853261,0.682631,0.845295,0.678461],[0.853261,0.682631,0.861677,0.667422,0.866684,0.672041],[0.861677,0.667422,0.867742,0.670206,0.866684,0.672041],[0.861677,0.667422,0.863459,0.664861,0.867742,0.670206],[0.850622,0.663816,0.863459,0.664861,0.861677,0.667422],[0.851400,0.661540,0.863459,0.664861,0.850622,0.663816],[0.877154,0.647826,0.863459,0.664861,0.851400,0.661540],[0.863459,0.664861,0.877154,0.647826,0.873203,0.660091],[0.877154,0.647826,0.870801,0.674790,0.873203,0.660091],[0.877706,0.674161,0.870801,0.674790,0.877154,0.647826],[0.877706,0.674161,0.870459,0.676715,0.870801,0.674790],[0.877560,0.676690,0.870459,0.676715,0.877706,0.674161],[0.866378,0.698686,0.870459,0.676715,0.877560,0.676690],[0.814549,0.693353,0.811983,0.669803,0.817912,0.671211],[0.814549,0.693353,0.811112,0.692083,0.811983,0.669803],[0.814549,0.693353,0.810067,0.694209,0.811112,0.692083],[0.814963,0.696172,0.810067,0.694209,0.814549,0.693353],[0.810835,0.717103,0.810067,0.694209,0.814963,0.696172],[0.810835,0.717103,0.807965,0.711940,0.810067,0.694209],[0.795659,0.715767,0.807965,0.711940,0.810835,0.717103],[0.795659,0.715767,0.801325,0.711682,0.807965,0.711940],[0.799414,0.693857,0.801325,0.711682,0.795659,0.715767],[0.799414,0.693857,0.810067,0.694209,0.801325,0.711682],[0.799414,0.693857,0.811112,0.692083,0.810067,0.694209],[0.798382,0.691604,0.811112,0.692083,0.799414,0.693857],[0.798382,0.691604,0.811983,0.669803,0.811112,0.692083],[0.798861,0.669484,0.811983,0.669803,0.798382,0.691604],[0.813218,0.667650,0.811983,0.669803,0.798861,0.669484],[0.817001,0.668779,0.811983,0.669803,0.813218,0.667650],[0.817912,0.671211,0.811983,0.669803,0.817001,0.668779],[0.817001,0.668779,0.813218,0.667650,0.815656,0.637957],[0.815656,0.637957,0.813218,0.667650,0.798302,0.667057],[0.813218,0.667650,0.798861,0.669484,0.798302,0.667057],[0.793354,0.670034,0.798302,0.667057,0.798861,0.669484],[0.793354,0.670034,0.794037,0.667420,0.798302,0.667057],[0.889094,0.679336,0.894703,0.679213,0.894349,0.681006],[0.889094,0.679336,0.889745,0.676836,0.894703,0.679213],[0.877560,0.676690,0.889745,0.676836,0.889094,0.679336],[0.877706,0.674161,0.889745,0.676836,0.877560,0.676690],[0.897754,0.648381,0.889745,0.676836,0.877706,0.674161],[0.889745,0.676836,0.897754,0.648381,0.896814,0.667893],[0.897754,0.648381,0.898425,0.679798,0.896814,0.667893],[0.904603,0.678522,0.898425,0.679798,0.897754,0.648381],[0.904603,0.678522,0.898684,0.681613,0.898425,0.679798],[0.905093,0.680994,0.898684,0.681613,0.904603,0.678522],[0.902026,0.704514,0.898684,0.681613,0.905093,0.680994],[0.785925,0.695954,0.786758,0.672084,0.791077,0.673677],[0.785925,0.695954,0.782276,0.694196,0.786758,0.672084],[0.785925,0.695954,0.781055,0.696271,0.782276,0.694196],[0.785971,0.698766,0.781055,0.696271,0.785925,0.695954],[0.779989,0.721960,0.781055,0.696271,0.785971,0.698766],[0.779989,0.721960,0.775597,0.716478,0.781055,0.696271],[0.762220,0.718623,0.775597,0.716478,0.779989,0.721960],[0.762220,0.718623,0.768663,0.715103,0.775597,0.716478],[0.770515,0.694225,0.768663,0.715103,0.762220,0.718623],[0.770515,0.694225,0.781055,0.696271,0.768663,0.715103],[0.770515,0.694225,0.782276,0.694196,0.781055,0.696271],[0.770439,0.691844,0.782276,0.694196,0.770515,0.694225],[0.786758,0.672084,0.782276,0.694196,0.770439,0.691844],[0.774083,0.668270,0.786758,0.672084,0.770439,0.691844],[0.787873,0.669794,0.786758,0.672084,0.774083,0.668270],[0.791126,0.670964,0.786758,0.672084,0.787873,0.669794],[0.791077,0.673677,0.786758,0.672084,0.791126,0.670964],[0.791126,0.670964,0.787873,0.669794,0.797158,0.638879],[0.797158,0.638879,0.787873,0.669794,0.774233,0.665750],[0.787873,0.669794,0.774083,0.668270,0.774233,0.665750],[0.769489,0.668658,0.774233,0.665750,0.774083,0.668270],[0.769489,0.668658,0.770169,0.666061,0.774233,0.665750],[0.918600,0.677928,0.926114,0.674392,0.926284,0.676422],[0.918600,0.677928,0.918580,0.675509,0.926114,0.674392],[0.905093,0.680994,0.918580,0.675509,0.918600,0.677928],[0.904603,0.678522,0.918580,0.675509,0.905093,0.680994],[0.920565,0.645812,0.918580,0.675509,0.904603,0.678522],[0.918580,0.675509,0.920565,0.645812,0.924017,0.659049],[0.931537,0.676867,0.924017,0.659049,0.920565,0.645812],[0.767926,0.665253,0.777280,0.635512,0.776691,0.638810],[0.767926,0.665253,0.764410,0.663671,0.777280,0.635512],[0.767926,0.665253,0.762541,0.665625,0.764410,0.663671],[0.767854,0.668096,0.762541,0.665625,0.767926,0.665253],[0.758534,0.688504,0.762541,0.665625,0.767854,0.668096],[0.758534,0.688504,0.754683,0.686104,0.762541,0.665625],[0.758534,0.688504,0.752787,0.687792,0.754683,0.686104],[0.758122,0.691093,0.752787,0.687792,0.758534,0.688504],[0.745408,0.712357,0.752787,0.687792,0.758122,0.691093],[0.745408,0.712357,0.744333,0.706859,0.752787,0.687792],[0.731682,0.706731,0.744333,0.706859,0.745408,0.712357],[0.731682,0.706731,0.736782,0.703885,0.744333,0.706859],[0.742237,0.684108,0.736782,0.703885,0.731682,0.706731],[0.742237,0.684108,0.752787,0.687792,0.736782,0.703885],[0.742237,0.684108,0.754683,0.686104,0.752787,0.687792],[0.742103,0.681607,0.754683,0.686104,0.742237,0.684108],[0.762541,0.665625,0.754683,0.686104,0.742103,0.681607],[0.750340,0.660040,0.762541,0.665625,0.742103,0.681607],[0.750340,0.660040,0.764410,0.663671,0.762541,0.665625],[0.749743,0.657340,0.764410,0.663671,0.750340,0.660040],[0.777280,0.635512,0.764410,0.663671,0.749743,0.657340],[0.777280,0.635512,0.749743,0.657340,0.758004,0.629942],[0.743688,0.655677,0.758004,0.629942,0.749743,0.657340],[0.743688,0.655677,0.744729,0.630581,0.758004,0.629942],[0.952908,0.667345,0.953189,0.640268,0.960494,0.666419],[0.952908,0.667345,0.944324,0.640537,0.953189,0.640268],[0.944324,0.640537,0.952908,0.667345,0.938718,0.673495],[0.938718,0.673495,0.952908,0.667345,0.939946,0.675733],[0.939946,0.675733,0.952908,0.667345,0.953629,0.669675],[0.953629,0.669675,0.952908,0.667345,0.960494,0.666419],[0.953629,0.669675,0.960494,0.666419,0.961101,0.668763],[0.741987,0.657639,0.743688,0.655677,0.749743,0.657340],[0.741987,0.657639,0.749743,0.657340,0.750340,0.660040],[0.737065,0.680610,0.741987,0.657639,0.750340,0.660040],[0.960397,0.692258,0.961101,0.668763,0.966383,0.690897],[0.960397,0.692258,0.953629,0.669675,0.961101,0.668763],[0.953629,0.669675,0.960397,0.692258,0.949134,0.696185],[0.960397,0.692258,0.950119,0.698480,0.949134,0.696185],[0.960397,0.692258,0.961060,0.694651,0.950119,0.698480],[0.961060,0.694651,0.960397,0.692258,0.966383,0.690897],[0.961060,0.694651,0.966383,0.690897,0.966864,0.693364],[0.735690,0.682938,0.737065,0.680610,0.742103,0.681607],[0.737065,0.680610,0.750340,0.660040,0.742103,0.681607],[0.735690,0.682938,0.742103,0.681607,0.742237,0.684108],[0.735690,0.682938,0.742237,0.684108,0.731682,0.706731],[0.966130,0.714647,0.966864,0.693364,0.970574,0.717272],[0.966130,0.714647,0.961060,0.694651,0.966864,0.693364],[0.961060,0.694651,0.966130,0.714647,0.957948,0.717657],[0.957948,0.717657,0.966130,0.714647,0.956433,0.722397],[0.966130,0.714647,0.970574,0.717272,0.956433,0.722397],[0.957948,0.717657,0.956433,0.722397,0.950119,0.698480],[0.956433,0.722397,0.943931,0.701226,0.950119,0.698480],[0.950119,0.698480,0.943931,0.701226,0.949134,0.696185],[0.949134,0.696185,0.943931,0.701226,0.942679,0.698947],[0.949134,0.696185,0.942679,0.698947,0.939946,0.675733],[0.942679,0.698947,0.932481,0.678870,0.939946,0.675733],[0.939946,0.675733,0.932481,0.678870,0.938718,0.673495],[0.938718,0.673495,0.932481,0.678870,0.931537,0.676867],[0.938718,0.673495,0.931537,0.676867,0.920565,0.645812],[0.920565,0.645812,0.944324,0.640537,0.938718,0.673495],[0.910549,0.604017,0.944324,0.640537,0.920565,0.645812],[0.895802,0.607673,0.910549,0.604017,0.920565,0.645812],[0.895140,0.571925,0.910549,0.604017,0.895802,0.607673],[0.906389,0.565126,0.910549,0.604017,0.895140,0.571925],[0.892546,0.556357,0.906389,0.565126,0.895140,0.571925],[0.892546,0.556357,0.903886,0.555444,0.906389,0.565126],[0.901300,0.531115,0.903886,0.555444,0.892546,0.556357],[0.901300,0.531115,0.916978,0.553359,0.903886,0.555444],[0.901300,0.531115,0.914541,0.530072,0.916978,0.553359],[0.916978,0.553359,0.914541,0.530072,0.927573,0.547215],[0.914541,0.530072,0.926248,0.527000,0.927573,0.547215],[0.771222,0.542543,0.774519,0.524664,0.785509,0.551982],[0.774519,0.524664,0.788828,0.529384,0.785509,0.551982],[0.788828,0.529384,0.806694,0.557253,0.785509,0.551982],[0.810045,0.532019,0.806694,0.557253,0.788828,0.529384],[0.810045,0.532019,0.825002,0.559703,0.806694,0.557253],[0.827193,0.533245,0.825002,0.559703,0.810045,0.532019],[0.827193,0.533245,0.840429,0.559718,0.825002,0.559703],[0.841922,0.533252,0.840429,0.559718,0.827193,0.533245],[0.851582,0.533236,0.840429,0.559718,0.841922,0.533252],[0.851918,0.559687,0.840429,0.559718,0.851582,0.533236],[0.851636,0.573374,0.840429,0.559718,0.851918,0.559687],[0.865394,0.572350,0.851636,0.573374,0.851918,0.559687],[0.865394,0.572350,0.851918,0.559687,0.864651,0.559005],[0.864651,0.559005,0.851918,0.559687,0.863173,0.532895],[0.863173,0.532895,0.851918,0.559687,0.851582,0.533236],[0.903886,0.555444,0.916978,0.553359,0.906389,0.565126],[0.890079,0.531571,0.901300,0.531115,0.892546,0.556357],[0.895140,0.571925,0.895802,0.607673,0.881665,0.607744],[0.881665,0.607744,0.895802,0.607673,0.897754,0.648381],[0.895802,0.607673,0.920565,0.645812,0.897754,0.648381],[0.897754,0.648381,0.920565,0.645812,0.904603,0.678522],[0.881665,0.607744,0.897754,0.648381,0.877154,0.647826],[0.877154,0.647826,0.897754,0.648381,0.877706,0.674161],[0.953629,0.669675,0.949134,0.696185,0.939946,0.675733],[0.961060,0.694651,0.957948,0.717657,0.950119,0.698480],[0.752787,0.687792,0.744333,0.706859,0.736782,0.703885],[0.918580,0.675509,0.924017,0.659049,0.926114,0.674392],[0.770169,0.666061,0.777280,0.635512,0.774233,0.665750],[0.797158,0.638879,0.774233,0.665750,0.777280,0.635512],[0.905093,0.680994,0.918600,0.677928,0.908810,0.703079],[0.918600,0.677928,0.920462,0.701593,0.908810,0.703079],[0.920462,0.701593,0.918600,0.677928,0.926284,0.676422],[0.920462,0.701593,0.926284,0.676422,0.927581,0.700860],[0.765884,0.692504,0.769489,0.668658,0.774083,0.668270],[0.765884,0.692504,0.774083,0.668270,0.770439,0.691844],[0.765167,0.695054,0.765884,0.692504,0.770439,0.691844],[0.920626,0.704058,0.927581,0.700860,0.927522,0.703526],[0.920626,0.704058,0.920462,0.701593,0.927581,0.700860],[0.920462,0.701593,0.920626,0.704058,0.909250,0.705498],[0.920626,0.704058,0.913244,0.725852,0.909250,0.705498],[0.920626,0.704058,0.921779,0.725328,0.913244,0.725852],[0.921779,0.725328,0.920626,0.704058,0.927522,0.703526],[0.921779,0.725328,0.927522,0.703526,0.925130,0.729715],[0.762220,0.718623,0.765167,0.695054,0.770515,0.694225],[0.765167,0.695054,0.770439,0.691844,0.770515,0.694225],[0.921779,0.725328,0.925130,0.729715,0.910802,0.731138],[0.913244,0.725852,0.921779,0.725328,0.910802,0.731138],[0.913244,0.725852,0.910802,0.731138,0.909250,0.705498],[0.910802,0.731138,0.902655,0.707090,0.909250,0.705498],[0.909250,0.705498,0.902655,0.707090,0.908810,0.703079],[0.908810,0.703079,0.902655,0.707090,0.902026,0.704514],[0.908810,0.703079,0.902026,0.704514,0.905093,0.680994],[0.920462,0.701593,0.909250,0.705498,0.908810,0.703079],[0.791126,0.670964,0.797158,0.638879,0.796722,0.642820],[0.889745,0.676836,0.896814,0.667893,0.894703,0.679213],[0.794037,0.667420,0.797158,0.638879,0.798302,0.667057],[0.815656,0.637957,0.798302,0.667057,0.797158,0.638879],[0.781055,0.696271,0.775597,0.716478,0.768663,0.715103],[0.877560,0.676690,0.889094,0.679336,0.874436,0.698882],[0.889094,0.679336,0.883996,0.700765,0.874436,0.698882],[0.883996,0.700765,0.889094,0.679336,0.894349,0.681006],[0.883996,0.700765,0.894349,0.681006,0.890029,0.702262],[0.793291,0.692674,0.793354,0.670034,0.798861,0.669484],[0.793291,0.692674,0.798861,0.669484,0.798382,0.691604],[0.793491,0.695204,0.793291,0.692674,0.798382,0.691604],[0.883330,0.703146,0.890029,0.702262,0.889264,0.704676],[0.883330,0.703146,0.883996,0.700765,0.890029,0.702262],[0.883996,0.700765,0.883330,0.703146,0.874160,0.701327],[0.883330,0.703146,0.872675,0.718902,0.874160,0.701327],[0.883330,0.703146,0.877922,0.719848,0.872675,0.718902],[0.877922,0.719848,0.883330,0.703146,0.889264,0.704676],[0.877922,0.719848,0.889264,0.704676,0.880866,0.724169],[0.795659,0.715767,0.793491,0.695204,0.799414,0.693857],[0.793491,0.695204,0.798382,0.691604,0.799414,0.693857],[0.877922,0.719848,0.880866,0.724169,0.868285,0.722640],[0.872675,0.718902,0.877922,0.719848,0.868285,0.722640],[0.874160,0.701327,0.872675,0.718902,0.868285,0.722640],[0.868285,0.722640,0.866275,0.701211,0.874160,0.701327],[0.874160,0.701327,0.866275,0.701211,0.874436,0.698882],[0.874436,0.698882,0.866275,0.701211,0.866378,0.698686],[0.874436,0.698882,0.866378,0.698686,0.877560,0.676690],[0.883996,0.700765,0.874160,0.701327,0.874436,0.698882],[0.817001,0.668779,0.815656,0.637957,0.816882,0.650594],[0.820627,0.663709,0.816882,0.650594,0.815656,0.637957],[0.863459,0.664861,0.873203,0.660091,0.867742,0.670206],[0.820627,0.663709,0.815656,0.637957,0.823358,0.660850],[0.820313,0.666482,0.820627,0.663709,0.823358,0.660850],[0.820313,0.666482,0.823358,0.660850,0.824318,0.663006],[0.822734,0.681200,0.820313,0.666482,0.824318,0.663006],[0.853261,0.682631,0.866684,0.672041,0.858454,0.685551],[0.822734,0.681200,0.824318,0.663006,0.825495,0.679614],[0.801325,0.711682,0.810067,0.694209,0.807965,0.711940],[0.856461,0.645688,0.877154,0.647826,0.851400,0.661540],[0.850622,0.663816,0.861677,0.667422,0.845295,0.678461],[0.729349,0.606975,0.722135,0.591479,0.723605,0.589397],[-22.076759,-53.249214,-21.650667,-56.049053,-22.844391,-56.488297],[-21.724340,-53.575508,-21.730633,-55.822567,-22.996489,-56.242767]], + + 'faces': [[0,1,2,0,0,1,2],[0,3,1,0,0,3,1],[3,0,4,0,3,0,4],[10,9,7,0,5,6,7],[10,11,9,0,5,8,6],[10,12,11,0,5,9,8],[12,10,13,0,9,5,10],[13,10,14,0,10,5,11],[10,7,14,0,5,7,11],[7,15,14,0,7,12,11],[15,7,4,0,12,7,4],[4,0,15,0,4,0,12],[15,0,16,0,12,0,13],[0,2,16,0,0,2,13],[2,17,16,0,2,14,13],[2,18,17,0,2,15,14],[2,19,18,0,2,16,15],[1,19,2,0,1,16,2],[56,55,11,0,17,18,8],[56,57,55,0,17,19,18],[56,58,57,0,17,20,19],[56,59,58,0,17,21,20],[12,59,56,0,9,21,17],[12,60,59,0,9,22,21],[12,13,60,0,9,10,22],[61,60,13,0,23,22,10],[61,62,60,0,23,24,22],[61,63,62,0,23,25,24],[63,61,64,0,25,23,26],[64,61,65,0,26,23,27],[65,61,13,0,27,23,10],[65,13,66,0,27,10,28],[13,14,66,0,10,11,28],[66,14,67,0,28,11,29],[14,15,67,0,11,12,29],[67,15,16,0,29,12,13],[67,16,68,0,29,13,30],[69,68,16,0,31,30,13],[70,68,69,0,32,30,31],[70,65,68,0,32,27,30],[64,65,70,0,26,27,32],[64,70,71,0,26,32,33],[70,69,71,0,32,31,33],[72,71,69,0,34,33,31],[73,71,72,0,35,33,34],[73,74,71,0,35,36,33],[74,73,75,0,36,35,37],[73,76,75,0,35,38,37],[77,76,73,0,39,38,35],[76,77,78,0,38,39,40],[77,79,78,0,39,41,40],[79,77,80,0,41,39,42],[77,72,80,0,39,34,42],[77,73,72,0,39,35,34],[80,72,81,0,42,34,43],[72,69,81,0,34,31,43],[69,82,81,0,31,44,43],[69,17,82,0,31,14,44],[69,16,17,0,31,13,14],[17,83,82,0,14,45,44],[17,84,83,0,14,46,45],[17,85,84,0,14,47,46],[17,86,85,0,14,48,47],[18,86,17,0,15,48,14],[18,87,86,0,15,49,48],[88,87,18,0,50,49,15],[88,89,87,0,50,51,49],[90,89,88,0,52,51,50],[91,89,90,0,53,51,52],[92,89,91,0,54,51,53],[92,93,89,0,54,55,51],[94,93,92,0,56,55,54],[94,95,93,0,56,57,55],[59,95,94,0,21,57,56],[96,95,59,0,58,57,21],[96,97,95,0,58,59,57],[96,98,97,0,58,60,59],[96,62,98,0,58,24,60],[62,96,60,0,24,58,22],[60,96,59,0,22,58,21],[62,99,98,0,24,61,60],[62,63,99,0,24,25,61],[63,100,99,0,25,62,61],[100,63,74,0,62,25,36],[63,64,74,0,25,26,36],[74,64,71,0,36,26,33],[75,100,74,0,37,62,36],[100,75,101,0,62,37,63],[101,75,102,0,63,37,64],[75,76,102,0,37,38,64],[76,103,102,0,38,65,64],[76,78,103,0,38,40,65],[103,78,104,0,65,40,66],[104,78,105,0,66,40,67],[78,106,105,0,40,68,67],[78,79,106,0,40,41,68],[79,107,106,0,41,69,68],[107,79,108,0,69,41,70],[79,109,108,0,41,71,70],[109,79,80,0,71,41,42],[109,80,110,0,71,42,72],[80,81,110,0,42,43,72],[81,111,110,0,43,73,72],[81,82,111,0,43,44,73],[82,112,111,0,44,74,73],[82,83,112,0,44,45,74],[112,83,113,0,74,45,75],[83,114,113,0,45,76,75],[83,115,114,0,45,77,76],[83,84,115,0,45,46,77],[84,116,115,0,46,78,77],[85,116,84,0,47,78,46],[85,117,116,0,47,79,78],[87,117,85,0,49,79,47],[87,118,117,0,49,80,79],[87,119,118,0,49,81,80],[87,120,119,0,49,82,81],[89,120,87,0,51,82,49],[93,120,89,0,55,82,51],[93,121,120,0,55,83,82],[95,121,93,0,57,83,55],[95,97,121,0,57,59,83],[97,122,121,0,59,84,83],[123,122,97,0,85,84,59],[123,124,122,0,85,86,84],[123,125,124,0,85,87,86],[123,126,125,0,85,88,87],[98,126,123,0,60,88,85],[99,126,98,0,61,88,60],[99,127,126,0,61,89,88],[99,100,127,0,61,62,89],[100,101,127,0,62,63,89],[127,101,128,0,89,63,90],[101,129,128,0,63,91,90],[101,102,129,0,63,64,91],[102,130,129,0,64,92,91],[102,131,130,0,64,93,92],[103,131,102,0,65,93,64],[103,132,131,0,65,94,93],[103,104,132,0,65,66,94],[104,133,132,0,66,95,94],[104,105,133,0,66,67,95],[105,134,133,0,67,96,95],[106,134,105,0,68,96,67],[106,135,134,0,68,97,96],[106,107,135,0,68,69,97],[135,107,136,0,97,69,98],[136,107,137,0,98,69,99],[107,108,137,0,69,70,99],[137,108,138,0,99,70,100],[108,139,138,0,70,101,100],[108,109,139,0,70,71,101],[109,140,139,0,71,102,101],[109,110,140,0,71,72,102],[110,141,140,0,72,103,102],[110,142,141,0,72,104,103],[110,111,142,0,72,73,104],[111,143,142,0,73,105,104],[111,112,143,0,73,74,105],[143,112,144,0,105,74,106],[112,113,144,0,74,75,106],[144,113,145,0,106,75,107],[113,146,145,0,75,108,107],[113,114,146,0,75,76,108],[114,147,146,0,76,109,108],[114,115,147,0,76,77,109],[115,148,147,0,77,110,109],[115,149,148,0,77,111,110],[116,149,115,0,78,111,77],[116,150,149,0,78,112,111],[117,150,116,0,79,112,78],[118,150,117,0,80,112,79],[118,151,150,0,80,113,112],[118,151,152,0,80,113,114],[153,151,118,0,115,113,80],[153,154,151,0,115,116,113],[155,154,153,0,117,116,115],[155,156,154,0,117,118,116],[157,156,155,0,119,118,117],[157,158,156,0,119,120,118],[159,158,157,0,121,120,119],[159,160,158,0,121,122,120],[161,160,159,0,123,122,121],[161,162,160,0,123,124,122],[161,163,162,0,123,125,124],[161,164,163,0,123,126,125],[165,164,161,0,127,126,123],[165,166,164,0,127,128,126],[167,166,165,0,129,128,127],[167,168,166,0,129,130,128],[169,168,167,0,131,130,129],[169,170,168,0,131,132,130],[171,170,169,0,133,132,131],[128,170,171,0,90,132,133],[128,172,170,0,90,134,132],[128,129,172,0,90,91,134],[129,173,172,0,91,135,134],[129,130,173,0,91,92,135],[130,174,173,0,92,136,135],[130,175,174,0,92,137,136],[130,131,175,0,92,93,137],[131,176,175,0,93,138,137],[131,132,176,0,93,94,138],[132,177,176,0,94,139,138],[132,133,177,0,94,95,139],[133,178,177,0,95,140,139],[133,179,178,0,95,141,140],[134,179,133,0,96,141,95],[180,179,134,0,142,141,96],[179,180,181,0,141,142,143],[180,182,181,0,142,144,143],[180,183,182,0,142,145,144],[184,183,180,0,146,145,142],[183,184,185,0,145,146,147],[184,136,185,0,146,98,147],[184,135,136,0,146,97,98],[135,184,134,0,97,146,96],[134,184,180,0,96,146,142],[185,136,186,0,147,98,148],[136,137,186,0,98,99,148],[186,137,187,0,148,99,149],[137,138,187,0,99,100,149],[138,188,187,0,100,150,149],[138,189,188,0,100,151,150],[139,189,138,0,101,151,100],[139,190,189,0,101,152,151],[140,190,139,0,102,152,101],[140,141,190,0,102,103,152],[141,191,190,0,103,153,152],[191,141,192,0,153,103,154],[142,192,141,0,104,154,103],[142,143,192,0,104,105,154],[143,193,192,0,105,155,154],[143,144,193,0,105,106,155],[193,144,194,0,155,106,156],[144,145,194,0,106,107,156],[194,145,195,0,156,107,157],[145,196,195,0,107,158,157],[145,146,196,0,107,108,158],[146,197,196,0,108,159,158],[146,147,197,0,108,109,159],[147,198,197,0,109,160,159],[147,148,198,0,109,110,160],[148,199,198,0,110,161,160],[148,149,199,0,110,111,161],[149,200,199,0,111,162,161],[149,201,200,0,111,163,162],[149,202,201,0,111,164,163],[150,202,149,0,112,164,111],[150,203,202,0,112,165,164],[151,203,150,0,113,165,112],[154,203,151,0,116,165,113],[154,204,203,0,116,166,165],[156,204,154,0,118,166,116],[156,205,204,0,118,167,166],[156,158,205,0,118,120,167],[158,206,205,0,120,168,167],[160,206,158,0,122,168,120],[160,207,206,0,122,169,168],[162,207,160,0,124,169,122],[162,208,207,0,124,170,169],[162,209,208,0,124,171,170],[163,209,162,0,125,171,124],[163,210,209,0,125,172,171],[211,210,163,0,173,172,125],[211,212,210,0,173,174,172],[213,212,211,0,175,174,173],[214,212,213,0,176,174,175],[214,215,212,0,176,177,174],[216,215,214,0,178,177,176],[216,217,215,0,178,179,177],[216,218,217,0,178,180,179],[219,218,216,0,181,180,178],[219,220,218,0,181,182,180],[221,220,219,0,183,182,181],[220,221,222,0,182,183,184],[221,223,222,0,183,185,184],[221,224,223,0,183,186,185],[224,221,225,0,186,183,187],[225,221,219,0,187,183,181],[225,219,226,0,187,181,188],[226,219,216,0,188,181,178],[226,216,214,0,188,178,176],[226,214,227,0,188,176,189],[227,214,213,0,189,176,175],[228,227,213,0,190,189,175],[229,227,228,0,191,189,190],[229,226,227,0,191,188,189],[229,230,226,0,191,192,188],[231,230,229,0,193,192,191],[231,232,230,0,193,194,192],[173,232,231,0,135,194,193],[173,174,232,0,135,136,194],[174,224,232,0,136,186,194],[174,175,224,0,136,137,186],[224,175,223,0,186,137,185],[175,233,223,0,137,195,185],[175,176,233,0,137,138,195],[176,234,233,0,138,196,195],[176,177,234,0,138,139,196],[177,235,234,0,139,197,196],[177,178,235,0,139,140,197],[178,193,235,0,140,155,197],[178,236,193,0,140,198,155],[237,236,178,0,199,198,140],[238,236,237,0,200,198,199],[236,238,239,0,198,200,201],[240,239,238,0,202,201,200],[240,241,239,0,202,203,201],[242,241,240,0,204,203,202],[242,243,241,0,204,205,203],[244,243,242,0,206,205,204],[244,245,243,0,206,207,205],[246,245,244,0,208,207,206],[246,247,245,0,208,209,207],[246,248,247,0,208,210,209],[249,248,246,0,211,210,208],[250,248,249,0,212,210,211],[250,251,248,0,212,213,210],[250,252,251,0,212,214,213],[250,253,252,0,212,215,214],[249,253,250,0,211,215,212],[254,253,249,0,216,215,211],[254,255,253,0,216,217,215],[256,255,254,0,218,217,216],[256,257,255,0,218,219,217],[256,258,257,0,218,220,219],[259,258,256,0,221,220,218],[259,260,258,0,221,222,220],[259,261,260,0,221,223,222],[261,259,262,0,223,221,224],[262,259,263,0,224,221,225],[259,256,263,0,221,218,225],[263,256,254,0,225,218,216],[263,254,264,0,225,216,226],[264,254,249,0,226,216,211],[249,246,264,0,211,208,226],[264,246,244,0,226,208,206],[264,244,265,0,226,206,227],[265,244,242,0,227,206,204],[265,242,266,0,227,204,228],[266,242,240,0,228,204,202],[266,240,267,0,228,202,229],[267,240,238,0,229,202,200],[267,238,181,0,229,200,143],[181,238,237,0,143,200,199],[179,181,237,0,141,143,199],[179,237,178,0,141,199,140],[181,182,267,0,143,144,229],[182,268,267,0,144,230,229],[182,269,268,0,144,231,230],[183,269,182,0,145,231,144],[269,183,270,0,231,145,232],[183,185,270,0,145,147,232],[270,185,271,0,232,147,233],[185,186,271,0,147,148,233],[271,186,272,0,233,148,234],[186,187,272,0,148,149,234],[187,273,272,0,149,235,234],[187,188,273,0,149,150,235],[188,274,273,0,150,236,235],[188,275,274,0,150,237,236],[189,275,188,0,151,237,150],[189,276,275,0,151,238,237],[190,276,189,0,152,238,151],[190,191,276,0,152,153,238],[191,236,276,0,153,198,238],[236,191,192,0,198,153,154],[236,192,193,0,198,154,155],[276,236,239,0,238,198,201],[276,239,241,0,238,201,203],[241,275,276,0,203,237,238],[243,275,241,0,205,237,203],[243,274,275,0,205,236,237],[245,274,243,0,207,236,205],[245,277,274,0,207,239,236],[247,277,245,0,209,239,207],[247,278,277,0,209,240,239],[279,278,247,0,241,240,209],[279,280,278,0,241,242,240],[279,281,280,0,241,243,242],[248,281,279,0,210,243,241],[248,282,281,0,210,244,243],[248,283,282,0,210,245,244],[251,283,248,0,213,245,210],[251,284,283,0,213,246,245],[251,252,284,0,213,214,246],[252,285,284,0,214,247,246],[286,285,252,0,248,247,214],[286,287,285,0,248,249,247],[286,288,287,0,248,250,249],[255,288,286,0,217,250,248],[255,257,288,0,217,219,250],[257,289,288,0,219,251,250],[258,289,257,0,220,251,219],[260,289,258,0,222,251,220],[260,290,289,0,222,252,251],[260,291,290,0,222,253,252],[261,291,260,0,223,253,222],[261,269,291,0,223,231,253],[269,261,268,0,231,223,230],[268,261,262,0,230,223,224],[268,262,266,0,230,224,228],[266,262,265,0,228,224,227],[262,263,265,0,224,225,227],[265,263,264,0,227,225,226],[267,268,266,0,229,230,228],[269,270,291,0,231,232,253],[291,270,292,0,253,232,254],[270,271,292,0,232,233,254],[292,271,293,0,254,233,255],[271,272,293,0,233,234,255],[272,294,293,0,234,256,255],[272,273,294,0,234,235,256],[273,277,294,0,235,239,256],[273,274,277,0,235,236,239],[294,277,278,0,256,239,240],[294,278,295,0,256,240,257],[295,278,280,0,257,240,242],[295,280,296,0,257,242,258],[296,280,297,0,258,242,259],[281,297,280,0,243,259,242],[281,298,297,0,243,260,259],[299,298,281,0,261,260,243],[299,300,298,0,261,262,260],[299,301,300,0,261,263,262],[302,301,299,0,264,263,261],[302,303,301,0,264,265,263],[302,304,303,0,264,266,265],[283,304,302,0,245,266,264],[283,284,304,0,245,246,266],[284,305,304,0,246,267,266],[285,305,284,0,247,267,246],[285,306,305,0,247,268,267],[285,287,306,0,247,249,268],[287,307,306,0,249,269,268],[287,308,307,0,249,270,269],[288,308,287,0,250,270,249],[288,289,308,0,250,251,270],[289,309,308,0,251,271,270],[310,309,289,0,272,271,251],[310,311,309,0,272,273,271],[296,311,310,0,258,273,272],[296,297,311,0,258,259,273],[311,297,312,0,273,259,274],[298,312,297,0,260,274,259],[298,313,312,0,260,275,274],[300,313,298,0,262,275,260],[300,314,313,0,262,276,275],[315,314,300,0,277,276,262],[315,316,314,0,277,278,276],[315,317,316,0,277,279,278],[315,318,317,0,277,280,279],[301,318,315,0,263,280,277],[301,303,318,0,263,265,280],[303,319,318,0,265,281,280],[320,319,303,0,282,281,265],[320,321,319,0,282,283,281],[320,322,321,0,282,284,283],[305,322,320,0,267,284,282],[305,306,322,0,267,268,284],[306,323,322,0,268,285,284],[306,307,323,0,268,269,285],[307,324,323,0,269,286,285],[325,324,307,0,287,286,269],[325,326,324,0,287,288,286],[327,326,325,0,289,288,287],[327,328,326,0,289,290,288],[327,312,328,0,289,274,290],[311,312,327,0,273,274,289],[311,327,309,0,273,289,271],[309,327,325,0,271,289,287],[309,325,308,0,271,287,270],[308,325,307,0,270,287,269],[313,328,312,0,275,290,274],[313,329,328,0,275,291,290],[314,329,313,0,276,291,275],[314,330,329,0,276,292,291],[314,316,330,0,276,278,292],[331,330,316,0,293,292,278],[331,332,330,0,293,294,292],[332,331,333,0,294,293,295],[331,334,333,0,293,296,295],[331,335,334,0,293,297,296],[331,316,335,0,293,278,297],[335,316,317,0,297,278,279],[336,335,317,0,298,297,279],[336,337,335,0,298,299,297],[336,338,337,0,298,300,299],[336,339,338,0,298,301,300],[340,339,336,0,302,301,298],[340,341,339,0,302,303,301],[319,341,340,0,281,303,302],[319,321,341,0,281,283,303],[321,342,341,0,283,304,303],[321,343,342,0,283,305,304],[322,343,321,0,284,305,283],[322,323,343,0,284,285,305],[323,344,343,0,285,306,305],[324,344,323,0,286,306,285],[324,345,344,0,286,307,306],[326,345,324,0,288,307,286],[326,346,345,0,288,308,307],[326,328,346,0,288,290,308],[329,346,328,0,291,308,290],[329,347,346,0,291,309,308],[330,347,329,0,292,309,291],[332,347,330,0,294,309,292],[332,348,347,0,294,310,309],[332,349,348,0,294,311,310],[332,333,349,0,294,295,311],[350,349,333,0,312,311,295],[350,351,349,0,312,313,311],[350,352,351,0,312,314,313],[350,353,352,0,312,315,314],[354,353,350,0,316,315,312],[355,353,354,0,317,315,316],[356,353,355,0,318,315,317],[356,352,353,0,318,314,315],[356,357,352,0,318,319,314],[356,358,357,0,318,320,319],[359,358,356,0,321,320,318],[344,358,359,0,306,320,321],[345,358,344,0,307,320,306],[345,360,358,0,307,322,320],[345,346,360,0,307,308,322],[347,360,346,0,309,322,308],[348,360,347,0,310,322,309],[357,360,348,0,319,322,310],[358,360,357,0,320,322,319],[348,351,357,0,310,313,319],[349,351,348,0,311,313,310],[351,352,357,0,313,314,319],[344,359,343,0,306,321,305],[343,359,342,0,305,321,304],[342,359,355,0,304,321,317],[355,359,356,0,317,321,318],[342,355,361,0,304,317,323],[355,354,361,0,317,316,323],[361,354,362,0,323,316,324],[362,354,350,0,324,316,312],[338,362,350,0,300,324,312],[339,362,338,0,301,324,300],[339,361,362,0,301,323,324],[339,341,361,0,301,303,323],[341,342,361,0,303,304,323],[338,350,337,0,300,312,299],[337,350,334,0,299,312,296],[334,350,333,0,296,312,295],[335,337,334,0,297,299,296],[319,340,318,0,281,302,280],[318,340,317,0,280,302,279],[336,317,340,0,298,279,302],[305,320,304,0,267,282,266],[304,320,303,0,266,282,265],[300,301,315,0,262,263,277],[363,296,310,0,325,258,272],[363,295,296,0,325,257,258],[293,295,363,0,255,257,325],[293,294,295,0,255,256,257],[292,293,363,0,254,255,325],[290,292,363,0,252,254,325],[291,292,290,0,253,254,252],[290,363,310,0,252,325,272],[290,310,289,0,252,272,251],[283,302,282,0,245,264,244],[302,299,282,0,264,261,244],[282,299,281,0,244,261,243],[255,286,253,0,217,248,215],[253,286,252,0,215,248,214],[248,279,247,0,210,241,209],[235,193,194,0,197,155,156],[235,194,364,0,197,156,326],[364,194,195,0,326,156,157],[364,195,365,0,326,157,327],[195,196,365,0,157,158,327],[196,366,365,0,158,328,327],[196,197,366,0,158,159,328],[197,367,366,0,159,329,328],[197,198,367,0,159,160,329],[198,368,367,0,160,330,329],[198,369,368,0,160,331,330],[198,199,369,0,160,161,331],[199,370,369,0,161,332,331],[199,200,370,0,161,162,332],[201,370,200,0,163,332,162],[201,371,370,0,163,333,332],[372,371,201,0,334,333,163],[372,373,371,0,334,335,333],[372,373,374,0,334,335,336],[372,375,373,0,334,337,335],[204,375,372,0,166,337,334],[204,205,375,0,166,167,337],[205,376,375,0,167,338,337],[205,206,376,0,167,168,338],[206,377,376,0,168,339,338],[206,378,377,0,168,340,339],[207,378,206,0,169,340,168],[207,379,378,0,169,341,340],[208,379,207,0,170,341,169],[208,380,379,0,170,342,341],[381,380,208,0,343,342,170],[381,382,380,0,343,344,342],[383,382,381,0,345,344,343],[383,384,382,0,345,346,344],[383,385,384,0,347,347,347],[386,385,383,0,348,349,345],[386,387,385,0,348,350,349],[386,388,387,0,348,351,350],[389,388,386,0,352,351,348],[389,390,388,0,352,353,351],[217,390,389,0,179,353,352],[217,391,390,0,179,354,353],[217,218,391,0,179,180,354],[218,392,391,0,180,355,354],[218,220,392,0,180,182,355],[392,220,393,0,355,182,356],[220,222,393,0,182,184,356],[393,222,394,0,356,184,357],[222,233,394,0,184,195,357],[223,233,222,0,185,195,184],[233,234,394,0,195,196,357],[394,234,395,0,357,196,358],[234,396,395,0,196,359,358],[234,364,396,0,196,326,359],[234,235,364,0,196,197,326],[364,365,396,0,326,327,359],[396,365,397,0,359,327,360],[365,366,397,0,327,328,360],[366,398,397,0,328,361,360],[366,367,398,0,328,329,361],[367,399,398,0,329,362,361],[367,368,399,0,329,330,362],[368,400,399,0,330,363,362],[368,401,400,0,330,364,363],[368,369,401,0,330,331,364],[369,402,401,0,331,365,364],[369,370,402,0,331,332,365],[370,371,402,0,332,333,365],[371,403,402,0,333,366,365],[371,373,403,0,333,335,366],[373,404,403,0,335,367,366],[373,404,405,0,335,367,368],[373,406,404,0,335,369,367],[375,406,373,0,337,369,335],[375,376,406,0,337,338,369],[376,377,406,0,338,339,369],[377,407,406,0,339,370,369],[377,408,407,0,339,371,370],[378,408,377,0,340,371,339],[378,409,408,0,340,372,371],[379,409,378,0,341,372,340],[379,410,409,0,341,373,372],[380,410,379,0,342,373,341],[380,411,410,0,342,374,373],[382,411,380,0,344,374,342],[382,412,411,0,344,375,374],[384,412,382,0,346,375,344],[384,413,412,0,346,376,375],[414,413,384,0,377,376,346],[414,415,413,0,377,378,376],[414,416,415,0,377,379,378],[417,416,414,0,380,379,377],[417,418,416,0,380,381,379],[419,418,417,0,382,381,380],[420,418,419,0,383,381,382],[418,420,421,0,381,383,384],[420,422,421,0,383,385,384],[420,423,422,0,383,386,385],[424,423,420,0,387,386,383],[424,425,423,0,387,388,386],[426,425,424,0,389,388,387],[426,427,425,0,389,390,388],[426,428,427,0,389,391,390],[429,428,426,0,392,391,389],[429,430,428,0,392,393,391],[390,430,429,0,353,393,392],[390,391,430,0,353,354,393],[391,431,430,0,354,394,393],[391,392,431,0,354,355,394],[431,392,432,0,394,355,395],[392,393,432,0,355,356,395],[432,393,433,0,395,356,396],[393,394,433,0,356,357,396],[433,394,395,0,396,357,358],[433,395,434,0,396,358,397],[434,395,435,0,397,358,398],[395,396,435,0,358,359,398],[435,396,397,0,398,359,360],[435,397,436,0,398,360,399],[398,436,397,0,361,399,360],[398,437,436,0,361,400,399],[399,437,398,0,362,400,361],[399,438,437,0,362,401,400],[400,438,399,0,363,401,362],[400,439,438,0,363,402,401],[400,440,439,0,363,403,402],[401,440,400,0,364,403,363],[401,441,440,0,364,404,403],[402,441,401,0,365,404,364],[403,441,402,0,366,404,365],[403,442,441,0,366,405,404],[404,442,403,0,367,405,366],[404,443,442,0,367,406,405],[407,443,404,0,370,406,367],[407,444,443,0,370,407,406],[408,444,407,0,371,407,370],[408,445,444,0,371,408,407],[409,445,408,0,372,408,371],[409,446,445,0,372,409,408],[410,446,409,0,373,409,372],[410,447,446,0,373,410,409],[411,447,410,0,374,410,373],[412,447,411,0,375,410,374],[412,448,447,0,375,411,410],[413,448,412,0,376,411,375],[413,449,448,0,376,412,411],[415,449,413,0,378,412,376],[415,450,449,0,378,413,412],[451,450,415,0,414,413,378],[451,452,450,0,414,415,413],[453,452,451,0,416,415,414],[454,452,453,0,417,415,416],[454,455,452,0,417,418,415],[455,456,452,0,418,419,415],[452,456,457,0,415,419,420],[456,458,457,0,419,421,420],[457,458,459,0,420,421,422],[458,460,459,0,421,423,422],[459,460,461,0,422,423,424],[460,462,461,0,423,425,424],[461,462,463,0,424,425,426],[463,462,464,0,426,425,427],[464,462,465,0,427,425,428],[464,465,466,0,427,428,429],[466,465,467,0,429,428,430],[466,467,468,0,429,430,431],[469,466,468,0,432,429,431],[470,466,469,0,433,429,432],[470,464,466,0,433,427,429],[471,464,470,0,434,427,433],[471,463,464,0,434,426,427],[472,463,471,0,435,426,434],[461,463,472,0,424,426,435],[461,472,473,0,424,435,436],[473,472,474,0,436,435,437],[474,472,471,0,437,435,434],[474,471,475,0,437,434,438],[475,471,470,0,438,434,433],[475,470,476,0,438,433,439],[476,470,477,0,439,433,440],[477,470,478,0,440,433,441],[478,470,469,0,441,433,432],[478,469,479,0,441,432,442],[479,469,480,0,442,432,443],[469,468,480,0,432,431,443],[481,479,480,0,444,442,443],[481,482,479,0,444,445,442],[481,483,482,0,444,446,445],[484,483,481,0,447,446,444],[484,485,483,0,447,448,446],[486,485,484,0,449,448,447],[486,487,485,0,449,450,448],[488,487,486,0,451,450,449],[488,489,487,0,451,452,450],[490,489,488,0,453,452,451],[490,491,489,0,453,454,452],[492,491,490,0,455,454,453],[492,493,491,0,455,456,454],[494,493,492,0,457,456,455],[494,495,493,0,457,458,456],[431,495,494,0,394,458,457],[431,432,495,0,394,395,458],[495,432,496,0,458,395,459],[432,433,496,0,395,396,459],[496,433,434,0,459,396,397],[496,434,497,0,459,397,460],[497,434,498,0,460,397,461],[434,435,498,0,397,398,461],[498,435,436,0,461,398,399],[498,436,499,0,461,399,462],[437,499,436,0,400,462,399],[437,500,499,0,400,463,462],[438,500,437,0,401,463,400],[438,501,500,0,401,464,463],[439,501,438,0,402,464,401],[439,502,501,0,402,465,464],[439,503,502,0,402,466,465],[440,503,439,0,403,466,402],[440,504,503,0,403,467,466],[441,504,440,0,404,467,403],[442,504,441,0,405,467,404],[442,505,504,0,405,468,467],[443,505,442,0,406,468,405],[443,506,505,0,406,469,468],[444,506,443,0,407,469,406],[444,507,506,0,407,470,469],[444,445,507,0,407,408,470],[445,508,507,0,408,471,470],[445,509,508,0,408,472,471],[446,509,445,0,409,472,408],[447,509,446,0,410,472,409],[448,509,447,0,411,472,410],[448,510,509,0,411,473,472],[449,510,448,0,412,473,411],[449,511,510,0,412,474,473],[450,511,449,0,413,474,412],[450,457,511,0,413,420,474],[452,457,450,0,415,420,413],[457,512,511,0,420,475,474],[457,459,512,0,420,422,475],[459,473,512,0,422,436,475],[459,461,473,0,422,424,436],[512,473,513,0,475,436,476],[473,474,513,0,436,437,476],[513,474,514,0,476,437,477],[514,474,475,0,477,437,438],[514,475,515,0,477,438,478],[515,475,476,0,478,438,439],[515,476,516,0,478,439,479],[516,476,517,0,479,439,480],[517,476,477,0,480,439,440],[518,517,477,0,481,480,440],[519,517,518,0,482,480,481],[519,520,517,0,482,483,480],[502,520,519,0,465,483,482],[503,520,502,0,466,483,465],[503,521,520,0,466,484,483],[504,521,503,0,467,484,466],[505,521,504,0,468,484,467],[505,522,521,0,468,485,484],[506,522,505,0,469,485,468],[506,523,522,0,469,486,485],[506,507,523,0,469,470,486],[507,524,523,0,470,487,486],[507,508,524,0,470,471,487],[508,525,524,0,471,488,487],[510,525,508,0,473,488,471],[511,525,510,0,474,488,473],[511,512,525,0,474,475,488],[512,513,525,0,475,476,488],[525,513,524,0,488,476,487],[524,513,514,0,487,476,477],[523,524,514,0,486,487,477],[523,514,515,0,486,477,478],[523,515,522,0,486,478,485],[522,515,516,0,485,478,479],[522,516,521,0,485,479,484],[521,516,520,0,484,479,483],[520,516,517,0,483,479,480],[510,508,509,0,473,471,472],[502,519,526,0,465,482,489],[526,519,527,0,489,482,490],[519,518,527,0,482,481,490],[527,518,528,0,490,481,491],[518,529,528,0,481,492,491],[518,477,529,0,481,440,492],[529,477,478,0,492,440,441],[529,478,482,0,492,441,445],[482,478,479,0,445,441,442],[529,482,483,0,492,445,446],[528,529,483,0,491,492,446],[528,483,485,0,491,446,448],[530,528,485,0,493,491,448],[527,528,530,0,490,491,493],[531,527,530,0,494,490,493],[526,527,531,0,489,490,494],[532,526,531,0,495,489,494],[501,526,532,0,464,489,495],[502,526,501,0,465,489,464],[501,532,500,0,464,495,463],[500,532,533,0,463,495,496],[533,532,534,0,496,495,497],[532,531,534,0,495,494,497],[534,531,535,0,497,494,498],[535,531,530,0,498,494,493],[487,535,530,0,450,498,493],[489,535,487,0,452,498,450],[489,536,535,0,452,499,498],[491,536,489,0,454,499,452],[491,537,536,0,454,500,499],[493,537,491,0,456,500,454],[493,538,537,0,456,501,500],[495,538,493,0,458,501,456],[495,496,538,0,458,459,501],[538,496,497,0,501,459,460],[538,497,539,0,501,460,502],[539,497,540,0,502,460,503],[497,498,540,0,460,461,503],[540,498,499,0,503,461,462],[540,499,533,0,503,462,496],[500,533,499,0,463,496,462],[541,540,533,0,504,503,496],[539,540,541,0,502,503,504],[537,539,541,0,500,502,504],[538,539,537,0,501,502,500],[537,541,536,0,500,504,499],[536,541,534,0,499,504,497],[541,533,534,0,504,496,497],[536,534,535,0,499,497,498],[487,530,485,0,450,493,448],[542,431,494,0,505,394,457],[430,431,542,0,393,394,505],[430,542,428,0,393,505,391],[542,543,428,0,505,506,391],[543,542,544,0,506,505,507],[542,494,544,0,505,457,507],[544,494,492,0,507,457,455],[544,492,545,0,507,455,508],[545,492,490,0,508,455,453],[490,546,545,0,453,509,508],[546,490,488,0,509,453,451],[546,488,547,0,509,451,510],[547,488,486,0,510,451,449],[547,486,548,0,510,449,511],[548,486,549,0,511,449,512],[486,484,549,0,449,447,512],[549,484,550,0,512,447,513],[484,481,550,0,447,444,513],[550,481,480,0,513,444,443],[551,547,548,0,514,510,511],[552,547,551,0,515,510,514],[552,553,547,0,515,516,510],[553,552,554,0,516,515,517],[553,554,555,0,516,517,518],[555,554,556,0,518,517,519],[555,556,557,0,518,519,520],[557,556,558,0,520,519,521],[557,558,559,0,520,521,522],[559,558,560,0,522,521,523],[560,558,561,0,523,521,524],[562,560,561,0,525,523,524],[563,560,562,0,526,523,525],[563,564,560,0,526,527,523],[565,564,563,0,528,527,526],[565,566,564,0,528,529,527],[425,566,565,0,388,529,528],[425,427,566,0,388,390,529],[427,567,566,0,390,530,529],[543,567,427,0,506,530,390],[567,543,568,0,530,506,531],[543,544,568,0,506,507,531],[568,544,545,0,531,507,508],[545,569,568,0,508,532,531],[545,546,569,0,508,509,532],[546,553,569,0,509,516,532],[553,546,547,0,516,509,510],[569,553,555,0,532,516,518],[569,555,570,0,532,518,533],[570,555,557,0,533,518,520],[570,557,571,0,533,520,534],[571,557,559,0,534,520,522],[571,559,564,0,534,522,527],[564,559,560,0,527,522,523],[566,571,564,0,529,534,527],[567,571,566,0,530,534,529],[567,570,571,0,530,533,534],[568,570,567,0,531,533,530],[568,569,570,0,531,532,533],[428,543,427,0,391,506,390],[425,565,423,0,388,528,386],[423,565,572,0,386,528,535],[565,563,572,0,528,526,535],[572,563,573,0,535,526,536],[563,562,573,0,526,525,536],[573,562,574,0,536,525,537],[562,575,574,0,525,538,537],[562,561,575,0,525,524,538],[573,574,576,0,536,537,539],[577,573,576,0,540,536,539],[572,573,577,0,535,536,540],[422,572,577,0,385,535,540],[423,572,422,0,386,535,385],[422,577,578,0,385,540,541],[578,577,579,0,541,540,542],[577,576,579,0,540,539,542],[578,579,580,0,541,542,543],[581,578,580,0,544,541,543],[421,578,581,0,384,541,544],[421,422,578,0,384,385,541],[582,421,581,0,545,384,544],[418,421,582,0,381,384,545],[416,418,582,0,379,381,545],[416,582,451,0,379,545,414],[451,582,453,0,414,545,416],[582,581,453,0,545,544,416],[453,581,454,0,416,544,417],[581,580,454,0,544,543,417],[415,416,451,0,378,379,414],[406,407,404,0,369,370,367],[390,429,388,0,353,392,351],[388,429,583,0,351,392,546],[429,426,583,0,392,389,546],[583,426,424,0,546,389,387],[583,424,419,0,546,387,382],[419,424,420,0,382,387,383],[387,583,419,0,350,546,382],[388,583,387,0,351,546,350],[419,417,387,0,382,380,350],[387,417,385,0,350,380,349],[417,414,385,0,380,377,349],[385,414,384,0,349,377,346],[404,584,405,0,367,547,368],[404,585,584,0,367,548,547],[585,586,584,0,548,549,547],[585,587,586,0,548,550,549],[588,587,585,0,551,550,548],[588,589,587,0,551,552,550],[590,589,588,0,553,552,551],[590,591,589,0,553,554,552],[592,591,590,0,555,554,553],[593,591,592,0,556,554,555],[593,594,591,0,556,557,554],[595,594,593,0,558,557,556],[595,596,594,0,558,559,557],[597,596,595,0,560,559,558],[597,598,596,0,560,561,559],[599,598,597,0,562,561,560],[599,600,598,0,562,563,561],[601,600,599,0,564,563,562],[601,602,600,0,564,565,563],[603,602,601,0,566,565,564],[603,604,602,0,566,567,565],[605,604,603,0,568,567,566],[605,606,604,0,568,569,567],[607,606,605,0,570,569,568],[607,608,606,0,570,571,569],[609,608,607,0,572,571,570],[609,610,608,0,572,573,571],[611,610,609,0,574,573,572],[611,612,610,0,574,575,573],[613,612,611,0,576,575,574],[613,614,612,0,576,577,575],[615,614,613,0,578,577,576],[615,616,614,0,578,579,577],[617,616,615,0,580,579,578],[617,618,616,0,580,581,579],[619,618,617,0,582,581,580],[619,620,618,0,582,583,581],[621,620,619,0,584,583,582],[621,622,620,0,584,585,583],[623,622,621,0,586,585,584],[623,624,622,0,586,587,585],[625,624,623,0,588,587,586],[625,626,624,0,588,589,587],[627,626,625,0,590,589,588],[627,628,626,0,590,591,589],[629,628,627,0,592,591,590],[629,630,628,0,592,593,591],[631,630,629,0,594,593,592],[632,630,631,0,595,593,594],[632,633,630,0,595,596,593],[632,634,633,0,595,597,596],[632,635,634,0,595,598,597],[636,635,632,0,599,598,595],[637,635,636,0,600,598,599],[638,635,637,0,601,598,600],[638,634,635,0,601,597,598],[639,634,638,0,602,597,601],[639,633,634,0,602,596,597],[628,633,639,0,591,596,602],[628,630,633,0,591,593,596],[628,639,626,0,591,602,589],[626,639,640,0,589,602,603],[639,638,640,0,602,601,603],[640,638,641,0,603,601,604],[641,638,637,0,604,601,600],[641,637,642,0,604,600,605],[642,637,643,0,605,600,606],[637,636,643,0,600,599,606],[644,643,636,0,607,606,599],[645,643,644,0,608,606,607],[645,646,643,0,608,609,606],[647,646,645,0,610,609,608],[647,648,646,0,610,611,609],[649,648,647,0,612,611,610],[649,650,648,0,612,613,611],[649,651,650,0,612,614,613],[652,651,649,0,615,614,612],[653,651,652,0,616,614,615],[653,654,651,0,616,617,614],[653,655,654,0,616,618,617],[656,655,653,0,619,618,616],[656,657,655,0,619,620,618],[657,656,658,0,620,619,621],[658,656,659,0,621,619,622],[656,653,659,0,619,616,622],[659,653,652,0,622,616,615],[660,659,652,0,623,622,615],[658,659,660,0,621,622,623],[658,660,661,0,621,623,624],[661,660,662,0,624,623,625],[660,663,662,0,623,626,625],[663,660,664,0,626,623,627],[660,652,664,0,623,615,627],[664,652,647,0,627,615,610],[652,649,647,0,615,612,610],[664,647,665,0,627,610,628],[665,647,645,0,628,610,608],[666,665,645,0,629,628,608],[667,665,666,0,630,628,629],[663,665,667,0,626,628,630],[663,664,665,0,626,627,628],[663,667,668,0,626,630,631],[667,632,668,0,630,595,631],[666,632,667,0,629,595,630],[666,644,632,0,629,607,595],[666,645,644,0,629,608,607],[644,636,632,0,607,599,595],[668,632,631,0,631,595,594],[662,668,631,0,625,631,594],[662,663,668,0,625,626,631],[629,662,631,0,592,625,594],[661,662,629,0,624,625,592],[627,661,629,0,590,624,592],[658,661,627,0,621,624,590],[658,627,625,0,621,590,588],[669,658,625,0,632,621,588],[669,657,658,0,632,620,621],[670,657,669,0,633,620,632],[657,670,671,0,620,633,634],[670,672,671,0,633,635,634],[670,673,672,0,633,636,635],[673,670,674,0,636,633,637],[674,670,669,0,637,633,632],[674,669,621,0,637,632,584],[621,669,623,0,584,632,586],[669,625,623,0,632,588,586],[619,674,621,0,582,637,584],[675,674,619,0,638,637,582],[675,673,674,0,638,636,637],[676,673,675,0,639,636,638],[673,676,677,0,636,639,640],[676,678,677,0,639,641,640],[676,679,678,0,639,642,641],[679,676,680,0,642,639,643],[680,676,675,0,643,639,638],[680,675,617,0,643,638,580],[617,675,619,0,580,638,582],[615,680,617,0,578,643,580],[681,680,615,0,644,643,578],[681,679,680,0,644,642,643],[682,679,681,0,645,642,644],[679,682,683,0,642,645,646],[682,684,683,0,645,647,646],[682,685,684,0,645,648,647],[685,682,686,0,648,645,649],[686,682,681,0,649,645,644],[686,681,613,0,649,644,576],[613,681,615,0,576,644,578],[611,686,613,0,574,649,576],[687,686,611,0,650,649,574],[687,685,686,0,650,648,649],[688,685,687,0,651,648,650],[685,688,689,0,648,651,652],[688,690,689,0,651,653,652],[688,691,690,0,651,654,653],[691,688,692,0,654,651,655],[692,688,687,0,655,651,650],[692,687,609,0,655,650,572],[609,687,611,0,572,650,574],[607,692,609,0,570,655,572],[693,692,607,0,656,655,570],[693,691,692,0,656,654,655],[694,691,693,0,657,654,656],[694,695,691,0,657,658,654],[694,696,695,0,657,659,658],[697,696,694,0,660,659,657],[698,696,697,0,661,659,660],[698,699,696,0,661,662,659],[700,699,698,0,663,662,661],[700,701,699,0,663,664,662],[702,701,700,0,665,664,663],[702,703,701,0,665,666,664],[704,703,702,0,667,666,665],[704,705,703,0,667,668,666],[706,705,704,0,669,668,667],[706,707,705,0,669,670,668],[708,707,706,0,671,670,669],[708,709,707,0,671,672,670],[710,709,708,0,673,672,671],[710,711,709,0,673,674,672],[712,711,710,0,675,674,673],[712,713,711,0,675,676,674],[714,713,712,0,677,676,675],[714,715,713,0,677,678,676],[716,715,714,0,679,678,677],[716,717,715,0,679,680,678],[718,717,716,0,681,680,679],[718,719,717,0,681,682,680],[720,719,718,0,683,682,681],[720,721,719,0,683,684,682],[722,721,720,0,685,684,683],[722,723,721,0,685,686,684],[724,723,722,0,687,686,685],[724,725,723,0,687,688,686],[724,726,725,0,687,689,688],[727,726,724,0,690,689,687],[727,728,726,0,690,691,689],[729,728,727,0,692,691,690],[729,730,728,0,692,693,691],[729,731,730,0,692,694,693],[732,731,729,0,695,694,692],[732,733,731,0,695,696,694],[734,733,732,0,697,696,695],[733,734,735,0,696,697,698],[734,736,735,0,697,699,698],[734,737,736,0,697,700,699],[737,734,738,0,700,697,701],[738,734,732,0,701,697,695],[738,732,739,0,701,695,702],[739,732,729,0,702,695,692],[729,727,739,0,692,690,702],[739,727,724,0,702,690,687],[739,724,740,0,702,687,703],[740,724,722,0,703,687,685],[740,722,741,0,703,685,704],[741,722,720,0,704,685,683],[741,720,742,0,704,683,705],[742,720,718,0,705,683,681],[743,742,718,0,706,705,681],[743,744,742,0,706,707,705],[745,744,743,0,708,707,706],[745,746,744,0,708,709,707],[747,746,745,0,710,709,708],[746,747,748,0,709,710,711],[747,749,748,0,710,712,711],[747,750,749,0,710,713,712],[750,747,751,0,713,710,714],[751,747,745,0,714,710,708],[751,745,752,0,714,708,715],[752,745,743,0,715,708,706],[752,743,716,0,715,706,679],[716,743,718,0,679,706,681],[714,752,716,0,677,715,679],[753,752,714,0,716,715,677],[753,751,752,0,716,714,715],[754,751,753,0,717,714,716],[754,750,751,0,717,713,714],[755,750,754,0,718,713,717],[750,755,756,0,713,718,719],[755,757,756,0,718,720,719],[755,758,757,0,718,721,720],[758,755,759,0,721,718,722],[759,755,754,0,722,718,717],[759,754,760,0,722,717,723],[760,754,753,0,723,717,716],[753,712,760,0,716,675,723],[712,753,714,0,675,716,677],[760,712,710,0,723,675,673],[760,710,761,0,723,673,724],[761,710,708,0,724,673,671],[762,761,708,0,725,724,671],[762,763,761,0,725,726,724],[764,763,762,0,727,726,725],[764,765,763,0,727,728,726],[766,765,764,0,729,728,727],[765,766,767,0,728,729,730],[766,768,767,0,729,731,730],[766,769,768,0,729,732,731],[769,766,770,0,732,729,733],[770,766,764,0,733,729,727],[770,764,771,0,733,727,734],[771,764,762,0,734,727,725],[771,762,706,0,734,725,669],[706,762,708,0,669,725,671],[704,771,706,0,667,734,669],[772,771,704,0,735,734,667],[772,770,771,0,735,733,734],[773,770,772,0,736,733,735],[773,769,770,0,736,732,733],[774,769,773,0,737,732,736],[769,774,775,0,732,737,738],[774,776,775,0,737,739,738],[774,777,776,0,737,740,739],[777,774,778,0,740,737,741],[778,774,773,0,741,737,736],[778,773,779,0,741,736,742],[779,773,772,0,742,736,735],[779,772,702,0,742,735,665],[702,772,704,0,665,735,667],[779,702,700,0,742,665,663],[780,779,700,0,743,742,663],[780,778,779,0,743,741,742],[781,778,780,0,744,741,743],[777,778,781,0,740,741,744],[782,777,781,0,745,740,744],[777,782,783,0,740,745,746],[782,784,783,0,745,747,746],[782,785,784,0,745,748,747],[785,782,786,0,748,745,749],[782,781,786,0,745,744,749],[786,781,787,0,749,744,750],[787,781,780,0,750,744,743],[787,780,788,0,750,743,751],[780,698,788,0,743,661,751],[780,700,698,0,743,663,661],[788,698,697,0,751,661,660],[789,788,697,0,752,751,660],[790,788,789,0,753,751,752],[787,788,790,0,750,751,753],[791,787,790,0,754,750,753],[791,786,787,0,754,749,750],[792,786,791,0,755,749,754],[792,785,786,0,755,748,749],[792,793,785,0,755,756,748],[792,794,793,0,755,757,756],[794,792,795,0,757,755,758],[795,792,791,0,758,755,754],[795,791,796,0,758,754,759],[796,791,790,0,759,754,753],[796,790,797,0,759,753,760],[797,790,789,0,760,753,752],[797,789,798,0,760,752,761],[798,789,799,0,761,752,762],[789,697,799,0,752,660,762],[799,697,800,0,762,660,763],[697,694,800,0,660,657,763],[800,694,693,0,763,657,656],[800,693,605,0,763,656,568],[605,693,607,0,568,656,570],[603,800,605,0,566,763,568],[603,799,800,0,566,762,763],[601,799,603,0,564,762,566],[601,798,799,0,564,761,762],[599,798,601,0,562,761,564],[801,798,599,0,764,761,562],[801,797,798,0,764,760,761],[802,797,801,0,765,760,764],[802,796,797,0,765,759,760],[802,803,796,0,765,766,759],[804,803,802,0,767,766,765],[804,795,803,0,767,758,766],[804,805,795,0,767,768,758],[806,805,804,0,769,768,767],[806,807,805,0,769,770,768],[807,808,805,0,770,771,768],[807,809,808,0,770,772,771],[809,810,808,0,772,773,771],[809,811,810,0,772,774,773],[810,811,812,0,773,774,775],[811,813,812,0,774,776,775],[813,814,812,0,776,777,775],[813,815,814,0,776,778,777],[815,816,814,0,778,779,777],[817,816,815,0,780,779,778],[817,818,816,0,780,781,779],[819,818,817,0,782,781,780],[819,820,818,0,782,783,781],[821,820,819,0,784,783,782],[820,821,584,0,783,784,547],[405,584,821,0,368,547,784],[405,821,822,0,368,784,785],[822,821,823,0,785,784,786],[823,821,819,0,786,784,782],[823,819,400,0,786,782,363],[400,819,817,0,363,782,780],[368,823,400,0,330,786,363],[368,824,823,0,330,787,786],[198,824,368,0,160,787,330],[198,825,824,0,160,788,787],[114,825,198,0,76,788,160],[114,826,825,0,76,789,788],[83,826,114,0,45,789,76],[83,827,826,0,45,790,789],[17,827,83,0,14,790,45],[17,828,827,0,14,791,790],[17,86,828,0,14,48,791],[87,828,86,0,49,791,48],[87,829,828,0,49,792,791],[87,118,829,0,49,80,792],[118,152,829,0,80,114,792],[829,152,830,0,792,114,793],[830,152,831,0,793,114,794],[152,832,831,0,114,795,794],[151,832,152,0,113,795,114],[151,372,832,0,113,334,795],[372,374,832,0,334,336,795],[832,374,833,0,795,336,796],[833,374,822,0,796,336,785],[374,405,822,0,336,368,785],[374,373,405,0,336,335,368],[824,833,822,0,787,796,785],[825,833,824,0,788,796,787],[825,831,833,0,788,794,796],[826,831,825,0,789,794,788],[830,831,826,0,793,794,789],[827,830,826,0,790,793,789],[828,830,827,0,791,793,790],[828,829,830,0,791,792,793],[832,833,831,0,795,796,794],[824,822,823,0,787,785,786],[87,85,86,0,49,47,48],[584,586,820,0,547,549,783],[586,818,820,0,549,781,783],[818,586,834,0,781,549,797],[586,835,834,0,549,798,797],[587,835,586,0,550,798,549],[587,836,835,0,550,799,798],[589,836,587,0,552,799,550],[589,837,836,0,552,800,799],[591,837,589,0,554,800,552],[594,837,591,0,557,800,554],[594,838,837,0,557,801,800],[596,838,594,0,559,801,557],[596,839,838,0,559,802,801],[598,839,596,0,561,802,559],[598,840,839,0,561,803,802],[600,840,598,0,563,803,561],[600,841,840,0,563,804,803],[602,841,600,0,565,804,563],[602,842,841,0,565,805,804],[604,842,602,0,567,805,565],[604,843,842,0,567,806,805],[606,843,604,0,569,806,567],[606,844,843,0,569,807,806],[608,844,606,0,571,807,569],[608,845,844,0,571,808,807],[610,845,608,0,573,808,571],[610,846,845,0,573,809,808],[610,847,846,0,573,810,809],[612,847,610,0,575,810,573],[612,848,847,0,575,811,810],[614,848,612,0,577,811,575],[614,849,848,0,577,812,811],[616,849,614,0,579,812,577],[616,850,849,0,579,813,812],[618,850,616,0,581,813,579],[618,851,850,0,581,814,813],[620,851,618,0,583,814,581],[620,852,851,0,583,815,814],[622,852,620,0,585,815,583],[622,853,852,0,585,816,815],[624,853,622,0,587,816,585],[624,640,853,0,587,603,816],[626,640,624,0,589,603,587],[640,854,853,0,603,817,816],[640,641,854,0,603,604,817],[854,641,642,0,817,604,605],[854,642,855,0,817,605,818],[855,642,646,0,818,605,609],[642,643,646,0,605,606,609],[855,646,648,0,818,609,611],[856,855,648,0,819,818,611],[854,855,856,0,817,818,819],[857,854,856,0,820,817,819],[858,854,857,0,821,817,820],[852,854,858,0,815,817,821],[853,854,852,0,816,817,815],[852,858,851,0,815,821,814],[851,858,859,0,814,821,822],[859,858,860,0,822,821,823],[860,858,857,0,823,821,820],[860,857,861,0,823,820,824],[857,650,861,0,820,613,824],[857,856,650,0,820,819,613],[856,648,650,0,819,611,613],[651,861,650,0,614,824,613],[651,654,861,0,614,617,824],[654,862,861,0,617,825,824],[654,863,862,0,617,826,825],[655,863,654,0,618,826,617],[655,671,863,0,618,634,826],[657,671,655,0,620,634,618],[671,864,863,0,634,827,826],[671,672,864,0,634,635,827],[672,865,864,0,635,828,827],[672,677,865,0,635,640,828],[673,677,672,0,636,640,635],[677,866,865,0,640,829,828],[677,678,866,0,640,641,829],[678,867,866,0,641,830,829],[678,683,867,0,641,646,830],[679,683,678,0,642,646,641],[683,868,867,0,646,831,830],[683,684,868,0,646,647,831],[684,869,868,0,647,832,831],[684,689,869,0,647,652,832],[685,689,684,0,648,652,647],[689,870,869,0,652,833,832],[689,690,870,0,652,653,833],[690,871,870,0,653,834,833],[690,695,871,0,653,658,834],[691,695,690,0,654,658,653],[695,872,871,0,658,835,834],[695,696,872,0,658,659,835],[699,872,696,0,662,835,659],[873,872,699,0,836,835,662],[873,874,872,0,836,837,835],[875,874,873,0,838,837,836],[875,876,874,0,838,839,837],[877,876,875,0,840,839,838],[878,876,877,0,841,839,840],[879,876,878,0,842,839,841],[879,880,876,0,842,843,839],[839,880,879,0,802,843,842],[840,880,839,0,803,843,802],[840,881,880,0,803,844,843],[841,881,840,0,804,844,803],[841,882,881,0,804,845,844],[842,882,841,0,805,845,804],[842,883,882,0,805,846,845],[843,883,842,0,806,846,805],[843,884,883,0,806,847,846],[844,884,843,0,807,847,806],[844,885,884,0,807,848,847],[845,885,844,0,808,848,807],[845,886,885,0,808,849,848],[846,886,845,0,809,849,808],[846,887,886,0,809,850,849],[847,887,846,0,810,850,809],[847,888,887,0,810,851,850],[848,888,847,0,811,851,810],[848,889,888,0,811,852,851],[849,889,848,0,812,852,811],[849,859,889,0,812,822,852],[850,859,849,0,813,822,812],[851,859,850,0,814,822,813],[889,859,890,0,852,822,853],[890,859,860,0,853,822,823],[890,860,862,0,853,823,825],[860,861,862,0,823,824,825],[890,862,891,0,853,825,854],[863,891,862,0,826,854,825],[863,864,891,0,826,827,854],[864,892,891,0,827,855,854],[864,865,892,0,827,828,855],[865,893,892,0,828,856,855],[865,866,893,0,828,829,856],[866,894,893,0,829,857,856],[866,867,894,0,829,830,857],[867,895,894,0,830,858,857],[867,896,895,0,830,859,858],[867,868,896,0,830,831,859],[868,897,896,0,831,860,859],[868,869,897,0,831,832,860],[869,898,897,0,832,861,860],[870,898,869,0,833,861,832],[870,899,898,0,833,862,861],[871,899,870,0,834,862,833],[871,874,899,0,834,837,862],[872,874,871,0,835,837,834],[876,899,874,0,839,862,837],[876,900,899,0,839,863,862],[880,900,876,0,843,863,839],[880,881,900,0,843,844,863],[881,901,900,0,844,864,863],[881,882,901,0,844,845,864],[882,902,901,0,845,865,864],[882,883,902,0,845,846,865],[883,903,902,0,846,866,865],[883,884,903,0,846,847,866],[884,904,903,0,847,867,866],[884,885,904,0,847,848,867],[885,905,904,0,848,868,867],[885,886,905,0,848,849,868],[886,906,905,0,849,869,868],[886,887,906,0,849,850,869],[887,907,906,0,850,870,869],[887,888,907,0,850,851,870],[888,890,907,0,851,853,870],[888,889,890,0,851,852,853],[907,890,891,0,870,853,854],[892,907,891,0,855,870,854],[906,907,892,0,869,870,855],[893,906,892,0,856,869,855],[905,906,893,0,868,869,856],[894,905,893,0,857,868,856],[904,905,894,0,867,868,857],[904,894,895,0,867,857,858],[903,904,895,0,866,867,858],[903,895,896,0,866,858,859],[902,903,896,0,865,866,859],[902,896,897,0,865,859,860],[901,902,897,0,864,865,860],[901,897,898,0,864,860,861],[900,901,898,0,863,864,861],[900,898,899,0,863,861,862],[839,879,838,0,802,842,801],[838,879,908,0,801,842,871],[908,879,878,0,871,842,841],[908,878,909,0,871,841,872],[909,878,877,0,872,841,840],[909,877,910,0,872,840,873],[910,877,911,0,873,840,874],[911,877,912,0,874,840,875],[877,913,912,0,840,876,875],[877,875,913,0,840,838,876],[913,875,914,0,876,838,877],[914,875,873,0,877,838,836],[914,873,701,0,877,836,664],[701,873,699,0,664,836,662],[701,703,914,0,664,666,877],[915,914,703,0,878,877,666],[913,914,915,0,876,877,878],[913,915,916,0,876,878,879],[916,915,917,0,879,878,880],[705,917,915,0,668,880,878],[707,917,705,0,670,880,668],[707,918,917,0,670,881,880],[709,918,707,0,672,881,670],[709,919,918,0,672,882,881],[711,919,709,0,674,882,672],[711,920,919,0,674,883,882],[711,921,920,0,674,884,883],[713,921,711,0,676,884,674],[713,922,921,0,676,885,884],[715,922,713,0,678,885,676],[715,923,922,0,678,886,885],[717,923,715,0,680,886,678],[717,924,923,0,680,887,886],[719,924,717,0,682,887,680],[719,925,924,0,682,888,887],[721,925,719,0,684,888,682],[721,926,925,0,684,889,888],[723,926,721,0,686,889,684],[723,927,926,0,686,890,889],[725,927,723,0,688,890,686],[725,928,927,0,688,891,890],[726,928,725,0,689,891,688],[726,929,928,0,689,892,891],[726,930,929,0,689,893,892],[728,930,726,0,691,893,689],[931,930,728,0,894,893,691],[931,932,930,0,894,895,893],[933,932,931,0,896,895,894],[933,934,932,0,896,897,895],[935,934,933,0,898,897,896],[936,934,935,0,899,897,898],[936,937,934,0,899,900,897],[938,937,936,0,901,900,899],[938,929,937,0,901,892,900],[939,929,938,0,902,892,901],[939,928,929,0,902,891,892],[940,928,939,0,903,891,902],[940,927,928,0,903,890,891],[941,927,940,0,904,890,903],[941,926,927,0,904,889,890],[942,926,941,0,905,889,904],[942,925,926,0,905,888,889],[943,925,942,0,906,888,905],[943,924,925,0,906,887,888],[944,924,943,0,907,887,906],[923,924,944,0,886,887,907],[945,923,944,0,908,886,907],[922,923,945,0,885,886,908],[946,922,945,0,909,885,908],[921,922,946,0,884,885,909],[947,921,946,0,910,884,909],[947,920,921,0,910,883,884],[948,920,947,0,911,883,910],[948,919,920,0,911,882,883],[949,919,948,0,912,882,911],[949,918,919,0,912,881,882],[950,918,949,0,913,881,912],[950,917,918,0,913,880,881],[916,917,950,0,879,880,913],[951,916,950,0,914,879,913],[952,916,951,0,915,879,914],[952,913,916,0,915,876,879],[953,913,952,0,916,876,915],[953,912,913,0,916,875,876],[954,912,953,0,917,875,916],[954,911,912,0,917,874,875],[955,911,954,0,918,874,917],[955,956,911,0,918,919,874],[816,956,955,0,779,919,918],[818,956,816,0,781,919,779],[818,834,956,0,781,797,919],[834,910,956,0,797,873,919],[835,910,834,0,798,873,797],[835,909,910,0,798,872,873],[836,909,835,0,799,872,798],[836,908,909,0,799,871,872],[837,908,836,0,800,871,799],[837,838,908,0,800,801,871],[956,910,911,0,919,873,874],[816,955,814,0,779,918,777],[814,955,957,0,777,918,920],[957,955,954,0,920,918,917],[957,954,958,0,920,917,921],[958,954,953,0,921,917,916],[959,958,953,0,922,921,916],[960,958,959,0,923,921,922],[960,961,958,0,923,924,921],[962,961,960,0,925,924,923],[962,810,961,0,925,773,924],[808,810,962,0,771,773,925],[794,808,962,0,757,771,925],[805,808,794,0,768,771,757],[805,794,795,0,768,757,758],[794,962,793,0,757,925,756],[793,962,960,0,756,925,923],[793,960,963,0,756,923,926],[963,960,959,0,926,923,922],[963,959,964,0,926,922,927],[964,959,952,0,927,922,915],[959,953,952,0,922,916,915],[964,952,951,0,927,915,914],[965,964,951,0,928,927,914],[784,964,965,0,747,927,928],[784,963,964,0,747,926,927],[785,963,784,0,748,926,747],[785,793,963,0,748,756,926],[783,784,965,0,746,747,928],[783,965,966,0,746,928,929],[966,965,967,0,929,928,930],[965,951,967,0,928,914,930],[951,950,967,0,914,913,930],[967,950,949,0,930,913,912],[967,949,968,0,930,912,931],[968,949,948,0,931,912,911],[968,948,969,0,931,911,932],[969,948,947,0,932,911,910],[969,947,970,0,932,910,933],[970,947,946,0,933,910,909],[970,946,971,0,933,909,934],[971,946,945,0,934,909,908],[971,945,972,0,934,908,935],[972,945,944,0,935,908,907],[972,944,973,0,935,907,936],[973,944,943,0,936,907,906],[973,943,974,0,936,906,937],[974,943,975,0,937,906,938],[943,942,975,0,906,905,938],[975,942,976,0,938,905,939],[942,941,976,0,905,904,939],[976,941,977,0,939,904,940],[941,940,977,0,904,903,940],[977,940,939,0,940,903,902],[977,939,938,0,940,902,901],[977,938,978,0,940,901,941],[978,938,936,0,941,901,899],[978,936,979,0,941,899,942],[979,936,935,0,942,899,898],[979,935,980,0,942,898,943],[980,935,933,0,943,898,896],[981,980,933,0,944,943,896],[982,980,981,0,945,943,944],[982,979,980,0,945,942,943],[983,979,982,0,946,942,945],[983,978,979,0,946,941,942],[983,977,978,0,946,940,941],[977,983,984,0,940,946,947],[985,984,983,0,948,947,946],[985,986,984,0,948,949,947],[987,986,985,0,950,949,948],[987,746,986,0,950,709,949],[746,987,744,0,709,950,707],[744,987,988,0,707,950,951],[988,987,985,0,951,950,948],[988,985,989,0,951,948,952],[989,985,983,0,952,948,946],[989,983,982,0,952,946,945],[736,989,982,0,699,952,945],[737,989,736,0,700,952,699],[737,988,989,0,700,951,952],[990,988,737,0,953,951,700],[744,988,990,0,707,951,953],[744,990,742,0,707,953,705],[742,990,741,0,705,953,704],[990,740,741,0,953,703,704],[990,739,740,0,953,702,703],[990,738,739,0,953,701,702],[990,737,738,0,953,700,701],[736,982,981,0,699,945,944],[736,981,735,0,699,944,698],[981,933,735,0,944,896,698],[735,933,733,0,698,896,696],[733,933,731,0,696,896,694],[933,730,731,0,896,693,694],[933,931,730,0,896,894,693],[730,931,728,0,693,894,691],[746,748,986,0,709,711,949],[986,748,991,0,949,711,954],[748,992,991,0,711,955,954],[748,749,992,0,711,712,955],[749,993,992,0,712,956,955],[749,756,993,0,712,719,956],[750,756,749,0,713,719,712],[756,994,993,0,719,957,956],[756,757,994,0,719,720,957],[757,995,994,0,720,958,957],[757,996,995,0,720,959,958],[758,996,757,0,721,959,720],[758,765,996,0,721,728,959],[765,758,763,0,728,721,726],[763,758,759,0,726,721,722],[763,759,761,0,726,722,724],[761,759,760,0,724,722,723],[765,767,996,0,728,730,959],[996,767,997,0,959,730,960],[767,998,997,0,730,961,960],[767,999,998,0,730,962,961],[767,768,999,0,730,731,962],[768,1000,999,0,731,963,962],[768,775,1000,0,731,738,963],[769,775,768,0,732,738,731],[775,1001,1000,0,738,964,963],[775,776,1001,0,738,739,964],[776,966,1001,0,739,929,964],[776,783,966,0,739,746,929],[777,783,776,0,740,746,739],[1001,966,968,0,964,929,931],[966,967,968,0,929,930,931],[1001,968,969,0,964,931,932],[1000,1001,969,0,963,964,932],[1000,969,970,0,963,932,933],[999,1000,970,0,962,963,933],[999,970,971,0,962,933,934],[998,999,971,0,961,962,934],[998,971,972,0,961,934,935],[998,972,997,0,961,935,960],[997,972,973,0,960,935,936],[997,973,995,0,960,936,958],[995,973,974,0,958,936,937],[994,995,974,0,957,958,937],[994,974,975,0,957,937,938],[993,994,975,0,956,957,938],[992,993,975,0,955,956,938],[992,975,976,0,955,938,939],[991,992,976,0,954,955,939],[991,976,977,0,954,939,940],[991,977,984,0,954,940,947],[986,991,984,0,949,954,947],[996,997,995,0,959,960,958],[810,812,961,0,773,775,924],[961,812,957,0,924,775,920],[812,814,957,0,775,777,920],[961,957,958,0,924,920,921],[930,937,929,0,893,900,892],[930,932,937,0,893,895,900],[932,934,937,0,895,897,900],[703,705,915,0,666,668,878],[806,804,1002,0,769,767,965],[1002,804,802,0,965,767,765],[1002,802,1003,0,965,765,966],[1003,802,801,0,966,765,764],[801,597,1003,0,764,560,966],[801,599,597,0,764,562,560],[595,1003,597,0,558,966,560],[1004,1003,595,0,967,966,558],[1004,1002,1003,0,967,965,966],[1005,1002,1004,0,968,965,967],[1005,806,1002,0,968,769,965],[1006,1005,1004,0,969,968,967],[1006,1004,593,0,969,967,556],[593,1004,595,0,556,967,558],[592,1006,593,0,555,969,556],[803,795,796,0,766,758,759],[215,217,389,0,177,179,352],[215,389,1007,0,177,352,970],[1007,389,386,0,970,352,348],[1007,386,383,0,970,348,345],[1007,383,1008,0,970,345,971],[1008,383,381,0,971,345,343],[1008,381,209,0,971,343,171],[208,209,381,0,170,171,343],[209,210,1008,0,171,172,971],[1007,1008,210,0,970,971,172],[210,212,1007,0,172,174,970],[212,215,1007,0,174,177,970],[204,372,203,0,166,334,165],[203,372,202,0,165,334,164],[202,372,201,0,164,334,163],[232,224,225,0,194,186,187],[232,225,226,0,194,187,188],[232,226,230,0,194,188,192],[172,173,231,0,134,135,193],[172,231,1009,0,134,193,972],[1009,231,229,0,972,193,191],[1009,229,1010,0,972,191,973],[1010,229,228,0,973,191,190],[166,1010,228,0,128,973,190],[168,1010,166,0,130,973,128],[168,1009,1010,0,130,972,973],[170,1009,168,0,132,972,130],[172,1009,170,0,134,972,132],[166,228,1011,0,128,190,974],[1011,228,211,0,974,190,173],[228,213,211,0,190,175,173],[164,1011,211,0,126,974,173],[166,1011,164,0,128,974,126],[164,211,163,0,126,173,125],[127,128,171,0,89,90,133],[126,127,171,0,88,89,133],[126,171,125,0,88,133,87],[171,169,125,0,133,131,87],[125,169,1012,0,87,131,975],[1012,169,1013,0,975,131,976],[1013,169,167,0,976,131,129],[1013,167,1014,0,976,129,977],[1014,167,165,0,977,129,127],[1014,165,1015,0,977,127,978],[1015,165,161,0,978,127,123],[1015,161,1016,0,978,123,979],[161,159,1016,0,123,121,979],[1016,159,1017,0,979,121,980],[159,157,1017,0,121,119,980],[1017,157,155,0,980,119,117],[1017,155,1018,0,980,117,981],[1018,155,153,0,981,117,115],[1018,153,1019,0,981,115,982],[118,1019,153,0,80,982,115],[119,1019,118,0,81,982,80],[119,1020,1019,0,81,983,982],[119,1021,1020,0,81,984,983],[120,1021,119,0,82,984,81],[120,1022,1021,0,82,985,984],[122,1022,120,0,84,985,82],[122,124,1022,0,84,86,985],[124,1023,1022,0,86,986,985],[124,1012,1023,0,86,975,986],[124,125,1012,0,86,87,975],[1023,1012,1024,0,986,975,987],[1012,1013,1024,0,975,976,987],[1024,1013,1025,0,987,976,988],[1025,1013,1014,0,988,976,977],[1025,1014,1026,0,988,977,989],[1026,1014,1015,0,989,977,978],[1026,1015,1027,0,989,978,990],[1015,1016,1027,0,978,979,990],[1027,1016,1028,0,990,979,991],[1016,1017,1028,0,979,980,991],[1028,1017,1018,0,991,980,981],[1028,1018,1029,0,991,981,992],[1029,1018,1019,0,992,981,982],[1020,1029,1019,0,983,992,982],[1020,1030,1029,0,983,993,992],[1031,1030,1020,0,994,993,983],[1032,1030,1031,0,995,993,994],[1032,1033,1030,0,995,996,993],[1032,1034,1033,0,995,997,996],[1032,1035,1034,0,995,998,997],[1036,1035,1032,0,999,998,995],[1037,1035,1036,0,1000,998,999],[1037,1038,1035,0,1000,1001,998],[1039,1038,1037,0,1002,1001,1000],[1039,1040,1038,0,1002,1003,1001],[1041,1040,1039,0,1004,1003,1002],[1041,1042,1040,0,1004,1005,1003],[1043,1042,1041,0,1006,1005,1004],[1044,1042,1043,0,1007,1005,1006],[1042,1044,1045,0,1005,1007,1008],[1044,1046,1045,0,1007,1009,1008],[1044,1047,1046,0,1007,1010,1009],[1048,1047,1044,0,1011,1010,1007],[1049,1047,1048,0,1012,1010,1011],[1049,1050,1047,0,1012,1013,1010],[1049,1051,1050,0,1012,1014,1013],[1052,1051,1049,0,1015,1014,1012],[1053,1051,1052,0,1016,1014,1015],[1054,1051,1053,0,1017,1014,1016],[1054,1055,1051,0,1017,1018,1014],[1056,1055,1054,0,1019,1018,1017],[1056,1057,1055,0,1019,1020,1018],[1056,1058,1057,0,1019,1021,1020],[1059,1058,1056,0,1022,1021,1019],[1059,1060,1058,0,1022,1023,1021],[1061,1060,1059,0,1024,1023,1022],[1060,1061,1062,0,1023,1024,1025],[1061,1063,1062,0,1024,1026,1025],[1061,1064,1063,0,1024,1027,1026],[1064,1061,1065,0,1027,1024,1028],[1065,1061,1059,0,1028,1024,1022],[1065,1059,1066,0,1028,1022,1029],[1066,1059,1056,0,1029,1022,1019],[1056,1054,1066,0,1019,1017,1029],[1066,1054,1053,0,1029,1017,1016],[1066,1053,1067,0,1029,1016,1030],[1067,1053,1052,0,1030,1016,1015],[1067,1052,1068,0,1030,1015,1031],[1068,1052,1069,0,1031,1015,1032],[1052,1049,1069,0,1015,1012,1032],[1069,1049,1048,0,1032,1012,1011],[1069,1048,1070,0,1032,1011,1033],[1070,1048,1043,0,1033,1011,1006],[1048,1044,1043,0,1011,1007,1006],[1070,1043,1071,0,1033,1006,1034],[1071,1043,1041,0,1034,1006,1004],[1071,1041,1072,0,1034,1004,1035],[1072,1041,1039,0,1035,1004,1002],[1072,1039,1073,0,1035,1002,1036],[1073,1039,1037,0,1036,1002,1000],[1073,1037,1074,0,1036,1000,1037],[1074,1037,1036,0,1037,1000,999],[1075,1074,1036,0,1038,1037,999],[1023,1074,1075,0,986,1037,1038],[1023,1024,1074,0,986,987,1037],[1024,1076,1074,0,987,1039,1037],[1024,1077,1076,0,987,1040,1039],[1024,1025,1077,0,987,988,1040],[1025,1026,1077,0,988,989,1040],[1077,1026,1078,0,1040,989,1041],[1078,1026,1079,0,1041,989,1042],[1079,1026,1027,0,1042,989,990],[1079,1027,1080,0,1042,990,1043],[1080,1027,1028,0,1043,990,991],[1080,1028,1081,0,1043,991,1044],[1081,1028,1082,0,1044,991,1045],[1082,1028,1083,0,1045,991,1046],[1083,1028,1029,0,1046,991,992],[1083,1029,1030,0,1046,992,993],[1030,1033,1083,0,993,996,1046],[1082,1083,1033,0,1045,1046,996],[1034,1082,1033,0,997,1045,996],[1084,1082,1034,0,1047,1045,997],[1084,1081,1082,0,1047,1044,1045],[1081,1084,1085,0,1044,1047,1048],[1085,1084,1086,0,1048,1047,1049],[1086,1084,1087,0,1049,1047,1050],[1088,1087,1084,0,1051,1050,1047],[1088,1089,1087,0,1051,1052,1050],[1038,1089,1088,0,1001,1052,1051],[1038,1040,1089,0,1001,1003,1052],[1040,1090,1089,0,1003,1053,1052],[1040,1042,1090,0,1003,1005,1053],[1042,1045,1090,0,1005,1008,1053],[1090,1045,1091,0,1053,1008,1054],[1045,1092,1091,0,1008,1055,1054],[1045,1046,1092,0,1008,1009,1055],[1092,1046,1093,0,1055,1009,1056],[1093,1046,1094,0,1056,1009,1057],[1046,1047,1094,0,1009,1010,1057],[1094,1047,1050,0,1057,1010,1013],[1094,1050,1095,0,1057,1013,1058],[1095,1050,1096,0,1058,1013,1059],[1051,1096,1050,0,1014,1059,1013],[1051,1097,1096,0,1014,1060,1059],[1055,1097,1051,0,1018,1060,1014],[1055,1098,1097,0,1018,1061,1060],[1057,1098,1055,0,1020,1061,1018],[1057,1099,1098,0,1020,1062,1061],[1057,1100,1099,0,1020,1063,1062],[1058,1100,1057,0,1021,1063,1020],[1058,1101,1100,0,1021,1064,1063],[1060,1101,1058,0,1023,1064,1021],[1101,1060,1102,0,1064,1023,1065],[1060,1062,1102,0,1023,1025,1065],[1102,1062,1103,0,1065,1025,1066],[1062,1104,1103,0,1025,1067,1066],[1062,1063,1104,0,1025,1026,1067],[1063,1105,1104,0,1026,1068,1067],[1063,1106,1105,0,1026,1069,1068],[1064,1106,1063,0,1027,1069,1026],[1064,1107,1106,0,1027,1070,1069],[1107,1064,1108,0,1070,1027,1071],[1108,1064,1065,0,1071,1027,1028],[1108,1065,1067,0,1071,1028,1030],[1067,1065,1066,0,1030,1028,1029],[1068,1108,1067,0,1031,1071,1030],[1109,1108,1068,0,1072,1071,1031],[1109,1107,1108,0,1072,1070,1071],[1110,1107,1109,0,1073,1070,1072],[1107,1110,1111,0,1070,1073,1074],[1110,1112,1111,0,1073,1075,1074],[1110,1113,1112,0,1073,1076,1075],[1113,1110,1114,0,1076,1073,1077],[1114,1110,1109,0,1077,1073,1072],[1114,1109,1115,0,1077,1072,1078],[1115,1109,1068,0,1078,1072,1031],[1068,1069,1115,0,1031,1032,1078],[1069,1070,1115,0,1032,1033,1078],[1115,1070,1116,0,1078,1033,1079],[1116,1070,1071,0,1079,1033,1034],[1116,1071,1117,0,1079,1034,1080],[1117,1071,1072,0,1080,1034,1035],[1117,1072,1118,0,1080,1035,1081],[1118,1072,1073,0,1081,1035,1036],[1076,1118,1073,0,1039,1081,1036],[1076,1077,1118,0,1039,1040,1081],[1118,1077,1078,0,1081,1040,1041],[1118,1078,1119,0,1081,1041,1082],[1078,1079,1119,0,1041,1042,1082],[1113,1119,1079,0,1076,1082,1042],[1119,1113,1114,0,1082,1076,1077],[1119,1114,1116,0,1082,1077,1079],[1116,1114,1115,0,1079,1077,1078],[1117,1119,1116,0,1080,1082,1079],[1118,1119,1117,0,1081,1082,1080],[1113,1079,1080,0,1076,1042,1043],[1112,1113,1080,0,1075,1076,1043],[1112,1080,1081,0,1075,1043,1044],[1112,1081,1085,0,1075,1044,1048],[1111,1112,1085,0,1074,1075,1048],[1111,1085,1086,0,1074,1048,1049],[1106,1111,1086,0,1069,1074,1049],[1107,1111,1106,0,1070,1074,1069],[1106,1086,1105,0,1069,1049,1068],[1105,1086,1087,0,1068,1049,1050],[1105,1087,1120,0,1068,1050,1083],[1089,1120,1087,0,1052,1083,1050],[1089,1090,1120,0,1052,1053,1083],[1090,1091,1120,0,1053,1054,1083],[1104,1120,1091,0,1067,1083,1054],[1104,1105,1120,0,1067,1068,1083],[1103,1104,1091,0,1066,1067,1054],[1103,1091,1092,0,1066,1054,1055],[1103,1092,1121,0,1066,1055,1084],[1121,1092,1093,0,1084,1055,1056],[1121,1093,1122,0,1084,1056,1085],[1093,1123,1122,0,1056,1086,1085],[1093,1094,1123,0,1056,1057,1086],[1123,1094,1095,0,1086,1057,1058],[1123,1095,1124,0,1086,1058,1087],[1124,1095,1125,0,1087,1058,1088],[1095,1096,1125,0,1058,1059,1088],[1125,1096,1126,0,1088,1059,1089],[1097,1126,1096,0,1060,1089,1059],[1097,1127,1126,0,1060,1090,1089],[1098,1127,1097,0,1061,1090,1060],[1098,1128,1127,0,1061,1091,1090],[1099,1128,1098,0,1062,1091,1061],[1099,1129,1128,0,1062,1092,1091],[1130,1129,1099,0,1093,1092,1062],[1130,1131,1129,0,1093,1094,1092],[1132,1131,1130,0,1095,1094,1093],[1132,1133,1131,0,1095,1096,1094],[1132,1134,1133,0,1095,1097,1096],[1102,1134,1132,0,1065,1097,1095],[1102,1122,1134,0,1065,1085,1097],[1102,1121,1122,0,1065,1084,1085],[1102,1103,1121,0,1065,1066,1084],[1134,1122,1135,0,1097,1085,1098],[1122,1136,1135,0,1085,1099,1098],[1122,1123,1136,0,1085,1086,1099],[1123,1124,1136,0,1086,1087,1099],[1136,1124,1137,0,1099,1087,1100],[1124,1138,1137,0,1087,1101,1100],[1124,1125,1138,0,1087,1088,1101],[1138,1125,1139,0,1101,1088,1102],[1125,1126,1139,0,1088,1089,1102],[1139,1126,1140,0,1102,1089,1103],[1127,1140,1126,0,1090,1103,1089],[1127,1141,1140,0,1090,1104,1103],[1128,1141,1127,0,1091,1104,1090],[1128,1142,1141,0,1091,1105,1104],[1129,1142,1128,0,1092,1105,1091],[1129,1143,1142,0,1092,1106,1105],[1131,1143,1129,0,1094,1106,1092],[1131,1144,1143,0,1094,1107,1106],[1133,1144,1131,0,1096,1107,1094],[1133,1145,1144,0,1096,1108,1107],[1133,1135,1145,0,1096,1098,1108],[1134,1135,1133,0,1097,1098,1096],[1135,1146,1145,0,1098,1109,1108],[1135,1136,1146,0,1098,1099,1109],[1136,1137,1146,0,1099,1100,1109],[1146,1137,1147,0,1109,1100,1110],[1137,1148,1147,0,1100,1111,1110],[1137,1138,1148,0,1100,1101,1111],[1138,1149,1148,0,1101,1112,1111],[1138,1139,1149,0,1101,1102,1112],[1149,1139,1150,0,1112,1102,1113],[1139,1140,1150,0,1102,1103,1113],[1150,1140,1151,0,1113,1103,1114],[1141,1151,1140,0,1104,1114,1103],[1141,1152,1151,0,1104,1115,1114],[1142,1152,1141,0,1105,1115,1104],[1142,1153,1152,0,1105,1116,1115],[1143,1153,1142,0,1106,1116,1105],[1143,1154,1153,0,1106,1117,1116],[1144,1154,1143,0,1107,1117,1106],[1144,1155,1154,0,1107,1118,1117],[1145,1155,1144,0,1108,1118,1107],[1145,1156,1155,0,1108,1119,1118],[1145,1146,1156,0,1108,1109,1119],[1146,1147,1156,0,1109,1110,1119],[1156,1147,1157,0,1119,1110,1120],[1147,1158,1157,0,1110,1121,1120],[1147,1148,1158,0,1110,1111,1121],[1148,1159,1158,0,1111,1122,1121],[1148,1149,1159,0,1111,1112,1122],[1149,1160,1159,0,1112,1123,1122],[1149,1150,1160,0,1112,1113,1123],[1160,1150,1161,0,1123,1113,1124],[1150,1151,1161,0,1113,1114,1124],[1161,1151,1162,0,1124,1114,1125],[1152,1162,1151,0,1115,1125,1114],[1152,1163,1162,0,1115,1126,1125],[1153,1163,1152,0,1116,1126,1115],[1153,1164,1163,0,1116,1127,1126],[1154,1164,1153,0,1117,1127,1116],[1154,1165,1164,0,1117,1128,1127],[1155,1165,1154,0,1118,1128,1117],[1166,1165,1155,0,1129,1128,1118],[1167,1165,1166,0,1130,1128,1129],[1168,1165,1167,0,1131,1128,1130],[1168,1164,1165,0,1131,1127,1128],[1168,1169,1164,0,1131,1132,1127],[1168,1170,1169,0,1131,1133,1132],[1168,1171,1170,0,1131,1134,1133],[1167,1171,1168,0,1130,1134,1131],[1167,1172,1171,0,1130,1135,1134],[1173,1172,1167,0,1136,1135,1130],[1174,1172,1173,0,1137,1135,1136],[1175,1172,1174,0,1138,1135,1137],[1175,1171,1172,0,1138,1134,1135],[1170,1171,1175,0,1133,1134,1138],[1176,1170,1175,0,1139,1133,1138],[1169,1170,1176,0,1132,1133,1139],[1169,1176,1177,0,1132,1139,1140],[1178,1177,1176,0,1141,1140,1139],[1178,1179,1177,0,1141,1142,1140],[1180,1179,1178,0,1143,1142,1141],[1180,1181,1179,0,1143,1144,1142],[1181,1180,1182,0,1144,1143,1145],[1180,1175,1182,0,1143,1138,1145],[1178,1175,1180,0,1141,1138,1143],[1178,1176,1175,0,1141,1139,1138],[1182,1175,1183,0,1145,1138,1146],[1175,1184,1183,0,1138,1147,1146],[1175,1174,1184,0,1138,1137,1147],[1184,1174,1185,0,1147,1137,1148],[1185,1174,1173,0,1148,1137,1136],[1185,1173,1157,0,1148,1136,1120],[1173,1166,1157,0,1136,1129,1120],[1167,1166,1173,0,1130,1129,1136],[1157,1166,1156,0,1120,1129,1119],[1156,1166,1155,0,1119,1129,1118],[1158,1185,1157,0,1121,1148,1120],[1186,1185,1158,0,1149,1148,1121],[1185,1186,1184,0,1148,1149,1147],[1186,1183,1184,0,1149,1146,1147],[1186,1187,1183,0,1149,1150,1146],[1159,1187,1186,0,1122,1150,1149],[1160,1187,1159,0,1123,1150,1122],[1160,1181,1187,0,1123,1144,1150],[1160,1161,1181,0,1123,1124,1144],[1181,1161,1179,0,1144,1124,1142],[1161,1162,1179,0,1124,1125,1142],[1179,1162,1177,0,1142,1125,1140],[1177,1162,1163,0,1140,1125,1126],[1169,1177,1163,0,1132,1140,1126],[1169,1163,1164,0,1132,1126,1127],[1187,1181,1182,0,1150,1144,1145],[1187,1182,1183,0,1150,1145,1146],[1159,1186,1158,0,1122,1149,1121],[1188,1102,1132,0,1151,1065,1095],[1101,1102,1188,0,1064,1065,1151],[1101,1188,1100,0,1064,1151,1063],[1188,1130,1100,0,1151,1093,1063],[1188,1132,1130,0,1151,1095,1093],[1100,1130,1099,0,1063,1093,1062],[1074,1076,1073,0,1037,1039,1036],[1035,1038,1088,0,998,1001,1051],[1035,1088,1034,0,998,1051,997],[1034,1088,1084,0,997,1051,1047],[1022,1023,1075,0,985,986,1038],[1022,1075,1021,0,985,1038,984],[1021,1075,1031,0,984,1038,994],[1031,1075,1036,0,994,1038,999],[1036,1032,1031,0,999,995,994],[1021,1031,1020,0,984,994,983],[122,120,121,0,84,82,83],[97,98,123,0,59,60,85],[58,59,94,0,20,21,56],[94,92,58,0,56,54,20],[58,92,91,0,20,54,53],[58,91,57,0,20,53,19],[57,91,1189,0,19,53,1152],[1189,91,90,0,1152,53,52],[24,1189,90,0,1153,1152,52],[21,24,90,0,1154,1153,52],[21,90,88,0,1154,52,50],[19,21,88,0,16,1154,50],[19,88,18,0,16,50,15],[65,66,68,0,27,28,30],[66,67,68,0,28,29,30],[12,56,11,0,9,17,8],[4,5,3,1,4,1155,3],[4,6,5,1,4,1156,1155],[7,6,4,1,7,1156,4],[7,8,6,1,7,1157,1156],[9,7,8,1,6,7,1157],[20,19,1,1,1158,16,1],[20,21,19,1,1158,1154,16],[22,21,20,1,1159,1154,1158],[23,21,22,1,1160,1154,1159],[23,24,21,1,1160,1153,1154],[23,25,24,1,1160,1161,1153],[23,26,25,1,1160,1162,1161],[23,27,26,1,1160,1163,1162],[23,28,27,1,1160,1164,1163],[23,29,28,1,1160,1165,1164],[22,29,23,1,1159,1165,1160],[30,29,22,1,1166,1165,1159],[30,31,29,1,1166,1167,1165],[30,32,31,1,1166,1168,1167],[33,32,30,1,1169,1168,1166],[33,34,32,1,1169,1170,1168],[35,34,33,1,1171,1170,1169],[35,36,34,1,1171,1172,1170],[35,37,36,1,1171,1173,1172],[37,35,5,1,1173,1171,1155],[35,33,5,1,1171,1169,1155],[5,33,30,1,1155,1169,1166],[5,30,3,1,1155,1166,3],[30,1,3,1,1166,1,3],[30,22,1,1,1166,1159,1],[22,20,1,1,1159,1158,1],[6,37,5,1,1156,1173,1155],[6,38,37,1,1156,1174,1173],[6,39,38,1,1156,1175,1174],[8,39,6,1,1157,1175,1156],[8,40,39,1,1157,1176,1175],[41,40,8,1,1177,1176,1157],[42,40,41,1,1178,1176,1177],[42,43,40,1,1178,1179,1176],[42,44,43,1,1178,1180,1179],[45,44,42,1,1181,1180,1178],[45,46,44,1,1181,1182,1180],[46,45,47,1,1182,1181,1183],[47,45,48,1,1183,1181,1184],[45,49,48,1,1181,1185,1184],[45,50,49,1,1181,1186,1185],[45,51,50,1,1181,1187,1186],[45,42,51,1,1181,1178,1187],[42,41,51,1,1178,1177,1187],[51,41,52,1,1187,1177,1188],[52,41,8,1,1188,1177,1157],[9,8,52,1,6,1157,1188],[53,52,9,1,1189,1188,6],[53,51,52,1,1189,1187,1188],[50,51,53,1,1186,1187,1189],[49,50,53,1,1185,1186,1189],[49,53,54,1,1185,1189,1190],[53,55,54,1,1189,18,1190],[53,11,55,1,1189,8,18],[53,9,11,1,1189,6,8],[1189,24,25,1,1152,1153,1161],[1190,1189,25,1,1191,1152,1161],[57,1189,1190,1,19,1152,1191],[1191,57,1190,1,1192,19,1191],[1191,55,57,1,1192,18,19],[54,55,1191,1,1190,18,1192],[1192,54,1191,1,1193,1190,1192],[49,54,1192,1,1185,1190,1193],[48,49,1192,1,1184,1185,1193],[48,1192,1193,1,1184,1193,1194],[1192,1191,1193,1,1193,1192,1194],[1193,1191,1194,1,1194,1192,1195],[1194,1191,1190,1,1195,1192,1191],[1194,1190,1195,1,1195,1191,1196],[1190,1196,1195,1,1191,1197,1196],[1190,25,1196,1,1191,1161,1197],[1196,25,1197,1,1197,1161,1198],[1197,25,26,1,1198,1161,1162],[26,1198,1197,1,1162,1199,1198],[27,1198,26,1,1163,1199,1162],[27,1199,1198,1,1163,1200,1199],[28,1199,27,1,1164,1200,1163],[28,1200,1199,1,1164,1201,1200],[28,1201,1200,1,1164,1202,1201],[29,1201,28,1,1165,1202,1164],[31,1201,29,1,1167,1202,1165],[31,1202,1201,1,1167,1203,1202],[31,1203,1202,1,1167,1204,1203],[32,1203,31,1,1168,1204,1167],[34,1203,32,1,1170,1204,1168],[1204,1203,34,1,1205,1204,1170],[1204,1205,1203,1,1205,1206,1204],[1206,1205,1204,1,1207,1206,1205],[1206,1207,1205,1,1207,1208,1206],[1208,1207,1206,1,1209,1208,1207],[1208,1209,1207,1,1209,1210,1208],[1210,1209,1208,1,1211,1210,1209],[1210,1211,1209,1,1211,1212,1210],[1212,1211,1210,1,1213,1212,1211],[1212,1213,1211,1,1213,1214,1212],[1214,1213,1212,1,1215,1214,1213],[1214,1215,1213,1,1215,1216,1214],[1214,1216,1215,1,1215,1217,1216],[1214,1217,1216,1,1215,1218,1217],[1218,1217,1214,1,1219,1218,1215],[1218,1219,1217,1,1219,1220,1218],[1220,1219,1218,1,1221,1220,1219],[1221,1219,1220,1,1222,1220,1221],[1222,1219,1221,1,1223,1220,1222],[1223,1219,1222,1,1224,1220,1223],[1219,1223,1217,1,1220,1224,1218],[1223,1224,1217,1,1224,1225,1218],[1225,1224,1223,1,1226,1225,1224],[1226,1224,1225,1,1227,1225,1226],[1227,1224,1226,1,1228,1225,1227],[1216,1224,1227,1,1217,1225,1228],[1217,1224,1216,1,1218,1225,1217],[1216,1227,1228,1,1217,1228,1229],[1228,1227,1229,1,1229,1228,1230],[1227,1230,1229,1,1228,1231,1230],[1227,1226,1230,1,1228,1227,1231],[1231,1230,1226,1,1232,1231,1227],[1232,1230,1231,1,1233,1231,1232],[1232,1233,1230,1,1233,1234,1231],[1234,1233,1232,1,1235,1234,1233],[1233,1234,1235,1,1234,1235,1236],[1234,1236,1235,1,1235,1237,1236],[1237,1236,1234,1,1238,1237,1235],[1237,1238,1236,1,1238,1239,1237],[1237,1239,1238,1,1238,1240,1239],[1240,1239,1237,1,1241,1240,1238],[1240,1199,1239,1,1241,1200,1240],[1198,1199,1240,1,1199,1200,1241],[1241,1198,1240,1,1242,1199,1241],[1197,1198,1241,1,1198,1199,1242],[1196,1197,1241,1,1197,1198,1242],[1242,1196,1241,1,1243,1197,1242],[1195,1196,1242,1,1196,1197,1243],[1195,1242,1243,1,1196,1243,1244],[1243,1242,1244,1,1244,1243,1245],[1244,1242,1245,1,1245,1243,1246],[1242,1246,1245,1,1243,1247,1246],[1242,1241,1246,1,1243,1242,1247],[1246,1241,1247,1,1247,1242,1248],[1241,1248,1247,1,1242,1249,1248],[1241,1240,1248,1,1242,1241,1249],[1248,1240,1237,1,1249,1241,1238],[1248,1237,1249,1,1249,1238,1250],[1249,1237,1250,1,1250,1238,1251],[1250,1237,1234,1,1251,1238,1235],[1250,1234,1251,1,1251,1235,1252],[1234,1232,1251,1,1235,1233,1252],[1251,1232,1252,1,1252,1233,1253],[1232,1231,1252,1,1233,1232,1253],[1231,1253,1252,1,1232,1254,1253],[1231,1254,1253,1,1232,1255,1254],[1231,1226,1254,1,1232,1227,1255],[1226,1225,1254,1,1227,1226,1255],[1253,1254,1225,1,1254,1255,1226],[1253,1225,1255,1,1254,1226,1256],[1256,1255,1225,1,1257,1256,1226],[1257,1255,1256,1,1258,1256,1257],[1253,1255,1257,1,1254,1256,1258],[1258,1253,1257,1,1259,1254,1258],[1259,1253,1258,1,1260,1254,1259],[1252,1253,1259,1,1253,1254,1260],[1252,1259,1260,1,1253,1260,1261],[1260,1259,1261,1,1261,1260,1262],[1258,1261,1259,1,1259,1262,1260],[1258,1262,1261,1,1259,1263,1262],[1258,1263,1262,1,1259,1264,1263],[1258,1264,1263,1,1259,1265,1264],[1257,1264,1258,1,1258,1265,1259],[1257,1265,1264,1,1258,1266,1265],[1257,1266,1265,1,1258,1267,1266],[1267,1266,1257,1,1268,1267,1258],[1268,1266,1267,1,1269,1267,1268],[1268,1269,1266,1,1269,1270,1267],[1270,1269,1268,1,1271,1270,1269],[1271,1269,1270,1,1272,1270,1271],[1272,1269,1271,1,1273,1270,1272],[1273,1269,1272,1,1274,1270,1273],[1273,1274,1269,1,1274,1275,1270],[1273,1275,1274,1,1274,1276,1275],[1276,1275,1273,1,1277,1276,1274],[1277,1275,1276,1,1278,1276,1277],[1278,1275,1277,1,1279,1276,1278],[1278,1279,1275,1,1279,1280,1276],[1264,1279,1278,1,1265,1280,1279],[1265,1279,1264,1,1266,1280,1265],[1266,1279,1265,1,1267,1280,1266],[1266,1274,1279,1,1267,1275,1280],[1266,1269,1274,1,1267,1270,1275],[1275,1279,1274,1,1276,1280,1275],[1264,1278,1280,1,1265,1279,1281],[1280,1278,1277,1,1281,1279,1278],[1281,1280,1277,1,1282,1281,1278],[1261,1280,1281,1,1262,1281,1282],[1262,1280,1261,1,1263,1281,1262],[1263,1280,1262,1,1264,1281,1263],[1264,1280,1263,1,1265,1281,1264],[1282,1261,1281,1,1283,1262,1282],[1260,1261,1282,1,1261,1262,1283],[1260,1282,1283,1,1261,1283,1284],[1282,1284,1283,1,1283,1285,1284],[1282,1281,1284,1,1283,1282,1285],[1284,1281,1277,1,1285,1282,1278],[1284,1277,1285,1,1285,1278,1286],[1285,1277,1276,1,1286,1278,1277],[1286,1285,1276,1,1287,1286,1277],[1286,1287,1285,1,1287,1288,1286],[1288,1287,1286,1,1289,1288,1287],[1283,1287,1288,1,1284,1288,1289],[1283,1285,1287,1,1284,1286,1288],[1283,1284,1285,1,1284,1285,1286],[1289,1283,1288,1,1290,1284,1289],[1260,1283,1289,1,1261,1284,1290],[1290,1260,1289,1,1291,1261,1290],[1291,1260,1290,1,1292,1261,1291],[1292,1260,1291,1,1293,1261,1292],[1292,1251,1260,1,1293,1252,1261],[1293,1251,1292,1,1294,1252,1293],[1293,1250,1251,1,1294,1251,1252],[1249,1250,1293,1,1250,1251,1294],[1248,1249,1293,1,1249,1250,1294],[1247,1248,1293,1,1248,1249,1294],[1247,1293,1292,1,1248,1294,1293],[1294,1247,1292,1,1295,1248,1293],[1246,1247,1294,1,1247,1248,1295],[1245,1246,1294,1,1246,1247,1295],[1245,1294,1295,1,1246,1295,1296],[1295,1294,1296,1,1296,1295,1297],[1294,1292,1296,1,1295,1293,1297],[1296,1292,1291,1,1297,1293,1292],[1296,1291,1297,1,1297,1292,1298],[1297,1291,1298,1,1298,1292,1299],[1291,1290,1298,1,1292,1291,1299],[1298,1290,1299,1,1299,1291,1300],[1299,1290,1300,1,1300,1291,1301],[1300,1290,1289,1,1301,1291,1290],[1300,1289,1301,1,1301,1290,1302],[1289,1288,1301,1,1290,1289,1302],[1301,1288,1302,1,1302,1289,1303],[1302,1288,1303,1,1303,1289,1304],[1288,1286,1303,1,1289,1287,1304],[1303,1286,1304,1,1304,1287,1305],[1304,1286,1305,1,1305,1287,1306],[1305,1286,1306,1,1306,1287,1307],[1286,1276,1306,1,1287,1277,1307],[1276,1273,1306,1,1277,1274,1307],[1306,1273,1307,1,1307,1274,1308],[1307,1273,1272,1,1308,1274,1273],[1307,1272,1308,1,1308,1273,1309],[1308,1272,1271,1,1309,1273,1272],[1308,1271,1309,1,1309,1272,1310],[1309,1271,1310,1,1310,1272,1311],[1310,1271,1267,1,1311,1272,1268],[1271,1270,1267,1,1272,1271,1268],[1270,1268,1267,1,1271,1269,1268],[1310,1267,1256,1,1311,1268,1257],[1267,1257,1256,1,1268,1258,1257],[1310,1256,1311,1,1311,1257,1312],[1256,1222,1311,1,1257,1223,1312],[1256,1312,1222,1,1257,1313,1223],[1256,1225,1312,1,1257,1226,1313],[1312,1225,1223,1,1313,1226,1224],[1312,1223,1222,1,1313,1224,1223],[1311,1222,1221,1,1312,1223,1222],[1311,1221,1313,1,1312,1222,1314],[1313,1221,1314,1,1314,1222,1315],[1221,1220,1314,1,1222,1221,1315],[1314,1220,1315,1,1315,1221,1316],[1315,1220,1316,1,1316,1221,1317],[1316,1220,1317,1,1317,1221,1318],[1317,1220,1218,1,1318,1221,1219],[1317,1218,1318,1,1318,1219,1319],[1318,1218,1319,1,1319,1219,1320],[1218,1214,1319,1,1219,1215,1320],[1319,1214,1212,1,1320,1215,1213],[1212,1210,1319,1,1213,1211,1320],[1319,1210,1318,1,1320,1211,1319],[1320,1318,1210,1,1321,1319,1211],[1316,1318,1320,1,1317,1319,1321],[1316,1317,1318,1,1317,1318,1319],[1315,1316,1320,1,1316,1317,1321],[1315,1320,1208,1,1316,1321,1209],[1320,1210,1208,1,1321,1211,1209],[1314,1315,1208,1,1315,1316,1209],[1314,1208,1206,1,1315,1209,1207],[1314,1206,1321,1,1315,1207,1322],[1321,1206,1322,1,1322,1207,1323],[1322,1206,1323,1,1323,1207,1324],[1323,1206,1204,1,1324,1207,1205],[1323,1204,36,1,1324,1205,1172],[36,1204,34,1,1172,1205,1170],[1324,1323,36,1,1325,1324,1172],[1325,1323,1324,1,1326,1324,1325],[1325,1322,1323,1,1326,1323,1324],[1325,1321,1322,1,1326,1322,1323],[1313,1321,1325,1,1314,1322,1326],[1313,1314,1321,1,1314,1315,1322],[1326,1313,1325,1,1327,1314,1326],[1309,1313,1326,1,1310,1314,1327],[1309,1311,1313,1,1310,1312,1314],[1309,1310,1311,1,1310,1311,1312],[1327,1309,1326,1,1328,1310,1327],[1328,1309,1327,1,1329,1310,1328],[1329,1309,1328,1,1330,1310,1329],[1329,1330,1309,1,1330,1331,1310],[1304,1330,1329,1,1305,1331,1330],[1304,1305,1330,1,1305,1306,1331],[1305,1306,1330,1,1306,1307,1331],[1330,1306,1307,1,1331,1307,1308],[1330,1307,1308,1,1331,1308,1309],[1309,1330,1308,1,1310,1331,1309],[1331,1304,1329,1,1332,1305,1330],[1302,1304,1331,1,1303,1305,1332],[1302,1303,1304,1,1303,1304,1305],[1332,1302,1331,1,1333,1303,1332],[1301,1302,1332,1,1302,1303,1333],[1333,1301,1332,1,1334,1302,1333],[1334,1301,1333,1,1335,1302,1334],[1300,1301,1334,1,1301,1302,1335],[1335,1300,1334,1,1336,1301,1335],[1336,1300,1335,1,1337,1301,1336],[1299,1300,1336,1,1300,1301,1337],[1337,1299,1336,1,1338,1300,1337],[1337,1338,1299,1,1338,1339,1300],[1337,1339,1338,1,1338,1340,1339],[1337,1340,1339,1,1338,1341,1340],[1341,1340,1337,1,1342,1341,1338],[1342,1340,1341,1,1343,1341,1342],[1343,1340,1342,1,1344,1341,1343],[1344,1340,1343,1,1345,1341,1344],[1340,1344,1339,1,1341,1345,1340],[1344,1338,1339,1,1345,1339,1340],[1345,1338,1344,1,1346,1339,1345],[1345,1298,1338,1,1346,1299,1339],[1297,1298,1345,1,1298,1299,1346],[1346,1297,1345,1,1347,1298,1346],[1295,1297,1346,1,1296,1298,1347],[1295,1296,1297,1,1296,1297,1298],[1347,1295,1346,1,1348,1296,1347],[1347,1245,1295,1,1348,1246,1296],[1348,1245,1347,1,1349,1246,1348],[1244,1245,1348,1,1245,1246,1349],[1349,1244,1348,1,1350,1245,1349],[1350,1244,1349,1,1351,1245,1350],[1350,1243,1244,1,1351,1244,1245],[1350,1351,1243,1,1351,1352,1244],[1352,1351,1350,1,1353,1352,1351],[1353,1351,1352,1,1354,1352,1353],[1353,1354,1351,1,1354,1355,1352],[1353,1355,1354,1,1354,1356,1355],[1356,1355,1353,1,1357,1356,1354],[1355,1356,1357,1,1356,1357,1358],[1356,1358,1357,1,1357,1359,1358],[1356,1359,1358,1,1357,1360,1359],[1360,1359,1356,1,1361,1360,1357],[1360,1361,1359,1,1361,1362,1360],[1362,1361,1360,1,1363,1362,1361],[1361,1362,1363,1,1362,1363,1364],[1362,1364,1363,1,1363,1365,1364],[1364,1362,1353,1,1365,1363,1354],[1362,1360,1353,1,1363,1361,1354],[1353,1360,1356,1,1354,1361,1357],[1363,1364,1353,1,1364,1365,1354],[1363,1353,1352,1,1364,1354,1353],[1363,1352,1361,1,1364,1353,1362],[1361,1352,1350,1,1362,1353,1351],[1361,1350,1359,1,1362,1351,1360],[1359,1350,1358,1,1360,1351,1359],[1350,1349,1358,1,1351,1350,1359],[1357,1358,1349,1,1358,1359,1350],[1357,1349,1348,1,1358,1350,1349],[1357,1348,1365,1,1358,1349,1366],[1348,1347,1365,1,1349,1348,1366],[1347,1366,1365,1,1348,1367,1366],[1347,1367,1366,1,1348,1368,1367],[1347,1368,1367,1,1348,1369,1368],[1347,1346,1368,1,1348,1347,1369],[1368,1346,1369,1,1369,1347,1370],[1346,1345,1369,1,1347,1346,1370],[1369,1345,1344,1,1370,1346,1345],[1369,1344,1343,1,1370,1345,1344],[1369,1343,1370,1,1370,1344,1371],[1370,1343,1342,1,1371,1344,1343],[1342,1371,1370,1,1343,1372,1371],[1342,1372,1371,1,1343,1373,1372],[1373,1372,1342,1,1374,1373,1343],[1374,1372,1373,1,1375,1373,1374],[1375,1372,1374,1,1376,1373,1375],[1371,1372,1375,1,1372,1373,1376],[1376,1371,1375,1,1377,1372,1376],[1370,1371,1376,1,1371,1372,1377],[1369,1370,1376,1,1370,1371,1377],[1369,1376,1367,1,1370,1377,1368],[1367,1376,1377,1,1368,1377,1378],[1376,1378,1377,1,1377,1379,1378],[1376,1375,1378,1,1377,1376,1379],[1375,1379,1378,1,1376,1380,1379],[1379,1375,1374,1,1380,1376,1375],[1374,1336,1379,1,1375,1337,1380],[1374,1373,1336,1,1375,1374,1337],[1336,1373,1380,1,1337,1374,1381],[1380,1373,1341,1,1381,1374,1342],[1341,1373,1342,1,1342,1374,1343],[1380,1341,1337,1,1381,1342,1338],[1336,1380,1337,1,1337,1381,1338],[1336,1335,1379,1,1337,1336,1380],[1335,1381,1379,1,1336,1382,1380],[1335,1334,1381,1,1336,1335,1382],[1381,1334,1382,1,1382,1335,1383],[1334,1333,1382,1,1335,1334,1383],[1333,1383,1382,1,1334,1384,1383],[1333,1332,1383,1,1334,1333,1384],[1383,1332,1384,1,1384,1333,1385],[1332,1331,1384,1,1333,1332,1385],[1384,1331,1385,1,1385,1332,1386],[1385,1331,1386,1,1386,1332,1387],[1386,1331,1329,1,1387,1332,1330],[1386,1329,1328,1,1387,1330,1329],[1386,1328,1387,1,1387,1329,1388],[1387,1328,1388,1,1388,1329,1389],[1388,1328,1327,1,1389,1329,1328],[1389,1388,1327,1,1390,1389,1328],[1390,1388,1389,1,1391,1389,1390],[1390,1391,1388,1,1391,1392,1389],[1392,1391,1390,1,1393,1392,1391],[1392,1393,1391,1,1393,1394,1392],[1392,1394,1393,1,1393,1395,1394],[1395,1394,1392,1,1396,1395,1393],[1396,1394,1395,1,1397,1395,1396],[1397,1394,1396,1,1398,1395,1397],[1394,1397,1398,1,1395,1398,1399],[1397,1399,1398,1,1398,1400,1399],[1400,1399,1397,1,1401,1400,1398],[1401,1400,1402,1,1402,1401,1403],[1402,1400,1403,1,1403,1401,1404],[1396,1403,1400,1,1397,1404,1401],[1404,1403,1396,1,1405,1404,1397],[1405,1403,1404,1,1406,1404,1405],[1405,1402,1403,1,1406,1403,1404],[1405,1406,1402,1,1406,1407,1403],[1407,1406,1405,1,1408,1407,1406],[1407,1408,1406,1,1408,1409,1407],[1409,1408,1407,1,1410,1409,1408],[1410,1408,1409,1,1411,1409,1410],[1410,1411,1408,1,1411,1412,1409],[1410,1383,1411,1,1411,1384,1412],[1412,1383,1410,1,1413,1384,1411],[1413,1383,1412,1,1414,1384,1413],[1413,1382,1383,1,1414,1383,1384],[1381,1382,1413,1,1382,1383,1414],[1414,1381,1413,1,1415,1382,1414],[1378,1381,1414,1,1379,1382,1415],[1379,1381,1378,1,1380,1382,1379],[1377,1378,1414,1,1378,1379,1415],[1377,1414,1415,1,1378,1415,1416],[1416,1415,1414,1,1417,1416,1415],[1366,1415,1416,1,1367,1416,1417],[1366,1377,1415,1,1367,1378,1416],[1366,1367,1377,1,1367,1368,1378],[1365,1366,1416,1,1366,1367,1417],[1365,1416,1417,1,1366,1417,1418],[1417,1416,1418,1,1418,1417,1419],[1416,1413,1418,1,1417,1414,1419],[1416,1414,1413,1,1417,1415,1414],[1419,1418,1413,1,1420,1419,1414],[1420,1418,1419,1,1421,1419,1420],[1421,1418,1420,1,1422,1419,1421],[1417,1418,1421,1,1418,1419,1422],[1417,1421,1422,1,1418,1422,1423],[1422,1421,1423,1,1423,1422,1424],[1423,1421,1420,1,1424,1422,1421],[1423,1420,1424,1,1424,1421,1425],[1424,1420,1425,1,1425,1421,1426],[1420,1419,1425,1,1421,1420,1426],[1419,1410,1425,1,1420,1411,1426],[1419,1412,1410,1,1420,1413,1411],[1413,1412,1419,1,1414,1413,1420],[1426,1425,1410,1,1427,1426,1411],[1427,1425,1426,1,1428,1426,1427],[1427,1424,1425,1,1428,1425,1426],[1428,1424,1427,1,1429,1425,1428],[1423,1424,1428,1,1424,1425,1429],[1429,1423,1428,1,1430,1424,1429],[1429,1430,1423,1,1430,1431,1424],[1431,1430,1429,1,1432,1431,1430],[1431,1432,1430,1,1432,1433,1431],[1431,1433,1432,1,1432,1434,1433],[1434,1433,1431,1,1435,1434,1432],[1434,1435,1433,1,1435,1436,1434],[1434,47,1435,1,1435,1183,1436],[1434,46,47,1,1435,1182,1183],[1436,46,1434,1,1437,1182,1435],[46,1436,1437,1,1182,1437,1438],[1437,1436,1431,1,1438,1437,1432],[1436,1434,1431,1,1437,1435,1432],[1437,1431,1438,1,1438,1432,1439],[1438,1431,1429,1,1439,1432,1430],[1438,1429,1439,1,1439,1430,1440],[1439,1429,1440,1,1440,1430,1441],[1429,1428,1440,1,1430,1429,1441],[1440,1428,1427,1,1441,1429,1428],[1440,1427,1441,1,1441,1428,1442],[1427,1426,1441,1,1428,1427,1442],[1441,1426,1442,1,1442,1427,1443],[1426,1443,1442,1,1427,1444,1443],[1426,1409,1443,1,1427,1410,1444],[1426,1410,1409,1,1427,1411,1410],[1443,1409,1444,1,1444,1410,1445],[1409,1407,1444,1,1410,1408,1445],[1444,1407,1445,1,1445,1408,1446],[1407,1405,1445,1,1408,1406,1446],[1405,1404,1445,1,1406,1405,1446],[1445,1404,1446,1,1446,1405,1447],[1446,1404,1396,1,1447,1405,1397],[1396,1395,1446,1,1397,1396,1447],[1447,1446,1395,1,1448,1447,1396],[1445,1446,1447,1,1446,1447,1448],[1448,1445,1447,1,1449,1446,1448],[1444,1445,1448,1,1445,1446,1449],[1442,1444,1448,1,1443,1445,1449],[1443,1444,1442,1,1444,1445,1443],[1442,1448,1449,1,1443,1449,1450],[1449,1448,1450,1,1450,1449,1451],[1448,1447,1450,1,1449,1448,1451],[1450,1447,1451,1,1451,1448,1452],[1447,1390,1451,1,1448,1391,1452],[1447,1392,1390,1,1448,1393,1391],[1447,1395,1392,1,1448,1396,1393],[1451,1390,1389,1,1452,1391,1390],[1451,1389,1452,1,1452,1390,1453],[1452,1389,1453,1,1453,1390,1454],[1389,1327,1453,1,1390,1328,1454],[1453,1327,1326,1,1454,1328,1327],[1453,1326,1454,1,1454,1327,1455],[1454,1326,1324,1,1455,1327,1325],[1326,1325,1324,1,1327,1326,1325],[1454,1324,1455,1,1455,1325,1456],[1455,1324,36,1,1456,1325,1172],[1456,1455,36,1,1457,1456,1172],[1457,1455,1456,1,1458,1456,1457],[1457,1454,1455,1,1458,1455,1456],[1452,1454,1457,1,1453,1455,1458],[1452,1453,1454,1,1453,1454,1455],[1449,1452,1457,1,1450,1453,1458],[1449,1451,1452,1,1450,1452,1453],[1449,1450,1451,1,1450,1451,1452],[1458,1449,1457,1,1459,1450,1458],[1441,1449,1458,1,1442,1450,1459],[1441,1442,1449,1,1442,1443,1450],[1459,1441,1458,1,1460,1442,1459],[1460,1441,1459,1,1461,1442,1460],[1440,1441,1460,1,1441,1442,1461],[1439,1440,1460,1,1440,1441,1461],[1439,1460,1461,1,1440,1461,1462],[1461,1460,1459,1,1462,1461,1460],[1461,1459,1462,1,1462,1460,1463],[1463,1462,1459,1,1464,1463,1460],[1464,1462,1463,1,1465,1463,1464],[1464,1465,1462,1,1465,1466,1463],[44,1465,1464,1,1180,1466,1465],[44,1437,1465,1,1180,1438,1466],[46,1437,44,1,1182,1438,1180],[1465,1437,1438,1,1466,1438,1439],[1465,1438,1466,1,1466,1439,1467],[1466,1438,1439,1,1467,1439,1440],[1466,1439,1461,1,1467,1440,1462],[1465,1466,1461,1,1466,1467,1462],[1465,1461,1462,1,1466,1462,1463],[44,1464,43,1,1180,1465,1179],[1464,1467,43,1,1465,1468,1179],[1464,1463,1467,1,1465,1464,1468],[1467,1463,1459,1,1468,1464,1460],[1467,1459,1468,1,1468,1460,1469],[1469,1468,1459,1,1470,1469,1460],[1468,1469,1470,1,1469,1470,1471],[1469,1471,1470,1,1470,1472,1471],[1472,1471,1469,1,1473,1472,1470],[1473,1471,1472,1,1474,1472,1473],[1473,1474,1471,1,1474,1475,1472],[1474,1473,1475,1,1475,1474,1476],[1473,1476,1475,1,1474,1477,1476],[1473,1477,1476,1,1474,1478,1477],[1472,1477,1473,1,1473,1478,1474],[1472,1478,1477,1,1473,1479,1478],[1472,1469,1478,1,1473,1470,1479],[1469,1459,1478,1,1470,1460,1479],[1478,1459,1479,1,1479,1460,1480],[1459,1458,1479,1,1460,1459,1480],[1458,1480,1479,1,1459,1481,1480],[1458,1457,1480,1,1459,1458,1481],[1480,1457,1456,1,1481,1458,1457],[1480,1456,1481,1,1481,1457,1482],[1481,1456,38,1,1482,1457,1174],[38,1456,37,1,1174,1457,1173],[1456,36,37,1,1457,1172,1173],[1482,1481,38,1,1483,1482,1174],[1483,1481,1482,1,1484,1482,1483],[1477,1481,1483,1,1478,1482,1484],[1477,1480,1481,1,1478,1481,1482],[1479,1480,1477,1,1480,1481,1478],[1478,1479,1477,1,1479,1480,1478],[1477,1483,1476,1,1478,1484,1477],[1476,1483,1470,1,1477,1484,1471],[1470,1483,1482,1,1471,1484,1483],[1468,1470,1482,1,1469,1471,1483],[39,1468,1482,1,1175,1469,1483],[40,1468,39,1,1176,1469,1175],[40,1467,1468,1,1176,1468,1469],[43,1467,40,1,1179,1468,1176],[1482,38,39,1,1483,1174,1175],[1470,1475,1476,1,1471,1476,1477],[1484,1475,1470,1,1485,1476,1471],[1484,1474,1475,1,1485,1475,1476],[1474,1484,1470,1,1475,1485,1471],[1471,1474,1470,1,1472,1475,1471],[1435,47,1485,1,1436,1183,1486],[47,1486,1485,1,1183,1487,1486],[47,48,1486,1,1183,1184,1487],[48,1193,1486,1,1184,1194,1487],[1487,1486,1193,1,1488,1487,1194],[1485,1486,1487,1,1486,1487,1488],[1485,1487,1488,1,1486,1488,1489],[1487,1357,1488,1,1488,1358,1489],[1487,1355,1357,1,1488,1356,1358],[1487,1193,1355,1,1488,1194,1356],[1355,1193,1194,1,1356,1194,1195],[1355,1194,1354,1,1356,1195,1355],[1194,1195,1354,1,1195,1196,1355],[1354,1195,1243,1,1355,1196,1244],[1354,1243,1351,1,1355,1244,1352],[1488,1357,1489,1,1489,1358,1490],[1489,1357,1490,1,1490,1358,1491],[1357,1491,1490,1,1358,1492,1491],[1357,1365,1491,1,1358,1366,1492],[1491,1365,1492,1,1492,1366,1493],[1365,1417,1492,1,1366,1418,1493],[1492,1417,1422,1,1493,1418,1423],[1492,1422,1432,1,1493,1423,1433],[1432,1422,1423,1,1433,1423,1424],[1430,1432,1423,1,1431,1433,1424],[1432,1493,1492,1,1433,1494,1493],[1433,1493,1432,1,1434,1494,1433],[1433,1494,1493,1,1434,1495,1494],[1433,1435,1494,1,1434,1436,1495],[1435,1490,1494,1,1436,1491,1495],[1435,1489,1490,1,1436,1490,1491],[1485,1489,1435,1,1486,1490,1436],[1485,1488,1489,1,1486,1489,1490],[1494,1490,1493,1,1495,1491,1494],[1490,1491,1493,1,1491,1492,1494],[1491,1492,1493,1,1492,1493,1494],[1383,1384,1411,1,1384,1385,1412],[1411,1384,1385,1,1412,1385,1386],[1411,1385,1408,1,1412,1386,1409],[1408,1385,1495,1,1409,1386,1496],[1495,1385,1386,1,1496,1386,1387],[1495,1386,1401,1,1496,1387,1402],[1401,1386,1387,1,1402,1387,1388],[1401,1387,1398,1,1402,1388,1399],[1398,1387,1391,1,1399,1388,1392],[1387,1388,1391,1,1388,1389,1392],[1398,1391,1393,1,1399,1392,1394],[1394,1398,1393,1,1395,1399,1394],[1398,1399,1401,1,1399,1400,1402],[1406,1495,1401,1,1407,1496,1402],[1406,1408,1495,1,1407,1409,1496],[1406,1401,1402,1,1407,1402,1403],[1396,1400,1397,1,1397,1401,1398],[1368,1369,1367,1,1369,1370,1368],[1338,1298,1299,1,1339,1299,1300],[1251,1252,1260,1,1252,1253,1261],[1199,1200,1239,1,1200,1201,1240],[1239,1200,1496,1,1240,1201,1497],[1201,1496,1200,1,1202,1497,1201],[1201,1497,1496,1,1202,1498,1497],[1498,1497,1201,1,1499,1498,1202],[1499,1497,1498,1,1500,1498,1499],[1500,1497,1499,1,1501,1498,1500],[1501,1497,1500,1,1502,1498,1501],[1496,1497,1501,1,1497,1498,1502],[1238,1496,1501,1,1239,1497,1502],[1239,1496,1238,1,1240,1497,1239],[1238,1501,1502,1,1239,1502,1503],[1502,1501,1500,1,1503,1502,1501],[1502,1500,1503,1,1503,1501,1504],[1503,1500,1504,1,1504,1501,1505],[1504,1500,1499,1,1505,1501,1500],[1504,1499,1207,1,1505,1500,1208],[1207,1499,1498,1,1208,1500,1499],[1207,1498,1205,1,1208,1499,1206],[1205,1498,1202,1,1206,1499,1203],[1202,1498,1201,1,1203,1499,1202],[1205,1202,1203,1,1206,1203,1204],[1209,1504,1207,1,1210,1505,1208],[1209,1505,1504,1,1210,1506,1505],[1211,1505,1209,1,1212,1506,1210],[1211,1506,1505,1,1212,1507,1506],[1211,1507,1506,1,1212,1508,1507],[1213,1507,1211,1,1214,1508,1212],[1508,1507,1213,1,1509,1508,1214],[1508,1506,1507,1,1509,1507,1508],[1509,1506,1508,1,1510,1507,1509],[1503,1506,1509,1,1504,1507,1510],[1505,1506,1503,1,1506,1507,1504],[1505,1503,1504,1,1506,1504,1505],[1503,1509,1502,1,1504,1510,1503],[1510,1502,1509,1,1511,1503,1510],[1238,1502,1510,1,1239,1503,1511],[1236,1238,1510,1,1237,1239,1511],[1236,1510,1511,1,1237,1511,1512],[1510,1508,1511,1,1511,1509,1512],[1510,1509,1508,1,1511,1510,1509],[1511,1508,1512,1,1512,1509,1513],[1508,1213,1512,1,1509,1214,1513],[1213,1228,1512,1,1214,1229,1513],[1215,1228,1213,1,1216,1229,1214],[1215,1216,1228,1,1216,1217,1229],[1228,1513,1512,1,1229,1514,1513],[1228,1229,1513,1,1229,1230,1514],[1229,1514,1513,1,1230,1515,1514],[1229,1515,1514,1,1230,1516,1515],[1229,1233,1515,1,1230,1234,1516],[1229,1230,1233,1,1230,1231,1234],[1515,1233,1516,1,1516,1234,1517],[1233,1235,1516,1,1234,1236,1517],[1516,1235,1517,1,1517,1236,1518],[1236,1517,1235,1,1237,1518,1236],[1236,1511,1517,1,1237,1512,1518],[1514,1517,1511,1,1515,1518,1512],[1514,1516,1517,1,1515,1517,1518],[1515,1516,1514,1,1516,1517,1515],[1514,1511,1513,1,1515,1512,1514],[1513,1511,1512,1,1514,1512,1513],[1400,1401,1399,2,1401,1402,1400],[1518,1519,1520,0,1519,1520,1521],[1518,1521,1519,0,1519,1522,1520],[1521,1518,1522,0,1522,1519,1523],[1522,1523,1521,0,1523,1524,1522],[1522,1524,1523,0,1523,1525,1524],[1525,1524,1522,0,1526,1525,1523],[1526,1524,1525,0,1527,1525,1526],[1526,1527,1524,0,1527,1528,1525],[1528,1527,1526,0,1529,1528,1527],[1528,1529,1527,0,1529,1530,1528],[1530,1529,1528,0,1531,1530,1529],[1529,1530,1531,0,1532,1532,1532],[1530,1532,1531,0,1533,1533,1533],[1530,1533,1532,0,1534,1534,1534],[1533,1530,1534,0,1535,1531,1536],[1534,1530,1528,0,1536,1531,1529],[1534,1528,1535,0,1536,1529,1537],[1535,1528,1526,0,1537,1529,1527],[1535,1526,1536,0,1537,1527,1538],[1536,1526,1525,0,1538,1527,1526],[1525,1537,1536,0,1539,1539,1539],[1538,1537,1525,0,1540,1540,1540],[1539,1537,1538,0,1541,1541,1541],[1537,1539,1540,0,1542,1542,1542],[1540,1539,1541,0,1543,1544,1545],[1541,1539,1542,0,1545,1544,1546],[1539,1520,1542,0,1544,1521,1546],[1543,1520,1539,0,1542,1542,1542],[1518,1520,1543,0,1519,1521,1547],[1518,1543,1544,0,1519,1547,1548],[1544,1543,1545,0,1548,1547,1549],[1545,1543,1538,0,1542,1542,1542],[1538,1543,1539,0,1542,1542,1542],[1538,1522,1545,0,1550,1523,1549],[1525,1522,1538,0,1526,1523,1550],[1522,1544,1545,0,1523,1548,1549],[1522,1518,1544,0,1523,1519,1548],[1542,1520,1519,0,1546,1521,1520],[1521,1542,1519,0,1522,1546,1520],[1521,1523,1542,0,1522,1524,1546],[1523,1541,1542,0,1524,1545,1546],[1523,1546,1541,0,1524,1551,1545],[1524,1546,1523,0,1525,1551,1524],[1524,1527,1546,0,1525,1528,1551],[1527,1547,1546,0,1528,1552,1551],[1527,1529,1547,0,1528,1530,1552],[1529,1531,1547,0,1530,1553,1552],[1547,1531,1548,0,1552,1553,1554],[1531,1549,1548,0,1553,1555,1554],[1531,1532,1549,0,1556,1556,1556],[1532,1550,1549,0,1557,1558,1555],[1532,1551,1550,0,1557,1559,1558],[1532,1552,1551,0,1557,1560,1559],[1533,1552,1532,0,1535,1560,1557],[1552,1533,1534,0,1560,1535,1536],[1552,1534,1553,0,1560,1536,1561],[1553,1534,1535,0,1561,1536,1537],[1554,1553,1535,0,1562,1561,1537],[1553,1554,1555,0,1561,1562,1563],[1554,1556,1555,0,1564,1564,1564],[1557,1556,1554,0,1564,1564,1564],[1556,1557,1558,0,1565,1565,1565],[1557,1559,1558,0,1564,1564,1564],[1560,1559,1557,0,1566,1566,1566],[1560,1561,1559,0,1567,1567,1567],[1562,1561,1560,0,1568,1568,1568],[1562,1563,1561,0,1569,1570,1571],[1537,1563,1562,0,1572,1570,1569],[1537,1540,1563,0,1573,1573,1573],[1563,1540,1541,0,1570,1543,1545],[1563,1541,1564,0,1570,1545,1574],[1565,1564,1541,0,1575,1574,1545],[1561,1564,1565,0,1571,1574,1575],[1561,1563,1564,0,1571,1570,1574],[1561,1565,1566,0,1571,1575,1576],[1548,1566,1565,0,1554,1576,1575],[1567,1566,1548,0,1577,1576,1554],[1567,1568,1566,0,1577,1578,1576],[1569,1568,1567,0,1579,1578,1577],[1570,1568,1569,0,1580,1578,1579],[1570,1558,1568,0,1580,1581,1578],[1556,1558,1570,0,1565,1565,1565],[1556,1570,1571,0,1565,1565,1565],[1572,1571,1570,0,1582,1583,1580],[1573,1571,1572,0,1584,1583,1582],[1573,1555,1571,0,1584,1563,1583],[1553,1555,1573,0,1561,1563,1584],[1552,1553,1573,0,1560,1561,1584],[1552,1573,1551,0,1560,1584,1559],[1551,1573,1572,0,1559,1584,1582],[1551,1572,1574,0,1559,1582,1585],[1574,1572,1569,0,1585,1582,1579],[1572,1570,1569,0,1582,1580,1579],[1569,1567,1574,0,1579,1577,1585],[1574,1567,1549,0,1585,1577,1555],[1549,1567,1548,0,1555,1577,1554],[1574,1549,1550,0,1585,1555,1558],[1550,1551,1574,0,1558,1559,1585],[1555,1556,1571,0,1564,1564,1564],[1558,1561,1568,0,1581,1571,1578],[1558,1559,1561,0,1586,1586,1586],[1568,1561,1566,0,1578,1571,1576],[1547,1548,1565,0,1552,1554,1575],[1546,1547,1565,0,1551,1552,1575],[1546,1565,1541,0,1551,1575,1545],[1536,1537,1562,0,1538,1572,1569],[1536,1562,1535,0,1538,1569,1537],[1535,1562,1560,0,1568,1568,1568],[1535,1560,1557,0,1566,1566,1566],[1535,1557,1575,0,1587,1587,1587],[1575,1557,1554,0,1564,1564,1564],[1554,1535,1575,0,1588,1588,1588],[1576,1577,1578,0,1589,1590,1591],[1577,1576,1579,0,1590,1589,1592],[1580,1577,1579,0,1593,1590,1592],[1577,1580,1581,0,1594,1594,1594],[1581,1580,1582,0,1595,1593,1596],[1582,1580,1579,0,1596,1593,1592],[1576,1582,1579,0,1589,1596,1592],[1582,1576,1583,0,1596,1589,1597],[1584,1582,1583,0,1598,1596,1597],[1584,1585,1582,0,1598,1599,1596],[1586,1585,1584,0,1600,1599,1598],[1586,1587,1585,0,1600,1601,1599],[1588,1587,1586,0,1602,1601,1600],[1588,1589,1587,0,1602,1603,1601],[1590,1589,1588,0,1604,1603,1602],[1590,1591,1589,0,1605,1605,1605],[1592,1591,1590,0,1605,1605,1605],[1592,1593,1591,0,1606,1606,1606],[1593,1592,1594,0,1607,1608,1609],[1592,1595,1594,0,1608,1610,1609],[1592,1596,1595,0,1608,1611,1610],[1596,1592,1597,0,1611,1608,1612],[1597,1592,1590,0,1605,1605,1605],[1597,1590,1598,0,1612,1604,1613],[1598,1590,1588,0,1613,1604,1602],[1598,1588,1599,0,1613,1602,1614],[1599,1588,1586,0,1614,1602,1600],[1599,1586,1600,0,1614,1600,1615],[1600,1586,1584,0,1615,1600,1598],[1600,1584,1601,0,1615,1598,1616],[1601,1584,1583,0,1616,1598,1597],[1601,1583,1602,0,1616,1597,1617],[1583,1576,1602,0,1597,1589,1617],[1576,1578,1602,0,1589,1591,1617],[1601,1602,1578,0,1616,1617,1591],[1603,1601,1578,0,1618,1616,1591],[1600,1601,1603,0,1615,1616,1618],[1604,1600,1603,0,1619,1615,1618],[1605,1600,1604,0,1620,1615,1619],[1605,1606,1600,0,1620,1621,1615],[1607,1606,1605,0,1622,1621,1620],[1607,1599,1606,0,1622,1614,1621],[1607,1608,1599,0,1622,1623,1614],[1609,1608,1607,0,1624,1623,1622],[1610,1608,1609,0,1625,1623,1624],[1610,1598,1608,0,1625,1613,1623],[1597,1598,1610,0,1612,1613,1625],[1611,1597,1610,0,1626,1612,1625],[1596,1597,1611,0,1611,1612,1626],[1596,1611,1595,0,1611,1626,1610],[1595,1611,1612,0,1610,1626,1627],[1611,1613,1612,0,1626,1628,1627],[1613,1611,1610,0,1628,1626,1625],[1613,1610,1609,0,1628,1625,1624],[1614,1613,1609,0,1629,1628,1624],[1612,1613,1614,0,1627,1628,1629],[1612,1614,1615,0,1627,1629,1630],[1614,1616,1615,0,1631,1631,1631],[1614,1617,1616,0,1632,1632,1632],[1614,1609,1617,0,1629,1624,1633],[1617,1609,1607,0,1633,1624,1622],[1617,1607,1618,0,1634,1634,1634],[1619,1618,1607,0,1635,1635,1635],[1619,1620,1618,0,1636,1636,1636],[1621,1620,1619,0,1636,1636,1636],[1621,1622,1620,0,1636,1636,1636],[1621,1623,1622,0,1637,1637,1637],[1624,1623,1621,0,1638,1639,1640],[1624,1625,1623,0,1638,1641,1639],[1626,1625,1624,0,1642,1641,1638],[1626,1615,1625,0,1642,1630,1641],[1626,1612,1615,0,1642,1627,1630],[1595,1612,1626,0,1610,1627,1642],[1594,1595,1626,0,1609,1610,1642],[1594,1626,1624,0,1609,1642,1638],[1594,1624,1627,0,1609,1638,1643],[1624,1621,1627,0,1638,1640,1643],[1627,1621,1628,0,1643,1640,1644],[1621,1629,1628,0,1640,1645,1644],[1621,1630,1629,0,1640,1646,1645],[1631,1630,1621,0,1647,1646,1640],[1631,1632,1630,0,1647,1648,1646],[1605,1632,1631,0,1620,1648,1647],[1605,1604,1632,0,1649,1649,1649],[1603,1632,1604,0,1594,1594,1594],[1632,1603,1633,0,1650,1650,1650],[1603,1577,1633,0,1650,1650,1650],[1603,1578,1577,0,1650,1650,1650],[1633,1577,1581,0,1594,1594,1594],[1632,1633,1581,0,1594,1594,1594],[1632,1581,1634,0,1594,1594,1594],[1634,1581,1582,0,1651,1595,1596],[1634,1582,1585,0,1651,1596,1599],[1629,1634,1585,0,1645,1651,1599],[1630,1634,1629,0,1646,1651,1645],[1632,1634,1630,0,1652,1652,1652],[1629,1585,1587,0,1645,1599,1601],[1628,1629,1587,0,1644,1645,1601],[1628,1587,1589,0,1644,1601,1603],[1591,1628,1589,0,1653,1644,1603],[1627,1628,1591,0,1643,1644,1653],[1591,1593,1627,0,1653,1607,1643],[1593,1594,1627,0,1607,1609,1643],[1607,1605,1631,0,1622,1620,1647],[1607,1631,1619,0,1654,1654,1654],[1619,1631,1621,0,1655,1655,1655],[1615,1616,1625,0,1631,1631,1631],[1616,1623,1625,0,1631,1631,1631],[1616,1620,1623,0,1631,1631,1631],[1620,1616,1617,0,1631,1631,1631],[1617,1618,1620,0,1631,1631,1631],[1620,1622,1623,0,1631,1631,1631],[1598,1599,1608,0,1613,1614,1623],[1599,1600,1606,0,1614,1615,1621],[1635,1636,1637,3,1656,1657,1658],[1636,1635,1638,3,1657,1656,1659],[1638,1639,1636,3,1659,1660,1657],[1639,1638,1640,3,1660,1659,1661],[1640,1638,1641,3,1661,1659,1662],[1638,1635,1641,3,1659,1656,1662],[1635,1642,1641,3,1656,1663,1662],[1642,1635,1643,3,1663,1656,1664],[1635,1637,1643,3,1656,1658,1664],[1643,1637,1644,3,1664,1658,1665],[1644,1637,1645,3,1665,1658,1666],[1637,1646,1645,3,1658,1667,1666],[1637,1647,1646,3,1658,1668,1667],[1637,1636,1647,3,1658,1657,1668],[1646,1647,1648,3,1667,1668,1669],[1648,1647,1649,3,1669,1668,1670],[1648,1649,1650,3,1669,1670,1671],[1649,1651,1650,3,1670,1672,1671],[1650,1651,1652,3,1671,1672,1673],[1650,1652,1653,3,1671,1673,1674],[1652,1654,1653,3,1673,1675,1674],[1653,1654,1655,3,1674,1675,1676],[1653,1655,1656,3,1674,1676,1677],[1656,1655,1657,3,1677,1676,1678],[1656,1657,1658,3,1677,1678,1679],[1658,1657,1659,3,1679,1678,1680],[1657,1660,1659,3,1678,1681,1680],[1659,1660,1661,3,1680,1681,1682],[1662,1653,1656,3,1683,1674,1677],[1662,1650,1653,3,1683,1671,1674],[1663,1650,1662,3,1684,1671,1683],[1648,1650,1663,3,1669,1671,1684],[1645,1648,1663,3,1666,1669,1684],[1645,1646,1648,3,1666,1667,1669],[1664,1645,1663,3,1685,1666,1684],[1664,1663,1665,3,1685,1684,1686],[1666,1664,1665,3,1687,1685,1686],[1667,1666,1665,3,1688,1687,1686],[1668,1666,1667,3,1689,1687,1688],[1663,1662,1669,3,1684,1683,1690],[1670,1663,1669,3,1691,1684,1690],[1671,1670,1669,3,1692,1691,1690],[1670,1671,1672,3,1691,1692,1693],[1673,1672,1671,3,1694,1693,1692],[1662,1656,1674,3,1683,1677,1695],[1675,1662,1674,3,1696,1683,1695],[1675,1674,1676,3,1696,1695,1697],[1675,1676,1677,3,1696,1697,1698],[1678,1677,1676,3,1699,1698,1697],[1644,1645,1679,3,1665,1666,1700],[1680,1644,1679,3,1701,1665,1700],[1681,1644,1680,3,1702,1665,1701],[1681,1643,1644,3,1702,1664,1665],[1642,1643,1681,3,1663,1664,1702],[1682,1642,1681,3,1703,1663,1702],[1642,1682,1641,3,1663,1703,1662],[1641,1682,1683,3,1662,1703,1704],[1682,1684,1683,3,1703,1705,1704],[1682,1685,1684,3,1703,1706,1705],[1685,1682,1686,3,1707,1707,1707],[1686,1682,1681,3,1708,1703,1702],[1687,1685,1686,3,1709,1709,1709],[1687,1684,1685,3,1710,1705,1706],[1688,1681,1680,3,1711,1702,1701],[1689,1688,1680,3,1712,1711,1701],[1690,1688,1689,3,1713,1711,1712],[1690,1689,1691,3,1713,1712,1714],[1689,1680,1691,3,1712,1701,1714],[1691,1680,1679,3,1714,1701,1700],[1640,1641,1692,3,1661,1662,1715],[1692,1641,1693,3,1715,1662,1716],[1692,1693,1694,3,1715,1716,1717],[1694,1693,1695,3,1717,1716,1718],[1694,1695,1696,3,1717,1718,1719],[1695,1697,1696,3,1718,1720,1719],[1692,1694,1698,3,1715,1717,1721],[1698,1694,1699,3,1721,1717,1722],[1700,1698,1699,3,1723,1721,1722],[1698,1700,1701,3,1721,1723,1724],[1700,1702,1701,3,1723,1725,1724],[1702,1700,1699,3,1725,1723,1722],[1698,1701,1703,3,1721,1724,1726],[1704,1698,1703,3,1727,1721,1726],[1704,1692,1698,3,1727,1715,1721],[1705,1692,1704,3,1728,1715,1727],[1705,1640,1692,3,1728,1661,1715],[1706,1640,1705,3,1729,1661,1728],[1639,1640,1706,3,1660,1661,1729],[1706,1705,1707,3,1729,1728,1730],[1705,1708,1707,3,1728,1731,1730],[1705,1704,1708,3,1728,1727,1731],[1704,1703,1708,3,1727,1726,1731],[1708,1703,1709,3,1731,1726,1732],[1709,1703,1710,3,1732,1726,1733],[1710,1703,1711,3,1733,1726,1734],[1710,1711,1712,3,1733,1734,1735],[1712,1711,1713,3,1735,1734,1736],[1712,1713,1714,3,1735,1736,1737],[1710,1712,1714,3,1733,1735,1737],[1710,1714,1715,3,1733,1737,1738],[1716,1710,1715,3,1739,1733,1738],[1709,1710,1716,3,1732,1733,1739],[1717,1709,1716,3,1740,1732,1739],[1717,1708,1709,3,1740,1731,1732],[1707,1708,1717,3,1730,1731,1740],[1718,1707,1717,3,1741,1730,1740],[1706,1707,1718,3,1729,1730,1741],[1718,1717,1719,3,1741,1740,1742],[1717,1716,1719,3,1740,1739,1742],[1719,1716,1720,3,1742,1739,1743],[1720,1716,1715,3,1743,1739,1738],[1720,1715,1721,3,1743,1738,1744],[1715,1722,1721,3,1738,1745,1744],[1715,1723,1722,3,1738,1746,1745],[1723,1724,1722,3,1746,1747,1745],[1725,1719,1720,3,1748,1742,1743],[1726,1719,1725,3,1749,1742,1748],[1718,1719,1726,3,1741,1742,1749],[1727,1726,1725,3,1750,1749,1748],[1725,1728,1727,3,1748,1751,1750],[1725,1729,1728,3,1748,1752,1751],[1725,1730,1729,3,1748,1753,1752],[1725,1720,1730,3,1748,1743,1753],[1720,1731,1730,3,1743,1754,1753],[1720,1732,1731,3,1743,1755,1754],[1732,1733,1731,3,1755,1756,1754],[1732,1734,1733,3,1755,1757,1756],[1735,1733,1734,3,1758,1756,1757],[1735,1736,1733,3,1758,1759,1756],[1733,1736,1731,3,1756,1759,1754],[1737,1731,1736,3,1760,1754,1759],[1731,1737,1730,3,1754,1760,1753],[1737,1738,1730,3,1760,1761,1753],[1730,1738,1729,3,1753,1761,1752],[1729,1738,1739,3,1752,1761,1762],[1729,1739,1728,3,1752,1762,1751],[1740,1741,1742,3,1763,1764,1765],[1741,1740,1743,3,1764,1763,1766],[1743,1744,1741,3,1766,1767,1764],[1744,1743,1745,3,1767,1766,1768],[1745,1743,1746,3,1768,1766,1769],[1743,1740,1746,3,1766,1763,1769],[1740,1747,1746,3,1763,1770,1769],[1747,1740,1748,3,1770,1763,1771],[1740,1742,1748,3,1763,1765,1771],[1748,1742,1749,3,1771,1765,1772],[1749,1742,1750,3,1772,1765,1773],[1742,1751,1750,3,1765,1774,1773],[1742,1741,1751,3,1765,1764,1774],[1741,1752,1751,3,1764,1775,1774],[1751,1752,1753,3,1774,1775,1776],[1752,1754,1753,3,1775,1777,1776],[1753,1754,1755,3,1776,1777,1778],[1755,1754,1756,3,1778,1777,1779],[1754,1757,1756,3,1777,1780,1779],[1757,1758,1756,3,1780,1781,1779],[1758,1759,1756,3,1781,1782,1779],[1756,1759,1760,3,1779,1782,1783],[1759,1761,1760,3,1782,1784,1783],[1760,1761,1762,3,1783,1784,1785],[1761,1763,1762,3,1784,1786,1785],[1761,1764,1763,3,1784,1787,1786],[1763,1764,1765,3,1786,1787,1788],[1755,1756,1760,3,1778,1779,1783],[1755,1760,1766,3,1778,1783,1789],[1766,1760,1767,3,1789,1783,1790],[1768,1766,1767,3,1791,1789,1790],[1768,1767,1769,3,1791,1790,1792],[1768,1769,1770,3,1791,1792,1793],[1771,1770,1769,3,1794,1793,1792],[1772,1755,1766,3,1795,1778,1789],[1772,1753,1755,3,1795,1776,1778],[1750,1753,1772,3,1773,1776,1795],[1750,1751,1753,3,1773,1774,1776],[1773,1750,1772,3,1796,1773,1795],[1774,1773,1772,3,1797,1796,1795],[1773,1774,1775,3,1796,1797,1798],[1775,1774,1776,3,1798,1797,1799],[1775,1776,1777,3,1798,1799,1800],[1772,1766,1778,3,1795,1789,1801],[1779,1772,1778,3,1802,1795,1801],[1779,1778,1780,3,1802,1801,1803],[1779,1780,1781,3,1802,1803,1804],[1781,1780,1782,3,1804,1803,1805],[1749,1750,1783,3,1772,1773,1806],[1784,1749,1783,3,1807,1772,1806],[1784,1785,1749,3,1807,1808,1772],[1784,1786,1785,3,1807,1809,1808],[1786,1784,1787,3,1809,1807,1810],[1784,1788,1787,3,1807,1811,1810],[1784,1783,1788,3,1807,1806,1811],[1787,1788,1789,3,1810,1811,1812],[1786,1787,1789,3,1809,1810,1812],[1749,1785,1748,3,1772,1808,1771],[1747,1748,1785,3,1770,1771,1808],[1790,1747,1785,3,1813,1770,1808],[1747,1790,1746,3,1770,1813,1769],[1746,1790,1791,3,1769,1813,1814],[1790,1792,1791,3,1813,1815,1814],[1790,1793,1792,3,1813,1816,1815],[1793,1790,1794,3,1816,1813,1817],[1790,1785,1794,3,1813,1808,1817],[1795,1793,1794,3,1818,1816,1817],[1792,1793,1795,3,1815,1816,1818],[1745,1746,1796,3,1768,1769,1819],[1746,1797,1796,3,1769,1820,1819],[1797,1798,1796,3,1820,1821,1819],[1798,1797,1799,3,1821,1820,1822],[1798,1799,1800,3,1821,1822,1823],[1800,1799,1801,3,1823,1822,1824],[1796,1798,1802,3,1819,1821,1825],[1802,1798,1803,3,1825,1821,1826],[1802,1803,1804,3,1825,1826,1827],[1804,1803,1805,3,1827,1826,1828],[1806,1804,1805,3,1829,1827,1828],[1802,1804,1806,3,1825,1827,1829],[1807,1802,1806,3,1830,1825,1829],[1808,1802,1807,3,1831,1825,1830],[1808,1796,1802,3,1831,1819,1825],[1809,1796,1808,3,1832,1819,1831],[1809,1745,1796,3,1832,1768,1819],[1810,1745,1809,3,1833,1768,1832],[1744,1745,1810,3,1767,1768,1833],[1810,1809,1811,3,1833,1832,1834],[1811,1809,1812,3,1834,1832,1835],[1809,1808,1812,3,1832,1831,1835],[1812,1808,1807,3,1835,1831,1830],[1813,1812,1807,3,1836,1835,1830],[1814,1812,1813,3,1837,1835,1836],[1814,1811,1812,3,1837,1834,1835],[1815,1811,1814,3,1838,1834,1837],[1810,1811,1815,3,1833,1834,1838],[1815,1814,1816,3,1838,1837,1839],[1816,1814,1817,3,1839,1837,1840],[1813,1817,1814,3,1836,1840,1837],[1813,1818,1817,3,1836,1841,1840],[1813,1807,1818,3,1836,1830,1841],[1818,1807,1819,3,1841,1830,1842],[1818,1819,1820,3,1841,1842,1843],[1820,1819,1821,3,1843,1842,1844],[1822,1820,1821,3,1845,1843,1844],[1818,1820,1822,3,1841,1843,1845],[1823,1818,1822,3,1846,1841,1845],[1817,1818,1823,3,1840,1841,1846],[1817,1823,1824,3,1840,1846,1847],[1824,1823,1825,3,1847,1846,1848],[1825,1823,1826,3,1848,1846,1849],[1823,1827,1826,3,1846,1850,1849],[1826,1827,1828,3,1849,1850,1851],[1816,1817,1824,3,1839,1840,1847],[1829,1816,1824,3,1852,1839,1847],[1815,1816,1829,3,1838,1839,1852],[1830,1815,1829,3,1853,1838,1852],[1829,1831,1830,3,1852,1854,1853],[1831,1829,1832,3,1854,1852,1855],[1832,1829,1833,3,1855,1852,1856],[1829,1824,1833,3,1852,1847,1856],[1824,1834,1833,3,1847,1857,1856],[1824,1835,1834,3,1847,1858,1857],[1834,1835,1836,3,1857,1858,1859],[1835,1837,1836,3,1858,1860,1859],[1836,1837,1838,3,1859,1860,1861],[1838,1839,1836,3,1861,1862,1859],[1836,1839,1834,3,1859,1862,1857],[1839,1840,1834,3,1862,1863,1857],[1833,1834,1840,3,1856,1857,1863],[1833,1840,1841,3,1856,1863,1864],[1833,1841,1832,3,1856,1864,1855],[1832,1841,1842,3,1855,1864,1865],[1842,1841,1843,3,1865,1864,1866],[1843,1841,1844,3,1866,1864,1867],[1845,1843,1844,3,1868,1866,1867],[1845,1844,1846,3,1868,1867,1869],[1843,1847,1842,3,1866,1870,1865],[1843,1848,1847,3,1866,1871,1870],[1843,1849,1848,3,1866,1872,1871],[1849,1850,1848,3,1872,1873,1871],[1832,1842,1831,3,1855,1865,1854],[1851,1852,1853,3,1874,1875,1876],[1851,1854,1852,3,1874,1877,1875],[1854,1851,1855,3,1877,1874,1878],[1855,1856,1854,3,1878,1879,1877],[1857,1856,1855,3,1880,1879,1878],[1857,1858,1856,3,1880,1881,1879],[1856,1858,1859,3,1879,1881,1882],[1859,1858,1860,3,1882,1881,1883],[1858,1861,1860,3,1881,1884,1883],[1858,1862,1861,3,1881,1885,1884],[1860,1861,1863,3,1883,1884,1886],[1860,1863,1864,3,1883,1886,1887],[1864,1863,1865,3,1887,1886,1888],[1863,1866,1865,3,1886,1889,1888],[1865,1866,1867,3,1888,1889,1890],[1865,1867,1868,3,1888,1890,1891],[1867,1869,1868,3,1890,1892,1891],[1868,1869,1870,3,1891,1892,1893],[1868,1870,1871,3,1891,1893,1894],[1871,1870,1872,3,1894,1893,1895],[1870,1873,1872,3,1893,1896,1895],[1872,1873,1874,3,1895,1896,1897],[1874,1875,1872,3,1897,1898,1895],[1875,1876,1872,3,1898,1899,1895],[1876,1871,1872,3,1899,1894,1895],[1876,1865,1871,3,1899,1888,1894],[1864,1865,1876,3,1887,1888,1899],[1877,1864,1876,3,1900,1887,1899],[1878,1864,1877,3,1901,1887,1900],[1879,1864,1878,3,1902,1887,1901],[1879,1860,1864,3,1902,1883,1887],[1880,1860,1879,3,1903,1883,1902],[1860,1880,1859,3,1883,1903,1882],[1859,1880,1881,3,1882,1903,1904],[1881,1880,1882,3,1904,1903,1905],[1880,1879,1882,3,1903,1902,1905],[1882,1879,1878,3,1905,1902,1901],[1882,1878,1883,3,1905,1901,1906],[1883,1878,1877,3,1906,1901,1900],[1883,1877,1884,3,1906,1900,1907],[1884,1877,1876,3,1907,1900,1899],[1884,1876,1885,3,1907,1899,1908],[1886,1884,1885,3,1909,1907,1908],[1883,1884,1887,3,1906,1907,1910],[1888,1883,1887,3,1911,1906,1910],[1889,1883,1888,3,1912,1906,1911],[1889,1882,1883,3,1912,1905,1906],[1890,1889,1888,3,1913,1912,1911],[1890,1888,1887,3,1913,1911,1910],[1881,1882,1891,3,1904,1905,1914],[1892,1881,1891,3,1915,1904,1914],[1893,1881,1892,3,1916,1904,1915],[1881,1893,1894,3,1904,1916,1917],[1859,1881,1894,3,1882,1904,1917],[1859,1894,1895,3,1882,1917,1918],[1895,1894,1896,3,1918,1917,1919],[1894,1897,1896,3,1917,1920,1919],[1897,1898,1896,3,1920,1921,1919],[1897,1899,1898,3,1920,1922,1921],[1895,1896,1900,3,1918,1919,1923],[1901,1900,1896,3,1924,1923,1919],[1900,1901,1902,3,1923,1924,1925],[1901,1903,1902,3,1924,1926,1925],[1900,1902,1904,3,1923,1925,1927],[1902,1905,1904,3,1925,1928,1927],[1900,1904,1906,3,1923,1927,1929],[1907,1900,1906,3,1930,1923,1929],[1895,1900,1907,3,1918,1923,1930],[1854,1895,1907,3,1877,1918,1930],[1856,1895,1854,3,1879,1918,1877],[1856,1859,1895,3,1879,1882,1918],[1854,1907,1908,3,1877,1930,1931],[1907,1906,1908,3,1930,1929,1931],[1908,1906,1909,3,1931,1929,1932],[1909,1906,1910,3,1932,1929,1933],[1906,1911,1910,3,1929,1934,1933],[1910,1911,1912,3,1933,1934,1935],[1911,1913,1912,3,1934,1936,1935],[1912,1913,1914,3,1935,1936,1937],[1910,1912,1914,3,1933,1935,1937],[1914,1915,1910,3,1937,1938,1933],[1910,1916,1915,3,1933,1939,1938],[1910,1909,1916,3,1933,1932,1939],[1852,1909,1916,3,1875,1932,1939],[1852,1908,1909,3,1875,1931,1932],[1854,1908,1852,3,1877,1931,1875],[1852,1916,1917,3,1875,1939,1940],[1916,1915,1917,3,1939,1938,1940],[1917,1915,1918,3,1940,1938,1941],[1915,1919,1918,3,1938,1942,1941],[1852,1917,1853,3,1875,1940,1876],[1853,1917,1920,3,1876,1940,1943],[1917,1921,1920,3,1940,1944,1943],[1922,1921,1917,3,1945,1944,1940],[1923,1921,1922,3,1946,1944,1945],[1923,1924,1921,3,1946,1947,1944],[1921,1924,1925,3,1944,1947,1948],[1921,1925,1920,3,1944,1948,1943],[1926,1920,1925,3,1949,1943,1948],[1853,1920,1926,3,1876,1943,1949],[1927,1853,1926,3,1950,1876,1949],[1928,1853,1927,3,1951,1876,1950],[1851,1853,1928,3,1874,1876,1951],[1926,1927,1929,3,1949,1950,1952],[1926,1925,1929,3,1949,1948,1952],[1930,1893,1892,3,1953,1916,1915],[1931,1892,1891,3,1954,1915,1914],[1871,1865,1868,3,1894,1888,1891],[1932,1933,1934,3,1955,1956,1957],[1933,1932,1935,3,1956,1955,1958],[1935,1932,1936,3,1958,1955,1959],[1936,1932,1937,3,1959,1955,1960],[1932,1938,1937,3,1955,1961,1960],[1938,1932,1934,3,1961,1955,1957],[1938,1934,1939,3,1961,1957,1962],[1939,1934,1940,3,1962,1957,1963],[1934,1941,1940,3,1957,1964,1963],[1934,1942,1941,3,1957,1965,1964],[1933,1942,1934,3,1956,1965,1957],[1933,1943,1942,3,1956,1966,1965],[1933,1944,1943,3,1956,1967,1966],[1933,1945,1944,3,1956,1968,1967],[1945,1933,1935,3,1968,1956,1958],[1945,1935,1946,3,1968,1958,1969],[1946,1935,1936,3,1969,1958,1959],[1936,1947,1946,3,1959,1970,1969],[1947,1936,1948,3,1970,1959,1971],[1936,1937,1948,3,1959,1960,1971],[1948,1937,1949,3,1971,1960,1972],[1937,1950,1949,3,1960,1973,1972],[1937,1938,1950,3,1960,1961,1973],[1938,1939,1950,3,1961,1962,1973],[1939,1951,1950,3,1962,1974,1973],[1951,1939,1940,3,1974,1962,1963],[1951,1940,1952,3,1974,1963,1975],[1940,1953,1952,3,1963,1976,1975],[1940,1954,1953,3,1963,1977,1976],[1940,1941,1954,3,1963,1964,1977],[1941,1955,1954,3,1964,1978,1977],[1942,1955,1941,3,1965,1978,1964],[1942,1956,1955,3,1965,1979,1978],[1943,1956,1942,3,1966,1979,1965],[1943,1957,1956,3,1966,1980,1979],[1957,1943,1944,3,1980,1966,1967],[1957,1944,1958,3,1980,1967,1981],[1958,1944,1959,3,1981,1967,1982],[1944,1960,1959,3,1967,1983,1982],[1945,1960,1944,3,1968,1983,1967],[1960,1945,1946,3,1983,1968,1969],[1961,1960,1946,3,1984,1983,1969],[1962,1960,1961,3,1985,1983,1984],[1960,1962,1963,3,1983,1985,1986],[1962,1964,1963,3,1985,1987,1986],[1964,1962,1961,3,1987,1985,1984],[1960,1963,1959,3,1983,1986,1982],[1958,1959,1965,3,1981,1982,1988],[1965,1959,1966,3,1988,1982,1989],[1967,1965,1966,3,1990,1988,1989],[1968,1967,1966,3,1991,1990,1989],[1958,1965,1969,3,1981,1988,1992],[1969,1965,1970,3,1992,1988,1993],[1969,1970,1971,3,1992,1993,1994],[1971,1970,1972,3,1994,1993,1995],[1973,1971,1972,3,1996,1994,1995],[1969,1971,1973,3,1992,1994,1996],[1969,1973,1974,3,1992,1996,1997],[1975,1969,1974,3,1998,1992,1997],[1975,1958,1969,3,1998,1981,1992],[1976,1958,1975,3,1999,1981,1998],[1976,1957,1958,3,1999,1980,1981],[1957,1976,1977,3,1980,1999,2000],[1976,1978,1977,3,1999,2001,2000],[1976,1979,1978,3,1999,2002,2001],[1976,1975,1979,3,1999,1998,2002],[1975,1974,1979,3,1998,1997,2002],[1979,1974,1980,3,2002,1997,2003],[1980,1974,1981,3,2003,1997,2004],[1981,1974,1982,3,2004,1997,2005],[1981,1982,1983,3,2004,2005,2006],[1983,1982,1984,3,2006,2005,2007],[1984,1985,1983,3,2007,2008,2006],[1981,1983,1985,3,2004,2006,2008],[1981,1985,1986,3,2004,2008,2009],[1987,1981,1986,3,2010,2004,2009],[1980,1981,1987,3,2003,2004,2010],[1988,1980,1987,3,2011,2003,2010],[1988,1979,1980,3,2011,2002,2003],[1988,1978,1979,3,2011,2001,2002],[1978,1988,1989,3,2001,2011,2012],[1989,1988,1990,3,2012,2011,2013],[1988,1987,1990,3,2011,2010,2013],[1990,1987,1991,3,2013,2010,2014],[1991,1987,1986,3,2014,2010,2009],[1991,1986,1992,3,2014,2009,2015],[1992,1986,1993,3,2015,2009,2016],[1986,1994,1993,3,2009,2017,2016],[1994,1995,1993,3,2017,2018,2016],[1991,1992,1996,3,2014,2015,2019],[1996,1992,1997,3,2019,2015,2020],[1992,1998,1997,3,2015,2021,2020],[1998,1999,1997,3,2021,2022,2020],[1999,2000,1997,3,2022,2023,2020],[1997,2000,1996,3,2020,2023,2019],[2000,2001,1996,3,2023,2024,2019],[1996,2001,2002,3,2019,2024,2025],[2001,2003,2002,3,2024,2026,2025],[2002,2003,2004,3,2025,2026,2027],[2003,2005,2004,3,2026,2028,2027],[2005,2003,2006,3,2028,2026,2029],[2006,2003,2007,3,2029,2026,2030],[2007,2008,2006,3,2030,2031,2029],[2009,2008,2007,3,2032,2031,2030],[2006,2010,2005,3,2029,2033,2028],[2006,2011,2010,3,2029,2034,2033],[2012,2011,2006,3,2035,2034,2029],[2012,2013,2011,3,2035,2036,2034],[2010,2014,2005,3,2033,2037,2028],[2014,2010,2015,3,2037,2033,2038],[2015,2010,2016,3,2038,2033,2039],[2015,2016,2017,3,2038,2039,2040],[2016,2018,2017,3,2039,2041,2040],[2017,2018,2019,3,2040,2041,2042],[2018,2020,2019,3,2041,2043,2042],[2019,2020,2021,3,2042,2043,2044],[2020,2022,2021,3,2043,2045,2044],[2021,2022,2023,3,2044,2045,2046],[2024,2021,2023,3,2047,2044,2046],[2019,2021,2024,3,2042,2044,2047],[2025,2019,2024,3,2048,2042,2047],[2017,2019,2025,3,2040,2042,2048],[2015,2017,2025,3,2038,2040,2048],[2015,2025,2026,3,2038,2048,2049],[2026,2025,2027,3,2049,2048,2050],[2025,2028,2027,3,2048,2051,2050],[2025,2029,2028,3,2048,2052,2051],[2025,2030,2029,3,2048,2053,2052],[2030,2031,2029,3,2053,2054,2052],[2026,2027,2032,3,2049,2050,2055],[2027,2033,2032,3,2050,2056,2055],[2027,2034,2033,3,2050,2057,2056],[2027,2035,2034,3,2050,2058,2057],[2035,2036,2034,3,2058,2059,2057],[2035,2037,2036,3,2058,2060,2059],[2037,2038,2036,3,2060,2061,2059],[2033,2034,2039,3,2056,2057,2062],[2039,2034,2040,3,2062,2057,2063],[2040,2034,2041,3,2063,2057,2064],[2040,2041,2042,3,2063,2064,2065],[2040,2042,2043,3,2063,2065,2066],[2043,2042,2044,3,2066,2065,2067],[2042,2045,2044,3,2065,2068,2067],[2042,2046,2045,3,2065,2069,2068],[2045,2046,2047,3,2068,2069,2070],[2045,2047,2048,3,2068,2070,2071],[2044,2045,2048,3,2067,2068,2071],[2044,2048,2049,3,2067,2071,2072],[2044,2049,2050,3,2067,2072,2073],[2050,2049,2051,3,2073,2072,2074],[2049,2052,2051,3,2072,2075,2074],[2049,2053,2052,3,2072,2076,2075],[2054,2053,2049,3,2077,2076,2072],[2054,2055,2053,3,2077,2078,2076],[2054,2056,2055,3,2077,2079,2078],[2053,2057,2052,3,2076,2080,2075],[2053,2058,2057,3,2076,2081,2080],[2059,2058,2053,3,2082,2081,2076],[2059,2060,2058,3,2082,2083,2081],[2061,2060,2059,3,2084,2083,2082],[2061,2062,2060,3,2084,2085,2083],[2063,2062,2061,3,2086,2085,2084],[2058,2064,2057,3,2081,2087,2080],[2058,2065,2064,3,2081,2088,2087],[2066,2065,2058,3,2089,2088,2081],[2066,2067,2065,3,2089,2090,2088],[2068,2067,2066,3,2091,2090,2089],[2064,2065,2069,3,2087,2088,2092],[2065,2070,2069,3,2088,2093,2092],[2071,2070,2065,3,2094,2093,2088],[2071,2072,2070,3,2094,2095,2093],[2073,2072,2071,3,2096,2095,2094],[2072,2073,2074,3,2095,2096,2097],[2075,2072,2074,3,2098,2095,2097],[2070,2072,2075,3,2093,2095,2098],[2076,2070,2075,3,2099,2093,2098],[2069,2070,2076,3,2092,2093,2099],[2077,2069,2076,3,2100,2092,2099],[2077,2078,2069,3,2100,2101,2092],[2079,2078,2077,3,2102,2101,2100],[2079,2080,2078,3,2102,2103,2101],[2081,2080,2079,3,2104,2103,2102],[2081,2082,2080,3,2104,2105,2103],[2081,2083,2082,3,2104,2106,2105],[2084,2083,2081,3,2107,2106,2104],[2085,2083,2084,3,2108,2106,2107],[2085,2086,2083,3,2108,2109,2106],[2085,2087,2086,3,2108,2110,2109],[2088,2087,2085,3,2111,2110,2108],[2088,2089,2087,3,2111,2112,2110],[2090,2089,2088,3,2113,2112,2111],[2090,2091,2089,3,2113,2114,2112],[1953,2091,2090,3,1976,2114,2113],[1953,2092,2091,3,1976,2115,2114],[1954,2092,1953,3,1977,2115,1976],[1955,2092,1954,3,1978,2115,1977],[1955,2093,2092,3,1978,2116,2115],[1977,2093,1955,3,2000,2116,1978],[1977,1989,2093,3,2000,2012,2116],[1977,1978,1989,3,2000,2001,2012],[2093,1989,2094,3,2116,2012,2117],[1989,2095,2094,3,2012,2118,2117],[1989,2096,2095,3,2012,2119,2118],[1989,1990,2096,3,2012,2013,2119],[2096,1990,1991,3,2119,2013,2014],[2096,1991,2002,3,2119,2014,2025],[1991,1996,2002,3,2014,2019,2025],[2096,2002,2004,3,2119,2025,2027],[2096,2004,2097,3,2119,2027,2120],[2097,2004,2005,3,2120,2027,2028],[2097,2005,2098,3,2120,2028,2121],[2098,2005,2014,3,2121,2028,2037],[2098,2014,2099,3,2121,2037,2122],[2099,2014,2100,3,2122,2037,2123],[2014,2026,2100,3,2037,2049,2123],[2015,2026,2014,3,2038,2049,2037],[2026,2032,2100,3,2049,2055,2123],[2099,2100,2032,3,2122,2123,2055],[2099,2032,2101,3,2122,2055,2124],[2101,2032,2102,3,2124,2055,2125],[2032,2033,2102,3,2055,2056,2125],[2033,2103,2102,3,2056,2126,2125],[2103,2033,2039,3,2126,2056,2062],[2039,2104,2103,3,2062,2127,2126],[2039,2043,2104,3,2062,2066,2127],[2039,2040,2043,3,2062,2063,2066],[2043,2050,2104,3,2066,2073,2127],[2043,2044,2050,3,2066,2067,2073],[2105,2104,2050,3,2128,2127,2073],[2104,2105,2106,3,2127,2128,2129],[2107,2106,2105,3,2130,2129,2128],[2108,2106,2107,3,2131,2129,2130],[2108,2101,2106,3,2131,2124,2129],[2108,2099,2101,3,2131,2122,2124],[2109,2099,2108,3,2132,2122,2131],[2110,2099,2109,3,2133,2122,2132],[2110,2098,2099,3,2133,2121,2122],[2110,2097,2098,3,2133,2120,2121],[2110,2095,2097,3,2133,2118,2120],[2094,2095,2110,3,2117,2118,2133],[2089,2094,2110,3,2112,2117,2133],[2091,2094,2089,3,2114,2117,2112],[2093,2094,2091,3,2116,2117,2114],[2092,2093,2091,3,2115,2116,2114],[2089,2110,2087,3,2112,2133,2110],[2087,2110,2109,3,2110,2133,2132],[2087,2109,2086,3,2110,2132,2109],[2086,2109,2108,3,2109,2132,2131],[2086,2108,2107,3,2109,2131,2130],[2086,2107,2083,3,2109,2130,2106],[2083,2107,2111,3,2106,2130,2134],[2107,2105,2111,3,2130,2128,2134],[2111,2105,2051,3,2134,2128,2074],[2050,2051,2105,3,2073,2074,2128],[2111,2051,2112,3,2134,2074,2135],[2112,2051,2113,3,2135,2074,2136],[2113,2051,2052,3,2136,2074,2075],[2113,2052,2078,3,2136,2075,2101],[2078,2052,2057,3,2101,2075,2080],[2078,2057,2064,3,2101,2080,2087],[2078,2064,2069,3,2101,2087,2092],[2080,2113,2078,3,2103,2136,2101],[2080,2112,2113,3,2103,2135,2136],[2082,2112,2080,3,2105,2135,2103],[2111,2112,2082,3,2134,2135,2105],[2083,2111,2082,3,2106,2134,2105],[2095,2096,2097,3,2118,2119,2120],[2101,2102,2106,3,2124,2125,2129],[2106,2102,2103,3,2129,2125,2126],[2103,2104,2106,3,2126,2127,2129],[1956,1977,1955,3,1979,2000,1978],[1957,1977,1956,3,1980,2000,1979],[2114,1953,2090,3,2137,1976,2113],[1952,1953,2114,3,1975,1976,2137],[2115,1952,2114,3,2138,1975,2137],[2116,1952,2115,3,2139,1975,2138],[1951,1952,2116,3,1974,1975,2139],[1950,1951,2116,3,1973,1974,2139],[1950,2116,2117,3,1973,2139,2140],[2116,2118,2117,3,2139,2141,2140],[2116,2115,2118,3,2139,2138,2141],[2115,2119,2118,3,2138,2142,2141],[2115,2120,2119,3,2138,2143,2142],[2115,2121,2120,3,2138,2144,2143],[2115,2114,2121,3,2138,2137,2144],[2121,2114,2122,3,2144,2137,2145],[2114,2090,2122,3,2137,2113,2145],[2122,2090,2088,3,2145,2113,2111],[2122,2088,2123,3,2145,2111,2146],[2123,2088,2085,3,2146,2111,2108],[2123,2085,2124,3,2146,2108,2147],[2124,2085,2084,3,2147,2108,2107],[2124,2084,2125,3,2147,2107,2148],[2125,2084,2081,3,2148,2107,2104],[2125,2081,2126,3,2148,2104,2149],[2126,2081,2079,3,2149,2104,2102],[2081,2079,2127,3,2104,2102,2150],[2128,2081,2079,3,2151,2104,2102],[2128,2079,2129,3,2151,2102,2152],[2130,2128,2129,3,2153,2151,2152],[2130,2129,2131,3,2153,2152,2154],[2132,2130,2131,3,2155,2153,2154],[2132,2131,2133,3,2155,2154,2156],[2134,2081,2127,3,2157,2104,2150],[2135,2134,2127,3,2158,2157,2150],[2136,2134,2135,3,2159,2157,2158],[2137,2136,2135,3,2160,2159,2158],[2138,2136,2137,3,2161,2159,2160],[2138,2137,2139,3,2161,2160,2162],[2126,2079,2140,3,2149,2102,2163],[2140,2079,2141,3,2163,2102,2164],[2079,2142,2141,3,2102,2165,2164],[2079,2077,2142,3,2102,2100,2165],[2077,2076,2142,3,2100,2099,2165],[2142,2076,2143,3,2165,2099,2166],[2076,2075,2143,3,2099,2098,2166],[2075,2144,2143,3,2098,2167,2166],[2145,2144,2075,3,2168,2167,2098],[2145,2146,2144,3,2168,2169,2167],[2147,2146,2145,3,2170,2169,2168],[2146,2148,2144,3,2169,2171,2167],[2146,2149,2148,3,2169,2172,2171],[2150,2149,2146,3,2173,2172,2169],[2149,2150,2151,3,2172,2173,2174],[2152,2149,2151,3,2175,2172,2174],[2148,2149,2152,3,2171,2172,2175],[2153,2148,2152,3,2176,2171,2175],[2154,2148,2153,3,2177,2171,2176],[2144,2148,2154,3,2167,2171,2177],[2143,2144,2154,3,2166,2167,2177],[2142,2143,2154,3,2165,2166,2177],[2141,2142,2154,3,2164,2165,2177],[2141,2154,2153,3,2164,2177,2176],[2141,2153,2140,3,2164,2176,2163],[2140,2153,2155,3,2163,2176,2178],[2155,2153,2152,3,2178,2176,2175],[2155,2152,2156,3,2178,2175,2179],[2152,2151,2156,3,2175,2174,2179],[2156,2151,2157,3,2179,2174,2180],[2151,2158,2157,3,2174,2181,2180],[2159,2155,2156,3,2182,2178,2179],[2160,2155,2159,3,2183,2178,2182],[2160,2140,2155,3,2183,2163,2178],[2160,2126,2140,3,2183,2149,2163],[2160,2125,2126,3,2183,2148,2149],[2161,2125,2160,3,2184,2148,2183],[2162,2125,2161,3,2185,2148,2184],[2163,2125,2162,3,2186,2148,2185],[2163,2124,2125,3,2186,2147,2148],[2164,2124,2163,3,2187,2147,2186],[2164,2123,2124,3,2187,2146,2147],[2164,2122,2123,3,2187,2145,2146],[2121,2122,2164,3,2144,2145,2187],[2121,2164,2165,3,2144,2187,2188],[2164,2163,2165,3,2187,2186,2188],[2163,2166,2165,3,2186,2189,2188],[2163,2167,2166,3,2186,2190,2189],[2163,2162,2167,3,2186,2185,2190],[2167,2162,2161,3,2190,2185,2184],[2161,2168,2167,3,2184,2191,2190],[2168,2161,2159,3,2191,2184,2182],[2161,2160,2159,3,2184,2183,2182],[2159,2169,2168,3,2182,2192,2191],[2159,2156,2169,3,2182,2179,2192],[2169,2156,2170,3,2192,2179,2193],[2169,2170,2171,3,2192,2193,2194],[2170,2172,2171,3,2193,2195,2194],[2173,2171,2172,3,2196,2194,2195],[2174,2171,2173,3,2197,2194,2196],[2169,2171,2174,3,2192,2194,2197],[2168,2169,2174,3,2191,2192,2197],[2168,2174,2175,3,2191,2197,2198],[2174,2176,2175,3,2197,2199,2198],[2174,2177,2176,3,2197,2200,2199],[2177,2178,2176,3,2200,2201,2199],[2179,2175,2176,3,2202,2198,2199],[2166,2175,2179,3,2189,2198,2202],[2166,2167,2175,3,2189,2190,2198],[2167,2168,2175,3,2190,2191,2198],[2165,2166,2179,3,2188,2189,2202],[2165,2179,2180,3,2188,2202,2203],[2180,2179,2181,3,2203,2202,2204],[2179,2176,2181,3,2202,2199,2204],[2176,2182,2181,3,2199,2205,2204],[2183,2181,2182,3,2206,2204,2205],[2180,2181,2183,3,2203,2204,2206],[2184,2180,2183,3,2207,2203,2206],[2165,2180,2184,3,2188,2203,2207],[2120,2165,2184,3,2143,2188,2207],[2121,2165,2120,3,2144,2188,2143],[2120,2184,2185,3,2143,2207,2208],[2184,2186,2185,3,2207,2209,2208],[2184,2187,2186,3,2207,2210,2209],[2187,2188,2186,3,2210,2211,2209],[2187,2189,2188,3,2210,2212,2211],[2189,2190,2188,3,2212,2213,2211],[2119,2120,2185,3,2142,2143,2208],[2119,2185,2191,3,2142,2208,2214],[2191,2185,2192,3,2214,2208,2215],[2185,2193,2192,3,2208,2216,2215],[2192,2193,2194,3,2215,2216,2217],[2119,2191,2118,3,2142,2214,2141],[2118,2191,2195,3,2141,2214,2218],[2195,2191,2196,3,2218,2214,2219],[2191,2197,2196,3,2214,2220,2219],[2198,2196,2197,3,2221,2219,2220],[2117,2118,2195,3,2140,2141,2218],[2199,2117,2195,3,2222,2140,2218],[1949,2117,2199,3,1972,2140,2222],[1949,1950,2117,3,1972,1973,2140],[1949,2199,2200,3,1972,2222,2223],[2201,1949,2200,3,2224,1972,2223],[1948,1949,2201,3,1971,1972,2224],[1948,2201,2202,3,1971,2224,2225],[2202,2201,2203,3,2225,2224,2226],[2203,2201,2204,3,2226,2224,2227],[2201,2200,2204,3,2224,2223,2227],[2205,2203,2204,3,2228,2226,2227],[2202,2203,2205,3,2225,2226,2228],[2199,2195,2206,3,2222,2218,2229],[2207,2199,2206,3,2230,2222,2229],[2207,2206,2208,3,2230,2229,2231],[2209,2207,2208,3,2232,2230,2231],[2210,2209,2208,3,2233,2232,2231],[2184,2183,2211,3,2207,2206,2234],[2183,2212,2211,3,2206,2235,2234],[1947,1948,2213,3,1970,1971,2236],[2214,1947,2213,3,2237,1970,2236],[2215,1947,2214,3,2238,1970,2237],[1947,2215,1946,3,1970,2238,1969],[2216,2215,2214,3,2239,2238,2237],[2216,2214,2213,3,2239,2237,2236],[2217,2218,2219,3,2240,2241,2242],[2218,2217,2220,3,2241,2240,2243],[2220,2217,2221,3,2243,2240,2244],[2217,2222,2221,3,2240,2245,2244],[2222,2217,2223,3,2245,2240,2246],[2223,2217,2219,3,2246,2240,2242],[2224,2222,2223,3,2247,2245,2246],[2222,2224,2225,3,2245,2247,2248],[2221,2222,2225,3,2244,2245,2248],[2226,2218,2220,3,2249,2241,2243],[2218,2226,2227,3,2241,2249,2250],[2226,2228,2227,3,2249,2251,2250],[2227,2228,2229,3,2250,2251,2252],[2228,2230,2229,3,2251,2253,2252],[2229,2230,2231,3,2252,2253,2254],[2231,2230,2232,3,2254,2253,2255],[2231,2232,2233,3,2254,2255,2256],[2233,2232,2234,3,2256,2255,2257],[2232,2235,2234,3,2255,2258,2257],[2232,2236,2235,3,2255,2259,2258],[2236,2237,2235,3,2259,2260,2258],[2236,2238,2237,3,2259,2261,2260],[2236,2239,2238,3,2259,2262,2261],[2238,2240,2237,3,2261,2263,2260],[2237,2240,2241,3,2260,2263,2264],[2241,2240,2242,3,2264,2263,2265],[2240,2243,2242,3,2263,2266,2265],[2243,2244,2242,3,2266,2267,2265],[2241,2242,2245,3,2264,2265,2268],[2245,2242,2246,3,2268,2265,2269],[2246,2242,2247,3,2269,2265,2270],[2247,2248,2246,3,2270,2271,2269],[2237,2241,2249,3,2260,2264,2272],[2237,2249,2235,3,2260,2272,2258],[2250,2235,2249,3,2273,2258,2272],[2234,2235,2250,3,2257,2258,2273],[2251,2234,2250,3,2274,2257,2273],[2233,2234,2251,3,2256,2257,2274],[2252,2251,2250,3,2275,2274,2273],[2252,2250,2253,3,2275,2273,2276],[2252,2253,2254,3,2275,2276,2277],[2255,2231,2233,3,2278,2254,2256],[2255,2233,2256,3,2278,2256,2279],[2257,2255,2256,3,2280,2278,2279],[2257,2256,2258,3,2280,2279,2281],[2259,2257,2258,3,2282,2280,2281],[2260,2229,2231,3,2283,2252,2254],[2227,2229,2260,3,2250,2252,2283],[2261,2227,2260,3,2284,2250,2283],[2261,2260,2262,3,2284,2283,2285],[2262,2260,2263,3,2285,2283,2286],[2260,2231,2263,3,2283,2254,2286],[2264,2262,2263,3,2287,2285,2286],[2265,2262,2264,3,2288,2285,2287],[2265,2266,2262,3,2288,2289,2285],[2266,2261,2262,3,2289,2284,2285],[2218,2227,2219,3,2241,2250,2242],[2267,2226,2220,3,2290,2249,2243],[2226,2267,2268,3,2249,2290,2291],[2268,2267,2269,3,2291,2290,2292],[2267,2270,2269,3,2290,2293,2292],[2270,2267,2220,3,2293,2290,2243],[2270,2220,2271,3,2293,2243,2294],[2272,2270,2271,3,2295,2293,2294],[2270,2272,2273,3,2293,2295,2296],[2273,2272,2274,3,2296,2295,2297],[2274,2272,2275,3,2297,2295,2298],[2272,2271,2275,3,2295,2294,2298],[2269,2270,2273,3,2292,2293,2296],[2268,2269,2276,3,2291,2292,2299],[2276,2269,2277,3,2299,2292,2300],[2269,2278,2277,3,2292,2301,2300],[2278,2279,2277,3,2301,2302,2300],[2277,2279,2280,3,2300,2302,2303],[2281,2277,2280,3,2304,2300,2303],[2281,2276,2277,3,2304,2299,2300],[2282,2276,2281,3,2305,2299,2304],[2283,2276,2282,3,2306,2299,2305],[2283,2268,2276,3,2306,2291,2299],[2284,2268,2283,3,2307,2291,2306],[2226,2268,2284,3,2249,2291,2307],[2284,2283,2285,3,2307,2306,2308],[2285,2283,2282,3,2308,2306,2305],[2286,2285,2282,3,2309,2308,2305],[2286,2282,2287,3,2309,2305,2310],[2282,2288,2287,3,2305,2311,2310],[2287,2288,2289,3,2310,2311,2312],[2288,2290,2289,3,2311,2313,2312],[2289,2290,2291,3,2312,2313,2314],[2290,2292,2291,3,2313,2315,2314],[2286,2287,2293,3,2309,2310,2316],[2293,2287,2294,3,2316,2310,2317],[2293,2294,2295,3,2316,2317,2318],[2294,2296,2295,3,2317,2319,2318],[2295,2296,2297,3,2318,2319,2320],[2296,2298,2297,3,2319,2321,2320],[2299,2293,2295,3,2322,2316,2318],[2286,2293,2299,3,2309,2316,2322],[2300,2286,2299,3,2323,2309,2322],[2299,2301,2300,3,2322,2324,2323],[2299,2302,2301,3,2322,2325,2324],[2295,2302,2299,3,2318,2325,2322],[2301,2302,2303,3,2324,2325,2326],[2301,2303,2304,3,2324,2326,2327],[2303,2305,2304,3,2326,2328,2327],[2303,2306,2305,3,2326,2329,2328],[2306,2307,2305,3,2329,2330,2328],[2307,2308,2305,3,2330,2331,2328],[2307,2309,2308,3,2330,2332,2331],[2305,2310,2304,3,2328,2333,2327],[2305,2311,2310,3,2328,2334,2333],[2301,2304,2312,3,2324,2327,2335],[2301,2312,2300,3,2324,2335,2323],[2300,2312,2313,3,2323,2335,2336],[2314,2315,2316,0,2337,2338,2339],[2314,2317,2315,0,2337,2340,2338],[2317,2314,2318,0,2340,2337,2341],[2318,2319,2317,0,2341,2342,2340],[2320,2319,2318,0,2343,2342,2341],[2320,2321,2319,0,2343,2344,2342],[2320,2322,2321,0,2343,2345,2344],[2322,2320,2323,0,2345,2343,2346],[2323,2320,2324,0,2346,2343,2347],[2320,2314,2324,0,2343,2337,2347],[2318,2314,2320,0,2341,2337,2343],[2324,2314,2325,0,2347,2337,2348],[2325,2326,2324,0,2348,2349,2347],[2327,2326,2325,0,2350,2349,2348],[2326,2327,2328,0,2349,2350,2351],[2328,2327,2329,0,2351,2350,2352],[2329,2327,2330,0,2352,2350,2353],[2327,2331,2330,0,2350,2354,2353],[2327,2325,2331,0,2350,2348,2354],[2325,2316,2331,0,2348,2339,2354],[2325,2314,2316,0,2348,2337,2339],[2331,2316,2315,0,2354,2339,2338],[2331,2315,2332,0,2354,2338,2355],[2332,2315,2317,0,2355,2338,2340],[2332,2317,2321,0,2355,2340,2344],[2321,2317,2319,0,2344,2340,2342],[2333,2332,2321,0,2356,2355,2344],[2330,2332,2333,0,2353,2355,2356],[2330,2331,2332,0,2353,2354,2355],[2334,2330,2333,0,2357,2353,2356],[2334,2329,2330,0,2357,2352,2353],[2335,2329,2334,0,2358,2352,2357],[2335,2336,2329,0,2358,2359,2352],[2337,2336,2335,0,2360,2359,2358],[2337,2338,2336,0,2360,2361,2359],[2339,2338,2337,0,2362,2361,2360],[2339,2340,2338,0,2362,2363,2361],[2341,2340,2339,0,2364,2363,2362],[2342,2340,2341,0,2365,2363,2364],[2342,2343,2340,0,2365,2366,2363],[2342,2344,2343,0,2365,2367,2366],[2345,2344,2342,0,2368,2367,2365],[2346,2344,2345,0,2369,2367,2368],[2346,2347,2344,0,2369,2370,2367],[2346,2348,2347,0,2369,2371,2370],[2346,2349,2348,0,2369,2372,2371],[2350,2349,2346,0,2373,2372,2369],[2350,2351,2349,0,2373,2374,2372],[2351,2352,2349,0,2374,2375,2372],[2353,2352,2351,0,2376,2375,2374],[2353,2354,2352,0,2376,2377,2375],[2355,2354,2353,0,2378,2377,2376],[2355,2356,2354,0,2378,2379,2377],[2355,2357,2356,0,2378,2380,2379],[2357,2358,2356,0,2380,2381,2379],[2356,2358,2359,0,2379,2381,2382],[2360,2359,2358,0,2383,2382,2381],[2360,2361,2359,0,2383,2384,2382],[2360,2362,2361,0,2383,2385,2384],[2362,2363,2361,0,2385,2386,2384],[2364,2363,2362,0,2387,2386,2385],[2364,2341,2363,0,2387,2364,2386],[2365,2341,2364,0,2388,2364,2387],[2365,2342,2341,0,2388,2365,2364],[2345,2342,2365,0,2368,2365,2388],[2365,2366,2345,0,2388,2389,2368],[2350,2345,2366,0,2373,2368,2389],[2350,2346,2345,0,2373,2369,2368],[2363,2341,2339,0,2386,2364,2362],[2363,2339,2367,0,2386,2362,2390],[2339,2337,2367,0,2362,2360,2390],[2367,2337,2368,0,2390,2360,2391],[2368,2337,2335,0,2391,2360,2358],[2368,2335,2369,0,2391,2358,2392],[2369,2335,2334,0,2392,2358,2357],[2369,2334,2370,0,2392,2357,2393],[2334,2333,2370,0,2357,2356,2393],[2370,2333,2322,0,2393,2356,2345],[2333,2321,2322,0,2356,2344,2345],[2370,2322,2371,0,2393,2345,2394],[2371,2322,2323,0,2394,2345,2346],[2371,2323,2326,0,2394,2346,2349],[2323,2324,2326,0,2346,2347,2349],[2371,2326,2372,0,2394,2349,2395],[2328,2372,2326,0,2351,2395,2349],[2328,2373,2372,0,2351,2396,2395],[2328,2374,2373,0,2351,2397,2396],[2375,2374,2328,0,2398,2397,2351],[2375,2376,2374,0,2398,2399,2397],[2377,2376,2375,0,2400,2399,2398],[2377,2378,2376,0,2400,2401,2399],[2379,2378,2377,0,2402,2401,2400],[2379,2380,2378,0,2402,2403,2401],[2381,2380,2379,0,2404,2403,2402],[2381,2382,2380,0,2404,2405,2403],[2381,2383,2382,0,2404,2406,2405],[2384,2383,2381,0,2407,2406,2404],[2384,2385,2383,0,2407,2408,2406],[2386,2385,2384,0,2409,2408,2407],[2387,2385,2386,0,2410,2408,2409],[2387,2388,2385,0,2410,2411,2408],[2387,2389,2388,0,2410,2412,2411],[2387,2356,2389,0,2410,2379,2412],[2354,2356,2387,0,2377,2379,2410],[2354,2387,2352,0,2377,2410,2375],[2352,2387,2386,0,2375,2410,2409],[2349,2352,2386,0,2372,2375,2409],[2349,2386,2348,0,2372,2409,2371],[2348,2386,2384,0,2371,2409,2407],[2348,2384,2390,0,2371,2407,2413],[2390,2384,2381,0,2413,2407,2404],[2390,2381,2379,0,2413,2404,2402],[2390,2379,2391,0,2413,2402,2414],[2379,2377,2391,0,2402,2400,2414],[2391,2377,2375,0,2414,2400,2398],[2391,2375,2392,0,2414,2398,2415],[2392,2375,2393,0,2415,2398,2416],[2375,2328,2393,0,2398,2351,2416],[2393,2328,2329,0,2416,2351,2352],[2393,2329,2336,0,2416,2352,2359],[2393,2336,2338,0,2416,2359,2361],[2392,2393,2338,0,2415,2416,2361],[2392,2338,2340,0,2415,2361,2363],[2343,2392,2340,0,2366,2415,2363],[2344,2392,2343,0,2367,2415,2366],[2344,2391,2392,0,2367,2414,2415],[2347,2391,2344,0,2370,2414,2367],[2347,2390,2391,0,2370,2413,2414],[2347,2348,2390,0,2370,2371,2413],[2356,2394,2389,0,2379,2417,2412],[2356,2359,2394,0,2379,2382,2417],[2359,2367,2394,0,2382,2390,2417],[2361,2367,2359,0,2384,2390,2382],[2363,2367,2361,0,2386,2390,2384],[2394,2367,2395,0,2417,2390,2418],[2395,2367,2368,0,2418,2390,2391],[2395,2368,2396,0,2418,2391,2419],[2368,2369,2396,0,2391,2392,2419],[2369,2371,2396,0,2392,2394,2419],[2369,2370,2371,0,2392,2393,2394],[2396,2371,2397,0,2419,2394,2420],[2397,2371,2398,0,2420,2394,2421],[2371,2372,2398,0,2394,2395,2421],[2372,2373,2398,0,2395,2396,2421],[2398,2373,2399,0,2421,2396,2422],[2373,2400,2399,0,2396,2423,2422],[2374,2400,2373,0,2397,2423,2396],[2401,2400,2374,0,2424,2423,2397],[2401,2402,2400,0,2424,2425,2423],[2401,2403,2402,0,2424,2426,2425],[2401,2404,2403,0,2424,2427,2426],[2376,2404,2401,0,2399,2427,2424],[2376,2405,2404,0,2399,2428,2427],[2376,2406,2405,0,2399,2429,2428],[2407,2406,2376,0,2430,2429,2399],[2407,2408,2406,0,2430,2431,2429],[2407,2409,2408,0,2430,2432,2431],[2407,2410,2409,0,2430,2433,2432],[2378,2410,2407,0,2401,2433,2430],[2378,2411,2410,0,2401,2434,2433],[2378,2412,2411,0,2401,2435,2434],[2413,2412,2378,0,2436,2435,2401],[2413,2414,2412,0,2436,2437,2435],[2413,2415,2414,0,2436,2438,2437],[2413,2416,2415,0,2436,2439,2438],[2380,2416,2413,0,2403,2439,2436],[2380,2417,2416,0,2403,2440,2439],[2380,2418,2417,0,2403,2441,2440],[2419,2418,2380,0,2442,2441,2403],[2419,2420,2418,0,2442,2443,2441],[2419,2421,2420,0,2442,2444,2443],[2419,2422,2421,0,2442,2445,2444],[2382,2422,2419,0,2405,2445,2442],[2382,2423,2422,0,2405,2446,2445],[2383,2423,2382,0,2406,2446,2405],[2424,2423,2383,0,2447,2446,2406],[2424,2425,2423,0,2447,2448,2446],[2424,2426,2425,0,2447,2449,2448],[2388,2426,2424,0,2411,2449,2447],[2388,2427,2426,0,2411,2450,2449],[2388,2389,2427,0,2411,2412,2450],[2389,2394,2427,0,2412,2417,2450],[2427,2394,2395,0,2450,2417,2418],[2427,2395,2428,0,2450,2418,2451],[2395,2396,2428,0,2418,2419,2451],[2428,2396,2429,0,2451,2419,2452],[2429,2396,2397,0,2452,2419,2420],[2429,2397,2430,0,2452,2420,2453],[2397,2431,2430,0,2420,2454,2453],[2397,2405,2431,0,2420,2428,2454],[2397,2432,2404,0,2420,2455,2427],[2397,2433,2432,0,2420,2456,2455],[2398,2433,2397,0,2421,2456,2420],[2398,2399,2433,0,2421,2422,2456],[2399,2434,2433,0,2422,2457,2456],[2399,2435,2434,0,2422,2458,2457],[2399,2400,2435,0,2422,2423,2458],[2400,2402,2435,0,2423,2425,2458],[2435,2402,2436,0,2458,2425,2459],[2437,2436,2402,0,2460,2459,2425],[2437,2438,2436,0,2460,2461,2459],[2437,2439,2438,0,2460,2462,2461],[2437,2440,2439,0,2460,2463,2462],[2403,2440,2437,0,2426,2463,2460],[2403,2441,2440,0,2426,2464,2463],[2404,2441,2403,0,2427,2464,2426],[2432,2441,2404,0,2455,2464,2427],[2432,2442,2441,0,2455,2465,2464],[2433,2442,2432,0,2456,2465,2455],[2442,2433,2434,0,2465,2456,2457],[2434,2443,2442,0,2457,2466,2465],[2434,2444,2443,0,2457,2467,2466],[2435,2444,2434,0,2458,2467,2457],[2436,2444,2435,0,2459,2467,2458],[2436,2445,2444,0,2459,2468,2467],[2436,2438,2445,0,2459,2461,2468],[2446,2445,2438,0,2469,2468,2461],[2446,2447,2445,0,2469,2470,2468],[2448,2447,2446,0,2471,2470,2469],[2449,2447,2448,0,2472,2470,2471],[2449,2450,2447,0,2472,2473,2470],[2449,2451,2450,0,2472,2474,2473],[2451,2449,2448,0,2474,2472,2471],[2452,2451,2448,0,2475,2474,2471],[2453,2451,2452,0,2476,2474,2475],[2451,2453,2443,0,2474,2476,2466],[2442,2443,2453,0,2465,2466,2476],[2442,2453,2440,0,2465,2476,2463],[2440,2453,2452,0,2463,2476,2475],[2440,2452,2439,0,2463,2475,2462],[2439,2452,2448,0,2462,2475,2471],[2439,2448,2454,0,2462,2471,2477],[2454,2448,2446,0,2477,2471,2469],[2454,2446,2438,0,2477,2469,2461],[2454,2438,2439,0,2477,2461,2462],[2442,2440,2441,0,2465,2463,2464],[2451,2443,2455,0,2474,2466,2478],[2444,2455,2443,0,2467,2478,2466],[2444,2445,2455,0,2467,2468,2478],[2445,2447,2455,0,2468,2470,2478],[2455,2447,2450,0,2478,2470,2473],[2455,2450,2451,0,2478,2473,2474],[2403,2437,2402,0,2426,2460,2425],[2406,2431,2405,0,2429,2454,2428],[2406,2456,2431,0,2429,2479,2454],[2406,2408,2456,0,2429,2431,2479],[2408,2457,2456,0,2431,2480,2479],[2458,2457,2408,0,2481,2480,2431],[2458,2459,2457,0,2481,2482,2480],[2458,2460,2459,0,2481,2483,2482],[2458,2461,2460,0,2481,2484,2483],[2409,2461,2458,0,2432,2484,2481],[2409,2462,2461,0,2432,2485,2484],[2410,2462,2409,0,2433,2485,2432],[2410,2463,2462,0,2433,2486,2485],[2429,2463,2410,0,2452,2486,2433],[2429,2430,2463,0,2452,2453,2486],[2463,2430,2464,0,2486,2453,2487],[2464,2430,2465,0,2487,2453,2488],[2431,2465,2430,0,2454,2488,2453],[2431,2456,2465,0,2454,2479,2488],[2456,2466,2465,0,2479,2489,2488],[2457,2466,2456,0,2480,2489,2479],[2457,2467,2466,0,2480,2490,2489],[2459,2467,2457,0,2482,2490,2480],[2468,2467,2459,0,2491,2490,2482],[2467,2468,2469,0,2490,2491,2492],[2470,2469,2468,0,2493,2492,2491],[2471,2469,2470,0,2494,2492,2493],[2471,2472,2469,0,2494,2495,2492],[2473,2472,2471,0,2496,2495,2494],[2473,2474,2472,0,2496,2497,2495],[2473,2475,2474,0,2496,2498,2497],[2473,2476,2475,0,2496,2499,2498],[2477,2476,2473,0,2500,2499,2496],[2461,2476,2477,0,2484,2499,2500],[2464,2476,2461,0,2487,2499,2484],[2464,2475,2476,0,2487,2498,2499],[2464,2465,2475,0,2487,2488,2498],[2465,2466,2475,0,2488,2489,2498],[2466,2474,2475,0,2489,2497,2498],[2466,2467,2474,0,2489,2490,2497],[2467,2469,2474,0,2490,2492,2497],[2474,2469,2472,0,2497,2492,2495],[2462,2464,2461,0,2485,2487,2484],[2463,2464,2462,0,2486,2487,2485],[2460,2461,2477,0,2483,2484,2500],[2460,2477,2470,0,2483,2500,2493],[2477,2473,2470,0,2500,2496,2493],[2473,2471,2470,0,2496,2494,2493],[2460,2470,2478,0,2483,2493,2501],[2478,2470,2468,0,2501,2493,2491],[2459,2478,2468,0,2482,2501,2491],[2460,2478,2459,0,2483,2501,2482],[2411,2412,2479,0,2434,2435,2502],[2412,2480,2479,0,2435,2503,2502],[2412,2414,2480,0,2435,2437,2503],[2414,2481,2480,0,2437,2504,2503],[2482,2481,2414,0,2505,2504,2437],[2482,2483,2481,0,2505,2506,2504],[2484,2483,2482,0,2507,2506,2505],[2484,2485,2483,0,2507,2508,2506],[2484,2486,2485,0,2507,2509,2508],[2484,2487,2486,0,2507,2510,2509],[2484,2488,2487,0,2507,2511,2510],[2482,2488,2484,0,2505,2511,2507],[2415,2488,2482,0,2438,2511,2505],[2415,2489,2488,0,2438,2512,2511],[2415,2416,2489,0,2438,2439,2512],[2416,2490,2489,0,2439,2513,2512],[2491,2490,2416,0,2514,2513,2439],[2491,2492,2490,0,2514,2515,2513],[2491,2429,2492,0,2514,2452,2515],[2491,2428,2429,0,2514,2451,2452],[2426,2428,2491,0,2449,2451,2514],[2427,2428,2426,0,2450,2451,2449],[2425,2426,2491,0,2448,2449,2514],[2425,2491,2493,0,2448,2514,2516],[2491,2494,2493,0,2514,2517,2516],[2491,2417,2494,0,2514,2440,2517],[2491,2416,2417,0,2514,2439,2440],[2417,2418,2494,0,2440,2441,2517],[2418,2495,2494,0,2441,2518,2517],[2418,2420,2495,0,2441,2443,2518],[2420,2496,2495,0,2443,2519,2518],[2420,2497,2496,0,2443,2520,2519],[2421,2497,2420,0,2444,2520,2443],[2421,2498,2497,0,2444,2521,2520],[2421,2499,2498,0,2444,2522,2521],[2421,2422,2499,0,2444,2445,2522],[2422,2500,2499,0,2445,2523,2522],[2422,2425,2500,0,2445,2448,2523],[2423,2425,2422,0,2446,2448,2445],[2425,2493,2500,0,2448,2516,2523],[2500,2493,2501,0,2523,2516,2524],[2501,2493,2502,0,2524,2516,2525],[2494,2502,2493,0,2517,2525,2516],[2494,2495,2502,0,2517,2518,2525],[2495,2503,2502,0,2518,2526,2525],[2495,2496,2503,0,2518,2519,2526],[2496,2504,2503,0,2519,2527,2526],[2496,2505,2504,0,2519,2528,2527],[2497,2505,2496,0,2520,2528,2519],[2497,2506,2505,0,2520,2529,2528],[2497,2498,2506,0,2520,2521,2529],[2506,2498,2507,0,2529,2521,2530],[2498,2508,2507,0,2521,2531,2530],[2501,2508,2498,0,2524,2531,2521],[2501,2509,2508,0,2524,2532,2531],[2501,2502,2509,0,2524,2525,2532],[2502,2503,2509,0,2525,2526,2532],[2503,2510,2509,0,2526,2533,2532],[2503,2504,2510,0,2526,2527,2533],[2504,2511,2510,0,2527,2534,2533],[2504,2512,2511,0,2527,2535,2534],[2505,2512,2504,0,2528,2535,2527],[2505,2513,2512,0,2528,2536,2535],[2506,2513,2505,0,2529,2536,2528],[2506,2514,2513,0,2529,2537,2536],[2506,2507,2514,0,2529,2530,2537],[2507,2515,2514,0,2530,2538,2537],[2507,2508,2515,0,2530,2531,2538],[2508,2509,2515,0,2531,2532,2538],[2515,2509,2510,0,2538,2532,2533],[2515,2510,2516,0,2538,2533,2539],[2510,2511,2516,0,2533,2534,2539],[2517,2516,2511,0,2540,2539,2534],[2515,2516,2517,0,2538,2539,2540],[2515,2517,2514,0,2538,2540,2537],[2517,2511,2514,0,2540,2534,2537],[2514,2511,2512,0,2537,2534,2535],[2513,2514,2512,0,2536,2537,2535],[2501,2498,2499,0,2524,2521,2522],[2499,2500,2501,0,2522,2523,2524],[2429,2479,2492,0,2452,2502,2515],[2479,2518,2492,0,2502,2541,2515],[2479,2480,2518,0,2502,2503,2541],[2480,2519,2518,0,2503,2542,2541],[2481,2519,2480,0,2504,2542,2503],[2481,2520,2519,0,2504,2543,2542],[2483,2520,2481,0,2506,2543,2504],[2521,2520,2483,0,2544,2543,2506],[2521,2522,2520,0,2544,2545,2543],[2486,2522,2521,0,2509,2545,2544],[2523,2522,2486,0,2546,2545,2509],[2523,2524,2522,0,2546,2547,2545],[2525,2524,2523,0,2548,2547,2546],[2525,2526,2524,0,2548,2549,2547],[2525,2527,2526,0,2548,2550,2549],[2528,2527,2525,0,2551,2550,2548],[2529,2527,2528,0,2552,2550,2551],[2529,2518,2527,0,2552,2541,2550],[2529,2492,2518,0,2552,2515,2541],[2490,2492,2529,0,2513,2515,2552],[2490,2529,2489,0,2513,2552,2512],[2489,2529,2488,0,2512,2552,2511],[2529,2528,2488,0,2552,2551,2511],[2488,2528,2487,0,2511,2551,2510],[2487,2528,2525,0,2510,2551,2548],[2487,2525,2486,0,2510,2548,2509],[2525,2523,2486,0,2548,2546,2509],[2518,2519,2527,0,2541,2542,2550],[2519,2526,2527,0,2542,2549,2550],[2519,2520,2526,0,2542,2543,2549],[2520,2522,2526,0,2543,2545,2549],[2526,2522,2524,0,2549,2545,2547],[2486,2521,2485,0,2509,2544,2508],[2483,2485,2521,0,2506,2508,2544],[2415,2482,2414,0,2438,2505,2437],[2409,2458,2408,0,2432,2481,2431],[2388,2424,2383,0,2411,2447,2406],[2388,2383,2385,0,2411,2406,2408],[2382,2419,2380,0,2405,2442,2403],[2380,2413,2378,0,2403,2436,2401],[2378,2407,2376,0,2401,2430,2399],[2374,2376,2401,0,2397,2399,2424],[2397,2404,2405,4,2420,2427,2428],[2429,2410,2411,4,2452,2433,2434],[2429,2411,2479,4,2452,2434,2502],[2530,2531,2532,0,2553,2554,2555],[2530,2533,2531,0,2553,2556,2554],[2533,2530,2534,0,2556,2553,2557],[2535,2533,2534,0,2558,2556,2557],[2531,2533,2535,0,2554,2556,2558],[2531,2535,2536,0,2554,2558,2559],[2536,2535,2537,0,2559,2558,2560],[2537,2535,2538,0,2560,2558,2561],[2538,2535,2539,0,2561,2558,2562],[2535,2534,2539,0,2558,2557,2562],[2530,2539,2534,0,2553,2562,2557],[2539,2530,2540,0,2562,2553,2563],[2540,2541,2539,0,2563,2564,2562],[2542,2541,2540,0,2565,2564,2563],[2542,2543,2541,0,2565,2566,2564],[2542,2544,2543,0,2565,2567,2566],[2545,2544,2542,0,2568,2567,2565],[2546,2544,2545,0,2569,2567,2568],[2546,2547,2544,0,2569,2570,2567],[2546,2548,2547,0,2569,2571,2570],[2548,2546,2549,0,2571,2569,2572],[2549,2546,2550,0,2572,2569,2573],[2546,2551,2550,0,2569,2574,2573],[2546,2545,2551,0,2569,2568,2574],[2551,2545,2552,0,2574,2568,2575],[2552,2545,2553,0,2575,2568,2576],[2545,2542,2553,0,2568,2565,2576],[2553,2542,2540,0,2576,2565,2563],[2553,2540,2532,0,2576,2563,2555],[2540,2530,2532,0,2563,2553,2555],[2553,2532,2554,0,2576,2555,2577],[2532,2531,2554,0,2555,2554,2577],[2552,2554,2531,0,2575,2577,2554],[2552,2553,2554,0,2575,2576,2577],[2552,2531,2536,0,2575,2554,2559],[2552,2536,2551,0,2575,2559,2574],[2551,2536,2537,0,2574,2559,2560],[2551,2537,2550,0,2574,2560,2573],[2550,2537,2555,0,2573,2560,2578],[2537,2556,2555,0,2560,2579,2578],[2537,2538,2556,0,2560,2561,2579],[2541,2556,2538,0,2564,2579,2561],[2541,2543,2556,0,2564,2566,2579],[2557,2556,2543,0,2580,2579,2566],[2557,2558,2556,0,2580,2581,2579],[2559,2558,2557,0,2582,2581,2580],[2560,2558,2559,0,2583,2581,2582],[2560,2561,2558,0,2583,2584,2581],[2562,2561,2560,0,2585,2584,2583],[2562,2563,2561,0,2585,2586,2584],[2564,2563,2562,0,2587,2586,2585],[2564,2565,2563,0,2587,2588,2586],[2566,2565,2564,0,2589,2588,2587],[2567,2565,2566,0,2590,2588,2589],[2567,2568,2565,0,2590,2591,2588],[2569,2568,2567,0,2592,2591,2590],[2569,2570,2568,0,2592,2593,2591],[2569,2571,2570,0,2592,2594,2593],[2572,2571,2569,0,2595,2594,2592],[2573,2571,2572,0,2596,2594,2595],[2573,2574,2571,0,2596,2597,2594],[2573,2575,2574,0,2596,2598,2597],[2576,2575,2573,0,2599,2598,2596],[2577,2575,2576,0,2600,2598,2599],[2577,2578,2575,0,2600,2601,2598],[2577,2579,2578,0,2600,2602,2601],[2580,2579,2577,0,2603,2602,2600],[2579,2580,2581,0,2602,2603,2604],[2580,2582,2581,0,2603,2605,2604],[2582,2580,2583,0,2605,2603,2606],[2583,2580,2577,0,2606,2603,2600],[2577,2584,2583,0,2600,2607,2606],[2577,2576,2584,0,2600,2599,2607],[2584,2576,2585,0,2607,2599,2608],[2585,2576,2573,0,2608,2599,2596],[2585,2573,2586,0,2608,2596,2609],[2573,2572,2586,0,2596,2595,2609],[2586,2572,2587,0,2609,2595,2610],[2587,2572,2569,0,2610,2595,2592],[2587,2569,2588,0,2610,2592,2611],[2588,2569,2567,0,2611,2592,2590],[2588,2567,2566,0,2611,2590,2589],[2589,2588,2566,0,2612,2611,2589],[2589,2590,2588,0,2612,2613,2611],[2589,2591,2590,0,2612,2614,2613],[2592,2591,2589,0,2615,2614,2612],[2592,2593,2591,0,2615,2616,2614],[2594,2593,2592,0,2617,2616,2615],[2594,2595,2593,0,2617,2618,2616],[2596,2595,2594,0,2619,2618,2617],[2596,2597,2595,0,2619,2620,2618],[2598,2597,2596,0,2621,2620,2619],[2598,2599,2597,0,2621,2622,2620],[2599,2600,2597,0,2622,2623,2620],[2600,2601,2597,0,2623,2624,2620],[2600,2602,2601,0,2623,2625,2624],[2600,2603,2602,0,2623,2626,2625],[2603,2604,2602,0,2626,2627,2625],[2605,2604,2603,0,2628,2627,2626],[2605,2606,2604,0,2628,2629,2627],[2607,2606,2605,0,2630,2629,2628],[2607,2608,2606,0,2630,2631,2629],[2609,2608,2607,0,2632,2631,2630],[2609,2610,2608,0,2632,2633,2631],[2611,2610,2609,0,2634,2633,2632],[2612,2610,2611,0,2635,2633,2634],[2612,2613,2610,0,2635,2636,2633],[2614,2613,2612,0,2637,2636,2635],[2614,2615,2613,0,2637,2638,2636],[2614,2616,2615,0,2637,2639,2638],[2616,2617,2615,0,2639,2640,2638],[2598,2617,2616,0,2621,2640,2639],[2598,2596,2617,0,2621,2619,2640],[2596,2618,2617,0,2619,2641,2640],[2594,2618,2596,0,2617,2641,2619],[2592,2618,2594,0,2615,2641,2617],[2592,2619,2618,0,2615,2642,2641],[2592,2589,2619,0,2615,2612,2642],[2619,2589,2566,0,2642,2612,2589],[2619,2566,2620,0,2642,2589,2643],[2620,2566,2564,0,2643,2589,2587],[2620,2564,2621,0,2643,2587,2644],[2621,2564,2622,0,2644,2587,2645],[2622,2564,2562,0,2645,2587,2585],[2622,2562,2623,0,2645,2585,2646],[2623,2562,2560,0,2646,2585,2583],[2623,2560,2624,0,2646,2583,2647],[2624,2560,2559,0,2647,2583,2582],[2625,2624,2559,0,2648,2647,2582],[2625,2626,2624,0,2648,2649,2647],[2627,2626,2625,0,2650,2649,2648],[2627,2628,2626,0,2650,2651,2649],[2628,2627,2629,0,2651,2650,2652],[2629,2627,2549,0,2652,2650,2572],[2627,2548,2549,0,2650,2571,2572],[2548,2627,2625,0,2571,2650,2648],[2548,2625,2547,0,2571,2648,2570],[2547,2625,2559,0,2570,2648,2582],[2547,2559,2557,0,2570,2582,2580],[2544,2547,2557,0,2567,2570,2580],[2544,2557,2543,0,2567,2580,2566],[2549,2630,2629,0,2572,2653,2652],[2549,2550,2630,0,2572,2573,2653],[2630,2550,2631,0,2653,2573,2654],[2550,2632,2631,0,2573,2655,2654],[2550,2555,2632,0,2573,2578,2655],[2555,2633,2632,0,2578,2656,2655],[2555,2556,2633,0,2578,2579,2656],[2556,2634,2633,0,2579,2657,2656],[2558,2634,2556,0,2581,2657,2579],[2558,2635,2634,0,2581,2658,2657],[2561,2635,2558,0,2584,2658,2581],[2561,2636,2635,0,2584,2659,2658],[2563,2636,2561,0,2586,2659,2584],[2563,2568,2636,0,2586,2591,2659],[2565,2568,2563,0,2588,2591,2586],[2568,2637,2636,0,2591,2660,2659],[2568,2570,2637,0,2591,2593,2660],[2570,2638,2637,0,2593,2661,2660],[2570,2571,2638,0,2593,2594,2661],[2571,2639,2638,0,2594,2662,2661],[2571,2574,2639,0,2594,2597,2662],[2639,2574,2640,0,2662,2597,2663],[2640,2574,2575,0,2663,2597,2598],[2640,2575,2641,0,2663,2598,2664],[2641,2575,2578,0,2664,2598,2601],[2579,2641,2578,0,2602,2664,2601],[2579,2640,2641,0,2602,2663,2664],[2579,2581,2640,0,2602,2604,2663],[2581,2639,2640,0,2604,2662,2663],[2581,2642,2639,0,2604,2665,2662],[2582,2642,2581,0,2605,2665,2604],[2582,2643,2642,0,2605,2666,2665],[2643,2582,2584,0,2666,2605,2607],[2582,2583,2584,0,2605,2606,2607],[2643,2584,2585,0,2666,2607,2608],[2644,2643,2585,0,2667,2666,2608],[2643,2644,2645,0,2666,2667,2668],[2644,2646,2645,0,2667,2669,2668],[2644,2647,2646,0,2667,2670,2669],[2586,2647,2644,0,2609,2670,2667],[2587,2647,2586,0,2610,2670,2609],[2590,2647,2587,0,2613,2670,2610],[2647,2590,2648,0,2670,2613,2671],[2590,2649,2648,0,2613,2672,2671],[2650,2649,2590,0,2673,2672,2613],[2650,2651,2649,0,2673,2674,2672],[2652,2651,2650,0,2675,2674,2673],[2653,2651,2652,0,2676,2674,2675],[2653,2654,2651,0,2676,2677,2674],[2653,2655,2654,0,2676,2678,2677],[2653,2656,2655,0,2676,2679,2678],[2657,2656,2653,0,2680,2679,2676],[2658,2656,2657,0,2681,2679,2680],[2658,2659,2656,0,2681,2682,2679],[2660,2659,2658,0,2683,2682,2681],[2660,2661,2659,0,2683,2684,2682],[2662,2661,2660,0,2685,2684,2683],[2662,2656,2661,0,2685,2679,2684],[2662,2655,2656,0,2685,2678,2679],[2663,2655,2662,0,2686,2678,2685],[2663,2654,2655,0,2686,2677,2678],[2664,2654,2663,0,2687,2677,2686],[2665,2654,2664,0,2688,2677,2687],[2649,2654,2665,0,2672,2677,2688],[2651,2654,2649,0,2674,2677,2672],[2649,2665,2636,0,2672,2688,2659],[2636,2665,2666,0,2659,2688,2689],[2665,2664,2666,0,2688,2687,2689],[2667,2666,2664,0,2690,2689,2687],[2667,2668,2666,0,2690,2691,2689],[2669,2668,2667,0,2692,2691,2690],[2669,2670,2668,0,2692,2693,2691],[2652,2670,2669,0,2675,2693,2692],[2650,2670,2652,0,2673,2693,2675],[2671,2670,2650,0,2694,2693,2673],[2670,2671,2672,0,2693,2694,2695],[2671,2673,2672,0,2694,2696,2695],[2674,2673,2671,0,2697,2696,2694],[2674,2675,2673,0,2697,2698,2696],[2676,2675,2674,0,2699,2698,2697],[2677,2675,2676,0,2700,2698,2699],[2677,2678,2675,0,2700,2701,2698],[2677,2679,2678,0,2700,2702,2701],[2677,2680,2679,0,2700,2703,2702],[2681,2680,2677,0,2704,2703,2700],[2682,2680,2681,0,2705,2703,2704],[2682,2683,2680,0,2705,2706,2703],[2684,2683,2682,0,2707,2706,2705],[2684,2685,2683,0,2707,2708,2706],[2686,2685,2684,0,2709,2708,2707],[2686,2680,2685,0,2709,2703,2708],[2686,2679,2680,0,2709,2702,2703],[2687,2679,2686,0,2710,2702,2709],[2678,2679,2687,0,2701,2702,2710],[2688,2678,2687,0,2711,2701,2710],[2689,2678,2688,0,2712,2701,2711],[2673,2678,2689,0,2696,2701,2712],[2675,2678,2673,0,2698,2701,2696],[2673,2689,2635,0,2696,2712,2658],[2635,2689,2690,0,2658,2712,2713],[2689,2688,2690,0,2712,2711,2713],[2691,2690,2688,0,2714,2713,2711],[2691,2692,2690,0,2714,2715,2713],[2693,2692,2691,0,2716,2715,2714],[2693,2694,2692,0,2716,2717,2715],[2676,2694,2693,0,2699,2717,2716],[2674,2694,2676,0,2697,2717,2699],[2695,2694,2674,0,2718,2717,2697],[2694,2695,2696,0,2717,2718,2719],[2697,2696,2695,0,2720,2719,2718],[2697,2634,2696,0,2720,2657,2719],[2697,2698,2634,0,2720,2721,2657],[2697,2699,2698,0,2720,2722,2721],[2700,2699,2697,0,2723,2722,2720],[2701,2699,2700,0,2724,2722,2723],[2701,2702,2699,0,2724,2725,2722],[2701,2703,2702,0,2724,2726,2725],[2704,2703,2701,0,2727,2726,2724],[2705,2703,2704,0,2728,2726,2727],[2705,2706,2703,0,2728,2729,2726],[2707,2706,2705,0,2730,2729,2728],[2707,2708,2706,0,2730,2731,2729],[2709,2708,2707,0,2732,2731,2730],[2709,2703,2708,0,2732,2726,2731],[2709,2702,2703,0,2732,2725,2726],[2710,2702,2709,0,2733,2725,2732],[2699,2702,2710,0,2722,2725,2733],[2711,2699,2710,0,2734,2722,2733],[2711,2698,2699,0,2734,2721,2722],[2712,2698,2711,0,2735,2721,2734],[2634,2698,2712,0,2657,2721,2735],[2634,2712,2633,0,2657,2735,2656],[2713,2633,2712,0,2736,2656,2735],[2713,2632,2633,0,2736,2655,2656],[2714,2632,2713,0,2737,2655,2736],[2714,2631,2632,0,2737,2654,2655],[2631,2714,2715,0,2654,2737,2738],[2715,2714,2716,0,2738,2737,2739],[2716,2714,2717,0,2739,2737,2740],[2717,2714,2713,0,2740,2737,2736],[2717,2713,2718,0,2740,2736,2741],[2718,2713,2712,0,2741,2736,2735],[2718,2712,2711,0,2741,2735,2734],[2719,2718,2711,0,2742,2741,2734],[2720,2718,2719,0,2743,2741,2742],[2720,2717,2718,0,2743,2740,2741],[2717,2720,2721,0,2740,2743,2744],[2720,2722,2721,0,2743,2745,2744],[2720,2723,2722,0,2743,2746,2745],[2723,2720,2719,0,2746,2743,2742],[2723,2719,2724,0,2746,2742,2747],[2724,2719,2710,0,2747,2742,2733],[2719,2711,2710,0,2742,2734,2733],[2724,2710,2709,0,2747,2733,2732],[2724,2709,2707,0,2747,2732,2730],[2725,2724,2707,0,2748,2747,2730],[2725,2723,2724,0,2748,2746,2747],[2723,2725,2726,0,2746,2748,2749],[2726,2725,2705,0,2749,2748,2728],[2725,2707,2705,0,2748,2730,2728],[2726,2705,2722,0,2749,2728,2745],[2705,2704,2722,0,2728,2727,2745],[2722,2704,2721,0,2745,2727,2744],[2721,2704,2701,0,2744,2727,2724],[2721,2701,2716,0,2744,2724,2739],[2701,2700,2716,0,2724,2723,2739],[2716,2700,2715,0,2739,2723,2738],[2715,2700,2697,0,2738,2723,2720],[2715,2697,2695,0,2738,2720,2718],[2695,2631,2715,0,2718,2654,2738],[2630,2631,2695,0,2653,2654,2718],[2727,2630,2695,0,2750,2653,2718],[2593,2630,2727,0,2616,2653,2750],[2629,2630,2593,0,2652,2653,2616],[2595,2629,2593,0,2618,2652,2616],[2595,2728,2629,0,2618,2751,2652],[2601,2728,2595,0,2624,2751,2618],[2601,2628,2728,0,2624,2651,2751],[2601,2602,2628,0,2624,2625,2651],[2628,2602,2626,0,2651,2625,2649],[2602,2604,2626,0,2625,2627,2649],[2626,2604,2624,0,2649,2627,2647],[2604,2606,2624,0,2627,2629,2647],[2606,2623,2624,0,2629,2646,2647],[2608,2623,2606,0,2631,2646,2629],[2608,2622,2623,0,2631,2645,2646],[2610,2622,2608,0,2633,2645,2631],[2610,2621,2622,0,2633,2644,2645],[2613,2621,2610,0,2636,2644,2633],[2615,2621,2613,0,2638,2644,2636],[2729,2621,2615,0,2752,2644,2638],[2620,2621,2729,0,2643,2644,2752],[2619,2620,2729,0,2642,2643,2752],[2619,2729,2618,0,2642,2752,2641],[2618,2729,2617,0,2641,2752,2640],[2617,2729,2615,0,2640,2752,2638],[2728,2628,2629,0,2751,2651,2652],[2597,2601,2595,0,2620,2624,2618],[2593,2727,2591,0,2616,2750,2614],[2591,2727,2671,0,2614,2750,2694],[2727,2695,2671,0,2750,2718,2694],[2671,2695,2674,0,2694,2718,2697],[2591,2671,2590,0,2614,2694,2613],[2590,2671,2650,0,2613,2694,2673],[2717,2721,2716,0,2740,2744,2739],[2723,2726,2722,0,2746,2749,2745],[2703,2706,2708,0,2726,2729,2731],[2694,2696,2692,0,2717,2719,2715],[2692,2634,2690,0,2715,2657,2713],[2635,2690,2634,0,2658,2713,2657],[2676,2693,2730,0,2699,2716,2753],[2693,2731,2730,0,2716,2754,2753],[2731,2693,2691,0,2754,2716,2714],[2731,2691,2732,0,2754,2714,2755],[2732,2691,2688,0,2755,2714,2711],[2732,2688,2687,0,2755,2711,2710],[2733,2732,2687,0,2756,2755,2710],[2734,2732,2733,0,2757,2755,2756],[2734,2731,2732,0,2757,2754,2755],[2731,2734,2735,0,2754,2757,2758],[2734,2736,2735,0,2757,2759,2758],[2734,2737,2736,0,2757,2760,2759],[2737,2734,2733,0,2760,2757,2756],[2737,2733,2684,0,2760,2756,2707],[2684,2733,2686,0,2707,2756,2709],[2733,2687,2686,0,2756,2710,2709],[2737,2684,2682,0,2760,2707,2705],[2736,2737,2682,0,2759,2760,2705],[2736,2682,2735,0,2759,2705,2758],[2682,2681,2735,0,2705,2704,2758],[2735,2681,2730,0,2758,2704,2753],[2730,2681,2677,0,2753,2704,2700],[2730,2677,2676,0,2753,2700,2699],[2731,2735,2730,0,2754,2758,2753],[2673,2635,2672,0,2696,2658,2695],[2670,2672,2668,0,2693,2695,2691],[2668,2635,2666,0,2691,2658,2689],[2636,2666,2635,0,2659,2689,2658],[2680,2683,2685,0,2703,2706,2708],[2652,2669,2738,0,2675,2692,2761],[2669,2739,2738,0,2692,2762,2761],[2739,2669,2667,0,2762,2692,2690],[2739,2667,2740,0,2762,2690,2763],[2740,2667,2664,0,2763,2690,2687],[2740,2664,2663,0,2763,2687,2686],[2741,2740,2663,0,2764,2763,2686],[2742,2740,2741,0,2765,2763,2764],[2742,2739,2740,0,2765,2762,2763],[2739,2742,2743,0,2762,2765,2766],[2742,2744,2743,0,2765,2767,2766],[2742,2745,2744,0,2765,2768,2767],[2745,2742,2741,0,2768,2765,2764],[2745,2741,2660,0,2768,2764,2683],[2660,2741,2662,0,2683,2764,2685],[2741,2663,2662,0,2764,2686,2685],[2745,2660,2658,0,2768,2683,2681],[2744,2745,2658,0,2767,2768,2681],[2743,2744,2658,0,2766,2767,2681],[2658,2657,2743,0,2681,2680,2766],[2743,2657,2738,0,2766,2680,2761],[2738,2657,2653,0,2761,2680,2676],[2738,2653,2652,0,2761,2676,2675],[2739,2743,2738,0,2762,2766,2761],[2649,2636,2648,0,2672,2659,2671],[2646,2648,2636,0,2669,2671,2659],[2647,2648,2646,0,2670,2671,2669],[2646,2636,2637,0,2669,2659,2660],[2645,2646,2637,0,2668,2669,2660],[2645,2637,2638,0,2668,2660,2661],[2642,2645,2638,0,2665,2668,2661],[2643,2645,2642,0,2666,2668,2665],[2642,2638,2639,0,2665,2661,2662],[2661,2656,2659,0,2684,2679,2682],[2588,2590,2587,0,2611,2613,2610],[2586,2644,2585,0,2609,2667,2608],[2538,2539,2541,0,2561,2562,2564],[2692,2696,2634,4,2715,2719,2657],[2668,2672,2635,4,2691,2695,2658]], + + 'end': (new Date).getTime() + } + +postMessage( model ); diff --git a/examples/obj/torus/Torus_slim.js b/examples/obj/torus/Torus_slim.js new file mode 100644 index 0000000000000000000000000000000000000000..955f748324c16be4a15b7448d4ca8f20e27aa766 --- /dev/null +++ b/examples/obj/torus/Torus_slim.js @@ -0,0 +1,28 @@ +// Converted from: ../../examples/obj/torus/Torus.obj +// vertices: 576 +// faces: 576 +// materials: 1 +// +// Generated with OBJ -> Three.js converter +// http://github.com/alteredq/three.js/blob/master/utils/exporters/convert_obj_threejs_slim.py + + +var model = { + 'materials': [ { + "a_dbg_color" : 0xffeeeeee, + "a_dbg_index" : 0, + "a_dbg_name" : "(null)" + }], + + 'normals': [[1.000000,0.000000,0.000000],[0.991424,0.000000,-0.130497],[0.858547,0.500107,-0.113010],[0.865963,0.500107,0.000000],[0.495590,0.866085,-0.065249],[0.499863,0.866085,0.000000],[0.000000,1.000000,0.000000],[-0.495590,0.866085,0.065249],[-0.499863,0.866085,0.000000],[-0.858547,0.500107,0.113010],[-0.865963,0.500107,0.000000],[-0.991424,0.000000,0.130497],[-0.999969,0.000000,0.000000],[-0.858547,-0.500107,0.113010],[-0.865963,-0.500107,0.000000],[-0.495590,-0.866085,0.065249],[-0.499863,-0.866085,0.000000],[0.000000,-1.000000,0.000000],[0.495590,-0.866085,-0.065249],[0.499863,-0.866085,0.000000],[0.858547,-0.500107,-0.113010],[0.865963,-0.500107,0.000000],[0.965911,0.000000,-0.258797],[0.836451,0.500107,-0.224128],[0.482833,0.866085,-0.129368],[-0.482833,0.866085,0.129368],[-0.836451,0.500107,0.224097],[-0.965911,0.000000,0.258797],[-0.836451,-0.500107,0.224128],[-0.482833,-0.866085,0.129368],[0.482833,-0.866085,-0.129368],[0.836451,-0.500107,-0.224128],[0.923856,0.000000,-0.382672],[0.800043,0.500107,-0.331370],[0.461837,0.866085,-0.191290],[-0.461837,0.866085,0.191290],[-0.800043,0.500107,0.331370],[-0.923856,0.000000,0.382672],[-0.800043,-0.500107,0.331370],[-0.461837,-0.866085,0.191290],[0.461837,-0.866085,-0.191290],[0.800043,-0.500107,-0.331370],[0.866024,0.000000,-0.499985],[0.749931,0.500107,-0.432966],[0.432905,0.866085,-0.249916],[-0.432905,0.866085,0.249916],[-0.749931,0.500107,0.432966],[-0.866024,0.000000,0.499985],[-0.749931,-0.500107,0.432966],[-0.432905,-0.866085,0.249916],[0.432905,-0.866085,-0.249916],[0.749931,-0.500107,-0.432966],[0.793329,0.000000,-0.608753],[0.687002,0.500107,-0.527146],[0.396588,0.866085,-0.304300],[-0.396588,0.866085,0.304300],[-0.687002,0.500107,0.527146],[-0.793329,0.000000,0.608753],[-0.687002,-0.500107,0.527146],[-0.396588,-0.866085,0.304300],[0.396588,-0.866085,-0.304300],[0.687002,-0.500107,-0.527146],[0.707083,0.000000,-0.707083],[0.612323,0.500107,-0.612323],[0.353465,0.866085,-0.353465],[-0.353465,0.866085,0.353465],[-0.612323,0.500107,0.612323],[-0.707083,0.000000,0.707083],[-0.612323,-0.500107,0.612323],[-0.353465,-0.866085,0.353465],[0.353465,-0.866085,-0.353465],[0.612323,-0.500107,-0.612323],[0.608753,0.000000,-0.793329],[0.527146,0.500107,-0.687002],[0.304300,0.866085,-0.396588],[-0.304300,0.866085,0.396588],[-0.527146,0.500107,0.687002],[-0.608753,0.000000,0.793329],[-0.527146,-0.500107,0.687002],[-0.304300,-0.866085,0.396588],[0.304300,-0.866085,-0.396588],[0.527146,-0.500107,-0.687002],[0.499985,0.000000,-0.866024],[0.432966,0.500107,-0.749931],[0.249916,0.866085,-0.432905],[-0.249916,0.866085,0.432905],[-0.432966,0.500107,0.749931],[-0.499985,0.000000,0.866024],[-0.432966,-0.500107,0.749931],[-0.249916,-0.866085,0.432905],[0.249916,-0.866085,-0.432905],[0.432966,-0.500107,-0.749931],[0.382672,0.000000,-0.923856],[0.331370,0.500107,-0.800043],[0.191290,0.866085,-0.461837],[-0.191290,0.866085,0.461837],[-0.331370,0.500107,0.800043],[-0.382672,0.000000,0.923856],[-0.331370,-0.500107,0.800043],[-0.191290,-0.866085,0.461837],[0.191290,-0.866085,-0.461837],[0.331370,-0.500107,-0.800043],[0.258797,0.000000,-0.965911],[0.224097,0.500107,-0.836451],[0.129368,0.866085,-0.482833],[-0.129368,0.866085,0.482833],[-0.224097,0.500107,0.836451],[-0.258797,0.000000,0.965911],[-0.224128,-0.500107,0.836451],[-0.129368,-0.866085,0.482833],[0.129368,-0.866085,-0.482833],[0.224097,-0.500107,-0.836451],[0.130497,0.000000,-0.991424],[0.113010,0.500107,-0.858547],[0.065249,0.866085,-0.495590],[-0.065249,0.866085,0.495590],[-0.113010,0.500107,0.858547],[-0.130497,0.000000,0.991424],[-0.113010,-0.500107,0.858547],[-0.065249,-0.866085,0.495590],[0.065249,-0.866085,-0.495590],[0.113010,-0.500107,-0.858547],[0.000000,0.000000,-1.000000],[0.000000,0.500107,-0.865963],[0.000000,0.866085,-0.499863],[0.000000,0.866085,0.499863],[0.000000,0.500107,0.865963],[0.000000,0.000000,1.000000],[0.000000,-0.500107,0.865963],[0.000000,-0.866085,0.499863],[0.000000,-0.866085,-0.499863],[0.000000,-0.500107,-0.865963],[-0.130497,0.000000,-0.991424],[-0.113010,0.500107,-0.858547],[-0.065249,0.866085,-0.495590],[0.065249,0.866085,0.495590],[0.113010,0.500107,0.858547],[0.130497,0.000000,0.991424],[0.113010,-0.500107,0.858547],[0.065249,-0.866085,0.495590],[-0.065249,-0.866085,-0.495590],[-0.113010,-0.500107,-0.858547],[-0.258797,0.000000,-0.965911],[-0.224097,0.500107,-0.836451],[-0.129368,0.866085,-0.482833],[0.129368,0.866085,0.482833],[0.224097,0.500107,0.836451],[0.258797,0.000000,0.965911],[0.224097,-0.500107,0.836451],[0.129368,-0.866085,0.482833],[-0.129368,-0.866085,-0.482833],[-0.224097,-0.500107,-0.836451],[-0.382672,0.000000,-0.923856],[-0.331370,0.500107,-0.800043],[-0.191290,0.866085,-0.461837],[0.191290,0.866085,0.461837],[0.331370,0.500107,0.800043],[0.382672,0.000000,0.923856],[0.331370,-0.500107,0.800043],[0.191290,-0.866085,0.461837],[-0.191290,-0.866085,-0.461837],[-0.331370,-0.500107,-0.800043],[-0.499985,0.000000,-0.866024],[-0.432966,0.500107,-0.749931],[-0.249916,0.866085,-0.432905],[0.249916,0.866085,0.432905],[0.432966,0.500107,0.749931],[0.499985,0.000000,0.866024],[0.432966,-0.500107,0.749931],[0.249916,-0.866085,0.432905],[-0.249916,-0.866085,-0.432905],[-0.432966,-0.500107,-0.749931],[-0.608753,0.000000,-0.793329],[-0.527146,0.500107,-0.687002],[-0.304300,0.866085,-0.396588],[0.304300,0.866085,0.396588],[0.527146,0.500107,0.687002],[0.608753,0.000000,0.793329],[0.527146,-0.500107,0.687002],[0.304300,-0.866085,0.396588],[-0.304300,-0.866085,-0.396588],[-0.527146,-0.500107,-0.687002],[-0.707083,0.000000,-0.707083],[-0.612323,0.500107,-0.612323],[-0.353465,0.866085,-0.353465],[0.353465,0.866085,0.353465],[0.612323,0.500107,0.612323],[0.707083,0.000000,0.707083],[0.612323,-0.500107,0.612323],[0.353465,-0.866085,0.353465],[-0.353465,-0.866085,-0.353465],[-0.612323,-0.500107,-0.612323],[-0.793329,0.000000,-0.608753],[-0.687002,0.500107,-0.527146],[-0.396588,0.866085,-0.304300],[0.396588,0.866085,0.304300],[0.687002,0.500107,0.527146],[0.793329,0.000000,0.608753],[0.687002,-0.500107,0.527146],[0.396588,-0.866085,0.304300],[-0.396588,-0.866085,-0.304300],[-0.687002,-0.500107,-0.527146],[-0.866024,0.000000,-0.499985],[-0.749931,0.500107,-0.432966],[-0.432905,0.866085,-0.249916],[0.432905,0.866085,0.249916],[0.749931,0.500107,0.432966],[0.866024,0.000000,0.499985],[0.749931,-0.500107,0.432966],[0.432905,-0.866085,0.249916],[-0.432905,-0.866085,-0.249916],[-0.749931,-0.500107,-0.432966],[-0.923856,0.000000,-0.382672],[-0.800043,0.500107,-0.331370],[-0.461837,0.866085,-0.191290],[0.461837,0.866085,0.191290],[0.800043,0.500107,0.331370],[0.923856,0.000000,0.382672],[0.800043,-0.500107,0.331370],[0.461837,-0.866085,0.191290],[-0.461837,-0.866085,-0.191290],[-0.800043,-0.500107,-0.331370],[-0.965911,0.000000,-0.258797],[-0.836451,0.500107,-0.224128],[-0.482833,0.866085,-0.129368],[0.482833,0.866085,0.129368],[0.836451,0.500107,0.224128],[0.965911,0.000000,0.258797],[0.836451,-0.500107,0.224128],[0.482833,-0.866085,0.129368],[-0.482833,-0.866085,-0.129368],[-0.836451,-0.500107,-0.224128],[-0.991424,0.000000,-0.130497],[-0.858547,0.500107,-0.113010],[-0.495590,0.866085,-0.065249],[0.495590,0.866085,0.065249],[0.858547,0.500107,0.113010],[0.991424,0.000000,0.130497],[0.858547,-0.500107,0.113010],[0.495590,-0.866085,0.065249],[-0.495590,-0.866085,-0.065249],[-0.858547,-0.500107,-0.113010],[-1.000000,0.000000,0.000000],[-0.836451,0.500107,0.224128],[-0.224097,-0.500107,0.836451],[0.000000,0.000000,-0.999969],[-0.836451,0.500107,-0.224097]], + + 'vertices': [[1.250000,-0.000000,-0.000000],[1.216506,0.125000,-0.000000],[1.125000,0.216506,-0.000000],[1.000000,0.250000,-0.000000],[0.875000,0.216506,-0.000000],[0.783493,0.125000,-0.000000],[0.750000,-0.000000,-0.000000],[0.783493,-0.125000,-0.000000],[0.875000,-0.216506,-0.000000],[1.000000,-0.250000,-0.000000],[1.125000,-0.216506,-0.000000],[1.216506,-0.125000,-0.000000],[1.239306,-0.000000,-0.163157],[1.206099,0.125000,-0.158786],[1.115375,0.216506,-0.146842],[0.991445,0.250000,-0.130526],[0.867514,0.216506,-0.114210],[0.776790,0.125000,-0.102266],[0.743583,-0.000000,-0.097894],[0.776790,-0.125000,-0.102266],[0.867514,-0.216506,-0.114210],[0.991445,-0.250000,-0.130526],[1.115375,-0.216506,-0.146842],[1.206099,-0.125000,-0.158786],[1.207407,-0.000000,-0.323523],[1.175055,0.125000,-0.314855],[1.086666,0.216506,-0.291171],[0.965925,0.250000,-0.258819],[0.845185,0.216506,-0.226466],[0.756796,0.125000,-0.202783],[0.724444,-0.000000,-0.194114],[0.756796,-0.125000,-0.202783],[0.845185,-0.216506,-0.226466],[0.965925,-0.250000,-0.258819],[1.086666,-0.216506,-0.291171],[1.175055,-0.125000,-0.314855],[1.154849,-0.000000,-0.478354],[1.123905,0.125000,-0.465537],[1.039364,0.216506,-0.430519],[0.923879,0.250000,-0.382683],[0.808394,0.216506,-0.334848],[0.723853,0.125000,-0.299830],[0.692909,-0.000000,-0.287012],[0.723853,-0.125000,-0.299830],[0.808394,-0.216506,-0.334848],[0.923879,-0.250000,-0.382683],[1.039364,-0.216506,-0.430519],[1.123905,-0.125000,-0.465537],[1.082531,-0.000000,-0.625000],[1.053525,0.125000,-0.608253],[0.974278,0.216506,-0.562500],[0.866025,0.250000,-0.500000],[0.757772,0.216506,-0.437500],[0.678525,0.125000,-0.391747],[0.649519,-0.000000,-0.375000],[0.678525,-0.125000,-0.391746],[0.757772,-0.216506,-0.437500],[0.866025,-0.250000,-0.500000],[0.974278,-0.216506,-0.562500],[1.053525,-0.125000,-0.608253],[0.991691,-0.000000,-0.760951],[0.965119,0.125000,-0.740562],[0.892522,0.216506,-0.684856],[0.793353,0.250000,-0.608761],[0.694184,0.216506,-0.532666],[0.621587,0.125000,-0.476960],[0.595015,-0.000000,-0.456571],[0.621587,-0.125000,-0.476960],[0.694184,-0.216506,-0.532666],[0.793353,-0.250000,-0.608761],[0.892522,-0.216506,-0.684856],[0.965119,-0.125000,-0.740562],[0.883883,-0.000000,-0.883883],[0.860199,0.125000,-0.860200],[0.795495,0.216506,-0.795495],[0.707106,0.250000,-0.707107],[0.618718,0.216506,-0.618718],[0.554013,0.125000,-0.554013],[0.530330,-0.000000,-0.530330],[0.554013,-0.125000,-0.554013],[0.618718,-0.216506,-0.618718],[0.707106,-0.250000,-0.707107],[0.795495,-0.216506,-0.795495],[0.860199,-0.125000,-0.860200],[0.760951,-0.000000,-0.991691],[0.740562,0.125000,-0.965119],[0.684856,0.216506,-0.892522],[0.608761,0.250000,-0.793353],[0.532666,0.216506,-0.694184],[0.476960,0.125000,-0.621587],[0.456571,-0.000000,-0.595015],[0.476960,-0.125000,-0.621587],[0.532666,-0.216506,-0.694184],[0.608761,-0.250000,-0.793353],[0.684856,-0.216506,-0.892522],[0.740562,-0.125000,-0.965119],[0.625000,-0.000000,-1.082531],[0.608253,0.125000,-1.053525],[0.562500,0.216506,-0.974278],[0.500000,0.250000,-0.866025],[0.437500,0.216506,-0.757772],[0.391746,0.125000,-0.678525],[0.375000,-0.000000,-0.649519],[0.391746,-0.125000,-0.678525],[0.437500,-0.216506,-0.757772],[0.500000,-0.250000,-0.866025],[0.562500,-0.216506,-0.974278],[0.608253,-0.125000,-1.053525],[0.478354,-0.000000,-1.154849],[0.465537,0.125000,-1.123905],[0.430518,0.216506,-1.039364],[0.382683,0.250000,-0.923879],[0.334848,0.216506,-0.808394],[0.299830,0.125000,-0.723853],[0.287012,-0.000000,-0.692909],[0.299830,-0.125000,-0.723853],[0.334848,-0.216506,-0.808394],[0.382683,-0.250000,-0.923879],[0.430518,-0.216506,-1.039364],[0.465537,-0.125000,-1.123905],[0.323523,-0.000000,-1.207407],[0.314855,0.125000,-1.175055],[0.291171,0.216506,-1.086666],[0.258819,0.250000,-0.965926],[0.226466,0.216506,-0.845185],[0.202783,0.125000,-0.756796],[0.194114,-0.000000,-0.724444],[0.202783,-0.125000,-0.756796],[0.226466,-0.216506,-0.845185],[0.258819,-0.250000,-0.965925],[0.291171,-0.216506,-1.086666],[0.314855,-0.125000,-1.175054],[0.163157,-0.000000,-1.239306],[0.158786,0.125000,-1.206099],[0.146842,0.216506,-1.115375],[0.130526,0.250000,-0.991445],[0.114210,0.216506,-0.867514],[0.102266,0.125000,-0.776790],[0.097894,-0.000000,-0.743583],[0.102266,-0.125000,-0.776790],[0.114210,-0.216506,-0.867514],[0.130526,-0.250000,-0.991445],[0.146842,-0.216506,-1.115375],[0.158786,-0.125000,-1.206099],[-0.000000,-0.000000,-1.250000],[-0.000000,0.125000,-1.216506],[-0.000000,0.216506,-1.125000],[-0.000000,0.250000,-1.000000],[-0.000000,0.216506,-0.875000],[-0.000000,0.125000,-0.783493],[-0.000000,-0.000000,-0.750000],[-0.000000,-0.125000,-0.783493],[-0.000000,-0.216506,-0.875000],[-0.000000,-0.250000,-1.000000],[-0.000000,-0.216506,-1.124999],[-0.000000,-0.125000,-1.216506],[-0.163158,-0.000000,-1.239306],[-0.158786,0.125000,-1.206099],[-0.146842,0.216506,-1.115375],[-0.130527,0.250000,-0.991445],[-0.114211,0.216506,-0.867514],[-0.102267,0.125000,-0.776790],[-0.097895,-0.000000,-0.743583],[-0.102267,-0.125000,-0.776790],[-0.114211,-0.216506,-0.867514],[-0.130527,-0.250000,-0.991445],[-0.146842,-0.216506,-1.115375],[-0.158786,-0.125000,-1.206099],[-0.323524,-0.000000,-1.207407],[-0.314855,0.125000,-1.175055],[-0.291172,0.216506,-1.086666],[-0.258819,0.250000,-0.965926],[-0.226467,0.216506,-0.845185],[-0.202783,0.125000,-0.756796],[-0.194115,-0.000000,-0.724444],[-0.202783,-0.125000,-0.756796],[-0.226467,-0.216506,-0.845185],[-0.258819,-0.250000,-0.965925],[-0.291172,-0.216506,-1.086666],[-0.314855,-0.125000,-1.175054],[-0.478355,-0.000000,-1.154849],[-0.465537,0.125000,-1.123905],[-0.430519,0.216506,-1.039364],[-0.382684,0.250000,-0.923879],[-0.334848,0.216506,-0.808394],[-0.299830,0.125000,-0.723853],[-0.287013,-0.000000,-0.692909],[-0.299830,-0.125000,-0.723853],[-0.334848,-0.216506,-0.808394],[-0.382684,-0.250000,-0.923879],[-0.430519,-0.216506,-1.039364],[-0.465537,-0.125000,-1.123905],[-0.625000,-0.000000,-1.082531],[-0.608254,0.125000,-1.053525],[-0.562500,0.216506,-0.974278],[-0.500000,0.250000,-0.866025],[-0.437500,0.216506,-0.757772],[-0.391747,0.125000,-0.678525],[-0.375000,-0.000000,-0.649519],[-0.391747,-0.125000,-0.678525],[-0.437500,-0.216506,-0.757772],[-0.500000,-0.250000,-0.866025],[-0.562500,-0.216506,-0.974278],[-0.608254,-0.125000,-1.053525],[-0.760952,-0.000000,-0.991691],[-0.740563,0.125000,-0.965119],[-0.684857,0.216506,-0.892522],[-0.608762,0.250000,-0.793353],[-0.532667,0.216506,-0.694184],[-0.476961,0.125000,-0.621587],[-0.456571,-0.000000,-0.595015],[-0.476961,-0.125000,-0.621587],[-0.532667,-0.216506,-0.694184],[-0.608762,-0.250000,-0.793353],[-0.684857,-0.216506,-0.892522],[-0.740563,-0.125000,-0.965119],[-0.883884,-0.000000,-0.883883],[-0.860200,0.125000,-0.860200],[-0.795495,0.216506,-0.795495],[-0.707107,0.250000,-0.707107],[-0.618719,0.216506,-0.618718],[-0.554014,0.125000,-0.554013],[-0.530330,-0.000000,-0.530330],[-0.554014,-0.125000,-0.554013],[-0.618719,-0.216506,-0.618718],[-0.707107,-0.250000,-0.707106],[-0.795495,-0.216506,-0.795495],[-0.860200,-0.125000,-0.860200],[-0.991692,-0.000000,-0.760951],[-0.965120,0.125000,-0.740562],[-0.892523,0.216506,-0.684856],[-0.793354,0.250000,-0.608761],[-0.694185,0.216506,-0.532666],[-0.621588,0.125000,-0.476960],[-0.595015,-0.000000,-0.456571],[-0.621588,-0.125000,-0.476960],[-0.694185,-0.216506,-0.532666],[-0.793354,-0.250000,-0.608761],[-0.892523,-0.216506,-0.684856],[-0.965120,-0.125000,-0.740562],[-1.082532,-0.000000,-0.625000],[-1.053526,0.125000,-0.608253],[-0.974279,0.216506,-0.562500],[-0.866026,0.250000,-0.500000],[-0.757773,0.216506,-0.437500],[-0.678526,0.125000,-0.391747],[-0.649519,-0.000000,-0.375000],[-0.678526,-0.125000,-0.391747],[-0.757773,-0.216506,-0.437500],[-0.866026,-0.250000,-0.500000],[-0.974279,-0.216506,-0.562500],[-1.053526,-0.125000,-0.608253],[-1.154850,-0.000000,-0.478354],[-1.123906,0.125000,-0.465537],[-1.039365,0.216506,-0.430519],[-0.923880,0.250000,-0.382683],[-0.808395,0.216506,-0.334848],[-0.723854,0.125000,-0.299830],[-0.692910,-0.000000,-0.287012],[-0.723854,-0.125000,-0.299830],[-0.808395,-0.216506,-0.334848],[-0.923880,-0.250000,-0.382683],[-1.039365,-0.216506,-0.430519],[-1.123906,-0.125000,-0.465537],[-1.207407,-0.000000,-0.323524],[-1.175055,0.125000,-0.314855],[-1.086667,0.216506,-0.291171],[-0.965926,0.250000,-0.258819],[-0.845185,0.216506,-0.226466],[-0.756797,0.125000,-0.202783],[-0.724445,-0.000000,-0.194114],[-0.756797,-0.125000,-0.202783],[-0.845185,-0.216506,-0.226466],[-0.965926,-0.250000,-0.258819],[-1.086667,-0.216506,-0.291171],[-1.175055,-0.125000,-0.314855],[-1.239306,-0.000000,-0.163157],[-1.206099,0.125000,-0.158786],[-1.115376,0.216506,-0.146842],[-0.991445,0.250000,-0.130526],[-0.867515,0.216506,-0.114210],[-0.776791,0.125000,-0.102266],[-0.743584,-0.000000,-0.097894],[-0.776791,-0.125000,-0.102266],[-0.867515,-0.216506,-0.114210],[-0.991445,-0.250000,-0.130526],[-1.115376,-0.216506,-0.146842],[-1.206099,-0.125000,-0.158786],[-1.250000,-0.000000,-0.000000],[-1.216507,0.125000,-0.000000],[-1.125000,0.216506,-0.000000],[-1.000000,0.250000,-0.000000],[-0.875000,0.216506,-0.000000],[-0.783494,0.125000,-0.000000],[-0.750000,-0.000000,-0.000000],[-0.783494,-0.125000,-0.000000],[-0.875000,-0.216506,-0.000000],[-1.000000,-0.250000,-0.000000],[-1.125000,-0.216506,-0.000000],[-1.216507,-0.125000,-0.000000],[-1.239306,-0.000000,0.163158],[-1.206099,0.125000,0.158786],[-1.115376,0.216506,0.146842],[-0.991445,0.250000,0.130527],[-0.867515,0.216506,0.114211],[-0.776791,0.125000,0.102267],[-0.743584,-0.000000,0.097895],[-0.776791,-0.125000,0.102267],[-0.867515,-0.216506,0.114211],[-0.991445,-0.250000,0.130527],[-1.115376,-0.216506,0.146842],[-1.206099,-0.125000,0.158786],[-1.207408,-0.000000,0.323524],[-1.175055,0.125000,0.314855],[-1.086667,0.216506,0.291172],[-0.965926,0.250000,0.258819],[-0.845185,0.216506,0.226467],[-0.756797,0.125000,0.202783],[-0.724445,-0.000000,0.194115],[-0.756797,-0.125000,0.202783],[-0.845185,-0.216506,0.226467],[-0.965926,-0.250000,0.258819],[-1.086667,-0.216506,0.291172],[-1.175055,-0.125000,0.314855],[-1.154850,-0.000000,0.478355],[-1.123906,0.125000,0.465537],[-1.039365,0.216506,0.430519],[-0.923880,0.250000,0.382684],[-0.808395,0.216506,0.334848],[-0.723854,0.125000,0.299830],[-0.692910,-0.000000,0.287013],[-0.723854,-0.125000,0.299830],[-0.808395,-0.216506,0.334848],[-0.923880,-0.250000,0.382684],[-1.039365,-0.216506,0.430519],[-1.123906,-0.125000,0.465537],[-1.082532,-0.000000,0.625000],[-1.053526,0.125000,0.608253],[-0.974279,0.216506,0.562500],[-0.866026,0.250000,0.500000],[-0.757773,0.216506,0.437500],[-0.678526,0.125000,0.391747],[-0.649519,-0.000000,0.375000],[-0.678526,-0.125000,0.391747],[-0.757773,-0.216506,0.437500],[-0.866026,-0.250000,0.500000],[-0.974279,-0.216506,0.562500],[-1.053526,-0.125000,0.608253],[-0.991692,-0.000000,0.760952],[-0.965120,0.125000,0.740562],[-0.892523,0.216506,0.684857],[-0.793354,0.250000,0.608762],[-0.694185,0.216506,0.532667],[-0.621588,0.125000,0.476961],[-0.595015,-0.000000,0.456571],[-0.621588,-0.125000,0.476961],[-0.694185,-0.216506,0.532667],[-0.793354,-0.250000,0.608762],[-0.892523,-0.216506,0.684857],[-0.965120,-0.125000,0.740562],[-0.883884,-0.000000,0.883884],[-0.860200,0.125000,0.860200],[-0.795496,0.216507,0.795495],[-0.707107,0.250000,0.707107],[-0.618719,0.216506,0.618719],[-0.554014,0.125000,0.554014],[-0.530330,-0.000000,0.530330],[-0.554014,-0.125000,0.554014],[-0.618719,-0.216506,0.618719],[-0.707107,-0.250000,0.707107],[-0.795496,-0.216506,0.795495],[-0.860200,-0.125000,0.860200],[-0.760952,-0.000000,0.991692],[-0.740563,0.125000,0.965120],[-0.684857,0.216506,0.892523],[-0.608762,0.250000,0.793354],[-0.532667,0.216506,0.694184],[-0.476961,0.125000,0.621588],[-0.456571,-0.000000,0.595015],[-0.476961,-0.125000,0.621588],[-0.532667,-0.216506,0.694184],[-0.608762,-0.250000,0.793354],[-0.684857,-0.216506,0.892523],[-0.740563,-0.125000,0.965120],[-0.625000,-0.000000,1.082532],[-0.608253,0.125000,1.053526],[-0.562500,0.216507,0.974279],[-0.500000,0.250000,0.866026],[-0.437500,0.216507,0.757773],[-0.391747,0.125000,0.678526],[-0.375000,-0.000000,0.649519],[-0.391747,-0.125000,0.678526],[-0.437500,-0.216506,0.757773],[-0.500000,-0.250000,0.866026],[-0.562500,-0.216506,0.974279],[-0.608253,-0.125000,1.053526],[-0.478355,-0.000000,1.154850],[-0.465537,0.125000,1.123906],[-0.430519,0.216507,1.039365],[-0.382684,0.250000,0.923880],[-0.334848,0.216506,0.808395],[-0.299830,0.125000,0.723854],[-0.287013,-0.000000,0.692910],[-0.299830,-0.125000,0.723854],[-0.334848,-0.216506,0.808395],[-0.382684,-0.250000,0.923880],[-0.430519,-0.216506,1.039365],[-0.465537,-0.125000,1.123906],[-0.323524,-0.000000,1.207408],[-0.314855,0.125000,1.175055],[-0.291172,0.216506,1.086667],[-0.258819,0.250000,0.965926],[-0.226467,0.216506,0.845185],[-0.202783,0.125000,0.756797],[-0.194115,-0.000000,0.724445],[-0.202783,-0.125000,0.756797],[-0.226467,-0.216506,0.845185],[-0.258819,-0.250000,0.965926],[-0.291172,-0.216506,1.086667],[-0.314855,-0.125000,1.175055],[-0.163158,-0.000000,1.239306],[-0.158787,0.125000,1.206099],[-0.146843,0.216507,1.115376],[-0.130527,0.250000,0.991445],[-0.114211,0.216507,0.867515],[-0.102267,0.125000,0.776791],[-0.097895,-0.000000,0.743584],[-0.102267,-0.125000,0.776791],[-0.114211,-0.216506,0.867515],[-0.130527,-0.250000,0.991445],[-0.146843,-0.216506,1.115376],[-0.158787,-0.125000,1.206099],[-0.000000,-0.000000,1.250000],[-0.000000,0.125000,1.216507],[-0.000000,0.216506,1.125000],[-0.000000,0.250000,1.000000],[-0.000000,0.216506,0.875000],[-0.000000,0.125000,0.783494],[-0.000000,-0.000000,0.750000],[-0.000000,-0.125000,0.783494],[-0.000000,-0.216506,0.875000],[-0.000000,-0.250000,1.000000],[-0.000000,-0.216506,1.125000],[-0.000000,-0.125000,1.216507],[0.163158,-0.000000,1.239306],[0.158786,0.125000,1.206099],[0.146842,0.216507,1.115376],[0.130526,0.250000,0.991445],[0.114210,0.216507,0.867515],[0.102266,0.125000,0.776791],[0.097894,-0.000000,0.743584],[0.102266,-0.125000,0.776791],[0.114210,-0.216506,0.867515],[0.130526,-0.250000,0.991445],[0.146842,-0.216506,1.115376],[0.158786,-0.125000,1.206099],[0.323523,-0.000000,1.207408],[0.314855,0.125000,1.175055],[0.291171,0.216506,1.086667],[0.258819,0.250000,0.965926],[0.226466,0.216506,0.845185],[0.202783,0.125000,0.756797],[0.194114,-0.000000,0.724445],[0.202783,-0.125000,0.756797],[0.226466,-0.216506,0.845185],[0.258819,-0.250000,0.965926],[0.291171,-0.216506,1.086667],[0.314855,-0.125000,1.175055],[0.478354,-0.000000,1.154850],[0.465537,0.125000,1.123906],[0.430519,0.216507,1.039365],[0.382683,0.250000,0.923880],[0.334848,0.216506,0.808395],[0.299830,0.125000,0.723854],[0.287012,-0.000000,0.692910],[0.299830,-0.125000,0.723854],[0.334848,-0.216506,0.808395],[0.382683,-0.250000,0.923880],[0.430519,-0.216506,1.039365],[0.465537,-0.125000,1.123906],[0.625000,-0.000000,1.082532],[0.608253,0.125000,1.053526],[0.562500,0.216507,0.974279],[0.500000,0.250000,0.866026],[0.437500,0.216507,0.757773],[0.391746,0.125000,0.678526],[0.375000,-0.000000,0.649519],[0.391746,-0.125000,0.678526],[0.437500,-0.216506,0.757773],[0.500000,-0.250000,0.866026],[0.562500,-0.216506,0.974279],[0.608253,-0.125000,1.053526],[0.760952,-0.000000,0.991692],[0.740562,0.125000,0.965120],[0.684856,0.216506,0.892523],[0.608761,0.250000,0.793354],[0.532666,0.216506,0.694184],[0.476960,0.125000,0.621588],[0.456571,-0.000000,0.595015],[0.476960,-0.125000,0.621588],[0.532666,-0.216506,0.694184],[0.608761,-0.250000,0.793354],[0.684856,-0.216506,0.892523],[0.740562,-0.125000,0.965120],[0.883883,-0.000000,0.883884],[0.860199,0.125000,0.860200],[0.795495,0.216506,0.795496],[0.707106,0.250000,0.707107],[0.618718,0.216506,0.618719],[0.554013,0.125000,0.554014],[0.530330,-0.000000,0.530330],[0.554013,-0.125000,0.554014],[0.618718,-0.216506,0.618719],[0.707106,-0.250000,0.707107],[0.795495,-0.216506,0.795496],[0.860199,-0.125000,0.860200],[0.991691,-0.000000,0.760952],[0.965119,0.125000,0.740562],[0.892522,0.216507,0.684857],[0.793353,0.250000,0.608762],[0.694184,0.216506,0.532667],[0.621587,0.125000,0.476961],[0.595015,-0.000000,0.456571],[0.621587,-0.125000,0.476961],[0.694184,-0.216506,0.532667],[0.793353,-0.250000,0.608762],[0.892522,-0.216506,0.684857],[0.965119,-0.125000,0.740562],[1.082531,-0.000000,0.625000],[1.053525,0.125000,0.608254],[0.974278,0.216506,0.562500],[0.866025,0.250000,0.500000],[0.757772,0.216506,0.437500],[0.678525,0.125000,0.391747],[0.649519,-0.000000,0.375000],[0.678525,-0.125000,0.391747],[0.757772,-0.216506,0.437500],[0.866025,-0.250000,0.500000],[0.974278,-0.216506,0.562500],[1.053525,-0.125000,0.608254],[1.154849,-0.000000,0.478355],[1.123905,0.125000,0.465537],[1.039364,0.216506,0.430519],[0.923879,0.250000,0.382684],[0.808394,0.216506,0.334848],[0.723853,0.125000,0.299830],[0.692909,-0.000000,0.287013],[0.723853,-0.125000,0.299830],[0.808394,-0.216506,0.334848],[0.923879,-0.250000,0.382684],[1.039364,-0.216506,0.430519],[1.123905,-0.125000,0.465537],[1.207407,-0.000000,0.323524],[1.175055,0.125000,0.314855],[1.086666,0.216506,0.291171],[0.965926,0.250000,0.258819],[0.845185,0.216506,0.226467],[0.756796,0.125000,0.202783],[0.724444,-0.000000,0.194114],[0.756796,-0.125000,0.202783],[0.845185,-0.216506,0.226467],[0.965926,-0.250000,0.258819],[1.086666,-0.216506,0.291171],[1.175055,-0.125000,0.314855],[1.239306,-0.000000,0.163158],[1.206099,0.125000,0.158786],[1.115375,0.216506,0.146842],[0.991445,0.250000,0.130527],[0.867514,0.216506,0.114211],[0.776790,0.125000,0.102267],[0.743583,-0.000000,0.097895],[0.776790,-0.125000,0.102267],[0.867514,-0.216506,0.114211],[0.991445,-0.250000,0.130527],[1.115375,-0.216506,0.146842],[1.206099,-0.125000,0.158786]], + + 'uvs': [], + + 'faces': [[0,12,13,1,0,0,1,2,3],[1,13,14,2,0,3,2,4,5],[2,14,15,3,0,5,4,6,6],[3,15,16,4,0,6,6,7,8],[4,16,17,5,0,8,7,9,10],[5,17,18,6,0,10,9,11,12],[6,18,19,7,0,12,11,13,14],[7,19,20,8,0,14,13,15,16],[8,20,21,9,0,16,15,17,17],[9,21,22,10,0,17,17,18,19],[10,22,23,11,0,19,18,20,21],[0,11,23,12,0,0,21,20,1],[12,24,25,13,0,1,22,23,2],[13,25,26,14,0,2,23,24,4],[14,26,27,15,0,4,24,6,6],[15,27,28,16,0,6,6,25,7],[16,28,29,17,0,7,25,26,9],[17,29,30,18,0,9,26,27,11],[18,30,31,19,0,11,27,28,13],[19,31,32,20,0,13,28,29,15],[20,32,33,21,0,15,29,17,17],[21,33,34,22,0,17,17,30,18],[22,34,35,23,0,18,30,31,20],[23,35,24,12,0,20,31,22,1],[24,36,37,25,0,22,32,33,23],[25,37,38,26,0,23,33,34,24],[26,38,39,27,0,24,34,6,6],[27,39,40,28,0,6,6,35,25],[28,40,41,29,0,25,35,36,26],[29,41,42,30,0,26,36,37,27],[30,42,43,31,0,27,37,38,28],[31,43,44,32,0,28,38,39,29],[32,44,45,33,0,29,39,17,17],[33,45,46,34,0,17,17,40,30],[34,46,47,35,0,30,40,41,31],[35,47,36,24,0,31,41,32,22],[36,48,49,37,0,32,42,43,33],[37,49,50,38,0,33,43,44,34],[38,50,51,39,0,34,44,6,6],[39,51,52,40,0,6,6,45,35],[40,52,53,41,0,35,45,46,36],[41,53,54,42,0,36,46,47,37],[42,54,55,43,0,37,47,48,38],[43,55,56,44,0,38,48,49,39],[44,56,57,45,0,39,49,17,17],[45,57,58,46,0,17,17,50,40],[46,58,59,47,0,40,50,51,41],[47,59,48,36,0,41,51,42,32],[48,60,61,49,0,42,52,53,43],[49,61,62,50,0,43,53,54,44],[50,62,63,51,0,44,54,6,6],[51,63,64,52,0,6,6,55,45],[52,64,65,53,0,45,55,56,46],[53,65,66,54,0,46,56,57,47],[54,66,67,55,0,47,57,58,48],[55,67,68,56,0,48,58,59,49],[56,68,69,57,0,49,59,17,17],[57,69,70,58,0,17,17,60,50],[58,70,71,59,0,50,60,61,51],[59,71,60,48,0,51,61,52,42],[60,72,73,61,0,52,62,63,53],[61,73,74,62,0,53,63,64,54],[62,74,75,63,0,54,64,6,6],[63,75,76,64,0,6,6,65,55],[64,76,77,65,0,55,65,66,56],[65,77,78,66,0,56,66,67,57],[66,78,79,67,0,57,67,68,58],[67,79,80,68,0,58,68,69,59],[68,80,81,69,0,59,69,17,17],[69,81,82,70,0,17,17,70,60],[70,82,83,71,0,60,70,71,61],[71,83,72,60,0,61,71,62,52],[72,84,85,73,0,62,72,73,63],[73,85,86,74,0,63,73,74,64],[74,86,87,75,0,64,74,6,6],[75,87,88,76,0,6,6,75,65],[76,88,89,77,0,65,75,76,66],[77,89,90,78,0,66,76,77,67],[78,90,91,79,0,67,77,78,68],[79,91,92,80,0,68,78,79,69],[80,92,93,81,0,69,79,17,17],[81,93,94,82,0,17,17,80,70],[82,94,95,83,0,70,80,81,71],[83,95,84,72,0,71,81,72,62],[84,96,97,85,0,72,82,83,73],[85,97,98,86,0,73,83,84,74],[86,98,99,87,0,74,84,6,6],[87,99,100,88,0,6,6,85,75],[88,100,101,89,0,75,85,86,76],[89,101,102,90,0,76,86,87,77],[90,102,103,91,0,77,87,88,78],[91,103,104,92,0,78,88,89,79],[92,104,105,93,0,79,89,17,17],[93,105,106,94,0,17,17,90,80],[94,106,107,95,0,80,90,91,81],[95,107,96,84,0,81,91,82,72],[96,108,109,97,0,82,92,93,83],[97,109,110,98,0,83,93,94,84],[98,110,111,99,0,84,94,6,6],[99,111,112,100,0,6,6,95,85],[100,112,113,101,0,85,95,96,86],[101,113,114,102,0,86,96,97,87],[102,114,115,103,0,87,97,98,88],[103,115,116,104,0,88,98,99,89],[104,116,117,105,0,89,99,17,17],[105,117,118,106,0,17,17,100,90],[106,118,119,107,0,90,100,101,91],[107,119,108,96,0,91,101,92,82],[108,120,121,109,0,92,102,103,93],[109,121,122,110,0,93,103,104,94],[110,122,123,111,0,94,104,6,6],[111,123,124,112,0,6,6,105,95],[112,124,125,113,0,95,105,106,96],[113,125,126,114,0,96,106,107,97],[114,126,127,115,0,97,107,108,98],[115,127,128,116,0,98,108,109,99],[116,128,129,117,0,99,109,17,17],[117,129,130,118,0,17,17,110,100],[118,130,131,119,0,100,110,111,101],[119,131,120,108,0,101,111,102,92],[120,132,133,121,0,102,112,113,103],[121,133,134,122,0,103,113,114,104],[122,134,135,123,0,104,114,6,6],[123,135,136,124,0,6,6,115,105],[124,136,137,125,0,105,115,116,106],[125,137,138,126,0,106,116,117,107],[126,138,139,127,0,107,117,118,108],[127,139,140,128,0,108,118,119,109],[128,140,141,129,0,109,119,17,17],[129,141,142,130,0,17,17,120,110],[130,142,143,131,0,110,120,121,111],[131,143,132,120,0,111,121,112,102],[132,144,145,133,0,112,122,123,113],[133,145,146,134,0,113,123,124,114],[134,146,147,135,0,114,124,6,6],[135,147,148,136,0,6,6,125,115],[136,148,149,137,0,115,125,126,116],[137,149,150,138,0,116,126,127,117],[138,150,151,139,0,117,127,128,118],[139,151,152,140,0,118,128,129,119],[140,152,153,141,0,119,129,17,17],[141,153,154,142,0,17,17,130,120],[142,154,155,143,0,120,130,131,121],[143,155,144,132,0,121,131,122,112],[144,156,157,145,0,122,132,133,123],[145,157,158,146,0,123,133,134,124],[146,158,159,147,0,124,134,6,6],[147,159,160,148,0,6,6,135,125],[148,160,161,149,0,125,135,136,126],[149,161,162,150,0,126,136,137,127],[150,162,163,151,0,127,137,138,128],[151,163,164,152,0,128,138,139,129],[152,164,165,153,0,129,139,17,17],[153,165,166,154,0,17,17,140,130],[154,166,167,155,0,130,140,141,131],[155,167,156,144,0,131,141,132,122],[156,168,169,157,0,132,142,143,133],[157,169,170,158,0,133,143,144,134],[158,170,171,159,0,134,144,6,6],[159,171,172,160,0,6,6,145,135],[160,172,173,161,0,135,145,146,136],[161,173,174,162,0,136,146,147,137],[162,174,175,163,0,137,147,148,138],[163,175,176,164,0,138,148,149,139],[164,176,177,165,0,139,149,17,17],[165,177,178,166,0,17,17,150,140],[166,178,179,167,0,140,150,151,141],[167,179,168,156,0,141,151,142,132],[168,180,181,169,0,142,152,153,143],[169,181,182,170,0,143,153,154,144],[170,182,183,171,0,144,154,6,6],[171,183,184,172,0,6,6,155,145],[172,184,185,173,0,145,155,156,146],[173,185,186,174,0,146,156,157,147],[174,186,187,175,0,147,157,158,148],[175,187,188,176,0,148,158,159,149],[176,188,189,177,0,149,159,17,17],[177,189,190,178,0,17,17,160,150],[178,190,191,179,0,150,160,161,151],[179,191,180,168,0,151,161,152,142],[180,192,193,181,0,152,162,163,153],[181,193,194,182,0,153,163,164,154],[182,194,195,183,0,154,164,6,6],[183,195,196,184,0,6,6,165,155],[184,196,197,185,0,155,165,166,156],[185,197,198,186,0,156,166,167,157],[186,198,199,187,0,157,167,168,158],[187,199,200,188,0,158,168,169,159],[188,200,201,189,0,159,169,17,17],[189,201,202,190,0,17,17,170,160],[190,202,203,191,0,160,170,171,161],[191,203,192,180,0,161,171,162,152],[192,204,205,193,0,162,172,173,163],[193,205,206,194,0,163,173,174,164],[194,206,207,195,0,164,174,6,6],[195,207,208,196,0,6,6,175,165],[196,208,209,197,0,165,175,176,166],[197,209,210,198,0,166,176,177,167],[198,210,211,199,0,167,177,178,168],[199,211,212,200,0,168,178,179,169],[200,212,213,201,0,169,179,17,17],[201,213,214,202,0,17,17,180,170],[202,214,215,203,0,170,180,181,171],[203,215,204,192,0,171,181,172,162],[204,216,217,205,0,172,182,183,173],[205,217,218,206,0,173,183,184,174],[206,218,219,207,0,174,184,6,6],[207,219,220,208,0,6,6,185,175],[208,220,221,209,0,175,185,186,176],[209,221,222,210,0,176,186,187,177],[210,222,223,211,0,177,187,188,178],[211,223,224,212,0,178,188,189,179],[212,224,225,213,0,179,189,17,17],[213,225,226,214,0,17,17,190,180],[214,226,227,215,0,180,190,191,181],[215,227,216,204,0,181,191,182,172],[216,228,229,217,0,182,192,193,183],[217,229,230,218,0,183,193,194,184],[218,230,231,219,0,184,194,6,6],[219,231,232,220,0,6,6,195,185],[220,232,233,221,0,185,195,196,186],[221,233,234,222,0,186,196,197,187],[222,234,235,223,0,187,197,198,188],[223,235,236,224,0,188,198,199,189],[224,236,237,225,0,189,199,17,17],[225,237,238,226,0,17,17,200,190],[226,238,239,227,0,190,200,201,191],[227,239,228,216,0,191,201,192,182],[228,240,241,229,0,192,202,203,193],[229,241,242,230,0,193,203,204,194],[230,242,243,231,0,194,204,6,6],[231,243,244,232,0,6,6,205,195],[232,244,245,233,0,195,205,206,196],[233,245,246,234,0,196,206,207,197],[234,246,247,235,0,197,207,208,198],[235,247,248,236,0,198,208,209,199],[236,248,249,237,0,199,209,17,17],[237,249,250,238,0,17,17,210,200],[238,250,251,239,0,200,210,211,201],[239,251,240,228,0,201,211,202,192],[240,252,253,241,0,202,212,213,203],[241,253,254,242,0,203,213,214,204],[242,254,255,243,0,204,214,6,6],[243,255,256,244,0,6,6,215,205],[244,256,257,245,0,205,215,216,206],[245,257,258,246,0,206,216,217,207],[246,258,259,247,0,207,217,218,208],[247,259,260,248,0,208,218,219,209],[248,260,261,249,0,209,219,17,17],[249,261,262,250,0,17,17,220,210],[250,262,263,251,0,210,220,221,211],[251,263,252,240,0,211,221,212,202],[252,264,265,253,0,212,222,223,213],[253,265,266,254,0,213,223,224,214],[254,266,267,255,0,214,224,6,6],[255,267,268,256,0,6,6,225,215],[256,268,269,257,0,215,225,226,216],[257,269,270,258,0,216,226,227,217],[258,270,271,259,0,217,227,228,218],[259,271,272,260,0,218,228,229,219],[260,272,273,261,0,219,229,17,17],[261,273,274,262,0,17,17,230,220],[262,274,275,263,0,220,230,231,221],[263,275,264,252,0,221,231,222,212],[264,276,277,265,0,222,232,233,223],[265,277,278,266,0,223,233,234,224],[266,278,279,267,0,224,234,6,6],[267,279,280,268,0,6,6,235,225],[268,280,281,269,0,225,235,236,226],[269,281,282,270,0,226,236,237,227],[270,282,283,271,0,227,237,238,228],[271,283,284,272,0,228,238,239,229],[272,284,285,273,0,229,239,17,17],[273,285,286,274,0,17,17,240,230],[274,286,287,275,0,230,240,241,231],[275,287,276,264,0,231,241,232,222],[276,288,289,277,0,232,242,10,233],[277,289,290,278,0,233,10,8,234],[278,290,291,279,0,234,8,6,6],[279,291,292,280,0,6,6,5,235],[280,292,293,281,0,235,5,3,236],[281,293,294,282,0,236,3,0,237],[282,294,295,283,0,237,0,21,238],[283,295,296,284,0,238,21,19,239],[284,296,297,285,0,239,19,17,17],[285,297,298,286,0,17,17,16,240],[286,298,299,287,0,240,16,14,241],[287,299,288,276,0,241,14,242,232],[288,300,301,289,0,242,11,9,10],[289,301,302,290,0,10,9,7,8],[290,302,303,291,0,8,7,6,6],[291,303,304,292,0,6,6,4,5],[292,304,305,293,0,5,4,2,3],[293,305,306,294,0,3,2,1,0],[294,306,307,295,0,0,1,20,21],[295,307,308,296,0,21,20,18,19],[296,308,309,297,0,19,18,17,17],[297,309,310,298,0,17,17,15,16],[298,310,311,299,0,16,15,13,14],[299,311,300,288,0,14,13,11,242],[300,312,313,301,0,11,27,243,9],[301,313,314,302,0,9,243,25,7],[302,314,315,303,0,7,25,6,6],[303,315,316,304,0,6,6,24,4],[304,316,317,305,0,4,24,23,2],[305,317,318,306,0,2,23,22,1],[306,318,319,307,0,1,22,31,20],[307,319,320,308,0,20,31,30,18],[308,320,321,309,0,18,30,17,17],[309,321,322,310,0,17,17,29,15],[310,322,323,311,0,15,29,28,13],[311,323,312,300,0,13,28,27,11],[312,324,325,313,0,27,37,36,243],[313,325,326,314,0,243,36,35,25],[314,326,327,315,0,25,35,6,6],[315,327,328,316,0,6,6,34,24],[316,328,329,317,0,24,34,33,23],[317,329,330,318,0,23,33,32,22],[318,330,331,319,0,22,32,41,31],[319,331,332,320,0,31,41,40,30],[320,332,333,321,0,30,40,17,17],[321,333,334,322,0,17,17,39,29],[322,334,335,323,0,29,39,38,28],[323,335,324,312,0,28,38,37,27],[324,336,337,325,0,37,47,46,36],[325,337,338,326,0,36,46,45,35],[326,338,339,327,0,35,45,6,6],[327,339,340,328,0,6,6,44,34],[328,340,341,329,0,34,44,43,33],[329,341,342,330,0,33,43,42,32],[330,342,343,331,0,32,42,51,41],[331,343,344,332,0,41,51,50,40],[332,344,345,333,0,40,50,17,17],[333,345,346,334,0,17,17,49,39],[334,346,347,335,0,39,49,48,38],[335,347,336,324,0,38,48,47,37],[336,348,349,337,0,47,57,56,46],[337,349,350,338,0,46,56,55,45],[338,350,351,339,0,45,55,6,6],[339,351,352,340,0,6,6,54,44],[340,352,353,341,0,44,54,53,43],[341,353,354,342,0,43,53,52,42],[342,354,355,343,0,42,52,61,51],[343,355,356,344,0,51,61,60,50],[344,356,357,345,0,50,60,17,17],[345,357,358,346,0,17,17,59,49],[346,358,359,347,0,49,59,58,48],[347,359,348,336,0,48,58,57,47],[348,360,361,349,0,57,67,66,56],[349,361,362,350,0,56,66,65,55],[350,362,363,351,0,55,65,6,6],[351,363,364,352,0,6,6,64,54],[352,364,365,353,0,54,64,63,53],[353,365,366,354,0,53,63,62,52],[354,366,367,355,0,52,62,71,61],[355,367,368,356,0,61,71,70,60],[356,368,369,357,0,60,70,17,17],[357,369,370,358,0,17,17,69,59],[358,370,371,359,0,59,69,68,58],[359,371,360,348,0,58,68,67,57],[360,372,373,361,0,67,77,76,66],[361,373,374,362,0,66,76,75,65],[362,374,375,363,0,65,75,6,6],[363,375,376,364,0,6,6,74,64],[364,376,377,365,0,64,74,73,63],[365,377,378,366,0,63,73,72,62],[366,378,379,367,0,62,72,81,71],[367,379,380,368,0,71,81,80,70],[368,380,381,369,0,70,80,17,17],[369,381,382,370,0,17,17,79,69],[370,382,383,371,0,69,79,78,68],[371,383,372,360,0,68,78,77,67],[372,384,385,373,0,77,87,86,76],[373,385,386,374,0,76,86,85,75],[374,386,387,375,0,75,85,6,6],[375,387,388,376,0,6,6,84,74],[376,388,389,377,0,74,84,83,73],[377,389,390,378,0,73,83,82,72],[378,390,391,379,0,72,82,91,81],[379,391,392,380,0,81,91,90,80],[380,392,393,381,0,80,90,17,17],[381,393,394,382,0,17,17,89,79],[382,394,395,383,0,79,89,88,78],[383,395,384,372,0,78,88,87,77],[384,396,397,385,0,87,97,96,86],[385,397,398,386,0,86,96,95,85],[386,398,399,387,0,85,95,6,6],[387,399,400,388,0,6,6,94,84],[388,400,401,389,0,84,94,93,83],[389,401,402,390,0,83,93,92,82],[390,402,403,391,0,82,92,101,91],[391,403,404,392,0,91,101,100,90],[392,404,405,393,0,90,100,17,17],[393,405,406,394,0,17,17,99,89],[394,406,407,395,0,89,99,98,88],[395,407,396,384,0,88,98,97,87],[396,408,409,397,0,97,107,106,96],[397,409,410,398,0,96,106,105,95],[398,410,411,399,0,95,105,6,6],[399,411,412,400,0,6,6,104,94],[400,412,413,401,0,94,104,103,93],[401,413,414,402,0,93,103,102,92],[402,414,415,403,0,92,102,111,101],[403,415,416,404,0,101,111,110,100],[404,416,417,405,0,100,110,17,17],[405,417,418,406,0,17,17,109,99],[406,418,419,407,0,99,109,244,98],[407,419,408,396,0,98,244,107,97],[408,420,421,409,0,107,117,116,106],[409,421,422,410,0,106,116,115,105],[410,422,423,411,0,105,115,6,6],[411,423,424,412,0,6,6,114,104],[412,424,425,413,0,104,114,113,103],[413,425,426,414,0,103,113,112,102],[414,426,427,415,0,102,112,121,111],[415,427,428,416,0,111,121,120,110],[416,428,429,417,0,110,120,17,17],[417,429,430,418,0,17,17,119,109],[418,430,431,419,0,109,119,118,244],[419,431,420,408,0,244,118,117,107],[420,432,433,421,0,117,127,126,116],[421,433,434,422,0,116,126,125,115],[422,434,435,423,0,115,125,6,6],[423,435,436,424,0,6,6,124,114],[424,436,437,425,0,114,124,123,113],[425,437,438,426,0,113,123,245,112],[426,438,439,427,0,112,245,131,121],[427,439,440,428,0,121,131,130,120],[428,440,441,429,0,120,130,17,17],[429,441,442,430,0,17,17,129,119],[430,442,443,431,0,119,129,128,118],[431,443,432,420,0,118,128,127,117],[432,444,445,433,0,127,137,136,126],[433,445,446,434,0,126,136,135,125],[434,446,447,435,0,125,135,6,6],[435,447,448,436,0,6,6,134,124],[436,448,449,437,0,124,134,133,123],[437,449,450,438,0,123,133,132,245],[438,450,451,439,0,245,132,141,131],[439,451,452,440,0,131,141,140,130],[440,452,453,441,0,130,140,17,17],[441,453,454,442,0,17,17,139,129],[442,454,455,443,0,129,139,138,128],[443,455,444,432,0,128,138,137,127],[444,456,457,445,0,137,147,146,136],[445,457,458,446,0,136,146,145,135],[446,458,459,447,0,135,145,6,6],[447,459,460,448,0,6,6,144,134],[448,460,461,449,0,134,144,143,133],[449,461,462,450,0,133,143,142,132],[450,462,463,451,0,132,142,151,141],[451,463,464,452,0,141,151,150,140],[452,464,465,453,0,140,150,17,17],[453,465,466,454,0,17,17,149,139],[454,466,467,455,0,139,149,148,138],[455,467,456,444,0,138,148,147,137],[456,468,469,457,0,147,157,156,146],[457,469,470,458,0,146,156,155,145],[458,470,471,459,0,145,155,6,6],[459,471,472,460,0,6,6,154,144],[460,472,473,461,0,144,154,153,143],[461,473,474,462,0,143,153,152,142],[462,474,475,463,0,142,152,161,151],[463,475,476,464,0,151,161,160,150],[464,476,477,465,0,150,160,17,17],[465,477,478,466,0,17,17,159,149],[466,478,479,467,0,149,159,158,148],[467,479,468,456,0,148,158,157,147],[468,480,481,469,0,157,167,166,156],[469,481,482,470,0,156,166,165,155],[470,482,483,471,0,155,165,6,6],[471,483,484,472,0,6,6,164,154],[472,484,485,473,0,154,164,163,153],[473,485,486,474,0,153,163,162,152],[474,486,487,475,0,152,162,171,161],[475,487,488,476,0,161,171,170,160],[476,488,489,477,0,160,170,17,17],[477,489,490,478,0,17,17,169,159],[478,490,491,479,0,159,169,168,158],[479,491,480,468,0,158,168,167,157],[480,492,493,481,0,167,177,176,166],[481,493,494,482,0,166,176,175,165],[482,494,495,483,0,165,175,6,6],[483,495,496,484,0,6,6,174,164],[484,496,497,485,0,164,174,173,163],[485,497,498,486,0,163,173,172,162],[486,498,499,487,0,162,172,181,171],[487,499,500,488,0,171,181,180,170],[488,500,501,489,0,170,180,17,17],[489,501,502,490,0,17,17,179,169],[490,502,503,491,0,169,179,178,168],[491,503,492,480,0,168,178,177,167],[492,504,505,493,0,177,187,186,176],[493,505,506,494,0,176,186,185,175],[494,506,507,495,0,175,185,6,6],[495,507,508,496,0,6,6,184,174],[496,508,509,497,0,174,184,183,173],[497,509,510,498,0,173,183,182,172],[498,510,511,499,0,172,182,191,181],[499,511,512,500,0,181,191,190,180],[500,512,513,501,0,180,190,17,17],[501,513,514,502,0,17,17,189,179],[502,514,515,503,0,179,189,188,178],[503,515,504,492,0,178,188,187,177],[504,516,517,505,0,187,197,196,186],[505,517,518,506,0,186,196,195,185],[506,518,519,507,0,185,195,6,6],[507,519,520,508,0,6,6,194,184],[508,520,521,509,0,184,194,193,183],[509,521,522,510,0,183,193,192,182],[510,522,523,511,0,182,192,201,191],[511,523,524,512,0,191,201,200,190],[512,524,525,513,0,190,200,17,17],[513,525,526,514,0,17,17,199,189],[514,526,527,515,0,189,199,198,188],[515,527,516,504,0,188,198,197,187],[516,528,529,517,0,197,207,206,196],[517,529,530,518,0,196,206,205,195],[518,530,531,519,0,195,205,6,6],[519,531,532,520,0,6,6,204,194],[520,532,533,521,0,194,204,203,193],[521,533,534,522,0,193,203,202,192],[522,534,535,523,0,192,202,211,201],[523,535,536,524,0,201,211,210,200],[524,536,537,525,0,200,210,17,17],[525,537,538,526,0,17,17,209,199],[526,538,539,527,0,199,209,208,198],[527,539,528,516,0,198,208,207,197],[528,540,541,529,0,207,217,216,206],[529,541,542,530,0,206,216,215,205],[530,542,543,531,0,205,215,6,6],[531,543,544,532,0,6,6,214,204],[532,544,545,533,0,204,214,213,203],[533,545,546,534,0,203,213,212,202],[534,546,547,535,0,202,212,221,211],[535,547,548,536,0,211,221,220,210],[536,548,549,537,0,210,220,17,17],[537,549,550,538,0,17,17,219,209],[538,550,551,539,0,209,219,218,208],[539,551,540,528,0,208,218,217,207],[540,552,553,541,0,217,227,226,216],[541,553,554,542,0,216,226,225,215],[542,554,555,543,0,215,225,6,6],[543,555,556,544,0,6,6,224,214],[544,556,557,545,0,214,224,246,213],[545,557,558,546,0,213,246,222,212],[546,558,559,547,0,212,222,231,221],[547,559,560,548,0,221,231,230,220],[548,560,561,549,0,220,230,17,17],[549,561,562,550,0,17,17,229,219],[550,562,563,551,0,219,229,228,218],[551,563,552,540,0,218,228,227,217],[552,564,565,553,0,227,237,236,226],[553,565,566,554,0,226,236,235,225],[554,566,567,555,0,225,235,6,6],[555,567,568,556,0,6,6,234,224],[556,568,569,557,0,224,234,233,246],[557,569,570,558,0,246,233,232,222],[558,570,571,559,0,222,232,241,231],[559,571,572,560,0,231,241,240,230],[560,572,573,561,0,230,240,17,17],[561,573,574,562,0,17,17,239,229],[562,574,575,563,0,229,239,238,228],[563,575,564,552,0,228,238,237,227],[564,0,1,565,0,237,0,3,236],[565,1,2,566,0,236,3,5,235],[566,2,3,567,0,235,5,6,6],[567,3,4,568,0,6,6,8,234],[568,4,5,569,0,234,8,10,233],[569,5,6,570,0,233,10,12,232],[570,6,7,571,0,232,12,14,241],[571,7,8,572,0,241,14,16,240],[572,8,9,573,0,240,16,17,17],[573,9,10,574,0,17,17,19,239],[574,10,11,575,0,239,19,21,238],[575,11,0,564,0,238,21,0,237]], + + 'end': (new Date).getTime() + } + +postMessage( model ); diff --git a/examples/obj/walt/WaltHead_slim.js b/examples/obj/walt/WaltHead_slim.js new file mode 100644 index 0000000000000000000000000000000000000000..c487fcf9b8ae4bac8c3d85f5194122a44910d702 --- /dev/null +++ b/examples/obj/walt/WaltHead_slim.js @@ -0,0 +1,35 @@ +// Converted from: ../../examples/obj/walt/WaltHead.obj +// vertices: 8146 +// faces: 16160 +// materials: 1 +// +// Generated with OBJ -> Three.js converter +// http://github.com/alteredq/three.js/blob/master/utils/exporters/convert_obj_threejs2.py + + +var model = { + 'materials': [ { + "a_dbg_color" : 0xffeeeeee, + "a_dbg_index" : 0, + "a_dbg_name" : "lambert2SG.001", + "col_ambient" : [0.0, 0.0, 0.0], + "col_diffuse" : [0.64000000000000001, 0.64000000000000001, 0.64000000000000001], + "col_specular" : [0.25, 0.25, 0.25], + "illumination" : 2, + "optical_density" : 1.0, + "specular_coef" : 92.156863, + "transparency" : 1.0 + }], + + 'normals': [[0.159124,-0.401624,0.901852],[0.245949,-0.145878,0.958220],[0.175695,-0.414991,0.892666],[0.806604,0.345225,0.479720],[0.700827,0.488083,0.520157],[0.845393,0.411939,0.340007],[-0.616321,-0.724174,0.309275],[-0.663045,-0.670278,0.333201],[-0.661855,-0.698569,0.271859],[-0.055849,0.991211,0.119877],[0.010926,0.993774,0.110843],[-0.035188,0.996796,-0.071474],[0.967834,0.120273,0.220893],[0.935423,0.131809,0.327982],[0.990753,-0.052217,0.125004],[0.180609,-0.538285,-0.823145],[0.109745,-0.569170,-0.814844],[0.306864,-0.553789,-0.774010],[-0.094089,-0.386212,0.917570],[-0.272103,-0.235115,0.933073],[-0.184851,-0.530564,0.827204],[-0.129917,-0.606769,0.784173],[-0.389019,-0.470016,0.792261],[-0.157353,-0.538621,0.827693],[0.516434,-0.296579,-0.803308],[0.383343,-0.032289,-0.923032],[0.620319,-0.402814,-0.672994],[0.649617,-0.325755,-0.686911],[0.851283,-0.289804,-0.437330],[0.493301,-0.650929,-0.576952],[0.184667,-0.292917,-0.938108],[0.211158,-0.287515,-0.934172],[0.289499,-0.185003,-0.939116],[-0.143895,0.287851,-0.946776],[0.013062,0.327586,-0.944700],[-0.254036,0.322489,-0.911802],[0.802942,-0.229011,-0.550279],[0.921293,-0.258553,0.290353],[0.977142,-0.206793,0.049135],[0.653127,-0.467635,-0.595569],[0.669088,-0.279641,-0.688528],[0.712272,-0.261422,-0.651387],[0.437178,-0.375622,0.817133],[0.444502,-0.314127,0.838862],[0.521256,-0.354900,0.776086],[-0.126591,0.794122,-0.594409],[-0.257424,0.771783,-0.581408],[-0.295907,0.676290,-0.674551],[-0.424299,0.877010,0.225349],[-0.365825,0.906186,0.212104],[-0.395672,0.901669,0.174352],[0.738182,-0.612018,0.283700],[0.874660,-0.356304,0.328593],[0.905576,-0.145451,0.398450],[-0.469741,-0.190680,-0.861934],[-0.514786,-0.244057,-0.821802],[-0.655293,-0.276345,-0.702963],[0.920530,-0.389538,0.028962],[0.892666,-0.448439,0.044862],[0.843898,-0.466262,0.265297],[0.238258,-0.273965,-0.931730],[0.229225,-0.328898,-0.916105],[0.345195,-0.314676,-0.884182],[0.713095,-0.307382,-0.630055],[-0.355296,-0.629933,0.690573],[-0.147984,-0.702872,0.695730],[-0.697928,-0.271035,0.662862],[-0.038331,0.205786,0.977813],[0.017121,0.333689,0.942503],[-0.036592,0.345561,0.937651],[0.848140,-0.382183,-0.366832],[0.697043,-0.525346,-0.487930],[0.258522,0.941374,-0.216620],[0.171514,0.944090,-0.281533],[0.359172,0.919279,-0.160802],[0.439222,0.822443,-0.361431],[0.340983,0.870876,-0.353893],[0.386242,0.889584,-0.243690],[0.904324,-0.012726,0.426618],[0.881161,0.049776,0.470168],[0.893490,0.166112,0.417158],[-0.539567,-0.156224,-0.827296],[-0.400128,-0.339763,-0.851131],[-0.422895,-0.351817,-0.835078],[-0.489181,-0.351604,-0.798151],[-0.475295,-0.278695,-0.834498],[-0.497726,0.277688,0.821650],[-0.540513,0.217444,0.812708],[-0.559465,0.293008,0.775292],[0.181158,0.804315,-0.565844],[0.444166,0.735343,-0.511795],[0.299478,0.819849,-0.487930],[0.465133,-0.784356,0.410352],[0.248665,-0.873867,0.417707],[0.280221,-0.886593,0.367962],[0.644612,-0.180792,0.742790],[0.766320,-0.192633,0.612873],[0.652791,-0.279946,0.703879],[-0.089785,0.986602,0.136174],[-0.103824,0.927152,0.359996],[-0.243995,0.958831,0.145238],[0.605487,-0.710288,-0.358959],[0.788598,-0.396832,-0.469680],[0.861415,-0.352184,-0.365917],[-0.829005,-0.126530,0.544664],[-0.659322,-0.116306,0.742790],[-0.848994,0.282571,0.446425],[0.651112,-0.298685,-0.697714],[0.633931,-0.428327,-0.643910],[0.352031,-0.436811,-0.827784],[0.948790,-0.178076,-0.260811],[0.625050,-0.658345,0.419324],[0.629017,-0.701987,0.333964],[0.588275,-0.744011,0.316782],[0.073031,0.922727,0.378460],[0.146062,0.883328,0.445357],[0.285409,0.911832,0.295083],[-0.089450,0.291391,-0.952391],[-0.043397,0.191412,-0.980529],[0.073397,0.199591,-0.977111],[-0.050935,-0.231086,0.971587],[-0.149083,-0.193060,0.969787],[0.117924,-0.036256,0.992340],[0.935026,-0.140477,0.325510],[0.920469,-0.100223,0.377697],[0.911313,-0.203589,0.357830],[0.351054,0.499924,0.791681],[0.241768,0.493240,0.835597],[0.172796,0.370342,0.912656],[-0.733390,0.274758,0.621784],[-0.657704,0.406964,0.633839],[-0.728751,0.230506,0.644795],[0.720267,0.556932,0.413495],[0.645314,0.543718,0.536546],[0.595691,0.709159,0.377056],[0.986267,0.072146,-0.148473],[0.997711,-0.011139,0.066347],[0.983581,0.177435,0.032136],[-0.944700,0.164892,0.283364],[-0.942747,0.021729,0.332743],[-0.945494,0.166631,0.279733],[0.743095,0.207038,0.636311],[0.721946,0.054933,0.689718],[0.861538,-0.173162,0.477218],[-0.915738,0.163701,0.366863],[-0.898801,0.357677,0.253395],[-0.912564,0.331492,0.239326],[0.953917,-0.020692,0.299295],[0.957732,-0.096011,0.271126],[0.851711,-0.279153,0.443403],[-0.541429,-0.353954,0.762566],[-0.447584,-0.457503,0.768334],[-0.349651,-0.662160,0.662740],[0.732109,0.207038,-0.648915],[0.939451,-0.023804,-0.341838],[0.857295,0.141484,-0.494980],[0.401502,0.914701,0.045442],[0.618763,0.783410,-0.057833],[0.602924,0.782464,-0.155522],[0.420728,-0.172002,-0.890713],[0.494797,-0.317606,-0.808863],[0.487167,-0.277688,-0.827967],[0.821314,0.411176,0.395367],[0.757927,0.424970,0.494888],[0.826319,0.206885,0.523789],[-0.582904,0.536180,0.610462],[-0.539598,0.641102,0.545671],[-0.537522,0.673452,0.507431],[-0.850398,0.140904,-0.506882],[-0.821497,0.037690,-0.568926],[-0.907285,0.190893,-0.374645],[0.645405,0.433393,0.628925],[0.690054,0.272530,0.670431],[0.501572,0.336070,0.797143],[0.930601,-0.365795,0.012360],[0.932768,-0.360057,0.016938],[0.916715,-0.397748,-0.037355],[0.564074,0.455061,0.688986],[0.548692,0.538896,0.639119],[0.584185,0.516831,0.625782],[0.705924,0.435011,-0.558946],[0.431349,0.590655,-0.681936],[0.647786,0.402448,-0.646809],[0.901273,-0.432447,-0.025880],[0.978423,-0.206549,0.001648],[0.874386,-0.286599,-0.391461],[0.129917,-0.358043,-0.924589],[-0.014191,-0.403974,-0.914640],[0.030488,-0.258583,-0.965484],[-0.587512,-0.383496,0.712546],[-0.611805,-0.457595,0.645161],[-0.311228,-0.184881,0.932157],[0.765709,-0.450453,-0.459059],[0.728690,-0.505173,-0.462325],[0.708457,-0.431043,-0.558794],[-0.668813,-0.426862,-0.608600],[-0.781854,-0.459639,-0.421155],[-0.552019,-0.343822,-0.759606],[0.876064,-0.366466,-0.313364],[0.879452,-0.315531,-0.356304],[0.818995,-0.407697,-0.403729],[-0.951659,0.027314,-0.305856],[-0.888607,-0.188757,-0.417982],[-0.796014,-0.005158,-0.605213],[-0.059023,-0.209937,-0.975921],[-0.049409,-0.445875,-0.893704],[-0.131596,-0.319834,-0.938261],[-0.181188,-0.274789,0.944243],[0.048006,-0.330851,0.942442],[-0.036744,-0.104648,0.993805],[-0.484451,0.219092,0.846919],[-0.439344,0.250954,0.862545],[-0.593860,0.223640,0.772820],[0.719718,-0.061708,0.691488],[0.544298,-0.241096,0.803461],[0.671926,-0.224738,0.705649],[-0.945250,-0.319315,-0.067080],[-0.969756,-0.230323,0.080447],[-0.955596,-0.294290,0.014069],[-0.731193,-0.184088,0.656819],[0.067507,-0.678396,0.731559],[-0.312784,-0.893185,0.323008],[-0.402936,0.233589,-0.884884],[-0.200568,0.298959,-0.932920],[-0.505905,0.180303,-0.843532],[0.223334,0.859767,-0.459243],[0.174108,0.827418,-0.533860],[0.407636,0.792138,-0.454176],[0.962004,-0.123295,0.243477],[0.961730,-0.009125,0.273812],[0.949492,-0.144780,0.278268],[-0.639271,-0.401776,-0.655629],[-0.572771,-0.433363,-0.695761],[-0.670949,-0.559740,-0.486251],[0.522111,-0.368145,-0.769311],[0.390606,-0.497421,-0.774560],[0.115665,-0.406873,-0.906095],[-0.857479,-0.379498,-0.347362],[-0.790460,-0.422132,-0.443739],[-0.879665,-0.375347,-0.291971],[-0.947569,-0.310343,-0.075869],[-0.402814,-0.112186,0.908353],[-0.833461,-0.219642,0.507035],[-0.784661,-0.018464,0.619648],[-0.758446,0.293497,0.581866],[-0.831507,0.079257,0.549791],[0.694937,0.197028,0.691519],[0.649678,0.081729,0.755760],[0.744530,0.154637,0.649403],[0.969115,0.050630,-0.241249],[0.955290,0.010254,-0.295389],[0.994690,-0.049623,0.089938],[0.418683,0.411054,0.809748],[0.413495,0.472854,0.778069],[0.427992,0.520463,0.738853],[-0.333354,0.162786,0.928617],[-0.940001,-0.124729,0.317484],[-0.959716,-0.273232,0.065127],[-0.939879,-0.286630,-0.185583],[-0.926908,-0.163457,-0.337748],[-0.348857,-0.048372,-0.935911],[-0.321787,-0.052553,-0.945341],[-0.269539,-0.076724,-0.959899],[0.026917,0.367687,-0.929533],[0.277566,0.391308,-0.877377],[0.297189,0.315500,-0.901151],[-0.945067,-0.323496,0.046571],[0.108371,-0.130802,-0.985443],[-0.004852,-0.115696,-0.993255],[0.069674,-0.063265,-0.995544],[-0.694021,-0.300546,-0.654195],[-0.722068,-0.363842,-0.588366],[-0.678487,-0.467483,-0.566607],[-0.730216,-0.106723,-0.674795],[-0.579058,-0.188665,-0.793146],[-0.578143,-0.127384,-0.805902],[0.411145,-0.393597,-0.822169],[0.197363,-0.455245,-0.868191],[0.298776,-0.355998,-0.885403],[0.892697,-0.056642,0.447035],[0.863063,-0.008179,0.504990],[0.853969,-0.042482,0.518540],[-0.613392,-0.279000,0.738823],[-0.396649,-0.402081,0.825190],[-0.438887,-0.278390,0.854305],[0.005737,0.402295,0.915464],[0.092990,0.344218,0.934263],[-0.063478,0.337107,0.939299],[-0.427625,-0.387677,-0.816584],[-0.380993,-0.307779,-0.871822],[-0.465102,-0.499222,-0.731040],[-0.508957,-0.251106,-0.823328],[-0.524949,-0.205451,-0.825922],[-0.490127,-0.263100,-0.830958],[0.534654,-0.126469,-0.835536],[0.631825,-0.151433,-0.760155],[0.570452,-0.164739,-0.804590],[0.672750,0.606403,-0.423841],[-0.991668,0.106326,0.072573],[-0.916349,0.022095,-0.399701],[-0.639882,-0.333537,-0.692282],[-0.526078,-0.360240,-0.770318],[-0.394391,-0.501816,-0.769799],[0.160863,0.629627,-0.760033],[0.094668,0.594348,-0.798608],[0.052278,0.489578,-0.870357],[0.741142,0.108066,0.662557],[0.486099,0.144108,0.861904],[0.546312,-0.164006,0.821345],[0.388226,-0.326701,-0.861690],[0.375195,-0.225440,-0.899075],[0.214515,-0.301798,-0.928922],[0.302927,0.361431,0.881802],[0.417249,0.427869,0.801752],[0.346507,0.427473,0.834956],[0.258400,-0.042817,-0.965087],[0.406873,-0.002136,-0.913480],[0.427320,-0.062838,-0.901883],[-0.956969,-0.183050,0.225074],[-0.954100,-0.026032,0.298318],[-0.967437,-0.125675,0.219672],[-0.977477,0.114841,0.176855],[-0.966460,-0.026063,0.255409],[-0.984924,-0.061769,0.161504],[0.983673,-0.119053,0.134739],[0.981048,-0.149510,0.123173],[0.914304,-0.232917,0.331309],[-0.486251,-0.528214,-0.696066],[-0.584277,-0.438337,-0.682974],[-0.418378,-0.425764,-0.802271],[0.935118,-0.223945,0.274545],[0.937376,-0.212989,0.275582],[0.947996,-0.257515,-0.186987],[-0.511643,0.041993,0.858150],[-0.491653,0.150578,0.857662],[-0.391278,0.084170,0.916379],[0.957915,-0.115757,0.262581],[0.910092,-0.154729,0.384350],[0.922086,-0.060121,0.382214],[0.397015,0.188116,-0.898312],[0.202826,0.108188,-0.973205],[0.190344,0.130070,-0.973052],[0.972259,-0.204535,-0.113315],[0.981536,-0.174139,-0.078768],[0.948424,-0.310892,-0.061403],[-0.983734,-0.144566,0.106540],[-0.988952,-0.054567,0.137761],[-0.979705,-0.120579,0.159948],[0.933531,0.017609,-0.357982],[0.827631,0.055574,-0.558489],[0.860805,0.191778,-0.471389],[-0.910062,0.082400,0.406171],[-0.781610,0.158361,0.603290],[-0.812494,0.019715,0.582598],[-0.862911,-0.140172,0.485458],[-0.782342,0.013123,0.622700],[-0.864986,-0.429273,0.259713],[0.889370,0.113620,0.442763],[0.884457,-0.151616,0.441237],[0.885403,-0.116428,0.449934],[-0.979125,0.009339,-0.202948],[-0.986053,-0.122776,-0.112125],[-0.869961,-0.156590,-0.467544],[0.876919,0.059236,0.476943],[0.858821,0.023530,0.511673],[0.968657,-0.084628,0.233406],[-0.137730,0.577899,-0.804376],[-0.031465,0.712546,-0.700888],[-0.089175,0.673574,-0.733696],[0.753716,0.177770,0.632649],[0.849849,-0.034028,0.525864],[0.880001,0.039888,0.473251],[0.872585,-0.228614,0.431623],[0.803308,-0.047914,0.593616],[0.291177,-0.041688,0.955748],[0.738884,-0.155217,0.655660],[-0.422071,-0.420118,0.803339],[0.653645,0.337107,0.677541],[-0.951292,0.285989,0.114872],[-0.991516,0.050172,0.119755],[-0.973632,0.212043,0.083956],[-0.147404,-0.564226,0.812311],[-0.302744,-0.358196,0.883175],[0.113926,-0.186682,0.975768],[-0.028779,0.095767,0.994964],[0.178503,0.160924,0.970672],[0.915036,-0.282754,-0.287576],[0.648427,-0.400952,-0.647084],[0.732597,-0.177496,-0.657063],[-0.179144,0.914365,-0.363018],[-0.358074,0.918943,-0.165136],[-0.030915,0.973449,-0.226722],[-0.817103,-0.326762,-0.474899],[-0.807367,-0.213843,-0.549883],[-0.819880,-0.214606,-0.530747],[-0.532975,-0.683035,0.499344],[-0.666280,-0.496750,0.556108],[-0.596789,-0.739738,0.310800],[0.715415,0.048494,-0.696982],[0.860347,-0.013337,-0.509507],[0.783654,0.047578,-0.619343],[-0.333415,0.877194,-0.345470],[-0.051973,0.933805,-0.353984],[-0.321085,0.908841,-0.266152],[-0.890683,-0.373241,-0.259499],[-0.949309,-0.146306,0.278115],[-0.970977,-0.179693,0.157689],[0.689901,0.374737,0.619312],[0.667318,0.476608,0.572253],[0.703757,0.366710,0.608417],[-0.974517,-0.030824,0.222053],[-0.923460,-0.066378,0.377819],[-0.944914,0.125584,0.302194],[-0.213599,0.735405,-0.643055],[-0.252297,0.573717,-0.779199],[-0.316324,0.691946,-0.648915],[-0.741264,-0.258522,-0.619404],[-0.863826,-0.060518,-0.500076],[-0.780480,-0.020142,-0.624836],[-0.966491,-0.248756,0.063143],[-0.970794,-0.170080,0.169073],[-0.913358,-0.209357,0.349193],[-0.538896,-0.284463,0.792871],[-0.395337,-0.402783,0.825465],[-0.445479,-0.144261,0.883572],[0.977569,0.005158,-0.210395],[0.996734,-0.078585,-0.017670],[0.970794,0.016388,-0.239265],[0.570086,0.819971,0.050783],[0.512955,0.856655,0.054659],[0.508957,0.860317,0.028260],[-0.439100,-0.452101,-0.776360],[-0.275948,-0.310221,-0.909696],[-0.416150,-0.443220,-0.793939],[0.836909,-0.056276,-0.544389],[0.846431,-0.081973,-0.526109],[0.906217,-0.062899,-0.418043],[-0.950926,-0.308786,0.019471],[-0.915464,-0.284127,0.284860],[-0.950835,-0.243904,-0.190680],[-0.112125,0.841365,-0.528642],[-0.003784,0.823542,-0.567186],[-0.038209,0.829951,-0.556475],[0.993316,-0.113315,-0.020508],[0.979308,-0.153722,0.131382],[0.970275,-0.239204,-0.036348],[-0.453444,-0.485092,-0.747673],[-0.452315,-0.461165,-0.763329],[0.821345,0.299387,-0.485488],[-0.368633,0.397626,-0.840205],[0.844508,0.194983,-0.498733],[0.905637,0.194494,0.376782],[0.879513,0.211554,0.426191],[0.833338,0.152959,0.531114],[0.717673,0.052309,-0.694388],[0.579089,0.002380,-0.815241],[0.918088,0.238441,0.316568],[0.906552,0.306619,0.289956],[0.906705,0.335917,0.254982],[-0.363414,-0.744133,0.560503],[-0.108921,-0.761193,0.639271],[-0.194159,-0.789727,0.581896],[0.397259,-0.593860,0.699606],[0.345714,-0.627583,0.697531],[0.222907,-0.876370,0.426862],[0.322703,0.945585,0.041322],[0.358959,0.927091,0.107852],[0.373821,0.915738,0.147221],[-0.183996,0.021577,0.982665],[0.993500,0.004944,0.113529],[0.950865,-0.073214,0.300760],[0.935972,-0.230323,0.266182],[-0.068911,-0.218574,-0.973357],[-0.095523,-0.245064,-0.964751],[-0.257515,-0.249977,-0.933348],[-0.363140,0.528916,-0.767022],[-0.438765,0.590625,-0.677206],[-0.512406,0.586718,-0.627033],[-0.434980,-0.719962,0.540757],[-0.381817,-0.718497,0.581317],[-0.425459,-0.791559,0.438612],[-0.157598,0.313608,-0.936369],[-0.088260,0.347606,-0.933439],[0.811914,-0.572985,0.111454],[0.969359,-0.207160,-0.131932],[0.840144,-0.523545,0.141362],[0.060945,0.460158,-0.885708],[-0.043367,0.455916,-0.888943],[0.195166,0.322611,-0.926176],[0.322947,0.929655,0.177190],[0.196051,0.980590,0.002472],[-0.239235,-0.145451,0.959990],[-0.447035,-0.096500,0.889279],[-0.513810,-0.120182,0.849422],[-0.059206,-0.487564,-0.871059],[0.408277,-0.457472,-0.789941],[0.764153,-0.224433,-0.604724],[0.773949,-0.336406,0.536424],[0.703421,-0.492477,0.512436],[0.715079,-0.514969,0.472671],[-0.797754,0.164251,0.580126],[-0.833949,0.122318,0.538072],[-0.789270,0.614002,0.000000],[-0.687613,0.702414,-0.183752],[-0.622730,0.781365,-0.040437],[0.978210,-0.092196,0.185980],[0.965606,-0.232643,0.115909],[0.970489,-0.059267,0.233711],[0.914914,-0.159001,0.370983],[0.821284,-0.058443,0.567492],[0.838832,-0.205420,0.504135],[0.474227,-0.672506,0.568133],[0.420637,-0.727165,0.542467],[0.518418,-0.757988,0.395764],[-0.026246,0.761132,-0.648030],[0.144108,0.737236,-0.660054],[0.172277,0.767266,-0.617695],[-0.012299,-0.053987,-0.998444],[0.044343,0.030702,-0.998535],[0.124912,-0.053804,-0.990692],[0.941282,-0.130863,0.311136],[0.826807,-0.229591,0.513443],[0.875912,-0.227058,0.425642],[-0.444655,-0.275369,-0.852290],[-0.556902,-0.221320,-0.800531],[-0.470626,-0.303934,-0.828303],[0.323283,-0.241432,-0.914975],[0.204657,-0.324107,-0.923612],[0.388928,-0.220862,-0.894375],[-0.874081,0.255104,0.413343],[-0.935148,-0.012268,0.354015],[-0.060152,0.055849,0.996612],[0.448897,0.449812,0.772088],[0.260567,0.602313,0.754509],[0.917631,0.232673,0.322153],[0.971496,0.135990,0.194067],[0.940642,0.059450,0.334117],[-0.971831,0.019990,0.234718],[-0.990234,0.136509,0.027863],[-0.982482,0.161412,0.092868],[0.728813,0.599200,-0.331309],[0.699759,0.525224,-0.484176],[0.648976,0.603748,-0.462874],[-0.634327,-0.605090,-0.481124],[-0.129063,-0.783776,-0.607471],[-0.513871,-0.777520,-0.362407],[0.996002,-0.068575,-0.056917],[0.998077,-0.061800,0.004181],[0.998688,0.009613,-0.050203],[0.177068,-0.556261,0.811884],[0.172704,-0.732902,0.658010],[-0.042970,-0.794580,0.605579],[0.382244,0.920682,-0.078677],[0.325419,0.919279,-0.221320],[0.526139,0.844417,-0.100436],[0.086367,-0.626148,-0.774865],[0.969329,0.212104,0.123905],[0.936216,0.349956,-0.031068],[0.849818,0.526566,-0.021790],[0.149297,0.636982,-0.756249],[0.187109,0.640431,-0.744835],[0.013337,0.689047,-0.724570],[-0.868923,0.020600,0.494461],[-0.857173,-0.088443,0.507309],[-0.897031,-0.024842,0.441267],[0.327555,0.935087,0.135075],[0.333445,0.925138,0.181402],[0.492782,0.866054,0.083895],[-0.300150,-0.139927,-0.943541],[0.192572,-0.059572,-0.979461],[-0.110477,-0.157933,-0.981231],[-0.861080,0.266366,-0.433088],[-0.755608,0.352245,-0.552202],[-0.902432,0.211280,-0.375439],[0.186834,0.973266,0.133396],[0.377026,0.922330,0.084323],[-0.170019,0.421827,-0.890561],[-0.258553,0.387768,-0.884732],[-0.147191,0.428968,-0.891232],[-0.872219,-0.077181,-0.482925],[-0.805658,-0.147771,-0.573595],[-0.899411,-0.010315,-0.436964],[-0.140263,0.237709,0.961119],[0.107456,-0.001679,0.994201],[-0.165716,-0.405530,0.898923],[0.233345,0.271462,0.933714],[0.222510,0.401227,0.888516],[0.180822,0.238258,0.954192],[-0.464125,0.872433,-0.153020],[-0.649709,0.728935,-0.215583],[-0.468307,0.855129,-0.222297],[-0.671194,-0.257241,-0.695212],[-0.598193,-0.211859,-0.772820],[-0.688986,-0.182989,-0.701285],[0.420759,0.420881,0.803613],[0.626576,0.309030,0.715445],[0.451491,0.402417,0.796350],[0.047090,0.997772,0.046663],[-0.334056,0.936796,0.103854],[0.038240,0.997955,0.050600],[-0.112888,0.907315,-0.404950],[0.087069,0.871731,-0.482162],[-0.035493,0.902860,-0.428449],[-0.180578,-0.112674,-0.977081],[-0.135960,-0.009552,-0.990661],[-0.097476,0.057772,-0.993530],[-0.899838,-0.418958,-0.121281],[-0.085604,0.296487,-0.951170],[-0.084750,0.134922,-0.987213],[-0.063784,0.212867,-0.974975],[-0.432630,-0.389752,-0.812922],[-0.524735,-0.343730,-0.778741],[-0.480789,-0.511948,-0.711814],[0.630116,-0.330515,-0.702597],[0.479598,-0.307657,-0.821772],[0.454024,-0.366802,-0.811945],[-0.079165,-0.174139,-0.981506],[0.176366,-0.049104,-0.983093],[0.070009,-0.169866,-0.982971],[-0.709799,0.408612,-0.573717],[-0.419813,0.551225,-0.721000],[-0.466781,0.721366,-0.511582],[-0.160009,-0.451582,0.877743],[-0.480422,0.469192,0.740959],[-0.427045,0.614643,0.663167],[-0.395978,0.556871,0.730094],[0.372906,0.862026,0.343242],[0.307382,0.857387,0.412763],[0.150304,0.941527,0.301462],[0.698233,-0.394635,-0.597217],[0.778252,-0.351634,-0.520218],[0.731162,-0.222755,-0.644765],[0.668447,0.679983,-0.301248],[0.792627,0.548906,-0.265267],[0.651387,0.686270,-0.323527],[-0.950987,-0.219977,-0.217170],[-0.925962,-0.191504,-0.325419],[-0.968566,-0.142491,-0.203803],[0.583850,0.782617,0.215766],[0.381512,0.873135,0.303385],[0.348735,0.842311,0.410901],[-0.967925,0.195807,0.157384],[-0.946043,0.108982,0.305124],[-0.015229,0.990814,0.134281],[-0.968352,-0.235420,0.082705],[-0.389355,0.490951,0.779321],[-0.519700,-0.118168,0.846095],[-0.410108,0.024659,0.911679],[0.359966,-0.242500,-0.900876],[0.440870,-0.295755,-0.847407],[0.354717,-0.280099,-0.891995],[-0.989410,-0.142613,0.025788],[-0.914335,-0.064608,0.399731],[-0.994415,-0.026490,0.102023],[-0.442854,0.161107,0.881985],[-0.291787,0.161046,0.942808],[-0.316050,0.244972,0.916532],[0.389477,-0.662587,0.639729],[0.167791,-0.333659,-0.927610],[0.228156,-0.353404,-0.907193],[0.308084,-0.351360,-0.884060],[0.593493,-0.088046,-0.799982],[0.819269,-0.087191,-0.566698],[0.571856,0.132481,-0.809564],[-0.871181,0.392895,0.294351],[-0.857845,0.406354,0.314554],[-0.965850,0.085726,0.244362],[-0.737846,-0.674673,0.019044],[-0.945585,0.018525,0.324809],[-0.448927,-0.154454,-0.880093],[-0.484909,-0.382000,-0.786706],[-0.683920,-0.294992,-0.667226],[0.113285,0.769738,0.628193],[0.341594,0.796289,0.499191],[0.321177,0.774987,0.544237],[-0.216895,0.066866,-0.973876],[-0.252419,0.150578,-0.955809],[0.034852,0.106265,-0.993713],[0.821009,0.062655,0.567431],[0.711356,0.076815,0.698599],[0.762719,0.093478,0.639912],[0.119633,0.129917,-0.984252],[0.291787,0.359996,0.886105],[0.116001,0.281350,0.952544],[0.251839,0.212439,0.944151],[0.008576,-0.111820,-0.993683],[0.040101,-0.279885,-0.959166],[-0.059511,-0.185308,-0.980865],[-0.869839,0.014100,0.493088],[-0.842830,-0.164769,0.512284],[-0.593616,-0.349071,0.725059],[-0.383923,-0.517808,-0.764458],[-0.549608,-0.602863,-0.578326],[-0.551866,-0.389996,-0.737083],[-0.850795,0.353282,0.388989],[-0.948363,0.153935,0.277261],[-0.913999,-0.243477,0.324473],[0.146489,-0.483810,0.862789],[0.263192,-0.488784,0.831721],[-0.090793,-0.549974,-0.830195],[-0.216895,-0.500015,-0.838374],[-0.176244,-0.529588,-0.829707],[-0.509629,0.603168,0.613544],[-0.516160,0.458174,0.723594],[0.190435,-0.392285,0.899899],[0.362712,-0.260292,0.894772],[-0.948515,0.113346,-0.295663],[-0.967040,-0.148198,-0.206885],[0.420667,0.902646,0.090640],[0.323801,0.929807,0.174871],[0.501419,0.840815,0.203864],[-0.210883,0.843593,-0.493789],[-0.025910,0.821528,-0.569536],[0.054079,0.323710,-0.944578],[0.018403,0.117588,-0.992889],[0.158696,0.424451,-0.891415],[0.149052,-0.229102,0.961913],[0.217963,-0.045106,0.974883],[0.234870,0.073855,-0.969207],[0.378887,0.142857,-0.914335],[0.207099,0.181341,-0.961333],[0.755364,-0.374798,-0.537492],[0.783227,-0.363720,-0.504227],[0.866390,-0.351115,-0.355022],[-0.688131,-0.398724,-0.606189],[-0.705710,-0.347667,-0.617298],[-0.864467,-0.271889,-0.422773],[0.943876,-0.090152,0.317698],[0.928190,0.033052,0.370586],[0.874599,0.347575,0.337931],[-0.994598,-0.095584,-0.039705],[-0.993622,0.097293,0.056795],[-0.965361,-0.052370,0.255531],[-0.756523,0.499619,-0.421918],[-0.693106,0.628925,-0.352153],[-0.795343,0.526353,-0.300607],[0.064791,-0.391858,-0.917722],[0.253792,-0.246254,-0.935362],[0.871822,-0.312204,-0.377361],[0.849239,-0.514328,-0.119175],[0.864101,-0.386212,-0.322642],[-0.288125,-0.432539,-0.854305],[-0.889615,-0.324534,-0.321299],[-0.819483,-0.327555,-0.470199],[-0.979247,-0.183660,-0.085299],[-0.973510,-0.228492,0.000946],[-0.983367,-0.175542,-0.046113],[-0.226508,0.016419,0.973846],[-0.308145,-0.104007,0.945616],[-0.284829,0.053926,0.957030],[0.637776,-0.712210,0.293161],[0.725700,-0.631764,0.272408],[0.754357,-0.605121,0.254463],[0.187567,0.916745,0.352672],[0.266243,0.933470,0.240242],[0.311380,0.916288,0.251900],[-0.252693,-0.253853,0.933622],[-0.355724,-0.377514,0.854915],[-0.133305,-0.186468,0.973357],[-0.096347,-0.718070,-0.689230],[-0.611042,-0.493210,-0.619129],[0.243477,-0.826411,-0.507675],[-0.745140,-0.332682,-0.577960],[-0.697989,-0.208533,-0.685049],[-0.672079,-0.126011,-0.729667],[-0.344096,-0.279489,-0.896329],[-0.927946,-0.273995,-0.252571],[-0.923215,-0.265389,-0.277840],[-0.700278,-0.375958,-0.606800],[-0.794946,0.576861,0.187750],[-0.752953,0.617878,0.226295],[-0.804529,0.547624,0.229743],[0.297830,0.474654,-0.828242],[0.245094,0.513596,-0.822260],[-0.110691,0.550584,-0.827357],[-0.729942,-0.003357,0.683493],[-0.454421,0.098148,0.885342],[-0.617084,0.043062,0.785699],[-0.477584,-0.547258,-0.687307],[-0.691244,-0.411847,-0.593738],[-0.568438,-0.376812,-0.731315],[-0.301431,-0.697195,0.650380],[-0.270180,-0.654195,0.706381],[0.932340,-0.266152,-0.244697],[0.945738,-0.170202,-0.276742],[0.963317,-0.245918,-0.107273],[0.276681,-0.328135,-0.903165],[-0.146977,-0.390667,-0.908689],[-0.054323,-0.296609,-0.953429],[-0.041353,-0.216712,-0.975341],[0.160649,-0.343944,-0.925108],[-0.907376,-0.416456,-0.056490],[-0.927458,-0.372234,-0.035188],[-0.945433,-0.325755,-0.003998],[-0.057924,0.493088,-0.868007],[-0.179418,0.511368,-0.840388],[-0.126102,0.492691,-0.860988],[0.973662,-0.082308,0.212470],[0.990844,-0.057527,0.122013],[0.985900,-0.113102,0.123142],[0.192175,-0.082095,-0.977905],[-0.264901,-0.197546,-0.943785],[0.018281,-0.259072,-0.965667],[-0.379192,-0.273385,-0.883999],[-0.253761,-0.380993,-0.889035],[-0.311258,-0.054994,-0.948729],[0.984039,-0.032929,0.174688],[0.998657,-0.005066,0.051149],[0.984741,-0.006928,0.173772],[0.114139,-0.144719,0.982849],[0.043001,-0.281075,0.958708],[0.031709,-0.100497,0.994415],[0.268288,0.432722,0.860653],[0.336894,0.307657,0.889828],[0.581256,0.384320,0.717185],[-0.472518,0.750969,-0.461226],[-0.475906,0.678762,-0.559221],[-0.563616,0.707663,-0.426008],[-0.304025,0.947691,0.097018],[-0.271676,0.962340,0.004700],[-0.238838,0.966124,0.097690],[-0.881710,-0.018738,0.471358],[-0.766198,0.050874,0.640553],[-0.843379,-0.191443,0.501999],[0.424390,0.710715,0.560991],[0.396558,0.738212,0.545640],[0.183782,0.784326,0.592456],[0.930845,0.124149,-0.343608],[0.721549,-0.060030,-0.689718],[0.706381,-0.158849,-0.689749],[0.200354,0.420576,0.884823],[0.124424,-0.000916,0.992218],[0.332713,-0.037782,0.942259],[-0.345317,0.938444,0.005829],[0.759728,0.630787,0.157781],[0.627644,0.768334,0.125126],[-0.394299,-0.359416,-0.845759],[-0.491562,-0.531358,-0.689901],[-0.168126,-0.402997,-0.899594],[-0.098727,0.245918,-0.964232],[0.078341,0.397443,-0.914243],[-0.050203,0.283425,-0.957671],[0.954802,-0.088229,0.283731],[0.911405,-0.201727,0.358623],[0.971282,0.167211,0.169225],[0.170476,-0.323527,-0.930723],[0.190313,-0.269845,-0.943876],[0.114231,-0.343608,-0.932127],[0.107303,0.176092,-0.978484],[0.213202,0.138737,-0.967101],[0.370037,0.087680,-0.924863],[-0.005554,0.026063,0.999634],[-0.665273,-0.020386,0.746300],[-0.861415,-0.274819,0.427107],[-0.099796,-0.404889,-0.908872],[-0.491440,-0.348125,-0.798273],[-0.239845,-0.454329,-0.857906],[0.788476,-0.340617,-0.512101],[0.838862,-0.257790,-0.479415],[0.822413,-0.261391,-0.505264],[0.159795,0.374798,-0.913205],[0.199011,0.332347,-0.921903],[0.336894,0.331065,-0.881405],[0.522446,0.432722,0.734672],[0.534532,0.340159,0.773644],[0.478866,0.482376,0.733451],[0.924345,-0.282968,0.255867],[0.992248,-0.121860,-0.023621],[0.983337,-0.114353,0.141240],[-0.477950,0.858699,0.184790],[-0.381695,0.908567,0.169652],[-0.502243,0.844997,0.183477],[0.258522,-0.446394,-0.856655],[0.138615,-0.436171,-0.889096],[0.370556,-0.353587,-0.858852],[0.905026,-0.306803,0.294595],[0.096194,-0.147984,-0.984283],[0.363628,-0.162175,-0.917295],[0.709555,0.156590,0.686972],[0.696493,0.303873,0.650014],[0.824152,0.186377,0.534745],[0.931913,0.132908,0.337413],[0.851100,0.391430,0.349803],[0.821009,0.426740,0.379223],[0.636128,0.609302,-0.473342],[0.358928,0.788568,-0.499283],[0.597522,0.700552,-0.390027],[0.935423,0.100986,0.338786],[0.859462,0.193365,0.473159],[0.788598,0.487259,0.375042],[0.685018,-0.723594,0.084567],[-0.767846,-0.457289,-0.448622],[-0.602191,-0.597949,0.528947],[-0.691366,-0.264412,0.672353],[-0.521012,-0.629139,0.576769],[0.954772,-0.146855,-0.258492],[0.812464,-0.243599,-0.529618],[0.979461,-0.167028,-0.112827],[-0.389019,-0.349620,0.852290],[-0.202155,-0.196051,0.959502],[-0.360820,0.156163,0.919462],[-0.773186,-0.294595,-0.561571],[-0.758202,-0.427625,-0.492111],[-0.662587,-0.472152,-0.581378],[0.623371,0.704611,-0.338939],[0.557054,0.795068,-0.239845],[0.632130,0.693106,-0.346355],[0.707083,0.333506,-0.623524],[0.776421,0.398389,-0.488296],[0.757744,0.450270,-0.472274],[0.954039,0.139073,0.265419],[0.910092,-0.137486,0.390881],[0.987457,0.143864,0.064760],[-0.204199,-0.482284,0.851863],[-0.300943,-0.420850,0.855739],[-0.019715,-0.415540,0.909360],[-0.711509,0.702475,-0.015290],[-0.730399,0.677572,0.085849],[-0.796686,0.604327,-0.002136],[0.440748,-0.379559,-0.813410],[0.528764,-0.327342,-0.783074],[0.604114,-0.426008,-0.673421],[-0.939238,-0.283029,-0.194159],[-0.923704,-0.251900,-0.288614],[-0.370464,0.744957,0.554735],[-0.210730,0.642933,0.736351],[-0.271676,0.657643,0.702597],[-0.777429,0.542680,-0.317881],[-0.818293,0.568346,-0.085604],[-0.732841,0.672018,-0.106265],[0.960265,-0.238777,0.144292],[0.958525,-0.280190,0.051637],[0.925230,-0.379376,0.001831],[-0.227943,0.305856,-0.924375],[-0.213904,0.295724,-0.930998],[-0.130009,0.386731,-0.912961],[0.962249,0.238289,-0.131382],[0.907224,0.410077,-0.093570],[0.980102,0.198126,0.010529],[-0.628559,-0.359508,-0.689657],[-0.550066,-0.363659,-0.751762],[-0.659047,-0.380108,-0.648946],[0.907559,-0.379192,0.180364],[0.857906,-0.479659,0.184149],[0.826960,-0.503433,0.250313],[0.350475,-0.639454,0.684255],[0.616810,-0.394696,0.680960],[0.586016,-0.459944,0.667074],[0.544664,0.416395,-0.727928],[0.379040,-0.252846,-0.890133],[-0.076601,-0.323222,-0.943205],[-0.672964,-0.352519,-0.650227],[-0.730613,-0.171880,-0.660756],[-0.591632,-0.231269,-0.772271],[0.858943,-0.512009,-0.006226],[0.881954,-0.430250,0.192389],[0.842982,-0.499771,0.198859],[0.640187,-0.318491,-0.699057],[0.521470,-0.349895,-0.778191],[0.382458,-0.413312,-0.826350],[-0.314951,-0.470931,-0.824000],[-0.690146,-0.441908,-0.573016],[-0.536302,-0.414960,-0.734947],[0.386883,-0.068606,0.919553],[0.286782,-0.075625,0.954985],[0.499069,-0.289499,0.816736],[0.198187,0.851009,-0.486312],[0.513901,0.571123,-0.640065],[0.211249,0.658162,-0.722587],[-0.061220,0.777764,-0.625538],[0.025056,0.732383,-0.680380],[0.011536,0.750969,-0.660207],[0.843043,-0.400800,-0.358623],[0.907163,-0.367962,-0.204047],[-0.825983,0.304880,-0.474075],[-0.681082,0.501999,-0.532975],[-0.686422,0.516465,-0.511887],[0.130650,-0.482620,0.865993],[-0.921354,0.058687,-0.384228],[-0.933714,0.116276,-0.338542],[-0.168493,0.038331,0.984924],[-0.231635,0.159154,0.959685],[-0.338694,-0.058931,0.939024],[0.687094,-0.388012,-0.614246],[0.656178,-0.259285,-0.708609],[0.492386,-0.352214,-0.795892],[0.888272,-0.152654,0.433119],[0.887326,-0.300729,0.349498],[-0.404950,-0.226905,-0.885708],[-0.011933,-0.309702,-0.950743],[0.342509,-0.243934,-0.907285],[-0.063692,-0.118870,-0.990844],[-0.257607,-0.232215,-0.937895],[-0.005768,-0.090609,-0.995849],[0.131657,0.130375,-0.982665],[0.079012,0.357646,-0.930479],[0.270363,0.016541,0.962584],[0.117832,-0.000519,0.993011],[0.330515,0.019105,0.943571],[0.900113,0.307413,-0.308573],[0.996918,0.059175,-0.051332],[0.892117,0.212439,-0.398724],[-0.547563,0.076235,0.833247],[-0.562151,0.041780,0.825953],[-0.693960,-0.458052,-0.555467],[-0.647786,-0.530412,-0.546800],[0.393475,0.066103,0.916929],[0.494430,0.033815,0.868557],[0.466170,-0.068758,0.881985],[0.446699,-0.399030,-0.800745],[0.499741,-0.492843,-0.712272],[0.500626,-0.447890,-0.740745],[0.585986,-0.304819,-0.750755],[0.465285,-0.278176,-0.840266],[0.359081,-0.524247,-0.772118],[0.951689,-0.305918,0.025819],[0.971068,-0.237007,0.028016],[0.888241,0.335276,-0.313913],[0.992523,-0.038697,-0.115726],[0.913938,0.240730,-0.326701],[0.529649,0.353435,0.771050],[0.684011,0.319987,0.655507],[0.377209,0.199225,0.904416],[0.026002,0.283883,-0.958495],[0.139256,0.283547,-0.948759],[0.967437,0.026887,-0.251625],[0.978637,0.080447,-0.189093],[0.947722,0.154454,-0.279122],[0.199255,0.978484,0.053316],[-0.276254,0.850734,0.447127],[0.318583,0.915128,0.246956],[-0.046236,0.472976,-0.879849],[-0.021851,0.583239,-0.811975],[-0.001251,0.471114,-0.882046],[-0.876705,-0.095523,-0.471389],[-0.875576,-0.252052,-0.412091],[-0.951353,-0.272774,-0.143162],[-0.592090,0.780908,0.198950],[-0.720542,0.568133,0.397473],[0.979644,-0.125553,0.156560],[0.980346,-0.090365,0.175268],[0.971374,-0.176153,0.159307],[0.548479,-0.036622,0.835353],[0.714438,0.015564,0.699484],[0.813837,-0.548082,0.192907],[0.735649,-0.668996,0.105899],[-0.486007,-0.465438,-0.739677],[-0.520920,-0.321146,-0.790857],[-0.402448,-0.506241,-0.762688],[0.305734,0.032472,-0.951537],[0.275216,-0.118046,-0.954070],[0.246864,0.160436,0.955657],[0.137181,0.188269,0.972472],[0.150731,0.033296,0.988006],[0.703940,-0.577654,-0.413190],[0.395367,-0.592975,-0.701468],[0.757805,-0.619251,-0.205359],[-0.373669,0.848659,-0.374310],[-0.309488,0.853298,-0.419568],[-0.214759,0.898129,-0.383648],[-0.284310,0.620258,0.731040],[0.513779,0.804804,0.297067],[0.184820,0.900143,0.394421],[0.006989,0.953581,0.300974],[-0.038850,0.894040,0.446272],[0.911313,-0.330699,-0.245186],[0.849147,0.162084,0.502640],[0.969329,-0.057009,0.238990],[-0.768670,-0.332560,-0.546373],[-0.488723,0.145787,-0.860134],[-0.449538,0.108005,-0.886685],[-0.448378,0.162389,-0.878933],[-0.914670,-0.342814,-0.213965],[-0.877346,-0.469955,-0.096805],[-0.931028,-0.221107,-0.290231],[-0.140751,-0.985809,0.091372],[-0.375195,-0.920713,0.107150],[-0.258980,-0.939238,0.225166],[0.754814,0.267861,-0.598712],[0.243446,0.281961,-0.928007],[-0.080721,0.603046,-0.793603],[-0.939756,-0.317301,0.127018],[-0.834773,-0.348857,-0.425916],[-0.923704,-0.299936,-0.238258],[-0.715903,-0.218940,-0.662954],[0.009247,0.137303,-0.990478],[0.035493,0.251869,-0.967101],[0.007691,0.216559,-0.976226],[-0.544267,-0.314432,-0.777703],[-0.418622,-0.278817,-0.864284],[-0.573016,-0.257668,-0.777947],[0.076083,-0.695090,0.714866],[-0.657826,-0.693258,0.294290],[-0.932463,0.273995,0.235359],[-0.965423,0.200842,0.166112],[-0.910276,0.264595,0.318308],[-0.251564,0.500809,-0.828181],[-0.042421,0.627552,-0.777398],[-0.063143,0.624073,-0.778771],[0.259316,-0.678610,0.687155],[0.140996,-0.834346,0.532853],[0.273019,0.811609,0.516434],[0.241127,0.554735,0.796289],[0.472152,0.196631,0.859279],[0.497543,0.193732,0.845515],[-0.774499,-0.302469,0.555528],[-0.805353,-0.295419,0.513901],[-0.742485,-0.443098,0.502335],[-0.988433,-0.092959,-0.119724],[-0.971892,-0.094455,0.215583],[-0.951140,-0.062349,0.302377],[-0.712210,0.278268,0.644398],[-0.783044,0.259896,0.565020],[-0.609973,0.131077,0.781487],[-0.854030,0.200781,0.479904],[-0.925748,0.181829,0.331523],[-0.849757,0.272225,0.451399],[0.986602,0.101077,-0.127934],[0.990966,-0.097659,-0.091586],[0.977416,0.000641,-0.211310],[0.509262,-0.011170,0.860530],[0.421766,-0.161565,0.892178],[0.487747,-0.053865,0.871303],[-0.538682,0.795038,0.278695],[-0.976348,-0.197790,0.087191],[-0.965392,0.257363,0.041932],[-0.993011,-0.117069,-0.014557],[0.598865,-0.412336,-0.686514],[0.320048,-0.329539,-0.888211],[-0.891903,-0.076601,0.445662],[-0.817103,-0.155919,0.554979],[-0.713706,0.080020,0.695822],[0.160833,0.965911,-0.202704],[0.443220,-0.019959,-0.896176],[0.535112,-0.177587,-0.825892],[0.547655,-0.016816,-0.836512],[0.549120,0.511399,0.660970],[0.503281,0.583270,0.637562],[0.460952,0.616596,0.638203],[0.969848,-0.084597,0.228431],[0.934507,-0.157628,0.319102],[0.951262,-0.096194,0.292917],[-0.997589,0.023774,0.065035],[-0.966491,-0.172002,0.190466],[-0.982055,0.075076,0.172979],[0.046999,0.150884,-0.987426],[0.068850,0.404675,-0.911863],[-0.870052,0.008545,0.492874],[-0.521958,0.823695,0.221442],[-0.681326,0.726310,0.090793],[-0.857112,-0.121616,-0.500534],[-0.701682,0.007141,-0.712424],[-0.561724,-0.119572,-0.818598],[-0.458419,-0.316813,-0.830317],[0.027741,-0.182562,-0.982788],[-0.110935,-0.270333,-0.956328],[-0.232459,-0.584582,0.777306],[-0.481216,-0.250984,0.839869],[-0.412305,-0.448134,0.793176],[-0.917966,-0.272103,-0.288522],[-0.930113,-0.181646,-0.319163],[-0.933775,-0.272530,-0.231819],[0.335643,0.579089,0.742943],[0.376843,0.702445,0.603748],[0.459029,0.652394,0.602985],[-0.899106,0.205695,0.386334],[-0.669851,-0.314158,-0.672719],[-0.715873,-0.309915,-0.625660],[0.193457,0.491073,-0.849330],[0.151341,0.426099,-0.891903],[0.168554,0.507645,-0.844905],[0.289163,-0.150395,-0.945372],[-0.075869,-0.453078,-0.888211],[0.311106,-0.332224,-0.890378],[0.414655,0.019379,0.909757],[0.403882,0.083010,0.911008],[0.442671,0.030274,0.896146],[-0.338450,0.055147,-0.939360],[-0.694693,-0.447615,-0.563036],[-0.553575,-0.471480,-0.686422],[-0.608692,-0.403211,-0.683279],[0.502182,0.428632,0.750999],[0.539018,0.404614,0.738731],[-0.885495,-0.423566,-0.190924],[-0.910367,-0.231513,-0.342875],[-0.376293,-0.290658,-0.879696],[-0.405164,-0.286416,-0.868191],[-0.698874,0.559130,-0.445998],[-0.769189,0.570940,-0.286935],[0.917966,-0.297067,0.262734],[0.878140,-0.128849,0.460677],[0.926847,0.115329,0.357250],[0.128758,0.024293,-0.991363],[0.580706,-0.136662,-0.802515],[0.542375,-0.259163,-0.799127],[0.261666,0.964812,-0.024812],[0.348857,0.937162,0.000641],[0.192999,0.980804,-0.026948],[0.873989,0.057863,0.482406],[0.868374,0.044801,0.493851],[-0.249580,0.739372,-0.625294],[-0.456099,0.785913,-0.417432],[-0.352519,0.812922,-0.463515],[0.765191,0.204291,0.610462],[0.265877,0.052492,0.962554],[0.253365,0.346843,0.903043],[0.223640,-0.255318,-0.940611],[0.226081,-0.397015,-0.889492],[0.283670,-0.141972,-0.948332],[0.188452,-0.422620,-0.886471],[0.100192,0.036531,-0.994293],[0.105899,0.085055,-0.990722],[0.054842,0.951231,0.303507],[-0.047029,-0.158330,-0.986236],[-0.343303,-0.492935,0.799463],[-0.371807,-0.700613,0.608997],[-0.448592,-0.627979,0.635884],[-0.205359,0.475173,-0.855586],[-0.113102,0.421064,-0.899930],[-0.001740,0.392804,-0.919584],[-0.809107,0.237526,0.537461],[-0.896268,-0.332621,0.293283],[-0.956023,-0.101108,0.275216],[-0.920560,-0.096133,0.378552],[-0.894772,-0.138401,0.424482],[0.579669,0.160558,0.798853],[0.738395,-0.015168,0.674154],[0.692740,0.055025,0.719047],[0.810022,0.416059,0.413160],[0.673757,0.627979,0.389386],[0.846034,0.374004,0.379833],[0.445357,0.513779,0.733238],[0.577136,0.533860,0.617939],[0.567766,0.369457,0.735588],[-0.835353,0.435804,-0.335002],[-0.925626,0.212043,-0.313425],[-0.969512,0.180822,-0.165319],[0.219642,0.507736,-0.833033],[0.049593,0.287301,-0.956542],[-0.114719,0.373486,-0.920499],[-0.065218,-0.181951,-0.981140],[-0.881924,-0.087649,-0.463118],[-0.762627,-0.040986,-0.645497],[-0.840358,-0.047975,-0.539872],[-0.976379,0.096286,0.193274],[0.906461,0.204718,-0.369304],[0.919309,0.252968,-0.301370],[0.950591,0.147099,-0.273263],[0.023896,0.202216,0.979034],[0.184790,0.212622,0.959471],[0.115177,0.176489,0.977508],[0.156102,-0.178686,0.971435],[-0.052004,0.068209,0.996307],[-0.009156,0.173711,0.984741],[0.200354,0.430921,0.879849],[0.257851,0.303781,0.917173],[0.707083,0.472060,0.526414],[0.713370,0.494003,0.497024],[-0.646687,-0.215583,-0.731620],[-0.673635,-0.192206,-0.713614],[-0.717429,-0.163244,-0.677175],[0.714133,0.498459,0.491440],[0.672842,0.619404,0.404431],[0.896359,-0.259529,0.359355],[0.966735,-0.136814,-0.216071],[0.926664,-0.129002,0.353008],[-0.344584,0.930113,0.126804],[-0.166478,0.962889,0.212409],[0.463210,-0.270425,0.843959],[0.334056,-0.446028,0.830317],[0.692221,-0.110935,0.713095],[0.826258,0.409803,0.386395],[0.809839,0.352458,0.468947],[-0.076846,-0.297922,0.951476],[-0.321848,-0.157537,0.933561],[-0.471480,-0.072695,0.878842],[0.593677,-0.216987,0.774865],[0.840846,-0.091769,0.533403],[0.810877,-0.317759,0.491379],[-0.821619,-0.177557,0.541642],[0.070528,0.915891,-0.395093],[-0.199011,0.915159,-0.350475],[0.104709,0.953215,-0.283486],[0.918760,0.130894,0.372417],[0.938383,0.043428,0.342784],[0.872341,-0.070040,0.483840],[0.049562,0.413953,0.908933],[0.021729,0.330668,0.943480],[-0.183447,0.398267,0.898709],[0.907529,0.088229,-0.410535],[0.905545,0.261177,-0.334239],[0.836695,0.229286,-0.497330],[-0.595233,-0.275063,-0.754967],[-0.722953,-0.328562,-0.607715],[-0.644032,-0.157018,-0.748680],[0.277566,-0.220832,-0.934965],[0.220313,-0.387524,-0.895138],[0.338786,-0.322733,-0.883755],[-0.961394,0.257393,0.097079],[-0.978515,0.201147,0.045106],[-0.939024,0.337413,-0.066134],[0.083041,-0.306253,0.948302],[0.215979,-0.060976,0.974456],[0.029725,-0.321299,0.946501],[0.391247,0.620685,0.679403],[0.433424,0.591235,0.680105],[0.530412,0.801904,-0.274972],[0.464156,0.849239,-0.251625],[0.613300,0.725578,-0.312021],[-0.541246,0.461043,0.703177],[-0.458571,0.375866,0.805231],[-0.482131,0.434187,0.760918],[-0.409406,0.463607,-0.785760],[-0.447859,0.544389,-0.709250],[-0.157323,0.667287,-0.727989],[-0.248024,-0.399213,-0.882656],[-0.151646,-0.493393,-0.856441],[-0.057253,-0.260292,-0.963805],[-0.496719,-0.198157,-0.844966],[-0.232765,-0.319285,-0.918607],[-0.478683,-0.171697,-0.861019],[0.248726,0.483169,0.839442],[0.803583,-0.594012,-0.036897],[0.776269,-0.629688,0.028565],[-0.734275,-0.211646,0.644978],[-0.569018,-0.344188,0.746788],[0.481246,-0.044496,0.875423],[0.430036,-0.068361,0.900204],[0.165960,-0.489334,-0.856136],[-0.390332,-0.525101,-0.756218],[-0.079958,-0.469069,-0.879513],[0.267953,-0.452498,0.850520],[0.336009,-0.484176,0.807855],[0.425550,-0.370403,-0.825617],[0.609027,-0.407575,-0.680380],[0.633290,-0.391369,-0.667623],[0.121677,0.699820,0.703848],[-0.637928,-0.218940,0.738304],[-0.690573,-0.435377,0.577502],[-0.547349,-0.377667,0.746788],[-0.720206,-0.693075,-0.030152],[-0.757591,-0.630421,-0.169103],[-0.697226,0.007447,-0.716788],[-0.632832,-0.052919,-0.772454],[0.398907,0.529435,0.748680],[0.419721,0.481704,0.769250],[0.765770,0.396649,0.506180],[0.069460,0.707724,-0.703024],[0.311472,0.577013,-0.754997],[0.112308,0.803430,-0.584674],[0.267037,0.945158,0.187964],[0.215430,0.963347,0.159642],[0.122013,0.980438,0.154302],[0.061434,0.992218,0.108249],[-0.130528,0.963195,0.234901],[-0.110324,0.971496,0.209693],[0.216956,-0.949034,-0.228553],[-0.022248,-0.921110,-0.388592],[0.088778,-0.937162,-0.337321],[0.974700,0.172704,0.141758],[0.945616,0.147038,0.290139],[0.998657,-0.017670,0.048524],[0.238075,-0.815149,0.528031],[-0.335124,-0.640156,0.691275],[-0.018616,-0.337413,0.941160],[-0.230232,-0.510056,0.828730],[-0.266427,-0.431562,0.861812],[-0.171545,-0.312632,0.934233],[-0.077822,0.094119,-0.992492],[0.249153,0.136082,-0.958831],[-0.000610,-0.102481,-0.994720],[-0.599170,0.071230,0.797418],[-0.623127,0.039369,0.781121],[-0.672719,-0.044801,0.738517],[0.242836,0.946165,0.213843],[0.406476,0.885342,0.225623],[0.431654,0.878048,0.206580],[-0.040620,0.665395,-0.745354],[0.150487,0.647450,-0.747063],[0.103916,0.646596,-0.755699],[-0.921751,-0.271798,-0.276559],[-0.985229,-0.167302,-0.036103],[-0.953337,-0.301645,0.010529],[-0.928434,-0.364818,0.069826],[0.169195,-0.250435,-0.953215],[-0.072054,-0.230934,-0.970275],[0.098422,-0.405225,0.908872],[-0.573565,-0.495712,-0.652120],[-0.631642,-0.481307,-0.607746],[-0.658315,0.730766,0.180517],[-0.578509,0.788598,0.208380],[-0.034242,0.253761,-0.966643],[-0.125187,0.318247,-0.939695],[-0.012879,0.309915,-0.950652],[0.918516,0.053163,0.391766],[0.939756,-0.207434,0.271676],[-0.899350,-0.432325,-0.064882],[0.173132,-0.896084,-0.408643],[0.072939,-0.934996,-0.347026],[0.057344,0.538224,-0.840815],[0.093875,0.375103,-0.922178],[0.164006,0.397961,-0.902585],[0.760460,-0.194891,0.619404],[0.882931,-0.091250,0.460494],[-0.775018,0.483108,0.407300],[-0.621052,0.288217,0.728813],[-0.066317,0.954070,-0.292123],[-0.225837,0.917844,-0.326365],[-0.154485,0.980499,-0.121220],[-0.753685,0.294900,-0.587329],[-0.769280,0.398389,-0.499466],[-0.837794,0.342601,-0.425092],[-0.406842,0.722343,-0.559130],[-0.306406,0.772790,-0.555742],[-0.253090,0.794031,-0.552629],[-0.856746,-0.342509,-0.385540],[-0.496841,-0.319102,-0.807031],[-0.438734,-0.261879,-0.859584],[0.309580,0.749352,0.585315],[0.403699,0.780816,0.476760],[0.435743,0.749382,0.498489],[-0.196173,0.320719,0.926633],[-0.451247,0.285470,0.845485],[0.160710,0.520981,-0.838282],[0.460891,0.329173,-0.824122],[0.315195,0.492264,-0.811335],[0.410993,0.277291,0.868435],[0.331797,0.471236,0.817194],[-0.860866,0.205176,0.465590],[-0.926023,0.069460,0.370952],[-0.855617,0.094058,0.508927],[0.080599,-0.076327,0.993805],[0.051210,-0.488266,-0.871181],[0.080599,-0.299753,-0.950591],[-0.036134,-0.367656,-0.929228],[0.192236,0.218177,-0.956786],[-0.061037,0.298166,-0.952544],[0.047975,0.194647,-0.979675],[-0.604144,0.072451,-0.793542],[-0.526383,0.047914,-0.848872],[-0.525895,-0.370678,-0.765496],[-0.334330,-0.318461,-0.886990],[-0.778924,-0.332347,-0.531754],[0.095248,0.053102,-0.994018],[-0.276803,-0.007782,-0.960875],[-0.037263,-0.009430,-0.999237],[-0.654775,0.755699,0.012421],[-0.754631,0.654469,0.046541],[-0.561541,0.818659,0.120029],[-0.712455,-0.313791,-0.627613],[-0.770684,-0.240059,-0.590228],[-0.773675,-0.363536,-0.518876],[0.652211,0.430342,0.624012],[0.651143,0.273934,0.707755],[0.482376,0.234077,0.844081],[-0.456862,-0.501511,0.734642],[-0.688131,0.154180,0.709006],[-0.045167,-0.299203,-0.953093],[-0.108249,-0.216895,-0.970153],[-0.192267,-0.294809,-0.936003],[0.896664,0.164098,0.411145],[0.694662,0.089572,0.713706],[0.806421,0.246406,0.537522],[0.148381,-0.165380,-0.974975],[0.256966,-0.167974,-0.951689],[0.259987,-0.193396,-0.946013],[-0.186468,-0.215857,-0.958434],[0.447249,-0.414411,-0.792596],[0.459487,-0.414167,-0.785668],[-0.501846,0.239051,0.831233],[-0.402570,0.297433,0.865688],[-0.461257,0.188513,0.866970],[-0.370098,-0.914518,-0.163213],[0.475234,0.713187,0.515213],[0.714743,0.555345,0.425062],[0.068667,0.205176,-0.976287],[-0.060244,0.080782,-0.994903],[-0.273568,0.061312,-0.959868],[-0.657308,-0.339793,-0.672628],[-0.331431,-0.337107,-0.881161],[-0.093173,-0.517960,-0.850307],[-0.060121,-0.477493,-0.876553],[-0.473800,-0.437117,0.764458],[-0.474136,-0.547563,0.689413],[0.369823,-0.305734,-0.877346],[0.168249,-0.406537,-0.897977],[0.384228,-0.396985,-0.833491],[-0.917386,-0.065737,-0.392468],[-0.957823,-0.119083,-0.261422],[-0.626820,-0.368328,-0.686605],[-0.393109,-0.460280,-0.795953],[-0.528031,-0.417432,-0.739525],[-0.132328,0.906186,-0.401624],[-0.638905,0.280404,0.716330],[-0.963225,0.007019,0.268532],[-0.627888,0.514267,0.584155],[0.242775,-0.222175,-0.944273],[-0.330149,-0.335978,-0.882077],[0.264595,-0.450179,0.852809],[-0.051943,-0.490066,0.870113],[0.463485,-0.155217,0.872372],[0.582141,-0.201575,-0.787652],[0.622578,-0.243538,-0.743675],[0.594226,-0.224250,-0.772393],[0.585009,-0.348888,0.732109],[0.548845,-0.247963,0.798273],[0.684408,-0.245491,0.686483],[-0.942717,-0.234474,0.237251],[0.151891,-0.424665,0.892483],[-0.314066,-0.423383,0.849727],[-0.045656,-0.593524,0.803491],[0.769585,0.253945,0.585803],[0.684591,0.496078,0.534043],[0.771172,0.214820,0.599261],[-0.496963,0.695364,-0.519059],[-0.060183,0.829341,-0.555437],[-0.289102,0.701804,-0.651051],[0.734764,0.288552,0.613849],[0.674398,0.104099,0.730949],[0.923368,0.015198,0.383557],[0.197729,0.972655,0.121769],[0.213507,0.970214,0.114200],[0.396893,0.917631,-0.019623],[0.953764,-0.285379,-0.094028],[0.890103,-0.448256,0.082125],[0.891842,-0.385113,0.237190],[0.688620,0.120853,0.714957],[0.790338,0.227332,0.568896],[-0.883847,-0.454970,0.108463],[-0.880612,-0.460707,0.110569],[-0.839381,-0.415754,0.350078],[0.518876,0.505783,0.689138],[0.310923,-0.232521,0.921537],[0.334422,-0.334056,0.881222],[-0.854213,0.100589,0.510056],[-0.527635,-0.097385,-0.843837],[-0.661702,-0.132664,-0.737907],[-0.593707,-0.143590,-0.791742],[0.515397,-0.009674,0.856868],[0.766350,-0.191809,0.613086],[0.737144,0.011444,0.675619],[0.008148,-0.001404,-0.999939],[-0.015687,0.091922,-0.995636],[-0.003662,-0.024842,-0.999664],[-0.201453,0.419202,0.885220],[-0.420362,0.897916,0.130436],[-0.419233,0.894375,0.155797],[-0.275735,0.957427,0.085177],[0.980895,-0.181066,-0.070986],[0.982269,-0.100558,-0.158116],[-0.074618,0.179510,-0.980895],[-0.114902,0.130100,-0.984802],[-0.384014,-0.252693,0.888058],[-0.457717,-0.079989,0.885464],[-0.259682,-0.133091,0.956450],[-0.690603,0.604572,-0.396893],[-0.763726,0.479110,-0.432569],[-0.753075,0.580584,-0.309397],[0.660298,0.445601,0.604480],[0.439680,0.889462,-0.124393],[0.120396,0.971099,0.205969],[0.292825,0.868129,-0.400739],[0.558794,0.567583,0.604602],[0.695364,0.444288,0.564806],[0.553087,0.475692,0.683950],[0.737114,0.452223,0.502121],[0.629536,0.226539,0.743187],[0.935545,-0.077792,0.344493],[0.282235,-0.096347,-0.954466],[0.153020,-0.019623,-0.988006],[0.380352,-0.105136,-0.918821],[0.522294,0.104434,-0.846339],[-0.134495,-0.060671,-0.989044],[-0.366863,0.275155,-0.888638],[0.893948,0.077517,0.441328],[0.897183,-0.201910,0.392743],[0.909238,-0.127476,0.396222],[-0.582751,-0.200903,-0.787408],[-0.627491,-0.481643,-0.611744],[-0.801233,-0.008789,-0.598224],[0.367870,0.070833,0.927152],[0.508652,0.285745,0.812128],[0.369823,0.070742,0.926389],[-0.814508,0.111026,-0.569414],[-0.584735,0.031129,-0.810602],[-0.712851,0.030213,-0.700613],[0.333323,0.928251,0.164953],[0.332102,0.932890,0.139134],[0.415082,0.903348,0.107913],[-0.931150,-0.246834,-0.268319],[-0.868068,-0.365429,-0.335948],[-0.940092,-0.340251,-0.020783],[-0.930631,-0.334697,0.147801],[0.092166,-0.250954,-0.963591],[0.218024,-0.366436,-0.904508],[0.263802,0.244148,-0.933134],[0.034272,0.178259,-0.983367],[-0.154637,0.343638,-0.926267],[0.873379,-0.293863,-0.388318],[0.872433,-0.346629,-0.344432],[0.935453,-0.327311,-0.133213],[0.915220,-0.188543,0.356059],[0.752708,-0.642750,-0.142308],[0.073458,-0.651875,0.754753],[0.224647,-0.439314,0.869778],[0.528886,0.839259,0.125950],[0.698782,0.697012,0.160649],[0.545030,0.819453,0.177190],[0.936125,-0.349712,0.036714],[0.811670,-0.394971,0.430250],[0.912473,-0.408734,-0.017182],[0.399487,0.909268,0.116672],[0.578265,0.791742,0.196722],[0.600696,0.791864,0.109745],[-0.054903,-0.469131,-0.881405],[0.138798,-0.453688,-0.880245],[-0.598529,-0.249733,-0.761162],[-0.697409,-0.279092,-0.660054],[-0.726341,-0.356426,-0.587634],[-0.428632,-0.570299,-0.700674],[-0.506882,-0.419416,-0.753044],[-0.556078,-0.551988,-0.621326],[0.218970,0.967589,0.125523],[0.578051,0.804407,0.136753],[0.401624,0.913297,0.067385],[0.578845,-0.247169,0.777062],[0.510117,-0.143193,0.848079],[0.676962,-0.260414,0.688375],[0.192083,0.020875,-0.981140],[-0.002167,0.111972,-0.993683],[0.096652,0.093753,-0.990875],[0.494217,0.833369,-0.247322],[0.367687,0.875240,-0.314158],[0.675222,-0.213569,-0.705985],[0.567156,-0.367718,-0.736930],[0.347148,-0.366924,-0.863033],[-0.202307,0.457961,-0.865627],[-0.258980,0.409284,-0.874844],[-0.051454,0.549547,-0.833857],[0.022034,0.282052,-0.959136],[-0.132054,0.264840,-0.955199],[0.004517,0.214606,-0.976684],[0.355480,0.268380,-0.895291],[0.269814,0.289529,-0.918332],[0.682638,-0.730705,-0.005036],[0.712790,-0.699271,0.053865],[0.068300,0.568468,-0.819819],[-0.021119,0.477981,-0.878109],[0.187872,0.576189,-0.795404],[0.354015,0.927335,0.121250],[0.402631,0.893887,0.196936],[0.463393,0.859462,0.215735],[0.927061,-0.008301,0.374767],[0.778222,0.464675,0.422346],[0.746391,-0.025269,0.664968],[-0.955412,0.273751,0.110416],[-0.923856,0.368023,0.104923],[-0.970153,0.241554,0.020600],[0.920835,0.158391,0.356273],[0.923063,0.157170,0.351024],[0.820002,0.374065,0.433180],[0.530320,-0.726249,0.437330],[0.019471,-0.324412,-0.945708],[0.049318,-0.402905,-0.913877],[-0.874050,0.302866,0.379833],[-0.516648,0.107974,0.849330],[-0.465224,0.216376,0.858333],[-0.506455,0.013398,0.862148],[-0.934843,0.345256,0.082705],[0.115879,-0.207007,-0.971435],[0.095401,-0.164434,-0.981750],[0.089908,-0.284524,-0.954436],[-0.710959,0.354320,0.607410],[-0.819147,0.458022,0.345195],[-0.183935,0.226722,0.956420],[-0.269021,0.300943,0.914884],[-0.163640,0.224281,0.960662],[0.739677,-0.142766,-0.657613],[0.855037,0.144780,0.497909],[0.851405,0.087161,0.517167],[0.832362,0.155095,0.532029],[-0.554308,0.211097,0.805048],[-0.954527,-0.263497,-0.139225],[-0.926603,-0.361492,-0.103488],[-0.287667,-0.211219,-0.934111],[-0.408185,-0.321574,-0.854366],[-0.419752,-0.233589,-0.877041],[0.414045,-0.157994,0.896420],[-0.041658,0.833918,0.550249],[-0.212378,0.971068,0.109043],[0.059481,0.808740,0.585101],[-0.880978,0.279916,0.381420],[-0.912687,0.263100,0.312601],[-0.873501,0.311869,0.373730],[-0.767541,-0.159337,-0.620838],[-0.855800,-0.469161,-0.217780],[-0.844997,-0.048006,-0.532579],[-0.752892,-0.258858,-0.605060],[-0.762017,-0.416974,-0.495376],[-0.648976,-0.261940,-0.714255],[-0.308359,0.590350,-0.745903],[0.826594,-0.476211,-0.299875],[0.914090,-0.369304,-0.167455],[0.837428,-0.368053,-0.404004],[0.510544,0.832392,0.215491],[0.329966,0.910337,0.249672],[0.447188,0.848506,0.282815],[-0.908078,-0.414594,0.058962],[-0.883389,-0.389355,0.260781],[-0.734245,-0.672140,-0.095218],[-0.624104,-0.224555,-0.748344],[-0.654317,-0.152837,-0.740562],[0.685415,-0.253487,-0.682577],[0.759362,-0.277108,-0.588672],[0.822291,-0.269814,-0.500992],[-0.510880,-0.443342,-0.736473],[-0.791406,0.554857,0.256478],[-0.832087,0.358135,0.423475],[-0.870235,0.453108,0.193213],[-0.963103,0.151463,0.222358],[-0.976043,0.032380,0.215094],[-0.956847,0.271645,0.103061],[-0.936827,0.264534,0.228736],[-0.938200,0.189856,0.289346],[-0.896664,0.222968,0.382427],[0.279977,-0.009461,0.959929],[0.373791,-0.000946,0.927488],[0.252815,0.007111,0.967467],[0.380413,0.525925,0.760674],[0.377453,0.573870,0.726737],[0.375988,0.542070,0.751488],[0.010926,0.729728,-0.683615],[0.101382,0.804590,-0.585070],[-0.029756,0.743797,-0.667684],[-0.768090,-0.156163,-0.620960],[-0.825129,-0.365734,-0.430525],[-0.608966,0.420423,0.672567],[-0.786462,0.250435,0.564531],[-0.581927,0.439283,0.684347],[0.546434,0.658193,-0.517808],[0.430555,0.808405,-0.401318],[0.559954,0.632252,-0.535386],[-0.439222,0.880581,0.177770],[-0.424909,0.882077,0.203345],[-0.457198,0.869747,0.185614],[-0.339732,0.190283,0.921049],[0.191565,0.550981,0.812220],[0.168401,0.509232,0.843959],[-0.474380,-0.740501,0.475997],[0.057283,0.231666,-0.971099],[0.008240,0.164129,-0.986389],[-0.071108,0.231574,-0.970183],[-0.119663,-0.365429,-0.923093],[-0.144597,-0.313456,-0.938505],[0.101535,-0.315134,-0.943571],[-0.680288,-0.410260,0.607349],[-0.489914,-0.075320,0.868496],[-0.922422,-0.347606,0.168035],[-0.912198,-0.334422,0.236671],[0.975677,-0.088565,-0.200476],[0.997345,0.011170,-0.071535],[0.903317,0.024903,-0.428205],[-0.931578,-0.352245,0.089572],[-0.986175,-0.160802,0.039705],[0.364422,0.008728,0.931181],[0.376568,-0.415967,0.827723],[-0.551408,-0.420759,-0.720328],[-0.354625,-0.225135,-0.907468],[-0.024476,0.760369,-0.649007],[0.045869,0.717643,-0.694845],[0.037111,0.625263,-0.779504],[0.099429,0.617939,-0.779870],[0.613819,0.764489,0.196783],[0.581713,0.777551,0.238746],[0.589984,0.718070,0.369121],[0.473281,-0.256020,0.842860],[0.433851,-0.359142,0.826289],[0.535234,-0.140843,0.832850],[0.099338,0.266030,-0.958800],[0.134953,0.160314,-0.977783],[0.266671,0.284738,-0.920743],[0.384411,0.887753,0.253182],[0.492904,0.833216,0.250435],[0.219398,0.966124,0.135716],[-0.165532,0.924528,-0.343211],[-0.102939,0.935911,-0.336802],[-0.206366,0.944762,-0.254585],[-0.211158,0.802301,-0.558275],[0.071688,0.784906,-0.615406],[-0.160375,0.833277,-0.529069],[0.387860,-0.700156,0.599414],[-0.435163,-0.010956,0.900266],[-0.611652,-0.095431,0.785333],[-0.454451,0.025269,0.890378],[0.233680,-0.054262,-0.970763],[0.236213,-0.028962,-0.971252],[0.826624,0.126926,0.548235],[0.804559,-0.032777,0.592944],[0.844447,0.082186,0.529252],[0.755577,-0.276284,-0.593890],[0.736625,-0.230415,-0.635792],[0.888607,-0.396130,0.231117],[0.867397,-0.439375,0.233528],[0.922636,-0.338206,0.185186],[-0.959105,-0.280679,0.036134],[-0.956877,-0.282785,0.066225],[-0.958220,-0.285745,0.010407],[-0.204138,0.092807,-0.974517],[-0.921751,-0.330241,0.203131],[-0.900510,-0.395276,0.181127],[0.659627,0.579516,-0.478530],[0.693503,0.662526,-0.282937],[0.633839,0.634693,-0.442030],[-0.269356,0.901059,0.339824],[0.243324,0.969665,0.022553],[0.304636,0.913022,0.271187],[0.282998,0.949736,0.133702],[-0.156163,0.190954,-0.969085],[-0.269295,-0.140568,-0.952727],[-0.274483,0.044832,-0.960509],[-0.085757,-0.912870,0.399091],[0.066744,-0.920835,0.384136],[-0.039491,-0.843654,0.535386],[-0.943968,0.279275,-0.175787],[0.244911,-0.462783,-0.851924],[0.155889,-0.553484,-0.818110],[-0.522233,0.195349,0.830103],[0.114841,-0.134678,-0.984191],[0.988403,0.054323,0.141606],[0.944517,-0.116306,0.307108],[0.930143,-0.164708,0.328104],[0.851680,-0.054109,-0.521195],[0.690023,-0.060274,-0.721244],[0.800409,-0.075259,-0.594653],[-0.980010,-0.049165,0.192633],[-0.984069,-0.003540,0.177618],[0.189489,-0.438429,0.878536],[0.164006,-0.223823,0.960723],[0.040651,0.274361,-0.960753],[-0.095340,0.464370,-0.880459],[-0.183966,0.252754,-0.949858],[0.010651,0.282754,-0.959105],[-0.069063,0.299448,-0.951598],[-0.005921,0.270516,-0.962676],[-0.646840,0.273354,0.711905],[-0.422468,0.142247,0.895108],[-0.344127,0.358928,0.867580],[-0.660237,-0.496261,-0.563707],[-0.037355,0.782586,-0.621387],[0.074404,0.768578,-0.635365],[0.265542,0.697287,-0.665761],[0.162511,-0.933866,-0.318461],[-0.266488,0.299722,0.916013],[-0.308786,0.397748,0.863948],[-0.103092,-0.327128,0.939329],[-0.248634,-0.339976,-0.906949],[-0.094028,-0.299264,-0.949492],[-0.180853,-0.219855,-0.958617],[0.087039,-0.383251,-0.919523],[0.005890,-0.334117,-0.942503],[-0.229804,-0.418348,-0.878719],[0.602954,-0.468642,0.645589],[0.393048,-0.499008,0.772301],[0.304880,-0.691427,0.654927],[0.914396,0.087252,0.395245],[0.952330,-0.077639,0.294992],[0.956908,0.087191,0.276925],[-0.031404,0.976257,0.214270],[0.130222,0.971709,0.196997],[0.320627,0.944548,0.070620],[-0.071596,0.900266,-0.429365],[-0.086917,0.900601,-0.425794],[-0.429945,0.787164,-0.442122],[0.409314,-0.143925,0.900937],[0.446669,-0.074374,0.891568],[0.023560,0.730888,-0.682089],[-0.005615,0.792230,-0.610157],[0.602374,0.681783,-0.415052],[0.528275,0.664144,-0.528947],[0.540788,0.622059,-0.566179],[0.653279,0.569475,-0.498856],[0.311716,0.798242,-0.515366],[0.482253,0.658895,-0.577258],[0.388653,0.886349,0.251534],[0.191473,0.760857,0.619983],[0.369335,0.624348,0.688284],[0.522996,0.747307,0.409803],[0.234413,-0.384411,0.892880],[0.077090,-0.212165,0.974181],[0.581011,-0.144078,0.801019],[0.727500,-0.671285,0.141697],[0.687521,-0.688833,0.229713],[-0.292947,-0.062227,-0.954070],[-0.388653,-0.072237,-0.918516],[-0.023865,0.010010,-0.999664],[-0.921384,-0.159551,-0.354350],[-0.782647,-0.168523,-0.599170],[-0.905698,-0.304758,-0.294626],[0.029969,-0.189062,-0.981475],[0.004639,-0.214820,-0.976623],[0.206702,-0.214118,-0.954680],[-0.448012,-0.352855,-0.821436],[-0.466140,-0.389447,-0.794336],[-0.539354,-0.484115,-0.688955],[-0.957091,-0.287667,0.034181],[-0.947966,-0.313425,0.055422],[-0.972228,-0.190130,0.136235],[-0.000092,-0.148350,-0.988922],[0.985168,-0.169500,0.025788],[0.974242,-0.181219,0.134159],[-0.825343,-0.032075,-0.563707],[-0.999390,0.029267,-0.018464],[-0.967467,-0.183508,0.174078],[0.550584,0.116916,0.826502],[0.659505,0.153905,0.735740],[0.634907,0.296701,0.713309],[-0.084780,0.165624,-0.982513],[-0.947813,-0.294656,0.121525],[-0.955290,-0.280404,0.093448],[-0.961364,-0.259499,0.091739],[-0.957762,-0.137944,0.252266],[-0.977081,-0.193152,0.089236],[-0.013733,-0.466994,-0.884121],[0.009980,-0.548479,-0.836085],[-0.161534,-0.401166,-0.901639],[-0.131108,0.170598,-0.976562],[-0.171239,0.220099,-0.960295],[-0.121403,0.287027,-0.950163],[0.203436,0.218818,-0.954283],[0.943205,0.032777,0.330576],[0.879910,0.106571,0.462996],[0.917447,-0.092196,0.387005],[-0.375683,0.154790,0.913724],[-0.406110,0.237800,0.882321],[-0.313303,0.179937,0.932432],[-0.347362,-0.339335,0.874142],[-0.195654,-0.629353,0.752037],[-0.213935,-0.875332,0.433546],[0.309397,0.450758,-0.837275],[0.234657,0.630696,-0.739677],[0.289804,0.591205,-0.752617],[0.975768,-0.218574,-0.007538],[0.021973,0.468398,-0.883236],[0.144810,0.471328,-0.869961],[0.109287,0.497787,-0.860347],[-0.936247,-0.078097,0.342540],[-0.963225,0.058046,0.262307],[-0.946532,0.033906,0.320811],[0.391736,-0.803949,0.447371],[-0.220374,-0.338267,0.914853],[-0.339732,-0.232002,0.911435],[-0.941099,0.154454,0.300729],[-0.854946,0.312693,0.413831],[-0.933103,0.158147,0.322886],[0.111118,0.989898,0.087741],[-0.016144,0.998871,0.044527],[-0.008423,0.962493,0.271126],[-0.199164,0.319681,-0.926328],[-0.171850,0.274209,-0.946165],[-0.963378,-0.111118,0.243965],[-0.976867,0.022156,0.212622],[-0.968200,-0.147710,0.201880],[0.594165,-0.073489,-0.800928],[-0.825617,-0.404706,-0.393109],[0.939329,-0.040590,0.340587],[-0.735588,0.670003,0.099948],[0.888730,0.389843,0.241066],[0.946532,0.226814,0.229316],[0.950926,0.209723,0.227363],[0.903958,-0.268349,-0.332865],[0.838252,-0.318735,-0.442366],[0.831568,-0.377392,-0.407483],[-0.004822,0.289163,-0.957244],[-0.423444,-0.099307,-0.900449],[-0.363262,0.032868,-0.931089],[-0.087954,-0.085940,-0.992401],[0.773553,-0.207617,0.598712],[0.557817,-0.039369,0.829005],[0.768395,-0.486648,-0.415571],[0.686666,-0.535203,-0.491958],[0.063204,-0.019990,-0.997772],[0.864772,0.022340,-0.501602],[0.923826,-0.055269,-0.378765],[0.910184,-0.156896,-0.383282],[0.046480,0.225776,-0.973052],[0.173681,0.419019,-0.891171],[0.257179,0.267678,-0.928526],[0.166204,-0.197760,-0.966033],[-0.016114,-0.103214,-0.994507],[0.861873,0.172674,0.476791],[0.801508,0.207770,0.560686],[0.749931,0.072054,0.657552],[0.356670,0.855251,-0.375866],[0.227393,0.853450,-0.468917],[-0.482040,-0.330119,-0.811548],[-0.461806,-0.378063,-0.802332],[-0.260781,-0.439314,-0.859615],[-0.427198,0.901944,0.062777],[-0.309214,0.945402,0.102603],[0.877468,0.310953,0.365123],[0.786431,0.439711,0.433729],[0.545946,0.816950,0.185705],[0.687582,0.684408,0.242439],[0.689749,0.716697,0.102695],[0.351909,0.930174,0.104373],[0.368511,0.928709,0.040590],[0.338115,0.940031,0.044160],[-0.769066,-0.294717,0.567125],[-0.606616,-0.123447,0.785333],[-0.694296,-0.349467,0.629109],[0.464553,-0.875484,-0.132969],[0.144017,-0.989074,-0.030915],[0.567400,-0.821711,0.053102],[0.480728,0.863155,0.154271],[0.337931,0.941130,0.002747],[0.388348,0.918302,0.076785],[-0.075838,0.026032,-0.996765],[-0.083834,-0.068911,-0.994079],[-0.101749,-0.099521,-0.989807],[-0.366466,-0.027100,0.930021],[-0.256111,-0.245613,0.934904],[-0.374645,-0.047731,0.925901],[-0.241371,-0.128544,-0.961852],[-0.140172,0.019471,-0.989929],[-0.970031,0.185888,0.156377],[0.444441,0.880184,0.166448],[0.481491,0.871303,0.094607],[0.234107,0.944639,0.229774],[-0.309366,0.501846,-0.807703],[-0.281716,0.549913,-0.786218],[-0.362468,0.478408,-0.799829],[-0.356761,0.746605,-0.561480],[-0.065584,0.778069,-0.624714],[-0.075961,0.815638,-0.573504],[-0.522813,0.666982,-0.530778],[-0.327342,0.762871,-0.557512],[-0.454787,0.593249,-0.664235],[-0.904294,0.128208,0.407178],[-0.979430,-0.079958,0.185095],[-0.889676,-0.057161,0.452956],[-0.927824,-0.034333,0.371349],[-0.940428,0.114353,0.320139],[-0.949858,-0.074984,0.303507],[0.965056,-0.254646,0.061281],[0.972564,-0.228797,0.041383],[-0.882412,-0.088992,-0.461928],[-0.963408,0.112339,-0.243294],[-0.169622,-0.504929,-0.846309],[-0.279214,-0.537767,-0.795465],[-0.161992,-0.527787,-0.833766],[-0.310587,0.492111,-0.813227],[-0.118961,0.639912,-0.759148],[-0.165899,0.646718,-0.744438],[-0.494491,-0.098392,-0.863582],[-0.293435,0.803552,-0.517869],[-0.298502,0.801630,-0.517930],[0.970061,-0.001007,0.242836],[0.971038,-0.159978,0.177282],[0.891720,-0.114444,0.437819],[-0.165410,-0.253182,-0.953154],[-0.444472,-0.311899,-0.839717],[-0.209418,-0.198370,-0.957457],[0.993316,-0.016511,0.114078],[0.956633,0.281014,-0.076571],[-0.117313,0.783349,-0.610370],[-0.136570,0.681692,-0.718741],[-0.157781,0.841334,-0.516923],[-0.193884,0.840846,-0.505325],[-0.379162,-0.102756,-0.919584],[-0.361431,-0.144627,-0.921079],[-0.210822,-0.142979,-0.966979],[0.621784,-0.680563,0.387463],[0.757439,-0.235908,0.608753],[0.600848,-0.772790,0.204321],[-0.307443,0.850368,-0.426984],[-0.093692,0.855159,-0.509751],[-0.070315,0.885708,-0.458815],[-0.278390,0.919553,-0.277200],[-0.249489,0.878933,-0.406446],[0.350078,0.360576,0.864528],[0.892697,-0.048585,0.447981],[-0.925718,0.025666,-0.377331],[-0.937956,-0.072024,-0.339122],[-0.923154,-0.067965,-0.378338],[0.295602,0.895230,-0.333384],[0.319956,0.847835,-0.422803],[0.176519,0.890133,-0.420087],[0.996155,-0.087130,0.006409],[0.972991,-0.176672,-0.148503],[0.943876,-0.200476,0.262398],[-0.750877,-0.443129,-0.489639],[-0.720359,-0.335887,-0.606800],[-0.742729,-0.417341,-0.523545],[0.007508,-0.111057,0.993774],[0.101077,0.274392,-0.956267],[-0.190832,0.833522,-0.518448],[-0.017426,0.908628,-0.417188],[-0.083560,0.818964,-0.567675],[-0.111362,0.194830,-0.974487],[0.549272,0.229163,-0.803583],[-0.552721,-0.251930,0.794366],[-0.627430,-0.187597,0.755699],[-0.574328,-0.436720,0.692373],[-0.589068,0.766778,-0.254982],[-0.239143,0.934324,-0.264260],[-0.355846,0.893277,-0.274575],[0.135533,0.879757,-0.455672],[0.231727,0.883450,-0.407147],[0.086184,0.838191,-0.538499],[0.260567,-0.340770,0.903287],[-0.030213,-0.411328,0.910977],[0.195074,-0.393262,0.898465],[-0.567461,-0.252998,-0.783532],[-0.621113,-0.190100,-0.760277],[0.034486,0.322275,-0.945982],[0.075045,0.243141,-0.967071],[0.007599,0.968200,0.250038],[0.218268,0.975585,0.022980],[0.157140,0.976165,0.149602],[-0.457106,-0.288247,0.841395],[0.206580,-0.304880,0.929685],[-0.590991,0.788110,0.172002],[-0.470779,0.871456,0.137455],[0.066805,-0.298349,-0.952086],[0.123478,-0.189795,-0.973998],[0.282815,0.958617,0.032197],[0.037751,-0.902310,-0.429365],[-0.043123,-0.964599,-0.260109],[-0.743034,-0.279794,0.607898],[-0.607593,-0.216681,0.764092],[-0.758415,-0.277078,0.589923],[-0.577685,-0.465438,-0.670522],[-0.504593,-0.439833,-0.742882],[-0.314707,-0.516495,-0.796319],[-0.968078,0.173589,0.180761],[-0.945860,0.254707,0.201025],[-0.878964,0.183691,0.440046],[-0.817713,0.276772,0.504685],[-0.874172,0.205176,0.440107],[0.873165,0.285745,0.394848],[0.933195,0.206275,0.294229],[0.895047,0.309702,0.320811],[-0.831782,-0.171850,-0.527787],[0.648701,-0.365429,-0.667531],[0.560442,-0.222907,-0.797601],[0.282296,-0.307169,-0.908811],[0.350780,-0.739402,0.574633],[0.190710,-0.725730,0.661000],[0.443800,-0.600421,0.665181],[-0.905026,-0.164708,0.392102],[-0.894467,-0.211798,0.393689],[-0.935972,-0.107974,0.335093],[0.608814,0.118290,-0.784417],[0.608417,0.082919,0.789239],[0.593799,0.097903,0.798608],[-0.498337,0.842647,0.203925],[-0.423322,0.895108,0.139866],[-0.535447,0.812799,0.229377],[-0.416211,-0.105533,-0.903104],[-0.451369,-0.000458,-0.892300],[0.851863,0.494827,-0.171484],[0.718558,0.650960,-0.244697],[0.787347,0.546678,-0.284890],[-0.653340,-0.389111,-0.649373],[-0.563768,-0.435987,-0.701468],[0.601428,-0.240944,-0.761711],[0.649007,-0.250557,-0.718314],[0.757164,0.615772,0.217933],[0.557146,0.706931,0.435652],[0.791467,0.516343,0.327006],[-0.098514,-0.251198,-0.962889],[-0.082827,-0.297311,-0.951170],[0.452956,-0.085940,0.887356],[0.346751,-0.074984,0.934935],[0.874264,0.185583,0.448500],[0.862758,0.061617,0.501816],[0.890896,0.182379,0.415937],[0.237922,-0.033113,0.970702],[0.113834,0.042940,0.992553],[0.204352,-0.105319,0.973205],[-0.966399,-0.071474,0.246773],[-0.936308,-0.220496,0.273232],[-0.980895,-0.086123,0.174322],[-0.014222,0.314005,-0.949309],[-0.122562,0.162633,-0.979034],[-0.096927,0.234840,-0.967162],[-0.301584,-0.282754,-0.910520],[-0.307596,-0.380627,-0.872036],[0.623981,-0.438337,-0.646870],[0.617695,0.110233,-0.778619],[0.638508,0.108798,-0.761864],[0.633839,0.236732,-0.736320],[-0.041322,0.287729,-0.956816],[-0.704642,-0.205084,-0.679250],[-0.244881,0.041841,0.968627],[-0.172857,-0.063906,0.982849],[0.057711,-0.993011,0.102756],[0.183172,-0.976745,0.111148],[0.194250,-0.976928,0.088687],[-0.979400,-0.193152,0.058718],[0.579821,0.567980,0.584094],[0.388653,0.704245,0.594104],[0.401898,0.742241,0.536210],[-0.680410,-0.449843,-0.578478],[-0.723838,-0.422193,-0.545701],[0.129215,0.858699,0.495895],[0.115452,0.786065,0.607257],[0.154210,0.842738,0.515732],[0.048738,0.571459,0.819147],[0.153050,0.480270,0.863643],[-0.948912,0.179998,0.259102],[-0.853175,0.406201,0.327189],[-0.762047,0.632221,0.139683],[-0.341075,0.493545,0.800012],[0.439497,0.452589,0.775872],[0.533006,0.358562,0.766350],[-0.099002,-0.403211,-0.909696],[0.100620,-0.336375,-0.936308],[-0.193121,-0.320292,-0.927396],[0.270486,0.004608,-0.962706],[0.012848,-0.074892,-0.997101],[0.961943,0.058260,0.266884],[0.961303,0.078280,0.264046],[0.952452,0.022279,0.303812],[-0.269112,0.424238,-0.864620],[0.122074,0.462233,-0.878292],[0.246620,0.514237,-0.821406],[0.675893,-0.316782,0.665426],[0.761650,0.505234,0.405683],[0.727775,0.567919,0.384411],[0.663930,0.698721,0.266335],[-0.732170,0.458449,-0.503677],[-0.268899,0.082614,0.959593],[-0.188452,0.078799,0.978881],[-0.236702,0.123508,0.963683],[-0.907163,0.286477,0.308176],[-0.880856,0.338084,0.331278],[-0.988525,-0.138768,-0.059542],[-0.995514,-0.094577,-0.000671],[-0.990478,-0.118503,0.069613],[0.812891,-0.051881,0.580065],[0.911313,0.004639,0.411664],[0.993835,-0.088809,0.065889],[-0.949522,-0.196387,0.244575],[-0.964751,-0.108646,0.239570],[-0.969848,-0.062716,0.235450],[0.845607,0.006623,-0.533708],[0.852199,0.029542,-0.522324],[0.838069,0.285501,0.464827],[0.902127,-0.034822,0.429975],[0.926176,-0.161199,0.340861],[-0.998596,0.051302,-0.011353],[-0.968474,0.040559,-0.245705],[-0.989471,0.070986,-0.126041],[-0.968078,0.040559,-0.247230],[-0.765099,-0.544633,0.343455],[-0.233070,-0.969024,0.081454],[-0.612812,-0.784631,-0.093783],[0.246986,-0.295663,-0.922788],[-0.823359,0.345225,0.450392],[-0.925352,0.239174,0.294046],[-0.248756,0.743858,-0.620289],[-0.142918,0.833705,-0.533341],[-0.130589,-0.385296,0.913480],[0.095065,-0.543260,0.834162],[0.116703,0.670888,-0.732292],[0.134312,0.630787,-0.764214],[0.349498,0.482406,-0.803186],[0.248054,0.400128,-0.882229],[0.339976,0.349071,-0.873226],[-0.752098,0.046083,-0.657399],[-0.841090,0.027100,-0.540147],[-0.759239,0.085452,-0.645161],[-0.227790,-0.393994,-0.890408],[-0.578997,0.811975,0.073580],[-0.846583,0.531205,-0.032533],[-0.548936,0.674215,0.494034],[0.869686,-0.002503,0.493545],[0.735496,-0.167669,0.656423],[0.745354,0.421491,-0.516495],[0.618458,0.461379,-0.636097],[0.560472,0.471450,-0.680837],[-0.015961,0.691275,-0.722404],[0.824274,-0.378368,-0.421125],[0.799005,-0.234291,-0.553758],[-0.106662,-0.623554,0.774438],[-0.212867,-0.186010,0.959197],[-0.210486,-0.493149,0.844081],[-0.977874,0.021119,0.208045],[-0.985321,0.152898,0.075503],[-0.946410,0.109867,0.303690],[-0.123508,0.647267,-0.752159],[-0.972869,-0.223243,-0.060305],[-0.986267,-0.106998,-0.125675],[-0.930937,0.093173,0.353008],[-0.950285,0.146367,0.274758],[-0.927976,0.102847,0.358135],[0.249763,0.869808,0.425428],[-0.713279,-0.273965,-0.645070],[-0.710013,-0.507004,-0.488662],[0.724326,0.089084,0.683645],[0.674429,0.485397,-0.556322],[0.780084,0.421277,-0.462539],[0.498703,0.612690,-0.613086],[-0.628651,-0.772546,0.088900],[-0.505692,-0.824976,0.252297],[0.329447,-0.940855,-0.079073],[-0.275491,0.588824,-0.759819],[-0.291055,0.488876,-0.822321],[-0.242042,0.458174,-0.855251],[0.943480,-0.156438,0.292123],[0.942869,-0.253639,0.215827],[0.408887,0.015778,0.912442],[0.094546,-0.788903,0.607166],[-0.021973,-0.474502,0.879971],[-0.355358,0.042634,-0.933744],[0.677511,0.302225,0.670492],[0.647786,0.005066,0.761773],[0.365398,0.929289,0.053499],[0.243110,0.957915,0.152593],[0.380078,0.913663,0.144078],[0.144017,0.269814,-0.952055],[0.123936,0.215461,-0.968596],[-0.860164,0.160558,-0.484054],[-0.914731,-0.107669,-0.389386],[0.233131,0.282205,-0.930570],[0.243202,0.395734,-0.885556],[0.161412,-0.360515,-0.918668],[0.070711,-0.286691,-0.955382],[0.279000,-0.960234,0.007447],[0.159337,-0.987213,0.001312],[-0.361431,-0.594592,-0.718192],[-0.286386,-0.580004,-0.762596],[-0.369243,-0.486953,-0.791498],[-0.932829,0.036744,0.358379],[0.921537,0.037568,0.386425],[-0.875607,-0.198645,0.440260],[-0.763573,-0.130619,0.632344],[-0.868679,-0.078402,0.489120],[-0.334269,-0.445845,-0.830317],[0.125126,-0.337962,-0.932768],[-0.047090,-0.337718,-0.940031],[-0.952971,-0.291055,0.084262],[-0.964293,-0.247353,0.094455],[-0.896908,0.306436,-0.318766],[0.886563,-0.285043,0.364299],[0.845363,-0.206000,0.492843],[0.840785,-0.212989,0.497635],[0.817957,0.571215,0.068148],[0.682211,0.708090,0.182073],[0.376080,0.797143,-0.472274],[0.825190,0.481094,-0.295877],[-0.352062,-0.337413,-0.873012],[-0.267769,-0.368145,-0.890347],[-0.063448,0.196051,-0.978515],[0.185095,0.313974,-0.931181],[0.382488,0.452986,0.805261],[0.282937,0.316019,0.905545],[0.390881,0.439955,0.808435],[0.253182,0.041658,-0.966491],[0.011933,0.095248,-0.995361],[0.688314,-0.315958,-0.652943],[0.672597,-0.393841,-0.626453],[0.423688,-0.388562,-0.818201],[0.554338,0.099246,0.826350],[0.336802,0.287545,0.896573],[0.549944,0.268715,0.790765],[-0.477401,-0.845912,0.237587],[0.062746,-0.605426,0.793390],[0.913633,0.171148,-0.368725],[0.711722,0.325175,-0.622608],[-0.110935,-0.261849,-0.958678],[0.199347,-0.034883,-0.979278],[-0.371776,-0.191168,-0.908414],[0.856258,-0.400281,-0.326426],[0.885586,-0.170110,-0.432142],[0.825526,-0.410749,-0.386944],[0.094180,-0.963591,0.250191],[0.368938,0.425581,-0.826258],[0.454207,0.404340,-0.793817],[0.494919,0.262032,-0.828455],[0.340007,0.713858,0.612171],[0.172002,0.626179,0.760430],[0.089267,0.670370,0.736625],[0.895718,0.444136,0.019745],[0.918912,0.394269,0.009125],[0.884701,0.465560,-0.022431],[0.009583,0.162786,-0.986602],[-0.268654,-0.077395,-0.960112],[-0.135289,0.103366,-0.985382],[-0.335612,0.138798,-0.931700],[-0.191137,0.403668,-0.894711],[-0.130528,0.354167,-0.925993],[-0.363170,0.329783,-0.871395],[0.565386,-0.562151,0.603565],[0.800714,-0.286172,0.526200],[0.824183,0.337962,0.454390],[0.964354,-0.237831,0.115726],[0.944151,-0.247627,0.217292],[-0.615406,0.036195,0.787347],[-0.687551,0.036531,0.725181],[0.742241,-0.180975,0.645192],[0.735710,-0.270730,0.620808],[-0.957274,0.027894,-0.287759],[-0.980071,-0.187628,-0.064882],[-0.944762,-0.275979,-0.176702],[0.664144,-0.684042,0.301614],[0.738823,-0.606708,0.293222],[0.681265,-0.377911,-0.626911],[0.776330,-0.338969,-0.531388],[0.869869,-0.309458,-0.384106],[0.294076,-0.121464,-0.947996],[0.342814,-0.382397,-0.858028],[0.349712,-0.365551,-0.862575],[0.983367,-0.043489,-0.176305],[0.577380,0.088626,-0.811609],[0.809595,-0.181188,-0.558275],[-0.258583,0.112522,-0.959380],[-0.686026,0.084536,-0.722617],[-0.233161,-0.219153,-0.947386],[0.773492,-0.587329,-0.238105],[0.938108,-0.173101,-0.299936],[0.951964,-0.220191,-0.212745],[0.907285,-0.401990,-0.123234],[0.959899,-0.106021,0.259438],[0.973724,-0.207587,0.093509],[-0.460952,-0.305734,0.833064],[-0.430708,-0.312723,0.846553],[0.882260,-0.466628,-0.061678],[0.870724,-0.362346,-0.332377],[0.947935,-0.294504,0.120914],[0.555773,-0.287088,0.780145],[0.784631,-0.237495,0.572619],[0.476730,-0.400311,0.782586],[0.416242,0.195532,0.887967],[-0.730949,-0.343913,-0.589404],[-0.790979,-0.375011,-0.483383],[-0.812281,-0.316172,-0.490097],[-0.556963,0.677633,-0.480148],[-0.596393,0.616047,-0.514512],[-0.884030,-0.464217,0.054384],[-0.871029,-0.325510,-0.367840],[-0.914121,-0.345958,-0.211310],[0.727653,0.641102,-0.243812],[-0.387982,-0.349528,-0.852779],[-0.625782,-0.398419,-0.670522],[-0.400281,-0.317148,-0.859737],[-0.996551,-0.000214,0.082614],[-0.997559,-0.069521,-0.000793],[-0.999329,0.030519,0.019532],[-0.979430,-0.079714,0.185308],[-0.996765,0.078799,0.015046],[-0.977203,0.090091,0.192206],[0.924436,-0.377392,-0.054323],[0.715262,-0.614521,0.332743],[0.885189,-0.425214,0.188574],[0.686422,0.270608,0.674947],[0.669546,0.407025,0.621265],[0.407361,0.629139,0.661946],[-0.530900,-0.232948,-0.814753],[-0.354472,-0.196478,-0.914182],[-0.481979,-0.084597,-0.872066],[0.150060,0.136540,0.979186],[0.736137,-0.134526,0.663289],[0.379223,0.379986,0.843654],[0.974548,-0.222297,0.027894],[0.947417,-0.269509,0.172430],[0.210334,0.792840,-0.571947],[0.324534,0.766198,-0.554582],[0.322001,0.712851,-0.622974],[-0.315531,0.498032,0.807703],[-0.236854,0.474471,0.847774],[-0.418653,0.904721,0.078555],[-0.616901,0.682089,-0.392590],[-0.609760,0.752007,-0.250221],[0.952788,-0.303354,0.011170],[0.962920,-0.269753,0.000519],[0.985107,-0.150517,0.082858],[0.976806,-0.194159,0.090091],[0.967772,-0.247597,0.045656],[0.266396,-0.430372,-0.862423],[-0.382214,-0.534349,-0.753899],[-0.372692,-0.489547,-0.788263],[0.149724,0.078158,-0.985626],[0.314676,0.234779,-0.919675],[0.459365,0.193793,-0.866817],[0.956877,-0.267830,-0.112217],[0.946959,-0.278146,-0.160863],[0.924253,-0.293863,-0.243599],[0.536088,0.759117,-0.369182],[0.600696,0.711539,-0.364483],[0.751274,0.552110,-0.361553],[-0.298990,0.341655,0.890988],[-0.355571,0.404736,0.842433],[-0.370739,0.489212,0.789422],[0.117893,-0.351695,-0.928648],[-0.094638,-0.294443,-0.950957],[0.891110,-0.023530,-0.453139],[0.871853,-0.180486,-0.455275],[0.873043,0.262917,-0.410627],[0.812616,0.316782,-0.489151],[0.945158,-0.117466,0.304666],[-0.918638,-0.074190,-0.388012],[0.302316,0.488601,-0.818415],[0.385479,0.385083,-0.838496],[0.446150,0.446455,-0.775597],[0.146428,0.472304,-0.869167],[0.348766,0.424940,-0.835292],[0.416578,0.426496,-0.802820],[0.599353,-0.470016,-0.647908],[0.673238,-0.351573,-0.650441],[0.729545,-0.384930,-0.565264],[-0.361278,0.637165,0.680776],[-0.070284,0.464888,0.882565],[-0.930143,-0.363262,0.053041],[-0.901212,-0.430769,-0.047060],[-0.927396,-0.173315,-0.331431],[-0.277047,-0.444258,-0.851955],[0.239509,0.621082,0.746208],[0.606830,0.778314,-0.161077],[0.693075,0.719932,-0.035524],[0.554155,0.832270,-0.014435],[0.536485,-0.295267,-0.790521],[0.685537,-0.435102,-0.583667],[0.617206,-0.338267,-0.710349],[-0.275918,0.172521,-0.945555],[0.728080,0.306436,-0.613147],[0.264443,0.784234,-0.561235],[-0.531236,-0.464339,-0.708609],[-0.524033,-0.397198,-0.753380],[-0.561937,-0.420026,-0.712577],[-0.647328,-0.185980,0.739158],[-0.817621,-0.245460,0.520768],[0.557207,0.106693,0.823450],[0.583636,0.658925,-0.474471],[0.586627,0.673055,-0.450362],[0.545518,0.781610,-0.302438],[0.437971,0.866176,0.240608],[0.643605,0.749168,0.156529],[0.468276,0.860866,0.198889],[0.619587,0.515946,0.591479],[-0.147954,-0.743461,0.652181],[0.133763,-0.563738,0.815027],[0.156774,-0.237556,0.958617],[0.108188,-0.491928,-0.863857],[0.702811,0.267403,-0.659169],[0.606922,0.383435,-0.696127],[-0.978454,0.139256,-0.152226],[-0.997436,-0.001617,0.071505],[-0.959380,0.080050,-0.270455],[0.121982,0.594714,-0.794580],[0.838984,-0.533341,0.107730],[0.876736,-0.448714,0.173070],[0.179083,-0.261940,-0.948302],[0.183691,-0.229713,-0.955748],[0.178808,0.975280,0.129795],[0.280557,0.959777,0.009217],[0.102390,0.976257,0.190741],[0.389660,-0.432447,-0.813074],[0.397198,-0.400159,-0.825861],[0.345775,-0.423139,-0.837458],[-0.149083,0.398511,0.904935],[-0.156743,0.535264,0.829981],[-0.118412,0.365764,0.923124],[-0.696310,-0.014374,-0.717582],[-0.731681,0.007080,-0.681570],[-0.639576,0.076724,-0.764855],[-0.079318,-0.236488,-0.968383],[0.183233,-0.114658,-0.976348],[0.106082,-0.219581,-0.969787],[0.150517,-0.134037,-0.979461],[0.297189,0.860225,-0.414319],[0.242470,0.801538,-0.546525],[0.197302,0.830500,-0.520859],[0.663656,0.386090,-0.640675],[-0.467879,0.409925,0.782952],[0.490188,-0.317240,-0.811792],[0.233192,-0.248146,-0.940214],[0.440931,-0.257393,-0.859798],[0.007874,0.400098,-0.916410],[-0.053987,0.254799,-0.965453],[-0.116306,0.255745,-0.959685],[0.485031,0.632374,0.603961],[0.409375,0.624195,0.665395],[0.520676,0.614887,0.592242],[0.451643,0.581561,0.676565],[0.520951,0.595203,0.611774],[0.509049,-0.857845,0.070315],[0.398175,-0.866421,0.301157],[0.293161,-0.955138,0.041444],[-0.151952,-0.483016,-0.862300],[-0.504471,-0.369732,-0.780236],[-0.123966,-0.835475,0.535325],[0.122227,0.954863,0.270699],[0.032624,0.943754,0.328959],[0.559801,-0.090609,-0.823634],[0.684835,-0.144688,-0.714164],[0.231666,-0.314737,-0.920469],[-0.001923,-0.373638,-0.927549],[-0.004212,-0.403088,-0.915128],[-0.672323,-0.358715,-0.647511],[-0.628803,-0.325510,-0.706137],[-0.732780,-0.382000,-0.563097],[-0.678762,-0.328654,-0.656667],[-0.627461,-0.443770,-0.639760],[-0.026124,-0.338420,-0.940611],[-0.170110,-0.300790,-0.938383],[-0.136052,-0.377026,-0.916135],[-0.957945,0.132939,0.254250],[0.437391,0.633473,0.638234],[0.537797,0.354930,0.764672],[0.277169,0.388073,0.878933],[-0.576067,-0.255165,-0.776513],[-0.239875,0.334605,0.911283],[-0.630207,-0.109287,-0.768670],[-0.638691,-0.317850,-0.700705],[0.190588,0.612690,-0.766961],[0.152715,0.639790,-0.753197],[0.099582,0.570635,-0.815119],[0.777612,-0.558946,-0.287851],[0.972015,0.145940,0.184057],[0.946532,0.226264,0.229835],[0.937315,0.185430,0.294992],[-0.362743,0.886868,0.286081],[-0.460402,0.863063,0.207648],[-0.343608,0.925779,0.157537],[0.929044,-0.364483,-0.063112],[0.832820,0.070589,0.548997],[-0.161870,-0.462844,-0.871517],[-0.300577,-0.420026,-0.856258],[-0.382977,-0.300302,-0.873562],[-0.887173,-0.163396,-0.431501],[-0.863399,-0.211310,-0.458083],[0.304392,-0.006867,-0.952513],[0.161138,0.185400,-0.969329],[0.479934,0.743553,0.465529],[0.442030,0.801111,0.403455],[0.378430,0.759148,0.529557],[-0.423750,0.279611,-0.861507],[-0.921323,0.141270,0.362194],[-0.918424,-0.385144,0.090182],[-0.935301,-0.353679,-0.008332],[0.069399,-0.286996,-0.955382],[-0.354930,-0.321940,-0.877682],[-0.354747,-0.406873,-0.841762],[-0.274239,-0.218329,-0.936521],[-0.722556,0.385449,0.573809],[0.916135,0.018952,-0.400403],[0.977844,0.010315,-0.209021],[0.855739,0.102664,-0.507065],[0.908567,-0.197058,0.368297],[0.977935,-0.066469,0.197943],[0.987396,-0.098636,0.123661],[0.960967,-0.145665,0.235084],[0.737510,-0.245460,-0.629109],[0.826777,-0.391003,-0.404370],[0.990204,0.047273,0.131199],[0.980468,-0.065004,0.185522],[0.995025,-0.006012,0.099307],[0.986694,0.088900,0.135990],[0.950102,0.305216,-0.064028],[0.756005,0.106571,-0.645802],[0.537553,0.837825,0.095096],[0.569750,0.765954,0.297708],[0.949278,0.307413,-0.065798],[0.997162,0.054231,-0.051729],[0.941313,0.162755,0.295602],[0.896817,-0.105686,0.429548],[0.947539,-0.030854,0.318125],[-0.980285,0.188238,0.059816],[0.321116,0.926511,0.195959],[0.197851,0.980132,0.013398],[-0.404706,0.259224,-0.876919],[-0.622700,0.137516,-0.770257],[-0.683950,0.228797,-0.692679],[-0.451918,-0.274880,-0.848628],[-0.504959,-0.293374,-0.811731],[0.294626,-0.672536,0.678854],[-0.995086,-0.076388,0.062471],[-0.990051,-0.129002,0.056063],[-0.990631,-0.030549,0.132969],[-0.125828,0.955504,-0.266732],[-0.192389,0.960021,-0.203253],[0.077242,0.880764,0.467177],[0.261116,0.874599,0.408490],[0.199957,0.846858,0.492752],[-0.032044,0.971587,0.234382],[0.229591,0.699606,0.676595],[-0.226814,0.834590,0.501968],[0.955840,-0.094302,0.278298],[0.943114,-0.137486,0.302591],[-0.274850,-0.151219,-0.949492],[-0.324473,-0.367290,-0.871639],[0.792413,-0.322245,0.517869],[0.642109,-0.193854,0.741661],[0.698447,-0.243049,0.673116],[0.593280,-0.425245,0.683462],[0.592730,-0.597095,0.540483],[0.312082,-0.667135,0.676351],[0.498489,-0.836482,0.227515],[0.514573,-0.743095,0.427747],[0.701987,0.247658,-0.667714],[0.799738,0.085177,-0.594226],[0.054750,0.512650,-0.856807],[-0.263314,-0.529954,-0.806085],[-0.404797,-0.269417,-0.873775],[-0.749657,-0.090640,-0.655538],[-0.851192,-0.111362,-0.512833],[-0.724326,0.072481,-0.685598],[0.498642,0.768609,-0.400678],[0.960784,-0.015564,-0.276772],[0.966857,-0.082003,-0.241707],[0.967956,0.012391,-0.250801],[-0.440596,-0.490249,-0.751976],[-0.223182,-0.420881,-0.879208],[0.424757,-0.008576,-0.905240],[0.380718,-0.256844,-0.888272],[0.352458,-0.424390,-0.834040],[-0.140110,0.985534,0.095187],[-0.045656,0.994659,0.092257],[-0.072726,0.996979,0.026124],[0.497879,0.867214,-0.001892],[0.604572,0.796472,-0.008209],[0.482772,0.870296,-0.097201],[0.525468,0.424024,-0.737571],[0.613208,0.482437,-0.625446],[0.471267,0.400342,-0.785852],[0.203436,0.954924,0.216132],[0.089084,0.960753,0.262612],[-0.020447,-0.718070,-0.695639],[-0.198889,-0.634541,-0.746818],[-0.238289,-0.775018,-0.585253],[0.859462,-0.425153,0.283792],[0.832850,-0.378277,0.403974],[0.916654,-0.359600,0.174383],[0.257973,0.457076,0.851161],[0.174017,0.545793,0.819636],[0.438002,0.141606,0.887722],[0.954375,-0.289163,0.074221],[0.518754,-0.141148,0.843165],[0.214270,0.165654,-0.962615],[-0.995575,-0.037996,0.085696],[-0.984039,0.142155,0.106906],[-0.971557,0.166570,0.168126],[-0.869716,0.142521,0.472488],[-0.916745,0.254585,0.307779],[-0.880673,0.267953,0.390637],[-0.136052,0.079867,-0.987457],[-0.051149,0.243934,-0.968413],[-0.123356,0.229194,-0.965514],[-0.815638,0.385113,0.431745],[0.475173,0.376476,0.795251],[-0.802545,-0.411451,-0.431959],[-0.160466,0.305094,-0.938688],[0.934202,-0.346294,0.085482],[0.933683,-0.355937,-0.038759],[0.964538,-0.251320,0.080233],[-0.139500,0.953398,-0.267464],[-0.043947,0.952239,-0.302133],[0.055147,0.975951,-0.210761],[0.213904,-0.774407,0.595386],[0.023957,-0.811060,0.584429],[-0.169347,0.204138,-0.964171],[-0.010712,0.358684,-0.933378],[-0.786889,0.203589,0.582507],[-0.822382,0.052492,0.566454],[0.383831,-0.388531,-0.837672],[0.196356,-0.460250,-0.865780],[0.222022,-0.465377,-0.856777],[-0.526933,0.830714,-0.179418],[-0.243965,0.929441,0.276681],[-0.179235,0.879727,0.440352],[0.955626,0.108798,0.273721],[0.955046,0.008179,0.296274],[0.977355,0.193030,0.086459],[0.911527,-0.214759,0.350627],[0.904508,-0.293008,0.309732],[-0.780145,-0.377667,0.498703],[0.539720,-0.517258,-0.664174],[0.561144,-0.140996,-0.815607],[-0.329875,-0.438704,-0.835871],[0.228462,0.517685,-0.824488],[0.224708,0.453566,-0.862392],[0.472427,0.407361,-0.781549],[0.424543,0.562975,-0.709067],[0.618488,0.478469,-0.623310],[0.299661,0.952574,0.052736],[0.426832,0.886044,0.180853],[0.255745,0.963225,0.081973],[-0.982574,0.185156,-0.014863],[-0.980743,0.086367,-0.175024],[-0.987457,0.132237,-0.085940],[0.328745,0.395306,-0.857692],[0.194006,0.545732,-0.815149],[0.412458,0.802362,0.431318],[0.514420,0.816736,0.261299],[0.547014,0.777459,0.310312],[-0.437361,-0.464583,-0.769951],[-0.522324,-0.295297,-0.799951],[0.993805,0.002014,0.110996],[0.955931,0.016266,0.293100],[0.969390,-0.126316,0.210395],[0.893521,-0.067324,0.443892],[0.910794,-0.147252,0.385662],[-0.950926,-0.305277,-0.049867],[-0.963561,-0.166997,-0.208838],[-0.949004,-0.167852,-0.266762],[-0.819422,0.269356,0.505905],[-0.411420,-0.313547,-0.855800],[-0.436964,-0.450423,-0.778558],[-0.552477,-0.541826,-0.633351],[-0.712149,0.305948,0.631794],[-0.353984,-0.182379,0.917264],[-0.467360,-0.158666,0.869686],[-0.260689,-0.146428,0.954222],[0.329539,0.099124,0.938902],[0.182958,0.561113,-0.807245],[0.094150,0.510178,-0.854885],[0.058687,-0.966674,-0.249123],[-0.124851,-0.966033,-0.226203],[0.056093,-0.893735,-0.445021],[0.479385,-0.347484,-0.805841],[0.679281,-0.233589,-0.695700],[0.748436,-0.216376,-0.626881],[-0.737144,-0.444044,-0.509293],[-0.834803,-0.452834,-0.313059],[-0.998840,-0.034700,-0.032533],[-0.992676,-0.024781,-0.118076],[-0.986084,-0.125065,-0.109409],[-0.836818,-0.368480,-0.404889],[-0.632527,-0.303873,-0.712424],[-0.839473,-0.254677,-0.479965],[0.278817,0.835871,-0.472793],[0.058901,0.720206,-0.691214],[0.179876,0.856594,-0.483566],[-0.739921,0.344462,0.577776],[-0.688681,0.436171,0.579150],[-0.780786,0.415387,0.466659],[-0.818812,0.574023,-0.005799],[-0.944975,0.312265,0.097446],[0.805261,-0.289254,0.517533],[0.781640,-0.326762,0.531236],[0.724784,-0.412610,0.551714],[0.610218,-0.427442,0.666982],[0.184973,-0.554308,0.811457],[-0.555040,-0.402844,-0.727744],[-0.493210,-0.374889,-0.784967],[0.592669,0.260414,-0.762169],[-0.216956,0.379803,-0.899228],[-0.311899,0.345164,-0.885159],[-0.229682,0.268441,-0.935484],[-0.430555,-0.399701,-0.809198],[-0.625813,-0.387738,-0.676748],[-0.567888,-0.367809,-0.736351],[0.898801,-0.160283,0.407941],[0.917814,-0.389599,0.075930],[0.906064,-0.389782,0.164586],[-0.503006,-0.269448,-0.821192],[-0.671712,-0.280770,-0.685507],[-0.707205,-0.503525,-0.496261],[-0.383496,-0.441084,-0.811365],[-0.178076,-0.361553,-0.915159],[-0.120914,-0.484664,-0.866268],[0.299051,-0.101871,0.948759],[-0.064882,0.203925,0.976806],[0.190954,0.190619,-0.962889],[0.259102,0.181585,-0.948607],[0.251442,0.269448,-0.929594],[-0.499924,-0.235267,-0.833461],[0.238197,0.961364,0.137822],[0.283792,0.931028,0.229316],[0.376110,0.318003,0.870266],[0.374432,0.283639,0.882778],[0.355846,0.417890,0.835871],[0.191260,0.227302,-0.954833],[-0.100375,0.371349,-0.923032],[-0.357219,0.214545,0.909024],[-0.667287,0.391919,0.633290],[0.602405,-0.157933,-0.782373],[0.784600,-0.252846,-0.566057],[0.188055,0.391186,-0.900876],[0.307047,0.285440,-0.907834],[0.074435,0.498123,-0.863887],[0.547227,-0.270608,-0.791986],[0.714377,-0.226661,-0.662008],[-0.043977,-0.564806,-0.824030],[-0.956420,0.014679,-0.291543],[-0.956847,0.082919,-0.278390],[-0.717124,-0.369701,-0.590777],[-0.731315,-0.199255,-0.652242],[0.526811,0.568285,-0.632038],[0.625751,0.517594,-0.583514],[0.601764,0.550890,-0.578204],[0.576861,-0.077822,-0.813105],[0.897702,-0.319163,0.303690],[0.925657,-0.374859,0.051271],[0.023774,-0.371197,0.928220],[-0.120548,-0.709677,0.694113],[0.175115,-0.608264,0.774132],[-0.077761,0.996796,0.018220],[-0.099582,0.993713,-0.050874],[-0.794977,-0.153020,-0.586963],[-0.707083,-0.308329,-0.636311],[-0.542283,-0.246651,-0.803156],[0.517136,0.551592,-0.654408],[0.493179,0.470443,-0.731712],[0.359203,0.486618,-0.796319],[0.125828,-0.297464,-0.946379],[-0.171453,-0.372753,-0.911924],[0.294168,-0.719810,0.628712],[0.196326,-0.424818,0.883694],[-0.617573,0.130863,0.775536],[0.713095,-0.356792,-0.603412],[0.702353,-0.397137,-0.590686],[0.796503,-0.451369,-0.402203],[-0.748833,-0.253609,-0.612262],[-0.643055,-0.165563,-0.747673],[0.854885,-0.347118,0.385571],[0.955016,-0.174200,0.239937],[0.927122,-0.280129,0.248878],[0.763359,0.414747,0.495163],[-0.286630,0.034120,-0.957427],[0.029847,0.156072,-0.987274],[-0.469222,0.081973,-0.879238],[0.952483,0.100223,-0.287515],[0.321390,-0.430860,-0.843226],[-0.048524,-0.416761,-0.907682],[0.951415,-0.044130,0.304666],[0.914914,-0.047182,0.400861],[0.998444,-0.054689,0.009278],[-0.004578,-0.251686,-0.967772],[0.891263,-0.052370,0.450392],[0.444411,-0.730796,0.518052],[0.526872,-0.720634,0.450606],[-0.799432,-0.180883,-0.572832],[-0.838496,-0.162206,-0.520127],[-0.088687,-0.427656,-0.899564],[0.250618,-0.135380,-0.958556],[0.209693,-0.025697,-0.977416],[0.673360,-0.392499,-0.626484],[0.611744,-0.461989,-0.642079],[0.636128,-0.440504,-0.633442],[0.825709,-0.351451,-0.441145],[0.695242,-0.442854,-0.566088],[0.643208,0.408551,0.647572],[0.588763,0.337474,0.734458],[-0.002167,-0.007477,-0.999969],[-0.080172,0.135929,-0.987457],[0.057985,-0.006439,-0.998291],[-0.913846,0.247383,0.321940],[0.644856,0.047395,-0.762810],[0.752129,-0.013092,-0.658834],[0.665395,-0.513749,0.541520],[0.719962,-0.485733,0.495651],[0.708426,-0.551683,0.440138],[-0.739158,-0.376446,-0.558458],[-0.501328,-0.427717,-0.752129],[0.899350,-0.408704,0.155248],[0.929472,-0.240883,-0.279305],[0.568590,0.773553,0.279794],[0.597278,0.767785,0.231758],[-0.356822,-0.898953,-0.254036],[-0.400189,-0.855434,0.328684],[-0.613544,-0.752159,0.240303],[-0.886135,-0.462935,0.020539],[-0.893490,-0.447737,0.034577],[-0.948943,-0.309244,0.061861],[-0.535661,0.102237,0.838191],[-0.496872,-0.000641,0.867794],[-0.474532,0.143773,0.868404],[0.815455,-0.134861,0.562853],[0.751732,-0.257057,0.607257],[0.891140,-0.183020,0.415113],[-0.900754,-0.396588,-0.176916],[-0.695212,-0.411664,-0.589190],[-0.708213,-0.437880,-0.553758],[-0.840419,-0.535783,0.081210],[-0.929838,-0.054476,-0.363872],[-0.922208,0.117374,-0.368419],[-0.959777,0.043703,-0.277261],[0.770104,-0.209082,0.602619],[0.111454,0.340037,-0.933775],[0.399853,0.283608,-0.871578],[-0.087893,0.386700,-0.917997],[-0.080142,0.043580,-0.995819],[0.065523,0.018250,-0.997681],[-0.929594,-0.364544,-0.054292],[0.945189,-0.326273,0.011292],[0.216071,0.938383,0.269662],[0.222663,0.941832,0.251686],[0.182409,0.880490,-0.437483],[0.239967,0.885922,-0.396893],[0.171026,0.900052,-0.400769],[0.854244,-0.034120,0.518723],[0.051241,-0.402264,-0.914060],[0.055940,-0.472121,-0.879727],[0.228889,-0.384503,-0.894253],[0.813288,-0.334971,0.475723],[0.750511,-0.360973,0.553514],[-0.994842,-0.097995,0.025300],[-0.989471,-0.132023,-0.059145],[-0.995849,-0.063723,-0.064852],[-0.985473,-0.165197,0.039216],[-0.994324,-0.093539,0.050233],[0.422742,0.651295,0.630116],[0.473891,0.627644,0.617603],[0.605182,0.474471,0.639210],[0.809931,-0.424055,0.405133],[0.032136,-0.218329,-0.975341],[-0.400708,-0.273965,-0.874264],[0.582507,0.574969,0.574480],[0.626728,0.278756,0.727622],[-0.519181,0.459487,0.720603],[-0.599994,0.283334,0.748131],[-0.614429,0.350017,0.707053],[0.960540,0.094974,0.261391],[0.864040,-0.255318,-0.433851],[0.781915,-0.322794,-0.533250],[0.834498,-0.258827,-0.486404],[0.778252,0.558123,0.287729],[0.709738,0.652699,0.264962],[0.958861,0.254921,-0.124668],[0.090396,0.471664,-0.877102],[0.967162,0.010681,0.253883],[0.893857,-0.286142,0.345073],[0.882015,-0.258003,0.394269],[0.356212,0.778008,-0.517472],[-0.086673,0.985717,0.144230],[-0.007385,0.994140,0.107700],[-0.996826,-0.025025,0.075198],[-0.999725,0.022217,-0.003449],[0.941740,-0.234779,0.240699],[-0.506424,-0.150151,-0.849086],[-0.307016,-0.344523,-0.887143],[-0.883267,0.311960,0.349986],[-0.790490,0.454115,0.410932],[-0.753960,0.524277,0.395734],[-0.429792,0.153233,0.889798],[-0.469222,0.094272,0.878018],[-0.679342,0.487014,0.548845],[-0.274575,0.234626,-0.932463],[-0.230903,0.154302,-0.960631],[-0.106296,0.333506,-0.936705],[-0.948302,-0.098025,0.301798],[-0.969909,0.044191,0.239326],[-0.909635,0.073824,0.408765],[0.849940,-0.481307,-0.214209],[0.882626,-0.338267,-0.326365],[0.823847,-0.513169,-0.240608],[-0.218421,-0.199774,0.955168],[-0.410901,-0.071505,0.908841],[-0.219001,0.171087,0.960570],[-0.967681,0.188421,0.167394],[-0.956786,0.085513,0.277902],[-0.989685,0.036195,0.138432],[-0.059816,-0.227851,-0.971831],[-0.799921,-0.107517,-0.590350],[-0.724326,0.026887,-0.688894],[-0.733757,0.075228,-0.675222],[-0.674856,0.519913,-0.523667],[-0.724082,0.464309,-0.509964],[-0.729820,0.442824,-0.520768],[-0.151128,-0.031831,-0.987976],[-0.152898,0.074465,-0.985412],[-0.202918,0.817896,-0.538347],[-0.274545,0.805292,-0.525437],[0.177068,0.898831,0.400891],[-0.354900,0.339305,-0.871151],[0.866146,-0.054292,0.496780],[-0.279855,-0.655232,0.701651],[-0.766167,-0.374767,0.522019],[0.348277,-0.175939,0.920713],[0.173650,-0.100436,0.979644],[0.273293,-0.099094,0.956786],[0.739982,-0.608020,0.287576],[0.579058,0.803003,0.140812],[0.622272,0.750908,0.221046],[0.506363,0.842860,0.182134],[0.261177,0.956389,0.130619],[0.347484,0.935759,0.059603],[0.420637,0.871426,0.252297],[0.916288,-0.392804,0.078005],[0.184851,-0.145695,0.971892],[0.053438,-0.354442,0.933531],[0.290536,-0.189642,0.937864],[-0.620899,-0.121647,-0.774377],[-0.434980,-0.133946,-0.890408],[-0.445387,-0.470412,-0.761773],[-0.409772,-0.392102,-0.823573],[0.298654,0.952300,-0.062319],[0.223395,0.952788,-0.205573],[0.554979,0.820215,-0.138554],[-0.687826,-0.314127,0.654347],[-0.038484,-0.529191,0.847591],[0.565050,-0.570757,-0.595752],[0.270089,-0.390240,-0.880184],[0.529466,-0.458388,-0.713797],[0.550554,0.816065,0.175756],[0.583056,0.773339,0.248848],[0.045198,-0.133702,-0.989959],[0.098910,-0.269509,-0.957884],[0.070620,-0.137089,-0.988006],[0.104617,-0.108676,0.988525],[0.401685,-0.095492,0.910764],[0.338206,-0.419507,0.842372],[0.988891,0.028260,0.145726],[0.987518,-0.141911,0.067965],[0.994720,-0.003906,0.102359],[0.996124,0.015625,0.086489],[0.951262,-0.054079,-0.303568],[0.920408,-0.071749,-0.384289],[0.449934,0.659993,0.601611],[-0.418744,0.071169,0.905271],[0.286019,0.946623,0.148503],[-0.838221,-0.002472,-0.545274],[-0.091220,0.555925,-0.826197],[0.033815,0.898068,0.438490],[0.019868,0.918912,0.393902],[-0.010895,0.901242,0.433149],[-0.376690,0.286660,0.880856],[-0.444472,0.081515,0.892056],[-0.415021,0.245186,0.876125],[0.295633,0.036439,0.954588],[-0.292703,0.358196,0.886563],[0.400311,0.052889,0.914823],[-0.948454,-0.312632,-0.051515],[-0.960479,-0.275124,-0.041627],[-0.996124,-0.082614,-0.029298],[-0.985870,-0.088382,0.142125],[0.331217,0.572192,-0.750237],[0.372845,0.487411,-0.789514],[0.273110,0.507431,-0.817225],[-0.747734,-0.315287,-0.584338],[-0.777825,-0.387951,-0.494369],[-0.129307,0.144841,-0.980956],[-0.297281,0.133671,-0.945372],[-0.223640,0.049745,-0.973388],[-0.910916,-0.120518,0.394513],[0.935606,0.007660,0.352886],[0.910489,-0.114597,0.397290],[0.587756,0.783441,0.201788],[0.561632,0.808802,0.174169],[-0.857143,0.227424,0.462111],[-0.282388,0.077639,-0.956114],[-0.256172,0.318186,-0.912748],[0.054109,0.893796,-0.445143],[0.334330,-0.088595,0.938261],[0.334971,0.085543,0.938322],[-0.830683,0.055025,0.553972],[-0.895505,-0.016663,0.444716],[-0.869747,0.106388,0.481826],[-0.326456,0.591449,-0.737266],[0.870540,0.196265,0.451216],[0.341594,-0.395947,-0.852351],[0.458480,-0.537767,-0.707511],[-0.284616,0.655263,0.699698],[-0.617542,-0.221259,-0.754723],[-0.648732,-0.233345,-0.724326],[-0.628163,-0.242164,-0.739402],[-0.516678,0.164617,0.840175],[-0.529984,-0.006409,0.847957],[-0.603748,0.004028,0.797143],[0.809778,-0.329569,0.485397],[-0.083621,-0.091067,-0.992309],[-0.142491,-0.051790,-0.988433],[0.909970,0.400067,-0.108921],[0.782403,0.617359,0.081545],[0.874416,0.482223,-0.052828],[-0.282327,-0.367382,-0.886166],[0.045991,-0.344859,-0.937498],[-0.285409,-0.492965,-0.821863],[0.964629,0.081545,-0.250649],[0.985351,0.089694,-0.144841],[0.332774,0.900723,-0.279153],[0.882290,0.040590,0.468947],[0.901059,-0.109256,0.419630],[0.837336,-0.264260,0.478530],[0.938383,-0.286721,0.192846],[-0.377789,0.281655,0.881985],[-0.463973,0.411023,0.784692],[-0.572222,0.227638,0.787835],[-0.515915,0.754936,-0.404797],[-0.496567,0.769982,-0.400586],[-0.108707,-0.947966,-0.299142],[-0.331706,-0.745079,-0.578600],[0.928007,-0.082095,0.363323],[0.919950,-0.322764,0.222358],[0.893582,-0.198004,0.402783],[0.946867,-0.150426,0.284188],[0.925932,0.055147,0.373608],[0.957488,-0.086856,0.275063],[-0.607013,-0.629292,0.485275],[-0.708853,-0.524552,0.471541],[-0.733146,-0.627338,0.262459],[-0.673269,0.444533,0.590808],[-0.617573,0.532334,0.578906],[-0.505661,0.474746,0.720328],[-0.660115,0.459700,-0.594043],[-0.673910,0.410565,-0.614185],[-0.662099,0.429456,-0.614124],[0.706626,-0.425367,-0.565416],[0.859706,-0.349864,-0.372082],[0.925840,-0.242439,-0.289804],[-0.062166,0.218726,-0.973785],[0.152287,0.002319,-0.988311],[0.387005,-0.400037,-0.830744],[0.295816,-0.396191,-0.869167],[0.144932,0.915464,0.375347],[0.435774,0.882015,0.179205],[0.484848,0.862911,0.142430],[0.125828,0.066775,-0.989776],[0.054750,-0.032868,-0.997955],[0.923551,0.137822,-0.357830],[0.966765,0.069002,-0.246101],[0.948393,-0.001923,0.317026],[0.947783,0.009247,0.318735],[0.928770,0.073824,0.363170],[-0.714286,0.312082,0.626392],[-0.832698,0.196722,0.517533],[0.546983,-0.362316,-0.754631],[0.388379,-0.418958,-0.820734],[-0.847835,-0.097446,-0.521165],[-0.700980,-0.340983,-0.626331],[0.905423,0.095614,0.413587],[0.869991,0.051271,0.490371],[0.910733,0.077761,0.405591],[-0.404279,-0.283761,-0.869472],[-0.122074,0.894436,-0.430189],[-0.181219,0.874172,-0.450453],[-0.156896,0.885739,-0.436811],[-0.635853,-0.355785,-0.684866],[-0.461654,-0.265053,-0.846522],[-0.582873,-0.378033,-0.719230],[0.085482,-0.352245,-0.931974],[0.003479,-0.365490,-0.930784],[0.382946,-0.590472,0.710379],[0.536302,-0.299417,0.789087],[0.596240,-0.212958,0.774010],[0.446547,0.661000,0.603015],[0.393170,0.721427,0.570025],[0.356700,0.744713,0.564013],[0.712760,-0.368511,-0.596789],[0.856594,-0.228370,-0.462630],[0.809412,-0.419080,-0.411328],[-0.723502,-0.448927,-0.524400],[-0.529649,-0.339030,-0.777490],[-0.539567,-0.558641,-0.629871],[0.508347,0.089633,0.856441],[-0.737083,-0.061129,-0.672994],[0.328471,0.302896,0.894620],[0.054506,0.254891,-0.965423],[0.012970,0.160192,-0.986969],[0.163610,0.165227,-0.972564],[-0.074099,-0.492019,-0.867397],[-0.108066,-0.552507,-0.826441],[-0.321207,-0.527665,-0.786340],[0.297586,-0.758934,-0.579119],[0.345561,0.920011,0.184729],[0.220679,0.962859,0.155400],[0.373089,0.906766,0.196234],[0.182623,0.154759,-0.970916],[0.263985,-0.018830,-0.964324],[0.670370,-0.260628,-0.694693],[0.476119,-0.209876,-0.853938],[0.589709,-0.308969,-0.746147],[-0.340342,0.934416,0.104862],[-0.808771,-0.136937,-0.571947],[0.934599,-0.351390,0.054903],[0.822321,-0.559984,-0.100833],[0.736961,-0.675314,0.028016],[0.587024,-0.807611,0.056032],[0.854030,0.395032,-0.338420],[0.804590,0.469741,-0.363201],[0.297891,-0.151952,0.942412],[0.206214,-0.115482,0.971648],[0.096347,-0.408155,0.907804],[-0.504257,0.030061,0.863002],[-0.339366,0.919797,0.196936],[0.953734,0.091739,0.286264],[0.950835,0.031343,0.308084],[0.910855,0.314798,0.266884],[0.914090,-0.113834,-0.389141],[0.883328,-0.092746,-0.459456],[0.204077,0.978851,0.012513],[-0.216926,0.495499,-0.841060],[0.054750,0.156133,-0.986206],[0.971770,-0.235054,-0.018586],[0.991485,-0.090701,0.093142],[0.896481,0.327677,-0.298135],[0.952452,0.173162,-0.250618],[-0.018433,-0.262368,-0.964782],[0.163396,0.520280,0.838191],[0.379772,0.357463,0.853206],[0.080325,0.243080,0.966643],[0.427747,-0.429914,-0.795099],[0.536515,-0.476119,-0.696707],[0.110569,0.187323,-0.976043],[0.057588,0.243873,-0.968078],[0.198523,0.230659,-0.952544],[0.062929,0.184667,-0.980773],[-0.105228,0.191504,-0.975829],[0.535630,-0.418561,-0.733390],[0.622700,-0.094821,-0.776666],[0.714164,-0.124577,-0.688772],[0.721854,-0.634114,0.277078],[0.870418,-0.422590,0.252449],[0.927030,0.057741,0.370434],[0.059572,-0.662526,0.746635],[0.382122,-0.842616,0.379406],[-0.800012,-0.354717,-0.483840],[-0.935514,0.129276,0.328776],[-0.930448,0.020386,0.365825],[-0.987945,0.127384,0.087741],[-0.943999,0.235511,0.231025],[-0.388134,0.495468,0.777032],[-0.010590,0.504013,0.863613],[0.967284,-0.238472,0.086459],[0.964995,-0.173528,-0.196509],[0.680349,0.435682,0.589282],[0.176122,0.903104,-0.391552],[-0.200598,0.248390,-0.947630],[0.074496,0.373913,-0.924436],[-0.912534,-0.156835,-0.377697],[-0.820276,-0.146306,-0.552873],[-0.628559,0.391614,0.671926],[-0.638447,0.320383,0.699789],[-0.529801,0.162542,0.832362],[-0.821467,-0.247475,-0.513688],[-0.856563,-0.308908,-0.413312],[-0.211951,0.576983,0.788751],[-0.421705,0.275582,0.863826],[-0.132298,0.657369,0.741844],[0.464675,0.653096,0.597919],[0.267861,-0.485244,-0.832301],[0.184698,-0.508591,-0.840938],[0.189947,-0.444044,-0.875607],[0.703604,0.335887,0.626148],[0.841456,0.249092,0.479446],[-0.881497,-0.259835,-0.394177],[-0.998230,-0.045991,-0.037568],[-0.988830,-0.072848,0.129826],[0.585894,-0.405072,-0.701834],[0.772759,-0.384838,-0.504654],[0.750542,0.359142,0.554643],[0.756310,0.441755,0.482528],[0.583087,-0.664846,0.466872],[-0.949950,-0.143712,-0.277352],[0.310190,0.266518,0.912534],[0.222938,0.220191,0.949614],[0.279916,0.142186,0.949400],[0.990509,-0.127262,-0.051729],[0.990143,0.137059,-0.027833],[0.986785,-0.141881,0.078158],[0.803888,-0.318247,-0.502426],[0.526719,-0.385601,-0.757530],[0.984252,-0.050508,0.169347],[0.066378,0.802087,-0.593493],[0.138829,0.620624,-0.771691],[0.851619,-0.485244,-0.198126],[0.805567,-0.513413,-0.295663],[0.840480,-0.479232,-0.252724],[-0.599994,0.646901,-0.470626],[-0.531571,0.774102,-0.343699],[-0.587970,0.694876,-0.414014],[0.838160,-0.161168,-0.521012],[0.837733,-0.317972,-0.443922],[-0.561998,-0.186193,-0.805872],[-0.507035,-0.065859,-0.859371],[0.060183,-0.001465,0.998169],[-0.062136,-0.345134,0.936460],[-0.127934,-0.231880,0.964263],[0.949583,-0.113742,0.292062],[0.964782,-0.077120,0.251473],[0.948637,-0.014985,0.315958],[0.771508,-0.297006,-0.562609],[0.895566,-0.411328,-0.169469],[0.866421,-0.364391,-0.341319],[0.052644,0.275918,-0.959716],[-0.057863,0.219245,-0.973937],[0.697684,-0.353862,-0.622852],[-0.044038,-0.490188,-0.870479],[0.226081,0.971496,0.070986],[0.303385,0.952574,0.023103],[0.309488,0.944121,0.113132],[0.183050,0.932981,0.309854],[-0.607990,-0.197119,0.769066],[-0.431593,-0.141484,0.890896],[-0.576098,-0.157384,0.802057],[0.936491,-0.189306,0.295144],[0.913755,-0.081118,0.398022],[0.983337,-0.072237,0.166692],[0.968383,-0.168401,0.183935],[0.915708,0.042390,0.399518],[0.555834,-0.255806,-0.790918],[0.064943,0.068911,-0.995483],[-0.129215,0.798578,-0.587817],[-0.162358,0.826106,-0.539567],[-0.172277,0.811121,-0.558885],[0.155400,-0.120670,-0.980438],[-0.155553,-0.146764,-0.976836],[0.456435,-0.317392,-0.831202],[-0.009552,-0.183508,-0.982940],[-0.486953,0.493820,0.720389],[0.538743,0.109043,-0.835353],[0.439924,0.107852,-0.891507],[0.294565,-0.060701,0.953673],[0.004425,-0.385449,-0.922697],[0.829798,-0.306955,-0.466018],[0.771905,-0.246040,-0.586169],[-0.834284,-0.276650,-0.476821],[-0.776818,0.063143,-0.626514],[-0.819605,-0.397870,-0.412152],[-0.897732,0.209387,0.387524],[-0.917020,0.259316,0.302927],[-0.880825,0.251808,0.400861],[-0.966796,0.238990,0.090182],[-0.941618,0.327433,-0.077944],[0.562670,0.048891,0.825220],[0.499863,-0.241157,0.831843],[0.619221,-0.067751,0.782250],[0.953032,0.154393,0.260445],[0.724876,-0.005524,-0.688803],[0.590411,0.064394,-0.804498],[0.832728,-0.035737,-0.552507],[0.585376,-0.071383,0.807581],[0.747703,-0.401044,0.529191],[0.670370,-0.350017,0.654256],[-0.361705,0.620075,-0.696158],[-0.281350,0.714377,-0.640675],[0.915769,0.034913,0.400098],[0.895169,0.067232,0.440565],[0.894192,0.100375,0.436232],[-0.429701,0.524247,0.735160],[-0.365947,0.391980,0.844020],[-0.494095,0.495804,0.714164],[0.132237,0.076296,-0.988250],[0.914396,-0.147801,0.376812],[0.895108,0.100558,0.434309],[-0.540727,-0.374371,-0.753288],[-0.523179,-0.445112,-0.726707],[-0.903623,-0.176611,0.390179],[-0.941954,-0.122013,0.312723],[-0.895047,-0.172613,0.411176],[0.790216,0.576556,-0.207587],[0.830195,0.521500,-0.196905],[0.711814,0.619739,-0.330393],[0.338176,0.940825,-0.021607],[0.289193,0.940336,-0.179144],[0.136021,-0.963561,0.230262],[0.113102,-0.984893,0.130924],[0.977325,0.132115,0.165380],[0.997650,0.057741,0.036073],[-0.172308,-0.444166,-0.879177],[0.012268,-0.316416,-0.948515],[-0.185797,-0.323099,-0.927915],[-0.571612,0.748985,-0.335002],[-0.597644,0.752495,-0.276620],[0.712272,0.004181,-0.701865],[0.682241,-0.115757,-0.721854],[0.902432,-0.369274,0.221839],[0.849086,-0.482162,0.215674],[0.955718,-0.270333,0.116001],[-0.666860,0.222022,-0.711295],[0.713523,0.517624,0.472091],[0.801355,0.549211,0.237037],[0.716422,0.539872,0.441816],[-0.983245,-0.029786,0.179754],[0.221076,0.958190,0.181494],[0.509934,-0.439375,-0.739494],[-0.495437,-0.124607,0.859645],[-0.300088,0.949278,-0.093539],[-0.310953,0.941557,0.129337],[0.988189,-0.144383,0.050813],[0.995483,-0.091678,0.023469],[0.977660,-0.009766,0.209815],[0.989380,0.002289,0.145116],[0.296823,-0.597461,-0.744926],[0.469253,-0.601215,-0.646748],[0.250099,-0.497269,-0.830744],[0.601367,0.418622,0.680502],[-0.671468,-0.448988,-0.589465],[-0.157109,-0.507431,-0.847224],[0.201300,-0.365612,-0.908719],[0.954527,0.123905,0.271035],[0.926084,0.164953,0.339305],[0.194220,-0.022614,-0.980682],[0.850490,0.435316,0.295144],[0.798181,0.534165,0.278420],[-0.036256,-0.044252,0.998352],[-0.200690,-0.215949,0.955535],[-0.208777,-0.097964,0.973022],[0.994476,-0.057070,0.087985],[0.978820,-0.097446,0.179907],[0.620289,0.778802,0.093051],[-0.573992,0.521439,0.631336],[0.725486,-0.315287,-0.611713],[0.541276,0.120640,0.832118],[0.708609,0.149358,0.689566],[0.544877,0.050111,0.837001],[-0.607105,-0.371899,-0.702170],[-0.517472,-0.387646,-0.762841],[-0.474288,-0.571703,-0.669454],[0.021302,0.855159,0.517899],[0.056887,0.775231,0.629078],[0.290536,0.838099,0.461654],[-0.899350,0.233863,0.369366],[-0.908292,0.255440,0.331187],[-0.992798,0.052614,0.107608],[-0.998627,0.015961,0.049409],[-0.998749,-0.036805,0.033631],[-0.034577,-0.242775,-0.969451],[0.162114,-0.498459,0.851588],[-0.041169,-0.649831,0.758934],[0.282693,-0.299966,-0.911069],[-0.593829,-0.468978,0.653737],[-0.574450,-0.633747,0.517960],[-0.689352,-0.543809,0.478530],[-0.234657,0.880856,0.411084],[-0.055879,0.947203,0.315683],[-0.020264,0.952635,0.303385],[0.683828,0.058535,0.727256],[0.648701,0.063540,0.758354],[0.958647,-0.150792,0.241279],[0.986724,-0.074892,0.144078],[0.980499,-0.189123,0.053163],[-0.634968,-0.078127,-0.768548],[-0.897336,-0.259835,-0.356700],[-0.839686,-0.386700,-0.381268],[-0.895840,-0.323588,-0.304514],[0.834773,0.545488,-0.074435],[0.779900,0.589190,-0.211158],[0.792138,0.591571,-0.150029],[-0.377392,-0.853145,0.360118],[-0.374981,-0.907071,0.191229],[-0.166845,-0.983947,0.063173],[0.206366,-0.401227,-0.892392],[0.218390,-0.322825,-0.920896],[0.347789,-0.348338,-0.870418],[-0.348430,-0.522782,-0.777978],[-0.336497,-0.450301,-0.827021],[-0.886868,-0.056063,-0.458541],[0.785455,-0.038484,-0.617664],[-0.451430,0.876400,0.167638],[0.862117,-0.180425,-0.473434],[-0.408063,0.899655,0.155095],[0.933866,-0.327464,0.143620],[-0.224006,-0.268410,0.936888],[-0.088443,-0.980956,-0.172857],[0.963286,0.047578,0.264168],[0.986389,0.002289,0.164220],[-0.871639,-0.381573,0.307596],[-0.722495,-0.688528,0.062319],[-0.853877,-0.305887,0.421064],[-0.103366,0.910581,-0.400159],[-0.226295,0.943388,-0.242409],[-0.657308,0.700034,-0.278970],[-0.796014,0.575182,-0.188299],[0.817377,0.079440,0.570574],[0.964171,0.070650,0.255623],[-0.172704,0.117985,-0.977874],[-0.121860,0.113865,-0.985961],[-0.330882,-0.264809,-0.905728],[-0.236641,-0.307352,-0.921690],[-0.258492,-0.275552,-0.925871],[-0.733299,-0.505783,-0.454299],[0.925535,-0.212653,-0.313242],[0.785028,-0.413862,-0.460860],[0.797388,-0.340587,-0.498123],[0.998596,0.050172,-0.015168],[0.982818,0.119633,-0.140416],[0.973907,0.117771,-0.193976],[0.820948,0.398236,0.409162],[-0.196905,0.976257,-0.089908],[-0.265786,0.961699,-0.066713],[0.263833,-0.424726,-0.865993],[0.669820,0.714377,0.202368],[0.608936,0.737693,0.291482],[0.842891,-0.447737,-0.298318],[0.915647,-0.336680,-0.219520],[-0.927458,0.372631,-0.030793],[-0.755455,0.601184,-0.260384],[-0.821223,0.562517,-0.095492],[-0.159459,-0.373760,0.913694],[-0.271401,-0.478378,0.835139],[0.001312,-0.625568,0.780145],[-0.271096,-0.813532,-0.514420],[0.444044,0.723411,-0.528642],[-0.056551,0.183935,0.981292],[-0.922910,0.228828,0.309519],[-0.915586,0.179724,0.359691],[-0.950011,-0.310892,0.028169],[-0.939573,-0.257179,0.225837],[-0.945158,-0.318979,0.070101],[0.908536,-0.290506,-0.300211],[-0.924375,-0.245949,-0.291574],[-0.911557,-0.221473,-0.346385],[-0.844356,-0.535539,-0.014527],[-0.579913,0.642750,-0.500534],[-0.561846,0.589343,-0.580462],[-0.993957,0.071291,0.083346],[-0.983428,0.095920,0.153722],[0.143712,-0.037233,-0.988891],[-0.101566,0.359203,0.927702],[-0.369396,-0.069826,0.926633],[0.188116,-0.434431,-0.880825],[0.497360,-0.399884,-0.769860],[0.993774,-0.008667,0.110843],[0.924894,0.368969,-0.091494],[0.070101,-0.420759,-0.904447],[0.526933,-0.713462,0.461776],[0.438948,-0.770043,0.462935],[0.329508,-0.335582,-0.882473],[0.340709,-0.371288,-0.863704],[-0.550371,-0.291147,0.782464],[-0.633686,-0.309030,0.709128],[-0.638997,-0.690695,0.338511],[-0.663808,0.315104,0.678274],[0.545610,-0.090670,0.833094],[-0.042329,0.779382,0.625080],[0.006561,0.954131,0.299295],[-0.043855,0.872951,0.485794],[0.960784,-0.185797,0.205756],[-0.443190,-0.504807,-0.740745],[0.080935,0.233589,-0.968932],[0.322520,0.924802,0.201636],[0.390301,0.894589,0.217597],[0.448256,0.879391,0.160375],[0.686514,0.642994,0.339396],[0.618183,0.654592,0.435102],[0.016327,0.925016,0.379559],[-0.969420,-0.194037,0.150121],[0.014374,-0.062532,-0.997925],[0.644276,0.365642,0.671712],[0.563189,0.407544,0.718802],[0.988708,0.017487,-0.148747],[0.993530,0.087008,-0.072939],[0.406354,0.913419,0.021821],[0.318491,0.941984,0.105686],[-0.340800,0.593585,-0.728996],[-0.975860,-0.215155,-0.036927],[-0.856105,-0.210181,0.472091],[-0.936674,-0.129582,0.325297],[0.641743,0.684194,-0.346416],[-0.004883,0.169439,-0.985504],[-0.272622,0.127506,-0.953612],[0.026307,0.397046,-0.917417],[0.472427,-0.408643,0.780877],[0.324015,-0.415326,0.849971],[-0.143101,0.371960,0.917112],[-0.232551,-0.296884,-0.926145],[0.931974,-0.007508,0.362377],[0.910154,0.063234,0.409345],[0.349925,0.894070,0.279519],[0.485336,0.867885,0.105716],[0.355907,0.932554,0.060274],[0.154057,0.227760,0.961425],[0.178076,0.065615,0.981811],[0.001709,0.044740,0.998993],[-0.632771,-0.137791,-0.761956],[-0.792749,-0.311106,-0.524155],[0.493820,-0.038759,0.868679],[0.329539,-0.036805,0.943388],[0.269173,0.542222,0.795923],[-0.987579,-0.154332,0.029054],[-0.906980,-0.267830,0.324992],[-0.144841,0.839229,-0.524094],[0.495468,-0.135655,0.857936],[0.331126,-0.097324,0.938536],[0.539537,-0.064333,0.839473],[0.039308,-0.415693,0.908628],[-0.015870,-0.648152,0.761315],[-0.157872,-0.525925,0.835719],[0.011872,0.266762,-0.963683],[-0.117252,0.081484,-0.989746],[0.259682,-0.213538,-0.941771],[0.348094,-0.218848,-0.911527],[0.468886,-0.739494,0.482955],[-0.858089,0.352306,-0.373486],[-0.950407,0.177190,-0.255501],[0.652486,0.325938,-0.684072],[0.795160,0.190039,-0.575823],[0.993347,0.114872,0.003723],[0.973785,0.130100,-0.186438],[0.988861,0.001068,-0.148808],[-0.956420,0.137272,0.257637],[-0.959960,0.073153,0.270302],[-0.957823,-0.001343,0.287301],[0.626789,0.174902,0.759270],[0.873440,-0.243477,0.421674],[0.895596,-0.176458,0.408338],[0.895383,-0.211951,0.391522],[-0.094699,0.441267,0.892331],[0.278420,-0.192297,-0.940977],[-0.005646,-0.310007,-0.950682],[0.834376,0.095096,0.542863],[0.952940,0.131138,-0.273263],[0.850856,0.442396,-0.283334],[0.490249,0.811823,-0.317057],[0.858150,0.421186,-0.293466],[0.932310,0.047029,-0.358531],[0.907102,0.197119,-0.371838],[0.036317,0.468398,-0.882748],[0.080569,0.598407,-0.797113],[0.438551,0.892514,0.105014],[0.898434,0.056215,0.435438],[0.880001,0.141362,0.453413],[0.865352,0.065065,0.496872],[0.638691,0.595508,0.487228],[0.754570,0.460738,0.467238],[-0.971129,-0.143956,0.190100],[-0.159948,0.637287,0.753807],[0.610950,0.782128,0.122227],[0.553667,0.693960,0.460219],[0.325510,-0.761895,0.559923],[-0.985107,-0.151982,0.079989],[-0.927610,-0.205390,0.311930],[0.999146,-0.011536,0.039064],[0.497482,0.709342,0.499313],[0.611194,0.760979,0.217414],[-0.014710,-0.394391,-0.918790],[0.260475,-0.366558,-0.893185],[0.001312,-0.317087,-0.948363],[0.223518,0.939665,-0.258950],[0.003143,0.976318,-0.216254],[-0.066134,0.932493,-0.354991],[-0.400494,-0.226722,-0.887783],[-0.509507,-0.325022,-0.796686],[0.255074,-0.515580,0.817957],[0.137944,-0.537645,0.831782],[0.004395,-0.006317,-0.999969],[-0.579821,-0.018097,0.814539],[-0.483383,-0.252876,0.838069],[-0.654561,0.085269,0.751152],[0.473647,-0.332011,-0.815699],[0.437513,-0.368633,-0.820154],[0.187201,0.045625,-0.981231],[0.327158,0.128941,-0.936125],[-0.312540,-0.185827,0.931516],[-0.496109,-0.324442,0.805322],[-0.564470,-0.260720,0.783166],[-0.834773,0.501907,-0.226264],[-0.809900,0.586505,0.002075],[-0.665212,0.655568,-0.357280],[-0.414655,-0.350658,-0.839656],[-0.602832,-0.244758,-0.759362],[0.418104,-0.313913,0.852412],[0.651387,0.572497,-0.497879],[0.617298,0.585162,-0.525803],[0.700461,0.573870,-0.424238],[0.168676,-0.248482,-0.953825],[-0.429029,0.280923,0.858455],[0.829981,-0.490890,0.264748],[0.808161,-0.218970,0.546709],[0.185827,0.317881,-0.929716],[0.463057,0.389447,-0.796167],[-0.836299,0.436506,-0.331706],[-0.697043,0.494888,-0.518815],[-0.911222,0.374889,-0.170537],[0.408826,-0.034974,0.911924],[0.207221,-0.320048,-0.924436],[0.038362,-0.232765,-0.971740],[0.071596,0.991272,0.110446],[0.282998,-0.525010,-0.802637],[0.324381,-0.439039,-0.837825],[0.264534,-0.462111,-0.846431],[-0.766076,-0.301767,-0.567461],[-0.935179,0.039888,0.351878],[-0.073244,-0.300577,0.950926],[-0.478866,0.404584,0.779077],[0.113529,0.449934,-0.885800],[-0.982360,-0.132664,0.131748],[-0.999115,-0.028077,0.030610],[0.237037,0.378643,0.894650],[0.400586,0.191900,0.895901],[0.401898,0.382794,0.831813],[0.816889,-0.343638,-0.463210],[0.870266,-0.306497,-0.385571],[0.525773,0.786706,0.323435],[0.529893,0.679678,0.507157],[0.275887,0.892575,0.356609],[-0.703207,-0.292947,-0.647786],[-0.499039,-0.341014,-0.796625],[0.088961,-0.497543,-0.862850],[0.378704,-0.453597,-0.806696],[0.410901,-0.087619,-0.907437],[0.057863,0.535081,-0.842799],[-0.578631,-0.206458,-0.788995],[-0.597613,-0.206702,-0.774651],[0.523728,-0.675069,0.519547],[0.602863,-0.674551,0.426008],[-0.622486,-0.102542,-0.775842],[0.479324,0.865261,-0.146825],[0.591449,0.804743,-0.050264],[0.736229,0.608295,-0.296518],[-0.179479,0.308664,-0.934049],[-0.613086,0.108097,0.782556],[-0.672170,0.118870,0.730766],[0.637715,0.730796,0.243294],[0.594592,0.689108,0.414197],[-0.774468,-0.377178,-0.507828],[-0.840968,-0.276131,-0.465255],[-0.940306,-0.221259,-0.258522],[-0.086093,-0.102268,-0.990997],[-0.156194,-0.141972,-0.977447],[0.150395,0.865688,-0.477371],[-0.214423,0.955473,-0.202612],[-0.144230,0.979369,-0.141484],[-0.183477,0.962645,-0.199042],[0.067415,-0.938719,-0.337962],[0.214515,-0.673482,-0.707358],[0.668752,0.653340,-0.354808],[0.532273,0.713034,-0.456313],[-0.661916,0.328013,-0.673971],[-0.130436,-0.787164,0.602741],[-0.302011,-0.420392,-0.855586],[-0.346171,-0.322001,-0.881161],[-0.517289,-0.457961,-0.722922],[0.805689,0.391491,-0.444472],[0.755638,-0.440352,0.484848],[-0.866237,-0.388134,-0.314554],[-0.827479,-0.521867,-0.207129],[-0.713523,-0.465377,-0.523667],[0.996399,0.046541,0.070711],[0.958251,0.088534,0.271767],[0.959105,0.207312,0.192541],[0.959807,-0.262429,0.099399],[0.933836,-0.345073,0.093905],[0.921934,-0.358470,0.146702],[0.930509,-0.040315,-0.363964],[-0.053652,-0.121372,-0.991150],[0.961791,-0.250282,0.110813],[0.903928,-0.371136,-0.212470],[0.928343,-0.369304,0.042116],[0.581286,-0.041688,0.812586],[0.437208,0.075381,0.896176],[0.558245,-0.124516,0.820246],[-0.661550,0.020203,-0.749596],[-0.692587,-0.006104,-0.721274],[-0.943510,0.152196,0.294229],[-0.985137,0.083926,0.149785],[-0.953703,0.020081,0.300027],[0.207312,0.916410,-0.342326],[0.332377,0.890561,-0.310434],[0.065340,0.928953,-0.364360],[-0.725974,-0.226325,-0.649373],[-0.624531,-0.354137,-0.696066],[0.822901,0.189428,0.535630],[0.424909,-0.842097,0.332102],[0.065828,0.087313,-0.993988],[0.566790,-0.621479,0.540788],[0.473525,-0.726402,0.498032],[-0.936766,0.078433,0.341044],[-0.935606,0.149785,0.319651],[-0.920225,0.095004,0.379650],[-0.112247,-0.449660,0.886105],[0.577746,-0.449416,0.681295],[0.429945,-0.438887,0.788965],[-0.935453,-0.035310,0.351604],[-0.870846,0.223029,0.437971],[-0.779107,0.148961,0.608875],[0.974731,0.002655,0.223243],[0.753685,-0.204291,0.624653],[0.145970,0.907041,-0.394848],[0.109806,0.989257,-0.096164],[0.896817,0.068209,0.437025],[0.865535,-0.004608,0.500809],[0.876431,-0.053041,0.478591],[0.625965,-0.179327,-0.758904],[-0.934782,0.106845,0.338755],[0.052217,0.330607,-0.942289],[-0.429823,-0.388745,0.814905],[-0.112094,-0.653340,0.748680],[0.664266,-0.700491,0.260781],[0.786737,-0.408216,-0.462996],[0.900174,-0.259468,-0.349712],[0.244026,-0.300943,-0.921873],[0.684530,0.502518,0.528031],[0.695273,0.514176,0.502182],[-0.787011,-0.207312,-0.581011],[-0.217658,-0.490005,-0.844081],[-0.940184,0.299722,0.161809],[-0.188116,0.439375,-0.878353],[0.288339,-0.764061,0.577044],[0.365703,-0.627888,0.687002],[0.091159,0.403516,-0.910398],[0.219367,0.261605,-0.939909],[0.009369,0.349345,-0.936918],[0.414136,0.818781,-0.397504],[0.373699,0.823939,-0.425916],[0.334758,0.840663,-0.425611],[-0.627308,-0.430860,0.648671],[-0.531419,-0.414777,0.738578],[-0.864315,-0.014985,0.502670],[-0.048524,-0.147954,-0.987793],[0.090915,0.147954,0.984802],[-0.027772,0.105838,0.993988],[-0.015351,-0.289773,-0.956938],[-0.164556,-0.349925,-0.922178],[0.881375,0.197150,0.429243],[0.509232,0.860500,-0.013672],[0.539903,0.841700,-0.000397],[0.360088,0.916349,0.174963],[0.073641,0.664083,-0.744011],[0.069643,0.693899,-0.716666],[-0.528184,-0.448531,0.720939],[-0.300760,-0.814417,0.496231],[-0.423811,-0.430708,0.796777],[0.536302,0.602435,0.591083],[0.307810,0.159062,-0.938047],[0.068575,0.045808,-0.996582],[0.304056,-0.883206,0.357006],[0.251289,-0.948912,0.190802],[-0.181829,0.120945,0.975860],[0.020386,0.051729,0.998444],[0.051515,0.030610,0.998199],[0.839106,-0.178747,0.513688],[0.831416,-0.298227,0.468825],[0.925016,-0.199438,0.323283],[0.907010,-0.193701,0.373852],[0.350627,0.121799,0.928526],[0.263771,0.324992,0.908170],[0.432875,0.309122,0.846767],[0.367962,-0.351604,0.860775],[0.831690,-0.320444,0.453383],[0.959624,-0.017701,-0.280648],[0.998291,-0.042726,-0.039613],[0.995453,-0.080142,-0.051149],[-0.282205,0.196142,0.939055],[-0.312143,-0.116398,0.942839],[-0.463546,0.591845,-0.659383],[-0.149480,-0.358165,-0.921598],[0.504288,0.452864,0.735221],[-0.840632,-0.180334,-0.510636],[-0.913572,-0.368511,-0.171911],[-0.894620,-0.294961,-0.335551],[-0.630940,0.599048,-0.492935],[-0.627430,0.437086,-0.644398],[-0.770653,0.388226,-0.505295],[0.870632,0.220862,0.439528],[0.501358,0.832667,0.235054],[-0.920621,0.173406,0.349742],[-0.113041,0.456465,-0.882504],[-0.169286,0.595355,-0.785394],[-0.124271,0.536882,-0.834437],[-0.693838,0.314768,-0.647664],[-0.523331,0.290017,-0.801233],[-0.436354,0.428938,-0.790918],[0.196936,0.866695,-0.458266],[0.743248,0.013794,-0.668813],[-0.138493,0.109073,-0.984313],[0.815363,-0.255989,0.519272],[0.838130,0.302896,-0.453597],[0.641560,0.478774,-0.599261],[-0.814570,-0.265267,-0.515793],[0.848842,0.022889,0.528123],[0.851375,0.328501,0.408918],[0.790887,0.310038,0.527573],[0.326762,-0.116886,0.937834],[0.441054,0.470534,-0.764214],[0.328532,0.539842,-0.774987],[0.814508,0.503250,0.288614],[0.869930,0.490127,0.054048],[0.131779,0.646046,-0.751793],[-0.101962,0.257790,-0.960784],[0.134312,-0.284433,0.949217],[0.249825,-0.425825,0.869594],[0.046510,0.846614,-0.530106],[0.155950,-0.244087,-0.957121],[0.015748,-0.204413,-0.978729],[0.706320,0.336924,0.622517],[0.514634,0.097842,0.851772],[0.494705,-0.089480,0.864406],[-0.559496,-0.269753,0.783685],[-0.550920,-0.328074,0.767327],[0.960936,-0.118351,0.250130],[-0.124119,-0.127842,-0.983978],[-0.208563,-0.263894,-0.941710],[0.940947,-0.337199,0.029145],[0.933988,-0.326762,-0.144475],[0.951537,-0.307230,-0.011078],[-0.056246,0.583331,-0.810266],[-0.003388,0.483474,-0.875332],[0.868679,-0.373882,-0.324870],[-0.742637,0.047060,-0.667989],[-0.921506,-0.260292,0.288156],[-0.893124,-0.194617,0.405469],[-0.944212,-0.175726,0.278420],[-0.186804,0.473525,0.860714],[-0.122745,0.251411,0.960051],[-0.114750,0.445448,0.887906],[-0.543077,0.301920,0.783471],[-0.435560,0.433882,0.788659],[0.826289,-0.283395,-0.486740],[-0.493027,-0.431989,-0.755150],[-0.766167,-0.638508,0.072268],[-0.862331,-0.383557,0.330485],[-0.891293,-0.229652,0.390912],[-0.861782,-0.456587,0.220954],[-0.465194,-0.439070,-0.768609],[0.816523,-0.294107,-0.496750],[-0.866604,-0.368999,-0.335826],[0.098270,0.819025,-0.565233],[0.791528,-0.105747,-0.601856],[0.949644,-0.133946,-0.283212],[0.860653,-0.185827,-0.474044],[-0.063021,-0.658925,0.749535],[-0.070009,-0.953185,0.294076],[0.383648,-0.444655,0.809351],[0.389599,-0.345378,0.853755],[0.586535,0.414502,-0.695761],[0.785028,0.239204,-0.571368],[0.915830,0.297189,0.269936],[0.900845,0.292367,0.320902],[0.804529,0.548875,0.226691],[0.899899,-0.238380,0.365093],[0.928678,-0.138157,0.344127],[0.217383,0.898495,0.381329],[0.270760,0.893277,0.358745],[0.685171,-0.507309,0.522629],[0.339671,0.243934,0.908322],[0.101474,0.822382,0.559801],[0.986908,-0.107242,0.120304],[0.865963,-0.230903,0.443556],[0.886685,-0.246254,0.391278],[0.419660,-0.263314,0.868618],[-0.973632,-0.182318,0.137028],[-0.957305,-0.288766,-0.011475],[0.670949,-0.288766,0.682913],[0.520005,0.456557,-0.721885],[0.832667,0.314707,-0.455641],[-0.282296,-0.207648,0.936552],[-0.469771,-0.185400,0.863063],[-0.283761,0.030763,0.958373],[0.011109,-0.397778,0.917386],[0.893765,-0.366619,-0.258278],[-0.844447,0.357921,0.398450],[-0.684744,-0.677328,-0.268899],[-0.359203,0.795892,-0.487350],[-0.503189,0.656575,-0.561815],[-0.271096,0.743339,-0.611469],[-0.240791,0.322428,0.915433],[-0.576556,0.521897,0.628620],[-0.481338,0.457381,0.747703],[-0.452528,-0.510392,-0.731223],[-0.342448,-0.359050,-0.868191],[-0.443861,-0.350627,-0.824641],[0.421125,-0.241005,-0.874386],[0.454695,-0.255684,-0.853145],[-0.921262,-0.375164,0.102268],[-0.902310,-0.385846,-0.192145],[-0.984680,0.039460,0.169744],[-0.997314,0.037080,-0.062990],[-0.962767,-0.154576,-0.221625],[0.165807,0.513016,0.842189],[0.814356,0.065310,-0.576647],[0.966186,-0.257668,-0.005646],[0.957945,-0.272713,-0.089084],[-0.115329,0.776971,-0.618854],[-0.933744,-0.169225,-0.315348],[-0.735405,-0.551714,-0.393414],[-0.697989,-0.325816,-0.637654],[0.939726,-0.066500,0.335307],[0.933256,-0.159001,0.322062],[-0.934172,0.126408,-0.333628],[0.901639,0.055635,0.428877],[0.985717,0.010010,0.168065],[0.466140,0.868068,0.170751],[-0.781518,-0.371746,-0.500992],[0.000885,0.951933,0.306223],[-0.322977,0.698599,0.638447],[-0.417035,0.430647,0.800348],[0.373547,-0.182195,-0.909513],[0.222510,-0.375011,-0.899899],[-0.571276,-0.373974,-0.730583],[-0.675100,-0.501389,-0.541124],[-0.496597,-0.487960,-0.717795],[0.911008,-0.409925,0.044771],[0.883541,-0.459578,0.090152],[0.500595,0.861080,0.088870],[0.767541,0.631947,0.107181],[-0.411237,-0.564287,-0.715842],[-0.473647,-0.876186,0.088961],[0.577929,0.014466,0.815943],[0.454634,0.079470,0.887112],[-0.074129,0.019257,-0.997040],[-0.187445,-0.024995,-0.981933],[-0.904752,-0.395581,-0.157750],[-0.669851,-0.507248,-0.542161],[-0.802210,-0.548326,-0.236152],[-0.951811,0.187445,-0.242683],[-0.990844,-0.083651,-0.105716],[-0.974792,-0.044801,0.218451],[0.918455,-0.202185,0.339854],[0.966216,0.030396,0.255837],[0.931272,0.089541,0.353130],[0.501114,-0.300943,-0.811335],[0.182165,-0.327555,-0.927091],[0.945708,-0.310251,0.096500],[-0.993683,-0.072085,0.085788],[-0.990875,-0.098727,0.091433],[-0.975005,-0.102573,0.197028],[-0.027253,0.959990,-0.278603],[-0.111972,0.896054,-0.429579],[0.217872,-0.291665,-0.931333],[0.346141,-0.339305,-0.874660],[0.432600,-0.257302,0.864071],[0.009857,0.399182,0.916807],[0.986389,-0.157445,0.046968],[0.978271,-0.187139,0.089114],[-0.944975,-0.042909,0.324259],[-0.888272,-0.037141,0.457747],[-0.866115,-0.015961,0.499557],[0.292215,-0.262551,0.919584],[-0.641102,0.144078,0.753777],[-0.658010,0.024720,0.752586],[-0.722892,-0.109256,0.682211],[-0.583728,-0.571123,0.577074],[-0.177313,-0.691641,0.700095],[-0.429609,-0.482253,0.763421],[-0.030946,-0.228889,0.972930],[-0.092624,-0.445357,0.890530],[0.279885,0.227515,0.932676],[0.123936,0.167058,0.978118],[-0.286752,-0.559465,-0.777642],[0.161412,-0.492111,-0.855403],[-0.092868,0.670095,-0.736412],[0.200476,0.685751,-0.699637],[-0.198645,0.108310,-0.974059],[-0.067934,0.151219,-0.986145],[0.557726,-0.305063,-0.771905],[0.811609,-0.281198,-0.512040],[-0.501236,-0.699240,0.509690],[0.845637,-0.436110,0.307657],[0.903592,-0.337443,0.263863],[0.920713,-0.301065,0.248207],[0.227210,0.912992,0.338755],[0.799036,0.335398,-0.499008],[0.713157,0.353221,-0.605457],[0.953581,-0.129612,0.271706],[0.997559,-0.024812,-0.065004],[0.957549,-0.251015,-0.141606],[-0.391247,-0.229926,-0.891079],[-0.913541,-0.263100,0.310160],[-0.593707,-0.108341,0.797327],[-0.309580,-0.354198,-0.882412],[0.116062,-0.314432,-0.942137],[0.449629,-0.105747,0.886898],[-0.992553,-0.117924,-0.029572],[-0.894406,0.363140,0.260964],[0.567614,0.803919,0.177374],[0.680319,0.688711,0.250557],[0.082339,-0.513565,-0.854060],[0.026185,-0.575243,-0.817530],[-0.172826,-0.342112,-0.923612],[-0.104801,-0.402966,-0.909177],[-0.180548,0.254036,-0.950163],[-0.934324,-0.325510,-0.145085],[-0.943754,-0.211219,0.254341],[-0.669515,-0.424360,-0.609607],[-0.840938,-0.331248,-0.427869],[0.906461,0.132481,0.400922],[0.967132,-0.250801,-0.041627],[0.979980,-0.173956,-0.096591],[0.955046,-0.101566,0.278512],[0.975494,-0.062380,0.210974],[0.981811,-0.049959,0.183020],[-0.943358,-0.327830,0.050935],[0.571734,-0.200568,-0.795526],[0.628773,0.007172,-0.777520],[0.274972,0.640919,-0.716636],[-0.659230,-0.523270,0.539933],[-0.656728,-0.688925,0.306619],[-0.996948,0.029633,-0.072115],[0.570025,0.721091,-0.393750],[0.481857,0.822596,-0.301828],[-0.994201,0.033235,-0.102115],[-0.982727,-0.133061,0.128452],[0.885403,-0.439589,0.150853],[-0.949767,0.101047,0.296121],[-0.943236,0.043306,0.329173],[0.881954,0.285226,-0.375195],[-0.335917,-0.464003,-0.819636],[0.053682,-0.237129,-0.969970],[0.053194,-0.250832,-0.966552],[0.991974,0.118625,-0.043458],[0.683096,-0.215766,0.697684],[0.681783,0.343883,0.645650],[0.576495,0.675192,0.460128],[-0.794214,-0.253914,0.551988],[-0.213294,-0.447798,0.868313],[0.033876,-0.160009,0.986511],[0.914945,-0.132664,0.381115],[0.738701,-0.213202,0.639393],[0.371166,-0.413800,0.831233],[0.488998,-0.310800,-0.814997],[0.481216,-0.297739,-0.824458],[0.577776,-0.265633,-0.771722],[0.448897,-0.372967,-0.812006],[0.594043,-0.276315,-0.755455],[0.804865,-0.248451,0.538896],[0.796075,-0.254433,0.549058],[0.856319,-0.304361,0.417158],[0.167211,0.883694,0.437086],[-0.459731,0.881588,0.106784],[-0.514512,0.844569,0.148198],[0.515305,-0.434004,-0.738945],[-0.127415,-0.672201,0.729301],[0.447829,0.698050,-0.558672],[0.338542,0.840663,-0.422651],[0.182165,0.787622,-0.588580],[0.451125,-0.321329,-0.832575],[0.472823,-0.351299,-0.808069],[-0.347118,-0.535142,-0.770135],[0.603473,0.249641,0.757286],[0.487106,-0.357280,-0.796899],[0.757561,-0.370617,-0.537309],[-0.239601,-0.513321,0.824030],[-0.216620,-0.349376,0.911588],[-0.156407,-0.493851,0.855342],[0.561876,0.744194,0.361126],[0.552416,0.688955,0.469161],[0.513016,0.642476,0.569201],[0.906888,0.038667,0.419538],[-0.542222,0.045137,0.838984],[0.603748,0.741874,0.291696],[0.580523,0.799188,0.155766],[0.477523,0.878445,0.016633],[0.941832,-0.308176,0.133854],[0.932524,-0.357707,-0.049196],[-0.548875,-0.469649,-0.691458],[-0.468673,-0.170324,-0.866756],[0.366314,0.920499,0.135777],[0.157414,0.972839,0.169561],[0.442793,0.881527,0.163762],[0.926115,0.047334,0.374218],[0.816553,-0.009644,0.577166],[0.781365,-0.057741,0.621357],[-0.206122,0.877102,-0.433760],[-0.930876,-0.033753,0.363750],[-0.942259,0.133030,0.307230],[-0.928709,0.001160,0.370769],[-0.075747,0.125828,-0.989135],[0.123020,0.606891,-0.785180],[0.009919,0.718619,-0.695303],[0.202399,0.759453,-0.618244],[-0.958831,-0.064364,0.276467],[-0.559496,-0.172582,-0.810633],[-0.513108,-0.451674,-0.729850],[-0.298929,0.012787,0.954161],[-0.365917,-0.021149,0.930387],[0.964568,-0.263710,0.001099],[0.897000,-0.405896,-0.174871],[-0.264260,0.957976,0.111454],[-0.535508,0.821284,0.196570],[0.162847,-0.395184,-0.904019],[0.139897,-0.336222,-0.931303],[-0.257851,-0.207892,0.943541],[0.155797,0.018036,0.987610],[0.922727,-0.057741,0.381024],[0.831843,-0.074557,0.549913],[0.953185,-0.128239,0.273751],[0.219703,0.966765,0.130558],[0.337230,0.923856,0.180883],[0.479751,0.666005,0.571154],[0.349895,0.723624,0.594897],[0.224677,-0.284738,-0.931883],[0.249947,-0.296579,-0.921690],[0.010712,-0.336528,-0.941588],[0.650960,-0.671499,0.353984],[0.645466,-0.663778,0.377819],[-0.358959,-0.257851,0.897000],[-0.634083,-0.305521,-0.710318],[0.909207,-0.264168,0.321726],[0.998627,-0.017792,-0.048860],[0.499924,-0.090579,-0.861293],[0.581256,-0.199896,-0.788751],[-0.107089,-0.155248,-0.982025],[-0.496170,-0.265542,-0.826594],[-0.485244,-0.184118,-0.854732],[0.149449,-0.665822,0.730949],[0.054537,-0.263558,0.963073],[0.927152,-0.166509,0.335582],[0.332621,0.805567,0.490310],[0.238350,0.846553,0.475906],[0.453810,0.762108,0.461745],[-0.910276,-0.387219,0.146306],[0.034913,0.560533,0.827387],[0.770318,0.636158,0.043641],[0.386700,0.075564,0.919065],[0.285470,0.044160,0.957366],[-0.647389,-0.353618,-0.675130],[-0.795618,-0.108036,-0.596026],[0.370678,0.437941,0.818995],[0.228919,0.490951,0.840541],[-0.848170,-0.529649,0.003082],[-0.906339,-0.416669,-0.069948],[0.306406,0.933073,0.188299],[0.267922,0.932340,0.242683],[0.987548,0.155217,-0.024384],[0.957335,0.119907,-0.262886],[0.481216,0.835627,0.264840],[-0.930509,-0.358287,-0.075900],[0.237892,-0.164800,0.957183],[0.478988,0.875942,0.057161],[0.680441,0.721366,0.128636],[0.362590,0.383862,0.849178],[0.521989,0.189611,0.831599],[0.412976,0.669118,0.617786],[0.537187,0.403363,0.740745],[-0.437239,-0.090304,-0.894772],[-0.927732,0.002655,-0.373211],[-0.946654,0.170812,0.273141],[-0.952178,0.155889,0.262673],[-0.963805,0.126286,0.234718],[-0.938810,0.067629,0.337657],[-0.764092,0.644520,-0.027406],[0.057802,0.962981,-0.263253],[0.222053,0.907651,0.356151],[0.121555,-0.455458,0.881893],[-0.137303,-0.143529,0.980071],[-0.168340,0.204749,-0.964202],[0.461013,-0.250404,-0.851314],[-0.197913,-0.286691,-0.937346],[0.594714,-0.194983,-0.779900],[0.470962,-0.429914,-0.770257],[0.446028,-0.571642,-0.688650],[0.093661,-0.068270,-0.993255],[-0.543107,-0.404584,-0.735710],[-0.490036,-0.320597,-0.810572],[0.086398,0.937834,0.336070],[-0.532060,-0.362346,-0.765221],[-0.569414,-0.269448,-0.776605],[0.129490,0.664663,-0.735801],[0.035005,0.716544,-0.696646],[0.240486,0.959288,0.147923],[0.972594,0.186499,-0.138615],[-0.979888,0.020753,0.198431],[-0.991943,-0.114597,0.053713],[0.373638,0.799463,0.470290],[-0.707755,0.381542,0.594501],[-0.043306,-0.534013,0.844325],[-0.020753,-0.487808,-0.872677],[0.460158,-0.294107,-0.837672],[0.820643,-0.361400,-0.442579],[0.799097,-0.397137,-0.451338],[0.883053,-0.229163,-0.409467],[-0.878994,0.169988,0.445479],[0.510910,-0.315897,-0.799463],[0.126011,-0.986145,0.107730],[0.334666,-0.220069,-0.916257],[-0.997650,-0.067751,0.008545],[-0.956816,0.109684,0.269143],[-0.047639,0.088290,-0.994934],[0.551622,-0.098941,0.828181],[-0.943205,-0.042299,0.329417],[-0.959014,-0.036653,0.280892],[0.018769,0.803827,0.594531],[0.521928,-0.217109,-0.824885],[0.394177,-0.180822,-0.901059],[0.321848,-0.256386,-0.911374],[0.939299,0.328684,0.098361],[0.978210,0.008728,0.207404],[-0.320444,0.366436,-0.873501],[-0.449721,0.221564,-0.865230],[-0.288491,0.357402,0.888241],[-0.346873,0.296945,0.889645],[-0.491165,0.303629,0.816401],[-0.933622,-0.155065,0.322916],[-0.923154,-0.143010,0.356792],[-0.955412,-0.132084,0.263985],[-0.910276,-0.054201,0.410382],[-0.713950,0.486038,-0.503952],[-0.773370,-0.252174,-0.581622],[-0.751610,-0.372326,-0.544450],[-0.483383,-0.249123,-0.839167],[-0.597156,-0.215094,-0.772729],[-0.720420,-0.230323,-0.654134],[0.169744,0.869106,0.464553],[0.001129,0.873135,-0.487472],[-0.134342,0.877926,-0.459517],[0.068331,0.905942,-0.417798],[0.526414,-0.274117,0.804804],[0.345042,-0.354289,0.869106],[0.549974,-0.301645,0.778771],[0.475356,-0.265908,-0.838618],[0.827204,-0.270547,-0.492447],[0.919584,-0.285134,0.270241],[0.689810,-0.624409,-0.366344],[0.101382,0.855922,0.507035],[0.497055,0.441267,0.747093],[0.469955,0.429548,0.771081],[-0.379315,-0.283090,-0.880856],[-0.386456,-0.336039,-0.858882],[-0.572069,-0.212378,-0.792199],[0.331706,-0.470779,-0.817499],[0.312449,-0.408032,-0.857814],[0.373821,-0.472030,-0.798364],[-0.402539,0.199164,0.893460],[-0.358837,0.331095,0.872677],[0.933866,-0.192358,0.301401],[0.992401,-0.114780,0.044191],[0.829829,0.289407,0.477035],[0.780633,0.371654,0.502457],[-0.334849,-0.022858,-0.941954],[0.473037,-0.312967,-0.823542],[0.402478,-0.174078,-0.898709],[0.613239,-0.349254,-0.708457],[0.464248,0.877041,0.123447],[0.295206,0.938932,0.176702],[0.290872,0.951323,0.101810],[-0.384686,0.855953,-0.345470],[-0.358867,0.885281,-0.295724],[0.616504,-0.331004,-0.714347],[0.963439,0.267800,-0.002686],[0.355449,-0.929197,0.100925],[-0.969176,-0.121311,-0.214331],[0.301462,-0.466964,-0.831294],[0.495315,-0.375164,-0.783502],[-0.304056,0.040834,-0.951750],[-0.895413,-0.223121,0.385235],[-0.897885,-0.217170,0.382855],[-0.900723,-0.255715,0.351054],[0.218696,0.273965,0.936521],[0.087436,0.244972,0.965575],[0.931028,0.173284,0.321146],[0.916074,-0.054262,0.397229],[-0.990722,0.010987,0.135350],[-0.002197,0.850887,-0.525315],[0.119938,0.829035,-0.546129],[-0.272591,0.757256,-0.593493],[0.109439,-0.321574,0.940519],[-0.395276,0.898984,0.188482],[-0.537095,0.809137,0.238319],[0.374950,-0.315958,0.871517],[0.492111,-0.206030,0.845759],[0.295877,-0.399792,0.867519],[-0.414563,-0.351238,-0.839503],[0.997040,-0.056642,-0.051637],[0.997742,-0.032136,0.058718],[0.333506,-0.232826,-0.913511],[0.470748,-0.426923,-0.772057],[0.822443,-0.368999,-0.432875],[-0.976348,-0.215644,-0.015412],[-0.658956,-0.417341,-0.625721],[-0.575671,-0.320688,-0.752129],[-0.584674,0.279519,0.761559],[-0.697134,0.030915,0.716239],[-0.408155,-0.590228,-0.696402],[0.197607,0.407422,-0.891568],[0.147252,0.373913,-0.915677],[0.247047,-0.473251,-0.845546],[-0.098025,0.858821,-0.502792],[-0.197272,0.839991,-0.505417],[-0.492355,-0.009430,0.870327],[0.909146,-0.291940,0.296884],[0.815699,-0.412519,0.405499],[-0.981719,-0.046419,0.184454],[-0.943815,-0.324320,0.063265],[-0.935972,-0.102206,0.336863],[-0.966399,-0.256600,-0.014130],[-0.273812,0.956908,0.096347],[-0.398572,0.907743,0.130863],[-0.106082,-0.177770,-0.978332],[-0.331614,-0.106357,-0.937376],[-0.913572,-0.181829,0.363720],[-0.571642,-0.150517,-0.806543],[0.956572,0.102145,0.272988],[-0.494156,0.413190,0.764885],[-0.581469,0.279855,0.763878],[-0.863155,-0.020386,0.504471],[-0.794977,0.029695,0.605884],[-0.776849,-0.041322,0.628315],[0.862819,-0.030457,0.504532],[0.797418,-0.247566,-0.550279],[0.727805,-0.278817,-0.626514],[0.679983,-0.252510,-0.688345],[-0.963439,0.158330,0.215979],[-0.975249,-0.183874,0.122593],[-0.978881,-0.171819,0.110599],[-0.024445,0.042085,-0.998810],[-0.918241,-0.394971,-0.028565],[-0.780572,-0.046846,-0.623249],[-0.544481,0.124363,-0.829463],[-0.340037,0.232917,-0.911100],[0.545885,0.603961,-0.580676],[0.485183,0.581469,-0.653035],[-0.820338,-0.204260,-0.534135],[-0.974181,-0.169683,-0.148747],[-0.978545,-0.094028,-0.183172],[-0.997620,-0.037690,-0.057619],[0.429701,-0.342601,-0.835414],[-0.826197,-0.330515,-0.456191],[-0.765923,-0.226691,-0.601611],[0.849025,-0.035920,-0.527085],[0.875057,0.123997,-0.467818],[0.908231,-0.155675,-0.388379],[0.889676,-0.033357,0.455336],[0.946440,-0.275185,0.168706],[0.856777,-0.329234,-0.396832],[0.901791,-0.265694,-0.340770],[-0.407300,0.885983,0.221564],[-0.510117,0.834407,0.208625],[-0.566515,0.803919,0.180975],[-0.732231,0.658589,0.173345],[0.308786,0.525834,0.792535],[0.430677,0.486373,0.760186],[-0.793939,0.602954,0.077914],[0.396008,-0.479446,0.783105],[0.034516,0.914945,-0.402020],[-0.234474,0.949675,0.207617],[-0.191473,0.943419,0.270669],[-0.945860,0.251503,0.205054],[-0.972289,-0.000275,0.233680],[-0.942686,-0.067476,0.326701],[-0.876614,-0.170263,-0.450026],[-0.840815,-0.354442,-0.409101],[-0.869381,-0.120609,-0.479141],[-0.841090,0.458907,0.286233],[-0.879238,0.475295,0.031373],[-0.505295,-0.274331,-0.818140],[-0.149693,-0.388714,-0.909085],[0.143468,0.967895,0.206244],[-0.026002,0.986450,0.161901],[0.200293,0.971404,0.127415],[0.519303,0.838740,0.163610],[-0.454085,-0.109958,-0.884121],[-0.867550,-0.261757,0.422834],[-0.946074,-0.110050,0.304605],[-0.930174,-0.028901,0.365947],[-0.881771,0.100375,0.460829],[0.328806,0.933958,0.139866],[0.379009,0.918973,0.108524],[0.767266,-0.328745,0.550615],[0.935209,-0.154088,0.318735],[-0.530442,-0.249428,-0.810175],[-0.437635,-0.386456,-0.811823],[-0.584674,-0.320231,-0.745354],[-0.577563,0.299081,0.759545],[0.430433,-0.383435,-0.817103],[0.392193,-0.457503,-0.797998],[0.892209,-0.389996,-0.227699],[0.964995,-0.185461,0.185247],[0.389569,0.916379,0.091861],[0.697714,0.690176,0.191839],[-0.184820,-0.277779,-0.942686],[-0.185247,-0.338023,-0.922697],[-0.420087,0.146275,0.895596],[-0.594226,0.334086,0.731590],[0.504501,-0.232429,-0.831507],[0.975341,-0.077975,-0.206366],[0.988281,-0.076846,-0.131657],[0.449019,0.506577,0.736015],[-0.192816,-0.316538,-0.928739],[0.792871,-0.165685,-0.586383],[-0.948790,0.091403,-0.302377],[0.543657,-0.499741,0.674276],[0.992950,-0.100864,-0.062136],[0.992584,-0.095584,0.074953],[-0.742149,0.286477,0.605884],[-0.340648,0.923765,-0.174902],[-0.922697,-0.283853,0.260842],[-0.843135,-0.534165,-0.061312],[-0.957396,-0.272744,0.094516],[-0.251259,-0.147710,-0.956572],[0.185217,-0.131565,-0.973815],[0.255165,0.681509,-0.685842],[0.599384,0.779717,-0.180883],[0.746117,0.541704,-0.387097],[-0.714560,0.321329,0.621357],[-0.630268,0.460952,0.624683],[0.020905,0.178564,-0.983673],[0.018281,0.408460,-0.912564],[-0.541551,-0.224830,-0.810022],[-0.661489,-0.303385,-0.685781],[-0.231544,-0.320292,-0.918546],[-0.518509,-0.240791,-0.820429],[0.315195,0.836360,0.448469],[-0.994903,0.089114,0.046754],[-0.969604,0.165258,0.180242],[0.097812,-0.124027,-0.987426],[0.439070,0.875607,0.201178],[0.369488,0.898160,0.238166],[-0.558641,0.435469,-0.705863],[-0.928983,0.202460,0.309732],[-0.886013,0.329264,0.326365],[-0.950285,0.214270,0.225867],[0.545396,-0.334452,-0.768517],[0.261177,0.948973,0.176580],[0.456984,0.872250,0.174078],[-0.151067,-0.349467,-0.924680],[-0.463637,-0.542039,0.700858],[-0.509232,-0.727103,0.460341],[0.020692,0.359050,-0.933073],[-0.136570,0.246132,-0.959563],[-0.177465,-0.363140,-0.914670],[0.190985,0.635639,-0.747948],[0.281777,0.605914,-0.743919],[-0.956114,0.037019,-0.290567],[0.815180,-0.191076,0.546770],[0.809748,0.019715,0.586413],[0.966735,-0.146336,-0.209723],[0.833644,-0.328593,-0.443861],[0.958007,-0.286264,-0.014679],[-0.067354,0.847133,-0.527055],[-0.154302,0.848598,-0.505966],[0.465468,-0.258003,-0.846614],[0.158055,-0.110538,-0.981201],[0.948057,-0.317118,-0.023774],[0.957213,-0.285073,0.049135],[0.927885,-0.371990,-0.024934],[0.451338,0.844081,0.289438],[0.676931,0.636036,0.370342],[-0.492782,-0.243843,0.835261],[-0.470138,-0.068484,0.879910],[0.299722,-0.189825,-0.934935],[0.435041,-0.185156,-0.881161],[0.106388,-0.010132,-0.994263],[0.085940,0.000092,-0.996277],[0.038240,-0.080691,-0.996002],[-0.116794,0.514756,0.849330],[-0.094028,0.262398,0.960356],[0.813715,-0.518845,0.261940],[0.643941,-0.161809,-0.747734],[0.563585,0.005066,-0.826014],[0.290231,0.946226,0.142827],[-0.016602,0.999847,-0.004700],[0.858486,-0.486282,-0.162786],[0.495926,-0.276711,-0.823054],[-0.948088,0.061068,0.312021],[-0.922605,0.307688,0.232612],[0.820215,0.401990,0.406934],[-0.285775,0.802942,0.523057],[0.505020,0.505814,0.699332],[0.895779,-0.119663,-0.428053],[-0.877255,-0.237587,-0.417035],[-0.331309,0.099857,0.938200],[-0.321024,-0.058809,0.945219],[0.481094,-0.568560,-0.667257],[0.398724,-0.488205,-0.776299],[0.377483,0.925962,-0.005493],[0.393170,0.919462,0.001190],[0.489975,0.560686,-0.667470],[0.562853,0.557512,-0.610187],[0.700125,0.105045,0.706229],[0.185156,0.444777,0.876247],[0.079897,0.384350,0.919706],[0.340434,-0.322886,-0.883053],[0.448134,0.881649,0.147740],[0.519272,0.321665,0.791742],[0.297464,0.645711,0.703238],[0.935362,0.160955,0.314859],[0.868038,0.461013,0.184179],[0.930784,0.292245,0.219489],[0.938841,0.278817,0.201941],[0.683370,0.263955,0.680624],[-0.320200,0.524094,0.789148],[-0.388134,0.460097,0.798517],[-0.272530,0.490982,0.827418],[0.049837,-0.172826,-0.983673],[-0.039094,-0.244209,-0.968902],[0.226722,0.970672,0.079775],[0.340800,-0.476058,-0.810663],[0.315226,0.741722,0.591998],[0.385205,0.886746,0.255440],[0.479171,0.787683,0.387188],[0.310465,-0.490616,0.814173],[0.446303,-0.288217,0.847163],[0.563646,0.817927,0.115238],[0.638722,0.740898,0.207526],[-0.987945,-0.095859,-0.121525],[-0.968657,-0.218238,0.118564],[0.876034,-0.473006,0.093844],[0.909024,-0.415143,0.035585],[-0.032167,0.381573,-0.923765],[-0.763054,-0.580157,0.284829],[-0.799280,-0.555315,0.229591],[0.756127,0.311197,0.575640],[0.801569,-0.073336,0.593371],[0.533921,-0.265175,0.802850],[0.651723,-0.333506,0.681143],[0.110752,0.263466,-0.958251],[-0.027924,0.283334,-0.958586],[0.683035,0.697256,0.217383],[0.689138,0.528520,0.495682],[0.157140,0.475051,-0.865810],[-0.001617,0.448561,-0.893735],[0.102268,0.983703,0.147801],[0.282876,0.931120,0.230079],[0.420179,0.883328,0.207648],[0.049532,0.279336,-0.958892],[-0.930235,-0.090518,0.355571],[-0.809839,-0.233894,-0.537950],[-0.889126,-0.411359,-0.200415],[-0.230537,-0.082522,-0.969543],[-0.947386,-0.183721,-0.262032],[-0.936888,-0.308603,-0.164281],[-0.906735,-0.237831,-0.348186],[0.413160,0.895718,0.164190],[0.280984,0.892087,0.353801],[0.352062,0.921140,0.165899],[0.328684,0.935545,0.129093],[0.056887,0.824244,0.563341],[0.193670,-0.308054,-0.931425],[0.959624,0.235755,0.153294],[0.992187,0.061098,0.108554],[0.972472,0.027833,0.231330],[-0.512497,0.590136,-0.623737],[0.507828,-0.323527,0.798364],[0.488693,-0.319712,0.811731],[-0.941191,-0.336650,-0.028016],[0.560686,0.801813,0.206580],[0.991272,-0.030580,0.128147],[-0.953307,-0.075350,0.292367],[0.034181,0.811365,-0.583483],[0.149358,0.769921,-0.620380],[-0.294504,0.456343,-0.839625],[-0.372845,-0.197851,-0.906522],[-0.441816,-0.271523,-0.854976],[-0.122471,0.185797,-0.974914],[-0.084506,0.103580,-0.990997],[-0.531663,0.431684,-0.728660],[-0.647053,0.487197,-0.586444],[-0.158452,-0.340526,-0.926756],[-0.252846,-0.375042,-0.891842],[0.170202,-0.382519,-0.908109],[-0.014313,-0.511704,-0.859004],[0.041627,-0.530259,-0.846797],[-0.916471,-0.145543,-0.372631],[-0.878506,-0.303751,-0.368664],[0.062563,-0.113895,-0.991516],[0.161931,-0.167974,-0.972381],[0.099216,-0.090182,-0.990966],[-0.881771,0.340190,-0.326640],[-0.804041,0.334483,-0.491501],[0.922391,-0.260964,-0.284707],[0.971831,-0.177343,-0.155004],[0.980621,-0.069582,-0.183111],[-0.778710,-0.398755,-0.484298],[-0.813593,-0.286721,-0.505783],[-0.149541,0.573901,-0.805109],[0.009583,0.647938,-0.761589],[-0.530931,-0.046205,0.846126],[-0.415174,0.071627,0.906888],[-0.329783,-0.042512,0.943083],[-0.029298,0.179632,0.983276],[-0.907834,0.298135,0.294748],[-0.888974,0.096988,0.447493],[0.745384,-0.022309,0.666219],[0.900571,-0.341899,-0.268319],[0.805994,-0.366527,-0.464736],[0.187628,0.058687,-0.980468],[-0.228065,0.053652,-0.972137],[0.909574,0.099185,0.403485],[0.938902,0.108097,0.326670],[0.350566,0.080905,0.933012],[0.524369,-0.278146,0.804743],[-0.636097,-0.277963,0.719779],[-0.801660,-0.145665,0.579730],[-0.941313,-0.178259,0.286538],[0.213202,0.609973,-0.763176],[0.296823,0.944365,0.141453],[0.370434,0.927305,0.053468],[-0.452284,0.744469,-0.491073],[0.912442,-0.336650,-0.232459],[0.093539,-0.940916,0.325449],[-0.005036,-0.981628,-0.190588],[0.154637,-0.490158,-0.857784],[-0.836940,-0.308512,0.451979],[0.748863,0.637226,-0.181951],[0.798364,0.594440,-0.095859],[0.864040,-0.220985,-0.452284],[-0.391339,-0.356304,-0.848445],[-0.935728,-0.351573,0.027802],[-0.037812,0.620472,-0.783288],[-0.359752,0.602191,-0.712668],[-0.994812,-0.100894,0.010895],[-0.752434,0.657613,0.036561],[-0.738884,0.663045,0.119816],[0.407239,0.575854,0.708884],[0.451064,0.709830,0.540941],[-0.107883,0.096133,-0.989502],[-0.614307,-0.467910,-0.635334],[-0.172582,-0.329447,-0.928251],[-0.396008,-0.293924,-0.869900],[0.335612,0.923429,0.186071],[0.240761,0.958373,0.153264],[-0.009156,0.327952,-0.944639],[-0.156713,0.609088,0.777429],[0.973113,-0.176519,-0.147893],[0.983581,-0.126255,-0.128727],[-0.099948,0.325510,-0.940214],[0.233497,-0.443648,0.865230],[-0.262673,-0.650441,0.712668],[-0.388531,-0.364879,0.846095],[-0.880093,0.312540,-0.357372],[0.725852,-0.199683,0.658193],[-0.984497,0.027467,-0.173101],[-0.918058,-0.201178,0.341502],[-0.949950,-0.127873,0.284982],[0.890805,0.160405,0.425062],[0.740867,0.090335,0.665517],[-0.902921,-0.286233,-0.320505],[-0.857997,-0.194281,-0.475417],[-0.327250,-0.258827,-0.908780],[0.062960,-0.056063,-0.996429],[-0.173437,0.839686,-0.514603],[-0.083743,0.857479,-0.507584],[0.663045,-0.479385,0.574877],[0.381603,-0.276955,-0.881832],[-0.013123,-0.297220,-0.954711],[0.920530,-0.160192,0.356304],[0.902585,0.038057,0.428816],[0.940092,-0.306558,0.148930],[-0.909146,0.116031,0.399945],[-0.949278,0.173376,0.262246],[-0.895077,0.234046,0.379528],[-0.296579,-0.565905,-0.769250],[-0.969115,-0.081545,0.232612],[-0.991394,0.022279,0.128880],[-0.471908,-0.342753,-0.812250],[-0.372021,-0.498856,-0.782769],[-0.443007,-0.428327,-0.787561],[-0.370617,-0.340220,-0.864193],[0.598895,-0.393994,-0.697165],[0.530168,-0.183386,-0.827784],[0.568224,-0.233711,-0.788965],[-0.932066,-0.079501,-0.353435],[-0.709983,0.503098,0.492721],[-0.630146,0.523759,0.573199],[-0.742973,0.395886,0.539628],[0.170232,0.311197,-0.934965],[0.140568,0.184362,-0.972747],[0.127384,0.361522,-0.923582],[-0.106021,0.358531,-0.927458],[-0.037507,0.307688,-0.950713],[0.271187,-0.172643,-0.946898],[-0.667653,0.612659,-0.422895],[-0.002472,0.707053,0.707114],[0.483230,0.861904,0.153478],[0.518143,0.818964,0.246498],[0.440077,0.867885,0.230323],[0.859218,-0.285134,-0.424757],[0.307230,0.391430,0.867367],[0.459914,0.361919,0.810846],[-0.816950,0.576678,0.001129],[-0.542711,-0.411267,-0.732292],[-0.522843,-0.334422,-0.784051],[0.207678,0.168889,-0.963500],[0.894711,-0.167547,0.413953],[-0.416791,-0.183813,-0.890194],[0.968749,-0.170232,0.180334],[0.979675,-0.148167,0.135166],[0.912961,0.153508,0.378002],[0.946501,0.080020,0.312601],[-0.533891,-0.351177,-0.769158],[-0.361156,-0.402936,-0.840938],[0.267922,-0.409345,-0.872127],[-0.052400,-0.508286,-0.859554],[-0.552660,-0.003723,0.833369],[-0.518479,0.076449,0.851619],[-0.478988,-0.015931,0.877651],[0.127049,0.106967,0.986084],[0.313913,0.327921,0.891018],[0.852596,0.188665,-0.487259],[-0.960723,-0.176000,0.214484],[-0.994842,-0.101169,-0.003754],[-0.955809,-0.182653,0.230323],[0.842097,-0.295022,0.451430],[0.874233,-0.062471,0.481429],[0.972991,-0.016449,0.230171],[0.808863,-0.366100,-0.460067],[0.965423,-0.089114,0.244911],[-0.932249,-0.299020,0.203589],[-0.488052,-0.259163,-0.833430],[-0.554857,-0.195288,-0.808679],[-0.977538,-0.210089,0.015320],[-0.964812,-0.262703,0.007752],[-0.380840,-0.186041,0.905698],[0.909940,-0.404492,-0.091494],[0.951628,-0.307047,-0.008332],[0.141270,0.724662,-0.674429],[0.608661,0.671804,0.422101],[0.032868,-0.075014,0.996612],[0.184057,0.784234,-0.592486],[0.460829,0.705588,-0.538285],[0.757469,0.620563,-0.202704],[0.749931,0.648457,-0.130558],[0.699026,0.698813,-0.151616],[-0.490890,0.272927,0.827326],[-0.503555,0.034455,0.863247],[0.087741,0.271981,-0.958281],[0.201972,0.208441,-0.956938],[0.149815,0.338450,-0.928953],[0.499893,0.815577,0.291360],[-0.274056,0.865047,-0.420179],[-0.441084,0.778436,-0.446577],[0.652577,-0.321818,-0.685965],[0.706961,-0.314798,-0.633320],[-0.304849,-0.077731,-0.949217],[0.018494,-0.073489,-0.997101],[0.391461,0.763634,0.513382],[0.329661,0.718223,0.612751],[0.475173,0.639424,0.604419],[-0.841487,0.158879,-0.516343],[-0.627583,0.369976,-0.684988],[-0.587359,0.385235,-0.711722],[-0.571551,-0.370952,-0.731895],[-0.131748,-0.259987,-0.956542],[0.846889,-0.025544,0.531114],[-0.107303,-0.021668,0.993988],[-0.296976,-0.542711,0.785638],[-0.267830,0.005402,0.963439],[-0.011353,-0.441176,-0.897336],[0.182409,-0.505966,-0.843013],[0.154912,-0.422742,-0.892880],[0.081973,0.557237,-0.826289],[-0.110965,0.991302,-0.070681],[-0.189245,0.977966,-0.087863],[0.549425,0.023804,0.835200],[0.320414,-0.089175,0.943052],[0.333811,-0.030580,0.942106],[0.453536,-0.007843,0.891201],[-0.958342,-0.284799,0.020356],[0.252785,-0.341929,0.905057],[-0.824641,-0.563799,-0.045625],[-0.279733,0.212317,-0.936277],[-0.207953,0.173467,-0.962615],[-0.274697,0.241432,-0.930692],[0.917142,0.009308,0.398389],[0.542955,0.715049,-0.440260],[0.908933,0.047639,0.414136],[-0.174108,-0.456465,-0.872494],[-0.752983,-0.150578,0.640522],[0.887600,-0.368053,0.276864],[-0.188086,0.183264,-0.964873],[-0.194189,0.325907,-0.925230],[-0.951598,0.195471,0.237129],[-0.951140,0.292550,0.098361],[0.002747,0.682272,-0.731071],[0.230659,0.819727,-0.524216],[0.630604,-0.773431,-0.064150],[0.462935,-0.850215,0.250526],[0.450667,-0.836390,0.311899],[0.916257,0.239509,0.321055],[0.250801,0.418256,-0.872982],[0.198431,0.459243,-0.865841],[0.854183,-0.160436,0.494583],[0.868496,0.037782,0.494217],[0.858821,-0.450392,0.243965],[0.893490,0.164953,0.417646],[0.919126,0.283944,0.273080],[0.978179,0.068850,0.195898],[-0.390698,-0.849483,0.354534],[-0.116337,-0.834437,0.538621],[-0.321818,-0.940214,0.111240],[-0.953154,-0.216254,-0.211402],[-0.978027,-0.199255,-0.061129],[-0.993744,-0.092288,-0.062532],[-0.496170,-0.494430,-0.713645],[-0.412397,-0.692618,-0.591723],[0.526353,-0.121982,-0.841456],[-0.986969,-0.097537,-0.127842],[0.166723,0.637532,-0.752129],[-0.024567,-0.325266,-0.945280],[-0.026978,0.501267,-0.864834],[0.100833,0.190771,-0.976409],[-0.463790,0.445296,0.765862],[-0.467269,0.508316,0.723350],[-0.530503,0.366924,0.764122],[-0.498489,0.394879,0.771691],[-0.764000,0.290963,0.575854],[-0.997925,0.047792,-0.042970],[-0.279977,-0.705985,-0.650502],[-0.585406,-0.306009,-0.750755],[-0.261757,-0.197607,0.944670],[-0.105808,-0.241279,0.964660],[-0.037751,-0.409528,0.911496],[-0.630665,-0.321238,-0.706412],[0.475021,0.053316,0.878323],[-0.922666,-0.254555,-0.289529],[-0.897031,-0.107028,-0.428755],[-0.896512,-0.300729,-0.325236],[-0.935759,-0.077212,0.344035],[-0.969176,0.010559,0.246040],[-0.955077,-0.030396,0.294717],[-0.696188,0.284799,0.658925],[-0.789453,0.574572,-0.215857],[-0.936125,-0.316965,0.152287],[-0.963439,0.032655,0.265908],[-0.092074,-0.795953,0.598285],[-0.891232,0.224525,0.394024],[-0.834773,0.170049,0.523637],[-0.743675,-0.567186,0.353832],[-0.211188,0.100284,-0.972259],[-0.303293,-0.115177,-0.945891],[-0.676656,-0.185492,0.712516],[-0.244240,-0.317576,0.916196],[0.892544,-0.314219,-0.323374],[0.863399,-0.085726,-0.497147],[0.792322,-0.199927,-0.576373],[-0.978149,-0.205084,0.033784],[-0.950713,-0.276284,0.140599],[-0.982330,-0.131352,0.133091],[0.246742,0.643391,0.724631],[0.473617,0.872433,0.120487],[0.403211,0.879147,0.253945],[-0.839473,-0.006592,0.543352],[-0.598376,-0.612293,0.516709],[-0.919004,-0.187445,0.346782],[-0.065462,0.175695,-0.982238],[-0.559069,-0.327342,0.761742],[-0.210273,-0.606159,0.766991],[0.172735,-0.231361,-0.957396],[0.082736,-0.334971,-0.938566],[0.208380,-0.370037,-0.905332],[0.762261,-0.121555,-0.635701],[0.131535,-0.396527,-0.908536],[0.586657,-0.413221,0.696463],[-0.145940,-0.488968,0.859981],[0.084964,-0.612140,0.786157],[-0.887478,-0.260598,-0.380016],[-0.924131,-0.316782,-0.213446],[0.116489,0.190130,-0.974792],[0.150212,0.266579,-0.952025],[0.843562,0.536424,0.024995],[0.951506,0.293161,-0.092868],[0.936796,0.305826,0.169774],[0.412305,0.108066,0.904599],[0.484298,0.260994,0.835017],[-0.628986,-0.222571,0.744865],[-0.634602,-0.150731,0.757958],[-0.988800,-0.134312,-0.064882],[0.996155,-0.035554,0.080050],[0.912900,-0.133091,0.385846],[-0.981597,-0.094394,-0.165899],[-0.995392,-0.027467,0.091647],[-0.519242,0.649159,0.555803],[-0.196173,-0.588397,0.784387],[0.804041,0.374004,0.462142],[-0.522202,0.658193,-0.542253],[0.319529,-0.301065,-0.898434],[0.551622,-0.518509,-0.653310],[0.767571,-0.303079,-0.564745],[0.694082,0.562487,-0.449232],[0.795038,0.393475,-0.461592],[0.824335,0.453871,-0.338298],[0.998810,-0.043062,-0.022126],[0.994476,-0.066866,0.080569],[-0.140843,0.079318,-0.986816],[-0.278787,-0.445601,-0.850673],[0.319346,0.932676,-0.167577],[0.480605,0.870785,-0.103458],[0.293863,0.152959,0.943510],[0.738029,0.661763,-0.131535],[0.710105,0.650685,-0.268960],[0.558641,0.739677,-0.375134],[0.646687,0.279916,-0.709494],[0.712546,0.219977,-0.666219],[0.664815,-0.314615,-0.677480],[0.446913,-0.338572,-0.827998],[0.323618,0.898495,0.296579],[0.022736,0.014405,-0.999634],[-0.205634,-0.336161,0.919065],[-0.108036,-0.511887,0.852199],[-0.569811,0.241005,0.785607],[-0.397473,0.001526,0.917600],[0.696982,0.480178,0.532548],[0.240150,-0.246986,-0.938780],[0.367321,-0.073611,-0.927152],[0.440565,0.863887,0.243995],[0.560594,0.803278,0.201086],[0.599719,0.738762,0.307443],[-0.474349,0.428388,0.769036],[-0.386761,0.584429,0.713309],[-0.335002,0.633045,0.697836],[-0.313913,0.619648,0.719321],[-0.981109,0.082064,0.175054],[-0.591052,0.358867,0.722373],[0.249702,0.255348,-0.934019],[0.495163,0.825251,0.271462],[0.181982,0.872738,0.452986],[0.144719,-0.035707,-0.988800],[0.595477,-0.416181,0.687155],[-0.502640,-0.214087,-0.837519],[-0.459243,-0.317789,-0.829493],[-0.975982,-0.181707,0.120060],[-0.992584,-0.121097,-0.008850],[0.318278,0.141911,-0.937284],[-0.624378,-0.381603,-0.681539],[0.193915,0.941862,0.274361],[-0.996796,-0.079684,0.005890],[-0.965361,-0.195441,0.172735],[0.172643,0.251991,0.952178],[0.136448,0.427045,0.893857],[-0.237678,-0.490524,0.838374],[0.834956,-0.300302,-0.461104],[0.915281,-0.248695,-0.316813],[0.263924,-0.289895,-0.919919],[-0.212561,0.722831,0.657491],[0.636128,-0.239570,-0.733421],[0.612781,-0.324686,-0.720420],[0.226112,0.705741,-0.671377],[0.223731,0.687368,-0.690970],[0.142338,-0.370678,-0.917753],[0.479690,-0.245430,-0.842402],[-0.552599,0.233039,0.800195],[0.017548,0.961272,-0.274941],[0.315165,0.501328,0.805780],[0.560137,-0.343699,0.753716],[0.741295,0.538652,-0.400372],[-0.986480,-0.149052,0.067660],[0.193487,-0.335582,-0.921903],[0.302988,0.930357,0.206427],[0.767327,0.336192,-0.546007],[0.784875,0.312113,-0.535264],[-0.846828,-0.252632,0.468001],[-0.750237,-0.262246,0.606891],[-0.850765,-0.235176,0.469924],[0.104801,0.952513,0.285806],[0.234626,0.914853,0.328532],[0.100833,0.981597,-0.162114],[0.403363,-0.803369,-0.438002],[0.443739,-0.893063,-0.074007],[-0.206885,0.466231,0.860103],[-0.165288,0.559313,0.812281],[-0.163671,0.589892,0.790704],[-0.599658,-0.140019,0.787866],[0.019807,0.233039,-0.972259],[-0.002838,0.234565,-0.972076],[-0.007569,0.818232,-0.574786],[0.012329,0.788842,-0.614460],[0.906827,0.119907,0.404035],[0.831233,0.298685,0.468825],[0.970183,0.074374,0.230598],[0.933958,0.338023,0.115970],[0.892453,0.330821,0.306681],[-0.209998,0.063692,-0.975616],[0.428999,0.895840,0.115696],[-0.670980,-0.422742,-0.609119],[-0.312632,-0.472945,0.823756],[-0.699911,-0.102786,0.706778],[0.929899,0.299051,-0.214057],[0.940886,-0.336680,-0.036378],[0.795251,-0.478744,-0.371960],[0.207648,0.312693,0.926847],[-0.977752,0.052248,0.203070],[-0.992767,0.004791,0.119785],[-0.426069,0.601794,0.675466],[-0.557939,0.566942,0.606006],[-0.609546,0.522507,0.596149],[0.580798,-0.238716,-0.778222],[0.987243,-0.109348,0.115604],[0.763695,-0.520981,-0.381176],[0.885891,-0.064455,0.459334],[-0.939116,-0.006195,0.343455],[-0.942869,-0.039583,0.330729],[-0.573077,-0.465865,-0.674184],[0.075564,0.950133,-0.302469],[0.814051,0.221747,0.536729],[-0.060305,-0.212653,-0.975249],[0.675710,-0.006287,0.737114],[0.884213,0.314920,0.344890],[0.884518,0.088687,0.457991],[-0.396405,-0.524308,-0.753594],[0.980438,0.120762,0.155248],[0.814264,-0.342509,-0.468642],[0.958190,-0.275765,0.076083],[0.765496,0.239631,0.597095],[0.644795,-0.080813,0.760063],[0.284585,0.952208,0.110874],[-0.155126,0.565111,0.810266],[-0.349956,0.234931,0.906796],[-0.344707,0.426160,0.836390],[0.924161,-0.264504,0.275552],[0.952116,-0.283700,0.113712],[-0.772942,0.069185,-0.630665],[-0.945067,0.018006,-0.326365],[-0.694784,0.021912,-0.718863],[-0.870205,-0.171606,0.461776],[-0.935667,-0.211921,0.282052],[-0.876400,-0.194189,0.440657],[0.224830,-0.509354,-0.830622],[-0.049226,0.996673,-0.064577],[-0.027223,0.995117,0.094790],[0.900693,-0.157140,0.404981],[0.891049,-0.365551,0.268960],[-0.580950,-0.289315,-0.760765],[-0.664937,-0.255013,-0.701987],[0.136570,-0.047090,-0.989502],[-0.734214,0.105075,-0.670705],[-0.853420,0.004089,-0.521165],[-0.866482,0.051485,-0.496506],[-0.942076,-0.005402,-0.335337],[0.775079,-0.268349,-0.572008],[0.706565,-0.195044,-0.680197],[0.588641,-0.244118,-0.770623],[0.328745,-0.725150,0.605029],[-0.004547,0.989410,0.144993],[-0.440260,-0.234657,-0.866634],[-0.354717,-0.401471,-0.844356],[-0.001465,-0.164861,0.986297],[-0.155614,-0.206183,0.966033],[-0.245766,-0.158849,0.956206],[0.682058,-0.532060,0.501663],[0.576739,0.499466,0.646413],[-0.481124,-0.289010,-0.827601],[-0.173467,-0.282327,-0.943480],[-0.429548,-0.195044,-0.881710],[-0.690237,-0.220130,0.689230],[-0.287301,-0.831538,0.475356],[0.408094,0.893582,0.186804],[0.343150,0.930204,0.130161],[0.558153,0.782647,0.275491],[0.165319,0.478896,-0.862148],[0.256478,0.356731,-0.898282],[0.908963,0.113773,-0.400983],[0.951567,0.073824,-0.298349],[0.929746,0.072939,-0.360851],[0.251015,0.688375,-0.680532],[0.320902,0.656056,-0.683065],[0.375072,0.644978,-0.665792],[-0.324717,0.712302,0.622211],[-0.491012,0.493973,0.717521],[0.541185,0.496292,0.678793],[0.220222,0.099338,0.970367],[0.640461,-0.010376,0.767907],[-0.991333,0.125919,-0.036958],[0.346446,0.829371,-0.438246],[-0.005860,0.066408,-0.997772],[-0.827876,0.551286,-0.103244],[-0.616993,0.754295,-0.224281],[-0.707694,0.668538,-0.228339],[0.491867,0.720237,-0.489151],[0.610889,0.690634,-0.387036],[-0.008911,-0.476119,-0.879299],[0.024506,-0.505478,-0.862453],[0.673421,-0.615558,0.409284],[0.062166,-0.492325,0.868160],[-0.621967,-0.771325,0.134770],[-0.029969,-0.958708,0.282723],[-0.876919,0.083438,0.473281],[-0.965209,0.183111,0.186529],[-0.903806,0.318247,0.285989],[-0.480667,0.822382,-0.304331],[0.607593,0.716117,0.343425],[0.470443,-0.215766,0.855617],[0.297464,0.242958,0.923276],[-0.961516,-0.212043,0.174505],[0.479263,0.821772,0.308115],[0.555986,0.802698,0.215674],[0.495773,0.696738,0.518357],[0.401654,0.791772,0.460158],[-0.307840,0.416120,-0.855586],[-0.257271,0.464888,-0.847133],[-0.119724,-0.384747,0.915189],[0.570025,-0.347270,-0.744591],[0.523087,-0.238380,-0.818232],[0.809168,-0.009827,0.587451],[0.381817,0.592395,0.709403],[-0.749870,-0.289224,-0.594989],[0.904752,0.139042,0.402570],[0.979583,0.043825,-0.196112],[0.985778,-0.009705,-0.167730],[0.896603,-0.359172,-0.258919],[0.910031,-0.412061,-0.044832],[0.947172,-0.229072,-0.224372],[-0.947600,0.017762,0.318888],[-0.913114,-0.087954,0.398022],[-0.015412,0.766961,-0.641469],[0.485214,0.854823,-0.183874],[0.545030,0.837703,-0.033601],[0.992859,-0.118534,-0.010804],[-0.747307,-0.342662,-0.569231],[-0.880551,-0.108036,0.461440],[0.628651,0.775292,-0.060457],[0.748955,0.659261,-0.066347],[-0.091403,0.330363,-0.939390],[-0.288095,0.297647,-0.910154],[0.399640,-0.335612,-0.852992],[0.436293,-0.290841,-0.851466],[0.490432,-0.251625,-0.834346],[-0.897916,-0.137333,-0.418134],[0.015534,-0.496353,-0.867946],[-0.123325,-0.475661,-0.870907],[0.716636,0.042268,-0.696127],[0.518876,0.820704,-0.239143],[0.877285,-0.342753,0.335917],[0.640767,-0.706534,0.300333],[0.250923,0.162816,-0.954192],[0.169744,0.286325,-0.942961],[0.534135,0.604938,0.590503],[0.676687,0.693014,0.248543],[0.619770,-0.681448,0.389172],[0.963836,-0.210395,0.163396],[0.974853,-0.016877,0.222175],[0.115665,-0.490310,-0.863796],[0.158910,-0.479019,-0.863277],[-0.004181,-0.400067,-0.916471],[-0.964171,0.146916,0.220862],[-0.899899,0.010834,0.435896],[-0.999512,0.025056,-0.018281],[-0.603748,-0.526353,0.598651],[-0.300027,-0.454695,0.838557],[0.452803,-0.383984,-0.804682],[-0.477645,-0.201147,0.855190],[-0.332499,-0.351604,0.875088],[0.147893,0.974395,0.169195],[-0.450942,0.482040,0.751152],[-0.623676,-0.043855,0.780419],[-0.788781,-0.243477,0.564379],[-0.621662,-0.388928,0.679891],[0.879055,-0.222999,-0.421277],[0.882046,-0.259133,-0.393445],[-0.674367,-0.682211,0.282449],[-0.698508,-0.692007,0.182195],[-0.451216,-0.258766,0.854030],[0.875820,-0.456923,0.155339],[0.846706,-0.522019,0.102664],[-0.578295,0.593432,0.559771],[-0.552751,0.658711,0.510422],[-0.308054,0.613239,0.727317],[0.855403,-0.297250,-0.424146],[0.177313,0.567309,0.804163],[-0.696799,-0.129032,-0.705527],[-0.856960,-0.037568,-0.513993],[-0.979308,0.026154,0.200537],[-0.959838,0.044404,0.276894],[-0.181524,-0.422498,-0.887967],[-0.338298,-0.436110,0.833857],[0.569353,0.456710,-0.683523],[-0.456832,-0.218635,0.862239],[0.415754,-0.323710,-0.849879],[0.260720,-0.220985,-0.939756],[0.980987,-0.163762,0.104007],[-0.694784,-0.406751,-0.593097],[-0.008545,-0.114292,-0.993408],[0.055116,-0.286691,-0.956420],[0.531083,0.027253,-0.846858],[0.813349,0.497421,0.301645],[-0.771874,0.450606,-0.448439],[-0.592456,0.540422,-0.597400],[0.833247,-0.264443,-0.485488],[0.729972,-0.288461,-0.619587],[0.692984,-0.285043,-0.662191],[0.659566,-0.358684,-0.660512],[0.531022,-0.401654,-0.746086],[0.754204,-0.361064,-0.548387],[0.619190,-0.287179,-0.730796],[0.018342,0.165960,-0.985931],[-0.084811,-0.990692,0.106357],[0.521775,0.027131,0.852626],[0.485611,-0.109989,0.867214],[0.678762,0.588092,-0.439741],[0.543718,0.733268,-0.408185],[0.337748,0.699850,-0.629353],[0.494125,0.548967,-0.674123],[-0.493118,0.064180,-0.867580],[-0.348003,-0.023591,-0.937162],[0.211768,0.974303,0.076540],[-0.438520,-0.236549,-0.867000],[0.107944,0.977142,0.183020],[0.382885,0.911100,0.152532],[0.246040,0.946837,0.207190],[0.731712,0.367901,-0.573779],[-0.016083,0.294351,-0.955535],[-0.990387,-0.113559,0.078738],[-0.166845,-0.011628,-0.985900],[-0.229102,0.112949,-0.966796],[-0.220008,0.076205,-0.972503],[-0.490280,-0.438581,-0.753136],[-0.708609,-0.121830,0.694968],[0.088656,0.299661,-0.949889],[-0.118137,0.856960,-0.501633],[-0.487289,0.814447,-0.314951],[-0.540422,0.758202,-0.364757],[0.235206,0.460707,0.855770],[0.591784,0.668783,0.449934],[0.391217,0.758110,0.521683],[0.632496,0.773736,-0.035127],[0.144505,0.912076,0.383679],[-0.854549,-0.224647,-0.468245],[-0.856410,-0.347362,-0.381939],[-0.888150,-0.323344,-0.326487],[0.005432,0.648488,-0.761193],[0.110904,0.435865,-0.893124],[-0.860256,-0.429121,-0.275277],[-0.485000,-0.269631,-0.831874],[-0.428602,-0.143742,-0.891964],[-0.417249,0.839625,-0.347636],[-0.464827,0.804834,-0.368969],[-0.091464,0.847743,-0.522416],[0.015137,-0.907346,0.420057],[-0.073672,-0.988311,0.133335],[0.337260,0.927793,0.159307],[0.426221,0.896603,0.119968],[0.740532,-0.250771,-0.623432],[0.787408,-0.171239,-0.592120],[0.852473,-0.000031,0.522752],[0.970458,-0.166234,0.174718],[0.664510,-0.425001,-0.614612],[0.587878,-0.347819,-0.730308],[-0.039918,-0.995361,0.087497],[0.262429,0.731529,-0.629261],[0.139195,0.789178,-0.598132],[0.196844,0.418683,-0.886532],[0.382183,-0.918882,0.097598],[0.421491,-0.876278,0.233253],[0.308084,0.619068,0.722373],[0.173345,0.432813,0.884640],[-0.738792,0.572741,-0.355144],[-0.751335,0.537919,-0.382183],[-0.545488,0.691031,-0.474197],[0.462020,-0.413373,-0.784600],[-0.358654,-0.189367,-0.914029],[0.724326,-0.526139,0.445509],[0.326975,-0.218879,0.919309],[-0.562548,-0.160894,-0.810938],[-0.665670,-0.142186,-0.732566],[-0.577929,-0.228309,-0.783471],[0.590167,-0.201697,0.781640],[-0.074465,0.871273,-0.485061],[0.091067,0.866054,-0.491531],[-0.158422,0.181524,-0.970519],[-0.998871,-0.010132,0.045839],[-0.855861,-0.487777,0.171850],[0.981750,-0.006134,-0.190008],[0.035463,-0.216041,-0.975738],[-0.856838,0.143895,0.495071],[-0.852016,0.035737,0.522233],[-0.361187,-0.435682,-0.824396],[-0.733146,0.046999,0.678426],[-0.775658,0.373669,0.508591],[0.150700,-0.357830,-0.921537],[0.247871,-0.368938,-0.895749],[-0.998016,0.052828,0.034150],[-0.941343,0.198492,0.272774],[0.386547,-0.735099,0.556902],[0.465835,-0.714042,0.522568],[0.662923,0.605182,0.440718],[0.751274,-0.301401,-0.587115],[-0.994079,-0.104282,-0.029542],[-0.615497,0.210150,0.759575],[0.679830,-0.655873,0.328074],[-0.850551,-0.178259,-0.494736],[0.105136,0.881405,-0.460433],[-0.472640,0.796045,-0.377972],[-0.582690,0.656026,-0.479659],[0.584735,0.644002,-0.493210],[-0.438612,-0.746330,0.500565],[-0.342692,-0.745109,0.572131],[0.019990,0.595355,-0.803186],[0.706351,0.655721,-0.266549],[-0.938841,-0.342448,-0.035463],[0.424696,0.671651,0.607013],[0.627186,0.486618,0.608112],[0.318247,0.930876,0.179235],[0.033723,0.784356,-0.619343],[0.208777,0.646290,-0.733940],[0.057833,0.721854,-0.689596],[0.247688,0.641499,-0.726005],[0.192877,0.978271,0.075869],[0.283517,0.958495,0.028962],[-0.503922,-0.240455,-0.829585],[-0.705832,-0.148930,-0.692526],[0.054231,0.177770,0.982574],[0.809442,-0.187780,-0.556322],[0.808710,-0.185369,-0.558184],[0.925871,-0.175726,-0.334422],[0.451827,0.805109,-0.384198],[0.516221,0.647267,-0.560808],[-0.576708,-0.521531,-0.628803],[-0.978698,-0.099948,0.179296],[-0.993286,-0.057680,0.100223],[0.595264,-0.494888,-0.633015],[0.456679,-0.383923,-0.802484],[0.700705,-0.485488,-0.522752],[0.546312,0.827265,0.130833],[0.907224,0.065371,0.415479],[-0.610401,-0.692434,0.384594],[-0.785821,-0.439741,0.434828],[-0.128208,0.522782,0.842738],[0.061617,0.528886,0.846431],[0.745750,0.652821,0.132694],[0.929319,-0.341227,-0.140934],[0.121281,-0.819239,0.560442],[0.213721,-0.732841,0.645924],[-0.702811,0.165807,0.691763],[-0.737754,0.141057,0.660115],[-0.579730,0.108432,0.807520],[-0.896237,0.274758,0.348186],[0.427595,0.188086,0.884152],[-0.500839,0.864284,0.045900],[-0.487655,0.857051,-0.166082],[0.948057,-0.317759,-0.012757],[-0.066317,0.644520,-0.761681],[-0.844997,-0.334910,-0.416852],[-0.771722,-0.477798,-0.419630],[-0.926450,-0.258400,0.273598],[-0.021363,-0.128971,-0.991394],[-0.088992,-0.330973,-0.939421],[0.182745,-0.143864,-0.972564],[0.834590,-0.300729,0.461470],[0.793085,0.306619,-0.526231],[-0.925047,0.180059,0.334422],[0.245277,-0.235023,-0.940519],[-0.203772,0.320902,-0.924894],[-0.471450,0.257668,-0.843379],[-0.944426,-0.031495,0.327158],[0.511063,0.149358,0.846431],[0.563677,0.186621,0.804621],[-0.959136,-0.282479,-0.014649],[0.324900,0.945158,0.032624],[0.476394,-0.219916,-0.851253],[0.050630,0.457320,-0.887845],[-0.452132,-0.289193,-0.843745],[-0.058809,-0.287332,-0.955992],[0.727531,-0.270882,-0.630299],[0.625935,-0.244453,-0.740532],[-0.539323,-0.398022,-0.742058],[0.808924,-0.151524,0.568041],[0.778680,0.076235,0.622730],[0.868892,-0.142613,0.473983],[0.091433,0.979919,0.177129],[0.426038,0.738121,0.523118],[-0.290902,-0.308939,-0.905484],[-0.044588,0.268380,-0.962249],[-0.014801,0.197058,-0.980255],[0.750999,0.355693,-0.556230],[0.057466,0.458205,-0.886959],[0.498642,0.866756,-0.006867],[0.621723,0.779504,-0.075991],[0.481094,0.876309,-0.024415],[-0.919706,0.079287,0.384442],[-0.265145,0.205206,0.942106],[0.998535,-0.048585,-0.022553],[0.999939,0.006623,0.008576],[-0.635762,-0.266579,-0.724357],[-0.773125,-0.452315,-0.444594],[-0.914945,0.353038,0.195502],[-0.958525,0.199774,0.203223],[0.454451,-0.461440,-0.761925],[0.449110,-0.526536,-0.721793],[0.062990,0.982940,0.172613],[0.996551,-0.043886,0.070132],[-0.463271,-0.424024,-0.778161],[-0.317637,-0.412488,-0.853755],[-0.955718,-0.020844,-0.293435],[-0.569781,-0.523881,-0.633137],[-0.587664,0.442183,0.677541],[-0.679281,0.415937,0.604602],[-0.990875,-0.134465,-0.008545],[-0.999939,-0.008148,-0.001404],[-0.627827,0.384960,0.676473],[-0.865810,-0.005951,0.500290],[0.461104,-0.228462,-0.857418],[-0.630848,-0.226936,-0.741966],[-0.699362,-0.156774,-0.697317],[-0.863857,0.118229,0.489608],[0.913327,0.014161,0.406964],[0.378216,0.612445,0.694113],[0.391278,0.720542,0.572436],[0.292093,0.625111,0.723808],[0.154576,-0.377239,-0.913114],[-0.133488,-0.106906,-0.985260],[-0.214606,-0.160375,-0.963439],[0.359813,0.701285,0.615375],[0.502060,0.546587,0.670156],[-0.962584,0.107913,0.248482],[-0.958007,0.131809,0.254555],[-0.967467,0.062441,0.245094],[0.081027,-0.461104,-0.883633],[-0.988739,-0.148076,-0.020905],[-0.988983,0.022217,0.146245],[0.265938,0.360576,-0.893979],[0.953856,-0.092654,0.285531],[0.954161,-0.240577,0.177984],[0.767113,0.296335,0.568896],[0.851283,0.052950,0.522019],[0.690054,0.169408,0.703635],[0.265603,0.949339,0.167882],[-0.028077,0.088504,0.995666],[-0.222785,0.203009,0.953459],[0.415082,0.899258,0.137761],[0.422040,0.897763,0.125950],[-0.395154,-0.629566,-0.668935],[-0.278054,-0.790643,-0.545457],[0.077090,0.606372,0.791406],[0.667837,-0.309915,-0.676687],[0.987091,-0.070437,0.143712],[0.888272,-0.396344,0.232032],[0.395184,-0.348827,-0.849757],[0.630665,-0.394818,-0.668050],[-0.518662,-0.204627,0.830103],[0.957244,0.278909,0.076479],[0.953398,0.229957,0.195257],[-0.132267,-0.656178,-0.742882],[0.750847,-0.185003,-0.633992],[-0.939055,-0.343730,-0.000397],[-0.499832,-0.366100,-0.784936],[-0.609577,-0.414930,-0.675436],[-0.678671,-0.037416,0.733482],[-0.497879,-0.190313,0.846065],[-0.761620,-0.095157,0.640980],[0.956725,0.087344,0.277535],[0.675314,0.086184,0.732444],[0.525925,0.127903,0.840815],[-0.153142,0.152715,0.976318],[-0.992492,-0.120975,-0.016816],[0.296518,0.949278,0.104373],[-0.042146,-0.053774,-0.997650],[-0.068178,0.147160,-0.986755],[-0.191748,0.150639,-0.969787],[-0.930479,-0.130650,0.342204],[-0.895108,-0.080691,0.438459],[-0.023011,0.131260,-0.991058],[0.747948,0.627338,0.216773],[0.952849,0.002838,0.303385],[0.213538,0.108249,0.970885],[0.214515,0.126682,0.968444],[0.783593,-0.374920,-0.495346],[-0.812860,-0.318003,0.487960],[-0.822871,-0.234321,-0.517594],[-0.609912,-0.486526,-0.625507],[-0.829585,-0.273690,-0.486648],[0.253059,-0.281350,-0.925626],[0.926176,-0.277230,-0.255531],[0.969634,-0.244270,-0.011170],[-0.998291,-0.012177,-0.056887],[-0.973754,-0.227515,0.001038],[-0.970550,-0.141423,0.194861],[-0.540880,0.749931,0.380810],[-0.513443,0.495834,0.700339],[-0.384289,-0.124882,0.914701],[-0.313883,0.207099,0.926572],[0.986908,0.066744,0.146611],[0.973357,-0.006989,0.229102],[-0.330638,0.592547,0.734519],[0.065706,0.628315,-0.775140],[0.387280,-0.281106,-0.878048],[0.068361,0.155004,-0.985534],[-0.589709,0.253243,0.766839],[-0.984344,0.135746,0.112247],[-0.902585,0.112430,0.415540],[0.162725,0.298990,0.940275],[0.336253,0.928007,0.160314],[0.337809,0.925626,0.170385],[-0.938597,-0.275002,-0.208319],[-0.924772,-0.108890,-0.364574],[0.395672,0.766900,-0.505234],[0.621418,0.538011,-0.569506],[0.936796,0.153417,0.314402],[-0.558275,-0.668752,0.490982],[-0.923521,-0.189215,0.333537],[0.430342,-0.276589,-0.859218],[-0.977477,-0.168981,-0.126225],[-0.960448,-0.261177,0.096255],[0.161351,-0.161962,-0.973510],[-0.875515,0.301126,0.377819],[-0.789850,0.518632,0.327280],[0.930631,0.215613,-0.295602],[0.937742,-0.283608,0.200415],[0.917722,-0.312387,0.245277],[0.321574,0.906888,0.272225],[-0.321482,-0.531419,-0.783715],[-0.617450,-0.383526,-0.686728],[0.148259,-0.455977,-0.877529],[-0.090213,0.093295,-0.991516],[0.263131,0.801721,-0.536637],[0.460494,0.755608,-0.465804],[0.321421,0.782189,-0.533677],[-0.308481,-0.682760,0.662282],[-0.988678,-0.137394,0.060213],[-0.962981,-0.145665,0.226691],[-0.547960,-0.450392,-0.704856],[0.919553,0.129246,0.371044],[-0.587695,-0.467452,-0.660329],[0.453078,-0.891293,-0.016144],[-0.104038,0.341624,-0.934049],[0.724601,-0.390942,-0.567492],[-0.349498,0.185949,0.918271],[0.525559,-0.189032,0.829463],[0.657826,-0.219733,0.720359],[-0.826685,-0.492416,0.272134],[-0.841517,-0.236274,0.485763],[0.980804,-0.141545,0.133915],[0.968108,-0.166387,0.187201],[-0.275674,-0.035279,-0.960570],[-0.654592,0.529283,-0.539720],[-0.789483,0.493912,-0.364269],[-0.809320,-0.300699,-0.504532],[-0.834773,-0.416059,-0.360546],[-0.947783,-0.086337,-0.306986],[-0.321909,-0.251686,-0.912687],[0.907620,-0.403790,-0.114628],[0.943266,-0.301614,-0.138646],[0.829829,0.090243,0.550615],[0.960784,0.019349,0.276559],[0.278512,0.950133,-0.140141],[-0.016968,0.475936,-0.879299],[-0.117832,0.358379,-0.926084],[0.892300,-0.254891,-0.372570],[0.987640,-0.153630,-0.030305],[0.981475,-0.165532,-0.096255],[-0.885006,-0.129734,0.447066],[-0.956084,-0.044679,0.289651],[-0.967742,-0.212165,0.135624],[0.118412,0.980255,0.158177],[0.410993,0.874355,0.257912],[0.088687,0.956023,0.279458],[-0.747429,0.063845,0.661245],[-0.991577,-0.102695,-0.078829],[-0.997864,-0.061678,0.021332],[0.708396,0.595019,0.379559],[0.460341,-0.446089,-0.767479],[0.128483,-0.398694,-0.908017],[0.305673,-0.464553,-0.831080],[-0.489669,-0.386212,-0.781671],[-0.020081,-0.167547,-0.985656],[0.660970,-0.585101,-0.469832],[-0.026917,-0.486740,-0.873104],[0.132847,0.610218,-0.780999],[0.967711,-0.129063,0.216376],[0.139286,0.184790,0.972839],[-0.981506,0.001648,0.191351],[-0.915738,-0.077578,0.394208],[-0.961150,0.078921,0.264473],[-0.987060,0.143803,0.070498],[0.606189,-0.430250,-0.668874],[-0.375988,-0.346538,-0.859371],[0.496933,-0.060488,0.865658],[0.581439,0.272896,0.766411],[0.698813,0.199194,0.686972],[0.009339,-0.985290,0.170629],[0.771142,0.497818,0.396832],[0.983428,-0.178076,0.033174],[0.961241,-0.266549,0.070162],[0.850459,0.361797,0.381817],[0.986297,0.004059,0.164892],[0.987884,-0.082736,0.131199],[0.729057,-0.399457,-0.555773],[-0.159581,0.147130,-0.976135],[0.559069,-0.358440,-0.747581],[-0.153661,0.095645,-0.983459],[0.890378,0.094028,-0.445387],[-0.570421,-0.496506,-0.654286],[-0.659780,-0.371715,-0.653035],[0.791589,-0.283120,-0.541459],[0.541917,0.201697,0.815821],[0.212775,-0.533097,-0.818812],[0.690878,-0.337474,-0.639332],[0.744072,-0.369610,-0.556505],[0.055269,0.098819,-0.993561],[0.189795,0.087863,-0.977874],[0.197241,0.969024,0.148442],[0.169012,-0.184912,-0.968078],[0.316660,0.934507,0.162450],[0.061342,0.500290,0.863674],[0.759972,0.358074,0.542375],[0.625843,-0.335215,-0.704184],[-0.012574,0.505753,-0.862575],[0.173467,0.614582,-0.769524],[-0.142674,-0.006439,0.989746],[0.218543,0.204810,0.954070],[0.941191,-0.337260,-0.018738],[0.937895,-0.344951,0.036317],[0.956420,-0.287515,0.050295],[-0.497543,0.205176,0.842799],[-0.932401,0.235023,-0.274453],[-0.885739,0.409253,-0.218940],[-0.951567,0.251869,-0.176183],[-0.110508,0.017640,-0.993713],[0.929319,-0.349223,-0.119785],[0.893857,-0.305002,-0.328562],[0.918638,-0.071139,0.388623],[0.926481,0.045228,0.373577],[0.270577,0.048128,0.961486],[-0.813837,-0.020814,-0.580676],[-0.808130,0.042390,-0.587451],[-0.236915,-0.398907,0.885830],[-0.272378,-0.339763,0.900174],[0.491134,0.844417,0.213813],[-0.803125,0.306314,0.511002],[-0.864132,0.211524,0.456587],[0.033570,0.862300,-0.505264],[0.154912,0.987548,0.026612],[0.129948,0.976684,0.170812],[0.202063,0.975097,0.091220],[0.202368,0.969237,0.140049],[0.099918,0.980590,0.168615],[-0.880276,-0.240120,0.409192],[-0.910977,-0.187658,0.367260],[-0.885159,-0.195990,0.421949],[-0.975585,0.160863,0.149419],[0.669637,-0.329539,-0.665517],[0.069948,-0.698294,0.712363],[0.838984,0.335185,0.428632],[-0.154607,0.941984,-0.297861],[-0.846858,0.203650,0.491226],[0.901303,-0.241737,0.359416],[0.868831,-0.235450,0.435469],[-0.764214,0.017457,-0.644673],[0.671072,-0.740257,0.040162],[-0.508133,0.804621,0.307138],[-0.250343,0.408399,0.877773],[0.951964,-0.171972,-0.253304],[0.967071,0.174810,-0.184942],[-0.133030,-0.051912,-0.989746],[-0.074862,-0.074160,-0.994415],[-0.190466,-0.080630,-0.978362],[0.720206,0.681661,-0.128788],[0.599139,0.753990,-0.269234],[0.183050,-0.207648,-0.960906],[-0.488144,-0.470656,0.734947],[-0.265755,-0.338481,0.902646],[-0.341563,-0.437422,0.831843],[-0.912137,0.349590,0.213904],[0.897427,0.062685,-0.436659],[-0.954192,0.089602,0.285379],[0.875271,0.400891,0.270425],[-0.657125,0.488327,-0.574175],[-0.670858,0.619251,-0.407941],[0.547105,-0.142430,0.824824],[0.571520,-0.103366,0.814020],[0.961608,0.013977,-0.274026],[-0.557848,0.706687,-0.435163],[0.776482,0.439192,0.451796],[0.695944,0.190130,0.692434],[-0.153050,0.327952,-0.932188],[-0.340495,-0.136204,0.930296],[0.700308,-0.220069,-0.679037],[0.827296,-0.221870,-0.516068],[0.767663,-0.118717,-0.629749],[-0.099399,-0.900113,0.424116],[0.770653,-0.135777,-0.622578],[0.851497,-0.322855,-0.413129],[-0.105319,-0.434523,-0.894467],[-0.408429,-0.488174,-0.771264],[0.375774,0.429029,-0.821375],[0.374981,0.519425,-0.767815],[0.556688,-0.314341,-0.768914],[0.623890,0.192816,-0.757317],[-0.621509,0.762078,0.181433],[-0.321116,0.932463,0.165319],[-0.441908,0.886898,0.134434],[0.417463,0.889309,0.186560],[-0.239906,0.259407,-0.935484],[-0.323557,0.272011,-0.906247],[-0.968810,-0.219214,-0.115299],[-0.963469,-0.265816,0.032441],[-0.008911,0.070315,0.997467],[-0.032807,0.467849,0.883175],[-0.229408,0.148564,0.961913],[0.803034,-0.294015,-0.518296],[0.767022,-0.323191,-0.554247],[0.204016,0.978210,0.038270],[-0.587909,0.050386,-0.807337],[-0.904996,0.177984,-0.386303],[0.596942,-0.255013,-0.760643],[-0.940977,0.153386,0.301645],[-0.921995,0.156163,0.354289],[0.925169,-0.355602,-0.132511],[0.774224,0.564440,-0.286264],[-0.714866,-0.173956,-0.677236],[-0.924131,-0.230293,-0.304788],[0.911252,-0.345408,-0.224158],[0.324320,0.090793,0.941557],[-0.997803,0.063906,0.016572],[0.392285,-0.269448,-0.879452],[0.006775,0.994476,0.104556],[-0.342112,0.920255,0.189795],[0.926389,-0.200049,0.318949],[0.971343,-0.111728,0.209662],[-0.039399,0.999207,-0.002167],[0.451766,0.847041,-0.279977],[-0.436201,0.824763,-0.359752],[0.275002,-0.058351,-0.959655],[0.634938,0.261177,0.727042],[-0.867367,-0.356883,-0.346782],[-0.307138,0.937437,0.163793],[-0.516068,0.846644,0.129765],[-0.275918,0.290628,-0.916166],[-0.093448,0.102664,-0.990295],[-0.031526,0.306803,-0.951231],[-0.003143,0.827693,-0.561144],[-0.137333,-0.337779,-0.931120],[0.245064,0.961272,0.125980],[0.462386,0.525193,0.714347],[-0.525620,-0.312296,0.791284],[0.628651,0.417493,0.656087],[0.715781,0.525803,0.459487],[-0.426069,-0.292123,-0.856197],[0.745781,0.250801,-0.617145],[-0.521317,0.196966,0.830287],[0.957091,-0.258003,0.131718],[0.045106,-0.067202,-0.996704],[0.933409,-0.001373,0.358776],[0.721305,0.313425,-0.617603],[-0.152532,0.006470,-0.988250],[0.027680,0.083193,-0.996124],[0.103916,0.401349,0.910001],[0.312967,0.909177,0.274606],[0.447523,0.501694,-0.740257],[0.333445,0.468520,-0.818079],[0.325785,0.510483,-0.795740],[-0.944487,-0.328471,-0.004425],[-0.393536,0.077090,0.916044],[-0.100925,0.087100,-0.991058],[0.954894,-0.189703,-0.228339],[-0.758721,-0.616993,0.208869],[-0.292093,-0.482376,0.825800],[0.336070,0.939238,0.069735],[0.265297,0.964141,-0.002686],[-0.227638,0.779839,-0.583087],[0.525254,0.846004,0.091159],[0.051332,0.368755,0.928068],[-0.313334,-0.607746,-0.729667],[0.756340,-0.077761,-0.649525],[0.597278,0.772210,0.216559],[0.480361,0.821162,0.308023],[0.502609,0.805811,0.313028],[0.033509,0.959319,0.280221],[0.238136,0.955931,0.171606],[-0.214850,0.975402,0.049104],[-0.413099,0.879116,0.237648],[-0.426069,0.895627,0.127598],[-0.165136,0.488571,-0.856716],[0.166417,0.220771,-0.960997],[0.393292,0.339976,-0.854213],[-0.363598,-0.349864,-0.863338],[-0.330729,0.257118,0.907987],[-0.826838,0.257576,-0.499954],[-0.990631,-0.040407,0.130253],[0.033723,-0.657430,0.752739],[0.417249,-0.520585,0.744865],[-0.362835,0.927580,0.088931],[-0.330790,0.940306,0.079531],[-0.328288,0.359416,0.873501],[-0.228858,0.353771,0.906857],[-0.470382,0.723777,-0.504776],[0.928953,0.335490,0.156377],[-0.408490,0.237098,0.881405],[0.582965,-0.424848,-0.692526],[0.765801,-0.437086,-0.471664],[0.727897,-0.367168,-0.579058],[-0.417890,-0.222388,-0.880825],[-0.521073,0.091525,-0.848567],[-0.320109,0.090762,-0.942991],[-0.488327,0.069247,-0.869900],[0.965270,-0.178961,0.190191],[0.993591,0.051546,0.100436],[0.901669,0.334666,0.273721],[0.965697,0.163396,0.201758],[0.880367,-0.304544,0.363567],[-0.954650,-0.280831,-0.098819],[-0.480392,0.566363,0.669637],[0.303385,-0.345500,0.887997],[0.259072,-0.756096,0.600940],[0.099918,-0.298227,-0.949217],[-0.113132,-0.470748,-0.874966],[0.967528,-0.085513,0.237831],[-0.522965,0.603809,0.601550],[0.543931,0.786615,0.292093],[-0.851222,-0.396466,-0.343822],[0.473739,0.834284,-0.281991],[-0.154881,0.353130,-0.922636],[0.083834,-0.604266,-0.792322],[0.327525,-0.488144,-0.808924],[-0.820154,-0.490371,-0.294687],[-0.657643,-0.326060,-0.679067],[-0.800531,-0.279916,-0.529862],[0.957762,0.138157,0.252174],[-0.011719,0.884671,-0.466018],[0.558519,-0.439009,-0.703757],[-0.283670,0.952788,-0.108066],[-0.224616,0.969085,-0.101993],[0.348827,-0.323832,-0.879452],[0.749229,0.042085,0.660939],[0.158147,0.856288,-0.491653],[0.557146,-0.239906,0.794977],[0.524186,-0.088351,0.846980],[0.124363,-0.819147,0.559893],[0.142949,0.233131,-0.961852],[0.756615,0.344157,-0.555895],[0.872189,0.265419,0.410871],[-0.311899,-0.005493,0.950072],[0.028718,0.549577,-0.834925],[0.012696,0.479324,-0.877529],[-0.995300,-0.076327,0.059389],[-0.981536,-0.190435,0.016694],[0.916898,-0.062807,0.394086],[0.590167,0.804956,-0.060793],[0.669301,0.739769,0.068758],[0.066378,0.585925,-0.807611],[-0.869198,-0.088351,0.486435],[-0.940428,-0.253456,0.226508],[-0.887509,-0.245491,0.389874],[-0.650533,-0.267495,0.710807],[-0.218421,0.973296,-0.070315],[-0.066958,-0.212134,0.974914],[-0.353954,-0.012177,0.935179],[-0.978576,-0.091494,0.184271],[-0.991577,-0.066866,0.110752],[-0.434767,-0.297189,-0.850063],[0.958708,-0.094882,-0.268014],[0.975127,-0.201788,0.091403],[0.031800,-0.592364,0.805017],[-0.071566,-0.672750,0.736381],[0.776879,-0.116581,-0.618732],[0.441755,0.414441,-0.795648],[0.481185,0.329478,-0.812311],[-0.674276,-0.144993,0.724082],[-0.631001,-0.076174,0.771996],[-0.534715,0.424207,0.730796],[-0.562639,0.377361,0.735527],[-0.289224,0.930113,0.226234],[-0.473769,0.863002,0.175237],[-0.490585,0.858730,0.147801],[0.842494,-0.368053,-0.393323],[0.907224,-0.418683,0.040498],[-0.193457,0.136204,0.971587],[-0.997864,0.037202,-0.053224],[0.795099,-0.307749,-0.522538],[-0.762963,0.621174,0.178869],[0.939116,-0.242988,0.242836],[0.222724,0.868465,-0.442854],[0.053255,0.906217,-0.419385],[0.979553,-0.197211,0.038942],[-0.233619,0.535661,0.811457],[-0.047548,-0.574389,0.817164],[0.144658,-0.576037,0.804498],[-0.964965,0.215918,0.148900],[-0.900021,0.283029,0.331370],[-0.924619,0.068453,0.374584],[-0.976684,0.008850,0.214454],[0.306528,-0.347911,0.885983],[-0.462447,-0.444349,-0.767235],[-0.428266,-0.374889,-0.822199],[-0.547777,-0.361370,-0.754540],[-0.013123,0.741813,-0.670461],[-0.159734,0.107822,0.981231],[0.034303,0.397961,0.916745],[0.334849,0.942198,-0.008911],[0.951048,-0.231880,0.204199],[-0.804132,0.243965,-0.542039],[-0.725425,0.290994,-0.623707],[0.256966,0.948454,0.185400],[0.101260,0.038575,-0.994079],[-0.376324,-0.285409,-0.881405],[-0.539171,-0.388592,-0.747154],[-0.279122,-0.279855,-0.918546],[0.620899,0.363262,0.694601],[-0.796747,-0.020020,-0.603961],[0.011902,0.087771,-0.996063],[-0.935301,-0.063234,0.348064],[-0.932127,-0.002411,0.362041],[0.289895,0.087497,0.953032],[0.224586,-0.638081,-0.736442],[0.350932,-0.606647,-0.713279],[0.070132,-0.578112,0.812922],[0.540422,-0.161718,-0.825678],[0.480605,-0.223457,-0.847957],[-0.320933,0.357097,-0.877163],[-0.290841,0.262154,-0.920133],[0.265023,0.434645,-0.860683],[0.607715,-0.335826,-0.719626],[0.626820,-0.435896,0.645802],[0.602588,-0.602466,0.523331],[0.208655,-0.743767,0.634999],[-0.232612,0.112186,0.966063],[0.284707,-0.255867,-0.923795],[0.496902,-0.308115,-0.811212],[0.550340,-0.251228,0.796228],[0.331462,0.937193,-0.108463],[-0.453017,-0.045930,0.890286],[-0.353679,-0.301187,0.885525],[-0.499985,-0.156133,0.851833],[0.362560,0.913419,0.184912],[0.383343,0.892178,0.238807],[0.572558,0.016633,-0.819666],[0.758415,0.047975,-0.649953],[0.212561,0.609943,-0.763359],[0.907224,-0.020508,0.420057],[-0.732658,-0.602222,-0.316965],[-0.887692,-0.394696,-0.236946],[-0.869015,-0.454848,-0.194617],[0.538041,-0.017243,-0.842708],[0.729576,-0.025605,-0.683401],[-0.193304,-0.161290,-0.967772],[0.117252,-0.412854,-0.903195],[0.605182,0.783715,0.139592],[0.743736,0.652303,-0.145848],[0.605670,0.756798,-0.245705],[0.926450,0.158361,-0.341411],[0.928343,0.094455,-0.359478],[0.994201,-0.037996,-0.100467],[-0.960692,-0.219184,-0.170202],[-0.951415,-0.046510,0.304300],[-0.950530,0.037690,0.308267],[-0.981689,-0.012940,0.190039],[0.950713,0.096988,0.294412],[0.885495,0.107273,0.452071],[0.773400,-0.633290,0.027100],[0.973205,0.135533,-0.185705],[0.192450,-0.469161,-0.861873],[0.713218,-0.195044,0.673208],[0.618885,-0.074038,0.781945],[0.655202,-0.125004,0.745018],[-0.181555,-0.917814,-0.352977],[0.479019,-0.684042,0.550066],[0.389294,0.394879,0.832148],[0.317942,0.558733,0.765954],[-0.921140,-0.166814,-0.351634],[0.465773,-0.215217,0.858303],[-0.916105,-0.265297,-0.300516],[0.065401,-0.807703,0.585894],[0.040773,-0.849452,0.526048],[-0.973388,0.078005,-0.215308],[-0.436567,-0.404889,-0.803400],[0.486129,-0.394238,-0.779870],[0.379772,-0.301096,-0.874691],[-0.654317,0.704398,-0.275002],[0.744133,0.649403,-0.156377],[0.694266,0.689230,-0.207099],[-0.120640,0.285592,-0.950713],[-0.094485,0.551317,-0.828883],[-0.046663,0.627857,-0.776879],[-0.430067,-0.092441,-0.898038],[-0.604175,-0.341197,-0.720054],[0.493973,0.692953,-0.525132],[0.473464,0.690359,-0.546953],[0.105869,0.991791,0.071505],[0.150090,0.983917,-0.096530],[-0.192785,-0.028291,-0.980804],[0.455550,-0.769402,0.447737],[-0.130345,0.111515,-0.985168],[0.981292,0.031892,0.189703],[0.640126,-0.285745,-0.713126],[-0.923765,-0.189459,-0.332743],[-0.947081,-0.179357,-0.266121],[0.974090,-0.097354,-0.204016],[0.919431,0.024506,-0.392468],[0.929319,0.116001,-0.350566],[-0.763146,-0.428785,-0.483413],[0.642232,0.536119,-0.547746],[0.895657,-0.110508,-0.430738],[0.852168,0.013886,-0.523057],[0.362377,0.929350,-0.070315],[-0.261971,-0.209906,-0.941954],[0.130039,0.642537,-0.755089],[-0.061617,0.672353,-0.737632],[0.801660,-0.268258,-0.534165],[0.772515,0.634358,0.027223],[-0.800867,-0.535264,-0.268441],[-0.472518,-0.815302,0.334574],[0.646321,-0.555223,0.523362],[-0.888455,0.457717,-0.033265],[0.067263,0.636555,-0.768273],[0.210364,0.441115,-0.872433],[0.151189,0.357250,-0.921659],[-0.938139,-0.137852,0.317606],[0.325388,0.938322,0.116611],[0.249092,0.024049,-0.968169],[-0.941923,-0.015473,0.335398],[-0.897336,0.102115,0.429304],[-0.989715,0.044679,0.135685],[0.861263,0.508133,-0.001526],[-0.940123,-0.112583,0.321635],[-0.962889,-0.245247,-0.112552],[-0.908963,-0.393536,-0.137272],[-0.824305,-0.402783,-0.397748],[0.328806,0.164678,-0.929899],[0.884243,-0.383496,0.266457],[0.467605,-0.359630,0.807428],[0.319712,-0.521470,0.791070],[-0.971404,-0.150822,0.183294],[-0.995880,0.047700,0.076846],[-0.732627,0.251076,0.632588],[-0.759606,0.180883,0.624683],[-0.205023,-0.890194,0.406751],[0.807215,0.245735,0.536607],[0.436842,0.804743,0.401898],[0.347789,0.795831,0.495621],[0.532609,-0.135472,-0.835414],[0.460067,-0.163274,-0.872738],[0.912503,0.123417,0.389935],[-0.926054,0.341929,0.159551],[0.986724,-0.162206,0.007080],[-0.435408,0.460189,-0.773675],[0.962035,-0.095462,-0.255623],[0.903256,0.173925,0.392224],[0.934599,-0.001953,-0.355693],[0.872463,0.181005,-0.453902],[-0.751213,-0.252327,0.609882],[0.588427,-0.667135,0.456771],[-0.338908,-0.404584,0.849361],[-0.921323,-0.194098,-0.336802],[-0.905271,-0.227241,-0.358898],[0.202582,0.562731,-0.801416],[-0.370403,0.921354,0.117801],[-0.386212,0.131504,0.912961],[0.100101,0.670400,0.735160],[0.112980,-0.131352,-0.984863],[0.206153,-0.378246,-0.902432],[0.377300,-0.496445,-0.781732],[0.349101,-0.445387,-0.824458],[0.887997,-0.379223,0.260018],[0.995483,0.081240,0.048830],[-0.962523,-0.086886,0.256874],[0.947295,-0.094058,-0.306192],[-0.954772,-0.294900,-0.037477],[0.388897,0.913907,0.116184],[0.167669,0.985534,-0.023896],[0.072481,0.959288,-0.272958],[0.537065,0.714255,0.448683],[0.949980,0.010834,-0.312052],[0.864956,0.357860,0.351817],[-0.868404,-0.469985,0.157933],[-0.917570,-0.393811,0.054018],[-0.735679,-0.318278,-0.597858],[-0.074740,-0.749382,0.657888],[0.700217,0.058290,-0.711509],[0.898038,0.012726,-0.439680],[-0.846919,0.231147,0.478835],[-0.211859,0.732322,-0.647145],[-0.379986,-0.286081,0.879604],[-0.150487,-0.386242,-0.910031],[-0.684469,-0.174902,-0.707724],[-0.769005,-0.067415,-0.635639],[-0.129124,-0.200415,0.971160],[-0.346446,-0.426557,0.835444],[0.302744,0.140477,-0.942656],[0.892209,-0.422712,-0.158879],[0.997223,-0.043092,0.060671],[0.995483,-0.064394,0.069643],[0.639027,-0.338115,-0.690848],[0.467666,-0.325968,-0.821558],[0.895779,0.154790,-0.416608],[0.978790,0.185797,0.086001],[-0.864895,-0.488205,0.116428],[-0.936613,-0.327738,0.123722],[-0.984893,-0.026337,0.171026],[0.160100,-0.041932,-0.986206],[0.084475,0.055727,-0.994842],[0.376965,0.843959,-0.381573],[-0.310770,0.945036,0.101382],[-0.910764,-0.407727,-0.065157],[-0.897458,-0.440657,0.018616],[-0.390210,-0.406934,-0.825892],[0.535508,-0.382092,-0.753136],[0.785699,-0.492050,-0.374859],[-0.830409,0.555895,0.036744],[-0.822779,0.566973,-0.039308],[0.354717,0.271218,-0.894742],[0.850978,-0.148167,-0.503800],[-0.021882,-0.381634,-0.924039],[-0.986053,-0.162542,-0.035279],[-0.947356,-0.261361,-0.184759],[-0.168279,0.410138,-0.896329],[0.586413,-0.517075,0.623463],[0.518265,-0.282235,0.807276],[0.223243,0.354076,-0.908170],[0.174932,0.276955,-0.944792],[-0.103275,0.329295,0.938536],[-0.802881,0.486160,-0.344920],[0.413923,0.904050,-0.106418],[0.903256,-0.273568,0.330515],[0.983062,0.109226,0.147099],[0.674215,0.697073,-0.243904],[0.763848,0.595386,-0.249031],[-0.501328,-0.497421,-0.707968],[-0.343242,-0.379498,-0.859127],[0.981323,-0.070345,0.178930],[0.320048,0.199652,0.926115],[0.116916,0.297525,0.947508],[0.204718,0.174047,0.963195],[-0.316935,-0.468398,-0.824702],[-0.155126,0.372143,-0.915098],[-0.319620,0.245308,-0.915220],[-0.056124,0.939573,-0.337657],[0.044557,0.917783,-0.394543],[-0.952513,0.115452,0.281655],[0.310373,-0.097385,-0.945585],[0.806299,-0.344310,-0.480941],[0.930662,0.078249,0.357372],[-0.986419,-0.162938,-0.019288],[0.244850,0.915067,0.320414],[0.288797,0.948027,0.133457],[0.296030,-0.024323,-0.954833],[0.047182,0.154118,0.986908],[-0.151646,0.266335,-0.951842],[-0.129582,0.258705,-0.957213],[-0.007355,0.992370,-0.123020],[-0.131596,0.962127,-0.238624],[0.241371,0.965728,0.095157],[0.845149,-0.237220,0.478988],[0.363170,-0.402295,0.840358],[-0.446486,-0.376232,-0.811823],[-0.382427,0.919370,0.092105],[0.936735,-0.321879,0.137333],[0.319285,0.263192,-0.910367],[0.251564,0.070650,0.965239],[0.100375,0.040040,0.994140],[-0.868313,-0.495834,-0.012299],[0.824061,-0.451399,-0.342204],[0.298746,0.861934,-0.409650],[0.533738,0.771325,-0.346599],[-0.577227,-0.215003,-0.787713],[-0.387921,-0.369793,-0.844234],[0.828455,-0.338298,-0.446303],[-0.155736,-0.914701,0.372845],[-0.901700,0.298563,0.312693],[0.666005,-0.401196,-0.628834],[-0.400098,0.061281,0.914396],[-0.571215,-0.031220,0.820185],[-0.614277,-0.165899,0.771416],[0.988952,-0.013825,0.147465],[0.664479,0.709098,-0.235755],[0.346477,0.899319,0.266671],[-0.023133,0.179693,-0.983428],[-0.157598,0.186163,-0.969787],[-0.493057,0.519639,-0.697714],[-0.364025,-0.224342,-0.903928],[0.592883,0.785852,-0.175634],[0.948302,-0.237251,0.210730],[0.948790,-0.161565,0.271371],[-0.257241,0.042543,-0.965392],[-0.440352,-0.070559,-0.895016],[-0.572344,-0.267251,-0.775201],[-0.431928,0.345134,0.833247],[-0.313791,0.402936,0.859737],[-0.111759,-0.045717,0.992676],[-0.135044,0.112339,0.984436],[-0.845241,-0.463118,0.266579],[-0.932798,-0.273507,0.234657],[-0.784082,0.606494,0.131657],[-0.764153,0.639882,0.080966],[0.336833,-0.739280,-0.583026],[0.442457,-0.596973,-0.669179],[-0.183660,0.208319,0.960631],[0.702841,0.673116,0.230018],[0.945067,0.202704,0.256355],[0.757561,0.652242,0.024506],[0.434065,0.737541,0.517289],[0.739830,0.522935,0.423292],[-0.168310,0.940947,-0.293649],[-0.905179,0.414106,0.095584],[0.917722,0.051119,0.393872],[0.442549,0.850703,0.283517],[-0.855831,0.336955,0.392407],[0.941740,0.098148,0.321635],[-0.660390,0.665426,-0.347942],[-0.622883,0.724265,-0.295633],[0.411969,-0.189520,-0.891232],[-0.961913,-0.216895,-0.166234],[0.273385,-0.349406,-0.896176],[-0.292947,0.835109,-0.465499],[-0.284249,0.783105,-0.553087],[-0.954650,0.060488,0.291421],[-0.941130,0.032929,0.336344],[0.971892,0.194189,0.132939],[-0.974853,0.148595,0.165960],[-0.987121,-0.142155,0.073244],[-0.986175,-0.035249,0.161840],[-0.587664,-0.781549,0.209235],[-0.624592,0.493240,0.605426],[-0.638844,0.369732,0.674642],[-0.811029,-0.187994,0.553941],[-0.858089,-0.160558,0.487716],[0.980316,0.096103,-0.172338],[0.272958,0.893857,0.355663],[-0.410932,-0.008515,-0.911588],[-0.661946,-0.184240,-0.726524],[0.976531,0.186895,0.106876],[0.323160,0.779168,-0.537065],[0.272378,0.822321,-0.499557],[-0.996460,-0.077578,-0.031556],[0.716605,0.411725,-0.562944],[0.270028,-0.921628,0.278603],[0.721000,-0.415143,0.554765],[0.191687,-0.444136,-0.875179],[-0.120670,0.012299,-0.992615],[-0.298685,0.094913,-0.949614],[-0.511124,-0.715995,0.475417],[-0.464980,-0.667165,0.581957],[-0.963042,0.166387,0.211676],[0.491104,0.854549,-0.168889],[-0.026704,0.275887,-0.960814],[-0.046236,0.159520,-0.986084],[0.955504,-0.120212,0.269295],[-0.823664,-0.337687,-0.455519],[-0.451460,-0.755913,0.474075],[-0.067873,-0.808985,0.583850],[0.204535,-0.374676,-0.904294],[-0.207434,0.245155,-0.947020],[-0.428053,-0.616504,-0.660787],[0.303720,0.949309,0.080752],[0.333110,0.927427,0.169927],[-0.511399,0.843745,0.162786],[-0.872158,0.486435,-0.051424],[-0.353679,0.935301,-0.007416],[-0.456252,0.282968,-0.843623],[-0.618732,-0.630482,0.468642],[-0.481796,-0.700522,0.526383],[-0.879879,0.232765,0.414258],[0.541581,0.650990,0.531846],[-0.669546,0.262276,0.694876],[-0.182897,0.826075,-0.532975],[0.702017,-0.259011,-0.663350],[0.246406,0.959899,0.133610],[0.815790,0.538041,0.211951],[0.408612,0.909604,0.075045],[-0.035981,0.283456,-0.958281],[-0.893277,0.200659,0.402203],[-0.913694,0.113346,0.390240],[-0.950133,0.142491,0.277261],[0.243873,0.528428,-0.813166],[0.337382,0.404981,-0.849788],[0.242653,0.469710,-0.848781],[0.982910,-0.060549,0.173711],[-0.749474,-0.653432,0.106204],[0.909726,-0.237678,-0.340342],[-0.984832,-0.050020,-0.165990],[-0.999207,-0.003388,0.039552],[-0.995819,-0.064364,-0.064425],[0.945555,0.114719,-0.304514],[-0.248787,0.305887,0.918973],[0.698447,-0.383984,-0.603900],[0.855586,-0.274941,-0.438581],[0.910276,0.263985,0.318888],[-0.382061,-0.349773,-0.855342],[-0.813288,0.351848,-0.463363],[-0.923765,-0.306284,0.229835],[0.727897,0.465407,-0.503494],[-0.007813,-0.995972,0.089053],[0.459792,-0.387921,-0.798791],[0.541276,0.818598,0.191961],[0.804468,-0.320322,-0.500168],[0.143071,0.164098,-0.975982],[0.249580,0.255684,-0.933958],[0.876095,-0.415448,-0.244514],[-0.151982,0.237465,-0.959410],[0.394696,0.912107,0.110446],[0.448408,0.869259,0.208014],[0.645680,-0.393445,-0.654408],[-0.562243,0.647114,-0.514817],[0.674429,0.188025,-0.713981],[0.698782,0.213416,-0.682730],[0.028352,0.211676,0.976897],[0.307840,-0.260109,0.915159],[-0.992157,0.025025,-0.122318],[-0.939390,0.247627,-0.237007],[-0.986694,0.125980,-0.102634],[-0.953734,-0.277474,-0.115604],[-0.981780,-0.100711,0.160924],[0.968108,0.088717,0.234260],[0.291635,0.162297,0.942625],[0.504410,0.657552,-0.559587],[-0.614246,-0.126988,-0.778802],[0.492691,0.849178,0.190008],[0.701315,-0.621723,0.348643],[0.011017,-0.515549,0.856777],[0.918149,-0.009735,0.396039],[0.110294,0.316477,-0.942137],[0.983795,-0.147282,-0.102145],[0.447035,0.065523,0.892087],[-0.782464,-0.355205,-0.511399],[-0.661367,-0.359813,-0.658071],[0.239845,0.926603,0.289560],[0.167425,-0.180273,-0.969237],[-0.920103,0.247932,0.303171],[0.952330,-0.194098,0.235267],[0.413221,-0.362865,-0.835170],[-0.136418,0.421888,-0.896298],[0.026032,0.350749,-0.936094],[-0.148473,0.298898,-0.942625],[-0.953154,-0.232765,0.192999],[-0.969939,0.027253,0.241707],[-0.942717,0.125553,-0.309030],[-0.079134,-0.023713,-0.996551],[-0.155705,-0.200140,-0.967284],[0.049654,-0.023591,-0.998474],[-0.995331,-0.067141,0.069277],[-0.084902,0.813074,-0.575915],[0.224647,0.793573,-0.565447],[-0.498642,0.803888,-0.324168],[-0.570574,0.191687,-0.798547],[-0.510178,0.139805,-0.848598],[-0.355876,-0.085086,-0.930631],[-0.529954,-0.124332,-0.838832],[-0.327006,-0.165136,-0.930479],[0.601550,-0.752739,0.267342],[-0.583483,0.280007,-0.762291],[-0.337321,0.480117,-0.809717],[0.975799,-0.208625,-0.065127],[0.975433,-0.204535,-0.081545],[0.984069,-0.144017,-0.103977],[0.097598,-0.472060,-0.876125],[-0.291482,0.827723,-0.479446],[0.446822,0.604083,-0.659810],[0.001801,0.593890,-0.804498],[0.043794,0.597827,-0.800409],[0.082400,-0.309641,-0.947264],[-0.908475,-0.290384,-0.300455],[-0.907010,-0.241310,-0.345012],[-0.569933,0.224372,-0.790429],[-0.512253,-0.252876,-0.820734],[0.392163,-0.047121,0.918668],[0.559038,-0.198675,-0.804956],[0.533677,-0.227119,-0.814570],[-0.840846,0.157384,0.517869],[-0.917417,0.195959,0.346294],[-0.923612,0.126713,0.361736],[-0.583026,-0.404279,-0.704703],[0.355693,-0.329905,-0.874416],[0.750877,-0.432875,-0.498764],[-0.926725,-0.369030,-0.070223],[-0.922880,-0.251869,-0.291177],[0.392529,-0.308481,-0.866421],[-0.866176,-0.430189,-0.254189],[-0.949065,-0.305063,0.078555],[-0.977050,-0.211646,0.023103],[0.283120,0.885372,-0.368633],[0.346934,0.860653,-0.372631],[0.175512,0.070315,0.981933],[0.718955,0.607227,-0.338084],[-0.671957,-0.637593,-0.376690],[-0.726188,-0.420087,-0.544176],[-0.097293,0.299387,0.949126],[0.930845,0.077029,-0.357128],[0.770531,0.509049,0.383526],[0.751061,0.616596,0.235939],[-0.469771,-0.193152,-0.861385],[-0.564989,-0.346995,-0.748558],[0.238502,0.945158,0.222968],[-0.480697,0.653249,-0.584918],[-0.724174,-0.046785,0.687979],[-0.046022,0.829188,-0.557054],[0.230689,-0.277261,-0.932676],[0.346324,-0.380779,-0.857326],[0.204443,-0.310923,-0.928159],[0.809137,0.105258,0.578082],[-0.800501,-0.372051,-0.469832],[0.017212,0.175665,-0.984283],[0.186316,-0.264595,0.946165],[0.086520,-0.320292,0.943327],[-0.574877,0.053285,0.816492],[-0.196326,0.977325,-0.079012],[-0.024995,-0.266488,-0.963500],[-0.034394,-0.985809,-0.164159],[0.217627,0.003143,0.976012],[-0.101077,0.865108,-0.491287],[0.976135,-0.138890,0.166845],[-0.801782,0.168401,-0.573351],[0.584704,0.736381,0.340342],[0.317209,-0.107181,0.942259],[0.276284,0.951567,-0.134709],[0.152501,0.975341,0.159398],[-0.516404,-0.114475,-0.848628],[-0.722739,0.686117,0.082675],[0.820673,-0.424177,0.382824],[-0.886807,-0.340495,-0.312449],[0.076083,0.192022,0.978423],[0.021027,-0.026124,-0.999420],[-0.956816,0.119327,0.264992],[0.350566,-0.038301,0.935728],[-0.376873,0.149022,-0.914182],[-0.231300,0.293588,-0.927519],[-0.924680,-0.358196,-0.128971],[0.076266,0.986724,-0.143315],[-0.528214,-0.256813,0.809320],[-0.213904,-0.105594,-0.971099],[-0.900510,-0.259560,0.348796],[0.930204,-0.296640,-0.216102],[-0.733848,-0.278359,-0.619617],[0.302530,0.942534,0.141667],[0.341960,0.212409,-0.915372],[0.354472,0.303995,-0.884243],[-0.425764,0.161901,0.890194],[0.989898,0.049013,0.132939],[0.981811,0.015778,0.189123],[0.176397,-0.466170,-0.866909],[-0.903592,-0.342509,-0.257179],[0.524705,0.815638,0.243660],[0.663961,-0.355388,0.657857],[0.528428,0.716178,0.455885],[-0.801874,-0.293558,-0.520371],[-0.959960,0.158177,0.231086],[0.696524,-0.236030,-0.677572],[0.801508,0.106876,0.588305],[-0.355510,0.931944,0.071139],[-0.085818,0.992920,0.082095],[0.114200,-0.019898,-0.993255],[0.982910,-0.070620,0.169805],[0.936308,-0.140782,0.321696],[0.294595,0.950194,0.101627],[-0.680044,-0.311136,-0.663839],[0.271035,0.515091,-0.813135],[0.398175,0.469466,-0.788049],[0.910764,0.057222,0.408887],[0.592212,0.249580,0.766106],[0.456008,-0.499680,-0.736442],[0.751213,-0.241188,-0.614368],[-0.862545,-0.232276,0.449507],[-0.823115,-0.212531,0.526597],[-0.179571,0.229804,-0.956511],[0.551012,-0.095767,-0.828944],[-0.025910,0.034547,-0.999054],[-0.736106,-0.217994,-0.640767],[-0.768700,-0.554521,-0.318674],[-0.682760,0.488083,0.543657],[0.548997,0.715720,-0.431593],[-0.286691,-0.224677,-0.931272],[-0.893155,0.126835,0.431410],[-0.826228,0.160222,0.540056],[0.621784,-0.248360,0.742729],[0.589557,-0.322459,0.740532],[0.589923,-0.325205,-0.739036],[-0.996734,0.069643,0.040742],[-0.996551,0.060732,0.056001],[0.964476,-0.249275,0.087069],[0.440352,0.893643,0.086306],[0.941801,-0.334788,0.029664],[-0.209174,0.974761,0.077914],[0.761620,0.002533,-0.647969],[0.364269,0.370434,-0.854427],[-0.907407,-0.142003,0.395520],[-0.913450,-0.278207,0.296945],[-0.521470,-0.522019,-0.674917],[-0.568896,-0.216071,-0.793481],[-0.088504,0.333415,-0.938597],[-0.039216,0.253639,-0.966491],[0.554613,0.474319,0.683676],[0.154576,0.952391,-0.262734],[0.948454,-0.304880,0.086398],[0.948576,-0.316355,-0.008179],[0.931730,-0.354198,0.079775],[0.798151,0.325663,0.506790],[0.313486,-0.490890,-0.812830],[-0.138798,0.498367,0.855770],[-0.015778,0.163396,0.986419],[-0.129215,0.153172,0.979705],[-0.249855,0.196905,-0.948027],[0.731956,0.575152,-0.365246],[0.904843,0.309061,0.292764],[-0.991882,-0.009064,-0.126713],[-0.785180,0.462386,0.411847],[-0.901059,-0.409558,-0.142491],[0.368053,-0.305185,0.878262],[0.644398,0.618061,0.450240],[-0.737327,0.274728,-0.617084],[-0.636311,0.599200,-0.485824],[0.492691,-0.091159,-0.865383],[0.642262,-0.009766,-0.766381],[-0.248878,-0.954161,0.166082],[-0.237739,-0.698691,-0.674734],[-0.036103,-0.993347,-0.109287],[0.958831,0.152623,-0.239357],[-0.976989,-0.093326,-0.191717],[-0.929167,0.273415,-0.248726],[-0.908322,0.331400,-0.255135],[-0.771874,0.552538,0.314432],[-0.284524,-0.120548,-0.951048],[-0.289560,-0.233680,-0.928159],[0.920103,-0.039186,0.389660],[-0.876400,0.346385,-0.334544],[-0.339549,-0.832087,0.438490],[-0.479629,0.193457,-0.855861],[0.843654,0.515275,-0.150639],[-0.007630,0.249245,-0.968383],[0.921232,-0.308359,-0.237098],[-0.983856,-0.165502,0.067995],[-0.229499,-0.785577,-0.574602],[-0.933866,-0.108615,-0.340678],[-0.105136,0.837794,-0.535752],[0.924741,0.015687,0.380200],[0.380627,0.912839,0.147740],[-0.183721,0.206671,0.960997],[-0.281594,0.043275,0.958525],[0.273415,0.960448,0.052156],[-0.528550,-0.309091,-0.790582],[-0.109806,0.244697,0.963347],[0.431166,-0.809687,0.398053],[-0.186468,-0.216102,0.958373],[0.993286,-0.093753,-0.067324],[-0.720908,0.600848,-0.345317],[-0.352580,-0.208960,0.912137],[0.793329,-0.278298,-0.541429],[0.510636,0.347606,0.786370],[0.496628,0.426099,0.756157],[-0.336375,-0.383984,-0.859859],[0.017945,0.480392,-0.876858],[-0.661184,0.203497,0.722068],[-0.420087,-0.105930,-0.901273],[-0.528062,0.097446,-0.843562],[-0.969146,-0.122776,0.213660],[0.698386,-0.316965,-0.641652],[-0.651204,0.417646,0.633595],[0.131901,0.738853,0.660787],[-0.442488,-0.474166,-0.761132],[-0.346873,-0.470626,-0.811274],[-0.120579,0.848018,-0.516037],[0.495682,0.454909,-0.739799],[-0.195990,-0.533769,-0.822596],[-0.456130,-0.437452,-0.774926],[0.993408,-0.035524,0.108921],[0.949950,-0.298593,0.091708],[0.937834,-0.296182,0.180792],[-0.712424,-0.388165,-0.584582],[-0.797174,-0.424726,-0.429029],[0.415601,-0.275124,0.866909],[-0.138829,0.795434,-0.589892],[0.528794,0.507096,0.680563],[0.918149,0.244392,-0.311869],[0.863521,0.258919,-0.432722],[-0.976836,-0.096408,0.190893],[-0.504654,0.348979,-0.789605],[0.901883,0.430708,0.032838],[0.115757,-0.466872,-0.876705],[0.780816,-0.211646,0.587786],[0.876003,-0.397382,0.273232],[0.938475,-0.345103,0.010620],[-0.858577,0.403546,0.316172],[-0.888302,-0.239418,-0.391858],[-0.870907,-0.474868,-0.126316],[0.677511,-0.616016,-0.401807],[-0.901547,-0.342906,-0.263802],[0.905026,-0.401746,0.139531],[0.750237,-0.441023,-0.492538],[0.947691,0.052278,0.314798],[0.999451,-0.031861,0.007569],[0.987457,-0.137852,0.076876],[0.495621,0.868435,-0.012635],[0.445814,0.894833,-0.022309],[0.952269,-0.287942,0.101169],[-0.845454,-0.084841,-0.527238],[-0.399731,-0.079501,0.913144],[-0.944029,-0.278146,0.177282],[0.356182,0.230964,0.905393],[0.358715,0.932035,0.051088],[-0.882107,-0.246437,0.401349],[-0.237892,0.336467,0.911130],[0.348155,-0.422040,-0.837031],[-0.458113,-0.386090,0.800623],[-0.616565,-0.499771,-0.608295],[-0.515305,-0.497604,-0.697714],[-0.082553,-0.488937,-0.868374],[0.596728,-0.524735,-0.607074],[-0.265114,-0.744652,0.612507],[-0.136876,-0.772668,0.619831],[-0.791864,0.194586,0.578845],[-0.836512,-0.033326,0.546892],[-0.729820,-0.402051,-0.552873],[0.462966,0.815088,0.348186],[0.589373,0.027680,0.807367],[0.494156,-0.242103,0.834956],[0.674032,-0.011017,0.738609],[-0.934172,0.271126,-0.231849],[0.400311,0.889706,0.219398],[-0.658528,0.736351,0.155217],[-0.279763,0.436354,-0.855159],[-0.548997,-0.593066,-0.588885],[-0.236518,-0.350352,0.906217],[-0.680166,-0.083956,0.728202],[0.394696,0.882015,0.257363],[0.135960,-0.442732,-0.886258],[0.207984,0.972503,0.104556],[0.399335,0.905271,0.144749],[0.329539,-0.203558,-0.921903],[-0.465621,-0.188055,-0.864742],[-0.406507,-0.136937,-0.903287],[-0.486770,-0.206122,-0.848842],[-0.057863,-0.431959,0.900021],[0.648213,-0.526811,-0.549760],[-0.129154,0.737907,0.662404],[-0.049989,0.861080,0.505997],[-0.074526,0.748222,0.659200],[-0.961364,-0.220252,0.165044],[0.905454,-0.339244,0.254982],[0.979278,-0.063204,0.192328],[0.885342,-0.265084,0.381939],[0.049135,-0.264657,-0.963073],[0.925474,0.099551,0.365459],[0.266060,0.341563,-0.901395],[0.316111,0.914243,0.253365],[0.443678,0.826624,0.346141],[-0.956053,-0.169836,-0.238929],[0.237709,-0.504898,0.829768],[0.161962,-0.397748,-0.903073],[0.162236,0.757836,-0.631916],[0.353221,0.652181,-0.670705],[0.345653,0.673910,-0.652913],[0.234230,0.969573,-0.070742],[0.967528,-0.238289,0.084109],[0.944517,-0.328196,0.011841],[0.494736,0.869015,-0.005066],[0.587848,-0.348064,-0.730216],[0.832301,-0.164495,-0.529313],[0.620380,0.018311,-0.784051],[-0.800470,-0.473708,-0.367199],[-0.561693,0.815332,-0.140263],[-0.379803,0.387463,0.839991],[-0.076662,0.166723,-0.983001],[-0.581805,-0.292642,-0.758812],[-0.835505,-0.279153,-0.473281],[-0.298441,0.330302,0.895413],[-0.472884,-0.456465,-0.753624],[0.729606,0.403821,0.551866],[-0.082186,0.097354,0.991821],[-0.979125,-0.139073,0.148167],[0.194037,0.013428,0.980895],[-0.082858,0.251503,-0.964293],[0.656636,-0.342357,-0.671987],[0.947569,-0.307901,-0.085238],[-0.692434,-0.141362,-0.707450],[-0.777886,-0.308267,-0.547563],[0.794946,0.566515,-0.216926],[-0.625629,-0.314646,-0.713797],[0.409589,0.903043,0.129368],[-0.816919,0.372448,0.440321],[-0.081362,0.754967,-0.650655],[-0.126408,0.600818,-0.789300],[0.505387,-0.354259,-0.786798],[0.864223,0.276864,-0.419996],[0.308023,-0.303903,-0.901517],[0.892544,0.016572,0.450606],[0.904721,0.059206,0.421796],[0.488388,0.815241,0.311167],[-0.550798,-0.606098,0.573779],[0.597308,-0.473861,-0.647023],[0.936552,-0.002930,-0.350475],[0.539964,0.006775,0.841639],[-0.979217,-0.144475,-0.142277],[0.558397,0.823664,-0.098666],[-0.892758,-0.425489,0.148045],[-0.873745,-0.373943,-0.310923],[-0.452773,-0.412000,-0.790704],[-0.462630,0.051149,-0.885067],[0.763329,-0.427259,-0.484512],[0.697653,0.529801,0.482223],[0.285989,0.732871,0.617298],[-0.922178,0.194281,0.334330],[-0.975677,-0.138829,0.169622],[-0.985626,0.106265,-0.131138],[0.048524,0.701376,0.711112],[-0.320322,-0.397504,-0.859859],[-0.452101,-0.456954,-0.765984],[-0.145848,0.853023,-0.501053],[-0.010865,0.837672,-0.546037],[-0.024140,0.863186,-0.504288],[0.527573,-0.259255,0.808954],[0.224860,-0.641041,0.733787],[0.685385,-0.359447,-0.633259],[-0.870449,0.256417,-0.420118],[0.920957,-0.105899,0.374920],[-0.428663,-0.340434,0.836848],[0.599933,-0.429792,0.674764],[-0.996277,0.077792,-0.036317],[-0.363536,-0.050813,0.930174],[-0.490341,0.054018,0.869839],[0.014527,0.761223,-0.648274],[-0.045015,0.703696,-0.709037],[0.904782,0.067965,0.420331],[0.962218,-0.046510,0.268197],[-0.024659,-0.455855,-0.889676],[0.997589,0.007385,0.068728],[0.889767,0.005615,0.456343],[0.850581,-0.221259,0.476974],[-0.897763,0.058504,0.436537],[-0.306406,0.222205,0.925565],[-0.863857,0.291513,0.410779],[-0.898923,0.276650,0.339640],[0.931425,-0.308115,-0.193579],[-0.265633,-0.195410,-0.944029],[-0.618458,-0.454360,-0.641102],[-0.606891,0.713279,-0.350505],[0.909635,0.074129,0.408673],[0.106876,0.551164,-0.827509],[0.179907,0.568957,-0.802423],[0.378277,-0.228370,0.897061],[-0.068178,-0.018677,-0.997497],[-0.897519,0.207190,0.389203],[-0.368908,0.542528,-0.754662],[-0.425001,-0.435987,-0.793237],[-0.512803,0.224128,0.828700],[-0.557390,0.191870,0.807733],[0.204474,0.407880,0.889828],[-0.021943,-0.133274,-0.990814],[0.033479,-0.136509,0.990051],[-0.955565,-0.147618,-0.255074],[-0.190649,-0.353984,0.915586],[-0.247963,-0.279733,-0.927488],[-0.302805,0.005402,-0.953032],[0.292398,0.864559,-0.408643],[0.987457,-0.087893,0.131108],[0.994049,0.010010,-0.108188],[-0.019074,0.280190,-0.959746],[-0.585528,0.810602,0.005646],[-0.478286,0.818751,-0.317576],[-0.290262,0.937529,-0.191687],[-0.069094,0.992126,0.104312],[0.992035,-0.103397,0.071505],[0.969817,-0.170354,0.174352],[-0.733512,-0.624714,0.267647],[-0.533403,-0.250252,-0.807947],[0.945036,-0.191443,-0.264992],[-0.094089,0.870968,0.482192],[0.139195,-0.436872,-0.888668],[0.067202,-0.340403,-0.937864],[-0.246223,0.959014,-0.140172],[-0.941252,0.187933,0.280557],[0.696188,0.459670,0.551317],[-0.995514,-0.037019,0.086825],[-0.547624,-0.228370,-0.804926],[-0.843318,-0.529344,-0.092563],[0.520371,-0.350047,-0.778863],[0.781304,-0.509232,-0.360820],[0.903928,0.218055,-0.367870],[-0.954955,-0.127934,0.267647],[-0.136570,-0.092288,-0.986297],[-0.932096,-0.078127,0.353587],[-0.140996,0.955809,0.257881],[-0.908109,-0.201697,0.366863],[0.550340,-0.481460,0.682119],[-0.908933,-0.136845,0.393780],[-0.485824,-0.210120,-0.848415],[0.547380,0.677023,-0.491897],[0.940397,0.206397,-0.270150],[-0.411054,0.378918,-0.829096],[-0.426588,0.459517,-0.778985],[0.094394,0.794427,-0.599933],[0.951933,0.304910,0.028626],[0.328471,0.524552,-0.785455],[-0.786370,0.457472,-0.415052],[0.491256,0.231788,0.839564],[0.524735,0.248115,0.814264],[0.937468,-0.213111,0.275124],[-0.878079,-0.458937,-0.135228],[0.230354,-0.230354,-0.945433],[-0.515122,-0.340709,-0.786462],[0.729087,0.026521,0.683889],[0.003662,0.221107,-0.975219],[-0.025300,0.124302,-0.991913],[0.017762,0.173894,-0.984588],[0.702658,-0.272073,0.657399],[0.662618,-0.189093,0.724662],[0.293008,-0.102756,-0.950560],[0.329630,-0.125248,-0.935759],[0.924039,-0.302408,-0.233802],[0.940062,0.044435,0.338023],[-0.722098,0.461776,0.515061],[0.071871,0.410718,0.908902],[0.016816,0.425825,0.904630],[0.088992,0.483322,0.870876],[-0.272042,0.854213,-0.443007],[0.312510,0.675069,0.668264],[0.244179,0.967803,-0.060854],[-0.982604,-0.145421,0.115360],[-0.631245,0.775140,0.025391],[0.089022,-0.256539,-0.962401],[-0.474960,-0.548296,-0.688284],[-0.489486,-0.473373,-0.732322],[-0.299753,0.001831,-0.954009],[-0.775262,-0.015931,-0.631397],[-0.146123,0.776055,-0.613453],[0.106754,-0.525285,0.844172],[-0.137608,-0.526414,0.838984],[0.650685,0.535844,0.537980],[-0.603168,-0.278085,0.747520],[0.308481,0.443037,0.841731],[0.941740,-0.220771,-0.253670],[-0.406446,0.189642,0.893765],[0.180151,-0.364544,-0.913572],[0.930357,-0.205420,0.303598],[0.304788,0.068484,-0.949919],[-0.891018,-0.317148,-0.324717],[-0.016297,0.116977,-0.992981],[-0.331400,-0.575762,-0.747398],[0.281472,0.951140,0.126652],[0.601215,0.788629,-0.128574],[-0.957427,0.287362,-0.027070],[-0.969909,0.235176,0.062899],[0.533555,-0.160161,-0.830439],[0.601672,-0.244697,-0.760308],[0.887783,-0.091189,0.451094],[-0.526688,-0.274819,0.804376],[0.752892,-0.001099,-0.658101],[0.736259,-0.465011,-0.491562],[-0.004791,0.205847,-0.978545],[-0.694540,0.655293,0.296884],[0.455489,0.325358,0.828639],[-0.078555,0.055940,-0.995331],[0.170385,0.799219,0.576342],[0.685049,-0.095981,-0.722129],[-0.323283,0.016938,-0.946135],[0.724143,-0.015412,0.689444],[0.981414,-0.173528,-0.081606],[0.389966,0.211432,-0.896207],[-0.990783,-0.126469,0.048189],[-0.569872,0.693594,-0.440596],[0.286935,-0.002472,0.957915],[-0.016694,0.752281,-0.658589],[0.855586,-0.424329,-0.296426],[0.882351,0.106174,0.458419],[0.883145,-0.147099,0.445418],[0.888150,0.384594,-0.251442],[-0.711142,-0.281137,0.644337],[0.546159,-0.393353,-0.739555],[0.191565,-0.407117,-0.893033],[-0.118107,-0.594867,0.795068],[-0.773400,-0.249672,0.582629],[0.492813,-0.515091,-0.701254],[-0.141514,0.301035,0.943022],[0.674459,-0.366100,-0.641102],[-0.930509,0.111301,0.348918],[-0.939634,0.134129,0.314707],[-0.566271,-0.315683,-0.761345],[-0.299020,-0.162450,-0.940306],[0.623951,0.737663,0.257820],[0.950560,-0.222022,0.217048],[0.670034,0.485275,-0.561724],[0.148595,0.228431,-0.962127],[0.766289,0.475265,0.432325],[-0.851497,0.361461,0.379803],[-0.789361,0.550035,-0.272652],[-0.974181,-0.223426,0.031373],[-0.379162,0.801691,-0.462020],[-0.718833,0.627644,0.298837],[-0.603320,0.752037,-0.265297],[0.990692,-0.044374,0.128513],[-0.907285,-0.178350,0.380779],[-0.309854,0.949583,0.047121],[0.975677,-0.208472,0.067385],[0.838618,0.416486,0.350993],[0.070406,-0.574328,0.815577],[0.860653,0.490585,0.136296],[0.004700,0.995544,0.093936],[0.257912,0.264168,-0.929319],[-0.808222,0.584094,-0.074587],[-0.055544,0.061251,-0.996551],[-0.751335,-0.361980,-0.551744],[0.080386,-0.335398,-0.938627],[-0.971557,-0.133091,0.195685],[0.522752,-0.371685,-0.767174],[0.827357,0.199591,-0.524979],[-0.050203,0.472762,0.879727],[-0.761986,-0.407636,-0.503189],[-0.472579,-0.154790,-0.867550],[0.298929,-0.280465,-0.912107],[0.671072,0.738762,-0.061983],[0.097568,0.759453,-0.643178],[-0.071932,0.932890,-0.352886],[0.372326,0.918241,0.134861],[-0.478896,-0.117435,0.869961],[-0.409131,-0.297067,-0.862728],[0.855647,-0.314798,0.410749],[-0.671834,0.218940,-0.707541],[0.134831,0.033662,-0.990265],[0.191473,0.935789,0.295969],[0.280526,0.958342,0.053224],[-0.628712,-0.691183,-0.356304],[0.553545,0.798791,-0.235511],[0.953703,-0.121982,0.274819],[0.561052,0.627247,0.540117],[0.758599,0.621418,-0.195654],[0.742607,-0.223884,0.631153],[-0.962615,0.270791,0.002197],[0.182043,0.982757,0.032258],[-0.896847,0.280862,-0.341716],[-0.178503,0.037263,-0.983215],[-0.050813,0.152959,-0.986908],[0.688864,0.562822,-0.456801],[0.531480,0.774132,-0.343822],[0.589373,0.661885,-0.463118],[0.248634,0.059145,-0.966765],[-0.140110,0.211707,0.967223],[-0.074618,0.012421,0.997131],[0.927824,0.006195,0.372936],[-0.648549,0.131932,-0.749626],[-0.219031,0.295785,-0.929777],[-0.651173,-0.402631,-0.643300],[-0.572039,-0.207343,-0.793542],[-0.422895,-0.568743,-0.705435],[0.148686,0.393323,-0.907285],[-0.497940,-0.553362,-0.667653],[-0.086947,0.857082,-0.507767],[0.677602,0.068941,-0.732170],[-0.756157,-0.651357,0.062593],[0.978820,0.159276,-0.128544],[-0.236518,-0.443068,-0.864711],[0.019074,0.762169,-0.647053],[-0.451888,0.763085,-0.462050],[0.149937,0.949767,0.274606],[-0.398999,0.705679,0.585437],[-0.466292,0.496750,0.731956],[-0.988159,-0.061556,0.140507],[-0.998962,-0.037446,-0.024903],[-0.994354,-0.105991,-0.004425],[-0.601367,0.636860,-0.482406],[0.577807,0.192663,0.793085],[0.189215,-0.203345,0.960631],[0.888668,0.093173,0.448958],[-0.737877,0.136570,0.660909],[0.973510,-0.039003,0.225227],[0.899533,-0.139012,0.414075],[0.391217,0.476089,0.787561],[0.378460,0.911740,-0.159459],[-0.816065,-0.577776,0.012604],[-0.958220,-0.283181,-0.040040],[0.504227,-0.332743,-0.796869],[-0.863155,0.325236,-0.386181],[-0.855617,0.278664,-0.436140],[-0.836482,0.335307,-0.433393],[-0.143529,-0.379131,-0.914121],[0.416028,0.201178,-0.886807],[0.232215,0.078494,-0.969481],[0.486007,0.528275,0.696188],[-0.118686,0.092776,-0.988556],[-0.113041,0.992370,0.048891],[-0.296060,0.943358,0.149663],[-0.394147,-0.000488,0.919034],[-0.443159,0.259957,0.857906],[0.487686,0.839717,0.238716],[0.460402,0.854854,0.239204],[0.402631,0.483383,-0.777276],[-0.212806,0.663900,-0.716880],[0.001160,-0.368114,-0.929777],[0.360698,0.005982,0.932646],[0.514817,0.835200,-0.193243],[0.857204,-0.117100,-0.501419],[-0.348827,-0.192541,-0.917173],[-0.595386,-0.262032,-0.759453],[0.108676,0.837977,-0.534745],[-0.319712,0.784722,-0.530992],[0.512253,-0.288522,-0.808893],[0.941221,-0.290750,-0.171850],[-0.907773,-0.102969,0.406537],[-0.545122,0.792261,0.274117],[-0.498459,-0.063784,-0.864528],[-0.586016,-0.084109,-0.805902],[-0.000183,0.749474,-0.662008],[0.142552,-0.047212,-0.988647],[-0.853420,-0.366497,-0.370556],[-0.898129,-0.314524,-0.307260],[-0.932554,0.151555,-0.327647],[0.989471,0.118412,0.082888],[0.953978,-0.099582,0.282846],[0.953551,0.074099,0.291910],[0.952452,-0.206793,0.223640],[0.447249,-0.529099,-0.721091],[0.702109,-0.118168,-0.702170],[-0.272774,0.220038,0.936552],[-0.392193,0.076540,0.916654],[-0.258248,0.070498,0.963469],[-0.139042,-0.487838,-0.861751],[0.152074,0.446516,-0.881741],[0.029298,0.936247,0.350047],[0.928617,0.202673,-0.310739],[0.470168,0.717185,-0.514359],[0.393231,0.852016,-0.345500],[-0.085788,0.992828,0.083193],[-0.423414,-0.629627,-0.651326],[-0.194678,-0.511277,-0.837062],[-0.461806,-0.351024,-0.814539],[-0.316446,-0.402814,-0.858791],[-0.960845,0.075228,0.266610],[-0.218085,-0.274117,-0.936613],[0.573473,0.484359,0.660665],[-0.939299,0.016449,0.342662],[-0.938108,-0.024964,0.345378],[-0.957274,-0.019196,0.288522],[-0.916410,-0.090487,-0.389813],[0.935118,-0.006470,0.354259],[-0.976959,0.130131,-0.169103],[-0.974212,0.118015,-0.192206],[-0.988342,0.108432,-0.106662],[-0.283578,0.915250,-0.286111],[0.590808,0.740410,-0.320414],[0.554613,-0.427625,-0.713797],[-0.955596,0.150365,-0.253365],[0.308206,0.639363,-0.704398],[0.256874,0.953459,0.157689],[-0.587481,0.395276,0.706107],[-0.589831,0.289071,0.753960],[0.711844,-0.018983,-0.702048],[-0.395764,-0.319742,-0.860866],[0.612964,0.121097,0.780725],[-0.280435,0.958831,0.044191],[0.921628,0.058046,-0.383648],[-0.494980,0.007599,-0.868831],[0.258431,0.718223,-0.646016],[0.805658,0.592242,0.010620],[0.447401,0.719230,-0.531510],[0.268685,-0.734916,0.622639],[0.837825,0.451918,0.306253],[-0.116764,0.989563,0.084262],[-0.393475,0.883480,0.254189],[-0.160436,0.981964,0.099918],[0.344462,0.217566,-0.913205],[-0.960234,-0.014222,0.278787],[0.053529,0.428358,-0.902005],[0.053285,0.371624,0.926847],[-0.974944,-0.214759,-0.057436],[-0.978790,-0.165716,-0.120212],[0.550951,-0.007447,0.834468],[0.000092,0.973205,0.229926],[-0.996796,-0.079440,-0.007660],[-0.982330,0.119388,-0.143956],[0.996033,-0.004761,0.088565],[-0.369274,0.342814,0.863765],[0.308542,0.450911,-0.837519],[-0.837214,0.461318,-0.293588],[-0.784387,0.376202,-0.493149],[-0.484420,-0.717124,0.501022],[-0.836329,-0.036500,-0.546953],[0.237770,0.344493,-0.908139],[-0.933958,0.226264,0.276528],[-0.983154,-0.137150,0.120579],[-0.971221,0.094821,0.218390],[-0.462539,0.497726,-0.733665],[0.574633,0.612659,-0.542558],[0.813013,-0.051088,0.579943],[0.742607,-0.362682,-0.562975],[0.111393,0.276376,-0.954558],[0.619251,-0.008454,0.785119],[0.669210,0.125950,0.732292],[0.184423,-0.293649,-0.937925],[-0.063509,0.317759,-0.946013],[-0.257576,0.512131,0.819330],[-0.916013,0.083682,0.392315],[0.471236,-0.735801,-0.486282],[0.528672,0.808161,-0.259438],[-0.775964,0.410932,-0.478500],[-0.834254,0.083163,0.545061],[-0.765435,0.213446,0.607044],[0.290628,0.940672,0.175024],[-0.843104,0.254128,0.473861],[-0.278603,-0.450453,-0.848201],[-0.203528,-0.322398,-0.924436],[-0.299936,0.953948,0.003052],[-0.377758,0.925596,0.023133],[0.037935,-0.582293,-0.812067],[-0.092441,-0.609119,-0.787622],[-0.238990,0.145177,-0.960082],[0.751152,0.635701,0.177801],[-0.448653,0.883847,0.132176],[0.759545,0.005127,-0.650410],[0.812555,-0.382427,-0.439863],[0.418348,-0.424757,-0.802820],[-0.095340,0.193762,0.976379],[-0.894772,-0.220649,-0.388165],[0.733024,0.453017,0.507340],[0.811701,0.336741,0.477157],[0.054689,-0.273446,-0.960326],[0.685934,-0.415845,-0.597095],[0.686392,0.675954,-0.268166],[-0.859127,0.356639,0.366985],[0.451918,-0.262490,-0.852535],[0.378460,-0.175359,-0.908841],[0.904660,-0.277749,0.323099],[0.685720,-0.376690,-0.622761],[0.315287,-0.333842,0.888302],[0.900754,0.386547,-0.197974],[-0.506760,0.454634,-0.732414],[-0.850642,-0.467055,-0.241310],[0.323588,0.941374,0.095218],[0.236396,-0.590503,0.771599],[0.899228,-0.190405,0.393841],[-0.642415,-0.275094,-0.715262],[0.889584,-0.264077,0.372631],[0.398022,-0.092746,0.912656],[0.228858,0.030366,0.972961],[0.990112,0.028748,0.137181],[-0.312052,-0.279458,-0.908017],[-0.805658,-0.280618,0.521653],[0.380505,-0.551927,0.741966],[-0.458937,-0.355480,-0.814234],[0.992157,0.110477,-0.058199],[-0.784295,-0.114505,0.609668],[0.388012,0.426710,0.816889],[-0.185400,0.970672,0.152928],[0.735069,0.210334,-0.644490],[-0.434217,0.070070,-0.898038],[0.972503,-0.016572,0.232246],[-0.035340,0.259713,-0.965026],[-0.326975,0.239051,-0.914274],[0.272408,0.861171,-0.429121],[-0.930754,0.194403,0.309641],[0.070650,-0.188543,-0.979492],[0.148656,0.900845,-0.407880],[0.125553,0.904813,-0.406812],[0.244057,0.666189,0.704672],[0.053346,0.717582,0.694388],[0.513169,0.837825,0.186102],[-0.640278,-0.150182,0.753288],[-0.430708,0.779138,-0.455397],[0.019715,0.999634,0.018220],[-0.622761,-0.272256,0.733482],[-0.483200,-0.614307,0.623798],[-0.964904,0.259896,-0.036775],[-0.682852,-0.300546,0.665853],[0.852260,0.157506,0.498795],[-0.845759,-0.015809,-0.533311],[0.151585,0.630238,-0.761437],[0.161077,0.279092,0.946623],[-0.048433,-0.012391,-0.998718],[0.463973,0.885739,-0.011780],[-0.705313,-0.446486,0.550584],[-0.727531,-0.182257,-0.661397],[0.952788,0.206763,0.222297],[0.929624,0.309030,0.200598],[-0.424757,-0.229621,0.875698],[-0.220496,-0.196081,0.955443],[0.020051,0.180731,-0.983306],[-0.854701,0.253304,0.453078],[0.058260,0.725486,0.685751],[-0.897397,0.014618,0.440962],[0.995941,-0.088626,-0.013916],[-0.948271,-0.105838,0.299234],[0.422285,0.072390,0.903562],[0.162786,0.976562,0.140599],[-0.826197,-0.060610,-0.560045],[0.904874,-0.273415,-0.326212],[0.603717,0.749992,0.270150],[0.677114,0.670705,-0.302713],[-0.009156,0.748833,-0.662679],[-0.665761,0.147038,0.731498],[0.857601,-0.287851,-0.426160],[0.642445,-0.013672,0.766167],[-0.100528,0.275307,-0.956053],[0.750603,0.392590,-0.531419],[0.989441,-0.098910,0.105838],[-0.044679,0.254677,-0.965972],[0.036073,0.225227,-0.973632],[0.000244,0.999969,0.001587],[0.490524,0.718619,0.492843],[0.058138,0.396954,-0.915983],[-0.510880,-0.006592,0.859615],[0.629322,-0.102329,0.770348],[-0.949889,-0.284494,0.129368],[0.727073,0.648976,-0.223945],[-0.188879,-0.046907,0.980865],[0.361614,0.138005,-0.922025],[0.279794,0.403088,-0.871303],[0.850856,-0.438948,-0.288644],[-0.684500,0.122318,0.718619],[-0.956114,-0.285989,0.063448],[0.901730,0.249062,0.353252],[-0.494522,-0.342753,-0.798700],[0.648701,-0.225867,-0.726737],[0.314035,0.314646,0.895749],[0.487442,-0.604785,-0.629749],[-0.148228,-0.665914,-0.731132],[0.522233,0.847011,0.098910],[-0.270455,0.962706,0.006256],[-0.306925,0.946348,0.100772],[-0.458907,0.255470,0.850917],[0.478195,0.088961,-0.873714],[-0.071322,-0.233070,0.969817],[0.864528,0.295572,0.406446],[0.316477,0.852016,-0.416944],[0.771905,0.600391,0.208899],[0.942503,-0.048647,0.330546],[0.017365,0.484848,-0.874386],[-0.715384,-0.272866,-0.643208],[-0.097476,0.807886,-0.581195],[0.003204,-0.504135,0.863582],[0.001160,-0.055696,-0.998444],[0.576922,-0.270455,-0.770684],[-0.692251,0.471145,0.546556],[0.986419,-0.117893,-0.114322],[0.829829,-0.315073,-0.460494],[-0.280679,0.229804,0.931852],[-0.115055,0.991394,-0.062075],[0.932249,0.360149,0.034639],[-0.747948,-0.440321,0.496628],[0.796747,-0.120548,-0.592151],[-0.917112,-0.318003,0.240303],[0.565142,-0.518906,0.641346],[0.898404,-0.402783,0.174841],[0.504227,-0.070711,0.860653],[0.955718,-0.041505,-0.291299],[0.739189,-0.431013,-0.517472],[-0.220862,-0.453505,-0.863430],[-0.726218,0.675619,0.126896],[0.943663,0.064272,0.324534],[-0.625385,0.698904,-0.346965],[0.289804,-0.353679,-0.889309],[0.291360,-0.350932,-0.889889],[0.643117,-0.283059,-0.711509],[-0.268715,0.181555,-0.945921],[-0.173345,0.174352,-0.969298],[0.003845,0.524461,-0.851405],[-0.379620,0.915983,0.129612],[-0.549394,0.820307,0.158757],[-0.592334,0.759209,0.269631],[0.589984,0.417432,-0.691092],[0.852138,0.454512,0.259285],[0.486312,0.555528,-0.674429],[-0.817591,0.078524,0.570360],[-0.371319,-0.058962,-0.926603],[-0.160283,-0.135472,-0.977722],[0.556749,0.725242,-0.404950],[0.072878,0.401288,0.913022],[-0.746117,0.133488,-0.652242],[0.680929,-0.081545,-0.727744],[0.776788,-0.180212,-0.603381],[0.079257,0.581439,-0.809687],[-0.425001,-0.476547,-0.769555],[0.371075,-0.142430,0.917600],[-0.452681,-0.353557,-0.818567],[-0.707846,-0.134098,-0.693472],[-0.607013,-0.263741,0.749596],[0.653371,-0.253883,-0.713157],[0.237648,-0.811182,0.534288],[-0.049074,-0.752525,0.656697],[-0.066378,-0.362651,0.929533],[0.943541,0.232704,-0.235633],[0.853908,0.504135,0.128910],[0.749992,0.634907,-0.185430],[-0.972900,-0.113437,0.201361],[-0.658223,0.256203,0.707846],[-0.485458,-0.007965,0.874203],[-0.864009,-0.385205,-0.324137],[-0.927396,-0.307260,0.213233],[0.646168,-0.762658,0.027192],[-0.433912,0.086947,0.896725],[-0.393811,0.018799,0.918973],[-0.945799,0.159032,0.283059],[-0.207251,-0.482864,-0.850795],[-0.169317,0.347667,0.922178],[-0.237770,0.969604,0.057558],[-0.618366,0.565539,0.545640],[-0.089175,0.991211,0.097385],[-0.446669,-0.081942,0.890896],[-0.544359,-0.059847,0.836695],[-0.409894,0.094394,0.907224],[-0.585803,-0.152135,-0.796014],[-0.104068,0.909574,-0.402234],[-0.858669,0.338115,0.385144],[0.020844,0.801447,-0.597674],[-0.692770,-0.288766,-0.660787],[-0.375225,-0.334452,-0.864467],[0.832148,0.286355,-0.474868],[-0.683920,-0.122166,0.719230],[-0.574969,0.347545,0.740654],[0.097446,-0.381329,0.919279],[-0.198828,0.089450,0.975921],[-0.114017,-0.987732,0.106510],[0.302225,-0.555650,-0.774499],[0.477004,-0.399152,-0.783013],[-0.180486,0.978912,0.095370],[-0.003571,0.218635,-0.975768],[0.211249,0.966369,-0.146580],[-0.636128,0.153874,0.756035],[0.663472,-0.109226,0.740165],[0.558061,-0.129460,0.819605],[0.411206,-0.184454,0.892666],[0.546617,0.721549,-0.424909],[0.465957,0.772271,-0.431806],[0.334971,-0.906735,0.256081],[-0.313517,-0.822382,0.474685],[-0.960265,0.206854,0.187170],[0.872219,-0.418531,0.253029],[0.169591,0.066256,0.983276],[-0.703024,0.438704,0.559648],[-0.790735,0.591235,0.158422],[-0.111026,0.166448,-0.979766],[0.211982,0.418561,0.883084],[-0.111362,-0.011170,0.993713],[0.869045,-0.029298,-0.493820],[0.854183,-0.483230,0.191900],[0.544145,0.002106,0.838954],[0.179968,0.647145,0.740806],[0.946959,0.092593,-0.307688],[0.904355,-0.027985,-0.425855],[-0.774560,0.588610,0.231422],[-0.779015,0.607044,0.156835],[-0.020905,0.989013,-0.146306],[0.042665,0.604938,0.795099],[-0.375469,-0.755364,0.537004],[-0.381054,-0.864895,0.326640],[-0.316416,0.455245,-0.832209],[-0.435438,0.134251,0.890133],[-0.818903,-0.028840,-0.573138],[0.011017,-0.472243,0.881375],[-0.324442,0.839778,-0.435316],[-0.570757,0.099521,0.815058],[0.259377,0.028993,-0.965331],[0.315195,0.944090,0.096469],[-0.833583,0.323160,0.447951],[-0.901089,0.187750,0.390851],[0.336497,0.157384,-0.928434],[0.198004,0.238563,-0.950713],[-0.856533,-0.239479,-0.457106],[-0.089816,0.789483,-0.607135],[-0.634816,0.027711,0.772118],[0.237587,-0.416333,-0.877590],[-0.700705,-0.326792,-0.634175],[-0.494888,-0.317331,-0.808893],[0.792901,0.458113,0.401746],[0.142430,0.954802,0.260811],[-0.058473,0.241981,-0.968505],[-0.172430,0.437635,0.882443],[-0.367931,0.146367,-0.918241],[-0.991791,0.026948,0.124973],[-0.629871,0.552629,-0.545732],[-0.716544,-0.245125,-0.653005],[0.439924,0.572375,0.691946],[-0.587420,0.507065,0.630696],[0.182836,-0.217505,-0.958770],[-0.904782,-0.311808,0.290048],[-0.826624,0.381939,-0.413221],[-0.975585,-0.166692,-0.142796],[-0.968719,0.092654,0.230110],[0.300729,-0.124973,0.945463],[-0.182836,0.162389,0.969604],[0.418836,-0.404767,-0.812830],[-0.888821,-0.425001,0.171209],[-0.112491,-0.985748,0.125034],[-0.006226,-0.094058,0.995544],[0.760613,0.569689,0.311258],[-0.695029,-0.320292,-0.643666],[0.941252,0.061586,0.331980],[0.594378,0.365307,0.716392],[-0.824732,-0.546922,-0.143742],[0.724906,0.543413,0.423292],[0.960204,-0.269143,-0.074252],[-0.638508,-0.681051,0.358379],[-0.191504,0.977874,0.083804],[-0.881619,0.267190,-0.389019],[-0.802728,-0.090732,0.589373],[-0.974181,0.095859,0.204291],[-0.959166,-0.044740,0.279153],[-0.063509,-0.749290,0.659139],[0.947233,-0.288003,0.140721],[0.892026,-0.202795,0.403851],[0.701437,0.676809,0.223304],[-0.068941,0.993225,0.093356],[0.522538,0.329691,0.786248],[0.131779,-0.263344,-0.955626],[-0.633717,-0.057222,-0.771416],[-0.934019,0.119510,0.336558],[-0.910489,0.150060,0.385296],[0.926939,0.185461,-0.326121],[0.899472,-0.434675,0.044343],[0.184362,-0.458296,-0.869442],[0.620533,0.707053,-0.339061],[0.227180,0.964782,0.132450],[0.956755,-0.107303,0.270333],[0.517624,0.842280,0.150243],[0.030793,0.151585,0.987945],[0.011231,0.551836,0.833857],[-0.064760,0.404981,0.912015],[0.350230,-0.394726,0.849422],[-0.822687,0.562975,-0.078524],[0.230537,0.655660,0.718955],[-0.333445,-0.202094,-0.920835],[-0.250496,0.178289,-0.951537],[-0.458510,-0.318094,-0.829768],[0.944090,-0.121189,-0.306528],[-0.925779,0.109012,0.361919],[-0.944762,-0.327677,0.002686],[0.730583,-0.543260,0.413556],[0.857204,0.036836,-0.513627],[0.961974,0.081301,-0.260659],[-0.693014,0.719871,-0.038362],[-0.800409,-0.047365,-0.597552],[0.151372,0.959471,0.237648],[0.412702,0.721397,-0.556108],[0.183905,0.254860,-0.949309],[0.820795,0.177801,-0.542802],[0.647633,0.280984,0.708213],[0.976928,0.008240,0.213263],[0.981323,-0.071657,0.178442],[-0.063082,0.596210,-0.800317],[-0.714927,0.673544,0.187567],[-0.356059,0.440535,0.824091],[-0.824915,0.355998,0.439009],[-0.667226,0.461470,0.584613],[0.852596,-0.159368,0.497635],[0.331339,0.374950,-0.865780],[0.080874,0.717093,-0.692251],[0.509964,-0.032655,0.859554],[-0.534593,0.133213,-0.834529],[-0.613605,0.650899,-0.446944],[-0.911954,-0.018006,0.409833],[0.381054,0.801111,0.461501],[0.080630,-0.061037,0.994842],[0.288583,0.312052,0.905148],[0.785546,0.615375,-0.064760],[-0.619800,0.223212,-0.752312],[0.974090,-0.215064,0.069887],[0.912381,-0.340159,-0.227638],[-0.997467,-0.047914,-0.052431],[-0.499893,-0.146428,-0.853603],[0.967742,-0.156590,-0.197302],[0.772454,0.444075,0.453963],[-0.129002,0.569353,0.811884],[-0.987396,-0.136387,-0.079928],[0.092807,-0.012604,-0.995575],[-0.251686,-0.474837,-0.843287],[0.359447,0.540971,0.760308],[0.421155,0.904019,0.072939],[0.267647,-0.422681,-0.865841],[-0.065065,0.989654,0.127781],[-0.530808,-0.620716,-0.576983],[-0.210974,-0.290475,-0.933317],[-0.137822,0.065737,-0.988250],[-0.042421,-0.432905,-0.900418],[0.033326,0.196142,0.979980],[-0.348888,0.090030,-0.932798],[0.245979,-0.393963,-0.885586],[-0.928526,0.108768,-0.354961],[-0.197211,0.945006,0.260781],[0.424055,0.901273,-0.088382],[-0.105350,0.767144,0.632710],[0.578143,-0.272378,-0.769097],[-0.948698,-0.267373,-0.168615],[-0.738731,-0.021180,-0.673635],[-0.833094,0.392529,0.389630],[-0.956145,-0.157201,-0.247078],[0.891018,-0.337870,-0.303171],[-0.403912,-0.446883,-0.798181],[0.019349,0.180425,0.983367],[0.984436,-0.012116,0.175298],[-0.450056,-0.101657,0.887173],[-0.730155,0.680471,-0.061617],[0.081668,-0.446303,-0.891110],[-0.719657,-0.147313,-0.678487],[0.364086,-0.379315,-0.850612],[0.830714,-0.435591,-0.346568],[-0.106113,0.608936,0.786065],[-0.126682,0.635548,0.761559],[0.936186,0.142186,0.321360],[0.863094,-0.249763,0.438917],[-0.464644,0.209113,0.860439],[0.240303,-0.024323,0.970367],[-0.423383,0.401074,0.812311],[-0.747185,-0.341105,-0.570360],[0.002319,-0.007721,-0.999939],[0.087832,0.041566,0.995239],[0.037172,-0.403241,-0.914304],[-0.930845,0.200110,0.305673],[-0.876858,0.391278,0.279214],[-0.147221,-0.049196,-0.987854],[-0.070254,0.996155,0.052065],[0.359722,0.863063,0.354472],[-0.569597,0.641804,0.513382],[-0.115513,-0.372906,-0.920621],[-0.455947,-0.264504,-0.849788],[-0.020722,-0.932157,-0.361431],[0.519974,-0.247353,-0.817560],[0.263283,-0.343730,-0.901395],[-0.168737,0.547380,-0.819666],[-0.403790,0.903592,-0.142949],[0.511765,-0.377422,-0.771752],[0.448683,0.863521,0.230171],[-0.675314,-0.551408,0.489761],[-0.195288,0.564714,0.801813],[0.462874,-0.400464,-0.790765],[0.447249,-0.237678,-0.862239],[0.475265,0.211768,-0.853938],[0.697256,-0.479995,-0.532365],[0.316568,0.882992,0.346477],[-0.564653,-0.729179,-0.386547],[0.204779,0.977660,0.046999],[-0.203406,0.899472,0.386731],[0.933714,0.143132,0.328074],[0.307382,-0.466018,-0.829646],[0.109409,0.953490,0.280801],[-0.484329,-0.147771,-0.862300],[-0.256142,0.703299,0.663137],[-0.461013,-0.453536,-0.762719],[-0.056063,0.372692,-0.926237],[-0.732017,-0.355937,-0.580889],[0.322428,0.856716,-0.402539],[-0.439436,-0.278664,-0.853938],[-0.500015,-0.487289,-0.715873],[0.596332,-0.110721,0.795038],[0.975494,-0.219825,0.005432],[-0.186438,0.951811,-0.243416],[0.087771,-0.987487,0.130924],[-0.675130,0.372051,0.636982],[0.113559,0.529740,0.840510],[-0.580187,0.780389,-0.233100],[-0.509751,0.819727,-0.261055],[-0.241737,0.944151,0.223792],[-0.337870,0.934111,0.115085],[-0.426344,-0.534227,-0.729911],[-0.103671,0.979400,0.173101],[-0.273965,0.946623,0.169683],[-0.282144,0.939940,0.192053],[-0.256722,0.950530,0.174780],[-0.250618,0.957884,0.140049],[-0.117222,0.975799,0.184484],[-0.294748,0.953154,0.067721],[-0.322489,0.922269,0.212989],[-0.484695,0.859127,0.164159],[-0.626637,0.736625,0.254280],[-0.174230,0.955473,0.238014],[0.639088,0.760369,0.115452],[-0.333018,-0.328074,-0.883969],[-0.938322,0.171087,-0.300363],[-0.416059,0.893674,0.167882],[-0.239479,0.966674,0.090457],[0.974120,-0.005280,0.225837],[0.342723,-0.449416,0.824946],[-0.338542,0.928251,0.153905],[-0.314920,0.878658,0.358806],[-0.221931,0.927671,0.300241],[-0.111362,0.950468,0.290078],[-0.341624,0.912320,0.225684],[0.214118,0.958647,0.187384],[0.616840,0.563280,-0.549699],[-0.295663,0.931059,0.213752],[-0.184271,0.940001,0.287057],[-0.425367,0.778283,0.461806],[-0.240761,0.871181,0.427808],[-0.025300,0.910123,0.413495],[-0.206183,0.900113,0.383740],[-0.074282,0.889828,0.450148],[-0.297311,0.848628,0.437483],[-0.239021,0.904050,0.354289],[-0.320078,0.898038,0.301675],[-0.354686,0.850093,0.389233],[-0.482162,0.798914,0.359447],[-0.408826,0.798456,0.441908],[0.434797,0.197729,0.878536],[-0.325571,0.926695,0.187536],[-0.284585,0.879452,0.381451],[-0.540635,0.805048,0.244026],[0.270608,-0.242042,-0.931730],[0.656423,-0.382946,-0.649953],[0.554277,-0.324686,-0.766350],[0.589099,-0.376354,-0.715049],[-0.251381,0.964263,0.083407],[-0.431166,0.889157,0.153203],[-0.525529,0.482376,-0.700797],[-0.071352,0.913846,0.399670],[-0.544450,0.674276,0.498856],[-0.222297,0.907987,0.355113],[-0.362651,0.820185,0.442427],[0.120823,0.863277,0.490005],[-0.200354,0.741478,0.640309],[-0.290201,0.722465,0.627522],[-0.199194,0.904141,0.377911],[-0.046602,0.930998,0.362011],[-0.203742,0.825556,0.526200],[-0.583300,0.604968,0.541948],[-0.021149,0.725791,-0.687582],[0.023499,0.814020,0.580309],[-0.074526,0.765038,0.639637],[-0.213660,0.782647,0.584613],[-0.113193,0.803278,0.584735],[-0.228431,0.770867,0.594592],[-0.385540,0.689932,0.612629],[-0.508316,0.659871,0.553270],[-0.612598,0.476363,0.630696],[-0.310526,0.805872,0.504074],[-0.417249,0.689566,0.591906],[-0.664663,0.442549,0.601917],[-0.685568,0.414808,0.598224],[-0.443739,0.723624,0.528611],[-0.421552,0.766900,0.483871],[-0.627949,0.606159,0.488021],[-0.414472,0.782708,0.464248],[-0.135563,0.983093,0.122959],[-0.332896,0.807978,0.486129],[-0.749229,0.447798,0.487930],[-0.468032,0.862392,0.192724],[-0.740745,0.657338,0.138401],[-0.365215,0.918455,0.151708],[-0.612781,0.750847,0.246406],[-0.326212,0.934446,0.142582],[-0.297006,0.946013,0.129551],[-0.595233,0.789697,0.148412],[-0.998230,-0.058535,0.009827],[-0.837581,-0.239509,0.490982],[-0.599109,0.796960,0.076510],[-0.395306,0.911527,0.113224],[-0.433058,0.895108,0.105838],[-0.319834,0.928922,0.186499],[-0.504807,0.856777,0.105075],[-0.466323,0.868862,0.166051],[0.572741,0.234748,0.785394],[-0.910733,0.065584,0.407666],[-0.592303,-0.547075,-0.591479],[-0.424207,0.903684,0.058138],[-0.464431,0.842830,0.271828],[0.160894,-0.407270,-0.899014],[-0.295144,0.932432,0.208380],[-0.598712,0.777154,0.193640],[-0.597858,0.765648,0.237281],[0.138340,0.243385,-0.959990],[-0.328471,0.879208,0.345012],[-0.378399,0.827570,0.414624],[-0.549791,0.748039,0.371685],[-0.536424,0.696219,0.476913],[-0.231483,0.907743,0.349834],[-0.656331,0.642506,0.395398],[-0.618397,0.697439,0.362072],[-0.246864,0.888638,0.386425],[-0.344310,0.889553,0.300150],[-0.239326,0.932676,0.269784],[-0.864925,0.363506,-0.346019],[-0.668752,0.688772,0.279885],[-0.627827,0.750633,0.205756],[-0.541765,0.758934,0.361187],[-0.658254,0.690481,0.299814],[-0.230811,0.953185,0.195288],[0.860164,-0.053224,0.507187],[-0.635945,0.732536,0.242714],[-0.267434,0.810266,0.521439],[-0.484420,0.701468,0.522691],[-0.507126,0.733299,0.452834],[-0.626789,0.562426,0.539201],[-0.457320,0.765069,0.453291],[-0.560411,0.650563,0.512497],[-0.281350,0.815912,0.505051],[0.382672,0.753441,0.534623],[-0.328349,0.802332,0.498398],[-0.154912,0.877285,0.454237],[-0.149022,0.880062,0.450789],[-0.615192,0.489334,0.618091],[0.376232,-0.371136,0.848903],[-0.910916,0.408307,-0.058779],[-0.418104,0.729911,0.540727],[-0.494217,0.714377,0.495315],[-0.563982,0.595172,0.572436],[-0.508774,0.689871,0.514969],[-0.587512,0.677572,0.442335],[-0.600787,0.678671,0.422346],[-0.663442,0.536485,0.521500],[0.376507,0.922910,0.080111],[-0.471084,0.751793,0.461318],[0.073916,0.412885,-0.907773],[-0.887906,0.278848,0.365825],[0.299539,-0.364086,-0.881863],[-0.805841,0.574328,0.144047],[-0.740532,0.664174,0.102237],[-0.736564,0.663686,0.130039],[-0.358135,-0.203803,-0.911130],[-0.820551,0.557176,0.127293],[-0.132298,0.908994,-0.395215],[-0.794031,0.602619,0.079592],[-0.963713,-0.078921,0.254952],[0.130680,-0.519333,-0.844478],[-0.909268,0.161199,0.383648],[-0.933042,0.353618,0.065798],[-0.791253,0.596545,0.134251],[-0.875881,0.481491,0.031068],[0.249519,0.349406,-0.903104],[-0.724113,0.664144,0.185858],[-0.840571,0.534898,0.085269],[-0.351268,0.192267,-0.916288],[-0.410565,-0.184576,0.892941],[0.622425,-0.358318,0.695791],[0.279000,0.878506,0.387738],[0.757897,0.084811,0.646809],[0.811029,0.096042,0.577013],[-0.085788,-0.718894,0.689779],[-0.803674,0.552385,0.221229],[-0.746239,0.619037,0.244667],[0.060549,-0.263009,-0.962889],[-0.836634,0.493210,0.238136],[-0.751976,0.622608,0.216346],[-0.872494,0.405560,0.272469],[-0.905820,0.341533,0.250649],[-0.785791,0.456435,0.417280],[-0.711325,0.639637,0.291238],[-0.750084,0.592486,0.293741],[-0.726676,0.558916,0.399396],[-0.862423,0.424543,0.275582],[-0.885525,0.351238,0.304025],[-0.887997,0.308817,0.340648],[-0.748833,0.534837,-0.391308],[-0.947356,0.251106,0.198584],[-0.873562,0.360820,0.326579],[-0.951720,0.213569,0.220435],[-0.131291,-0.386456,-0.912900],[-0.959593,0.167272,0.226234],[0.430860,0.126469,0.893490],[0.258705,0.381451,0.887417],[-0.737419,-0.352672,-0.576006],[-0.108921,0.441084,-0.890805],[-0.663045,0.626362,0.409894],[-0.679647,0.569292,0.462539],[0.929868,0.074648,0.360179],[0.579516,0.306955,-0.754906],[-0.611927,0.680380,0.403211],[-0.798578,0.393994,0.454939],[-0.879116,0.233589,0.415387],[-0.787439,0.369396,0.493423],[-0.920927,0.190802,0.339793],[-0.836177,0.374920,0.400220],[-0.932463,0.034364,0.359569],[-0.844752,0.391522,0.364757],[0.140385,0.969909,0.198798],[-0.937071,0.122990,0.326701],[-0.958037,0.052522,0.281686],[-0.956450,-0.094760,0.276040],[-0.942839,-0.212470,0.256600],[-0.949736,0.018586,0.312387],[-0.906949,-0.203223,0.368938],[-0.957091,0.248360,0.149083],[-0.954436,0.115909,0.274911],[-0.908292,-0.132817,0.396619],[-0.752831,0.058351,0.655599],[-0.959105,-0.021760,0.282205],[-0.952910,-0.021271,0.302469],[-0.937315,0.118076,0.327830],[-0.996033,0.000488,0.088900],[-0.988678,-0.021577,0.148350],[-0.019349,-0.296487,0.954802],[-0.956450,0.049684,0.287606],[-0.930174,0.159673,0.330515],[-0.971129,0.214911,0.103244],[-0.911130,0.077883,0.404675],[0.043001,-0.745323,0.665273],[0.074831,-0.777367,0.624531],[-0.968383,0.117985,0.219794],[-0.960234,0.087252,0.265114],[-0.913755,0.002228,0.406232],[-0.238594,-0.136357,-0.961486],[-0.927183,-0.040925,0.372326],[-0.210273,0.637226,0.741417],[-0.921079,0.080325,0.380963],[-0.910001,-0.068117,0.408948],[-0.971007,-0.080721,-0.224921],[-0.943327,0.084933,0.320750],[-0.483291,0.734428,0.476455],[0.011658,0.615711,-0.787866],[-0.816340,-0.401196,0.415418],[-0.883450,-0.066012,0.463820],[-0.890225,0.232795,0.391522],[0.981780,-0.117801,0.148961],[-0.249428,0.309549,-0.917570],[-0.407178,0.417035,-0.812555],[0.053316,0.495865,-0.866726],[-0.824976,-0.399548,-0.399670],[-0.987121,-0.155797,0.035554],[0.568194,0.569262,-0.594195],[-0.798425,0.228462,0.557024],[0.334758,0.143864,0.931242],[0.451766,0.253945,0.855190],[0.994507,-0.092105,0.049501],[-0.817438,-0.042116,0.574419],[-0.844142,0.005036,0.536058],[0.838313,0.509873,-0.192907],[-0.883480,-0.267220,0.384686],[0.914762,0.162786,0.369671],[-0.588092,-0.698233,0.408155],[0.437757,0.699454,0.564867],[-0.634205,-0.667043,0.390851],[-0.563921,-0.715873,0.411634],[0.757225,-0.505692,-0.413312],[-0.507614,-0.723746,0.467391],[-0.464644,-0.732841,0.496994],[-0.472365,-0.749718,0.463393],[-0.516037,-0.765374,0.384503],[-0.940458,0.241188,0.239418],[-0.378399,-0.732017,0.566485],[-0.916044,0.315317,0.247780],[-0.409101,0.680258,0.608142],[0.155339,-0.122868,0.980163],[-0.932554,-0.040162,0.358745],[-0.788965,-0.597156,-0.144597],[-0.227790,-0.731101,0.643055],[-0.311197,-0.714560,0.626514],[0.377789,0.685995,0.621815],[-0.456252,-0.343150,-0.820978],[-0.793878,0.607959,-0.009461],[0.110538,-0.469222,0.876125],[-0.245064,-0.535569,0.808130],[0.674490,0.700339,-0.233558],[-0.450484,0.621540,-0.640858],[-0.165807,0.555101,0.815058],[0.362560,0.917142,-0.165410],[0.274026,0.125370,0.953490],[-0.577990,0.064547,0.813440],[-0.644765,-0.676260,0.356243],[0.632069,0.689566,-0.353404],[0.445723,-0.200415,-0.872433],[0.968657,-0.179357,-0.171697],[-0.897549,0.245766,0.365978],[0.624714,-0.252358,-0.738914],[0.551012,-0.127659,-0.824641],[-0.412336,0.646931,0.641407],[-0.316172,-0.045839,0.947569],[-0.251442,-0.050752,0.966521],[-0.512680,0.179479,0.839595],[-0.346080,0.934660,0.081271],[0.574084,-0.323435,-0.752159],[-0.962645,0.031617,0.268777],[-0.247780,0.957945,0.144658],[-0.391797,0.701010,0.595843],[-0.441725,0.665029,0.602130],[-0.424604,0.612629,0.666585],[-0.452406,0.703116,0.548540],[-0.357128,0.704184,0.613636],[-0.322733,0.807001,0.494522],[-0.598254,0.593860,0.537919],[-0.522599,0.695639,0.492874],[-0.553880,0.615131,0.561052],[-0.473952,0.680197,0.559160],[-0.605487,0.542253,0.582476],[-0.796777,0.358440,0.486404],[-0.492691,0.688711,0.531877],[-0.441664,0.740623,0.506333],[-0.488205,0.636982,0.596545],[-0.160283,0.832728,0.529923],[-0.135624,0.791192,0.596301],[-0.318979,0.724693,0.610767],[-0.516007,0.399762,0.757561],[-0.656301,0.381664,0.650807],[-0.325053,0.689200,0.647542],[-0.440382,0.594440,0.672811],[-0.453810,0.575549,0.680258],[-0.420118,0.491867,0.762566],[-0.332316,0.664571,0.669240],[-0.212622,0.759545,0.614673],[-0.398358,0.700064,0.592578],[0.010437,0.144261,-0.989471],[-0.428327,-0.159886,0.889340],[-0.551805,0.189611,0.812098],[-0.668233,-0.049654,0.742241],[-0.720573,-0.358531,0.593432],[-0.905606,-0.111698,0.409070],[-0.330485,-0.379101,-0.864315],[-0.190588,-0.741386,0.643391],[-0.279702,0.484603,0.828791],[-0.970214,0.058718,0.234962],[-0.640828,-0.696005,0.323832],[0.212012,0.086398,-0.973418],[-0.030366,0.988128,0.150395],[-0.056764,0.989593,0.132176],[0.143864,0.974639,0.171300],[-0.027680,0.993530,0.110080],[-0.087832,0.981872,0.167943],[-0.033387,0.982513,0.183142],[-0.233314,0.959624,0.156896],[-0.539659,0.833338,0.119449],[-0.345683,0.909452,0.230995],[-0.312632,0.944090,0.104312],[-0.499832,0.836055,0.226203],[-0.541826,0.810144,0.223701],[-0.407605,0.877865,0.251320],[-0.535722,0.831385,0.147496],[-0.334483,0.931364,0.143712],[-0.386761,0.876217,0.287423],[-0.432051,0.886502,0.165471],[-0.045167,0.967132,0.250191],[0.033387,0.938505,0.343608],[-0.174841,0.963683,0.201727],[-0.076357,0.969207,0.234016],[-0.042756,0.959899,0.276955],[-0.041108,0.911740,0.408673],[0.055757,0.913450,0.403088],[0.337413,0.887387,0.314066],[0.024537,0.911679,0.410108],[-0.075747,0.947722,0.309915],[-0.241737,0.865230,0.439192],[-0.219916,0.875759,0.429670],[-0.317759,0.852016,0.415967],[-0.214759,0.920347,0.326762],[-0.168554,0.939512,0.298105],[-0.045625,0.859767,0.508591],[-0.277779,0.817499,0.504471],[-0.230628,0.564928,0.792230],[-0.370983,0.617359,0.693686],[-0.416364,0.628071,0.657338],[-0.463363,0.616535,0.636494],[-0.195166,0.789697,0.581591],[0.004456,0.785882,0.618305],[-0.053499,0.755577,0.652821],[-0.264351,0.642872,0.718863],[-0.316202,0.717887,0.620167],[-0.413129,0.651631,0.636128],[-0.371838,0.570544,0.732231],[-0.554521,0.645283,0.525437],[-0.195502,0.841823,0.503037],[0.098239,0.507492,0.856014],[-0.011322,0.615833,0.787774],[-0.005737,0.645405,0.763787],[-0.228919,0.525925,0.819117],[-0.081240,0.541520,0.836726],[0.145116,0.606250,0.781915],[-0.470565,0.492325,0.732200],[0.020936,0.669424,0.742546],[0.126530,0.742332,0.657949],[-0.178594,0.706320,0.684957],[-0.218207,0.489547,0.844203],[-0.335704,0.647877,0.683737],[-0.172979,0.630146,0.756920],[-0.199622,0.588305,0.783593],[-0.536271,0.776421,-0.330943],[-0.250893,-0.967895,-0.014344],[-0.457808,0.680990,0.571490],[-0.430464,0.872433,0.231361],[-0.412458,0.867855,0.276894],[-0.465712,0.738914,0.486862],[-0.636372,0.687674,0.349437],[-0.633717,0.520402,0.572283],[-0.597491,0.608509,0.522172],[-0.664754,0.556169,0.498703],[-0.672353,0.537004,0.509445],[-0.586108,0.588824,0.556505],[-0.765130,0.423902,0.484603],[-0.714469,0.581744,0.388653],[-0.583514,0.591388,0.556536],[-0.716422,0.645650,0.264229],[-0.412152,0.895047,0.170232],[-0.541307,0.815119,0.206183],[-0.764916,0.595355,0.245735],[-0.614917,0.785730,0.066805],[-0.409955,0.906766,0.098331],[-0.636708,0.755913,0.152226],[-0.532456,0.837611,0.121799],[-0.473342,0.880306,0.031281],[-0.350749,0.934812,0.055544],[-0.241035,0.967040,0.081759],[-0.544572,0.826411,0.142979],[-0.500443,0.865108,-0.033326],[-0.606555,-0.727928,0.319590],[0.141667,0.034700,0.989288],[-0.179998,0.911039,-0.370922],[-0.425703,-0.370952,0.825312],[-0.635792,0.356120,0.684774],[-0.542985,-0.024171,0.839381],[-0.400678,-0.315989,0.859981],[-0.659108,0.101291,0.745170],[-0.593219,0.206824,0.778008],[-0.614795,0.581530,0.532731],[-0.714774,0.536760,0.448256],[-0.582018,0.480697,0.655843],[-0.624104,0.586047,0.516739],[-0.633503,0.539933,0.554155],[-0.649312,0.485916,0.585009],[-0.560045,0.631336,0.536393],[-0.640736,0.587878,0.493789],[-0.697684,0.597949,0.394513],[-0.588824,0.697867,0.407727],[-0.603717,0.597736,0.527451],[-0.444227,0.677633,0.586016],[-0.531846,0.715812,0.452467],[-0.963530,0.052492,0.262337]], + + 'vertices': [[8.251107,12.663457,20.593030],[9.288465,11.027203,19.894486],[9.694680,12.039624,20.143535],[11.501655,29.243062,12.442430],[11.681022,29.250294,11.529052],[11.419704,30.633084,11.153983],[-9.930555,-21.173950,11.775319],[-9.917407,-20.479806,14.218705],[-10.882389,-20.611078,11.338222],[0.049466,38.998708,-5.328581],[0.907888,39.321454,-5.913630],[-0.270099,39.220029,-7.592498],[19.274525,7.471600,1.830225],[19.687991,6.939667,1.897684],[19.424189,7.383767,1.260863],[3.493796,-2.303272,-24.017037],[3.729085,-2.830066,-23.487586],[2.938127,-2.966449,-23.768655],[-10.453956,-7.572679,17.981975],[-10.076109,-7.836150,17.849868],[-9.616980,-6.927488,18.386669],[-11.199112,8.011327,18.623470],[-11.702393,7.170491,17.808828],[-10.689910,8.377629,18.889752],[4.269238,-18.258333,-17.265628],[3.230432,-19.353921,-17.793576],[3.808005,-18.100026,-17.674256],[-20.667325,-2.867446,-7.919372],[-19.764415,-5.022611,-5.420467],[-20.038732,-5.283874,-5.581385],[3.327483,-10.623698,-20.340423],[2.818198,-10.562080,-20.078942],[3.480829,-9.723346,-20.353520],[1.797060,23.828614,-26.352519],[2.494460,24.482518,-26.374448],[2.272657,23.670712,-26.820209],[23.640076,4.203103,-9.265679],[23.801461,4.214062,-8.771771],[22.105672,-0.235748,-8.189498],[16.578372,-4.741401,-14.067576],[16.022286,-8.138425,-12.425780],[15.967539,-7.513450,-13.032656],[4.709855,-8.996869,21.013152],[3.880782,-9.217819,21.396911],[5.347502,-9.349853,20.611684],[-9.272092,32.625874,-18.879420],[-8.527725,33.470952,-17.918023],[-8.089084,32.086362,-20.171226],[-10.462713,36.691441,-7.939539],[-10.183290,36.001546,-5.797828],[-9.541754,35.824765,-5.059585],[22.612544,8.396256,-5.669994],[21.987160,7.538174,-4.728919],[22.350350,7.642247,-5.670623],[-13.090525,-9.612020,-15.428121],[-12.437515,-9.160102,-15.684073],[-12.394044,-10.206319,-15.369908],[16.763673,-11.789550,-8.472335],[17.169547,-11.374778,-8.341923],[16.760709,-11.737876,-7.912399],[1.385879,2.349793,-26.445294],[1.280643,0.339074,-26.100350],[1.003862,1.292962,-26.498117],[21.945798,0.162225,-8.922555],[-12.578472,6.331696,16.846165],[-12.867624,6.237206,16.687687],[-12.654254,6.099358,16.516226],[-0.398848,-38.080549,11.358376],[0.285656,-36.447526,10.945216],[-0.775037,-36.482047,10.941390],[-18.990453,-5.013166,-3.132639],[-19.243690,-4.166564,-4.812821],[10.374701,35.974042,-12.290288],[9.522756,35.875615,-13.125254],[9.264574,36.153882,-11.451786],[8.226465,36.727818,-11.715517],[7.652077,36.675168,-12.750330],[7.818524,37.258282,-11.141667],[20.172862,20.690404,0.295562],[20.791692,19.529401,-0.121783],[21.805665,20.725980,-2.577920],[-2.987119,-18.612138,-17.927346],[-3.377199,-18.140725,-17.923066],[-3.042253,-17.739061,-18.135999],[-13.251396,-8.655364,-15.217343],[-12.701286,-8.637676,-15.956386],[-7.407459,28.604581,16.789321],[-6.870148,28.483845,17.246251],[-7.018368,28.857297,17.420609],[4.349189,34.391392,-17.609647],[4.003865,33.912739,-18.713176],[3.494767,34.021481,-18.365180],[4.076763,-21.641905,19.030980],[2.459513,-22.062156,19.633040],[2.486398,-22.444451,18.396615],[13.895305,7.283406,16.711721],[14.911814,7.412755,15.678431],[14.024974,7.567643,16.622931],[-7.260694,6.465119,18.536622],[-6.932227,6.416642,18.791911],[-6.175987,6.802357,17.777196],[-18.832412,-6.949453,-1.809624],[-19.199956,-6.032377,-3.268179],[-18.405006,-6.495378,-1.691776],[-2.563248,-2.842471,27.127479],[-1.766084,-3.032275,28.063537],[-2.323410,-1.593108,27.138282],[11.360818,-0.377063,-22.006629],[11.296520,-1.631568,-21.446128],[10.650771,-1.192966,-22.150229],[-18.229110,-5.528430,-1.484603],[7.735985,-23.285607,11.890584],[9.097772,-21.719741,12.175589],[7.089764,-22.979447,13.391367],[3.966062,35.103848,10.916253],[4.339686,34.840787,11.397307],[4.747792,35.102460,10.107552],[1.232688,22.945382,-26.811612],[0.959440,22.485795,-26.820594],[0.186851,22.950814,-26.766814],[8.426775,-9.548293,18.333342],[7.677618,-9.557788,18.192137],[7.645612,-10.201881,18.135305],[16.628464,-4.544772,9.781814],[15.607868,-1.349994,14.284788],[15.509357,-4.775970,12.540828],[3.861327,29.160626,18.324107],[3.299282,29.621350,17.944086],[3.145987,28.319348,18.840117],[-14.292448,3.991696,16.668711],[-13.689577,4.771348,16.960989],[-14.391039,4.563901,16.142268],[11.105060,32.174382,10.033119],[11.671662,30.773984,10.162989],[11.188595,32.083821,9.434985],[22.713204,16.684968,-10.450299],[22.639846,17.216756,-9.776986],[22.127539,15.365731,-10.165263],[-18.964799,14.945050,2.716507],[-18.809211,14.197137,3.963630],[-18.520131,15.089242,4.002822],[18.857520,-0.005142,-4.290977],[19.069684,0.614808,-4.559799],[18.934676,1.310868,-4.239464],[-2.780307,-0.407829,23.989909],[-2.979297,-1.470348,24.182651],[-2.415895,-0.788474,25.936599],[18.355382,0.992856,2.588651],[18.387223,1.179002,2.187340],[18.304633,1.756936,2.239075],[-3.597273,-4.356223,21.908935],[-2.221884,-3.708953,23.059577],[-3.256697,-4.068130,22.328006],[20.991713,13.378369,-15.896447],[20.518370,14.262730,-16.351848],[20.799908,14.591496,-15.193105],[12.111535,35.608098,-9.261859],[13.250510,34.915059,-9.176137],[12.654050,35.293401,-10.167354],[13.280082,8.837151,-25.228261],[13.018614,7.332219,-24.711638],[11.735137,7.481190,-25.326322],[3.739037,-2.497836,23.762629],[3.630697,-1.568378,22.983104],[3.237067,-1.027171,23.009965],[-23.249286,-37.924246,-2.352642],[-21.147521,-36.367906,-1.815863],[-25.411893,-37.121508,-4.806808],[-18.436923,20.564885,-20.463109],[-18.519561,19.643552,-20.995780],[-18.828088,20.031281,-20.104209],[9.345660,26.871167,16.396684],[8.917924,28.148511,16.208741],[8.202718,27.804318,16.798882],[16.238175,-12.256072,4.860039],[15.824434,-13.267162,5.305312],[15.902139,-12.788738,2.114705],[24.301480,-39.298111,-2.268511],[25.957803,-38.102260,-4.229424],[23.189500,-38.071646,-2.200181],[17.940772,23.456700,-19.837369],[17.912326,25.013165,-18.868726],[18.942504,24.165269,-19.104140],[1.438932,-4.424983,24.024495],[1.703933,-3.413940,23.791032],[1.763559,-3.796729,24.396501],[0.538881,0.817540,-26.322410],[0.187979,0.908822,-26.634826],[0.328501,1.983998,-26.600242],[-3.202831,7.697491,18.159887],[-3.511311,7.807332,18.080317],[-3.738850,7.330224,17.665202],[16.921735,6.324029,-20.476186],[17.751296,7.101426,-20.369994],[16.974353,5.975190,-19.782514],[-15.492151,-0.558673,-17.607551],[-15.272987,-1.406875,-17.856584],[-15.368113,-1.603896,-16.993573],[15.071523,-0.218204,-18.044330],[14.566772,-1.673679,-17.768693],[15.066375,-0.131809,-19.324529],[-19.415370,14.944329,-19.271199],[-19.141088,13.755772,-18.677424],[-19.788278,15.434918,-18.541324],[-10.160686,4.440888,-25.065751],[-9.554538,3.053845,-24.341855],[-10.595824,3.565125,-24.774318],[-0.941671,-20.587829,21.608493],[0.308806,-20.689495,21.679154],[-0.114160,-20.016433,21.830026],[-5.390145,-37.959106,9.644241],[-4.179537,-36.139808,10.026265],[-5.066759,-36.210621,9.453240],[13.062042,-2.659827,18.312127],[11.622295,-4.259750,19.237418],[12.599894,-4.685287,18.313857],[-16.878526,-9.304437,-2.117951],[-16.791816,-10.113443,-2.992462],[-16.334689,-11.192302,-1.651642],[-4.709059,7.377743,17.558216],[-4.666266,7.727231,18.108360],[-5.380537,8.104928,18.294318],[-12.562174,19.133893,-26.009297],[-13.008914,20.446629,-25.604671],[-12.201841,19.916829,-25.958846],[2.683198,35.195851,-17.330020],[1.669316,35.203130,-17.739999],[2.505938,36.278172,-15.819196],[19.739859,11.400178,0.784245],[19.890601,10.235371,0.818889],[20.016915,11.102261,-0.249069],[-17.452811,-4.602657,-12.926845],[-17.559766,-3.992458,-13.529502],[-16.962026,-4.174140,-13.695109],[9.498505,-4.321239,-21.114793],[8.692257,-6.251169,-20.595353],[8.906603,-4.948631,-21.464629],[-17.365764,-0.567497,-16.084598],[-16.424445,-2.945113,-15.573117],[-17.524150,-1.124160,-15.479228],[-23.884738,4.513161,-8.912653],[-23.150617,3.433171,-8.416568],[-24.050481,5.138478,-8.460815],[-11.274595,27.203664,14.071278],[-11.804507,27.692425,13.522551],[-12.878487,27.762524,11.838619],[16.005612,21.002911,8.785200],[16.258450,20.425942,8.723371],[16.411858,20.521916,8.242763],[21.683495,24.072797,-10.334091],[21.176543,21.875134,-10.183974],[21.367581,22.597298,-10.686876],[13.323147,-37.725159,5.092436],[16.703072,-37.725860,3.461554],[12.792891,-36.611532,4.591866],[-21.736972,-0.003814,-7.850088],[-21.953582,-0.190395,-8.144666],[-16.602439,-11.552835,-8.085653],[-16.732621,-11.392160,-8.469303],[-16.629592,-11.671743,-8.473351],[-8.775192,14.809788,-27.682611],[-9.922209,15.111588,-26.707784],[-9.280861,15.689160,-27.253884],[5.073076,22.740521,-26.547786],[4.179556,22.551503,-27.048686],[4.415538,22.840512,-26.582103],[-16.813222,-10.833427,-8.022415],[3.425830,9.735123,-28.101977],[2.323424,9.438592,-28.291976],[3.401921,10.483689,-28.467036],[-11.989557,-15.110061,-14.385285],[-11.447799,-15.431749,-14.659579],[-11.506353,-15.826072,-14.353395],[-11.121404,-9.964916,-16.307744],[-11.263006,-10.486818,-15.978610],[-11.278882,-9.022044,-16.290757],[6.374014,-6.400953,-20.855853],[7.247046,-5.175700,-21.039454],[7.262203,-6.431417,-20.289973],[15.624869,1.365082,14.435083],[15.004877,2.536710,15.909562],[14.936975,0.500409,15.695616],[-12.586784,-5.920060,17.850217],[-11.620591,-5.831611,18.504657],[-10.590067,-4.115806,19.875634],[0.092529,-35.560263,10.513498],[0.934826,-34.816640,10.214984],[-0.705547,-34.866894,10.241039],[-3.015246,-6.212173,-21.771297],[-3.489640,-6.501066,-21.679503],[-3.489447,-5.480464,-22.108291],[-5.122835,-14.776487,-18.441619],[-5.391267,-15.130218,-17.809466],[-5.291197,-13.675338,-18.397542],[16.826747,13.252919,-23.184283],[16.186984,11.711308,-23.299474],[16.160228,14.045449,-23.432715],[18.817824,25.263337,-18.301118],[-24.059154,8.547127,-7.678850],[-24.138618,6.059258,-8.760028],[-14.496926,0.116341,-19.716336],[-13.850835,0.053662,-20.011069],[-13.818802,-0.698631,-19.919930],[10.238089,28.477963,-22.638343],[9.289960,27.533635,-23.230546],[9.083174,28.317075,-23.349021],[2.104996,-2.234313,27.669618],[1.305685,-2.350772,28.323297],[1.359642,-3.071876,28.332578],[5.481704,-13.841295,-18.204307],[5.945689,-12.677274,-18.825294],[6.580174,-13.123203,-18.247363],[5.200161,23.711797,20.758939],[8.283775,23.949082,19.415837],[6.164498,24.326104,20.121049],[-0.926576,8.117470,-28.190040],[-0.557519,9.025372,-28.041116],[-0.431756,7.061578,-28.136258],[-19.642436,8.566666,0.583817],[-19.406928,8.526810,1.786953],[-19.352830,9.137284,1.567982],[-17.680120,-5.558254,-0.229852],[-18.083226,-5.473737,-1.483731],[-18.157480,-5.987790,-1.826306],[20.614827,4.225472,-9.937328],[20.796719,4.564988,-10.275855],[21.013434,6.273823,-9.945406],[-15.806423,-3.764667,-16.029010],[-16.649314,-1.993850,-16.569737],[-15.695264,-2.253192,-16.521195],[18.262328,-5.988271,-8.734290],[18.721467,-5.929300,-9.179110],[18.924449,-5.171325,-9.750994],[-4.049063,-7.468242,21.637832],[-3.592152,-8.080686,21.927648],[-2.847786,-8.014436,22.330674],[18.518880,6.641476,4.566482],[18.159581,5.579636,5.005555],[18.459042,5.392449,4.397643],[-1.928909,13.184384,-28.230157],[-2.805633,12.232983,-28.407638],[-2.277906,13.884919,-28.070626],[18.858748,1.999779,0.496937],[19.009728,2.160268,0.825803],[18.365367,0.282445,0.868814],[-20.281520,6.922692,-7.790009],[-19.979852,4.619019,-9.042510],[-20.086900,5.497555,-7.881323],[19.723079,19.944955,-18.462533],[19.455533,20.207844,-19.026990],[19.646556,21.199246,-18.306912],[-16.084449,6.307854,13.303483],[-15.500357,5.622521,14.685265],[-15.211175,5.948750,14.764515],[-13.500220,-19.679502,2.206947],[-12.099662,-21.657296,3.953795],[-12.192546,-20.908656,4.015922],[20.165681,19.139847,1.094763],[19.449017,18.458241,2.478982],[20.064418,18.009373,0.702453],[-19.923349,0.974873,-10.906121],[-19.800275,1.588799,-11.358204],[-19.444751,-0.892818,-11.132248],[17.505061,20.956837,6.683909],[17.109523,20.814927,7.528719],[16.924378,20.409543,6.997043],[-2.952410,30.374211,-22.853936],[-3.624436,31.909917,-21.583783],[-2.597102,31.140202,-22.285197],[14.721563,4.453675,15.864243],[15.562880,3.166825,14.922546],[15.725819,4.690133,14.538658],[21.059205,6.223405,-3.862516],[21.581189,6.392628,-4.663662],[-23.644958,4.748940,-8.407833],[-23.763820,5.973222,-8.108096],[-23.801473,7.715012,-7.405861],[1.743822,-1.303993,27.693185],[-19.896911,25.644467,-7.088299],[-20.027454,24.420605,-6.710788],[-20.056291,25.354443,-6.654037],[-10.091439,-6.824279,18.489304],[-11.423537,-7.755922,17.701421],[0.461944,-32.855799,10.014729],[-0.197093,-33.659223,9.965984],[0.814076,-33.966665,9.950931],[15.108774,-14.150310,-11.195596],[14.981336,-14.243991,-12.032417],[14.877884,-13.724298,-12.380355],[-7.291926,37.269063,-11.463837],[-7.549123,37.487591,-10.237550],[-6.553739,37.824536,-10.078491],[-14.223047,-14.779720,-11.697656],[-14.781063,-14.697011,-11.192951],[-14.699245,-14.316816,-11.248789],[-8.016067,-21.581573,15.147091],[-9.698576,-19.941488,15.254851],[-8.856608,-21.325177,14.396014],[14.816256,18.499394,-24.837941],[14.383137,19.239838,-25.230447],[15.081301,19.949525,-24.581286],[-3.645397,37.844777,-12.351284],[-4.386492,37.094449,-12.687684],[-4.050688,37.782025,-11.099102],[-17.944906,-8.350562,-9.108392],[-18.090404,-8.698512,-8.738102],[-17.913036,-8.320064,-8.506082],[10.781814,27.032544,14.604478],[11.628143,28.193639,13.224528],[10.934657,27.743420,14.071454],[-17.899827,17.818974,4.130723],[-18.608936,17.745225,3.463003],[-18.226115,17.185174,3.334612],[-6.209878,32.026631,-21.109756],[-6.415627,29.388127,-22.924666],[-6.991078,31.294659,-21.154006],[-15.803835,14.087170,-23.968175],[-16.342101,15.220101,-23.445834],[-16.237043,14.863286,-24.173934],[-18.476793,-0.470458,2.523149],[-18.104303,-0.577548,3.615435],[-18.253768,-0.083965,3.374723],[-4.713965,-8.766269,21.188302],[-2.904179,-8.997798,22.023826],[-3.347839,-8.445565,22.099290],[22.806634,12.054108,-12.288736],[22.616467,11.432061,-11.605237],[22.539960,10.922711,-12.730509],[12.985027,34.022542,-4.019138],[13.051256,34.316327,-2.357896],[13.606733,34.013585,-3.474816],[-8.815869,-4.119018,-20.729642],[-8.410442,-5.101312,-20.599048],[-9.744786,-4.470081,-19.966868],[17.606591,16.711316,-21.847932],[17.281056,12.046101,-22.088473],[17.291558,14.675404,-22.679772],[-18.316566,0.611211,0.147207],[-18.895339,1.750745,0.240903],[-18.607953,1.306393,-0.124084],[-2.467387,35.346722,-16.465333],[-2.851252,35.121136,-17.463357],[-2.947974,35.812886,-15.953855],[19.445414,4.732285,-0.212514],[19.416634,4.009763,0.379625],[19.046153,2.801396,-0.012972],[-9.338881,-3.101680,-21.323045],[-8.216926,-3.208835,-21.377131],[19.515519,3.514008,-6.246737],[19.598952,2.469598,-6.877489],[19.551318,2.115567,-7.043790],[14.208277,17.953210,15.700397],[13.618485,18.481747,16.789386],[13.666194,16.949090,17.253438],[15.294269,16.685349,-24.450536],[14.979630,16.035241,-25.033753],[3.015416,-2.418453,25.966277],[3.500230,-2.789832,24.747619],[2.465732,-0.571388,25.237517],[-1.366118,-27.155987,12.900928],[-0.245461,-27.698098,12.692125],[-0.636961,-26.538112,14.208036],[4.932726,-9.582225,20.761559],[3.377961,-9.639840,21.419414],[3.660620,-9.916616,20.899871],[1.618987,37.504094,2.736899],[1.029504,38.007230,3.168885],[1.914856,37.292210,3.657314],[-22.488656,3.300183,-8.576204],[20.372760,9.233861,-1.185936],[19.735865,8.469479,0.178800],[19.901576,7.550580,0.166930],[-3.710905,4.918515,-27.408622],[-3.450615,3.379025,-27.136167],[-3.893341,3.618703,-26.835725],[-13.449638,-34.359397,-17.958135],[-17.158500,-36.490538,-17.835547],[-14.512362,-33.018117,-16.303649],[-4.710543,-23.415808,15.572988],[-2.872455,-22.759310,17.627502],[-4.352396,-21.996578,17.490805],[1.962654,23.208131,-26.765601],[1.418521,23.387761,-26.580760],[16.538140,-12.814262,-8.882404],[16.512612,-12.246614,-8.832316],[16.653910,-12.446229,-8.546329],[9.155601,24.773392,-25.014865],[9.870127,25.572995,-24.996148],[9.604449,24.796647,-25.286511],[1.701470,37.641965,1.014104],[2.062848,37.443166,2.152693],[-9.196027,-9.752925,18.159123],[-9.878484,-10.449203,17.766082],[-10.250998,-13.518878,17.301712],[2.227406,-3.065940,24.444571],[2.041178,-3.817363,24.729423],[1.818653,-3.294254,24.386504],[19.707331,2.854817,-4.565254],[20.218812,3.841363,-4.777163],[20.081605,3.918805,-4.238986],[-12.336992,27.958440,12.653801],[-12.686808,28.192883,12.046282],[-17.154649,-30.870140,-5.288566],[-17.872531,-32.382160,-9.105171],[-19.285688,-32.998720,-6.140002],[15.184665,-15.794170,-1.768899],[14.950201,-15.516242,-0.439467],[14.786322,-16.450076,-0.186148],[13.100977,-24.208789,2.785098],[12.202728,-24.825948,4.382073],[11.442198,-26.896659,4.994707],[7.022940,-22.076098,15.404262],[4.166116,-23.440808,15.952595],[7.007365,-22.572452,14.650332],[1.087995,33.234311,-20.114997],[1.514634,32.284894,-21.032393],[1.015926,32.633183,-21.291999],[2.815385,11.742764,-28.386146],[3.307163,13.354134,-28.453393],[3.471466,12.122914,-28.347333],[19.287991,-3.440017,-6.880635],[18.974040,-4.718873,-6.811835],[19.268725,-4.618720,-7.159605],[-10.079184,-11.080743,-16.424296],[-10.521044,-11.571866,-16.185388],[-10.808530,-10.732906,-16.645715],[1.904418,-11.975168,-19.933345],[2.511849,-11.358606,-19.927913],[2.385912,-12.380245,-19.881419],[-13.839459,27.672024,10.281791],[-13.933175,27.321313,10.500115],[4.172729,6.952222,17.608701],[3.836024,6.794099,17.725946],[4.553982,6.054009,18.109541],[17.491055,16.146592,6.763542],[17.359856,17.011010,7.276822],[17.091626,17.522774,8.073431],[-17.498513,16.262547,6.778028],[-17.636365,16.911545,7.022868],[-17.390437,17.239415,6.739434],[15.403623,30.087918,-15.900849],[16.180688,28.442013,-17.559836],[15.454921,29.003903,-17.738357],[-21.200954,-3.913623,-6.997331],[-20.539342,-4.821195,-6.323252],[-20.457196,-5.809032,-4.704021],[17.737195,-3.678531,1.959104],[17.731963,-6.322738,2.554054],[17.623122,-6.284900,0.931263],[5.396912,10.586617,20.287747],[4.644043,9.819344,19.678414],[6.639959,9.712235,19.700152],[3.551667,38.344449,-7.447755],[3.525138,38.088338,-8.536462],[3.159288,38.751317,-8.311825],[-20.834417,-3.668342,-7.501736],[15.498625,32.063626,-4.761772],[15.561735,32.014294,-3.709961],[15.689278,30.873471,-3.838014],[8.290037,30.020512,-21.618493],[8.993769,29.332036,-22.040032],[8.178101,29.733563,-22.370984],[-18.413539,12.499848,4.587932],[-18.207834,12.894685,4.828762],[-18.580367,13.365231,4.804694],[7.981933,36.143918,-1.406811],[8.480013,35.764134,-0.360300],[8.751214,36.087079,-1.253105],[-9.785151,8.809602,-26.720838],[-10.430380,10.426919,-26.581143],[-10.066509,10.655602,-26.555404],[-17.110309,24.816323,-20.612453],[-17.250747,22.978829,-21.640626],[-17.388002,22.101086,-21.569589],[7.165971,36.279462,-0.616069],[7.998030,36.146802,-0.538687],[-8.686793,25.704221,-24.902038],[-8.311209,24.784268,-25.474637],[-9.091007,25.482331,-25.103740],[-19.540057,8.215447,-18.076161],[-20.112973,8.501481,-17.432067],[-19.458091,10.351819,-17.833390],[-4.468292,7.340951,17.681686],[-4.293599,7.220334,17.712852],[-4.233732,7.357949,17.718061],[4.138610,22.887959,21.350200],[2.869058,24.017647,21.270312],[2.323520,23.023072,21.771949],[-8.354406,37.304150,-10.622876],[-8.723266,36.147206,-12.285578],[-8.763256,36.758549,-9.993438],[-12.514463,-15.445735,-13.639344],[-11.981797,-16.361467,-13.696431],[-13.264494,-15.362897,-12.914342],[11.045337,5.027592,18.575036],[12.066631,5.462273,17.706017],[11.188614,5.771191,18.286345],[-2.785282,37.208180,4.741269],[-1.983559,37.311337,3.173403],[-2.890097,37.255803,2.884162],[4.447695,36.845052,-13.654336],[4.288966,35.423390,-16.415061],[4.091607,36.299054,-14.337129],[-4.530026,15.036706,-27.886460],[-4.195793,15.824906,-28.102311],[-3.497161,15.422353,-28.409230],[-21.267680,-4.132003,-6.343976],[4.824404,19.148518,-27.414559],[4.802666,19.987065,-27.403501],[5.414603,18.306363,-27.906138],[-10.119545,7.515233,-26.144918],[-9.000122,6.631554,-26.089717],[-9.811144,6.614747,-26.212979],[10.592176,-11.932138,-16.924199],[9.445705,-12.556922,-16.991675],[9.694479,-11.807964,-17.126153],[3.104645,-15.423702,-19.018470],[2.394670,-15.670186,-19.143992],[2.502590,-15.110158,-18.743329],[-13.333314,26.762391,-22.291181],[-13.197171,25.601891,-23.638204],[-13.742895,26.700307,-21.786422],[7.801264,-9.372512,18.286081],[-11.601441,-35.522820,4.499201],[-14.426498,-35.495543,2.646938],[-13.283337,-36.876761,4.507628],[2.376854,35.888631,9.958462],[2.845639,35.475079,10.256783],[3.031704,36.231831,8.950027],[17.857089,-2.367591,-13.799163],[18.491437,-2.027061,-13.611821],[17.433501,-3.922591,-13.390393],[17.329009,30.294339,-13.167916],[17.536006,29.070775,-14.332810],[17.012906,29.972729,-14.282186],[-19.583270,-3.900031,-9.367145],[-19.344140,-2.720584,-9.940849],[-19.331928,-3.873203,-9.759190],[10.377782,33.263112,8.771289],[9.579183,33.678639,8.854584],[9.839837,33.416768,9.501844],[-19.589332,15.130460,0.529172],[-19.586469,13.797993,1.683363],[-2.243198,37.144795,5.805636],[-20.801568,-5.149846,-4.553204],[4.868785,7.098496,18.075214],[4.564204,6.954652,17.777305],[4.993910,6.209172,18.032504],[2.155743,-17.401231,-18.783067],[2.902018,-17.190614,-18.581313],[2.909790,-17.566934,-18.400329],[-17.922021,-1.923023,-0.080514],[-17.965293,-2.130824,-1.595568],[-17.549043,-4.107501,-0.543690],[-9.387652,19.533402,20.487519],[-6.659041,19.488602,21.540423],[-7.213075,21.450143,20.856582],[4.193150,10.412884,20.695157],[4.840673,-10.701255,-19.612071],[5.396217,-11.857906,-19.050635],[4.299609,-11.928434,-19.277980],[13.243694,-14.802432,-13.789823],[13.295548,-13.553523,-13.853900],[13.575103,-13.729192,-13.256230],[-18.137811,24.194199,1.708184],[-18.685081,23.852666,-0.721996],[-18.883315,22.783284,0.955559],[-20.251796,-6.849183,-2.524302],[-20.419049,-6.223813,-2.159488],[-13.757711,8.605672,-24.196025],[-13.584253,9.447896,-24.259316],[-13.349688,9.502259,-24.804566],[2.097328,33.138974,15.219089],[2.787111,33.280011,14.439231],[2.268650,33.739987,14.466837],[-6.095413,19.435425,-27.137616],[-5.783267,18.870152,-27.430924],[-6.859133,19.058198,-27.086005],[15.959985,23.256264,8.541330],[15.845568,23.641125,8.393923],[15.428165,23.137391,8.984380],[3.898470,19.774678,-27.328885],[1.027569,26.907468,19.638488],[1.694167,27.341836,19.291978],[1.391116,27.993993,19.442313],[0.562778,6.227524,-27.883773],[1.032413,5.126954,-27.731547],[0.254693,5.591817,-27.459403],[-14.748362,10.830476,17.285871],[-15.012328,9.298886,16.354732],[-14.367015,10.377312,17.644018],[-13.139123,-2.918376,-18.773185],[-13.715909,-4.011253,-17.705131],[-13.824732,-2.967109,-17.907220],[-3.911900,-2.625121,23.414144],[-4.577590,-2.482089,22.000232],[-4.198099,-3.250831,23.045970],[8.198620,13.373006,21.067304],[6.587536,13.025487,21.157203],[-5.135776,-1.842712,-23.587222],[-6.102889,-0.998752,-24.392171],[-4.746285,-0.662048,-24.478086],[-17.702737,-35.065105,-0.058852],[-13.968318,-34.487458,2.198159],[0.648247,-31.735376,10.385186],[1.167442,-32.502191,9.940238],[-20.135398,11.903886,-16.472762],[-19.898193,11.855691,-17.448236],[4.805839,37.048291,-0.559373],[4.929343,36.788747,-1.741554],[4.500953,37.383649,-1.817609],[-3.612652,35.557126,-16.270921],[-3.232117,34.478749,-17.679221],[-3.547740,24.014287,-26.510873],[-4.289105,23.610512,-26.627688],[-4.089852,24.351292,-26.251456],[9.445715,13.559819,21.145431],[8.082935,14.156499,21.333201],[3.968564,-23.658781,-17.896306],[5.253169,-23.701391,-17.458606],[3.667007,-25.093163,-18.135760],[17.801726,-0.187900,-15.236819],[17.472510,-2.035178,-14.623727],[17.226393,-2.509998,-15.179612],[-18.533784,-0.087756,-14.548816],[-18.552373,-0.699691,-14.082124],[-19.238174,0.701081,-14.033544],[19.664727,15.253037,1.793172],[19.710099,15.664590,0.973764],[18.937382,15.741109,2.591097],[-18.183019,2.275208,2.627446],[-18.668014,0.991547,2.653096],[-18.228158,1.585850,3.180718],[-14.366775,-30.152077,-13.363883],[-15.471074,-31.642250,-13.315522],[-15.438965,-30.410383,-11.059999],[7.626526,-3.764262,-21.523934],[8.790461,-4.013286,-21.692744],[15.892868,-13.071403,-10.623568],[15.786513,-13.279779,-10.249202],[15.464223,-13.729154,-10.803748],[-21.254113,-2.065013,-8.501193],[-21.640250,-2.400771,-7.846653],[-21.988513,0.444451,-8.816908],[-19.704374,2.001946,-11.826486],[-19.994249,2.876740,-12.435267],[-19.809064,1.485600,-12.296907],[-5.053112,14.835667,22.041028],[-3.481208,15.018086,22.589465],[-6.136918,16.206074,21.937150],[12.031964,-19.622945,10.619559],[11.404279,-21.293180,9.088245],[12.229782,-19.986284,9.403632],[6.418774,36.882367,-2.473200],[6.839017,36.536519,-1.886242],[6.868913,37.109959,-3.200731],[23.760407,5.562161,-8.177042],[23.393239,6.718674,-8.075583],[23.353123,5.342004,-8.486176],[19.482005,-2.876937,-6.010129],[19.376065,-3.902423,-5.096813],[18.866599,-3.972747,-4.718888],[-12.991520,-14.160468,-13.477475],[-12.321340,-14.831317,-13.833602],[-12.801530,-14.799300,-13.645778],[-21.408880,-0.419017,-8.972332],[-18.409827,-3.299518,-12.686079],[-18.712707,-2.044162,-13.258685],[-18.333289,-2.919811,-13.456893],[-15.724398,31.262982,-0.929985],[-16.344857,30.131512,-0.479948],[-15.460002,31.073643,1.127499],[5.535553,26.467866,-25.022904],[5.205766,25.999531,-25.668717],[4.294446,25.980935,-25.729795],[-12.911069,-0.976253,18.440816],[-11.471147,0.452664,19.549335],[-12.545640,1.581261,18.796685],[-3.051919,-2.738822,-24.314261],[-3.824586,-1.894111,-24.435979],[-3.356773,-1.601302,-24.602513],[-4.017574,8.960934,18.875718],[-3.898448,8.143624,18.129684],[19.358229,4.788369,-0.560151],[19.366576,4.308892,-0.433279],[19.015002,3.400517,-0.704324],[4.070546,2.751076,-26.695279],[3.191085,1.670018,-26.143004],[3.536682,2.916352,-26.726863],[0.506579,3.280289,-27.452333],[0.742562,2.093858,-26.943927],[-16.379173,-11.588470,0.011777],[-15.762019,-12.968768,2.257488],[-17.097533,-9.635738,1.279199],[-5.226126,27.881612,-24.425529],[-4.150424,27.419633,-24.576480],[-4.256412,26.813664,-25.283530],[14.566084,-21.990650,-1.969808],[15.204917,-19.816474,-5.076708],[14.843284,-19.399715,-1.389322],[-2.751185,4.612717,-27.593522],[-2.569223,5.980454,-27.389434],[-2.134139,3.868973,-26.911759],[-8.645593,-16.535796,-15.290351],[-8.128950,-16.560190,-15.737174],[-7.952755,-16.925321,-15.464816],[17.188720,2.283433,10.408498],[17.317731,3.035481,8.719956],[17.135319,4.213666,10.703565],[-7.734595,-10.326354,18.071194],[-8.316032,-9.337718,18.326711],[-8.180335,-11.069568,17.950793],[0.528448,1.106282,27.183209],[1.059547,-1.565559,28.259179],[1.020766,0.809010,27.033420],[-15.991775,27.255078,-19.105233],[-16.405849,26.469838,-19.973508],[-16.864305,27.124646,-18.129106],[-3.665588,38.566540,-6.263489],[-4.159412,38.726102,-7.458139],[-4.084478,38.163266,-5.812725],[-12.898771,-27.722947,1.314726],[-12.822521,-29.952770,1.675090],[-11.559693,-28.985270,3.398255],[4.529091,32.860135,14.123700],[5.371471,33.363950,13.292483],[4.582009,33.333600,13.471214],[14.923056,-13.264861,-11.996395],[14.969063,-13.293723,-12.599339],[14.668672,-12.723256,-12.599010],[1.278332,-12.371158,21.615628],[0.573518,-12.936321,21.888734],[2.577217,-13.177472,21.365083],[-6.947026,38.079777,-8.867587],[15.146494,33.208188,-4.499969],[14.794622,32.983884,-2.667736],[-4.649955,1.202260,-25.449515],[-4.178829,-0.710567,-24.697763],[-5.576380,0.630131,-25.428294],[-1.825629,23.308850,-26.898120],[-1.292851,23.388936,-26.469264],[-1.383733,22.827882,-26.881469],[22.425879,15.266473,-5.728929],[22.369740,16.677239,-5.157091],[21.916686,15.614190,-4.941994],[0.518553,-17.405385,-19.035729],[0.898586,-18.081083,-18.625680],[0.367996,-17.919986,-18.971587],[12.936751,16.967019,-26.409123],[13.449199,18.573048,-25.900012],[13.537896,17.090085,-26.476903],[18.280476,-5.828628,-0.856715],[17.975137,-5.710178,-1.014515],[17.913533,-6.293823,-1.173744],[-2.187825,-6.398725,-22.054793],[-2.756835,-6.608560,-22.078197],[-2.566287,-5.545646,-22.550942],[16.516015,-9.005002,-12.151389],[16.221959,-9.645034,-11.864385],[15.801676,-9.705571,-12.249163],[11.569440,22.250539,-25.653476],[13.076617,22.020833,-24.927457],[12.061379,20.683953,-25.778619],[12.112768,-34.100230,3.387495],[9.627715,-34.792108,5.536241],[9.589495,-36.293840,6.393804],[17.748465,-8.560014,-8.099607],[18.233544,-8.151397,-8.492601],[18.024741,-7.423658,-8.213188],[-12.095913,34.054639,0.156237],[-12.439266,33.294369,3.625936],[-11.400501,34.142110,1.230557],[4.755714,0.081578,-25.217788],[3.908234,0.420388,-25.562654],[4.393273,1.500222,-26.050965],[17.968657,-8.664941,-7.393427],[-0.024775,6.453812,-27.605544],[-0.282123,5.319615,-27.673846],[13.227033,-30.280928,1.270041],[14.084907,-29.976227,0.293278],[13.594130,-28.370780,0.163079],[1.915757,7.163678,20.854001],[2.382936,5.299424,21.754748],[2.433956,6.511334,19.904063],[13.793131,30.756810,-17.866775],[13.007740,31.465123,-17.865542],[13.692488,31.791737,-16.442266],[18.622584,24.713540,2.935440],[19.089347,25.331101,1.253293],[18.371627,26.984391,1.888301],[18.486483,-4.475604,-3.488769],[19.010680,-4.743463,-3.816630],[-6.867964,-9.431783,19.169049],[-6.865302,-9.099227,19.315766],[-7.543432,-9.334487,18.343441],[20.057811,-0.598453,-9.330990],[19.271477,-2.729480,-9.183801],[19.327174,-1.625003,-9.744371],[-11.154083,13.285813,20.605798],[-9.482867,13.702439,21.263223],[-10.265847,13.900403,21.083638],[-15.705642,-6.584901,-14.170911],[-15.308465,-7.426975,-14.299382],[-15.378084,-7.339021,-13.680255],[13.415974,33.346242,-14.116979],[12.630378,34.310910,-12.975290],[13.540579,33.156514,-13.458325],[-21.156804,5.623578,-7.524087],[-22.340293,7.843632,-7.427736],[-21.135936,6.507436,-6.873666],[22.068152,16.018079,-3.536929],[22.163857,14.118054,-3.714628],[22.454575,14.900399,-4.656953],[-0.960677,-28.608486,11.787302],[-1.110741,-30.222290,11.035729],[-0.016295,-30.431093,11.081084],[-16.746026,30.946172,-8.073478],[-17.379510,30.440739,-7.881375],[-16.499522,31.379956,-6.490178],[9.248643,-14.399282,-16.435283],[8.783484,-15.371665,-16.451789],[8.348209,-15.093496,-16.799203],[-18.818801,-1.332252,-12.790643],[-19.549489,1.482323,-13.740638],[-6.094292,4.551743,19.013751],[-6.059287,4.282021,19.263041],[-4.526399,5.769829,18.402977],[-18.148574,29.133244,-12.470043],[-18.575122,28.376416,-11.511494],[-17.520274,30.146985,-11.374709],[16.261067,-12.125009,-1.771461],[16.125745,-11.794204,-1.155488],[15.884545,-12.564220,-0.249178],[-9.723929,21.833417,-26.094764],[-9.200613,20.861630,-26.432628],[-9.990072,20.829625,-26.440919],[21.737731,22.912289,-6.839702],[22.116988,23.815388,-5.096709],[22.240956,21.358128,-5.406015],[-9.741167,-5.552366,-19.292037],[-9.779646,-6.488330,-19.161555],[-10.457189,-6.348249,-18.299579],[16.971917,-10.184463,-6.512949],[17.222140,-9.977031,-7.381641],[17.291384,-9.950298,-7.111703],[3.218715,-4.017898,22.422393],[3.520128,-4.122737,22.064509],[4.069392,-4.043601,21.642508],[-23.207502,8.373624,-8.235523],[5.771877,-15.647437,-17.583856],[6.516092,-14.825235,-17.664872],[-8.812556,-11.090539,-17.749238],[-8.386942,-13.008079,-17.267528],[-8.563057,-11.902927,-16.880160],[14.330072,-17.234378,6.327651],[14.382809,-17.009219,8.100903],[13.753980,-17.595742,9.165394],[9.266056,-11.543393,-17.931825],[8.396729,-10.863076,-18.401557],[9.040076,-10.197418,-18.763253],[-12.769136,-2.036514,-19.484225],[-11.908132,-2.410701,-19.511760],[-12.111483,-3.106616,-18.626164],[4.187334,-31.258520,8.467986],[5.505733,-30.063846,8.186965],[4.323591,-30.412463,8.615262],[11.791996,31.125203,-19.346881],[11.816982,29.089123,-21.403584],[10.937275,28.676289,-22.719508],[1.935032,32.213208,-21.314771],[2.405805,32.215741,-21.293880],[2.158981,31.847943,-21.862367],[18.051886,-8.740470,-8.842136],[17.907292,-9.290176,-8.565062],[-18.778003,22.275113,-19.697791],[-18.152597,23.820340,-19.026618],[-17.862546,24.076867,-19.399964],[7.823195,-9.147947,18.437209],[-19.292794,19.306851,-19.579242],[-19.360440,19.884507,-18.390286],[-0.914043,-19.113143,21.763282],[-1.674656,-18.124717,21.478848],[-2.555721,-19.567289,21.388103],[13.140198,-10.706844,-15.394355],[12.665267,-11.688154,-14.799750],[12.318100,-11.206559,-15.205874],[21.038899,12.111699,-0.871335],[19.995099,11.843419,0.225409],[-2.010411,5.201325,-27.756818],[-1.441212,3.739854,-27.344956],[11.897077,6.344426,-24.796742],[-4.186833,8.028687,-27.596171],[-3.802810,8.868596,-27.757152],[-3.739802,6.978047,-27.673398],[3.629200,22.067212,-27.088159],[3.652121,23.783219,-26.799020],[8.591049,-14.165769,17.890060],[8.272997,-13.233770,17.948711],[7.346614,-12.379409,18.109735],[22.414895,16.342000,-12.016033],[22.519482,15.129002,-11.489017],[22.216864,14.958180,-13.158966],[-4.869287,-7.179420,21.018197],[-5.270883,-7.506507,20.821401],[-14.579334,-1.952289,-17.857945],[-14.304393,-1.915736,-18.554399],[7.154983,-16.351196,18.640357],[6.422482,-16.480298,18.993854],[7.221862,-17.857391,18.625365],[9.847941,-15.348420,-15.942927],[9.365023,-16.270856,-15.689210],[8.829802,-15.970844,-16.021915],[4.252868,-16.239055,-18.314536],[5.307975,-16.483190,-17.741473],[4.782066,-17.547881,-17.416791],[16.264849,-12.620668,-3.769956],[16.525529,-11.695152,-3.318111],[22.443562,20.010075,-9.448724],[22.744027,19.141511,-9.062922],[22.018687,19.457566,-10.221376],[18.389087,-4.876802,-1.222675],[18.520896,-3.915454,-1.832444],[17.820641,-3.796600,-1.328187],[-0.471723,24.324471,-26.350837],[0.219338,24.014245,-26.562644],[20.495940,15.387189,-15.802691],[20.458203,16.559064,-14.983714],[21.135512,15.568146,-15.149819],[-22.538400,9.577229,-4.905471],[-22.628053,9.395947,-4.142057],[-21.737373,9.205388,-3.785189],[-0.184013,27.816380,-24.791902],[-0.164416,29.328618,-23.884345],[0.459046,28.592519,-24.739469],[-16.177575,-12.409156,-8.834567],[-16.241813,-12.798940,-8.838402],[-16.589347,-12.586656,-8.510167],[-26.390058,-37.202455,-6.038710],[-27.385797,-38.407440,-5.548411],[17.526723,-7.795347,4.049701],[17.468577,-5.676585,6.697257],[17.307099,-7.918798,5.787714],[3.638355,7.204259,17.675454],[3.533791,7.244664,17.836813],[12.382843,-20.334584,8.101058],[11.573597,-21.535775,7.198118],[-5.719996,-17.513879,-17.140618],[-5.264156,-17.188638,-17.726205],[-5.119355,-17.636115,-17.336135],[-0.900919,9.772416,-28.169000],[-0.232125,10.015290,-27.952432],[1.866192,-17.747567,21.386329],[1.089074,-17.162626,21.410428],[0.917083,-19.282882,21.779914],[21.670989,6.588200,-2.880811],[22.033286,7.247987,-3.238365],[22.744777,8.140984,-3.727381],[-5.348036,36.767705,-12.623025],[-4.851161,36.479993,-13.947646],[-5.305262,36.454427,-14.098813],[-22.183608,8.899396,-3.280311],[-21.032184,8.582501,-3.055428],[1.733155,36.278935,10.049927],[1.303973,36.541043,9.125418],[1.305374,35.830388,10.497488],[21.717339,0.086018,-6.899813],[21.132962,-1.461944,-7.244297],[21.209203,-0.892398,-7.490176],[-16.452825,-4.774925,-13.769067],[-9.660156,-24.012657,-15.291827],[-7.173766,-21.615151,-16.204459],[-5.916343,-23.727412,-17.198833],[-16.407342,-11.544149,-10.230563],[-16.334464,-11.258004,-9.690349],[-16.737933,-10.715507,-10.170600],[8.688076,8.303128,17.854540],[9.522445,8.111958,17.615483],[9.442673,8.242028,18.746413],[23.969603,7.731580,-8.519455],[23.722895,6.972165,-8.955634],[23.438691,8.598843,-8.317104],[-18.599471,1.420911,0.452667],[-18.932586,5.825776,-17.191190],[-18.124263,4.261033,-17.630441],[-18.614103,4.096528,-16.924140],[-3.153802,21.601102,-27.109220],[-2.457258,22.138104,-27.083524],[-2.613226,21.190209,-27.057122],[-5.649381,-9.172431,-19.842793],[-6.337986,-9.696935,-19.906184],[-6.073880,-8.524766,-19.742080],[-6.142334,8.577477,19.029141],[-10.428310,-22.108062,9.370065],[-18.768167,27.839108,-4.394293],[-19.252547,25.600613,-3.809223],[-19.025981,24.897076,-2.160141],[-3.849199,29.380360,-23.525327],[-3.585701,30.720952,-22.717698],[-2.984011,29.487378,-23.629394],[1.997228,-21.371862,20.837045],[0.923302,-21.922825,20.470220],[3.852030,33.152722,14.525044],[3.336118,-11.721324,20.719922],[4.228132,-12.046512,20.414382],[5.763915,-10.984718,19.220576],[-9.548726,-17.813077,16.864856],[-10.289384,-17.417167,15.748964],[-9.548931,-18.701141,16.081920],[-19.928230,-0.523105,-9.012328],[-19.750991,-2.101100,-8.397420],[-19.965268,2.126557,-8.414212],[-11.814509,20.803326,18.229860],[-12.676328,19.686528,17.671887],[-11.294725,18.708188,19.378461],[-14.753651,25.629456,8.991136],[-14.356121,26.313950,9.555845],[-14.485727,26.618306,9.237420],[21.489169,21.454735,-11.704196],[21.749631,20.768613,-11.433430],[21.125308,20.560162,-12.224910],[4.721010,-6.402639,21.133582],[6.041892,-5.842878,20.423249],[4.744365,-5.425967,21.154317],[-23.213819,9.524697,-5.104519],[-20.840892,11.876973,-3.914069],[-20.934262,13.207082,-4.913600],[-21.000207,12.255242,-5.257471],[4.167501,-17.532851,-17.729930],[3.828154,-17.243688,-18.269385],[-12.968833,-23.827777,3.337348],[-11.604613,-26.346518,5.057940],[-12.121851,-24.113049,4.497080],[-22.946513,9.589097,-6.410790],[9.909780,-18.422374,-14.730968],[11.669987,-16.881439,-13.870727],[11.648316,-17.928481,-13.767747],[12.542330,4.932343,17.600104],[13.192767,4.731297,17.372725],[12.890638,5.164628,16.947173],[22.624108,6.258107,-6.691813],[22.865311,6.998200,-7.532336],[22.618264,7.308770,-6.437649],[-20.781461,15.157155,-6.074289],[-20.830461,14.922612,-4.979456],[-20.299205,16.417630,-3.685428],[-4.415546,19.409180,-27.315387],[-4.271184,18.797524,-27.690644],[-4.877040,7.337613,17.262384],[-4.969877,7.241406,17.341822],[-23.681977,9.422806,-6.295248],[-16.212211,11.017850,-22.998292],[-15.842980,11.696645,-23.533448],[-15.560842,10.390683,-24.164647],[0.868424,-14.300605,-19.352742],[0.716037,-14.992648,-19.128732],[0.685799,-13.875201,-19.501302],[-11.997895,7.138993,17.775579],[-11.938366,8.410233,18.378683],[-12.798922,7.080235,17.404686],[-19.573493,4.751580,-0.603147],[-19.432628,5.181100,-0.825333],[-18.780557,3.096650,-0.730339],[5.226152,4.363354,19.433055],[5.242305,5.206738,18.711175],[4.261598,5.130936,19.304164],[-15.045071,25.754651,8.634274],[-17.793100,-2.371417,-13.776832],[-17.425433,-2.912517,-14.169620],[6.971473,25.024571,-25.059024],[6.891702,24.565907,-25.485982],[6.687053,25.055840,-25.921668],[6.417541,-16.694991,-16.844525],[7.009127,-15.751531,-17.379804],[6.814291,-16.913400,-16.842587],[2.044552,-6.779937,22.514729],[3.093019,-7.494756,22.166024],[2.563284,-6.117162,22.232497],[-9.625266,14.214402,-27.007064],[-12.060882,2.975583,-23.236297],[-13.353915,4.670911,-23.216495],[-12.237974,4.077649,-24.161061],[11.991230,4.217396,18.381821],[11.622367,4.694367,18.449506],[-16.994468,-10.895746,-8.424659],[-16.484119,-11.124778,-8.841856],[-3.097435,8.317559,-27.901017],[-3.365456,8.904553,-28.177091],[-17.432027,28.736523,-13.694896],[-16.490735,30.336880,-13.191384],[20.681010,-1.572250,-4.631848],[19.895461,-2.085162,-3.454546],[20.464888,-2.327808,-4.951891],[11.709895,13.786286,-26.804639],[12.831939,13.997353,-26.654897],[12.706041,12.775670,-26.400964],[1.756224,38.932408,-7.164137],[1.564407,39.117680,-7.876407],[1.170979,39.289609,-7.315732],[20.373742,15.927911,-0.403540],[20.217568,15.018903,0.185890],[-9.098938,33.368924,-18.348784],[-9.700917,33.284665,-17.395698],[-9.249564,33.922314,-17.261422],[1.220801,7.555943,22.693744],[0.564852,9.291707,22.858336],[0.561458,7.715649,23.196757],[8.994133,6.049218,-26.342027],[7.630781,4.124421,-26.029590],[7.741382,6.059384,-26.339608],[6.541364,-15.561971,-17.146634],[5.030149,14.668446,-28.198770],[4.695744,13.545293,-27.908305],[0.642093,35.960591,10.188894],[-3.312878,5.524655,-27.382106],[-4.553340,11.089516,21.052617],[-4.383626,10.173634,20.288833],[-3.233992,9.543423,20.507812],[-2.704458,27.816449,-24.606647],[-3.054541,28.687588,-24.393437],[-2.476607,28.447942,-24.171367],[-22.801582,8.978715,-3.908477],[-23.537667,9.085107,-5.444008],[-17.619981,3.906777,5.541268],[-18.451524,7.931683,5.197307],[-18.631122,6.915208,4.440301],[12.284134,2.867036,18.959056],[13.118301,-0.349441,18.223836],[13.030548,2.263703,18.373216],[13.399297,29.460835,8.954636],[13.822377,28.777508,9.404191],[14.339091,28.892430,8.266007],[4.912009,3.580155,20.249076],[3.704276,4.351506,20.553428],[4.168898,2.295754,21.593158],[-19.559354,23.942162,-15.294574],[-19.061794,24.846349,-14.364362],[-19.073051,24.544533,-15.728646],[2.658979,24.206074,-26.603025],[3.012589,23.457638,-26.751599],[-10.487197,21.684663,-26.004703],[-4.603678,9.257043,-27.942016],[-14.722071,-16.401370,-10.733150],[-13.895742,-17.424636,-11.923763],[-13.948256,-20.337934,-11.701559],[-23.937658,9.055588,-6.718923],[19.615485,24.015488,-17.057252],[20.065820,24.821927,-15.915488],[19.946337,22.274384,-17.095017],[0.006462,21.038869,22.376166],[3.650830,21.557824,21.863349],[1.795468,21.998704,21.985585],[23.706807,4.422440,-8.407176],[22.912820,3.735505,-8.616631],[8.297418,4.884366,19.363015],[9.832947,4.753995,19.218314],[9.902056,4.996403,19.036504],[10.790534,26.133702,15.356322],[11.166819,24.614724,16.591267],[-15.008494,13.521268,-24.957107],[-14.283508,12.558522,-25.127149],[-15.538275,14.612561,-24.427545],[12.916341,29.341153,10.241744],[12.970775,28.927792,10.303382],[22.145806,1.605115,-6.325376],[22.286961,2.225228,-6.650186],[22.474461,4.634194,-5.702025],[-3.697268,38.560940,-5.174992],[-4.128161,38.080296,-4.266939],[13.072259,12.060349,19.045093],[13.549641,11.317834,18.498576],[14.024016,11.560906,18.349696],[13.105959,24.586007,12.974775],[12.692858,25.299374,13.093691],[-6.464388,-3.801769,20.675271],[-5.873382,-4.585367,20.678069],[-4.823284,-2.541843,21.295121],[1.465932,9.795434,22.391129],[1.476933,8.501431,22.029511],[1.898956,8.966695,21.606906],[-22.357370,8.109914,-3.196603],[0.942952,37.833012,-12.642123],[0.468441,38.431546,-11.867227],[0.900910,38.740819,-10.326770],[18.967675,14.075444,3.165146],[18.817448,13.795514,3.839336],[18.867533,12.371358,3.972619],[0.498542,24.118237,21.686856],[-0.206476,25.548760,20.896564],[-0.850310,25.446954,20.899329],[13.782702,-25.989501,-11.632121],[14.371744,-27.794476,-10.858585],[13.504330,-27.367866,-12.671547],[-12.309678,-13.351053,-14.518189],[-12.701253,-13.944515,-14.236913],[-12.904660,-13.025096,-14.450324],[7.984740,-8.908319,-19.226754],[7.540840,-9.922418,-19.420205],[7.251849,-7.697410,-20.000726],[-19.674442,26.686311,-10.671328],[-19.287479,26.776414,-9.767781],[-19.483096,27.688748,-10.307158],[7.325849,-3.547450,21.017442],[8.169720,-2.247489,21.157876],[5.422107,-1.954932,21.449738],[18.772710,-0.906360,-3.504055],[19.306468,-0.523883,-4.325326],[12.601100,34.521847,-12.167333],[11.736270,35.555363,-11.108782],[12.666833,34.879742,-11.374821],[-12.376775,5.022977,17.756149],[-12.134341,4.384297,18.196697],[-11.764327,4.770467,18.302222],[-8.804532,27.401566,-24.216250],[-9.418630,28.756749,-22.853623],[-8.916383,29.737736,-22.506101],[-1.755761,-7.749896,-21.332028],[-1.577888,-7.308151,-22.100225],[-1.392593,-8.509652,-21.307332],[-4.328728,-14.478261,-18.985581],[-4.237893,-16.647350,-18.284724],[-4.738082,-15.920959,-18.011226],[4.558610,25.014912,20.338593],[13.071804,-19.723602,4.870783],[11.659175,-21.558079,5.710643],[-7.353761,-8.484809,18.963557],[-7.495950,-8.771409,18.698140],[4.180868,-8.058732,21.616042],[3.248050,-8.317565,22.162139],[-0.141506,-3.804210,-23.774900],[0.282960,-3.387351,-24.582925],[0.085152,-4.407142,-23.399028],[4.377888,12.398175,21.704150],[5.035935,11.256081,20.958505],[11.881297,-3.759025,-19.547048],[10.867601,-3.869838,-19.948981],[11.443518,-2.159160,-20.808091],[4.371213,-10.804160,19.664519],[-8.613117,-18.145593,17.794438],[-8.371324,-19.132184,17.569659],[-7.611807,-19.184945,18.213182],[-22.801347,8.570840,-4.062063],[-22.247041,7.775529,-3.271910],[-12.758920,-21.387024,-13.062863],[-12.317332,-17.665925,-13.333268],[0.622878,6.736832,23.753188],[0.901641,4.714192,25.152402],[1.437471,4.987733,24.411445],[5.352774,31.247090,-21.953250],[4.665731,30.818738,-22.318709],[4.940811,31.386945,-21.235255],[5.375139,36.515675,-0.713288],[6.236611,36.185689,0.365526],[6.425123,36.753560,-1.100210],[0.141955,38.061703,2.789923],[-0.745855,38.096646,3.024011],[-0.730665,37.968144,3.848262],[-6.898497,-9.139657,17.135962],[-6.351208,-9.140647,17.184026],[-6.881087,-9.264999,17.672926],[18.224242,12.775128,5.372279],[18.104476,13.434869,6.234954],[18.497769,11.960355,5.877939],[-11.356266,7.054047,18.141299],[-11.903479,6.627156,17.570505],[-11.508649,6.785527,17.647460],[-5.860690,11.243676,20.643662],[-6.631130,12.898602,21.077846],[-7.954753,11.820790,20.327493],[-2.223099,15.065034,-27.801513],[-3.371367,15.983601,-28.206044],[-2.393934,16.147618,-27.503221],[-5.547551,-7.990609,20.672070],[-6.019303,-7.753856,20.264634],[-6.946528,-8.009263,19.508925],[5.025367,36.183972,7.196926],[5.595359,35.569981,7.871979],[5.782002,35.698262,6.837355],[2.170759,30.212086,-23.133143],[2.251527,29.533948,-23.955745],[1.506356,30.330769,-23.116715],[-16.594156,-12.208514,-8.572468],[-19.549278,-3.632564,-8.721949],[-19.232089,-5.302482,-8.744116],[-19.144479,-5.319816,-8.239047],[0.476993,-12.301965,-19.791192],[0.308033,-14.620166,-19.575048],[23.707608,7.343457,-7.551168],[-13.004798,-0.280757,-20.485295],[-12.703152,-0.001903,-20.862779],[-14.276891,33.175709,-1.459988],[-12.880042,32.829716,4.879215],[-1.052778,20.810685,-27.433267],[-0.578945,20.107243,-27.309972],[-1.429849,20.071526,-27.602025],[21.469048,12.819695,-3.281302],[22.095273,12.842049,-4.343493],[7.078921,-9.316058,17.770629],[7.335873,-9.452527,17.981896],[6.319569,-9.609716,18.226984],[8.157973,24.041638,-25.450767],[8.705512,24.599259,-25.686654],[8.952807,24.084286,-25.395795],[14.822640,6.476811,15.726328],[15.294618,7.341294,15.102200],[-12.804237,5.625851,16.869990],[-12.051754,5.607953,17.664893],[-9.176263,36.396153,-11.010108],[-9.848115,36.542905,-11.084202],[-9.568982,36.854336,-9.277418],[22.322028,7.008607,-7.893757],[21.049016,5.918004,-6.892133],[21.979972,8.048306,-6.383868],[-11.765066,31.629231,-17.803473],[-11.751798,30.446606,-19.377959],[-12.184357,31.079823,-18.570880],[-17.306968,-8.250001,-11.731940],[-16.616073,-7.234731,-12.834946],[-16.346599,-8.285276,-12.526864],[8.081294,32.873685,11.700204],[7.434270,32.485188,12.274416],[8.613537,31.998982,12.566067],[-10.697800,2.973595,19.533206],[-11.957173,3.281262,18.977721],[6.389543,25.509042,-25.115233],[5.749019,25.352631,-25.842446],[6.167784,25.868169,-24.953111],[11.376169,4.095162,18.862441],[11.805528,3.601323,18.964673],[-16.828632,22.034962,7.302069],[-16.792403,20.357701,7.232731],[-16.212619,21.469205,8.169240],[8.660537,-12.443691,17.937364],[0.256504,-18.428062,-18.629746],[0.807736,-18.893262,-18.418204],[-0.833398,-18.774017,-18.606099],[6.049048,21.107514,-26.941167],[5.156769,20.859185,-27.382667],[4.767968,21.538022,-26.992389],[-11.864017,-24.774798,-13.923863],[-11.071502,-21.992487,-14.297795],[-5.999481,-6.670900,-21.053212],[-5.039867,-8.256686,-21.026208],[-5.615948,-8.698076,-20.351441],[-10.858632,13.490617,-26.973517],[-9.854916,12.519150,-26.606425],[-10.358749,12.087075,-26.654065],[-13.424893,34.652112,-7.355647],[-14.854329,33.643147,-6.922185],[-14.336145,34.043828,-5.879166],[-16.264718,-6.726056,-13.345992],[-15.869724,-6.458038,-13.679246],[-15.855024,-7.235027,-13.545848],[12.822166,13.620187,19.282136],[12.661778,14.174020,19.152055],[10.722642,14.866471,20.278440],[-12.305186,6.322087,16.989219],[-11.681585,6.582898,17.419603],[-4.975892,-6.603956,-21.407002],[-4.062994,-7.007581,-21.195334],[-4.464655,-8.228565,-21.062171],[20.000100,-2.581214,-3.933118],[19.650676,-2.602557,-2.827859],[20.065354,-3.019408,-3.760569],[3.343468,8.372914,-28.045684],[4.062619,8.650250,-27.875550],[3.653675,7.840123,-27.831021],[-10.971555,5.037827,-24.959470],[9.120538,-6.565236,-19.891023],[10.009858,-5.034545,-20.666881],[-3.030137,28.754399,18.871488],[-3.622265,28.506459,18.634482],[-3.032207,28.041333,19.164096],[-23.100892,8.866811,-4.829106],[11.770539,32.023007,9.408771],[12.442478,31.273350,9.070969],[0.531660,17.714280,-28.391858],[-0.025092,16.812039,-28.558497],[-0.498218,16.951249,-28.185817],[-14.454769,-3.020519,-17.771960],[-2.417356,-8.132329,-21.113467],[-2.457894,-7.360202,-21.961000],[-2.018342,-7.418481,-21.530713],[-2.051210,-29.450972,10.985256],[-3.224210,-27.195421,11.477446],[2.715967,-8.632262,-20.951661],[1.841257,-7.810674,-21.670093],[2.277406,-6.392579,-22.006259],[-14.753733,-19.128425,-10.354291],[-15.232876,-15.463317,-9.648899],[-8.033035,1.169118,-24.531934],[-6.835259,1.029294,-24.835563],[-7.444440,0.065377,-23.776471],[-7.832514,36.669118,-12.633148],[-21.625179,-1.601829,-7.349183],[-21.708244,-2.611606,-7.117668],[-21.418298,-2.414603,-6.650651],[-1.235151,-9.370218,-21.257539],[-1.721747,-9.948863,-21.013806],[13.669393,6.016652,16.496628],[13.366332,5.889386,16.441767],[13.919473,5.901734,16.290023],[14.362892,10.434289,-24.564147],[14.903010,10.204816,-24.179910],[13.795958,8.488568,-24.546931],[2.079258,-4.845342,22.849030],[3.227355,-4.599157,22.113967],[1.769436,-3.407493,23.509233],[-19.073400,-5.014426,-7.459396],[-4.284314,7.653245,17.863360],[-3.612545,7.595029,17.821431],[-4.428897,8.610017,18.427544],[13.325651,27.620023,11.423400],[12.764185,28.017705,11.854814],[12.324025,27.082162,12.696870],[-10.438072,32.073987,-19.148870],[-9.432175,32.371731,-19.431806],[-9.707864,31.211491,-20.662416],[19.759324,-4.631759,-2.587135],[19.375184,-5.967944,-1.361673],[20.183015,-5.562310,-2.830689],[6.332779,37.378789,-5.185414],[6.474020,37.395817,-3.839828],[6.880591,37.287823,-4.970089],[19.292577,2.889722,-3.422603],[19.644145,3.545724,-2.912808],[19.044610,2.377728,-3.561758],[12.549783,17.621640,18.474521],[13.171862,18.598241,17.564558],[-16.374492,-12.825851,-8.453591],[-16.371412,-12.402423,-8.060656],[-16.366071,-12.325618,-8.240724],[9.427332,25.235654,17.884485],[7.138152,-5.396203,20.151755],[7.375908,-6.411815,19.718009],[-21.038173,-1.055167,-7.409806],[-14.134627,13.286793,-25.254643],[-13.511113,13.614022,-25.698777],[-12.864491,12.199662,-26.406819],[20.405032,1.018788,-5.944129],[19.896863,1.957490,-5.294052],[19.555398,0.908753,-5.087113],[-0.051086,-21.907223,-18.148515],[-0.585541,-24.683897,-18.293786],[-1.530873,-21.525562,-18.181987],[-0.892954,26.066540,20.797307],[-8.020342,35.633687,2.884613],[-7.344710,35.694966,4.632402],[-7.391402,35.989896,3.370760],[20.424212,3.667771,-10.882926],[20.864705,3.770550,-10.394033],[-3.396423,20.759862,-27.345395],[-2.802888,20.086972,-27.588202],[-11.268377,10.848939,19.209285],[-10.589268,9.828141,19.357627],[-9.510514,10.610139,19.847289],[-14.771780,30.884968,-16.034734],[-15.712188,29.692471,-16.736119],[-15.754336,31.009503,-14.375308],[10.835086,28.768079,13.227835],[-2.997411,-11.124303,19.727797],[-2.276815,-11.407649,20.292954],[-1.982980,-11.488813,19.958173],[10.162234,28.964207,13.921693],[10.691198,28.193059,14.287661],[11.809761,6.074403,17.724163],[12.440829,5.936978,17.147325],[11.996688,6.366883,17.170914],[16.266766,0.511380,12.828006],[9.278650,12.722077,-27.296599],[10.309904,12.840283,-26.826497],[8.599665,11.202931,-27.028747],[19.429402,1.468449,-2.854247],[18.827386,0.642884,-2.805069],[18.939803,1.628850,-2.764409],[18.280469,-1.894996,-2.050961],[18.483212,-0.132777,-1.819891],[18.002166,-2.062370,-1.634317],[-14.585448,-12.015138,-12.258483],[-14.139527,-11.636134,-12.631436],[-13.938174,-13.020208,-12.699686],[22.136451,1.974580,-8.349246],[21.710501,-1.398124,-7.475879],[22.062985,0.400491,-7.956193],[-16.290761,12.958653,-22.864326],[-17.166415,13.096947,-21.968724],[-16.735479,14.203480,-21.883740],[3.582649,38.104665,-5.022529],[3.855323,38.033505,-3.153117],[4.288437,37.653668,-3.781427],[-19.708753,5.581589,-0.650548],[-19.555871,4.935990,-0.262339],[-19.656282,4.454953,0.065000],[-16.359002,-12.171562,-7.711020],[6.607134,3.860139,-25.913457],[5.771074,4.991750,-26.443379],[4.531058,24.148076,-26.649282],[4.279254,23.584611,-26.550071],[4.328230,25.028020,-26.376029],[18.743520,8.626347,-18.778329],[18.927975,9.309689,-19.588140],[19.405385,9.670048,-19.238006],[20.033507,-6.227542,-2.378987],[20.652409,-5.481826,-5.058188],[0.233984,-21.343801,21.308887],[1.206053,-20.894957,21.420144],[13.456389,33.602460,-0.735832],[13.508333,33.751912,-2.431064],[12.818314,34.222584,-0.872696],[17.215709,-10.717519,-7.902780],[16.778846,-11.135030,-7.346391],[17.036864,-11.254131,-7.794792],[13.097338,34.271435,-5.950656],[12.842777,35.053166,-5.937077],[12.564852,34.496281,-5.289063],[-1.685137,-5.748563,-22.676993],[-1.335306,-6.165801,-22.223088],[-15.039075,5.404881,-22.479766],[-15.600309,5.082844,-22.066167],[-15.801987,6.505139,-22.153615],[-8.016249,-4.203243,-21.279929],[-7.234045,-3.405261,-22.581054],[-7.270105,-4.349994,-21.210830],[11.274210,35.502866,-3.083361],[12.063574,35.030682,-3.254849],[11.833514,35.377385,-3.991316],[8.455882,-30.170748,7.158496],[6.678808,-32.352149,7.626608],[8.081808,-31.923561,6.657739],[10.529748,16.436974,-26.978002],[10.101705,15.377053,-26.942073],[9.014183,15.070561,-27.109237],[8.793403,36.690900,-11.445549],[8.623051,36.017216,-12.662924],[10.359568,-13.076686,-16.197949],[9.975160,-14.169008,-16.219451],[9.837593,-13.781347,-16.868215],[-5.299975,25.524346,-26.036096],[-5.662425,25.291306,-25.793201],[-6.408793,26.442136,-25.103498],[-1.946237,-29.027883,-19.236913],[-3.594344,-27.913908,-18.830495],[-1.775784,-26.418427,-18.558391],[5.967896,-26.733143,-17.845048],[5.835514,-28.462962,-18.460818],[22.305014,8.197846,-4.653460],[22.996894,8.595006,-4.489301],[8.531958,27.139024,-23.864022],[9.206638,26.277829,-24.388450],[8.496918,25.902756,-24.439578],[11.189735,34.942502,-0.552911],[10.249584,35.104298,0.651674],[11.125958,34.714665,0.036548],[17.316588,25.024953,6.557973],[16.860486,26.472661,6.288337],[16.524289,23.696431,8.076540],[-20.344371,13.747784,-3.462227],[-20.476527,14.217923,-3.073497],[-20.657176,14.009671,-4.087859],[17.496327,24.251973,4.583192],[17.206456,23.829903,6.244633],[18.042769,23.752152,4.368292],[5.506025,-23.782661,14.186806],[0.497563,-0.200801,-26.091390],[0.093509,-0.541614,-25.663520],[-2.048179,0.321202,25.681701],[-2.545593,28.368329,19.395390],[-2.371559,27.527371,19.557847],[-1.868753,27.709454,19.726951],[-20.746433,13.503781,-2.536982],[4.270368,6.633092,-27.346906],[4.241164,5.572602,-27.230556],[3.236989,5.667744,-27.415023],[-12.430636,5.804829,17.259145],[-12.671114,5.876610,16.822201],[-3.282761,22.152997,21.657525],[-5.504594,23.065713,20.897582],[-2.997590,21.388859,21.993705],[13.716217,-12.399934,-13.014385],[14.642442,25.491223,9.620629],[14.083454,27.258801,10.355980],[13.707226,26.279679,11.001216],[-19.381274,5.473420,-1.764937],[-19.460946,5.645589,-1.344981],[-19.616914,6.554841,-2.411105],[-6.734622,-10.713674,-18.996070],[-7.183631,-11.399085,-18.380115],[-6.783659,-9.940734,-19.023084],[6.065599,-28.923950,8.151296],[2.782486,-11.394006,20.442058],[2.469557,-11.336324,20.130563],[1.752458,-11.734725,20.906487],[-16.142534,25.408849,5.909081],[-16.171811,27.077805,3.607491],[-16.599212,24.396336,5.282674],[-15.541097,-13.394147,-10.913881],[-15.119918,-13.234714,-11.058073],[-14.864652,-13.645900,-11.240880],[-18.161742,2.553513,-16.799363],[-18.899242,2.079129,-16.002921],[-19.008521,3.545506,-16.526284],[-7.249311,30.335118,-22.269387],[16.448088,3.514626,-18.548957],[16.081271,2.441979,-19.034183],[16.553052,3.713616,-19.368730],[5.955137,35.159901,8.412243],[5.889795,35.064870,9.455502],[6.554004,34.559834,9.384318],[-17.398071,-9.374284,-8.801532],[-17.480966,-9.103357,-8.142819],[-17.787816,-9.047479,-8.444484],[-12.432859,8.138337,-25.044009],[-12.701652,7.440251,-24.458600],[14.585132,-8.473073,-13.868911],[14.345447,-9.401729,-13.745738],[14.167940,-8.732330,-14.621860],[-11.368973,2.487733,-24.023627],[-16.286710,-30.214313,-2.733800],[-14.718743,-28.195009,-1.816742],[-15.801708,-29.016736,-3.424953],[-20.437661,19.131287,-8.023376],[-21.262017,17.683892,-8.961863],[-20.462484,18.700036,-6.890387],[-15.197068,25.293294,7.780691],[-15.564728,24.558202,8.085615],[-15.136861,24.563470,8.917132],[5.444273,16.650902,22.054255],[8.094253,17.214402,21.320464],[3.686971,16.557549,22.561925],[4.715605,29.612302,17.569576],[4.161001,29.786137,17.340137],[4.343788,28.827237,18.208707],[-0.140419,31.488278,-22.465470],[-0.042455,32.693722,-20.748860],[0.281028,32.022000,-21.621659],[-19.543069,5.728928,-16.611325],[-19.844629,7.116460,-16.953717],[-13.991919,5.348267,16.171639],[-15.118195,4.924679,15.226295],[-14.028846,5.194970,16.495524],[10.663960,32.034306,-18.142053],[11.091847,31.301190,-18.637729],[10.166806,32.378041,-18.567569],[-9.707987,34.546162,3.306985],[-8.838149,35.342145,3.167274],[-10.467712,34.378041,2.772557],[-1.622064,28.269711,19.990890],[3.413270,26.442582,19.677155],[2.110089,25.190652,20.811021],[-5.775425,-21.535902,16.909739],[-1.922394,-36.826456,-21.703073],[-2.610155,-38.748667,-22.048640],[-3.785942,-37.011074,-21.733892],[-0.598635,0.557217,-26.387187],[-0.647614,2.335671,-26.595956],[-0.201948,0.577714,-26.126054],[-4.368064,-3.828079,21.425855],[-3.700198,-4.768970,21.791083],[-18.728175,-5.206998,-6.630118],[-17.728955,-8.123828,-7.061402],[20.489972,15.101582,-16.899756],[20.693118,16.416932,-16.071778],[19.181613,21.596680,-19.103831],[-19.953420,7.015607,-4.192277],[-20.627847,9.230099,-6.529208],[2.355898,-7.908222,22.476890],[2.941072,-8.810891,22.183131],[-12.070719,8.449349,-25.670495],[-11.574940,7.079720,-25.192580],[2.623871,33.106435,-20.493554],[2.015485,32.769292,-20.614526],[9.298068,27.019521,-24.018601],[10.040343,27.107243,-23.688487],[12.769806,32.274335,5.990176],[13.153447,32.626614,4.589895],[12.591883,32.819463,4.786194],[10.981191,8.545426,19.048244],[12.087287,7.544072,17.924655],[11.327851,8.800343,18.799294],[13.164158,19.117932,-25.972337],[12.396455,17.353402,-26.592217],[12.274345,18.640630,-26.027480],[10.324339,35.794835,-4.340624],[9.715545,35.791257,-3.570129],[10.371858,35.446637,-3.236768],[-2.706726,37.906125,-12.476967],[-3.115725,37.806721,-11.806040],[-2.562576,38.483601,-10.447349],[0.643869,34.668599,-18.187694],[0.686953,33.719792,-19.727525],[0.343506,34.448125,-18.976781],[3.308857,-21.493615,20.046662],[-9.025857,-15.258474,17.707619],[-9.437122,-16.259898,17.439682],[-8.324679,-16.079631,18.118496],[10.069555,14.055257,-27.152173],[11.156673,14.551930,-26.626168],[16.014737,22.260205,8.333358],[15.841518,22.797944,8.489848],[15.870435,21.857159,8.676737],[14.255113,-10.916837,-13.587510],[13.767715,-11.878558,-13.695323],[21.173203,8.043603,-7.986523],[22.161078,9.220128,-9.024532],[22.634745,10.362225,-7.997030],[-16.400296,-11.993741,-3.495413],[-16.752729,-10.501649,-5.714871],[-16.066682,-12.709270,-5.505288],[-5.147614,16.137250,-28.187701],[-19.756297,5.989953,-5.688361],[-19.503923,5.998158,-4.847755],[17.413430,28.644070,-15.341184],[18.010529,28.419141,-14.890340],[18.678775,26.756947,-16.205634],[-4.739783,7.274533,17.728536],[8.006394,35.391415,2.860929],[8.049840,35.609425,1.754775],[7.566777,35.611378,2.132234],[0.037361,-16.330051,-19.002767],[-0.058993,-15.199027,-18.967853],[0.454118,-16.134589,-19.299888],[-0.701271,-22.197840,19.990567],[0.383005,-22.450792,19.443202],[-0.165371,-21.916477,20.665172],[-19.130828,26.126179,-15.748303],[5.084977,-1.636428,-24.264245],[4.863695,-2.960773,-23.365718],[-4.594464,-7.988921,21.383874],[5.029065,7.810170,-27.659593],[17.981780,1.672837,4.176698],[17.974822,2.072106,3.600046],[17.991883,3.684804,4.477527],[14.268978,-19.765004,-11.300797],[13.061367,-17.515941,-12.747411],[14.335404,-16.896814,-11.383204],[-17.451566,-1.980438,7.636225],[-17.842098,-0.422164,5.315963],[-5.478799,9.306683,18.860332],[-6.816646,9.246663,19.184312],[3.465583,24.783498,-26.251811],[4.214329,25.427380,-25.908677],[3.949843,24.934388,-25.946948],[-0.034501,-30.888306,-19.548957],[1.949082,-35.146947,-21.158902],[0.005500,-36.313920,-21.393151],[-1.897209,-1.550246,27.671914],[-1.207804,-2.403915,28.397201],[-0.967630,-1.304343,28.180438],[-11.771990,-2.054328,-20.406848],[6.079798,31.625653,-21.347669],[6.185869,32.282002,-20.384658],[7.477337,32.123448,-20.405944],[-19.558387,-7.109451,-2.270701],[-13.338713,5.629082,16.395877],[-12.930140,5.840470,16.324678],[-13.340412,5.938611,16.419699],[-2.415894,-13.740196,-19.378171],[-2.152133,-13.488414,-20.130578],[-1.846707,-13.809194,-19.828601],[-0.135916,-8.210284,-21.383008],[-0.467417,-9.385938,-21.317452],[-0.560891,-7.889390,-21.775640],[3.196238,7.910165,18.371943],[3.646026,7.855641,17.990780],[3.878888,8.492963,18.474418],[18.520800,13.516015,4.906065],[18.565240,12.880494,4.430862],[18.382090,13.821072,4.675929],[0.731105,39.018613,-4.452261],[1.327117,39.024319,-4.280839],[1.649200,39.079503,-5.902433],[0.004890,36.437634,-15.020776],[0.619282,36.670521,-14.915898],[0.417536,36.391309,-15.931150],[10.668776,9.938050,19.302575],[10.489154,9.367284,19.440782],[-0.392264,32.756535,-20.977180],[-0.043539,33.264180,-19.874722],[16.481435,-33.538285,-14.876994],[18.462342,-36.141891,-16.390401],[14.973320,-33.151421,-16.023419],[10.427091,32.930470,-17.616723],[9.586708,34.112027,-16.879895],[10.703298,33.643224,-16.541455],[13.516110,33.810246,-4.593162],[4.315141,31.926282,15.594168],[4.704103,31.352727,16.375266],[5.171668,32.048718,15.117309],[21.790458,3.020013,-5.391291],[20.868941,1.575413,-5.956116],[21.616870,0.309682,-6.388744],[10.495131,-22.648091,6.819242],[9.425003,-23.319479,8.553933],[-11.716295,11.970742,-26.863723],[-12.488707,12.988347,-26.528897],[-11.256727,12.617692,-27.010585],[-19.037982,-2.454940,-11.332901],[-18.956376,-3.964668,-11.575370],[-18.869977,-5.401889,-10.831616],[-1.278447,-13.764280,-19.650140],[-1.557997,-12.797948,-19.737979],[-0.973519,-12.904071,-20.085736],[-9.254447,-10.044959,-17.601415],[-9.140645,-11.258262,-16.893699],[-9.979227,-10.845426,-17.294633],[-14.691111,-16.250648,2.409366],[-15.051776,-15.006763,-0.476698],[-14.692074,-16.046119,-0.027512],[-1.034806,-19.897128,-18.271508],[17.899281,-2.138744,-0.324143],[18.256156,-0.679878,-1.220140],[-15.864680,12.720845,-23.654593],[-21.429672,17.888474,-10.694953],[-21.189386,16.601701,-9.648201],[10.794659,18.954255,19.717978],[12.045030,18.783902,18.761556],[11.164873,21.244073,18.685733],[-11.585424,13.822716,-26.690166],[-15.927038,-12.948156,-1.849851],[-15.678298,-14.036914,-2.743979],[-15.269982,-14.325141,-0.178411],[-18.397794,0.799504,-1.498390],[-18.786807,3.252534,-1.447520],[-5.018016,-3.233684,-23.176152],[-5.450992,-3.584968,-22.775922],[-5.569780,-2.792117,-23.039331],[-8.716977,18.214989,-27.440045],[-10.271388,18.630471,-26.939445],[-9.021638,18.898980,-26.966733],[3.344429,20.775353,-27.529862],[19.418917,11.194768,2.188447],[18.920575,9.985913,2.982403],[19.202096,9.504361,2.854721],[-5.179468,-32.729820,8.400325],[-4.394105,-33.178026,8.840765],[-4.208778,-32.123612,8.617619],[-2.536295,-20.292457,21.258986],[-0.944155,-21.419371,21.126292],[-2.386955,-21.992496,19.822541],[5.097552,28.349652,-24.416511],[4.839596,28.827756,-23.914969],[5.608152,28.519055,-23.689405],[18.333728,0.223328,-0.539534],[2.812110,28.125035,-24.671447],[2.178437,27.726315,-24.927798],[2.564227,28.725415,-24.333848],[-19.325237,17.769486,0.845280],[-19.284448,16.708813,1.176183],[-18.522729,17.584420,2.219868],[5.420439,-9.774999,20.133500],[-7.891711,-8.486776,18.636611],[-9.093832,-8.199666,18.423661],[-18.683984,18.992051,2.508435],[-18.632888,19.986531,1.345240],[-19.358722,19.163636,1.075108],[5.355081,37.465787,-6.504929],[5.847720,37.380238,-5.879477],[5.993093,37.701886,-6.696116],[-9.412929,23.582707,-25.748305],[-8.836650,22.485860,-26.103099],[-19.890323,17.760400,-0.506918],[-19.820932,16.845734,-1.794082],[-19.390117,16.912934,-0.363377],[-21.059417,-0.610828,-8.893469],[-17.971532,0.642182,-15.870141],[16.601565,2.464394,12.467106],[-17.832677,-31.661249,-4.411826],[15.263492,29.752858,3.496665],[15.329886,30.283261,2.030283],[15.228182,30.869206,2.902154],[18.374833,-4.759944,-11.725410],[17.465302,-8.051521,-10.153193],[17.382235,-8.461795,-10.506303],[-4.327717,16.992776,-28.152585],[-3.607713,10.490605,-28.133157],[-3.532534,12.156106,-28.520516],[-2.916428,10.386357,-28.719789],[19.450482,1.739556,-4.722242],[11.586335,-1.658115,19.604573],[17.038871,4.282582,-19.219108],[17.221179,4.589883,-18.479037],[-22.967889,3.991627,-9.582540],[18.411734,18.671586,-20.437797],[18.051068,19.505200,-21.065154],[18.636029,20.854279,-20.514424],[7.112288,23.459656,-25.924157],[7.411781,24.160149,-25.773587],[7.712480,23.932793,-26.141849],[0.624307,4.870431,-27.316684],[0.351133,4.186318,-27.484801],[15.730673,5.663682,14.465888],[15.213746,6.047215,14.828161],[15.174432,5.643624,15.263862],[8.271694,36.237103,-13.667100],[7.689456,36.015309,-13.992028],[-7.217695,-7.238023,-19.927823],[-8.949167,-6.693992,-19.469539],[-8.595901,-6.032422,-19.955813],[-8.151621,35.828000,1.654426],[-8.565131,35.605756,1.131183],[14.451132,27.601758,9.372420],[13.880345,27.806515,10.528317],[14.809322,32.702115,0.278200],[14.903668,32.095700,0.720368],[15.285963,32.409856,-0.539165],[9.533775,34.804402,3.653912],[9.918444,34.978642,2.706484],[9.156392,35.019635,2.858192],[-9.801173,-24.115720,6.407218],[-8.963076,-25.251493,7.015005],[-8.289590,-25.215331,7.588181],[1.327723,-4.851739,25.256589],[0.359338,-5.163720,25.388780],[1.024295,-4.906709,24.235097],[10.609291,34.479398,4.331830],[10.719337,34.336568,3.200797],[10.136339,34.620404,3.994879],[-0.899770,12.820775,-28.478303],[-0.329854,13.613538,-28.158448],[-0.347721,12.641728,-27.974080],[-2.061006,-7.932985,22.598006],[-1.247281,-8.222432,22.860906],[-1.291189,-7.679103,22.997603],[-10.207273,13.656750,-26.731235],[-10.568700,14.579598,-27.088714],[-19.969774,18.306538,-2.678721],[11.600822,35.542203,-4.898938],[11.713012,35.866978,-6.114474],[10.542233,35.902997,-4.964327],[-10.894718,26.616952,-23.838780],[-9.874103,26.278664,-24.229135],[-10.107378,25.925915,-24.746955],[-1.123869,33.726826,-19.477166],[-1.738909,32.766560,-20.380488],[-1.974092,33.765485,-19.141524],[-13.479262,29.752072,-19.426259],[-12.740776,30.073834,-19.963267],[-12.533379,28.587605,-21.708081],[-17.928678,16.503251,6.203194],[-18.171872,16.041348,5.333507],[-17.751121,15.945183,6.026684],[-18.282756,18.851098,4.319406],[-18.603414,19.617493,3.485039],[-18.185350,18.498135,3.417835],[17.225680,-8.639705,-5.198936],[16.831067,-10.345041,-4.179557],[-19.535852,18.073273,-18.850944],[-19.446573,18.930863,-17.712874],[-2.207477,-2.318511,-24.810142],[-1.497412,-1.717796,-24.709184],[-1.723184,-3.516372,-23.936944],[-0.488394,29.094609,-24.386481],[-1.041240,29.899708,-23.146216],[-0.754440,30.098256,-23.548549],[-5.581663,-16.276103,-17.806914],[0.799866,35.217656,-17.728429],[0.350279,35.636159,-16.478881],[18.052653,1.216233,3.179222],[18.234601,-0.213821,2.451294],[12.508078,-27.582481,2.148467],[-1.992151,6.200921,-27.793187],[-2.574199,7.038289,-28.063731],[-2.311680,8.614075,-28.418197],[21.375703,24.012055,-7.335728],[21.466143,24.125718,-6.209291],[0.681560,33.203877,-20.441184],[0.700434,32.144215,-21.487115],[-4.328977,36.010541,-15.522763],[-4.177379,34.862820,-16.978452],[-8.732212,9.883496,-27.139665],[-8.063330,10.109349,-27.669988],[-7.714687,9.391843,-27.502442],[-11.009866,7.098805,17.561119],[-10.673856,7.160447,17.078738],[-10.307321,7.599351,17.216482],[-7.131389,35.258595,-15.213002],[-7.198042,34.810559,-16.572951],[-7.854061,34.172291,-17.108384],[-5.162287,37.635159,-11.306050],[-4.979969,37.514340,-12.699248],[4.340509,28.362950,18.438993],[19.480693,16.732419,2.206280],[-18.899080,12.470525,-19.154704],[-19.067899,10.166466,-19.325557],[-19.565744,11.247273,-18.675122],[8.777812,35.526128,-14.216378],[9.533007,34.724042,-15.495122],[8.733534,35.309651,-15.364341],[20.026641,1.626012,-9.110072],[19.994920,0.912461,-9.607580],[20.316985,3.676919,-9.068097],[-16.451841,-3.808223,-15.203191],[-15.894488,-4.905000,-14.626502],[-16.316549,-4.140224,-14.440475],[9.128759,4.313298,19.418136],[7.889514,23.412675,-25.788335],[-2.609951,36.613721,-15.277450],[-2.218093,37.517659,-13.120146],[-2.088921,35.911168,-15.928304],[-23.525743,5.653107,-9.389672],[-22.549667,4.014710,-9.401197],[-3.970383,-20.336799,20.488208],[-5.080129,-19.628570,19.694034],[-5.897861,-20.463620,18.629897],[-12.576811,34.391255,-10.569944],[-13.799298,33.902096,-11.168503],[-13.305191,34.638417,-9.464659],[5.368404,36.769940,-13.783092],[5.960109,37.049847,-13.005845],[5.757765,36.443753,-13.781163],[2.022776,-8.773988,22.582416],[-0.096045,-8.832753,22.896140],[0.979589,-9.088228,22.642011],[-11.887451,-10.734044,-15.581061],[-11.569271,-11.414357,-15.969071],[-0.021314,24.666573,-26.107612],[-0.452666,25.064397,-26.346171],[1.450822,38.276364,-2.189404],[1.278628,37.949483,-0.668556],[1.982474,37.865506,-0.431579],[-12.739927,6.026707,16.356477],[8.185012,-8.449666,18.628061],[-1.459557,37.879620,2.239130],[-1.351027,37.908246,3.232409],[-0.416689,3.513726,-27.285995],[-0.286785,2.549885,-27.237269],[10.049525,35.030301,-0.023253],[6.145371,-9.200570,17.293210],[6.571883,-9.131742,17.171223],[-10.333481,-16.100108,16.527096],[-10.304021,-15.090411,16.956751],[-11.110222,-14.846576,16.296247],[-10.499985,-5.218435,-19.187806],[-11.229499,-5.773731,-18.009923],[-11.370224,-4.871179,-18.358914],[-19.045711,27.110070,-5.922842],[-19.420308,25.825173,-5.279744],[-15.538306,23.204858,8.523408],[-16.207383,22.069997,8.070472],[-15.488017,23.162686,8.790058],[13.405776,21.819512,15.111502],[14.680853,18.937169,13.751468],[13.974861,23.437810,12.093541],[-14.791502,-15.020787,-10.995029],[8.873709,-12.463096,-17.704801],[8.039756,-13.884113,-17.790921],[8.138472,-12.751060,-18.217113],[1.306373,-26.487760,13.914264],[0.695220,-27.782917,12.480543],[2.472053,-27.348027,11.901886],[-19.169934,4.364968,0.933020],[-19.228536,4.368600,0.515868],[-18.904630,3.347924,0.845360],[-21.810714,2.591775,-9.190542],[18.808938,-3.401389,-2.702690],[18.668914,-2.383865,-2.437993],[-5.599668,36.250722,4.137551],[-5.084819,36.244153,5.956895],[-4.749450,36.737195,5.235848],[-4.583322,-18.349843,-17.357575],[-6.669353,-18.712182,-16.138122],[16.222699,-29.717848,-7.550166],[17.162684,-32.025378,-9.991304],[15.957955,-30.533468,-9.993939],[-15.596520,6.888154,-22.850961],[-14.558899,5.506253,-23.034392],[15.369164,-8.045381,-13.554149],[15.246679,-9.193176,-13.370177],[16.174865,28.182843,2.950198],[17.137156,28.320523,1.043136],[16.118413,29.456120,1.093547],[-3.541955,-13.113652,-19.567235],[-3.524583,-14.357734,-18.944720],[6.997730,-27.629259,7.796536],[7.629576,-29.533941,7.725713],[16.518765,18.771275,8.751635],[16.489737,19.674504,8.420885],[15.321028,20.887791,10.083717],[2.024297,14.615750,23.025487],[1.050381,14.857194,23.171786],[0.879039,12.428834,23.078818],[-19.220744,9.382127,2.725873],[-19.066413,8.876981,2.418481],[-18.780843,8.058850,2.732751],[-4.761108,22.917714,-26.645621],[-4.368229,22.189149,-26.870908],[-5.194396,22.555955,-26.937882],[-4.444448,3.408959,-26.854495],[-4.815210,4.575101,-27.124238],[7.938851,-15.373760,-17.248572],[16.501601,18.609650,-23.393968],[15.865804,19.121552,-23.950608],[16.671435,19.873658,-23.145360],[-5.135477,19.847131,-27.329591],[-23.640882,4.349290,-9.295785],[-8.343336,-13.452750,17.947577],[-8.809254,-13.001682,17.858328],[-7.911634,8.379117,17.979794],[-9.115885,8.322461,18.847920],[-9.032684,8.241231,17.771018],[-15.520346,-14.838138,-3.602790],[5.278454,31.268567,15.651854],[6.249075,31.889882,14.610019],[5.503292,31.886380,14.562451],[-10.201861,-7.119508,-18.445741],[-10.388929,-7.164830,-17.642682],[4.254981,33.608533,13.053384],[4.727258,33.943494,12.853287],[3.898281,34.027745,12.400091],[0.398758,5.581288,24.680209],[0.496507,3.930154,25.684215],[-17.725305,28.593007,-0.828872],[-16.927076,29.138142,0.615101],[-17.605752,29.309231,-1.499695],[-9.657599,14.424596,21.019969],[12.809135,4.570370,17.740520],[12.967447,3.995610,17.935479],[-4.708755,-5.105869,-22.100818],[-5.388277,-4.532617,-22.259479],[-4.760501,-4.096233,-22.224851],[-0.084508,7.668515,-27.745191],[0.384154,8.682835,-27.654496],[17.106904,6.888932,10.358644],[16.643534,9.896241,10.835210],[16.208817,8.512929,12.906339],[-23.824096,7.906285,-8.657895],[8.340107,27.789593,-23.083175],[7.608028,27.679639,-23.711885],[20.247542,2.762871,-5.472271],[13.171740,30.704922,8.395997],[12.608984,31.772389,7.444636],[12.196397,32.265652,7.850731],[-24.003482,8.345978,-8.256431],[-5.618653,17.576581,22.065820],[-2.763433,16.755303,22.781125],[-5.032100,18.195195,22.083947],[-17.315418,22.552087,5.734921],[-16.974368,23.736306,4.902605],[-20.541806,6.766442,-10.504366],[-20.574130,6.235890,-11.457694],[-20.552520,5.235337,-11.107345],[16.109784,22.875020,8.105690],[16.295295,21.778722,7.946039],[15.341350,-16.752334,-4.731764],[-18.842818,4.626240,3.496391],[-18.777829,5.998730,3.680115],[-18.744704,5.416043,2.754450],[17.753527,18.219399,-21.991351],[18.113965,17.927891,-21.399283],[19.394900,22.865121,2.488332],[18.578702,20.333325,4.092362],[19.986899,20.976960,1.628231],[-19.969535,18.556336,-1.996741],[-21.157474,13.938004,-13.200953],[-21.046186,11.950616,-13.436250],[-21.044831,12.412762,-12.789650],[-1.342109,-4.722223,23.767280],[-0.638879,-5.076524,24.377204],[-1.126788,-4.871232,24.581567],[5.054997,-12.821857,-19.010707],[-18.722507,25.054486,-1.574402],[-18.313720,27.455498,-2.919035],[-6.923567,31.932568,-20.480088],[-5.927585,33.182912,-19.143485],[21.286048,2.621110,-5.580689],[21.394303,3.952248,-4.814661],[8.913750,28.851063,-22.699584],[9.957474,29.111623,-22.371635],[12.763666,-33.957203,-17.972793],[10.992578,-34.748023,-18.975892],[8.747780,-32.658888,-18.895768],[-16.975110,19.339967,-22.339297],[-17.463582,20.334035,-21.977502],[-16.279037,18.725217,-23.252585],[-6.360396,-3.801925,-22.489898],[21.706559,9.012139,-3.939178],[20.560466,7.728406,-2.967040],[20.873910,8.025578,-2.733042],[2.932631,-0.214881,23.626189],[3.295068,-0.570281,23.083272],[15.212977,25.906289,-21.050517],[15.533585,25.073449,-21.831042],[14.730893,25.184865,-21.622718],[1.784192,31.251584,-22.161263],[18.368165,8.174729,-20.001205],[18.682023,9.155095,-20.650498],[6.224526,8.559926,19.040948],[6.437529,9.206448,19.100709],[5.369923,8.311082,18.725381],[-18.663743,11.765462,3.889548],[-18.648673,10.844605,4.573006],[-18.628907,11.796761,4.481768],[-7.318614,29.177067,-22.764646],[-20.241584,3.298753,-13.044053],[-20.336375,4.766896,-12.288061],[-17.977630,14.157475,6.057983],[-17.634877,15.011464,6.564022],[-18.064008,15.088017,5.924854],[2.057807,35.837056,10.597303],[-16.985654,-2.520488,-14.478854],[-18.000646,0.281617,-15.240556],[16.391734,19.965935,8.586204],[16.446250,25.104790,-19.802224],[16.005563,26.424123,-19.271094],[16.990298,25.086747,-19.311030],[-3.636304,-3.518581,24.291013],[-3.763266,-3.627338,23.362916],[-3.345402,-3.633113,23.774697],[-10.693854,27.552243,-23.281491],[-8.925778,26.521123,-24.528874],[-9.478198,26.574250,-24.510230],[16.860322,-7.872028,7.711077],[16.271638,-11.462150,7.430554],[4.663831,7.343762,17.604151],[4.739980,7.637967,17.994136],[4.247941,7.553261,17.798140],[-1.017094,14.054185,-28.148612],[15.964821,25.546971,8.258695],[15.825895,24.235722,8.500717],[4.037983,36.901364,3.166403],[3.645479,36.930279,4.118220],[4.606189,36.469540,4.671155],[0.362438,19.156758,-27.826118],[0.861429,18.564221,-28.120938],[-20.251830,16.977292,-18.029929],[-20.599500,15.394791,-17.167567],[8.709626,23.430562,-25.820809],[8.877331,22.727685,-26.257468],[0.259841,-9.860238,-20.959302],[-0.012348,-10.676044,-20.516435],[7.073006,-9.601897,18.338555],[5.876519,-9.829660,19.293715],[-9.709957,-0.677020,-22.178403],[-10.331537,-1.140312,-21.774938],[-10.627177,-0.775623,-22.267467],[-3.515372,-3.051284,24.964972],[17.413796,17.207700,6.584181],[-14.478391,-3.791442,15.896544],[-13.397375,-3.103481,17.882346],[-14.851967,-1.811511,15.944682],[-2.693459,-0.643691,-25.251607],[-2.381877,0.388367,-25.705527],[-2.410593,-1.392967,-25.382384],[-18.432073,-5.395379,-3.735776],[-18.783223,-4.769244,-4.887424],[-20.586911,16.857278,-16.865321],[13.260750,-17.057479,11.292936],[12.702245,-16.011783,12.733065],[12.738217,-17.106515,12.334744],[-20.410146,7.913979,-2.965007],[-19.424308,5.873765,-2.795598],[-19.435048,5.799557,-3.891527],[-20.039613,6.649430,-4.640977],[-11.191373,7.856290,-25.584397],[-11.014002,6.892647,-25.682952],[0.925519,24.150120,-26.274600],[0.423849,23.425706,-26.460393],[1.353227,30.423375,18.464131],[1.685209,29.444997,18.765771],[1.818331,30.453313,18.504822],[1.092947,17.413861,-28.005410],[1.785872,18.477254,-27.868987],[9.686730,-8.857068,-18.638270],[10.113951,-6.594829,-19.502370],[10.251293,-8.832723,-17.988280],[5.766793,-33.675615,8.221210],[4.140298,-33.645307,9.087846],[5.152911,-34.990853,9.001929],[10.189226,7.877316,18.525733],[10.613909,7.833916,18.815652],[19.324683,23.334809,-18.872125],[18.851609,23.242093,-19.486423],[-1.409752,-17.571855,-18.911031],[-0.521920,-15.641191,-19.239596],[-0.859965,-17.512395,-18.992328],[20.403285,5.468308,-15.446855],[20.818421,7.219327,-15.645490],[21.121960,5.895451,-14.405751],[6.368330,8.406121,18.682607],[10.446951,24.784989,-24.563191],[10.886891,26.202798,-23.777831],[11.334595,25.878434,-24.197574],[3.071672,32.537236,16.105398],[2.562896,31.913052,16.441309],[2.947421,31.317403,16.771092],[15.697449,31.726712,-8.101708],[15.652797,32.442738,-9.147121],[15.522229,32.768300,-8.453013],[2.246179,20.103219,-27.849362],[-1.153577,16.796715,-28.201106],[-1.838131,17.204022,-27.702306],[-1.161479,17.714444,-28.092570],[-11.873760,23.272755,-25.367906],[-11.605202,22.292367,-25.634137],[-12.427210,22.433861,-25.307244],[1.559570,-3.861305,27.752517],[2.519527,-3.279826,27.029944],[1.629938,0.465825,26.449813],[18.919377,2.207265,1.351982],[18.706565,1.099465,1.569724],[-10.603060,-26.138480,6.026627],[-11.486817,-22.917205,4.712599],[9.495510,-31.538593,5.099245],[10.012800,-28.857175,6.199183],[-20.140809,12.539105,-15.197310],[-20.879543,14.507127,-15.099778],[-20.707431,15.093529,-15.856004],[10.783481,-20.667257,11.412178],[12.155738,-19.292798,11.455222],[12.776465,-7.729810,-16.394853],[12.089655,-8.530820,-16.881175],[12.312470,-7.787545,-17.208428],[7.935642,8.572076,-27.266433],[8.763775,8.276467,-26.429120],[7.346179,7.641953,-27.155499],[24.106927,5.941476,-8.611836],[23.798995,5.507375,-9.212698],[15.941044,-8.600793,-12.848013],[19.660887,1.236932,-7.235061],[20.848342,2.400323,-7.890075],[20.251302,-1.016422,-7.289643],[17.453591,-8.705152,-9.180235],[17.232177,-9.349004,-9.002952],[17.603686,-9.142883,-9.649796],[17.592738,-9.697757,-8.448160],[17.623332,-9.177499,-7.942235],[17.625134,-9.470039,-7.595625],[-13.602489,6.449944,16.531649],[-13.764330,6.063824,16.399899],[16.652959,-11.826217,-9.108003],[16.858155,-12.133399,-8.727462],[17.405595,-9.993039,-8.318295],[14.410720,9.259186,17.041327],[15.009106,9.135693,16.335869],[14.215130,10.408124,17.731416],[21.160123,0.416840,-6.172901],[-14.768866,-8.807737,-14.239415],[-14.894161,-8.963905,-13.611146],[-14.954893,-7.980752,-14.068034],[-11.490446,32.616002,-17.511863],[-10.853519,31.419759,-19.454299],[-17.416368,-9.896678,-9.295652],[-17.086978,-9.619434,-9.855052],[-17.047502,-10.229383,-9.536551],[-21.855104,9.131173,-5.034059],[-13.343600,-7.137586,-15.996984],[-13.650437,-7.358402,-15.472018],[-13.641249,-6.498515,-16.137532],[-20.894876,11.976372,-7.971757],[-21.045299,10.723180,-7.874214],[-21.005313,11.835316,-7.190650],[-21.291614,12.270760,-10.852814],[-20.923570,11.809426,-10.195142],[-20.533637,13.426610,-10.122234],[15.878874,-13.564136,-8.718632],[16.282532,-12.870910,-8.279911],[16.046157,-13.153650,-8.198533],[19.569083,-1.887908,-3.091491],[20.444897,-0.987788,-4.208426],[19.532002,-1.292774,-3.401526],[-11.985234,6.293496,-24.830943],[-11.680972,4.657037,-24.855531],[-12.576203,6.245812,-24.569341],[19.808379,5.377824,-1.638627],[22.392056,7.890935,-3.097073],[21.959887,8.302975,-2.891906],[17.523556,-9.045400,-7.496836],[17.607037,-9.313007,-7.096463],[4.130583,33.111691,-19.204349],[4.252526,32.834782,-20.375962],[3.662959,32.304906,-20.788999],[-11.574723,3.699090,18.880807],[-11.111286,3.726170,19.002017],[6.292075,-9.538181,17.771564],[6.010837,-9.815639,17.427548],[5.598377,-10.127239,17.520658],[16.341168,-11.903787,-5.980715],[15.887985,-13.467304,-5.256819],[19.909144,6.383561,-0.740832],[19.433205,5.588307,-0.463142],[19.901875,6.224148,-1.433803],[-0.326579,-4.400901,-23.929830],[-0.471127,-5.252183,-22.822152],[-0.626750,-3.280219,-24.317695],[8.317457,20.383202,-26.869422],[8.646231,21.651574,-26.635282],[9.107357,21.114037,-26.412278],[18.981299,-4.635267,-10.946599],[18.458646,-5.129249,-10.144334],[18.222382,-7.019349,-10.185555],[26.695676,-39.306669,-10.662411],[26.495772,-37.946330,-9.177157],[27.617781,-39.296516,-9.054661],[-6.445200,0.901757,20.967109],[-5.255122,1.513268,21.203479],[-5.962748,2.932881,20.142814],[-0.846317,-10.602063,-20.539847],[-0.857624,-9.072307,-21.047263],[15.276447,-13.147773,-11.529590],[15.410726,-12.986345,-11.225490],[20.948256,15.677499,-14.472306],[21.582618,14.724717,-14.714179],[13.831505,-25.248431,-0.336181],[-19.236516,9.383095,-18.587573],[14.360142,22.474045,-24.106830],[14.163248,21.251992,-24.901320],[13.498101,22.825249,-24.632176],[11.781947,24.831040,-24.577462],[11.155686,24.837582,-24.070550],[11.836763,25.722733,-23.377389],[12.311002,-9.898303,-16.008990],[11.822237,-9.511766,-16.354892],[12.624804,-9.314306,-16.364825],[-3.824868,6.570298,17.897781],[-4.497432,6.478280,17.822179],[-17.098943,-9.917953,-8.139514],[-17.029453,-9.870300,-8.884774],[-17.220140,-10.365337,-8.596902],[-3.105859,-1.827735,-24.968429],[-21.002668,8.329907,-2.702067],[18.925792,-32.951206,-7.741768],[18.033986,-31.806022,-5.271868],[21.217284,-34.314776,-6.121588],[14.835317,-2.174831,-17.164506],[15.817510,-3.642749,-16.068112],[14.975339,-4.303424,-16.649465],[-4.936602,17.274121,-27.760430],[18.845780,22.321309,-20.380065],[1.965538,33.509793,-19.726920],[-17.141355,2.671876,-19.076015],[-15.908790,3.170354,-19.593026],[-15.361137,0.461392,-18.765395],[-11.418043,-12.868364,16.494187],[-12.073240,-12.829221,15.751275],[11.060855,18.215420,19.539895],[-3.621007,-11.299629,18.519051],[-4.459347,-10.846210,18.116992],[-3.709012,-10.771747,19.067361],[13.350659,32.932881,1.959746],[12.812406,32.892880,2.629083],[13.691224,32.769040,2.757420],[-20.012305,6.872090,-2.161258],[9.452965,9.272965,19.664699],[10.706031,8.552506,19.146857],[9.584518,9.541695,19.788533],[-1.871056,-1.427120,-24.908193],[14.826648,21.178319,-24.600871],[15.004668,22.290127,-24.241258],[-20.574605,22.613061,-13.184377],[-20.719161,23.648507,-12.048014],[-20.715125,23.927319,-13.083698],[5.653397,30.587025,-22.048467],[16.425601,-12.909364,-8.618111],[16.492337,-12.589698,-8.311473],[6.399775,6.050912,-26.823527],[6.917807,5.352467,-26.674602],[6.994382,6.571030,17.937425],[6.410556,6.620328,18.492546],[7.378533,6.421929,18.764823],[8.878438,4.484784,-25.642444],[9.575454,4.569527,-25.158429],[8.319992,2.511864,-25.002343],[-3.251016,27.042252,19.583711],[-2.652185,26.152581,19.988465],[-2.582218,26.830399,19.421472],[-16.147563,17.326710,-23.378638],[-15.446474,16.087750,-24.239734],[-16.618076,16.539014,-23.782815],[0.178071,3.066991,-26.845332],[3.571264,-14.536262,-19.062453],[2.940574,-14.540305,-19.374946],[3.451507,-13.734304,-19.031186],[7.230438,35.766225,-15.044709],[8.029387,34.461209,-16.540439],[6.988869,34.722401,-16.820481],[18.033376,22.333802,-20.618751],[-7.266827,28.284405,17.275354],[4.983863,3.623437,-26.265599],[5.634595,3.264401,-26.003291],[4.752539,2.436932,-26.075637],[0.964822,21.735329,-27.153319],[1.514198,21.919015,-26.906549],[1.652394,20.507302,-27.511533],[11.110479,30.272038,12.343986],[10.059193,30.464017,12.508801],[9.924799,29.782506,13.021694],[13.553634,-35.375721,3.202273],[17.333895,-35.002567,0.139565],[1.707163,-4.623346,26.076140],[1.043960,-4.857814,26.787948],[0.820215,-5.080322,25.666713],[-9.405816,-16.059474,-15.148835],[-9.014851,-16.304088,-15.445767],[-5.041604,9.385319,19.155967],[5.455980,36.941167,-2.403411],[5.992271,37.422383,-2.982337],[14.178004,12.276803,-25.120173],[15.462199,12.665341,-24.496291],[2.079518,1.465665,-26.171823],[2.203998,2.726430,-26.541720],[2.834225,2.637505,-26.448266],[-13.231164,-12.642070,-14.068175],[-13.229359,-13.520959,-13.419560],[-15.015748,-4.659473,-15.612588],[-15.646253,-5.202953,-15.027898],[-15.700654,-4.283325,-15.144498],[-3.365617,-11.462980,-19.908626],[-3.887137,-11.992477,-19.528815],[-3.786014,-10.761689,-20.443656],[-17.395637,16.040513,7.217358],[13.184436,5.078786,16.893321],[13.571706,4.984208,16.666409],[13.399447,5.196370,16.680784],[-12.216027,-9.869716,-16.001267],[-2.879240,27.158040,19.355851],[-16.820924,-6.734603,-12.690037],[-16.516572,-6.165489,-12.822311],[3.856480,30.066136,-23.205066],[3.761165,28.948941,-24.028321],[3.194320,28.947789,-24.145602],[19.158948,-3.124732,-5.829981],[18.655246,14.687962,3.574536],[18.235972,14.771428,4.890636],[18.774268,14.419720,4.116131],[-13.308345,34.817456,-7.054802],[-12.423653,34.605374,-6.161486],[-12.204560,35.018948,-7.081956],[16.917823,-11.661033,-8.994282],[22.752162,8.542611,-3.563123],[-4.218520,-17.452306,-17.849872],[-4.516230,-17.911989,-17.557130],[-4.895389,-17.115796,-17.928195],[-18.436040,-3.282108,-11.914655],[-18.419736,-4.592799,-12.365139],[-1.558169,8.804917,-28.536881],[-1.624866,11.277844,-28.277257],[6.771701,33.057194,12.594143],[6.663372,33.555691,11.566265],[6.080198,32.748364,13.117253],[-11.936624,19.150140,-26.365920],[-20.686481,-4.617984,-4.096235],[-13.712139,-18.221984,6.413606],[-14.566677,-16.325923,3.545482],[-9.619490,2.094765,-24.200345],[-8.467355,2.153443,-23.959168],[-8.255219,0.882592,-23.643054],[-2.024633,-12.235145,-19.982507],[-19.896312,-4.974492,-2.216712],[19.796447,18.255131,-18.783448],[19.515120,16.858147,-18.828546],[19.452771,16.967446,-19.618995],[21.939950,2.564194,-8.079797],[17.623767,7.124566,7.796145],[17.469640,4.752164,7.217464],[17.748788,6.085347,6.602148],[15.190420,-12.412898,-11.724204],[15.710133,-12.176313,-11.627779],[18.599135,5.695012,3.898276],[18.722131,4.908311,3.797241],[18.639714,5.165498,3.212704],[22.615685,20.269288,-6.092427],[22.602685,20.276017,-7.641746],[19.172316,18.746846,-19.279590],[11.933011,32.874699,6.342650],[11.524872,33.556164,5.429819],[22.047742,21.174908,-7.832003],[22.014745,21.963196,-8.853371],[18.172984,16.523537,4.629314],[18.387946,17.480931,4.496732],[17.683900,16.924283,5.827748],[-19.585326,27.054303,-8.275619],[2.201042,38.705357,-5.673648],[2.273661,39.015057,-6.896793],[23.264880,5.864156,-9.212667],[22.150046,3.043759,-9.319336],[21.728028,4.248376,-8.337012],[-15.172636,7.488908,-23.541839],[-13.575679,5.788953,-23.945468],[7.457571,-9.471389,18.164607],[-20.939607,11.722253,-5.973870],[-20.614183,10.493325,-5.973311],[-20.721915,10.542599,-4.810503],[0.047184,38.429288,-10.687011],[0.277732,39.046628,-9.289785],[2.306571,34.440709,12.986570],[2.547159,35.384175,11.320484],[1.788179,34.975606,12.168586],[9.304795,6.427556,18.542788],[10.536423,6.414654,18.533121],[10.982324,6.774197,17.561199],[21.704114,25.574574,-6.659802],[21.503800,24.873883,-6.472399],[-11.472820,6.068272,-25.430743],[-3.138493,-7.071523,-21.457475],[11.167204,-14.990421,16.130262],[10.733371,-14.470578,16.821337],[10.184085,-15.810519,16.829458],[2.794752,10.309533,21.556571],[2.664292,9.150372,20.568940],[23.720158,8.219815,-7.019570],[23.245456,8.637017,-5.832236],[23.021180,8.213208,-6.532064],[12.445994,-27.075404,-13.834844],[13.053192,-25.599915,-12.783036],[1.715023,28.319363,-24.831710],[-13.341290,-5.815393,-16.166772],[-12.634610,-6.474017,-16.152776],[-13.695684,-15.822261,-12.273783],[-14.278574,-15.434066,-11.614304],[-14.213331,-15.236167,-11.912392],[13.223385,32.253628,-15.922420],[20.882739,19.824898,-13.867257],[20.739119,17.608189,-15.036611],[20.896201,20.186349,-14.851474],[-7.008510,1.877747,-25.432771],[-6.189776,1.694962,-25.384072],[5.083881,-18.789321,-16.830178],[4.980631,-18.053512,-16.975957],[5.763823,-17.754977,-16.673060],[-1.973774,38.961751,-5.250681],[-1.021724,39.025624,-5.015650],[-0.918122,39.244527,-6.877835],[10.746490,36.367169,-7.872093],[11.127812,36.079770,-8.427768],[10.093522,36.529629,-8.889482],[13.825074,25.617001,-22.889806],[14.371854,25.462682,-22.337470],[13.786315,24.585610,-23.030192],[0.826979,37.682698,4.406093],[0.359716,37.963742,4.019036],[0.467201,-9.969548,20.741103],[1.144666,-9.487182,20.233272],[2.165137,-9.945836,20.343207],[22.247048,8.347634,-10.557179],[21.531255,7.611768,-10.254054],[22.510499,7.878033,-11.714798],[6.204245,-10.072669,18.817336],[5.242262,-10.607442,19.312613],[6.447363,-10.432317,18.760690],[16.826091,-10.612964,5.158977],[6.237065,-6.740497,20.113667],[1.764238,17.681042,-28.154115],[-19.968723,21.117028,-5.221584],[-20.017699,22.146649,-2.799088],[-19.679258,23.520180,-5.107104],[-16.419809,20.011613,7.836808],[-16.815847,19.575268,7.168565],[-16.982276,19.359734,7.555278],[-5.366639,21.916634,-26.790597],[-5.372557,20.463280,-27.165263],[-6.101697,20.464780,-27.083940],[-21.010066,-2.877013,-5.350896],[11.396333,6.063424,17.955320],[-16.311162,7.292035,-22.545754],[0.474025,25.191632,-26.112584],[14.731910,-16.454515,7.344083],[15.089164,-15.480523,4.348922],[15.050742,-15.479591,6.756544],[-0.555788,38.657933,-9.722941],[-0.864931,38.017834,-11.241365],[-1.471018,38.638661,-10.050254],[0.539736,-26.658431,14.044225],[-0.002216,-27.158262,13.460942],[-1.786405,22.624245,-26.664891],[-2.544288,22.710896,-26.775947],[-14.275219,25.758721,10.171339],[-14.071824,26.222440,10.228810],[9.048089,-2.059104,-22.288371],[7.662374,-2.181335,-22.634646],[7.661843,-1.506229,-23.048207],[4.851668,-10.319972,18.510290],[4.267240,-10.560352,19.222501],[6.011814,-9.858495,18.532541],[18.406773,12.397435,4.626889],[18.264067,12.873013,4.922989],[18.466719,12.004414,4.842518],[15.815341,-11.468997,8.931934],[14.962398,-13.772634,9.276041],[-10.725744,-19.266069,14.332992],[18.524689,-0.533069,-2.550137],[18.291598,-0.672981,-2.614963],[-3.276672,-1.091762,-25.117980],[12.574318,24.018971,-24.524251],[11.833616,23.995259,-24.465554],[12.751389,24.865945,-23.779315],[14.072993,-33.681531,-17.168750],[13.270927,-30.223332,-14.910518],[6.007318,36.227429,3.488107],[6.648380,35.828198,3.961244],[6.623883,35.814725,2.308079],[-20.651456,22.236996,-11.428275],[-20.974719,20.362340,-12.224070],[-21.204675,20.013371,-11.143144],[6.321644,26.715611,-24.833785],[7.210069,26.689057,-24.199679],[7.534874,33.935071,10.317024],[8.025097,33.803265,10.147881],[7.936631,33.912068,9.117486],[-14.473415,3.652459,-22.243375],[-15.030738,4.434258,-22.486470],[18.275946,16.082120,5.324004],[18.255608,16.211060,4.364911],[18.190110,10.752873,5.983306],[18.292916,11.530705,6.136354],[21.621447,13.518674,-3.232986],[-19.822934,4.465539,-15.332110],[-20.046222,4.011006,-13.671508],[-20.347131,5.594052,-15.476550],[-20.443341,-3.840381,-3.921648],[-13.031888,2.435845,-22.320613],[-12.032251,0.183774,-21.890668],[-13.628183,1.208333,-21.288207],[-19.784375,-3.569427,-3.206997],[-11.302088,-9.515453,17.275956],[-11.085983,-11.129319,17.149712],[-10.675710,-9.542621,17.502533],[10.925537,-0.797847,19.951177],[7.404464,28.220212,-23.048629],[8.131326,28.615620,-23.324590],[-4.560140,-9.955871,19.215053],[-6.932961,-9.601207,18.273912],[-5.531318,-9.627645,18.034739],[10.538904,-14.632863,-15.746871],[11.065274,-14.024966,-15.306907],[11.131288,-14.705161,-15.346145],[-17.102859,1.257268,-18.180619],[-17.473102,2.886048,-18.540332],[-21.319167,17.869275,-12.586492],[-20.520713,15.785481,-13.325725],[-21.105451,17.164567,-12.185871],[-17.743366,-5.730260,-12.219054],[-17.460708,-6.112531,-12.589008],[-17.563171,-6.602821,-12.085254],[4.449757,31.751530,-21.628205],[3.806686,31.219975,-22.198501],[3.994452,31.802449,-21.186357],[-12.012619,21.938771,17.413009],[-11.056380,23.672669,17.490961],[-12.205141,23.666432,15.904993],[-20.038266,25.740655,-10.672311],[-20.269328,25.454545,-8.492352],[10.239342,-17.698749,15.673389],[9.755735,-17.531350,16.680441],[9.510642,-18.739522,16.068499],[20.302474,3.487729,-5.103130],[20.599976,3.468281,-5.339683],[-11.843128,1.540147,-22.600333],[-12.349361,2.511845,-22.569261],[14.618635,20.552388,-25.266601],[-10.896175,-35.993598,-19.551368],[-9.198397,-34.395687,-19.359260],[-9.843028,-37.454061,-20.326787],[-5.624066,-10.133550,-19.373296],[-5.271798,-9.833591,-20.209266],[-5.217353,-10.578489,-19.421479],[21.335658,-0.557857,-6.021379],[21.101010,-1.246108,-6.360358],[21.548583,-0.472434,-6.605220],[-11.421483,-6.458019,-17.376414],[-12.054984,-6.521388,-17.244576],[-12.072410,-5.658744,-17.337199],[-3.716403,-4.666532,-22.308871],[-4.322300,-4.443530,-22.633588],[-4.356754,-3.477210,-22.680818],[3.060721,14.626778,22.685443],[-0.163038,-2.353088,28.638976],[11.128893,-39.282768,-20.443570],[7.749929,-39.246579,-21.305156],[9.179175,-37.462146,-20.523730],[-2.734349,-18.076680,-18.336955],[7.745392,36.846585,-4.609924],[7.273526,36.779042,-2.593865],[6.551390,-38.013517,9.113078],[8.384215,-39.278872,8.867809],[8.036751,-37.970185,8.563931],[-3.453415,24.530015,-26.022349],[-2.795705,24.341164,-26.189282],[-17.956044,-3.870334,-1.327131],[-18.655105,-3.903568,-1.846632],[15.585519,-12.818992,-10.872701],[15.995188,-12.716731,-10.820680],[6.718638,24.140092,-26.028644],[5.547117,24.416444,-26.137906],[6.160796,24.572140,-25.607675],[14.462378,-10.101077,-13.189018],[8.902887,-13.788337,-17.221652],[0.251728,-9.498300,20.429610],[-18.703620,12.094647,-20.216338],[-18.877765,11.222859,-19.818473],[-15.765062,-5.769679,-14.359309],[-15.263590,-6.468868,-14.462607],[14.449070,26.662095,-21.170270],[14.888728,27.558087,-20.221578],[15.063534,26.768460,-20.330066],[16.176770,14.888268,-23.742431],[21.699689,6.528443,-10.735265],[21.178008,5.734292,-11.431918],[0.071295,-9.535529,22.674289],[-0.425939,-9.909461,22.367749],[0.747753,-9.733815,22.460824],[-3.812498,37.312070,2.521083],[-3.144135,37.464581,1.675041],[-14.297049,-13.944616,-12.414046],[-13.947055,-13.725150,-13.072577],[-13.897863,-14.240594,-12.617557],[19.208602,-37.701345,-17.422286],[19.790244,-39.312297,-18.091973],[17.105628,-37.878863,-18.855954],[0.159059,-12.667743,-20.100886],[-0.249914,-11.580320,-20.365384],[0.559011,-4.417152,27.927999],[0.305225,-3.642909,28.609103],[-18.855180,-3.400966,-2.701204],[13.676470,-3.009338,-18.391168],[13.746190,-4.853257,-17.630670],[13.110309,-6.002284,-17.519872],[-14.979217,-5.888759,-14.941813],[-15.125290,-6.755136,-14.982453],[21.212939,11.563504,-1.844926],[20.302123,10.292844,-1.551487],[21.699961,11.425839,-3.420077],[14.938769,-28.768307,-1.633509],[-4.095726,11.857602,-28.168746],[-4.668354,13.017651,-27.809930],[-4.120972,12.961713,-27.977944],[14.597029,-26.679567,-9.569190],[0.491073,-8.451009,-21.338857],[0.720148,-9.723703,-20.620179],[19.638165,-1.768138,-7.860585],[19.535720,-3.722839,-7.615091],[19.697085,-2.648303,-8.179798],[-2.341692,2.591103,-26.970058],[19.630627,14.602524,1.314949],[3.684603,-24.701296,14.512615],[5.715140,-24.775045,12.440776],[-18.360774,8.168084,-19.974864],[-18.881337,9.768231,-20.363242],[-9.054961,3.126271,-24.805709],[4.346649,9.979207,-27.983600],[4.067003,9.527535,-28.262568],[12.318016,-0.108310,-21.049649],[11.897445,1.382180,-22.576022],[13.178817,1.818749,-21.324351],[15.488634,-5.321794,-15.531400],[14.958604,-4.681432,-15.733338],[16.812251,-32.983194,-0.791448],[14.533215,-33.387862,1.158572],[3.460408,15.189057,-28.392072],[3.084424,16.276295,-27.897817],[4.220902,15.778413,-28.268621],[-15.761002,24.059125,7.116446],[12.059395,-23.662630,-13.664666],[12.944701,-22.099674,-12.844396],[6.169634,-26.287300,9.664960],[6.964889,-26.195496,8.632293],[6.925135,-25.654074,9.272318],[-15.199698,-8.518302,-13.292986],[-2.025299,0.000272,-25.565413],[21.953683,7.001099,-12.126711],[22.511870,7.797848,-13.315179],[13.364796,31.975102,5.995667],[13.645695,32.103085,4.505390],[-1.573645,-4.744449,25.514338],[-0.901601,-4.866424,26.910672],[-2.298848,-4.208148,26.136891],[-17.824491,-6.541099,-3.095563],[-18.116859,-6.302404,-4.102880],[-17.376764,-8.203599,-3.581511],[-19.373542,-39.292096,2.126752],[-15.523048,-39.299195,4.133953],[-13.327374,-38.588272,5.377229],[13.883723,-3.228801,17.232295],[13.150224,-6.452247,17.100540],[14.829602,-3.086810,15.482848],[-17.021127,-9.411765,-11.481223],[-16.614621,-9.225477,-11.764912],[-16.189702,-10.485853,-11.845444],[-21.506765,6.861966,-2.897467],[-14.157669,-23.672242,-10.798440],[-13.991520,-26.355478,-11.091487],[-14.557456,-26.030498,-9.443917],[24.040730,6.057030,-8.128762],[10.747813,22.423726,-25.858928],[9.732627,22.353135,-25.772441],[10.410652,22.707940,-25.227328],[2.816243,10.614037,-28.288049],[3.389058,11.363442,-28.224061],[-18.094407,-6.343158,-2.323496],[20.065676,7.795079,-0.637579],[1.997190,36.495190,7.991784],[2.498854,36.238545,8.628005],[7.265596,36.516743,-13.601588],[6.739801,36.086209,-14.299451],[6.474836,36.712712,-12.892254],[14.810677,-1.686145,15.886790],[0.730150,-1.040321,-25.677604],[1.154095,-1.195529,-25.287452],[1.100833,-2.204891,-25.169696],[11.873280,-18.500726,13.029401],[10.266965,-19.257495,14.948810],[-19.858869,1.567445,-10.130120],[-20.328836,2.981011,-10.507407],[-19.799216,1.195756,-10.490603],[-20.248489,3.991711,-10.927045],[-20.205053,4.446492,-10.363480],[1.869585,31.821400,16.681804],[1.690156,31.586804,17.418307],[2.105859,30.261983,18.187235],[16.392102,-12.283759,-7.977276],[-3.313601,-15.228669,-18.888339],[-3.378011,-17.262065,-18.359803],[19.844254,-37.425172,1.064249],[20.927878,-39.288240,0.976483],[-8.628823,27.830479,16.504498],[-8.498427,28.474980,16.243091],[-9.552857,28.216672,15.532518],[17.603635,25.224812,5.476922],[16.782786,-11.262893,-10.094993],[16.395646,-11.572540,-10.149387],[16.388291,-11.103261,-10.372835],[17.850821,27.008900,3.095197],[17.512435,27.219044,3.646198],[23.990672,8.671139,-7.694981],[7.039375,26.280713,-24.890298],[22.736510,19.753113,-3.440461],[21.521529,17.832932,-1.536337],[21.478091,17.521886,-2.957040],[3.112667,34.649480,-18.132031],[9.374271,6.568433,17.621841],[8.450484,6.487744,17.834373],[-17.851144,-6.787374,0.239398],[-17.738147,-5.129611,2.342663],[14.709691,-15.963134,8.047940],[-14.826491,11.551789,-24.645362],[-14.478247,9.630402,-24.323966],[-2.214326,6.930444,20.004149],[-2.658353,6.595216,19.455190],[-2.811913,5.885018,20.005660],[-21.800668,8.190957,-2.821696],[-9.281321,18.400483,20.567759],[-17.202842,-32.765878,-1.410321],[-7.967330,22.052754,-26.381511],[-7.662350,21.192281,-26.700192],[-8.547407,21.740498,-26.424029],[-13.776232,-25.439052,-0.307325],[-14.736662,-24.338194,-3.207881],[-14.461654,-26.592154,-1.996546],[18.856271,-5.565543,-8.360266],[19.324590,-4.362140,-8.546449],[19.026831,-5.023704,-7.962084],[-0.760086,-32.791316,10.008013],[-2.487167,-32.619708,9.291412],[-1.076347,-33.711579,9.844882],[-19.965877,18.618973,-1.187572],[-19.482589,18.674115,-0.027748],[-19.500585,19.781655,-0.648882],[21.397267,-0.823676,-8.955757],[20.794318,-2.033244,-8.230224],[21.205962,-0.006061,-8.883928],[-18.009872,19.941937,-21.611518],[-14.667490,29.314526,-17.980405],[-13.924225,29.230160,-19.910478],[-14.306943,28.261517,-19.377631],[-9.869134,16.597623,-27.399831],[-8.923702,16.575192,-27.262309],[-5.650714,34.944257,-16.325200],[-5.473043,33.298672,-19.065270],[1.418100,35.347508,11.548059],[-7.747676,25.383538,-25.616702],[15.273812,2.779237,15.157907],[-1.055194,-27.788657,12.335914],[-20.736934,5.668523,-2.390171],[2.547937,12.853005,22.607659],[3.814938,13.814988,22.333966],[4.206822,14.798074,22.309430],[9.186290,-23.947711,7.594762],[12.347231,33.199643,3.442154],[12.596710,33.586819,2.903946],[11.942769,33.621274,2.866494],[4.956759,36.256428,5.193021],[5.934089,35.762753,5.568181],[6.109570,35.885922,4.454530],[20.958609,4.634732,-10.856523],[10.695265,-9.350198,17.536872],[10.521983,-8.058471,17.809954],[10.165822,-7.960292,17.767280],[-10.627959,-13.812465,-15.417041],[-10.313540,-14.038966,-15.936231],[-10.148515,-14.477237,-15.602338],[-6.420272,-0.110366,-24.693292],[10.439397,36.122479,-10.133402],[10.025831,36.182187,-11.098469],[9.838114,36.669942,-9.550042],[11.022692,7.047536,17.462687],[11.516675,6.788739,17.629733],[5.069196,-17.311900,-17.606906],[5.634284,-16.695268,-17.037282],[5.206070,-17.343557,-17.044236],[12.713348,33.948064,0.102584],[13.023850,33.495236,0.356832],[1.427151,8.101384,-27.605390],[1.759051,7.204324,-27.578967],[1.343404,7.159730,-27.913615],[0.479087,-6.355174,23.099088],[1.418224,-6.295259,22.838119],[1.227867,-5.289130,23.176824],[17.388791,-5.012996,-0.461123],[17.441977,-4.140582,-0.554026],[17.278727,1.422745,9.306437],[17.360348,2.459050,7.123877],[14.591273,-24.146215,-9.492890],[14.891921,-19.084770,-10.143634],[10.649903,31.192792,11.533353],[-2.225901,-7.416930,22.428761],[6.123051,6.823804,17.761738],[-18.502200,16.899754,-19.116841],[-3.395479,28.096257,-24.148101],[0.920687,35.190312,12.559946],[0.623772,35.528531,11.794842],[0.043505,34.656956,12.877207],[-4.336940,28.116475,18.625917],[-5.823964,28.410954,18.057724],[-4.456258,27.588597,18.720244],[1.511654,-33.406832,9.685237],[5.840313,6.540528,18.740489],[8.248962,-28.357915,7.512504],[-19.907119,7.023934,-2.434283],[-20.014184,6.759270,-1.373719],[-19.982394,7.409611,-1.908465],[-19.492160,-2.975200,-9.177554],[6.896284,29.440068,-22.526160],[6.244156,29.436482,-23.137195],[6.390376,30.053311,-22.475833],[-14.621666,-14.509670,-11.794288],[-14.129249,-14.474538,-12.003625],[-3.052723,-25.401178,-18.291207],[-5.083537,-24.079540,-17.611846],[-3.704695,-23.764569,-17.989480],[-18.999751,18.390927,2.041377],[19.347605,11.722169,1.941021],[20.342049,12.348340,0.822612],[12.935324,33.349477,1.313030],[12.229421,34.243977,0.896831],[-1.878237,2.975281,24.803569],[-6.043314,19.986977,-27.426547],[-6.644634,20.051663,-26.956409],[-0.425493,36.488789,-15.778119],[6.459493,-31.368229,7.893879],[5.153816,-32.175875,8.343238],[-13.278125,26.673741,11.454039],[-13.689441,26.942605,10.664528],[-13.946236,26.483136,10.592904],[-4.718523,30.925381,-22.216706],[14.943028,22.354081,9.977586],[8.586977,-16.871122,-15.720210],[8.594145,-16.293754,-15.765376],[-13.419517,5.470029,16.584613],[-14.048779,-8.737479,-14.953006],[-13.867715,-7.838828,-14.843961],[-13.689502,-8.328717,-15.416266],[-5.518959,-11.061818,19.400002],[-6.683658,-11.258636,18.424312],[-5.068624,-13.343009,19.754540],[10.482925,-16.229074,16.211221],[-7.649920,14.837781,-27.643041],[-8.445154,14.251965,-27.517787],[19.633921,28.578397,-9.147039],[20.202101,28.837392,-6.721335],[20.411305,28.124142,-6.817761],[-7.103794,3.937302,-26.473615],[-5.593155,2.531438,-26.127702],[-6.686537,2.326123,-25.778888],[21.011012,21.315217,-13.864030],[21.257933,20.506074,-13.221052],[9.235714,36.512387,-10.163172],[19.447703,17.254834,2.022853],[20.393695,17.130376,0.128261],[18.347844,4.459187,4.385114],[18.538121,4.153599,3.718730],[-8.551316,-39.286828,8.795494],[-9.027373,-38.103461,8.182952],[-9.961039,-39.290902,7.977101],[-11.978292,33.470563,-14.838559],[-12.649973,33.086179,-15.770839],[4.134672,-10.016641,19.537309],[3.813577,-9.795978,19.268611],[14.532285,-18.224660,0.614994],[13.969910,-17.950835,1.878902],[13.707244,-18.611161,2.161012],[18.725276,10.361424,3.775534],[19.134137,11.237530,3.662516],[18.639390,10.843816,4.386456],[-19.042575,3.326974,-2.835508],[-19.375661,4.470246,-2.235525],[-19.780641,4.390073,-2.637149],[-3.458654,3.453336,21.586980],[-3.688265,4.087933,20.789926],[-4.702399,3.478703,20.462834],[-16.465799,25.285863,-21.004848],[-16.336129,23.189988,-22.582688],[-16.665855,23.637372,-21.507617],[18.393964,-0.962516,-14.360202],[18.963424,-0.072273,-14.493953],[18.720067,-0.776649,-13.522109],[2.798039,17.262185,-27.731973],[2.422217,17.839135,-27.564870],[9.863986,-2.379276,-21.610715],[8.914238,-2.871242,-21.931048],[0.875913,37.239949,7.636054],[1.743541,37.016034,6.477268],[1.322983,37.391553,6.453726],[8.262851,9.494389,-26.947965],[9.029084,9.550511,-27.142219],[20.260793,23.113312,-14.569776],[20.595706,24.410493,-13.420901],[17.743649,9.244542,7.690629],[17.990187,10.785531,6.832461],[17.566392,13.247464,7.750858],[-14.267226,-29.912067,0.035782],[-13.746831,-28.217062,-0.170542],[6.285002,0.228955,-24.691747],[6.724089,-0.439357,-23.919265],[-14.051254,-14.919805,-12.377616],[-13.819192,-14.648134,-12.508227],[17.829413,18.921769,5.503037],[17.615954,18.806264,6.415983],[17.849614,18.032918,5.944595],[-14.133944,10.184678,-24.761622],[-6.060583,36.264638,-13.819684],[-7.123280,36.388257,-13.485864],[-6.297078,36.826985,-12.398200],[-9.475413,-7.348399,-18.415067],[-8.781986,-7.643222,-19.441188],[-9.260889,-8.177556,-18.807910],[2.301369,-16.565131,-18.599397],[2.639409,-16.560447,-19.005918],[11.892014,6.641995,17.595815],[11.584708,7.316449,17.925706],[11.547389,7.016366,18.028686],[6.378469,31.360982,14.770026],[7.510935,31.480046,14.154879],[6.824184,31.887891,13.633491],[19.938086,5.465680,-16.677241],[20.569613,6.412804,-16.336997],[19.769067,4.915623,-15.936563],[-14.889494,-5.884122,-15.584441],[-14.632635,-5.138387,-16.178792],[-14.363815,-5.838310,-15.782228],[13.071028,-38.720423,5.558238],[-14.178513,-13.432687,-12.481188],[10.387645,5.530591,18.778014],[-3.697405,17.046254,-27.847863],[-3.163489,17.313363,-27.654809],[-3.016837,16.572507,-28.281388],[-0.817620,-2.639301,-24.654735],[-1.069260,-3.231502,-23.995339],[-1.219916,-2.233909,-24.773471],[-5.557550,-9.306945,17.529529],[2.486699,38.361180,-4.519286],[3.153014,38.121976,-3.954841],[3.111625,38.471410,-5.250103],[6.265429,15.746030,-27.920228],[7.016295,15.155389,-27.967698],[11.216435,-13.741777,-16.131684],[10.456440,-12.649923,-16.054471],[11.384163,-12.314445,-16.335891],[-13.337759,34.322713,-5.000919],[-20.211318,14.711560,-17.951242],[17.920144,-7.555244,-7.498218],[15.882642,-13.363595,-9.490689],[16.188103,-13.168006,-9.202540],[16.150317,-12.998760,-8.872991],[20.005902,25.286027,-15.151298],[19.294007,25.862653,-16.442435],[9.159907,-8.768462,18.342100],[9.138349,-12.429755,17.870166],[3.751163,7.455979,17.714189],[-1.527300,27.113732,19.999253],[-1.610017,37.291432,4.793054],[19.226678,13.742577,2.009516],[19.090928,14.583237,2.028151],[19.399712,14.284966,2.653014],[21.016303,8.338044,-15.959382],[21.245238,8.501508,-15.164971],[3.019084,36.948895,3.636615],[-5.676591,26.611108,-25.065982],[-1.338735,-38.591593,-21.950120],[18.099631,-0.672923,0.940457],[18.499327,0.381711,2.203840],[21.054116,25.844537,-10.706968],[20.776969,24.609765,-12.322475],[-5.984719,4.463578,-26.416059],[-0.003171,26.719075,20.163037],[0.390764,27.065537,19.955842],[-0.704080,27.060319,20.328139],[6.467690,-2.724452,-22.503116],[6.131083,-2.096504,-23.204196],[5.435242,21.942342,-26.833228],[5.726585,22.684251,-26.749244],[6.371294,22.504174,-26.522853],[-6.383046,21.822816,-26.808871],[-5.902495,22.597890,-26.658057],[16.230769,-1.707767,-16.763780],[12.718536,-12.653159,-14.571485],[13.060439,-12.327880,-14.021197],[3.493848,-3.497585,24.748313],[4.493916,-3.327110,22.230792],[4.106011,-3.150882,23.400722],[0.024914,-5.276489,23.252908],[0.940260,-5.102338,23.583261],[-13.024194,10.061711,-25.390662],[-17.795818,21.950452,4.957649],[-17.075401,21.072289,6.419188],[-15.131047,-25.082419,-4.832281],[-15.418368,-27.741000,-3.869575],[-2.215852,29.290997,19.158833],[-1.731650,28.707883,19.831981],[18.992343,2.945843,0.323402],[19.172789,3.658826,0.763461],[12.795895,5.588483,16.767819],[3.737084,34.989331,-16.020860],[3.119632,25.060937,-25.987067],[2.867607,25.566487,-25.926522],[-16.639678,8.341439,-22.377845],[-16.360097,8.633466,-23.199054],[-20.148442,-37.870922,1.093310],[-21.076738,-39.291719,0.799052],[-4.581909,-7.740220,21.202067],[-17.354055,1.825570,-17.619647],[-18.001163,2.915650,-17.477338],[-5.124893,-10.613471,19.382016],[-3.956673,-11.903001,20.576648],[-4.078653,-11.127467,20.089877],[3.997575,31.141743,16.514914],[1.477985,-3.299907,-24.235404],[0.865559,-3.972034,-23.849340],[0.613363,-3.036598,-24.570891],[1.225237,3.829709,25.376174],[1.833864,3.098923,24.844077],[-16.475610,7.617421,-21.798118],[-20.244533,2.886708,-9.643539],[-20.122798,4.106320,-9.928508],[18.359219,0.982304,-15.621427],[18.887061,0.886491,-15.105227],[12.202192,29.553677,11.046581],[12.366807,29.586934,10.146543],[9.021106,-20.880313,15.015707],[-19.641109,3.425462,-14.550773],[6.744923,21.531934,20.988627],[5.667074,20.674485,21.503091],[6.254361,19.328614,21.742959],[22.523824,18.658009,-6.110033],[21.900344,17.725919,-7.023319],[22.678635,19.469788,-7.141095],[14.120965,-3.107524,-18.046971],[14.139624,-5.224954,-16.534617],[19.375901,8.354272,1.766370],[2.457170,34.208012,-19.027642],[7.938431,29.131665,-22.537211],[16.330016,-12.705749,-9.605798],[16.363137,-12.825795,-9.094721],[16.063269,-12.982349,-9.714444],[3.648064,-11.300187,18.522902],[3.301872,-11.048883,19.309691],[4.381480,-10.889398,18.166871],[16.529694,-12.005210,-9.841761],[16.124242,-12.234866,-10.342184],[-14.354191,14.647977,-25.287723],[-14.636620,14.125676,-25.143949],[0.268006,14.307725,23.296529],[-0.296346,-8.491126,22.962359],[-0.474643,-7.976877,23.176608],[18.106204,7.737485,6.224095],[18.444405,6.872025,4.847473],[18.318915,9.026292,5.955363],[16.871249,-8.970903,-11.302404],[16.793902,-9.624631,-11.177163],[16.221112,-9.874969,-11.359492],[-0.911536,22.228413,-26.787068],[-1.468908,22.128709,-27.230935],[14.727450,-6.254712,-16.172093],[7.960947,-6.593576,-20.198995],[8.096174,37.218152,-8.116322],[8.803778,36.908108,-6.982689],[9.118543,37.017468,-7.911721],[4.856784,7.214764,17.915729],[-7.209979,-32.374680,7.196321],[-7.155568,-30.942184,7.623147],[-9.152575,-29.051101,6.953248],[17.944043,17.570386,5.280807],[17.932612,17.535722,6.118903],[19.405558,5.030148,0.653763],[19.251065,5.233273,1.465158],[18.961375,4.497109,1.336089],[14.354909,7.413262,-23.944690],[1.801529,-23.398432,-18.210750],[-1.480713,34.230916,-18.445592],[-1.988150,35.278867,-17.638331],[-1.607388,35.517758,-16.447667],[-0.140186,-16.915233,-19.216718],[-0.514307,-17.184142,-19.339204],[10.266459,7.554822,-26.483192],[10.223488,9.187089,-26.777186],[-13.641912,5.087819,16.692359],[10.778044,-23.902639,-14.565543],[8.855348,-22.586638,-15.474051],[7.387926,14.039483,21.593106],[-0.613779,-18.177455,-18.965161],[15.611222,-10.715610,-12.468442],[15.205053,-10.999639,-12.584099],[-14.480224,-14.126577,-11.778395],[-14.895626,-13.996410,-11.669724],[-14.728276,-13.724145,-11.687728],[-16.299737,19.699261,8.440597],[-16.129382,20.307736,8.708219],[-16.621654,19.715359,8.023256],[-21.009582,13.227074,-3.868383],[-20.478986,13.608193,-4.506675],[4.881878,-7.909656,21.270114],[4.628076,-8.608018,21.279977],[5.499938,-8.549442,20.691691],[17.117368,17.885663,7.305649],[19.027953,14.237511,-20.172757],[18.379348,12.025094,-20.682395],[18.353801,14.220250,-21.061780],[8.832334,-25.645498,7.037597],[9.023028,-24.447136,7.259716],[7.194255,-26.586897,7.958446],[-10.937557,29.135709,-21.755490],[-11.987541,29.267697,-21.206813],[19.951844,13.636906,0.715075],[19.715829,12.582707,1.387917],[20.258164,13.567567,-0.176279],[-8.298952,25.525590,18.425261],[-5.725764,27.497704,18.219934],[-8.042948,26.969567,17.388592],[8.967688,16.543664,-27.118447],[18.981799,20.297574,3.136253],[19.774524,19.870049,0.972535],[-9.440416,-2.138374,-21.509351],[-9.119287,-1.617870,-22.256293],[-15.979672,-6.294206,10.658993],[-16.962117,-5.299556,8.588250],[-16.062236,-9.000051,9.416067],[19.149857,29.070981,-10.872428],[20.195802,26.850495,-12.669956],[18.807820,28.300870,-12.527200],[4.104144,38.062108,-7.018082],[4.112365,38.502324,-8.367512],[2.286711,-10.019798,21.224563],[3.854213,-10.055909,20.329734],[23.117131,16.804826,-6.073074],[22.664414,17.960824,-5.273063],[-3.237968,-8.955047,-20.670903],[-2.910135,-8.944951,-21.103562],[-2.871374,-10.237054,-20.519095],[-12.971209,32.828168,-14.576461],[-12.579987,33.419537,-14.388089],[14.302248,18.124879,-25.760144],[13.746417,16.789677,-25.914586],[20.743699,8.766843,-5.776346],[21.342299,9.941334,-5.359462],[20.487468,8.627087,-4.093935],[20.538905,3.621007,-7.468254],[19.395032,26.838662,-0.308891],[18.977687,28.281911,-1.714295],[18.551471,28.228284,-0.276392],[-20.206939,24.458638,-8.045820],[5.900786,36.571019,-1.617500],[5.746059,-2.938720,-23.136880],[-9.685269,-15.195249,17.349721],[-10.494553,36.721875,-9.507943],[-9.892295,36.666180,-8.092482],[18.059075,-1.025001,3.261414],[17.813136,-2.987975,3.610107],[17.942055,14.394742,6.134411],[18.227994,13.550713,5.561185],[-2.900819,-3.852367,24.658195],[-2.392672,-3.017825,24.339120],[-2.422489,-3.797508,24.795781],[10.536571,23.861397,17.933517],[-1.068048,-6.264724,-22.333449],[-1.091217,-4.643489,-23.379714],[-0.819531,-6.045499,-22.771857],[16.117306,14.473706,11.395343],[15.710281,17.642312,10.897016],[6.863097,10.706181,-27.897250],[14.997436,31.381024,3.374648],[14.723364,30.305531,4.625840],[-0.142065,-15.939618,21.223653],[-1.296007,-14.376369,21.457253],[-1.686533,-15.668603,21.071183],[19.512477,6.231190,0.606139],[19.512120,6.164548,1.298406],[12.932623,34.649861,-4.503003],[-26.167211,-38.185830,-4.337141],[11.801578,-9.617406,-17.147523],[11.209286,16.045766,19.685023],[13.229889,15.500519,18.167889],[10.821801,16.913117,19.978312],[-3.086301,-3.352985,-23.470202],[-3.906366,-2.952743,-23.422988],[-3.911912,-2.190276,-23.707992],[0.701267,34.089680,14.067219],[1.841900,33.659230,14.597096],[1.323530,34.759892,13.336167],[-15.376370,20.889867,9.930798],[-16.423858,19.246384,8.727433],[-20.889962,14.364773,-7.518961],[-20.797321,15.972691,-7.415888],[-20.562883,15.054833,-9.051800],[2.265909,-14.389444,-19.367682],[0.672105,-28.700313,11.784408],[0.020968,-28.368743,12.064118],[8.095921,-9.920253,-19.093404],[-4.951774,-27.668096,9.903107],[-5.200153,-26.140526,10.723783],[-6.860465,-25.586199,9.326495],[0.276448,36.836163,7.603560],[-0.451206,37.248143,6.280566],[-0.854605,36.999638,7.497732],[11.592866,-31.908355,3.077466],[8.834810,-33.137495,5.552312],[23.240805,12.895852,-9.392302],[22.665234,11.300320,-8.569555],[22.593915,10.366887,-9.452372],[-14.676921,-13.151527,-12.040106],[-14.766432,-13.695014,-12.105288],[-14.830606,-13.426372,-11.745869],[-17.602889,-6.691314,-11.615576],[19.971246,27.793751,-10.051173],[20.367850,27.212449,-10.511735],[20.082459,27.334134,-11.170898],[-5.687702,-9.746085,19.871306],[-6.972394,-9.583070,18.675138],[-5.018716,-9.970634,19.586617],[3.784605,-7.042550,-21.188426],[3.862934,-8.511070,-20.138961],[3.498269,-8.063892,-20.854373],[-10.349089,-3.702068,-20.389094],[-9.967108,-2.427226,-21.088346],[-16.643308,9.706143,-22.036878],[13.676854,-21.733428,-11.991049],[-13.119930,34.039647,-1.753838],[19.516455,10.748944,-19.856618],[-2.219514,37.400212,2.242607],[15.533555,-13.615138,7.290955],[-17.821166,-4.203719,-1.401304],[-18.552737,-4.622663,-3.060586],[17.210685,8.340012,9.359933],[17.407889,5.812577,9.046826],[-20.741199,6.461251,-3.657248],[-21.884923,8.054997,-4.369742],[-21.841335,7.524804,-4.897289],[-6.057612,37.317837,-11.720608],[-6.025734,37.872601,-9.444185],[-16.965976,-32.454513,-11.590804],[-16.854129,-30.799828,-7.832432],[14.664950,3.556344,16.368033],[15.946936,11.703641,13.383297],[-3.451751,20.163769,-27.284053],[-2.843817,19.267884,-27.499511],[-6.103286,6.939500,-27.266860],[-7.162879,7.780488,-27.118300],[-6.800674,8.091824,-27.805873],[-15.075495,-13.289941,-11.967811],[15.893768,-11.261531,-11.262489],[16.133168,-12.064504,-10.907334],[15.608004,-12.152883,-11.050971],[22.606311,14.099896,-12.287159],[22.254143,14.119370,-11.664662],[22.750266,13.159306,-11.660795],[12.786244,23.146046,15.301330],[-5.476305,38.053357,-8.738524],[-6.111488,38.390630,-8.035335],[20.902583,5.529164,-2.669885],[12.488045,33.460416,2.209613],[11.983199,34.108006,2.359762],[19.727565,1.815133,-13.779897],[19.030654,0.992421,-14.049813],[-15.192218,32.825902,-10.154885],[-14.965552,32.099728,-13.473571],[-16.263452,31.755650,-11.156149],[-8.110730,-4.307651,20.631608],[-9.205155,-5.283273,19.899121],[-8.390385,-5.465986,19.946389],[-7.315820,-9.434385,17.918441],[-7.121705,-9.321836,17.717097],[-0.578283,21.889104,22.090827],[-14.454589,20.383054,13.259111],[-15.714027,18.141381,10.586931],[-14.982168,-15.744659,6.417729],[-14.950383,-15.296390,7.599885],[-15.678838,-13.566474,6.020434],[16.953248,-11.343023,-8.712336],[-15.998975,-12.733012,-9.433770],[-15.756338,-13.415210,-10.270144],[-15.563735,-13.434499,-9.962309],[-15.523147,-33.264868,-15.634105],[-20.180194,-37.714710,-16.560353],[-20.050979,23.416703,-8.169434],[-20.405524,22.716981,-9.914666],[2.363073,19.029340,-28.043994],[5.393922,5.420884,18.183240],[6.682705,5.643319,19.004525],[1.414832,-6.804282,-22.012389],[1.327700,-7.721353,-21.606177],[21.818293,24.234544,-8.311588],[21.863602,26.145249,-8.307396],[8.666140,-7.845706,-19.774695],[6.383300,-20.670497,17.917373],[4.715290,-21.839604,17.363368],[2.595871,-9.854495,-20.820003],[2.148571,-9.382362,-20.807633],[-13.005827,8.019479,17.636666],[-14.192560,7.463357,16.410603],[10.457053,7.485165,17.141201],[10.706409,6.921193,17.121343],[9.249058,-28.367662,7.019536],[-0.316435,-11.889631,21.339190],[-0.393320,-11.572116,20.728963],[-1.000920,-11.642270,20.884980],[19.390157,6.615266,1.970467],[-4.050031,-1.204108,-24.173419],[-3.732111,23.390820,-26.523414],[6.939506,35.140355,7.630325],[7.265271,34.894376,8.307579],[7.430106,34.859586,7.242113],[15.852378,27.973775,4.744780],[16.292458,26.968007,6.541250],[1.528195,-11.508502,20.614491],[-18.564763,-4.896280,-3.209585],[-5.286081,9.586663,-27.808597],[21.137769,-0.216644,-5.818559],[20.108683,0.282788,-5.502464],[20.095406,22.724248,-15.409991],[20.049130,21.320679,-16.385259],[9.309995,36.762471,-6.567286],[9.784885,36.608319,-7.055776],[-12.488224,27.476418,-22.554090],[-21.913049,3.503159,-7.211751],[-21.879905,2.966565,-8.070567],[-21.239127,0.232045,-7.645248],[14.011394,32.550389,-13.961320],[-4.513393,24.187218,-26.639274],[-5.105722,24.311661,-26.311996],[7.662056,24.803735,-25.714248],[1.778050,-30.963018,10.270960],[1.233417,-30.054860,11.047755],[-1.864147,-34.998960,10.156886],[-2.562102,-17.144578,-18.780480],[19.110358,12.140454,3.001318],[18.692813,11.750512,3.914367],[8.905469,35.632687,-0.008783],[9.573087,35.455899,-1.094907],[9.203342,35.823064,-0.665207],[8.992479,5.340958,19.198779],[8.901853,5.730778,19.107486],[7.917445,5.821995,19.168616],[-17.414739,8.355645,-20.983981],[-16.539056,6.874177,-21.155219],[-5.583859,6.573422,18.602577],[-4.358256,7.005982,17.659057],[-4.790385,7.148202,18.008256],[-18.265764,0.510201,1.212973],[-18.507293,1.544785,1.134314],[0.824475,35.927914,-16.764020],[10.926026,-12.092445,17.083834],[10.375079,-10.316844,17.489921],[10.015221,-10.646322,17.676138],[6.948785,-4.400916,20.457236],[8.498310,-5.688728,19.723775],[7.298963,-4.261520,20.705575],[-2.092478,20.330350,-27.462724],[-1.803097,19.031747,-27.839486],[-1.378317,-14.908321,-19.348744],[-0.740649,-13.980621,-19.729989],[3.729753,-25.749487,12.944692],[-20.325763,22.443619,-15.050071],[-20.767368,21.269791,-14.838910],[17.181205,21.533421,-21.723920],[17.625102,20.605790,-22.116839],[15.247293,-25.404581,-5.541042],[15.096636,-26.365381,-7.597773],[15.096545,-24.591071,-7.273893],[-19.480285,15.942654,-0.640273],[-20.238492,16.133828,-2.160574],[-19.821412,15.342538,-1.435227],[7.031038,-34.663618,7.273740],[13.264172,-12.919053,13.262101],[14.062063,-10.633678,12.608553],[13.291344,-10.554876,14.695346],[-0.245110,0.792569,27.387744],[7.314841,9.052014,-27.418489],[6.588065,7.638734,-27.467187],[17.336766,18.348634,6.954654],[20.399756,25.155171,-14.075196],[20.402077,26.301835,-13.946364],[11.417390,34.742131,-13.446069],[18.988999,24.887551,-18.047957],[21.027674,17.928063,-14.075728],[21.447621,16.725030,-13.817666],[-2.379741,26.039292,-25.820972],[-2.906029,27.240453,-24.983645],[1.360546,37.406392,5.026846],[17.317961,15.119954,7.307458],[17.124585,15.870866,8.011371],[17.330535,15.129773,8.120117],[3.117425,5.787942,19.722383],[3.154258,4.549058,21.033507],[-20.255664,15.342656,-3.167835],[21.369206,8.216344,-2.721224],[12.375048,34.645924,-2.438169],[12.422710,28.775677,11.620097],[2.466772,-22.799964,17.811937],[-22.299300,5.435895,-6.606245],[-22.464708,5.532414,-6.989134],[15.155731,-23.046873,-5.965499],[8.900285,32.264767,11.111309],[9.014122,32.083256,12.083735],[1.402324,-8.799001,-20.958077],[1.808191,-9.949058,-20.700618],[1.250436,-10.600206,-20.538920],[4.242924,37.709569,-11.025138],[5.474799,37.650647,-11.121217],[4.942221,37.466382,-12.020960],[-10.024112,-13.793702,-15.881936],[-9.550246,-14.577588,-16.002353],[11.688796,11.964013,19.565728],[9.804320,12.962456,20.673217],[-1.995028,9.308717,-28.477656],[-5.438177,-6.862815,20.654244],[-6.899763,-7.169645,19.515428],[-6.605863,-7.356746,19.694385],[7.291737,-17.714338,-15.955474],[7.945554,-17.038703,-15.758250],[10.197589,17.554764,-27.083816],[11.025799,18.435609,-26.695199],[-3.477918,13.746323,22.367105],[-2.857928,10.602105,21.688134],[-1.778313,9.967499,22.222514],[-28.035897,-39.289788,-7.936333],[-27.672393,-38.360245,-7.057625],[-27.015956,-38.096666,-8.613290],[-11.306794,9.079850,-26.255021],[-12.927044,10.423218,-26.176559],[3.495306,12.598305,22.030791],[15.298240,27.748769,-19.316173],[14.528258,28.165807,-19.676309],[14.533391,29.748532,-17.778016],[5.133218,6.661774,-27.526425],[-3.717042,6.856312,17.715906],[11.368373,-22.019051,5.168677],[11.070346,-22.668617,5.227080],[9.503266,24.099389,-25.488221],[10.472852,24.244469,-25.240939],[20.998339,7.639714,-4.692462],[19.593631,4.417878,-5.683605],[19.791331,5.806088,-4.097196],[9.601191,-2.103515,20.632512],[3.342596,-11.729547,-19.694316],[3.065497,-12.546096,-19.648450],[7.598138,6.498681,17.933555],[1.802576,-3.942584,-23.685369],[1.983394,-4.438731,-23.356225],[1.567261,-5.584340,-22.574130],[-13.544247,-15.459422,-12.594023],[-17.407014,17.162534,7.427368],[-0.337501,-9.043956,22.737672],[-12.397983,3.643170,18.480077],[6.011707,23.324361,-26.457637],[-20.803884,10.639180,-9.401092],[-21.325408,10.492390,-10.166044],[2.152122,29.181927,18.944640],[2.126286,27.879910,19.306161],[2.488113,28.892949,18.603877],[16.774310,-7.378793,-12.495328],[16.498544,-8.153999,-11.651546],[8.331449,33.337094,10.969463],[8.874809,32.878522,10.757576],[8.697094,33.123967,10.242162],[-14.937734,-3.106578,-16.674745],[-15.408975,-3.359901,-16.230609],[1.918985,-9.327152,-21.344188],[6.162261,-17.874004,-16.525846],[6.083072,-18.740236,-16.384248],[9.317278,25.489449,-24.573514],[-17.832324,9.480805,-20.813211],[-17.817985,7.510228,-20.418429],[5.049713,-26.005512,11.176596],[6.438680,-25.182202,10.693111],[-13.511345,12.247945,-25.582665],[17.160718,30.607060,-11.921046],[17.934228,30.317258,-10.430242],[17.962895,29.841099,-12.584669],[-7.195302,23.798535,-26.322234],[-5.850518,-7.301173,20.383897],[-6.593145,-7.629415,19.798587],[11.867432,32.997288,6.953076],[11.598112,32.424214,8.134394],[-15.706957,-11.438815,-11.047025],[-15.439125,-11.477607,-11.521394],[-15.698632,-11.827647,-11.430192],[-5.112516,7.175431,-27.729295],[-6.144441,10.261933,-27.972314],[4.634029,34.861508,-16.265508],[-4.524660,38.176594,-10.535655],[-4.949532,37.643452,-10.618990],[-4.999768,38.096173,-9.160093],[-1.909855,-10.049121,20.691768],[-1.750018,-9.795074,20.310416],[15.390052,30.615002,-14.861302],[16.457358,29.863911,-15.205943],[22.952662,8.001431,-8.279094],[11.346754,7.056008,18.132995],[-10.222283,-16.389957,-15.166003],[-9.701906,-16.836602,-14.998239],[-10.757705,-16.448800,-14.613545],[15.814253,24.661195,-21.259158],[2.643544,8.135487,19.278039],[-18.046077,-8.306548,-9.701794],[-18.167083,-7.356208,-10.089499],[-17.306627,-7.786384,-10.136486],[18.505830,10.141980,4.943040],[18.347514,9.682336,5.273651],[18.538953,9.365929,4.828873],[17.406432,-7.938102,-3.778979],[17.721989,-7.024673,-5.205824],[17.958510,-6.381326,-4.239903],[19.478452,12.751630,-19.363938],[-5.258234,14.923463,-28.027301],[17.675195,-8.337032,-7.204890],[18.154216,-7.160466,-7.023412],[18.024707,-7.812234,-6.852682],[4.713346,-18.597533,20.129907],[3.961805,-16.898597,20.472568],[3.902286,-19.661344,20.694758],[-15.991413,15.703130,-23.780751],[-15.319971,15.134766,-24.801856],[-18.705249,15.569562,3.556036],[-18.031413,16.392220,4.806917],[-18.638925,16.135827,2.957949],[1.778348,37.832677,-12.704262],[2.317633,38.362073,-11.012329],[2.211412,37.735944,-12.364648],[-9.598682,-9.269431,-18.058753],[-9.357761,-8.757449,-18.381969],[4.873508,7.292451,17.255551],[5.479681,7.921963,17.657019],[0.297926,7.332532,-27.888396],[8.061272,-20.311950,16.375691],[5.901568,-21.383889,16.942404],[-16.726445,14.107728,9.383064],[-15.767226,17.045365,11.053534],[-16.823762,16.356911,8.868171],[-7.603422,-5.124078,20.073895],[4.897706,-27.394529,10.189778],[2.455240,-28.213936,11.382385],[-20.251849,-2.247333,-4.721346],[-19.916354,-2.758304,-3.722373],[-19.593530,-2.138194,-3.080679],[4.621198,-2.724265,22.010657],[4.566029,-3.507484,21.357945],[6.864910,37.233159,-12.128193],[6.430943,37.871800,-10.005808],[16.803223,19.698800,7.607413],[17.074391,20.150620,7.479873],[16.607508,20.410500,7.669106],[13.449236,13.677949,-25.798955],[-16.858829,20.198926,7.553388],[-3.700720,24.892407,-26.028983],[-1.977705,-3.325729,23.371190],[-2.401896,-3.209605,23.376975],[10.108795,-22.446071,9.328115],[18.496825,-2.315555,-13.022677],[19.035798,-1.767371,-12.612609],[1.013281,3.790337,-26.853122],[13.048071,30.404843,9.207044],[12.606562,30.537419,9.526171],[-17.813281,1.809064,-17.246140],[-0.219186,-2.845535,-24.360917],[-19.444829,23.782849,-2.837922],[-11.323139,23.547524,-25.129373],[20.601573,4.208832,-4.621705],[21.319546,4.559304,-4.284124],[3.657104,27.727742,-24.969766],[3.838901,26.994000,-25.280768],[3.236537,26.845654,-25.079330],[10.453455,34.844311,-14.623918],[10.708793,34.489583,-15.204028],[10.106334,34.424596,-15.753465],[-5.260544,-28.509926,8.894976],[-2.357841,-30.605982,10.082592],[-15.007292,-0.303855,15.714754],[0.038304,11.128228,-27.989594],[1.568335,18.458623,22.781230],[-0.556477,16.621262,23.061192],[-1.567007,1.998349,-26.495666],[-1.954673,1.059052,-26.523803],[18.122994,25.652295,3.226643],[12.272712,35.198476,-7.912950],[13.529306,34.769734,-8.077065],[12.463346,35.402776,-8.592283],[0.988242,30.489567,-23.185187],[1.172267,30.979779,-22.508878],[-5.389685,-9.470876,20.507924],[-4.721890,-9.821758,20.562106],[-3.877563,-9.275323,21.386016],[20.755696,-0.344653,-5.302169],[6.913820,18.677045,-27.572122],[4.657796,16.423173,-28.315692],[5.381717,8.053494,18.216596],[6.151217,8.239041,17.918760],[-9.508870,4.963467,19.230784],[-8.448846,4.681962,19.293700],[-8.263924,4.978757,19.333072],[18.208377,4.872170,4.669639],[18.634890,7.881806,4.858070],[18.377211,7.551644,4.935474],[18.618783,7.491105,4.545563],[6.062211,-0.195903,21.399520],[6.818623,0.881016,20.870252],[5.043608,1.418084,21.384469],[11.401068,11.585515,19.420285],[11.562685,-15.587856,14.718156],[19.936841,15.310567,-18.054050],[19.630503,13.075230,-17.993358],[19.867978,13.592744,-18.650868],[-1.026039,26.628937,20.155444],[-1.123555,27.112443,20.397840],[-15.074661,24.381196,-22.767182],[-0.993348,3.948632,-27.283820],[12.559379,3.833325,18.185845],[-18.682468,6.392445,-19.556838],[-18.943742,5.705724,-18.298856],[-19.245469,6.979214,-17.833669],[-14.513602,26.597195,-21.593980],[-14.062640,25.780350,-22.763244],[-14.651709,25.682420,-21.747140],[18.575087,24.058629,2.084622],[13.736459,32.958836,1.304380],[-20.609515,-1.998874,-6.170621],[-2.273977,29.202290,-24.195216],[-1.965941,29.786595,-23.427762],[-1.655406,28.624448,-24.287126],[-13.725917,23.503167,-23.897725],[-13.520779,22.873055,-24.730214],[-14.486914,23.028752,-23.926665],[7.962232,35.416516,-14.932979],[16.883931,16.180588,-23.267312],[-4.044939,21.156377,-26.976108],[10.854260,-16.783405,15.126465],[15.171880,23.813344,-22.411374],[14.981274,24.266049,-22.703071],[-16.442229,-10.775707,-10.483049],[17.483430,17.985902,6.488661],[2.959560,3.591992,22.171866],[3.047639,2.903161,22.495868],[5.739096,-3.764724,20.895955],[11.901669,26.678227,-23.109101],[12.943540,25.631825,-23.177094],[15.465092,31.812909,0.487050],[15.531162,32.048337,-1.270409],[1.430281,31.653416,-22.141429],[-13.119709,18.737153,-26.000003],[7.405740,11.026692,20.198115],[6.109860,11.534184,20.691686],[-7.755552,35.323621,-14.701551],[1.499916,-11.490247,-19.984675],[1.260609,-12.047900,-20.209657],[10.174192,27.457997,15.060317],[18.096770,-38.486868,2.863679],[18.378890,-39.289311,2.666584],[-5.825101,-28.670605,8.303144],[-3.180005,-30.827607,9.292407],[22.315762,18.552064,-3.814269],[1.493130,9.374673,-28.087613],[1.948942,8.585347,-28.250192],[20.397889,3.433346,-11.901603],[19.760674,0.938542,-11.775098],[20.452466,2.282098,-12.413755],[-7.646767,27.622395,-24.425263],[-6.727473,25.632115,-25.759555],[16.711093,-12.551046,-9.042784],[-13.059596,-14.536556,-13.192677],[-15.887161,-11.873529,8.363625],[-15.393126,-11.313995,9.922076],[-16.601236,-9.512159,7.718812],[-2.555154,24.576321,21.104335],[-1.239364,23.114022,21.938056],[-0.872261,24.686742,21.310962],[-6.159529,-36.645790,8.698739],[-7.012486,-36.869942,8.306303],[11.306218,-12.552301,-15.547921],[-20.635217,5.558934,-2.604688],[-20.370727,5.023106,-2.428568],[-12.981249,-17.841033,11.288654],[-13.426273,-16.324729,11.334152],[-13.713852,-17.593255,9.327887],[-7.298270,-5.643766,-20.559203],[19.626345,3.873852,-2.984210],[-18.423993,5.443021,-19.199056],[8.620977,34.219609,-16.931413],[16.666241,-10.743604,-10.331662],[16.380969,-10.722457,-10.614127],[16.463458,-10.124587,-10.568028],[9.539924,8.406510,19.200612],[8.209541,8.454774,18.947139],[2.793485,-9.322959,21.975957],[2.932944,-9.046901,21.987969],[16.174424,22.071854,-22.506518],[15.635376,21.220887,-23.411107],[20.346568,24.197087,-2.187686],[21.986714,23.383687,-3.892159],[21.570996,24.322156,-4.266467],[19.231299,5.789895,2.325446],[18.943064,5.112000,2.011615],[1.912069,34.485982,12.644916],[1.949515,34.385953,13.545649],[8.269236,-19.510099,17.286491],[2.515413,-12.435300,21.352006],[2.703153,33.004437,15.348889],[19.436559,7.013085,0.865700],[14.424907,-12.810615,11.161463],[13.840976,-15.178994,10.951100],[10.397072,-4.190017,19.929610],[-20.434148,11.182805,-4.347192],[-20.349059,10.802174,-2.626456],[21.976681,2.097005,-5.854301],[17.391986,22.954243,-20.954993],[18.030070,23.219228,-20.544351],[7.423015,4.704850,19.210643],[6.680011,5.048627,18.963891],[6.707789,4.625108,18.820483],[6.891070,10.206506,20.004159],[19.557683,0.918515,-12.748316],[-16.097383,23.064782,7.532658],[-21.105882,7.168282,-3.416758],[2.161321,-11.519553,19.818582],[2.617183,-11.783607,19.191365],[1.874549,-11.914165,19.505006],[-3.405899,23.486573,21.362208],[-9.904702,25.062871,17.617519],[-9.193920,24.598515,18.435986],[-9.173028,5.815835,-25.383231],[-10.070754,5.931821,-25.650699],[-10.141381,6.944401,-25.519300],[13.008901,9.896180,-25.327756],[12.182860,8.951268,-25.323564],[-18.558583,-6.467454,-10.150805],[-18.934385,-5.553951,-9.310813],[-21.200801,19.977898,-9.945481],[-21.183110,18.939557,-11.686285],[-19.230294,-3.894401,-10.455817],[0.487365,25.550790,20.841155],[18.017665,20.013852,-21.742217],[22.637826,11.237084,-10.200412],[23.270867,12.240002,-10.202171],[-8.694952,31.336407,-20.428765],[-1.748087,-3.899745,24.414689],[-1.766957,-4.387653,24.944415],[-1.902028,-3.252506,24.406503],[19.722071,2.143281,-7.581496],[19.647910,3.686558,-6.916994],[-20.844081,10.286111,-16.488040],[18.810807,15.410668,3.927586],[17.998515,15.481606,4.953885],[13.730069,33.014340,0.643398],[-15.760010,-8.074888,-13.311268],[-9.104780,6.414918,18.613104],[-11.133558,6.552899,18.117802],[-10.452623,6.398026,18.593336],[3.270872,-17.027387,-18.163175],[3.137751,-16.355680,-18.555841],[-12.105384,-4.543124,-18.511575],[-12.622773,-5.102969,-17.573354],[-12.731107,-4.006549,-18.012290],[18.658196,-6.009801,-7.041815],[19.111178,-5.399478,-7.444981],[14.363906,32.438695,1.716833],[15.024503,32.122250,1.576483],[-13.080013,-5.818259,-16.836059],[-22.540431,8.564378,-5.085494],[6.395650,-12.819436,18.674112],[6.924073,-13.344053,18.380263],[-5.968059,14.238415,-27.801311],[-6.252040,15.137490,-27.693601],[-16.521177,-10.385787,-11.357197],[-15.965460,-10.896001,-11.512763],[-16.370641,-10.739709,-11.263696],[-21.329648,15.015488,-12.113941],[-21.481534,12.793782,-12.039246],[-21.519094,13.678643,-11.470789],[18.540879,7.191205,3.692666],[19.548342,7.839200,3.086596],[19.225541,8.281823,3.459643],[5.822241,-11.382745,-18.955220],[6.297889,-11.790330,-18.533607],[15.429437,-14.223253,-1.085713],[-15.097240,-17.213140,-2.302900],[-14.850219,-20.093671,-2.883383],[-14.798644,-18.986139,-0.585460],[-0.447534,38.660718,-11.207828],[-0.431111,38.021229,-12.446377],[5.575782,-10.040473,-19.619514],[5.460183,-11.086368,-19.664123],[-5.212914,8.270631,18.658301],[-1.105032,28.251340,19.780988],[19.819678,7.673005,-1.370021],[20.190963,8.519707,-2.092396],[-18.795938,9.709656,5.022831],[-18.655130,8.620316,4.885890],[-18.488084,10.476235,5.396255],[8.993713,-3.537372,20.698281],[-12.052443,-32.467977,2.739259],[-8.770483,-32.968059,5.576902],[-10.037898,-31.391472,4.526341],[-1.509100,-4.021571,27.699359],[-0.249727,-4.370628,28.104188],[-0.984306,-3.800735,28.260219],[8.974797,9.051232,19.405719],[7.747574,8.697793,19.287879],[9.842153,1.107026,20.062037],[11.047850,1.838849,19.544139],[-2.553261,-4.643262,-22.967101],[-1.885729,-5.001460,-23.172999],[-2.002563,30.877110,-22.492696],[-1.569962,30.301335,-23.438909],[-10.097815,19.458886,-26.846583],[-9.377568,19.757996,-26.811334],[17.450295,-4.986192,-13.317500],[17.756861,-4.411136,-13.024505],[-23.804019,8.571385,-6.775808],[21.053397,10.290734,-3.445026],[20.655724,9.342549,-3.560486],[21.884764,10.742123,-5.243258],[5.466099,34.487057,10.929879],[16.119904,24.082757,-20.962577],[15.983644,23.343232,-21.986726],[22.096776,11.819474,-4.852993],[16.645312,-11.212371,-9.623770],[16.883397,-10.773053,-9.772729],[-2.176491,-8.761693,-21.357003],[-4.589052,-3.339614,21.593368],[-4.711203,-3.531822,21.263476],[-1.709190,-11.206825,-20.365518],[-1.123060,-11.877931,-20.359002],[9.812737,-12.949527,17.589846],[-19.497710,5.254319,-1.068364],[-3.284052,-2.491538,25.100791],[12.682844,33.262646,4.327200],[13.088136,32.536389,3.680802],[4.341119,-4.605468,-22.168956],[4.399741,-3.501949,-23.220716],[-1.092111,1.900029,-26.859920],[-1.068882,0.809182,-26.066472],[1.983872,22.517018,-26.976550],[-19.020528,3.172337,-0.016409],[-19.141494,3.715420,0.348797],[-17.020013,-3.985244,-14.366780],[-16.682927,-3.168502,-14.847884],[16.689791,17.330353,8.959039],[17.438748,-8.371995,2.009808],[17.435092,-8.257951,-1.137354],[16.613606,-0.893234,11.377448],[17.292657,-3.295329,7.964560],[17.322881,-0.882404,8.467378],[-17.439828,-7.670867,-5.427686],[14.300085,-13.278734,-12.595596],[14.159776,-13.286323,-13.035281],[9.449016,32.550633,-19.057733],[-23.014983,8.034173,-6.945442],[-22.553367,8.520310,-5.686278],[-21.170797,17.152409,-14.660996],[12.024355,33.869076,-14.696265],[11.253617,34.482793,-14.589623],[-20.911178,10.438893,-10.878083],[-20.890048,9.299500,-10.397263],[16.337823,-12.566787,-8.582341],[-17.665595,12.773175,7.394272],[-17.100749,10.502160,8.981768],[22.015210,20.919484,-9.425173],[-0.950333,-6.916719,-21.834117],[2.511340,5.405534,-27.187491],[3.462507,4.640652,-27.216674],[20.653529,25.421281,-12.639870],[11.618723,-12.816259,16.342023],[13.883799,4.131970,17.022799],[13.593000,4.835656,16.901044],[-22.819831,5.235978,-8.310376],[-23.238956,6.684441,-8.190836],[-23.219449,5.207883,-8.569786],[20.082494,2.456212,-8.244134],[22.871543,4.991490,-8.394659],[23.161685,6.753102,-8.082665],[10.066356,-16.883012,-14.754813],[10.464401,-16.794050,-14.485196],[11.734287,9.115960,-26.076217],[10.432089,6.908379,-25.863204],[11.564095,10.174168,-26.393367],[12.237194,-12.167802,15.901930],[11.687908,-13.753619,15.922548],[12.228641,-14.281072,14.400596],[3.579648,34.843411,11.295464],[-11.282511,35.741727,-7.045166],[-11.256516,35.700734,-5.837650],[10.660370,-16.044772,-14.716880],[7.937505,9.482636,19.506453],[10.821325,31.597760,-19.371718],[11.131056,30.782475,-19.763886],[10.925114,30.558392,-20.269258],[3.063008,-8.379636,-20.632466],[2.731451,-7.528344,-21.627975],[-11.417264,0.568475,-22.303823],[11.663247,-33.051521,3.268032],[13.421047,-8.426675,-15.818404],[13.505994,-8.422996,-15.235843],[-10.687291,12.380376,20.017508],[-10.011900,11.696038,19.951148],[-9.587840,12.504719,20.458022],[26.166425,-37.167204,-5.584270],[21.564166,-35.157859,-3.824285],[23.194833,-36.378216,-3.745788],[16.135827,6.293767,13.188609],[-21.726772,1.433766,-8.151107],[11.401635,33.799718,3.571478],[10.958618,34.019261,4.517726],[11.458539,33.719128,4.752795],[17.255351,-10.478553,-8.176069],[16.949002,-11.145494,-7.981229],[-14.924050,-4.226016,-16.550937],[-14.023564,-4.629056,-16.190833],[5.151278,36.661504,1.003402],[5.289237,36.371953,1.886789],[5.807350,36.395352,1.566909],[18.111323,22.656087,5.539354],[16.942631,22.854054,7.299305],[17.145629,21.712880,6.825085],[-3.896573,36.540356,-14.218654],[-18.083438,13.253533,5.341602],[-18.142200,12.248830,5.593613],[-17.814626,13.618436,6.107040],[-3.522296,19.513367,-27.573909],[2.902822,30.024602,-23.286452],[2.971775,29.517819,-23.830606],[2.502601,29.483983,-23.531508],[-18.264182,13.820821,5.647692],[-14.393318,-8.061004,-14.664907],[-14.496083,-7.278987,-14.849732],[-5.553399,-31.401932,8.155273],[-8.308742,-28.394870,7.452002],[18.278214,-6.515367,-7.385263],[18.633137,-6.091350,-7.636389],[-2.608122,37.302548,1.327863],[-1.961954,37.821423,1.387934],[2.223125,0.587006,-25.927701],[2.715376,1.085561,-25.676063],[-0.694474,-3.339008,28.609197],[0.279061,-3.046550,28.719789],[18.351640,2.737576,2.618182],[18.920634,2.385174,2.360614],[18.900683,3.497239,1.997874],[8.060702,37.013058,-5.384840],[8.376564,36.919675,-4.707801],[3.432672,31.953107,16.247108],[3.525791,32.427815,15.234391],[1.811575,-17.468749,-18.804471],[1.728447,-18.719768,-18.319388],[1.493540,-17.860688,-18.794288],[8.841737,-23.120409,10.433148],[10.089968,-21.890997,10.427152],[-6.757844,-5.991037,20.061149],[-13.753641,11.207967,-25.057941],[19.788440,4.851887,-6.420341],[19.476010,4.839390,-5.385015],[13.719949,11.970814,-25.560958],[12.957838,12.104916,-25.750991],[-1.953331,-14.642011,-19.894530],[-1.988095,-15.903083,-19.439143],[-2.286026,-15.341577,-19.046773],[-9.061119,9.270318,19.522962],[-8.537016,9.014043,19.356757],[18.345549,2.101666,2.905257],[1.121013,33.505589,14.932975],[0.144607,33.472584,16.076693],[1.046546,32.833241,16.187045],[-14.466455,-16.904962,7.948018],[7.167159,-9.536895,18.175917],[15.265816,32.826894,-2.084339],[8.877711,16.566998,20.973618],[8.249359,15.116952,21.240001],[-17.792108,-1.735896,-14.425311],[-16.875983,8.714253,-21.295741],[5.940752,2.088620,20.632300],[6.396033,3.319703,19.673015],[-14.222536,-17.397558,6.326502],[-14.833702,-16.110404,4.533737],[9.881387,36.088521,-5.312761],[9.782999,36.176343,-4.209801],[21.556472,20.455323,-11.142333],[21.519271,18.817078,-12.196745],[12.263446,34.459424,-1.168692],[-15.373889,-14.045230,2.017457],[1.547133,-19.909471,21.629472],[18.528891,29.901204,-6.333148],[18.697499,29.572163,-5.073347],[9.978542,14.367905,20.865024],[11.346482,13.769311,20.521876],[18.103968,-36.999079,2.091658],[18.716407,-37.617347,2.255558],[-9.731756,-17.697410,-14.815532],[-20.103444,20.440114,-16.831031],[-18.567945,10.949834,5.154173],[-18.179729,11.908356,5.974562],[-18.104142,15.527543,5.149537],[-18.403798,14.726037,5.088653],[-17.625779,30.187512,-9.510101],[6.090804,37.659558,-11.141904],[-5.411322,-10.077625,18.717071],[-6.941885,-3.659644,20.924914],[-7.803342,-2.603721,21.161117],[-5.494169,19.379842,-27.635974],[1.505046,-14.615199,-19.635800],[1.199932,-14.019237,-19.914428],[1.611366,-13.633642,-19.679751],[7.998966,-15.891694,-16.391271],[8.529190,-16.171823,-16.395202],[4.870994,11.854073,-28.071630],[-8.339223,-13.913486,-17.132972],[-7.783070,-12.912875,-17.362411],[0.251133,36.024518,10.696482],[-8.618384,-8.903180,-18.566014],[-8.407360,-10.747762,-18.030915],[0.401263,30.731602,-22.865777],[0.610394,31.458127,-22.372520],[2.404856,36.903111,6.508491],[20.788953,25.749627,-13.202396],[-20.627782,11.541844,-2.612993],[-20.410529,10.669564,-1.752487],[3.073025,34.285237,12.984126],[-1.361634,0.475461,26.895774],[4.148066,7.865433,18.002134],[-0.666811,-7.155530,-22.327891],[-0.294996,-7.013725,-21.996432],[17.169495,-10.066852,-9.251556],[17.150063,-10.514938,-9.001151],[16.802165,-10.153650,-10.002881],[-20.886892,-1.727737,-6.954045],[2.964126,-6.900689,-21.573831],[0.508569,-5.131290,23.963387],[1.187335,6.426800,-27.442000],[-20.038108,2.023804,-9.079381],[-20.948745,19.488763,-9.142404],[-4.420563,17.791341,-27.708831],[9.855269,-8.794183,17.972876],[-19.541641,2.127206,-7.571198],[-19.518642,-0.922271,-7.727840],[0.162504,-11.880395,21.399169],[4.212141,-14.838704,-18.778731],[4.822673,-13.990474,-18.623527],[4.547037,-15.062825,-18.659413],[21.137812,24.746953,-5.784706],[20.979743,25.359715,-4.298639],[-13.742202,21.601376,-24.960994],[-13.099721,22.007813,-24.975095],[-10.434175,4.762780,18.993487],[-10.443561,5.325906,18.748002],[-11.437206,5.484681,18.174869],[-18.707555,3.699300,1.438858],[-18.997850,4.648240,1.158370],[-13.892758,-22.781827,0.940233],[-13.993577,-20.585354,1.317839],[-14.085467,27.632176,-20.259456],[-16.292794,-5.299371,-14.282010],[-16.443174,-5.679809,-13.639720],[-15.533587,-10.956989,-12.307168],[-15.455076,-10.149621,-12.381084],[-14.911374,-10.194818,-12.702187],[7.433906,32.319203,13.350946],[1.289960,36.354138,-15.850917],[1.023351,36.975163,-14.497680],[1.551489,37.378438,-14.000823],[13.743180,6.788728,16.659855],[13.430865,6.337071,16.656078],[14.151806,6.132218,16.271640],[9.186568,-8.332416,-19.374913],[20.190400,4.867802,-2.477731],[20.321337,4.992841,-2.773503],[21.300036,6.933842,-3.391890],[22.342904,9.204365,-3.875373],[11.054359,-37.563359,6.263069],[9.258686,-37.929018,7.985303],[-5.954925,-12.617440,-18.540374],[-5.313400,-11.862550,-19.042024],[-5.143655,-12.461721,-18.827724],[9.128457,0.597192,-23.281850],[9.629740,-0.268890,-22.661790],[8.358229,-0.481468,-23.428330],[-5.551664,-39.285063,9.799159],[-6.783018,-37.909364,8.963542],[19.349576,6.726571,2.911370],[19.393128,7.606385,2.490408],[16.649947,20.719636,8.080247],[16.328086,21.123219,8.432133],[-0.310420,15.327641,-28.383592],[17.421473,3.696358,-17.866143],[17.443066,2.539723,-17.754163],[16.527373,2.858594,-17.943170],[9.830843,34.807294,1.960543],[9.369510,35.357793,1.482266],[8.585777,35.365086,2.901604],[-8.357111,36.340321,-13.428643],[-9.161789,35.447484,-13.490685],[15.923749,1.998109,-17.930308],[18.416627,12.348435,5.149378],[17.893605,-4.472476,-1.850431],[17.843852,-4.925672,-1.411543],[5.814473,-4.650375,-22.294608],[6.177731,-5.317203,-21.338086],[-9.559207,10.947057,-27.399333],[-14.609706,-7.065297,13.198644],[-14.222233,-8.636852,13.157507],[-13.907706,-6.860101,15.368243],[1.162457,28.925511,19.175059],[0.903826,28.183255,19.305819],[20.941577,13.147919,-1.208304],[20.763505,13.843301,-1.553329],[-18.642057,9.542325,4.433108],[-2.864453,34.215817,-18.458043],[-2.923379,33.273885,-20.353171],[-3.445576,33.229184,-19.936528],[5.290799,-2.419116,21.144456],[-10.556759,35.582791,-5.662294],[-10.828832,36.104542,-7.745655],[8.154185,-6.824905,19.264136],[9.095775,-7.235914,18.638625],[8.386757,-5.931503,19.539311],[-10.297308,15.909833,-27.031016],[15.421186,-18.647908,-7.802207],[15.403114,-18.530294,-6.352843],[11.300194,-15.420558,-14.860909],[11.592739,-15.823898,-14.520385],[12.456035,-7.126960,-17.215051],[-19.222612,-4.894414,-9.783978],[-12.236691,-5.865302,-16.686847],[-12.400848,-7.035924,-16.663878],[-18.595103,-2.150413,-2.427464],[-19.625079,-2.713187,-2.851700],[-11.818187,-5.626769,-18.026879],[6.212355,25.011586,-25.308232],[6.763569,25.531052,-25.564517],[7.087311,-3.224849,-22.305314],[-4.764435,34.993108,-17.148593],[-4.935377,35.365109,-16.250653],[-6.119178,-32.463174,7.927149],[17.576058,-9.003093,-6.714577],[17.281462,-9.504850,-6.899223],[-15.025570,-16.530223,-1.334168],[-18.042634,-7.784154,-8.068357],[-18.065315,-7.413053,-8.353656],[-18.465690,-7.612073,-8.784008],[-6.406916,35.892560,4.001453],[-6.796081,36.086987,2.036469],[-11.370398,10.665345,-27.015504],[-13.891945,7.376466,-24.097045],[-18.374093,-0.042892,-1.746779],[-10.183521,-10.125377,-16.879365],[16.783793,19.382550,8.077309],[-11.020358,14.350194,20.216300],[-11.437407,13.772370,20.447728],[-22.023561,7.064557,-5.332575],[-21.942872,5.774033,-5.125297],[-21.133210,6.332131,-4.439436],[16.156905,21.787457,8.331653],[18.240512,2.775174,-16.928700],[17.570851,1.055413,-17.067916],[17.870980,3.077870,-17.445581],[-19.240741,15.434220,1.480432],[-20.770566,8.858781,-9.049632],[-20.230138,7.991147,-8.274977],[2.910981,14.373997,-28.254375],[-17.628633,-8.961690,-7.882732],[-15.171522,17.650635,-25.190095],[-14.778475,18.897191,-25.248946],[-14.631302,18.277196,-25.674665],[14.135073,29.144353,-19.419847],[13.731411,27.357827,-21.522929],[-17.024318,16.257123,-23.252265],[-21.087617,9.752133,-14.694062],[-20.543517,8.485253,-14.403962],[-21.123296,11.034783,-14.055854],[10.773184,5.049996,-25.070050],[-14.040027,-11.341644,-13.451486],[-13.774125,-13.059789,-13.397397],[21.300168,11.019997,-16.234307],[21.517745,12.446820,-15.444173],[21.379931,9.906964,-15.493882],[13.572298,-21.751823,2.083550],[20.577618,-2.050361,-5.327895],[17.876542,-5.424230,-11.884820],[18.110318,-3.891334,-12.441851],[-6.114788,36.559247,1.133265],[-6.223540,36.216969,3.367492],[-5.735722,36.600835,3.011706],[-15.057567,31.690839,0.164584],[6.076010,25.657304,19.390243],[8.355399,25.447114,18.459959],[-18.001865,28.700429,-3.409564],[3.631368,10.622536,21.180869],[-0.014896,37.631108,-12.694100],[-1.146709,37.211400,6.278944],[-0.423127,37.731106,5.244284],[-19.100789,28.006261,-5.791207],[-22.385621,6.432656,-6.036084],[-22.425588,7.053242,-6.221623],[-15.195598,-12.677751,-11.214522],[-15.245232,-12.175843,-11.320870],[-15.222051,-12.607141,-11.653704],[-27.963432,-39.296520,-5.806713],[-28.168763,-39.292093,-6.851470],[-8.257135,-9.813916,-18.871921],[-7.172963,-9.436240,-19.162978],[-0.024839,38.224080,1.347455],[-0.526621,38.509541,1.114229],[-0.312025,38.159543,2.298048],[4.770262,37.381818,-2.813273],[-12.474169,11.084431,-26.268943],[-22.558603,8.103963,-6.181786],[-19.459373,6.078866,0.544526],[-19.247096,7.018826,1.156470],[-19.619766,7.143880,0.690248],[9.187878,36.109128,-4.195132],[9.294322,36.270131,-3.445576],[23.888236,7.966004,-7.397763],[23.880934,8.925179,-6.368969],[-6.415371,-16.561746,-17.029883],[-6.200538,-16.910939,-17.323157],[-6.432264,-17.509483,-16.840859],[-10.326240,-33.625399,4.463576],[10.794979,-9.965726,-17.295413],[11.432807,-9.082126,-17.639850],[18.356858,-6.320022,-9.671084],[17.880467,-7.349172,-9.437155],[17.988845,30.070798,-3.894863],[18.609154,29.685124,-3.041187],[-2.439961,-12.118688,-19.725133],[-2.670259,-11.422818,-20.134711],[-10.319578,5.753060,18.709205],[-11.764195,6.061002,17.769910],[12.534569,6.058312,-24.700326],[15.130575,-19.696239,-9.179643],[15.126716,-21.324317,-8.151805],[19.216588,-1.546691,-2.929153],[-10.492214,6.197434,-25.095759],[16.921254,10.694276,-22.625707],[-21.079101,16.048920,-16.578856],[4.556864,-26.834603,10.782798],[20.132010,1.656148,-8.704289],[19.816586,-0.548881,-8.962758],[-12.168597,28.262662,12.933817],[6.715232,-9.454717,17.271373],[-13.620880,-18.630632,2.406080],[-13.765578,-18.621631,3.774846],[-14.410760,-16.972617,1.083574],[0.686166,9.670525,-27.873231],[0.099610,9.326871,-27.788379],[10.154783,31.280606,-19.358987],[16.275706,31.481885,-10.000755],[15.478964,32.222409,-10.152785],[-11.272203,27.802144,13.838651],[-10.985255,28.179654,14.477402],[-7.351651,18.683358,-27.425599],[-7.598259,19.278767,-27.411984],[-11.904065,10.996968,-26.506732],[-7.483316,-14.434060,-17.436866],[-6.913448,-14.196523,-17.474050],[-7.051753,-15.229724,-17.058801],[3.360242,33.861905,13.476805],[-20.619548,17.809846,-4.953877],[-20.583610,18.018975,-4.134187],[-0.431544,10.745640,-28.196349],[8.510443,36.242024,-2.594265],[8.251913,36.564122,-3.817701],[-13.993985,24.667844,-23.384994],[-17.497596,24.734326,2.397270],[-17.273216,23.526601,3.447089],[-17.458780,25.794228,2.278434],[17.634194,-9.347863,-8.800468],[10.233870,35.240811,-1.324193],[9.594059,35.559521,-2.183729],[-2.449092,-9.235408,-20.700910],[-3.510774,-20.965803,20.478759],[-5.120697,-21.152859,18.721816],[0.017232,19.929589,-27.895593],[-0.592381,19.006787,-28.029563],[-2.731696,-7.727174,-21.030862],[7.601983,29.653134,-21.962363],[7.333972,29.216885,-23.134942],[-20.652751,13.428811,-14.394244],[11.195633,-29.607255,3.755716],[12.434958,-29.180154,2.117928],[18.990784,-1.980731,-11.581756],[19.016579,-3.157237,-11.571727],[18.256133,-6.872728,-8.864732],[-6.682821,35.878796,-14.693143],[-6.510547,34.914738,-16.108584],[1.757045,-13.556234,-19.393737],[2.553322,-13.492728,-19.408462],[19.385693,5.218735,-0.910213],[19.526070,5.351636,-1.289618],[19.677939,5.560364,-0.953351],[-0.343092,34.447057,14.031073],[13.285048,28.771336,10.704893],[-7.474000,-7.902726,19.043767],[-7.577234,-17.759130,18.527171],[3.905281,-12.688295,-19.417943],[4.468508,-13.441999,-18.709550],[1.883559,12.202611,-28.538718],[2.473183,13.352162,-28.222329],[2.020997,11.186631,-28.264091],[-7.796458,3.427800,19.513865],[-9.465360,3.764153,19.281842],[23.498305,8.889069,-5.492178],[0.457696,-15.694125,-19.535878],[0.690814,-15.848605,-19.027989],[5.256184,37.805310,-7.504832],[5.950488,37.715230,-8.240215],[20.157746,4.491322,-2.721528],[20.574710,4.786076,-2.520202],[-19.325544,22.147885,-0.764446],[-19.703611,23.056245,-1.978994],[14.123981,28.249119,9.471576],[7.145933,-9.352311,17.825492],[11.335056,6.645764,17.964814],[20.934642,9.400182,-15.906766],[-18.962270,1.285882,-14.626746],[-7.605650,18.399651,21.258159],[-6.167632,17.110154,21.899461],[11.091934,0.962655,-23.026538],[10.764002,1.404050,-23.777030],[3.030404,38.636494,-7.001684],[3.578378,38.556668,-6.703762],[12.885353,27.206349,-22.016316],[13.142998,28.813611,-19.922502],[12.030778,-24.257637,4.583850],[7.264169,2.173531,20.190619],[8.362782,2.676556,19.777760],[10.950334,3.911568,-24.466001],[11.831092,33.398473,4.196820],[13.988156,5.185967,16.539583],[13.441563,5.475457,16.563639],[18.422824,23.069356,3.809983],[15.270192,31.489438,1.161501],[15.503943,31.122967,2.033923],[15.687045,30.540967,0.961156],[11.528404,6.317010,17.718731],[-6.386503,25.921029,19.061202],[-7.912946,24.373849,19.328992],[-4.804153,25.082761,20.204715],[1.341985,-15.184421,-19.571052],[1.442930,-16.351896,-19.401675],[5.503262,36.289159,2.801363],[7.151768,2.798829,-25.105960],[20.109790,-0.842788,-4.125873],[11.548089,35.230298,-2.231305],[6.179541,34.547597,10.691665],[12.161404,12.025719,19.434627],[11.419618,13.169953,20.345006],[12.639082,35.373738,-7.273397],[12.180894,35.067555,-6.105091],[-22.206157,4.170300,-6.394890],[-21.942941,1.534016,-6.606871],[13.177340,-19.265619,3.163484],[13.906132,-18.386935,4.522139],[-3.636718,18.711308,-27.428596],[-11.850798,-19.632455,11.650062],[-12.507137,-19.153087,10.344024],[16.547227,21.296784,7.330807],[16.426131,22.023534,7.573725],[13.062424,8.043469,17.633000],[14.436950,8.077283,16.608558],[-1.759956,23.987931,-26.536769],[-1.519700,24.375577,-26.279664],[18.816289,-32.733166,-3.789816],[18.053555,-33.002911,-2.228471],[-3.361189,22.691270,-26.712585],[-3.936161,22.926320,-26.931506],[4.321955,36.053616,6.469314],[4.011941,36.331624,5.782870],[3.541261,36.354947,6.512382],[3.729419,18.971261,-27.812423],[-16.140483,-0.627044,13.026410],[-15.400873,-12.744405,-10.790593],[-15.762869,-12.919553,-10.498002],[-4.421534,14.171559,-27.808681],[-19.726394,0.398854,-11.748029],[-19.374664,0.475220,-12.113951],[-18.889962,-1.940990,-11.970107],[3.190703,36.332051,7.471588],[3.418152,35.889630,9.584274],[3.846465,35.963811,8.672338],[-6.337055,-9.509998,17.884902],[-6.963201,-9.508451,18.125194],[6.120501,7.388077,-27.207744],[18.776635,9.281571,4.434803],[18.611882,9.806649,4.217501],[18.490748,10.164353,4.597048],[-14.983649,25.356831,-21.627265],[7.680182,-8.458442,18.753551],[7.601374,-8.799947,18.640263],[-16.769719,-11.303760,-7.681746],[12.107838,33.789998,3.660978],[22.388436,17.860490,-7.798904],[-22.348222,5.393719,-5.802516],[4.788399,32.604764,-19.735307],[4.567026,31.945096,-20.651530],[-11.976257,25.169099,-24.068776],[-6.047627,-16.004415,-17.342700],[-5.820835,-14.387969,-18.013278],[-4.952170,18.290257,-27.890344],[-5.919398,17.721154,-27.826091],[-12.863401,26.938397,-22.964158],[-13.545838,-30.262836,-14.677762],[-3.465856,1.995686,-26.645768],[-3.682917,1.393578,-26.040843],[4.650724,-7.051854,-20.939696],[4.717522,-5.498996,-21.929950],[5.129703,-6.147437,-21.137776],[-19.936834,3.047490,-14.068566],[-19.554414,2.196038,-14.231998],[5.714027,9.760304,-27.760251],[6.766948,9.274186,-27.734813],[5.134572,8.887734,-27.617469],[-14.633885,-28.865062,-11.166357],[-13.493525,-28.031688,-13.091391],[15.085121,-14.928355,-10.362065],[15.551989,-14.548780,-8.973265],[15.426528,-16.075601,-8.655602],[-14.959119,-11.105373,-12.920759],[-14.317458,-10.498466,-13.642890],[-5.794691,27.728505,-24.476932],[-7.359619,28.306401,-23.749009],[-4.555122,-14.336086,20.114242],[-3.777236,-16.776929,20.540170],[-3.283391,-15.458505,20.633697],[-0.067391,19.908097,22.510383],[-16.987811,18.514168,7.830291],[-16.878307,17.914895,8.205663],[12.394530,-30.448053,2.198974],[17.504296,-9.583778,-9.579947],[16.982491,-9.417415,-9.907228],[-3.107135,14.272458,-28.269588],[-3.595573,13.396058,-28.345174],[19.075835,19.405907,3.186643],[18.770068,8.901105,5.040805],[3.154859,-32.475099,8.972070],[2.165667,-31.682463,9.671383],[-21.757011,2.625153,-5.749444],[-21.883819,4.849568,-5.131417],[-22.027292,2.441376,-6.224092],[6.440318,28.644406,-23.310922],[8.753316,37.047475,-6.221569],[7.017911,37.527631,-7.448261],[-10.763314,32.539738,-17.703164],[18.590298,-6.578950,-7.098201],[0.431062,-10.240466,21.797904],[1.882974,-10.075130,20.767142],[1.122790,-4.848705,-23.479251],[-11.644459,-15.431751,14.684390],[20.768344,27.049809,-9.882541],[19.870976,27.760136,-9.121643],[18.905322,-0.512714,-12.886094],[-13.973006,4.354375,-22.720704],[-15.713505,-12.748086,-0.172409],[0.153596,30.270558,-23.595637],[-0.350041,30.764622,-22.715388],[-20.766570,9.726746,-8.533870],[-16.078979,32.063588,-8.981358],[-15.561790,32.289769,-10.805235],[5.572463,32.745534,13.844162],[5.063360,32.321530,14.178007],[-6.322797,16.292290,-27.745179],[-8.485586,4.324460,-25.111585],[-9.384192,5.008443,-24.888885],[-11.723924,-8.401445,-16.339664],[7.991992,34.972981,6.064036],[8.572289,34.735669,6.464891],[-2.175502,24.736825,-26.270574],[-6.008749,-10.082345,18.845965],[22.003482,2.925256,-7.310584],[22.301461,4.518380,-6.799083],[-5.661618,23.422654,-26.530719],[9.817405,-7.159343,18.166145],[4.789093,7.863988,18.288179],[4.662497,8.140393,18.221983],[-17.466365,25.807755,-19.090545],[21.943566,4.385377,-4.914204],[-18.226644,0.843911,1.688584],[-15.629568,-4.314883,12.511536],[-16.793977,-2.187213,10.093462],[2.543070,0.390950,24.299441],[3.417415,0.477406,22.996760],[-16.547427,14.986691,-22.750636],[-16.468356,14.284978,-23.628648],[0.606473,10.778741,-28.288323],[1.019349,11.543484,-28.414769],[-1.681973,36.682896,-15.169189],[-1.331439,36.528592,-15.521644],[9.625315,-20.056999,15.192411],[-0.782123,-12.078973,-19.893004],[-0.461785,-13.117269,-19.495727],[22.498338,17.324033,-4.249297],[21.882296,16.545583,-3.512911],[20.244353,10.022946,-1.885048],[-13.951114,26.994038,10.126283],[-14.094367,27.095158,9.559591],[-14.348396,26.642083,9.988012],[-2.952333,0.055680,-26.027152],[-17.013553,-0.300163,10.133923],[-17.360223,0.705178,8.394570],[-7.502516,-1.094287,-23.471229],[-6.794084,-1.653423,-23.425612],[-13.126647,3.491879,-22.747930],[-13.634825,2.933209,-22.121602],[11.021263,-15.053340,-14.951953],[11.918642,-14.588178,-14.850928],[12.173354,-14.964542,-14.402970],[-19.900460,13.102013,-17.768401],[-11.172084,25.018590,16.083090],[-10.053983,26.231961,16.245439],[-11.416291,26.437756,14.257356],[9.973446,20.575326,-26.417153],[9.692380,21.079018,-25.973405],[10.429784,21.529752,-26.215270],[0.970934,26.028229,-25.996291],[0.293374,25.537961,-25.852538],[2.638522,-12.696355,-19.361060],[-14.370998,30.864140,-17.106145],[0.735092,32.766133,17.016916],[11.128792,33.136876,7.316633],[10.415383,33.505849,7.663350],[10.500635,33.335690,8.139885],[18.004962,-4.885724,-12.609553],[-0.080459,28.341466,19.598218],[0.374982,27.633397,19.638139],[-15.822635,31.878285,-7.228054],[-4.288698,0.789441,-25.846438],[-4.659317,2.499627,-26.567424],[-2.021648,11.578419,-28.183227],[15.832048,-9.028198,9.897660],[-14.159840,11.107152,-24.604884],[20.629187,6.034035,-8.007782],[20.413785,4.072251,-8.498263],[17.678035,14.402127,7.216324],[18.028882,14.745873,6.736341],[-13.066313,-4.759158,-16.777183],[0.180774,-7.977241,-21.897796],[0.181306,-6.360378,-22.828141],[-2.282643,-4.149551,25.050900],[-5.199364,-17.906284,19.810584],[-6.449093,-15.113294,18.889409],[-6.092339,-17.505351,19.217347],[13.445973,5.618863,16.363969],[12.922581,5.882649,16.275603],[20.656655,20.993191,-15.171584],[-18.427438,3.770833,3.239837],[-18.648633,3.163903,2.906136],[-18.588861,2.498742,3.131081],[18.238354,3.623955,3.665299],[18.683471,3.698418,3.039923],[18.740018,4.551018,3.093431],[19.229098,4.072869,-16.232623],[16.996484,0.607144,10.621372],[-21.373245,-0.334453,-6.543814],[-12.663588,-10.573915,-14.847188],[-12.398921,-11.054902,-15.392415],[-18.184348,-0.242828,-0.459481],[-18.324046,0.273057,0.441458],[-2.162103,12.283200,22.677806],[16.517590,-11.363908,-0.185603],[16.910012,-10.299018,1.899169],[10.126315,29.939595,-21.669017],[10.981007,32.719067,8.650867],[8.058169,-11.360540,17.939286],[6.955963,32.855450,-19.366094],[7.585542,33.860181,-18.308398],[14.985708,32.291119,-11.677733],[15.422888,31.972951,-11.460111],[15.612254,31.599087,-12.732035],[-3.746139,-6.954612,21.725461],[-4.370527,-6.591441,21.368194],[9.045504,19.036278,-27.113866],[7.712424,19.212533,-26.964778],[9.506561,19.435708,-26.651849],[11.591060,32.218961,8.827939],[-10.056822,33.018094,-18.216712],[-10.439828,33.021809,-17.513841],[14.911721,-12.269477,-12.692955],[15.426788,-11.690210,-11.888136],[0.063827,12.681031,-28.553111],[0.493136,12.624909,-28.343246],[8.187691,30.729695,14.617166],[7.227462,30.340878,15.502899],[8.646828,29.917409,15.538177],[-13.526728,-26.490963,-12.276801],[-12.278706,-28.736989,-14.816754],[-13.602725,24.194798,-24.142360],[-8.274566,5.509045,-26.479640],[-7.651746,5.783173,-27.039985],[20.473168,-1.498645,-4.111382],[-7.872541,-11.974798,17.915993],[-7.442092,-9.459346,18.123730],[-4.296594,16.233960,22.371890],[3.384610,0.118264,-25.558705],[3.695410,-1.284564,-24.688302],[3.028717,-0.854797,-24.812114],[3.622303,28.417149,-24.574239],[-4.522458,38.342686,-8.519159],[-5.111657,38.521535,-7.923658],[10.749684,6.137906,18.432468],[-7.111226,5.049615,19.085603],[-6.976341,4.861088,19.062211],[-5.123891,6.129163,18.110925],[-1.584860,-4.031879,23.806424],[5.012749,13.246949,22.167479],[-13.042199,-19.486234,3.631763],[-7.545006,22.830266,-26.475995],[-7.087671,22.035763,-26.861901],[-8.359904,22.774098,-26.111842],[18.486716,12.274640,4.278296],[-3.004119,-11.308187,19.294938],[20.886109,-1.032192,-5.064570],[-4.411417,-2.527999,-23.187926],[-21.437972,0.182835,-6.437531],[18.284138,-7.236993,-6.678211],[-10.505018,-39.281188,-20.543862],[-14.480473,-38.191725,-19.749228],[-20.568570,21.674599,-8.998144],[-20.924447,21.744363,-10.140833],[-2.608304,32.040738,-21.742766],[-2.613033,33.263364,-19.822282],[-2.696184,-3.058543,23.809001],[-3.392752,-3.651149,23.125442],[-2.709294,-3.105571,23.600921],[16.141042,21.344830,8.038498],[4.350207,27.306985,-24.766130],[4.262878,27.921216,-24.547689],[20.885094,17.723790,-0.360245],[20.949651,19.001584,-0.895228],[17.719636,-7.943397,-6.611807],[20.045880,23.157742,0.905777],[20.661380,23.112427,-0.951251],[20.458546,24.734650,-0.364685],[2.718493,-3.133456,23.556504],[3.147002,-3.732105,22.817634],[3.447543,-3.646610,23.187402],[-19.668763,-2.113391,-10.697070],[-19.615081,-1.415828,-10.196165],[-20.019424,-0.794128,-10.690414],[-10.635470,0.170560,-22.295171],[-10.066528,-0.118537,-23.021041],[-0.360184,-14.427224,-19.110450],[-20.783334,9.979970,-13.380361],[1.716267,33.195157,-20.524390],[1.170396,-17.142640,-18.882571],[-4.870515,26.259980,-25.777459],[-4.114339,24.925442,-26.321454],[-11.582320,-37.663636,5.894780],[-9.098459,-36.208114,6.652141],[-8.453778,-35.092464,6.367523],[-0.810368,1.598775,26.799407],[-1.318834,1.904191,26.136481],[-20.805919,21.730942,-12.995019],[2.278255,-9.481607,19.790690],[-14.914317,-11.163551,-12.192068],[-21.361903,0.726212,-6.269198],[-20.604289,1.868397,-5.920329],[-21.250795,3.250195,-5.323872],[-16.929527,-5.526231,-13.235768],[7.056078,-9.831594,18.313514],[-15.395839,-14.237113,-10.011395],[-15.161730,-14.354656,-10.688234],[-15.084851,-14.564735,-10.437945],[-18.955093,13.122456,3.011178],[-18.690521,12.880116,3.960531],[-18.594999,13.558465,4.056733],[-11.584023,6.363797,17.696730],[-18.399978,28.107907,-13.115672],[-19.476547,9.509747,1.927298],[-19.697746,10.407395,1.614882],[-3.144903,-3.845016,22.659636],[-14.752220,25.212575,9.433364],[-14.714915,23.076855,10.099534],[-9.236953,-23.999912,7.324814],[-10.480810,17.695973,-27.078937],[-11.477296,16.959233,-26.932868],[-14.402271,6.451485,15.933688],[-20.324754,2.976689,-5.714376],[16.456448,-10.097230,-11.064465],[16.395283,-10.991988,-10.928848],[16.017468,-10.716520,-11.093610],[-17.465635,-8.624154,3.593397],[-16.498826,-11.154336,6.536991],[-17.302783,-8.131734,5.553472],[2.514776,31.134328,17.298346],[9.087916,35.607396,-1.398795],[9.250726,36.028821,-2.040553],[-2.934577,7.292855,18.347065],[-3.296583,8.523537,18.861030],[-15.214959,-3.103790,14.608600],[1.354161,24.186745,-26.517770],[-21.611730,4.211201,-5.034105],[-21.098115,4.525498,-4.554468],[4.897634,-9.641612,-20.004399],[4.336781,-8.711379,-20.340625],[4.680666,-8.192983,-20.085700],[20.187077,6.835927,-16.616462],[1.612598,3.285111,-26.709548],[7.895493,-19.306329,17.869262],[5.437067,9.275586,18.850146],[4.236371,8.507340,18.372249],[-19.922113,4.539983,-16.078044],[-19.592963,3.090199,-15.368573],[9.700281,18.700062,-27.021045],[10.544600,19.918904,-26.475528],[16.604396,-30.109855,-4.442456],[15.717347,-28.030484,-5.852288],[15.606575,-27.970896,-4.169232],[8.937835,19.455037,20.760814],[9.472400,21.332429,19.865844],[-6.023140,-8.220619,20.267758],[-6.272909,-8.376069,19.963405],[-19.793004,2.335873,-10.937983],[18.362691,10.950101,5.018207],[18.498320,10.728341,5.420310],[-20.108800,-1.291946,-9.878151],[-19.797696,0.373807,-9.684306],[-19.309861,-36.888373,1.004897],[-20.341157,3.885339,-5.177016],[1.232726,6.614289,23.226661],[-11.211460,30.390477,-20.124799],[6.151767,-15.719253,-17.641238],[14.918754,-7.632713,-14.564851],[15.066040,-6.447120,-14.051471],[14.683331,-31.213418,-14.097966],[13.871007,-29.125211,-13.303271],[14.812956,-29.646638,-11.631327],[22.552153,4.761601,-6.063331],[22.549910,5.955914,-6.316419],[-5.480323,16.993420,-27.546174],[-10.054543,1.222825,-23.843698],[3.587974,38.302609,-10.042574],[3.180838,38.401601,-9.237511],[9.044203,-0.664180,20.731648],[13.916286,33.305409,-12.383119],[14.637251,32.317685,-13.492518],[14.222571,32.967122,-13.382791],[17.945138,21.707505,-21.356500],[17.646294,20.694146,-21.286048],[11.535497,-11.155597,-16.525758],[10.984610,-11.224939,-16.578284],[1.441347,36.910481,7.834671],[8.414616,17.938866,-26.943128],[-6.381339,13.941952,21.867433],[-8.197806,12.861687,20.716733],[-21.109723,0.198937,-6.109481],[-20.318338,1.212243,-6.011940],[12.756629,28.171345,11.570500],[-0.589134,4.570798,-27.807885],[-1.063245,6.861138,-28.086324],[9.542912,36.535023,-5.846544],[8.773515,36.504636,-4.445987],[14.363852,32.267888,2.908591],[-20.313293,0.436539,-5.826969],[-6.135901,29.148175,17.390396],[-6.395322,28.970937,17.267930],[-5.744812,28.837193,17.855790],[-20.544931,14.160065,-5.024559],[-16.094880,-33.042858,-0.168627],[2.924848,19.231412,-27.622769],[8.322172,33.431950,9.711873],[8.758153,33.835438,9.098487],[4.291649,14.985253,-28.026975],[6.439640,-9.246148,19.678308],[-13.793226,-5.007585,-16.873384],[-14.121232,-5.695775,-16.361508],[-18.685771,4.270135,2.640794],[-19.147630,5.324181,2.267973],[7.469214,16.830037,-27.228932],[-11.618190,-7.306989,-17.388907],[3.873783,37.364918,-1.579189],[-21.282895,8.975987,-11.516945],[-20.744825,7.674294,-11.526667],[11.272220,2.905377,19.425914],[10.541304,3.256612,19.367694],[-7.695287,-9.116016,18.414959],[17.846682,0.926388,-15.979140],[17.742724,0.081944,-16.383058],[0.540143,-10.862823,-20.338561],[-0.399962,32.852711,16.450582],[13.730635,-10.702707,-13.755404],[13.930619,-9.734861,-14.261453],[3.223587,32.044484,-21.476371],[2.921494,30.842412,-22.470754],[9.860695,2.681428,-24.249356],[11.072594,2.845998,-24.217317],[-11.829647,-38.731840,6.306047],[-0.006558,-11.597953,20.428555],[0.350722,26.223428,20.439038],[21.632882,4.545880,-4.556233],[19.161097,26.792462,-15.130198],[-20.736921,11.336095,-11.630075],[0.827268,0.384335,-26.016578],[2.046347,38.504269,-2.668886],[15.233009,21.937474,-23.700183],[15.535942,22.988370,-22.987086],[-13.090882,-8.358995,16.130086],[-13.161394,-6.400350,17.063369],[-13.636415,-6.348304,16.376643],[5.033606,35.345502,8.803844],[5.401760,35.170621,9.408771],[5.926894,37.696271,-10.416395],[2.227420,-4.255580,25.142385],[2.807340,-3.956863,25.015027],[-9.841085,6.265042,18.855376],[-1.506194,25.441422,20.778708],[-2.204883,25.695187,20.416509],[-5.180355,-8.316346,20.918115],[-0.964062,21.501778,-27.210092],[-0.470282,21.989396,-27.139987],[6.050871,33.872014,-18.574451],[5.799896,32.754346,-20.069217],[21.393945,-3.257175,-5.808622],[21.065213,-3.219379,-5.046304],[20.632552,25.280293,-1.584390],[15.235408,29.932393,4.824262],[14.821498,29.436764,7.016260],[-12.231106,13.949849,-26.778756],[11.259934,34.327832,3.403457],[-11.658227,-6.944459,-16.656251],[-13.557460,11.327145,18.512509],[-13.888956,11.722569,18.556432],[22.171538,17.015984,-11.324525],[16.638688,-12.269367,-9.327127],[16.251860,-12.525424,-9.275845],[2.391829,-34.052058,9.595544],[-17.609084,1.745820,5.520252],[-17.319785,3.004910,6.839986],[-19.608701,-0.299361,-4.726067],[-20.608480,-0.284389,-5.309116],[-20.188979,-0.743797,-4.247045],[15.553363,-6.657213,-14.032048],[19.774878,-3.889560,-7.875540],[19.562798,-4.608720,-7.761345],[18.352843,18.246773,5.101770],[-14.665913,-17.908471,0.309462],[-14.443519,-17.379880,0.728482],[-6.845383,-4.940147,-21.808810],[1.525793,38.783856,-10.373261],[15.962964,21.432343,8.513720],[-1.105971,5.843003,-28.157788],[4.464813,-1.835086,21.585116],[4.466812,-2.191074,22.118228],[4.638088,-2.325412,21.453349],[-8.884160,-2.665866,-21.818973],[18.718087,11.675282,5.386375],[16.805560,-3.847358,-14.190339],[17.256833,-9.252889,3.914297],[12.489751,6.039136,16.818553],[7.160867,-33.285062,7.086910],[3.909331,36.014249,7.437189],[-3.421020,26.136796,19.868745],[-3.756382,27.007516,19.279523],[-4.473150,27.016370,18.948659],[14.733470,-15.074298,8.620153],[15.268122,-14.602180,6.757648],[-18.591604,15.450600,-20.986999],[-18.270473,16.986428,-20.485852],[-17.870811,16.255292,-21.468198],[-18.090539,3.858826,4.250185],[-18.542958,3.937501,3.613086],[-18.202169,2.988793,3.725585],[5.729388,-6.153274,-21.500922],[5.473745,38.041814,-10.052365],[5.888008,37.907880,-9.146698],[18.495692,0.736245,-3.474143],[18.563481,1.933251,-2.903370],[-4.827331,-11.574079,-19.262322],[-7.523004,1.765149,-24.872190],[1.707686,-20.267869,-18.194276],[-12.739713,-25.665593,-13.182849],[-13.519247,-24.122967,-12.014871],[-17.244680,18.008309,-22.627542],[-17.060336,17.194020,-22.394723],[11.688049,-11.825799,-15.621970],[12.038855,-12.601299,-14.967505],[11.832471,-13.497108,-15.322871],[2.024933,-24.462496,15.981716],[-5.408577,38.145535,-6.761781],[-5.665465,-16.955135,-17.342397],[-10.651295,-2.765395,-20.911801],[0.041640,-5.767013,23.187896],[-0.789167,-5.748540,23.250268],[-1.003931,-6.564920,22.947242],[22.868499,7.742791,-7.096026],[18.509423,-1.804511,-2.527258],[-8.548854,-13.532165,-16.468768],[-9.026929,-14.275691,-16.461724],[-9.475568,-13.703182,-16.329265],[-12.035362,-11.236865,16.468242],[-2.368344,-22.553717,18.226061],[14.154238,34.319546,-5.802266],[13.600233,34.513493,-6.564101],[14.182921,33.321660,-0.663694],[7.108548,22.990796,-26.369296],[5.839098,23.698159,-25.986531],[22.232072,13.903641,-13.693961],[22.242360,12.851582,-12.936849],[21.951247,12.523747,-14.185082],[8.972932,32.582707,-18.984590],[9.257976,31.717396,-19.611522],[8.772330,31.715794,-20.183652],[-19.412488,-1.171279,-3.474195],[-19.039430,-0.301540,-4.427848],[12.263402,3.623631,18.721644],[5.196732,13.880307,22.270724],[10.302078,-27.004369,6.289710],[-20.773711,13.065148,-5.988241],[3.431787,35.764333,-15.994262],[2.177753,14.501958,-28.350240],[-12.230017,35.145779,-10.945385],[-11.637157,35.853429,-11.331234],[-12.218439,34.417912,-11.987191],[12.276637,32.788792,-15.575868],[11.680424,33.874585,-15.426002],[-1.877576,-4.029434,-23.471026],[-1.547810,-4.589801,-23.131692],[6.941096,-25.285157,9.684628],[18.574704,-6.570192,-1.022623],[18.098271,-6.733775,-1.383297],[18.665112,-6.999656,-1.526771],[-17.401229,17.197522,6.437667],[-17.426336,17.902653,7.062487],[-17.488450,17.995286,6.497178],[-13.066811,33.493977,-13.047422],[12.719061,32.213017,6.928997],[11.987400,10.443055,18.777711],[-0.259619,27.772931,20.085000],[-19.116584,7.778977,1.767546],[13.266113,34.734341,-7.253992],[12.659941,34.805615,-6.758640],[5.679121,33.649083,12.211514],[5.355098,34.148488,12.092914],[-10.535527,24.357182,-24.817719],[-11.515630,24.504441,-24.672446],[-0.538463,-31.735596,10.420427],[14.187810,0.294003,-20.316295],[14.390956,2.071984,-20.654302],[14.158996,2.122864,17.095502],[10.084528,31.127530,11.908417],[-19.962693,5.109166,-2.494134],[16.793648,20.196065,8.123234],[21.372546,22.688607,-12.126530],[21.070569,21.425771,-12.600984],[21.101838,4.587109,-13.067020],[20.739522,3.878815,-12.694993],[21.070802,3.977307,-13.664828],[-15.455389,11.249455,15.364247],[-15.709945,7.648392,14.415914],[1.272758,34.274014,-18.990712],[21.838149,-34.885201,-7.665038],[25.986830,-36.859855,-6.915769],[19.418965,4.929875,0.052575],[-15.332213,-11.763213,-12.052225],[-20.432897,5.688275,-3.474680],[14.534859,33.776440,-7.676557],[15.324184,33.409024,-7.522554],[-4.992251,24.707745,-26.422769],[-5.526018,24.823350,-26.077567],[1.950445,-0.620715,-25.119817],[1.640870,-0.974799,-25.704137],[1.659213,0.130189,-25.609065],[-16.170072,-11.865524,-8.874967],[-4.279619,-5.587926,-21.652749],[-5.681392,-6.026609,-21.634984],[19.145917,12.181504,-20.341136],[21.484320,-35.509954,-10.962354],[22.780314,7.943600,-6.500442],[2.310141,-4.121104,26.268180],[12.714576,19.718796,-25.787828],[13.251504,20.886437,-25.442266],[10.508426,32.400456,10.529712],[10.632891,32.867543,9.257841],[7.197653,-24.378014,11.062960],[14.399609,-17.092716,1.173443],[14.936731,-17.039176,-0.764173],[0.594482,-5.849778,-22.409673],[1.136903,-7.183358,-22.206010],[0.700315,-7.568012,-21.709691],[-17.245996,18.429467,6.559928],[-16.881879,18.891583,7.352828],[-19.945773,4.884339,-2.602634],[-20.781480,5.078046,-3.816057],[-4.506035,12.280053,21.600930],[8.771265,-17.091840,-15.258332],[-6.053026,-6.501216,20.276706],[-7.390511,-6.980788,19.421956],[8.744347,35.301999,1.847016],[-7.375412,29.167760,16.795670],[-14.005322,5.922265,16.160641],[-15.223675,7.548775,15.331276],[-14.265099,7.966416,16.661535],[16.019278,-11.267135,-11.704595],[16.081410,-10.640178,-11.736859],[-9.000093,-23.622359,8.728240],[-10.481739,-22.415586,7.925870],[-12.895505,10.383977,18.237853],[12.859529,-19.515197,7.958228],[12.984954,-19.871896,6.695741],[-3.576943,5.409516,19.642856],[-3.527260,6.002675,18.775763],[-5.346132,4.451302,19.315316],[10.571394,-4.286708,-20.367347],[2.882553,30.361447,17.916505],[-18.305902,11.291768,-21.162274],[-18.564491,13.041512,-21.315278],[-20.298991,11.344971,-1.721471],[-20.652805,12.128880,-3.326426],[-5.952586,-4.816655,-22.281562],[-2.585792,-9.281228,22.087872],[12.293861,28.033322,-22.117034],[-9.321431,-7.385831,18.432075],[16.432410,-0.459529,-17.401362],[16.621953,1.409932,-17.722556],[15.496750,-15.083972,-2.955093],[-15.827866,-7.229999,-12.864668],[6.971962,-13.769017,-18.120309],[7.127577,-14.363208,-18.118196],[14.195230,19.211690,-25.879479],[16.238564,-30.031559,-2.811733],[-15.507828,28.978001,-17.748052],[-15.397836,28.159207,-18.514442],[11.959041,-10.619022,-16.043923],[18.536134,5.800347,-17.906138],[19.048001,4.749112,-16.842277],[18.354806,4.401616,-17.734939],[15.697499,5.903142,-21.283404],[15.563415,6.315133,-22.037162],[16.630841,6.785702,-21.189052],[-3.683625,18.066804,-28.033965],[-3.729291,-10.051851,20.388101],[4.334002,-6.658658,21.406693],[2.713393,-5.679490,22.194278],[15.101838,30.426289,-16.497445],[14.167522,31.938534,-15.437325],[9.722111,31.169469,-20.091010],[9.762796,31.869176,-19.316066],[-11.443081,-15.046924,-15.173009],[-10.771557,-15.512674,-15.476184],[0.842142,37.657651,5.368372],[-2.889107,-14.010370,-19.066270],[2.364148,37.595921,0.778559],[2.579917,37.286656,2.511047],[3.195038,37.171338,2.301347],[15.688596,22.844071,-22.387496],[4.433367,20.874432,-26.984057],[-15.398069,-15.759219,-4.852803],[-12.404359,14.864659,-26.572658],[-12.667772,16.066529,-26.351754],[-12.106743,15.392758,-27.004806],[-8.089973,3.181542,-24.531232],[-21.315717,5.220273,-4.355955],[7.868081,22.373555,-26.338618],[-3.464532,36.305257,-15.336907],[-24.310222,-36.907480,-10.029869],[-21.853259,-36.789299,-13.364453],[9.733939,6.268365,18.897910],[9.231831,31.436421,12.899846],[8.277947,31.122288,13.707719],[19.202014,29.523228,-7.690179],[-10.884493,6.733788,17.640653],[-16.226869,6.236668,-21.739636],[-15.832988,4.571862,-21.411662],[-15.956342,4.513074,-20.642417],[-1.168684,28.320241,-24.808076],[-1.109544,27.049145,-25.267327],[-18.958143,2.038953,-15.275178],[-6.162039,-14.396348,-17.664638],[-6.386720,-15.211637,-17.383739],[-9.249372,34.573682,-15.527543],[-8.806146,35.751225,-14.364814],[-8.776428,34.704312,-16.412934],[0.026863,-4.947322,27.311286],[-0.287623,-5.159026,26.408303],[2.842184,37.862576,-2.012004],[2.653660,38.132916,-3.111211],[19.027495,2.852139,-15.976363],[19.258021,2.338067,-15.494660],[18.964722,2.193768,-1.901381],[18.840024,2.689507,-1.480909],[12.763467,-8.110755,-15.940293],[12.609586,-9.708448,-15.582341],[-7.107804,8.513928,18.931428],[7.975518,32.417897,-19.364406],[8.061543,33.831715,-17.106212],[7.150113,25.661462,-24.802581],[-9.701593,8.021146,17.530165],[-10.073614,7.957452,18.573822],[0.885959,31.638715,17.952995],[1.102422,30.337765,18.844665],[-16.919385,27.528844,-16.356933],[-17.676797,26.305997,-17.768203],[-17.591504,27.209695,-16.119185],[8.926856,1.847375,-24.112844],[-3.839930,-18.284263,-17.600030],[19.732238,4.231396,-3.678418],[4.764417,-0.978240,21.840178],[-11.735896,-12.783914,-15.394704],[-11.584022,-12.151643,-15.200391],[-11.223506,-12.432229,-15.619725],[11.607377,-11.663995,16.729657],[0.312397,37.303410,-13.952683],[-0.732373,36.614384,-15.024980],[-5.965563,23.881779,-26.387528],[-20.626432,14.250291,-6.122124],[-12.630900,-19.885650,8.206109],[20.576245,17.651311,-15.703856],[2.823282,8.518475,-28.133296],[-15.784200,21.543061,8.834215],[-16.427467,20.690793,8.173578],[-5.943142,-17.588382,-16.821189],[-4.194943,-1.408729,21.900155],[-3.757844,-1.559932,22.753175],[4.189207,-6.607723,-21.008552],[4.328050,-7.785285,-20.863919],[-18.882674,10.158681,4.692526],[-18.724820,10.494817,4.959074],[2.192628,-25.696980,14.440235],[2.168078,-26.811135,12.773921],[13.115995,31.716435,6.655208],[18.561682,-4.010345,-11.334871],[-18.646882,2.172078,0.527747],[-12.866443,3.177098,18.381698],[8.331926,-24.283942,8.878242],[-16.209766,-11.184230,-10.678391],[-8.134242,34.858433,-15.603505],[-25.910402,-39.315630,-11.775672],[-23.658948,-37.942199,-12.974000],[18.697425,26.259961,-16.984681],[-2.469174,-26.220356,13.476274],[-1.661689,-26.058973,14.296462],[-5.073268,29.294522,-23.672414],[15.750423,31.489987,-10.441677],[-17.241037,-9.894588,-7.660696],[9.776424,31.691685,11.733904],[9.571480,30.931470,12.168884],[8.708104,36.210629,-3.419930],[-2.049119,32.949040,-20.583579],[-1.617046,31.141278,-22.519401],[4.960804,30.152043,-22.494014],[4.397458,29.836117,-23.137280],[6.514786,37.766476,-9.063564],[6.951496,37.719525,-9.533033],[-12.928803,-11.801555,-14.790082],[-12.842664,-12.390334,-14.296830],[0.369203,-18.451839,21.744336],[19.531281,9.270264,-17.789809],[19.402312,8.709561,-18.480798],[19.243390,9.806927,-18.379088],[12.041075,34.355504,-13.693759],[12.666199,33.326207,-14.768210],[-13.359506,-13.961265,-12.909669],[-14.412379,-22.756773,-1.601714],[-15.146731,-20.308130,-5.440947],[13.289724,2.795087,-22.541202],[13.358998,5.161519,-23.540734],[14.520335,4.524441,-22.764089],[17.120805,30.570019,-7.119516],[17.630490,15.768235,7.357355],[-1.892791,-4.234729,26.888988],[-2.615258,-3.491809,26.717292],[-0.596445,-12.312215,21.726392],[0.551327,-12.291580,21.741994],[27.406680,-38.060892,-6.398954],[16.939931,-8.668031,-10.848278],[0.423602,-22.862986,18.485732],[0.744348,-23.954068,17.171706],[-12.703429,18.361565,18.199076],[-13.053910,16.545575,18.132586],[-11.756347,17.097966,19.339385],[-13.967162,23.983544,11.510647],[9.454480,17.700093,20.660058],[-22.462384,-35.073677,-5.764836],[-21.644132,-34.709067,-7.238149],[15.503230,-13.986362,4.016407],[9.870662,27.702733,-23.422681],[-18.344333,-5.111203,-11.638267],[-17.826267,-7.215514,-11.063567],[-20.920909,-0.933177,-5.784472],[1.935812,6.500790,-27.461604],[2.024849,5.591889,-27.636844],[1.475384,5.526852,-27.098754],[19.454221,4.711297,-1.667083],[18.965785,2.601475,-2.128292],[-18.558088,22.598885,2.412068],[9.848613,-12.982318,-16.932446],[-9.010253,24.754998,-25.340039],[-10.151667,24.902028,-24.972682],[-18.928630,8.726014,4.182751],[4.193257,-7.375850,21.534461],[4.773573,-7.296817,21.098165],[-15.841556,-13.750156,-7.806314],[9.553524,35.306607,0.728396],[12.564217,10.612500,-25.569465],[3.121034,24.176423,-26.311954],[-13.044812,-7.679160,-15.923417],[2.288707,7.689564,-27.746768],[16.112843,8.635220,-22.565909],[15.459341,8.808995,-23.335179],[-14.558582,2.624097,-21.774858],[20.702866,4.732552,-3.301213],[21.127848,5.608174,-4.122726],[20.308568,4.775296,-2.813156],[-9.404765,6.576882,17.611687],[-10.620513,6.827203,17.189293],[-6.521416,-9.022125,-19.177415],[1.644592,-28.864171,-19.161511],[-0.019213,-27.259304,-18.632834],[15.762032,26.709016,-20.217422],[3.660849,25.989480,-25.458753],[11.256942,35.813184,-8.012525],[11.114998,36.121045,-7.521963],[11.790891,35.477116,-7.349254],[-18.128900,0.981675,2.958739],[-2.827394,-33.084491,9.207074],[22.619656,18.100541,-9.277500],[22.168143,17.323857,-8.586555],[-17.619058,-5.209289,-12.538577],[-18.371724,-5.103753,-12.147779],[-20.108091,14.226071,-2.225217],[-20.101856,14.703896,-3.757660],[10.611598,-15.633735,-15.477841],[10.080523,-15.235540,-15.440188],[0.177157,37.604733,4.809840],[17.703992,-4.403362,4.959012],[-8.087569,-1.387309,-22.786054],[-8.011585,-0.049567,-23.366284],[-20.481729,6.852643,-14.823453],[-10.915376,0.993413,-23.009221],[-24.252973,-39.296994,-2.222858],[-27.145448,-39.298099,-4.520348],[-20.774825,7.609334,-10.440277],[-18.319276,1.438325,2.115493],[-20.058662,-1.163978,-3.886725],[-20.169883,-1.540565,-3.908685],[13.505163,10.773850,-25.541282],[-7.594351,-16.677699,-15.667476],[-7.431253,-17.064245,-15.961190],[-20.879270,-0.637447,-5.521026],[18.344100,11.935395,5.517192],[6.231210,29.843976,16.394618],[6.542607,30.897542,15.543104],[5.598312,29.841656,16.982392],[5.729598,-17.518367,-16.948169],[-6.354922,9.116524,-27.631606],[-7.194769,10.930279,-27.729716],[5.748547,30.754819,15.674455],[5.060505,30.343289,16.608707],[-15.883088,12.321828,13.572350],[-16.127097,14.674721,11.219334],[-16.406034,11.928292,11.042047],[2.409663,-0.383617,-25.360427],[-18.835851,5.712723,1.736342],[-19.039987,5.956906,2.081775],[12.042138,23.131806,-25.072442],[17.790440,-5.239492,-1.586149],[18.773211,-4.652675,-4.653870],[15.163516,4.799641,15.417439],[15.780960,5.128846,14.209477],[14.156515,5.297486,16.043991],[2.409839,36.991711,5.047258],[-0.215280,-19.016088,21.839292],[-10.427386,2.100072,19.690999],[4.117137,36.903027,1.381164],[4.424011,36.638104,2.015081],[3.498368,-9.413196,19.136296],[5.459883,-9.329715,17.644502],[-6.361868,6.390591,18.930457],[19.354256,0.623975,-2.794126],[19.495805,1.169339,-2.624138],[19.327981,0.478867,-2.553835],[10.518068,-7.442037,-18.460973],[12.057251,-7.449863,-18.275262],[-6.137940,-19.458274,18.928681],[19.327843,8.448094,2.544009],[18.980706,8.825986,2.910429],[-5.713518,-2.045680,-23.736764],[13.597363,-16.023624,-12.403833],[-16.755615,-10.830238,3.968862],[-12.062919,-7.609618,-16.087598],[-11.763258,-7.613128,-16.684199],[-3.772390,0.009209,22.640914],[-4.479985,-0.597564,22.053153],[-3.403995,-0.925075,22.778892],[21.369851,12.230706,-1.902703],[11.544259,-22.934910,4.625818],[9.328465,-25.776194,6.764088],[4.295546,7.288674,17.703338],[-15.609314,-15.382623,-7.215134],[4.177775,38.107854,-5.180759],[-1.073435,16.015244,-27.892728],[-1.731843,15.820073,-28.552873],[-1.795732,16.496655,-27.863788],[-18.430303,4.954594,4.197068],[-18.409248,4.775647,3.837350],[3.734516,18.277360,-27.728604],[19.633748,28.238003,-4.888093],[19.203467,9.221429,1.749901],[3.321780,17.786599,22.569501],[4.236816,18.781937,22.313317],[17.856360,5.653439,-18.853446],[-19.262855,4.830128,-1.667187],[-7.278216,-16.242608,-16.626506],[-6.861233,-16.992465,-16.576467],[-7.468235,-16.634912,-16.343633],[9.121739,-13.371129,-16.630919],[19.925584,1.141652,-10.930808],[19.815928,-0.164169,-10.434246],[-20.939666,8.430161,-12.185429],[-20.919166,6.926736,-12.687722],[-21.132655,7.513440,-12.156422],[-13.039793,5.406358,16.821362],[-13.042991,4.861012,17.446242],[-3.007472,-13.684350,21.109473],[-2.813375,-12.511297,21.258670],[17.472607,1.564732,6.506718],[17.582547,2.517049,5.588426],[-19.089557,-1.499183,-2.913463],[1.967212,30.744443,-22.642968],[5.317504,5.824086,-26.978374],[7.518663,21.464944,-26.911698],[-7.124748,-34.967029,7.257332],[-18.321006,12.294854,5.050005],[-18.358871,12.701222,5.466698],[-0.158380,25.929810,20.792777],[8.974276,35.109463,3.867815],[8.361497,35.080640,4.095783],[-18.288158,-0.690051,1.700143],[-18.303727,-0.289161,1.698113],[12.195651,30.890820,-19.145627],[12.955025,29.832883,-20.015597],[18.855962,9.284959,3.506530],[-7.063053,-20.366161,17.732891],[-20.476989,-1.536975,-4.525121],[1.512102,3.786282,-27.198979],[-18.048299,-0.841869,1.040104],[-18.185207,0.139325,0.807097],[1.946444,-16.053132,-19.253989],[-16.776380,26.414723,3.044777],[-16.339835,29.436627,1.792455],[22.930121,14.304681,-10.929928],[20.576195,4.271279,-11.409801],[21.153859,4.908723,-11.920224],[3.410027,36.592572,5.074563],[-0.139696,-5.428514,-23.146342],[0.036647,-6.595882,-22.084168],[-0.291957,-5.931114,-22.297458],[-0.994064,15.111119,-27.741746],[11.901569,32.247937,-17.327970],[12.228863,32.601063,-16.394307],[12.352156,31.814336,-17.352607],[-2.679317,-9.621242,21.763528],[-18.922353,8.084237,4.532446],[-18.658965,7.944897,4.128654],[-7.662121,-2.586517,-22.239146],[21.145373,21.709973,-1.105852],[-7.835551,4.113946,-25.983033],[6.504803,-9.563203,17.354691],[-4.681820,25.160329,-25.991509],[17.132516,-10.905055,-8.830131],[-2.974851,-38.110392,10.987370],[7.682711,-18.546090,18.276139],[9.227084,-17.439920,17.371365],[-11.005444,-22.343932,5.784355],[-11.155634,-22.455181,5.193684],[18.604480,6.950276,4.322575],[18.895123,7.843411,4.066222],[-8.480496,-16.909940,-15.531299],[-16.887763,28.526852,-15.656610],[-16.066301,29.252110,-16.007464],[19.028306,-5.767503,-3.592976],[18.041568,-6.524425,-1.656840],[17.908328,-5.863509,-1.610162],[-14.815025,9.216336,-23.916518],[15.370992,-14.084659,1.695948],[18.475404,-6.773809,-7.819856],[22.264970,6.624974,-5.445766],[22.491631,6.815640,-6.020042],[10.859525,36.064854,-10.731817],[0.609438,27.458264,-25.242059],[-0.010717,26.555836,-25.766841],[19.671376,-0.116691,-10.760754],[19.374240,-1.262222,-11.033782],[19.407901,-0.059215,-11.134694],[-18.439885,2.427422,1.288432],[-18.926158,2.770070,0.942096],[-19.018659,1.900189,0.854357],[6.382751,37.465535,-6.540587],[6.812401,37.260525,-5.947918],[6.948885,37.741360,-6.524741],[-3.848643,-1.062057,22.301852],[-19.958688,8.559808,-2.655604],[-20.372071,7.975186,-1.376177],[11.344547,32.844159,8.151722],[1.884161,-1.631389,-25.141269],[2.253869,-1.007091,-24.909808],[2.258150,-1.847652,-24.526263],[-5.894689,5.686372,-26.786107],[-7.058770,6.715535,-27.048192],[18.976384,-5.230424,-7.579541],[-2.098850,-3.134280,24.474278],[5.107112,29.807614,-22.990289],[21.694489,12.217831,-4.340460],[2.748040,20.501702,22.164584],[-17.938731,2.053139,4.240275],[-17.971273,1.869141,3.638547],[-18.107379,0.789536,3.868083],[-20.362476,22.289155,-6.907294],[16.581813,5.847920,-21.137185],[-8.366804,-16.075965,-15.731191],[17.627352,-3.930068,-1.262905],[12.987654,3.226338,18.232980],[13.677485,3.478448,17.563252],[-0.221560,-5.118634,24.000501],[13.527056,28.534940,10.393859],[15.559019,-14.839965,-4.491313],[15.712859,-14.140289,-2.897515],[21.174573,23.406857,-2.270319],[22.724025,12.120618,-7.759413],[22.537654,12.684628,-7.124584],[16.845856,-1.890220,-15.979163],[-9.058281,21.442055,-26.608396],[14.687412,1.081296,-20.033259],[-1.386007,18.390206,-27.801656],[20.102998,13.289632,-16.258630],[-11.006458,-12.970269,-15.381980],[-10.789273,-13.163963,-15.899962],[14.600651,-15.384933,-11.257524],[4.532071,0.581906,21.995000],[3.789947,-1.691970,-24.230428],[18.418837,3.822282,-17.122699],[18.614733,3.224110,-16.465022],[5.298932,12.934712,-28.352550],[6.398553,13.345620,-28.131976],[9.260854,34.629590,5.369540],[5.572864,10.661580,-27.828712],[11.234391,34.565686,1.041012],[1.826247,26.573968,19.826652],[11.990821,22.735100,17.014158],[15.633410,2.528516,-20.171023],[1.056175,28.290852,-24.698096],[0.599156,29.482327,-23.851554],[-0.794129,-13.004920,21.859441],[10.917651,3.892541,19.014056],[14.793118,-15.716768,2.608932],[14.286602,-16.965955,4.237835],[14.677885,-16.361110,2.208124],[-4.706095,0.511540,21.860513],[-14.795650,-27.583946,-9.418363],[-15.777393,-29.293205,-8.270970],[-15.434238,-27.642374,-7.124680],[-2.600437,-22.397537,-18.115264],[18.137482,-8.288778,-9.493825],[17.527985,-8.652578,-9.772808],[18.796315,14.607369,2.868923],[19.336446,15.239350,2.976864],[6.817168,14.876546,21.575934],[-17.569057,18.373021,-21.658111],[-17.205238,18.921128,-21.893909],[-1.589992,-9.048282,22.477332],[-1.678830,-8.762090,22.698932],[7.798041,34.442670,8.413784],[-12.645360,21.302102,16.828097],[-13.439038,19.406506,16.595280],[4.886100,36.103337,-14.526048],[8.567790,37.162045,-8.357016],[-0.119525,38.685323,-3.327837],[-0.031675,38.486264,-1.812484],[0.433752,38.453206,-2.208773],[10.855021,35.356625,-2.421322],[-13.077219,-11.806453,14.383232],[-13.561776,-9.720769,14.319107],[-13.592804,-12.622802,12.691169],[-19.793044,19.729253,-5.544018],[13.209881,-4.828216,-18.631244],[-10.348292,8.773747,19.297454],[2.254622,-1.325797,27.045329],[1.108098,-11.516448,20.248654],[-18.353179,-2.161105,-2.171526],[14.006093,-7.683387,14.343419],[13.653790,-6.294641,16.396162],[20.680655,0.807347,-7.815011],[19.864901,4.437718,-3.411391],[-7.427716,-9.337150,17.959106],[-7.015511,-9.698615,18.255201],[22.861539,11.767361,-10.769774],[23.259120,13.284127,-10.160804],[-5.289144,12.091092,-28.016004],[-5.715380,11.672005,-27.757670],[-6.134425,12.730576,-28.054618],[14.351259,33.951588,-10.352104],[13.556650,34.196431,-10.458447],[7.207144,-12.612930,-18.047099],[-3.348166,10.643491,21.374490],[-3.599199,12.940091,22.113906],[-4.235347,11.210004,21.239915],[-16.345927,20.836964,7.837461],[19.930215,16.849267,-17.741231],[-18.774039,11.337876,3.651827],[20.726687,26.686368,-2.589450],[-18.634668,25.504594,-17.179284],[-18.610488,26.588441,-16.334485],[9.974114,-15.195703,17.172447],[9.361804,-15.891849,17.525163],[-7.129147,-9.251584,17.160242],[-12.869270,31.830022,-16.676656],[15.057609,26.695786,8.298982],[15.212013,25.178693,8.958583],[-6.138597,18.281373,-27.301023],[-9.107711,-2.898280,20.829114],[19.134301,6.991341,-17.916825],[18.900828,7.858411,-18.262656],[20.415786,8.814294,-17.128732],[-0.323378,-22.697707,18.782804],[19.527976,2.807828,-14.969590],[19.998397,2.552632,-14.512614],[-0.839575,-0.736808,-25.548430],[-0.475439,-1.418727,-25.181920],[7.190150,30.209790,-22.170831],[7.999738,30.819028,-21.448724],[14.086457,5.177045,-23.333280],[18.495179,21.091511,-21.111873],[-10.040966,35.141125,-0.253132],[-10.363219,34.601598,0.518594],[-9.368954,35.459393,1.124697],[9.330370,35.905270,-2.820169],[-6.104252,-37.224175,-21.427568],[-6.217480,-27.853754,-18.141149],[-20.288936,3.589745,-11.967314],[-20.097797,2.636891,-11.440241],[-8.447204,5.558388,19.185969],[-8.109993,6.113373,19.195350],[-9.358782,5.734608,19.044658],[19.343007,3.444337,-15.584619],[20.037761,3.529805,-14.853808],[4.435770,37.714566,-8.632977],[-18.238805,14.535134,-21.232280],[-18.803891,15.385838,-20.278064],[11.465707,-14.358564,-15.032540],[-17.612695,26.677071,-1.162934],[-17.571138,27.723851,0.460093],[18.449666,-0.785873,-2.306371],[14.944488,31.153401,-15.726356],[-16.966798,15.076680,-21.835620],[-17.161115,15.682297,-22.452426],[17.461978,-10.597450,-8.627816],[6.820927,18.439873,21.526055],[-20.992765,10.297982,-12.198560],[14.334009,-11.549670,-12.885114],[-0.400127,38.985631,-5.562504],[-8.308416,35.156529,4.967488],[18.508805,6.021550,2.971600],[18.610738,5.124058,2.659581],[23.035722,9.571503,-6.045987],[23.688815,9.256131,-7.289182],[22.809270,9.312550,-6.933938],[8.245168,12.949536,-27.238484],[19.689400,-3.624675,-3.136716],[-17.536811,-8.675061,-9.614147],[-10.894895,34.639119,1.458212],[-11.004047,34.723714,-0.535572],[-2.160467,23.450864,-26.384042],[-8.750620,20.104806,-26.701936],[-9.453114,20.413850,-26.840402],[1.403664,33.988339,-19.734958],[-3.110611,-12.654535,-19.469564],[2.835362,37.844273,-0.186219],[10.772509,29.872693,12.959623],[-4.927037,-9.049083,20.887429],[26.804015,-39.291627,-4.205171],[27.076587,-38.328537,-5.145820],[-7.598910,-12.189403,-18.052289],[16.910420,21.278069,-22.343574],[-5.304406,-33.954642,8.601956],[21.288159,-4.167266,-5.860507],[10.126160,10.651929,-27.179708],[2.080818,7.488740,20.059419],[17.027360,22.222607,-21.779500],[-1.402861,13.513505,-27.654025],[-1.301798,12.150555,-27.898854],[19.576300,5.275349,-1.695541],[5.630196,35.600026,8.707060],[13.671415,23.463654,-23.807054],[14.322524,24.260648,-23.300286],[14.559169,23.605054,-23.350732],[-15.084868,-14.399286,1.195290],[-7.394113,-15.856115,18.495449],[-4.634235,21.776505,-27.027600],[19.636998,-0.225002,-11.645278],[-11.763022,-21.015394,8.671306],[-12.481957,11.344529,18.795014],[7.487867,37.464612,-8.954553],[6.851706,37.753567,-8.298301],[-4.796167,32.955609,-20.153789],[2.003864,38.759671,-4.771457],[0.375118,-0.989642,28.180312],[-9.364319,-0.273021,-22.933473],[17.904528,13.353471,-21.708461],[10.384556,34.201550,5.370895],[9.920040,34.402486,6.425037],[10.395402,33.831509,6.804632],[0.750407,38.612332,-3.358062],[0.798866,38.282719,-1.857597],[-7.226087,35.958409,1.821196],[-7.198592,36.061177,0.131209],[-7.657220,36.112714,-0.046538],[-18.777608,2.666917,-2.184819],[-18.347373,1.448399,-2.558097],[-18.738445,1.894597,-2.688720],[-3.685334,-17.501439,-17.940633],[-3.325594,26.666787,19.441628],[-19.368064,2.313393,-6.932931],[-19.286199,3.657773,-6.602612],[13.072124,6.124634,16.608905],[12.745513,6.040509,16.397804],[-6.398561,37.614621,-5.857383],[-7.005057,37.620343,-4.998264],[-3.921594,27.319012,19.138770],[-2.985730,27.431039,19.104064],[-11.102718,33.787739,-15.805348],[15.970913,30.397641,-0.066811],[-5.958025,28.163060,17.898542],[14.333038,-14.692863,-12.195220],[13.729415,-14.977975,-12.775661],[14.327718,-14.356485,-12.276250],[-9.005482,7.633801,-27.099063],[-13.917602,18.092931,-25.676490],[-13.347715,16.948388,-26.355422],[-13.823226,16.869958,-25.988372],[20.237611,9.659493,-2.491696],[18.113753,15.500203,5.504184],[17.761212,15.894311,6.087785],[18.257516,15.399037,6.204265],[19.037965,2.032471,1.884282],[-16.109145,-11.975908,-9.581263],[-18.635410,-0.807719,-3.515455],[1.753199,-9.301172,22.381579],[1.821158,-9.799421,21.993159],[-3.802846,0.413743,-25.946950],[-3.230707,0.101926,-25.461219],[18.517167,6.246068,4.129489],[-18.006530,-1.369785,-2.964355],[11.133435,33.243390,8.004900],[-15.138242,-13.881719,-11.092746],[23.573874,-36.290334,-9.482770],[-7.436418,19.709943,-26.936740],[3.688902,-3.497607,-22.993865],[3.205322,-4.093375,-22.737464],[-16.141322,-11.932079,-10.325985],[-16.056926,-11.695146,-10.888793],[-15.598699,-11.867217,-10.974419],[15.047973,-26.000590,-3.544806],[6.252618,35.842160,-15.325015],[5.942680,-1.535838,-23.922187],[-3.642166,38.652699,-9.182060],[-3.475018,38.621373,-8.728023],[3.641420,-10.924808,-19.840890],[3.839588,-1.038909,22.290715],[5.707918,35.415555,-15.776668],[5.820349,-19.798145,18.971850],[6.157927,-18.339332,19.081607],[5.008586,9.413174,19.193690],[5.209780,23.269147,-26.515279],[15.143150,23.341927,-23.429872],[13.807584,24.470406,11.490121],[-6.586267,16.731152,21.658320],[4.767085,26.763016,-25.289321],[4.137488,26.470059,-25.120059],[-17.717468,-6.623433,2.322461],[-17.545835,-7.944152,2.573149],[20.897776,16.825909,-1.735630],[16.583470,31.076092,-7.635064],[16.147122,31.095875,-8.928952],[-19.337095,3.753739,-6.191722],[-18.632901,0.998383,-4.218751],[-18.362737,2.042538,-2.898442],[-18.748056,1.913438,-4.065637],[-14.740093,8.812947,16.662085],[-2.810275,39.042920,-7.651608],[-9.315747,4.088834,19.327897],[-10.957115,4.068372,18.891850],[-17.515458,6.357617,7.500105],[-17.327310,4.233472,7.373824],[-5.540986,-18.193301,-16.865596],[22.104043,22.745419,-9.387245],[16.931514,-9.657789,-2.909828],[-6.261770,9.855981,19.848889],[-4.973132,9.904454,19.747085],[17.659228,11.547688,-21.363202],[10.594981,-30.691160,-17.073197],[9.067205,-27.950835,-16.808702],[-6.927796,-8.642663,19.447432],[-6.282881,-8.643417,19.972753],[-12.878062,4.172196,17.989497],[-13.111225,4.537362,17.524000],[-9.173511,36.239163,-4.701154],[-8.653900,36.796918,-5.995744],[-9.445998,37.033833,-7.439188],[21.849807,6.729005,-13.939467],[21.583077,5.150586,-12.581145],[-1.502032,-16.405093,21.166278],[-21.210166,15.765065,-11.333200],[19.821419,4.088193,-15.522191],[-18.289535,-1.563838,-2.678779],[20.091740,6.046540,-6.394222],[3.624820,37.586446,-12.260392],[3.968676,36.859021,-12.798484],[18.433148,0.469407,1.731367],[-4.382853,28.745831,18.398457],[-10.186525,8.114800,19.023164],[10.671570,8.402753,18.899676],[-17.917695,17.615182,5.276702],[-17.550334,18.046269,5.498159],[-18.049388,18.195801,4.914168],[-20.420213,21.725125,-6.462588],[7.908057,-7.775972,18.983073],[-8.138686,-14.507129,-16.639947],[-7.627475,-14.093377,-16.842818],[-7.862439,-15.171901,-16.425715],[4.916249,33.621358,-19.272098],[6.781587,6.158478,19.078174],[8.260629,6.099137,19.214721],[0.430835,38.273862,-0.626698],[19.527653,6.991914,0.061792],[-17.759118,21.892556,-21.001842],[-17.814880,20.867806,-20.929090],[2.760932,38.805455,-5.932167],[7.076630,20.849141,-26.685201],[-4.036227,-13.348029,-19.209260],[-4.941013,-13.144693,-18.998900],[-4.372874,-12.835950,-19.536807],[19.456685,0.024682,-4.777236],[-18.246797,-1.067996,-2.592980],[-6.437743,11.423661,-28.098035],[-19.629190,5.447690,0.085704],[-17.891393,16.930836,6.068521],[5.752107,14.139954,22.008250],[-1.366755,-9.484271,20.158015],[-2.473384,-9.471727,19.701447],[10.165326,-7.073613,18.288071],[12.190292,-13.533494,-14.455016],[12.607430,-14.441560,-14.222732],[-8.144879,24.135781,-25.857656],[-8.810455,23.832047,-25.618747],[11.014206,23.897813,-24.700374],[2.545248,-5.024715,-22.709842],[7.540062,-9.198837,18.567867],[6.972981,-9.420799,19.166106],[7.531522,-9.424613,18.219512],[-4.325778,19.052514,22.224339],[4.096435,-10.559234,-20.084613],[4.484046,-11.243940,-19.657182],[5.376591,-8.864028,20.747258],[9.385164,37.027119,-8.885612],[-2.142533,-6.100309,22.413455],[-1.219744,-5.382009,23.179904],[-2.599358,-5.599244,22.230460],[10.836133,34.501614,2.005383],[11.512079,34.363263,1.635956],[16.072987,17.250905,-24.000060],[17.017237,18.640126,-23.053529],[7.632821,31.531850,-20.582065],[17.879218,21.870530,5.208973],[-15.356581,-13.907069,-10.561934],[-15.297556,-13.431184,-10.580746],[-15.034796,-13.942142,-10.798865],[15.079624,13.676949,-24.854669],[15.626861,15.608498,-24.031634],[2.205961,3.979661,-27.345838],[2.418923,3.283490,-26.884851],[14.740052,32.639798,-0.848638],[17.259486,-31.236768,-7.453572],[18.061391,-33.126093,-10.766718],[20.149276,21.021130,-15.726594],[19.993075,19.278924,-16.795377],[20.137358,20.387864,-16.949325],[-20.589298,20.026692,-15.508737],[-16.567437,1.935513,12.552184],[-16.825135,4.842274,11.597707],[-17.066932,2.555745,10.768848],[16.972876,16.107075,8.619233],[17.236089,14.525708,8.070031],[20.063399,4.187981,-2.660208],[20.383521,16.569203,-16.695706],[0.191196,-5.293317,-23.066482],[7.252632,-8.433692,19.197003],[7.437559,-7.912202,19.119765],[7.006215,-8.229743,19.505252],[19.112672,-6.892545,-2.476563],[3.567322,8.835202,19.061929],[6.330801,28.375493,17.590742],[5.933597,28.878369,17.459734],[-18.553142,13.126885,-20.073588],[7.053110,-7.327726,19.416425],[-16.860854,-8.937797,-10.665287],[-6.253783,9.521600,19.201020],[-7.239328,9.627042,19.647477],[-20.438310,19.442708,-13.913625],[-7.305633,-2.231387,-23.036794],[6.717589,1.163243,-24.584447],[5.837772,1.009408,-25.325425],[-18.167688,27.242249,-15.346110],[14.534424,33.365704,-9.877634],[19.467131,27.429436,-13.014066],[-1.334979,25.581082,-26.184848],[-1.986257,27.731396,-25.109548],[2.465482,30.929425,-22.794566],[-9.342883,-12.378810,-17.108325],[-8.642968,-12.967296,-16.751767],[18.108573,26.150784,-17.602057],[17.660357,26.971104,-16.843217],[5.405344,37.537030,-8.755078],[5.000555,38.001508,-8.129885],[-8.166726,15.789792,-27.688291],[20.400882,4.435048,-4.010004],[-7.555083,16.788251,-27.796659],[18.153476,13.799977,5.266644],[19.312569,6.249509,-17.478171],[-19.201703,14.133832,-19.931504],[-19.005679,13.249470,-19.593188],[19.580849,-0.625541,-7.348793],[20.515502,16.068658,-17.415568],[20.149577,17.828427,-17.123372],[-15.035047,1.845219,-20.218650],[16.633418,26.974301,-17.733924],[21.623681,10.064435,-14.607013],[22.140881,8.662202,-13.862409],[8.592317,37.131497,-9.187034],[1.139790,-12.967014,-19.898759],[5.580335,31.779202,-20.695676],[5.141085,32.429044,-20.820411],[16.386187,4.701840,-20.178294],[14.888509,33.582829,-5.814068],[-19.907655,4.705476,-2.741559],[-5.363904,7.844815,17.593915],[21.023370,4.791203,-3.803604],[-16.303767,-29.640045,-6.456832],[8.697992,25.524491,-24.835563],[8.865044,25.276978,-25.311652],[8.264059,24.730458,-25.163573],[-21.006482,15.100213,-10.322762],[6.191929,35.912137,1.592556],[10.887775,15.544732,-27.116010],[-17.602096,18.688107,5.826562],[-17.644500,18.725678,4.911406],[-18.773835,10.660252,3.904396],[15.749314,31.115742,-2.702748],[-18.914148,7.285821,3.985550],[-19.132056,3.551320,-3.410055],[-19.210866,3.470986,-3.094867],[-19.454021,4.240491,-2.962400],[11.801921,18.224549,-26.536725],[17.455910,-8.555043,-6.403960],[12.852999,7.168877,17.420704],[12.760659,6.664315,17.180935],[-18.514497,2.472295,2.063099],[-20.689595,16.494862,-5.912666],[-13.120764,13.512784,18.878823],[-13.547259,13.958340,18.296231],[-3.008307,-9.875884,21.269439],[13.180771,13.494950,18.816226],[6.630784,34.031651,10.465195],[7.173181,33.327069,11.220458],[11.799857,11.800572,-26.557931],[11.271653,10.828896,-26.909692],[17.745152,15.230317,6.739871],[-17.640331,25.547578,-0.116957],[15.723008,-14.708671,-6.602534],[-15.308292,22.654767,-23.631408],[19.794877,11.468117,-18.551642],[17.868327,16.411439,6.031441],[21.879308,11.659875,-14.814204],[21.527907,13.364629,-14.878533],[-10.093845,-28.531746,6.197441],[19.467936,-6.790334,-1.691205],[-13.027868,12.081380,19.158833],[-17.287700,-8.921958,-10.188253],[-17.087913,-9.554237,-10.391720],[6.441691,30.737797,-22.128785],[-4.971522,37.112195,2.919216],[-1.924965,-6.765846,22.637378],[2.091789,-11.935718,21.169656],[8.774746,7.337720,-26.182183],[2.910190,-18.152618,-18.019628],[3.540920,-18.087184,-18.177468],[2.174360,-3.186057,-24.034980],[21.074031,6.530595,-3.604329],[22.383471,19.624711,-5.249788],[-17.952647,21.441533,3.731670],[17.572083,-10.065555,-8.940766],[-19.529056,0.047749,-12.657985],[10.489716,36.399747,-6.773079],[4.548291,38.243268,-9.937602],[4.964347,37.546979,-10.289869],[1.522705,32.533719,16.608510],[17.975138,-1.045936,-2.881180],[18.026253,-1.380153,-2.956372],[-12.995017,-19.740857,7.040383],[-13.823236,-18.540342,4.989949],[-15.365915,1.373742,-19.118575],[6.014423,9.483346,19.104386],[18.941655,15.810403,-20.190766],[19.799292,14.772572,-19.565255],[-13.521810,18.328969,17.089781],[1.141558,34.908154,-18.569436],[-8.356148,-7.163234,19.020190],[-2.735139,2.130433,-26.587136],[-20.027381,4.718545,-2.609362],[-18.481820,2.521348,-2.224458],[-4.412721,13.563962,22.282723],[-4.864165,13.137173,22.094146],[10.110811,23.406296,-25.385171],[20.266812,2.640904,-13.550576],[17.334992,3.533467,7.575251],[17.383969,4.629372,8.181528],[11.935630,-1.257190,-20.555875],[12.553679,-1.771304,-20.140058],[20.544568,19.063824,-16.356902],[18.906340,8.817155,4.114301],[-12.657080,-20.164350,3.830587],[-18.939698,2.728509,-3.740291],[-19.752530,20.899785,-1.839508],[22.985636,3.947510,-9.579039],[1.436538,13.132722,-28.223056],[2.474869,37.431531,-13.293668],[-8.071462,35.684674,-0.185369],[-16.496890,-11.274587,-9.161937],[-16.687684,-10.780504,-8.934230],[0.810242,-2.353534,-24.910338],[15.800138,-5.239152,-14.092387],[15.547803,-4.589294,-14.885409],[-15.426887,33.011571,-7.057825],[-15.560819,32.493962,-8.433728],[9.575705,23.205899,-25.561523],[20.682379,4.357087,-14.279401],[-0.395559,-0.684016,-25.917243],[-20.723754,9.494015,-15.616836],[-20.590110,8.389653,-16.467536],[-0.477547,26.031144,-25.734523],[19.653554,4.603585,-2.011114],[20.122367,5.367211,-1.781650],[14.783410,-38.126909,-19.655717],[11.281653,-37.628690,-20.117335],[-8.849462,2.525834,19.812076],[-19.407426,26.840722,-14.222428],[8.370932,37.277989,-9.991288],[20.061532,10.907677,-0.928246],[20.121508,10.153805,-0.334631],[18.691319,27.912701,-14.382466],[17.888558,28.575909,-13.858951],[-4.994512,-10.566102,-20.060096],[-4.246497,-10.805976,-19.969708],[22.486926,13.004716,-5.729219],[3.026408,-37.515023,10.868305],[1.412422,-36.672835,10.961230],[1.926514,-39.268770,11.466673],[-0.147851,-1.621124,-25.493054],[-11.098381,21.595280,-26.053044],[-11.947685,21.298794,-25.912337],[-1.065217,37.543355,-13.073476],[-1.610101,37.906415,-12.536014],[-17.362399,18.945866,6.873747],[7.604115,9.971715,-27.596248],[17.196780,-9.022578,-10.158482],[21.864804,-2.045982,-7.426455],[-17.794849,-7.711660,-9.397811],[7.721283,35.933194,1.267613],[8.704421,35.500401,0.731046],[1.860636,-15.278970,-18.901870],[0.514407,22.823907,22.049521],[-6.217075,23.370366,-26.365901],[-5.581238,23.067330,-26.788219],[-1.866662,39.058949,-8.153616],[-1.326591,38.880688,-8.546380],[11.208452,34.146992,2.439135],[13.111453,-8.703494,15.937435],[11.503926,-6.388238,18.295549],[-8.775039,-15.525132,-15.428029],[-12.023379,34.486729,-1.054256],[19.977690,6.193627,-5.114661],[5.250645,25.244614,-25.844785],[10.428404,4.381798,19.178042],[9.973887,3.885712,19.221845],[-16.863105,-10.868011,-9.358405],[18.443034,-3.235496,-11.906894],[10.040046,35.463200,-14.052856],[10.906942,35.508366,-12.811445],[-5.752796,-10.862485,-19.261489],[-5.998299,-10.629991,-18.890853],[20.305516,5.124222,-14.795667],[-0.765580,-10.130109,21.929137],[-16.638162,19.127587,8.170142],[12.655681,-15.940021,-13.422763],[-7.106912,-12.613200,18.194446],[-11.650887,-1.325046,19.590480],[-12.184582,-3.654353,18.942763],[22.673421,14.260621,-7.456920],[13.253907,34.206692,-11.440467],[10.351931,34.737370,1.075587],[-1.997547,21.634774,-27.120374],[-1.491393,21.096822,-26.961902],[-13.283565,-31.998584,-16.313008],[-7.650559,-7.771402,-19.471427],[13.278623,34.045300,-12.347788],[22.472857,5.115952,-6.886065],[22.673203,5.471173,-7.166072],[-12.182945,16.466771,-26.568891],[-10.272869,-12.068435,-16.724538],[-10.268579,-12.601615,-16.160630],[-8.846488,22.404542,19.890086],[-5.966779,23.999875,20.370074],[-0.334503,-6.706317,23.063054],[-0.641011,-7.491254,23.158608],[-19.357568,4.308129,-3.700736],[-19.168531,3.559094,-3.824417],[-15.002382,33.041913,-5.730413],[-15.663902,32.433293,-5.803074],[-4.215444,-9.720477,18.965308],[-4.142745,-9.372276,18.702754],[-1.314629,27.711575,20.153331],[20.329167,27.546780,-3.368372],[21.431689,26.638619,-6.274591],[21.083815,27.555211,-6.370539],[6.885551,30.842770,15.011327],[9.250954,30.287457,13.971398],[-1.958881,38.253781,-11.144439],[-20.357051,18.677434,-4.850290],[14.212410,-26.563672,-1.394382],[13.664422,32.440617,3.261387],[-17.904977,19.613690,4.282438],[19.553939,12.971825,1.878221],[-11.612457,34.719365,-13.682046],[-12.398783,33.921178,-13.598769],[1.628200,-12.832553,-20.100064],[-15.469139,-13.051498,-11.264071],[11.431649,-5.376252,-19.149711],[-6.164994,34.761494,-17.009185],[-6.501665,33.644856,-17.943271],[-18.163484,14.028950,5.249508],[-18.400182,13.829968,4.725231],[18.626445,9.471818,3.889730],[-20.188411,8.995259,-1.761313],[-19.964425,9.214188,-1.369101],[-20.286811,9.811742,-3.154957],[-19.699332,4.699883,-3.545583],[-10.764539,27.673177,14.797913],[-10.238477,27.793454,15.038379],[-1.692190,-4.045360,23.499858],[-1.737044,-3.404254,23.574042],[21.393403,19.735665,-12.771932],[4.004062,35.473492,9.916578],[-13.387156,15.756242,-26.677213],[-13.538892,15.571301,-25.950589],[23.130078,14.297482,-9.022572],[11.238315,32.005742,-17.568025],[11.765301,31.559399,-18.268123],[-21.186317,11.047776,-13.043476],[14.966202,26.325387,-21.278478],[3.775119,-3.686008,23.101432],[4.363785,-3.836475,21.432315],[8.065991,1.341973,-24.424449],[-7.953276,12.433263,-27.925792],[-9.038639,13.367951,-27.505496],[-6.897945,-20.920914,16.600652],[-6.640418,-22.084586,15.710711],[-18.395526,16.835801,4.039065],[16.356297,30.953595,-11.423286],[-8.409093,21.112275,-26.513856],[-8.016514,20.258778,-26.852094],[18.679625,6.493100,3.786130],[-16.788165,-8.825988,-12.004537],[-20.118364,4.693776,-3.937965],[-20.900640,4.764764,-4.284382],[6.351180,-10.605829,-19.334411],[-8.638038,20.697350,-26.922730],[-13.795317,-4.013591,-16.792153],[7.153332,35.463666,4.941993],[6.812691,35.515942,4.424874],[-11.762708,33.548512,3.472257],[-19.410348,27.247792,-12.336871],[-8.901495,37.118527,-7.937748],[-7.501337,-26.869068,-17.247500],[-7.971129,-19.821506,17.344472],[-20.165008,4.382851,-4.630756],[-17.981130,17.535168,6.119838],[21.331195,-36.494611,-1.882021],[-9.402902,27.411584,16.032644],[-4.608252,34.152722,-18.265161],[15.663579,-7.054485,-13.297412],[7.269113,36.984387,-5.345776],[15.920876,31.047948,-5.930029],[16.924163,30.323941,-4.349646],[-0.924886,24.933179,-26.131587],[-19.419631,20.129765,0.354436],[-18.611612,21.163026,0.887846],[-19.599223,20.916905,-0.575147],[6.022124,27.985432,-24.397725],[6.219395,27.266511,-24.317781],[5.492717,27.038205,-24.769000],[19.414758,5.792149,0.155320],[-11.141765,-22.069572,6.371365],[20.898804,5.301804,-13.667523],[-14.966730,-22.614469,-8.119429],[-15.110456,-22.523073,-6.116001],[-15.399508,-17.895911,-7.763985],[20.037602,21.010571,-17.881028],[-3.556257,27.835042,19.043330],[21.658252,-2.216148,-8.149878],[16.512198,-12.275190,-9.909998],[21.079146,12.676930,-1.607166],[-9.583488,-12.872102,-16.497695],[-17.610875,25.096684,-18.448611],[-15.192083,-14.123287,7.946275],[-19.339668,4.476968,-5.748136],[7.752009,8.381402,17.990188],[8.892755,-1.016330,-22.729495],[21.485116,-34.596123,-4.988847],[18.409663,6.809151,-18.673406],[5.037579,-39.040068,-21.963365],[6.297982,-37.239699,-21.369065],[21.647958,-3.154704,-7.323045],[-0.882357,23.459439,-26.806449],[8.313400,35.161641,4.885613],[7.043536,35.347333,5.975744],[11.650405,0.392415,-21.960437],[-14.811020,26.766133,-20.770963],[-21.273965,3.993993,-8.163217],[-19.773063,3.293397,-7.134462],[0.196647,-38.455933,11.436319],[20.499499,2.488011,-5.760966],[-21.536464,12.561097,-9.069530],[-19.303016,4.938855,-5.132415],[-19.241237,5.035546,-5.313305],[-19.693389,6.127640,-0.892201],[-19.796727,6.311417,-0.397365],[14.807530,28.728535,5.873640],[6.446440,17.866540,21.818103],[-19.368690,4.864094,-5.148999],[-13.239065,13.827252,-26.246121],[11.037926,33.872479,5.406911],[10.623665,-20.042497,13.603105],[-7.653624,-9.403955,18.207230],[21.108609,13.404229,-2.267552],[-0.446724,20.957600,-27.201358],[19.236729,-3.297427,-10.811752],[9.369138,18.475014,20.477168],[-18.352615,1.865666,-16.325402],[-17.445768,0.399674,-17.200091],[2.631495,36.716061,7.623800],[5.502514,11.375336,-28.263282],[-18.861451,16.663304,2.660093],[17.615113,-8.824590,-7.118962],[6.910288,-11.431234,-19.007808],[0.005459,20.605084,-27.511073],[-0.059640,21.174500,-26.995669],[0.593999,21.021329,-27.414985],[-18.385802,-0.133670,2.795046],[-18.748447,0.302747,2.695323],[-18.542470,0.300256,2.031219],[0.643265,7.948064,-27.467813],[1.108745,8.598794,-28.166728],[0.927122,7.175473,-27.667415],[-17.675750,-3.530402,5.594985],[5.039387,34.306714,-17.896058],[5.522741,33.970746,-18.152362],[-14.464328,33.603070,-12.150204],[-15.137311,19.519486,-25.003947],[-14.324476,19.544072,-25.656829],[-9.038202,11.540047,-27.086541],[-9.507119,12.802384,-27.506158],[-8.611706,12.074651,-27.451774],[8.702449,-21.524977,14.155378],[-15.371433,21.818246,-24.290166],[-12.789167,24.237588,-24.319228],[18.987386,-3.643192,-10.342426],[19.140847,-1.575801,-10.543436],[19.309977,-3.129241,-9.801646],[2.653447,-1.536941,-24.785697],[-10.768910,34.761792,-14.895753],[17.045302,-36.186269,-17.619088],[1.809465,29.062604,-24.155017],[1.125310,29.637089,-23.887170],[7.900349,-12.074792,-18.509858],[-16.017883,-12.385694,-10.399676],[-15.888264,-12.521972,-9.654043],[-10.255112,-26.402789,-15.480433],[-2.945339,-15.919032,-18.516290],[9.315636,-14.653520,17.595572],[5.439974,-15.076448,-17.994391],[5.040547,-15.638107,-18.074014],[-14.211319,13.709962,17.448241],[-14.594345,16.312714,15.644234],[-15.118160,12.626981,16.004821],[-9.427103,-5.579591,-19.929420],[11.968105,-6.034869,-18.743136],[12.658786,-6.360511,-18.120955],[-20.368364,5.596177,-12.740840],[-20.806819,6.727757,-13.982911],[9.261838,-15.305494,-15.968322],[-16.518014,-10.552631,-10.753683],[-16.427705,-9.960395,-11.117949],[-20.583057,12.693806,-2.481513],[2.708681,37.924939,-12.323015],[3.092012,37.606808,-11.797219],[0.712819,-6.980068,23.069875],[15.472435,-31.636351,-13.334321],[-18.849742,-3.951831,-4.748794],[-8.605928,4.795884,-26.062139],[-20.546891,7.321706,-2.237630],[20.586200,19.673562,-15.489530],[13.834961,31.009724,7.214409],[14.529604,31.629269,4.132806],[-13.155893,-11.055539,-14.635119],[-13.575011,-10.251241,-15.077933],[8.835809,34.577626,7.136631],[-14.866264,27.598286,-19.203187],[-17.754043,-3.560630,-1.252412],[-6.951263,33.391545,-18.237296],[6.029382,-9.660236,-19.819257],[5.778961,-7.958175,-20.158574],[6.726389,-9.392389,-19.431283],[18.534892,21.504395,4.582710],[-7.782212,3.018864,-25.238021],[1.672216,-26.177975,-18.522237],[1.132626,-8.573921,22.862792],[0.128469,-8.170211,23.099057],[-6.371632,-12.870712,18.649725],[-6.457623,38.015706,-8.574488],[1.858116,4.886388,-26.937860],[-0.102172,-10.315582,21.223351],[6.168682,-1.066242,21.442183],[5.223204,35.268651,-16.591271],[20.821744,4.128735,-9.434924],[-16.558938,20.788304,-23.413480],[12.083385,32.250722,6.916907],[0.753070,11.213872,22.930522],[5.456659,37.691609,-5.539619],[5.313440,37.311169,-4.120111],[-4.640631,-11.969207,-19.577083],[-18.164766,29.350865,-7.106924],[1.506423,-4.607538,23.602523],[-16.669122,-9.701764,-10.886121],[-19.554828,5.410897,-1.631974],[2.984474,18.379319,-27.846610],[-15.155587,26.931729,7.532225],[1.292871,-7.692476,23.009603],[-11.540596,19.496522,-26.573588],[-10.734349,20.738015,-26.420253],[-17.131749,-9.566142,-0.967740],[0.970700,39.230801,-8.370794],[-19.914306,5.480138,-1.799074],[-4.415104,10.669251,-28.021020],[-14.159385,-14.924062,10.328923],[16.831671,-11.751443,-9.586214],[-13.319063,-14.927264,-13.087897],[9.750328,34.669583,5.658168],[5.116933,23.817494,-26.429656],[4.900185,24.267216,-26.202523],[-2.575994,27.862553,19.258313],[18.355025,14.480389,5.448803],[18.043784,14.799000,5.871850],[-19.635568,-2.108276,-6.638241],[-19.232688,-2.560874,-6.409325],[10.984146,33.526219,6.508302],[12.485935,6.288060,16.916291],[17.551230,28.855328,-0.054804],[19.909631,-4.899301,-5.713640],[-18.246618,20.606656,2.928352],[4.046823,-15.439803,-18.535069],[2.961500,7.157246,18.316499],[-4.774569,38.272015,-6.247414],[-4.677375,38.431828,-5.286558],[9.063930,10.280434,-26.969945],[17.484303,3.575139,6.168646],[17.784655,4.240250,5.291601],[8.649338,35.926991,-1.998926],[-14.709386,-3.691627,-17.169887],[6.985367,27.484742,-24.163028],[6.700904,28.047734,-23.702548],[14.881197,11.005372,16.972243],[-10.990010,6.929936,17.429290],[8.075191,-16.580331,-16.040803],[-20.039001,-2.014041,-6.993938],[-13.416062,-14.211332,12.241393],[-11.986799,-16.211122,13.714396],[-10.280534,20.146165,-26.788655],[-20.212943,-0.108173,-7.417593],[-19.439224,0.924737,-7.218449],[-19.439485,-0.521121,-7.232269],[-16.143184,-11.224529,-11.309694],[-3.111756,6.712693,18.379667],[19.714297,-36.053728,-14.813939],[-2.744532,-12.961194,-19.686698],[-15.821772,4.513383,14.278857],[-15.370924,3.915700,15.227783],[12.492399,-8.614097,16.826117],[12.324374,-6.027940,17.988036],[17.560326,7.831536,-20.976628],[-19.640681,19.780129,-2.211860],[-19.671895,19.812661,-3.861673],[17.133370,-7.914069,-2.654274],[10.329893,34.654340,2.347668],[19.444659,3.615060,-3.573793],[-9.109944,35.670018,-0.961376],[17.318200,18.823903,-22.171760],[11.201926,22.671414,-25.214425],[-19.818340,3.728360,-7.706681],[-19.579604,4.961270,-6.404239],[-6.317372,-5.845266,-21.321435],[-6.986966,-6.553243,-20.103398],[1.788199,25.241532,-26.102105],[1.379610,25.365567,-26.052484],[3.413111,6.659310,18.125159],[-1.350346,38.572766,-11.216198],[20.133971,7.006394,-3.238695],[19.775294,6.318730,-2.529122],[19.783580,6.151269,-4.188453],[20.038855,25.506131,0.229689],[6.928588,-1.217792,-23.228791],[-3.348074,28.104222,18.721002],[-0.168075,18.136361,22.894816],[-2.094048,18.737767,22.657145],[3.641560,17.364224,-28.188476],[14.188270,30.184949,-18.269813],[2.952615,-1.370715,24.116696],[-21.070844,8.314965,-13.275878],[-2.775601,5.080678,21.147449],[-20.694843,6.134438,-13.253081],[11.645427,-7.990098,17.565952],[18.069569,27.969998,0.837315],[19.947846,3.735390,-6.819197],[-19.329787,5.002866,-5.012021],[14.367440,14.292401,-24.916224],[15.281557,14.959458,-24.915790],[-6.002760,8.195237,17.878171],[2.658585,-3.902297,24.805875],[3.506411,-3.638335,23.693988],[21.663642,25.305234,-9.654344],[-20.297931,19.222741,-15.197808],[-20.062831,18.134206,-16.681806],[-20.371234,17.899846,-15.291177],[-15.792878,29.944882,1.896282],[-2.117966,-16.431417,-18.826741],[-2.700950,-16.080308,-18.940949],[3.114955,-3.133796,25.874862],[19.572680,4.062192,-5.763411],[-3.779510,-4.074645,21.929732],[-11.955523,20.403352,-26.195632],[14.800249,32.947560,-10.964521],[-3.547771,22.230569,-27.224460],[18.996539,-4.409751,-8.940353],[-18.589986,4.261605,2.018831],[20.209273,-5.422704,-5.501157],[-19.798635,19.228078,-16.814858],[-3.628357,34.111821,-18.483874],[22.452855,5.496571,-5.545013],[6.567934,35.670422,6.178210],[-3.530811,20.759171,21.959359],[-6.066734,-0.476112,21.416087],[5.113667,36.238538,3.388549],[-5.574121,5.826157,-27.543683],[-8.997318,5.184659,19.241021],[6.512467,-9.645278,19.286872],[8.112618,4.136586,19.171342],[20.792557,3.338952,-11.434819],[-17.661472,27.980092,-14.039128],[-5.344899,13.744633,22.037883],[14.134060,-8.010661,-14.358539],[6.547181,-36.717298,8.463054],[7.301365,-36.137338,7.670913],[-16.288923,-1.015712,-17.324496],[8.479622,23.912587,-26.015134],[-13.418040,-31.021500,1.266516],[-8.222713,-17.211564,-15.413564],[-12.589250,20.872143,-25.520669],[-20.849370,12.830006,-1.614106],[13.510505,-7.060405,-16.196418],[-22.406785,-38.717399,-0.831820],[1.156831,-11.943549,21.327752],[-11.721472,-1.178489,-21.414279],[-11.102265,-2.025707,-20.932019],[-6.043711,35.695393,-14.639405],[12.249510,-30.420063,-15.864591],[-2.838041,-5.036102,-22.829011],[-3.332679,-4.666896,-22.954280],[17.594691,-6.306970,-0.797500],[17.790461,-6.209062,-3.101931],[18.108733,-5.368179,-3.108803],[-12.834200,-15.203691,-13.320923],[-14.502505,-14.278674,-12.276366],[-4.707083,8.184468,18.257595],[0.668883,-11.908939,19.863185],[3.812337,30.720052,17.292891],[21.628901,17.934289,-11.728289],[21.820201,17.039517,-12.503782],[-17.417316,-5.658393,6.780837],[-10.263885,-28.806648,-16.368791],[15.897500,30.839528,-2.299614],[-0.225182,-18.312820,-18.775245],[18.460198,3.320447,3.328878],[18.526887,2.902825,3.030666],[17.388182,-10.210462,-8.082414],[-2.278949,5.835084,21.329232],[-15.962150,-13.100204,-9.404065],[-15.988928,-13.270524,-8.883236],[1.639504,-4.469856,24.890487],[-19.325757,4.137765,-0.233214],[19.196685,3.634030,-2.106781],[14.693295,4.537636,-21.542560],[16.942958,5.335557,11.338391],[22.473536,10.251988,-10.888489],[22.668643,9.381173,-10.327276],[11.968047,35.926648,-8.038303],[11.756039,35.542447,-8.589669],[18.331269,-7.064710,-7.371032],[-18.359935,18.904118,-20.662265],[-4.177978,-31.054551,8.490751],[-16.998565,-9.920337,-6.457153],[10.078898,5.736901,18.765943],[1.131541,38.219052,0.300923],[-22.826209,7.105397,-7.391798],[-2.971403,-35.795328,10.339904],[9.739274,-16.535815,-14.974238],[-14.182533,9.841904,17.432873],[-11.327171,-3.584850,-19.633655],[-11.790077,-4.171119,-19.096372],[-2.426998,-2.985580,-23.995084],[19.350762,-2.440158,-6.479981],[-1.623983,-23.697100,17.174844],[-0.765571,-23.022821,18.203883],[-2.894350,1.654961,23.237849],[-3.189120,-0.506866,23.284148],[-18.761008,0.610654,-15.164037],[17.703231,29.433514,-1.054196],[12.458128,13.406548,19.865554],[12.087308,12.940907,19.802464],[13.215677,12.785619,19.189948],[-19.524242,26.378720,-13.710416],[6.822148,35.288113,6.863601],[-11.394016,35.958646,-8.103719],[-11.820894,-34.467730,-18.585526],[-10.968752,-4.297557,-18.993922],[-4.808609,-1.320323,21.733993],[-4.418410,-1.776767,21.612693],[14.342162,33.884366,-4.811336],[-0.764657,-4.590184,-23.120746],[0.285941,38.451039,0.511259],[0.900668,38.001652,1.187418],[19.690163,-0.612308,-7.191171],[-11.776379,-13.178252,-14.943442],[-11.276811,-14.304511,-14.884435],[-12.057781,-14.027917,-15.181525],[-6.096421,10.435902,20.160256],[16.320288,-3.436603,-15.395989],[-1.266433,-11.913163,21.195357],[-2.053593,-11.546806,20.630511],[-2.821323,-11.609494,20.652863],[-16.307304,-11.756982,-1.857812],[17.928317,-7.854686,-6.371684],[14.948690,-17.848579,-0.770135],[18.424521,-5.944816,-6.431387],[0.009131,-17.825118,-18.936795],[16.554320,15.095299,9.746421],[12.654903,20.737561,-25.562581],[11.430685,34.820538,-1.276425],[12.149736,34.822118,-1.387969],[-17.584745,-9.100532,-9.586384],[9.076566,-5.466367,19.837779],[7.814274,-7.536035,-19.561008],[9.499724,30.302190,-20.935372],[8.984616,30.387372,-21.586825],[9.027336,30.736142,-20.479373],[4.019906,37.914670,-9.240507],[15.208581,-14.756786,0.499500],[15.277527,-13.794017,0.713428],[17.546099,30.608113,-9.027832],[10.496579,-3.357692,-20.936372],[18.909024,10.172887,-20.222154],[18.626035,10.882394,-20.826598],[-15.059345,-13.486841,-11.470142],[-26.571422,-37.252245,-7.504076],[-6.484022,28.138509,17.803802],[-4.173946,-38.879139,-22.020473],[-10.120885,-8.930225,-16.873563],[-9.805511,-8.485231,-17.596330],[-3.936306,-34.081459,9.336190],[-2.855252,-3.755847,-23.686366],[9.860748,28.128224,15.178177],[7.664758,5.455392,19.209739],[-18.610460,3.470757,2.102615],[-6.798804,5.828294,19.030530],[-3.027083,18.537003,-27.857675],[13.476812,-2.721278,-19.127219],[16.998030,-10.018111,-0.758549],[-13.676002,-9.704862,-14.756518],[-14.344280,-9.330066,-14.113484],[13.844303,33.666142,-12.738631],[-14.572438,-6.460431,-15.160453],[3.326025,36.610173,6.038746],[-12.762812,25.000756,13.231354],[-5.628990,32.170636,-20.549857],[-4.250422,28.672887,-23.911361],[4.984432,4.307263,-26.711608],[21.559666,14.810925,-14.029626],[3.190054,-18.567121,-17.903010],[17.259608,19.673726,6.783952],[17.894439,20.173138,5.681268],[9.885143,33.920285,7.068952],[-8.096418,-20.270604,16.418021],[7.635996,-16.593433,-16.568685],[18.997847,21.685410,-19.929685],[5.599930,-17.377425,19.508208],[-18.578630,-0.168845,2.017421],[11.424497,35.895901,-6.766434],[-18.673444,-6.019216,-8.506495],[-18.957982,-6.020175,-9.086986],[-11.040714,-7.893155,-16.652656],[-13.638341,18.203286,-26.212375],[14.279043,-7.884980,-15.342898],[13.402344,28.022137,10.972384],[7.042118,29.710828,16.463879],[-18.415054,11.688565,4.761732],[-15.210155,-15.588224,-1.990095],[-15.174878,-25.815124,-6.568954],[2.204110,32.447522,16.273739],[-8.644475,-14.949313,-16.079848],[-8.410959,-15.520240,-16.169139],[-0.002639,35.315594,-17.543916],[-0.174023,34.392918,-18.431552],[-0.438241,35.268361,-17.055469],[11.880332,6.507416,17.279575],[12.348186,6.331052,17.035341],[10.492636,-5.411058,-19.316760],[-18.928962,24.737107,-17.712775],[18.971514,18.008061,3.172400],[-1.469595,-31.966365,9.991486],[4.654914,-29.136287,9.035731],[-20.578084,15.363873,-13.881404],[-6.607892,-28.381559,7.920865],[-9.100007,-25.820987,6.917378],[-0.663555,33.296101,-20.511630],[-0.902475,32.238637,-21.200255],[21.248236,15.759553,-1.361634],[22.681840,13.128278,-8.545962],[0.033543,-2.577762,-25.015449],[18.254149,0.111954,3.358655],[21.683936,14.972367,-2.809341],[21.822282,14.135640,-2.703131],[-22.231561,6.448804,-5.635053],[-8.634194,14.935609,21.132466],[-13.286089,21.403771,15.612002],[-13.693554,21.885796,14.278597],[15.978905,-12.729642,-10.274925],[-10.858140,16.071683,-26.666392],[-14.304419,-6.994111,-15.557569],[-17.342353,-33.741415,-13.833423],[16.981297,18.807900,7.032863],[7.840323,25.744424,-25.076577],[7.889274,26.559544,-24.446174],[8.980781,-7.764009,18.602904],[1.080660,-16.315906,-19.106730],[-16.090608,20.421395,8.336404],[-9.898381,27.954571,-23.128634],[-11.123298,-6.764907,-17.649749],[-6.921955,27.780453,17.492719],[-8.031093,28.084080,16.642286],[3.577730,27.289777,19.032235],[-1.536314,14.579583,-28.073127],[-8.701786,-10.698505,18.097507],[-16.303697,-12.300887,-9.282565],[-0.577621,-9.455503,22.638221],[-2.070910,-18.374362,-18.281308],[-2.847655,-19.328189,-18.066140],[3.378634,36.786595,-13.469955],[22.665923,9.160638,-11.540886],[22.822442,9.426175,-12.407064],[2.343781,16.328511,-28.264123],[-12.069218,35.155720,-9.157908],[-12.581637,34.816441,-9.498631],[-12.866665,35.151028,-8.807591],[-4.886068,37.364011,-0.229974],[19.850014,7.062813,-1.959648],[20.145922,7.611848,-2.289419],[-4.271118,-3.677596,22.193686],[-12.578018,-12.826825,-14.823276],[19.009520,2.666802,0.720878],[-0.264704,35.496503,11.219886],[5.248899,-7.850055,-20.740562],[5.204230,-8.661784,-20.127116],[-4.043678,38.252362,-9.004601],[-17.070647,19.537709,6.796649],[12.309967,30.304562,10.513425],[-20.439927,24.249528,-10.638935],[-12.375949,7.122796,-25.256183],[-17.381202,-9.754819,-8.535734],[14.651459,3.114236,-20.745555],[13.656609,3.037736,-21.980809],[18.341334,-1.560275,-2.620271],[-22.468070,6.328168,-6.604066],[-8.200046,8.631291,-27.473958],[-19.052976,13.786992,3.290514],[0.498774,37.555089,6.839918],[-22.652087,7.276623,-6.786577],[3.747883,-20.881048,20.343259],[-19.177444,5.200211,1.345942],[-9.448238,-11.635400,-16.422486],[19.614468,4.471314,-5.334763],[19.627599,5.465871,-4.103896],[-9.227525,-31.479095,-18.153579],[-11.366735,-31.199308,-16.927564],[-0.123181,-11.897744,20.002414],[19.430077,1.877541,-2.575316],[19.307912,1.944096,-2.744880],[22.589419,8.920949,-7.163674],[4.523062,-36.177680,9.857405],[5.549374,-36.976480,9.311672],[18.904843,3.420552,2.581408],[-16.110387,-10.819412,-10.872700],[4.717222,4.990693,-27.241220],[-16.522516,5.404191,-20.326467],[14.413885,5.896889,15.825535],[3.033755,-37.022902,-21.764644],[0.907317,-38.558793,-21.902848],[-0.228984,-38.515998,-21.879140],[6.887208,-8.936965,19.404319],[6.752195,-8.789613,19.625058],[6.914908,12.677697,-28.013282],[7.146744,11.855080,-27.718310],[19.377675,2.848122,1.150096],[19.504645,3.713456,1.331119],[-3.145511,4.565751,21.050860],[9.093972,3.186757,19.615899],[8.882630,3.542317,19.368493],[7.399115,3.578591,19.418195],[-10.155448,34.469166,-15.175986],[9.934456,32.216489,10.927656],[2.436921,38.805775,-8.206541],[-20.227605,8.293099,-3.972504],[-11.353756,36.178960,-9.452118],[1.414823,-0.509750,-25.835233],[-14.113991,-0.979984,-19.387778],[-13.695747,-2.054824,-18.866879],[-0.531477,14.397389,-28.440991],[-15.973602,19.466729,-24.310390],[-1.371489,33.069966,-20.541354],[-8.384341,8.688901,19.323123],[-9.556990,13.351659,20.997212],[21.306708,-2.417403,-6.435819],[-6.109293,-8.837690,20.072917],[5.226163,27.442235,18.431765],[19.194031,-0.119895,-12.000507],[-1.751782,26.840424,19.981906],[6.069786,-17.150871,-17.162686],[18.472638,17.173272,3.580125],[7.833935,14.709359,-27.246936],[-15.236221,-13.957773,-10.299282],[1.730580,16.313073,-27.889472],[-12.886543,-0.904418,-19.767705],[5.021245,7.240086,17.360092],[15.929790,31.163625,-12.073746],[-20.640296,24.963719,-11.847567],[-20.561429,25.229909,-9.464608],[17.393571,8.878449,-21.224166],[16.726868,7.849179,-21.363801],[20.956706,14.686276,-0.756757],[-11.386816,7.166157,18.211083],[14.090159,-14.084903,-13.208299],[13.831257,-14.723256,-13.362668],[-2.836995,23.604630,-26.545630],[-18.422612,-32.559124,-3.363100],[9.044265,22.090569,19.886037],[-7.184747,11.859051,-27.889249],[1.639851,32.749600,15.514009],[13.958569,15.463734,-25.847564],[-8.527396,-17.480821,-15.339894],[21.638629,5.083058,-4.415870],[17.603770,-6.920850,-1.636013],[12.006520,20.023858,-26.168427],[-20.104228,21.240231,-3.504266],[-17.263759,-34.490635,-15.304244],[5.992118,16.209367,21.966319],[-8.574429,30.667119,-21.486358],[16.834582,-10.711030,-9.301912],[2.639314,-2.354144,26.887158],[17.221915,19.282975,7.285979],[15.455574,-28.830405,-8.816975],[-8.318360,-31.893877,6.361799],[12.534238,-15.400369,-13.996018],[5.542745,-7.099523,-20.684756],[-8.485648,-5.942157,19.448733],[-10.738553,-30.112605,4.147783],[16.771481,-4.801292,-13.419454],[-1.734380,-36.860927,10.975997],[16.018534,5.190060,-20.691747],[-17.824039,19.325707,5.110183],[-17.358678,19.857899,5.760172],[-17.863952,4.932545,-19.747706],[-2.447788,-16.476079,-18.933352],[7.722873,34.528226,8.945953],[18.982791,17.758389,3.624413],[16.181298,25.285767,-20.504699],[0.520475,20.356259,-27.391486],[18.624825,27.361462,0.046474],[-13.121752,23.002965,14.724615],[-17.260896,28.807210,-14.611146],[-17.769180,-7.893886,-0.397128],[-13.843349,32.022206,-15.779775],[-12.796209,5.589234,16.562180],[-23.787334,9.231511,-7.323874],[17.741999,-1.954814,5.752017],[-12.592874,-27.103482,2.229289],[-12.554902,34.160374,-1.941074],[19.699385,0.082017,-10.019373],[13.946181,30.404896,7.204754],[-7.838302,9.817342,19.891559],[15.329145,33.172597,-5.021832],[-8.448570,6.487077,17.833785],[5.883306,20.404217,-27.300845],[-14.972642,33.704098,-9.841989],[-11.312168,15.596081,-26.583131],[-14.939402,-0.442462,-18.963119],[8.020353,-11.033952,-19.056342],[-19.237336,-3.565154,-7.143174],[12.818336,0.526643,-20.715997],[15.419043,21.145802,-23.995730],[-3.869711,28.168797,18.947610],[-18.507331,1.126515,-15.563230],[-12.034537,-12.147460,-14.886739],[5.340659,1.432400,-25.469438],[12.241741,35.109524,-4.984598],[-23.432142,9.072587,-7.793392],[-10.937444,35.827359,-12.354513],[14.161481,33.661442,-3.910682],[-10.731130,-12.244764,17.156889],[-2.014184,-17.066058,-18.884257],[19.378192,2.704385,-4.232249],[-16.119531,21.475373,-23.604915],[-2.425215,17.007943,-27.971126],[7.147894,35.788922,1.373153],[7.149525,35.803738,2.479733],[2.587028,-3.024749,24.064689],[-4.898023,-10.313594,18.385546],[14.443104,-19.822772,0.333206],[3.358863,6.335358,18.483633],[15.325471,33.263463,-9.397173],[14.648903,10.304902,17.360743],[-19.570846,27.804059,-8.453764],[4.951671,37.937062,-9.153015],[-18.451253,0.505746,2.300393],[-7.024565,13.953065,-27.422282],[-6.667516,12.339608,-27.718787],[-22.542587,9.052228,-6.926845],[22.572041,-36.540430,-11.937425],[23.973326,-37.895590,-12.553178],[0.724142,15.580243,-28.459737],[-0.438538,8.204468,23.064483],[-0.136702,9.784566,22.888076],[16.152846,7.284913,13.354691],[-15.279949,20.966103,-24.160308],[-8.227029,19.383839,-26.981288],[-10.109151,-7.942960,-17.822606],[-10.929663,-8.957336,-16.857562],[-1.588984,-1.259933,-25.405993],[11.007436,23.315160,-25.443049],[-11.052181,-15.916675,-15.048244],[-3.763922,35.288884,-17.264697],[-20.738645,1.994839,-7.947692],[-12.027599,-21.081989,6.934184],[22.613147,15.369721,-8.650624],[-7.715693,-4.882686,-20.650840],[9.802905,30.593449,-20.691262],[-13.122530,30.524976,-18.760839],[-0.347277,36.670880,8.095111],[-17.057546,-35.909571,1.395171],[-18.155244,-37.443120,2.496788],[-19.115377,7.126515,2.787117],[-18.720685,6.672826,2.278432],[-18.965221,6.237427,2.904807],[-16.088050,27.792065,-17.434218],[9.944692,-39.283364,8.022752],[1.410639,-14.298770,21.494321],[17.556527,21.082883,5.494941],[-12.756056,-22.471000,3.508728],[17.784749,14.100270,6.543561],[15.512867,8.226422,15.044133],[6.533653,27.590459,17.809134],[2.701150,38.660084,-9.732117],[-12.826615,-20.188842,6.011306],[-19.738633,2.144608,-13.017367],[17.579346,-8.962848,-8.822125],[-19.626239,22.227299,-16.289744],[-19.684530,20.931569,-17.686902],[-20.056888,21.868111,-15.745553],[-10.028457,-15.819053,-15.361707],[9.598997,21.670396,-26.187444],[1.364434,14.330403,-28.241021],[8.129087,26.889355,17.402551],[-7.165822,20.517525,-26.865294],[-3.674476,37.377408,3.661884],[-4.169948,37.036542,4.915837],[-2.701131,-7.089816,22.231896],[-3.158773,-6.901853,22.056066],[14.009492,33.476292,-3.025206],[14.743909,33.450497,-3.411692],[10.736563,27.350781,-23.408778],[-7.944148,30.744511,-21.208186],[-1.361405,-10.799281,-20.722079],[2.983418,-19.128797,21.243810],[-6.369628,-9.574714,17.309541],[19.999921,14.026650,-17.194749],[-8.925625,-16.818239,-15.179492],[-6.554124,-18.041656,-16.321191],[-0.798238,34.837895,-18.321099],[-1.118972,35.073209,-17.977271],[15.743077,0.459149,-17.603684],[18.463416,-5.893443,-7.837279],[-14.329365,-18.823535,0.954483],[-21.374427,-34.660901,-4.608388],[-12.916464,14.503102,-26.500199],[-14.050557,15.427106,-25.662892],[5.366785,32.946728,-19.341258],[0.928567,12.910454,-28.585656],[-18.255843,-6.240463,-9.386379],[-18.228730,-7.254224,-9.202323],[-20.842532,11.091874,-14.760276],[18.547990,9.140485,5.531693],[18.502600,8.384812,5.296969],[18.949101,4.214925,2.418521],[22.494488,11.067513,-6.970106],[2.664162,-3.460082,-23.507442],[14.124328,14.521359,-25.455186],[-8.966052,-0.031364,20.612704],[-9.858480,-1.293525,20.556003],[-8.585711,-1.505611,21.017545],[-4.679697,-1.657375,-24.241895],[5.334185,27.670224,-24.348022],[0.509488,-11.617854,20.883271],[21.210341,17.550038,-13.141876],[20.986356,-39.321454,-17.127671],[24.167920,-39.313575,-13.940949],[22.696303,-39.306149,-15.547050],[-10.648795,-16.192617,-14.774724],[-9.500334,-15.507781,-15.758275],[-7.817124,-8.367999,-19.191470],[-7.304054,-8.776574,-19.703225],[-16.701614,8.923405,10.528327],[-1.187627,-18.289474,-18.761262],[10.815368,32.018834,10.272829],[-17.683042,10.514943,7.501784],[-18.183570,9.085686,6.100376],[-17.585897,8.424905,7.820312],[-16.672330,11.855626,-22.478723],[18.212682,10.305226,5.523533],[-19.312068,23.166768,-18.060809],[-19.259916,22.829198,-17.198854],[-18.879585,24.116688,-16.769536],[-10.565922,36.215375,-10.933409],[18.680884,-34.627579,-13.561301],[11.977819,-15.972636,-14.040212],[-19.167329,25.176213,-16.620049],[8.333610,31.223721,-20.815539],[2.944157,37.173405,4.495745],[-10.268808,23.383111,18.463044],[-10.706414,21.293133,19.038489],[14.449669,16.700413,-25.177871],[-5.222906,3.674462,-26.131446],[6.131261,-7.295850,20.175059],[-12.103699,34.891316,-8.049274],[20.368680,13.117715,-16.983006],[-10.979433,-18.597766,-14.203074],[11.713162,32.567242,-16.791270],[15.929065,31.741368,-6.813895],[3.365600,33.470952,-19.796432],[1.007672,-25.128839,15.675270],[4.135124,-1.407329,22.045674],[-3.240486,37.241826,4.738273],[-3.729464,36.685025,7.145915],[-3.174848,37.242039,5.793365],[10.898392,21.765977,-25.592980],[-18.805518,10.181691,3.742656],[10.079900,21.878739,-25.597363],[0.610041,29.594861,19.012162],[-20.351613,7.743775,-15.847085],[-20.249522,8.105683,-15.067002],[4.400368,-12.999637,20.382108],[-2.644867,36.965070,7.369018],[-17.779008,-3.483234,2.717429],[-17.906692,-1.179946,-2.915263],[22.269910,14.101357,-5.977809],[-3.464731,28.971783,18.759305],[2.757252,26.578694,-25.540391],[-20.446687,24.818040,-13.156419],[-19.856921,24.003182,-14.353177],[-3.782327,-26.312486,11.943838],[-18.220878,1.421147,-2.625628],[10.941477,21.244469,-26.005017],[-15.226985,26.747861,6.128215],[-18.554876,-0.072276,3.084272],[-18.325525,0.490056,3.319741],[-18.400371,-37.934391,-18.177396],[21.426762,-37.789917,-15.370606],[14.639733,1.728886,16.227504],[19.045247,3.849087,-16.835696],[3.226459,-27.923305,-18.872334],[5.833172,-7.861694,20.493745],[6.875905,-7.735713,19.644120],[1.705741,-16.211494,-18.828549],[2.253389,25.089867,-26.328462],[-0.756649,4.554143,25.296132],[-16.296230,5.027005,13.035835],[20.797641,-4.831071,-6.177629],[26.034903,-37.182891,-8.241740],[-15.733334,28.674443,-17.032247],[-18.216676,-0.032142,-3.436696],[-18.687064,0.071736,-4.282244],[8.728072,34.894040,4.898746],[-3.192159,-1.090228,23.178275],[-6.323034,-2.183093,-23.046273],[-6.112843,-3.214072,-23.014373],[-7.361771,37.431340,-7.347129],[-7.501124,37.395375,-8.574378],[0.400020,-4.318698,-24.018798],[0.657035,-5.060867,-23.180238],[-11.283590,18.428391,-26.761163],[19.121485,28.237347,-2.864358],[-5.371512,36.975606,1.881181],[20.196999,10.015595,-17.437516],[18.011327,-6.362399,-8.218539],[1.695276,-2.386421,-24.487815],[-0.475378,-17.241447,21.480382],[-15.940670,13.482766,-23.359643],[9.624722,28.554150,15.030701],[9.313356,29.042729,15.439293],[3.025872,6.421223,-27.843347],[13.120927,-6.589973,-16.611371],[14.534059,33.211980,-11.652861],[-1.354679,6.308625,23.112468],[10.258555,-10.382539,-17.744105],[2.614783,-18.895047,-18.023763],[17.404864,-8.271705,-5.718146],[17.240069,-4.105792,-13.841002],[6.116505,13.642949,21.857470],[20.741368,26.471871,-11.660038],[-15.560293,23.806489,-22.922578],[-16.909684,-10.345214,-8.858728],[7.897425,35.540578,3.766685],[2.024648,-3.331844,23.360110],[15.973542,-6.342090,10.668684],[-12.009472,-14.480960,-14.545875],[18.394789,-6.432090,-6.657863],[3.714456,-15.209764,20.517026],[1.889373,-15.882070,21.015439],[17.556416,0.114182,6.829325],[-10.782793,9.089055,-26.705659],[-19.306182,2.821004,-4.539395],[12.491599,6.416699,16.970439],[-7.716758,-15.898589,-15.788939],[23.011250,16.483414,-7.658408],[-19.133430,1.301072,-4.843483],[10.990013,4.718114,18.912522],[-6.016473,37.912183,-5.077792],[20.788083,12.241029,-16.366139],[-8.914678,-21.572070,-15.392179],[18.828091,8.390473,4.662837],[-6.531324,23.008351,-26.575738],[-7.874645,23.511574,-26.219943],[2.938118,35.639355,-15.841205],[-14.709548,17.591229,14.453989],[-4.065928,-8.178823,-21.335578],[-0.857098,37.297772,-14.111381],[-0.424478,37.305699,-13.643306],[3.439069,31.411809,16.976917],[-0.276138,31.954274,17.239298],[16.461362,30.118565,-2.441628],[-19.838794,1.944047,-5.574521],[-21.340305,-39.318738,-16.822488],[-22.696761,-39.310395,-15.537120],[-2.212821,-4.527751,22.801316],[-1.236702,-5.094035,23.328805],[-15.687897,-28.061930,-5.586688],[-19.897268,2.972100,-5.357081],[14.285806,14.425530,17.038070],[-18.253431,17.945710,-21.058326],[-1.001880,29.153851,-23.754504],[9.439658,2.148358,19.831901],[0.530899,13.653874,-28.570394],[4.893401,37.604542,-5.800278],[-19.916124,3.816498,-4.913044],[-13.597289,-11.807725,-14.397792],[21.880736,21.293275,-3.679969],[17.091746,18.567116,8.005855],[-10.929715,8.827504,19.127656],[-9.663027,9.583375,19.784209],[18.488839,1.442605,-2.512722],[-13.333397,28.386296,11.093743],[3.365790,-11.296926,20.316615],[-4.666039,-2.704074,21.427007],[15.584059,-15.945697,-6.679869],[-17.881501,7.526532,6.604703],[2.035460,-7.311481,22.487390],[9.390165,34.576939,6.303223],[-15.629772,16.738240,-24.423520],[18.667252,7.932103,-19.444978],[12.437429,32.633298,6.359663],[16.655810,-32.254052,-12.017739],[8.500603,33.037122,-18.990760],[-19.868318,0.898820,-5.679421],[17.026828,-9.549590,-10.413510],[1.122225,8.918599,22.568360],[-6.586952,24.434869,-26.195645],[15.445716,25.495694,-20.410325],[15.207968,-16.790097,-2.757906],[0.419497,22.092484,-26.808280],[-0.483644,22.783063,-26.842727],[-24.684190,-39.313411,-13.347972],[6.184414,33.725331,11.881795],[3.082781,27.528035,-24.895116],[-4.763364,-6.331369,21.079448],[5.985954,-8.275340,20.251195],[-20.618684,6.523274,-12.156603],[13.100910,34.643262,-10.855179],[-7.761479,14.093873,21.592591],[4.800322,24.921212,-26.214004],[4.900145,25.404725,-26.098317],[18.514550,-3.294795,-12.484498],[-18.880681,0.700024,-4.553896],[-20.270700,9.421635,-0.671558],[14.436345,30.911778,4.474821],[-6.740740,-7.093305,-20.602149],[12.423543,11.093770,-26.268756],[2.516942,27.715977,18.996663],[21.247102,-3.433402,-7.542468],[20.752106,-3.892150,-7.325243],[11.143965,35.931927,-9.137712],[-8.065457,37.453343,-7.393593],[-8.014312,37.545590,-5.900827],[-9.106579,21.478623,20.003860],[11.716451,19.150197,-26.255038],[-7.685243,10.643132,20.078235],[15.105777,-27.912595,-2.616724],[3.061438,36.539220,-14.415977],[14.885540,31.506085,2.692041],[16.752404,23.909688,7.230824],[1.267073,27.226647,-25.282578],[-14.607348,-2.638374,-17.025901],[-2.328756,34.128094,-18.288917],[-9.957215,8.875375,19.283547],[0.425244,-16.704732,-19.422805],[15.611575,4.697793,-21.013669],[-12.244022,6.170731,17.160457],[19.467353,-3.187904,-8.512248],[19.542983,-4.072643,-8.168125],[-10.293733,4.454781,19.258721],[-3.551847,37.170621,1.448817],[15.587254,32.661893,-5.756519],[-2.408714,8.186887,19.714379],[18.690308,2.478051,-2.234282],[-17.526096,-7.791339,-6.159145],[5.715707,-20.500816,18.727426],[18.054627,-7.177373,-6.096332],[14.413279,-39.291903,4.724860],[4.687672,-2.949901,21.428029],[17.763766,6.773328,-19.729613],[21.003405,-2.653236,-8.234436],[-18.817926,28.668996,-6.680770],[18.713132,11.287724,4.788045],[5.120482,-10.472667,17.718187],[7.951060,0.090306,-24.012345],[7.116472,0.662663,-23.991992],[12.944602,6.141625,-23.987006],[-7.773210,-39.247223,-21.311635],[-5.447764,-38.990880,-21.881093],[-4.720598,26.712228,-25.047795],[-10.295530,34.443486,4.146510],[-10.930510,33.771474,4.402313],[-6.696703,36.705891,0.242649],[13.215462,23.829507,-24.185109],[15.883220,28.863271,3.743671],[13.356991,26.402817,-22.382974],[-13.333780,-21.607044,2.535852],[-13.155913,6.820603,-24.255590],[-1.690414,-19.344749,-18.320563],[15.456722,31.147931,-14.005170],[1.020640,-35.654611,10.549512],[-16.867807,18.293111,-23.274064],[13.460175,-11.095134,-14.290059],[12.967493,-10.830642,-14.412372],[10.152928,26.714379,-24.302323],[-1.830828,-0.559043,-25.860251],[10.990699,-10.819534,17.263062],[-7.047396,-16.427713,-17.192950],[-13.551958,11.504323,-25.626197],[-12.386384,-8.298396,17.001253],[15.900752,4.162923,-20.654544],[-2.651668,-3.156741,23.468095],[2.543851,-3.193458,23.389804],[-5.252979,-2.400100,21.109429],[15.322698,-27.709770,-7.822865],[28.168763,-39.295923,-6.553242],[27.430543,-38.172279,-7.640912],[-18.235585,-1.380065,-1.968888],[-13.658223,3.627290,17.540912],[-14.098763,5.632863,16.183133],[-18.437038,-0.519679,-2.544405],[-18.387973,-0.573631,-2.160252],[19.835181,-6.681567,-2.464622],[-9.306586,16.454159,20.745435],[-9.047462,17.219620,20.905400],[-20.394445,13.055890,-0.919160],[-2.553713,-4.158664,-23.680335],[-8.626203,1.568387,20.214948],[-12.926579,35.269246,-7.674103],[-10.392552,28.272862,14.596672],[-1.709472,36.958050,6.219195],[-10.241203,-9.881242,17.615689],[-3.973093,-19.241576,20.681130],[-3.098910,-18.631748,21.124349],[-14.344526,-13.031091,-12.569700],[-9.724054,35.054402,-14.675323],[-15.868909,27.863362,4.483824],[4.473902,33.730588,-18.208880],[-15.734748,-12.396735,-11.092790],[-2.213334,-9.915344,-20.564666],[21.718623,16.006791,-12.953644],[-20.010991,-6.629791,-1.438025],[-19.457362,-5.627372,-1.287498],[-18.766645,-6.547736,-0.971723],[-18.909009,-5.917381,-0.897156],[-2.095434,-10.073718,21.134324],[9.758363,-6.342933,-19.981536],[9.460196,-7.443229,-19.167108],[-7.446203,37.442944,-5.439904],[-5.579463,13.563019,-28.057616],[10.910986,36.325452,-9.603498],[-12.280590,15.773179,18.973968],[-18.319967,-5.693519,-1.003948],[4.215945,-0.446079,22.254777],[11.647290,-9.319953,17.197333],[13.019941,32.805005,-14.901193],[13.128085,32.739812,-15.693511],[-18.831626,-7.050651,-1.388311],[-19.557945,-7.069511,-1.425643],[-17.392579,26.216325,1.323504],[21.137673,4.082322,-11.962312],[1.943038,15.917859,22.995381],[-10.065719,28.589818,14.913163],[-15.650954,31.863652,-1.875781],[-6.823150,19.641785,-27.464543],[2.362698,27.277699,19.274796],[-0.702643,14.157899,23.277471],[13.826669,-24.198225,-11.481882],[-18.373733,-6.643943,-1.305039],[5.033281,-14.406497,19.789037],[6.399817,4.451783,18.989011],[22.390546,11.870175,-13.569522],[22.090281,10.506577,-13.979018],[-14.464287,31.494878,3.292333],[-14.761356,31.987233,1.232915],[-5.519358,38.205556,-9.968745],[-0.421410,26.272923,20.774169],[-3.255452,-21.614590,19.951600],[-3.711169,-21.872474,18.984284],[-16.490646,-37.819876,-19.037593],[-3.538405,-39.278577,10.883586],[-15.740382,17.656461,-24.074502],[9.798240,8.988232,19.351733],[-8.104266,33.747166,-18.362653],[-11.224633,18.147858,19.402499],[11.620315,16.888779,-26.482850],[2.253241,37.533719,2.830624],[-3.012626,3.596242,22.117404],[-2.872816,3.019173,22.780459],[3.766919,21.170811,-27.114530],[3.134065,21.767976,-27.369164],[-18.859050,17.970547,-19.862592],[-7.912180,32.884640,-19.503125],[-6.687309,-34.113394,7.465823],[6.237362,-7.352523,-20.547360],[-15.702470,-10.669372,-12.095952],[-15.393225,-2.438716,-17.141278],[13.697042,28.068005,10.375278],[6.927859,36.278599,0.854460],[-6.965393,17.998845,-27.443315],[-6.878026,2.810353,19.888450],[-19.190370,1.686066,-2.847796],[-19.281217,1.601189,-2.644825],[-19.160915,2.138917,-2.687053],[-19.168840,0.684941,-2.784084],[13.004544,5.587754,16.518734],[-9.502142,28.869603,15.319249],[4.379803,-9.959821,-19.856259],[-19.148725,0.597527,-2.547627],[-18.773828,23.687279,-18.409463],[-18.860698,3.370198,-1.997810],[-18.848891,2.600926,-1.979935],[10.281942,13.694859,21.022584],[-2.153499,-39.270556,11.422861],[10.853172,-0.008628,-22.588532],[-16.169206,-12.997993,-8.096474],[-6.718316,8.351670,18.002814],[0.009045,11.864598,23.095582],[19.838410,27.487183,-1.785645],[-15.856770,-8.054656,-12.739917],[17.240023,10.138280,8.952320],[8.851999,28.870244,16.093257],[-15.069073,-14.155826,-11.214385],[23.104474,9.224343,-4.489833],[16.765696,-9.954463,-1.893246],[-7.550598,-24.551127,9.854924],[-6.993818,6.568764,17.937214],[-17.205526,24.404622,-19.661021],[-18.982192,0.987164,-2.264021],[-20.268817,10.900845,-0.707864],[-19.987495,10.017590,0.180427],[-0.126032,-24.138301,17.110369],[15.755385,-13.219064,-1.027923],[14.165118,-9.093629,13.061657],[16.215064,29.997372,-0.554180],[-7.591376,6.498894,17.933051],[8.213408,-35.096567,6.523234],[4.111721,4.260823,-26.926501],[-14.705649,15.483113,-25.386498],[-17.093740,20.005387,6.555445],[-17.334581,19.288098,6.248233],[22.026780,19.274232,-11.031782],[13.772506,-18.114669,6.239106],[3.734147,-5.186698,-22.196025],[-5.482227,-10.208648,17.535230],[9.355338,34.965024,4.591338],[20.043271,9.105969,0.540528],[3.593701,37.306447,1.460345],[-0.734526,27.598416,19.997939],[-0.108728,30.167264,18.765988],[-0.278213,29.564984,19.223201],[13.638315,10.117745,17.769011],[-16.557010,31.216305,-10.483212],[9.465358,32.426060,10.929789],[-10.411366,-14.603690,-15.171037],[-10.899917,-15.006963,-15.149663],[-11.025558,-14.319953,-15.387630],[18.388076,1.338551,-2.617803],[-19.800449,8.023289,-0.394320],[-18.187057,-1.056197,2.426689],[20.714574,4.951554,-2.357481],[19.822659,12.465840,-17.336803],[17.671462,-8.099759,-8.817690],[19.627303,5.700196,-2.877518],[-16.576484,11.877709,-23.215789],[5.453660,37.089177,-1.437528],[-2.084071,-11.918750,19.410209],[15.387912,-39.294198,-19.883431],[15.033985,22.578370,-23.284890],[13.987680,4.714719,16.326784],[14.831566,-23.632580,-3.411661],[19.842870,6.819123,-0.715815],[-3.789279,27.992757,-24.888789],[-14.260090,32.449521,1.038826],[-1.606386,26.064187,20.240645],[-1.590583,4.582123,24.328055],[-1.084395,5.759095,24.182569],[12.281034,-21.129981,3.676369],[18.014558,-39.300549,-19.145356],[1.555667,30.998822,-22.764115],[14.191898,5.634686,16.229767],[-12.595245,21.574441,-25.742333],[-16.707362,27.988530,-17.150044],[-16.082261,2.923062,13.871647],[9.248733,31.717732,11.573976],[0.331362,-7.730542,23.208014],[3.364809,-35.896235,10.285788],[19.335496,29.247403,-9.021388],[-10.522836,25.624306,-24.319871],[17.528548,-8.646552,3.597983],[15.555543,1.075124,-18.218461],[-18.721706,21.932511,-18.995021],[-14.268494,16.300072,-25.861230],[19.351365,-0.609077,-12.494460],[27.694388,-39.292298,-5.254274],[0.501107,30.616955,18.407340],[-19.031715,7.845525,3.453368],[-18.733287,1.147790,-2.838721],[-6.526999,-7.850347,-20.022872],[5.093183,29.220502,17.442926],[3.794302,37.101468,-0.058297],[6.593220,2.927228,-25.765893],[-5.488849,37.589574,-4.185094],[-16.152965,0.228909,-17.981706],[-3.292200,-8.186912,-21.465087],[-8.230812,17.666463,-27.387048],[1.783845,-11.033845,-20.533618],[-8.512891,4.509179,19.394975],[-11.966926,17.709264,-26.605350],[3.286671,-6.128488,-21.458896],[-18.968690,21.516412,-20.105361],[10.493540,6.760854,17.240887],[11.340549,35.941434,-10.079101],[-0.739748,-11.865320,21.288705],[14.485707,-13.794873,-12.466547],[-19.942556,2.580483,-13.430966],[-13.747930,-15.256679,-12.115394],[-16.004340,28.982236,2.936482],[-1.702164,-3.365005,24.144183],[16.577571,-9.360479,-10.690982],[-11.159864,-0.322006,-21.772626],[0.493839,-39.261877,11.580962],[17.940840,-0.430255,4.735377],[-5.526300,-5.503991,20.704486],[-19.136779,28.368458,-8.840008],[1.095773,-9.554706,-21.109431],[-16.843343,11.412923,-21.893830],[10.755662,-9.192678,-17.603049],[-18.084443,-4.480304,-1.741663],[-7.098290,3.989762,19.175826],[-6.129018,4.643048,18.753680],[15.231570,13.282239,15.346284],[17.769274,-7.367051,-6.353460],[-16.731773,-38.290202,3.561329],[23.194756,3.341195,-8.422634],[-7.916341,28.634183,16.723705],[-13.701068,-10.798284,-14.196296],[-2.429257,17.835603,-27.911529],[0.604305,-15.961410,21.187718],[7.263369,-11.338063,-18.274953],[-1.742946,7.190926,21.464747],[-2.150481,6.411103,20.930316],[-11.122154,14.416054,-26.782418],[25.360255,-39.303469,-12.525481],[8.928988,34.282384,7.937470],[-20.316018,-35.103714,-2.561798],[-3.807770,-9.133640,-20.740121],[-4.620656,-13.882091,-18.638742],[5.504533,-9.711362,18.228036],[4.040943,-16.115642,-19.137197],[2.002454,-6.748431,-22.251191],[-2.461396,30.461392,-23.185081],[-14.371423,34.162381,-9.947712],[12.068640,2.602338,-23.005696],[9.791116,33.903271,7.947908],[-19.811040,4.207238,-4.202348],[-2.088731,-12.208656,21.309651],[9.270889,-16.993541,-15.081704],[15.098655,-10.784787,-13.092967],[8.576926,-24.667394,-16.025233],[13.616925,-5.614370,-16.942584],[7.340206,37.306660,-6.247076],[3.187547,-3.611861,24.040294],[6.489735,37.834012,-5.847707],[0.881045,36.493520,8.790172],[19.302228,13.184113,2.788829],[2.231056,-5.206922,-23.045077],[7.844396,37.075284,-6.037142],[-9.969991,-15.008569,-15.413404],[-13.146034,5.404958,16.626780],[19.971249,-2.477081,-6.579541],[-1.809527,25.543736,-25.852662],[-14.243840,-10.340114,-14.274837],[3.602320,34.872853,-17.216043],[-16.786090,-0.609035,-16.928609],[-16.473441,0.214387,-17.405578],[11.740948,-39.293288,6.476113],[19.678040,-3.455272,-8.798779],[-0.880521,39.118596,-8.656566],[6.830533,8.357686,18.007415],[-1.123831,4.245278,25.256947],[-0.646541,28.407872,19.960393],[-19.451869,-34.078023,-10.583100],[-21.603551,-35.684462,-11.223089],[-3.237178,38.390263,-4.706692],[-5.088281,37.669903,-3.608389],[-6.034901,-7.250743,-20.461064],[-4.519526,37.887685,-3.268662],[-3.688825,37.906224,-3.337132],[-4.098123,37.525593,-2.160664],[-3.697052,37.982770,-1.894980],[-5.700840,37.592702,-1.408552],[-3.615944,37.369237,-0.496190],[-6.777050,35.945904,5.172465],[-6.608050,37.494061,-1.567592],[-7.005814,37.110409,-2.345322],[-7.316406,36.728932,-1.190241],[-6.083918,37.343312,-1.436578],[23.598588,9.422520,-6.045027],[-6.655009,-12.541744,-18.306956],[-18.894155,21.162801,-18.718591],[-7.514025,37.316190,-3.681643],[-6.389379,37.643307,-3.224655],[21.751828,12.196343,-3.088584],[12.421474,11.202096,18.725989],[-2.752898,38.890622,-5.677638],[-3.316311,35.571561,10.474957],[-4.560828,35.950124,8.026942],[-4.028844,35.564625,9.686084],[-5.316378,36.211362,7.337996],[6.433804,37.893567,-7.353874],[17.774087,23.942624,-20.025735],[-5.657590,35.798619,7.655628],[-4.693816,35.654340,9.311881],[-3.430699,34.677327,12.263834],[-4.269860,35.414876,10.420644],[-4.112000,34.273495,11.932000],[-4.618442,34.736111,11.191321],[-4.611431,34.736142,12.017863],[-5.313980,35.162694,10.297993],[-5.025397,34.196393,11.914108],[-5.882346,35.495869,8.758299],[-5.533149,34.314931,11.993528],[-6.573714,34.900342,9.468799],[-6.893882,33.911237,10.625283],[5.424536,-39.282840,9.879598],[-6.247641,35.851407,7.159507],[-5.832689,34.844334,10.239833],[-7.006341,35.241246,8.089656],[4.091076,-14.361490,-19.194472],[11.799667,2.865361,-23.407409],[11.575022,3.446072,-23.825101],[12.701068,4.487744,-23.947787],[-6.053128,36.019337,5.554736],[-6.825533,35.551717,6.575522],[-19.846704,-39.314697,-18.046609],[-3.604789,33.874020,13.001946],[-3.042114,34.248631,13.254079],[-4.194900,34.242375,13.336265],[-3.122085,33.567166,13.784649],[-3.627597,33.712002,14.358766],[-4.019587,33.212361,14.377789],[-2.870218,33.108556,14.906656],[-4.516972,33.997342,12.635515],[-4.996887,34.036824,13.116376],[-4.494357,33.574399,13.937172],[-5.145593,33.303044,13.865909],[5.513041,30.240781,-22.804397],[-2.856746,31.750333,17.076778],[-2.984919,32.312741,16.069204],[-3.446692,31.858220,16.426879],[-3.441027,32.574689,15.722164],[-4.054946,32.678418,15.396789],[-3.959795,31.814168,16.429124],[-4.939299,32.039319,15.340672],[-4.809444,31.464375,16.178858],[-6.630851,31.361478,14.306101],[-5.663616,30.871777,15.425699],[-6.136729,31.823346,14.248648],[-5.458719,31.711934,15.259674],[-5.918725,32.355809,14.200685],[-6.547923,32.843228,13.137171],[-5.426973,32.620808,13.993110],[-5.979981,32.878033,12.875556],[-8.689706,35.861737,-0.372700],[-6.506973,33.283795,11.741680],[-5.848458,33.518391,12.701837],[-7.909652,37.087010,-4.360453],[-8.426253,36.987332,-4.450709],[-8.280912,35.950558,-1.291729],[-8.678208,36.297658,-4.779783],[-8.529997,35.743458,-2.225742],[-9.261821,36.128049,-2.684072],[-7.654151,36.080136,-1.525126],[-18.710428,7.003983,3.507616],[-12.571825,-17.239242,12.549215],[-10.584420,35.217168,-2.132949],[-11.220350,34.570752,-1.566895],[-9.744947,35.618390,-2.133442],[-11.007325,34.857106,-3.163984],[-10.178641,35.788052,-3.333354],[-10.525680,35.111745,-3.632827],[5.387221,-7.535831,20.765759],[-17.870359,12.715794,6.305012],[-10.689654,-4.399490,-19.709197],[-9.716702,35.705579,-1.029705],[-11.267105,35.615628,-4.442426],[7.332891,-10.532439,-18.856925],[-7.927473,34.728307,7.058261],[-9.287682,34.732167,4.889322],[-8.745203,34.715848,6.714177],[4.851384,-37.162025,-21.645160],[-7.489557,34.397046,8.697139],[-7.648407,34.116589,10.084068],[-8.146412,34.112691,8.996160],[-7.905234,33.448560,10.615514],[-8.196612,34.605443,8.394164],[-8.420261,33.670727,9.777350],[-10.077927,33.092175,8.964763],[-9.395074,33.295735,9.524429],[-9.931708,33.855145,7.853494],[-9.432247,33.916539,7.228231],[-19.884761,25.813977,-13.006566],[-10.277240,33.503560,7.706737],[-10.534711,34.071805,5.980909],[-8.818315,33.477444,9.010037],[-8.948145,34.052006,7.934313],[-9.722878,34.219922,5.732101],[13.984278,-19.412204,1.494044],[-9.027320,34.352841,6.227577],[-7.060779,33.610631,11.224146],[-7.412341,33.154645,11.311154],[-6.973127,33.015027,12.161107],[-7.034479,32.309941,12.942334],[-8.251597,32.808865,10.831933],[-7.823965,32.889920,11.601793],[-8.132187,32.327908,11.771632],[7.548585,29.325108,16.401658],[-7.237385,31.660985,13.188652],[-7.376064,31.397473,14.174321],[-8.528029,32.085660,12.529437],[-8.051375,31.080487,14.028951],[2.869945,-20.471916,21.062232],[-19.314679,27.143960,-11.753033],[-9.825479,30.930783,12.237969],[-9.310789,30.863705,13.036856],[-9.221782,31.193188,12.500152],[-9.873033,31.540829,11.726179],[-9.344600,32.264584,11.354154],[-9.668645,31.855916,11.025635],[-9.048501,31.850774,12.465713],[4.515284,38.166424,-6.217949],[-10.269799,32.441785,9.989999],[1.852465,26.792676,-25.633250],[-16.917669,27.595631,1.349504],[5.726978,2.296818,-25.658921],[-15.921828,31.605786,-4.022799],[-15.594256,32.115559,-3.166243],[-14.815605,33.218373,-4.607505],[-2.685061,-14.237205,-19.421378],[-16.430635,31.395436,-4.888573],[-10.265505,35.592381,-12.315858],[-16.703237,30.552861,-3.608450],[-20.163566,11.639966,-1.181591],[-0.512440,-9.511356,20.367179],[-18.113401,13.093495,6.112348],[-18.122760,28.679906,-2.531391],[-17.008466,29.843838,-1.627749],[-17.136670,29.668675,-4.333624],[13.667602,21.769280,-25.114598],[-17.424133,29.474728,-5.850599],[-16.891208,30.406903,-2.199158],[-11.862059,18.491681,-26.712821],[-5.120909,-30.214098,8.274155],[5.699573,-28.160639,8.713943],[4.798853,35.825566,7.943978],[12.912215,-21.454732,3.001582],[18.512370,-0.148177,-3.653399],[-0.634525,-5.265756,23.301000],[-14.579011,31.096471,4.008995],[-13.988358,31.637395,3.982068],[-1.653869,-16.313653,-19.364116],[-14.128700,30.627743,6.039972],[-13.673133,31.390568,6.070288],[-15.250592,29.498700,3.864403],[-14.990235,29.645184,5.413578],[-12.885438,30.741261,8.836787],[-13.278658,31.459820,6.637015],[-13.802053,31.033833,6.898585],[-13.659135,30.292706,7.988012],[-14.380953,29.770390,7.630529],[-14.648943,28.792584,6.833040],[-14.324061,29.372838,8.072377],[-27.423297,-39.295037,-9.471664],[-15.173510,28.231930,6.544343],[-14.436641,27.918881,8.726142],[-15.131071,28.355351,5.305636],[-4.614423,-10.046575,-20.381480],[-14.170077,28.311116,8.646944],[3.870830,-39.276626,10.714701],[3.559594,-35.149027,9.926617],[-6.641834,-17.519264,-16.426488],[-3.264442,26.463456,-25.424323],[-12.828325,30.021832,9.443103],[-13.496104,29.721814,9.564892],[16.778693,19.050145,7.612769],[11.443829,-27.579574,-14.954316],[-12.843722,29.577878,10.412592],[-13.774585,29.052067,9.288971],[-14.230335,28.837163,9.127605],[-13.034234,28.725720,11.326119],[-13.502804,28.613850,10.335028],[-13.962114,28.111111,9.660220],[-14.308270,27.654408,9.692758],[-13.568711,29.159001,10.375564],[4.265269,35.945424,7.855950],[-14.292244,27.136548,8.977055],[-19.760902,11.141839,0.508166],[-19.989282,12.166848,-0.250914],[-19.920621,12.285313,0.538512],[-19.327035,11.599366,1.619812],[-19.689965,12.458928,1.270281],[-19.622485,14.630307,-0.294514],[-20.188392,13.467026,0.515510],[-19.387847,12.589371,2.015485],[-13.947117,3.008168,17.348790],[-18.816556,12.562295,3.466285],[-18.957837,12.258847,3.002114],[-18.995170,11.373811,3.061767],[-17.202323,3.707947,9.562117],[-17.305442,5.718220,8.859878],[-5.417903,-1.908313,21.444041],[-19.026170,11.962937,2.507507],[-19.290132,11.245415,2.555073],[-18.785794,9.239598,3.672354],[-18.988916,9.677712,2.924367],[0.175984,-25.157964,15.934072],[0.174450,-26.194108,14.781426],[-17.797504,13.678891,6.930737],[-17.438117,14.375821,6.990105],[-17.570997,13.341950,7.117436],[-3.495507,-7.619262,-20.930095],[-17.679069,14.930859,7.052941],[-0.737934,26.318986,20.516921],[-17.384006,15.825989,7.682322],[-17.247564,15.327561,7.724699],[-15.147380,-18.979869,-9.194367],[-17.355167,14.756261,7.837384],[-11.715988,28.413640,12.960194],[-0.976812,28.598714,-24.236808],[-11.916251,-18.737508,12.732992],[-15.200917,1.498708,15.319709],[-13.785781,18.455628,16.208570],[19.397036,4.632817,-0.819371],[-16.658935,-39.298044,-19.612386],[-18.573980,-39.304001,-18.842874],[-1.441894,29.307378,-24.080527],[-18.087707,3.751954,-18.864310],[-17.914754,-2.003604,3.225444],[10.858953,32.708523,-17.036147],[-1.119890,7.312020,22.898829],[-5.768246,5.222939,18.416478],[13.668193,5.453034,16.304808],[20.004147,-0.161659,-8.565791],[-14.265402,1.928319,16.907610],[-15.169550,2.861279,15.714694],[28.042338,-39.289518,-7.935209],[-14.822009,-13.234042,10.068884],[20.905047,-1.988426,-6.621376],[-6.225096,-24.760173,11.760087],[4.385786,32.666363,15.047758],[-7.662926,-23.727953,11.284637],[-6.347583,-23.455287,13.553235],[14.539146,-15.011745,-11.704247],[-5.190597,-24.951353,12.711232],[-3.901083,-25.137357,13.678885],[-4.655510,-24.142195,14.448097],[-6.243626,-23.162042,14.419433],[-15.419301,23.974896,8.239444],[-2.742190,-24.403234,15.664177],[-19.023633,9.302457,4.355064],[-4.752067,5.889313,18.216510],[13.637723,5.734990,16.412821],[-2.108309,7.616696,20.062421],[7.107083,-9.213393,17.193036],[-0.873722,-24.856036,16.052022],[-1.683705,-25.275808,15.224602],[16.833173,-35.848656,1.495326],[-3.759899,-5.975526,-21.408689],[7.095567,-9.302671,17.234650],[8.318258,-4.837022,20.360480],[-11.931286,12.023972,19.541137],[7.434284,-9.354305,18.003169],[-10.362445,29.836362,-21.608531],[-5.116142,5.659043,18.135791],[10.162418,36.084622,-9.539003],[-6.738280,4.653687,18.863759],[-12.145422,-39.298062,6.126621],[-9.174623,-22.871307,10.194038],[-5.064170,-10.496724,17.731077],[12.902879,-13.595382,-14.488593],[16.322848,-10.207408,-11.752171],[-15.607098,23.621316,8.467042],[14.808566,9.265973,-23.722417],[8.444382,-13.607671,-17.404634],[-8.384890,29.165974,16.136393],[-0.656450,10.003216,22.782136],[-1.917376,14.626443,23.058179],[-11.471390,4.502206,18.700328],[-1.105295,38.223546,1.553769],[9.678890,-9.709237,-17.923638],[-16.161317,7.844418,13.081469],[-1.005789,38.463513,2.338210],[-7.645460,29.635297,16.293578],[-8.031304,29.260930,15.928320],[-6.735144,30.247662,16.122093],[-7.281061,29.797291,15.582864],[-6.654882,29.492276,16.479541],[-8.856829,30.294324,14.203833],[-9.692936,29.288457,14.610145],[-9.051247,29.282819,15.172954],[-8.741497,29.609105,15.071278],[-9.343683,30.147214,13.806162],[-9.905375,29.764279,14.028409],[-10.061540,29.384709,13.734037],[-8.703976,29.235455,15.708281],[-9.747986,30.229619,13.358755],[-8.278495,30.469617,13.978022],[-6.471972,30.990681,15.204776],[-6.194799,30.653813,15.703774],[-3.439431,31.378628,17.311246],[-3.282471,30.376782,18.150363],[-4.956874,30.965779,16.121898],[-4.697479,29.710088,17.509984],[-3.497312,29.736485,18.013988],[-4.122530,29.691533,17.930822],[-2.843649,29.433163,18.672727],[-5.588101,29.623357,17.213425],[-5.797536,30.183629,16.315001],[-5.332799,30.558369,16.159410],[3.375647,-38.932994,-22.039525],[-1.207927,10.279774,22.610141],[-0.960259,8.297581,22.803420],[-1.195730,9.005303,22.488975],[-1.909129,9.068291,21.609036],[-1.693905,8.283437,21.591306],[-16.880063,3.722981,-19.697843],[-0.488173,-25.843814,15.140054],[-0.620957,7.013215,23.502614],[-17.073135,6.283681,10.293505],[-8.574252,-22.094228,12.334892],[8.929265,14.129746,-27.395309],[-0.770407,38.912640,-3.604637],[-1.303384,38.782017,-3.849234],[-0.502064,38.627560,-2.127116],[-0.662748,38.451413,-1.302781],[-1.892232,38.843846,-3.274121],[-1.404228,38.568120,-2.433370],[-1.806980,38.396458,-1.600730],[-1.657493,38.134595,0.693379],[-1.807225,38.027791,-0.145322],[-3.072417,37.293858,0.435484],[-2.376127,37.684972,0.606999],[-2.733777,37.664937,-0.242713],[-3.071210,37.628545,-1.158671],[-2.794528,38.200879,-1.793250],[-3.208181,37.920140,-2.583953],[-2.302829,38.174313,-0.357269],[-2.695932,38.354901,-2.995420],[-1.070876,36.706532,8.233386],[-0.568325,36.457791,9.532716],[-1.746497,36.989316,7.427104],[-1.883368,36.551060,8.219051],[-1.279919,36.611455,9.074944],[-1.700057,36.119702,10.350087],[-1.306392,35.863698,10.504996],[-0.580813,35.140668,12.158819],[-0.767136,34.984822,13.381145],[-1.290686,35.509274,12.090486],[-1.851909,35.142987,11.940755],[-2.707143,34.958432,12.396231],[-2.214161,35.819333,10.310366],[-2.721362,36.568082,8.354821],[-2.153376,36.528126,9.232938],[-0.465029,34.305089,14.786300],[-1.148414,34.001706,14.534986],[-0.630719,31.686375,17.900193],[-1.159048,32.263783,17.136174],[-1.662382,32.802441,16.162140],[-1.295306,31.494473,17.304410],[-1.203697,33.173367,15.938828],[-2.524623,31.811589,16.470282],[-2.009754,31.467458,17.169087],[-2.145880,32.166501,16.433982],[-2.314692,32.748578,15.522727],[-2.272929,33.230450,15.201860],[-1.696493,31.930768,16.639056],[-2.741857,33.756024,14.414013],[-2.134296,34.147130,14.110637],[-0.576486,29.041241,19.219724],[-1.080081,28.996114,19.637427],[-1.410600,29.144032,19.149045],[-0.685487,30.184621,18.847217],[-1.008587,29.535359,19.047311],[-1.600792,29.796437,18.986096],[-2.626838,29.270489,19.094428],[-2.212442,30.681119,18.262532],[-1.732444,30.162434,18.538580],[-1.777340,30.978917,17.575747],[-1.209263,30.677350,18.190126],[-1.454486,31.273114,17.957367],[-1.046468,30.224377,18.514513],[-0.778417,30.969601,18.008182],[-26.372016,-37.361447,-8.200332],[-0.639432,-5.140199,25.436223],[-10.642966,31.838521,10.533140],[-11.160847,33.166013,6.938690],[-11.506267,32.955266,7.425800],[-11.170060,32.124036,9.969532],[-11.848458,32.251782,8.545102],[-10.354434,30.839192,12.282221],[-10.953587,31.500775,10.900125],[-10.829758,30.567982,11.502899],[-11.236558,31.671101,10.205116],[-11.287336,31.047971,10.651086],[-12.360139,30.547421,9.980848],[-12.724719,31.647473,8.333265],[-12.068165,31.113736,10.106346],[-12.743633,32.220212,6.733962],[-11.423372,33.662457,4.883770],[-10.719193,33.382603,6.622115],[-13.498742,32.303334,4.395699],[-11.502906,34.857938,-5.154926],[-12.147653,34.926923,-4.996871],[-11.509388,34.798939,-3.966358],[-11.828187,34.175732,-3.753433],[-11.591511,34.930745,-2.954733],[-12.565264,34.252660,-5.201658],[-13.141722,34.375890,-3.702693],[-13.857306,34.029683,-4.356331],[-11.994050,34.396703,-2.161981],[-7.704898,-22.568821,13.148497],[-7.944844,4.094449,19.161338],[-4.431802,36.655316,-14.392331],[-11.550480,12.880994,20.143100],[-12.372165,13.715581,19.500220],[-12.455662,13.263848,19.688895],[-12.225523,12.349698,19.581708],[-13.407908,12.500993,19.152312],[-12.480286,14.134232,19.330716],[-10.437484,30.320912,12.329340],[-10.421260,30.106587,13.181281],[-11.515090,30.633847,10.928740],[-11.383431,30.138486,11.358098],[-11.073083,30.369717,12.077799],[-10.937057,29.760754,12.157399],[-11.700531,29.744923,11.848123],[-10.801703,29.079663,13.427023],[-11.404528,28.624760,13.316603],[-11.225367,28.830266,12.904074],[-11.777893,29.233845,11.867959],[-12.194125,28.927586,12.197984],[-12.741756,29.279286,11.325113],[-17.187921,8.046105,9.121967]], + + 'uvs': [], + + 'faces': [[0,1,2,0,0,1,2],[3,4,5,0,3,4,5],[6,7,8,0,6,7,8],[9,10,11,0,9,10,11],[12,13,14,0,12,13,14],[15,16,17,0,15,16,17],[18,19,20,0,18,19,20],[21,22,23,0,21,22,23],[24,25,26,0,24,25,26],[27,28,29,0,27,28,29],[30,31,32,0,30,31,32],[33,34,35,0,33,34,35],[36,37,38,0,36,37,38],[39,40,41,0,39,40,41],[42,43,44,0,42,43,44],[45,46,47,0,45,46,47],[48,49,50,0,48,49,50],[51,52,53,0,51,52,53],[54,55,56,0,54,55,56],[57,58,59,0,57,58,59],[60,61,62,0,60,61,62],[36,38,63,0,36,38,63],[64,65,66,0,64,65,66],[67,68,69,0,67,68,69],[70,28,71,0,70,28,71],[72,73,74,0,72,73,74],[75,76,77,0,75,76,77],[78,79,80,0,78,79,80],[81,82,83,0,81,82,83],[84,85,55,0,84,85,55],[86,87,88,0,86,87,88],[89,90,91,0,89,90,91],[92,93,94,0,92,93,94],[95,96,97,0,95,96,97],[98,99,100,0,98,99,100],[101,102,103,0,101,102,103],[104,105,106,0,104,105,106],[107,108,109,0,107,108,109],[110,103,102,0,110,103,102],[111,112,113,0,111,112,113],[114,115,116,0,114,115,116],[70,102,28,0,70,102,28],[117,118,119,0,117,118,119],[110,102,70,0,110,102,70],[120,121,122,0,120,121,122],[123,124,125,0,123,124,125],[126,127,128,0,126,127,128],[129,130,131,0,129,130,131],[132,133,134,0,132,133,134],[135,136,137,0,135,136,137],[138,139,140,0,138,139,140],[141,142,143,0,141,142,143],[144,145,146,0,144,145,146],[147,148,149,0,147,148,149],[150,151,152,0,150,151,152],[153,154,155,0,153,154,155],[156,157,158,0,156,157,158],[159,160,161,0,159,160,161],[162,163,164,0,162,163,164],[165,166,167,0,165,166,167],[168,169,170,0,168,169,170],[171,172,173,0,171,172,173],[174,175,176,0,174,175,176],[177,178,179,0,177,178,179],[180,181,182,0,180,181,182],[183,184,185,0,183,184,185],[186,187,188,0,186,187,188],[189,190,191,0,189,190,191],[192,193,194,0,192,193,194],[195,196,197,0,195,196,197],[198,199,200,0,198,199,200],[201,202,203,0,201,202,203],[204,205,206,0,204,205,206],[207,208,209,0,207,208,209],[210,211,212,0,210,211,212],[213,214,215,0,213,214,215],[216,217,218,0,216,217,218],[219,220,221,0,219,220,221],[222,223,224,0,222,223,224],[225,226,227,0,225,226,227],[228,229,230,0,228,229,230],[231,232,233,0,231,232,233],[234,235,236,0,234,235,236],[237,238,239,0,237,238,239],[240,241,242,0,240,241,242],[243,244,245,0,243,244,245],[246,247,248,0,246,247,248],[249,250,251,0,249,250,251],[252,253,254,0,252,253,254],[255,241,256,0,255,241,256],[257,258,259,0,257,258,259],[260,261,262,0,260,261,262],[263,264,265,0,263,264,265],[257,266,258,0,257,266,258],[240,256,241,0,240,256,241],[267,268,269,0,267,268,269],[270,271,272,0,270,271,272],[273,274,275,0,273,274,275],[276,277,278,0,276,277,278],[279,280,281,0,279,280,281],[282,283,284,0,282,283,284],[285,286,287,0,285,286,287],[288,289,290,0,288,289,290],[291,292,293,0,291,292,293],[294,295,296,0,294,295,296],[182,181,297,0,182,181,297],[298,299,242,0,298,299,242],[300,301,302,0,300,301,302],[303,304,305,0,303,304,305],[306,307,308,0,306,307,308],[309,310,311,0,309,310,311],[312,313,314,0,312,313,314],[315,316,317,0,315,316,317],[318,319,320,0,318,319,320],[321,322,323,0,321,322,323],[324,325,326,0,324,325,326],[299,240,242,0,299,240,242],[327,328,329,0,327,328,329],[330,331,332,0,330,331,332],[333,334,335,0,333,334,335],[336,337,338,0,336,337,338],[339,340,341,0,339,340,341],[342,343,344,0,342,343,344],[345,346,347,0,345,346,347],[348,349,350,0,348,349,350],[351,352,353,0,351,352,353],[354,355,356,0,354,355,356],[357,358,359,0,357,358,359],[360,361,362,0,360,361,362],[363,364,365,0,363,364,365],[366,367,368,0,366,367,368],[369,370,371,0,369,370,371],[52,372,373,0,52,372,373],[374,375,376,0,374,375,376],[306,377,307,0,306,377,307],[378,379,380,0,378,379,380],[381,382,18,0,381,382,18],[383,384,385,0,383,384,385],[386,387,388,0,386,387,388],[389,390,391,0,389,390,391],[392,393,394,0,392,393,394],[395,396,397,0,395,396,397],[398,399,400,0,398,399,400],[401,402,403,0,401,402,403],[404,405,406,0,404,405,406],[407,408,409,0,407,408,409],[410,411,412,0,410,411,412],[413,414,415,0,413,414,415],[416,417,418,0,416,417,418],[419,420,421,0,419,420,421],[422,423,424,0,422,423,424],[425,426,427,0,425,426,427],[428,429,430,0,428,429,430],[431,432,433,0,431,432,433],[434,435,436,0,434,435,436],[437,438,439,0,437,438,439],[440,441,442,0,440,441,442],[374,376,242,0,374,376,242],[443,444,445,0,443,444,445],[431,446,447,0,431,446,447],[448,449,450,0,448,449,450],[451,452,453,0,451,452,453],[454,455,398,0,454,455,398],[456,457,458,0,456,457,458],[459,460,461,0,459,460,461],[462,463,464,0,462,463,464],[465,466,467,0,465,466,467],[255,468,241,0,255,468,241],[469,470,471,0,469,470,471],[472,473,474,0,472,473,474],[475,476,477,0,475,476,477],[478,479,480,0,478,479,480],[481,482,33,0,481,482,33],[483,484,485,0,483,484,485],[486,487,488,0,486,487,488],[489,465,490,0,489,465,490],[491,492,493,0,491,492,493],[494,495,496,0,494,495,496],[497,498,499,0,497,498,499],[245,500,501,0,245,500,501],[502,503,504,0,502,503,504],[505,506,507,0,505,506,507],[374,242,241,0,374,242,241],[508,509,510,0,508,509,510],[511,512,513,0,511,512,513],[374,241,468,0,374,241,468],[514,515,516,0,514,515,516],[517,518,519,0,517,518,519],[520,521,522,0,520,521,522],[523,524,525,0,523,524,525],[526,527,528,0,526,527,528],[529,530,245,0,529,530,245],[531,532,533,0,531,532,533],[534,535,536,0,534,535,536],[537,538,539,0,537,538,539],[540,541,542,0,540,541,542],[543,544,545,0,543,544,545],[546,547,548,0,546,547,548],[549,550,551,0,549,550,551],[552,553,554,0,552,553,554],[555,544,543,0,555,544,543],[556,557,558,0,556,557,558],[559,560,561,0,559,560,561],[562,563,564,0,562,563,564],[565,566,567,0,565,566,567],[568,569,570,0,568,569,570],[571,572,573,0,571,572,573],[574,575,565,0,574,575,565],[576,577,578,0,576,577,578],[579,580,581,0,579,580,581],[582,583,584,0,582,583,584],[585,586,587,0,585,586,587],[588,589,590,0,588,589,590],[591,592,593,0,591,592,593],[594,595,596,0,594,595,596],[597,598,599,0,597,598,599],[600,601,602,0,600,601,602],[603,604,605,0,603,604,605],[606,543,545,0,606,543,545],[607,608,609,0,607,608,609],[610,611,612,0,610,611,612],[613,614,615,0,613,614,615],[616,617,618,0,616,617,618],[619,620,621,0,619,620,621],[120,622,121,0,120,622,121],[623,624,625,0,623,624,625],[626,627,628,0,626,627,628],[629,630,631,0,629,630,631],[632,633,634,0,632,633,634],[635,636,637,0,635,636,637],[638,639,640,0,638,639,640],[641,642,138,0,641,642,138],[597,643,598,0,597,643,598],[606,545,644,0,606,545,644],[645,646,647,0,645,646,647],[648,649,650,0,648,649,650],[651,652,653,0,651,652,653],[654,655,656,0,654,655,656],[549,657,550,0,549,657,550],[658,659,660,0,658,659,660],[661,662,663,0,661,662,663],[664,665,666,0,664,665,666],[644,545,667,0,644,545,667],[644,667,668,0,644,667,668],[669,670,671,0,669,670,671],[672,673,674,0,672,673,674],[675,676,677,0,675,676,677],[678,679,680,0,678,679,680],[607,681,608,0,607,681,608],[682,683,684,0,682,683,684],[685,686,687,0,685,686,687],[688,689,690,0,688,689,690],[691,692,693,0,691,692,693],[694,695,696,0,694,695,696],[0,697,698,0,0,697,698],[699,700,701,0,699,700,701],[702,624,703,0,702,624,703],[704,383,705,0,704,383,705],[706,707,581,0,706,707,581],[708,709,710,0,708,709,710],[711,441,712,0,711,441,712],[713,714,715,0,713,714,715],[697,716,717,0,697,716,717],[718,719,720,0,718,719,720],[721,722,723,0,721,722,723],[724,725,726,0,724,725,726],[727,728,729,0,727,728,729],[730,731,732,0,730,731,732],[733,734,735,0,733,734,735],[236,736,737,0,236,736,737],[738,739,740,0,738,739,740],[741,742,743,0,741,742,743],[744,745,746,0,744,745,746],[747,748,749,0,747,748,749],[750,751,752,0,750,751,752],[753,754,755,0,753,754,755],[756,757,758,0,756,757,758],[759,760,761,0,759,760,761],[762,763,764,0,762,763,764],[765,741,743,0,765,741,743],[766,767,768,0,766,767,768],[769,770,771,0,769,770,771],[772,773,774,0,772,773,774],[775,776,777,0,775,776,777],[778,779,780,0,778,779,780],[190,781,782,0,190,781,782],[783,784,785,0,783,784,785],[786,787,788,0,786,787,788],[789,790,188,0,789,790,188],[791,792,793,0,791,792,793],[794,795,796,0,794,795,796],[797,798,799,0,797,798,799],[800,801,802,0,800,801,802],[803,804,805,0,803,804,805],[806,807,808,0,806,807,808],[809,810,811,0,809,810,811],[812,813,814,0,812,813,814],[815,816,817,0,815,816,817],[742,741,543,0,742,741,543],[818,819,820,0,818,819,820],[821,822,823,0,821,822,823],[824,825,826,0,824,825,826],[827,828,829,0,827,828,829],[830,831,832,0,830,831,832],[390,833,391,0,390,833,391],[834,835,557,0,834,835,557],[836,837,838,0,836,837,838],[839,840,841,0,839,840,841],[842,843,844,0,842,843,844],[741,555,543,0,741,555,543],[845,846,847,0,845,846,847],[848,849,850,0,848,849,850],[851,852,853,0,851,852,853],[854,855,856,0,854,855,856],[857,858,859,0,857,858,859],[860,861,862,0,860,861,862],[863,864,865,0,863,864,865],[866,867,868,0,866,867,868],[869,870,871,0,869,870,871],[872,873,874,0,872,873,874],[875,866,868,0,875,866,868],[876,687,877,0,876,687,877],[878,879,880,0,878,879,880],[881,882,883,0,881,882,883],[884,885,886,0,884,885,886],[887,888,889,0,887,888,889],[890,761,891,0,890,761,891],[892,893,894,0,892,893,894],[895,896,897,0,895,896,897],[898,899,900,0,898,899,900],[901,902,903,0,901,902,903],[904,905,906,0,904,905,906],[907,908,909,0,907,908,909],[910,911,912,0,910,911,912],[913,914,915,0,913,914,915],[916,917,918,0,916,917,918],[919,920,921,0,919,920,921],[726,922,923,0,726,922,923],[924,925,926,0,924,925,926],[927,928,929,0,927,928,929],[930,931,932,0,930,931,932],[933,934,935,0,933,934,935],[936,937,938,0,936,937,938],[939,940,941,0,939,940,941],[942,943,944,0,942,943,944],[945,946,947,0,945,946,947],[948,908,907,0,948,908,907],[949,309,950,0,949,309,950],[951,952,953,0,951,952,953],[954,955,956,0,954,955,956],[957,958,959,0,957,958,959],[960,961,962,0,960,961,962],[963,964,965,0,963,964,965],[966,967,968,0,966,967,968],[969,970,971,0,969,970,971],[972,866,973,0,972,866,973],[974,975,976,0,974,975,976],[622,120,977,0,622,120,977],[978,979,170,0,978,979,170],[980,981,982,0,980,981,982],[983,984,985,0,983,984,985],[986,987,230,0,986,987,230],[988,989,802,0,988,989,802],[990,161,160,0,990,161,160],[991,992,993,0,991,992,993],[264,994,995,0,264,994,995],[996,997,998,0,996,997,998],[999,1000,1001,0,999,1000,1001],[1002,1003,333,0,1002,1003,333],[1004,1005,693,0,1004,1005,693],[1006,1007,1008,0,1006,1007,1008],[1009,1010,1011,0,1009,1010,1011],[1012,1013,1014,0,1012,1013,1014],[1015,1016,930,0,1015,1016,930],[1017,1018,1019,0,1017,1018,1019],[1020,1021,1022,0,1020,1021,1022],[119,1023,1024,0,119,1023,1024],[1025,1026,1027,0,1025,1026,1027],[1028,1029,1030,0,1028,1029,1030],[1031,1032,1033,0,1031,1032,1033],[1034,1035,1036,0,1034,1035,1036],[167,1037,1038,0,167,1037,1038],[1039,1040,1041,0,1039,1040,1041],[532,1042,1043,0,532,1042,1043],[1044,751,1045,0,1044,751,1045],[1046,1047,1048,0,1046,1047,1048],[316,1049,1050,0,316,1049,1050],[1051,1052,1053,0,1051,1052,1053],[1054,1055,1056,0,1054,1055,1056],[1057,1058,1059,0,1057,1058,1059],[1060,1061,1030,0,1060,1061,1030],[1062,1063,1064,0,1062,1063,1064],[1065,1066,1067,0,1065,1066,1067],[231,233,1068,0,231,233,1068],[1069,1070,1071,0,1069,1070,1071],[1072,1073,1074,0,1072,1073,1074],[1030,1029,1060,0,1030,1029,1060],[1075,1076,1077,0,1075,1076,1077],[1078,1079,1080,0,1078,1079,1080],[437,1081,438,0,437,1081,438],[1082,1083,1084,0,1082,1083,1084],[1085,1086,1087,0,1085,1086,1087],[1088,1089,1090,0,1088,1089,1090],[220,1091,221,0,220,1091,221],[8,1092,6,0,8,1092,6],[1093,1094,1095,0,1093,1094,1095],[1096,1097,1098,0,1096,1097,1098],[93,1099,1100,0,93,1099,1100],[1101,824,826,0,1101,824,826],[1102,1103,1104,0,1102,1103,1104],[1105,1106,1107,0,1105,1106,1107],[1108,1109,1110,0,1108,1109,1110],[1111,1112,1113,0,1111,1112,1113],[1114,1115,1116,0,1114,1115,1116],[1117,1118,1119,0,1117,1118,1119],[1120,1121,1122,0,1120,1121,1122],[1123,1029,1028,0,1123,1029,1028],[1124,1125,1126,0,1124,1125,1126],[1012,1127,1128,0,1012,1127,1128],[1129,1130,1131,0,1129,1130,1131],[1132,1123,1028,0,1132,1123,1028],[1133,1134,1135,0,1133,1134,1135],[1136,1137,1138,0,1136,1137,1138],[1139,1140,1141,0,1139,1140,1141],[1142,1143,1144,0,1142,1143,1144],[1145,1146,676,0,1145,1146,676],[219,1147,1148,0,219,1147,1148],[1123,1132,1149,0,1123,1132,1149],[1150,1151,1152,0,1150,1151,1152],[1153,1154,1155,0,1153,1154,1155],[1156,1157,1158,0,1156,1157,1158],[1159,1160,1161,0,1159,1160,1161],[1162,1163,1164,0,1162,1163,1164],[1165,1114,1116,0,1165,1114,1116],[1166,1167,232,0,1166,1167,232],[1168,1169,1170,0,1168,1169,1170],[1171,1172,1173,0,1171,1172,1173],[1174,1175,1176,0,1174,1175,1176],[260,1177,261,0,260,1177,261],[1178,1179,1180,0,1178,1179,1180],[1181,1136,1182,0,1181,1136,1182],[1183,1184,258,0,1183,1184,258],[1185,992,1186,0,1185,992,1186],[1187,927,1188,0,1187,927,1188],[1189,1190,1191,0,1189,1190,1191],[1192,1193,1194,0,1192,1193,1194],[1195,1196,1197,0,1195,1196,1197],[1198,728,1199,0,1198,728,1199],[1200,1201,1202,0,1200,1201,1202],[1203,1204,1205,0,1203,1204,1205],[1206,1207,1208,0,1206,1207,1208],[1209,1172,1171,0,1209,1172,1171],[1210,1211,518,0,1210,1211,518],[1212,1064,1063,0,1212,1064,1063],[993,1213,472,0,993,1213,472],[1214,1215,1216,0,1214,1215,1216],[1217,1218,1219,0,1217,1218,1219],[1220,1123,1221,0,1220,1123,1221],[1222,1223,1224,0,1222,1223,1224],[1225,1226,1227,0,1225,1226,1227],[1228,1229,1230,0,1228,1229,1230],[1231,1232,1233,0,1231,1232,1233],[1234,1235,1236,0,1234,1235,1236],[1237,1238,35,0,1237,1238,35],[933,935,1239,0,933,935,1239],[991,1240,992,0,991,1240,992],[1241,1242,1243,0,1241,1242,1243],[1221,1149,1244,0,1221,1149,1244],[1245,1246,1247,0,1245,1246,1247],[1123,1149,1221,0,1123,1149,1221],[1248,1249,1250,0,1248,1249,1250],[1251,758,1252,0,1251,758,1252],[1253,1254,1255,0,1253,1254,1255],[1256,171,1257,0,1256,171,1257],[1029,1220,1060,0,1029,1220,1060],[1258,1259,1260,0,1258,1259,1260],[1261,1262,1228,0,1261,1262,1228],[1263,1264,1265,0,1263,1264,1265],[1266,820,1267,0,1266,820,1267],[1268,1269,1270,0,1268,1269,1270],[1271,1272,1257,0,1271,1272,1257],[1273,1274,1275,0,1273,1274,1275],[1276,1277,1278,0,1276,1277,1278],[1060,1220,1279,0,1060,1220,1279],[1280,1281,1282,0,1280,1281,1282],[1283,1284,1285,0,1283,1284,1285],[1286,1287,1288,0,1286,1287,1288],[1289,1290,1291,0,1289,1290,1291],[1292,1293,1294,0,1292,1293,1294],[21,1157,1156,0,21,1157,1156],[1295,1296,1297,0,1295,1296,1297],[1298,1299,1300,0,1298,1299,1300],[1301,1302,1303,0,1301,1302,1303],[1304,1305,141,0,1304,1305,141],[1306,1307,1308,0,1306,1307,1308],[1309,1310,1311,0,1309,1310,1311],[1312,1313,1314,0,1312,1313,1314],[1315,1316,1317,0,1315,1316,1317],[1123,1220,1029,0,1123,1220,1029],[1318,1319,1320,0,1318,1319,1320],[1321,586,314,0,1321,586,314],[1322,1045,1323,0,1322,1045,1323],[1324,1325,893,0,1324,1325,893],[1326,1175,1327,0,1326,1175,1327],[1328,1329,1330,0,1328,1329,1330],[1331,1332,698,0,1331,1332,698],[1333,1334,1335,0,1333,1334,1335],[1102,1104,1336,0,1102,1104,1336],[1337,1338,1339,0,1337,1338,1339],[1340,1341,1279,0,1340,1341,1279],[1342,1242,1343,0,1342,1242,1343],[1344,1345,1346,0,1344,1345,1346],[1347,1348,1349,0,1347,1348,1349],[1350,1351,1352,0,1350,1351,1352],[1353,1354,1355,0,1353,1354,1355],[1356,1357,1358,0,1356,1357,1358],[1359,1360,1361,0,1359,1360,1361],[1362,1363,1364,0,1362,1363,1364],[1365,1366,1367,0,1365,1366,1367],[1368,1369,1370,0,1368,1369,1370],[1371,1372,1373,0,1371,1372,1373],[1374,1375,1376,0,1374,1375,1376],[1377,1378,1379,0,1377,1378,1379],[257,259,1380,0,257,259,1380],[1381,1382,1383,0,1381,1382,1383],[1384,1155,1385,0,1384,1155,1385],[1386,757,756,0,1386,757,756],[1387,301,1388,0,1387,301,1388],[869,1389,1390,0,869,1389,1390],[1391,1392,1393,0,1391,1392,1393],[1394,1395,911,0,1394,1395,911],[1396,1397,1398,0,1396,1397,1398],[1340,1279,1220,0,1340,1279,1220],[1399,1400,1401,0,1399,1400,1401],[1402,1403,96,0,1402,1403,96],[1404,1309,1405,0,1404,1309,1405],[1406,1407,1408,0,1406,1407,1408],[1409,1410,1411,0,1409,1410,1411],[1412,1413,1414,0,1412,1413,1414],[1415,1416,1417,0,1415,1416,1417],[1418,1419,1420,0,1418,1419,1420],[776,1421,1422,0,776,1421,1422],[1423,1424,1425,0,1423,1424,1425],[1426,1427,1181,0,1426,1427,1181],[1428,1429,1430,0,1428,1429,1430],[996,1431,997,0,996,1431,997],[1432,1433,1434,0,1432,1433,1434],[1435,1436,1437,0,1435,1436,1437],[1438,1439,1069,0,1438,1439,1069],[1440,1441,1442,0,1440,1441,1442],[1443,1444,1445,0,1443,1444,1445],[1446,1447,1448,0,1446,1447,1448],[1449,1450,1451,0,1449,1450,1451],[1220,1221,1340,0,1220,1221,1340],[1452,1453,1454,0,1452,1453,1454],[1364,1455,1456,0,1364,1455,1456],[1457,1458,1459,0,1457,1458,1459],[1460,1461,1462,0,1460,1461,1462],[1463,1464,1465,0,1463,1464,1465],[204,206,1466,0,204,206,1466],[1467,234,1468,0,1467,234,1468],[1469,1470,1471,0,1469,1470,1471],[1340,1221,1472,0,1340,1221,1472],[1473,133,1474,0,1473,133,1474],[1475,1476,1477,0,1475,1476,1477],[1004,693,1478,0,1004,693,1478],[1479,1480,1481,0,1479,1480,1481],[1482,913,1483,0,1482,913,1483],[1484,1485,1486,0,1484,1485,1486],[1241,1487,1488,0,1241,1487,1488],[1489,1490,1491,0,1489,1490,1491],[389,1492,390,0,389,1492,390],[1493,1494,1495,0,1493,1494,1495],[1496,1497,1317,0,1496,1497,1317],[1498,1499,1500,0,1498,1499,1500],[1501,1502,1503,0,1501,1502,1503],[1504,1505,1506,0,1504,1505,1506],[1381,1383,1507,0,1381,1383,1507],[1508,1509,1510,0,1508,1509,1510],[1511,1512,1513,0,1511,1512,1513],[1514,1515,1516,0,1514,1515,1516],[1517,1518,1519,0,1517,1518,1519],[1218,1096,1098,0,1218,1096,1098],[1520,1521,1522,0,1520,1521,1522],[256,1494,1493,0,256,1494,1493],[780,779,837,0,780,779,837],[1218,1098,1219,0,1218,1098,1219],[1523,1524,1525,0,1523,1524,1525],[1526,453,1527,0,1526,453,1527],[1528,1529,1530,0,1528,1529,1530],[171,1531,1257,0,171,1531,1257],[1532,1121,1533,0,1532,1121,1533],[1534,255,1493,0,1534,255,1493],[1535,1536,1537,0,1535,1536,1537],[1538,1539,1540,0,1538,1539,1540],[1541,1542,1543,0,1541,1542,1543],[1288,1287,1544,0,1288,1287,1544],[1545,1546,1547,0,1545,1546,1547],[1548,325,1549,0,1548,325,1549],[1550,1087,1551,0,1550,1087,1551],[1552,1553,1554,0,1552,1553,1554],[1555,1556,1557,0,1555,1556,1557],[3,1558,408,0,3,1558,408],[606,742,543,0,606,742,543],[1559,1560,1561,0,1559,1560,1561],[1562,1563,1558,0,1562,1563,1558],[1564,1565,1566,0,1564,1565,1566],[279,124,1567,0,279,124,1567],[1568,1569,1570,0,1568,1569,1570],[1571,1572,1573,0,1571,1572,1573],[1574,1575,1576,0,1574,1575,1576],[1577,1578,1579,0,1577,1578,1579],[1580,1581,1582,0,1580,1581,1582],[1583,1584,1585,0,1583,1584,1585],[1586,1587,1588,0,1586,1587,1588],[1589,1590,1591,0,1589,1590,1591],[1592,1380,1529,0,1592,1380,1529],[1593,1594,1207,0,1593,1594,1207],[1595,1596,1597,0,1595,1596,1597],[1598,1599,1600,0,1598,1599,1600],[1601,1602,1519,0,1601,1602,1519],[1494,256,742,0,1494,256,742],[1603,1604,208,0,1603,1604,208],[1605,1606,1607,0,1605,1606,1607],[1608,1609,1610,0,1608,1609,1610],[1611,1612,1613,0,1611,1612,1613],[1316,1614,1615,0,1316,1614,1615],[1616,1617,1618,0,1616,1617,1618],[1619,1620,1621,0,1619,1620,1621],[1622,1623,1624,0,1622,1623,1624],[1625,1626,1627,0,1625,1626,1627],[606,1494,742,0,606,1494,742],[240,743,256,0,240,743,256],[1628,1629,1630,0,1628,1629,1630],[75,1631,1632,0,75,1631,1632],[1633,1634,1635,0,1633,1634,1635],[1636,1637,1638,0,1636,1637,1638],[1639,1640,1641,0,1639,1640,1641],[1642,1643,720,0,1642,1643,720],[1644,1645,1056,0,1644,1645,1056],[1646,1647,1648,0,1646,1647,1648],[1649,1650,1651,0,1649,1650,1651],[1652,1653,1654,0,1652,1653,1654],[1655,1656,1657,0,1655,1656,1657],[1658,1659,1660,0,1658,1659,1660],[1661,113,513,0,1661,113,513],[186,1662,1663,0,186,1662,1663],[146,106,1664,0,146,106,1664],[1665,1666,1667,0,1665,1666,1667],[1668,1656,1655,0,1668,1656,1655],[1669,1670,1671,0,1669,1670,1671],[1404,1672,1673,0,1404,1672,1673],[1674,1675,1676,0,1674,1675,1676],[1677,663,662,0,1677,663,662],[1678,1679,1680,0,1678,1679,1680],[1681,1682,1683,0,1681,1682,1683],[1684,1685,1686,0,1684,1685,1686],[965,964,1687,0,965,964,1687],[1688,1689,1690,0,1688,1689,1690],[1691,1692,1693,0,1691,1692,1693],[1694,1695,1696,0,1694,1695,1696],[1697,1698,1699,0,1697,1698,1699],[1700,415,414,0,1700,415,414],[743,742,256,0,743,742,256],[1701,1702,1703,0,1701,1702,1703],[1704,1705,1706,0,1704,1705,1706],[1707,1708,1709,0,1707,1708,1709],[1710,1711,669,0,1710,1711,669],[1712,1713,1714,0,1712,1713,1714],[1178,1180,1715,0,1178,1180,1715],[1716,1717,1718,0,1716,1717,1718],[1719,1720,1721,0,1719,1720,1721],[1722,1723,1724,0,1722,1723,1724],[1725,1726,1727,0,1725,1726,1727],[1728,1729,1730,0,1728,1729,1730],[1731,1732,1733,0,1731,1732,1733],[1734,1735,1082,0,1734,1735,1082],[1736,1737,1738,0,1736,1737,1738],[1739,1740,1741,0,1739,1740,1741],[1742,1743,1744,0,1742,1743,1744],[256,1493,255,0,256,1493,255],[1665,1667,1745,0,1665,1667,1745],[1746,1747,1321,0,1746,1747,1321],[478,480,1748,0,478,480,1748],[1749,1750,1751,0,1749,1750,1751],[1752,1753,1754,0,1752,1753,1754],[150,1755,1756,0,150,1755,1756],[1757,1507,1758,0,1757,1507,1758],[1759,1760,1025,0,1759,1760,1025],[1761,350,349,0,1761,350,349],[345,1762,1763,0,345,1762,1763],[1327,1764,1765,0,1327,1764,1765],[1710,1766,1767,0,1710,1766,1767],[1768,970,1769,0,1768,970,1769],[1647,1770,1771,0,1647,1770,1771],[1772,1773,1774,0,1772,1773,1774],[1775,1776,1777,0,1775,1776,1777],[1778,1779,1780,0,1778,1779,1780],[1781,1782,1783,0,1781,1782,1783],[1784,1785,1786,0,1784,1785,1786],[1787,1788,1789,0,1787,1788,1789],[93,1790,1099,0,93,1790,1099],[1791,1792,1793,0,1791,1792,1793],[1569,1794,1795,0,1569,1794,1795],[1796,1797,1798,0,1796,1797,1798],[1799,1677,1800,0,1799,1677,1800],[1801,1802,1803,0,1801,1802,1803],[1804,1805,1806,0,1804,1805,1806],[603,1807,604,0,603,1807,604],[1762,1808,1809,0,1762,1808,1809],[29,545,544,0,29,545,544],[1810,1811,1812,0,1810,1811,1812],[99,1813,100,0,99,1813,100],[1814,1815,1816,0,1814,1815,1816],[1817,1818,1819,0,1817,1818,1819],[1820,1821,1822,0,1820,1821,1822],[1823,1236,1235,0,1823,1236,1235],[15,1824,1825,0,15,1824,1825],[424,334,1826,0,424,334,1826],[1464,1827,1465,0,1464,1827,1465],[1828,1829,1830,0,1828,1829,1830],[1831,1832,1833,0,1831,1832,1833],[1834,1835,420,0,1834,1835,420],[1091,1836,1837,0,1091,1836,1837],[544,555,29,0,544,555,29],[1838,1839,1840,0,1838,1839,1840],[555,27,29,0,555,27,29],[1841,1842,1843,0,1841,1842,1843],[1844,1845,1846,0,1844,1845,1846],[1847,961,1387,0,1847,961,1387],[1848,1849,1850,0,1848,1849,1850],[545,1851,667,0,545,1851,667],[1852,1853,1854,0,1852,1853,1854],[685,687,876,0,685,687,876],[1855,1856,1857,0,1855,1856,1857],[1858,1859,1860,0,1858,1859,1860],[1861,1862,1863,0,1861,1862,1863],[1864,1865,1866,0,1864,1865,1866],[1867,1868,1869,0,1867,1868,1869],[1870,1871,1872,0,1870,1871,1872],[1873,1,1874,0,1873,1,1874],[1732,1875,1876,0,1732,1875,1876],[1877,1878,1879,0,1877,1878,1879],[102,101,1851,0,102,101,1851],[28,102,29,0,28,102,29],[1880,1881,1882,0,1880,1881,1882],[102,1851,29,0,102,1851,29],[428,430,1883,0,428,430,1883],[1884,1885,1886,0,1884,1885,1886],[1887,1888,1889,0,1887,1888,1889],[1890,1045,1891,0,1890,1045,1891],[1892,1893,1894,0,1892,1893,1894],[1895,1896,1897,0,1895,1896,1897],[1898,1899,1900,0,1898,1899,1900],[1901,1902,1903,0,1901,1902,1903],[1904,1905,1906,0,1904,1905,1906],[1433,1907,1434,0,1433,1907,1434],[1851,545,29,0,1851,545,29],[1908,1576,1909,0,1908,1576,1909],[416,1259,1910,0,416,1259,1910],[1720,1911,1912,0,1720,1911,1912],[1913,1914,1915,0,1913,1914,1915],[1443,1894,1916,0,1443,1894,1916],[1917,1918,1919,0,1917,1918,1919],[1920,1161,1921,0,1920,1161,1921],[27,555,741,0,27,555,741],[1922,1923,1924,0,1922,1923,1924],[1925,1926,1927,0,1925,1926,1927],[608,681,1928,0,608,681,1928],[1929,1930,1931,0,1929,1930,1931],[1932,1933,1934,0,1932,1933,1934],[982,1935,207,0,982,1935,207],[1936,1937,1822,0,1936,1937,1822],[1938,1939,1940,0,1938,1939,1940],[344,1941,342,0,344,1941,342],[1942,1943,1944,0,1942,1943,1944],[1945,1946,1947,0,1945,1946,1947],[1948,462,464,0,1948,462,464],[1949,1950,491,0,1949,1950,491],[1951,1952,1953,0,1951,1952,1953],[1954,1955,1956,0,1954,1955,1956],[1957,1958,933,0,1957,1958,933],[1959,1960,1961,0,1959,1960,1961],[1962,27,741,0,1962,27,741],[237,239,1963,0,237,239,1963],[370,1964,371,0,370,1964,371],[1965,1716,502,0,1965,1716,502],[1966,1967,1968,0,1966,1967,1968],[1969,1970,1971,0,1969,1970,1971],[75,1632,76,0,75,1632,76],[1369,604,1972,0,1369,604,1972],[1973,1974,1975,0,1973,1974,1975],[1976,143,142,0,1976,143,142],[1977,213,1226,0,1977,213,1226],[1701,1978,1979,0,1701,1978,1979],[1962,765,1980,0,1962,765,1980],[1981,1982,1983,0,1981,1982,1983],[1984,1985,1986,0,1984,1985,1986],[1987,789,1988,0,1987,789,1988],[1989,1990,1991,0,1989,1990,1991],[1992,1993,76,0,1992,1993,76],[1994,1995,1996,0,1994,1995,1996],[1545,1997,1998,0,1545,1997,1998],[1679,1999,2000,0,1679,1999,2000],[2001,2002,2003,0,2001,2002,2003],[2004,2005,2006,0,2004,2005,2006],[1962,741,765,0,1962,741,765],[2007,2008,2009,0,2007,2008,2009],[2010,2011,2012,0,2010,2011,2012],[2013,2014,2015,0,2013,2014,2015],[2016,2017,2018,0,2016,2017,2018],[2019,2020,2021,0,2019,2020,2021],[1177,2022,2023,0,1177,2022,2023],[2024,1144,1960,0,2024,1144,1960],[2025,2026,2027,0,2025,2026,2027],[2028,2029,2030,0,2028,2029,2030],[2031,2032,2033,0,2031,2032,2033],[2034,2035,2036,0,2034,2035,2036],[2037,2038,2039,0,2037,2038,2039],[2040,2041,2042,0,2040,2041,2042],[942,2043,2044,0,942,2043,2044],[2045,2046,978,0,2045,2046,978],[2047,2048,2049,0,2047,2048,2049],[2050,2051,2052,0,2050,2051,2052],[1320,2053,292,0,1320,2053,292],[2054,1787,2055,0,2054,1787,2055],[147,2056,2057,0,147,2056,2057],[2058,508,510,0,2058,508,510],[2059,2060,2061,0,2059,2060,2061],[2062,2063,936,0,2062,2063,936],[2064,2065,1733,0,2064,2065,1733],[2066,711,2067,0,2066,711,2067],[2068,2069,2070,0,2068,2069,2070],[2071,2072,2073,0,2071,2072,2073],[2074,2075,2076,0,2074,2075,2076],[1057,2077,2078,0,1057,2077,2078],[126,2079,1730,0,126,2079,1730],[2080,729,728,0,2080,729,728],[2081,2082,2083,0,2081,2082,2083],[2084,2085,2086,0,2084,2085,2086],[2087,2088,2089,0,2087,2088,2089],[2090,2091,2092,0,2090,2091,2092],[2093,1254,1253,0,2093,1254,1253],[1984,1986,2094,0,1984,1986,2094],[2095,2096,2097,0,2095,2096,2097],[2098,2099,1980,0,2098,2099,1980],[2100,2101,2102,0,2100,2101,2102],[2103,2104,2105,0,2103,2104,2105],[2106,2107,2108,0,2106,2107,2108],[2109,2110,2111,0,2109,2110,2111],[2112,274,2113,0,2112,274,2113],[2114,1023,2115,0,2114,1023,2115],[2116,2117,2118,0,2116,2117,2118],[1854,1853,2119,0,1854,1853,2119],[2098,948,2099,0,2098,948,2099],[120,2120,977,0,120,2120,977],[1354,2121,2122,0,1354,2121,2122],[1753,2123,2124,0,1753,2123,2124],[1649,2125,1650,0,1649,2125,1650],[1396,2126,2127,0,1396,2126,2127],[2128,2129,2130,0,2128,2129,2130],[2131,2132,2133,0,2131,2132,2133],[1093,2134,2135,0,1093,2134,2135],[2136,2137,2138,0,2136,2137,2138],[2139,2140,2141,0,2139,2140,2141],[392,2142,393,0,392,2142,393],[2143,2144,2145,0,2143,2144,2145],[2146,2147,2148,0,2146,2147,2148],[2149,2150,2151,0,2149,2150,2151],[1980,2152,1962,0,1980,2152,1962],[1021,2153,2154,0,1021,2153,2154],[2155,2156,2157,0,2155,2156,2157],[2158,1071,2159,0,2158,1071,2159],[2160,2161,2162,0,2160,2161,2162],[1616,2163,2164,0,1616,2163,2164],[2165,2166,1712,0,2165,2166,1712],[2167,2168,2169,0,2167,2168,2169],[1980,2099,2152,0,1980,2099,2152],[2170,2171,1318,0,2170,2171,1318],[2172,1687,2173,0,2172,1687,2173],[2174,2175,2176,0,2174,2175,2176],[2177,2178,2179,0,2177,2178,2179],[2180,2181,2182,0,2180,2181,2182],[2183,2184,2185,0,2183,2184,2185],[2186,2187,474,0,2186,2187,474],[921,2188,2144,0,921,2188,2144],[2189,2190,2191,0,2189,2190,2191],[2192,1550,1145,0,2192,1550,1145],[1980,2193,2098,0,1980,2193,2098],[1791,2194,2195,0,1791,2194,2195],[2196,2197,2198,0,2196,2197,2198],[2199,1918,1806,0,2199,1918,1806],[2200,2201,2202,0,2200,2201,2202],[299,2098,2193,0,299,2098,2193],[941,2203,2204,0,941,2203,2204],[2205,2206,2207,0,2205,2206,2207],[2208,2209,1345,0,2208,2209,1345],[2210,2211,2212,0,2210,2211,2212],[2213,900,899,0,2213,900,899],[1137,2214,2215,0,1137,2214,2215],[2216,2217,2218,0,2216,2217,2218],[2219,316,2220,0,2219,316,2220],[2221,2222,2223,0,2221,2222,2223],[2224,2098,299,0,2224,2098,299],[2225,1646,2226,0,2225,1646,2226],[1539,2227,498,0,1539,2227,498],[2228,2229,2230,0,2228,2229,2230],[2224,299,2231,0,2224,299,2231],[2232,2233,2234,0,2232,2233,2234],[2235,1428,2236,0,2235,1428,2236],[2237,2238,2239,0,2237,2238,2239],[2240,1796,2241,0,2240,1796,2241],[799,798,2242,0,799,798,2242],[2243,2244,2245,0,2243,2244,2245],[2246,1982,2247,0,2246,1982,2247],[299,2193,240,0,299,2193,240],[2248,2249,2250,0,2248,2249,2250],[1959,2251,1960,0,1959,2251,1960],[2252,2253,2254,0,2252,2253,2254],[2255,2256,2257,0,2255,2256,2257],[2258,660,659,0,2258,660,659],[2259,2260,1095,0,2259,2260,1095],[2261,2262,413,0,2261,2262,413],[2263,1887,2264,0,2263,1887,2264],[303,2265,2266,0,303,2265,2266],[2267,2268,2269,0,2267,2268,2269],[2270,2271,2272,0,2270,2271,2272],[2273,1923,2217,0,2273,1923,2217],[2274,2275,2276,0,2274,2275,2276],[2277,164,2278,0,2277,164,2278],[2279,2280,2281,0,2279,2280,2281],[969,971,2282,0,969,971,2282],[2283,2284,1599,0,2283,2284,1599],[2285,2286,2287,0,2285,2286,2287],[2288,2289,2290,0,2288,2289,2290],[240,2193,743,0,240,2193,743],[1700,414,2291,0,1700,414,2291],[2292,745,2293,0,2292,745,2293],[2294,2295,2296,0,2294,2295,2296],[1062,1064,2297,0,1062,1064,2297],[2298,724,2299,0,2298,724,2299],[248,247,2300,0,248,247,2300],[2301,2302,2303,0,2301,2302,2303],[2304,2305,2306,0,2304,2305,2306],[2307,2308,2309,0,2307,2308,2309],[765,2193,1980,0,765,2193,1980],[2310,2311,1041,0,2310,2311,1041],[743,2193,765,0,743,2193,765],[2312,2313,2314,0,2312,2313,2314],[2016,2315,2017,0,2016,2315,2017],[2316,2317,1654,0,2316,2317,1654],[2318,2319,2320,0,2318,2319,2320],[1475,2321,2322,0,1475,2321,2322],[2323,203,2324,0,2323,203,2324],[274,525,524,0,274,525,524],[2325,2326,2094,0,2325,2326,2094],[1858,2327,2328,0,1858,2327,2328],[2329,2330,1398,0,2329,2330,1398],[2331,2332,2333,0,2331,2332,2333],[106,2334,104,0,106,2334,104],[534,2335,535,0,534,2335,535],[2336,2337,2338,0,2336,2337,2338],[2339,2340,2341,0,2339,2340,2341],[2342,2343,1757,0,2342,2343,1757],[2323,2324,2344,0,2323,2324,2344],[2345,2346,2347,0,2345,2346,2347],[2348,2349,2350,0,2348,2349,2350],[2348,2350,2351,0,2348,2350,2351],[2352,2353,1767,0,2352,2353,1767],[2354,482,2355,0,2354,482,2355],[2356,2357,2358,0,2356,2357,2358],[2359,2322,2360,0,2359,2322,2360],[2361,2362,2363,0,2361,2362,2363],[2364,2365,2366,0,2364,2365,2366],[2367,2368,1077,0,2367,2368,1077],[182,2369,2370,0,182,2369,2370],[2371,2372,2373,0,2371,2372,2373],[2374,2375,2376,0,2374,2375,2376],[2377,2285,2287,0,2377,2285,2287],[2378,2379,2380,0,2378,2379,2380],[2381,2382,2383,0,2381,2382,2383],[2384,2385,2386,0,2384,2385,2386],[681,2387,1928,0,681,2387,1928],[2388,2389,2390,0,2388,2389,2390],[2391,2392,2393,0,2391,2392,2393],[308,2394,2395,0,308,2394,2395],[2396,814,377,0,2396,814,377],[2397,2398,343,0,2397,2398,343],[956,955,2345,0,956,955,2345],[1131,2399,2400,0,1131,2399,2400],[1627,2401,2402,0,1627,2401,2402],[2403,2404,2405,0,2403,2404,2405],[2406,750,2407,0,2406,750,2407],[2408,2409,2410,0,2408,2409,2410],[2411,2412,2413,0,2411,2412,2413],[2414,2415,1078,0,2414,2415,1078],[2416,40,859,0,2416,40,859],[2417,2418,2419,0,2417,2418,2419],[2420,2421,2422,0,2420,2421,2422],[2423,2424,2425,0,2423,2424,2425],[1854,2426,2427,0,1854,2426,2427],[2428,2429,484,0,2428,2429,484],[2423,2425,2430,0,2423,2425,2430],[2431,2432,2433,0,2431,2432,2433],[1888,1538,2434,0,1888,1538,2434],[2435,2436,2437,0,2435,2436,2437],[1412,2438,2439,0,1412,2438,2439],[2440,2441,2442,0,2440,2441,2442],[2443,2348,2351,0,2443,2348,2351],[2444,2445,2446,0,2444,2445,2446],[2447,2448,2449,0,2447,2448,2449],[2450,2451,2452,0,2450,2451,2452],[2453,2454,2455,0,2453,2454,2455],[2456,2457,2458,0,2456,2457,2458],[2459,2460,2461,0,2459,2460,2461],[2462,2463,2464,0,2462,2463,2464],[2425,2465,2466,0,2425,2465,2466],[2467,2468,2469,0,2467,2468,2469],[2470,1421,2471,0,2470,1421,2471],[2472,2473,2474,0,2472,2473,2474],[2475,2476,2455,0,2475,2476,2455],[2187,472,474,0,2187,472,474],[2477,2478,2479,0,2477,2478,2479],[2480,2481,2482,0,2480,2481,2482],[2483,2484,2485,0,2483,2484,2485],[2486,2487,2488,0,2486,2487,2488],[2489,2490,2491,0,2489,2490,2491],[2492,2493,2494,0,2492,2493,2494],[1061,2348,2443,0,1061,2348,2443],[2495,1496,2496,0,2495,1496,2496],[2497,2498,386,0,2497,2498,386],[2499,2500,155,0,2499,2500,155],[2058,2501,508,0,2058,2501,508],[2082,2502,2083,0,2082,2502,2083],[2503,2504,2505,0,2503,2504,2505],[2506,2507,2508,0,2506,2507,2508],[2509,2510,2511,0,2509,2510,2511],[926,2512,2513,0,926,2512,2513],[2514,2515,2516,0,2514,2515,2516],[778,780,2517,0,778,780,2517],[2518,2348,1061,0,2518,2348,1061],[2519,2520,2521,0,2519,2520,2521],[2522,2523,2524,0,2522,2523,2524],[1807,2525,1972,0,1807,2525,1972],[180,2370,2526,0,180,2370,2526],[1769,2527,1768,0,1769,2527,1768],[2528,2529,2530,0,2528,2529,2530],[2531,2532,2130,0,2531,2532,2130],[1526,1914,2533,0,1526,1914,2533],[2534,2535,2536,0,2534,2535,2536],[2537,2538,2539,0,2537,2538,2539],[2349,2348,2540,0,2349,2348,2540],[2541,2542,2543,0,2541,2542,2543],[2544,2047,2341,0,2544,2047,2341],[2545,2504,2546,0,2545,2504,2546],[2547,2548,2549,0,2547,2548,2549],[1347,2550,1348,0,1347,2550,1348],[2551,2552,2454,0,2551,2552,2454],[1594,2553,2554,0,1594,2553,2554],[2540,2348,2518,0,2540,2348,2518],[1807,1972,604,0,1807,1972,604],[2555,2556,2557,0,2555,2556,2557],[2558,2559,2560,0,2558,2559,2560],[2561,2562,2563,0,2561,2562,2563],[2564,2565,2566,0,2564,2565,2566],[2567,188,2124,0,2567,188,2124],[2568,2569,2570,0,2568,2569,2570],[2571,2572,2573,0,2571,2572,2573],[180,2526,2574,0,180,2526,2574],[86,2575,87,0,86,2575,87],[2576,2577,2578,0,2576,2577,2578],[2579,2580,2581,0,2579,2580,2581],[2582,2583,2584,0,2582,2583,2584],[2585,2586,863,0,2585,2586,863],[2587,2588,2589,0,2587,2588,2589],[2590,2591,803,0,2590,2591,803],[1510,2592,1836,0,1510,2592,1836],[2593,753,2594,0,2593,753,2594],[2595,2596,1501,0,2595,2596,1501],[2597,2598,2599,0,2597,2598,2599],[2600,1293,2601,0,2600,1293,2601],[2602,2603,2604,0,2602,2603,2604],[2044,1016,2475,0,2044,1016,2475],[2605,2606,2607,0,2605,2606,2607],[2295,2608,537,0,2295,2608,537],[2609,2610,2611,0,2609,2610,2611],[2612,274,2112,0,2612,274,2112],[2613,2561,2563,0,2613,2561,2563],[1449,2614,2615,0,1449,2614,2615],[2616,2617,2618,0,2616,2617,2618],[2619,759,761,0,2619,759,761],[2620,2621,2622,0,2620,2621,2622],[1764,1327,1175,0,1764,1327,1175],[2623,2624,2625,0,2623,2624,2625],[2428,2626,57,0,2428,2626,57],[2627,2464,2463,0,2627,2464,2463],[2628,2629,2630,0,2628,2629,2630],[2631,766,2632,0,2631,766,2632],[2633,2634,1049,0,2633,2634,1049],[2635,2636,2637,0,2635,2636,2637],[222,224,2638,0,222,224,2638],[668,2639,644,0,668,2639,644],[1904,2640,2641,0,1904,2640,2641],[2642,2643,2644,0,2642,2643,2644],[2645,1856,1855,0,2645,1856,1855],[2646,2639,668,0,2646,2639,668],[2647,2648,2649,0,2647,2648,2649],[1580,2650,1067,0,1580,2650,1067],[2651,2652,2653,0,2651,2652,2653],[2654,2655,2498,0,2654,2655,2498],[2656,2657,2658,0,2656,2657,2658],[2659,2660,938,0,2659,2660,938],[2647,2649,2661,0,2647,2649,2661],[2662,1774,2663,0,2662,1774,2663],[2664,2665,936,0,2664,2665,936],[2666,2667,2668,0,2666,2667,2668],[2669,378,2134,0,2669,378,2134],[1869,2670,2671,0,1869,2670,2671],[2672,2673,2674,0,2672,2673,2674],[1056,2627,2463,0,1056,2627,2463],[2675,2676,2164,0,2675,2676,2164],[2677,2329,1397,0,2677,2329,1397],[2678,2679,2680,0,2678,2679,2680],[2681,2682,1281,0,2681,2682,1281],[2683,2684,2685,0,2683,2684,2685],[117,2355,482,0,117,2355,482],[644,1494,606,0,644,1494,606],[2686,2687,2688,0,2686,2687,2688],[2689,2690,2062,0,2689,2690,2062],[2459,1767,2691,0,2459,1767,2691],[1458,289,2692,0,1458,289,2692],[2693,2694,2695,0,2693,2694,2695],[2696,1278,2697,0,2696,1278,2697],[2698,2699,2700,0,2698,2699,2700],[1291,2701,2702,0,1291,2701,2702],[2703,1944,1943,0,2703,1944,1943],[2704,2705,2446,0,2704,2705,2446],[2706,2707,2708,0,2706,2707,2708],[2709,886,885,0,2709,886,885],[2710,2711,2712,0,2710,2711,2712],[1490,2713,2714,0,1490,2713,2714],[2715,2716,2717,0,2715,2716,2717],[2718,2719,2720,0,2718,2719,2720],[2721,2722,2723,0,2721,2722,2723],[2724,2725,2726,0,2724,2725,2726],[2727,466,2728,0,2727,466,2728],[2729,2730,2731,0,2729,2730,2731],[2732,2733,2734,0,2732,2733,2734],[2735,2736,2737,0,2735,2736,2737],[1041,2311,2738,0,1041,2311,2738],[1533,1121,2739,0,1533,1121,2739],[2359,2360,2740,0,2359,2360,2740],[2741,2742,2743,0,2741,2742,2743],[2744,2745,2746,0,2744,2745,2746],[2747,2748,2749,0,2747,2748,2749],[1495,1494,2750,0,1495,1494,2750],[2751,596,1564,0,2751,596,1564],[2163,1618,2752,0,2163,1618,2752],[2639,2750,1494,0,2639,2750,1494],[2354,1024,2753,0,2354,1024,2753],[2754,2755,2756,0,2754,2755,2756],[2639,1494,644,0,2639,1494,644],[2757,2758,2759,0,2757,2758,2759],[2760,2761,2147,0,2760,2761,2147],[2762,1086,2763,0,2762,1086,2763],[1115,2764,2765,0,1115,2764,2765],[2766,2767,2768,0,2766,2767,2768],[2769,2770,2771,0,2769,2770,2771],[2772,2773,2774,0,2772,2773,2774],[2311,2775,2776,0,2311,2775,2776],[396,1106,2777,0,396,1106,2777],[2778,2779,1572,0,2778,2779,1572],[2339,2517,2780,0,2339,2517,2780],[2781,2782,2783,0,2781,2782,2783],[1879,2784,2785,0,1879,2784,2785],[877,2567,2123,0,877,2567,2123],[2786,2787,2788,0,2786,2787,2788],[2789,2790,2791,0,2789,2790,2791],[2792,2793,1425,0,2792,2793,1425],[2794,2795,2796,0,2794,2795,2796],[2797,1617,2798,0,2797,1617,2798],[2666,2799,2800,0,2666,2799,2800],[2801,1361,2802,0,2801,1361,2802],[1394,911,2803,0,1394,911,2803],[2804,2805,2806,0,2804,2805,2806],[2646,2807,2639,0,2646,2807,2639],[2808,2809,2810,0,2808,2809,2810],[2811,2807,2646,0,2811,2807,2646],[2812,2813,2814,0,2812,2813,2814],[1977,1225,2815,0,1977,1225,2815],[2816,2817,2226,0,2816,2817,2226],[2818,2819,2820,0,2818,2819,2820],[2821,2822,2823,0,2821,2822,2823],[2528,2824,2825,0,2528,2824,2825],[2826,2827,2828,0,2826,2827,2828],[2829,2830,2831,0,2829,2830,2831],[2832,2833,2834,0,2832,2833,2834],[2835,2836,2837,0,2835,2836,2837],[1299,2838,2839,0,1299,2838,2839],[2840,2841,2842,0,2840,2841,2842],[2843,2844,498,0,2843,2844,498],[2845,2846,1178,0,2845,2846,1178],[2504,2847,1778,0,2504,2847,1778],[2639,2807,2750,0,2639,2807,2750],[2000,1511,1679,0,2000,1511,1679],[2848,2849,2850,0,2848,2849,2850],[2851,2852,2853,0,2851,2852,2853],[2854,2855,2856,0,2854,2855,2856],[2857,2858,2859,0,2857,2858,2859],[2860,2861,2862,0,2860,2861,2862],[2177,2179,2863,0,2177,2179,2863],[1845,2864,1846,0,1845,2864,1846],[2865,2866,2867,0,2865,2866,2867],[81,83,2868,0,81,83,2868],[2869,755,2870,0,2869,755,2870],[2871,2872,2873,0,2871,2872,2873],[2874,2875,715,0,2874,2875,715],[2876,2877,2646,0,2876,2877,2646],[2878,2879,738,0,2878,2879,738],[2880,2881,2882,0,2880,2881,2882],[1799,1713,2883,0,1799,1713,2883],[921,2144,2884,0,921,2144,2884],[2730,2729,2885,0,2730,2729,2885],[2886,2887,2081,0,2886,2887,2081],[2888,2889,901,0,2888,2889,901],[2890,2891,2892,0,2890,2891,2892],[2596,2893,296,0,2596,2893,296],[2894,2895,2734,0,2894,2895,2734],[2877,2811,2646,0,2877,2811,2646],[801,1185,2060,0,801,1185,2060],[2896,2897,2898,0,2896,2897,2898],[2899,599,2900,0,2899,599,2900],[2901,2902,2903,0,2901,2902,2903],[2904,2905,2906,0,2904,2905,2906],[2328,2907,2908,0,2328,2907,2908],[2909,2394,2910,0,2909,2394,2910],[2877,2911,2811,0,2877,2911,2811],[2912,2913,2914,0,2912,2913,2914],[2915,2916,2889,0,2915,2916,2889],[2917,2918,2919,0,2917,2918,2919],[879,2920,880,0,879,2920,880],[2921,2922,2923,0,2921,2922,2923],[2924,1290,1289,0,2924,1290,1289],[2925,2926,2327,0,2925,2926,2327],[2927,2928,2929,0,2927,2928,2929],[2930,1213,800,0,2930,1213,800],[2931,1199,728,0,2931,1199,728],[1661,2932,2933,0,1661,2932,2933],[2934,2082,2935,0,2934,2082,2935],[205,2936,2643,0,205,2936,2643],[2937,1464,2938,0,2937,1464,2938],[2939,2940,2941,0,2939,2940,2941],[2942,2943,2523,0,2942,2943,2523],[2944,2945,2586,0,2944,2945,2586],[2946,2947,2948,0,2946,2947,2948],[1722,2949,1723,0,1722,2949,1723],[2950,2951,2702,0,2950,2951,2702],[2952,2953,2954,0,2952,2953,2954],[903,2437,2955,0,903,2437,2955],[2956,2341,2340,0,2956,2341,2340],[2734,2957,2958,0,2734,2957,2958],[2959,2960,1772,0,2959,2960,1772],[2961,2962,2963,0,2961,2962,2963],[2964,2965,2966,0,2964,2965,2966],[2967,2968,2969,0,2967,2968,2969],[2970,2971,2972,0,2970,2971,2972],[2973,2974,2975,0,2973,2974,2975],[1279,1341,2976,0,1279,1341,2976],[2977,2978,2979,0,2977,2978,2979],[37,2414,2980,0,37,2414,2980],[2981,2982,2983,0,2981,2982,2983],[269,2984,2985,0,269,2984,2985],[2986,323,2342,0,2986,323,2342],[469,471,2987,0,469,471,2987],[2988,1063,2989,0,2988,1063,2989],[2990,2991,2992,0,2990,2991,2992],[1528,1530,1036,0,1528,1530,1036],[2993,2972,124,0,2993,2972,124],[2994,2995,2996,0,2994,2995,2996],[2997,2840,2998,0,2997,2840,2998],[2999,3000,3001,0,2999,3000,3001],[2239,3002,3003,0,2239,3002,3003],[3004,3005,3006,0,3004,3005,3006],[3007,2552,485,0,3007,2552,485],[2171,3008,3009,0,2171,3008,3009],[3010,3011,179,0,3010,3011,179],[3012,3013,3014,0,3012,3013,3014],[3015,1653,1652,0,3015,1653,1652],[1505,945,1506,0,1505,945,1506],[3016,3017,3018,0,3016,3017,3018],[3019,3020,3015,0,3019,3020,3015],[2980,2414,3021,0,2980,2414,3021],[3022,1425,2793,0,3022,1425,2793],[3023,3024,3025,0,3023,3024,3025],[89,91,3026,0,89,91,3026],[3027,3028,2686,0,3027,3028,2686],[321,3029,3030,0,321,3029,3030],[955,2754,3031,0,955,2754,3031],[1152,3032,3033,0,1152,3032,3033],[3034,3035,3036,0,3034,3035,3036],[3037,1060,1279,0,3037,1060,1279],[654,1113,3038,0,654,1113,3038],[1717,1716,3039,0,1717,1716,3039],[3040,3041,3042,0,3040,3041,3042],[3043,3044,3045,0,3043,3044,3045],[3046,3047,3048,0,3046,3047,3048],[3049,3050,3051,0,3049,3050,3051],[3052,3053,3054,0,3052,3053,3054],[3055,3056,3057,0,3055,3056,3057],[3058,2271,2270,0,3058,2271,2270],[3059,3060,3061,0,3059,3060,3061],[262,3062,3063,0,262,3062,3063],[2262,3064,3065,0,2262,3064,3065],[3066,2684,2297,0,3066,2684,2297],[3067,2308,1312,0,3067,2308,1312],[279,3068,280,0,279,3068,280],[1483,3069,459,0,1483,3069,459],[2239,3003,2237,0,2239,3003,2237],[1279,3070,3037,0,1279,3070,3037],[3071,3072,3073,0,3071,3072,3073],[3074,1890,1891,0,3074,1890,1891],[3075,3076,3077,0,3075,3076,3077],[3078,3079,3080,0,3078,3079,3080],[1548,3081,325,0,1548,3081,325],[3082,3083,3084,0,3082,3083,3084],[3085,3086,3087,0,3085,3086,3087],[1490,2714,3088,0,1490,2714,3088],[3089,3090,3091,0,3089,3090,3091],[3092,3093,2367,0,3092,3093,2367],[3094,3095,3096,0,3094,3095,3096],[3097,3098,1605,0,3097,3098,1605],[3099,3100,3101,0,3099,3100,3101],[3102,3103,3104,0,3102,3103,3104],[1182,595,594,0,1182,595,594],[3105,3106,546,0,3105,3106,546],[807,3107,3108,0,807,3107,3108],[3109,1831,3110,0,3109,1831,3110],[3111,2583,2582,0,3111,2583,2582],[3112,2019,2021,0,3112,2019,2021],[2555,3113,2556,0,2555,3113,2556],[1279,2976,3070,0,1279,2976,3070],[3114,201,203,0,3114,201,203],[1217,3115,1218,0,1217,3115,1218],[3116,3117,3118,0,3116,3117,3118],[3119,3120,3121,0,3119,3120,3121],[705,383,3122,0,705,383,3122],[3123,2557,645,0,3123,2557,645],[2173,3124,2172,0,2173,3124,2172],[3125,3126,3127,0,3125,3126,3127],[1108,3128,1381,0,1108,3128,1381],[3129,3130,3131,0,3129,3130,3131],[392,3132,3133,0,392,3132,3133],[3134,3135,3136,0,3134,3135,3136],[1953,3053,3137,0,1953,3053,3137],[3138,228,3139,0,3138,228,3139],[3140,3098,3141,0,3140,3098,3141],[1664,3142,144,0,1664,3142,144],[440,442,2097,0,440,442,2097],[2749,3143,3144,0,2749,3143,3144],[2055,3145,1870,0,2055,3145,1870],[3146,3147,1626,0,3146,3147,1626],[3148,3149,3150,0,3148,3149,3150],[3151,367,1097,0,3151,367,1097],[246,3152,2300,0,246,3152,2300],[3153,3154,1010,0,3153,3154,1010],[1852,1736,3155,0,1852,1736,3155],[3156,3157,3158,0,3156,3157,3158],[3159,3160,3161,0,3159,3160,3161],[3162,2695,2841,0,3162,2695,2841],[3163,3164,260,0,3163,3164,260],[3165,3166,3167,0,3165,3166,3167],[3168,3169,3170,0,3168,3169,3170],[3171,3172,2710,0,3171,3172,2710],[3173,3091,3090,0,3173,3091,3090],[359,3174,3175,0,359,3174,3175],[3176,3177,2657,0,3176,3177,2657],[3178,3179,3180,0,3178,3179,3180],[1385,1155,1154,0,1385,1155,1154],[3181,1412,3182,0,3181,1412,3182],[3183,2731,3184,0,3183,2731,3184],[3185,3186,3187,0,3185,3186,3187],[3188,3189,3190,0,3188,3189,3190],[3191,3192,3193,0,3191,3192,3193],[3194,3195,3196,0,3194,3195,3196],[3197,3198,3199,0,3197,3198,3199],[3200,3201,3202,0,3200,3201,3202],[3203,2740,3204,0,3203,2740,3204],[2176,2300,3152,0,2176,2300,3152],[3205,3206,2766,0,3205,3206,2766],[3207,3208,3209,0,3207,3208,3209],[2411,3210,3211,0,2411,3210,3211],[3212,3213,3171,0,3212,3213,3171],[3214,3215,3216,0,3214,3215,3216],[3217,822,3218,0,3217,822,3218],[3219,3220,1824,0,3219,3220,1824],[3221,3133,3222,0,3221,3133,3222],[3223,3224,3225,0,3223,3224,3225],[3226,671,670,0,3226,671,670],[3227,3228,3229,0,3227,3228,3229],[3230,3231,3232,0,3230,3231,3232],[3233,617,3234,0,3233,617,3234],[3235,3236,3237,0,3235,3236,3237],[3238,3239,3240,0,3238,3239,3240],[3241,3242,3243,0,3241,3242,3243],[2602,3244,2915,0,2602,3244,2915],[3245,3246,3244,0,3245,3246,3244],[252,3247,253,0,252,3247,253],[2901,3248,2902,0,2901,3248,2902],[3249,594,596,0,3249,594,596],[3250,3251,3252,0,3250,3251,3252],[3253,3254,3255,0,3253,3254,3255],[3256,2820,1357,0,3256,2820,1357],[3257,3258,3259,0,3257,3258,3259],[3260,3261,1210,0,3260,3261,1210],[3262,3263,3264,0,3262,3263,3264],[1084,1697,1699,0,1084,1697,1699],[1448,3265,1446,0,1448,3265,1446],[2398,344,343,0,2398,344,343],[3266,203,202,0,3266,203,202],[2394,2909,2588,0,2394,2909,2588],[3267,875,868,0,3267,875,868],[3268,3269,3270,0,3268,3269,3270],[3271,1246,3272,0,3271,1246,3272],[3273,120,3274,0,3273,120,3274],[3275,1862,1042,0,3275,1862,1042],[1666,3276,1667,0,1666,3276,1667],[216,2964,2966,0,216,2964,2966],[1355,2122,3277,0,1355,2122,3277],[3278,3279,3280,0,3278,3279,3280],[2375,3281,3282,0,2375,3281,3282],[2319,2318,3283,0,2319,2318,3283],[36,2414,37,0,36,2414,37],[1636,1638,3284,0,1636,1638,3284],[1750,1749,3285,0,1750,1749,3285],[2057,3286,3287,0,2057,3286,3287],[3288,249,3289,0,3288,249,3289],[3168,3290,3169,0,3168,3290,3169],[3291,3292,3293,0,3291,3292,3293],[939,941,2131,0,939,941,2131],[2767,3294,3295,0,2767,3294,3295],[3296,3297,3298,0,3296,3297,3298],[2747,3299,3300,0,2747,3299,3300],[2522,3301,2523,0,2522,3301,2523],[3302,984,3303,0,3302,984,3303],[3304,3305,3306,0,3304,3305,3306],[3307,3104,3308,0,3307,3104,3308],[3309,1766,671,0,3309,1766,671],[2235,3310,3311,0,2235,3310,3311],[3312,3313,3044,0,3312,3313,3044],[3314,1745,3315,0,3314,1745,3315],[3316,444,3317,0,3316,444,3317],[3318,1136,1138,0,3318,1136,1138],[601,3319,602,0,601,3319,602],[3081,2895,2894,0,3081,2895,2894],[1838,3320,3321,0,1838,3320,3321],[1455,1363,64,0,1455,1363,64],[2163,3322,3323,0,2163,3322,3323],[2967,3324,3325,0,2967,3324,3325],[3326,333,1003,0,3326,333,1003],[3327,3328,2825,0,3327,3328,2825],[3329,3330,3331,0,3329,3330,3331],[1885,1884,3332,0,1885,1884,3332],[3333,3334,3335,0,3333,3334,3335],[3336,3337,1346,0,3336,3337,1346],[3338,2752,1618,0,3338,2752,1618],[2999,3339,3340,0,2999,3339,3340],[721,3341,3342,0,721,3341,3342],[3343,1261,3344,0,3343,1261,3344],[513,3345,511,0,513,3345,511],[2804,3346,2805,0,2804,3346,2805],[3347,3348,3349,0,3347,3348,3349],[3350,3351,3352,0,3350,3351,3352],[3353,3354,2913,0,3353,3354,2913],[470,3355,14,0,470,3355,14],[3026,3356,225,0,3026,3356,225],[2265,3357,560,0,2265,3357,560],[3358,3359,3360,0,3358,3359,3360],[3361,3362,3363,0,3361,3362,3363],[3017,3364,3365,0,3017,3364,3365],[3366,1536,3367,0,3366,1536,3367],[2178,3368,2179,0,2178,3368,2179],[1832,1135,1134,0,1832,1135,1134],[2020,3369,3370,0,2020,3369,3370],[1425,1424,773,0,1425,1424,773],[3371,3372,3373,0,3371,3372,3373],[3374,3375,3376,0,3374,3375,3376],[3377,3378,841,0,3377,3378,841],[2524,2943,3379,0,2524,2943,3379],[3380,278,277,0,3380,278,277],[3381,3382,3383,0,3381,3382,3383],[3384,2556,3113,0,3384,2556,3113],[3385,3386,3387,0,3385,3386,3387],[3388,3389,2668,0,3388,3389,2668],[3390,3391,3392,0,3390,3391,3392],[1503,3393,160,0,1503,3393,160],[1541,3394,1542,0,1541,3394,1542],[3395,3396,3397,0,3395,3396,3397],[2372,3398,3399,0,2372,3398,3399],[3400,1206,3401,0,3400,1206,3401],[131,3402,1738,0,131,3402,1738],[3403,3404,1133,0,3403,3404,1133],[697,717,3405,0,697,717,3405],[3406,3399,3398,0,3406,3399,3398],[2416,3407,3408,0,2416,3407,3408],[3409,3410,3411,0,3409,3410,3411],[3412,3413,3414,0,3412,3413,3414],[3415,1657,3416,0,3415,1657,3416],[3417,3418,3419,0,3417,3418,3419],[536,535,3420,0,536,535,3420],[3421,3422,3423,0,3421,3422,3423],[3424,3425,3426,0,3424,3425,3426],[3427,2307,3428,0,3427,2307,3428],[3429,3430,3431,0,3429,3430,3431],[2882,1170,1169,0,2882,1170,1169],[3432,3433,3434,0,3432,3433,3434],[3261,3260,3435,0,3261,3260,3435],[3436,3437,2250,0,3436,3437,2250],[3438,2331,3439,0,3438,2331,3439],[3440,3441,3442,0,3440,3441,3442],[3443,3444,3445,0,3443,3444,3445],[552,3446,3447,0,552,3446,3447],[464,3448,3449,0,464,3448,3449],[3450,3451,843,0,3450,3451,843],[3452,3453,3454,0,3452,3453,3454],[3455,3456,3182,0,3455,3456,3182],[3457,3458,850,0,3457,3458,850],[3459,3460,3461,0,3459,3460,3461],[2418,2417,3462,0,2418,2417,3462],[3463,3464,3465,0,3463,3464,3465],[378,2839,3466,0,378,2839,3466],[1350,1352,3467,0,1350,1352,3467],[3295,3294,3468,0,3295,3294,3468],[3469,1791,2195,0,3469,1791,2195],[3470,3471,1408,0,3470,3471,1408],[3472,3473,1908,0,3472,3473,1908],[3474,1360,3475,0,3474,1360,3475],[3476,3477,3478,0,3476,3477,3478],[1257,1531,3479,0,1257,1531,3479],[3480,3481,3482,0,3480,3481,3482],[2880,1169,1985,0,2880,1169,1985],[3483,3484,2140,0,3483,3484,2140],[3485,1568,1570,0,3485,1568,1570],[3486,3487,1968,0,3486,3487,1968],[3488,3489,3490,0,3488,3489,3490],[3491,3492,3391,0,3491,3492,3391],[3493,1611,1613,0,3493,1611,1613],[3494,165,167,0,3494,165,167],[3495,2409,2510,0,3495,2409,2510],[3496,3497,3498,0,3496,3497,3498],[3499,3500,3501,0,3499,3500,3501],[1589,1160,1159,0,1589,1160,1159],[3502,3503,3504,0,3502,3503,3504],[3371,3373,3214,0,3371,3373,3214],[3505,3413,3506,0,3505,3413,3506],[3507,3508,3509,0,3507,3508,3509],[617,3510,618,0,617,3510,618],[3511,2147,3512,0,3511,2147,3512],[959,958,3513,0,959,958,3513],[3514,3515,3516,0,3514,3515,3516],[3517,3518,3519,0,3517,3518,3519],[3520,2401,3521,0,3520,2401,3521],[3522,3523,3524,0,3522,3523,3524],[3525,3526,3527,0,3525,3526,3527],[2829,2831,3528,0,2829,2831,3528],[3529,3530,3531,0,3529,3530,3531],[3532,3533,3534,0,3532,3533,3534],[3535,3536,3537,0,3535,3536,3537],[126,128,2079,0,126,128,2079],[3538,3539,433,0,3538,3539,433],[3323,3540,1150,0,3323,3540,1150],[1831,3541,1832,0,1831,3541,1832],[1389,869,3542,0,1389,869,3542],[1600,1599,3543,0,1600,1599,3543],[599,598,3544,0,599,598,3544],[175,174,3545,0,175,174,3545],[3428,2035,1413,0,3428,2035,1413],[3546,3547,322,0,3546,3547,322],[3548,3549,2651,0,3548,3549,2651],[3550,3551,3552,0,3550,3551,3552],[3553,391,3554,0,3553,391,3554],[3555,3556,735,0,3555,3556,735],[3557,370,369,0,3557,370,369],[3483,3558,2222,0,3483,3558,2222],[3559,1551,3560,0,3559,1551,3560],[3561,3562,3563,0,3561,3562,3563],[3525,3527,3564,0,3525,3527,3564],[3565,3566,3567,0,3565,3566,3567],[3568,3569,3570,0,3568,3569,3570],[1271,3571,2141,0,1271,3571,2141],[3572,3554,3573,0,3572,3554,3573],[1054,3574,1055,0,1054,3574,1055],[3575,3576,3077,0,3575,3576,3077],[3577,3202,3578,0,3577,3202,3578],[3579,3580,3581,0,3579,3580,3581],[3582,3583,3584,0,3582,3583,3584],[3585,3586,1358,0,3585,3586,1358],[1248,1250,3587,0,1248,1250,3587],[3588,3505,3589,0,3588,3505,3589],[574,2870,754,0,574,2870,754],[1332,657,549,0,1332,657,549],[3590,3591,3592,0,3590,3591,3592],[3593,57,2626,0,3593,57,2626],[3594,3595,3596,0,3594,3595,3596],[3597,476,3598,0,3597,476,3598],[3599,3466,3600,0,3599,3466,3600],[3601,3204,2360,0,3601,3204,2360],[3602,3603,647,0,3602,3603,647],[3604,1485,3605,0,3604,1485,3605],[2689,3606,3607,0,2689,3606,3607],[1467,3608,235,0,1467,3608,235],[3609,92,3610,0,3609,92,3610],[3611,527,3612,0,3611,527,3612],[3613,3614,2426,0,3613,3614,2426],[3615,3616,3092,0,3615,3616,3092],[1625,2402,3617,0,1625,2402,3617],[3618,3619,3620,0,3618,3619,3620],[12,3621,13,0,12,3621,13],[3501,3622,779,0,3501,3622,779],[3623,2183,714,0,3623,2183,714],[3624,3625,3626,0,3624,3625,3626],[3627,3628,1653,0,3627,3628,1653],[3501,779,778,0,3501,779,778],[3629,1690,1689,0,3629,1690,1689],[322,3630,2342,0,322,3630,2342],[991,3631,1240,0,991,3631,1240],[3632,2434,3633,0,3632,2434,3633],[3634,3635,1247,0,3634,3635,1247],[1483,3515,3514,0,1483,3515,3514],[3636,3637,3382,0,3636,3637,3382],[2034,2036,3638,0,2034,2036,3638],[3639,3640,3641,0,3639,3640,3641],[3642,904,906,0,3642,904,906],[3643,714,3644,0,3643,714,3644],[3645,1169,1168,0,3645,1169,1168],[704,3646,3647,0,704,3646,3647],[3051,3648,287,0,3051,3648,287],[83,3649,2868,0,83,3649,2868],[3650,3651,3189,0,3650,3651,3189],[3652,3653,3654,0,3652,3653,3654],[3655,3656,3657,0,3655,3656,3657],[3658,3338,3659,0,3658,3338,3659],[3660,3661,3662,0,3660,3661,3662],[3266,2324,203,0,3266,2324,203],[1081,3663,3664,0,1081,3663,3664],[2054,2055,3665,0,2054,2055,3665],[3666,3667,3668,0,3666,3667,3668],[3669,3670,3671,0,3669,3670,3671],[3672,3673,3560,0,3672,3673,3560],[2372,3674,3675,0,2372,3674,3675],[2932,3676,2933,0,2932,3676,2933],[3677,3678,2547,0,3677,3678,2547],[3679,3680,2191,0,3679,3680,2191],[3681,3682,3683,0,3681,3682,3683],[3684,3685,3686,0,3684,3685,3686],[3687,2364,2366,0,3687,2364,2366],[3688,3689,3690,0,3688,3689,3690],[2721,3383,3637,0,2721,3383,3637],[2209,3691,812,0,2209,3691,812],[3692,2413,3693,0,3692,2413,3693],[2335,3694,3420,0,2335,3694,3420],[3444,3695,3696,0,3444,3695,3696],[1306,905,3697,0,1306,905,3697],[182,3698,2369,0,182,3698,2369],[2499,3699,3700,0,2499,3699,3700],[1217,3701,3702,0,1217,3701,3702],[467,466,3703,0,467,466,3703],[3704,3705,3706,0,3704,3705,3706],[3707,3708,1232,0,3707,3708,1232],[1144,1143,3709,0,1144,1143,3709],[2274,2276,3710,0,2274,2276,3710],[428,3711,429,0,428,3711,429],[581,2083,2502,0,581,2083,2502],[3712,1262,4,0,3712,1262,4],[3713,512,3610,0,3713,512,3610],[3714,3715,3639,0,3714,3715,3639],[3716,3681,3683,0,3716,3681,3683],[3717,1420,3718,0,3717,1420,3718],[3719,3720,3721,0,3719,3720,3721],[3722,3723,3724,0,3722,3723,3724],[3725,3726,3087,0,3725,3726,3087],[2,3727,3728,0,2,3727,3728],[2061,1975,3729,0,2061,1975,3729],[3730,3731,3732,0,3730,3731,3732],[3153,3733,3734,0,3153,3733,3734],[3735,3736,1628,0,3735,3736,1628],[3737,3738,3739,0,3737,3738,3739],[3740,3741,3742,0,3740,3741,3742],[3743,1766,3744,0,3743,1766,3744],[740,386,2498,0,740,386,2498],[2062,936,2665,0,2062,936,2665],[3072,3071,3745,0,3072,3071,3745],[3746,3747,3748,0,3746,3747,3748],[3749,1669,1827,0,3749,1669,1827],[191,3750,189,0,191,3750,189],[3751,3425,3752,0,3751,3425,3752],[3529,3531,3443,0,3529,3531,3443],[3753,2378,3754,0,3753,2378,3754],[1022,852,851,0,1022,852,851],[3755,3756,3757,0,3755,3756,3757],[2815,3758,1977,0,2815,3758,1977],[3759,2570,3760,0,3759,2570,3760],[2714,836,838,0,2714,836,838],[3761,2555,2557,0,3761,2555,2557],[3759,3760,31,0,3759,3760,31],[3762,3763,3764,0,3762,3763,3764],[2706,3765,1343,0,2706,3765,1343],[2608,3766,537,0,2608,3766,537],[2111,3767,2896,0,2111,3767,2896],[2470,3768,1422,0,2470,3768,1422],[3769,3297,263,0,3769,3297,263],[3770,2451,3771,0,3770,2451,3771],[3772,3773,3774,0,3772,3773,3774],[3775,3776,857,0,3775,3776,857],[3777,3778,3779,0,3777,3778,3779],[3780,3781,329,0,3780,3781,329],[1485,3612,3782,0,1485,3612,3782],[2170,2606,2605,0,2170,2606,2605],[3783,3784,2717,0,3783,3784,2717],[486,3785,487,0,486,3785,487],[2934,3786,3787,0,2934,3786,3787],[2933,3788,3789,0,2933,3788,3789],[1535,1537,3790,0,1535,1537,3790],[3791,3792,3793,0,3791,3792,3793],[3067,3794,577,0,3067,3794,577],[1372,3795,3796,0,1372,3795,3796],[3797,3798,2230,0,3797,3798,2230],[3799,3800,3801,0,3799,3800,3801],[3802,3803,3631,0,3802,3803,3631],[3428,2036,2035,0,3428,2036,2035],[601,3804,89,0,601,3804,89],[3805,3806,3807,0,3805,3806,3807],[3641,1534,3639,0,3641,1534,3639],[1373,1372,3796,0,1373,1372,3796],[3808,3809,2729,0,3808,3809,2729],[540,3810,3811,0,540,3810,3811],[2672,1409,3812,0,2672,1409,3812],[3813,3093,3235,0,3813,3093,3235],[3814,3815,3816,0,3814,3815,3816],[3817,2280,2279,0,3817,2280,2279],[1278,3818,2697,0,1278,3818,2697],[3819,3820,3821,0,3819,3820,3821],[3822,3823,3824,0,3822,3823,3824],[3825,3826,3827,0,3825,3826,3827],[3828,1600,3543,0,3828,1600,3543],[603,3829,1807,0,603,3829,1807],[3830,3831,3832,0,3830,3831,3832],[3833,3834,3835,0,3833,3834,3835],[11,1197,2682,0,11,1197,2682],[3836,2565,3837,0,3836,2565,3837],[3838,3839,3840,0,3838,3839,3840],[3841,3842,3843,0,3841,3842,3843],[3844,3845,1901,0,3844,3845,1901],[3846,3847,2313,0,3846,3847,2313],[2219,2220,3848,0,2219,2220,3848],[511,3849,3850,0,511,3849,3850],[3851,3852,3853,0,3851,3852,3853],[1274,1273,3854,0,1274,1273,3854],[3646,3855,3856,0,3646,3855,3856],[3857,3858,3859,0,3857,3858,3859],[3860,3305,3861,0,3860,3305,3861],[77,3862,3863,0,77,3862,3863],[3864,3865,3866,0,3864,3865,3866],[1193,3867,1194,0,1193,3867,1194],[1429,2745,3868,0,1429,2745,3868],[2874,3869,2875,0,2874,3869,2875],[151,3870,3871,0,151,3870,3871],[751,3872,1045,0,751,3872,1045],[3873,630,3874,0,3873,630,3874],[62,3875,60,0,62,3875,60],[3876,3877,3344,0,3876,3877,3344],[3327,3878,3328,0,3327,3878,3328],[1013,3095,3094,0,1013,3095,3094],[3253,3879,2482,0,3253,3879,2482],[665,1095,3880,0,665,1095,3880],[1239,2392,3881,0,1239,2392,3881],[3882,2844,3883,0,3882,2844,3883],[3884,3885,3886,0,3884,3885,3886],[3887,3888,3889,0,3887,3888,3889],[1482,3890,3891,0,1482,3890,3891],[2338,775,3892,0,2338,775,3892],[2016,2018,3893,0,2016,2018,3893],[3889,1882,1881,0,3889,1882,1881],[3894,3895,2178,0,3894,3895,2178],[3125,1683,3126,0,3125,1683,3126],[3896,3897,2930,0,3896,3897,2930],[887,889,3898,0,887,889,3898],[3899,3900,3901,0,3899,3900,3901],[1379,3902,3903,0,1379,3902,3903],[3904,3905,3906,0,3904,3905,3906],[3633,3907,3632,0,3633,3907,3632],[3908,3909,609,0,3908,3909,609],[2377,3910,3911,0,2377,3910,3911],[3912,3913,3914,0,3912,3913,3914],[1830,3176,3915,0,1830,3176,3915],[3916,3917,3918,0,3916,3917,3918],[3919,3920,3921,0,3919,3920,3921],[2,1873,3922,0,2,1873,3922],[2693,3162,3923,0,2693,3162,3923],[3924,3925,3926,0,3924,3925,3926],[3276,3927,3928,0,3276,3927,3928],[3197,816,3929,0,3197,816,3929],[2387,2360,2581,0,2387,2360,2581],[3930,3896,989,0,3930,3896,989],[2215,2214,3931,0,2215,2214,3931],[3932,3933,3934,0,3932,3933,3934],[3935,3936,3937,0,3935,3936,3937],[887,3938,888,0,887,3938,888],[2001,3939,2002,0,2001,3939,2002],[2750,3857,3940,0,2750,3857,3940],[3941,3942,3943,0,3941,3942,3943],[3944,3945,3946,0,3944,3945,3946],[2571,1993,3947,0,2571,1993,3947],[294,3948,436,0,294,3948,436],[1482,3514,3890,0,1482,3514,3890],[2747,3949,2748,0,2747,3949,2748],[3923,3162,3950,0,3923,3162,3950],[3951,3952,2280,0,3951,3952,2280],[3953,1072,1074,0,3953,1072,1074],[3389,3954,2335,0,3389,3954,2335],[3955,3337,3956,0,3955,3337,3956],[1532,3957,3861,0,1532,3957,3861],[3958,3959,2508,0,3958,3959,2508],[3960,3961,2003,0,3960,3961,2003],[1672,1404,1405,0,1672,1404,1405],[516,3962,2065,0,516,3962,2065],[222,3963,223,0,222,3963,223],[92,94,3610,0,92,94,3610],[549,3964,3965,0,549,3964,3965],[2074,3966,3228,0,2074,3966,3228],[3967,3968,3721,0,3967,3968,3721],[1563,1562,3969,0,1563,1562,3969],[3970,3247,3971,0,3970,3247,3971],[3890,3972,3973,0,3890,3972,3973],[3023,3025,3974,0,3023,3025,3974],[3975,3976,3099,0,3975,3976,3099],[3977,3978,3979,0,3977,3978,3979],[2649,1981,2661,0,2649,1981,2661],[1373,3796,3732,0,1373,3796,3732],[3067,3980,3981,0,3067,3980,3981],[483,3982,484,0,483,3982,484],[762,764,3983,0,762,764,3983],[3984,3985,3986,0,3984,3985,3986],[3987,3988,3989,0,3987,3988,3989],[3990,3991,210,0,3990,3991,210],[3262,3264,3992,0,3262,3264,3992],[2976,3993,3994,0,2976,3993,3994],[3995,3996,3997,0,3995,3996,3997],[3998,1996,432,0,3998,1996,432],[3999,1524,1523,0,3999,1524,1523],[4000,1083,3933,0,4000,1083,3933],[2085,1881,4001,0,2085,1881,4001],[3026,1768,3356,0,3026,1768,3356],[4002,4003,4004,0,4002,4003,4004],[1077,4005,4006,0,1077,4005,4006],[2976,1341,3993,0,2976,1341,3993],[4007,43,4008,0,4007,43,4008],[4009,2191,4010,0,4009,2191,4010],[4011,4012,4013,0,4011,4012,4013],[3621,4014,4015,0,3621,4014,4015],[2786,3080,2787,0,2786,3080,2787],[2683,4016,4017,0,2683,4016,4017],[3836,3837,1260,0,3836,3837,1260],[4018,3609,3849,0,4018,3609,3849],[830,832,4019,0,830,832,4019],[2381,4020,2382,0,2381,4020,2382],[3621,3492,4021,0,3621,3492,4021],[4022,4023,2776,0,4022,4023,2776],[2976,3994,3070,0,2976,3994,3070],[1977,4024,214,0,1977,4024,214],[4025,4026,1124,0,4025,4026,1124],[1263,4027,1889,0,1263,4027,1889],[4028,4029,2574,0,4028,4029,2574],[4030,4031,4032,0,4030,4031,4032],[549,4033,3964,0,549,4033,3964],[4034,3979,3978,0,4034,3979,3978],[4035,2137,2136,0,4035,2137,2136],[1341,1340,4036,0,1341,1340,4036],[1104,2737,2736,0,1104,2737,2736],[4037,4038,4039,0,4037,4038,4039],[4040,1674,3988,0,4040,1674,3988],[4041,4042,3432,0,4041,4042,3432],[1937,1820,1822,0,1937,1820,1822],[4043,4044,4045,0,4043,4044,4045],[4046,159,4047,0,4046,159,4047],[1897,4048,4049,0,1897,4048,4049],[3278,2931,3279,0,3278,2931,3279],[4050,2791,4051,0,4050,2791,4051],[636,4052,637,0,636,4052,637],[2310,2775,2311,0,2310,2775,2311],[1031,2050,1032,0,1031,2050,1032],[1286,1747,4053,0,1286,1747,4053],[4054,1983,1982,0,4054,1983,1982],[3522,4055,4056,0,3522,4055,4056],[2888,2603,2889,0,2888,2603,2889],[45,47,4057,0,45,47,4057],[4058,4059,4060,0,4058,4059,4060],[4061,4062,450,0,4061,4062,450],[1589,1159,1590,0,1589,1159,1590],[4063,2403,706,0,4063,2403,706],[4064,2800,4065,0,4064,2800,4065],[4066,3098,3140,0,4066,3098,3140],[1218,3115,1096,0,1218,3115,1096],[903,2955,4067,0,903,2955,4067],[1105,1337,1792,0,1105,1337,1792],[4068,4069,4070,0,4068,4069,4070],[1128,4071,4072,0,1128,4071,4072],[4073,4074,4075,0,4073,4074,4075],[522,4076,4077,0,522,4076,4077],[1340,3551,4036,0,1340,3551,4036],[4078,4079,2002,0,4078,4079,2002],[1634,2821,1009,0,1634,2821,1009],[2704,4080,2705,0,2704,4080,2705],[4081,3551,1472,0,4081,3551,1472],[4082,1007,4083,0,4082,1007,4083],[4084,3163,4085,0,4084,3163,4085],[4086,4087,4088,0,4086,4087,4088],[4089,4090,4091,0,4089,4090,4091],[1340,1472,3551,0,1340,1472,3551],[4092,4093,4094,0,4092,4093,4094],[310,4095,4096,0,310,4095,4096],[1015,930,4097,0,1015,930,4097],[4098,4099,4100,0,4098,4099,4100],[2758,4101,4102,0,2758,4101,4102],[1718,502,1716,0,1718,502,1716],[658,4103,4104,0,658,4103,4104],[220,4105,1091,0,220,4105,1091],[3315,1745,4106,0,3315,1745,4106],[2987,4107,4108,0,2987,4107,4108],[4109,4110,4111,0,4109,4110,4111],[4112,1302,1301,0,4112,1302,1301],[4113,4114,4115,0,4113,4114,4115],[4116,4117,4118,0,4116,4117,4118],[4119,4120,4005,0,4119,4120,4005],[4121,2815,4122,0,4121,2815,4122],[4123,4124,1614,0,4123,4124,1614],[2497,386,388,0,2497,386,388],[3942,4125,4126,0,3942,4125,4126],[1284,1283,2620,0,1284,1283,2620],[1927,4127,4128,0,1927,4127,4128],[4129,631,4130,0,4129,631,4130],[4081,1472,1221,0,4081,1472,1221],[4081,1221,4131,0,4081,1221,4131],[808,1964,806,0,808,1964,806],[4132,4133,4134,0,4132,4133,4134],[116,4135,1705,0,116,4135,1705],[4136,4137,3817,0,4136,4137,3817],[4132,4134,4138,0,4132,4134,4138],[3593,4139,4140,0,3593,4139,4140],[750,2406,751,0,750,2406,751],[1479,1481,4141,0,1479,1481,4141],[1755,4142,4143,0,1755,4142,4143],[1899,4144,4145,0,1899,4144,4145],[4146,2694,3666,0,4146,2694,3666],[1161,4147,1682,0,1161,4147,1682],[146,4148,106,0,146,4148,106],[2539,4149,4150,0,2539,4149,4150],[4151,4152,1825,0,4151,4152,1825],[4153,1752,4154,0,4153,1752,4154],[4155,2580,117,0,4155,2580,117],[4156,4157,1591,0,4156,4157,1591],[4158,2298,4159,0,4158,2298,4159],[2176,4160,2174,0,2176,4160,2174],[547,4161,4162,0,547,4161,4162],[4163,4164,4165,0,4163,4164,4165],[1805,217,4166,0,1805,217,4166],[829,4167,4168,0,829,4167,4168],[1741,4169,1881,0,1741,4169,1881],[713,715,2875,0,713,715,2875],[4170,4171,4131,0,4170,4171,4131],[2405,2404,4172,0,2405,2404,4172],[3697,4173,4174,0,3697,4173,4174],[4175,4176,3771,0,4175,4176,3771],[653,321,3030,0,653,321,3030],[4081,4131,4171,0,4081,4131,4171],[4177,2551,483,0,4177,2551,483],[2337,775,2338,0,2337,775,2338],[3851,4178,4179,0,3851,4178,4179],[1019,4180,1017,0,1019,4180,1017],[4181,1316,1615,0,4181,1316,1615],[4182,1671,4183,0,4182,1671,4183],[3213,4184,3289,0,3213,4184,3289],[3666,2694,4185,0,3666,2694,4185],[3676,3788,2933,0,3676,3788,2933],[1619,431,447,0,1619,431,447],[4186,369,4187,0,4186,369,4187],[2328,2908,1859,0,2328,2908,1859],[4188,4189,4190,0,4188,4189,4190],[4191,4062,4061,0,4191,4062,4061],[3228,3966,1492,0,3228,3966,1492],[4192,4193,1140,0,4192,4193,1140],[4194,4195,1133,0,4194,4195,1133],[4196,4197,4198,0,4196,4197,4198],[4199,4200,4201,0,4199,4200,4201],[4202,627,2684,0,4202,627,2684],[190,782,1509,0,190,782,1509],[4203,2625,4204,0,4203,2625,4204],[348,2661,349,0,348,2661,349],[1701,1703,1978,0,1701,1703,1978],[375,374,4190,0,375,374,4190],[4194,4205,4195,0,4194,4205,4195],[4206,2286,4119,0,4206,2286,4119],[4207,4208,4209,0,4207,4208,4209],[375,4190,4189,0,375,4190,4189],[4210,1484,4211,0,4210,1484,4211],[2809,2845,4212,0,2809,2845,4212],[863,2945,4213,0,863,2945,4213],[983,4214,4215,0,983,4214,4215],[4216,4217,4218,0,4216,4217,4218],[4219,4220,4221,0,4219,4220,4221],[1990,1989,4222,0,1990,1989,4222],[3640,468,4223,0,3640,468,4223],[3078,3080,2786,0,3078,3080,2786],[4224,4225,4226,0,4224,4225,4226],[58,4227,4228,0,58,4227,4228],[3245,4229,4230,0,3245,4229,4230],[4231,4232,4233,0,4231,4232,4233],[255,4223,468,0,255,4223,468],[4234,4235,4236,0,4234,4235,4236],[3337,3336,814,0,3337,3336,814],[401,4237,402,0,401,4237,402],[4238,4239,4240,0,4238,4239,4240],[3559,4241,1145,0,3559,4241,1145],[4242,4243,4244,0,4242,4243,4244],[4238,4240,4245,0,4238,4240,4245],[3157,4246,4247,0,3157,4246,4247],[374,468,4190,0,374,468,4190],[3386,4248,4249,0,3386,4248,4249],[4076,4250,4251,0,4076,4250,4251],[4252,3544,4253,0,4252,3544,4253],[4254,2597,4255,0,4254,2597,4255],[4256,2910,4257,0,4256,2910,4257],[4258,4259,4260,0,4258,4259,4260],[4188,4190,468,0,4188,4190,468],[1769,969,515,0,1769,969,515],[368,4125,3942,0,368,4125,3942],[4261,2869,4262,0,4261,2869,4262],[2381,4263,4264,0,2381,4263,4264],[4265,4266,4267,0,4265,4266,4267],[3640,4188,468,0,3640,4188,468],[112,4268,4269,0,112,4268,4269],[4270,1274,3854,0,4270,1274,3854],[3640,4223,3641,0,3640,4223,3641],[416,418,1260,0,416,418,1260],[3309,671,4271,0,3309,671,4271],[4272,4273,4062,0,4272,4273,4062],[4274,4275,3867,0,4274,4275,3867],[3753,488,2378,0,3753,488,2378],[4276,4277,4278,0,4276,4277,4278],[1837,4279,4280,0,1837,4279,4280],[4281,147,149,0,4281,147,149],[3641,4223,1534,0,3641,4223,1534],[4282,4283,4284,0,4282,4283,4284],[3591,3590,4285,0,3591,3590,4285],[4286,122,121,0,4286,122,121],[835,4287,557,0,835,4287,557],[1454,4288,4289,0,1454,4288,4289],[2298,1167,4290,0,2298,1167,4290],[3786,4291,3658,0,3786,4291,3658],[4292,4293,1231,0,4292,4293,1231],[2641,4294,4295,0,2641,4294,4295],[4223,255,1534,0,4223,255,1534],[1781,4296,4297,0,1781,4296,4297],[4298,4299,1119,0,4298,4299,1119],[3711,4300,429,0,3711,4300,429],[792,4301,3590,0,792,4301,3590],[3876,1228,2228,0,3876,1228,2228],[4302,1053,208,0,4302,1053,208],[3166,4303,4304,0,3166,4303,4304],[4113,4115,822,0,4113,4115,822],[4305,4306,1452,0,4305,4306,1452],[312,585,3347,0,312,585,3347],[4307,4308,3010,0,4307,4308,3010],[964,3147,3146,0,964,3147,3146],[4309,592,3816,0,4309,592,3816],[3229,3228,389,0,3229,3228,389],[4310,979,2046,0,4310,979,2046],[4239,4311,4312,0,4239,4311,4312],[4313,140,4314,0,4313,140,4314],[916,929,4315,0,916,929,4315],[2992,2107,4316,0,2992,2107,4316],[3674,1898,3675,0,3674,1898,3675],[2536,4317,1559,0,2536,4317,1559],[3582,4318,4319,0,3582,4318,4319],[1145,4320,2192,0,1145,4320,2192],[4321,4322,4323,0,4321,4322,4323],[4324,920,4325,0,4324,920,4325],[519,4326,2985,0,519,4326,2985],[4327,952,4328,0,4327,952,4328],[3117,1212,4329,0,3117,1212,4329],[4330,4331,1901,0,4330,4331,1901],[3902,4332,4333,0,3902,4332,4333],[3208,2988,4334,0,3208,2988,4334],[1495,1534,1493,0,1495,1534,1493],[3444,4335,3695,0,3444,4335,3695],[4336,4026,4337,0,4336,4026,4337],[4338,4202,2684,0,4338,4202,2684],[1846,4339,1844,0,1846,4339,1844],[3275,4340,1862,0,3275,4340,1862],[1858,4341,4342,0,1858,4341,4342],[4343,4344,4345,0,4343,4344,4345],[1495,4346,1534,0,1495,4346,1534],[1484,3612,1485,0,1484,3612,1485],[4210,4211,4347,0,4210,4211,4347],[2011,2256,4348,0,2011,2256,4348],[4349,3101,3100,0,4349,3101,3100],[4346,1495,3940,0,4346,1495,3940],[1110,347,4350,0,1110,347,4350],[4050,4051,4351,0,4050,4051,4351],[3250,1972,4352,0,3250,1972,4352],[1519,1518,1601,0,1519,1518,1601],[3668,4353,4146,0,3668,4353,4146],[4354,1110,4355,0,4354,1110,4355],[3618,4356,3619,0,3618,4356,3619],[4357,4358,4359,0,4357,4358,4359],[3940,1495,2750,0,3940,1495,2750],[4013,4360,4361,0,4013,4360,4361],[4362,3945,4363,0,4362,3945,4363],[4364,4365,4366,0,4364,4365,4366],[2149,4367,4368,0,2149,4367,4368],[4369,4370,4100,0,4369,4370,4100],[2856,1263,1889,0,2856,1263,1889],[4371,619,621,0,4371,619,621],[1068,4372,4373,0,1068,4372,4373],[4374,4375,4376,0,4374,4375,4376],[1419,3240,4377,0,1419,3240,4377],[4378,4379,4380,0,4378,4379,4380],[4381,4382,4383,0,4381,4382,4383],[1467,4384,3608,0,1467,4384,3608],[2641,2640,4294,0,2641,2640,4294],[4385,4386,4387,0,4385,4386,4387],[1342,1243,1242,0,1342,1243,1242],[2274,3710,4388,0,2274,3710,4388],[2391,3881,2392,0,2391,3881,2392],[4389,865,4390,0,4389,865,4390],[919,921,2884,0,919,921,2884],[4391,4392,4393,0,4391,4392,4393],[4394,4395,4396,0,4394,4395,4396],[3935,621,3936,0,3935,621,3936],[4397,210,4398,0,4397,210,4398],[4399,4400,4092,0,4399,4400,4092],[531,3275,1042,0,531,3275,1042],[4401,4402,248,0,4401,4402,248],[1476,4403,1477,0,1476,4403,1477],[1734,1082,1084,0,1734,1082,1084],[4404,4405,4406,0,4404,4405,4406],[4407,4408,4409,0,4407,4408,4409],[3327,2825,2824,0,3327,2825,2824],[3117,3066,1064,0,3117,3066,1064],[4410,4411,589,0,4410,4411,589],[2597,60,2598,0,2597,60,2598],[2807,2811,3858,0,2807,2811,3858],[2807,3858,2750,0,2807,3858,2750],[4412,4406,4405,0,4412,4406,4405],[4413,2774,2773,0,4413,2774,2773],[4414,891,4415,0,4414,891,4415],[3788,2952,3789,0,3788,2952,3789],[4416,3294,4417,0,4416,3294,4417],[1445,1444,4418,0,1445,1444,4418],[4419,4420,4421,0,4419,4420,4421],[2735,2771,2736,0,2735,2771,2736],[684,4422,4423,0,684,4422,4423],[4424,4425,3431,0,4424,4425,3431],[789,3875,790,0,789,3875,790],[4426,4110,4109,0,4426,4110,4109],[4427,4428,4429,0,4427,4428,4429],[3669,4430,3957,0,3669,4430,3957],[4203,4431,4432,0,4203,4431,4432],[3857,2750,3858,0,3857,2750,3858],[4433,4434,4435,0,4433,4434,4435],[4436,3062,262,0,4436,3062,262],[4437,2242,4438,0,4437,2242,4438],[4439,4440,4205,0,4439,4440,4205],[4441,2408,2410,0,4441,2408,2410],[637,4052,4442,0,637,4052,4442],[4443,2858,4444,0,4443,2858,4444],[943,1609,1608,0,943,1609,1608],[2911,4445,4446,0,2911,4445,4446],[2857,2859,4447,0,2857,2859,4447],[864,863,4213,0,864,863,4213],[3400,4198,4197,0,3400,4198,4197],[4140,4345,4344,0,4140,4345,4344],[3462,1409,2674,0,3462,1409,2674],[2811,2911,4446,0,2811,2911,4446],[4419,3440,3442,0,4419,3440,3442],[1420,1419,3239,0,1420,1419,3239],[502,3556,503,0,502,3556,503],[1168,4448,4449,0,1168,4448,4449],[106,1844,4339,0,106,1844,4339],[4450,3294,2767,0,4450,3294,2767],[2067,4451,4452,0,2067,4451,4452],[4453,4248,3386,0,4453,4248,3386],[3858,2811,4446,0,3858,2811,4446],[2466,4454,4455,0,2466,4454,4455],[4100,4456,4098,0,4100,4456,4098],[3858,4446,3859,0,3858,4446,3859],[4457,4458,4459,0,4457,4458,4459],[1547,4460,4461,0,1547,4460,4461],[2674,2418,3462,0,2674,2418,3462],[1428,1430,2137,0,1428,1430,2137],[4462,570,569,0,4462,570,569],[2675,4463,2676,0,2675,4463,2676],[652,651,4464,0,652,651,4464],[4465,523,525,0,4465,523,525],[2175,4466,3864,0,2175,4466,3864],[4467,4468,2213,0,4467,4468,2213],[4469,4470,4471,0,4469,4470,4471],[2241,1796,4472,0,2241,1796,4472],[4473,4474,4475,0,4473,4474,4475],[4476,138,3838,0,4476,138,3838],[3622,701,837,0,3622,701,837],[4477,4478,1763,0,4477,4478,1763],[2946,4479,2947,0,2946,4479,2947],[1758,4457,4480,0,1758,4457,4480],[4481,4482,4483,0,4481,4482,4483],[4484,3747,4485,0,4484,3747,4485],[3836,4486,2566,0,3836,4486,2566],[4487,4488,4489,0,4487,4488,4489],[990,4490,161,0,990,4490,161],[4491,4492,1579,0,4491,4492,1579],[4493,4494,4495,0,4493,4494,4495],[2464,2627,4388,0,2464,2627,4388],[4496,508,2501,0,4496,508,2501],[1722,1724,1165,0,1722,1724,1165],[4497,2855,1189,0,4497,2855,1189],[1969,4498,4499,0,1969,4498,4499],[4500,4501,4502,0,4500,4501,4502],[4503,769,771,0,4503,769,771],[4504,314,4505,0,4504,314,4505],[4506,1093,2260,0,4506,1093,2260],[1332,4507,657,0,1332,4507,657],[4508,2681,1281,0,4508,2681,1281],[4509,3518,4510,0,4509,3518,4510],[1093,4511,2134,0,1093,4511,2134],[4512,4469,4513,0,4512,4469,4513],[3442,3986,3985,0,3442,3986,3985],[4514,4515,4516,0,4514,4515,4516],[4517,3741,4518,0,4517,3741,4518],[1685,4519,4520,0,1685,4519,4520],[4521,4522,4523,0,4521,4522,4523],[2593,4524,709,0,2593,4524,709],[4525,3790,1537,0,4525,3790,1537],[1483,3514,1482,0,1483,3514,1482],[4513,4469,4526,0,4513,4469,4526],[4527,4528,4529,0,4527,4528,4529],[366,1097,367,0,366,1097,367],[4530,4531,1782,0,4530,4531,1782],[1423,1425,3022,0,1423,1425,3022],[3359,483,3270,0,3359,483,3270],[4532,4533,2698,0,4532,4533,2698],[4534,4535,4536,0,4534,4535,4536],[4114,4113,4537,0,4114,4113,4537],[3495,4538,4539,0,3495,4538,4539],[2488,4540,4541,0,2488,4540,4541],[4542,4543,4304,0,4542,4543,4304],[2645,4544,4545,0,2645,4544,4545],[2645,4545,4144,0,2645,4545,4144],[4546,4070,4547,0,4546,4070,4547],[12,14,3355,0,12,14,3355],[990,160,4548,0,990,160,4548],[3109,4549,4550,0,3109,4549,4550],[450,449,2417,0,450,449,2417],[2458,4551,2456,0,2458,4551,2456],[4552,2691,1767,0,4552,2691,1767],[295,294,4553,0,295,294,4553],[3245,2602,4229,0,3245,2602,4229],[2344,2324,4554,0,2344,2324,4554],[1179,2164,2676,0,1179,2164,2676],[3855,2952,4555,0,3855,2952,4555],[4556,4557,2087,0,4556,4557,2087],[146,145,4148,0,146,145,4148],[4558,501,500,0,4558,501,500],[4559,2472,1396,0,4559,2472,1396],[3551,4171,3552,0,3551,4171,3552],[4560,4561,4562,0,4560,4561,4562],[4563,2220,4564,0,4563,2220,4564],[4207,4565,1741,0,4207,4565,1741],[4566,4567,2385,0,4566,4567,2385],[4526,3552,4171,0,4526,3552,4171],[4568,4569,4558,0,4568,4569,4558],[4338,2684,2683,0,4338,2684,2683],[4570,4571,677,0,4570,4571,677],[3552,4526,4469,0,3552,4526,4469],[4462,4572,1892,0,4462,4572,1892],[2689,2062,3606,0,2689,2062,3606],[4573,4574,4575,0,4573,4574,4575],[3845,3230,3232,0,3845,3230,3232],[1264,1263,1065,0,1264,1263,1065],[3720,3612,527,0,3720,3612,527],[2205,4576,1101,0,2205,4576,1101],[4577,1144,4578,0,4577,1144,4578],[4579,1050,1049,0,4579,1050,1049],[4580,4581,565,0,4580,4581,565],[3929,4582,3946,0,3929,4582,3946],[4583,4584,4585,0,4583,4584,4585],[500,4568,4558,0,500,4568,4558],[2497,388,827,0,2497,388,827],[2421,4586,2423,0,2421,4586,2423],[4587,4588,3653,0,4587,4588,3653],[1479,4589,3453,0,1479,4589,3453],[4590,2102,4591,0,4590,2102,4591],[4592,2321,4593,0,4592,2321,4593],[1443,1445,1894,0,1443,1445,1894],[3326,334,333,0,3326,334,333],[1479,3453,4594,0,1479,3453,4594],[3129,4595,4596,0,3129,4595,4596],[2253,4597,4489,0,2253,4597,4489],[2058,4598,4599,0,2058,4598,4599],[3874,4600,4601,0,3874,4600,4601],[1857,1856,1899,0,1857,1856,1899],[330,4602,331,0,330,4602,331],[2074,4603,4604,0,2074,4603,4604],[4207,1740,4208,0,4207,1740,4208],[4514,4516,3564,0,4514,4516,3564],[4605,4606,3510,0,4605,4606,3510],[4607,4608,4609,0,4607,4608,4609],[3481,2049,3254,0,3481,2049,3254],[4610,3502,3118,0,4610,3502,3118],[4611,1262,3712,0,4611,1262,3712],[1324,1373,4612,0,1324,1373,4612],[4613,1793,1792,0,4613,1793,1792],[2855,1066,1065,0,2855,1066,1065],[4614,660,4615,0,4614,660,4615],[2698,4533,2699,0,2698,4533,2699],[3552,4471,3550,0,3552,4471,3550],[2167,3020,3019,0,2167,3020,3019],[4616,4617,4618,0,4616,4617,4618],[4619,4620,1421,0,4619,4620,1421],[2699,4621,1645,0,2699,4621,1645],[1819,4622,4623,0,1819,4622,4623],[1250,1249,585,0,1250,1249,585],[4624,1956,4625,0,4624,1956,4625],[3999,4626,4627,0,3999,4626,4627],[4628,4629,2742,0,4628,4629,2742],[4630,1999,1230,0,4630,1999,1230],[1397,1396,4631,0,1397,1396,4631],[2687,4632,2688,0,2687,4632,2688],[2499,1027,1026,0,2499,1027,1026],[4633,4495,3282,0,4633,4495,3282],[724,726,4634,0,724,726,4634],[4635,4636,2232,0,4635,4636,2232],[4471,3552,4469,0,4471,3552,4469],[2940,4637,4638,0,2940,4637,4638],[1226,1225,1977,0,1226,1225,1977],[552,4639,4640,0,552,4639,4640],[2738,3545,174,0,2738,3545,174],[4485,4641,4642,0,4485,4641,4642],[4496,4643,509,0,4496,4643,509],[4293,4644,4645,0,4293,4644,4645],[4490,4646,2559,0,4490,4646,2559],[4496,509,508,0,4496,509,508],[4149,3075,4647,0,4149,3075,4647],[4648,4649,2611,0,4648,4649,2611],[4650,1660,4234,0,4650,1660,4234],[3970,4308,253,0,3970,4308,253],[4651,4652,4653,0,4651,4652,4653],[1564,1566,4654,0,1564,1566,4654],[4655,4656,4657,0,4655,4656,4657],[1154,4658,4659,0,1154,4658,4659],[4232,4660,4233,0,4232,4660,4233],[2558,2560,4661,0,2558,2560,4661],[4662,2457,3907,0,4662,2457,3907],[1622,4663,1623,0,1622,4663,1623],[1705,4664,1706,0,1705,4664,1706],[4665,1268,4666,0,4665,1268,4666],[4341,3480,3482,0,4341,3480,3482],[1521,753,755,0,1521,753,755],[4667,2026,4668,0,4667,2026,4668],[4669,3639,4670,0,4669,3639,4670],[4671,4672,1322,0,4671,4672,1322],[4673,1145,4241,0,4673,1145,4241],[4674,4675,8,0,4674,4675,8],[4676,4236,4677,0,4676,4236,4677],[4678,4679,2431,0,4678,4679,2431],[4680,4681,840,0,4680,4681,840],[4220,4682,4683,0,4220,4682,4683],[3623,4684,4685,0,3623,4684,4685],[4686,4687,4688,0,4686,4687,4688],[607,4689,681,0,607,4689,681],[4690,2338,3892,0,4690,2338,3892],[4691,1694,4692,0,4691,1694,4692],[2923,2922,4693,0,2923,2922,4693],[4694,4695,4696,0,4694,4695,4696],[1153,4658,1154,0,1153,4658,1154],[4697,4698,4699,0,4697,4698,4699],[4700,4701,4317,0,4700,4701,4317],[3692,3693,4702,0,3692,3693,4702],[4703,4704,4705,0,4703,4704,4705],[4706,3929,816,0,4706,3929,816],[2120,4707,4708,0,2120,4707,4708],[2912,200,3353,0,2912,200,3353],[257,1592,4709,0,257,1592,4709],[4224,4710,3077,0,4224,4710,3077],[3071,1276,3745,0,3071,1276,3745],[4711,3352,3351,0,4711,3352,3351],[4506,4511,1093,0,4506,4511,1093],[3714,4669,4712,0,3714,4669,4712],[4082,4083,998,0,4082,4083,998],[4713,4714,2468,0,4713,4714,2468],[3638,2028,4715,0,3638,2028,4715],[4716,4717,292,0,4716,4717,292],[4718,4352,4719,0,4718,4352,4719],[2058,510,4598,0,2058,510,4598],[3638,4715,4720,0,3638,4715,4720],[4721,477,733,0,4721,477,733],[2618,1944,4243,0,2618,1944,4243],[2186,4722,4723,0,2186,4722,4723],[4724,4725,4726,0,4724,4725,4726],[4727,3346,4728,0,4727,3346,4728],[4729,4730,4731,0,4729,4730,4731],[4732,2978,4733,0,4732,2978,4733],[4734,4735,4736,0,4734,4735,4736],[4737,4376,4738,0,4737,4376,4738],[4739,3284,4740,0,4739,3284,4740],[4460,2155,4501,0,4460,2155,4501],[3714,3639,4669,0,3714,3639,4669],[4741,4742,4743,0,4741,4742,4743],[1248,1676,4744,0,1248,1676,4744],[3506,4745,4746,0,3506,4745,4746],[878,4747,3520,0,878,4747,3520],[2422,4748,4749,0,2422,4748,4749],[4750,4751,603,0,4750,4751,603],[4752,358,357,0,4752,358,357],[4753,3824,3823,0,4753,3824,3823],[4754,4755,705,0,4754,4755,705],[4756,4757,4712,0,4756,4757,4712],[4756,4712,4758,0,4756,4712,4758],[4759,3129,4596,0,4759,3129,4596],[4760,3382,4761,0,4760,3382,4761],[4762,1514,2439,0,4762,1514,2439],[4076,4763,4250,0,4076,4763,4250],[3448,4764,4765,0,3448,4764,4765],[3762,3764,4766,0,3762,3764,4766],[4248,1932,1934,0,4248,1932,1934],[4767,2130,2532,0,4767,2130,2532],[4768,3529,4769,0,4768,3529,4769],[3577,4034,4770,0,3577,4034,4770],[1616,4771,2798,0,1616,4771,2798],[4772,4301,792,0,4772,4301,792],[4773,1032,4774,0,4773,1032,4774],[2448,4775,1763,0,2448,4775,1763],[4776,4777,3581,0,4776,4777,3581],[2202,4778,4779,0,2202,4778,4779],[4085,4780,1807,0,4085,4780,1807],[4781,2936,4782,0,4781,2936,4782],[275,55,4783,0,275,55,4783],[4784,3626,4785,0,4784,3626,4785],[2875,3869,4786,0,2875,3869,4786],[3159,3329,4787,0,3159,3329,4787],[1264,4788,4789,0,1264,4788,4789],[4756,4758,4670,0,4756,4758,4670],[714,2183,4790,0,714,2183,4790],[4434,4353,4791,0,4434,4353,4791],[4792,4793,2313,0,4792,4793,2313],[4679,96,2432,0,4679,96,2432],[4794,817,816,0,4794,817,816],[1265,4795,4027,0,1265,4795,4027],[3664,3663,4796,0,3664,3663,4796],[1804,217,1805,0,1804,217,1805],[3441,4797,4798,0,3441,4797,4798],[4799,2277,4800,0,4799,2277,4800],[1521,755,1522,0,1521,755,1522],[3574,4387,1055,0,3574,4387,1055],[4669,4670,4758,0,4669,4670,4758],[4801,417,4802,0,4801,417,4802],[4803,4804,3975,0,4803,4804,3975],[4669,4758,4712,0,4669,4758,4712],[3397,4805,4806,0,3397,4805,4806],[1616,2798,1617,0,1616,2798,1617],[3849,3345,4807,0,3849,3345,4807],[4774,1875,1731,0,4774,1875,1731],[4808,4809,1900,0,4808,4809,1900],[4810,3025,4811,0,4810,3025,4811],[2918,469,4812,0,2918,469,4812],[4813,4814,4815,0,4813,4814,4815],[4722,4816,4723,0,4722,4816,4723],[786,2576,2578,0,786,2576,2578],[4817,4818,1834,0,4817,4818,1834],[4819,1491,4820,0,4819,1491,4820],[527,3611,31,0,527,3611,31],[4821,2808,4822,0,4821,2808,4822],[4823,4824,4825,0,4823,4824,4825],[4826,2083,707,0,4826,2083,707],[4827,4828,4829,0,4827,4828,4829],[4155,2581,2580,0,4155,2581,2580],[4830,4831,4832,0,4830,4831,4832],[4833,2753,4834,0,4833,2753,4834],[3923,4022,4201,0,3923,4022,4201],[4606,4835,3760,0,4606,4835,3760],[1555,4836,3059,0,1555,4836,3059],[4341,4181,3480,0,4341,4181,3480],[3204,2740,2360,0,3204,2740,2360],[4837,4284,4283,0,4837,4284,4283],[4838,4839,4840,0,4838,4839,4840],[4841,4499,4498,0,4841,4499,4498],[2545,2847,2504,0,2545,2847,2504],[4423,4842,4843,0,4423,4842,4843],[916,918,4844,0,916,918,4844],[4723,4845,4846,0,4723,4845,4846],[2634,3729,4847,0,2634,3729,4847],[3215,3214,3373,0,3215,3214,3373],[4848,2775,2310,0,4848,2775,2310],[916,4315,917,0,916,4315,917],[345,1808,1762,0,345,1808,1762],[236,277,736,0,236,277,736],[3032,4271,4849,0,3032,4271,4849],[4850,4851,2089,0,4850,4851,2089],[2765,3148,3150,0,2765,3148,3150],[3704,4852,4853,0,3704,4852,4853],[1284,2620,2622,0,1284,2620,2622],[4074,4080,4854,0,4074,4080,4854],[2925,4855,4856,0,2925,4855,4856],[4857,4060,4059,0,4857,4060,4059],[2059,801,2060,0,2059,801,2060],[4858,4859,4860,0,4858,4859,4860],[1339,4613,1337,0,1339,4613,1337],[4861,4862,4649,0,4861,4862,4649],[1731,4332,4773,0,1731,4332,4773],[1032,4773,1033,0,1032,4773,1033],[4863,3171,2712,0,4863,3171,2712],[3406,1434,2373,0,3406,1434,2373],[4864,4865,4866,0,4864,4865,4866],[4867,4868,4869,0,4867,4868,4869],[3791,3793,632,0,3791,3793,632],[3241,3243,4870,0,3241,3243,4870],[4165,4871,4163,0,4165,4871,4163],[4872,1534,4346,0,4872,1534,4346],[4873,56,4874,0,4873,56,4874],[4111,4312,4311,0,4111,4312,4311],[437,4875,4876,0,437,4875,4876],[4877,3737,3739,0,4877,3737,3739],[4878,4879,174,0,4878,4879,174],[2488,2487,4540,0,2488,2487,4540],[2266,4880,303,0,2266,4880,303],[4881,4840,638,0,4881,4840,638],[4882,997,1431,0,4882,997,1431],[4883,2573,4884,0,4883,2573,4884],[4885,4886,4887,0,4885,4886,4887],[1002,4888,4889,0,1002,4888,4889],[520,522,2928,0,520,522,2928],[4890,4891,4892,0,4890,4891,4892],[3202,3874,630,0,3202,3874,630],[2230,4893,1474,0,2230,4893,1474],[1540,1976,142,0,1540,1976,142],[3940,4872,4346,0,3940,4872,4346],[4894,1514,4895,0,4894,1514,4895],[4896,3408,4897,0,4896,3408,4897],[3262,2822,2821,0,3262,2822,2821],[4898,4899,4804,0,4898,4899,4804],[4900,4901,4902,0,4900,4901,4902],[4903,4904,4733,0,4903,4904,4733],[1075,1077,4006,0,1075,1077,4006],[4670,3639,1534,0,4670,3639,1534],[786,2578,874,0,786,2578,874],[3945,4905,2393,0,3945,4905,2393],[4906,4907,3168,0,4906,4907,3168],[3947,1992,2084,0,3947,1992,2084],[1190,4908,2456,0,1190,4908,2456],[4909,4910,809,0,4909,4910,809],[4911,2232,4636,0,4911,2232,4636],[4912,4913,4914,0,4912,4913,4914],[2618,2617,4915,0,2618,2617,4915],[4916,3807,4917,0,4916,3807,4917],[2819,1358,2820,0,2819,1358,2820],[2751,4654,4918,0,2751,4654,4918],[4787,4317,4701,0,4787,4317,4701],[4919,4920,4921,0,4919,4920,4921],[4058,4922,4059,0,4058,4922,4059],[1331,4923,3072,0,1331,4923,3072],[4561,4560,4924,0,4561,4560,4924],[4925,4926,4927,0,4925,4926,4927],[3525,3564,4516,0,3525,3564,4516],[4928,1285,1284,0,4928,1285,1284],[2536,1559,4929,0,2536,1559,4929],[2854,4930,2855,0,2854,4930,2855],[3610,512,511,0,3610,512,511],[1922,4931,2862,0,1922,4931,2862],[3075,2538,3076,0,3075,2538,3076],[4756,4670,4932,0,4756,4670,4932],[4224,4647,4710,0,4224,4647,4710],[2537,3939,3140,0,2537,3939,3140],[3832,3831,4933,0,3832,3831,4933],[4934,4935,2850,0,4934,4935,2850],[4936,3600,4937,0,4936,3600,4937],[4938,4428,4939,0,4938,4428,4939],[4940,4941,4942,0,4940,4941,4942],[4676,2241,4943,0,4676,2241,4943],[1938,4944,4945,0,1938,4944,4945],[4946,4947,359,0,4946,4947,359],[4670,4872,4932,0,4670,4872,4932],[3832,4933,4948,0,3832,4933,4948],[4949,4950,4951,0,4949,4950,4951],[4952,4953,4954,0,4952,4953,4954],[2435,2437,4246,0,2435,2437,4246],[4872,4670,1534,0,4872,4670,1534],[4955,4956,4957,0,4955,4956,4957],[2331,4958,4959,0,2331,4958,4959],[2372,4960,1818,0,2372,4960,1818],[4961,4489,4488,0,4961,4489,4488],[514,4962,515,0,514,4962,515],[845,4963,846,0,845,4963,846],[4964,3869,4965,0,4964,3869,4965],[4966,4967,4968,0,4966,4967,4968],[4969,4970,4339,0,4969,4970,4339],[662,3303,1800,0,662,3303,1800],[4971,2789,2547,0,4971,2789,2547],[4972,2731,2730,0,4972,2731,2730],[4374,4376,4973,0,4374,4376,4973],[4226,4149,4647,0,4226,4149,4647],[4974,4975,4976,0,4974,4975,4976],[3934,580,579,0,3934,580,579],[1759,1025,154,0,1759,1025,154],[3525,2901,3526,0,3525,2901,3526],[1346,3337,3955,0,1346,3337,3955],[802,989,3896,0,802,989,3896],[231,1068,4977,0,231,1068,4977],[122,4286,4978,0,122,4286,4978],[4979,4980,4981,0,4979,4980,4981],[4982,4983,4984,0,4982,4983,4984],[1344,1203,1205,0,1344,1203,1205],[4985,4070,4069,0,4985,4070,4069],[927,4986,928,0,927,4986,928],[4151,1825,4416,0,4151,1825,4416],[4987,4988,320,0,4987,4988,320],[151,3871,4989,0,151,3871,4989],[1516,1313,1514,0,1516,1313,1514],[4990,2138,4991,0,4990,2138,4991],[2007,2009,4992,0,2007,2009,4992],[4993,4436,4994,0,4993,4436,4994],[2427,2426,4995,0,2427,2426,4995],[4975,4996,4976,0,4975,4996,4976],[4967,3991,4968,0,4967,3991,4968],[4997,4998,4999,0,4997,4998,4999],[2415,1079,1078,0,2415,1079,1078],[1922,2862,1923,0,1922,2862,1923],[2080,3175,3174,0,2080,3175,3174],[5000,5001,5002,0,5000,5001,5002],[3004,3006,5003,0,3004,3006,5003],[5004,4588,5005,0,5004,4588,5005],[189,5006,5007,0,189,5006,5007],[4421,5008,4797,0,4421,5008,4797],[33,482,5009,0,33,482,5009],[5010,4976,5011,0,5010,4976,5011],[5012,5013,5014,0,5012,5013,5014],[2375,5015,3281,0,2375,5015,3281],[5016,2598,60,0,5016,2598,60],[3609,4018,5017,0,3609,4018,5017],[4793,5018,5019,0,4793,5018,5019],[2804,5020,5021,0,2804,5020,5021],[1641,1841,1639,0,1641,1841,1639],[3736,5022,5023,0,3736,5022,5023],[5024,5025,5026,0,5024,5025,5026],[3347,5027,5028,0,3347,5027,5028],[5029,1373,5030,0,5029,1373,5030],[5031,3001,3000,0,5031,3001,3000],[3822,5032,5033,0,3822,5032,5033],[5034,5035,2999,0,5034,5035,2999],[2600,2601,4492,0,2600,2601,4492],[165,5036,166,0,165,5036,166],[5037,5011,4976,0,5037,5011,4976],[5037,4976,4996,0,5037,4976,4996],[1344,1346,5038,0,1344,1346,5038],[1413,2439,5039,0,1413,2439,5039],[949,950,5040,0,949,950,5040],[5041,5042,1712,0,5041,5042,1712],[5043,5044,5045,0,5043,5044,5045],[3212,3171,4863,0,3212,3171,4863],[3476,2304,2306,0,3476,2304,2306],[5046,4789,5047,0,5046,4789,5047],[2525,5048,4719,0,2525,5048,4719],[5049,1715,2642,0,5049,1715,2642],[5050,3842,5051,0,5050,3842,5051],[2525,4719,4352,0,2525,4719,4352],[3920,5052,4121,0,3920,5052,4121],[5053,5054,5055,0,5053,5054,5055],[5056,5057,3680,0,5056,5057,3680],[5058,3264,5059,0,5058,3264,5059],[2169,1967,2167,0,2169,1967,2167],[3208,5060,2988,0,3208,5060,2988],[4890,5061,4891,0,4890,5061,4891],[1366,5062,5063,0,1366,5062,5063],[4581,4262,2869,0,4581,4262,2869],[1732,1731,1875,0,1732,1731,1875],[4809,3675,1900,0,4809,3675,1900],[1776,1775,2542,0,1776,1775,2542],[5064,5065,4974,0,5064,5065,4974],[4611,3712,5066,0,4611,3712,5066],[3383,3382,3637,0,3383,3382,3637],[5067,5068,877,0,5067,5068,877],[5069,4261,5070,0,5069,4261,5070],[5071,4079,4078,0,5071,4079,4078],[923,4728,4634,0,923,4728,4634],[3525,4516,1577,0,3525,4516,1577],[5064,5072,5065,0,5064,5072,5065],[5073,5074,5075,0,5073,5074,5075],[5076,3416,1657,0,5076,3416,1657],[3039,5077,3217,0,3039,5077,3217],[2387,5078,3601,0,2387,5078,3601],[5079,3779,5080,0,5079,3779,5080],[4479,5081,518,0,4479,5081,518],[44,1948,5082,0,44,1948,5082],[2265,2225,2817,0,2265,2225,2817],[2,3922,3727,0,2,3922,3727],[2527,3356,1768,0,2527,3356,1768],[5083,2704,5084,0,5083,2704,5084],[5085,2245,5086,0,5085,2245,5086],[2381,2383,4263,0,2381,2383,4263],[5087,3435,3260,0,5087,3435,3260],[5088,2858,2857,0,5088,2858,2857],[708,710,5089,0,708,710,5089],[4176,5090,5091,0,4176,5090,5091],[5092,1427,5093,0,5092,1427,5093],[810,5094,1949,0,810,5094,1949],[5095,5096,4474,0,5095,5096,4474],[5097,2327,2926,0,5097,2327,2926],[5098,4837,4283,0,5098,4837,4283],[1799,5099,5100,0,1799,5099,5100],[3097,1605,1607,0,3097,1605,1607],[5065,4975,4974,0,5065,4975,4974],[1915,1914,1527,0,1915,1914,1527],[970,5101,5102,0,970,5101,5102],[4638,5103,5104,0,4638,5103,5104],[2969,5105,4966,0,2969,5105,4966],[3619,5106,1560,0,3619,5106,1560],[5107,3292,3291,0,5107,3292,3291],[3883,2264,5108,0,3883,2264,5108],[3696,3271,5109,0,3696,3271,5109],[4175,2450,5110,0,4175,2450,5110],[4759,3130,3129,0,4759,3130,3129],[4216,899,898,0,4216,899,898],[5111,186,62,0,5111,186,62],[2116,2118,5112,0,2116,2118,5112],[5113,5114,4010,0,5113,5114,4010],[5115,5116,5117,0,5115,5116,5117],[5118,116,5119,0,5118,116,5119],[3723,5120,4316,0,3723,5120,4316],[2587,5121,5122,0,2587,5121,5122],[5123,4070,4546,0,5123,4070,4546],[3987,5124,5125,0,3987,5124,5125],[1371,5029,5126,0,1371,5029,5126],[5127,3377,5128,0,5127,3377,5128],[2969,2968,5105,0,2969,2968,5105],[951,4328,952,0,951,4328,952],[1969,1971,4498,0,1969,1971,4498],[5129,1849,5130,0,5129,1849,5130],[1517,5131,5132,0,1517,5131,5132],[2998,2840,2842,0,2998,2840,2842],[4011,4361,5133,0,4011,4361,5133],[5134,3487,5135,0,5134,3487,5135],[5136,1916,1894,0,5136,1916,1894],[2013,5137,2014,0,2013,5137,2014],[4444,2858,5138,0,4444,2858,5138],[5139,5140,690,0,5139,5140,690],[1367,4217,1554,0,1367,4217,1554],[3943,1219,3941,0,3943,1219,3941],[699,4931,1922,0,699,4931,1922],[135,1000,5141,0,135,1000,5141],[3358,5142,5143,0,3358,5142,5143],[5144,4754,3122,0,5144,4754,3122],[5145,5146,1222,0,5145,5146,1222],[5147,5148,5149,0,5147,5148,5149],[5150,2165,5042,0,5150,2165,5042],[2265,2817,3357,0,2265,2817,3357],[5151,4077,5152,0,5151,4077,5152],[3388,5153,3225,0,3388,5153,3225],[5154,5155,4456,0,5154,5155,4456],[3107,806,4871,0,3107,806,4871],[5156,1621,1620,0,5156,1621,1620],[1866,1865,1284,0,1866,1865,1284],[3841,5157,3842,0,3841,5157,3842],[4450,277,4417,0,4450,277,4417],[1796,5158,4472,0,1796,5158,4472],[3213,4335,4184,0,3213,4335,4184],[4920,4919,3913,0,4920,4919,3913],[5072,5064,5148,0,5072,5064,5148],[3930,2059,5159,0,3930,2059,5159],[5023,5022,4892,0,5023,5022,4892],[5160,5161,5162,0,5160,5161,5162],[3438,3439,5163,0,3438,3439,5163],[3221,392,3133,0,3221,392,3133],[4413,5164,2774,0,4413,5164,2774],[722,5165,723,0,722,5165,723],[5166,4879,4161,0,5166,4879,4161],[5167,1566,1565,0,5167,1566,1565],[3117,1064,1212,0,3117,1064,1212],[5168,3521,1627,0,5168,3521,1627],[5147,5072,5148,0,5147,5072,5148],[4686,4688,5169,0,4686,4688,5169],[2128,1792,3469,0,2128,1792,3469],[2766,3206,2767,0,2766,3206,2767],[5170,5171,5172,0,5170,5171,5172],[2650,4788,1067,0,2650,4788,1067],[5173,3031,5174,0,5173,3031,5174],[5175,5176,5177,0,5175,5176,5177],[5178,5179,5180,0,5178,5179,5180],[2761,460,2147,0,2761,460,2147],[5181,4416,4417,0,5181,4416,4417],[5182,5183,5120,0,5182,5183,5120],[5184,1525,5185,0,5184,1525,5185],[1013,3094,1014,0,1013,3094,1014],[5186,4392,2853,0,5186,4392,2853],[1489,2643,5187,0,1489,2643,5187],[5188,1541,1907,0,5188,1541,1907],[5189,4903,5190,0,5189,4903,5190],[2815,5092,4122,0,2815,5092,4122],[5191,2566,5192,0,5191,2566,5192],[1827,4731,4730,0,1827,4731,4730],[3995,4675,4674,0,3995,4675,4674],[5193,5194,5195,0,5193,5194,5195],[5196,2932,512,0,5196,2932,512],[5197,3572,3573,0,5197,3572,3573],[2053,5198,4535,0,2053,5198,4535],[5199,3539,3538,0,5199,3539,3538],[32,31,1484,0,32,31,1484],[5200,5201,5202,0,5200,5201,5202],[5203,2698,2700,0,5203,2698,2700],[32,1484,4210,0,32,1484,4210],[1021,2154,5204,0,1021,2154,5204],[5205,5206,5207,0,5205,5206,5207],[5208,2532,2531,0,5208,2532,2531],[5209,480,479,0,5209,480,479],[1611,5210,5211,0,1611,5210,5211],[462,43,463,0,462,43,463],[4258,4281,4259,0,4258,4281,4259],[1396,1398,2126,0,1396,1398,2126],[2317,680,679,0,2317,680,679],[4066,5212,3098,0,4066,5212,3098],[1984,5213,5214,0,1984,5213,5214],[5215,5216,5217,0,5215,5216,5217],[5218,5219,5220,0,5218,5219,5220],[4419,4421,4797,0,4419,4421,4797],[5221,5222,5147,0,5221,5222,5147],[5221,5147,5149,0,5221,5147,5149],[1427,1225,5223,0,1427,1225,5223],[4550,4437,3716,0,4550,4437,3716],[3551,3550,4036,0,3551,3550,4036],[5224,3072,4923,0,5224,3072,4923],[319,2181,320,0,319,2181,320],[510,509,5225,0,510,509,5225],[5226,1126,1125,0,5226,1126,1125],[3662,3661,583,0,3662,3661,583],[5227,602,3319,0,5227,602,3319],[4479,4617,5228,0,4479,4617,5228],[5229,5230,5231,0,5229,5230,5231],[4173,5232,5233,0,4173,5232,5233],[5234,3481,5235,0,5234,3481,5235],[879,878,2945,0,879,878,2945],[3206,737,736,0,3206,737,736],[5236,3789,2952,0,5236,3789,2952],[5237,5238,5239,0,5237,5238,5239],[5240,5241,5242,0,5240,5241,5242],[5068,317,877,0,5068,317,877],[1345,2209,814,0,1345,2209,814],[5243,3456,3455,0,5243,3456,3455],[3837,3366,3367,0,3837,3366,3367],[4734,4736,3110,0,4734,4736,3110],[2346,3923,3950,0,2346,3923,3950],[5244,2959,1772,0,5244,2959,1772],[5245,3922,1873,0,5245,3922,1873],[5246,4843,4842,0,5246,4843,4842],[319,318,5247,0,319,318,5247],[1211,519,518,0,1211,519,518],[5248,5249,5211,0,5248,5249,5211],[2206,5250,5251,0,2206,5250,5251],[4715,5252,5253,0,4715,5252,5253],[5254,3049,383,0,5254,3049,383],[5255,2941,5256,0,5255,2941,5256],[1186,1973,1975,0,1186,1973,1975],[1226,281,5257,0,1226,281,5257],[3111,5258,2583,0,3111,5258,2583],[1764,2109,1765,0,1764,2109,1765],[2661,1761,349,0,2661,1761,349],[5259,4036,3550,0,5259,4036,3550],[248,2300,5260,0,248,2300,5260],[3171,5261,5262,0,3171,5261,5262],[5263,5264,5265,0,5263,5264,5265],[689,5266,5267,0,689,5266,5267],[1787,5268,1788,0,1787,5268,1788],[5269,2521,5270,0,5269,2521,5270],[444,443,5271,0,444,443,5271],[3433,5172,3121,0,3433,5172,3121],[1577,4516,5272,0,1577,4516,5272],[4799,4800,3956,0,4799,4800,3956],[5273,5259,3550,0,5273,5259,3550],[2386,5274,5275,0,2386,5274,5275],[4830,4892,2483,0,4830,4892,2483],[4450,4417,3294,0,4450,4417,3294],[5276,3644,5277,0,5276,3644,5277],[950,1209,5040,0,950,1209,5040],[5278,5279,5280,0,5278,5279,5280],[1380,259,5281,0,1380,259,5281],[5282,5283,2216,0,5282,5283,2216],[5284,3828,3543,0,5284,3828,3543],[4813,530,529,0,4813,530,529],[4780,5048,1807,0,4780,5048,1807],[2519,5269,5285,0,2519,5269,5285],[1141,5286,53,0,1141,5286,53],[310,309,659,0,310,309,659],[3201,3578,3202,0,3201,3578,3202],[2394,2588,5287,0,2394,2588,5287],[5288,5289,1778,0,5288,5289,1778],[4422,684,2357,0,4422,684,2357],[5290,5291,640,0,5290,5291,640],[3789,5292,2933,0,3789,5292,2933],[5293,3185,5294,0,5293,3185,5294],[5295,5296,5297,0,5295,5296,5297],[1181,3931,2214,0,1181,3931,2214],[5298,5241,5299,0,5298,5241,5299],[5300,5273,5301,0,5300,5273,5301],[5062,1366,5302,0,5062,1366,5302],[5303,1133,3784,0,5303,1133,3784],[3731,5304,5305,0,3731,5304,5305],[3197,3199,571,0,3197,3199,571],[4266,1433,4267,0,4266,1433,4267],[1814,5306,1815,0,1814,5306,1815],[5074,5307,88,0,5074,5307,88],[3567,3365,2879,0,3567,3365,2879],[4995,353,5308,0,4995,353,5308],[5309,3614,5310,0,5309,3614,5310],[1206,4197,2559,0,1206,4197,2559],[5311,5312,3565,0,5311,5312,3565],[5313,1092,5314,0,5313,1092,5314],[5259,5273,5300,0,5259,5273,5300],[5315,1157,1553,0,5315,1157,1553],[4672,5316,5317,0,4672,5316,5317],[5318,5319,5320,0,5318,5319,5320],[2362,1468,5321,0,2362,1468,5321],[4772,792,791,0,4772,792,791],[128,127,5322,0,128,127,5322],[4930,4908,1189,0,4930,4908,1189],[3685,3709,3686,0,3685,3709,3686],[5323,2886,5324,0,5323,2886,5324],[4336,5325,5326,0,4336,5325,5326],[350,1245,1247,0,350,1245,1247],[5327,2217,5283,0,5327,2217,5283],[3906,5328,423,0,3906,5328,423],[3958,2379,5329,0,3958,2379,5329],[492,1950,5330,0,492,1950,5330],[4474,5331,5332,0,4474,5331,5332],[3404,2715,3784,0,3404,2715,3784],[505,5333,506,0,505,5333,506],[3893,1050,4579,0,3893,1050,4579],[1449,1451,5334,0,1449,1451,5334],[5335,5336,950,0,5335,5336,950],[3457,5337,399,0,3457,5337,399],[3550,4471,5273,0,3550,4471,5273],[4696,922,766,0,4696,922,766],[1057,2078,1058,0,1057,2078,1058],[4683,5338,2920,0,4683,5338,2920],[5339,3059,5340,0,5339,3059,5340],[5058,5341,5193,0,5058,5341,5193],[5342,5343,5344,0,5342,5343,5344],[4929,1559,1561,0,4929,1559,1561],[5345,5346,5347,0,5345,5346,5347],[3250,4352,5348,0,3250,4352,5348],[2818,5349,3534,0,2818,5349,3534],[5350,5351,1176,0,5350,5351,1176],[5352,3748,5353,0,5352,3748,5353],[5354,5219,5355,0,5354,5219,5355],[5356,5357,271,0,5356,5357,271],[5358,3209,3703,0,5358,3209,3703],[5359,3008,2171,0,5359,3008,2171],[1319,2630,1320,0,1319,2630,1320],[1953,3054,3053,0,1953,3054,3053],[2937,4731,1464,0,2937,4731,1464],[1582,38,37,0,1582,38,37],[5360,5361,5362,0,5360,5361,5362],[3951,4137,5363,0,3951,4137,5363],[608,1928,5364,0,608,1928,5364],[4098,4456,5365,0,4098,4456,5365],[3872,1891,1045,0,3872,1891,1045],[5366,5367,5368,0,5366,5367,5368],[485,57,59,0,485,57,59],[5369,5187,2643,0,5369,5187,2643],[4471,5370,5301,0,4471,5370,5301],[5213,2326,5371,0,5213,2326,5371],[5372,1785,442,0,5372,1785,442],[4242,4244,1378,0,4242,4244,1378],[5373,5374,3742,0,5373,5374,3742],[5315,1553,1552,0,5315,1553,1552],[2206,825,5250,0,2206,825,5250],[1885,2200,1886,0,1885,2200,1886],[2557,5375,2686,0,2557,5375,2686],[2511,2409,2408,0,2511,2409,2408],[5376,5377,4900,0,5376,5377,4900],[3166,5378,4303,0,3166,5378,4303],[5379,4069,4068,0,5379,4069,4068],[5380,5381,5382,0,5380,5381,5382],[3943,5383,5384,0,3943,5383,5384],[5021,5385,4728,0,5021,5385,4728],[959,2361,957,0,959,2361,957],[5386,5387,4574,0,5386,5387,4574],[3452,3454,2605,0,3452,3454,2605],[5388,5389,5390,0,5388,5389,5390],[2588,5391,5392,0,2588,5391,5392],[5393,5394,5112,0,5393,5394,5112],[3341,5395,5396,0,3341,5395,5396],[5397,5398,1575,0,5397,5398,1575],[4850,326,1801,0,4850,326,1801],[2511,5399,5400,0,2511,5399,5400],[2197,5401,1091,0,2197,5401,1091],[5402,4884,5403,0,5402,4884,5403],[1423,5404,4449,0,1423,5404,4449],[2073,5405,5406,0,2073,5405,5406],[2356,5407,5408,0,2356,5407,5408],[5409,5410,5411,0,5409,5410,5411],[2560,2559,5412,0,2560,2559,5412],[2629,5413,2158,0,2629,5413,2158],[499,5414,497,0,499,5414,497],[1303,5415,5160,0,1303,5415,5160],[5416,5417,5418,0,5416,5417,5418],[4025,1126,2678,0,4025,1126,2678],[3930,1753,4153,0,3930,1753,4153],[4185,4199,5419,0,4185,4199,5419],[5420,1870,5421,0,5420,1870,5421],[345,1763,4478,0,345,1763,4478],[5273,4471,5301,0,5273,4471,5301],[1749,1841,1843,0,1749,1841,1843],[5422,3644,4790,0,5422,3644,4790],[3112,335,2019,0,3112,335,2019],[2888,901,1450,0,2888,901,1450],[5226,1125,5423,0,5226,1125,5423],[3817,3951,2280,0,3817,3951,2280],[4675,3997,5424,0,4675,3997,5424],[5066,3712,408,0,5066,3712,408],[5425,2711,1026,0,5425,2711,1026],[2471,1421,4620,0,2471,1421,4620],[267,5426,268,0,267,5426,268],[5427,1430,5428,0,5427,1430,5428],[1046,5429,4535,0,1046,5429,4535],[5430,694,5431,0,5430,694,5431],[3535,5432,5433,0,3535,5432,5433],[5434,5435,2289,0,5434,5435,2289],[4867,3176,1830,0,4867,3176,1830],[3676,5436,5437,0,3676,5436,5437],[784,445,785,0,784,445,785],[5244,2229,5438,0,5244,2229,5438],[2486,2488,5439,0,2486,2488,5439],[1081,5440,438,0,1081,5440,438],[777,1422,5441,0,777,1422,5441],[5292,5236,5442,0,5292,5236,5442],[2281,2280,3952,0,2281,2280,3952],[3953,5443,1072,0,3953,5443,1072],[3966,5444,5390,0,3966,5444,5390],[5024,5026,5338,0,5024,5026,5338],[3598,5445,5446,0,3598,5445,5446],[3698,5447,3272,0,3698,5447,3272],[5448,459,5449,0,5448,459,5449],[4976,5010,4756,0,4976,5010,4756],[4974,4976,4756,0,4974,4976,4756],[3314,1665,1745,0,3314,1665,1745],[5450,4739,414,0,5450,4739,414],[4566,5451,4567,0,4566,5451,4567],[5452,2514,266,0,5452,2514,266],[5453,5454,5258,0,5453,5454,5258],[4898,4803,3893,0,4898,4803,3893],[4530,5070,5455,0,4530,5070,5455],[1181,1182,1426,0,1181,1182,1426],[1839,774,773,0,1839,774,773],[1344,2208,1345,0,1344,2208,1345],[1900,4145,4808,0,1900,4145,4808],[2616,2833,1348,0,2616,2833,1348],[5456,2032,5457,0,5456,2032,5457],[5458,5459,1348,0,5458,5459,1348],[4757,4756,5010,0,4757,4756,5010],[2545,2546,5113,0,2545,2546,5113],[2403,4597,2404,0,2403,4597,2404],[4336,5326,1124,0,4336,5326,1124],[33,5009,34,0,33,5009,34],[3863,5460,5461,0,3863,5460,5461],[2600,5462,5463,0,2600,5462,5463],[5464,1053,1052,0,5464,1053,1052],[5465,5466,5467,0,5465,5466,5467],[5468,5469,4173,0,5468,5469,4173],[5470,762,3983,0,5470,762,3983],[286,5144,385,0,286,5144,385],[5471,4099,5472,0,5471,4099,5472],[3646,704,705,0,3646,704,705],[5473,5474,5475,0,5473,5474,5475],[4303,5378,5476,0,4303,5378,5476],[1901,951,1902,0,1901,951,1902],[534,3705,5477,0,534,3705,5477],[3444,4184,4335,0,3444,4184,4335],[1179,2676,1180,0,1179,2676,1180],[2963,5478,5479,0,2963,5478,5479],[4011,5133,4951,0,4011,5133,4951],[2201,3240,2635,0,2201,3240,2635],[5480,5481,3618,0,5480,5481,3618],[5482,5270,4219,0,5482,5270,4219],[2236,4585,4584,0,2236,4585,4584],[1971,5483,4498,0,1971,5483,4498],[1717,3045,3313,0,1717,3045,3313],[433,939,2131,0,433,939,2131],[5196,5484,5485,0,5196,5484,5485],[5486,5487,5488,0,5486,5487,5488],[5064,4974,4932,0,5064,4974,4932],[3505,3588,5489,0,3505,3588,5489],[2783,3959,2724,0,2783,3959,2724],[5490,3498,2533,0,5490,3498,2533],[5491,504,5492,0,5491,504,5492],[2747,3300,2185,0,2747,3300,2185],[4300,1651,1607,0,4300,1651,1607],[838,3088,2714,0,838,3088,2714],[5493,2756,2755,0,5493,2756,2755],[303,5494,304,0,303,5494,304],[5495,5496,1897,0,5495,5496,1897],[5497,4932,4872,0,5497,4932,4872],[5498,5499,5500,0,5498,5499,5500],[5501,5398,5502,0,5501,5398,5502],[664,666,5503,0,664,666,5503],[4510,3518,3517,0,4510,3518,3517],[1633,1635,5504,0,1633,1635,5504],[1858,4855,2327,0,1858,4855,2327],[5505,5506,578,0,5505,5506,578],[4426,5507,4110,0,4426,5507,4110],[5508,5509,5350,0,5508,5509,5350],[1488,5510,4979,0,1488,5510,4979],[3652,5511,3653,0,3652,5511,3653],[4196,4198,5512,0,4196,4198,5512],[3409,3132,394,0,3409,3132,394],[34,5513,1237,0,34,5513,1237],[5514,84,3158,0,5514,84,3158],[1626,2173,3146,0,1626,2173,3146],[5515,268,5426,0,5515,268,5426],[295,5516,5517,0,295,5516,5517],[5518,4822,2808,0,5518,4822,2808],[4530,1782,4297,0,4530,1782,4297],[5519,5520,5521,0,5519,5520,5521],[5522,5523,5379,0,5522,5523,5379],[1686,5524,1089,0,1686,5524,1089],[1788,514,2064,0,1788,514,2064],[5132,1462,1517,0,5132,1462,1517],[5525,1841,5526,0,5525,1841,5526],[5527,3746,2302,0,5527,3746,2302],[4756,4932,4974,0,4756,4932,4974],[3886,3885,5528,0,3886,3885,5528],[3359,3270,3269,0,3359,3270,3269],[4998,3018,3566,0,4998,3018,3566],[5529,5530,5531,0,5529,5530,5531],[731,5532,732,0,731,5532,732],[1934,5533,3050,0,1934,5533,3050],[136,5534,5535,0,136,5534,5535],[2632,5536,5537,0,2632,5536,5537],[5538,3709,5539,0,5538,3709,5539],[2821,5540,5541,0,2821,5540,5541],[2727,5542,5358,0,2727,5542,5358],[5543,547,546,0,5543,547,546],[4819,5544,5545,0,4819,5544,5545],[2805,5546,2806,0,2805,5546,2806],[4212,5547,4958,0,4212,5547,4958],[5548,3494,5549,0,5548,3494,5549],[4176,5091,5550,0,4176,5091,5550],[730,5551,731,0,730,5551,731],[2192,2748,3949,0,2192,2748,3949],[5552,5149,5553,0,5552,5149,5553],[1016,2044,930,0,1016,2044,930],[4046,5512,5554,0,4046,5512,5554],[1949,1325,4612,0,1949,1325,4612],[5555,5556,805,0,5555,5556,805],[5557,5553,5149,0,5557,5553,5149],[3624,1704,1706,0,3624,1704,1706],[5033,5164,5558,0,5033,5164,5558],[5559,5560,5561,0,5559,5560,5561],[3095,5562,3096,0,3095,5562,3096],[3803,5563,5564,0,3803,5563,5564],[5149,5148,5557,0,5149,5148,5557],[258,5281,259,0,258,5281,259],[5565,1885,5566,0,5565,1885,5566],[2935,2887,5323,0,2935,2887,5323],[5567,5568,5569,0,5567,5568,5569],[2664,936,938,0,2664,936,938],[5570,4255,4912,0,5570,4255,4912],[876,877,317,0,876,877,317],[5179,2243,4864,0,5179,2243,4864],[5571,5572,4528,0,5571,5572,4528],[5573,2782,2781,0,5573,2782,2781],[890,5574,5575,0,890,5574,5575],[346,3340,3339,0,346,3340,3339],[3318,5167,1565,0,3318,5167,1565],[5576,5577,5578,0,5576,5577,5578],[3208,5579,3703,0,3208,5579,3703],[209,5580,980,0,209,5580,980],[5581,1421,776,0,5581,1421,776],[5582,5583,4231,0,5582,5583,4231],[3184,5584,5585,0,3184,5584,5585],[5586,3660,3662,0,5586,3660,3662],[5587,5588,5589,0,5587,5588,5589],[5590,5591,2363,0,5590,5591,2363],[672,674,3503,0,672,674,3503],[4858,4860,5592,0,4858,4860,5592],[4093,5593,5594,0,4093,5593,5594],[699,5595,700,0,699,5595,700],[3140,3576,3575,0,3140,3576,3575],[1833,1832,5596,0,1833,1832,5596],[5497,5557,4932,0,5497,5557,4932],[793,792,5597,0,793,792,5597],[5598,5599,4783,0,5598,5599,4783],[5600,5601,5602,0,5600,5601,5602],[3699,2711,2710,0,3699,2711,2710],[4991,3505,5489,0,4991,3505,5489],[986,2917,5603,0,986,2917,5603],[5604,3424,5605,0,5604,3424,5605],[2312,2314,5606,0,2312,2314,5606],[4932,5557,5064,0,4932,5557,5064],[4826,707,706,0,4826,707,706],[2199,5510,5607,0,2199,5510,5607],[4640,1586,5608,0,4640,1586,5608],[4826,706,2403,0,4826,706,2403],[5609,5610,5611,0,5609,5610,5611],[5612,5613,5179,0,5612,5613,5179],[609,3909,5614,0,609,3909,5614],[5615,4304,4543,0,5615,4304,4543],[1795,1779,1192,0,1795,1779,1192],[3355,5616,5593,0,3355,5616,5593],[5557,5148,5064,0,5557,5148,5064],[3894,5617,5618,0,3894,5617,5618],[4706,3937,3929,0,4706,3937,3929],[2148,4555,3788,0,2148,4555,3788],[1593,2577,1594,0,1593,2577,1594],[5619,5342,5344,0,5619,5342,5344],[1921,1682,5620,0,1921,1682,5620],[5552,5221,5149,0,5552,5221,5149],[5621,5622,5623,0,5621,5622,5623],[614,5504,5624,0,614,5504,5624],[959,3513,4384,0,959,3513,4384],[5625,1549,5626,0,5625,1549,5626],[3759,31,30,0,3759,31,30],[5627,5628,5629,0,5627,5628,5629],[5630,5631,1309,0,5630,5631,1309],[4379,1280,4380,0,4379,1280,4380],[5632,5633,3330,0,5632,5633,3330],[2026,4296,2027,0,2026,4296,2027],[5634,5635,3108,0,5634,5635,3108],[5636,5221,5552,0,5636,5221,5552],[3665,2055,1872,0,3665,2055,1872],[1377,1379,5637,0,1377,1379,5637],[1594,5638,2553,0,1594,5638,2553],[4136,4028,4009,0,4136,4028,4009],[2265,560,2266,0,2265,560,2266],[694,4148,145,0,694,4148,145],[4028,5056,3679,0,4028,5056,3679],[5639,1435,3296,0,5639,1435,3296],[470,14,471,0,470,14,471],[3991,5640,4968,0,3991,5640,4968],[4238,5641,5642,0,4238,5641,5642],[5643,4053,5107,0,5643,4053,5107],[5644,4409,5645,0,5644,4409,5645],[5646,419,5647,0,5646,419,5647],[1265,4027,1263,0,1265,4027,1263],[5648,5649,967,0,5648,5649,967],[5594,1931,5650,0,5594,1931,5650],[5651,2102,1339,0,5651,2102,1339],[2165,1712,5042,0,2165,1712,5042],[5652,3857,5553,0,5652,3857,5553],[1973,2921,1974,0,1973,2921,1974],[3857,3859,5553,0,3857,3859,5553],[686,5653,3875,0,686,5653,3875],[1479,4594,1480,0,1479,4594,1480],[4875,5654,5655,0,4875,5654,5655],[3036,3035,5319,0,3036,3035,5319],[617,3233,5656,0,617,3233,5656],[4212,2845,5547,0,4212,2845,5547],[5657,5658,2211,0,5657,5658,2211],[5659,3569,1000,0,5659,3569,1000],[3753,1401,488,0,3753,1401,488],[1258,1260,3367,0,1258,1260,3367],[3081,5660,5661,0,3081,5660,5661],[5662,4687,2319,0,5662,4687,2319],[5663,5664,5665,0,5663,5664,5665],[5609,5666,5610,0,5609,5666,5610],[5667,5668,5669,0,5667,5668,5669],[5008,2336,2338,0,5008,2336,2338],[5328,3906,5670,0,5328,3906,5670],[2206,2205,826,0,2206,2205,826],[5671,5507,5672,0,5671,5507,5672],[3439,5673,5163,0,3439,5673,5163],[4949,78,5674,0,4949,78,5674],[5675,3168,3170,0,5675,3168,3170],[3166,4304,5615,0,3166,4304,5615],[4559,5676,2473,0,4559,5676,2473],[4965,715,5677,0,4965,715,5677],[326,2733,1801,0,326,2733,1801],[58,3593,5678,0,58,3593,5678],[4196,4047,161,0,4196,4047,161],[211,210,5679,0,211,210,5679],[1008,5680,5681,0,1008,5680,5681],[2007,5682,5683,0,2007,5682,5683],[5684,5685,3918,0,5684,5685,3918],[4121,5052,2815,0,4121,5052,2815],[803,805,5686,0,803,805,5686],[5687,5688,5409,0,5687,5688,5409],[5689,5690,5691,0,5689,5690,5691],[3940,5497,4872,0,3940,5497,4872],[2548,2547,2789,0,2548,2547,2789],[5692,3033,669,0,5692,3033,669],[932,176,5693,0,932,176,5693],[1009,5541,1010,0,1009,5541,1010],[392,394,3132,0,392,394,3132],[4251,4250,5694,0,4251,4250,5694],[53,5695,5696,0,53,5695,5696],[1307,3090,5697,0,1307,3090,5697],[5103,2559,4646,0,5103,2559,4646],[3940,3857,5497,0,3940,3857,5497],[1031,5698,5699,0,1031,5698,5699],[1176,5508,5350,0,1176,5508,5350],[5700,5701,5702,0,5700,5701,5702],[1231,4293,1162,0,1231,4293,1162],[5703,5704,5705,0,5703,5704,5705],[4120,4006,4005,0,4120,4006,4005],[5706,5707,5708,0,5706,5707,5708],[1233,3921,4292,0,1233,3921,4292],[5709,5430,5431,0,5709,5430,5431],[5710,3127,5711,0,5710,3127,5711],[3797,4838,5712,0,3797,4838,5712],[5713,5714,5715,0,5713,5714,5715],[3497,453,1526,0,3497,453,1526],[5716,3290,5717,0,5716,3290,5717],[5718,5152,4077,0,5718,5152,4077],[2416,859,3407,0,2416,859,3407],[3477,5719,3478,0,3477,5719,3478],[3131,3130,5720,0,3131,3130,5720],[5721,2919,4138,0,5721,2919,4138],[5722,4744,3894,0,5722,4744,3894],[5723,5724,5725,0,5723,5724,5725],[190,1509,191,0,190,1509,191],[3599,5726,379,0,3599,5726,379],[192,5727,5347,0,192,5727,5347],[1122,947,1505,0,1122,947,1505],[5728,803,2591,0,5728,803,2591],[3857,5652,5497,0,3857,5652,5497],[3105,5729,3106,0,3105,5729,3106],[5460,5183,4625,0,5460,5183,4625],[2459,1466,2460,0,2459,1466,2460],[5730,5731,2215,0,5730,5731,2215],[1946,1961,4476,0,1946,1961,4476],[5732,4348,2256,0,5732,4348,2256],[1229,1262,5733,0,1229,1262,5733],[5734,2476,5735,0,5734,2476,5735],[5736,4950,5674,0,5736,4950,5674],[4504,1746,1321,0,4504,1746,1321],[481,117,482,0,481,117,482],[4134,5737,5738,0,4134,5737,5738],[5739,721,723,0,5739,721,723],[416,1260,1259,0,416,1260,1259],[933,5740,934,0,933,5740,934],[5588,5397,5589,0,5588,5397,5589],[1557,5688,1188,0,1557,5688,1188],[5741,5255,5256,0,5741,5255,5256],[4330,3845,3232,0,4330,3845,3232],[3669,1532,4435,0,3669,1532,4435],[5652,5553,5557,0,5652,5553,5557],[5742,3673,1393,0,5742,3673,1393],[153,5743,154,0,153,5743,154],[3085,5744,5745,0,3085,5744,5745],[1658,3898,3015,0,1658,3898,3015],[1315,1317,4141,0,1315,1317,4141],[3110,1833,5746,0,3110,1833,5746],[3372,3918,3917,0,3372,3918,3917],[3921,5747,3919,0,3921,5747,3919],[1686,4520,5524,0,1686,4520,5524],[3217,1717,3039,0,3217,1717,3039],[1947,412,411,0,1947,412,411],[2316,1654,1653,0,2316,1654,1653],[15,5748,1824,0,15,5748,1824],[5749,5750,4473,0,5749,5750,4473],[5751,1211,5752,0,5751,1211,5752],[2925,4856,5297,0,2925,4856,5297],[2015,5753,2013,0,2015,5753,2013],[4729,5754,3485,0,4729,5754,3485],[3097,1651,5755,0,3097,1651,5755],[1746,5756,682,0,1746,5756,682],[2139,5757,1527,0,2139,5757,1527],[5652,5557,5497,0,5652,5557,5497],[5741,5758,200,0,5741,5758,200],[5759,1033,5760,0,5759,1033,5760],[2299,1963,239,0,2299,1963,239],[5633,5761,5480,0,5633,5761,5480],[5093,1427,5762,0,5093,1427,5762],[5763,5764,5765,0,5763,5764,5765],[5766,5601,5600,0,5766,5601,5600],[5767,5768,5769,0,5767,5768,5769],[3134,3136,5770,0,3134,3136,5770],[5749,4475,5344,0,5749,4475,5344],[732,5724,4866,0,732,5724,4866],[162,3306,5161,0,162,3306,5161],[5771,5772,1970,0,5771,5772,1970],[5773,5774,4064,0,5773,5774,4064],[4778,2637,825,0,4778,2637,825],[717,4289,5775,0,717,4289,5775],[5776,169,5777,0,5776,169,5777],[423,5778,5779,0,423,5778,5779],[3202,4770,3874,0,3202,4770,3874],[3626,5780,4785,0,3626,5780,4785],[950,1172,1209,0,950,1172,1209],[5781,5782,1112,0,5781,5782,1112],[4286,121,2677,0,4286,121,2677],[2706,1242,2707,0,2706,1242,2707],[600,5783,601,0,600,5783,601],[3381,3383,5784,0,3381,3383,5784],[5785,5786,5787,0,5785,5786,5787],[1783,4588,5788,0,1783,4588,5788],[2654,829,4897,0,2654,829,4897],[5639,3296,3298,0,5639,3296,3298],[5789,5790,5791,0,5789,5790,5791],[878,4213,2945,0,878,4213,2945],[506,5333,5735,0,506,5333,5735],[1719,1721,5792,0,1719,1721,5792],[2402,5225,3617,0,2402,5225,3617],[2912,2914,5793,0,2912,2914,5793],[23,5794,21,0,23,5794,21],[585,1249,3347,0,585,1249,3347],[5795,377,306,0,5795,377,306],[5354,5355,4565,0,5354,5355,4565],[4037,5796,1689,0,4037,5796,1689],[2877,5797,4445,0,2877,5797,4445],[5798,2972,5799,0,5798,2972,5799],[1586,3258,1587,0,1586,3258,1587],[1668,5538,1656,0,1668,5538,1656],[3166,5615,3167,0,3166,5615,3167],[1137,4187,2609,0,1137,4187,2609],[5800,2419,2418,0,5800,2419,2418],[5801,4626,3999,0,5801,4626,3999],[4701,5802,5803,0,4701,5802,5803],[2877,2876,5797,0,2877,2876,5797],[5804,5659,5805,0,5804,5659,5805],[5806,5807,5808,0,5806,5807,5808],[157,5809,5810,0,157,5809,5810],[311,5811,5335,0,311,5811,5335],[5812,5813,5814,0,5812,5813,5814],[5815,1430,1429,0,5815,1430,1429],[2648,5816,3924,0,2648,5816,3924],[2288,5817,2289,0,2288,5817,2289],[5818,5133,4361,0,5818,5133,4361],[5410,5819,5820,0,5410,5819,5820],[4302,208,1604,0,4302,208,1604],[2695,5821,5822,0,2695,5821,5822],[5823,1356,1358,0,5823,1356,1358],[2877,4445,2911,0,2877,4445,2911],[5824,3182,1414,0,5824,3182,1414],[5825,5826,2316,0,5825,5826,2316],[4718,4719,5827,0,4718,4719,5827],[284,3582,5828,0,284,3582,5828],[5829,5830,5831,0,5829,5830,5831],[5832,1821,1820,0,5832,1821,1820],[5833,5834,5396,0,5833,5834,5396],[2458,4662,1305,0,2458,4662,1305],[5835,1752,5836,0,5835,1752,5836],[5837,5838,4595,0,5837,5838,4595],[5346,5839,5517,0,5346,5839,5517],[4860,4613,5592,0,4860,4613,5592],[1910,1259,3032,0,1910,1259,3032],[2526,1983,5840,0,2526,1983,5840],[5085,4864,2243,0,5085,4864,2243],[1485,3719,3605,0,1485,3719,3605],[5841,5842,5843,0,5841,5842,5843],[1783,1782,5844,0,1783,1782,5844],[5845,5846,1640,0,5845,5846,1640],[5847,744,5848,0,5847,744,5848],[5849,5850,5851,0,5849,5850,5851],[4173,5469,5232,0,4173,5469,5232],[5833,5852,5853,0,5833,5852,5853],[3262,1633,3263,0,3262,1633,3263],[4741,3330,3161,0,4741,3330,3161],[2163,2675,2164,0,2163,2675,2164],[3446,5854,3447,0,3446,5854,3447],[3859,4446,4445,0,3859,4446,4445],[3859,4445,5636,0,3859,4445,5636],[5175,5855,5856,0,5175,5855,5856],[5857,2823,2822,0,5857,2823,2822],[5858,5859,2210,0,5858,5859,2210],[2978,2977,5190,0,2978,2977,5190],[2778,5589,5860,0,2778,5589,5860],[1422,3768,5441,0,1422,3768,5441],[5353,5054,5861,0,5353,5054,5861],[4957,3001,360,0,4957,3001,360],[675,2192,4320,0,675,2192,4320],[5056,2574,5840,0,5056,2574,5840],[4801,5862,5863,0,4801,5862,5863],[2430,4227,5864,0,2430,4227,5864],[4598,4747,4599,0,4598,4747,4599],[2994,5111,61,0,2994,5111,61],[5618,5865,3349,0,5618,5865,3349],[4175,5110,5866,0,4175,5110,5866],[1799,5867,1677,0,1799,5867,1677],[9,2720,5868,0,9,2720,5868],[1439,1342,1343,0,1439,1342,1343],[1545,5869,1546,0,1545,5869,1546],[2656,2658,5870,0,2656,2658,5870],[5871,4015,4014,0,5871,4015,4014],[5872,5873,5874,0,5872,5873,5874],[3485,5875,1568,0,3485,5875,1568],[1021,5876,2153,0,1021,5876,2153],[665,3880,4629,0,665,3880,4629],[5877,404,3819,0,5877,404,3819],[269,2937,267,0,269,2937,267],[5878,5879,871,0,5878,5879,871],[4680,839,5880,0,4680,839,5880],[4903,4733,2978,0,4903,4733,2978],[3055,3057,2673,0,3055,3057,2673],[5881,4128,5882,0,5881,4128,5882],[3305,3860,3306,0,3305,3860,3306],[5883,514,5268,0,5883,514,5268],[2170,2605,5884,0,2170,2605,5884],[5360,5362,5885,0,5360,5362,5885],[5886,1562,1558,0,5886,1562,1558],[1189,2855,4930,0,1189,2855,4930],[401,1785,5372,0,401,1785,5372],[3904,3906,5887,0,3904,3906,5887],[3831,4763,4933,0,3831,4763,4933],[5888,5889,178,0,5888,5889,178],[5890,1685,4574,0,5890,1685,4574],[4009,5891,2191,0,4009,5891,2191],[5892,1933,1932,0,5892,1933,1932],[1602,5893,1519,0,1602,5893,1519],[2412,3211,5894,0,2412,3211,5894],[1278,881,5895,0,1278,881,5895],[5334,1451,4067,0,5334,1451,4067],[5079,5080,2796,0,5079,5080,2796],[3404,719,2715,0,3404,719,2715],[5732,3307,4348,0,5732,3307,4348],[4209,5354,4565,0,4209,5354,4565],[4028,3679,5896,0,4028,3679,5896],[339,5897,5898,0,339,5897,5898],[1678,1999,1679,0,1678,1999,1679],[4379,1871,5420,0,4379,1871,5420],[3710,2276,5899,0,3710,2276,5899],[721,5095,3341,0,721,5095,3341],[3836,417,4486,0,3836,417,4486],[5118,5900,1375,0,5118,5900,1375],[720,719,1642,0,720,719,1642],[5901,5902,5903,0,5901,5902,5903],[5361,3283,5362,0,5361,3283,5362],[2641,4295,5904,0,2641,4295,5904],[4860,5905,4613,0,4860,5905,4613],[2747,5906,3949,0,2747,5906,3949],[4151,4416,4725,0,4151,4416,4725],[1021,5204,1574,0,1021,5204,1574],[2201,2635,2637,0,2201,2635,2637],[5907,5702,5701,0,5907,5702,5701],[3277,2122,598,0,3277,2122,598],[5540,2823,4823,0,5540,2823,4823],[1092,5908,5314,0,1092,5908,5314],[5909,1552,4216,0,5909,1552,4216],[4761,5910,5911,0,4761,5910,5911],[4429,367,5912,0,4429,367,5912],[5913,2670,1869,0,5913,2670,1869],[2864,5914,1846,0,2864,5914,1846],[2331,4959,5915,0,2331,4959,5915],[3423,5916,2247,0,3423,5916,2247],[5917,5918,5919,0,5917,5918,5919],[4610,4283,4282,0,4610,4283,4282],[885,5648,5669,0,885,5648,5669],[4011,4950,5736,0,4011,4950,5736],[5920,5787,5921,0,5920,5787,5921],[5922,5923,5924,0,5922,5923,5924],[5925,5926,5927,0,5925,5926,5927],[3507,2447,5226,0,3507,2447,5226],[4384,1295,3608,0,4384,1295,3608],[4038,4037,3362,0,4038,4037,3362],[2171,3009,5928,0,2171,3009,5928],[5495,2829,3528,0,5495,2829,3528],[5170,5929,5171,0,5170,5929,5171],[2447,2449,5226,0,2447,2449,5226],[586,1286,587,0,586,1286,587],[4354,5930,5931,0,4354,5930,5931],[5932,5933,1499,0,5932,5933,1499],[4673,1146,1145,0,4673,1146,1145],[5934,833,5935,0,5934,833,5935],[1526,2533,3498,0,1526,2533,3498],[5936,2561,5937,0,5936,2561,5937],[5938,4895,4762,0,5938,4895,4762],[2169,5939,4653,0,2169,5939,4653],[3237,2368,3813,0,3237,2368,3813],[4725,4416,4726,0,4725,4416,4726],[4812,2919,2918,0,4812,2919,2918],[3433,3121,5940,0,3433,3121,5940],[610,568,611,0,610,568,611],[5941,5942,5943,0,5941,5942,5943],[5717,4907,5944,0,5717,4907,5944],[5945,5946,5947,0,5945,5946,5947],[5353,904,3642,0,5353,904,3642],[4011,4013,4361,0,4011,4013,4361],[2819,3534,3533,0,2819,3534,3533],[4133,4132,5948,0,4133,4132,5948],[4671,3186,4672,0,4671,3186,4672],[4234,1660,1659,0,4234,1660,1659],[5949,5950,5951,0,5949,5950,5951],[148,5952,149,0,148,5952,149],[5953,1073,1072,0,5953,1073,1072],[1958,1957,4927,0,1958,1957,4927],[5636,5954,5221,0,5636,5954,5221],[5955,5956,4007,0,5955,5956,4007],[4651,3960,2002,0,4651,3960,2002],[5804,426,3570,0,5804,426,3570],[757,1386,2698,0,757,1386,2698],[3879,1328,2480,0,3879,1328,2480],[2977,1243,5190,0,2977,1243,5190],[5957,4723,5958,0,5957,4723,5958],[5959,338,2656,0,5959,338,2656],[5636,5960,5954,0,5636,5960,5954],[4916,4917,5197,0,4916,4917,5197],[4174,3888,3887,0,4174,3888,3887],[4838,5961,5712,0,4838,5961,5712],[2556,645,2557,0,2556,645,2557],[1694,1696,5962,0,1694,1696,5962],[5963,2490,5285,0,5963,2490,5285],[5964,677,4571,0,5964,677,4571],[5179,4864,5180,0,5179,4864,5180],[17,5965,5966,0,17,5965,5966],[5967,5968,5969,0,5967,5968,5969],[3681,5970,5026,0,3681,5970,5026],[2363,5591,4539,0,2363,5591,4539],[5971,2991,2571,0,5971,2991,2571],[3295,3468,5972,0,3295,3468,5972],[5437,5436,2146,0,5437,5436,2146],[5973,5974,1785,0,5973,5974,1785],[3759,30,5975,0,3759,30,5975],[5976,5160,5415,0,5976,5160,5415],[2106,2108,5977,0,2106,2108,5977],[3833,5978,5979,0,3833,5978,5979],[2957,2895,5661,0,2957,2895,5661],[550,5980,551,0,550,5980,551],[3769,263,5981,0,3769,263,5981],[5982,5903,3952,0,5982,5903,3952],[4219,4221,178,0,4219,4221,178],[5022,5061,4890,0,5022,5061,4890],[3152,1678,5983,0,3152,1678,5983],[5980,5019,5018,0,5980,5019,5018],[5984,4911,4636,0,5984,4911,4636],[2806,1734,5020,0,2806,1734,5020],[4944,5985,5986,0,4944,5985,5986],[3575,3076,2538,0,3575,3076,2538],[4447,4074,4073,0,4447,4074,4073],[5000,5987,5988,0,5000,5987,5988],[3025,5989,4811,0,3025,5989,4811],[3006,2358,2357,0,3006,2358,2357],[1045,1322,5317,0,1045,1322,5317],[2384,5990,5991,0,2384,5990,5991],[5014,5013,5433,0,5014,5013,5433],[5534,136,1019,0,5534,136,1019],[5214,3769,5981,0,5214,3769,5981],[5992,5931,5930,0,5992,5931,5930],[5993,5994,5995,0,5993,5994,5995],[4702,3693,2413,0,4702,3693,2413],[3613,5996,5310,0,3613,5996,5310],[5974,818,5997,0,5974,818,5997],[4620,5998,5999,0,4620,5998,5999],[6000,1222,6001,0,6000,1222,6001],[2159,6002,2158,0,2159,6002,2158],[3606,6003,249,0,3606,6003,249],[2479,2478,4609,0,2479,2478,4609],[6004,2043,3825,0,6004,2043,3825],[6005,2592,6006,0,6005,2592,6006],[435,6007,4553,0,435,6007,4553],[3953,1074,2442,0,3953,1074,2442],[5454,2583,5258,0,5454,2583,5258],[6008,2269,6009,0,6008,2269,6009],[2814,19,18,0,2814,19,18],[5030,6010,6011,0,5030,6010,6011],[6012,1310,6013,0,6012,1310,6013],[6014,6015,6016,0,6014,6015,6016],[6017,6018,5263,0,6017,6018,5263],[3490,6019,3488,0,3490,6019,3488],[6020,1911,2828,0,6020,1911,2828],[6021,3243,2374,0,6021,3243,2374],[5636,4445,6022,0,5636,4445,6022],[6023,4851,4850,0,6023,4851,4850],[6024,3722,6025,0,6024,3722,6025],[3449,2330,1948,0,3449,2330,1948],[6026,3286,344,0,6026,3286,344],[6027,5073,5075,0,6027,5073,5075],[5162,3957,4430,0,5162,3957,4430],[3372,337,336,0,3372,337,336],[5406,6028,1362,0,5406,6028,1362],[6029,2368,3237,0,6029,2368,3237],[5636,6022,5960,0,5636,6022,5960],[6030,6031,6032,0,6030,6031,6032],[1719,6033,5726,0,1719,6033,5726],[2090,2092,4159,0,2090,2092,4159],[5363,4010,5114,0,5363,4010,5114],[6034,4707,2120,0,6034,4707,2120],[4141,1317,1497,0,4141,1317,1497],[6035,6036,6037,0,6035,6036,6037],[4713,2467,6038,0,4713,2467,6038],[6039,6040,3123,0,6039,6040,3123],[5921,5787,6041,0,5921,5787,6041],[1475,4593,2321,0,1475,4593,2321],[4021,6042,471,0,4021,6042,471],[439,4157,4156,0,439,4157,4156],[6043,2271,6044,0,6043,2271,6044],[5797,6022,4445,0,5797,6022,4445],[6045,2671,2670,0,6045,2671,2670],[481,4155,117,0,481,4155,117],[6046,5639,2483,0,6046,5639,2483],[6047,6048,6049,0,6047,6048,6049],[1540,142,6050,0,1540,142,6050],[5212,1605,3098,0,5212,1605,3098],[2155,2157,4502,0,2155,2157,4502],[5797,6051,6022,0,5797,6051,6022],[5017,4018,5681,0,5017,4018,5681],[3117,3116,3066,0,3117,3116,3066],[4655,3432,4656,0,4655,3432,4656],[5692,2675,1152,0,5692,2675,1152],[2556,3384,645,0,2556,3384,645],[6052,5807,3631,0,6052,5807,3631],[1563,409,1558,0,1563,409,1558],[4368,4527,6053,0,4368,4527,6053],[5832,5484,1821,0,5832,5484,1821],[2037,6054,3839,0,2037,6054,3839],[6023,4272,4851,0,6023,4272,4851],[780,837,2780,0,780,837,2780],[1290,5045,5044,0,1290,5045,5044],[5588,5587,1571,0,5588,5587,1571],[6055,5224,4923,0,6055,5224,4923],[5034,3001,4956,0,5034,3001,4956],[6056,3809,6057,0,6056,3809,6057],[3083,6058,4791,0,3083,6058,4791],[6059,6060,4825,0,6059,6060,4825],[1115,4815,4814,0,1115,4815,4814],[6061,6062,5505,0,6061,6062,5505],[6063,2507,2506,0,6063,2507,2506],[4411,1407,1406,0,4411,1407,1406],[4926,3299,2749,0,4926,3299,2749],[4347,1486,6064,0,4347,1486,6064],[1513,1680,1679,0,1513,1680,1679],[6065,6066,6067,0,6065,6066,6067],[4635,6068,655,0,4635,6068,655],[2797,2798,4771,0,2797,2798,4771],[660,6069,6070,0,660,6069,6070],[5866,4961,5090,0,5866,4961,5090],[1048,2630,2629,0,1048,2630,2629],[66,1455,64,0,66,1455,64],[6071,42,44,0,6071,42,44],[191,3661,3750,0,191,3661,3750],[3383,6072,5784,0,3383,6072,5784],[6073,6074,6075,0,6073,6074,6075],[6076,6077,5755,0,6076,6077,5755],[6078,6079,3948,0,6078,6079,3948],[6080,5838,5837,0,6080,5838,5837],[4234,4236,6081,0,4234,4236,6081],[6082,6083,6084,0,6082,6083,6084],[5178,5180,5724,0,5178,5180,5724],[1560,1559,4317,0,1560,1559,4317],[2893,6085,6086,0,2893,6085,6086],[5016,6087,6088,0,5016,6087,6088],[4287,5212,6089,0,4287,5212,6089],[6090,2519,6091,0,6090,2519,6091],[6092,6093,6094,0,6092,6093,6094],[4971,3678,6095,0,4971,3678,6095],[1611,5211,5249,0,1611,5211,5249],[954,2754,955,0,954,2754,955],[3944,4582,4905,0,3944,4582,4905],[6096,6097,6098,0,6096,6097,6098],[1867,1869,10,0,1867,1869,10],[6099,6100,3705,0,6099,6100,3705],[3999,4627,6101,0,3999,4627,6101],[1759,6102,1760,0,1759,6102,1760],[5663,6103,4856,0,5663,6103,4856],[3769,3298,3297,0,3769,3298,3297],[6104,6105,6106,0,6104,6105,6106],[5238,5690,6107,0,5238,5690,6107],[657,6108,550,0,657,6108,550],[1533,4433,4435,0,1533,4433,4435],[1133,3404,3784,0,1133,3404,3784],[5845,1640,1751,0,5845,1640,1751],[2079,6109,6110,0,2079,6109,6110],[1582,1252,1580,0,1582,1252,1580],[1148,100,1813,0,1148,100,1813],[2886,6111,5324,0,2886,6111,5324],[6034,1533,6112,0,6034,1533,6112],[3978,5702,5907,0,3978,5702,5907],[246,2300,247,0,246,2300,247],[1415,6113,3528,0,1415,6113,3528],[6114,6115,4279,0,6114,6115,4279],[2826,4051,6116,0,2826,4051,6116],[6117,5673,5544,0,6117,5673,5544],[6118,3219,6119,0,6118,3219,6119],[5820,1823,6120,0,5820,1823,6120],[6121,5809,157,0,6121,5809,157],[6122,3445,3444,0,6122,3445,3444],[2160,6090,2161,0,2160,6090,2161],[3508,1721,1720,0,3508,1721,1720],[5384,6123,6124,0,5384,6123,6124],[6125,2282,971,0,6125,2282,971],[2715,719,25,0,2715,719,25],[6126,953,6127,0,6126,953,6127],[6128,6129,5447,0,6128,6129,5447],[6130,6131,4625,0,6130,6131,4625],[2856,1889,2854,0,2856,1889,2854],[6132,4780,4085,0,6132,4780,4085],[2161,6090,6091,0,2161,6090,6091],[3882,3883,6133,0,3882,3883,6133],[2053,4535,4534,0,2053,4535,4534],[4719,5048,6134,0,4719,5048,6134],[3383,2723,6072,0,3383,2723,6072],[6135,4413,2773,0,6135,4413,2773],[5342,6136,5343,0,5342,6136,5343],[5103,5412,2559,0,5103,5412,2559],[6137,6111,6138,0,6137,6111,6138],[744,361,5848,0,744,361,5848],[3991,3990,5640,0,3991,3990,5640],[295,4553,5516,0,295,4553,5516],[3129,3131,5837,0,3129,3131,5837],[2927,4061,6139,0,2927,4061,6139],[4834,2114,2115,0,4834,2114,2115],[6102,6140,6141,0,6102,6140,6141],[6142,5381,5518,0,6142,5381,5518],[2013,4224,5137,0,2013,4224,5137],[541,1810,6143,0,541,1810,6143],[6144,6145,3282,0,6144,6145,3282],[6072,6146,5784,0,6072,6146,5784],[3826,3825,2043,0,3826,3825,2043],[1155,1384,6147,0,1155,1384,6147],[6148,1349,6149,0,6148,1349,6149],[5331,4474,5739,0,5331,4474,5739],[245,3148,243,0,245,3148,243],[398,3457,399,0,398,3457,399],[6150,194,1703,0,6150,194,1703],[6151,2384,5275,0,6151,2384,5275],[308,2395,306,0,308,2395,306],[6152,5300,5301,0,6152,5300,5301],[5949,4065,2799,0,5949,4065,2799],[6125,971,5102,0,6125,971,5102],[6153,1147,219,0,6153,1147,219],[4626,6154,5519,0,4626,6154,5519],[1047,2630,1048,0,1047,2630,1048],[531,647,646,0,531,647,646],[1527,5757,1915,0,1527,5757,1915],[1718,3313,6155,0,1718,3313,6155],[2199,5607,5365,0,2199,5607,5365],[187,1754,1753,0,187,1754,1753],[1634,1633,2821,0,1634,1633,2821],[1233,4800,5747,0,1233,4800,5747],[396,7,397,0,396,7,397],[6156,6157,6158,0,6156,6157,6158],[6020,6159,1912,0,6020,6159,1912],[1351,4233,6160,0,1351,4233,6160],[1629,6161,1794,0,1629,6161,1794],[3758,1302,4112,0,3758,1302,4112],[6162,6163,6032,0,6162,6163,6032],[6164,4426,5434,0,6164,4426,5434],[557,6165,558,0,557,6165,558],[1224,6166,2244,0,1224,6166,2244],[6167,6168,6169,0,6167,6168,6169],[6170,1780,1779,0,6170,1780,1779],[3342,5834,3578,0,3342,5834,3578],[6171,942,4454,0,6171,942,4454],[4381,6172,6173,0,4381,6172,6173],[6174,5703,5551,0,6174,5703,5551],[6175,1721,3508,0,6175,1721,3508],[4552,4045,4044,0,4552,4045,4044],[6176,6177,5140,0,6176,6177,5140],[6178,5670,3905,0,6178,5670,3905],[6179,1453,1452,0,6179,1453,1452],[2794,6180,6181,0,2794,6180,6181],[3599,379,3466,0,3599,379,3466],[3296,263,3297,0,3296,263,3297],[6182,6183,1192,0,6182,6183,1192],[3704,4853,6184,0,3704,4853,6184],[6185,665,664,0,6185,665,664],[5800,3057,3056,0,5800,3057,3056],[634,1810,3811,0,634,1810,3811],[5871,2658,4869,0,5871,2658,4869],[2476,5734,6186,0,2476,5734,6186],[5733,1262,4611,0,5733,1262,4611],[3946,4362,6187,0,3946,4362,6187],[3925,6188,3926,0,3925,6188,3926],[2312,3384,3846,0,2312,3384,3846],[2666,2668,6189,0,2666,2668,6189],[6190,6191,5217,0,6190,6191,5217],[3903,2065,3962,0,3903,2065,3962],[1130,823,6192,0,1130,823,6192],[972,867,866,0,972,867,866],[6193,5237,5239,0,6193,5237,5239],[739,3360,3268,0,739,3360,3268],[5140,5139,6194,0,5140,5139,6194],[48,50,3471,0,48,50,3471],[2050,2052,1032,0,2050,2052,1032],[2374,3243,3242,0,2374,3243,3242],[4801,1583,1585,0,4801,1583,1585],[5603,1394,2803,0,5603,1394,2803],[2778,5860,2779,0,2778,5860,2779],[2441,6195,6196,0,2441,6195,6196],[6080,5837,6197,0,6080,5837,6197],[4327,4328,6036,0,4327,4328,6036],[4502,2157,6198,0,4502,2157,6198],[4997,4003,4998,0,4997,4003,4998],[4718,1146,4352,0,4718,1146,4352],[5202,6073,6199,0,5202,6073,6199],[4959,4958,5547,0,4959,4958,5547],[1102,6200,4019,0,1102,6200,4019],[5823,3586,4700,0,5823,3586,4700],[6201,3401,1206,0,6201,3401,1206],[4573,6037,6036,0,4573,6037,6036],[5767,2979,2978,0,5767,2979,2978],[1315,4141,1481,0,1315,4141,1481],[6202,650,6203,0,6202,650,6203],[5726,2743,379,0,5726,2743,379],[6099,3705,4160,0,6099,3705,4160],[1957,5506,5505,0,1957,5506,5505],[5715,17,6204,0,5715,17,6204],[2286,5018,2287,0,2286,5018,2287],[5902,2726,2725,0,5902,2726,2725],[1359,3475,1360,0,1359,3475,1360],[6205,1644,4387,0,6205,1644,4387],[3350,2659,6206,0,3350,2659,6206],[5625,5626,5700,0,5625,5626,5700],[6207,3310,5503,0,6207,3310,5503],[4691,1695,1694,0,4691,1695,1694],[2421,2423,6208,0,2421,2423,6208],[1936,208,207,0,1936,208,207],[6209,4696,4695,0,6209,4696,4695],[4010,2191,2190,0,4010,2191,2190],[6210,2721,3637,0,6210,2721,3637],[3215,2802,1360,0,3215,2802,1360],[4456,5155,4562,0,4456,5155,4562],[3722,6211,6212,0,3722,6211,6212],[2026,2025,4668,0,2026,2025,4668],[3005,6213,4284,0,3005,6213,4284],[434,436,2246,0,434,436,2246],[366,1098,1097,0,366,1098,1097],[6214,6215,5184,0,6214,6215,5184],[3777,1418,3778,0,3777,1418,3778],[6216,2640,6217,0,6216,2640,6217],[6142,300,6218,0,6142,300,6218],[654,3038,4635,0,654,3038,4635],[2436,4375,2955,0,2436,4375,2955],[4274,5512,4275,0,4274,5512,4275],[6219,2286,4206,0,6219,2286,4206],[639,3779,640,0,639,3779,640],[787,2599,788,0,787,2599,788],[6220,2649,6221,0,6220,2649,6221],[5487,5486,6222,0,5487,5486,6222],[1787,6223,5268,0,1787,6223,5268],[3002,5031,3000,0,3002,5031,3000],[3362,2769,3363,0,3362,2769,3363],[4270,6224,5305,0,4270,6224,5305],[2930,6225,1213,0,2930,6225,1213],[5124,3989,1288,0,5124,3989,1288],[2609,4187,2610,0,2609,4187,2610],[520,2928,2927,0,520,2928,2927],[6226,6168,3193,0,6226,6168,3193],[5896,5891,4009,0,5896,5891,4009],[5214,2881,2880,0,5214,2881,2880],[1772,2960,1773,0,1772,2960,1773],[2197,5406,5405,0,2197,5406,5405],[6227,3192,5994,0,6227,3192,5994],[5302,6228,6229,0,5302,6228,6229],[3753,3754,6230,0,3753,3754,6230],[5264,6231,5265,0,5264,6231,5265],[807,6232,6233,0,807,6232,6233],[6234,6235,1335,0,6234,6235,1335],[3745,1331,3072,0,3745,1331,3072],[6236,5425,6141,0,6236,5425,6141],[5685,5650,6237,0,5685,5650,6237],[2715,2717,3784,0,2715,2717,3784],[4627,4626,4385,0,4627,4626,4385],[6238,4560,354,0,6238,4560,354],[107,2939,108,0,107,2939,108],[3357,4596,4595,0,3357,4596,4595],[6239,5994,3192,0,6239,5994,3192],[447,5163,5673,0,447,5163,5673],[4628,2742,6240,0,4628,2742,6240],[6239,3192,3191,0,6239,3192,3191],[5887,423,422,0,5887,423,422],[6241,36,63,0,6241,36,63],[4616,4804,6242,0,4616,4804,6242],[4380,3841,6243,0,4380,3841,6243],[3333,4766,3334,0,3333,4766,3334],[3495,4539,2409,0,3495,4539,2409],[762,1293,763,0,762,1293,763],[4305,1454,4289,0,4305,1454,4289],[6244,1998,1997,0,6244,1998,1997],[836,4845,837,0,836,4845,837],[6245,1184,6246,0,6245,1184,6246],[2996,3335,6247,0,2996,3335,6247],[579,581,2502,0,579,581,2502],[6248,6249,39,0,6248,6249,39],[2957,5661,6018,0,2957,5661,6018],[4808,2908,4809,0,4808,2908,4809],[3793,3443,3445,0,3793,3443,3445],[5894,1192,6183,0,5894,1192,6183],[6191,5215,5217,0,6191,5215,5217],[1062,2989,1063,0,1062,2989,1063],[932,931,4878,0,932,931,4878],[4844,6250,6251,0,4844,6250,6251],[2326,2325,6252,0,2326,2325,6252],[6253,5265,5853,0,6253,5265,5853],[5994,6239,5995,0,5994,6239,5995],[1781,4297,1782,0,1781,4297,1782],[660,5975,6069,0,660,5975,6069],[5146,6001,1222,0,5146,6001,1222],[3282,6145,2958,0,3282,6145,2958],[1663,6254,1754,0,1663,6254,1754],[6255,4063,6256,0,6255,4063,6256],[5999,1310,2471,0,5999,1310,2471],[2081,2887,2082,0,2081,2887,2082],[2413,1208,2553,0,2413,1208,2553],[1531,314,313,0,1531,314,313],[4834,2115,6257,0,4834,2115,6257],[6258,6259,5501,0,6258,6259,5501],[3708,882,3955,0,3708,882,3955],[2268,6260,6261,0,2268,6260,6261],[5581,6262,1421,0,5581,6262,1421],[1823,1235,6263,0,1823,1235,6263],[6264,6146,1631,0,6264,6146,1631],[6265,230,6266,0,6265,230,6266],[6267,6268,3445,0,6267,6268,3445],[5186,6269,6270,0,5186,6269,6270],[6271,1395,5721,0,6271,1395,5721],[2322,2581,2360,0,2322,2581,2360],[6272,6273,6274,0,6272,6273,6274],[3768,1310,6012,0,3768,1310,6012],[1322,1323,4671,0,1322,1323,4671],[5836,6275,3879,0,5836,6275,3879],[342,1941,445,0,342,1941,445],[6276,6277,2392,0,6276,6277,2392],[6278,6279,2758,0,6278,6279,2758],[1949,491,810,0,1949,491,810],[2746,2745,6280,0,2746,2745,6280],[4409,5306,1814,0,4409,5306,1814],[5938,4762,2438,0,5938,4762,2438],[6281,3485,1570,0,6281,3485,1570],[2470,1422,1421,0,2470,1422,1421],[2609,3318,1138,0,2609,3318,1138],[2274,4388,5872,0,2274,4388,5872],[2422,6282,5772,0,2422,6282,5772],[5893,6283,5131,0,5893,6283,5131],[5678,4344,5864,0,5678,4344,5864],[3819,6284,3820,0,3819,6284,3820],[566,6285,6286,0,566,6285,6286],[2175,5260,2300,0,2175,5260,2300],[3498,3497,1526,0,3498,3497,1526],[4658,6287,5656,0,4658,6287,5656],[1177,2023,261,0,1177,2023,261],[1384,2907,5097,0,1384,2907,5097],[3085,3725,3086,0,3085,3725,3086],[3587,1250,6288,0,3587,1250,6288],[6168,6239,3191,0,6168,6239,3191],[6289,4790,6290,0,6289,4790,6290],[6291,2720,6292,0,6291,2720,6292],[6077,6293,3576,0,6077,6293,3576],[3690,3689,6294,0,3690,3689,6294],[6135,3475,1359,0,6135,3475,1359],[214,4024,6295,0,214,4024,6295],[5654,5646,5647,0,5654,5646,5647],[4025,2678,2680,0,4025,2678,2680],[2590,6296,2591,0,2590,6296,2591],[217,2966,4166,0,217,2966,4166],[869,871,6297,0,869,871,6297],[3459,6298,6023,0,3459,6298,6023],[6299,773,1424,0,6299,773,1424],[776,1422,777,0,776,1422,777],[6300,6301,5762,0,6300,6301,5762],[2804,5021,3346,0,2804,5021,3346],[6245,6246,6302,0,6245,6246,6302],[6303,4601,5439,0,6303,4601,5439],[5422,4790,6289,0,5422,4790,6289],[877,687,1988,0,877,687,1988],[6304,6305,3887,0,6304,6305,3887],[892,3904,893,0,892,3904,893],[6306,4392,6307,0,6306,4392,6307],[2374,2376,6308,0,2374,2376,6308],[6309,2897,5670,0,6309,2897,5670],[1704,1375,5900,0,1704,1375,5900],[2412,5894,3401,0,2412,5894,3401],[6310,3414,5299,0,6310,3414,5299],[3152,680,1678,0,3152,680,1678],[5596,6311,5942,0,5596,6311,5942],[2845,1715,5049,0,2845,1715,5049],[3797,5712,3798,0,3797,5712,3798],[5905,4859,6312,0,5905,4859,6312],[3257,3259,6045,0,3257,3259,6045],[3435,3735,1628,0,3435,3735,1628],[6313,6314,284,0,6313,6314,284],[6271,5738,6315,0,6271,5738,6315],[258,6245,5281,0,258,6245,5281],[6316,1306,1308,0,6316,1306,1308],[2902,4492,2601,0,2902,4492,2601],[1650,4407,6317,0,1650,4407,6317],[6318,6319,3672,0,6318,6319,3672],[4721,6320,477,0,4721,6320,477],[1324,4612,1325,0,1324,4612,1325],[5741,200,2912,0,5741,200,2912],[4103,4095,4104,0,4103,4095,4104],[1995,6321,3231,0,1995,6321,3231],[6322,905,1306,0,6322,905,1306],[5245,4678,2431,0,5245,4678,2431],[3457,850,849,0,3457,850,849],[4742,4741,3161,0,4742,4741,3161],[811,2194,4909,0,811,2194,4909],[1139,6323,6324,0,1139,6323,6324],[5367,6325,5368,0,5367,6325,5368],[2902,1579,4492,0,2902,1579,4492],[6326,6327,524,0,6326,6327,524],[6328,1675,6329,0,6328,1675,6329],[6233,6232,2652,0,6233,6232,2652],[6330,6199,6331,0,6330,6199,6331],[2910,2394,308,0,2910,2394,308],[2285,4120,2286,0,2285,4120,2286],[6332,6333,6167,0,6332,6333,6167],[6334,6250,6335,0,6334,6250,6335],[6057,6336,6337,0,6057,6336,6337],[3276,6338,1667,0,3276,6338,1667],[6339,6340,6341,0,6339,6340,6341],[5749,4473,4475,0,5749,4473,4475],[2112,5417,4874,0,2112,5417,4874],[1863,5019,5980,0,1863,5019,5980],[3627,3020,2167,0,3627,3020,2167],[1233,4292,1231,0,1233,4292,1231],[6180,2636,6181,0,6180,2636,6181],[3238,5560,6342,0,3238,5560,6342],[5454,6343,2583,0,5454,6343,2583],[6279,2096,6344,0,6279,2096,6344],[6160,4233,4660,0,6160,4233,4660],[682,5756,683,0,682,5756,683],[6345,4577,4578,0,6345,4577,4578],[3397,3396,2097,0,3397,3396,2097],[2501,2058,6346,0,2501,2058,6346],[6332,6167,6169,0,6332,6167,6169],[4391,4393,293,0,4391,4393,293],[2539,4150,6347,0,2539,4150,6347],[2040,6348,2041,0,2040,6348,2041],[3429,3278,6349,0,3429,3278,6349],[3913,4919,3914,0,3913,4919,3914],[5231,6350,6351,0,5231,6350,6351],[6352,3967,526,0,6352,3967,526],[380,2135,378,0,380,2135,378],[4691,6353,1695,0,4691,6353,1695],[6244,1997,5924,0,6244,1997,5924],[209,980,207,0,209,980,207],[2917,6265,2918,0,2917,6265,2918],[1706,3625,3624,0,1706,3625,3624],[6354,1333,5793,0,6354,1333,5793],[6355,6356,4604,0,6355,6356,4604],[564,6357,6358,0,564,6357,6358],[1463,5515,5426,0,1463,5515,5426],[6359,6237,5650,0,6359,6237,5650],[6360,6361,6362,0,6360,6361,6362],[5301,6363,6152,0,5301,6363,6152],[458,4799,2396,0,458,4799,2396],[6364,6365,4568,0,6364,6365,4568],[151,6366,6367,0,151,6366,6367],[519,5751,4326,0,519,5751,4326],[2710,6368,3699,0,2710,6368,3699],[6332,6169,6363,0,6332,6169,6363],[4202,114,6369,0,4202,114,6369],[5947,6370,6371,0,5947,6370,6371],[6152,6363,6169,0,6152,6363,6169],[6372,3522,5805,0,6372,3522,5805],[4575,5621,6037,0,4575,5621,6037],[3093,3092,2688,0,3093,3092,2688],[2424,973,866,0,2424,973,866],[5558,1359,1361,0,5558,1359,1361],[1739,6373,6374,0,1739,6373,6374],[4090,6375,5110,0,4090,6375,5110],[2279,2281,6376,0,2279,2281,6376],[3224,3694,3954,0,3224,3694,3954],[5889,4219,178,0,5889,4219,178],[3305,6377,6378,0,3305,6377,6378],[4661,2560,6379,0,4661,2560,6379],[3164,6380,6381,0,3164,6380,6381],[3421,3828,5284,0,3421,3828,5284],[6382,6383,1748,0,6382,6383,1748],[6231,3577,5834,0,6231,3577,5834],[410,412,6384,0,410,412,6384],[3498,5490,1726,0,3498,5490,1726],[3791,6385,4566,0,3791,6385,4566],[4707,6105,6104,0,4707,6105,6104],[6386,3041,6387,0,6386,3041,6387],[4065,2800,2799,0,4065,2800,2799],[6388,5959,2656,0,6388,5959,2656],[2973,6389,2974,0,2973,6389,2974],[6390,5301,6391,0,6390,5301,6391],[802,3896,2930,0,802,3896,2930],[4103,6392,4095,0,4103,6392,4095],[6386,6387,6393,0,6386,6387,6393],[6394,692,4854,0,6394,692,4854],[3884,4944,3885,0,3884,4944,3885],[3723,4316,2107,0,3723,4316,2107],[5549,3494,1038,0,5549,3494,1038],[2562,2561,5929,0,2562,2561,5929],[6395,6396,3079,0,6395,6396,3079],[5582,4231,708,0,5582,4231,708],[870,6397,871,0,870,6397,871],[4421,5117,2336,0,4421,5117,2336],[4199,4201,3688,0,4199,4201,3688],[2016,5898,5897,0,2016,5898,5897],[3336,1345,814,0,3336,1345,814],[5591,4441,2410,0,5591,4441,2410],[6398,928,4986,0,6398,928,4986],[1408,6399,590,0,1408,6399,590],[2707,1241,2142,0,2707,1241,2142],[2248,2250,4949,0,2248,2250,4949],[5846,2849,6400,0,5846,2849,6400],[3836,418,417,0,3836,418,417],[5651,6401,6382,0,5651,6401,6382],[6390,6391,6402,0,6390,6391,6402],[6030,6054,6403,0,6030,6054,6403],[6201,1206,1208,0,6201,1206,1208],[4220,6404,4221,0,4220,6404,4221],[4829,4828,6405,0,4829,4828,6405],[2067,6406,4451,0,2067,6406,4451],[1453,3496,1454,0,1453,3496,1454],[6248,6407,5150,0,6248,6407,5150],[6408,2869,4261,0,6408,2869,4261],[6390,6363,5301,0,6390,6363,5301],[5476,6409,6410,0,5476,6409,6410],[6411,4681,6123,0,6411,4681,6123],[6412,6413,6414,0,6412,6413,6414],[6415,6416,6417,0,6415,6416,6417],[3491,3390,6418,0,3491,3390,6418],[5569,3851,4179,0,5569,3851,4179],[1675,1674,4040,0,1675,1674,4040],[5362,2318,5582,0,5362,2318,5582],[5816,6140,3924,0,5816,6140,3924],[3391,4260,3392,0,3391,4260,3392],[6419,4992,5314,0,6419,4992,5314],[552,4640,3446,0,552,4640,3446],[2376,6017,6420,0,2376,6017,6420],[3945,2393,4363,0,3945,2393,4363],[3083,4791,3084,0,3083,4791,3084],[3788,4555,2952,0,3788,4555,2952],[6421,6422,6423,0,6421,6422,6423],[1580,1067,1581,0,1580,1067,1581],[350,1247,6424,0,350,1247,6424],[6425,5936,5937,0,6425,5936,5937],[6426,63,38,0,6426,63,38],[2583,6343,2584,0,2583,6343,2584],[481,33,35,0,481,33,35],[3364,6427,3365,0,3364,6427,3365],[4424,986,6428,0,4424,986,6428],[5205,6429,6127,0,5205,6429,6127],[5461,5910,6264,0,5461,5910,6264],[975,5819,6430,0,975,5819,6430],[2470,2471,1310,0,2470,2471,1310],[2902,2601,762,0,2902,2601,762],[11,2682,2757,0,11,2682,2757],[11,2720,9,0,11,2720,9],[3591,6431,3592,0,3591,6431,3592],[4348,3307,3308,0,4348,3307,3308],[2351,6432,909,0,2351,6432,909],[2377,6433,4006,0,2377,6433,4006],[2766,2768,6434,0,2766,2768,6434],[907,909,6432,0,907,909,6432],[5270,6435,4219,0,5270,6435,4219],[6436,5342,5619,0,6436,5342,5619],[2281,3952,2725,0,2281,3952,2725],[6437,6438,2866,0,6437,6438,2866],[1256,1513,407,0,1256,1513,407],[4722,2340,4816,0,4722,2340,4816],[3435,5087,5061,0,3435,5087,5061],[1602,6439,5893,0,1602,6439,5893],[6440,841,840,0,6440,841,840],[6441,6395,6442,0,6441,6395,6442],[2687,2686,5375,0,2687,2686,5375],[6443,4637,2940,0,6443,4637,2940],[6444,4371,621,0,6444,4371,621],[6445,907,6446,0,6445,907,6446],[68,67,6447,0,68,67,6447],[2954,3425,3074,0,2954,3425,3074],[4401,248,5260,0,4401,248,5260],[6448,1539,1538,0,6448,1539,1538],[6449,2451,3770,0,6449,2451,3770],[3568,3570,5216,0,3568,3570,5216],[6432,5931,6450,0,6432,5931,6450],[6432,6450,6451,0,6432,6450,6451],[2149,2151,4367,0,2149,2151,4367],[5992,6450,5931,0,5992,6450,5931],[1686,1089,6307,0,1686,1089,6307],[4255,787,4912,0,4255,787,4912],[3126,6452,6453,0,3126,6452,6453],[3953,2442,6196,0,3953,2442,6196],[4667,4668,5249,0,4667,4668,5249],[3627,1966,6454,0,3627,1966,6454],[5865,6455,5490,0,5865,6455,5490],[2061,3729,5159,0,2061,3729,5159],[3665,1872,1871,0,3665,1872,1871],[493,2531,2129,0,493,2531,2129],[2051,4126,4125,0,2051,4126,4125],[727,5774,5773,0,727,5774,5773],[2351,2350,6432,0,2351,2350,6432],[4793,4340,2314,0,4793,4340,2314],[2051,4125,5457,0,2051,4125,5457],[2700,51,5286,0,2700,51,5286],[2035,1414,1413,0,2035,1414,1413],[6456,6432,2350,0,6456,6432,2350],[1537,1536,6457,0,1537,1536,6457],[5917,5919,6458,0,5917,5919,6458],[2406,2407,6459,0,2406,2407,6459],[6460,5094,810,0,6460,5094,810],[6461,4425,4424,0,6461,4425,4424],[1391,6462,1392,0,1391,6462,1392],[6456,6450,5992,0,6456,6450,5992],[6456,5992,6432,0,6456,5992,6432],[1187,6263,4986,0,1187,6263,4986],[552,554,4639,0,552,554,4639],[1971,1970,5772,0,1971,1970,5772],[1211,5751,519,0,1211,5751,519],[907,6432,6446,0,907,6432,6446],[6463,5439,4601,0,6463,5439,4601],[1977,3758,4024,0,1977,3758,4024],[6279,4805,2096,0,6279,4805,2096],[6464,1913,5027,0,6464,1913,5027],[6190,6144,4495,0,6190,6144,4495],[237,6465,6466,0,237,6465,6466],[5696,5047,1139,0,5696,5047,1139],[3597,477,476,0,3597,477,476],[2484,5639,5371,0,2484,5639,5371],[4737,4491,1578,0,4737,4491,1578],[6432,5992,6446,0,6432,5992,6446],[1360,2802,1361,0,1360,2802,1361],[1699,1734,1084,0,1699,1734,1084],[4334,6467,4697,0,4334,6467,4697],[6468,2937,4326,0,6468,2937,4326],[6469,3840,6384,0,6469,3840,6384],[875,3830,6470,0,875,3830,6470],[2034,3638,3060,0,2034,3638,3060],[6471,5811,311,0,6471,5811,311],[81,5413,82,0,81,5413,82],[4819,5545,1491,0,4819,5545,1491],[4894,1201,45,0,4894,1201,45],[6472,6473,6474,0,6472,6473,6474],[6475,6476,6477,0,6475,6476,6477],[6478,6479,6480,0,6478,6479,6480],[2524,3379,3354,0,2524,3379,3354],[2089,4851,2087,0,2089,4851,2087],[5987,6481,3030,0,5987,6481,3030],[3356,2527,5268,0,3356,2527,5268],[1336,2770,1688,0,1336,2770,1688],[5597,5000,793,0,5597,5000,793],[6482,6483,6038,0,6482,6483,6038],[3580,6484,1555,0,3580,6484,1555],[2349,2540,1681,0,2349,2540,1681],[6137,5856,5324,0,6137,5856,5324],[6485,6486,4482,0,6485,6486,4482],[6487,6488,6489,0,6487,6488,6489],[513,6490,3345,0,513,6490,3345],[3198,6187,6491,0,3198,6187,6491],[3044,6422,3312,0,3044,6422,3312],[5495,3528,5496,0,5495,3528,5496],[6492,2393,4905,0,6492,2393,4905],[6493,6494,6495,0,6493,6494,6495],[5715,6496,17,0,5715,6496,17],[5938,6350,6497,0,5938,6350,6497],[6498,2784,1879,0,6498,2784,1879],[6499,6500,1379,0,6499,6500,1379],[6501,958,957,0,6501,958,957],[6502,6503,5953,0,6502,6503,5953],[1069,6400,6504,0,1069,6400,6504],[4409,4408,5306,0,4409,4408,5306],[6189,5950,5949,0,6189,5950,5949],[6505,3009,3008,0,6505,3009,3008],[3835,5978,3833,0,3835,5978,3833],[5728,2591,6296,0,5728,2591,6296],[1431,996,6506,0,1431,996,6506],[4358,6507,6508,0,4358,6507,6508],[2261,413,415,0,2261,413,415],[6509,6510,6511,0,6509,6510,6511],[2893,6078,3948,0,2893,6078,3948],[4586,973,2423,0,4586,973,2423],[3511,704,3647,0,3511,704,3647],[939,6512,1995,0,939,6512,1995],[6513,5793,6514,0,6513,5793,6514],[6515,6516,2805,0,6515,6516,2805],[920,919,6517,0,920,919,6517],[6518,6519,4086,0,6518,6519,4086],[6520,3415,5326,0,6520,3415,5326],[6243,6521,6522,0,6243,6521,6522],[446,3438,5163,0,446,3438,5163],[6523,1174,3103,0,6523,1174,3103],[3844,1901,4465,0,3844,1901,4465],[5043,5045,6524,0,5043,5045,6524],[3630,6525,2343,0,3630,6525,2343],[4043,611,6526,0,4043,611,6526],[6527,2540,2518,0,6527,2540,2518],[6440,4681,1023,0,6440,4681,1023],[1535,3367,1536,0,1535,3367,1536],[6092,6528,6236,0,6092,6528,6236],[2959,6529,6530,0,2959,6529,6530],[356,5682,6419,0,356,5682,6419],[4873,6531,6532,0,4873,6531,6532],[6533,4785,5780,0,6533,4785,5780],[2880,2882,1169,0,2880,2882,1169],[5340,6534,815,0,5340,6534,815],[652,6535,653,0,652,6535,653],[6536,6356,2262,0,6536,6356,2262],[6537,6538,6539,0,6537,6538,6539],[6306,2853,4392,0,6306,2853,4392],[1113,1112,5486,0,1113,1112,5486],[6540,2249,2248,0,6540,2249,2248],[4349,5498,5500,0,4349,5498,5500],[3684,1961,1960,0,3684,1961,1960],[5675,2713,6541,0,5675,2713,6541],[1796,1798,5158,0,1796,1798,5158],[600,3724,5783,0,600,3724,5783],[4955,4957,362,0,4955,4957,362],[3409,3133,3132,0,3409,3133,3132],[1542,6542,5526,0,1542,6542,5526],[6543,6544,3369,0,6543,6544,3369],[4859,6545,6312,0,4859,6545,6312],[4841,3374,3776,0,4841,3374,3776],[6527,2518,3037,0,6527,2518,3037],[6546,3573,3554,0,6546,3573,3554],[5016,6547,6087,0,5016,6547,6087],[4633,3282,3281,0,4633,3282,3281],[6548,3808,2729,0,6548,3808,2729],[467,3703,5579,0,467,3703,5579],[4746,3766,2608,0,4746,3766,2608],[4093,5594,4094,0,4093,5594,4094],[5905,2194,1793,0,5905,2194,1793],[78,80,5674,0,78,80,5674],[3037,2518,1060,0,3037,2518,1060],[3919,5415,6549,0,3919,5415,6549],[615,2143,957,0,615,2143,957],[5320,5319,926,0,5320,5319,926],[6550,5783,2106,0,6550,5783,2106],[1006,1008,6506,0,1006,1008,6506],[1685,4331,4519,0,1685,4331,4519],[1060,2518,1061,0,1060,2518,1061],[324,4850,6551,0,324,4850,6551],[6043,573,6552,0,6043,573,6552],[2400,2007,5683,0,2400,2007,5683],[3797,2230,6553,0,3797,2230,6553],[5675,6541,4781,0,5675,6541,4781],[2244,5613,5612,0,2244,5613,5612],[6554,3071,2179,0,6554,3071,2179],[6555,5608,6556,0,6555,5608,6556],[1574,1576,1022,0,1574,1576,1022],[5186,6270,6557,0,5186,6270,6557],[4912,873,4913,0,4912,873,4913],[917,4315,6558,0,917,4315,6558],[1504,6559,3308,0,1504,6559,3308],[6560,6518,6196,0,6560,6518,6196],[1681,2540,6561,0,1681,2540,6561],[5614,3203,6562,0,5614,3203,6562],[1165,6563,1722,0,1165,6563,1722],[6527,6561,2540,0,6527,6561,2540],[6523,6564,1174,0,6523,6564,1174],[4127,6565,6566,0,4127,6565,6566],[5529,2722,2721,0,5529,2722,2721],[3838,4313,3839,0,3838,4313,3839],[216,218,6567,0,216,218,6567],[6191,4494,153,0,6191,4494,153],[674,4017,3503,0,674,4017,3503],[6568,2682,1197,0,6568,2682,1197],[2655,2654,4897,0,2655,2654,4897],[2542,6029,3236,0,2542,6029,3236],[6569,6561,6527,0,6569,6561,6527],[1186,992,6570,0,1186,992,6570],[6431,3591,6571,0,6431,3591,6571],[5142,3364,6572,0,5142,3364,6572],[3983,6573,2903,0,3983,6573,2903],[1587,5393,5089,0,1587,5393,5089],[6574,5918,5917,0,6574,5918,5917],[2881,6575,6576,0,2881,6575,6576],[3592,5597,792,0,3592,5597,792],[1471,1666,6577,0,1471,1666,6577],[6578,6579,3475,0,6578,6579,3475],[6525,6580,6581,0,6525,6580,6581],[2662,6582,3797,0,2662,6582,3797],[3547,3630,322,0,3547,3630,322],[36,6241,2415,0,36,6241,2415],[5167,5933,6583,0,5167,5933,6583],[2168,6584,2169,0,2168,6584,2169],[4689,6562,5078,0,4689,6562,5078],[3770,2448,2447,0,3770,2448,2447],[760,6585,891,0,760,6585,891],[6348,6586,2041,0,6348,6586,2041],[497,1539,498,0,497,1539,498],[4359,6587,4357,0,4359,6587,4357],[5895,6588,3818,0,5895,6588,3818],[6589,6590,820,0,6589,6590,820],[5894,3211,6591,0,5894,3211,6591],[5757,3479,1915,0,5757,3479,1915],[2653,6592,6593,0,2653,6592,6593],[5844,6594,5005,0,5844,6594,5005],[1478,6394,6595,0,1478,6394,6595],[5298,5299,6280,0,5298,5299,6280],[6596,6416,6597,0,6596,6416,6597],[1100,1603,1822,0,1100,1603,1822],[6598,2223,3558,0,6598,2223,3558],[1364,5379,6599,0,1364,5379,6599],[231,4977,5536,0,231,4977,5536],[3154,6600,4325,0,3154,6600,4325],[6496,5715,5714,0,6496,5715,5714],[1948,44,462,0,1948,44,462],[6525,71,6601,0,6525,71,6601],[6525,6601,6580,0,6525,6601,6580],[4242,1377,6125,0,4242,1377,6125],[4536,4535,5429,0,4536,4535,5429],[4321,4605,6287,0,4321,4605,6287],[6602,3996,6603,0,6602,3996,6603],[6288,1250,587,0,6288,1250,587],[4127,6604,4128,0,4127,6604,4128],[6605,6606,6607,0,6605,6606,6607],[3491,3391,3390,0,3491,3391,3390],[4087,3800,6608,0,4087,3800,6608],[2512,5319,6609,0,2512,5319,6609],[5540,4823,4205,0,5540,4823,4205],[1878,1877,6610,0,1878,1877,6610],[2567,2124,2123,0,2567,2124,2123],[2702,2701,2950,0,2702,2701,2950],[2645,1855,6611,0,2645,1855,6611],[6612,6613,1737,0,6612,6613,1737],[6295,6614,6615,0,6295,6614,6615],[6616,2283,193,0,6616,2283,193],[5440,5705,5704,0,5440,5705,5704],[2024,6617,6618,0,2024,6617,6618],[772,774,5985,0,772,774,5985],[6281,4729,3485,0,6281,4729,3485],[6619,3825,3827,0,6619,3825,3827],[6580,6601,6605,0,6580,6601,6605],[6581,6580,6607,0,6581,6580,6607],[2004,2015,6620,0,2004,2015,6620],[6580,6605,6607,0,6580,6605,6607],[3999,1523,6621,0,3999,1523,6621],[6622,5843,1998,0,6622,5843,1998],[4715,620,619,0,4715,620,619],[2780,5957,5958,0,2780,5957,5958],[662,3302,3303,0,662,3302,3303],[1358,1357,2820,0,1358,1357,2820],[2246,6623,4054,0,2246,6623,4054],[5573,860,6624,0,5573,860,6624],[4226,6458,2663,0,4226,6458,2663],[1093,2135,1094,0,1093,2135,1094],[4971,2790,2789,0,4971,2790,2789],[6625,5931,6626,0,6625,5931,6626],[6627,6628,3998,0,6627,6628,3998],[5893,5131,1519,0,5893,5131,1519],[6251,6250,1447,0,6251,6250,1447],[4736,4549,3110,0,4736,4549,3110],[6629,5009,6630,0,6629,5009,6630],[3246,5084,2446,0,3246,5084,2446],[6631,532,1043,0,6631,532,1043],[6344,6632,6279,0,6344,6632,6279],[6633,6634,6635,0,6633,6634,6635],[5133,6636,4951,0,5133,6636,4951],[6637,3220,4396,0,6637,3220,4396],[122,4882,120,0,122,4882,120],[4354,6625,1110,0,4354,6625,1110],[1471,1470,6638,0,1471,1470,6638],[4938,4125,368,0,4938,4125,368],[446,5163,447,0,446,5163,447],[3895,6639,6640,0,3895,6639,6640],[3376,4997,4999,0,3376,4997,4999],[3934,3933,1082,0,3934,3933,1082],[6641,5614,3909,0,6641,5614,3909],[3748,4484,6642,0,3748,4484,6642],[2277,6643,164,0,2277,6643,164],[6644,4488,6516,0,6644,4488,6516],[5664,4856,4855,0,5664,4856,4855],[5318,6645,3036,0,5318,6645,3036],[6646,6515,5628,0,6646,6515,5628],[5730,1227,5731,0,5730,1227,5731],[6647,6295,3083,0,6647,6295,3083],[6584,6648,3465,0,6584,6648,3465],[291,1320,292,0,291,1320,292],[903,4067,1451,0,903,4067,1451],[4698,628,627,0,4698,628,627],[4202,6369,627,0,4202,6369,627],[5948,4108,4133,0,5948,4108,4133],[1341,4036,5259,0,1341,4036,5259],[5937,2613,1666,0,5937,2613,1666],[898,900,4468,0,898,900,4468],[3749,1670,1669,0,3749,1670,1669],[1076,3615,2367,0,1076,3615,2367],[321,3546,322,0,321,3546,322],[449,6649,2417,0,449,6649,2417],[2350,6450,6650,0,2350,6450,6650],[2522,2524,3354,0,2522,2524,3354],[6085,6651,6652,0,6085,6651,6652],[6653,6153,221,0,6653,6153,221],[6654,6655,5122,0,6654,6655,5122],[3536,5433,5013,0,3536,5433,5013],[3104,1504,3308,0,3104,1504,3308],[2334,696,2304,0,2334,696,2304],[3606,249,6656,0,3606,249,6656],[6657,6658,6659,0,6657,6658,6659],[1316,1481,854,0,1316,1481,854],[771,770,6660,0,771,770,6660],[4278,6661,6662,0,4278,6661,6662],[4525,1537,4572,0,4525,1537,4572],[3798,4893,2230,0,3798,4893,2230],[1817,3398,2372,0,1817,3398,2372],[457,6663,3306,0,457,6663,3306],[3756,449,6664,0,3756,449,6664],[2573,2572,4884,0,2573,2572,4884],[3502,4282,3503,0,3502,4282,3503],[4989,4941,6665,0,4989,4941,6665],[6276,6566,6666,0,6276,6566,6666],[1718,6155,502,0,1718,6155,502],[5952,4259,149,0,5952,4259,149],[6323,2650,4192,0,6323,2650,4192],[5809,6121,6667,0,5809,6121,6667],[2763,1085,6668,0,2763,1085,6668],[330,332,6669,0,330,332,6669],[6225,2930,3897,0,6225,2930,3897],[4530,4297,4296,0,4530,4297,4296],[5085,6670,4865,0,5085,6670,4865],[1829,2056,4281,0,1829,2056,4281],[1602,6107,6671,0,1602,6107,6671],[6672,6657,6095,0,6672,6657,6095],[5982,2546,5903,0,5982,2546,5903],[4427,4429,6673,0,4427,4429,6673],[6674,1265,5046,0,6674,1265,5046],[316,2633,1049,0,316,2633,1049],[5913,1868,5112,0,5913,1868,5112],[3941,1098,3942,0,3941,1098,3942],[1341,5259,3993,0,1341,5259,3993],[2749,2748,2192,0,2749,2748,2192],[6395,3079,6675,0,6395,3079,6675],[6676,6640,4744,0,6676,6640,4744],[1316,854,1614,0,1316,854,1614],[5766,6677,5601,0,5766,6677,5601],[3121,5172,5936,0,3121,5172,5936],[4232,5583,6678,0,4232,5583,6678],[2187,6679,3802,0,2187,6679,3802],[2499,1026,3699,0,2499,1026,3699],[5849,5851,6680,0,5849,5851,6680],[6602,4767,5789,0,6602,4767,5789],[758,757,4193,0,758,757,4193],[393,4981,4980,0,393,4981,4980],[2758,2757,4101,0,2758,2757,4101],[4746,3589,3506,0,4746,3589,3506],[1192,850,1193,0,1192,850,1193],[2329,6066,6681,0,2329,6066,6681],[2479,6634,6633,0,2479,6634,6633],[5001,5597,3592,0,5001,5597,3592],[4805,6278,4806,0,4805,6278,4806],[3722,6212,3723,0,3722,6212,3723],[6301,2093,6682,0,6301,2093,6682],[1461,1460,1190,0,1461,1460,1190],[4552,1767,2353,0,4552,1767,2353],[3978,6683,5625,0,3978,6683,5625],[5659,1000,137,0,5659,1000,137],[1478,692,6394,0,1478,692,6394],[6120,6263,6684,0,6120,6263,6684],[2990,76,1993,0,2990,76,1993],[963,965,4755,0,963,965,4755],[2372,3675,4960,0,2372,3675,4960],[6228,747,6685,0,6228,747,6685],[3238,5565,5560,0,3238,5565,5560],[425,3570,426,0,425,3570,426],[371,5576,369,0,371,5576,369],[6596,2793,6416,0,6596,2793,6416],[5238,853,5690,0,5238,853,5690],[5826,2317,2316,0,5826,2317,2316],[5041,1712,6686,0,5041,1712,6686],[2762,841,3378,0,2762,841,3378],[6687,2873,6688,0,6687,2873,6688],[1240,3631,6570,0,1240,3631,6570],[3645,6158,1985,0,3645,6158,1985],[5276,5277,1636,0,5276,5277,1636],[197,329,6689,0,197,329,6689],[6600,4324,4325,0,6600,4324,4325],[6401,1339,1338,0,6401,1339,1338],[3674,4276,1898,0,3674,4276,1898],[1399,1401,6690,0,1399,1401,6690],[1377,5637,6125,0,1377,5637,6125],[6691,3217,5077,0,6691,3217,5077],[1352,1351,574,0,1352,1351,574],[613,5504,614,0,613,5504,614],[3724,600,6025,0,3724,600,6025],[6657,6116,6095,0,6657,6116,6095],[4084,4693,2922,0,4084,4693,2922],[1012,1014,1127,0,1012,1014,1127],[6692,5686,805,0,6692,5686,805],[3764,3604,5296,0,3764,3604,5296],[6693,224,223,0,6693,224,223],[4023,2345,5173,0,4023,2345,5173],[4556,4851,4191,0,4556,4851,4191],[5034,3128,5035,0,5034,3128,5035],[4011,4951,4950,0,4011,4951,4950],[18,20,381,0,18,20,381],[6520,5325,6694,0,6520,5325,6694],[6695,4214,2408,0,6695,4214,2408],[3324,6696,3325,0,3324,6696,3325],[3278,3280,1283,0,3278,3280,1283],[2829,5537,5536,0,2829,5537,5536],[1690,6697,830,0,1690,6697,830],[4274,6651,2595,0,4274,6651,2595],[4698,6369,4699,0,4698,6369,4699],[6141,5816,348,0,6141,5816,348],[2686,3028,2557,0,2686,3028,2557],[1847,6698,6699,0,1847,6698,6699],[6027,3120,3119,0,6027,3120,3119],[1059,6700,3227,0,1059,6700,3227],[1053,5464,5580,0,1053,5464,5580],[2267,6701,2784,0,2267,6701,2784],[167,1038,3494,0,167,1038,3494],[5302,5813,6228,0,5302,5813,6228],[6702,290,6703,0,6702,290,6703],[6704,6705,6706,0,6704,6705,6706],[5684,4092,5685,0,5684,4092,5685],[4801,1585,5862,0,4801,1585,5862],[6573,6707,3222,0,6573,6707,3222],[3409,2901,6708,0,3409,2901,6708],[1510,1836,6709,0,1510,1836,6709],[5796,4039,6710,0,5796,4039,6710],[6711,127,126,0,6711,127,126],[3884,4945,4944,0,3884,4945,4944],[6712,6713,4299,0,6712,6713,4299],[6714,6481,5002,0,6714,6481,5002],[6504,6400,6715,0,6504,6400,6715],[1555,6484,4836,0,1555,6484,4836],[4124,5235,1615,0,4124,5235,1615],[4287,3961,6716,0,4287,3961,6716],[6717,847,1432,0,6717,847,1432],[4043,4782,4044,0,4043,4782,4044],[6718,4867,6719,0,6718,4867,6719],[4201,4022,3688,0,4201,4022,3688],[6720,1608,4227,0,6720,1608,4227],[6645,6721,3036,0,6645,6721,3036],[3666,3668,4146,0,3666,3668,4146],[1035,6722,6723,0,1035,6722,6723],[6175,4577,1721,0,6175,4577,1721],[2012,6724,2010,0,2012,6724,2010],[6703,3500,3499,0,6703,3500,3499],[5493,175,5174,0,5493,175,5174],[1159,1161,6725,0,1159,1161,6725],[496,185,184,0,496,185,184],[5501,5502,6726,0,5501,5502,6726],[5345,6727,5346,0,5345,6727,5346],[6728,3549,2221,0,6728,3549,2221],[6729,4055,6730,0,6729,4055,6730],[5814,1214,1216,0,5814,1214,1216],[5529,6731,6732,0,5529,6731,6732],[591,3816,592,0,591,3816,592],[1368,1370,5610,0,1368,1370,5610],[6733,5694,4250,0,6733,5694,4250],[4188,3640,3639,0,4188,3640,3639],[4034,5264,3979,0,4034,5264,3979],[6734,978,170,0,6734,978,170],[1934,6735,4248,0,1934,6735,4248],[1758,5452,6736,0,1758,5452,6736],[262,6132,3163,0,262,6132,3163],[3656,6737,5375,0,3656,6737,5375],[5461,6264,77,0,5461,6264,77],[2118,2117,6738,0,2118,2117,6738],[4402,4943,5158,0,4402,4943,5158],[2080,2666,2800,0,2080,2666,2800],[2118,6738,489,0,2118,6738,489],[6739,4189,4188,0,6739,4189,4188],[5679,6740,211,0,5679,6740,211],[5944,611,568,0,5944,611,568],[1010,5541,6741,0,1010,5541,6741],[5731,5257,3557,0,5731,5257,3557],[6742,5315,5909,0,6742,5315,5909],[3874,4601,6303,0,3874,4601,6303],[6743,6744,961,0,6743,6744,961],[3715,6739,4188,0,3715,6739,4188],[5562,2716,3096,0,5562,2716,3096],[6640,2234,2233,0,6640,2234,2233],[3715,4188,3639,0,3715,4188,3639],[6745,2049,5234,0,6745,2049,5234],[6128,297,181,0,6128,297,181],[3138,3189,1929,0,3138,3189,1929],[962,961,6744,0,962,961,6744],[5575,6746,2619,0,5575,6746,2619],[3890,3973,3891,0,3890,3973,3891],[373,5695,53,0,373,5695,53],[6747,6748,5209,0,6747,6748,5209],[6749,6750,144,0,6749,6750,144],[724,4634,6751,0,724,4634,6751],[1369,1972,3250,0,1369,1972,3250],[6631,533,532,0,6631,533,532],[5965,4151,5966,0,5965,4151,5966],[6584,3465,6752,0,6584,3465,6752],[6753,6754,6755,0,6753,6754,6755],[6756,6263,1235,0,6756,6263,1235],[4608,6634,2479,0,4608,6634,2479],[346,4350,347,0,346,4350,347],[3728,716,697,0,3728,716,697],[3557,3068,370,0,3557,3068,370],[3904,892,3532,0,3904,892,3532],[1376,1704,6757,0,1376,1704,6757],[4793,2287,5018,0,4793,2287,5018],[4220,4219,6435,0,4220,4219,6435],[4203,4432,6758,0,4203,4432,6758],[6518,4086,4088,0,6518,4086,4088],[2849,2848,6759,0,2849,2848,6759],[6760,2131,2133,0,6760,2131,2133],[6189,534,5950,0,6189,534,5950],[5430,6761,6762,0,5430,6761,6762],[76,3862,77,0,76,3862,77],[6763,6151,5210,0,6763,6151,5210],[2810,6142,5518,0,2810,6142,5518],[6764,2482,2481,0,6764,2482,2481],[851,5237,1518,0,851,5237,1518],[6738,6765,6766,0,6738,6765,6766],[201,6137,6138,0,201,6137,6138],[4314,139,6358,0,4314,139,6358],[2352,1766,3743,0,2352,1766,3743],[2417,6767,6139,0,2417,6767,6139],[1616,1618,2163,0,1616,1618,2163],[1906,4456,4562,0,1906,4456,4562],[199,2522,3353,0,199,2522,3353],[6169,6226,6152,0,6169,6226,6152],[3370,6331,2021,0,3370,6331,2021],[6768,6769,6770,0,6768,6769,6770],[2138,2137,1430,0,2138,2137,1430],[757,2698,4193,0,757,2698,4193],[95,1402,96,0,95,1402,96],[1115,2765,4815,0,1115,2765,4815],[6005,6006,6771,0,6005,6006,6771],[4686,1374,3078,0,4686,1374,3078],[1730,2079,6110,0,1730,2079,6110],[3318,595,1136,0,3318,595,1136],[486,6157,3785,0,486,6157,3785],[3732,4612,1373,0,3732,4612,1373],[6772,39,6249,0,6772,39,6249],[1847,6743,961,0,1847,6743,961],[6773,6774,6775,0,6773,6774,6775],[2746,6280,5299,0,2746,6280,5299],[5837,3131,6197,0,5837,3131,6197],[2466,6470,4454,0,2466,6470,4454],[1804,1917,6776,0,1804,1917,6776],[6171,4948,6777,0,6171,4948,6777],[5196,3713,5484,0,5196,3713,5484],[1473,134,133,0,1473,134,133],[5294,3185,6778,0,5294,3185,6778],[520,6779,521,0,520,6779,521],[4175,2451,2450,0,4175,2451,2450],[4566,2385,5991,0,4566,2385,5991],[3406,3398,6780,0,3406,3398,6780],[4277,6661,4278,0,4277,6661,4278],[6781,6099,4160,0,6781,6099,4160],[6782,862,861,0,6782,862,861],[3711,6783,6784,0,3711,6783,6784],[6785,2441,2440,0,6785,2441,2440],[4264,4263,3332,0,4264,4263,3332],[2769,2472,2474,0,2769,2472,2474],[5107,682,3292,0,5107,682,3292],[6463,4601,4600,0,6463,4601,4600],[5011,5037,6391,0,5011,5037,6391],[4453,1932,4248,0,4453,1932,4248],[3670,6058,6786,0,3670,6058,6786],[2350,6451,6450,0,2350,6451,6450],[303,305,2265,0,303,305,2265],[4364,3912,4365,0,4364,3912,4365],[4747,878,4599,0,4747,878,4599],[3380,6787,1297,0,3380,6787,1297],[3795,1003,1002,0,3795,1003,1002],[6788,6789,6790,0,6788,6789,6790],[5050,5051,6791,0,5050,5051,6791],[6792,6793,5763,0,6792,6793,5763],[6794,5991,5990,0,6794,5991,5990],[234,6795,1468,0,234,6795,1468],[6088,4182,4183,0,6088,4182,4183],[6796,2284,6797,0,6796,2284,6797],[244,243,6364,0,244,243,6364],[3122,383,385,0,3122,383,385],[1695,6353,6798,0,1695,6353,6798],[5373,6799,5492,0,5373,6799,5492],[87,6800,5940,0,87,6800,5940],[1751,1750,6801,0,1751,1750,6801],[404,4457,4459,0,404,4457,4459],[4140,4002,4345,0,4140,4002,4345],[6802,6803,3844,0,6802,6803,3844],[6804,6740,3648,0,6804,6740,3648],[2292,2293,2805,0,2292,2293,2805],[6703,6805,4123,0,6703,6805,4123],[147,4281,2056,0,147,4281,2056],[2460,1180,2461,0,2460,1180,2461],[6806,3969,1562,0,6806,3969,1562],[3603,1253,6807,0,3603,1253,6807],[3579,4777,6251,0,3579,4777,6251],[2931,728,727,0,2931,728,727],[730,4865,6808,0,730,4865,6808],[1625,1627,2402,0,1625,1627,2402],[324,5626,1549,0,324,5626,1549],[5496,3820,1897,0,5496,3820,1897],[4082,998,4978,0,4082,998,4978],[6809,3660,5586,0,6809,3660,5586],[5348,6810,3251,0,5348,6810,3251],[185,496,495,0,185,496,495],[730,6808,6174,0,730,6808,6174],[2912,6811,5255,0,2912,6811,5255],[3116,3118,3502,0,3116,3118,3502],[25,718,5188,0,25,718,5188],[134,4893,4881,0,134,4893,4881],[886,2709,5353,0,886,2709,5353],[5190,1243,1342,0,5190,1243,1342],[6722,3594,3596,0,6722,3594,3596],[4879,4878,6812,0,4879,4878,6812],[6402,6391,5037,0,6402,6391,5037],[6436,5829,5342,0,6436,5829,5342],[6813,6814,3156,0,6813,6814,3156],[1379,6500,3902,0,1379,6500,3902],[6322,6815,906,0,6322,6815,906],[1222,1224,5178,0,1222,1224,5178],[2915,6816,2916,0,2915,6816,2916],[4688,4687,6817,0,4688,4687,6817],[6818,3148,2765,0,6818,3148,2765],[4163,123,4164,0,4163,123,4164],[5010,5011,5370,0,5010,5011,5370],[1912,6159,3509,0,1912,6159,3509],[6504,4904,5189,0,6504,4904,5189],[6819,3151,6820,0,6819,3151,6820],[1527,452,2139,0,1527,452,2139],[5092,1225,1427,0,5092,1225,1427],[6078,2189,6079,0,6078,2189,6079],[1674,1676,3587,0,1674,1676,3587],[5438,2229,6529,0,5438,2229,6529],[2294,4245,4240,0,2294,4245,4240],[2298,239,4159,0,2298,239,4159],[1594,6821,5638,0,1594,6821,5638],[6191,6822,5215,0,6191,6822,5215],[6351,3181,3456,0,6351,3181,3456],[6472,6462,6473,0,6472,6462,6473],[1145,676,4320,0,1145,676,4320],[864,4213,3521,0,864,4213,3521],[5592,2102,2101,0,5592,2102,2101],[2871,2873,6687,0,2871,2873,6687],[4997,4004,4003,0,4997,4004,4003],[2618,1942,1944,0,2618,1942,1944],[3241,5343,6136,0,3241,5343,6136],[5322,2383,5003,0,5322,2383,5003],[6823,26,25,0,6823,26,25],[363,6824,6825,0,363,6824,6825],[5142,3982,5143,0,5142,3982,5143],[4839,5919,6826,0,4839,5919,6826],[6827,396,395,0,6827,396,395],[4274,5554,5512,0,4274,5554,5512],[1947,6469,412,0,1947,6469,412],[3712,4,408,0,3712,4,408],[309,311,950,0,309,311,950],[4926,3041,3040,0,4926,3041,3040],[6600,6828,4324,0,6600,6828,4324],[2665,2664,4180,0,2665,2664,4180],[626,628,2989,0,626,628,2989],[2526,2370,6829,0,2526,2370,6829],[3833,5979,6830,0,3833,5979,6830],[1537,6457,1893,0,1537,6457,1893],[6831,6477,5647,0,6831,6477,5647],[6391,5301,5011,0,6391,5301,5011],[1160,1589,1682,0,1160,1589,1682],[405,404,1709,0,405,404,1709],[6832,5531,5530,0,6832,5531,5530],[5156,1620,2273,0,5156,1620,2273],[968,5494,303,0,968,5494,303],[6578,1866,2621,0,6578,1866,2621],[6833,6834,4459,0,6833,6834,4459],[6667,5451,4886,0,6667,5451,4886],[2325,6690,1401,0,2325,6690,1401],[2228,6529,2229,0,2228,6529,2229],[5011,5301,5370,0,5011,5301,5370],[2325,1401,3753,0,2325,1401,3753],[6835,4783,5599,0,6835,4783,5599],[1229,1228,1262,0,1229,1228,1262],[3181,3182,3456,0,3181,3182,3456],[4564,316,1050,0,4564,316,1050],[3052,3054,6617,0,3052,3054,6617],[1355,3277,4510,0,1355,3277,4510],[5945,6836,5946,0,5945,6836,5946],[6837,3354,3379,0,6837,3354,3379],[5066,1512,6838,0,5066,1512,6838],[4757,5370,4470,0,4757,5370,4470],[2337,5116,282,0,2337,5116,282],[6839,5559,6110,0,6839,5559,6110],[3358,5143,3359,0,3358,5143,3359],[2453,4734,3268,0,2453,4734,3268],[3643,3644,5276,0,3643,3644,5276],[4930,3632,3907,0,4930,3632,3907],[6711,126,1729,0,6711,126,1729],[4757,5010,5370,0,4757,5010,5370],[5641,6840,4311,0,5641,6840,4311],[5178,1224,5612,0,5178,1224,5612],[5132,1191,1460,0,5132,1191,1460],[6841,1906,1918,0,6841,1906,1918],[6267,3696,5109,0,6267,3696,5109],[2076,5390,5444,0,2076,5390,5444],[63,3055,6241,0,63,3055,6241],[2024,4578,1144,0,2024,4578,1144],[1239,6276,2392,0,1239,6276,2392],[6842,2979,5767,0,6842,2979,5767],[6843,2382,4020,0,6843,2382,4020],[6844,6845,6296,0,6844,6845,6296],[3119,3121,6425,0,3119,3121,6425],[789,2567,1988,0,789,2567,1988],[3718,1420,5376,0,3718,1420,5376],[6846,6847,6848,0,6846,6847,6848],[3093,6849,6850,0,3093,6849,6850],[6354,6851,1334,0,6354,6851,1334],[5427,2138,1430,0,5427,2138,1430],[3710,2464,4388,0,3710,2464,4388],[975,6852,5819,0,975,6852,5819],[5470,3983,2903,0,5470,3983,2903],[6853,3174,359,0,6853,3174,359],[4507,2697,657,0,4507,2697,657],[901,903,1451,0,901,903,1451],[6854,3049,5254,0,6854,3049,5254],[6855,2952,3855,0,6855,2952,3855],[6835,5599,5088,0,6835,5599,5088],[6486,3963,6836,0,6486,3963,6836],[1623,4663,3711,0,1623,4663,3711],[3061,3060,4371,0,3061,3060,4371],[4471,4470,5370,0,4471,4470,5370],[5979,1008,1007,0,5979,1008,1007],[1342,1439,1438,0,1342,1439,1438],[592,3765,593,0,592,3765,593],[749,748,4911,0,749,748,4911],[3526,3411,3527,0,3526,3411,3527],[6856,2404,4597,0,6856,2404,4597],[2717,2716,5562,0,2717,2716,5562],[4249,6857,6858,0,4249,6857,6858],[2989,628,4697,0,2989,628,4697],[5539,5076,1657,0,5539,5076,1657],[5296,4766,3764,0,5296,4766,3764],[6859,1875,6860,0,6859,1875,6860],[5071,2539,6347,0,5071,2539,6347],[6706,5575,5574,0,6706,5575,5574],[1198,6861,5989,0,1198,6861,5989],[3830,4454,6470,0,3830,4454,6470],[3011,3970,3971,0,3011,3970,3971],[1198,5989,3175,0,1198,5989,3175],[1114,4990,1115,0,1114,4990,1115],[4757,4470,4712,0,4757,4470,4712],[1812,5447,6129,0,1812,5447,6129],[3522,6862,3523,0,3522,6862,3523],[2587,5287,2588,0,2587,5287,2588],[940,3230,2203,0,940,3230,2203],[6676,4744,1676,0,6676,4744,1676],[2570,4606,3760,0,2570,4606,3760],[6275,1663,6863,0,6275,1663,6863],[6117,5544,4820,0,6117,5544,4820],[2056,1828,6864,0,2056,1828,6864],[911,6865,6866,0,911,6865,6866],[2909,2910,4117,0,2909,2910,4117],[5737,6862,5738,0,5737,6862,5738],[4015,3391,3492,0,4015,3391,3492],[1428,2137,4035,0,1428,2137,4035],[1591,1590,6725,0,1591,1590,6725],[3156,6814,4246,0,3156,6814,4246],[4712,4470,6867,0,4712,4470,6867],[2213,899,6868,0,2213,899,6868],[6869,6870,3588,0,6869,6870,3588],[6395,6675,6442,0,6395,6675,6442],[2915,3244,6816,0,2915,3244,6816],[3257,2670,5913,0,3257,2670,5913],[3365,3358,6871,0,3365,3358,6871],[36,2415,2414,0,36,2415,2414],[4436,6872,4994,0,4436,6872,4994],[3861,1122,1121,0,3861,1122,1121],[3482,6764,2481,0,3482,6764,2481],[6873,4247,6816,0,6873,4247,6816],[4089,2252,2254,0,4089,2252,2254],[912,911,1395,0,912,911,1395],[3555,734,6874,0,3555,734,6874],[3224,6875,3694,0,3224,6875,3694],[3770,4176,4775,0,3770,4176,4775],[400,399,2847,0,400,399,2847],[6876,5404,6877,0,6876,5404,6877],[2324,2405,4554,0,2324,2405,4554],[1764,6543,2109,0,1764,6543,2109],[54,6532,6813,0,54,6532,6813],[2010,2589,2011,0,2010,2589,2011],[2775,4022,2776,0,2775,4022,2776],[2942,5041,2943,0,2942,5041,2943],[3273,6878,2120,0,3273,6878,2120],[5270,2521,6435,0,5270,2521,6435],[1154,4659,6879,0,1154,4659,6879],[2459,2461,1711,0,2459,2461,1711],[5428,6880,5427,0,5428,6880,5427],[4883,5129,2573,0,4883,5129,2573],[6867,4512,4712,0,6867,4512,4712],[5874,5873,1080,0,5874,5873,1080],[2307,6881,2308,0,2307,6881,2308],[5088,6882,6835,0,5088,6882,6835],[3012,6883,6884,0,3012,6883,6884],[2696,3745,1276,0,2696,3745,1276],[4088,4087,6608,0,4088,4087,6608],[3413,5427,6880,0,3413,5427,6880],[5004,5005,6594,0,5004,5005,6594],[6885,2079,128,0,6885,2079,128],[4327,6127,952,0,4327,6127,952],[4512,3714,4712,0,4512,3714,4712],[4672,5317,1322,0,4672,5317,1322],[3097,1607,1651,0,3097,1607,1651],[5666,6886,5610,0,5666,6886,5610],[810,6887,811,0,810,6887,811],[6452,3126,1683,0,6452,3126,1683],[4509,4510,3277,0,4509,4510,3277],[6888,5953,6503,0,6888,5953,6503],[2993,1226,213,0,2993,1226,213],[6889,3767,5778,0,6889,3767,5778],[6890,6891,2868,0,6890,6891,2868],[4469,4512,6867,0,4469,4512,6867],[6892,6025,602,0,6892,6025,602],[1343,3765,592,0,1343,3765,592],[3945,3944,4905,0,3945,3944,4905],[752,5316,956,0,752,5316,956],[5346,5517,5516,0,5346,5517,5516],[6729,6893,6894,0,6729,6893,6894],[660,4614,5975,0,660,4614,5975],[6895,2947,5228,0,6895,2947,5228],[5321,1468,6795,0,5321,1468,6795],[1043,6588,6631,0,1043,6588,6631],[6896,6897,6898,0,6896,6897,6898],[1691,2949,1722,0,1691,2949,1722],[952,6127,953,0,952,6127,953],[1724,1114,1165,0,1724,1114,1165],[6198,2899,6899,0,6198,2899,6899],[6900,6633,6901,0,6900,6633,6901],[6729,426,5804,0,6729,426,5804],[5648,885,5649,0,5648,885,5649],[1888,2263,6448,0,1888,2263,6448],[439,4875,437,0,439,4875,437],[2040,6032,6163,0,2040,6032,6163],[410,6030,6032,0,410,6030,6032],[5454,5376,6343,0,5454,5376,6343],[3442,3441,3986,0,3442,3441,3986],[2571,3947,2572,0,2571,3947,2572],[764,591,6707,0,764,591,6707],[347,6625,6626,0,347,6625,6626],[5716,2187,3290,0,5716,2187,3290],[6602,5789,5791,0,6602,5789,5791],[6902,4142,1755,0,6902,4142,1755],[2456,4551,1461,0,2456,4551,1461],[1292,6903,6768,0,1292,6903,6768],[2397,343,6904,0,2397,343,6904],[3423,3422,6007,0,3423,3422,6007],[1848,1850,6197,0,1848,1850,6197],[6905,3118,3117,0,6905,3118,3117],[5062,5302,6685,0,5062,5302,6685],[6476,6475,5532,0,6476,6475,5532],[4490,4197,4196,0,4490,4197,4196],[2339,4816,2340,0,2339,4816,2340],[5288,1778,1780,0,5288,1778,1780],[4696,6209,922,0,4696,6209,922],[5088,2857,6882,0,5088,2857,6882],[6867,4470,4469,0,6867,4470,4469],[5014,6906,6907,0,5014,6906,6907],[942,1609,943,0,942,1609,943],[3805,4916,6908,0,3805,4916,6908],[5298,6280,6909,0,5298,6280,6909],[1539,1976,1540,0,1539,1976,1540],[1901,1903,4465,0,1901,1903,4465],[3414,2744,2746,0,3414,2744,2746],[6341,3167,5615,0,6341,3167,5615],[6910,3344,3877,0,6910,3344,3877],[348,2647,2661,0,348,2647,2661],[1015,5735,2476,0,1015,5735,2476],[1561,1560,5106,0,1561,1560,5106],[5327,5283,6627,0,5327,5283,6627],[2618,4915,1942,0,2618,4915,1942],[1508,1510,6709,0,1508,1510,6709],[5521,5520,372,0,5521,5520,372],[5376,4900,6343,0,5376,4900,6343],[4992,5313,5314,0,4992,5313,5314],[6827,395,6383,0,6827,395,6383],[6148,1849,1848,0,6148,1849,1848],[2857,2132,6882,0,2857,2132,6882],[733,735,4732,0,733,735,4732],[3490,5632,4743,0,3490,5632,4743],[888,6636,3463,0,888,6636,3463],[3600,6911,2548,0,3600,6911,2548],[4281,149,4259,0,4281,149,4259],[2459,1711,6912,0,2459,1711,6912],[1097,1096,3151,0,1097,1096,3151],[5695,6674,5696,0,5695,6674,5696],[2514,6913,2515,0,2514,6913,2515],[6727,6914,6915,0,6727,6914,6915],[6848,4806,5421,0,6848,4806,5421],[2779,6916,6214,0,2779,6916,6214],[6917,3714,4512,0,6917,3714,4512],[120,1431,3274,0,120,1431,3274],[3667,3082,3084,0,3667,3082,3084],[6918,5944,2068,0,6918,5944,2068],[6775,1560,4317,0,6775,1560,4317],[1370,5611,5610,0,1370,5611,5610],[3818,6588,1861,0,3818,6588,1861],[138,6919,139,0,138,6919,139],[3207,6920,3517,0,3207,6920,3517],[4513,4526,6921,0,4513,4526,6921],[1068,4373,4977,0,1068,4373,4977],[3835,6922,5978,0,3835,6922,5978],[3016,3018,4002,0,3016,3018,4002],[2253,4489,6375,0,2253,4489,6375],[1890,1323,1045,0,1890,1323,1045],[4157,5440,5704,0,4157,5440,5704],[897,6495,5626,0,897,6495,5626],[4964,5677,3284,0,4964,5677,3284],[4203,4204,4431,0,4203,4204,4431],[2633,315,5068,0,2633,315,5068],[4512,4513,6917,0,4512,4513,6917],[5571,4528,6923,0,5571,4528,6923],[4970,3142,1664,0,4970,3142,1664],[2997,2345,2347,0,2997,2345,2347],[5622,5556,5623,0,5622,5556,5623],[6326,6924,6429,0,6326,6924,6429],[3162,2693,2695,0,3162,2693,2695],[2261,6536,2262,0,2261,6536,2262],[6925,6926,3757,0,6925,6926,3757],[2428,484,5142,0,2428,484,5142],[2989,4697,6467,0,2989,4697,6467],[111,5292,4268,0,111,5292,4268],[6733,4250,3831,0,6733,4250,3831],[3458,1193,850,0,3458,1193,850],[5847,2293,745,0,5847,2293,745],[6715,6927,6928,0,6715,6927,6928],[1514,45,1515,0,1514,45,1515],[6929,1561,5106,0,6929,1561,5106],[5502,6930,6931,0,5502,6930,6931],[6739,4170,4189,0,6739,4170,4189],[32,4210,3537,0,32,4210,3537],[3755,2275,6932,0,3755,2275,6932],[3620,3619,1560,0,3620,3619,1560],[6687,6933,6934,0,6687,6933,6934],[6773,3620,6774,0,6773,3620,6774],[812,5914,813,0,812,5914,813],[6935,4868,6718,0,6935,4868,6718],[6543,2110,2109,0,6543,2110,2109],[4088,6608,6936,0,4088,6608,6936],[3450,3351,3451,0,3450,3351,3451],[6937,1670,5638,0,6937,1670,5638],[1372,1003,3795,0,1372,1003,3795],[2059,988,801,0,2059,988,801],[1499,1498,5932,0,1499,1498,5932],[6938,3659,5382,0,6938,3659,5382],[2040,2042,410,0,2040,2042,410],[2111,2110,3767,0,2111,2110,3767],[2499,6822,2500,0,2499,6822,2500],[6135,1359,4413,0,6135,1359,4413],[6550,6483,6482,0,6550,6483,6482],[3576,4224,3077,0,3576,4224,3077],[6939,1990,1402,0,6939,1990,1402],[1744,871,6397,0,1744,871,6397],[498,2227,2843,0,498,2227,2843],[1580,4192,2650,0,1580,4192,2650],[6940,6941,6942,0,6940,6941,6942],[1186,1975,1185,0,1186,1975,1185],[6182,1192,1194,0,6182,1192,1194],[3073,2863,3071,0,3073,2863,3071],[6943,6104,6944,0,6943,6104,6944],[4540,4602,4541,0,4540,4602,4541],[6945,6946,6468,0,6945,6946,6468],[1809,6626,6451,0,1809,6626,6451],[6947,3317,6948,0,6947,3317,6948],[5456,4125,4939,0,5456,4125,4939],[5741,2912,5255,0,5741,2912,5255],[6921,4170,6739,0,6921,4170,6739],[5318,3195,6949,0,5318,3195,6949],[6016,3471,50,0,6016,3471,50],[6502,5953,5967,0,6502,5953,5967],[6950,6951,6952,0,6950,6951,6952],[1201,4895,6953,0,1201,4895,6953],[5290,6954,3111,0,5290,6954,3111],[4639,554,6955,0,4639,554,6955],[3433,5940,6800,0,3433,5940,6800],[3613,2426,1158,0,3613,2426,1158],[2680,6956,6362,0,2680,6956,6362],[5097,2907,2327,0,5097,2907,2327],[3097,3141,3098,0,3097,3141,3098],[565,575,566,0,565,575,566],[3756,448,4273,0,3756,448,4273],[2354,5009,482,0,2354,5009,482],[6957,5230,5229,0,6957,5230,5229],[2627,1056,1645,0,2627,1056,1645],[1378,4244,4243,0,1378,4244,4243],[3061,4371,6444,0,3061,4371,6444],[1286,3988,6288,0,1286,3988,6288],[6958,2995,61,0,6958,2995,61],[1025,1760,1026,0,1025,1760,1026],[6917,4513,6921,0,6917,4513,6921],[6959,6960,1005,0,6959,6960,1005],[1173,6828,3783,0,1173,6828,3783],[327,2604,238,0,327,2604,238],[2315,5666,6961,0,2315,5666,6961],[6552,6962,2271,0,6552,6962,2271],[1186,6570,1973,0,1186,6570,1973],[2330,6681,1948,0,2330,6681,1948],[6259,2462,5501,0,6259,2462,5501],[4306,6754,6753,0,4306,6754,6753],[4764,3448,5956,0,4764,3448,5956],[25,719,718,0,25,719,718],[6963,2031,6860,0,6963,2031,6860],[4156,1591,6725,0,4156,1591,6725],[1166,232,768,0,1166,232,768],[6964,6028,5406,0,6964,6028,5406],[517,4617,518,0,517,4617,518],[2210,5859,2211,0,2210,5859,2211],[6965,899,4216,0,6965,899,4216],[1853,1852,3155,0,1853,1852,3155],[2240,679,678,0,2240,679,678],[5131,6966,5132,0,5131,6966,5132],[4907,3290,3168,0,4907,3290,3168],[791,793,6567,0,791,793,6567],[4762,2439,2438,0,4762,2439,2438],[6341,3607,4769,0,6341,3607,4769],[6967,6010,893,0,6967,6010,893],[4414,3105,5574,0,4414,3105,5574],[1364,1363,1455,0,1364,1363,1455],[1746,6968,6885,0,1746,6968,6885],[3715,3714,6917,0,3715,3714,6917],[5907,4600,6969,0,5907,4600,6969],[6970,1544,3927,0,6970,1544,3927],[1120,2739,1121,0,1120,2739,1121],[3715,6917,6739,0,3715,6917,6739],[4033,551,2541,0,4033,551,2541],[4722,473,6225,0,4722,473,6225],[5050,6522,3842,0,5050,6522,3842],[3095,6971,5562,0,3095,6971,5562],[4971,2547,3678,0,4971,2547,3678],[6940,6942,1843,0,6940,6942,1843],[2080,6972,2666,0,2080,6972,2666],[6739,6917,6921,0,6739,6917,6921],[1938,4945,1939,0,1938,4945,1939],[4733,733,4732,0,4733,733,4732],[5430,695,694,0,5430,695,694],[2330,3449,3183,0,2330,3449,3183],[3435,1630,6973,0,3435,1630,6973],[5700,6494,5701,0,5700,6494,5701],[4979,6974,4980,0,4979,6974,4980],[6895,5228,6975,0,6895,5228,6975],[5548,3325,6696,0,5548,3325,6696],[6492,4582,3936,0,6492,4582,3936],[1899,1856,2645,0,1899,1856,2645],[6976,961,960,0,6976,961,960],[6776,217,1804,0,6776,217,1804],[3162,2840,3950,0,3162,2840,3950],[6586,6413,1952,0,6586,6413,1952],[3846,3384,6977,0,3846,3384,6977],[6978,4887,4886,0,6978,4887,4886],[2502,2934,3932,0,2502,2934,3932],[6979,6980,2838,0,6979,6980,2838],[2053,4534,4716,0,2053,4534,4716],[2539,2538,3075,0,2539,2538,3075],[2655,5311,3565,0,2655,5311,3565],[5516,6981,6982,0,5516,6981,6982],[1501,4046,5554,0,1501,4046,5554],[6983,3431,4425,0,6983,3431,4425],[261,6872,4436,0,261,6872,4436],[3226,4849,4271,0,3226,4849,4271],[1362,6028,6984,0,1362,6028,6984],[4189,4170,4131,0,4189,4170,4131],[6985,6986,661,0,6985,6986,661],[713,6987,3623,0,713,6987,3623],[3316,445,444,0,3316,445,444],[4189,4131,376,0,4189,4131,376],[1647,3785,6156,0,1647,3785,6156],[2704,2446,5084,0,2704,2446,5084],[5828,3582,4319,0,5828,3582,4319],[1425,773,772,0,1425,773,772],[1965,6988,1716,0,1965,6988,1716],[3732,3795,3730,0,3732,3795,3730],[1915,3479,6989,0,1915,3479,6989],[5564,6380,6990,0,5564,6380,6990],[1930,3188,5650,0,1930,3188,5650],[6905,3117,4329,0,6905,3117,4329],[1934,6804,5533,0,1934,6804,5533],[1969,5439,1970,0,1969,5439,1970],[3197,571,4794,0,3197,571,4794],[3261,1211,1210,0,3261,1211,1210],[3750,6609,5006,0,3750,6609,5006],[6213,6991,4284,0,6213,6991,4284],[3105,546,548,0,3105,546,548],[3458,3457,6992,0,3458,3457,6992],[1907,1541,1543,0,1907,1541,1543],[5912,6819,3065,0,5912,6819,3065],[486,6158,6157,0,486,6158,6157],[4631,2771,4286,0,4631,2771,4286],[6993,4309,3815,0,6993,4309,3815],[4189,376,375,0,4189,376,375],[3365,6427,3358,0,3365,6427,3358],[373,5520,6994,0,373,5520,6994],[6995,6705,6704,0,6995,6705,6704],[3676,2932,5436,0,3676,2932,5436],[6996,3736,5023,0,6996,3736,5023],[5694,3267,868,0,5694,3267,868],[6444,3935,3937,0,6444,3935,3937],[2734,2958,6894,0,2734,2958,6894],[5403,2572,4001,0,5403,2572,4001],[6618,6997,2741,0,6618,6997,2741],[3597,734,733,0,3597,734,733],[6998,3598,5446,0,6998,3598,5446],[5451,6385,4886,0,5451,6385,4886],[6999,4289,4288,0,6999,4289,4288],[7000,1516,4057,0,7000,1516,4057],[2444,2705,5514,0,2444,2705,5514],[410,6384,6030,0,410,6384,6030],[1372,1371,1003,0,1372,1371,1003],[5678,7001,4344,0,5678,7001,4344],[7002,2395,6663,0,7002,2395,6663],[3023,4947,3024,0,3023,4947,3024],[6824,3864,7003,0,6824,3864,7003],[6795,108,1335,0,6795,108,1335],[1399,6158,1400,0,1399,6158,1400],[2160,7004,5025,0,2160,7004,5025],[2684,627,2297,0,2684,627,2297],[62,186,790,0,62,186,790],[1567,1964,279,0,1567,1964,279],[4356,3618,5481,0,4356,3618,5481],[6207,6586,6348,0,6207,6586,6348],[4114,7005,4115,0,4114,7005,4115],[1874,1777,1873,0,1874,1777,1873],[570,1445,4418,0,570,1445,4418],[6311,7006,6986,0,6311,7006,6986],[6218,2530,2529,0,6218,2530,2529],[7007,6538,6906,0,7007,6538,6906],[4793,4792,2287,0,4793,4792,2287],[1930,5650,1931,0,1930,5650,1931],[4331,951,1901,0,4331,951,1901],[20,7008,3584,0,20,7008,3584],[2263,1888,1887,0,2263,1888,1887],[4193,5203,1140,0,4193,5203,1140],[7009,822,4115,0,7009,822,4115],[39,7010,40,0,39,7010,40],[1984,5214,2880,0,1984,5214,2880],[3648,6740,7011,0,3648,6740,7011],[3139,3431,3430,0,3139,3431,3430],[1046,1048,6002,0,1046,1048,6002],[192,6150,7012,0,192,6150,7012],[6133,6154,5801,0,6133,6154,5801],[6348,7013,7014,0,6348,7013,7014],[6449,2452,2451,0,6449,2452,2451],[892,3533,3532,0,892,3533,3532],[299,298,2231,0,299,298,2231],[3017,3365,3566,0,3017,3365,3566],[2416,41,40,0,2416,41,40],[3203,6975,2740,0,3203,6975,2740],[3770,4775,2448,0,3770,4775,2448],[4926,2749,3041,0,4926,2749,3041],[3932,3787,7015,0,3932,3787,7015],[2204,6835,6882,0,2204,6835,6882],[3649,7016,6661,0,3649,7016,6661],[7017,6180,2794,0,7017,6180,2794],[2667,6972,7018,0,2667,6972,7018],[7019,2302,2301,0,7019,2302,2301],[2322,7020,2581,0,2322,7020,2581],[4351,4936,4050,0,4351,4936,4050],[4810,843,3451,0,4810,843,3451],[3425,2953,3426,0,3425,2953,3426],[3944,3946,4582,0,3944,3946,4582],[4810,3451,3974,0,4810,3451,3974],[3443,3531,3444,0,3443,3531,3444],[1012,6508,1013,0,1012,6508,1013],[2667,5153,3388,0,2667,5153,3388],[7021,3465,6648,0,7021,3465,6648],[3264,5193,3992,0,3264,5193,3992],[242,376,298,0,242,376,298],[1822,1603,1936,0,1822,1603,1936],[158,1308,1307,0,158,1308,1307],[3350,6206,3451,0,3350,6206,3451],[5489,7022,6818,0,5489,7022,6818],[5835,5836,3253,0,5835,5836,3253],[1128,650,4071,0,1128,650,4071],[7023,1188,5688,0,7023,1188,5688],[6567,7024,2986,0,6567,7024,2986],[6312,2194,5905,0,6312,2194,5905],[4834,2753,2114,0,4834,2753,2114],[4514,6353,4691,0,4514,6353,4691],[5482,4219,5889,0,5482,4219,5889],[7025,6484,3455,0,7025,6484,3455],[1673,1853,7026,0,1673,1853,7026],[1149,7027,1244,0,1149,7027,1244],[3473,7028,5543,0,3473,7028,5543],[823,1130,7029,0,823,1130,7029],[3542,869,7030,0,3542,869,7030],[3171,2710,2712,0,3171,2710,2712],[7031,897,5626,0,7031,897,5626],[6052,5564,6990,0,6052,5564,6990],[1644,51,2699,0,1644,51,2699],[6294,6614,4199,0,6294,6614,4199],[376,1244,298,0,376,1244,298],[3376,3375,4997,0,3376,3375,4997],[5601,5709,5602,0,5601,5709,5602],[7032,2228,1230,0,7032,2228,1230],[4597,2252,6856,0,4597,2252,6856],[3493,1883,5210,0,3493,1883,5210],[1858,2328,1859,0,1858,2328,1859],[5039,3428,1413,0,5039,3428,1413],[4390,6688,2873,0,4390,6688,2873],[298,1244,7027,0,298,1244,7027],[6357,4245,2294,0,6357,4245,2294],[1106,6603,2777,0,1106,6603,2777],[6049,4393,6557,0,6049,4393,6557],[2520,5024,4682,0,2520,5024,4682],[2839,6980,3600,0,2839,6980,3600],[6115,7033,4279,0,6115,7033,4279],[876,317,2219,0,876,317,2219],[7034,6151,834,0,7034,6151,834],[2008,2400,6858,0,2008,2400,6858],[1862,4340,5019,0,1862,4340,5019],[2973,6113,6389,0,2973,6113,6389],[5704,5703,4367,0,5704,5703,4367],[4068,7035,5522,0,4068,7035,5522],[1197,1196,6568,0,1197,1196,6568],[4891,7036,6046,0,4891,7036,6046],[3579,6251,7037,0,3579,6251,7037],[1844,105,1845,0,1844,105,1845],[7038,4994,6872,0,7038,4994,6872],[6146,6264,5910,0,6146,6264,5910],[889,2168,3019,0,889,2168,3019],[6879,1819,4623,0,6879,1819,4623],[300,7039,6218,0,300,7039,6218],[6089,2003,3961,0,6089,2003,3961],[376,4131,1244,0,376,4131,1244],[7040,958,6501,0,7040,958,6501],[2245,5572,5086,0,2245,5572,5086],[1109,4355,1110,0,1109,4355,1110],[3583,284,283,0,3583,284,283],[3524,3523,1803,0,3524,3523,1803],[7041,6581,4355,0,7041,6581,4355],[4812,469,5948,0,4812,469,5948],[3889,1881,2085,0,3889,1881,2085],[5231,5230,6350,0,5231,5230,6350],[2939,2941,7042,0,2939,2941,7042],[2545,5113,7043,0,2545,5113,7043],[5336,2144,2188,0,5336,2144,2188],[6475,6831,419,0,6475,6831,419],[1221,1244,4131,0,1221,1244,4131],[7044,3119,6425,0,7044,3119,6425],[5066,408,1512,0,5066,408,1512],[84,55,54,0,84,55,54],[4584,664,5503,0,4584,664,5503],[3207,5060,3208,0,3207,5060,3208],[6089,4066,2001,0,6089,4066,2001],[7045,1963,2299,0,7045,1963,2299],[6903,7046,6768,0,6903,7046,6768],[2629,2158,1048,0,2629,2158,1048],[5218,4169,5219,0,5218,4169,5219],[3114,203,2323,0,3114,203,2323],[872,874,7047,0,872,874,7047],[1360,3216,3215,0,1360,3216,3215],[2354,2355,1024,0,2354,2355,1024],[4668,2025,7048,0,4668,2025,7048],[1132,7049,7027,0,1132,7049,7027],[1149,1132,7027,0,1149,1132,7027],[6085,6652,6086,0,6085,6652,6086],[1781,2027,4296,0,1781,2027,4296],[95,4381,1402,0,95,4381,1402],[2091,2603,2888,0,2091,2603,2888],[5471,4369,4100,0,5471,4369,4100],[6953,6497,7050,0,6953,6497,7050],[5640,4114,4968,0,5640,4114,4968],[1693,2236,4035,0,1693,2236,4035],[298,7027,2231,0,298,7027,2231],[3759,4614,2570,0,3759,4614,2570],[827,829,2654,0,827,829,2654],[463,5956,464,0,463,5956,464],[2839,3600,3466,0,2839,3600,3466],[7051,834,6763,0,7051,834,6763],[2231,7027,7049,0,2231,7027,7049],[6492,620,4715,0,6492,620,4715],[7052,2531,493,0,7052,2531,493],[4277,7053,6661,0,4277,7053,6661],[6621,1523,7054,0,6621,1523,7054],[6490,112,6459,0,6490,112,6459],[469,4108,5948,0,469,4108,5948],[2231,7049,2224,0,2231,7049,2224],[5583,5582,2318,0,5583,5582,2318],[7055,6962,6552,0,7055,6962,6552],[2629,5928,5413,0,2629,5928,5413],[7056,1370,3252,0,7056,1370,3252],[3968,5097,3721,0,3968,5097,3721],[6405,3012,6364,0,6405,3012,6364],[5971,2573,5129,0,5971,2573,5129],[5542,1355,4510,0,5542,1355,4510],[1489,2644,2643,0,1489,2644,2643],[6132,3063,6134,0,6132,3063,6134],[4030,2093,1253,0,4030,2093,1253],[673,4264,1101,0,673,4264,1101],[429,1607,1606,0,429,1607,1606],[106,4148,2334,0,106,4148,2334],[4140,4139,3016,0,4140,4139,3016],[2727,3703,466,0,2727,3703,466],[7057,7058,1816,0,7057,7058,1816],[494,7059,6654,0,494,7059,6654],[4700,4317,7060,0,4700,4317,7060],[7061,799,6778,0,7061,799,6778],[1583,1910,1151,0,1583,1910,1151],[821,823,7029,0,821,823,7029],[5381,1617,5518,0,5381,1617,5518],[4683,2920,2944,0,4683,2920,2944],[6881,2307,3427,0,6881,2307,3427],[4486,5192,2566,0,4486,5192,2566],[2612,2112,56,0,2612,2112,56],[2224,948,2098,0,2224,948,2098],[148,6026,2398,0,148,6026,2398],[623,703,624,0,623,703,624],[327,329,3781,0,327,329,3781],[6422,5472,6423,0,6422,5472,6423],[533,647,531,0,533,647,531],[665,2259,1095,0,665,2259,1095],[1598,1600,5467,0,1598,1600,5467],[6631,7062,533,0,6631,7062,533],[822,3217,6691,0,822,3217,6691],[6943,6944,5082,0,6943,6944,5082],[2759,6291,6292,0,2759,6291,6292],[726,725,767,0,726,725,767],[6627,1440,6628,0,6627,1440,6628],[3815,4309,3816,0,3815,4309,3816],[4716,292,2053,0,4716,292,2053],[7063,2385,4567,0,7063,2385,4567],[5877,6785,1707,0,5877,6785,1707],[7064,6598,1270,0,7064,6598,1270],[2444,2446,2705,0,2444,2446,2705],[715,5276,5677,0,715,5276,5677],[5244,2230,2229,0,5244,2230,2229],[2669,7065,1299,0,2669,7065,1299],[7049,948,2224,0,7049,948,2224],[3495,5058,5059,0,3495,5058,5059],[6130,5182,7066,0,6130,5182,7066],[6457,5136,1893,0,6457,5136,1893],[3206,4450,2767,0,3206,4450,2767],[6049,6048,4393,0,6049,6048,4393],[4796,7067,731,0,4796,7067,731],[7068,5808,7069,0,7068,5808,7069],[1132,7070,7049,0,1132,7070,7049],[6108,2697,3818,0,6108,2697,3818],[5899,5501,2462,0,5899,5501,2462],[4754,963,4755,0,4754,963,4755],[6610,7071,7072,0,6610,7071,7072],[7073,1476,2359,0,7073,1476,2359],[7074,1204,7075,0,7074,1204,7075],[1403,7076,2223,0,1403,7076,2223],[5862,1585,5855,0,5862,1585,5855],[7049,7070,948,0,7049,7070,948],[2669,2134,4511,0,2669,2134,4511],[6485,7077,6486,0,6485,7077,6486],[1777,1776,4678,0,1777,1776,4678],[3203,6895,6975,0,3203,6895,6975],[1160,1682,4147,0,1160,1682,4147],[908,948,7070,0,908,948,7070],[4570,7078,4571,0,4570,7078,4571],[7079,7080,6835,0,7079,7080,6835],[1581,1066,6966,0,1581,1066,6966],[3903,4333,2065,0,3903,4333,2065],[6611,4545,4544,0,6611,4545,4544],[5997,6291,2759,0,5997,6291,2759],[7081,4154,5835,0,7081,4154,5835],[6709,220,1508,0,6709,220,1508],[6614,6294,6615,0,6614,6294,6615],[553,3447,6791,0,553,3447,6791],[3071,6554,1276,0,3071,6554,1276],[6646,6644,6516,0,6646,6644,6516],[4716,5387,4717,0,4716,5387,4717],[4800,2277,2278,0,4800,2277,2278],[4762,4895,1514,0,4762,4895,1514],[3643,5276,715,0,3643,5276,715],[6298,4272,6023,0,6298,4272,6023],[2981,7082,6624,0,2981,7082,6624],[2767,6637,2768,0,2767,6637,2768],[108,3205,109,0,108,3205,109],[3131,2550,6197,0,3131,2550,6197],[5471,5472,3044,0,5471,5472,3044],[7083,272,271,0,7083,272,271],[1172,2188,6828,0,1172,2188,6828],[4221,6404,179,0,4221,6404,179],[712,6673,7084,0,712,6673,7084],[7045,1698,6465,0,7045,1698,6465],[1104,2736,1336,0,1104,2736,1336],[1838,995,5513,0,1838,995,5513],[2152,6445,7085,0,2152,6445,7085],[4479,2946,5081,0,4479,2946,5081],[2463,1054,1056,0,2463,1054,1056],[4401,3866,364,0,4401,3866,364],[6938,5382,2529,0,6938,5382,2529],[6238,356,7086,0,6238,356,7086],[7079,6802,7080,0,7079,6802,7080],[884,6642,4484,0,884,6642,4484],[1140,5286,1141,0,1140,5286,1141],[2914,6514,5793,0,2914,6514,5793],[6315,6372,7087,0,6315,6372,7087],[787,4255,2599,0,787,4255,2599],[3621,14,13,0,3621,14,13],[2347,2346,3950,0,2347,2346,3950],[2345,4023,2346,0,2345,4023,2346],[7063,4567,6121,0,7063,4567,6121],[7088,1621,3998,0,7088,1621,3998],[1622,1624,1783,0,1622,1624,1783],[5293,4672,3186,0,5293,4672,3186],[1181,1427,3931,0,1181,1427,3931],[4209,4880,7089,0,4209,4880,7089],[2034,7025,7090,0,2034,7025,7090],[6819,2262,3065,0,6819,2262,3065],[6017,2957,6018,0,6017,2957,6018],[7091,1212,3517,0,7091,1212,3517],[624,7092,7093,0,624,7092,7093],[1071,5846,6400,0,1071,5846,6400],[7061,6778,3185,0,7061,6778,3185],[7094,7095,7096,0,7094,7095,7096],[7097,815,817,0,7097,815,817],[6445,2099,907,0,6445,2099,907],[4390,2872,7098,0,4390,2872,7098],[2099,948,907,0,2099,948,907],[5693,2755,5763,0,5693,2755,5763],[832,831,7099,0,832,831,7099],[3798,5712,4881,0,3798,5712,4881],[836,4846,4845,0,836,4846,4845],[4530,4296,5069,0,4530,4296,5069],[6540,7100,6825,0,6540,7100,6825],[3,5,2582,0,3,5,2582],[355,7101,2400,0,355,7101,2400],[6667,4567,5451,0,6667,4567,5451],[363,6081,4236,0,363,6081,4236],[4065,2621,4064,0,4065,2621,4064],[2152,2099,6445,0,2152,2099,6445],[1297,6539,6538,0,1297,6539,6538],[205,2643,2642,0,205,2643,2642],[7102,4853,4852,0,7102,4853,4852],[7103,2432,96,0,7103,2432,96],[1755,4143,1756,0,1755,4143,1756],[7104,173,6109,0,7104,173,6109],[1196,7105,6568,0,1196,7105,6568],[2163,3323,2675,0,2163,3323,2675],[5908,7106,7086,0,5908,7106,7086],[2195,2194,811,0,2195,2194,811],[7107,923,746,0,7107,923,746],[4586,2421,7108,0,4586,2421,7108],[1153,4322,4321,0,1153,4322,4321],[2780,4845,5957,0,2780,4845,5957],[2587,5122,5287,0,2587,5122,5287],[7109,7110,7111,0,7109,7110,7111],[5251,4135,115,0,5251,4135,115],[6649,1410,3462,0,6649,1410,3462],[7112,7083,5357,0,7112,7083,5357],[7113,2485,2484,0,7113,2485,2484],[42,3418,1765,0,42,3418,1765],[5228,7114,6975,0,5228,7114,6975],[173,7104,7115,0,173,7104,7115],[6446,6606,7085,0,6446,6606,7085],[1806,1805,1592,0,1806,1805,1592],[7116,6387,3041,0,7116,6387,3041],[7117,2899,7118,0,7117,2899,7118],[7119,6199,7120,0,7119,6199,7120],[3380,3608,6787,0,3380,3608,6787],[650,4266,648,0,650,4266,648],[3205,2766,6434,0,3205,2766,6434],[941,2204,6882,0,941,2204,6882],[6464,5490,2533,0,6464,5490,2533],[1640,1639,1751,0,1640,1639,1751],[3664,4796,5551,0,3664,4796,5551],[3205,6434,4395,0,3205,6434,4395],[6605,7085,6606,0,6605,7085,6606],[3438,2332,2331,0,3438,2332,2331],[3734,3733,6828,0,3734,3733,6828],[1015,2475,1016,0,1015,2475,1016],[7121,835,7122,0,7121,835,7122],[638,640,5291,0,638,640,5291],[968,7123,5494,0,968,7123,5494],[2090,238,2604,0,2090,238,2604],[2171,1319,1318,0,2171,1319,1318],[1187,4986,927,0,1187,4986,927],[5877,1707,1709,0,5877,1707,1709],[7124,415,1700,0,7124,415,1700],[3560,3673,5742,0,3560,3673,5742],[6295,6615,214,0,6295,6615,214],[7125,4144,1497,0,7125,4144,1497],[3834,1051,7126,0,3834,1051,7126],[7127,4700,7060,0,7127,4700,7060],[5920,5921,2116,0,5920,5921,2116],[4341,1860,4181,0,4341,1860,4181],[6546,5934,3573,0,6546,5934,3573],[1759,154,7128,0,1759,154,7128],[7129,3814,803,0,7129,3814,803],[6108,3818,1861,0,6108,3818,1861],[6446,7085,6445,0,6446,7085,6445],[6692,7130,2159,0,6692,7130,2159],[4040,3988,3987,0,4040,3988,3987],[3698,1245,2369,0,3698,1245,2369],[7131,7132,6848,0,7131,7132,6848],[2170,5884,2171,0,2170,5884,2171],[4199,3690,6294,0,4199,3690,6294],[7133,199,198,0,7133,199,198],[4251,5694,7134,0,4251,5694,7134],[3246,6816,3244,0,3246,6816,3244],[140,139,4314,0,140,139,4314],[3480,1615,3481,0,3480,1615,3481],[3109,3110,4549,0,3109,3110,4549],[5053,5055,906,0,5053,5055,906],[5154,7135,4560,0,5154,7135,4560],[7136,1037,167,0,7136,1037,167],[2304,696,2305,0,2304,696,2305],[319,7094,2182,0,319,7094,2182],[5341,5400,985,0,5341,5400,985],[6371,7137,7138,0,6371,7137,7138],[6017,5263,6420,0,6017,5263,6420],[3349,3348,5618,0,3349,3348,5618],[4813,4815,2765,0,4813,4815,2765],[5274,3900,5211,0,5274,3900,5211],[6020,2828,2827,0,6020,2828,2827],[2235,4584,3310,0,2235,4584,3310],[6038,6483,7139,0,6038,6483,7139],[2749,2192,3143,0,2749,2192,3143],[3198,7055,572,0,3198,7055,572],[3198,572,3199,0,3198,572,3199],[4368,6923,4527,0,4368,6923,4527],[124,281,2993,0,124,281,2993],[341,6886,5897,0,341,6886,5897],[4804,7140,6242,0,4804,7140,6242],[7141,4048,7142,0,7141,4048,7142],[3406,2373,3399,0,3406,2373,3399],[4487,7143,6255,0,4487,7143,6255],[5930,6606,6446,0,5930,6606,6446],[2437,4247,4246,0,2437,4247,4246],[5355,1741,4565,0,5355,1741,4565],[6449,3770,2447,0,6449,3770,2447],[5066,6838,5733,0,5066,6838,5733],[5130,4713,7139,0,5130,4713,7139],[2783,2724,2726,0,2783,2724,2726],[4464,651,1920,0,4464,651,1920],[1491,5545,2644,0,1491,5545,2644],[586,585,312,0,586,585,312],[3763,5966,6064,0,3763,5966,6064],[7144,3373,7145,0,7144,3373,7145],[6935,7146,4868,0,6935,7146,4868],[2315,6961,2017,0,2315,6961,2017],[3460,1803,7147,0,3460,1803,7147],[2095,442,1785,0,2095,442,1785],[4759,4596,6597,0,4759,4596,6597],[5050,3722,6024,0,5050,3722,6024],[2391,2393,6492,0,2391,2393,6492],[4984,564,6358,0,4984,564,6358],[6204,17,7148,0,6204,17,7148],[431,433,3539,0,431,433,3539],[4410,1492,3966,0,4410,1492,3966],[192,7012,5727,0,192,7012,5727],[1786,5997,2759,0,1786,5997,2759],[3099,3101,6480,0,3099,3101,6480],[4353,3273,4146,0,4353,3273,4146],[2034,3060,4836,0,2034,3060,4836],[717,5775,3405,0,717,5775,3405],[2481,2480,5663,0,2481,2480,5663],[6823,6203,26,0,6823,6203,26],[4274,3867,7149,0,4274,3867,7149],[4739,4740,2291,0,4739,4740,2291],[7150,7151,7152,0,7150,7151,7152],[2863,2179,3071,0,2863,2179,3071],[3161,4858,4742,0,3161,4858,4742],[5567,6511,6510,0,5567,6511,6510],[699,701,7153,0,699,701,7153],[1863,5980,550,0,1863,5980,550],[4269,751,2406,0,4269,751,2406],[1938,1940,7154,0,1938,1940,7154],[2630,2053,1320,0,2630,2053,1320],[4356,5481,7155,0,4356,5481,7155],[1570,1569,6591,0,1570,1569,6591],[993,472,3802,0,993,472,3802],[7156,4299,6713,0,7156,4299,6713],[1206,2558,1207,0,1206,2558,1207],[546,1908,3473,0,546,1908,3473],[5930,6446,5992,0,5930,6446,5992],[7157,7158,7159,0,7157,7158,7159],[3814,7160,7083,0,3814,7160,7083],[4737,4738,4491,0,4737,4738,4491],[7141,4459,6834,0,7141,4459,6834],[2590,7161,6296,0,2590,7161,6296],[7162,7163,4520,0,7162,7163,4520],[6063,2506,2782,0,6063,2506,2782],[4946,5989,3024,0,4946,5989,3024],[2503,2505,5903,0,2503,2505,5903],[4260,6948,3392,0,4260,6948,3392],[4179,7164,5569,0,4179,7164,5569],[6890,2371,7165,0,6890,2371,7165],[5290,7166,132,0,5290,7166,132],[3192,6569,3994,0,3192,6569,3994],[6856,4172,2404,0,6856,4172,2404],[6927,6759,6928,0,6927,6759,6928],[5229,5231,2103,0,5229,5231,2103],[4439,4205,4823,0,4439,4205,4823],[4701,5803,4787,0,4701,5803,4787],[7124,2261,415,0,7124,2261,415],[5104,5103,4646,0,5104,5103,4646],[4634,7045,6751,0,4634,7045,6751],[2736,2771,2770,0,2736,2771,2770],[3393,5517,5839,0,3393,5517,5839],[7167,7168,7169,0,7167,7168,7169],[6179,3497,1453,0,6179,3497,1453],[3037,3070,6569,0,3037,3070,6569],[4613,1792,1337,0,4613,1792,1337],[6527,3037,6569,0,6527,3037,6569],[2630,5198,2053,0,2630,5198,2053],[7054,5414,6621,0,7054,5414,6621],[3296,264,263,0,3296,264,263],[1583,7170,1584,0,1583,7170,1584],[4349,686,685,0,4349,686,685],[3373,7144,7171,0,3373,7144,7171],[4628,6414,6413,0,4628,6414,6413],[7172,7173,7174,0,7172,7173,7174],[4577,6175,1144,0,4577,6175,1144],[3628,3627,5825,0,3628,3627,5825],[6491,6187,4362,0,6491,6187,4362],[400,2545,7043,0,400,2545,7043],[3470,7175,6957,0,3470,7175,6957],[7176,7071,6610,0,7176,7071,6610],[5625,6683,1548,0,5625,6683,1548],[2380,3958,2508,0,2380,3958,2508],[4913,5748,6496,0,4913,5748,6496],[6311,1134,7177,0,6311,1134,7177],[264,995,265,0,264,995,265],[3723,6212,5182,0,3723,6212,5182],[6725,1590,1159,0,6725,1590,1159],[2879,6871,738,0,2879,6871,738],[2999,4350,3339,0,2999,4350,3339],[7178,5819,6852,0,7178,5819,6852],[5220,6790,7179,0,5220,6790,7179],[2964,2986,2965,0,2964,2986,2965],[3847,3911,3910,0,3847,3911,3910],[1142,5423,1143,0,1142,5423,1143],[516,515,3962,0,516,515,3962],[520,5575,6779,0,520,5575,6779],[6569,3070,3994,0,6569,3070,3994],[2319,3283,7180,0,2319,3283,7180],[3192,3994,3193,0,3192,3994,3193],[4982,4984,6919,0,4982,4984,6919],[2319,7180,5662,0,2319,7180,5662],[238,4159,239,0,238,4159,239],[5776,5777,5191,0,5776,5777,5191],[4791,6058,3670,0,4791,6058,3670],[5244,6553,2230,0,5244,6553,2230],[984,3302,5194,0,984,3302,5194],[6328,7181,7182,0,6328,7181,7182],[1759,6140,6102,0,1759,6140,6102],[6910,133,4,0,6910,133,4],[3994,3993,6226,0,3994,3993,6226],[5145,5725,1835,0,5145,5725,1835],[580,6256,4063,0,580,6256,4063],[3557,280,3068,0,3557,280,3068],[3579,3581,4777,0,3579,3581,4777],[1142,6175,3508,0,1142,6175,3508],[4300,6783,1649,0,4300,6783,1649],[4238,6357,564,0,4238,6357,564],[4108,4107,6901,0,4108,4107,6901],[4907,5717,3290,0,4907,5717,3290],[1402,4381,4383,0,1402,4381,4383],[7183,3457,398,0,7183,3457,398],[7184,836,3169,0,7184,836,3169],[5627,5091,5090,0,5627,5091,5090],[4228,1610,59,0,4228,1610,59],[806,1964,4871,0,806,1964,4871],[6749,144,3142,0,6749,144,3142],[2571,2991,1993,0,2571,2991,1993],[6112,2739,7185,0,6112,2739,7185],[5662,6817,4687,0,5662,6817,4687],[5085,2243,2245,0,5085,2243,2245],[3526,2901,3411,0,3526,2901,3411],[1525,1524,5185,0,1525,1524,5185],[359,3175,4946,0,359,3175,4946],[3994,6226,3193,0,3994,6226,3193],[7186,4203,6758,0,7186,4203,6758],[4306,6753,1452,0,4306,6753,1452],[7187,7128,154,0,7187,7128,154],[6418,3390,444,0,6418,3390,444],[5671,5672,1224,0,5671,5672,1224],[4310,7111,7110,0,4310,7111,7110],[7188,592,4309,0,7188,592,4309],[5700,5626,6494,0,5700,5626,6494],[4499,4841,4130,0,4499,4841,4130],[5647,419,6831,0,5647,419,6831],[4011,5736,4012,0,4011,5736,4012],[6152,6226,5300,0,6152,6226,5300],[338,2657,2656,0,338,2657,2656],[2095,2097,442,0,2095,2097,442],[5667,7189,5668,0,5667,7189,5668],[4767,1106,2128,0,4767,1106,2128],[5476,7190,6409,0,5476,7190,6409],[5857,6059,4824,0,5857,6059,4824],[2219,317,316,0,2219,317,316],[6341,6340,3607,0,6341,6340,3607],[2202,4779,1886,0,2202,4779,1886],[2952,2954,5236,0,2952,2954,5236],[3006,2357,3772,0,3006,2357,3772],[6792,506,4097,0,6792,506,4097],[5894,6591,1569,0,5894,6591,1569],[5076,1125,3416,0,5076,1125,3416],[3026,7191,1768,0,3026,7191,1768],[4484,4485,4642,0,4484,4485,4642],[7192,5196,5485,0,7192,5196,5485],[5259,5300,6226,0,5259,5300,6226],[5259,6226,3993,0,5259,6226,3993],[5094,894,1325,0,5094,894,1325],[6089,5212,4066,0,6089,5212,4066],[673,4020,2381,0,673,4020,2381],[5160,7193,5161,0,5160,7193,5161],[3749,4702,5638,0,3749,4702,5638],[7194,7195,7196,0,7194,7195,7196],[2981,7197,4832,0,2981,7197,4832],[6164,7198,4426,0,6164,7198,4426],[6876,6877,1648,0,6876,6877,1648],[5763,5765,6792,0,5763,5765,6792],[3147,963,4754,0,3147,963,4754],[2981,4832,7199,0,2981,4832,7199],[4274,2595,5554,0,4274,2595,5554],[3689,4022,4848,0,3689,4022,4848],[4842,4423,7200,0,4842,4423,7200],[5605,3424,3124,0,5605,3424,3124],[4880,4209,303,0,4880,4209,303],[1892,4572,1893,0,1892,4572,1893],[6067,2329,2677,0,6067,2329,2677],[4839,639,4840,0,4839,639,4840],[2536,2535,7060,0,2536,2535,7060],[3596,6082,6974,0,3596,6082,6974],[5081,3909,3260,0,5081,3909,3260],[7201,7202,6255,0,7201,7202,6255],[1626,3147,2364,0,1626,3147,2364],[1104,7203,4082,0,1104,7203,4082],[3207,3209,5358,0,3207,3209,5358],[6463,6493,2486,0,6463,6493,2486],[7204,7196,7195,0,7204,7196,7195],[6481,7205,3030,0,6481,7205,3030],[6289,6290,3300,0,6289,6290,3300],[1382,4049,6834,0,1382,4049,6834],[6051,7206,6022,0,6051,7206,6022],[912,6271,7207,0,912,6271,7207],[5820,5819,7178,0,5820,5819,7178],[1469,7208,1470,0,1469,7208,1470],[2924,1289,3109,0,2924,1289,3109],[2700,5286,5203,0,2700,5286,5203],[413,5450,414,0,413,5450,414],[5489,6818,2765,0,5489,6818,2765],[3886,5528,7209,0,3886,5528,7209],[4713,6149,4714,0,4713,6149,4714],[2935,2082,2887,0,2935,2082,2887],[7210,7211,2549,0,7210,7211,2549],[1246,3695,3634,0,1246,3695,3634],[2009,3972,3890,0,2009,3972,3890],[5050,6791,3722,0,5050,6791,3722],[6204,3762,3333,0,6204,3762,3333],[7212,1483,459,0,7212,1483,459],[5001,5000,5597,0,5001,5000,5597],[1383,1382,6833,0,1383,1382,6833],[7213,7206,6051,0,7213,7206,6051],[3323,1152,2675,0,3323,1152,2675],[1470,3119,7044,0,1470,3119,7044],[3140,6077,3576,0,3140,6077,3576],[1673,66,2119,0,1673,66,2119],[912,7207,842,0,912,7207,842],[7214,6996,5023,0,7214,6996,5023],[1568,5875,1794,0,1568,5875,1794],[1019,4298,250,0,1019,4298,250],[3748,3747,4484,0,3748,3747,4484],[663,4168,6985,0,663,4168,6985],[4486,4801,5863,0,4486,4801,5863],[1691,1722,7215,0,1691,1722,7215],[7216,421,7217,0,7216,421,7217],[3163,7068,3164,0,3163,7068,3164],[3598,476,7218,0,3598,476,7218],[5785,1867,9,0,5785,1867,9],[1710,671,1766,0,1710,671,1766],[7219,7072,7158,0,7219,7072,7158],[2755,954,5763,0,2755,954,5763],[4830,7214,5023,0,4830,7214,5023],[5257,281,7220,0,5257,281,7220],[568,570,2068,0,568,570,2068],[4870,5750,7221,0,4870,5750,7221],[304,1646,305,0,304,1646,305],[5394,3258,3257,0,5394,3258,3257],[3670,3669,4435,0,3670,3669,4435],[5577,1989,1991,0,5577,1989,1991],[2557,6040,5375,0,2557,6040,5375],[5461,77,3863,0,5461,77,3863],[5960,6022,7206,0,5960,6022,7206],[4160,536,2174,0,4160,536,2174],[3894,6639,3895,0,3894,6639,3895],[4841,4498,5483,0,4841,4498,5483],[5127,6319,3378,0,5127,6319,3378],[6528,2712,2711,0,6528,2712,2711],[3463,3465,7021,0,3463,3465,7021],[5417,2113,5418,0,5417,2113,5418],[1643,7222,720,0,1643,7222,720],[3510,6287,4605,0,3510,6287,4605],[7223,6106,7224,0,7223,6106,7224],[4708,6065,977,0,4708,6065,977],[1068,4158,2092,0,1068,4158,2092],[2904,2906,6498,0,2904,2906,6498],[4265,4659,7225,0,4265,4659,7225],[5111,1662,186,0,5111,1662,186],[5127,3378,3377,0,5127,3378,3377],[5545,5544,5915,0,5545,5544,5915],[1545,1743,5869,0,1545,1743,5869],[5285,6091,2519,0,5285,6091,2519],[5130,6149,4713,0,5130,6149,4713],[3834,3833,6830,0,3834,3833,6830],[4059,2257,2961,0,4059,2257,2961],[5038,1346,882,0,5038,1346,882],[5699,6257,1031,0,5699,6257,1031],[3597,6998,734,0,3597,6998,734],[5603,2803,6428,0,5603,2803,6428],[6991,3503,4282,0,6991,3503,4282],[6910,4,3343,0,6910,4,3343],[6900,2479,6633,0,6900,2479,6633],[3316,3317,6904,0,3316,3317,6904],[2420,972,7108,0,2420,972,7108],[2102,5592,1339,0,2102,5592,1339],[1847,6699,5199,0,1847,6699,5199],[2317,679,1654,0,2317,679,1654],[3321,34,7226,0,3321,34,7226],[3691,7227,4969,0,3691,7227,4969],[6372,6862,3522,0,6372,6862,3522],[2694,5821,2695,0,2694,5821,2695],[605,1369,4750,0,605,1369,4750],[4694,362,361,0,4694,362,361],[6884,3013,3012,0,6884,3013,3012],[5735,5333,5734,0,5735,5333,5734],[7228,6097,6612,0,7228,6097,6612],[2331,5915,3439,0,2331,5915,3439],[7229,6439,1602,0,7229,6439,1602],[2925,2327,4855,0,2925,2327,4855],[1847,5199,3538,0,1847,5199,3538],[2189,6078,2190,0,2189,6078,2190],[6154,6994,5520,0,6154,6994,5520],[2065,4333,1733,0,2065,4333,1733],[5230,7175,7050,0,5230,7175,7050],[6655,6377,3304,0,6655,6377,3304],[5269,5270,7230,0,5269,5270,7230],[2954,2953,3425,0,2954,2953,3425],[5222,5221,5954,0,5222,5221,5954],[7151,6313,5828,0,7151,6313,5828],[4050,4937,2791,0,4050,4937,2791],[7097,7231,5339,0,7097,7231,5339],[2275,3755,3757,0,2275,3755,3757],[5960,7232,5954,0,5960,7232,5954],[2831,2830,2614,0,2831,2830,2614],[3629,6697,1690,0,3629,6697,1690],[113,6490,513,0,113,6490,513],[6910,3343,3344,0,6910,3343,3344],[6987,2875,4786,0,6987,2875,4786],[3205,4395,109,0,3205,4395,109],[4883,1849,5129,0,4883,1849,5129],[5954,7232,7233,0,5954,7232,7233],[7234,5644,5645,0,7234,5644,5645],[5431,694,7235,0,5431,694,7235],[2537,2539,4078,0,2537,2539,4078],[5666,4403,6961,0,5666,4403,6961],[6040,3657,3656,0,6040,3657,3656],[2237,5091,2238,0,2237,5091,2238],[6978,6385,3791,0,6978,6385,3791],[7236,1924,7237,0,7236,1924,7237],[7233,7232,5993,0,7233,7232,5993],[588,590,6399,0,588,590,6399],[333,7120,4888,0,333,7120,4888],[185,495,6724,0,185,495,6724],[7238,833,7239,0,7238,833,7239],[3147,964,963,0,3147,964,963],[5994,5993,7232,0,5994,5993,7232],[1817,2372,1818,0,1817,2372,1818],[6103,7240,7241,0,6103,7240,7241],[5534,1019,1018,0,5534,1019,1018],[2638,6565,7242,0,2638,6565,7242],[6976,6959,302,0,6976,6959,302],[4543,3464,7243,0,4543,3464,7243],[4109,4111,4311,0,4109,4111,4311],[2170,6047,2606,0,2170,6047,2606],[6943,4708,4707,0,6943,4708,4707],[7244,4502,6198,0,7244,4502,6198],[3652,6286,5511,0,3652,6286,5511],[3268,3360,3269,0,3268,3360,3269],[6827,6401,1107,0,6827,6401,1107],[5831,7245,4493,0,5831,7245,4493],[4774,2052,6860,0,4774,2052,6860],[6053,4527,6453,0,6053,4527,6453],[868,330,7246,0,868,330,7246],[4269,2406,112,0,4269,2406,112],[6227,5994,7213,0,6227,5994,7213],[5729,4415,852,0,5729,4415,852],[3890,3514,3516,0,3890,3514,3516],[2996,7247,3333,0,2996,7247,3333],[2386,7063,5274,0,2386,7063,5274],[981,980,7248,0,981,980,7248],[4414,890,891,0,4414,890,891],[6184,5951,534,0,6184,5951,534],[4801,4802,7249,0,4801,4802,7249],[625,4966,623,0,625,4966,623],[6956,5710,6362,0,6956,5710,6362],[172,7250,7251,0,172,7250,7251],[1580,1252,4192,0,1580,1252,4192],[5361,467,3283,0,5361,467,3283],[4226,2663,4149,0,4226,2663,4149],[4084,4085,3829,0,4084,4085,3829],[1542,5770,1543,0,1542,5770,1543],[6811,5793,1333,0,6811,5793,1333],[4182,7252,1671,0,4182,7252,1671],[4441,2914,7253,0,4441,2914,7253],[5109,3272,1812,0,5109,3272,1812],[785,5501,4608,0,785,5501,4608],[5054,7254,4885,0,5054,7254,4885],[3491,4021,3492,0,3491,4021,3492],[1850,7179,6080,0,1850,7179,6080],[5786,6765,6041,0,5786,6765,6041],[1693,2949,1691,0,1693,2949,1691],[435,4553,436,0,435,4553,436],[7058,2788,2787,0,7058,2788,2787],[4002,4004,4345,0,4002,4004,4345],[2112,4874,56,0,2112,4874,56],[491,493,3469,0,491,493,3469],[2805,6516,5546,0,2805,6516,5546],[6408,5707,1522,0,6408,5707,1522],[6680,3912,3914,0,6680,3912,3914],[5982,3952,3951,0,5982,3952,3951],[6570,5806,2921,0,6570,5806,2921],[279,281,124,0,279,281,124],[7255,6721,6645,0,7255,6721,6645],[5876,1517,1462,0,5876,1517,1462],[1230,1229,4630,0,1230,1229,4630],[3731,4612,3732,0,3731,4612,3732],[4538,5059,7256,0,4538,5059,7256],[7257,6823,25,0,7257,6823,25],[2436,4376,4375,0,2436,4376,4375],[942,7258,2043,0,942,7258,2043],[7121,1605,835,0,7121,1605,835],[2146,5436,7192,0,2146,5436,7192],[523,6326,524,0,523,6326,524],[5505,578,577,0,5505,578,577],[6843,4020,6991,0,6843,4020,6991],[5159,2633,5068,0,5159,2633,5068],[402,2078,2077,0,402,2078,2077],[2160,5025,5024,0,2160,5025,5024],[1565,1564,595,0,1565,1564,595],[2882,2881,4448,0,2882,2881,4448],[229,6266,230,0,229,6266,230],[3481,1615,5235,0,3481,1615,5235],[2120,4708,977,0,2120,4708,977],[7021,889,3463,0,7021,889,3463],[1717,3313,1718,0,1717,3313,1718],[889,6648,2168,0,889,6648,2168],[1546,4460,1547,0,1546,4460,1547],[1353,1355,2728,0,1353,1355,2728],[2354,2753,6630,0,2354,2753,6630],[2954,3074,5442,0,2954,3074,5442],[3751,3074,3425,0,3751,3074,3425],[39,5165,7259,0,39,5165,7259],[87,2575,6800,0,87,2575,6800],[2055,6848,3145,0,2055,6848,3145],[6570,3631,5807,0,6570,3631,5807],[5806,5808,2922,0,5806,5808,2922],[7260,3405,5775,0,7260,3405,5775],[3530,7261,3531,0,3530,7261,3531],[4194,5540,4205,0,4194,5540,4205],[6071,3419,3418,0,6071,3419,3418],[5044,1291,1290,0,5044,1291,1290],[7262,3929,3946,0,7262,3929,3946],[6338,1745,1667,0,6338,1745,1667],[5778,3767,2110,0,5778,3767,2110],[669,3033,670,0,669,3033,670],[5106,6710,6929,0,5106,6710,6929],[4399,6388,5870,0,4399,6388,5870],[7143,4489,4597,0,7143,4489,4597],[6026,148,3287,0,6026,148,3287],[7053,6890,3649,0,7053,6890,3649],[6745,778,2517,0,6745,778,2517],[3432,3434,4041,0,3432,3434,4041],[5228,4616,6242,0,5228,4616,6242],[2886,2081,6138,0,2886,2081,6138],[5892,5640,212,0,5892,5640,212],[2440,2442,7263,0,2440,2442,7263],[1814,1816,7264,0,1814,1816,7264],[945,4953,7265,0,945,4953,7265],[123,7266,4848,0,123,7266,4848],[1292,7267,1293,0,1292,7267,1293],[6167,6239,6168,0,6167,6239,6168],[4155,1928,2387,0,4155,1928,2387],[2030,578,5506,0,2030,578,5506],[5877,1709,404,0,5877,1709,404],[6305,1307,3697,0,6305,1307,3697],[363,7100,6081,0,363,7100,6081],[1786,5974,5997,0,1786,5974,5997],[4358,6508,4359,0,4358,6508,4359],[2138,5427,4991,0,2138,5427,4991],[328,6689,329,0,328,6689,329],[5587,2778,1572,0,5587,2778,1572],[4076,7268,4763,0,4076,7268,4763],[6333,6239,6167,0,6333,6239,6167],[4943,4472,5158,0,4943,4472,5158],[1978,1703,194,0,1978,1703,194],[4176,5550,4477,0,4176,5550,4477],[3150,3149,4813,0,3150,3149,4813],[1827,4730,4702,0,1827,4730,4702],[7269,7099,7270,0,7269,7099,7270],[4231,1351,1350,0,4231,1351,1350],[3589,3853,3852,0,3589,3853,3852],[3734,6828,6600,0,3734,6828,6600],[5854,6131,7066,0,5854,6131,7066],[2314,531,5606,0,2314,531,5606],[5745,5744,5418,0,5745,5744,5418],[7178,6852,7174,0,7178,6852,7174],[6076,6293,6077,0,6076,6293,6077],[7271,3107,4165,0,7271,3107,4165],[7272,3743,4572,0,7272,3743,4572],[1623,3493,7048,0,1623,3493,7048],[5355,5219,4169,0,5355,5219,4169],[6239,6333,5995,0,6239,6333,5995],[485,484,2429,0,485,484,2429],[1376,6675,3079,0,1376,6675,3079],[7273,5995,6333,0,7273,5995,6333],[6045,3259,4639,0,6045,3259,4639],[3791,632,6978,0,3791,632,6978],[3282,6017,2375,0,3282,6017,2375],[876,2219,3848,0,876,2219,3848],[6082,3595,6083,0,6082,3595,6083],[4412,1702,4406,0,4412,1702,4406],[23,6984,6028,0,23,6984,6028],[6583,7274,3235,0,6583,7274,3235],[7275,5623,5555,0,7275,5623,5555],[842,7207,7276,0,842,7207,7276],[3498,1726,3496,0,3498,1726,3496],[3672,6319,1393,0,3672,6319,1393],[2652,6232,6592,0,2652,6232,6592],[940,1995,3230,0,940,1995,3230],[5910,5461,5460,0,5910,5461,5460],[1689,5796,3629,0,1689,5796,3629],[4563,6479,2220,0,4563,6479,2220],[3863,5120,5183,0,3863,5120,5183],[7277,5995,7273,0,7277,5995,7273],[4561,6217,4562,0,4561,6217,4562],[4993,3062,4436,0,4993,3062,4436],[504,6988,1965,0,504,6988,1965],[1526,1527,1914,0,1526,1527,1914],[6300,7278,1254,0,6300,7278,1254],[6435,4682,4220,0,6435,4682,4220],[5934,7279,3573,0,5934,7279,3573],[4586,7108,973,0,4586,7108,973],[1053,5580,209,0,1053,5580,209],[1778,849,1779,0,1778,849,1779],[7181,6328,4042,0,7181,6328,4042],[6649,3756,1410,0,6649,3756,1410],[4826,202,2081,0,4826,202,2081],[2298,2299,239,0,2298,2299,239],[4493,7280,4494,0,4493,7280,4494],[1069,7281,1070,0,1069,7281,1070],[6102,5425,1760,0,6102,5425,1760],[3916,7282,4753,0,3916,7282,4753],[1381,1507,1109,0,1381,1507,1109],[4501,2155,4502,0,4501,2155,4502],[7275,5555,804,0,7275,5555,804],[3794,7283,7284,0,3794,7283,7284],[1403,2223,7103,0,1403,2223,7103],[5227,225,7285,0,5227,225,7285],[2700,2699,51,0,2700,2699,51],[5964,7116,3144,0,5964,7116,3144],[4685,4684,6668,0,4685,4684,6668],[7286,3588,3589,0,7286,3588,3589],[6813,3156,84,0,6813,3156,84],[935,4128,6604,0,935,4128,6604],[1714,6837,6686,0,1714,6837,6686],[2649,6220,1981,0,2649,6220,1981],[4196,5512,4046,0,4196,5512,4046],[6788,6790,7089,0,6788,6790,7089],[4664,5251,5250,0,4664,5251,5250],[6978,4886,6385,0,6978,4886,6385],[1458,7287,1459,0,1458,7287,1459],[4536,6002,7130,0,4536,6002,7130],[1596,1595,6575,0,1596,1595,6575],[3593,58,57,0,3593,58,57],[6646,5628,6644,0,6646,5628,6644],[3409,394,5962,0,3409,394,5962],[3012,3014,6365,0,3012,3014,6365],[4978,998,122,0,4978,998,122],[1516,7000,1314,0,1516,7000,1314],[4018,3849,2842,0,4018,3849,2842],[6043,6552,2271,0,6043,6552,2271],[4938,368,4429,0,4938,368,4429],[6693,6277,6666,0,6693,6277,6666],[7288,7289,5421,0,7288,7289,5421],[148,2398,2397,0,148,2398,2397],[4966,4968,623,0,4966,4968,623],[517,4618,4617,0,517,4618,4617],[3483,6781,3484,0,3483,6781,3484],[7252,1465,1669,0,7252,1465,1669],[2383,7290,4263,0,2383,7290,4263],[4157,5704,2151,0,4157,5704,2151],[4896,829,5867,0,4896,829,5867],[5822,5821,6506,0,5822,5821,6506],[3577,3578,5834,0,3577,3578,5834],[1758,1507,1383,0,1758,1507,1383],[6418,5271,2477,0,6418,5271,2477],[2869,2870,4581,0,2869,2870,4581],[5098,7291,4837,0,5098,7291,4837],[3665,1871,4378,0,3665,1871,4378],[6203,1127,26,0,6203,1127,26],[1668,6520,6694,0,1668,6520,6694],[4938,4429,4428,0,4938,4429,4428],[6143,2303,2302,0,6143,2303,2302],[341,4750,1368,0,341,4750,1368],[5462,4874,7046,0,5462,4874,7046],[1696,3411,3410,0,1696,3411,3410],[7292,6752,4543,0,7292,6752,4543],[5145,5723,5725,0,5145,5723,5725],[5514,2445,2444,0,5514,2445,2444],[1524,6101,6258,0,1524,6101,6258],[4996,4975,7293,0,4996,4975,7293],[2306,3477,3476,0,2306,3477,3476],[332,331,4540,0,332,331,4540],[5445,7294,7295,0,5445,7294,7295],[2562,5929,5170,0,2562,5929,5170],[7296,7297,2255,0,7296,7297,2255],[73,2084,1632,0,73,2084,1632],[2860,3500,6703,0,2860,3500,6703],[4823,4825,4439,0,4823,4825,4439],[5908,5424,6216,0,5908,5424,6216],[4635,655,654,0,4635,655,654],[7214,7197,860,0,7214,7197,860],[2586,6404,4220,0,2586,6404,4220],[6155,3313,7298,0,6155,3313,7298],[2320,2319,4687,0,2320,2319,4687],[6323,4789,4788,0,6323,4789,4788],[1596,5981,265,0,1596,5981,265],[7293,7299,4996,0,7293,7299,4996],[7300,6179,6598,0,7300,6179,6598],[5776,7301,6734,0,5776,7301,6734],[2051,7302,4126,0,2051,7302,4126],[7106,4924,6238,0,7106,4924,6238],[3920,4121,7303,0,3920,4121,7303],[410,2042,411,0,410,2042,411],[6892,6024,6025,0,6892,6024,6025],[3301,5331,5739,0,3301,5331,5739],[2178,3895,3368,0,2178,3895,3368],[5365,4456,2199,0,5365,4456,2199],[6902,696,4142,0,6902,696,4142],[3948,2246,436,0,3948,2246,436],[4859,4858,3161,0,4859,4858,3161],[6925,3757,6664,0,6925,3757,6664],[7140,4899,7304,0,7140,4899,7304],[950,5336,1172,0,950,5336,1172],[6950,6952,4645,0,6950,6952,4645],[6555,7305,5608,0,6555,7305,5608],[7306,5037,7299,0,7306,5037,7299],[6411,2115,1023,0,6411,2115,1023],[3789,5236,5292,0,3789,5236,5292],[3173,1631,6146,0,3173,1631,6146],[1888,2434,1889,0,1888,2434,1889],[2600,4491,7307,0,2600,4491,7307],[7299,5037,4996,0,7299,5037,4996],[2659,7308,6206,0,2659,7308,6206],[3458,6992,1193,0,3458,6992,1193],[2509,5400,5341,0,2509,5400,5341],[3420,6875,7309,0,3420,6875,7309],[1553,7310,7311,0,1553,7310,7311],[1573,7312,5502,0,1573,7312,5502],[245,501,7313,0,245,501,7313],[1336,7314,1102,0,1336,7314,1102],[2475,2455,3007,0,2475,2455,3007],[2037,2039,539,0,2037,2039,539],[2709,885,5668,0,2709,885,5668],[4867,4869,3177,0,4867,4869,3177],[582,584,220,0,582,584,220],[1677,829,4168,0,1677,829,4168],[258,1184,6245,0,258,1184,6245],[7219,6610,7072,0,7219,6610,7072],[6639,3894,4744,0,6639,3894,4744],[7273,7299,7293,0,7273,7299,7293],[6190,4495,4494,0,6190,4495,4494],[7315,4142,695,0,7315,4142,695],[7316,4437,4736,0,7316,4437,4736],[966,5648,967,0,966,5648,967],[232,1167,233,0,232,1167,233],[5283,1457,1440,0,5283,1457,1440],[942,2475,3007,0,942,2475,3007],[7169,7317,6000,0,7169,7317,6000],[6729,5804,4055,0,6729,5804,4055],[4408,1815,5306,0,4408,1815,5306],[6368,4299,3699,0,6368,4299,3699],[3568,1001,1000,0,3568,1001,1000],[2141,3571,2139,0,2141,3571,2139],[1488,6423,5607,0,1488,6423,5607],[6932,2274,5874,0,6932,2274,5874],[3311,1429,1428,0,3311,1429,1428],[1764,1175,7318,0,1764,1175,7318],[5339,1556,3059,0,5339,1556,3059],[4785,7319,5753,0,4785,7319,5753],[3221,3222,3765,0,3221,3222,3765],[7320,4481,7138,0,7320,4481,7138],[7247,5713,5715,0,7247,5713,5715],[1598,7321,1599,0,1598,7321,1599],[2252,4597,2253,0,2252,4597,2253],[613,615,7256,0,613,615,7256],[6500,5760,3902,0,6500,5760,3902],[5244,1772,7322,0,5244,1772,7322],[7323,2162,2161,0,7323,2162,2161],[5218,7324,4001,0,5218,7324,4001],[3412,6310,3506,0,3412,6310,3506],[5065,5072,7325,0,5065,5072,7325],[4604,4603,6700,0,4604,4603,6700],[6974,6082,6084,0,6974,6082,6084],[1178,2846,4821,0,1178,2846,4821],[2186,4723,4846,0,2186,4723,4846],[2037,539,5240,0,2037,539,5240],[3660,6809,4919,0,3660,6809,4919],[4345,4004,7326,0,4345,4004,7326],[5844,4531,5455,0,5844,4531,5455],[7293,5065,7325,0,7293,5065,7325],[6989,313,312,0,6989,313,312],[5106,3619,7155,0,5106,3619,7155],[5684,3918,336,0,5684,3918,336],[5609,5611,2388,0,5609,5611,2388],[6230,2982,6252,0,6230,2982,6252],[3066,2685,2684,0,3066,2685,2684],[1589,1591,6053,0,1589,1591,6053],[5420,5421,7289,0,5420,5421,7289],[1277,7327,1203,0,1277,7327,1203],[3160,4910,6312,0,3160,4910,6312],[1552,1554,4217,0,1552,1554,4217],[3067,7328,3794,0,3067,7328,3794],[4949,5674,4950,0,4949,5674,4950],[156,3901,157,0,156,3901,157],[3690,4199,3688,0,3690,4199,3688],[727,5773,3279,0,727,5773,3279],[7019,7329,2302,0,7019,7329,2302],[6188,7245,5465,0,6188,7245,5465],[4386,6205,4387,0,4386,6205,4387],[3395,7132,2031,0,3395,7132,2031],[2458,1305,1304,0,2458,1305,1304],[7293,4975,5065,0,7293,4975,5065],[799,2242,7330,0,799,2242,7330],[5962,1696,3410,0,5962,1696,3410],[6574,5917,2013,0,6574,5917,2013],[786,873,787,0,786,873,787],[1504,3104,5351,0,1504,3104,5351],[119,7331,7332,0,119,7331,7332],[15,1825,16,0,15,1825,16],[5741,5256,5758,0,5741,5256,5758],[2902,762,5470,0,2902,762,5470],[3915,337,6593,0,3915,337,6593],[3039,1716,6988,0,3039,1716,6988],[332,2487,6493,0,332,2487,6493],[4451,3064,4452,0,4451,3064,4452],[1107,1338,1105,0,1107,1338,1105],[6441,5645,6395,0,6441,5645,6395],[2413,2412,6201,0,2413,2412,6201],[6722,3596,6974,0,6722,3596,6974],[7273,7293,7277,0,7273,7293,7277],[7151,5828,7152,0,7151,5828,7152],[7254,5809,6667,0,7254,5809,6667],[6316,5810,7254,0,6316,5810,7254],[1362,2071,5406,0,1362,2071,5406],[6780,3398,845,0,6780,3398,845],[5302,5814,5813,0,5302,5814,5813],[7325,7277,7293,0,7325,7277,7293],[1991,5578,5577,0,1991,5578,5577],[4315,928,6558,0,4315,928,6558],[4505,1531,7115,0,4505,1531,7115],[5445,7295,7333,0,5445,7295,7333],[6602,6571,3996,0,6602,6571,3996],[6019,981,7248,0,6019,981,7248],[4642,5649,884,0,4642,5649,884],[734,6998,6874,0,734,6998,6874],[7309,536,3420,0,7309,536,3420],[6180,7334,2636,0,6180,7334,2636],[1942,7335,1943,0,1942,7335,1943],[5570,4912,4914,0,5570,4912,4914],[1804,1918,1917,0,1804,1918,1917],[1878,6610,7219,0,1878,6610,7219],[4889,7336,3730,0,4889,7336,3730],[5555,5623,5556,0,5555,5623,5556],[2645,6611,4544,0,2645,6611,4544],[3419,6944,7337,0,3419,6944,7337],[7338,5091,5629,0,7338,5091,5629],[3987,4657,4040,0,3987,4657,4040],[3353,2522,3354,0,3353,2522,3354],[4673,3560,6810,0,4673,3560,6810],[4149,2663,1774,0,4149,2663,1774],[6316,1308,7339,0,6316,1308,7339],[7340,6868,899,0,7340,6868,899],[6380,6489,6381,0,6380,6489,6381],[1242,2706,1343,0,1242,2706,1343],[7341,7342,6299,0,7341,7342,6299],[390,7239,833,0,390,7239,833],[3874,6303,7343,0,3874,6303,7343],[2499,3700,6822,0,2499,3700,6822],[7344,7325,5147,0,7344,7325,5147],[7344,5147,5222,0,7344,5147,5222],[123,4848,2310,0,123,4848,2310],[3165,5378,3166,0,3165,5378,3166],[3647,3856,3511,0,3647,3856,3511],[4163,124,123,0,4163,124,123],[249,251,5261,0,249,251,5261],[3499,778,6805,0,3499,778,6805],[6361,318,7345,0,6361,318,7345],[4626,5801,6154,0,4626,5801,6154],[6430,5410,4794,0,6430,5410,4794],[6083,5962,6084,0,6083,5962,6084],[485,2429,57,0,485,2429,57],[5263,5265,6420,0,5263,5265,6420],[2114,2753,1024,0,2114,2753,1024],[3720,527,526,0,3720,527,526],[6550,6482,89,0,6550,6482,89],[4007,4008,5955,0,4007,4008,5955],[3486,7346,3487,0,3486,7346,3487],[90,2467,7191,0,90,2467,7191],[7347,6628,1440,0,7347,6628,1440],[4711,1018,3352,0,4711,1018,3352],[7348,5512,4198,0,7348,5512,4198],[3725,5207,3726,0,3725,5207,3726],[128,3774,7349,0,128,3774,7349],[4420,3442,5791,0,4420,3442,5791],[3977,6683,3978,0,3977,6683,3978],[4249,6858,3387,0,4249,6858,3387],[6240,3054,6414,0,6240,3054,6414],[5635,6592,3108,0,5635,6592,3108],[2014,6620,2015,0,2014,6620,2015],[2084,6304,2085,0,2084,6304,2085],[7344,7277,7325,0,7344,7277,7325],[321,323,3029,0,321,323,3029],[5984,749,4911,0,5984,749,4911],[3684,4476,1961,0,3684,4476,1961],[4142,7315,4143,0,4142,7315,4143],[7350,7229,7351,0,7350,7229,7351],[695,4142,696,0,695,4142,696],[3884,7335,4915,0,3884,7335,4915],[5196,512,3713,0,5196,512,3713],[7352,2722,6732,0,7352,2722,6732],[5633,5632,5761,0,5633,5632,5761],[7238,7353,7354,0,7238,7353,7354],[5302,1366,1214,0,5302,1366,1214],[7325,5072,5147,0,7325,5072,5147],[4870,3243,6021,0,4870,3243,6021],[616,2569,2568,0,616,2569,2568],[2873,2872,4390,0,2873,2872,4390],[7045,2299,6751,0,7045,2299,6751],[250,4298,251,0,250,4298,251],[3836,1260,418,0,3836,1260,418],[5108,6994,3883,0,5108,6994,3883],[4656,3432,4042,0,4656,3432,4042],[4740,1314,2291,0,4740,1314,2291],[1433,5188,1907,0,1433,5188,1907],[654,7355,7182,0,654,7355,7182],[1055,4387,1056,0,1055,4387,1056],[2931,3278,3429,0,2931,3278,3429],[4234,1659,4235,0,4234,1659,4235],[4216,4218,6965,0,4216,4218,6965],[6539,6392,6537,0,6539,6392,6537],[1185,993,992,0,1185,993,992],[3836,2566,2565,0,3836,2566,2565],[4465,273,7080,0,4465,273,7080],[523,6924,6326,0,523,6924,6326],[2681,2757,2682,0,2681,2757,2682],[1887,4027,4795,0,1887,4027,4795],[2592,6115,6114,0,2592,6115,6114],[6033,2741,2743,0,6033,2741,2743],[5282,1457,5283,0,5282,1457,5283],[4658,5656,7225,0,4658,5656,7225],[7300,453,3497,0,7300,453,3497],[4881,5961,4840,0,4881,5961,4840],[5452,266,4709,0,5452,266,4709],[4183,1671,1670,0,4183,1671,1670],[7330,5294,6778,0,7330,5294,6778],[7356,5288,1780,0,7356,5288,1780],[3417,1175,1326,0,3417,1175,1326],[6359,4703,6237,0,6359,4703,6237],[1554,7357,1367,0,1554,7357,1367],[7358,5970,6346,0,7358,5970,6346],[3845,3844,6803,0,3845,3844,6803],[4491,1579,1578,0,4491,1579,1578],[3021,1080,5873,0,3021,1080,5873],[227,4380,7359,0,227,4380,7359],[767,725,768,0,767,725,768],[2502,3932,579,0,2502,3932,579],[2552,2551,4177,0,2552,2551,4177],[4443,2705,4080,0,4443,2705,4080],[1022,1576,5729,0,1022,1576,5729],[3304,5287,5122,0,3304,5287,5122],[3763,3762,6204,0,3763,3762,6204],[5071,7360,4079,0,5071,7360,4079],[1659,1652,7361,0,1659,1652,7361],[3308,2012,4348,0,3308,2012,4348],[4224,4226,4647,0,4224,4226,4647],[980,5580,7248,0,980,5580,7248],[2218,2217,1923,0,2218,2217,1923],[2542,1775,1874,0,2542,1775,1874],[7362,5698,5759,0,7362,5698,5759],[3067,1312,3980,0,3067,1312,3980],[5027,5865,6464,0,5027,5865,6464],[4834,6257,5699,0,4834,6257,5699],[6824,7003,6875,0,6824,7003,6875],[7316,6186,2242,0,7316,6186,2242],[7233,5993,7344,0,7233,5993,7344],[75,6264,1631,0,75,6264,1631],[1478,6595,7363,0,1478,6595,7363],[7362,5759,2703,0,7362,5759,2703],[7364,4939,4427,0,7364,4939,4427],[5731,3557,4186,0,5731,3557,4186],[7277,7344,5993,0,7277,7344,5993],[7277,5993,5995,0,7277,5993,5995],[401,5973,1785,0,401,5973,1785],[6028,7365,23,0,6028,7365,23],[1817,1819,7366,0,1817,1819,7366],[3816,272,7083,0,3816,272,7083],[6706,5574,6704,0,6706,5574,6704],[5345,7367,6727,0,5345,7367,6727],[5960,7206,7232,0,5960,7206,7232],[4985,1456,7368,0,4985,1456,7368],[7369,5151,7370,0,7369,5151,7370],[7371,4364,1311,0,7371,4364,1311],[919,2884,5624,0,919,2884,5624],[4940,2306,4941,0,4940,2306,4941],[2899,2900,7372,0,2899,2900,7372],[7034,556,7373,0,7034,556,7373],[3403,2950,2701,0,3403,2950,2701],[7374,5007,5006,0,7374,5007,5006],[3668,3667,3084,0,3668,3667,3084],[1850,5402,7179,0,1850,5402,7179],[5034,2999,3001,0,5034,2999,3001],[3650,1285,3651,0,3650,1285,3651],[6897,6896,5229,0,6897,6896,5229],[6854,914,3891,0,6854,914,3891],[5185,6726,7375,0,5185,6726,7375],[1517,1519,5131,0,1517,1519,5131],[7337,6106,7223,0,7337,6106,7223],[6085,2596,2595,0,6085,2596,2595],[1757,1758,7376,0,1757,1758,7376],[4540,331,4602,0,4540,331,4602],[5755,1651,1650,0,5755,1651,1650],[1861,1043,1862,0,1861,1043,1862],[3609,7377,92,0,3609,7377,92],[6779,7258,7378,0,6779,7258,7378],[7379,3971,3247,0,7379,3971,3247],[5994,7206,7213,0,5994,7206,7213],[7380,3861,5162,0,7380,3861,5162],[7232,7206,5994,0,7232,7206,5994],[4424,987,986,0,4424,987,986],[3072,6055,3073,0,3072,6055,3073],[6389,2975,2974,0,6389,2975,2974],[5198,1047,1046,0,5198,1047,1046],[387,5941,5943,0,387,5941,5943],[6246,1183,7263,0,6246,1183,7263],[4944,7154,6417,0,4944,7154,6417],[2411,3692,3210,0,2411,3692,3210],[712,441,4427,0,712,441,4427],[7381,7321,6436,0,7381,7321,6436],[4622,1154,4623,0,4622,1154,4623],[5878,5842,5879,0,5878,5842,5879],[1129,1131,7101,0,1129,1131,7101],[3743,3744,4525,0,3743,3744,4525],[3058,2270,5777,0,3058,2270,5777],[7213,6051,5926,0,7213,6051,5926],[3055,7382,3056,0,3055,7382,3056],[4550,3716,3683,0,4550,3716,3683],[6079,2191,3680,0,6079,2191,3680],[7383,4511,4506,0,7383,4511,4506],[5319,2512,926,0,5319,2512,926],[1568,1794,1569,0,1568,1794,1569],[1689,1688,2770,0,1689,1688,2770],[3651,4928,7384,0,3651,4928,7384],[3358,6427,5142,0,3358,6427,5142],[7385,3363,2769,0,7385,3363,2769],[5269,5963,5285,0,5269,5963,5285],[6736,4166,7376,0,6736,4166,7376],[1103,4019,7203,0,1103,4019,7203],[7386,7387,6379,0,7386,7387,6379],[6955,554,5051,0,6955,554,5051],[5296,7241,4766,0,5296,7241,4766],[7058,7264,1816,0,7058,7264,1816],[7388,160,3393,0,7388,160,3393],[6374,5667,5669,0,6374,5667,5669],[7296,6366,151,0,7296,6366,151],[4439,4825,4440,0,4439,4825,4440],[7389,5845,7390,0,7389,5845,7390],[3786,2935,5323,0,3786,2935,5323],[6515,2805,2293,0,6515,2805,2293],[2716,2715,24,0,2716,2715,24],[1252,758,4192,0,1252,758,4192],[3838,140,4313,0,3838,140,4313],[3402,130,5631,0,3402,130,5631],[4798,1834,3441,0,4798,1834,3441],[796,3869,7391,0,796,3869,7391],[3614,3613,5310,0,3614,3613,5310],[1687,964,2173,0,1687,964,2173],[7392,6397,7393,0,7392,6397,7393],[6729,6894,426,0,6729,6894,426],[6833,4459,4458,0,6833,4459,4458],[7394,4461,4500,0,7394,4461,4500],[7235,144,6750,0,7235,144,6750],[2781,7395,5573,0,2781,7395,5573],[5620,6569,3192,0,5620,6569,3192],[502,504,1965,0,502,504,1965],[2129,2128,3469,0,2129,2128,3469],[4598,2401,4747,0,4598,2401,4747],[7396,1967,1966,0,7396,1967,1966],[4650,4234,6081,0,4650,4234,6081],[2890,2725,7397,0,2890,2725,7397],[7398,354,4370,0,7398,354,4370],[4089,4091,6020,0,4089,4091,6020],[16,4152,5965,0,16,4152,5965],[4487,4489,7143,0,4487,4489,7143],[6561,6569,5620,0,6561,6569,5620],[7399,2461,2676,0,7399,2461,2676],[2831,2614,1416,0,2831,2614,1416],[1681,6561,5620,0,1681,6561,5620],[1870,3145,5421,0,1870,3145,5421],[7079,6803,6802,0,7079,6803,6802],[4127,6566,6604,0,4127,6566,6604],[5036,7092,702,0,5036,7092,702],[1556,1555,3059,0,1556,1555,3059],[7400,1434,1907,0,7400,1434,1907],[2260,5858,2210,0,2260,5858,2210],[6071,6944,3419,0,6071,6944,3419],[4411,1406,589,0,4411,1406,589],[629,7259,722,0,629,7259,722],[5054,4887,7401,0,5054,4887,7401],[6240,6617,3054,0,6240,6617,3054],[405,1708,406,0,405,1708,406],[6388,2656,5870,0,6388,2656,5870],[6073,5201,6074,0,6073,5201,6074],[4108,3461,4133,0,4108,3461,4133],[2543,1,3964,0,2543,1,3964],[5847,5848,3002,0,5847,5848,3002],[285,68,7402,0,285,68,7402],[4373,2888,1450,0,4373,2888,1450],[4921,3661,3660,0,4921,3661,3660],[7002,456,5795,0,7002,456,5795],[6225,2956,2340,0,6225,2956,2340],[2703,5759,6499,0,2703,5759,6499],[3551,4081,4171,0,3551,4081,4171],[1062,626,2989,0,1062,626,2989],[5359,2171,5884,0,5359,2171,5884],[1110,4350,1108,0,1110,4350,1108],[1710,6912,1711,0,1710,6912,1711],[1741,5355,4169,0,1741,5355,4169],[5627,6644,5628,0,5627,6644,5628],[5174,175,3545,0,5174,175,3545],[486,1400,6158,0,486,1400,6158],[2526,6829,1983,0,2526,6829,1983],[6235,2939,7042,0,6235,2939,7042],[5191,7403,2564,0,5191,7403,2564],[7347,1994,6628,0,7347,1994,6628],[7404,984,7405,0,7404,984,7405],[1945,1961,1946,0,1945,1961,1946],[1647,1771,7406,0,1647,1771,7406],[6030,6384,6054,0,6030,6384,6054],[1946,6469,1947,0,1946,6469,1947],[5810,158,157,0,5810,158,157],[4154,7407,3897,0,4154,7407,3897],[483,485,4177,0,483,485,4177],[3557,369,4186,0,3557,369,4186],[7055,6485,6962,0,7055,6485,6962],[5419,7408,3666,0,5419,7408,3666],[2419,6746,6767,0,2419,6746,6767],[4696,766,2631,0,4696,766,2631],[5387,4716,7409,0,5387,4716,7409],[3417,7337,7223,0,3417,7337,7223],[2593,3467,753,0,2593,3467,753],[394,4980,6084,0,394,4980,6084],[4093,4092,4400,0,4093,4092,4400],[4724,4726,7007,0,4724,4726,7007],[4546,4547,4366,0,4546,4547,4366],[7410,4271,1259,0,7410,4271,1259],[6798,3527,3411,0,6798,3527,3411],[3864,5260,2175,0,3864,5260,2175],[5115,7411,5116,0,5115,7411,5116],[4407,2005,6620,0,4407,2005,6620],[4504,6968,1746,0,4504,6968,1746],[666,6586,6207,0,666,6586,6207],[7367,7412,6914,0,7367,7412,6914],[6991,4282,4284,0,6991,4282,4284],[3762,4766,3333,0,3762,4766,3333],[4942,4941,7413,0,4942,4941,7413],[1391,1393,6319,0,1391,1393,6319],[2214,1137,1136,0,2214,1137,1136],[4155,2387,2581,0,4155,2387,2581],[4953,4952,7414,0,4953,4952,7414],[6833,1382,6834,0,6833,1382,6834],[1713,2166,2883,0,1713,2166,2883],[1275,7415,1273,0,1275,7415,1273],[1836,1091,4105,0,1836,1091,4105],[3336,1346,1345,0,3336,1346,1345],[1290,2924,7416,0,1290,2924,7416],[6034,6112,6105,0,6034,6112,6105],[1082,3933,1083,0,1082,3933,1083],[2046,2323,6658,0,2046,2323,6658],[7417,7418,5482,0,7417,7418,5482],[7036,1436,1435,0,7036,1436,1435],[3208,4334,5579,0,3208,4334,5579],[5797,7419,6051,0,5797,7419,6051],[4919,6809,3914,0,4919,6809,3914],[6034,2120,6878,0,6034,2120,6878],[6695,4215,4214,0,6695,4215,4214],[129,7420,6012,0,129,7420,6012],[352,1736,7421,0,352,1736,7421],[1738,3402,3155,0,1738,3402,3155],[5590,6513,5591,0,5590,6513,5591],[1227,5257,5731,0,1227,5257,5731],[6051,7419,7422,0,6051,7419,7422],[4339,1664,106,0,4339,1664,106],[7419,7423,7422,0,7419,7423,7422],[1622,1783,5788,0,1622,1783,5788],[6927,6400,2849,0,6927,6400,2849],[6473,5127,5128,0,6473,5127,5128],[5328,2897,6889,0,5328,2897,6889],[4464,7423,7419,0,4464,7423,7419],[6107,7424,6193,0,6107,7424,6193],[45,4057,1515,0,45,4057,1515],[3398,1817,7366,0,3398,1817,7366],[5609,2388,1477,0,5609,2388,1477],[4694,4696,1895,0,4694,4696,1895],[1038,1037,3741,0,1038,1037,3741],[5231,2104,2103,0,5231,2104,2103],[3777,5079,2795,0,3777,5079,2795],[1438,6504,5189,0,1438,6504,5189],[1686,6307,1684,0,1686,6307,1684],[2636,2635,6181,0,2636,2635,6181],[6652,455,454,0,6652,455,454],[6627,3998,5156,0,6627,3998,5156],[5488,7425,7426,0,5488,7425,7426],[6994,5695,373,0,6994,5695,373],[1384,1385,2907,0,1384,1385,2907],[2870,755,754,0,2870,755,754],[7427,5538,1668,0,7427,5538,1668],[540,542,5352,0,540,542,5352],[1470,7044,6638,0,1470,7044,6638],[7428,5234,4124,0,7428,5234,4124],[7429,6262,5581,0,7429,6262,5581],[2442,6302,6246,0,2442,6302,6246],[1572,7312,1573,0,1572,7312,1573],[1741,1881,1880,0,1741,1881,1880],[6993,3815,7129,0,6993,3815,7129],[2625,7186,7430,0,2625,7186,7430],[6806,171,3969,0,6806,171,3969],[6654,5121,495,0,6654,5121,495],[3459,3461,6298,0,3459,3461,6298],[6438,7222,1643,0,6438,7222,1643],[458,6643,4799,0,458,6643,4799],[310,4096,311,0,310,4096,311],[3691,2209,7227,0,3691,2209,7227],[1068,2092,4372,0,1068,2092,4372],[1328,3879,1329,0,1328,3879,1329],[1804,1806,1918,0,1804,1806,1918],[3797,6553,7322,0,3797,6553,7322],[6792,5765,506,0,6792,5765,506],[7260,1331,698,0,7260,1331,698],[5822,1008,5681,0,5822,1008,5681],[2544,7081,2048,0,2544,7081,2048],[7282,3916,3918,0,7282,3916,3918],[5710,5711,6360,0,5710,5711,6360],[4653,5939,4651,0,4653,5939,4651],[1640,3135,3134,0,1640,3135,3134],[7274,2542,3236,0,7274,2542,3236],[4843,682,4423,0,4843,682,4423],[2004,6620,2005,0,2004,6620,2005],[28,6601,71,0,28,6601,71],[3014,7431,4569,0,3014,7431,4569],[3277,643,7432,0,3277,643,7432],[7052,7433,2814,0,7052,7433,2814],[30,32,5975,0,30,32,5975],[4256,4117,2910,0,4256,4117,2910],[1737,131,1738,0,1737,131,1738],[1399,1986,1985,0,1399,1986,1985],[7428,4124,4123,0,7428,4124,4123],[2899,7117,599,0,2899,7117,599],[7434,7435,4858,0,7434,7435,4858],[1545,5922,1997,0,1545,5922,1997],[5046,1265,1264,0,5046,1265,1264],[5418,524,6327,0,5418,524,6327],[5870,3621,4399,0,5870,3621,4399],[690,689,6742,0,690,689,6742],[6601,27,1962,0,6601,27,1962],[12,3355,4400,0,12,3355,4400],[6818,4829,3148,0,6818,4829,3148],[3009,7016,3649,0,3009,7016,3649],[5330,1950,6224,0,5330,1950,6224],[215,2970,213,0,215,2970,213],[5210,6151,5275,0,5210,6151,5275],[6312,4909,2194,0,6312,4909,2194],[5964,4571,7078,0,5964,4571,7078],[1791,3469,1792,0,1791,3469,1792],[116,1705,5119,0,116,1705,5119],[7436,1577,1579,0,7436,1577,1579],[28,27,6601,0,28,27,6601],[3005,3004,6213,0,3005,3004,6213],[1215,5007,1216,0,1215,5007,1216],[2772,4928,1865,0,2772,4928,1865],[7214,860,862,0,7214,860,862],[393,2142,4981,0,393,2142,4981],[6953,1407,7437,0,6953,1407,7437],[6593,1830,3915,0,6593,1830,3915],[4259,2397,6948,0,4259,2397,6948],[4298,1119,1118,0,4298,1119,1118],[6583,3235,6850,0,6583,3235,6850],[7085,6605,1962,0,7085,6605,1962],[7085,1962,2152,0,7085,1962,2152],[1161,1920,4875,0,1161,1920,4875],[4398,3178,4397,0,4398,3178,4397],[2390,4593,1477,0,2390,4593,1477],[1574,5860,1575,0,1574,5860,1575],[7190,6151,7373,0,7190,6151,7373],[3154,1011,1010,0,3154,1011,1010],[4714,2832,2834,0,4714,2832,2834],[1691,7438,1692,0,1691,7438,1692],[6605,6601,1962,0,6605,6601,1962],[4393,4392,5186,0,4393,4392,5186],[78,2250,3437,0,78,2250,3437],[7417,5482,5889,0,7417,5482,5889],[699,7153,3501,0,699,7153,3501],[2572,2086,4001,0,2572,2086,4001],[6038,2467,7439,0,6038,2467,7439],[3241,6136,5015,0,3241,6136,5015],[4204,2625,2624,0,4204,2625,2624],[1393,3673,3672,0,1393,3673,3672],[6189,2335,534,0,6189,2335,534],[5781,1112,1111,0,5781,1112,1111],[7440,4691,6502,0,7440,4691,6502],[2634,5898,1049,0,2634,5898,1049],[1701,4404,4406,0,1701,4404,4406],[4713,6038,7139,0,4713,6038,7139],[4144,4545,7441,0,4144,4545,7441],[1990,4222,1402,0,1990,4222,1402],[435,5916,6007,0,435,5916,6007],[4144,7441,1497,0,4144,7441,1497],[5550,3003,345,0,5550,3003,345],[7442,1001,6822,0,7442,1001,6822],[7216,7217,5532,0,7216,7217,5532],[2064,516,2065,0,2064,516,2065],[7443,7444,2646,0,7443,7444,2646],[7443,2646,668,0,7443,2646,668],[6174,6808,4367,0,6174,6808,4367],[7238,7239,7353,0,7238,7239,7353],[7145,3373,3372,0,7145,3373,3372],[1233,1232,3956,0,1233,1232,3956],[4984,6358,139,0,4984,6358,139],[4825,6060,7006,0,4825,6060,7006],[5243,5231,6351,0,5243,5231,6351],[3435,5022,3735,0,3435,5022,3735],[6011,422,5126,0,6011,422,5126],[5569,5568,3851,0,5569,5568,3851],[7445,7446,7443,0,7445,7446,7443],[2061,1185,1975,0,2061,1185,1975],[7446,7444,7443,0,7446,7444,7443],[4362,4363,223,0,4362,4363,223],[6178,5349,7447,0,6178,5349,7447],[5932,1498,4382,0,5932,1498,4382],[2061,2060,1185,0,2061,2060,1185],[1109,1108,1381,0,1109,1108,1381],[2876,2646,7444,0,2876,2646,7444],[2876,7444,7446,0,2876,7444,7446],[2077,3553,3554,0,2077,3553,3554],[1680,5983,1678,0,1680,5983,1678],[2882,4448,1170,0,2882,4448,1170],[5094,1325,1949,0,5094,1325,1949],[1467,7448,7449,0,1467,7448,7449],[788,2599,4183,0,788,2599,4183],[1198,3175,2080,0,1198,3175,2080],[684,4423,682,0,684,4423,682],[649,3234,4072,0,649,3234,4072],[4560,7135,354,0,4560,7135,354],[4468,900,2213,0,4468,900,2213],[341,5897,339,0,341,5897,339],[3817,7329,7019,0,3817,7329,7019],[2781,2783,7395,0,2781,2783,7395],[7238,7450,5935,0,7238,7450,5935],[4702,2553,5638,0,4702,2553,5638],[4715,5253,3881,0,4715,5253,3881],[6191,2500,6822,0,6191,2500,6822],[2010,6724,5121,0,2010,6724,5121],[6939,1402,4383,0,6939,1402,4383],[3777,3779,5079,0,3777,3779,5079],[4084,2922,7451,0,4084,2922,7451],[2989,6467,2988,0,2989,6467,2988],[2723,7352,7452,0,2723,7352,7452],[2425,2466,943,0,2425,2466,943],[6469,6384,412,0,6469,6384,412],[2478,5271,443,0,2478,5271,443],[7453,5487,6177,0,7453,5487,6177],[4349,3100,5498,0,4349,3100,5498],[6130,4625,5183,0,6130,4625,5183],[945,947,6377,0,945,947,6377],[4378,4380,227,0,4378,4380,227],[7445,7454,7446,0,7445,7454,7446],[4265,648,4266,0,4265,648,4266],[3819,3821,5877,0,3819,3821,5877],[7150,5581,776,0,7150,5581,776],[7179,6789,559,0,7179,6789,559],[246,248,4402,0,246,248,4402],[6754,1268,6755,0,6754,1268,6755],[2907,4809,2908,0,2907,4809,2908],[3953,6518,6936,0,3953,6518,6936],[7455,2278,5976,0,7455,2278,5976],[3083,3082,7456,0,3083,3082,7456],[6779,3826,7258,0,6779,3826,7258],[5844,4580,6594,0,5844,4580,6594],[7457,2709,7458,0,7457,2709,7458],[7459,7445,7460,0,7459,7445,7460],[404,406,4457,0,404,406,4457],[842,3450,843,0,842,3450,843],[3579,7037,3580,0,3579,7037,3580],[4764,6309,6548,0,4764,6309,6548],[5824,3455,3182,0,5824,3455,3182],[6185,664,7461,0,6185,664,7461],[4599,880,2058,0,4599,880,2058],[872,4913,873,0,872,4913,873],[3977,7462,5660,0,3977,7462,5660],[6209,4695,746,0,6209,4695,746],[6981,6007,6797,0,6981,6007,6797],[7463,3894,2178,0,7463,3894,2178],[6368,1119,4299,0,6368,1119,4299],[5428,2744,6880,0,5428,2744,6880],[667,7460,7443,0,667,7460,7443],[668,667,7443,0,668,667,7443],[7464,7431,3014,0,7464,7431,3014],[7465,769,4503,0,7465,769,4503],[675,677,7466,0,675,677,7466],[3773,683,7467,0,3773,683,7467],[983,4215,7405,0,983,4215,7405],[2718,6291,5997,0,2718,6291,5997],[1326,1327,3418,0,1326,1327,3418],[7445,7443,7460,0,7445,7443,7460],[2942,2523,6249,0,2942,2523,6249],[1898,1900,3675,0,1898,1900,3675],[2554,1208,1207,0,2554,1208,1207],[5956,3448,464,0,5956,3448,464],[2579,2581,6474,0,2579,2581,6474],[1904,1919,1905,0,1904,1919,1905],[1261,3876,3344,0,1261,3876,3344],[266,2514,1183,0,266,2514,1183],[1353,4523,1354,0,1353,4523,1354],[7194,7118,7195,0,7194,7118,7195],[5896,3679,5891,0,5896,3679,5891],[6518,4088,6936,0,6518,4088,6936],[3895,7468,3368,0,3895,7468,3368],[2462,2464,3710,0,2462,2464,3710],[371,5577,5576,0,371,5577,5576],[2951,3541,7469,0,2951,3541,7469],[4308,4307,253,0,4308,4307,253],[2516,1183,2514,0,2516,1183,2514],[2459,2691,1466,0,2459,2691,1466],[3883,2844,2264,0,3883,2844,2264],[4412,4405,5332,0,4412,4405,5332],[3493,428,1883,0,3493,428,1883],[2793,6596,2226,0,2793,6596,2226],[4650,3938,887,0,4650,3938,887],[614,2143,615,0,614,2143,615],[5785,5920,1867,0,5785,5920,1867],[7445,7470,7454,0,7445,7470,7454],[6506,1008,5822,0,6506,1008,5822],[5486,1112,6222,0,5486,1112,6222],[1810,541,3811,0,1810,541,3811],[7471,7203,7269,0,7471,7203,7269],[7472,1163,1162,0,7472,1163,1162],[4024,3758,4112,0,4024,3758,4112],[4303,4542,4304,0,4303,4542,4304],[7473,427,7474,0,7473,427,7474],[5964,7466,677,0,5964,7466,677],[5574,3105,6704,0,5574,3105,6704],[1081,4876,5655,0,1081,4876,5655],[5257,1227,1226,0,5257,1227,1226],[2125,3653,5511,0,2125,3653,5511],[3507,6449,2447,0,3507,6449,2447],[1520,1522,5707,0,1520,1522,5707],[257,1380,1592,0,257,1380,1592],[6726,5185,1524,0,6726,5185,1524],[6350,5230,7050,0,6350,5230,7050],[5356,271,7267,0,5356,271,7267],[2371,2373,7165,0,2371,2373,7165],[1943,7335,7209,0,1943,7335,7209],[1776,6172,4678,0,1776,6172,4678],[2632,231,5536,0,2632,231,5536],[3050,3973,6735,0,3050,3973,6735],[2916,4247,902,0,2916,4247,902],[5196,7192,5436,0,5196,7192,5436],[6533,7319,4785,0,6533,7319,4785],[5693,5763,6793,0,5693,5763,6793],[2916,6816,4247,0,2916,6816,4247],[4503,7475,7476,0,4503,7475,7476],[4382,6173,5932,0,4382,6173,5932],[4053,1287,1286,0,4053,1287,1286],[6130,7066,6131,0,6130,7066,6131],[6931,6930,1571,0,6931,6930,1571],[2674,2673,2418,0,2674,2673,2418],[1343,592,7188,0,1343,592,7188],[4985,4547,4070,0,4985,4547,4070],[3477,2306,4940,0,3477,2306,4940],[2582,2584,5886,0,2582,2584,5886],[4345,7326,4749,0,4345,7326,4749],[7477,3572,3807,0,7477,3572,3807],[4066,3140,3939,0,4066,3140,3939],[7470,7445,7459,0,7470,7445,7459],[5643,5107,7478,0,5643,5107,7478],[5589,5397,1575,0,5589,5397,1575],[1937,7479,7480,0,1937,7479,7480],[1034,1036,1380,0,1034,1036,1380],[4030,1253,3603,0,4030,1253,3603],[3262,3992,2822,0,3262,3992,2822],[475,7481,476,0,475,7481,476],[2068,4418,6487,0,2068,4418,6487],[4340,3275,2314,0,4340,3275,2314],[6615,2971,215,0,6615,2971,215],[947,1122,6378,0,947,1122,6378],[2426,3614,4995,0,2426,3614,4995],[5729,852,1022,0,5729,852,1022],[1940,3130,4759,0,1940,3130,4759],[5571,5086,5572,0,5571,5086,5572],[7436,3525,1577,0,7436,3525,1577],[345,347,1808,0,345,347,1808],[3910,2313,3847,0,3910,2313,3847],[2331,2333,4958,0,2331,2333,4958],[6071,3418,42,0,6071,3418,42],[6487,4418,1444,0,6487,4418,1444],[6144,3282,4495,0,6144,3282,4495],[6633,3461,6901,0,6633,3461,6901],[7470,7459,101,0,7470,7459,101],[6322,906,905,0,6322,906,905],[2356,4422,2357,0,2356,4422,2357],[7482,210,4397,0,7482,210,4397],[7470,101,103,0,7470,101,103],[2756,5493,5174,0,2756,5493,5174],[2564,7483,7320,0,2564,7483,7320],[7484,4119,4005,0,7484,4119,4005],[4195,4205,4440,0,4195,4205,4440],[5193,5195,3992,0,5193,5195,3992],[5197,3573,7279,0,5197,3573,7279],[667,1851,7460,0,667,1851,7460],[6049,6557,2606,0,6049,6557,2606],[5153,2249,3223,0,5153,2249,3223],[7459,7460,1851,0,7459,7460,1851],[6181,2635,1419,0,6181,2635,1419],[3298,5213,5371,0,3298,5213,5371],[2707,392,2708,0,2707,392,2708],[3109,7469,1831,0,3109,7469,1831],[5942,5941,5746,0,5942,5941,5746],[3695,3213,3212,0,3695,3213,3212],[7055,6552,573,0,7055,6552,573],[3470,6957,48,0,3470,6957,48],[4718,5827,676,0,4718,5827,676],[4310,6095,3678,0,4310,6095,3678],[5283,1440,6627,0,5283,1440,6627],[534,536,3705,0,534,536,3705],[3958,7397,3959,0,3958,7397,3959],[5403,4884,2572,0,5403,4884,2572],[5657,4585,2236,0,5657,4585,2236],[2724,7397,2725,0,2724,7397,2725],[352,5308,353,0,352,5308,353],[5912,3065,6406,0,5912,3065,6406],[2076,7485,46,0,2076,7485,46],[6942,3285,1749,0,6942,3285,1749],[7486,1113,5486,0,7486,1113,5486],[101,7459,1851,0,101,7459,1851],[4006,2285,2377,0,4006,2285,2377],[4078,2002,3939,0,4078,2002,3939],[5366,5136,7137,0,5366,5136,7137],[2623,2625,7430,0,2623,2625,7430],[6368,3172,1119,0,6368,3172,1119],[4170,4526,4171,0,4170,4526,4171],[3658,4291,3338,0,3658,4291,3338],[4664,5250,7334,0,4664,5250,7334],[4033,2541,2543,0,4033,2541,2543],[6461,6866,4425,0,6461,6866,4425],[1233,5747,3921,0,1233,5747,3921],[2963,2962,5478,0,2963,2962,5478],[5976,164,163,0,5976,164,163],[2586,4220,4683,0,2586,4220,4683],[5729,4414,4415,0,5729,4414,4415],[6987,4786,4680,0,6987,4786,4680],[5417,7046,4874,0,5417,7046,4874],[3152,246,5158,0,3152,246,5158],[2090,2604,2091,0,2090,2604,2091],[2046,6658,6672,0,2046,6658,6672],[2070,5564,5563,0,2070,5564,5563],[7487,1795,6161,0,7487,1795,6161],[3461,3460,4133,0,3461,3460,4133],[1518,5237,6193,0,1518,5237,6193],[6629,3321,7226,0,6629,3321,7226],[5733,4630,1229,0,5733,4630,1229],[4452,1059,1058,0,4452,1059,1058],[5361,7488,467,0,5361,7488,467],[6734,170,169,0,6734,170,169],[6903,5463,5462,0,6903,5463,5462],[7489,7490,3142,0,7489,7490,3142],[1811,1810,633,0,1811,1810,633],[3791,4566,3792,0,3791,4566,3792],[2914,4441,6514,0,2914,4441,6514],[6126,6127,6429,0,6126,6127,6429],[1378,4243,1944,0,1378,4243,1944],[994,7491,7492,0,994,7491,7492],[2640,1904,6217,0,2640,1904,6217],[6403,6054,5240,0,6403,6054,5240],[7054,1525,143,0,7054,1525,143],[962,4075,691,0,962,4075,691],[7039,1005,1004,0,7039,1005,1004],[4373,4372,2888,0,4373,4372,2888],[7493,2045,978,0,7493,2045,978],[4170,6921,4526,0,4170,6921,4526],[6359,3188,4704,0,6359,3188,4704],[7494,46,7485,0,7494,46,7485],[2409,5591,2410,0,2409,5591,2410],[22,64,1363,0,22,64,1363],[1272,1271,5983,0,1272,1271,5983],[5974,5973,6908,0,5974,5973,6908],[6030,6403,6031,0,6030,6403,6031],[5938,6497,4895,0,5938,6497,4895],[5640,7495,4114,0,5640,7495,4114],[6170,1628,3736,0,6170,1628,3736],[5691,5690,853,0,5691,5690,853],[7007,7496,6538,0,7007,7496,6538],[2424,866,2465,0,2424,866,2465],[2505,7395,5901,0,2505,7395,5901],[4375,7497,1417,0,4375,7497,1417],[1707,6913,1708,0,1707,6913,1708],[5820,7178,1823,0,5820,7178,1823],[591,593,6707,0,591,593,6707],[2411,3211,2412,0,2411,3211,2412],[1306,3697,1307,0,1306,3697,1307],[1410,3756,3755,0,1410,3756,3755],[5949,6579,2621,0,5949,6579,2621],[1331,3745,4507,0,1331,3745,4507],[5883,2527,4962,0,5883,2527,4962],[827,388,828,0,827,388,828],[4238,4245,6357,0,4238,4245,6357],[7296,2255,6366,0,7296,2255,6366],[3780,329,7498,0,3780,329,7498],[3920,3919,5052,0,3920,3919,5052],[1339,5592,4613,0,1339,5592,4613],[2227,2844,2843,0,2227,2844,2843],[3504,4016,2685,0,3504,4016,2685],[2380,2508,2507,0,2380,2508,2507],[915,5254,704,0,915,5254,704],[7181,4042,4041,0,7181,4042,4041],[2000,1999,7499,0,2000,1999,7499],[5949,2621,4065,0,5949,2621,4065],[2667,7018,6853,0,2667,7018,6853],[5161,7193,163,0,5161,7193,163],[7057,7500,2788,0,7057,7500,2788],[2803,911,6866,0,2803,911,6866],[4898,7304,4899,0,4898,7304,4899],[4719,7501,5827,0,4719,7501,5827],[4619,6262,7502,0,4619,6262,7502],[7503,7504,7505,0,7503,7504,7505],[1509,782,1510,0,1509,782,1510],[3621,4015,3492,0,3621,4015,3492],[981,4742,7435,0,981,4742,7435],[2167,3019,2168,0,2167,3019,2168],[5127,1391,6319,0,5127,1391,6319],[237,328,238,0,237,328,238],[3468,3294,4416,0,3468,3294,4416],[2073,5406,2071,0,2073,5406,2071],[6950,7303,5092,0,6950,7303,5092],[6715,6400,6927,0,6715,6400,6927],[7506,7504,7503,0,7506,7504,7503],[3151,5912,367,0,3151,5912,367],[3374,5483,3375,0,3374,5483,3375],[4265,4267,4659,0,4265,4267,4659],[4979,6723,6722,0,4979,6723,6722],[6192,7005,3387,0,6192,7005,3387],[3318,7507,5167,0,3318,7507,5167],[6053,1591,2150,0,6053,1591,2150],[6092,6236,6093,0,6092,6236,6093],[2942,6249,5042,0,2942,6249,5042],[1758,4480,5452,0,1758,4480,5452],[3490,4743,6019,0,3490,4743,6019],[2314,2313,4793,0,2314,2313,4793],[5885,2118,5360,0,5885,2118,5360],[1658,3015,1659,0,1658,3015,1659],[1041,2738,5166,0,1041,2738,5166],[4488,5546,6516,0,4488,5546,6516],[7114,7304,7073,0,7114,7304,7073],[6635,4273,6298,0,6635,4273,6298],[5132,1460,1462,0,5132,1460,1462],[6693,6666,224,0,6693,6666,224],[7183,6992,3457,0,7183,6992,3457],[2063,2690,4360,0,2063,2690,4360],[3014,3013,7508,0,3014,3013,7508],[4862,1499,5933,0,4862,1499,5933],[6327,6429,5207,0,6327,6429,5207],[4314,6357,2296,0,4314,6357,2296],[3500,2862,4931,0,3500,2862,4931],[3966,5390,5389,0,3966,5390,5389],[1520,1955,6555,0,1520,1955,6555],[1604,1603,1099,0,1604,1603,1099],[1336,2736,2770,0,1336,2736,2770],[1388,2809,6698,0,1388,2809,6698],[6640,6676,6068,0,6640,6676,6068],[6066,5082,6681,0,6066,5082,6681],[4833,6630,2753,0,4833,6630,2753],[969,2282,3962,0,969,2282,3962],[986,6265,2917,0,986,6265,2917],[6069,7509,6070,0,6069,7509,6070],[4379,5420,1280,0,4379,5420,1280],[5290,3111,7166,0,5290,3111,7166],[7434,982,7435,0,7434,982,7435],[1951,3137,2042,0,1951,3137,2042],[2955,2437,2436,0,2955,2437,2436],[2903,6708,2901,0,2903,6708,2901],[4961,5866,6375,0,4961,5866,6375],[1129,4370,4369,0,1129,4370,4369],[1895,1897,4052,0,1895,1897,4052],[7510,7504,7506,0,7510,7504,7506],[5681,2695,5822,0,5681,2695,5822],[975,7511,6852,0,975,7511,6852],[5115,5117,4421,0,5115,5117,4421],[2216,2861,5282,0,2216,2861,5282],[3611,3612,1484,0,3611,3612,1484],[54,6813,84,0,54,6813,84],[1251,756,758,0,1251,756,758],[5495,5537,2829,0,5495,5537,2829],[3834,7471,7269,0,3834,7471,7269],[3880,2742,4629,0,3880,2742,4629],[3397,4806,7132,0,3397,4806,7132],[5620,7512,1921,0,5620,7512,1921],[4068,5522,5379,0,4068,5522,5379],[3112,2021,6199,0,3112,2021,6199],[5380,1617,5381,0,5380,1617,5381],[429,4300,1607,0,429,4300,1607],[5696,1141,53,0,5696,1141,53],[7068,6380,3164,0,7068,6380,3164],[1545,1998,1743,0,1545,1998,1743],[5776,5191,5192,0,5776,5191,5192],[1592,1805,4709,0,1592,1805,4709],[6670,5571,6923,0,6670,5571,6923],[3276,3928,6338,0,3276,3928,6338],[5620,1682,1681,0,5620,1682,1681],[5881,6387,7078,0,5881,6387,7078],[3433,6883,3434,0,3433,6883,3434],[6471,4096,6392,0,6471,4096,6392],[5833,5853,5834,0,5833,5853,5834],[1034,1380,5281,0,1034,1380,5281],[400,2847,2545,0,400,2847,2545],[5620,3192,7512,0,5620,3192,7512],[570,4418,2068,0,570,4418,2068],[1921,7512,7513,0,1921,7512,7513],[716,7514,4305,0,716,7514,4305],[269,4326,2937,0,269,4326,2937],[497,7054,1976,0,497,7054,1976],[5453,5258,6954,0,5453,5258,6954],[7051,6763,1883,0,7051,6763,1883],[6888,1034,5281,0,6888,1034,5281],[7092,5036,7093,0,7092,5036,7093],[1446,7430,6898,0,1446,7430,6898],[3679,2191,5891,0,3679,2191,5891],[67,7011,7515,0,67,7011,7515],[3373,7171,2801,0,3373,7171,2801],[5759,6500,6499,0,5759,6500,6499],[1542,5526,1641,0,1542,5526,1641],[6443,7516,4637,0,6443,7516,4637],[3960,2003,2002,0,3960,2003,2002],[7009,823,822,0,7009,823,822],[6344,1786,2759,0,6344,1786,2759],[684,683,2357,0,684,683,2357],[5102,2833,4242,0,5102,2833,4242],[5510,7517,6723,0,5510,7517,6723],[5172,4655,4657,0,5172,4655,4657],[4583,4585,7461,0,4583,4585,7461],[7328,5422,6289,0,7328,5422,6289],[1483,913,3069,0,1483,913,3069],[5401,2196,7518,0,5401,2196,7518],[6818,7022,2837,0,6818,7022,2837],[5275,2384,2386,0,5275,2384,2386],[5726,3599,4936,0,5726,3599,4936],[7186,6758,6896,0,7186,6758,6896],[5168,1626,2364,0,5168,1626,2364],[6021,5853,5852,0,6021,5853,5852],[1548,6683,5660,0,1548,6683,5660],[5112,1868,5920,0,5112,1868,5920],[7468,7519,3368,0,7468,7519,3368],[118,7331,119,0,118,7331,119],[4229,6595,6394,0,4229,6595,6394],[1276,1278,2696,0,1276,1278,2696],[1043,1042,1862,0,1043,1042,1862],[2329,6681,2330,0,2329,6681,2330],[3293,6338,3928,0,3293,6338,3928],[1524,3999,6101,0,1524,3999,6101],[4141,1497,7441,0,4141,1497,7441],[7520,5818,7243,0,7520,5818,7243],[4807,2842,3849,0,4807,2842,3849],[2168,6648,6584,0,2168,6648,6584],[5538,5539,1656,0,5538,5539,1656],[4375,7521,2955,0,4375,7521,2955],[4503,771,7475,0,4503,771,7475],[1587,3258,5393,0,1587,3258,5393],[2222,7522,3483,0,2222,7522,3483],[122,998,4882,0,122,998,4882],[7505,7513,5925,0,7505,7513,5925],[1155,6147,4322,0,1155,6147,4322],[2878,738,2498,0,2878,738,2498],[6015,7354,7353,0,6015,7354,7353],[6839,6109,7523,0,6839,6109,7523],[5962,7524,6084,0,5962,7524,6084],[147,2057,3287,0,147,2057,3287],[1187,6684,6263,0,1187,6684,6263],[658,5012,4103,0,658,5012,4103],[6415,7154,1940,0,6415,7154,1940],[1608,1610,4228,0,1608,1610,4228],[7504,7513,7505,0,7504,7513,7505],[4341,3482,5665,0,4341,3482,5665],[4621,4533,7525,0,4621,4533,7525],[4162,6812,7526,0,4162,6812,7526],[7358,5026,5970,0,7358,5026,5970],[5832,6748,5484,0,5832,6748,5484],[5076,5423,1125,0,5076,5423,1125],[944,2466,4455,0,944,2466,4455],[341,1368,6886,0,341,1368,6886],[1920,1921,7513,0,1920,1921,7513],[5514,85,84,0,5514,85,84],[5749,5343,7221,0,5749,5343,7221],[5879,5842,5841,0,5879,5842,5841],[15,6496,5748,0,15,6496,5748],[1987,3875,789,0,1987,3875,789],[6142,301,300,0,6142,301,300],[5776,6734,169,0,5776,6734,169],[7338,5629,5628,0,7338,5629,5628],[4580,5455,4581,0,4580,5455,4581],[3515,7527,3516,0,3515,7527,3516],[1954,4624,7305,0,1954,4624,7305],[4550,4549,4437,0,4550,4549,4437],[4505,314,1531,0,4505,314,1531],[6067,2677,121,0,6067,2677,121],[2172,3124,3424,0,2172,3124,3424],[6987,5880,2763,0,6987,5880,2763],[3948,6623,2246,0,3948,6623,2246],[5675,4781,6526,0,5675,4781,6526],[7528,98,100,0,7528,98,100],[4915,1939,4945,0,4915,1939,4945],[1258,1535,1259,0,1258,1535,1259],[5218,1881,4169,0,5218,1881,4169],[5671,4110,5507,0,5671,4110,5507],[3749,1827,4702,0,3749,1827,4702],[571,573,7529,0,571,573,7529],[5598,4783,85,0,5598,4783,85],[4755,6855,3646,0,4755,6855,3646],[7292,4543,4542,0,7292,4543,4542],[6950,4645,7303,0,6950,4645,7303],[5340,3061,6534,0,5340,3061,6534],[2066,4452,1058,0,2066,4452,1058],[3908,608,7036,0,3908,608,7036],[5135,7032,1230,0,5135,7032,1230],[767,766,922,0,767,766,922],[4776,6251,4777,0,4776,6251,4777],[1920,7513,7530,0,1920,7513,7530],[1920,7530,4464,0,1920,7530,4464],[6181,1418,3777,0,6181,1418,3777],[4751,4750,341,0,4751,4750,341],[7531,4337,7532,0,7531,4337,7532],[286,385,384,0,286,385,384],[2054,3665,4378,0,2054,3665,4378],[3029,323,2986,0,3029,323,2986],[5484,7533,5485,0,5484,7533,5485],[6225,3897,2956,0,6225,3897,2956],[3073,6999,2863,0,3073,6999,2863],[725,724,4290,0,725,724,4290],[6819,6820,5450,0,6819,6820,5450],[7534,6793,6792,0,7534,6793,6792],[3156,3158,84,0,3156,3158,84],[7177,1134,4195,0,7177,1134,4195],[6859,1876,1875,0,6859,1876,1875],[2826,4172,2827,0,2826,4172,2827],[7266,5798,7535,0,7266,5798,7535],[3415,1655,1657,0,3415,1655,1657],[6752,7292,7536,0,6752,7292,7536],[6410,6409,558,0,6410,6409,558],[4708,6943,6065,0,4708,6943,6065],[7537,98,7528,0,7537,98,7528],[7530,7513,7504,0,7530,7513,7504],[1858,5664,4855,0,1858,5664,4855],[3663,5654,5647,0,3663,5654,5647],[3934,1735,580,0,3934,1735,580],[6411,6123,5384,0,6411,6123,5384],[7538,3521,3687,0,7538,3521,3687],[4816,5958,4723,0,4816,5958,4723],[2158,6002,1048,0,2158,6002,1048],[6937,6821,7539,0,6937,6821,7539],[1941,785,445,0,1941,785,445],[3756,6925,448,0,3756,6925,448],[2734,6894,6893,0,2734,6894,6893],[4590,4591,7479,0,4590,4591,7479],[5261,3289,249,0,5261,3289,249],[3413,6880,3414,0,3413,6880,3414],[3799,5969,5968,0,3799,5969,5968],[3366,7540,7138,0,3366,7540,7138],[6909,7541,7542,0,6909,7541,7542],[2690,2689,6340,0,2690,2689,6340],[7467,6885,7349,0,7467,6885,7349],[5380,1618,1617,0,5380,1618,1617],[3851,3853,4178,0,3851,3853,4178],[5100,7405,4215,0,5100,7405,4215],[3751,4671,1323,0,3751,4671,1323],[5919,6582,6458,0,5919,6582,6458],[2001,4066,3939,0,2001,4066,3939],[6503,4692,6083,0,6503,4692,6083],[1019,7543,4298,0,1019,7543,4298],[3530,3288,7261,0,3530,3288,7261],[4672,7544,5316,0,4672,7544,5316],[3409,3411,2901,0,3409,3411,2901],[6982,5346,5516,0,6982,5346,5516],[3643,715,714,0,3643,715,714],[4896,4897,829,0,4896,4897,829],[191,583,3661,0,191,583,3661],[6248,5042,6249,0,6248,5042,6249],[5052,3758,2815,0,5052,3758,2815],[4694,744,746,0,4694,744,746],[5779,2019,424,0,5779,2019,424],[5545,4959,5049,0,5545,4959,5049],[7545,4151,5432,0,7545,4151,5432],[4482,4481,6962,0,4482,4481,6962],[7530,7504,7510,0,7530,7504,7510],[4829,6405,243,0,4829,6405,243],[3989,1286,1288,0,3989,1286,1288],[6493,6463,6494,0,6493,6463,6494],[5473,2941,2940,0,5473,2941,2940],[5025,3681,5026,0,5025,3681,5026],[3906,3905,5670,0,3906,3905,5670],[6655,3304,5122,0,6655,3304,5122],[4426,4109,5434,0,4426,4109,5434],[2854,1889,3632,0,2854,1889,3632],[5476,5990,7190,0,5476,5990,7190],[3440,4797,3441,0,3440,4797,3441],[7073,2359,6975,0,7073,2359,6975],[2610,4648,2611,0,2610,4648,2611],[5028,1913,1915,0,5028,1913,1915],[5215,6822,1001,0,5215,6822,1001],[3964,4033,2543,0,3964,4033,2543],[7546,7127,7060,0,7546,7127,7060],[4238,5642,4239,0,4238,5642,4239],[1826,1371,5126,0,1826,1371,5126],[5359,6505,3008,0,5359,6505,3008],[3741,6799,3742,0,3741,6799,3742],[221,6153,219,0,221,6153,219],[2228,1474,3877,0,2228,1474,3877],[559,6789,560,0,559,6789,560],[2325,2094,6690,0,2325,2094,6690],[5913,1869,1868,0,5913,1869,1868],[2015,7547,5753,0,2015,7547,5753],[7469,3541,1831,0,7469,3541,1831],[6596,6597,2816,0,6596,6597,2816],[1983,6829,1981,0,1983,6829,1981],[6964,5406,2197,0,6964,5406,2197],[2589,2010,2587,0,2589,2010,2587],[7173,7109,1236,0,7173,7109,1236],[2024,1960,2251,0,2024,1960,2251],[2534,2536,4929,0,2534,2536,4929],[229,7548,6266,0,229,7548,6266],[5362,5582,7549,0,5362,5582,7549],[3293,5246,7550,0,3293,5246,7550],[4619,7502,5320,0,4619,7502,5320],[7236,6117,4820,0,7236,6117,4820],[4317,3331,6775,0,4317,3331,6775],[1832,3541,2951,0,1832,3541,2951],[3899,4667,3900,0,3899,4667,3900],[4255,5570,4254,0,4255,5570,4254],[1601,7424,1602,0,1601,7424,1602],[3293,3928,3927,0,3293,3928,3927],[7551,7552,7200,0,7551,7552,7200],[3912,4364,3913,0,3912,4364,3913],[4084,3829,4693,0,4084,3829,4693],[2206,826,825,0,2206,826,825],[4401,4943,4402,0,4401,4943,4402],[172,7251,7523,0,172,7251,7523],[5692,669,4463,0,5692,669,4463],[1286,6288,587,0,1286,6288,587],[2270,7403,5777,0,2270,7403,5777],[1171,6971,5040,0,1171,6971,5040],[5577,6728,1989,0,5577,6728,1989],[7510,4464,7530,0,7510,4464,7530],[4012,7308,938,0,4012,7308,938],[2669,2839,378,0,2669,2839,378],[1269,7553,2433,0,1269,7553,2433],[7389,2850,5845,0,7389,2850,5845],[3817,7019,4136,0,3817,7019,4136],[2369,6829,2370,0,2369,6829,2370],[929,7554,1188,0,929,7554,1188],[5096,5095,721,0,5096,5095,721],[4330,1901,3845,0,4330,1901,3845],[3778,7555,640,0,3778,7555,640],[2767,3295,6637,0,2767,3295,6637],[1736,1738,3155,0,1736,1738,3155],[7556,7557,7558,0,7556,7557,7558],[5854,7066,6211,0,5854,7066,6211],[5713,5278,5714,0,5713,5278,5714],[2779,7559,7312,0,2779,7559,7312],[6230,6063,7082,0,6230,6063,7082],[7252,1669,1671,0,7252,1669,1671],[2077,3554,7477,0,2077,3554,7477],[6181,2795,2794,0,6181,2795,2794],[6150,1703,7412,0,6150,1703,7412],[6230,7082,2983,0,6230,7082,2983],[165,3494,5548,0,165,3494,5548],[6514,5591,6513,0,6514,5591,6513],[3159,3330,3329,0,3159,3330,3329],[652,2876,6535,0,652,2876,6535],[6361,7560,318,0,6361,7560,318],[932,6793,7534,0,932,6793,7534],[6160,2786,2788,0,6160,2786,2788],[4196,4046,4047,0,4196,4046,4047],[2602,2915,2603,0,2602,2915,2603],[3546,6535,2876,0,3546,6535,2876],[5443,6936,6608,0,5443,6936,6608],[6656,249,3288,0,6656,249,3288],[136,5535,7087,0,136,5535,7087],[7311,7310,5794,0,7311,7310,5794],[1270,6598,6179,0,1270,6598,6179],[5443,6608,3799,0,5443,6608,3799],[5067,3930,5159,0,5067,3930,5159],[6421,6842,6422,0,6421,6842,6422],[318,320,7532,0,318,320,7532],[419,5646,7561,0,419,5646,7561],[3613,1157,5315,0,3613,1157,5315],[6780,847,6717,0,6780,847,6717],[678,680,1797,0,678,680,1797],[2727,5358,3703,0,2727,5358,3703],[288,290,6702,0,288,290,6702],[2652,2651,6233,0,2652,2651,6233],[5797,2876,652,0,5797,2876,652],[6010,1373,1324,0,6010,1373,1324],[2472,2771,4631,0,2472,2771,4631],[2159,1070,7281,0,2159,1070,7281],[6426,6439,7350,0,6426,6439,7350],[6761,5430,5601,0,6761,5430,5601],[2463,7562,1054,0,2463,7562,1054],[4413,1359,5164,0,4413,1359,5164],[4516,4515,5272,0,4516,4515,5272],[1139,1141,5696,0,1139,1141,5696],[7361,1654,4235,0,7361,1654,4235],[3925,7128,7563,0,3925,7128,7563],[81,6891,5413,0,81,6891,5413],[6343,4902,7251,0,6343,4902,7251],[7113,4832,4831,0,7113,4832,4831],[2849,5846,5845,0,2849,5846,5845],[4602,7564,4541,0,4602,7564,4541],[5925,7512,6227,0,5925,7512,6227],[5925,6227,5926,0,5925,6227,5926],[2881,5214,6575,0,2881,5214,6575],[7261,3444,3531,0,7261,3444,3531],[7360,4652,4651,0,7360,4652,4651],[6394,5083,4230,0,6394,5083,4230],[2450,4091,5110,0,2450,4091,5110],[4207,1741,1740,0,4207,1741,1740],[3813,2367,3093,0,3813,2367,3093],[7565,2275,3757,0,7565,2275,3757],[5402,5403,7324,0,5402,5403,7324],[5363,4009,4010,0,5363,4009,4010],[1773,6347,4150,0,1773,6347,4150],[5489,6870,7022,0,5489,6870,7022],[3052,6617,2251,0,3052,6617,2251],[6315,5738,6862,0,6315,5738,6862],[4711,5535,1018,0,4711,5535,1018],[1583,7566,7170,0,1583,7566,7170],[2218,1923,2862,0,2218,1923,2862],[2593,709,7567,0,2593,709,7567],[7320,7540,2565,0,7320,7540,2565],[6186,2453,2476,0,6186,2453,2476],[7568,2534,4929,0,7568,2534,4929],[7569,6261,6260,0,7569,6261,6260],[4576,673,1101,0,4576,673,1101],[6491,6486,7077,0,6491,6486,7077],[6227,7213,5926,0,6227,7213,5926],[1039,1041,5166,0,1039,1041,5166],[7051,430,7121,0,7051,430,7121],[469,2987,4108,0,469,2987,4108],[3627,1653,3020,0,3627,1653,3020],[3907,3633,6050,0,3907,3633,6050],[7033,6005,7357,0,7033,6005,7357],[192,194,6150,0,192,194,6150],[5113,7570,5114,0,5113,7570,5114],[9,5868,2719,0,9,5868,2719],[688,690,5140,0,688,690,5140],[191,1508,583,0,191,1508,583],[6786,6058,6295,0,6786,6058,6295],[2721,2723,3383,0,2721,2723,3383],[6324,1140,1139,0,6324,1140,1139],[1601,1518,6193,0,1601,1518,6193],[461,5449,459,0,461,5449,459],[5871,4014,2658,0,5871,4014,2658],[7571,369,4648,0,7571,369,4648],[1959,3052,2251,0,1959,3052,2251],[873,4912,787,0,873,4912,787],[6045,4639,2671,0,6045,4639,2671],[4028,2574,5056,0,4028,2574,5056],[5970,7572,6346,0,5970,7572,6346],[7573,2477,6900,0,7573,2477,6900],[2320,4687,3078,0,2320,4687,3078],[4632,4654,3093,0,4632,4654,3093],[23,22,6984,0,23,22,6984],[4754,705,3122,0,4754,705,3122],[6976,1387,961,0,6976,1387,961],[6997,6617,6240,0,6997,6617,6240],[6820,3115,7574,0,6820,3115,7574],[5939,3960,4651,0,5939,3960,4651],[3584,3583,381,0,3584,3583,381],[2028,5252,4715,0,2028,5252,4715],[5353,2709,7457,0,5353,2709,7457],[6061,577,3794,0,6061,577,3794],[1690,830,6200,0,1690,830,6200],[228,1929,229,0,228,1929,229],[6776,218,217,0,6776,218,217],[1834,6481,6714,0,1834,6481,6714],[927,929,1188,0,927,929,1188],[3780,7498,7363,0,3780,7498,7363],[6574,2013,5753,0,6574,2013,5753],[5800,2673,3057,0,5800,2673,3057],[2793,2226,1646,0,2793,2226,1646],[5917,4225,2013,0,5917,4225,2013],[2921,2923,1974,0,2921,2923,1974],[288,856,855,0,288,856,855],[2453,3270,2454,0,2453,3270,2454],[539,538,3766,0,539,538,3766],[4093,4400,5593,0,4093,4400,5593],[910,4811,5989,0,910,4811,5989],[7575,1389,4503,0,7575,1389,4503],[3759,5975,4614,0,3759,5975,4614],[3907,1305,4662,0,3907,1305,4662],[7288,5421,4806,0,7288,5421,4806],[7576,5124,1288,0,7576,5124,1288],[5634,3107,7271,0,5634,3107,7271],[4257,2910,308,0,4257,2910,308],[7151,776,6313,0,7151,776,6313],[2430,5864,6208,0,2430,5864,6208],[6970,2613,2563,0,6970,2613,2563],[3213,5261,3171,0,3213,5261,3171],[3360,739,738,0,3360,739,738],[2758,6632,2759,0,2758,6632,2759],[1544,1287,5643,0,1544,1287,5643],[6782,6996,862,0,6782,6996,862],[7255,7577,7578,0,7255,7577,7578],[3716,4437,4438,0,3716,4437,4438],[401,5372,4237,0,401,5372,4237],[5493,2755,5693,0,5493,2755,5693],[3772,2357,683,0,3772,2357,683],[7579,4671,3751,0,7579,4671,3751],[601,5783,3804,0,601,5783,3804],[4089,2254,4090,0,4089,2254,4090],[3929,3937,4582,0,3929,3937,4582],[5056,3680,3679,0,5056,3680,3679],[7580,2906,2905,0,7580,2906,2905],[7479,1937,1936,0,7479,1937,1936],[2282,7581,3903,0,2282,7581,3903],[834,7122,835,0,834,7122,835],[7582,6939,1500,0,7582,6939,1500],[5667,6373,7189,0,5667,6373,7189],[6693,4363,7583,0,6693,4363,7583],[6079,2189,2191,0,6079,2189,2191],[4276,3674,4277,0,4276,3674,4277],[817,5410,7584,0,817,5410,7584],[1953,6412,3054,0,1953,6412,3054],[788,4183,7539,0,788,4183,7539],[7585,6612,6097,0,7585,6612,6097],[848,1779,849,0,848,1779,849],[1415,1417,6389,0,1415,1417,6389],[7512,5925,7513,0,7512,5925,7513],[7330,505,5294,0,7330,505,5294],[6820,7574,795,0,6820,7574,795],[7136,5491,1037,0,7136,5491,1037],[373,53,52,0,373,53,52],[5908,1092,8,0,5908,1092,8],[2544,2048,2047,0,2544,2048,2047],[6128,5447,3698,0,6128,5447,3698],[4361,6340,5818,0,4361,6340,5818],[2026,6210,4296,0,2026,6210,4296],[4486,5863,5192,0,4486,5863,5192],[5044,2701,1291,0,5044,2701,1291],[4496,2501,7061,0,4496,2501,7061],[6101,4627,7562,0,6101,4627,7562],[3845,6803,7079,0,3845,6803,7079],[6451,6626,5931,0,6451,6626,5931],[4401,5260,3866,0,4401,5260,3866],[6954,7555,7586,0,6954,7555,7586],[6100,6099,6781,0,6100,6099,6781],[701,700,3088,0,701,700,3088],[793,5988,7024,0,793,5988,7024],[4688,6817,4697,0,4688,6817,4697],[6331,7587,6523,0,6331,7587,6523],[3943,1217,1219,0,3943,1217,1219],[2135,379,2743,0,2135,379,2743],[6457,7137,5136,0,6457,7137,5136],[5773,3280,3279,0,5773,3280,3279],[4634,4728,5385,0,4634,4728,5385],[324,326,4850,0,324,326,4850],[4989,6665,152,0,4989,6665,152],[6619,3827,6705,0,6619,3827,6705],[3106,1576,1908,0,3106,1576,1908],[6303,4499,7343,0,6303,4499,7343],[3138,3139,3430,0,3138,3139,3430],[6336,3808,2818,0,6336,3808,2818],[5658,770,2211,0,5658,770,2211],[5213,1984,2094,0,5213,1984,2094],[4480,406,1708,0,4480,406,1708],[6323,4788,2650,0,6323,4788,2650],[4232,6678,4660,0,4232,6678,4660],[1938,7154,4944,0,1938,7154,4944],[6273,6272,7588,0,6273,6272,7588],[2068,2070,6918,0,2068,2070,6918],[5298,5242,5241,0,5298,5242,5241],[3792,6794,7589,0,3792,6794,7589],[2067,711,7084,0,2067,711,7084],[1298,2838,1299,0,1298,2838,1299],[7000,7124,2291,0,7000,7124,2291],[2030,5506,7590,0,2030,5506,7590],[5384,1031,6257,0,5384,1031,6257],[7399,1711,2461,0,7399,1711,2461],[5115,5790,5789,0,5115,5790,5789],[465,7488,490,0,465,7488,490],[1039,7591,547,0,1039,7591,547],[6183,3400,3401,0,6183,3400,3401],[1919,1918,1905,0,1919,1918,1905],[6443,107,7516,0,6443,107,7516],[3587,6288,3988,0,3587,6288,3988],[5927,7505,5925,0,5927,7505,5925],[4010,2190,400,0,4010,2190,400],[1702,7592,200,0,1702,7592,200],[651,5654,4875,0,651,5654,4875],[974,7593,7172,0,974,7593,7172],[5471,4100,4099,0,5471,4100,4099],[5286,51,53,0,5286,51,53],[3192,6227,7512,0,3192,6227,7512],[7138,4481,7594,0,7138,4481,7594],[5472,6422,3044,0,5472,6422,3044],[6155,7298,5768,0,6155,7298,5768],[7234,5753,7547,0,7234,5753,7547],[4258,4260,6719,0,4258,4260,6719],[5218,5402,7324,0,5218,5402,7324],[5334,7521,1417,0,5334,7521,1417],[5519,6154,5520,0,5519,6154,5520],[7276,5535,4711,0,7276,5535,4711],[747,3737,748,0,747,3737,748],[5567,6510,7286,0,5567,6510,7286],[1192,848,850,0,1192,848,850],[1556,7231,5688,0,1556,7231,5688],[6059,4825,4824,0,6059,4825,4824],[4034,6969,7595,0,4034,6969,7595],[7185,7223,7224,0,7185,7223,7224],[1008,5979,5978,0,1008,5979,5978],[7596,5889,5888,0,7596,5889,5888],[6995,6704,548,0,6995,6704,548],[7597,5408,5407,0,7597,5408,5407],[2024,2251,6617,0,2024,2251,6617],[1749,1843,6942,0,1749,1843,6942],[4906,5675,6526,0,4906,5675,6526],[3233,3234,649,0,3233,3234,649],[1815,6286,6285,0,1815,6286,6285],[4658,7225,4659,0,4658,7225,4659],[111,113,1661,0,111,113,1661],[5023,4892,4830,0,5023,4892,4830],[916,4776,7554,0,916,4776,7554],[4327,5205,6127,0,4327,5205,6127],[6691,5077,4113,0,6691,5077,4113],[1223,4110,1224,0,1223,4110,1224],[5927,7503,7505,0,5927,7503,7505],[5781,6869,5782,0,5781,6869,5782],[2180,2182,7598,0,2180,2182,7598],[143,1525,5184,0,143,1525,5184],[5016,5653,6547,0,5016,5653,6547],[4261,4262,5070,0,4261,4262,5070],[1150,7566,1151,0,1150,7566,1151],[2937,5754,4729,0,2937,5754,4729],[4714,6149,1349,0,4714,6149,1349],[7473,7474,5217,0,7473,7474,5217],[5510,1806,1592,0,5510,1806,1592],[7599,7506,7503,0,7599,7506,7503],[5462,6531,4873,0,5462,6531,4873],[5881,5882,934,0,5881,5882,934],[4254,5280,2597,0,4254,5280,2597],[4505,7115,7104,0,4505,7115,7104],[7499,6838,2000,0,7499,6838,2000],[7347,7600,1994,0,7347,7600,1994],[3415,1124,5326,0,3415,1124,5326],[7550,5246,6338,0,7550,5246,6338],[287,69,285,0,287,69,285],[1759,7128,6140,0,1759,7128,6140],[2829,5536,2830,0,2829,5536,2830],[1991,7582,5578,0,1991,7582,5578],[1728,7601,5566,0,1728,7601,5566],[4552,2353,4045,0,4552,2353,4045],[7602,5089,5393,0,7602,5089,5393],[5195,5194,6059,0,5195,5194,6059],[5927,7599,7503,0,5927,7599,7503],[753,1352,754,0,753,1352,754],[4619,5320,925,0,4619,5320,925],[6521,3842,6522,0,6521,3842,6522],[7585,6613,6612,0,7585,6613,6612],[1593,7603,2577,0,1593,7603,2577],[7599,5926,6051,0,7599,5926,6051],[424,2019,335,0,424,2019,335],[839,2762,2763,0,839,2762,2763],[5197,7279,7604,0,5197,7279,7604],[3218,3045,1717,0,3218,3045,1717],[5498,4182,5499,0,5498,4182,5499],[5926,7599,5927,0,5926,7599,5927],[2074,3228,4603,0,2074,3228,4603],[1480,854,1481,0,1480,854,1481],[7058,2787,6396,0,7058,2787,6396],[2528,2530,7605,0,2528,2530,7605],[5792,2741,6033,0,5792,2741,6033],[4514,3564,3527,0,4514,3564,3527],[6482,7439,89,0,6482,7439,89],[2496,1860,1859,0,2496,1860,1859],[6926,4273,6635,0,6926,4273,6635],[6520,1668,3415,0,6520,1668,3415],[6692,6993,7129,0,6692,6993,7129],[3816,7083,7160,0,3816,7083,7160],[7606,3453,3452,0,7606,3453,3452],[1280,1282,5157,0,1280,1282,5157],[4166,6736,1805,0,4166,6736,1805],[6134,3063,7607,0,6134,3063,7607],[5561,6110,5559,0,5561,6110,5559],[3720,526,7608,0,3720,526,7608],[1611,5249,1612,0,1611,5249,1612],[3575,2538,2537,0,3575,2538,2537],[1543,7400,1907,0,1543,7400,1907],[2669,4511,7065,0,2669,4511,7065],[7352,6732,156,0,7352,6732,156],[613,3263,1633,0,613,3263,1633],[4364,7609,3913,0,4364,7609,3913],[6809,5849,6680,0,6809,5849,6680],[2832,1349,1348,0,2832,1349,1348],[5946,3963,7610,0,5946,3963,7610],[7545,7611,5966,0,7545,7611,5966],[5878,1744,5842,0,5878,1744,5842],[974,7172,7511,0,974,7172,7511],[6918,3562,5944,0,6918,3562,5944],[3474,3475,6579,0,3474,3475,6579],[7510,7422,7423,0,7510,7422,7423],[6714,3986,3441,0,6714,3986,3441],[2103,2105,6897,0,2103,2105,6897],[2845,1178,1715,0,2845,1178,1715],[3048,4251,7134,0,3048,4251,7134],[1253,1255,3655,0,1253,1255,3655],[2422,2421,4748,0,2422,2421,4748],[7510,7506,7422,0,7510,7506,7422],[1253,3655,6807,0,1253,3655,6807],[974,6044,7612,0,974,6044,7612],[6474,2581,7020,0,6474,2581,7020],[1950,1949,4612,0,1950,1949,4612],[3616,7613,2688,0,3616,7613,2688],[7614,1307,5697,0,7614,1307,5697],[3567,3566,3365,0,3567,3566,3365],[6659,4554,4172,0,6659,4554,4172],[2488,5771,1970,0,2488,5771,1970],[2268,2867,2269,0,2268,2867,2269],[6956,1762,3125,0,6956,1762,3125],[2747,2185,2184,0,2747,2185,2184],[5734,5333,2242,0,5734,5333,2242],[5480,7615,6773,0,5480,7615,6773],[6354,5590,6851,0,6354,5590,6851],[5612,5179,5178,0,5612,5179,5178],[5197,7604,6589,0,5197,7604,6589],[2146,2148,5437,0,2146,2148,5437],[4676,4943,4401,0,4676,4943,4401],[5371,2326,2484,0,5371,2326,2484],[75,77,6264,0,75,77,6264],[2241,4472,4943,0,2241,4472,4943],[6720,943,1608,0,6720,943,1608],[1200,45,1201,0,1200,45,1201],[4464,7510,7423,0,4464,7510,7423],[3758,5052,1302,0,3758,5052,1302],[2384,5991,2385,0,2384,5991,2385],[4415,5691,853,0,4415,5691,853],[4490,4196,161,0,4490,4196,161],[6794,3792,5991,0,6794,3792,5991],[995,1596,265,0,995,1596,265],[4310,2046,6672,0,4310,2046,6672],[3206,736,4450,0,3206,736,4450],[6361,6360,7560,0,6361,6360,7560],[2417,6139,450,0,2417,6139,450],[2432,7103,6598,0,2432,7103,6598],[999,5141,1000,0,999,5141,1000],[3248,3525,7436,0,3248,3525,7436],[4354,5931,6625,0,4354,5931,6625],[3860,3861,7380,0,3860,3861,7380],[3711,6784,4300,0,3711,6784,4300],[7472,1162,6952,0,7472,1162,6952],[4871,1567,4163,0,4871,1567,4163],[7573,2987,6042,0,7573,2987,6042],[5071,4078,2539,0,5071,4078,2539],[89,7439,90,0,89,7439,90],[2435,4246,6814,0,2435,4246,6814],[7605,2530,195,0,7605,2530,195],[4167,388,7616,0,4167,388,7616],[2119,66,65,0,2119,66,65],[1628,6161,1629,0,1628,6161,1629],[6486,4362,223,0,6486,4362,223],[5797,652,7419,0,5797,652,7419],[6883,3433,6800,0,6883,3433,6800],[2342,1757,2965,0,2342,1757,2965],[5284,3543,6796,0,5284,3543,6796],[1761,1981,6829,0,1761,1981,6829],[2836,4827,2837,0,2836,4827,2837],[6993,2159,4309,0,6993,2159,4309],[416,1910,7249,0,416,1910,7249],[4464,7419,652,0,4464,7419,652],[4694,1895,362,0,4694,1895,362],[5388,5390,1202,0,5388,5390,1202],[1191,4497,1189,0,1191,4497,1189],[318,4528,5247,0,318,4528,5247],[1153,4321,4658,0,1153,4321,4658],[6740,6804,211,0,6740,6804,211],[3546,2876,7454,0,3546,2876,7454],[3546,7454,110,0,3546,7454,110],[729,4064,5774,0,729,4064,5774],[6192,3387,2399,0,6192,3387,2399],[994,3296,1437,0,994,3296,1437],[3150,4813,2765,0,3150,4813,2765],[6313,284,5828,0,6313,284,5828],[318,7560,4528,0,318,7560,4528],[6839,6110,6109,0,6839,6110,6109],[689,688,5266,0,689,688,5266],[4727,4728,7617,0,4727,4728,7617],[3063,3062,4993,0,3063,3062,4993],[1836,6114,1837,0,1836,6114,1837],[7618,392,3765,0,7618,392,3765],[4530,5455,4531,0,4530,5455,4531],[3766,4746,5241,0,3766,4746,5241],[5491,6799,1037,0,5491,6799,1037],[6948,3390,3392,0,6948,3390,3392],[4407,2006,2005,0,4407,2006,2005],[4194,6741,5540,0,4194,6741,5540],[6254,5836,1752,0,6254,5836,1752],[1284,2622,1866,0,1284,2622,1866],[2352,1767,1766,0,2352,1767,1766],[2176,3484,4160,0,2176,3484,4160],[7323,6524,2162,0,7323,6524,2162],[5539,1143,5076,0,5539,1143,5076],[675,4320,676,0,675,4320,676],[4785,5753,7234,0,4785,5753,7234],[6726,6258,5501,0,6726,6258,5501],[5851,4546,4365,0,5851,4546,4365],[1371,1373,5029,0,1371,1373,5029],[2876,7446,7454,0,2876,7446,7454],[6812,4161,4879,0,6812,4161,4879],[1471,6638,6425,0,1471,6638,6425],[7187,154,5743,0,7187,154,5743],[2809,1388,2810,0,2809,1388,2810],[4043,4045,612,0,4043,4045,612],[3220,3219,7387,0,3220,3219,7387],[6162,7013,6163,0,6162,7013,6163],[3893,4803,4563,0,3893,4803,4563],[3837,3367,1260,0,3837,3367,1260],[1521,1520,6556,0,1521,1520,6556],[6021,2374,6308,0,6021,2374,6308],[1895,4955,362,0,1895,4955,362],[5690,5689,6107,0,5690,5689,6107],[3266,202,4826,0,3266,202,4826],[2647,348,5816,0,2647,348,5816],[5657,1692,7619,0,5657,1692,7619],[4922,4058,7620,0,4922,4058,7620],[6453,4527,7560,0,6453,4527,7560],[7180,3283,467,0,7180,3283,467],[7621,4004,4997,0,7621,4004,4997],[1813,99,5586,0,1813,99,5586],[2958,2957,6017,0,2958,2957,6017],[2183,6290,4790,0,2183,6290,4790],[975,6430,976,0,975,6430,976],[3916,7145,3917,0,3916,7145,3917],[3507,5423,1142,0,3507,5423,1142],[3661,4921,2513,0,3661,4921,2513],[4739,4964,3284,0,4739,4964,3284],[3814,3816,7160,0,3814,3816,7160],[935,6566,1239,0,935,6566,1239],[5886,3,2582,0,5886,3,2582],[3609,5017,7377,0,3609,5017,7377],[5528,1839,3321,0,5528,1839,3321],[2465,875,6470,0,2465,875,6470],[7262,3946,6187,0,7262,3946,6187],[2945,863,2586,0,2945,863,2586],[6757,4784,6442,0,6757,4784,6442],[7622,2333,2332,0,7622,2333,2332],[2326,6252,2982,0,2326,6252,2982],[4359,6508,1012,0,4359,6508,1012],[2972,2971,5799,0,2972,2971,5799],[4477,1763,4775,0,4477,1763,4775],[39,41,6407,0,39,41,6407],[1946,4476,3840,0,1946,4476,3840],[5543,546,3473,0,5543,546,3473],[4821,2797,4771,0,4821,2797,4771],[6447,67,7623,0,6447,67,7623],[1828,7624,6864,0,1828,7624,6864],[2732,6893,6730,0,2732,6893,6730],[2318,2320,6678,0,2318,2320,6678],[6382,6401,6827,0,6382,6401,6827],[244,6364,4568,0,244,6364,4568],[6614,7456,5419,0,6614,7456,5419],[2977,2979,6421,0,2977,2979,6421],[3356,5268,226,0,3356,5268,226],[5175,5177,5862,0,5175,5177,5862],[4575,7409,5621,0,4575,7409,5621],[610,612,4045,0,610,612,4045],[4852,1360,7102,0,4852,1360,7102],[1773,4150,4149,0,1773,4150,4149],[3536,6069,32,0,3536,6069,32],[7155,3619,4356,0,7155,3619,4356],[2089,2088,6551,0,2089,2088,6551],[7061,2501,797,0,7061,2501,797],[2273,5327,5156,0,2273,5327,5156],[5167,6583,6850,0,5167,6583,6850],[7625,1756,4143,0,7625,1756,4143],[5401,6653,221,0,5401,6653,221],[2482,3254,3253,0,2482,3254,3253],[1799,2883,5867,0,1799,2883,5867],[5582,708,7602,0,5582,708,7602],[4339,1846,4969,0,4339,1846,4969],[1691,7215,7438,0,1691,7215,7438],[2093,4030,6682,0,2093,4030,6682],[7057,1816,6285,0,7057,1816,6285],[3513,958,7040,0,3513,958,7040],[7626,7383,6558,0,7626,7383,6558],[2918,6266,7548,0,2918,6266,7548],[7556,7558,3087,0,7556,7558,3087],[6574,7319,5918,0,6574,7319,5918],[7548,5616,3355,0,7548,5616,3355],[124,2972,125,0,124,2972,125],[1290,7416,7004,0,1290,7416,7004],[2918,7548,470,0,2918,7548,470],[7572,797,6346,0,7572,797,6346],[1824,3220,5972,0,1824,3220,5972],[1765,2111,4008,0,1765,2111,4008],[5410,5820,5411,0,5410,5820,5411],[6619,6995,7526,0,6619,6995,7526],[3358,3360,6871,0,3358,3360,6871],[5564,2069,6489,0,5564,2069,6489],[2997,3950,2840,0,2997,3950,2840],[4443,2859,2858,0,4443,2859,2858],[4702,2413,2553,0,4702,2413,2553],[1317,2496,1496,0,1317,2496,1496],[5453,6954,7586,0,5453,6954,7586],[1075,4006,6433,0,1075,4006,6433],[4419,3442,4420,0,4419,3442,4420],[3002,3000,3003,0,3002,3000,3003],[4403,7073,7304,0,4403,7073,7304],[2000,6838,1511,0,2000,6838,1511],[6546,391,833,0,6546,391,833],[5297,7627,2925,0,5297,7627,2925],[3943,5384,6124,0,3943,5384,6124],[4750,603,605,0,4750,603,605],[7360,4651,4079,0,7360,4651,4079],[6273,68,6447,0,6273,68,6447],[2150,4157,2151,0,2150,4157,2151],[3508,1720,3509,0,3508,1720,3509],[6339,5615,7243,0,6339,5615,7243],[5552,5553,3859,0,5552,5553,3859],[5552,3859,5636,0,5552,3859,5636],[166,5036,702,0,166,5036,702],[383,704,5254,0,383,704,5254],[6366,2255,4922,0,6366,2255,4922],[4919,4921,3660,0,4919,4921,3660],[4597,2403,7143,0,4597,2403,7143],[1471,6425,5937,0,1471,6425,5937],[5323,7628,3786,0,5323,7628,3786],[261,2023,6872,0,261,2023,6872],[2931,3429,1199,0,2931,3429,1199],[5954,7233,5222,0,5954,7233,5222],[2666,6972,2667,0,2666,6972,2667],[5453,7586,5376,0,5453,7586,5376],[2293,5847,2239,0,2293,5847,2239],[5489,3588,6870,0,5489,3588,6870],[951,5890,4328,0,951,5890,4328],[4987,320,2181,0,4987,320,2181],[4256,4257,2864,0,4256,4257,2864],[5222,7233,7344,0,5222,7233,7344],[5352,5861,540,0,5352,5861,540],[6224,3854,5330,0,6224,3854,5330],[1506,945,7265,0,1506,945,7265],[6709,4105,220,0,6709,4105,220],[2731,4765,2729,0,2731,4765,2729],[4405,4475,4474,0,4405,4475,4474],[7629,4538,7256,0,7629,4538,7256],[3394,720,6542,0,3394,720,6542],[4300,1649,1651,0,4300,1649,1651],[7186,6898,7430,0,7186,6898,7430],[930,7526,931,0,930,7526,931],[5518,2808,2810,0,5518,2808,2810],[158,7339,1308,0,158,7339,1308],[4850,1801,3459,0,4850,1801,3459],[3058,5777,169,0,3058,5777,169],[2037,3839,2038,0,2037,3839,2038],[2775,4848,4022,0,2775,4848,4022],[1537,1893,4572,0,1537,1893,4572],[3546,7630,3547,0,3546,7630,3547],[3775,857,40,0,3775,857,40],[6749,3196,5766,0,6749,3196,5766],[2146,2760,2147,0,2146,2760,2147],[4890,4892,5022,0,4890,4892,5022],[7381,5619,1978,0,7381,5619,1978],[2609,2611,7507,0,2609,2611,7507],[6434,4396,4395,0,6434,4396,4395],[1385,1154,4622,0,1385,1154,4622],[3910,4792,2313,0,3910,4792,2313],[3710,5899,2462,0,3710,5899,2462],[7631,924,7632,0,7631,924,7632],[4887,6978,634,0,4887,6978,634],[2698,1386,4532,0,2698,1386,4532],[4705,4704,3190,0,4705,4704,3190],[1828,5634,7624,0,1828,5634,7624],[7314,1336,1688,0,7314,1336,1688],[2841,2695,5681,0,2841,2695,5681],[645,647,3123,0,645,647,3123],[6155,5768,3556,0,6155,5768,3556],[4361,2690,6340,0,4361,2690,6340],[39,7259,7010,0,39,7259,7010],[1532,3861,1121,0,1532,3861,1121],[7516,4394,4637,0,7516,4394,4637],[2040,410,6032,0,2040,410,6032],[5224,6055,3072,0,5224,6055,3072],[4092,4094,5685,0,4092,4094,5685],[6598,7633,7300,0,6598,7633,7300],[7266,125,5798,0,7266,125,5798],[6448,1538,1888,0,6448,1538,1888],[3910,2287,4792,0,3910,2287,4792],[7536,6584,6752,0,7536,6584,6752],[7348,4275,5512,0,7348,4275,5512],[2443,2351,909,0,2443,2351,909],[2523,6772,6249,0,2523,6772,6249],[5025,3682,3681,0,5025,3682,3681],[5318,6949,6645,0,5318,6949,6645],[6563,7215,1722,0,6563,7215,1722],[6910,3877,133,0,6910,3877,133],[730,732,4866,0,730,732,4866],[2363,4539,7629,0,2363,4539,7629],[5730,1225,1227,0,5730,1225,1227],[5458,1348,2550,0,5458,1348,2550],[4689,5614,6562,0,4689,5614,6562],[3309,3744,1766,0,3309,3744,1766],[7070,2443,908,0,7070,2443,908],[5015,5831,3281,0,5015,5831,3281],[5336,2188,1172,0,5336,2188,1172],[6077,3141,5755,0,6077,3141,5755],[7378,7634,7268,0,7378,7634,7268],[5550,345,4478,0,5550,345,4478],[2356,2358,3005,0,2356,2358,3005],[7011,69,287,0,7011,69,287],[4693,3829,603,0,4693,3829,603],[352,7421,5308,0,352,7421,5308],[527,3760,4835,0,527,3760,4835],[614,2884,2143,0,614,2884,2143],[2443,909,908,0,2443,909,908],[2647,5816,2648,0,2647,5816,2648],[7635,7093,2967,0,7635,7093,2967],[2532,5789,4767,0,2532,5789,4767],[3034,5006,3035,0,3034,5006,3035],[3113,6977,3384,0,3113,6977,3384],[1706,6180,3625,0,1706,6180,3625],[234,236,737,0,234,236,737],[1582,37,7636,0,1582,37,7636],[6499,1379,1378,0,6499,1379,1378],[7070,1132,2443,0,7070,1132,2443],[2300,2176,2175,0,2300,2176,2175],[3540,3323,3322,0,3540,3323,3322],[4259,6948,4260,0,4259,6948,4260],[7410,4525,3744,0,7410,4525,3744],[988,802,801,0,988,802,801],[1895,4696,1896,0,1895,4696,1896],[5793,6513,6354,0,5793,6513,6354],[4583,7461,664,0,4583,7461,664],[4332,5760,4773,0,4332,5760,4773],[1068,233,4158,0,1068,233,4158],[7628,3540,3786,0,7628,3540,3786],[706,581,4063,0,706,581,4063],[6150,7412,7012,0,6150,7412,7012],[5307,7637,86,0,5307,7637,86],[7234,2004,5644,0,7234,2004,5644],[699,3501,4931,0,699,3501,4931],[1028,1030,2443,0,1028,1030,2443],[3380,1297,278,0,3380,1297,278],[323,322,2342,0,323,322,2342],[3305,6378,3861,0,3305,6378,3861],[6813,6532,7638,0,6813,6532,7638],[5919,5918,6826,0,5919,5918,6826],[1132,1028,2443,0,1132,1028,2443],[5101,2833,5102,0,5101,2833,5102],[556,558,6409,0,556,558,6409],[653,3030,7205,0,653,3030,7205],[6386,6393,934,0,6386,6393,934],[585,587,1250,0,585,587,1250],[7056,3251,7639,0,7056,3251,7639],[7048,2025,1624,0,7048,2025,1624],[5564,6489,6380,0,5564,6489,6380],[6386,934,5740,0,6386,934,5740],[6472,6474,7020,0,6472,6474,7020],[3708,883,882,0,3708,883,882],[5374,6998,5446,0,5374,6998,5446],[6719,4867,1829,0,6719,4867,1829],[7291,7597,4837,0,7291,7597,4837],[5464,1052,7640,0,5464,1052,7640],[5329,4642,4641,0,5329,4642,4641],[1061,2443,1030,0,1061,2443,1030],[5281,5953,6888,0,5281,5953,6888],[4477,4775,4176,0,4477,4775,4176],[680,2317,5826,0,680,2317,5826],[2505,861,5573,0,2505,861,5573],[3275,531,2314,0,3275,531,2314],[4108,6901,3461,0,4108,6901,3461],[5171,5936,5172,0,5171,5936,5172],[4745,5241,4746,0,4745,5241,4746],[6221,3926,3828,0,6221,3926,3828],[6294,5799,2971,0,6294,5799,2971],[2683,2685,4016,0,2683,2685,4016],[7040,6501,7641,0,7040,6501,7641],[3446,4624,6131,0,3446,4624,6131],[69,68,285,0,69,68,285],[5365,5607,5472,0,5365,5607,5472],[6137,5324,6111,0,6137,5324,6111],[5892,211,6804,0,5892,211,6804],[5245,1873,1777,0,5245,1873,1777],[4981,1488,4979,0,4981,1488,4979],[6233,808,807,0,6233,808,807],[5745,5418,6327,0,5745,5418,6327],[837,701,838,0,837,701,838],[5959,5684,336,0,5959,5684,336],[3797,7322,2662,0,3797,7322,2662],[7454,7470,110,0,7454,7470,110],[210,7482,5679,0,210,7482,5679],[7470,103,110,0,7470,103,110],[4882,998,997,0,4882,998,997],[1813,5586,3662,0,1813,5586,3662],[5464,7248,5580,0,5464,7248,5580],[3497,6179,7300,0,3497,6179,7300],[4994,6325,7610,0,4994,6325,7610],[384,3049,3051,0,384,3049,3051],[4739,794,7391,0,4739,794,7391],[6997,6618,6617,0,6997,6618,6617],[6559,1506,184,0,6559,1506,184],[7493,5176,3114,0,7493,5176,3114],[2552,3007,2454,0,2552,3007,2454],[1025,155,154,0,1025,155,154],[4507,1332,1331,0,4507,1332,1331],[1900,1899,4145,0,1900,1899,4145],[2174,536,7309,0,2174,536,7309],[7642,3034,7643,0,7642,3034,7643],[1966,1968,3487,0,1966,1968,3487],[7222,6542,720,0,7222,6542,720],[3845,7079,3230,0,3845,7079,3230],[6676,656,655,0,6676,656,655],[4136,4009,4137,0,4136,4009,4137],[5063,1367,1366,0,5063,1367,1366],[7644,1443,1916,0,7644,1443,1916],[2393,2392,6277,0,2393,2392,6277],[1584,5855,1585,0,1584,5855,1585],[1239,1957,933,0,1239,1957,933],[6231,5834,5853,0,6231,5834,5853],[6967,5887,422,0,6967,5887,422],[2489,7645,7158,0,2489,7645,7158],[3546,110,7630,0,3546,110,7630],[2433,7064,1270,0,2433,7064,1270],[1234,7109,7111,0,1234,7109,7111],[7646,2796,5080,0,7646,2796,5080],[1478,693,692,0,1478,693,692],[7416,5025,7004,0,7416,5025,7004],[420,1835,421,0,420,1835,421],[6593,337,2653,0,6593,337,2653],[1489,5187,1490,0,1489,5187,1490],[4971,6116,2790,0,4971,6116,2790],[7630,110,70,0,7630,110,70],[7434,2100,982,0,7434,2100,982],[6988,7136,7647,0,6988,7136,7647],[7606,3452,7648,0,7606,3452,7648],[2633,5159,3729,0,2633,5159,3729],[1705,4135,4664,0,1705,4135,4664],[7133,5332,5331,0,7133,5332,5331],[7356,6996,5288,0,7356,6996,5288],[6207,6348,7014,0,6207,6348,7014],[7220,281,280,0,7220,281,280],[218,4772,791,0,218,4772,791],[7029,3045,821,0,7029,3045,821],[71,6525,3547,0,71,6525,3547],[5348,1146,4673,0,5348,1146,4673],[70,71,3547,0,70,71,3547],[2359,1475,2322,0,2359,1475,2322],[4514,4691,7440,0,4514,4691,7440],[5614,6641,3203,0,5614,6641,3203],[5506,5252,7590,0,5506,5252,7590],[1161,1160,4147,0,1161,1160,4147],[7630,70,3547,0,7630,70,3547],[7055,573,572,0,7055,573,572],[5951,3474,6579,0,5951,3474,6579],[4119,7484,4206,0,4119,7484,4206],[7574,3115,3702,0,7574,3115,3702],[3081,2894,326,0,3081,2894,326],[3058,6044,2271,0,3058,6044,2271],[1367,6771,1365,0,1367,6771,1365],[4527,4529,7560,0,4527,4529,7560],[6047,7649,6048,0,6047,7649,6048],[2126,7650,5585,0,2126,7650,5585],[3696,3695,3271,0,3696,3695,3271],[5938,2438,6350,0,5938,2438,6350],[7272,4572,4462,0,7272,4572,4462],[5982,5114,7570,0,5982,5114,7570],[1134,1133,4195,0,1134,1133,4195],[279,1964,370,0,279,1964,370],[3951,5363,5114,0,3951,5363,5114],[6670,5086,5571,0,6670,5086,5571],[7211,1235,1234,0,7211,1235,1234],[3006,3774,5003,0,3006,3774,5003],[5857,4824,4823,0,5857,4824,4823],[104,2334,5479,0,104,2334,5479],[1128,4072,7651,0,1128,4072,7651],[2063,4360,937,0,2063,4360,937],[6190,5217,7474,0,6190,5217,7474],[2322,2321,7020,0,2322,2321,7020],[6509,6511,688,0,6509,6511,688],[6190,7474,6144,0,6190,7474,6144],[4222,6728,2221,0,4222,6728,2221],[5779,5778,2110,0,5779,5778,2110],[117,119,2355,0,117,119,2355],[2376,2375,6017,0,2376,2375,6017],[10,1197,11,0,10,1197,11],[3617,5225,3124,0,3617,5225,3124],[82,5413,5928,0,82,5413,5928],[4562,1904,1906,0,4562,1904,1906],[2828,4051,2826,0,2828,4051,2826],[796,7391,794,0,796,7391,794],[6948,3317,3390,0,6948,3317,3390],[487,7406,2379,0,487,7406,2379],[6750,5600,5602,0,6750,5600,5602],[6343,4900,4902,0,6343,4900,4902],[7356,6170,3736,0,7356,6170,3736],[6827,6383,6382,0,6827,6383,6382],[2359,2740,6975,0,2359,2740,6975],[6514,4441,5591,0,6514,4441,5591],[7264,5645,4409,0,7264,5645,4409],[3423,1981,6220,0,3423,1981,6220],[5796,6710,5106,0,5796,6710,5106],[4856,6103,5295,0,4856,6103,5295],[6865,4425,6866,0,6865,4425,6866],[1486,7652,3764,0,1486,7652,3764],[6745,2047,2049,0,6745,2047,2049],[6323,4192,6324,0,6323,4192,6324],[4668,1612,5249,0,4668,1612,5249],[6802,4465,7080,0,6802,4465,7080],[5561,5560,5565,0,5561,5560,5565],[368,3942,7653,0,368,3942,7653],[6786,4024,4112,0,6786,4024,4112],[1567,4871,1964,0,1567,4871,1964],[609,5614,4689,0,609,5614,4689],[5586,5850,6809,0,5586,5850,6809],[2623,1446,3265,0,2623,1446,3265],[4936,4937,4050,0,4936,4937,4050],[1070,2159,1071,0,1070,2159,1071],[7639,5742,2389,0,7639,5742,2389],[6448,2844,2227,0,6448,2844,2227],[4534,4536,5622,0,4534,4536,5622],[2511,2510,2409,0,2511,2510,2409],[921,920,4324,0,921,920,4324],[888,3938,6636,0,888,3938,6636],[6498,2906,2784,0,6498,2906,2784],[4654,1566,6849,0,4654,1566,6849],[2309,578,2029,0,2309,578,2029],[2673,5800,2418,0,2673,5800,2418],[6035,4327,6036,0,6035,4327,6036],[3003,3340,345,0,3003,3340,345],[308,307,4257,0,308,307,4257],[2071,1364,6599,0,2071,1364,6599],[2407,2997,6459,0,2407,2997,6459],[3415,3416,1125,0,3415,3416,1125],[5288,6996,6782,0,5288,6996,6782],[6984,22,1363,0,6984,22,1363],[5631,6013,1310,0,5631,6013,1310],[2891,3746,2892,0,2891,3746,2892],[1959,3053,3052,0,1959,3053,3052],[3822,5033,3823,0,3822,5033,3823],[6757,3624,3626,0,6757,3624,3626],[6205,372,52,0,6205,372,52],[3915,3176,338,0,3915,3176,338],[2479,4609,4608,0,2479,4609,4608],[5679,7515,7011,0,5679,7515,7011],[3977,5660,6683,0,3977,5660,6683],[1471,6577,1665,0,1471,6577,1665],[1210,518,5081,0,1210,518,5081],[4781,4782,4043,0,4781,4782,4043],[4740,3980,1314,0,4740,3980,1314],[4324,6828,2188,0,4324,6828,2188],[2105,7654,1446,0,2105,7654,1446],[5200,3307,5201,0,5200,3307,5201],[2692,288,855,0,2692,288,855],[4562,6217,1904,0,4562,6217,1904],[2163,2752,3322,0,2163,2752,3322],[7307,4491,7638,0,7307,4491,7638],[5616,1931,5594,0,5616,1931,5594],[7599,6051,7422,0,7599,6051,7422],[7599,7422,7506,0,7599,7422,7506],[2894,2733,326,0,2894,2733,326],[3642,5055,5054,0,3642,5055,5054],[6612,1737,7228,0,6612,1737,7228],[4129,7259,631,0,4129,7259,631],[3802,3561,5563,0,3802,3561,5563],[6837,4215,3354,0,6837,4215,3354],[6026,3287,3286,0,6026,3287,3286],[6118,7387,3219,0,6118,7387,3219],[1072,5443,5968,0,1072,5443,5968],[5372,711,4237,0,5372,711,4237],[6550,89,3804,0,6550,89,3804],[4589,4141,7441,0,4589,4141,7441],[5473,2940,7655,0,5473,2940,7655],[54,4873,6532,0,54,4873,6532],[6236,6528,5425,0,6236,6528,5425],[7656,6826,7646,0,7656,6826,7646],[402,1058,2078,0,402,1058,2078],[6859,6860,2031,0,6859,6860,2031],[7404,5099,1800,0,7404,5099,1800],[3006,3005,2358,0,3006,3005,2358],[5491,5492,6799,0,5491,5492,6799],[3707,1232,1164,0,3707,1232,1164],[6363,7657,6332,0,6363,7657,6332],[2660,1018,1017,0,2660,1018,1017],[4145,2495,4808,0,4145,2495,4808],[3029,2986,7024,0,3029,2986,7024],[658,660,6070,0,658,660,6070],[5195,6059,5857,0,5195,6059,5857],[135,7543,1019,0,135,7543,1019],[3509,2452,6449,0,3509,2452,6449],[3837,2565,7540,0,3837,2565,7540],[2783,2726,7395,0,2783,2726,7395],[4491,4738,7638,0,4491,4738,7638],[5255,7042,2941,0,5255,7042,2941],[3533,894,4910,0,3533,894,4910],[4644,4293,4292,0,4644,4293,4292],[6724,495,5121,0,6724,495,5121],[1902,6126,6924,0,1902,6126,6924],[6773,6775,7658,0,6773,6775,7658],[4830,2485,4831,0,4830,2485,4831],[6333,6332,7273,0,6333,6332,7273],[3521,2401,1627,0,3521,2401,1627],[6607,4355,6581,0,6607,4355,6581],[7659,1133,5303,0,7659,1133,5303],[4896,5867,7660,0,4896,5867,7660],[7657,7273,6332,0,7657,7273,6332],[1480,855,854,0,1480,855,854],[118,117,2580,0,118,117,2580],[6055,4923,7260,0,6055,4923,7260],[4222,7076,1403,0,4222,7076,1403],[1440,1457,1441,0,1440,1457,1441],[128,5322,3774,0,128,5322,3774],[3302,6059,5194,0,3302,6059,5194],[6020,1912,1911,0,6020,1912,1911],[6363,6390,7657,0,6363,6390,7657],[1945,1947,3137,0,1945,1947,3137],[6235,6234,2939,0,6235,6234,2939],[719,7661,1642,0,719,7661,1642],[3047,7370,3048,0,3047,7370,3048],[4336,4337,5325,0,4336,4337,5325],[3657,6039,6807,0,3657,6039,6807],[2908,4808,2495,0,2908,4808,2495],[5369,6541,5187,0,5369,6541,5187],[3031,2754,2756,0,3031,2754,2756],[3634,6092,3635,0,3634,6092,3635],[2304,2963,5479,0,2304,2963,5479],[1077,2368,4005,0,1077,2368,4005],[2687,5375,4918,0,2687,5375,4918],[5468,3697,905,0,5468,3697,905],[3964,0,3965,0,3964,0,3965],[4768,4769,3607,0,4768,4769,3607],[6402,7657,6390,0,6402,7657,6390],[2529,6142,6218,0,2529,6142,6218],[1677,5867,829,0,1677,5867,829],[4175,5090,4176,0,4175,5090,4176],[7140,7114,6242,0,7140,7114,6242],[1699,5021,5020,0,1699,5021,5020],[1953,1952,6412,0,1953,1952,6412],[267,1463,5426,0,267,1463,5426],[3159,5803,3160,0,3159,5803,3160],[1329,6863,3335,0,1329,6863,3335],[7662,6695,7253,0,7662,6695,7253],[2661,1981,1761,0,2661,1981,1761],[2218,2862,2861,0,2218,2862,2861],[7663,5708,5707,0,7663,5708,5707],[5544,3439,5915,0,5544,3439,5915],[6641,3909,2947,0,6641,3909,2947],[6968,2079,6885,0,6968,2079,6885],[188,790,186,0,188,790,186],[5364,1928,7491,0,5364,1928,7491],[6655,7664,4954,0,6655,7664,4954],[7607,1925,7501,0,7607,1925,7501],[1122,5351,1120,0,1122,5351,1120],[965,6855,4755,0,965,6855,4755],[1890,3074,3751,0,1890,3074,3751],[2631,2632,5495,0,2631,2632,5495],[7131,6847,6859,0,7131,6847,6859],[2520,6090,5024,0,2520,6090,5024],[3434,6883,3012,0,3434,6883,3012],[875,2465,866,0,875,2465,866],[6402,5037,7306,0,6402,5037,7306],[5843,1744,1743,0,5843,1744,1743],[2497,827,2654,0,2497,827,2654],[6402,7306,7657,0,6402,7306,7657],[3321,3320,34,0,3321,3320,34],[2187,3802,472,0,2187,3802,472],[3723,2107,2106,0,3723,2107,2106],[6328,7182,7355,0,6328,7182,7355],[583,582,3662,0,583,582,3662],[5008,4421,2336,0,5008,4421,2336],[6737,4918,5375,0,6737,4918,5375],[6722,6974,4979,0,6722,6974,4979],[7657,7306,7273,0,7657,7306,7273],[5854,6791,3447,0,5854,6791,3447],[5706,7665,5707,0,5706,7665,5707],[4739,7391,4964,0,4739,7391,4964],[176,932,4878,0,176,932,4878],[250,2665,4180,0,250,2665,4180],[7666,3517,1212,0,7666,3517,1212],[6729,6730,6893,0,6729,6730,6893],[7088,432,431,0,7088,432,431],[2075,6356,6536,0,2075,6356,6536],[4635,7426,4636,0,4635,7426,4636],[6139,4061,450,0,6139,4061,450],[639,5080,3779,0,639,5080,3779],[6989,312,3347,0,6989,312,3347],[732,5532,7217,0,732,5532,7217],[2014,5137,6293,0,2014,5137,6293],[1860,1317,4181,0,1860,1317,4181],[5917,6458,4225,0,5917,6458,4225],[7457,7458,5232,0,7457,7458,5232],[5639,6046,1435,0,5639,6046,1435],[7282,5685,6237,0,7282,5685,6237],[6736,4709,1805,0,6736,4709,1805],[6349,7667,3650,0,6349,7667,3650],[7273,7306,7299,0,7273,7306,7299],[5376,1420,5377,0,5376,1420,5377],[4508,4101,2681,0,4508,4101,2681],[1776,6173,6172,0,1776,6173,6172],[7006,661,6986,0,7006,661,6986],[1486,7668,6064,0,1486,7668,6064],[4249,3387,3386,0,4249,3387,3386],[3902,4333,3903,0,3902,4333,3903],[7628,7170,3540,0,7628,7170,3540],[6132,4085,3163,0,6132,4085,3163],[5153,4752,2249,0,5153,4752,2249],[2165,6407,2166,0,2165,6407,2166],[1237,35,34,0,1237,35,34],[6085,2595,6651,0,6085,2595,6651],[6591,6281,1570,0,6591,6281,1570],[2459,6912,1767,0,2459,6912,1767],[3622,837,779,0,3622,837,779],[1649,4587,2125,0,1649,4587,2125],[4261,4760,7669,0,4261,4760,7669],[7492,1928,4155,0,7492,1928,4155],[3667,7408,3082,0,3667,7408,3082],[3032,1259,4271,0,3032,1259,4271],[6570,2921,1973,0,6570,2921,1973],[2034,4836,7025,0,2034,4836,7025],[2335,3954,3694,0,2335,3954,3694],[2264,1887,5108,0,2264,1887,5108],[7556,3087,7670,0,7556,3087,7670],[1272,1513,1256,0,1272,1513,1256],[226,2054,4378,0,226,2054,4378],[2621,1866,2622,0,2621,1866,2622],[4499,3873,7343,0,4499,3873,7343],[7262,6187,3198,0,7262,6187,3198],[7133,7592,4412,0,7133,7592,4412],[912,1395,6271,0,912,1395,6271],[3681,3716,5970,0,3681,3716,5970],[5132,6966,1191,0,5132,6966,1191],[4864,4866,5180,0,4864,4866,5180],[6357,2294,2296,0,6357,2294,2296],[4100,7135,5154,0,4100,7135,5154],[2052,2051,2032,0,2052,2051,2032],[3524,1803,1802,0,3524,1803,1802],[4650,887,1660,0,4650,887,1660],[3233,649,648,0,3233,649,648],[5294,507,5293,0,5294,507,5293],[7106,6216,6217,0,7106,6216,6217],[4293,6952,1162,0,4293,6952,1162],[4407,6620,6317,0,4407,6620,6317],[5728,804,803,0,5728,804,803],[2564,7320,2565,0,2564,7320,2565],[5083,4080,2704,0,5083,4080,2704],[3155,7671,1853,0,3155,7671,1853],[5800,7672,2419,0,5800,7672,2419],[6555,6556,1520,0,6555,6556,1520],[1368,4750,1369,0,1368,4750,1369],[1550,1551,3559,0,1550,1551,3559],[6716,5939,7536,0,6716,5939,7536],[7673,4786,3701,0,7673,4786,3701],[1140,5203,5286,0,1140,5203,5286],[5918,6533,7646,0,5918,6533,7646],[3561,5716,5717,0,3561,5716,5717],[6813,7638,7674,0,6813,7638,7674],[3895,2233,7468,0,3895,2233,7468],[3934,1082,1735,0,3934,1082,1735],[1908,546,3106,0,1908,546,3106],[3090,3089,5697,0,3090,3089,5697],[2364,3687,5168,0,2364,3687,5168],[6550,5977,6483,0,6550,5977,6483],[4983,2288,2290,0,4983,2288,2290],[5030,5126,5029,0,5030,5126,5029],[4479,518,4617,0,4479,518,4617],[2616,2618,4243,0,2616,2618,4243],[4969,1846,3691,0,4969,1846,3691],[601,89,7675,0,601,89,7675],[7051,1883,430,0,7051,1883,430],[921,4324,2188,0,921,4324,2188],[5172,3433,4655,0,5172,3433,4655],[1423,4448,1424,0,1423,4448,1424],[6501,2145,5811,0,6501,2145,5811],[6980,6911,3600,0,6980,6911,3600],[2960,5071,6347,0,2960,5071,6347],[6263,6756,4986,0,6263,6756,4986],[3050,6854,3973,0,3050,6854,3973],[7676,7677,6689,0,7676,7677,6689],[7584,5688,7231,0,7584,5688,7231],[187,2124,188,0,187,2124,188],[5523,2072,6599,0,5523,2072,6599],[4638,4637,4394,0,4638,4637,4394],[6720,2430,2425,0,6720,2430,2425],[3524,1802,6730,0,3524,1802,6730],[5327,6627,5156,0,5327,6627,5156],[7678,7379,3247,0,7678,7379,3247],[2077,7477,3806,0,2077,7477,3806],[6616,5347,6982,0,6616,5347,6982],[7187,7563,7128,0,7187,7563,7128],[7650,1398,2330,0,7650,1398,2330],[910,912,844,0,910,912,844],[5,4,133,0,5,4,133],[2966,2965,4166,0,2966,2965,4166],[3590,4301,4295,0,3590,4301,4295],[2928,4077,5151,0,2928,4077,5151],[1727,6455,5617,0,1727,6455,5617],[6160,2788,7500,0,6160,2788,7500],[895,4557,7679,0,895,4557,7679],[979,978,2046,0,979,978,2046],[2720,7680,6292,0,2720,7680,6292],[5965,4152,4151,0,5965,4152,4151],[6403,5240,5242,0,6403,5240,5242],[6303,5439,4499,0,6303,5439,4499],[974,7511,975,0,974,7511,975],[7364,4427,441,0,7364,4427,441],[1690,6200,1688,0,1690,6200,1688],[6433,2377,7681,0,6433,2377,7681],[3955,882,1346,0,3955,882,1346],[7473,5216,427,0,7473,5216,427],[3895,6640,2233,0,3895,6640,2233],[2498,2497,2654,0,2498,2497,2654],[6463,2486,5439,0,6463,2486,5439],[7682,4969,7227,0,7682,4969,7227],[7364,440,3396,0,7364,440,3396],[5312,4897,859,0,5312,4897,859],[6471,311,4096,0,6471,311,4096],[3191,3193,6168,0,3191,3193,6168],[5886,1558,3,0,5886,1558,3],[7307,6531,5462,0,7307,6531,5462],[498,2844,3882,0,498,2844,3882],[3180,3179,5105,0,3180,3179,5105],[1929,1931,229,0,1929,1931,229],[6226,6169,6168,0,6226,6169,6168],[7411,2813,2812,0,7411,2813,2812],[3788,5437,2148,0,3788,5437,2148],[4134,7147,5737,0,4134,7147,5737],[2516,7263,1183,0,2516,7263,1183],[433,6512,939,0,433,6512,939],[5899,6634,4608,0,5899,6634,4608],[5881,7078,4128,0,5881,7078,4128],[4268,1891,3872,0,4268,1891,3872],[697,0,2,0,697,0,2],[2619,761,5575,0,2619,761,5575],[6892,6522,6024,0,6892,6522,6024],[6253,6420,5265,0,6253,6420,5265],[4733,4721,733,0,4733,4721,733],[6345,6618,5792,0,6345,6618,5792],[2166,6407,3408,0,2166,6407,3408],[6820,1096,3115,0,6820,1096,3115],[4373,1450,1449,0,4373,1450,1449],[1521,6556,2594,0,1521,6556,2594],[5586,99,5850,0,5586,99,5850],[5186,2853,6269,0,5186,2853,6269],[1509,1508,191,0,1509,1508,191],[7683,6338,5246,0,7683,6338,5246],[1189,4908,1190,0,1189,4908,1190],[3043,7029,1129,0,3043,7029,1129],[1838,3321,1839,0,1838,3321,1839],[3604,7652,1485,0,3604,7652,1485],[5560,4901,6342,0,5560,4901,6342],[7684,7685,504,0,7684,7685,504],[153,7280,5743,0,153,7280,5743],[4091,2452,6159,0,4091,2452,6159],[5851,4365,6680,0,5851,4365,6680],[1136,1181,2214,0,1136,1181,2214],[1266,1267,7686,0,1266,1267,7686],[6590,7687,1267,0,6590,7687,1267],[1440,1442,7688,0,1440,1442,7688],[6007,3422,6797,0,6007,3422,6797],[7689,1267,7687,0,7689,1267,7687],[7690,7686,1267,0,7690,7686,1267],[7690,1267,7689,0,7690,1267,7689],[7690,7689,7691,0,7690,7689,7691],[2914,2913,7662,0,2914,2913,7662],[3996,4285,3997,0,3996,4285,3997],[5908,8,4675,0,5908,8,4675],[1934,1933,6804,0,1934,1933,6804],[3752,3425,3424,0,3752,3425,3424],[7692,7690,7691,0,7692,7690,7691],[5215,1001,5216,0,5215,1001,5216],[6590,6589,7687,0,6590,6589,7687],[735,5768,4732,0,735,5768,4732],[940,2203,941,0,940,2203,941],[7604,7687,6589,0,7604,7687,6589],[2406,6459,112,0,2406,6459,112],[1594,2576,6821,0,1594,2576,6821],[4681,7673,6123,0,4681,7673,6123],[6267,3445,6122,0,6267,3445,6122],[5576,4648,369,0,5576,4648,369],[2642,2644,5049,0,2642,2644,5049],[3189,3188,1929,0,3189,3188,1929],[135,137,1000,0,135,137,1000],[7384,2772,2774,0,7384,2772,2774],[7693,7687,7604,0,7693,7687,7604],[1541,5188,3394,0,1541,5188,3394],[691,4075,692,0,691,4075,692],[1647,7406,3785,0,1647,7406,3785],[7372,7694,2899,0,7372,7694,2899],[4186,2215,5731,0,4186,2215,5731],[6564,7587,6544,0,6564,7587,6544],[4624,1954,1956,0,4624,1954,1956],[234,737,6795,0,234,737,6795],[6899,2899,7694,0,6899,2899,7694],[6164,2289,5817,0,6164,2289,5817],[3923,2346,4022,0,3923,2346,4022],[2365,4754,5144,0,2365,4754,5144],[2378,488,2379,0,2378,488,2379],[7500,6285,566,0,7500,6285,566],[7693,7244,6899,0,7693,7244,6899],[1292,6768,6770,0,1292,6768,6770],[5436,2932,5196,0,5436,2932,5196],[3260,3908,5087,0,3260,3908,5087],[1546,7695,4460,0,1546,7695,4460],[5890,4573,4328,0,5890,4573,4328],[3616,2688,3092,0,3616,2688,3092],[7692,7691,7694,0,7692,7691,7694],[7689,6899,7691,0,7689,6899,7691],[4698,627,6369,0,4698,627,6369],[6899,7694,7691,0,6899,7694,7691],[6589,820,819,0,6589,820,819],[3831,4250,4763,0,3831,4250,4763],[4349,6480,3101,0,4349,6480,3101],[7689,7687,6899,0,7689,7687,6899],[3469,493,2129,0,3469,493,2129],[3095,5040,6971,0,3095,5040,6971],[7693,6899,7687,0,7693,6899,7687],[118,2579,7331,0,118,2579,7331],[2467,2469,7191,0,2467,2469,7191],[5923,4461,7394,0,5923,4461,7394],[4437,7316,2242,0,4437,7316,2242],[6155,3556,502,0,6155,3556,502],[4109,4311,5435,0,4109,4311,5435],[7696,7697,7394,0,7696,7697,7394],[2812,2814,18,0,2812,2814,18],[7698,5923,7394,0,7698,5923,7394],[7698,7394,7697,0,7698,7394,7697],[5495,2632,5537,0,5495,2632,5537],[2792,1425,772,0,2792,1425,772],[3304,6377,3305,0,3304,6377,3305],[3338,5380,3659,0,3338,5380,3659],[4964,4965,5677,0,4964,4965,5677],[7115,1531,171,0,7115,1531,171],[7671,7026,1853,0,7671,7026,1853],[672,4020,673,0,672,4020,673],[2488,4541,5771,0,2488,4541,5771],[7394,4500,7696,0,7394,4500,7696],[4510,6920,5542,0,4510,6920,5542],[4968,4114,4537,0,4968,4114,4537],[7693,7699,4500,0,7693,7699,4500],[7693,4500,7244,0,7693,4500,7244],[24,3096,2716,0,24,3096,2716],[7696,4500,7699,0,7696,4500,7699],[3385,3387,7005,0,3385,3387,7005],[7525,4533,7700,0,7525,4533,7700],[7038,6872,2023,0,7038,6872,2023],[1777,1874,1775,0,1777,1874,1775],[2939,6234,108,0,2939,6234,108],[7477,3554,3572,0,7477,3554,3572],[465,467,7488,0,465,467,7488],[7701,4391,5386,0,7701,4391,5386],[7702,979,7110,0,7702,979,7110],[3047,7369,7370,0,3047,7369,7370],[7703,7697,5935,0,7703,7697,5935],[477,3597,733,0,477,3597,733],[7704,5934,5935,0,7704,5934,5935],[7704,5935,7697,0,7704,5935,7697],[2865,2867,6261,0,2865,2867,6261],[2077,1057,3553,0,2077,1057,3553],[7185,2739,5350,0,7185,2739,5350],[7680,11,2757,0,7680,11,2757],[5452,4480,2514,0,5452,4480,2514],[7704,7279,5934,0,7704,7279,5934],[3181,2438,1412,0,3181,2438,1412],[7604,7279,7704,0,7604,7279,7704],[1020,851,1518,0,1020,851,1518],[5716,6679,2187,0,5716,6679,2187],[4174,4173,5233,0,4174,4173,5233],[798,797,7572,0,798,797,7572],[2903,3222,6708,0,2903,3222,6708],[7698,7697,7703,0,7698,7697,7703],[7696,7704,7697,0,7696,7704,7697],[3721,3720,7608,0,3721,3720,7608],[4254,5570,5278,0,4254,5570,5278],[5228,6242,7114,0,5228,6242,7114],[7471,4082,7203,0,7471,4082,7203],[5603,2917,7705,0,5603,2917,7705],[7696,7699,7704,0,7696,7699,7704],[7597,7200,5408,0,7597,7200,5408],[7693,7604,7704,0,7693,7604,7704],[7693,7704,7699,0,7693,7704,7699],[1224,5672,6166,0,1224,5672,6166],[5733,7499,4630,0,5733,7499,4630],[5829,6136,5342,0,5829,6136,5342],[7706,4665,3727,0,7706,4665,3727],[4410,588,1492,0,4410,588,1492],[2157,7195,7118,0,2157,7195,7118],[2702,2951,7469,0,2702,2951,7469],[2307,2309,2029,0,2307,2309,2029],[4697,628,4698,0,4697,628,4698],[6970,3927,3276,0,6970,3927,3276],[818,7707,5997,0,818,7707,5997],[4514,3527,6798,0,4514,3527,6798],[6785,6195,2441,0,6785,6195,2441],[5030,6011,5126,0,5030,6011,5126],[118,2580,2579,0,118,2580,2579],[5596,1832,6311,0,5596,1832,6311],[7708,7195,7709,0,7708,7195,7709],[7708,7709,7710,0,7708,7709,7710],[1207,4661,7603,0,1207,4661,7603],[2157,2156,7195,0,2157,2156,7195],[1404,1673,7026,0,1404,1673,7026],[1429,7541,6909,0,1429,7541,6909],[7711,7709,2156,0,7711,7709,2156],[2662,2663,6582,0,2662,2663,6582],[7709,7195,2156,0,7709,7195,2156],[5706,7712,1956,0,5706,7712,1956],[180,4029,7713,0,180,4029,7713],[5431,7235,5709,0,5431,7235,5709],[7711,7714,7709,0,7711,7714,7709],[5473,7655,5474,0,5473,7655,5474],[5794,7310,21,0,5794,7310,21],[7715,7709,7714,0,7715,7709,7714],[1597,7342,7341,0,1597,7342,7341],[7710,7709,7715,0,7710,7709,7715],[3521,7538,864,0,3521,7538,864],[6943,6066,6065,0,6943,6066,6065],[7708,7710,7716,0,7708,7710,7716],[6418,444,5271,0,6418,444,5271],[7717,7718,7716,0,7717,7718,7716],[7717,7716,7710,0,7717,7716,7710],[6559,1504,1506,0,6559,1504,1506],[3099,6480,6479,0,3099,6480,6479],[829,828,4167,0,829,828,4167],[7718,7719,7720,0,7718,7719,7720],[1156,65,22,0,1156,65,22],[7717,7719,7718,0,7717,7719,7718],[7721,7722,7719,0,7721,7722,7719],[3388,3225,3389,0,3388,3225,3389],[7722,7720,7719,0,7722,7720,7719],[7019,2301,4136,0,7019,2301,4136],[6540,2248,6081,0,6540,2248,6081],[884,886,3748,0,884,886,3748],[1129,7101,7398,0,1129,7101,7398],[3668,3084,4353,0,3668,3084,4353],[6199,4888,7120,0,6199,4888,7120],[3010,179,6404,0,3010,179,6404],[5814,5302,1214,0,5814,5302,1214],[7268,6779,7378,0,7268,6779,7378],[4313,2038,3839,0,4313,2038,3839],[7717,7715,7719,0,7717,7715,7719],[4457,1758,1383,0,4457,1758,1383],[7710,7715,7717,0,7710,7715,7717],[4412,7592,1702,0,4412,7592,1702],[6873,2446,2445,0,6873,2446,2445],[7721,7719,7715,0,7721,7719,7715],[7721,7715,7723,0,7721,7715,7723],[4809,4960,3675,0,4809,4960,3675],[6629,34,5009,0,6629,34,5009],[5008,2338,4690,0,5008,2338,4690],[7724,7725,7726,0,7724,7725,7726],[4217,4216,1552,0,4217,4216,1552],[3568,5216,1001,0,3568,5216,1001],[1297,6538,7496,0,1297,6538,7496],[4336,1124,4026,0,4336,1124,4026],[4611,5066,5733,0,4611,5066,5733],[2130,2129,2531,0,2130,2129,2531],[7606,4594,3453,0,7606,4594,3453],[6934,7727,2871,0,6934,7727,2871],[7723,7728,7725,0,7723,7728,7725],[7723,7725,7729,0,7723,7725,7729],[6747,7533,6748,0,6747,7533,6748],[7730,7725,7728,0,7730,7725,7728],[1258,3367,1535,0,1258,3367,1535],[7724,7729,7725,0,7724,7729,7725],[2590,7112,7161,0,2590,7112,7161],[7722,7729,7724,0,7722,7729,7724],[4810,3974,3025,0,4810,3974,3025],[7721,7729,7722,0,7721,7729,7722],[4090,2254,6375,0,4090,2254,6375],[3997,4675,3995,0,3997,4675,3995],[7729,7721,7723,0,7729,7721,7723],[4447,2859,4074,0,4447,2859,4074],[6633,6635,6298,0,6633,6635,6298],[933,3042,5740,0,933,3042,5740],[2570,4614,7731,0,2570,4614,7731],[5395,5852,5396,0,5395,5852,5396],[7039,196,195,0,7039,196,195],[4961,6375,4489,0,4961,6375,4489],[7662,3354,6695,0,7662,3354,6695],[2263,2844,6448,0,2263,2844,6448],[7732,7733,7734,0,7732,7733,7734],[2953,2952,3426,0,2953,2952,3426],[752,2407,750,0,752,2407,750],[5983,2141,3152,0,5983,2141,3152],[7735,7695,7736,0,7735,7695,7736],[7735,7736,7728,0,7735,7736,7728],[7735,7728,7714,0,7735,7728,7714],[6404,2586,3010,0,6404,2586,3010],[6405,4828,3434,0,6405,4828,3434],[756,1251,2980,0,756,1251,2980],[6311,7177,7006,0,6311,7177,7006],[6405,3434,3012,0,6405,3434,3012],[2156,7735,7714,0,2156,7735,7714],[2156,7714,7711,0,2156,7714,7711],[6423,5472,5607,0,6423,5472,5607],[3598,7737,7294,0,3598,7737,7294],[1698,5021,1699,0,1698,5021,1699],[7730,7728,7736,0,7730,7728,7736],[1838,1840,1596,0,1838,1840,1596],[1557,1188,3581,0,1557,1188,3581],[5592,2101,4858,0,5592,2101,4858],[2575,6884,6883,0,2575,6884,6883],[7622,4958,2333,0,7622,4958,2333],[3576,5137,4224,0,3576,5137,4224],[5210,5275,5211,0,5210,5275,5211],[7723,7714,7728,0,7723,7714,7728],[6492,4905,4582,0,6492,4905,4582],[7715,7714,7723,0,7715,7714,7723],[5901,7395,2726,0,5901,7395,2726],[6687,6688,2366,0,6687,6688,2366],[1081,5705,5440,0,1081,5705,5440],[7716,7738,7739,0,7716,7738,7739],[7718,7740,7738,0,7718,7740,7738],[7718,7738,7716,0,7718,7738,7716],[3047,896,7679,0,3047,896,7679],[7382,7350,7351,0,7382,7350,7351],[7741,7739,7738,0,7741,7739,7738],[3924,6140,7128,0,3924,6140,7128],[7741,7738,7742,0,7741,7738,7742],[6897,5229,2103,0,6897,5229,2103],[7740,7743,7742,0,7740,7743,7742],[7740,7742,7738,0,7740,7742,7738],[1535,3790,1259,0,1535,3790,1259],[2628,5928,2629,0,2628,5928,2629],[7744,7741,7742,0,7744,7741,7742],[7744,7742,7743,0,7744,7742,7743],[7718,7720,7745,0,7718,7720,7745],[7718,7745,7740,0,7718,7745,7740],[3854,3584,7008,0,3854,3584,7008],[7722,7745,7720,0,7722,7745,7720],[6002,2159,7130,0,6002,2159,7130],[7746,7745,7722,0,7746,7745,7722],[1239,3881,1957,0,1239,3881,1957],[6864,3472,2057,0,6864,3472,2057],[7740,7745,7747,0,7740,7745,7747],[7740,7747,7743,0,7740,7747,7743],[2836,7181,4041,0,2836,7181,4041],[7746,7747,7745,0,7746,7747,7745],[6154,6133,3883,0,6154,6133,3883],[7748,7747,7746,0,7748,7747,7746],[3131,7749,2550,0,3131,7749,2550],[6461,6428,2803,0,6461,6428,2803],[7750,7751,7752,0,7750,7751,7752],[1751,6801,7390,0,1751,6801,7390],[7751,7753,7752,0,7751,7753,7752],[5206,5205,6844,0,5206,5205,6844],[6674,5046,5047,0,6674,5046,5047],[7754,7752,7753,0,7754,7752,7753],[1350,709,708,0,1350,709,708],[7755,7752,7754,0,7755,7752,7754],[3699,7156,3700,0,3699,7156,3700],[1467,1468,7448,0,1467,1468,7448],[4839,7656,639,0,4839,7656,639],[4719,6134,7501,0,4719,6134,7501],[2201,3238,3240,0,2201,3238,3240],[7756,7755,7754,0,7756,7755,7754],[5739,6772,2523,0,5739,6772,2523],[7757,7755,7756,0,7757,7755,7756],[4095,659,4104,0,4095,659,4104],[4373,1449,2615,0,4373,1449,2615],[7744,7743,7753,0,7744,7743,7753],[7451,5808,7068,0,7451,5808,7068],[7743,7754,7753,0,7743,7754,7753],[1217,6124,6123,0,1217,6124,6123],[5481,831,830,0,5481,831,830],[2361,7449,2362,0,2361,7449,2362],[3198,6491,7055,0,3198,6491,7055],[5079,2796,2795,0,5079,2796,2795],[7743,7747,7754,0,7743,7747,7754],[891,5689,4415,0,891,5689,4415],[3638,2036,2028,0,3638,2036,2028],[7748,7754,7747,0,7748,7754,7747],[6318,1087,1086,0,6318,1087,1086],[7756,7754,7748,0,7756,7754,7748],[7758,7759,7760,0,7758,7759,7760],[4805,2097,2096,0,4805,2097,2096],[3323,1150,1152,0,3323,1150,1152],[7761,7760,7759,0,7761,7760,7759],[3081,5661,2895,0,3081,5661,2895],[7762,7760,7761,0,7762,7760,7761],[7507,4862,5167,0,7507,4862,5167],[7113,4831,2485,0,7113,4831,2485],[5453,5376,5454,0,5453,5376,5454],[7760,7762,7763,0,7760,7762,7763],[3335,6863,1663,0,3335,6863,1663],[4833,5698,7362,0,4833,5698,7362],[7764,7765,7762,0,7764,7765,7762],[4300,6784,6783,0,4300,6784,6783],[6705,3827,6706,0,6705,3827,6706],[7763,7762,7765,0,7763,7762,7765],[7761,7757,7756,0,7761,7757,7756],[4292,3920,4644,0,4292,3920,4644],[1897,4049,4442,0,1897,4049,4442],[7529,4794,571,0,7529,4794,571],[4174,5233,3888,0,4174,5233,3888],[6622,1998,7766,0,6622,1998,7766],[7762,7761,7756,0,7762,7761,7756],[7762,7756,7764,0,7762,7756,7764],[4343,4345,4748,0,4343,4345,4748],[7000,47,7124,0,7000,47,7124],[7756,7748,7764,0,7756,7748,7764],[2956,3897,7407,0,2956,3897,7407],[1951,1953,3137,0,1951,1953,3137],[983,7405,984,0,983,7405,984],[3161,3160,6545,0,3161,3160,6545],[3621,4021,14,0,3621,4021,14],[3513,1296,1295,0,3513,1296,1295],[107,6443,2939,0,107,6443,2939],[7767,7768,7726,0,7767,7768,7726],[7029,3043,3045,0,7029,3043,3045],[1945,3053,1959,0,1945,3053,1959],[3253,5836,3879,0,3253,5836,3879],[3226,3032,4849,0,3226,3032,4849],[6021,6253,5853,0,6021,6253,5853],[793,5000,5988,0,793,5000,5988],[4127,1926,6565,0,4127,1926,6565],[2772,1865,2773,0,2772,1865,2773],[7768,7724,7726,0,7768,7724,7726],[7746,7722,7724,0,7746,7722,7724],[5062,7340,6965,0,5062,7340,6965],[3691,5914,812,0,3691,5914,812],[3577,4770,3202,0,3577,4770,3202],[7767,7763,7765,0,7767,7763,7765],[7767,7765,7768,0,7767,7765,7768],[366,7653,3942,0,366,7653,3942],[7168,4312,4111,0,7168,4312,4111],[7764,7768,7765,0,7764,7768,7765],[6484,3580,7037,0,6484,3580,7037],[145,7235,694,0,145,7235,694],[3311,3310,7014,0,3311,3310,7014],[5021,4728,3346,0,5021,4728,3346],[7768,7748,7724,0,7768,7748,7724],[3347,1249,3348,0,3347,1249,3348],[7764,7748,7768,0,7764,7748,7768],[3241,4870,5343,0,3241,4870,5343],[5971,5129,5977,0,5971,5129,5977],[7746,7724,7748,0,7746,7724,7748],[3245,3244,2602,0,3245,3244,2602],[7450,7354,7769,0,7450,7354,7769],[7450,7769,5935,0,7450,7769,5935],[6015,7770,7769,0,6015,7770,7769],[6015,7769,7354,0,6015,7769,7354],[1878,2904,6498,0,1878,2904,6498],[3213,3289,5261,0,3213,3289,5261],[7703,5935,7769,0,7703,5935,7769],[2199,4456,6841,0,2199,4456,6841],[6440,1023,7332,0,6440,1023,7332],[1200,1202,46,0,1200,1202,46],[5205,5207,6429,0,5205,5207,6429],[2225,305,1646,0,2225,305,1646],[881,5038,882,0,881,5038,882],[7771,7769,7770,0,7771,7769,7770],[7698,7703,7769,0,7698,7703,7769],[1885,1728,5566,0,1885,1728,5566],[5850,5849,6809,0,5850,5849,6809],[6015,7772,7770,0,6015,7772,7770],[2648,6221,2649,0,2648,6221,2649],[6014,7772,6015,0,6014,7772,6015],[4258,6719,4281,0,4258,6719,4281],[2416,6407,41,0,2416,6407,41],[2542,7274,6173,0,2542,7274,6173],[727,729,5774,0,727,729,5774],[7770,7772,7773,0,7770,7772,7773],[7038,5368,6325,0,7038,5368,6325],[3010,4308,3011,0,3010,4308,3011],[6014,7773,7772,0,6014,7773,7772],[5687,7023,5688,0,5687,7023,5688],[7774,7773,6014,0,7774,7773,6014],[7771,7770,7773,0,7771,7770,7773],[4870,7221,5343,0,4870,7221,5343],[4821,2846,2808,0,4821,2846,2808],[6547,5500,5499,0,6547,5500,5499],[7698,7775,5924,0,7698,7775,5924],[7698,5924,5923,0,7698,5924,5923],[7771,6244,5924,0,7771,6244,5924],[7771,5924,7775,0,7771,5924,7775],[6075,7336,4889,0,6075,7336,4889],[878,3520,4213,0,878,3520,4213],[17,5966,7148,0,17,5966,7148],[352,7228,1737,0,352,7228,1737],[7573,3491,6418,0,7573,3491,6418],[7771,7766,6244,0,7771,7766,6244],[7094,7776,2182,0,7094,7776,2182],[6622,7766,7771,0,6622,7766,7771],[1623,3711,3493,0,1623,3711,3493],[6352,526,4605,0,6352,526,4605],[2312,3846,2313,0,2312,3846,2313],[4740,1638,3980,0,4740,1638,3980],[7698,7769,7775,0,7698,7769,7775],[3227,4603,3228,0,3227,4603,3228],[3995,7777,3996,0,3995,7777,3996],[7771,7775,7769,0,7771,7775,7769],[5773,1283,3280,0,5773,1283,3280],[4742,6019,4743,0,4742,6019,4743],[3812,6932,1080,0,3812,6932,1080],[2589,2588,5392,0,2589,2588,5392],[2204,7079,6835,0,2204,7079,6835],[2309,576,578,0,2309,576,578],[4028,7713,4029,0,4028,7713,4029],[995,1238,5513,0,995,1238,5513],[6622,7771,7773,0,6622,7771,7773],[6622,7773,7774,0,6622,7773,7774],[5879,5841,7778,0,5879,5841,7778],[5879,7778,7779,0,5879,7778,7779],[7707,2718,5997,0,7707,2718,5997],[2107,2991,5971,0,2107,2991,5971],[1987,1988,687,0,1987,1988,687],[7780,7778,5841,0,7780,7778,5841],[2539,3075,4149,0,2539,3075,4149],[6235,5255,6811,0,6235,5255,6811],[1641,3134,1542,0,1641,3134,1542],[7779,7778,7781,0,7779,7778,7781],[4959,5547,5049,0,4959,5547,5049],[7338,2238,5091,0,7338,2238,5091],[7782,7783,7778,0,7782,7783,7778],[5816,6141,6140,0,5816,6141,6140],[5227,3319,7675,0,5227,3319,7675],[7781,7778,7783,0,7781,7778,7783],[7575,4503,7476,0,7575,4503,7476],[7126,3835,3834,0,7126,3835,3834],[5509,3417,7784,0,5509,3417,7784],[4312,7785,4239,0,4312,7785,4239],[6164,5434,2289,0,6164,5434,2289],[6760,7786,2131,0,6760,7786,2131],[7780,5841,7787,0,7780,5841,7787],[6248,5150,5042,0,6248,5150,5042],[4444,5514,2705,0,4444,5514,2705],[2242,5333,7330,0,2242,5333,7330],[6622,7774,7780,0,6622,7774,7780],[6622,7780,7787,0,6622,7780,7787],[3147,4754,2365,0,3147,4754,2365],[4404,1979,5344,0,4404,1979,5344],[7782,7778,7780,0,7782,7778,7780],[2994,1662,5111,0,2994,1662,5111],[4204,7788,4431,0,4204,7788,4431],[6930,5502,5397,0,6930,5502,5397],[5427,3413,4991,0,5427,3413,4991],[1556,5688,1557,0,1556,5688,1557],[7782,49,4431,0,7782,49,4431],[6956,3127,5710,0,6956,3127,5710],[1168,1170,4448,0,1168,1170,4448],[5630,7026,7671,0,5630,7026,7671],[2062,2690,2063,0,2062,2690,2063],[7560,6360,5711,0,7560,6360,5711],[3513,7789,1296,0,3513,7789,1296],[7782,50,49,0,7782,50,49],[2912,3353,2913,0,2912,3353,2913],[6928,6320,4904,0,6928,6320,4904],[3957,5162,3861,0,3957,5162,3861],[2076,46,5390,0,2076,46,5390],[7788,7781,7783,0,7788,7781,7783],[7788,7783,4431,0,7788,7783,4431],[1957,5252,5506,0,1957,5252,5506],[3138,3430,3650,0,3138,3430,3650],[4007,5956,463,0,4007,5956,463],[6596,2816,2226,0,6596,2816,2226],[7782,4431,7783,0,7782,4431,7783],[5608,1588,6556,0,5608,1588,6556],[3991,4967,3179,0,3991,4967,3179],[5334,4067,7521,0,5334,4067,7521],[7782,7780,50,0,7782,7780,50],[7069,5808,5807,0,7069,5808,5807],[7774,6014,50,0,7774,6014,50],[7774,50,7780,0,7774,50,7780],[7346,6530,6529,0,7346,6530,6529],[7517,1529,1528,0,7517,1529,1528],[1429,6909,2745,0,1429,6909,2745],[5088,5599,5138,0,5088,5599,5138],[6211,7066,6212,0,6211,7066,6212],[3412,3414,6310,0,3412,3414,6310],[7790,7730,1546,0,7790,7730,1546],[7790,1546,5869,0,7790,1546,5869],[7736,7695,1546,0,7736,7695,1546],[7736,1546,7730,0,7736,1546,7730],[1282,6568,5157,0,1282,6568,5157],[6559,184,183,0,6559,184,183],[1994,6321,1995,0,1994,6321,1995],[1911,4351,4051,0,1911,4351,4051],[5533,6804,3051,0,5533,6804,3051],[4679,2432,2431,0,4679,2432,2431],[4906,3168,5675,0,4906,3168,5675],[4821,4771,1179,0,4821,4771,1179],[4167,7616,6985,0,4167,7616,6985],[7404,1800,984,0,7404,1800,984],[1743,7791,5869,0,1743,7791,5869],[1879,2785,5043,0,1879,2785,5043],[4739,2291,414,0,4739,2291,414],[7792,5869,7791,0,7792,5869,7791],[2105,1446,6898,0,2105,1446,6898],[267,1464,1463,0,267,1464,1463],[5534,1018,5535,0,5534,1018,5535],[2542,1874,2543,0,2542,1874,2543],[672,6991,4020,0,672,6991,4020],[7792,7790,5869,0,7792,7790,5869],[2980,1386,756,0,2980,1386,756],[4162,7526,6995,0,4162,7526,6995],[5451,4566,6385,0,5451,4566,6385],[1672,1405,4547,0,1672,1405,4547],[7793,6438,6437,0,7793,6438,6437],[5661,5264,6018,0,5661,5264,6018],[7725,7794,7726,0,7725,7794,7726],[261,4436,262,0,261,4436,262],[7794,7795,7726,0,7794,7795,7726],[4123,856,6702,0,4123,856,6702],[3805,3807,4916,0,3805,3807,4916],[2851,6306,6307,0,2851,6306,6307],[5827,7501,4570,0,5827,7501,4570],[7795,7796,7797,0,7795,7796,7797],[7794,7798,7796,0,7794,7798,7796],[7794,7796,7795,0,7794,7796,7795],[2797,5518,1617,0,2797,5518,1617],[6039,3657,6040,0,6039,3657,6040],[7799,7797,7796,0,7799,7797,7796],[2731,4972,5584,0,2731,4972,5584],[7725,7730,7794,0,7725,7730,7794],[7149,3867,6992,0,7149,3867,6992],[7730,7790,7794,0,7730,7790,7794],[901,2889,902,0,901,2889,902],[786,7539,6821,0,786,7539,6821],[1588,1587,4524,0,1588,1587,4524],[7149,6992,7183,0,7149,6992,7183],[3650,1283,1285,0,3650,1283,1285],[3865,6824,365,0,3865,6824,365],[594,1255,1254,0,594,1255,1254],[642,6919,138,0,642,6919,138],[7790,7798,7794,0,7790,7798,7794],[7792,7796,7798,0,7792,7796,7798],[7792,7798,7790,0,7792,7798,7790],[1577,5272,4973,0,1577,5272,4973],[1650,2125,5511,0,1650,2125,5511],[7800,7801,7802,0,7800,7801,7802],[134,5291,132,0,134,5291,132],[7801,7803,7802,0,7801,7803,7802],[3208,3703,3209,0,3208,3703,3209],[5641,4239,5642,0,5641,4239,5642],[7211,7804,1235,0,7211,7804,1235],[7805,7800,7802,0,7805,7800,7802],[2362,7449,7448,0,2362,7449,7448],[1857,1899,1898,0,1857,1899,1898],[6142,5382,5381,0,6142,5382,5381],[2793,1646,6877,0,2793,1646,6877],[6113,6196,6195,0,6113,6196,6195],[5881,934,6393,0,5881,934,6393],[2738,2311,3545,0,2738,2311,3545],[7806,7805,7802,0,7806,7805,7802],[665,4629,666,0,665,4629,666],[1598,5830,7321,0,1598,5830,7321],[7801,7807,7803,0,7801,7807,7803],[7799,7796,7807,0,7799,7796,7807],[3134,5770,1542,0,3134,5770,1542],[7796,7808,7807,0,7796,7808,7807],[276,4417,277,0,276,4417,277],[6891,2158,5413,0,6891,2158,5413],[7803,7807,7808,0,7803,7807,7808],[2576,1594,2577,0,2576,1594,2577],[7634,7258,6777,0,7634,7258,6777],[945,1505,946,0,945,1505,946],[1751,7390,5845,0,1751,7390,5845],[4867,6718,4868,0,4867,6718,4868],[7792,7808,7796,0,7792,7808,7796],[6567,2986,216,0,6567,2986,216],[6536,7494,2076,0,6536,7494,2076],[1344,5038,1203,0,1344,5038,1203],[942,6171,7258,0,942,6171,7258],[7806,7809,7392,0,7806,7809,7392],[547,4162,548,0,547,4162,548],[7810,3185,3187,0,7810,3185,3187],[2009,3516,4992,0,2009,3516,4992],[5393,2118,5885,0,5393,2118,5885],[1742,7392,7809,0,1742,7392,7809],[1742,7809,7791,0,1742,7809,7791],[1719,5792,6033,0,1719,5792,6033],[7809,7811,7791,0,7809,7811,7791],[2981,860,7197,0,2981,860,7197],[1826,5126,424,0,1826,5126,424],[7792,7791,7811,0,7792,7791,7811],[3493,5210,1611,0,3493,5210,1611],[6403,5242,6031,0,6403,5242,6031],[4501,4461,4460,0,4501,4461,4460],[6825,6824,3224,0,6825,6824,3224],[7806,7802,7809,0,7806,7802,7809],[784,783,443,0,784,783,443],[7218,476,7481,0,7218,476,7481],[7803,7809,7802,0,7803,7809,7802],[2651,2653,3371,0,2651,2653,3371],[895,7679,896,0,895,7679,896],[5568,3852,3851,0,5568,3852,3851],[4179,4178,7167,0,4179,4178,7167],[7803,7808,7811,0,7803,7808,7811],[7803,7811,7809,0,7803,7811,7809],[1032,2052,4774,0,1032,2052,4774],[7792,7811,7808,0,7792,7811,7808],[4825,7006,7177,0,4825,7006,7177],[1303,3671,1301,0,1303,3671,1301],[219,582,220,0,219,582,220],[1332,3965,698,0,1332,3965,698],[2407,956,2345,0,2407,956,2345],[7795,7812,7726,0,7795,7812,7726],[4947,79,359,0,4947,79,359],[7813,7812,7795,0,7813,7812,7795],[7767,7726,7812,0,7767,7726,7812],[4268,5442,1891,0,4268,5442,1891],[7767,7812,7814,0,7767,7812,7814],[7767,7814,7763,0,7767,7814,7763],[6088,2599,2598,0,6088,2599,2598],[7813,7814,7812,0,7813,7814,7812],[6603,7777,2777,0,6603,7777,2777],[7815,7814,7813,0,7815,7814,7813],[7683,5246,4842,0,7683,5246,4842],[360,5031,361,0,360,5031,361],[560,4880,2266,0,560,4880,2266],[4514,7440,4515,0,4514,7440,4515],[970,1768,5101,0,970,1768,5101],[7626,6558,928,0,7626,6558,928],[914,913,1482,0,914,913,1482],[7816,7797,7799,0,7816,7797,7799],[7813,7795,7797,0,7813,7795,7797],[4330,7162,4519,0,4330,7162,4519],[7813,7797,7817,0,7813,7797,7817],[6014,6016,50,0,6014,6016,50],[1757,4166,2965,0,1757,4166,2965],[7816,7817,7797,0,7816,7817,7797],[3522,4056,5805,0,3522,4056,5805],[7818,7817,7816,0,7818,7817,7816],[7815,7813,7817,0,7815,7813,7817],[5395,4473,5750,0,5395,4473,5750],[6644,4961,4488,0,6644,4961,4488],[4902,4901,7819,0,4902,4901,7819],[7760,7815,7758,0,7760,7815,7758],[243,3148,4829,0,243,3148,4829],[6889,2897,2896,0,6889,2897,2896],[7820,7758,7815,0,7820,7758,7815],[2764,4990,4991,0,2764,4990,4991],[7821,7758,7820,0,7821,7758,7820],[3633,1538,1540,0,3633,1538,1540],[4499,630,3873,0,4499,630,3873],[5105,3179,4966,0,5105,3179,4966],[3403,1133,1135,0,3403,1133,1135],[7822,7823,7821,0,7822,7823,7821],[7822,7821,7820,0,7822,7821,7820],[4839,6582,5919,0,4839,6582,5919],[7520,7243,3464,0,7520,7243,3464],[7760,7763,7815,0,7760,7763,7815],[635,4049,1382,0,635,4049,1382],[7763,7814,7815,0,7763,7814,7815],[1637,1636,5277,0,1637,1636,5277],[1678,5826,5825,0,1678,5826,5825],[2420,5771,972,0,2420,5771,972],[1832,2950,1135,0,1832,2950,1135],[1604,7824,4302,0,1604,7824,4302],[4740,3284,1638,0,4740,3284,1638],[7825,6398,7804,0,7825,6398,7804],[7815,7817,7820,0,7815,7817,7820],[5377,3239,4900,0,5377,3239,4900],[3495,2510,5341,0,3495,2510,5341],[7818,7820,7817,0,7818,7820,7817],[7825,7804,7210,0,7825,7804,7210],[7822,7820,7818,0,7822,7820,7818],[7826,7827,7828,0,7826,7827,7828],[7826,7828,7829,0,7826,7828,7829],[4140,3016,4002,0,4140,3016,4002],[7587,6331,3370,0,7587,6331,3370],[4098,5365,4099,0,4098,5365,4099],[1911,4051,2828,0,1911,4051,2828],[5657,2236,1693,0,5657,2236,1693],[4482,6962,6485,0,4482,6962,6485],[7829,7828,7830,0,7829,7828,7830],[7829,7830,7831,0,7829,7830,7831],[5004,566,3654,0,5004,566,3654],[7832,7830,7828,0,7832,7830,7828],[5139,690,6742,0,5139,690,6742],[6824,6875,3224,0,6824,6875,3224],[6947,6904,3317,0,6947,6904,3317],[4343,4748,2421,0,4343,4748,2421],[7793,6437,6940,0,7793,6437,6940],[7828,7823,7832,0,7828,7823,7832],[4841,3776,4130,0,4841,3776,4130],[2244,7096,2245,0,2244,7096,2245],[5374,6874,6998,0,5374,6874,6998],[2134,378,2135,0,2134,378,2135],[2851,6307,1089,0,2851,6307,1089],[7832,7823,7822,0,7832,7823,7822],[923,4634,726,0,923,4634,726],[5415,1303,6549,0,5415,1303,6549],[4481,4483,7594,0,4481,4483,7594],[999,7442,6713,0,999,7442,6713],[1786,1785,5974,0,1786,1785,5974],[5974,819,818,0,5974,819,818],[7830,7832,7822,0,7830,7832,7822],[3304,6663,2395,0,3304,6663,2395],[88,3120,5075,0,88,3120,5075],[5608,7305,7833,0,5608,7305,7833],[7834,7830,7801,0,7834,7830,7801],[7834,7801,7800,0,7834,7801,7800],[1316,1315,1481,0,1316,1315,1481],[4370,7135,4100,0,4370,7135,4100],[3563,3562,2070,0,3563,3562,2070],[5077,3039,702,0,5077,3039,702],[6524,7323,1877,0,6524,7323,1877],[3078,6678,2320,0,3078,6678,2320],[7801,7816,7807,0,7801,7816,7807],[7835,7209,3321,0,7835,7209,3321],[7816,7799,7807,0,7816,7799,7807],[2521,2520,4682,0,2521,2520,4682],[6780,845,847,0,6780,845,847],[3783,6828,3733,0,3783,6828,3733],[7268,521,6779,0,7268,521,6779],[4844,6335,6250,0,4844,6335,6250],[797,799,7061,0,797,799,7061],[7831,7830,7834,0,7831,7830,7834],[5140,6177,688,0,5140,6177,688],[5657,7836,4585,0,5657,7836,4585],[890,4414,5574,0,890,4414,5574],[1130,1129,7029,0,1130,1129,7029],[7801,7830,7816,0,7801,7830,7816],[1304,4551,2458,0,1304,4551,2458],[7830,7822,7816,0,7830,7822,7816],[5825,6454,1230,0,5825,6454,1230],[497,1976,1539,0,497,1976,1539],[7818,7816,7822,0,7818,7816,7822],[7364,2033,4939,0,7364,2033,4939],[1849,4883,1850,0,1849,4883,1850],[6957,5229,6896,0,6957,5229,6896],[6278,4102,7289,0,6278,4102,7289],[7837,6119,7047,0,7837,6119,7047],[5921,2117,2116,0,5921,2117,2116],[935,5882,4128,0,935,5882,4128],[3837,7540,3366,0,3837,7540,3366],[2390,2389,5742,0,2390,2389,5742],[669,1711,7399,0,669,1711,7399],[5987,3030,3029,0,5987,3030,3029],[433,432,6512,0,433,432,6512],[6335,7838,6334,0,6335,7838,6334],[54,56,4873,0,54,56,4873],[7838,7839,6334,0,7838,7839,6334],[6967,6011,6010,0,6967,6011,6010],[4654,4632,4918,0,4654,4632,4918],[7840,6334,7839,0,7840,6334,7839],[5125,7576,2562,0,5125,7576,2562],[4844,918,6335,0,4844,918,6335],[4242,6125,5102,0,4242,6125,5102],[7041,1109,1507,0,7041,1109,1507],[7365,4279,5794,0,7365,4279,5794],[1855,7841,6611,0,1855,7841,6611],[7320,7138,7540,0,7320,7138,7540],[625,624,7093,0,625,624,7093],[6335,918,7842,0,6335,918,7842],[6335,7842,7838,0,6335,7842,7838],[5798,5799,6294,0,5798,5799,6294],[3241,5015,3242,0,3241,5015,3242],[2469,2834,5101,0,2469,2834,5101],[4576,4338,673,0,4576,4338,673],[5292,111,1661,0,5292,111,1661],[4734,3110,5746,0,4734,3110,5746],[6953,7050,7843,0,6953,7050,7843],[1389,7839,4503,0,1389,7839,4503],[613,1633,5504,0,613,1633,5504],[2944,2586,4683,0,2944,2586,4683],[5428,5815,3868,0,5428,5815,3868],[853,5238,5237,0,853,5238,5237],[7465,4503,7839,0,7465,4503,7839],[7631,4619,924,0,7631,4619,924],[1547,4461,5922,0,1547,4461,5922],[7465,7838,769,0,7465,7838,769],[5043,1877,1879,0,5043,1877,1879],[7839,7838,7465,0,7839,7838,7465],[7125,1497,1496,0,7125,1497,1496],[164,5976,2278,0,164,5976,2278],[7844,769,7838,0,7844,769,7838],[4891,6046,2483,0,4891,6046,2483],[1389,7840,7839,0,1389,7840,7839],[7607,7501,6134,0,7607,7501,6134],[273,525,274,0,273,525,274],[2971,2970,215,0,2971,2970,215],[1885,1729,1728,0,1885,1729,1728],[5459,1939,4915,0,5459,1939,4915],[7845,6694,5325,0,7845,6694,5325],[7345,7532,4337,0,7345,7532,4337],[3019,3898,889,0,3019,3898,889],[4937,2789,2791,0,4937,2789,2791],[1658,1660,3898,0,1658,1660,3898],[1677,662,1800,0,1677,662,1800],[1406,590,589,0,1406,590,589],[7846,3809,6056,0,7846,3809,6056],[7847,4239,7785,0,7847,4239,7785],[7844,7838,7842,0,7844,7838,7842],[7848,2212,4506,0,7848,2212,4506],[3896,4154,3897,0,3896,4154,3897],[7849,7850,4506,0,7849,7850,4506],[7849,4506,2212,0,7849,4506,2212],[7851,2504,5289,0,7851,2504,5289],[2929,2928,5151,0,2929,2928,5151],[3736,3735,5022,0,3736,3735,5022],[1369,3250,3252,0,1369,3250,3252],[4140,4344,7001,0,4140,4344,7001],[6853,6972,3174,0,6853,6972,3174],[635,5034,636,0,635,5034,636],[4867,3177,3176,0,4867,3177,3176],[7850,7852,4506,0,7850,7852,4506],[3819,404,6284,0,3819,404,6284],[4925,7284,7283,0,4925,7284,7283],[877,1988,2567,0,877,1988,2567],[7526,6812,4878,0,7526,6812,4878],[7849,7853,7850,0,7849,7853,7850],[3684,1960,3685,0,3684,1960,3685],[1501,5554,2595,0,1501,5554,2595],[2638,7854,222,0,2638,7854,222],[3972,6857,7855,0,3972,6857,7855],[7856,965,1687,0,7856,965,1687],[7850,7853,7844,0,7850,7853,7844],[5007,781,189,0,5007,781,189],[5480,3618,7615,0,5480,3618,7615],[2396,4799,3337,0,2396,4799,3337],[5416,7046,5417,0,5416,7046,5417],[7842,7850,7844,0,7842,7850,7844],[5348,4673,6810,0,5348,4673,6810],[625,7093,4966,0,625,7093,4966],[2592,782,781,0,2592,782,781],[6374,5669,5648,0,6374,5669,5648],[5277,7328,3981,0,5277,7328,3981],[7383,7852,6558,0,7383,7852,6558],[2202,2637,4778,0,2202,2637,4778],[285,7402,286,0,285,7402,286],[4736,4735,7316,0,4736,4735,7316],[7024,5987,3029,0,7024,5987,3029],[7276,4711,3351,0,7276,4711,3351],[5118,1375,7857,0,5118,1375,7857],[6558,7852,917,0,6558,7852,917],[6422,6842,3312,0,6422,6842,3312],[3887,2085,6304,0,3887,2085,6304],[15,17,6496,0,15,17,6496],[1902,951,953,0,1902,951,953],[918,917,7852,0,918,917,7852],[4496,7810,7858,0,4496,7810,7858],[7383,4506,7852,0,7383,4506,7852],[3230,7079,2203,0,3230,7079,2203],[6215,7859,5184,0,6215,7859,5184],[5287,2395,2394,0,5287,2395,2394],[6738,2117,6041,0,6738,2117,6041],[5732,2256,7860,0,5732,2256,7860],[6492,3936,620,0,6492,3936,620],[4323,6352,4605,0,4323,6352,4605],[1367,5063,4217,0,1367,5063,4217],[6165,6410,558,0,6165,6410,558],[3102,6523,3103,0,3102,6523,3103],[7684,3555,5374,0,7684,3555,5374],[3880,2743,2742,0,3880,2743,2742],[1241,1488,4981,0,1241,1488,4981],[918,7852,7850,0,918,7852,7850],[918,7850,7842,0,918,7850,7842],[3820,6284,7142,0,3820,6284,7142],[3470,1407,7175,0,3470,1407,7175],[3802,5563,3803,0,3802,5563,3803],[6274,6273,7623,0,6274,6273,7623],[7861,7862,7475,0,7861,7862,7475],[1054,4627,3574,0,1054,4627,3574],[7862,7575,7475,0,7862,7575,7475],[2423,973,2424,0,2423,973,2424],[3674,2371,7863,0,3674,2371,7863],[5081,2948,3909,0,5081,2948,3909],[2075,6536,2076,0,2075,6536,2076],[7234,5645,6441,0,7234,5645,6441],[7864,7865,7862,0,7864,7865,7862],[7864,7862,7861,0,7864,7862,7861],[6486,223,3963,0,6486,223,3963],[4592,7020,2321,0,4592,7020,2321],[4841,5483,3374,0,4841,5483,3374],[2068,6487,2069,0,2068,6487,2069],[4555,3856,3855,0,4555,3856,3855],[2924,3683,3682,0,2924,3683,3682],[7866,7861,7475,0,7866,7861,7475],[7866,7475,771,0,7866,7475,771],[3482,2481,5665,0,3482,2481,5665],[4906,6526,611,0,4906,6526,611],[7184,2187,2186,0,7184,2187,2186],[3830,3267,6733,0,3830,3267,6733],[4395,7516,109,0,4395,7516,109],[5790,4420,5791,0,5790,4420,5791],[7867,7864,7861,0,7867,7864,7861],[7867,7861,7866,0,7867,7861,7866],[1454,4305,1452,0,1454,4305,1452],[1906,6841,4456,0,1906,6841,4456],[7868,7869,7870,0,7868,7869,7870],[7868,7870,7871,0,7868,7870,7871],[681,4689,5078,0,681,4689,5078],[3559,1145,1550,0,3559,1145,1550],[4517,1038,3741,0,4517,1038,3741],[4074,4443,4080,0,4074,4443,4080],[5492,7685,5373,0,5492,7685,5373],[7871,7870,7864,0,7871,7870,7864],[7871,7864,7872,0,7871,7864,7872],[37,2980,1251,0,37,2980,1251],[6201,2412,3401,0,6201,2412,3401],[2940,7732,7655,0,2940,7732,7655],[7873,7874,7872,0,7873,7874,7872],[7873,7872,7864,0,7873,7872,7864],[2813,2531,7052,0,2813,2531,7052],[5606,531,646,0,5606,531,646],[5445,7875,3742,0,5445,7875,3742],[7869,7865,7870,0,7869,7865,7870],[6452,1683,1589,0,6452,1683,1589],[2971,6615,6294,0,2971,6615,6294],[6103,1330,7240,0,6103,1330,7240],[4552,4044,4782,0,4552,4044,4782],[7864,7870,7865,0,7864,7870,7865],[5307,86,88,0,5307,86,88],[5298,6031,5242,0,5298,6031,5242],[3271,3272,5109,0,3271,3272,5109],[7388,4548,160,0,7388,4548,160],[2286,4120,4119,0,2286,4120,4119],[5764,4672,5765,0,5764,4672,5765],[4643,5604,5605,0,4643,5604,5605],[2380,2379,3958,0,2380,2379,3958],[7873,7864,7867,0,7873,7864,7867],[3708,3707,883,0,3708,3707,883],[5112,5920,2116,0,5112,5920,2116],[6371,7138,7594,0,6371,7138,7594],[6666,6566,6565,0,6666,6566,6565],[1540,6050,3633,0,1540,6050,3633],[7876,6563,7877,0,7876,6563,7877],[3879,2480,2482,0,3879,2480,2482],[7236,4820,5595,0,7236,4820,5595],[6563,7876,7215,0,6563,7876,7215],[7447,6309,6178,0,7447,6309,6178],[4485,2890,7397,0,4485,2890,7397],[7034,7373,6151,0,7034,7373,6151],[3981,7328,3067,0,3981,7328,3067],[7878,7215,7876,0,7878,7215,7876],[2852,1459,7879,0,2852,1459,7879],[6586,1952,1951,0,6586,1952,1951],[7877,7880,7873,0,7877,7880,7873],[5866,5110,6375,0,5866,5110,6375],[7150,7429,5581,0,7150,7429,5581],[7874,7873,7880,0,7874,7873,7880],[7727,6933,7881,0,7727,6933,7881],[7176,7323,2161,0,7176,7323,2161],[7876,7877,7873,0,7876,7877,7873],[6322,5053,6815,0,6322,5053,6815],[5142,484,3982,0,5142,484,3982],[5124,3987,3989,0,5124,3987,3989],[7873,7867,7876,0,7873,7867,7876],[6475,421,7216,0,6475,421,7216],[7867,7878,7876,0,7867,7878,7876],[22,65,64,0,22,65,64],[6441,6442,7234,0,6441,6442,7234],[2551,2454,3270,0,2551,2454,3270],[6818,4827,4829,0,6818,4827,4829],[5657,7619,5658,0,5657,7619,5658],[1692,7438,7619,0,1692,7438,7619],[5182,6212,7066,0,5182,6212,7066],[7882,7402,6273,0,7882,7402,6273],[3427,3428,5039,0,3427,3428,5039],[6763,5210,1883,0,6763,5210,1883],[4040,6329,1675,0,4040,6329,1675],[5658,7619,6660,0,5658,7619,6660],[2155,7735,2156,0,2155,7735,2156],[3834,6830,7471,0,3834,6830,7471],[656,1675,6328,0,656,1675,6328],[7866,771,6660,0,7866,771,6660],[3218,822,821,0,3218,822,821],[5902,3952,5903,0,5902,3952,5903],[1634,919,1635,0,1634,919,1635],[4856,5295,5297,0,4856,5295,5297],[1434,7400,7165,0,1434,7400,7165],[7215,7878,7438,0,7215,7878,7438],[5949,5951,6579,0,5949,5951,6579],[7878,7866,7438,0,7878,7866,7438],[3768,7420,5441,0,3768,7420,5441],[949,1013,6508,0,949,1013,6508],[7619,7438,7866,0,7619,7438,7866],[6253,6308,2376,0,6253,6308,2376],[7619,7866,6660,0,7619,7866,6660],[7883,7130,5556,0,7883,7130,5556],[7884,3702,3701,0,7884,3702,3701],[7341,6299,2881,0,7341,6299,2881],[7867,7866,7878,0,7867,7866,7878],[4902,7819,7523,0,4902,7819,7523],[2074,5444,3966,0,2074,5444,3966],[7413,4941,4989,0,7413,4941,4989],[6220,6221,3421,0,6220,6221,3421],[3233,648,5656,0,3233,648,5656],[1039,547,1040,0,1039,547,1040],[7851,861,2505,0,7851,861,2505],[5776,5862,5177,0,5776,5862,5177],[7885,7868,7871,0,7885,7868,7871],[7885,7871,7886,0,7885,7871,7886],[195,6689,7677,0,195,6689,7677],[2174,7309,7887,0,2174,7309,7887],[3817,2279,7329,0,3817,2279,7329],[195,7677,7605,0,195,7677,7605],[7847,4240,4239,0,7847,4240,4239],[3522,3524,4055,0,3522,3524,4055],[2785,7888,2701,0,2785,7888,2701],[7889,7886,7890,0,7889,7886,7890],[7871,7872,7874,0,7871,7872,7874],[7871,7874,7886,0,7871,7874,7886],[6183,6182,4198,0,6183,6182,4198],[4048,3820,7142,0,4048,3820,7142],[7891,7890,7874,0,7891,7890,7874],[5471,3044,3043,0,5471,3044,3043],[5243,2104,5231,0,5243,2104,5231],[7886,7874,7890,0,7886,7874,7890],[7182,7181,2835,0,7182,7181,2835],[3226,3033,3032,0,3226,3033,3032],[6016,6399,1408,0,6016,6399,1408],[1861,6588,1043,0,1861,6588,1043],[4791,4353,3084,0,4791,4353,3084],[6245,6302,1073,0,6245,6302,1073],[3628,5825,2316,0,3628,5825,2316],[88,5075,5074,0,88,5075,5074],[7727,6934,6933,0,7727,6934,6933],[1532,3669,3957,0,1532,3669,3957],[7892,7893,7313,0,7892,7893,7313],[1798,3152,5158,0,1798,3152,5158],[7893,7894,7313,0,7893,7894,7313],[6909,6280,2745,0,6909,6280,2745],[4898,2018,2017,0,4898,2018,2017],[7415,4318,1273,0,7415,4318,1273],[3164,6381,1177,0,3164,6381,1177],[7313,7894,529,0,7313,7894,529],[3021,4533,4532,0,3021,4533,4532],[1696,6798,3411,0,1696,6798,3411],[7347,1440,7688,0,7347,1440,7688],[5936,5171,2561,0,5936,5171,2561],[7895,529,7894,0,7895,529,7894],[3124,5225,5605,0,3124,5225,5605],[7892,7889,7896,0,7892,7889,7896],[7892,7896,7893,0,7892,7896,7893],[7889,7890,7896,0,7889,7890,7896],[3915,338,337,0,3915,338,337],[2886,5323,2887,0,2886,5323,2887],[7897,5169,4699,0,7897,5169,4699],[972,973,7108,0,972,973,7108],[7893,7896,7890,0,7893,7896,7890],[7893,7890,7894,0,7893,7890,7894],[3627,7396,1966,0,3627,7396,1966],[7890,7891,7894,0,7890,7891,7894],[3540,3322,4291,0,3540,3322,4291],[5749,7221,5750,0,5749,7221,5750],[1637,5277,3981,0,1637,5277,3981],[5764,5763,954,0,5764,5763,954],[6544,6543,6564,0,6544,6543,6564],[1165,1116,7898,0,1165,1116,7898],[1165,7898,6563,0,1165,7898,6563],[6578,2621,6579,0,6578,2621,6579],[144,7235,145,0,144,7235,145],[6269,2852,7879,0,6269,2852,7879],[1773,4149,1774,0,1773,4149,1774],[7877,6563,7898,0,7877,6563,7898],[2144,5336,5335,0,2144,5336,5335],[580,4063,581,0,580,4063,581],[5804,4056,4055,0,5804,4056,4055],[888,3463,889,0,888,3463,889],[5633,7658,3330,0,5633,7658,3330],[7181,2836,2835,0,7181,2836,2835],[506,5735,4097,0,506,5735,4097],[675,3143,2192,0,675,3143,2192],[7874,7880,7891,0,7874,7880,7891],[7898,4814,7895,0,7898,4814,7895],[2368,6029,7484,0,2368,6029,7484],[2460,1466,206,0,2460,1466,206],[3345,6490,6459,0,3345,6490,6459],[7894,7877,7895,0,7894,7877,7895],[7824,6922,3835,0,7824,6922,3835],[7877,7898,7895,0,7877,7898,7895],[5657,2211,7836,0,5657,2211,7836],[3823,5033,7171,0,3823,5033,7171],[994,1437,7491,0,994,1437,7491],[3048,5718,4251,0,3048,5718,4251],[7894,7880,7877,0,7894,7880,7877],[4664,4135,5251,0,4664,4135,5251],[7891,7880,7894,0,7891,7880,7894],[498,6133,499,0,498,6133,499],[321,653,3546,0,321,653,3546],[4686,3078,4687,0,4686,3078,4687],[7094,2244,7776,0,7094,2244,7776],[7532,7899,7531,0,7532,7899,7531],[3533,892,894,0,3533,892,894],[7899,7900,7531,0,7899,7900,7531],[6491,4362,6486,0,6491,4362,6486],[3974,6206,3023,0,3974,6206,3023],[7845,7531,7900,0,7845,7531,7900],[7072,2490,2489,0,7072,2490,2489],[7845,7900,6694,0,7845,7900,6694],[7899,7901,7900,0,7899,7901,7900],[2806,5020,2804,0,2806,5020,2804],[7901,7427,7900,0,7901,7427,7900],[4229,3780,6595,0,4229,3780,6595],[7427,6694,7900,0,7427,6694,7900],[2481,5663,5665,0,2481,5663,5665],[4117,5391,2909,0,4117,5391,2909],[7532,4988,7899,0,7532,4988,7899],[5939,3961,3960,0,5939,3961,3960],[1752,1754,6254,0,1752,1754,6254],[1798,1797,680,0,1798,1797,680],[4536,5429,6002,0,4536,5429,6002],[2100,7434,2101,0,2100,7434,2101],[7899,4988,7902,0,7899,4988,7902],[7633,3558,3483,0,7633,3558,3483],[7899,7902,7901,0,7899,7902,7901],[1544,5643,7478,0,1544,5643,7478],[3248,2901,3525,0,3248,2901,3525],[5170,4657,3987,0,5170,4657,3987],[2221,3549,3548,0,2221,3549,3548],[3912,6680,4365,0,3912,6680,4365],[7901,7902,7903,0,7901,7902,7903],[3684,3686,7904,0,3684,3686,7904],[3684,7904,641,0,3684,7904,641],[4313,2296,2039,0,4313,2296,2039],[2520,2519,6090,0,2520,2519,6090],[7905,642,7904,0,7905,642,7904],[685,3848,6480,0,685,3848,6480],[5703,5705,3664,0,5703,5705,3664],[641,7904,642,0,641,7904,642],[4813,3149,530,0,4813,3149,530],[1362,6984,1363,0,1362,6984,1363],[5038,881,1203,0,5038,881,1203],[3805,403,402,0,3805,403,402],[6771,6006,1365,0,6771,6006,1365],[7906,642,7905,0,7906,642,7905],[4381,6173,4382,0,4381,6173,4382],[5802,3586,3585,0,5802,3586,3585],[7904,5538,7905,0,7904,5538,7905],[7907,5441,7420,0,7907,5441,7420],[1950,492,491,0,1950,492,491],[7427,7905,5538,0,7427,7905,5538],[3350,3451,3351,0,3350,3451,3351],[7901,7905,7427,0,7901,7905,7427],[2472,4631,1396,0,2472,4631,1396],[2305,6902,6665,0,2305,6902,6665],[6188,7563,7245,0,6188,7563,7245],[6635,6634,6926,0,6635,6634,6926],[4564,2220,316,0,4564,2220,316],[7901,7903,7905,0,7901,7903,7905],[7902,7906,7903,0,7902,7906,7903],[2492,5766,2493,0,2492,5766,2493],[7906,7905,7903,0,7906,7905,7903],[5334,1417,1416,0,5334,1417,1416],[6667,6121,4567,0,6667,6121,4567],[4983,7908,2288,0,4983,7908,2288],[623,4537,703,0,623,4537,703],[4982,7908,4983,0,4982,7908,4983],[7909,2288,7908,0,7909,2288,7908],[4530,5069,5070,0,4530,5069,5070],[7016,6662,6661,0,7016,6662,6661],[7286,3589,3852,0,7286,3589,3852],[7370,5151,5152,0,7370,5151,5152],[5529,5531,6731,0,5529,5531,6731],[7909,7910,5817,0,7909,7910,5817],[7909,5817,2288,0,7909,5817,2288],[7910,6164,5817,0,7910,6164,5817],[7911,7912,6001,0,7911,7912,6001],[3507,5226,5423,0,3507,5226,5423],[6761,7913,7415,0,6761,7913,7415],[5983,1680,1272,0,5983,1680,1272],[7610,7854,7242,0,7610,7854,7242],[6979,2549,2548,0,6979,2549,2548],[642,4982,6919,0,642,4982,6919],[7906,7909,4982,0,7906,7909,4982],[7906,4982,642,0,7906,4982,642],[7909,7908,4982,0,7909,7908,4982],[685,876,3848,0,685,876,3848],[2810,301,6142,0,2810,301,6142],[7909,7914,7910,0,7909,7914,7910],[2265,305,2225,0,2265,305,2225],[7906,7914,7909,0,7906,7914,7909],[7902,7915,7914,0,7902,7915,7914],[7902,7914,7906,0,7902,7914,7906],[565,6594,4580,0,565,6594,4580],[7910,7914,7915,0,7910,7914,7915],[2959,5438,6529,0,2959,5438,6529],[5507,7916,7598,0,5507,7916,7598],[4934,2850,7389,0,4934,2850,7389],[653,6535,3546,0,653,6535,3546],[90,7439,2467,0,90,7439,2467],[5887,6967,893,0,5887,6967,893],[2180,7598,7916,0,2180,7598,7916],[2180,7916,7917,0,2180,7916,7917],[3286,1908,1941,0,3286,1908,1941],[254,253,2585,0,254,253,2585],[6298,3461,6633,0,6298,3461,6633],[4878,174,176,0,4878,174,176],[4988,4987,2180,0,4988,4987,2180],[4988,2180,7917,0,4988,2180,7917],[4987,2181,2180,0,4987,2181,2180],[7184,2186,4846,0,7184,2186,4846],[2679,2448,1763,0,2679,2448,1763],[6379,7387,6118,0,6379,7387,6118],[1508,220,584,0,1508,220,584],[5388,7437,4411,0,5388,7437,4411],[5337,2847,399,0,5337,2847,399],[7910,7198,6164,0,7910,7198,6164],[7917,7916,7198,0,7917,7916,7198],[7192,7918,7919,0,7192,7918,7919],[7917,7198,7915,0,7917,7198,7915],[5861,5054,3810,0,5861,5054,3810],[5367,6370,5946,0,5367,6370,5946],[7910,7915,7198,0,7910,7915,7198],[7902,4988,7915,0,7902,4988,7915],[3727,4665,4666,0,3727,4665,4666],[4988,7917,7915,0,4988,7917,7915],[6546,833,5934,0,6546,833,5934],[4751,340,1974,0,4751,340,1974],[4221,179,178,0,4221,179,178],[5067,877,2123,0,5067,877,2123],[4602,867,7564,0,4602,867,7564],[454,2190,6078,0,454,2190,6078],[5489,2765,4991,0,5489,2765,4991],[3015,3020,1653,0,3015,3020,1653],[1700,2291,7124,0,1700,2291,7124],[6352,3968,3967,0,6352,3968,3967],[7126,7824,3835,0,7126,7824,3835],[7785,7920,4240,0,7785,7920,4240],[7785,4240,7847,0,7785,4240,7847],[4663,5788,4587,0,4663,5788,4587],[7921,4240,7920,0,7921,4240,7920],[7447,5349,3808,0,7447,5349,3808],[7913,6677,4319,0,7913,6677,4319],[2893,6086,6078,0,2893,6086,6078],[2007,4992,5682,0,2007,4992,5682],[2709,5232,7458,0,2709,5232,7458],[1812,3272,5447,0,1812,3272,5447],[7922,7785,4312,0,7922,7785,4312],[5776,5863,5862,0,5776,5863,5862],[2692,7606,7923,0,2692,7606,7923],[7142,404,4459,0,7142,404,4459],[904,7457,5469,0,904,7457,5469],[5440,4157,438,0,5440,4157,438],[6323,5047,4789,0,6323,5047,4789],[7922,7920,7785,0,7922,7920,7785],[6339,5818,6340,0,6339,5818,6340],[1428,4035,2236,0,1428,4035,2236],[3228,1492,389,0,3228,1492,389],[1971,7621,5483,0,1971,7621,5483],[740,2498,738,0,740,2498,738],[1078,3021,2414,0,1078,3021,2414],[3476,3478,4857,0,3476,3478,4857],[4226,4225,6458,0,4226,4225,6458],[4476,3838,3840,0,4476,3838,3840],[7924,2608,2295,0,7924,2608,2295],[7925,3927,1544,0,7925,3927,1544],[7007,4726,5181,0,7007,4726,5181],[5886,2584,1562,0,5886,2584,1562],[2240,1797,1796,0,2240,1797,1796],[6505,7016,3009,0,6505,7016,3009],[7924,7926,2608,0,7924,7926,2608],[2718,2720,6291,0,2718,2720,6291],[7927,7926,7924,0,7927,7926,7924],[991,3802,3631,0,991,3802,3631],[6436,5830,5829,0,6436,5830,5829],[4354,6607,6606,0,4354,6607,6606],[4214,5399,2408,0,4214,5399,2408],[2294,4240,7924,0,2294,4240,7924],[2294,7924,2295,0,2294,7924,2295],[1488,7928,6423,0,1488,7928,6423],[7921,7924,4240,0,7921,7924,4240],[6113,2973,6560,0,6113,2973,6560],[121,622,6067,0,121,622,6067],[7011,67,69,0,7011,67,69],[7245,7563,7280,0,7245,7563,7280],[993,801,1213,0,993,801,1213],[5488,7453,7425,0,5488,7453,7425],[2600,5463,1294,0,2600,5463,1294],[3936,4582,3937,0,3936,4582,3937],[7927,7924,7921,0,7927,7924,7921],[2990,1993,2991,0,2990,1993,2991],[4505,7104,4504,0,4505,7104,4504],[6329,4656,6328,0,6329,4656,6328],[3853,7927,7929,0,3853,7927,7929],[1714,4215,6837,0,1714,4215,6837],[7531,5325,4337,0,7531,5325,4337],[6879,4659,4963,0,6879,4659,4963],[7431,7930,4569,0,7431,7930,4569],[7048,3493,1613,0,7048,3493,1613],[3853,7929,7922,0,3853,7929,7922],[4705,7384,5032,0,4705,7384,5032],[5860,6916,2779,0,5860,6916,2779],[7135,4370,354,0,7135,4370,354],[1157,21,7310,0,1157,21,7310],[3495,5341,5058,0,3495,5341,5058],[4178,3853,7922,0,4178,3853,7922],[5345,7012,7367,0,5345,7012,7367],[3853,7926,7927,0,3853,7926,7927],[166,702,7647,0,166,702,7647],[2827,6856,4089,0,2827,6856,4089],[6471,7641,5811,0,6471,7641,5811],[5162,4430,5160,0,5162,4430,5160],[6162,7542,7013,0,6162,7542,7013],[6528,2711,5425,0,6528,2711,5425],[4181,1615,3480,0,4181,1615,3480],[7635,4966,7093,0,7635,4966,7093],[5045,2162,6524,0,5045,2162,6524],[7927,7921,7929,0,7927,7921,7929],[7931,7302,2050,0,7931,7302,2050],[3563,5563,3561,0,3563,5563,3561],[7920,7929,7921,0,7920,7929,7921],[4674,2777,7932,0,4674,2777,7932],[7922,7929,7920,0,7922,7929,7920],[4209,7089,5354,0,4209,7089,5354],[5175,5862,5855,0,5175,5862,5855],[5722,1248,4744,0,5722,1248,4744],[1702,200,5758,0,1702,200,5758],[759,7672,760,0,759,7672,760],[5363,4137,4009,0,5363,4137,4009],[7376,1758,6736,0,7376,1758,6736],[6711,7290,127,0,6711,7290,127],[7123,5329,2379,0,7123,5329,2379],[2739,6112,1533,0,2739,6112,1533],[7930,4558,4569,0,7930,4558,4569],[3423,6007,5916,0,3423,6007,5916],[7922,4312,4178,0,7922,4312,4178],[699,1924,5595,0,699,1924,5595],[6345,4578,2024,0,6345,4578,2024],[1543,5770,7400,0,1543,5770,7400],[4780,6134,5048,0,4780,6134,5048],[5559,6839,4901,0,5559,6839,4901],[3841,4380,1280,0,3841,4380,1280],[6316,7254,5053,0,6316,7254,5053],[6181,3777,2795,0,6181,3777,2795],[7180,467,5579,0,7180,467,5579],[2851,2853,6306,0,2851,2853,6306],[1697,6465,1698,0,1697,6465,1698],[1031,5383,7931,0,1031,5383,7931],[1542,3394,6542,0,1542,3394,6542],[7712,4625,1956,0,7712,4625,1956],[6881,1313,1312,0,6881,1313,1312],[3429,3431,1199,0,3429,3431,1199],[1597,1839,7342,0,1597,1839,7342],[2176,2140,3484,0,2176,2140,3484],[2393,6277,7583,0,2393,6277,7583],[5851,5123,4546,0,5851,5123,4546],[6583,5933,7274,0,6583,5933,7274],[2870,565,4581,0,2870,565,4581],[1234,7111,7211,0,1234,7111,7211],[7461,7836,5859,0,7461,7836,5859],[2863,1725,2177,0,2863,1725,2177],[915,3511,913,0,915,3511,913],[2514,4480,1708,0,2514,4480,1708],[4978,1104,4082,0,4978,1104,4082],[5947,6371,7594,0,5947,6371,7594],[7851,2505,2504,0,7851,2505,2504],[5896,4009,4028,0,5896,4009,4028],[7585,4690,7933,0,7585,4690,7933],[6781,3483,7522,0,6781,3483,7522],[6609,3035,5006,0,6609,3035,5006],[2,1,1873,0,2,1,1873],[6222,1112,7934,0,6222,1112,7934],[5769,6842,5767,0,5769,6842,5767],[887,3898,1660,0,887,3898,1660],[5782,7934,1112,0,5782,7934,1112],[7624,5634,7271,0,7624,5634,7271],[3450,7276,3351,0,3450,7276,3351],[7063,3900,5274,0,7063,3900,5274],[3229,389,3553,0,3229,389,3553],[4175,3771,2451,0,4175,3771,2451],[5407,4284,4837,0,5407,4284,4837],[94,3713,3610,0,94,3713,3610],[7934,6510,6222,0,7934,6510,6222],[4944,5986,3885,0,4944,5986,3885],[6857,4248,7855,0,6857,4248,7855],[1726,5490,6455,0,1726,5490,6455],[7573,6418,2477,0,7573,6418,2477],[6509,6222,6510,0,6509,6222,6510],[2016,3893,4579,0,2016,3893,4579],[5398,1909,1575,0,5398,1909,1575],[783,7935,4607,0,783,7935,4607],[2268,6261,2867,0,2268,6261,2867],[347,1110,6625,0,347,1110,6625],[175,5493,176,0,175,5493,176],[1423,3022,5404,0,1423,3022,5404],[7654,2105,2104,0,7654,2105,2104],[7097,5340,815,0,7097,5340,815],[7021,6648,889,0,7021,6648,889],[3058,169,6044,0,3058,169,6044],[7684,504,503,0,7684,504,503],[2660,1017,2664,0,2660,1017,2664],[1905,1918,1906,0,1905,1918,1906],[2255,7297,2256,0,2255,7297,2256],[4813,529,7895,0,4813,529,7895],[7936,4935,4934,0,7936,4935,4934],[2960,6530,7360,0,2960,6530,7360],[2956,7407,7081,0,2956,7407,7081],[4338,2207,4202,0,4338,2207,4202],[2960,7360,5071,0,2960,7360,5071],[766,231,2632,0,766,231,2632],[6894,7474,427,0,6894,7474,427],[7676,328,6466,0,7676,328,6466],[925,924,4619,0,925,924,4619],[3488,831,5761,0,3488,831,5761],[116,115,4135,0,116,115,4135],[1046,6002,5429,0,1046,6002,5429],[158,1307,156,0,158,1307,156],[3236,3235,7274,0,3236,3235,7274],[6981,5516,6007,0,6981,5516,6007],[3347,3349,5027,0,3347,3349,5027],[213,1977,214,0,213,1977,214],[6665,4941,2306,0,6665,4941,2306],[4310,6672,6095,0,4310,6672,6095],[6703,3499,6805,0,6703,3499,6805],[6766,466,465,0,6766,466,465],[785,5398,5501,0,785,5398,5501],[162,164,6643,0,162,164,6643],[752,751,1044,0,752,751,1044],[7937,7737,7218,0,7937,7737,7218],[2512,3750,2513,0,2512,3750,2513],[7659,5303,3153,0,7659,5303,3153],[6156,6876,1648,0,6156,6876,1648],[818,1266,7686,0,818,1266,7686],[7938,3943,3942,0,7938,3943,3942],[6673,6406,2067,0,6673,6406,2067],[6336,3256,6337,0,6336,3256,6337],[4928,1284,1865,0,4928,1284,1865],[932,5693,6793,0,932,5693,6793],[5543,4164,1040,0,5543,4164,1040],[1942,4915,7335,0,1942,4915,7335],[1831,1833,3110,0,1831,1833,3110],[1683,6451,2350,0,1683,6451,2350],[7825,928,6398,0,7825,928,6398],[262,3063,6132,0,262,3063,6132],[2292,2805,7617,0,2292,2805,7617],[6814,2436,2435,0,6814,2436,2435],[3536,32,3537,0,3536,32,3537],[5135,1230,6454,0,5135,1230,6454],[7934,7286,6510,0,7934,7286,6510],[6547,5653,5500,0,6547,5653,5500],[2199,1806,5510,0,2199,1806,5510],[6231,5853,5265,0,6231,5853,5265],[6554,7519,1204,0,6554,7519,1204],[780,2780,2517,0,780,2780,2517],[1295,6787,3608,0,1295,6787,3608],[7286,5782,6869,0,7286,5782,6869],[5016,60,5653,0,5016,60,5653],[540,3811,541,0,540,3811,541],[2026,6832,6210,0,2026,6832,6210],[6857,2008,6858,0,6857,2008,6858],[7644,7038,2023,0,7644,7038,2023],[7014,7542,7541,0,7014,7542,7541],[4738,6814,7674,0,4738,6814,7674],[2898,2897,4764,0,2898,2897,4764],[2939,6443,2940,0,2939,6443,2940],[617,5656,6287,0,617,5656,6287],[6538,6537,6907,0,6538,6537,6907],[3140,3141,6077,0,3140,3141,6077],[3588,7286,6869,0,3588,7286,6869],[6944,6106,7337,0,6944,6106,7337],[6968,6109,2079,0,6968,6109,2079],[363,365,6824,0,363,365,6824],[2339,2341,2047,0,2339,2341,2047],[3200,722,721,0,3200,722,721],[2258,4358,4615,0,2258,4358,4615],[3103,5351,3104,0,3103,5351,3104],[7939,3328,1083,0,7939,3328,1083],[4266,5188,1433,0,4266,5188,1433],[3658,3659,3787,0,3658,3659,3787],[5155,5154,4560,0,5155,5154,4560],[3615,3092,2367,0,3615,3092,2367],[7934,5782,7286,0,7934,5782,7286],[6988,7647,3039,0,6988,7647,3039],[6436,7321,5830,0,6436,7321,5830],[3645,1985,1169,0,3645,1985,1169],[1564,4654,2751,0,1564,4654,2751],[1223,1222,7317,0,1223,1222,7317],[6457,7138,7137,0,6457,7138,7137],[6701,6009,7888,0,6701,6009,7888],[6183,4198,3400,0,6183,4198,3400],[527,31,3760,0,527,31,3760],[6009,1642,7661,0,6009,1642,7661],[532,531,1042,0,532,531,1042],[3436,4752,3437,0,3436,4752,3437],[651,7561,5654,0,651,7561,5654],[6772,723,39,0,6772,723,39],[7940,7561,651,0,7940,7561,651],[7536,5939,2169,0,7536,5939,2169],[4378,227,226,0,4378,227,226],[1783,5844,4588,0,1783,5844,4588],[1596,6575,5981,0,1596,6575,5981],[7858,7579,5604,0,7858,7579,5604],[1257,5757,3571,0,1257,5757,3571],[930,6004,7526,0,930,6004,7526],[4696,2631,1896,0,4696,2631,1896],[5213,2094,2326,0,5213,2094,2326],[7461,4585,7836,0,7461,4585,7836],[7702,7173,7593,0,7702,7173,7593],[2812,18,382,0,2812,18,382],[1650,5511,4408,0,1650,5511,4408],[6419,7086,356,0,6419,7086,356],[7846,2729,3809,0,7846,2729,3809],[1245,1761,2369,0,1245,1761,2369],[3978,5625,5702,0,3978,5625,5702],[7706,3727,3922,0,7706,3727,3922],[798,3716,4438,0,798,3716,4438],[7184,4846,836,0,7184,4846,836],[2222,3548,7522,0,2222,3548,7522],[3535,5433,3536,0,3535,5433,3536],[7656,7646,5080,0,7656,7646,5080],[1693,4035,2949,0,1693,4035,2949],[1784,1786,6344,0,1784,1786,6344],[5281,6245,5953,0,5281,6245,5953],[3559,3560,4241,0,3559,3560,4241],[420,7940,6481,0,420,7940,6481],[6195,3821,5496,0,6195,3821,5496],[7364,441,440,0,7364,441,440],[486,488,1401,0,486,488,1401],[7145,3823,7144,0,7145,3823,7144],[2584,6343,7251,0,2584,6343,7251],[486,1401,1400,0,486,1401,1400],[5978,5680,1008,0,5978,5680,1008],[7941,1880,1882,0,7941,1880,1882],[7561,7940,420,0,7561,7940,420],[6465,3878,6466,0,6465,3878,6466],[1201,6953,1202,0,1201,6953,1202],[7109,7702,7110,0,7109,7702,7110],[1367,7357,6771,0,1367,7357,6771],[3219,1824,872,0,3219,1824,872],[2660,2664,938,0,2660,2664,938],[4129,4130,3775,0,4129,4130,3775],[1467,235,234,0,1467,235,234],[6863,3879,6275,0,6863,3879,6275],[7192,2760,2146,0,7192,2760,2146],[4393,5186,6557,0,4393,5186,6557],[2262,6356,6355,0,2262,6356,6355],[3930,989,2059,0,3930,989,2059],[171,1256,407,0,171,1256,407],[1917,1919,5904,0,1917,1919,5904],[3486,6530,7346,0,3486,6530,7346],[1819,6879,7366,0,1819,6879,7366],[2522,7133,5331,0,2522,7133,5331],[4529,4528,7560,0,4529,4528,7560],[1473,1474,4893,0,1473,1474,4893],[6359,5650,3188,0,6359,5650,3188],[4499,4130,630,0,4499,4130,630],[6881,1312,2308,0,6881,1312,2308],[5984,7426,7425,0,5984,7426,7425],[7940,7205,6481,0,7940,7205,6481],[7254,5810,5809,0,7254,5810,5809],[7942,7255,7578,0,7942,7255,7578],[5346,6727,5475,0,5346,6727,5475],[3350,3352,2659,0,3350,3352,2659],[4800,2278,7455,0,4800,2278,7455],[7151,7150,776,0,7151,7150,776],[7211,7210,7804,0,7211,7210,7804],[1639,1841,1749,0,1639,1841,1749],[3561,6679,5716,0,3561,6679,5716],[2948,2947,3909,0,2948,2947,3909],[3860,5161,3306,0,3860,5161,3306],[2902,3248,1579,0,2902,3248,1579],[6937,5638,6821,0,6937,5638,6821],[915,704,3511,0,915,704,3511],[383,3049,384,0,383,3049,384],[2174,7887,4466,0,2174,7887,4466],[7507,4649,4862,0,7507,4649,4862],[5414,499,6133,0,5414,499,6133],[5510,1592,7517,0,5510,1592,7517],[6114,1836,2592,0,6114,1836,2592],[5378,7589,6794,0,5378,7589,6794],[267,2937,2938,0,267,2937,2938],[6685,747,5062,0,6685,747,5062],[1572,1571,5587,0,1572,1571,5587],[1429,3868,5815,0,1429,3868,5815],[5313,4992,3516,0,5313,4992,3516],[5980,6219,551,0,5980,6219,551],[4713,2468,2467,0,4713,2468,2467],[2590,803,3814,0,2590,803,3814],[1927,1926,4127,0,1927,1926,4127],[5988,5987,7024,0,5988,5987,7024],[5017,5978,7377,0,5017,5978,7377],[7205,651,653,0,7205,651,653],[3724,6025,3722,0,3724,6025,3722],[107,109,7516,0,107,109,7516],[2707,2142,392,0,2707,2142,392],[3763,7148,5966,0,3763,7148,5966],[1155,4322,1153,0,1155,4322,1153],[5947,7594,4483,0,5947,7594,4483],[6401,1338,1107,0,6401,1338,1107],[1024,1023,2114,0,1024,1023,2114],[4460,7735,2155,0,4460,7735,2155],[5573,7082,2782,0,5573,7082,2782],[4638,5104,7732,0,4638,5104,7732],[6377,4954,4953,0,6377,4954,4953],[2268,2906,6260,0,2268,2906,6260],[2854,3632,4930,0,2854,3632,4930],[2797,4822,5518,0,2797,4822,5518],[7940,651,7205,0,7940,651,7205],[6556,1588,4524,0,6556,1588,4524],[4172,6856,2827,0,4172,6856,2827],[2737,1104,4978,0,2737,1104,4978],[5901,5903,2505,0,5901,5903,2505],[6486,5945,4482,0,6486,5945,4482],[4920,7943,4921,0,4920,7943,4921],[4488,7202,5546,0,4488,7202,5546],[3884,4915,4945,0,3884,4915,4945],[3278,1283,7667,0,3278,1283,7667],[5369,2643,2936,0,5369,2643,2936],[6102,6141,5425,0,6102,6141,5425],[4885,6667,4886,0,4885,6667,4886],[3968,1384,5097,0,3968,1384,5097],[2324,3266,4826,0,2324,3266,4826],[3995,7932,7777,0,3995,7932,7777],[5107,3291,7478,0,5107,3291,7478],[2200,5565,3238,0,2200,5565,3238],[1442,1090,7688,0,1442,1090,7688],[7340,899,6965,0,7340,899,6965],[2244,6166,7776,0,2244,6166,7776],[517,519,2985,0,517,519,2985],[473,1213,6225,0,473,1213,6225],[5984,4636,7426,0,5984,4636,7426],[7582,7944,5578,0,7582,7944,5578],[5572,5247,4528,0,5572,5247,4528],[7359,4380,6243,0,7359,4380,6243],[2924,3109,3683,0,2924,3109,3683],[2399,6858,2400,0,2399,6858,2400],[4797,5008,4798,0,4797,5008,4798],[2275,7565,5899,0,2275,7565,5899],[6487,1444,6488,0,6487,1444,6488],[4049,7141,6834,0,4049,7141,6834],[461,2761,7919,0,461,2761,7919],[1947,2042,3137,0,1947,2042,3137],[4798,5008,4690,0,4798,5008,4690],[7574,3702,7884,0,7574,3702,7884],[5641,4311,4239,0,5641,4311,4239],[348,350,6424,0,348,350,6424],[6859,6847,1876,0,6859,6847,1876],[7003,7887,6875,0,7003,7887,6875],[1374,7857,1375,0,1374,7857,1375],[5609,4403,5666,0,5609,4403,5666],[2196,5401,2197,0,2196,5401,2197],[4870,5395,5750,0,4870,5395,5750],[6269,2853,2852,0,6269,2853,2852],[4798,4690,4817,0,4798,4690,4817],[1302,6549,1303,0,1302,6549,1303],[3630,2343,2342,0,3630,2343,2342],[4724,5432,4725,0,4724,5432,4725],[2198,2197,5405,0,2198,2197,5405],[5951,5950,534,0,5951,5950,534],[1499,4862,4861,0,1499,4862,4861],[6300,5762,1426,0,6300,5762,1426],[2192,3949,1550,0,2192,3949,1550],[7666,5060,3207,0,7666,5060,3207],[3553,389,391,0,3553,389,391],[3663,5655,5654,0,3663,5655,5654],[16,1825,4152,0,16,1825,4152],[5760,1033,4773,0,5760,1033,4773],[204,4782,2936,0,204,4782,2936],[5322,127,7290,0,5322,127,7290],[758,4193,4192,0,758,4193,4192],[6354,6513,5590,0,6354,6513,5590],[3040,1958,4927,0,3040,1958,4927],[1501,159,4046,0,1501,159,4046],[541,6143,2302,0,541,6143,2302],[3479,1531,313,0,3479,1531,313],[2235,2236,4584,0,2235,2236,4584],[464,3449,1948,0,464,3449,1948],[4784,7234,6442,0,4784,7234,6442],[4232,4231,5583,0,4232,4231,5583],[6088,4183,2599,0,6088,4183,2599],[2659,3352,2660,0,2659,3352,2660],[7113,2484,2982,0,7113,2484,2982],[3163,4084,7068,0,3163,4084,7068],[5803,5802,4910,0,5803,5802,4910],[6238,4924,4560,0,6238,4924,4560],[6336,2818,2820,0,6336,2818,2820],[5982,3951,5114,0,5982,3951,5114],[3827,3826,6779,0,3827,3826,6779],[1614,4124,1615,0,1614,4124,1615],[1128,1127,6203,0,1128,1127,6203],[7240,1330,1329,0,7240,1330,1329],[2272,2271,6962,0,2272,2271,6962],[3733,3784,3783,0,3733,3784,3783],[1684,6307,7701,0,1684,6307,7701],[4648,5578,7944,0,4648,5578,7944],[2398,6026,344,0,2398,6026,344],[4655,3433,3432,0,4655,3433,3432],[2299,724,6751,0,2299,724,6751],[7644,5368,7038,0,7644,5368,7038],[3102,3104,3307,0,3102,3104,3307],[557,4287,6165,0,557,4287,6165],[6543,3369,2110,0,6543,3369,2110],[7556,7670,5357,0,7556,7670,5357],[7712,4761,5911,0,7712,4761,5911],[7396,2167,1967,0,7396,2167,1967],[6987,4680,5880,0,6987,4680,5880],[4288,1725,6999,0,4288,1725,6999],[6096,7585,6097,0,6096,7585,6097],[5456,5457,4125,0,5456,5457,4125],[7626,7065,7383,0,7626,7065,7383],[2367,1077,1076,0,2367,1077,1076],[7700,4533,5873,0,7700,4533,5873],[1512,1511,6838,0,1512,1511,6838],[5093,5762,6301,0,5093,5762,6301],[270,763,1293,0,270,763,1293],[3611,1484,31,0,3611,1484,31],[4294,2640,5424,0,4294,2640,5424],[2337,5117,5116,0,2337,5117,5116],[1037,6799,3741,0,1037,6799,3741],[5220,5219,5354,0,5220,5219,5354],[5357,7670,7112,0,5357,7670,7112],[2019,5779,2020,0,2019,5779,2020],[3073,4289,6999,0,3073,4289,6999],[2860,6703,290,0,2860,6703,290],[6355,4604,3064,0,6355,4604,3064],[4741,4743,5632,0,4741,4743,5632],[1595,6576,6575,0,1595,6576,6575],[3636,5069,3637,0,3636,5069,3637],[6309,5670,6178,0,6309,5670,6178],[7433,492,5330,0,7433,492,5330],[2956,2544,2341,0,2956,2544,2341],[3332,7290,6711,0,3332,7290,6711],[3651,1285,4928,0,3651,1285,4928],[5173,5174,3545,0,5173,5174,3545],[5377,1420,3239,0,5377,1420,3239],[7945,4556,4191,0,7945,4556,4191],[1088,2851,1089,0,1088,2851,1089],[6378,1122,3861,0,6378,1122,3861],[4639,6955,2671,0,4639,6955,2671],[4690,3892,7933,0,4690,3892,7933],[6699,2332,3539,0,6699,2332,3539],[4146,6506,5821,0,4146,6506,5821],[6409,7373,556,0,6409,7373,556],[3773,7349,3774,0,3773,7349,3774],[4207,4209,4565,0,4207,4209,4565],[3019,3015,3898,0,3019,3015,3898],[3217,3218,1717,0,3217,3218,1717],[7702,7612,168,0,7702,7612,168],[588,390,1492,0,588,390,1492],[4133,3460,4134,0,4133,3460,4134],[5609,1477,4403,0,5609,1477,4403],[4410,589,588,0,4410,589,588],[1981,2247,1982,0,1981,2247,1982],[6697,7155,5481,0,6697,7155,5481],[5630,1309,1404,0,5630,1309,1404],[7255,6645,7577,0,7255,6645,7577],[999,1001,7442,0,999,1001,7442],[4584,5503,3310,0,4584,5503,3310],[1044,1045,5317,0,1044,1045,5317],[4563,3975,6479,0,4563,3975,6479],[3073,5775,4289,0,3073,5775,4289],[7622,2332,6698,0,7622,2332,6698],[7933,3892,7946,0,7933,3892,7946],[1370,1369,3252,0,1370,1369,3252],[977,6067,622,0,977,6067,622],[1852,1854,7421,0,1852,1854,7421],[4791,4435,4434,0,4791,4435,4434],[5276,1636,5677,0,5276,1636,5677],[2292,7617,7107,0,2292,7617,7107],[7947,7933,7946,0,7947,7933,7946],[3370,3369,6544,0,3370,3369,6544],[5077,702,703,0,5077,702,703],[129,7907,7420,0,129,7907,7420],[7418,5270,5482,0,7418,5270,5482],[7947,7907,129,0,7947,7907,129],[2636,7334,2637,0,2636,7334,2637],[3239,6342,4901,0,3239,6342,4901],[2209,2208,7227,0,2209,2208,7227],[2757,6292,7680,0,2757,6292,7680],[3772,683,3773,0,3772,683,3773],[5323,1584,7628,0,5323,1584,7628],[5012,6907,4103,0,5012,6907,4103],[2258,309,4358,0,2258,309,4358],[1889,4027,1887,0,1889,4027,1887],[4718,676,1146,0,4718,676,1146],[1669,1465,1827,0,1669,1465,1827],[1222,5178,5723,0,1222,5178,5723],[4990,2764,1115,0,4990,2764,1115],[5411,5687,5409,0,5411,5687,5409],[249,6003,250,0,249,6003,250],[2207,115,4202,0,2207,115,4202],[5996,3613,5315,0,5996,3613,5315],[3651,7384,3190,0,3651,7384,3190],[5831,4633,3281,0,5831,4633,3281],[7907,7947,7946,0,7907,7947,7946],[7576,2563,2562,0,7576,2563,2562],[1457,1459,1441,0,1457,1459,1441],[7265,4953,7414,0,7265,4953,7414],[7524,394,6084,0,7524,394,6084],[842,7276,3450,0,842,7276,3450],[7366,6879,4963,0,7366,6879,4963],[2463,2462,6259,0,2463,2462,6259],[5627,5090,4961,0,5627,5090,4961],[865,6688,4390,0,865,6688,4390],[4685,6668,2184,0,4685,6668,2184],[1746,4053,1747,0,1746,4053,1747],[6616,192,5347,0,6616,192,5347],[6737,3249,596,0,6737,3249,596],[4870,5852,5395,0,4870,5852,5395],[777,5441,7907,0,777,5441,7907],[5904,4295,4301,0,5904,4295,4301],[777,7907,775,0,777,7907,775],[3122,385,5144,0,3122,385,5144],[7907,7946,775,0,7907,7946,775],[6696,165,5548,0,6696,165,5548],[4368,6053,2149,0,4368,6053,2149],[6808,6670,4368,0,6808,6670,4368],[6349,3278,7667,0,6349,3278,7667],[966,4208,1740,0,966,4208,1740],[3407,859,4897,0,3407,859,4897],[1842,6940,1843,0,1842,6940,1843],[2814,7433,19,0,2814,7433,19],[1864,6135,2773,0,1864,6135,2773],[730,4866,4865,0,730,4866,4865],[1927,4128,7078,0,1927,4128,7078],[6926,6925,4273,0,6926,6925,4273],[4265,7225,5656,0,4265,7225,5656],[4019,832,7203,0,4019,832,7203],[5887,893,3904,0,5887,893,3904],[7415,7913,4318,0,7415,7913,4318],[4158,4159,2092,0,4158,4159,2092],[4715,619,4720,0,4715,619,4720],[2141,2140,2176,0,2141,2140,2176],[6742,689,5996,0,6742,689,5996],[817,4794,5410,0,817,4794,5410],[2450,2452,4091,0,2450,2452,4091],[6953,7437,1202,0,6953,7437,1202],[5136,1894,1893,0,5136,1894,1893],[7264,4409,1814,0,7264,4409,1814],[4026,6362,6361,0,4026,6362,6361],[3892,775,7946,0,3892,775,7946],[6009,7661,7888,0,6009,7661,7888],[1025,1027,155,0,1025,1027,155],[1597,1840,1839,0,1597,1840,1839],[1528,1035,6723,0,1528,1035,6723],[134,1473,4893,0,134,1473,4893],[697,2,3728,0,697,2,3728],[5883,4962,514,0,5883,4962,514],[4003,4002,3018,0,4003,4002,3018],[1354,2122,1355,0,1354,2122,1355],[3623,6987,4684,0,3623,6987,4684],[4510,3517,6920,0,4510,3517,6920],[4542,6410,7292,0,4542,6410,7292],[3584,381,20,0,3584,381,20],[2337,282,6314,0,2337,282,6314],[3398,7366,845,0,3398,7366,845],[6344,2759,6632,0,6344,2759,6632],[7417,7948,7418,0,7417,7948,7418],[1876,1789,1788,0,1876,1789,1788],[1824,5972,3468,0,1824,5972,3468],[3902,5760,4332,0,3902,5760,4332],[6869,7022,6870,0,6869,7022,6870],[2182,7776,7598,0,2182,7776,7598],[1935,2100,4590,0,1935,2100,4590],[416,4802,417,0,416,4802,417],[4709,6736,5452,0,4709,6736,5452],[7499,5733,6838,0,7499,5733,6838],[2914,7662,7253,0,2914,7662,7253],[5791,7949,6602,0,5791,7949,6602],[4714,2469,2468,0,4714,2469,2468],[5502,7375,6726,0,5502,7375,6726],[4063,7143,2403,0,4063,7143,2403],[4896,7660,3408,0,4896,7660,3408],[4785,7234,4784,0,4785,7234,4784],[3004,5003,2382,0,3004,5003,2382],[7052,493,492,0,7052,493,492],[3708,3955,3956,0,3708,3955,3956],[2153,5876,1461,0,2153,5876,1461],[1945,3137,3053,0,1945,3137,3053],[3891,914,1482,0,3891,914,1482],[2112,2113,5417,0,2112,2113,5417],[2744,3868,2745,0,2744,3868,2745],[2575,7637,6884,0,2575,7637,6884],[6189,5949,2799,0,6189,5949,2799],[3218,821,3045,0,3218,821,3045],[923,7617,4728,0,923,7617,4728],[4901,6839,7819,0,4901,6839,7819],[5234,5235,4124,0,5234,5235,4124],[1747,586,1321,0,1747,586,1321],[5053,906,6815,0,5053,906,6815],[2017,6961,4403,0,2017,6961,4403],[3357,2817,2816,0,3357,2817,2816],[1399,2094,1986,0,1399,2094,1986],[2123,1753,3930,0,2123,1753,3930],[3457,849,5337,0,3457,849,5337],[4278,6662,7841,0,4278,6662,7841],[801,993,1185,0,801,993,1185],[2548,2789,3600,0,2548,2789,3600],[1242,1241,2707,0,1242,1241,2707],[6769,7558,7557,0,6769,7558,7557],[2475,942,2044,0,2475,942,2044],[7109,7173,7702,0,7109,7173,7702],[6769,7557,5356,0,6769,7557,5356],[5663,2480,1330,0,5663,2480,1330],[4355,1109,7041,0,4355,1109,7041],[4850,3459,6023,0,4850,3459,6023],[1748,4591,5651,0,1748,4591,5651],[4405,4474,5332,0,4405,4474,5332],[7219,7157,2904,0,7219,7157,2904],[1748,5651,6382,0,1748,5651,6382],[1665,6577,1666,0,1665,6577,1666],[6199,7119,3112,0,6199,7119,3112],[7925,3291,3293,0,7925,3291,3293],[4847,340,5898,0,4847,340,5898],[5876,1021,1517,0,5876,1021,1517],[4321,4323,4605,0,4321,4323,4605],[4272,6298,4273,0,4272,6298,4273],[6695,2408,4441,0,6695,2408,4441],[6712,999,6713,0,6712,999,6713],[3212,6092,3634,0,3212,6092,3634],[986,230,6265,0,986,230,6265],[3947,2084,2086,0,3947,2084,2086],[3622,7153,701,0,3622,7153,701],[2035,7090,1414,0,2035,7090,1414],[3470,48,3471,0,3470,48,3471],[7949,3984,6431,0,7949,3984,6431],[6345,2024,6618,0,6345,2024,6618],[1994,1996,6628,0,1994,1996,6628],[6265,6266,2918,0,6265,6266,2918],[6743,3538,7786,0,6743,3538,7786],[4191,4061,2927,0,4191,4061,2927],[5746,5596,5942,0,5746,5596,5942],[1376,1375,1704,0,1376,1375,1704],[4178,4312,7167,0,4178,4312,7167],[5529,6732,2722,0,5529,6732,2722],[316,315,2633,0,316,315,2633],[1435,1437,3296,0,1435,1437,3296],[3245,4230,5084,0,3245,4230,5084],[4622,1819,1385,0,4622,1819,1385],[3591,4285,3996,0,3591,4285,3996],[3384,2312,5606,0,3384,2312,5606],[2967,2969,7635,0,2967,2969,7635],[3969,407,409,0,3969,407,409],[4722,6225,2340,0,4722,6225,2340],[479,6747,5209,0,479,6747,5209],[7670,3087,3726,0,7670,3087,3726],[1871,4379,4378,0,1871,4379,4378],[210,3991,4398,0,210,3991,4398],[872,5748,4913,0,872,5748,4913],[636,4955,4052,0,636,4955,4052],[6269,7879,6270,0,6269,7879,6270],[3839,6054,6384,0,3839,6054,6384],[7569,6260,7580,0,7569,6260,7580],[2808,2845,2809,0,2808,2845,2809],[3362,4037,1689,0,3362,4037,1689],[4620,5999,2471,0,4620,5999,2471],[4557,4556,7945,0,4557,4556,7945],[3592,6431,5001,0,3592,6431,5001],[2616,1348,5459,0,2616,1348,5459],[7644,5366,5368,0,7644,5366,5368],[3984,5001,6431,0,3984,5001,6431],[3503,4017,3504,0,3503,4017,3504],[2222,3558,2223,0,2222,3558,2223],[4034,7595,4770,0,4034,7595,4770],[447,5673,1620,0,447,5673,1620],[5393,5112,2118,0,5393,5112,2118],[3601,6562,3204,0,3601,6562,3204],[288,6702,856,0,288,6702,856],[5812,3738,5813,0,5812,3738,5813],[1966,3487,5134,0,1966,3487,5134],[2173,964,3146,0,2173,964,3146],[7142,6284,404,0,7142,6284,404],[5157,7105,3842,0,5157,7105,3842],[6670,6923,4368,0,6670,6923,4368],[378,3466,379,0,378,3466,379],[332,6495,6669,0,332,6495,6669],[7949,3985,3984,0,7949,3985,3984],[6236,6141,6093,0,6236,6141,6093],[1298,7825,2838,0,1298,7825,2838],[4738,4376,6814,0,4738,4376,6814],[6460,809,4910,0,6460,809,4910],[6369,7857,7897,0,6369,7857,7897],[5001,3984,3986,0,5001,3984,3986],[4377,3239,1419,0,4377,3239,1419],[3664,5551,5703,0,3664,5551,5703],[6966,7950,1191,0,6966,7950,1191],[5312,5311,4897,0,5312,5311,4897],[4694,361,744,0,4694,361,744],[7651,4357,6587,0,7651,4357,6587],[4949,2250,78,0,4949,2250,78],[4908,2457,2456,0,4908,2457,2456],[6654,5122,5121,0,6654,5122,5121],[1057,1059,3227,0,1057,1059,3227],[7005,6192,7009,0,7005,6192,7009],[6928,475,6320,0,6928,475,6320],[7286,3852,5568,0,7286,3852,5568],[4957,360,362,0,4957,360,362],[5320,926,925,0,5320,926,925],[3515,7951,7527,0,3515,7951,7527],[7410,3309,4271,0,7410,3309,4271],[4264,1884,7952,0,4264,1884,7952],[2328,2327,2907,0,2328,2327,2907],[1643,2269,6438,0,1643,2269,6438],[7672,6585,760,0,7672,6585,760],[6980,2839,2838,0,6980,2839,2838],[2111,2898,5955,0,2111,2898,5955],[1502,1501,2596,0,1502,1501,2596],[7033,7311,5794,0,7033,7311,5794],[4069,5379,1364,0,4069,5379,1364],[2509,5341,2510,0,2509,5341,2510],[4663,6783,3711,0,4663,6783,3711],[834,556,7034,0,834,556,7034],[3338,3322,2752,0,3338,3322,2752],[4231,4233,1351,0,4231,4233,1351],[1699,5020,1734,0,1699,5020,1734],[1999,5825,1230,0,1999,5825,1230],[7576,1288,1544,0,7576,1288,1544],[7234,7547,2004,0,7234,7547,2004],[5704,4367,2151,0,5704,4367,2151],[3260,3909,3908,0,3260,3909,3908],[3479,5757,1257,0,3479,5757,1257],[219,1148,1813,0,219,1148,1813],[6945,4326,5752,0,6945,4326,5752],[910,844,843,0,910,844,843],[5967,1072,5968,0,5967,1072,5968],[7701,6307,4391,0,7701,6307,4391],[2028,2030,7590,0,2028,2030,7590],[1380,1036,1530,0,1380,1036,1530],[4749,7326,6282,0,4749,7326,6282],[7953,7951,7954,0,7953,7951,7954],[6550,3804,5783,0,6550,3804,5783],[5345,5347,5727,0,5345,5347,5727],[598,2122,2121,0,598,2122,2121],[7882,286,7402,0,7882,286,7402],[6835,7080,275,0,6835,7080,275],[6230,3754,6063,0,6230,3754,6063],[6935,6719,4260,0,6935,6719,4260],[5166,4161,7591,0,5166,4161,7591],[7384,4928,2772,0,7384,4928,2772],[3826,2043,7258,0,3826,2043,7258],[4668,1613,1612,0,4668,1613,1612],[1365,6006,1215,0,1365,6006,1215],[5234,2049,3481,0,5234,2049,3481],[6746,759,2619,0,6746,759,2619],[4683,4682,5338,0,4683,4682,5338],[4265,5656,648,0,4265,5656,648],[5266,688,6511,0,5266,688,6511],[1508,584,583,0,1508,584,583],[6700,4603,3227,0,6700,4603,3227],[6837,3379,2943,0,6837,3379,2943],[6466,7677,7676,0,6466,7677,7676],[2014,6293,6076,0,2014,6293,6076],[6191,155,2500,0,6191,155,2500],[3402,5630,7671,0,3402,5630,7671],[7955,387,386,0,7955,387,386],[450,4062,448,0,450,4062,448],[1701,4406,1702,0,1701,4406,1702],[7956,7954,7951,0,7956,7954,7951],[4404,5344,4475,0,4404,5344,4475],[7400,6891,6890,0,7400,6891,6890],[7734,4548,7388,0,7734,4548,7388],[4162,4161,6812,0,4162,4161,6812],[5796,5106,7155,0,5796,5106,7155],[150,7296,151,0,150,7296,151],[1620,5673,6117,0,1620,5673,6117],[3357,561,560,0,3357,561,560],[3066,2297,1064,0,3066,2297,1064],[1137,2609,1138,0,1137,2609,1138],[4906,5944,4907,0,4906,5944,4907],[1882,5668,7189,0,1882,5668,7189],[2295,537,2296,0,2295,537,2296],[263,265,5981,0,263,265,5981],[1399,1985,6158,0,1399,1985,6158],[6125,5637,2282,0,6125,5637,2282],[4286,2771,2735,0,4286,2771,2735],[1586,1588,5608,0,1586,1588,5608],[1697,3878,6465,0,1697,3878,6465],[1172,6828,1173,0,1172,6828,1173],[7368,66,1673,0,7368,66,1673],[3151,6819,5912,0,3151,6819,5912],[7600,7688,1090,0,7600,7688,1090],[5971,2571,2573,0,5971,2571,2573],[6699,6698,2332,0,6699,6698,2332],[5366,6370,5367,0,5366,6370,5367],[6472,4592,1392,0,6472,4592,1392],[5412,4394,7386,0,5412,4394,7386],[4076,4251,5718,0,4076,4251,5718],[5113,2546,7570,0,5113,2546,7570],[2055,6846,6848,0,2055,6846,6848],[7600,1090,5524,0,7600,1090,5524],[2842,2841,4018,0,2842,2841,4018],[6614,6647,7456,0,6614,6647,7456],[1897,4442,4052,0,1897,4442,4052],[4132,4138,2919,0,4132,4138,2919],[1113,654,7182,0,1113,654,7182],[7956,3515,7212,0,7956,3515,7212],[7433,7052,492,0,7433,7052,492],[1019,250,4180,0,1019,250,4180],[34,3320,1838,0,34,3320,1838],[5200,5202,6330,0,5200,5202,6330],[7264,6395,5645,0,7264,6395,5645],[7956,7951,3515,0,7956,7951,3515],[910,843,4811,0,910,843,4811],[946,1505,947,0,946,1505,947],[1701,1979,4404,0,1701,1979,4404],[2667,6853,5153,0,2667,6853,5153],[4668,7048,1613,0,4668,7048,1613],[5442,4268,5292,0,5442,4268,5292],[7032,6529,2228,0,7032,6529,2228],[6847,1787,1789,0,6847,1787,1789],[7957,7956,7212,0,7957,7956,7212],[2655,3565,3567,0,2655,3565,3567],[729,2800,4064,0,729,2800,4064],[1105,1792,2128,0,1105,1792,2128],[2055,1870,1872,0,2055,1870,1872],[5465,5830,5466,0,5465,5830,5466],[3103,1176,5351,0,3103,1176,5351],[1566,6850,6849,0,1566,6850,6849],[4638,4394,5103,0,4638,4394,5103],[5418,2113,524,0,5418,2113,524],[4057,1516,1515,0,4057,1516,1515],[340,1975,1974,0,340,1975,1974],[7500,575,574,0,7500,575,574],[2434,1538,3633,0,2434,1538,3633],[1009,1011,6517,0,1009,1011,6517],[3931,5223,1225,0,3931,5223,1225],[3111,6954,5258,0,3111,6954,5258],[1127,24,26,0,1127,24,26],[3642,906,5055,0,3642,906,5055],[1223,7168,4111,0,1223,7168,4111],[860,5573,861,0,860,5573,861],[5129,6483,5977,0,5129,6483,5977],[3763,6204,7148,0,3763,6204,7148],[725,4290,1166,0,725,4290,1166],[7264,6396,6395,0,7264,6396,6395],[3079,3078,1374,0,3079,3078,1374],[47,2261,7124,0,47,2261,7124],[7347,7688,7600,0,7347,7688,7600],[4388,2627,7525,0,4388,2627,7525],[7954,7956,7958,0,7954,7956,7958],[7700,5873,5872,0,7700,5873,5872],[894,6460,4910,0,894,6460,4910],[1079,2672,1080,0,1079,2672,1080],[4947,80,79,0,4947,80,79],[3348,5722,5618,0,3348,5722,5618],[6146,3381,5784,0,6146,3381,5784],[1847,1387,1388,0,1847,1387,1388],[7954,7958,7959,0,7954,7958,7959],[2869,1522,755,0,2869,1522,755],[4570,1925,7078,0,4570,1925,7078],[6310,5299,4745,0,6310,5299,4745],[7931,7938,7302,0,7931,7938,7302],[6976,6960,6959,0,6976,6960,6959],[5184,5185,7559,0,5184,5185,7559],[4581,5455,5070,0,4581,5455,5070],[7487,1779,1795,0,7487,1779,1795],[4301,4772,5904,0,4301,4772,5904],[1793,4613,5905,0,1793,4613,5905],[6540,6081,7100,0,6540,6081,7100],[5262,1119,3172,0,5262,1119,3172],[6103,7241,5295,0,6103,7241,5295],[2106,5783,3724,0,2106,5783,3724],[6971,3783,2717,0,6971,3783,2717],[4861,4649,7944,0,4861,4649,7944],[212,211,5892,0,212,211,5892],[7086,7106,6238,0,7086,7106,6238],[6759,6927,2849,0,6759,6927,2849],[2658,3177,4869,0,2658,3177,4869],[669,7399,4463,0,669,7399,4463],[7184,3169,3290,0,7184,3169,3290],[421,5725,7217,0,421,5725,7217],[5430,6762,695,0,5430,6762,695],[1795,1794,6161,0,1795,1794,6161],[1598,5467,5466,0,1598,5467,5466],[5056,5840,5057,0,5056,5840,5057],[4644,7303,4645,0,4644,7303,4645],[6001,7912,6000,0,6001,7912,6000],[7600,5524,7163,0,7600,5524,7163],[609,4689,607,0,609,4689,607],[3501,3500,4931,0,3501,3500,4931],[6383,7959,478,0,6383,7959,478],[7267,270,1293,0,7267,270,1293],[5312,859,858,0,5312,859,858],[5488,5487,7453,0,5488,5487,7453],[5754,6468,6946,0,5754,6468,6946],[2554,1207,1594,0,2554,1207,1594],[6034,4433,1533,0,6034,4433,1533],[2243,5613,2244,0,2243,5613,2244],[1926,4993,7242,0,1926,4993,7242],[6130,5183,5182,0,6130,5183,5182],[6478,3848,2220,0,6478,3848,2220],[7223,7784,3417,0,7223,7784,3417],[4776,3581,7554,0,4776,3581,7554],[6505,6662,7016,0,6505,6662,7016],[5910,5460,5911,0,5910,5460,5911],[2949,4035,7960,0,2949,4035,7960],[6080,7179,5838,0,6080,7179,5838],[338,3176,2657,0,338,3176,2657],[4714,2834,2469,0,4714,2834,2469],[7898,1116,4814,0,7898,1116,4814],[4317,2536,7060,0,4317,2536,7060],[1263,2856,1065,0,1263,2856,1065],[6072,3091,3173,0,6072,3091,3173],[7584,7231,7097,0,7584,7231,7097],[7640,3488,5464,0,7640,3488,5464],[3043,4369,5471,0,3043,4369,5471],[1424,4448,2881,0,1424,4448,2881],[4256,2864,1845,0,4256,2864,1845],[1135,2950,3403,0,1135,2950,3403],[4313,2039,2038,0,4313,2039,2038],[4277,3674,7863,0,4277,3674,7863],[2940,4638,7732,0,2940,4638,7732],[6745,7428,6805,0,6745,7428,6805],[3605,3719,7627,0,3605,3719,7627],[1156,1158,65,0,1156,1158,65],[4054,5840,1983,0,4054,5840,1983],[1764,7318,6564,0,1764,7318,6564],[1724,4990,1114,0,1724,4990,1114],[2486,6493,2487,0,2486,6493,2487],[2525,4352,1972,0,2525,4352,1972],[1277,1203,881,0,1277,1203,881],[4717,5387,5386,0,4717,5387,5386],[562,5641,563,0,562,5641,563],[6080,6197,1850,0,6080,6197,1850],[880,2920,7358,0,880,2920,7358],[6593,6592,5635,0,6593,6592,5635],[7642,7255,7942,0,7642,7255,7942],[1067,1264,1065,0,1067,1264,1065],[7957,7958,7956,0,7957,7958,7956],[2503,2546,2504,0,2503,2546,2504],[1771,5494,7123,0,1771,5494,7123],[5771,2420,5772,0,5771,2420,5772],[5496,3821,3820,0,5496,3821,3820],[4909,809,811,0,4909,809,811],[2007,2400,2008,0,2007,2400,2008],[5686,7129,803,0,5686,7129,803],[1847,1388,6698,0,1847,1388,6698],[7825,7210,2838,0,7825,7210,2838],[5671,1224,4110,0,5671,1224,4110],[5798,6294,7535,0,5798,6294,7535],[5462,4873,4874,0,5462,4873,4874],[3178,4398,3179,0,3178,4398,3179],[7255,7642,6721,0,7255,7642,6721],[5356,7557,5357,0,5356,7557,5357],[6411,5384,6257,0,6411,5384,6257],[478,7959,7958,0,478,7959,7958],[6503,3595,3594,0,6503,3595,3594],[7565,6634,5899,0,7565,6634,5899],[4253,3544,2121,0,4253,3544,2121],[4903,5189,4904,0,4903,5189,4904],[617,6287,3510,0,617,6287,3510],[4287,6089,3961,0,4287,6089,3961],[238,2090,4159,0,238,2090,4159],[5115,4421,4420,0,5115,4421,4420],[574,565,2870,0,574,565,2870],[6652,454,6086,0,6652,454,6086],[7185,6105,6112,0,7185,6105,6112],[5545,5049,2644,0,5545,5049,2644],[4674,7,2777,0,4674,7,2777],[6818,2837,4827,0,6818,2837,4827],[2987,471,6042,0,2987,471,6042],[576,2308,3067,0,576,2308,3067],[935,6604,6566,0,935,6604,6566],[5525,5526,6542,0,5525,5526,6542],[6294,3689,7535,0,6294,3689,7535],[2678,1126,5226,0,2678,1126,5226],[4158,1167,2298,0,4158,1167,2298],[2337,6313,775,0,2337,6313,775],[6186,7316,4735,0,6186,7316,4735],[2221,7076,4222,0,2221,7076,4222],[5181,4726,4416,0,5181,4726,4416],[3097,5755,3141,0,3097,5755,3141],[5272,4087,7497,0,5272,4087,7497],[6768,5744,3085,0,6768,5744,3085],[6939,7582,1991,0,6939,7582,1991],[637,4442,4049,0,637,4442,4049],[5894,1569,1192,0,5894,1569,1192],[5640,5892,7495,0,5640,5892,7495],[7064,2433,2432,0,7064,2433,2432],[714,4790,3644,0,714,4790,3644],[4979,5510,6723,0,4979,5510,6723],[1601,6193,7424,0,1601,6193,7424],[1713,5100,1714,0,1713,5100,1714],[1405,1309,1311,0,1405,1309,1311],[930,932,7534,0,930,932,7534],[2648,3924,6221,0,2648,3924,6221],[683,5756,7467,0,683,5756,7467],[1486,3764,7668,0,1486,3764,7668],[6198,6899,7244,0,6198,6899,7244],[2352,610,4045,0,2352,610,4045],[2511,2408,5399,0,2511,2408,5399],[131,6613,129,0,131,6613,129],[4615,7731,4614,0,4615,7731,4614],[6764,3482,3481,0,6764,3482,3481],[1081,3664,5705,0,1081,3664,5705],[237,1963,6465,0,237,1963,6465],[3023,80,4947,0,3023,80,4947],[34,1838,5513,0,34,1838,5513],[7961,7957,5448,0,7961,7957,5448],[1704,5119,1705,0,1704,5119,1705],[3613,1158,1157,0,3613,1158,1157],[6743,7786,6760,0,6743,7786,6760],[2345,955,3031,0,2345,955,3031],[7212,5448,7957,0,7212,5448,7957],[4129,40,7010,0,4129,40,7010],[3215,3373,2801,0,3215,3373,2801],[781,1215,6006,0,781,1215,6006],[7399,2676,4463,0,7399,2676,4463],[7367,7012,7412,0,7367,7012,7412],[700,5595,4820,0,700,5595,4820],[2860,290,5282,0,2860,290,5282],[7053,2371,6890,0,7053,2371,6890],[1081,437,4876,0,1081,437,4876],[969,3962,515,0,969,3962,515],[42,1765,4008,0,42,1765,4008],[2415,2672,1079,0,2415,2672,1079],[1727,5617,7463,0,1727,5617,7463],[7916,5507,7962,0,7916,5507,7962],[2304,5479,2334,0,2304,5479,2334],[3156,4246,3157,0,3156,4246,3157],[6312,4910,4909,0,6312,4910,4909],[4477,5550,4478,0,4477,5550,4478],[6100,6781,3216,0,6100,6781,3216],[2611,4649,7507,0,2611,4649,7507],[1041,1040,2310,0,1041,1040,2310],[3342,5396,5834,0,3342,5396,5834],[3756,6664,3757,0,3756,6664,3757],[1084,1083,3328,0,1084,1083,3328],[6855,3855,3646,0,6855,3855,3646],[4212,4958,7622,0,4212,4958,7622],[466,1353,2728,0,466,1353,2728],[7897,1374,4686,0,7897,1374,4686],[7916,7962,4426,0,7916,7962,4426],[319,2182,2181,0,319,2182,2181],[7961,5448,5449,0,7961,5448,5449],[5415,7455,5976,0,5415,7455,5976],[7402,68,6273,0,7402,68,6273],[7518,6653,5401,0,7518,6653,5401],[5459,5720,1939,0,5459,5720,1939],[1318,1320,7649,0,1318,1320,7649],[1318,7649,6047,0,1318,7649,6047],[1342,5189,5190,0,1342,5189,5190],[7069,6052,6990,0,7069,6052,6990],[3752,7579,3751,0,3752,7579,3751],[6283,6439,38,0,6283,6439,38],[7433,5330,19,0,7433,5330,19],[3214,7522,3548,0,3214,7522,3548],[926,2513,7963,0,926,2513,7963],[5017,5680,5978,0,5017,5680,5978],[6008,6009,6701,0,6008,6009,6701],[2442,1073,6302,0,2442,1073,6302],[5604,3752,3424,0,5604,3752,3424],[5031,5848,361,0,5031,5848,361],[6439,6426,38,0,6439,6426,38],[7964,7582,1500,0,7964,7582,1500],[782,2592,1510,0,782,2592,1510],[3374,858,3776,0,3374,858,3776],[6571,3591,3996,0,6571,3591,3996],[2270,2272,7403,0,2270,2272,7403],[4781,4043,6526,0,4781,4043,6526],[5125,5170,3987,0,5125,5170,3987],[7212,459,5448,0,7212,459,5448],[1108,5035,3128,0,1108,5035,3128],[4191,2927,7945,0,4191,2927,7945],[2388,5611,2389,0,2388,5611,2389],[324,6551,2088,0,324,6551,2088],[3880,1095,1094,0,3880,1095,1094],[5847,3002,2239,0,5847,3002,2239],[1084,3328,1697,0,1084,3328,1697],[5199,6699,3539,0,5199,6699,3539],[4200,4199,4185,0,4200,4199,4185],[7413,4989,3871,0,7413,4989,3871],[5272,7497,4374,0,5272,7497,4374],[1547,5922,1545,0,1547,5922,1545],[7535,3689,4848,0,7535,3689,4848],[7734,7388,5474,0,7734,7388,5474],[7097,817,7584,0,7097,817,7584],[1298,1300,7825,0,1298,1300,7825],[5622,7883,5556,0,5622,7883,5556],[865,7538,6688,0,865,7538,6688],[6538,6907,6906,0,6538,6907,6906],[1605,5212,4287,0,1605,5212,4287],[1946,3840,6469,0,1946,3840,6469],[6903,1294,5463,0,6903,1294,5463],[5006,189,3750,0,5006,189,3750],[3478,5719,4857,0,3478,5719,4857],[7958,7957,7961,0,7958,7957,7961],[4323,4322,6147,0,4323,4322,6147],[7642,7965,3034,0,7642,7965,3034],[5266,6511,5567,0,5266,6511,5567],[1485,3782,3719,0,1485,3782,3719],[3393,5839,5474,0,3393,5839,5474],[3161,6545,4859,0,3161,6545,4859],[4129,7010,7259,0,4129,7010,7259],[3393,5474,7388,0,3393,5474,7388],[330,3046,7246,0,330,3046,7246],[4334,2988,6467,0,4334,2988,6467],[7490,7489,6749,0,7490,7489,6749],[43,42,4008,0,43,42,4008],[3974,3451,6206,0,3974,3451,6206],[1650,4408,4407,0,1650,4408,4407],[3380,236,235,0,3380,236,235],[6210,5530,2721,0,6210,5530,2721],[4407,4409,2006,0,4407,4409,2006],[5480,5761,5481,0,5480,5761,5481],[5804,5805,4056,0,5804,5805,4056],[1937,5832,1820,0,1937,5832,1820],[2836,4041,4827,0,2836,4041,4827],[4090,5110,4091,0,4090,5110,4091],[1694,5962,6083,0,1694,5962,6083],[3183,4765,2731,0,3183,4765,2731],[1396,2127,7966,0,1396,2127,7966],[7062,1163,533,0,7062,1163,533],[478,7961,479,0,478,7961,479],[786,6821,2576,0,786,6821,2576],[2600,7307,5462,0,2600,7307,5462],[6641,2947,3203,0,6641,2947,3203],[5516,4553,6007,0,5516,4553,6007],[5130,1849,6148,0,5130,1849,6148],[4851,4272,4191,0,4851,4272,4191],[479,7961,6747,0,479,7961,6747],[2960,6347,1773,0,2960,6347,1773],[7500,566,575,0,7500,566,575],[7904,3686,5538,0,7904,3686,5538],[581,707,2083,0,581,707,2083],[2928,522,4077,0,2928,522,4077],[5523,6599,5379,0,5523,6599,5379],[7262,3198,3197,0,7262,3198,3197],[478,7958,7961,0,478,7958,7961],[7584,5409,5688,0,7584,5409,5688],[3047,7679,7369,0,3047,7679,7369],[6619,6004,3825,0,6619,6004,3825],[2912,5793,6811,0,2912,5793,6811],[444,3390,3317,0,444,3390,3317],[1415,2831,1416,0,1415,2831,1416],[1347,1349,1848,0,1347,1349,1848],[3006,3772,3774,0,3006,3772,3774],[7251,4902,7523,0,7251,4902,7523],[3963,222,7610,0,3963,222,7610],[6802,3844,4465,0,6802,3844,4465],[960,691,6960,0,960,691,6960],[635,3128,5034,0,635,3128,5034],[5359,6611,7841,0,5359,6611,7841],[4545,5884,3454,0,4545,5884,3454],[284,3583,3582,0,284,3583,3582],[4391,293,4717,0,4391,293,4717],[3649,6661,7053,0,3649,6661,7053],[7961,7967,6747,0,7961,7967,6747],[367,4429,368,0,367,4429,368],[2942,5042,5041,0,2942,5042,5041],[4858,2101,7434,0,4858,2101,7434],[4646,4548,7734,0,4646,4548,7734],[7639,3251,6810,0,7639,3251,6810],[7931,5383,3943,0,7931,5383,3943],[5878,871,1744,0,5878,871,1744],[6105,7224,6106,0,6105,7224,6106],[824,4778,825,0,824,4778,825],[5776,5177,7301,0,5776,5177,7301],[2612,55,275,0,2612,55,275],[2855,4497,7950,0,2855,4497,7950],[7262,3197,3929,0,7262,3197,3929],[1198,2080,728,0,1198,2080,728],[1424,2881,6299,0,1424,2881,6299],[4680,840,839,0,4680,840,839],[6774,3620,1560,0,6774,3620,1560],[6749,3194,3196,0,6749,3194,3196],[3535,7611,7545,0,3535,7611,7545],[7536,2169,6584,0,7536,2169,6584],[1967,4653,4652,0,1967,4653,4652],[4343,2421,6208,0,4343,2421,6208],[812,814,2209,0,812,814,2209],[6754,4666,1268,0,6754,4666,1268],[5134,6454,1966,0,5134,6454,1966],[7968,7967,7961,0,7968,7967,7961],[4025,2680,6362,0,4025,2680,6362],[5288,6782,5289,0,5288,6782,5289],[2506,2508,3959,0,2506,2508,3959],[5657,1693,1692,0,5657,1693,1692],[6062,4927,1957,0,6062,4927,1957],[2681,4101,2757,0,2681,4101,2757],[7382,6426,7350,0,7382,6426,7350],[7559,7375,7312,0,7559,7375,7312],[5583,2318,6678,0,5583,2318,6678],[556,834,557,0,556,834,557],[4279,7033,5794,0,4279,7033,5794],[732,5725,5724,0,732,5725,5724],[576,3067,577,0,576,3067,577],[7849,769,7853,0,7849,769,7853],[143,7859,141,0,143,7859,141],[7961,5449,7968,0,7961,5449,7968],[6354,1334,1333,0,6354,1334,1333],[1788,2064,1876,0,1788,2064,1876],[5458,7749,5720,0,5458,7749,5720],[2301,4028,4136,0,2301,4028,4136],[2941,6914,5256,0,2941,6914,5256],[4354,6606,5930,0,4354,6606,5930],[1441,1459,2852,0,1441,1459,2852],[6408,7669,7663,0,6408,7669,7663],[6712,5141,999,0,6712,5141,999],[1246,3634,1247,0,1246,3634,1247],[1620,7236,2273,0,1620,7236,2273],[507,506,5293,0,507,506,5293],[5827,4570,677,0,5827,4570,677],[5729,3105,4414,0,5729,3105,4414],[5827,677,676,0,5827,677,676],[2225,2226,2817,0,2225,2226,2817],[4838,3797,6582,0,4838,3797,6582],[6588,883,7062,0,6588,883,7062],[1771,7123,7406,0,1771,7123,7406],[5945,4483,4482,0,5945,4483,4482],[5644,2006,4409,0,5644,2006,4409],[2472,4559,2473,0,2472,4559,2473],[270,272,591,0,270,272,591],[5804,3570,5659,0,5804,3570,5659],[2040,7013,6348,0,2040,7013,6348],[6960,693,1005,0,6960,693,1005],[764,763,591,0,764,763,591],[1464,4731,1827,0,1464,4731,1827],[6260,2906,7580,0,6260,2906,7580],[3738,3737,5813,0,3738,3737,5813],[7260,5775,6055,0,7260,5775,6055],[2240,1654,679,0,2240,1654,679],[6268,3793,3445,0,6268,3793,3445],[6631,6588,7062,0,6631,6588,7062],[1742,7791,1743,0,1742,7791,1743],[119,7332,1023,0,119,7332,1023],[7624,3472,6864,0,7624,3472,6864],[1636,3284,5677,0,1636,3284,5677],[3364,3017,6572,0,3364,3017,6572],[2692,855,4594,0,2692,855,4594],[3357,4595,561,0,3357,4595,561],[632,634,6978,0,632,634,6978],[1598,5466,5830,0,1598,5466,5830],[4276,1857,1898,0,4276,1857,1898],[1158,2426,65,0,1158,2426,65],[6994,6674,5695,0,6994,6674,5695],[1305,142,141,0,1305,142,141],[6486,6836,5945,0,6486,6836,5945],[523,1903,6924,0,523,1903,6924],[62,790,3875,0,62,790,3875],[1821,93,1100,0,1821,93,1100],[156,6732,3901,0,156,6732,3901],[2009,2008,3972,0,2009,2008,3972],[6820,795,5450,0,6820,795,5450],[7572,5970,3716,0,7572,5970,3716],[7113,7199,4832,0,7113,7199,4832],[1971,5772,6282,0,1971,5772,6282],[6616,2284,2283,0,6616,2284,2283],[5201,7860,6074,0,5201,7860,6074],[7480,480,5209,0,7480,480,5209],[3109,1289,7469,0,3109,1289,7469],[2586,7969,4307,0,2586,7969,4307],[6795,3205,108,0,6795,3205,108],[7887,7309,6875,0,7887,7309,6875],[1600,6188,5467,0,1600,6188,5467],[967,5649,5329,0,967,5649,5329],[4394,4396,7386,0,4394,4396,7386],[1069,1439,7281,0,1069,1439,7281],[344,3286,1941,0,344,3286,1941],[824,4779,4778,0,824,4779,4778],[7442,7156,6713,0,7442,7156,6713],[781,6006,2592,0,781,6006,2592],[5104,7733,7732,0,5104,7733,7732],[4310,7110,979,0,4310,7110,979],[7970,1458,5282,0,7970,1458,5282],[7404,5100,5099,0,7404,5100,5099],[3695,3212,3634,0,3695,3212,3634],[1396,7966,7971,0,1396,7966,7971],[1418,1420,3778,0,1418,1420,3778],[4311,6840,5435,0,4311,6840,5435],[6983,1199,3431,0,6983,1199,3431],[582,219,1813,0,582,219,1813],[6571,7949,6431,0,6571,7949,6431],[7214,862,6996,0,7214,862,6996],[4818,5145,1835,0,4818,5145,1835],[2530,6218,7039,0,2530,6218,7039],[5296,5295,7241,0,5296,5295,7241],[1724,2136,2138,0,1724,2136,2138],[7629,7256,2363,0,7629,7256,2363],[649,4071,650,0,649,4071,650],[5824,7090,7025,0,5824,7090,7025],[2420,7108,2421,0,2420,7108,2421],[5498,3100,5515,0,5498,3100,5515],[3670,6786,7972,0,3670,6786,7972],[7644,1916,5366,0,7644,1916,5366],[7245,7280,4493,0,7245,7280,4493],[1605,4287,835,0,1605,4287,835],[5204,6215,6916,0,5204,6215,6916],[6444,621,3935,0,6444,621,3935],[7362,2703,1943,0,7362,2703,1943],[3268,740,739,0,3268,740,739],[2586,4307,3010,0,2586,4307,3010],[7362,1943,7835,0,7362,1943,7835],[5305,4612,3731,0,5305,4612,3731],[5323,5324,1584,0,5323,5324,1584],[2329,6067,6066,0,2329,6067,6066],[2514,1708,6913,0,2514,1708,6913],[3366,6457,1536,0,3366,6457,1536],[1044,5317,5316,0,1044,5317,5316],[5197,4917,3572,0,5197,4917,3572],[6400,1069,1071,0,6400,1069,1071],[380,379,2135,0,380,379,2135],[2453,3268,3270,0,2453,3268,3270],[5083,4854,4080,0,5083,4854,4080],[7210,2549,6979,0,7210,2549,6979],[6735,1934,3050,0,6735,1934,3050],[4838,4840,5961,0,4838,4840,5961],[1730,6110,7601,0,1730,6110,7601],[3605,7627,5296,0,3605,7627,5296],[1269,4665,7706,0,1269,4665,7706],[5067,5159,5068,0,5067,5159,5068],[1768,7191,5101,0,1768,7191,5101],[2362,7448,1468,0,2362,7448,1468],[6215,6214,6916,0,6215,6214,6916],[3090,72,74,0,3090,72,74],[1850,4883,5402,0,1850,4883,5402],[3644,7328,5277,0,3644,7328,5277],[7045,6465,1963,0,7045,6465,1963],[1093,1095,2260,0,1093,1095,2260],[4819,4820,5544,0,4819,4820,5544],[6461,4424,6428,0,6461,4424,6428],[4114,7495,3385,0,4114,7495,3385],[5305,6224,1950,0,5305,6224,1950],[6180,1706,4664,0,6180,1706,4664],[6759,4935,7481,0,6759,4935,7481],[3697,3887,6305,0,3697,3887,6305],[3262,2821,1633,0,3262,2821,1633],[6078,6086,454,0,6078,6086,454],[593,3765,3222,0,593,3765,3222],[7856,3426,2952,0,7856,3426,2952],[3874,7595,4600,0,3874,7595,4600],[4579,1049,5898,0,4579,1049,5898],[2986,2342,2965,0,2986,2342,2965],[7973,5909,4216,0,7973,5909,4216],[2916,902,2889,0,2916,902,2889],[2430,6208,2423,0,2430,6208,2423],[1583,7249,1910,0,1583,7249,1910],[1415,6389,6113,0,1415,6389,6113],[2397,6904,6947,0,2397,6904,6947],[7668,3764,3763,0,7668,3764,3763],[5269,7230,5963,0,5269,7230,5963],[631,630,4130,0,631,630,4130],[562,6840,5641,0,562,6840,5641],[310,659,4095,0,310,659,4095],[5813,3737,6228,0,5813,3737,6228],[2652,6592,2653,0,2652,6592,2653],[5778,423,5328,0,5778,423,5328],[5940,3121,3120,0,5940,3121,3120],[6156,6158,6876,0,6156,6158,6876],[5758,1703,1702,0,5758,1703,1702],[4865,6670,6808,0,4865,6670,6808],[1564,596,595,0,1564,596,595],[4795,1265,6674,0,4795,1265,6674],[446,3539,3438,0,446,3539,3438],[944,943,2466,0,944,943,2466],[6986,6985,5943,0,6986,6985,5943],[3663,5647,4796,0,3663,5647,4796],[1721,4577,6345,0,1721,4577,6345],[5188,7257,25,0,5188,7257,25],[7735,4460,7695,0,7735,4460,7695],[6981,6797,2284,0,6981,6797,2284],[5495,1897,1896,0,5495,1897,1896],[3865,364,3866,0,3865,364,3866],[5890,4574,4573,0,5890,4574,4573],[327,3781,2602,0,327,3781,2602],[5918,7646,6826,0,5918,7646,6826],[1350,7567,709,0,1350,7567,709],[951,4331,5890,0,951,4331,5890],[7451,2922,5808,0,7451,2922,5808],[135,6712,7543,0,135,6712,7543],[5458,2550,7749,0,5458,2550,7749],[6693,7583,6277,0,6693,7583,6277],[3580,1557,3581,0,3580,1557,3581],[2713,5187,6541,0,2713,5187,6541],[7932,3995,4674,0,7932,3995,4674],[335,7119,333,0,335,7119,333],[2941,6915,6914,0,2941,6915,6914],[86,7637,2575,0,86,7637,2575],[7856,6855,965,0,7856,6855,965],[2762,3378,6318,0,2762,3378,6318],[6460,894,5094,0,6460,894,5094],[6063,2782,7082,0,6063,2782,7082],[2984,517,2985,0,2984,517,2985],[6937,7539,1670,0,6937,7539,1670],[1548,5660,3081,0,1548,5660,3081],[6943,5082,6066,0,6943,5082,6066],[4606,2569,3510,0,4606,2569,3510],[7058,6396,7264,0,7058,6396,7264],[711,442,441,0,711,442,441],[1909,1941,1908,0,1909,1941,1908],[5627,4961,6644,0,5627,4961,6644],[3981,3980,1638,0,3981,3980,1638],[4970,1664,4339,0,4970,1664,4339],[7572,3716,798,0,7572,3716,798],[4496,7061,7810,0,4496,7061,7810],[4833,7362,7835,0,4833,7362,7835],[6692,805,5556,0,6692,805,5556],[6035,6844,5205,0,6035,6844,5205],[4833,7835,6630,0,4833,7835,6630],[1014,3094,3096,0,1014,3094,3096],[972,5771,7564,0,972,5771,7564],[5083,5084,4230,0,5083,5084,4230],[2399,3387,6858,0,2399,3387,6858],[6931,1573,5502,0,6931,1573,5502],[5329,7123,967,0,5329,7123,967],[6198,2157,7118,0,6198,2157,7118],[431,3539,446,0,431,3539,446],[4693,603,4751,0,4693,603,4751],[7964,1500,1499,0,7964,1500,1499],[7172,7174,7511,0,7172,7174,7511],[4194,1133,7659,0,4194,1133,7659],[753,3467,1352,0,753,3467,1352],[3377,841,6440,0,3377,841,6440],[396,2777,7,0,396,2777,7],[2383,2382,5003,0,2383,2382,5003],[3975,4618,268,0,3975,4618,268],[58,5678,5864,0,58,5678,5864],[3828,3926,6188,0,3828,3926,6188],[4286,7974,4631,0,4286,7974,4631],[4744,6640,6639,0,4744,6640,6639],[1917,5904,4772,0,1917,5904,4772],[58,5864,4227,0,58,5864,4227],[5706,5708,4761,0,5706,5708,4761],[1756,7336,6075,0,1756,7336,6075],[6572,4139,2626,0,6572,4139,2626],[4349,685,6480,0,4349,685,6480],[3571,5757,2139,0,3571,5757,2139],[4500,4461,4501,0,4500,4461,4501],[5366,1916,5136,0,5366,1916,5136],[6572,2626,2428,0,6572,2626,2428],[1788,5268,514,0,1788,5268,514],[5111,62,61,0,5111,62,61],[6359,4704,4703,0,6359,4704,4703],[5053,7254,5054,0,5053,7254,5054],[5603,7705,1394,0,5603,7705,1394],[1756,6075,7296,0,1756,6075,7296],[1887,4795,5108,0,1887,4795,5108],[3188,3190,4704,0,3188,3190,4704],[7297,7296,6075,0,7297,7296,6075],[73,1632,1631,0,73,1632,1631],[7297,6075,6074,0,7297,6075,6074],[598,2121,3544,0,598,2121,3544],[1234,1236,7109,0,1234,1236,7109],[893,1325,894,0,893,1325,894],[300,6959,7039,0,300,6959,7039],[1313,3427,7975,0,1313,3427,7975],[3154,4325,1011,0,3154,4325,1011],[4212,7622,2809,0,4212,7622,2809],[6720,2425,943,0,6720,2425,943],[5739,723,6772,0,5739,723,6772],[6488,1444,2022,0,6488,1444,2022],[5156,3998,1621,0,5156,3998,1621],[1765,2109,2111,0,1765,2109,2111],[2386,2385,7063,0,2386,2385,7063],[6953,7843,1407,0,6953,7843,1407],[1295,1297,6787,0,1295,1297,6787],[3932,7015,4000,0,3932,7015,4000],[4977,2830,5536,0,4977,2830,5536],[6069,5975,32,0,6069,5975,32],[5024,5338,4682,0,5024,5338,4682],[4767,6602,6603,0,4767,6602,6603],[5118,5119,5900,0,5118,5119,5900],[4640,5608,3446,0,4640,5608,3446],[5964,7078,6387,0,5964,7078,6387],[3519,3518,4509,0,3519,3518,4509],[6501,957,2145,0,6501,957,2145],[3893,4563,1050,0,3893,4563,1050],[7672,3056,6585,0,7672,3056,6585],[5858,6185,7461,0,5858,6185,7461],[7972,3671,3670,0,7972,3671,3670],[2547,2549,7211,0,2547,2549,7211],[926,7963,924,0,926,7963,924],[2993,213,2970,0,2993,213,2970],[7963,7976,924,0,7963,7976,924],[7928,6421,6423,0,7928,6421,6423],[7651,2568,4357,0,7651,2568,4357],[7632,924,7976,0,7632,924,7976],[6776,1917,4772,0,6776,1917,4772],[7336,5304,3730,0,7336,5304,3730],[6094,6424,3635,0,6094,6424,3635],[5946,7610,6325,0,5946,7610,6325],[1174,7318,1175,0,1174,7318,1175],[1394,7705,1395,0,1394,7705,1395],[1839,773,7342,0,1839,773,7342],[7496,276,278,0,7496,276,278],[4034,3978,6969,0,4034,3978,6969],[6475,419,421,0,6475,419,421],[2992,4316,3862,0,2992,4316,3862],[3486,7360,6530,0,3486,7360,6530],[3900,157,3901,0,3900,157,3901],[6278,2758,4102,0,6278,2758,4102],[7943,7632,7976,0,7943,7632,7976],[6691,4113,822,0,6691,4113,822],[3568,1000,3569,0,3568,1000,3569],[6982,5347,5346,0,6982,5347,5346],[559,561,4595,0,559,561,4595],[7576,6970,2563,0,7576,6970,2563],[5262,1117,1119,0,5262,1117,1119],[2477,2479,6900,0,2477,2479,6900],[7440,5969,4515,0,7440,5969,4515],[3267,3830,875,0,3267,3830,875],[4774,6860,1875,0,4774,6860,1875],[2034,7090,2035,0,2034,7090,2035],[2723,7977,3091,0,2723,7977,3091],[3,408,4,0,3,408,4],[2033,2032,5456,0,2033,2032,5456],[7602,5393,5885,0,7602,5393,5885],[4021,471,14,0,4021,471,14],[7978,7631,7632,0,7978,7631,7632],[7015,7939,4000,0,7015,7939,4000],[945,6377,4953,0,945,6377,4953],[1992,1632,2084,0,1992,1632,2084],[2249,6825,3223,0,2249,6825,3223],[4676,4677,2241,0,4676,4677,2241],[3446,6131,5854,0,3446,6131,5854],[619,3060,4720,0,619,3060,4720],[4235,2240,4677,0,4235,2240,4677],[713,3623,714,0,713,3623,714],[4086,2975,4087,0,4086,2975,4087],[655,6068,6676,0,655,6068,6676],[1828,2056,1829,0,1828,2056,1829],[132,7166,3111,0,132,7166,3111],[1470,6027,3119,0,1470,6027,3119],[3585,2819,4910,0,3585,2819,4910],[7651,4072,616,0,7651,4072,616],[2655,4897,5311,0,2655,4897,5311],[7978,7632,7943,0,7978,7632,7943],[600,602,6025,0,600,602,6025],[4993,4994,7242,0,4993,4994,7242],[5444,2074,2076,0,5444,2074,2076],[4737,4973,4376,0,4737,4973,4376],[6233,3549,808,0,6233,3549,808],[3782,3612,3720,0,3782,3612,3720],[2365,7882,2366,0,2365,7882,2366],[7979,3180,5105,0,7979,3180,5105],[3501,7153,3622,0,3501,7153,3622],[4359,1012,6587,0,4359,1012,6587],[3977,3979,5264,0,3977,3979,5264],[7978,7943,4920,0,7978,7943,4920],[3773,7467,7349,0,3773,7467,7349],[6108,657,2697,0,6108,657,2697],[6757,3626,4784,0,6757,3626,4784],[434,2247,5916,0,434,2247,5916],[332,6493,6495,0,332,6493,6495],[2440,7263,2515,0,2440,7263,2515],[4373,2615,4977,0,4373,2615,4977],[4688,4697,5169,0,4688,4697,5169],[1858,1860,4341,0,1858,1860,4341],[1053,4302,7126,0,1053,4302,7126],[3584,3854,4318,0,3584,3854,4318],[4937,3600,2789,0,4937,3600,2789],[6611,5884,4545,0,6611,5884,4545],[307,377,813,0,307,377,813],[4635,3038,7426,0,4635,3038,7426],[504,7136,6988,0,504,7136,6988],[6174,4367,5703,0,6174,4367,5703],[1790,93,92,0,1790,93,92],[5108,4795,6994,0,5108,4795,6994],[5218,4001,1881,0,5218,4001,1881],[7647,167,166,0,7647,167,166],[4921,7976,2513,0,4921,7976,2513],[5019,1863,1862,0,5019,1863,1862],[1412,2439,1413,0,1412,2439,1413],[7635,2969,4966,0,7635,2969,4966],[711,712,7084,0,711,712,7084],[6844,7161,3726,0,6844,7161,3726],[2597,2599,4255,0,2597,2599,4255],[1276,7327,1277,0,1276,7327,1277],[4703,4705,3824,0,4703,4705,3824],[7625,7336,1756,0,7625,7336,1756],[6844,3726,5206,0,6844,3726,5206],[2396,5795,458,0,2396,5795,458],[1200,46,45,0,1200,46,45],[3545,2311,2776,0,3545,2311,2776],[6092,6094,3635,0,6092,6094,3635],[2145,2144,5335,0,2145,2144,5335],[785,7935,783,0,785,7935,783],[6447,7623,6273,0,6447,7623,6273],[7056,7639,2389,0,7056,7639,2389],[6461,2803,6866,0,6461,2803,6866],[2777,7777,7932,0,2777,7777,7932],[7976,4921,7943,0,7976,4921,7943],[1127,1014,24,0,1127,1014,24],[2064,1732,1876,0,2064,1732,1876],[4749,4748,4345,0,4749,4748,4345],[2272,7483,7403,0,2272,7483,7403],[7057,2788,7058,0,7057,2788,7058],[186,1663,187,0,186,1663,187],[2898,4764,5956,0,2898,4764,5956],[7975,3427,5039,0,7975,3427,5039],[3463,7520,3464,0,3463,7520,3464],[6321,7163,7162,0,6321,7163,7162],[6,1092,7980,0,6,1092,7980],[5214,5981,6575,0,5214,5981,6575],[1811,633,6268,0,1811,633,6268],[3046,3048,7134,0,3046,3048,7134],[6958,5280,5279,0,6958,5280,5279],[3093,4654,6849,0,3093,4654,6849],[3374,3376,858,0,3374,3376,858],[4447,4073,2133,0,4447,4073,2133],[5972,3220,6637,0,5972,3220,6637],[5485,7918,7192,0,5485,7918,7192],[5769,5768,7298,0,5769,5768,7298],[76,2992,3862,0,76,2992,3862],[6585,7382,7351,0,6585,7382,7351],[7400,6890,7165,0,7400,6890,7165],[3723,5182,5120,0,3723,5182,5120],[440,2097,3396,0,440,2097,3396],[6386,3042,3041,0,6386,3042,3041],[550,6108,1863,0,550,6108,1863],[7571,2610,4187,0,7571,2610,4187],[1224,2244,5612,0,1224,2244,5612],[3366,7138,6457,0,3366,7138,6457],[766,768,231,0,766,768,231],[7308,3023,6206,0,7308,3023,6206],[5835,3253,3255,0,5835,3253,3255],[6626,1808,347,0,6626,1808,347],[7981,7546,7060,0,7981,7546,7060],[6589,4916,5197,0,6589,4916,5197],[5345,5727,7012,0,5345,5727,7012],[6983,4425,6861,0,6983,4425,6861],[3165,3167,4769,0,3165,3167,4769],[5392,5391,2962,0,5392,5391,2962],[7271,4165,7028,0,7271,4165,7028],[2492,2494,7502,0,2492,2494,7502],[3341,5396,3342,0,3341,5396,3342],[6832,2026,5531,0,6832,2026,5531],[1268,1270,6755,0,1268,1270,6755],[171,173,7115,0,171,173,7115],[1741,1880,1739,0,1741,1880,1739],[5304,4270,5305,0,5304,4270,5305],[61,2597,5280,0,61,2597,5280],[1066,7950,6966,0,1066,7950,6966],[5806,2922,2921,0,5806,2922,2921],[647,3603,3123,0,647,3603,3123],[7549,5885,5362,0,7549,5885,5362],[2984,268,4618,0,2984,268,4618],[4386,5521,6205,0,4386,5521,6205],[3509,6159,2452,0,3509,6159,2452],[7031,2088,897,0,7031,2088,897],[6383,478,1748,0,6383,478,1748],[1855,1857,4278,0,1855,1857,4278],[5069,3636,4760,0,5069,3636,4760],[6515,6646,6516,0,6515,6646,6516],[5713,7247,2995,0,5713,7247,2995],[3479,313,6989,0,3479,313,6989],[1194,4275,6182,0,1194,4275,6182],[3395,3397,7132,0,3395,3397,7132],[1809,1808,6626,0,1809,1808,6626],[6320,475,477,0,6320,475,477],[4334,4697,6817,0,4334,4697,6817],[2680,2679,1763,0,2680,2679,1763],[3899,3901,6732,0,3899,3901,6732],[7679,4557,7369,0,7679,4557,7369],[4316,3863,3862,0,4316,3863,3862],[6374,5648,966,0,6374,5648,966],[5409,7584,5410,0,5409,7584,5410],[4034,6231,5264,0,4034,6231,5264],[5549,1038,4517,0,5549,1038,4517],[1228,1230,2228,0,1228,1230,2228],[5864,4343,6208,0,5864,4343,6208],[2897,6309,4764,0,2897,6309,4764],[527,4835,528,0,527,4835,528],[2080,2800,729,0,2080,2800,729],[4385,4626,5521,0,4385,4626,5521],[915,914,5254,0,915,914,5254],[2526,5840,2574,0,2526,5840,2574],[7220,3557,5257,0,7220,3557,5257],[7495,4453,3385,0,7495,4453,3385],[4384,7449,2361,0,4384,7449,2361],[6229,6228,6685,0,6229,6228,6685],[4303,5476,6410,0,4303,5476,6410],[7131,6848,6847,0,7131,6848,6847],[5663,4856,5664,0,5663,4856,5664],[2532,5208,7411,0,2532,5208,7411],[3718,5376,7586,0,3718,5376,7586],[957,2143,2145,0,957,2143,2145],[6559,183,2012,0,6559,183,2012],[6964,1091,1837,0,6964,1091,1837],[977,6065,6067,0,977,6065,6067],[7502,2494,5320,0,7502,2494,5320],[3370,2021,2020,0,3370,2021,2020],[824,7952,4779,0,824,7952,4779],[5973,403,6908,0,5973,403,6908],[2937,4729,4731,0,2937,4729,4731],[6777,4948,4933,0,6777,4948,4933],[5115,2532,7411,0,5115,2532,7411],[5694,868,7246,0,5694,868,7246],[87,5940,3120,0,87,5940,3120],[1878,7219,2904,0,1878,7219,2904],[588,7353,7239,0,588,7353,7239],[5907,5701,4600,0,5907,5701,4600],[1941,5398,785,0,1941,5398,785],[357,79,3437,0,357,79,3437],[6981,2284,6616,0,6981,2284,6616],[7531,7845,5325,0,7531,7845,5325],[7944,4649,4648,0,7944,4649,4648],[6305,72,1307,0,6305,72,1307],[6760,2133,6744,0,6760,2133,6744],[7360,1968,4652,0,7360,1968,4652],[6622,7787,5843,0,6622,7787,5843],[1443,2022,1444,0,1443,2022,1444],[2455,2476,2453,0,2455,2476,2453],[5109,1811,6267,0,5109,1811,6267],[2763,4684,6987,0,2763,4684,6987],[6589,819,4916,0,6589,819,4916],[5668,5233,5232,0,5668,5233,5232],[1383,6833,4457,0,1383,6833,4457],[4813,7895,4814,0,4813,7895,4814],[4424,3139,987,0,4424,3139,987],[974,6043,6044,0,974,6043,6044],[5318,5320,2494,0,5318,5320,2494],[2242,798,4438,0,2242,798,4438],[6119,3219,872,0,6119,3219,872],[6059,3302,7982,0,6059,3302,7982],[7481,7936,7937,0,7481,7936,7937],[7365,6028,6964,0,7365,6028,6964],[3196,5318,2494,0,3196,5318,2494],[7833,3446,5608,0,7833,3446,5608],[7236,5595,1924,0,7236,5595,1924],[1217,6123,7673,0,1217,6123,7673],[2860,2862,3500,0,2860,2862,3500],[3978,5907,6969,0,3978,5907,6969],[6832,5530,6210,0,6832,5530,6210],[5240,539,5241,0,5240,539,5241],[3560,5742,6810,0,3560,5742,6810],[5312,858,7983,0,5312,858,7983],[4347,4211,1486,0,4347,4211,1486],[5165,39,723,0,5165,39,723],[1951,2042,2041,0,1951,2042,2041],[5529,2721,5530,0,5529,2721,5530],[6129,6143,1810,0,6129,6143,1810],[5918,7319,6533,0,5918,7319,6533],[4870,6021,5852,0,4870,6021,5852],[2560,5412,6379,0,2560,5412,6379],[6959,1005,7039,0,6959,1005,7039],[5190,4903,2978,0,5190,4903,2978],[363,4236,4676,0,363,4236,4676],[74,3173,3090,0,74,3173,3090],[1404,7026,5630,0,1404,7026,5630],[5268,6223,226,0,5268,6223,226],[6466,3878,3327,0,6466,3878,3327],[5844,1782,4531,0,5844,1782,4531],[2679,2449,2448,0,2679,2449,2448],[1304,5204,4551,0,1304,5204,4551],[4256,4118,4117,0,4256,4118,4117],[5025,7416,3682,0,5025,7416,3682],[904,5468,905,0,904,5468,905],[5004,567,566,0,5004,567,566],[7960,4035,7984,0,7960,4035,7984],[4646,7734,7733,0,4646,7734,7733],[1675,656,1676,0,1675,656,1676],[1724,7984,2136,0,1724,7984,2136],[5643,1287,4053,0,5643,1287,4053],[1247,3635,6424,0,1247,3635,6424],[1412,1414,3182,0,1412,1414,3182],[910,6865,911,0,910,6865,911],[7985,3393,1502,0,7985,3393,1502],[5171,5929,2561,0,5171,5929,2561],[2490,7072,7071,0,2490,7072,7071],[4183,1670,7539,0,4183,1670,7539],[6468,5754,2937,0,6468,5754,2937],[2669,1299,2839,0,2669,1299,2839],[854,856,1614,0,854,856,1614],[6073,4889,4888,0,6073,4889,4888],[2259,5858,2260,0,2259,5858,2260],[5524,4520,7163,0,5524,4520,7163],[6846,2055,1787,0,6846,2055,1787],[2213,6868,4467,0,2213,6868,4467],[6049,2606,6047,0,6049,2606,6047],[2612,56,55,0,2612,56,55],[7986,2884,2144,0,7986,2884,2144],[1647,6156,1648,0,1647,6156,1648],[3520,4747,2401,0,3520,4747,2401],[1054,7562,4627,0,1054,7562,4627],[4518,3741,3740,0,4518,3741,3740],[1291,2702,1289,0,1291,2702,1289],[2085,4001,2086,0,2085,4001,2086],[1550,1085,1087,0,1550,1085,1087],[6619,6705,6995,0,6619,6705,6995],[4032,6951,6682,0,4032,6951,6682],[7425,4467,6868,0,7425,4467,6868],[4410,3966,5389,0,4410,3966,5389],[1206,2559,2558,0,1206,2559,2558],[7926,3853,2608,0,7926,3853,2608],[7173,1236,7174,0,7173,1236,7174],[1784,6344,2096,0,1784,6344,2096],[3677,7111,3678,0,3677,7111,3678],[7183,398,455,0,7183,398,455],[2140,451,7633,0,2140,451,7633],[5894,6183,3401,0,5894,6183,3401],[6766,1353,466,0,6766,1353,466],[6369,116,5118,0,6369,116,5118],[6940,7222,7793,0,6940,7222,7793],[661,7006,6060,0,661,7006,6060],[6034,6105,4707,0,6034,6105,4707],[3321,7209,5528,0,3321,7209,5528],[123,2310,1040,0,123,2310,1040],[7682,7577,3142,0,7682,7577,3142],[4073,4075,962,0,4073,4075,962],[7732,5474,7655,0,7732,5474,7655],[6411,1023,4681,0,6411,1023,4681],[7916,4426,7198,0,7916,4426,7198],[3986,6714,5002,0,3986,6714,5002],[3692,4702,4730,0,3692,4702,4730],[3223,3225,5153,0,3223,3225,5153],[6472,7020,4592,0,6472,7020,4592],[4242,1378,1377,0,4242,1378,1377],[4294,3997,4285,0,4294,3997,4285],[291,293,7649,0,291,293,7649],[786,874,873,0,786,874,873],[521,4076,522,0,521,4076,522],[3647,3646,3856,0,3647,3646,3856],[2258,4615,660,0,2258,4615,660],[4210,4347,3537,0,4210,4347,3537],[7987,3013,7637,0,7987,3013,7637],[5579,5662,7180,0,5579,5662,7180],[1195,2671,6955,0,1195,2671,6955],[5416,5744,6768,0,5416,5744,6768],[5858,7461,5859,0,5858,7461,5859],[6734,7301,7493,0,6734,7301,7493],[4043,612,611,0,4043,612,611],[5359,7841,6505,0,5359,7841,6505],[666,6413,6586,0,666,6413,6586],[796,7884,3869,0,796,7884,3869],[5193,984,5194,0,5193,984,5194],[3231,7162,3232,0,3231,7162,3232],[5353,3642,5054,0,5353,3642,5054],[7837,2577,7603,0,7837,2577,7603],[2194,1791,1793,0,2194,1791,1793],[7622,6698,2809,0,7622,6698,2809],[5032,5164,5033,0,5032,5164,5033],[4630,7499,1999,0,4630,7499,1999],[2699,1645,1644,0,2699,1645,1644],[1828,5635,5634,0,1828,5635,5634],[2512,6609,3750,0,2512,6609,3750],[3930,4153,3896,0,3930,4153,3896],[749,5984,7425,0,749,5984,7425],[2454,3007,2455,0,2454,3007,2455],[5135,3487,7032,0,5135,3487,7032],[3721,2926,7627,0,3721,2926,7627],[7425,6868,749,0,7425,6868,749],[5127,6462,1391,0,5127,6462,1391],[6621,5801,3999,0,6621,5801,3999],[7201,5546,7202,0,7201,5546,7202],[1193,6992,3867,0,1193,6992,3867],[6072,2723,3091,0,6072,2723,3091],[4877,7988,7989,0,4877,7988,7989],[6235,7042,5255,0,6235,7042,5255],[5176,7493,7301,0,5176,7493,7301],[775,6313,776,0,775,6313,776],[4156,6725,1161,0,4156,6725,1161],[4486,417,4801,0,4486,417,4801],[3272,1246,1245,0,3272,1246,1245],[3485,6946,5875,0,3485,6946,5875],[4877,7989,748,0,4877,7989,748],[5032,7384,2774,0,5032,7384,2774],[6016,6015,6399,0,6016,6015,6399],[2564,7403,7483,0,2564,7403,7483],[3426,2172,3424,0,3426,2172,3424],[1728,1730,7601,0,1728,1730,7601],[5359,5884,6611,0,5359,5884,6611],[4676,4401,364,0,4676,4401,364],[5178,5724,5723,0,5178,5724,5723],[2677,7974,4286,0,2677,7974,4286],[3371,337,3372,0,3371,337,3372],[1641,5526,1841,0,1641,5526,1841],[6374,966,1740,0,6374,966,1740],[7418,2491,2490,0,7418,2491,2490],[6599,2072,2071,0,6599,2072,2071],[5999,7990,1310,0,5999,7990,1310],[4605,528,4606,0,4605,528,4606],[6974,6084,4980,0,6974,6084,4980],[5921,6041,2117,0,5921,6041,2117],[204,2936,205,0,204,2936,205],[6967,422,6011,0,6967,422,6011],[5585,3183,3184,0,5585,3183,3184],[3413,3412,3506,0,3413,3412,3506],[5600,6750,6749,0,5600,6750,6749],[5594,5650,4094,0,5594,5650,4094],[6202,6203,6823,0,6202,6203,6823],[4741,5632,3330,0,4741,5632,3330],[5442,3074,1891,0,5442,3074,1891],[2866,6438,2867,0,2866,6438,2867],[1088,1090,1442,0,1088,1090,1442],[6166,7598,7776,0,6166,7598,7776],[1275,1274,4143,0,1275,1274,4143],[396,1107,1106,0,396,1107,1106],[4114,3385,7005,0,4114,3385,7005],[1364,1456,4985,0,1364,1456,4985],[1677,4168,663,0,1677,4168,663],[1754,187,1663,0,1754,187,1663],[5996,5309,5310,0,5996,5309,5310],[3436,2250,2249,0,3436,2250,2249],[2490,7230,7418,0,2490,7230,7418],[6853,359,358,0,6853,359,358],[2262,6355,3064,0,2262,6355,3064],[1772,1774,7322,0,1772,1774,7322],[5514,3158,2445,0,5514,3158,2445],[3153,3734,6600,0,3153,3734,6600],[3925,7563,6188,0,3925,7563,6188],[560,6789,6788,0,560,6789,6788],[3153,6600,3154,0,3153,6600,3154],[7991,4523,4522,0,7991,4523,4522],[2504,1778,5289,0,2504,1778,5289],[7992,2361,2363,0,7992,2361,2363],[7625,1274,4270,0,7625,1274,4270],[4681,4786,7673,0,4681,4786,7673],[1563,3969,409,0,1563,3969,409],[5569,7993,5567,0,5569,7993,5567],[1212,1063,7666,0,1212,1063,7666],[6991,672,3503,0,6991,672,3503],[6687,2366,6933,0,6687,2366,6933],[2584,7251,7250,0,2584,7251,7250],[6432,6451,5931,0,6432,6451,5931],[7039,1004,196,0,7039,1004,196],[232,231,768,0,232,231,768],[2233,2232,4911,0,2233,2232,4911],[4999,3565,5312,0,4999,3565,5312],[2233,4911,7989,0,2233,4911,7989],[4881,638,5291,0,4881,638,5291],[6170,7487,1628,0,6170,7487,1628],[5398,5397,5502,0,5398,5397,5502],[3415,1668,1655,0,3415,1668,1655],[4430,3669,3671,0,4430,3669,3671],[5298,6909,7542,0,5298,6909,7542],[6315,7087,7276,0,6315,7087,7276],[3200,629,722,0,3200,629,722],[3875,5653,60,0,3875,5653,60],[4911,748,7989,0,4911,748,7989],[7835,6629,6630,0,7835,6629,6630],[3828,6188,1600,0,3828,6188,1600],[4545,3454,7441,0,4545,3454,7441],[1971,6282,7621,0,1971,6282,7621],[6188,5465,5467,0,6188,5465,5467],[1446,7654,7037,0,1446,7654,7037],[4164,7028,4165,0,4164,7028,4165],[3704,6184,5477,0,3704,6184,5477],[3165,4769,3529,0,3165,4769,3529],[260,3164,1177,0,260,3164,1177],[4158,233,1167,0,4158,233,1167],[2476,2475,1015,0,2476,2475,1015],[2179,3368,7519,0,2179,3368,7519],[3798,4881,4893,0,3798,4881,4893],[7666,1063,5060,0,7666,1063,5060],[5575,6706,3827,0,5575,6706,3827],[649,4072,4071,0,649,4072,4071],[4714,1349,2832,0,4714,1349,2832],[5076,1143,5423,0,5076,1143,5423],[4898,4804,4803,0,4898,4804,4803],[5895,883,6588,0,5895,883,6588],[279,370,3068,0,279,370,3068],[5153,6853,4752,0,5153,6853,4752],[3257,6045,2670,0,3257,6045,2670],[6015,7353,6399,0,6015,7353,6399],[5181,4417,276,0,5181,4417,276],[6162,6032,6031,0,6162,6032,6031],[3629,7155,6697,0,3629,7155,6697],[4916,819,6908,0,4916,819,6908],[5250,825,2637,0,5250,825,2637],[7911,6001,5146,0,7911,6001,5146],[2031,6963,2032,0,2031,6963,2032],[2723,2722,7352,0,2723,2722,7352],[3235,3237,3813,0,3235,3237,3813],[2840,3162,2841,0,2840,3162,2841],[6953,4895,6497,0,6953,4895,6497],[372,6205,5521,0,372,6205,5521],[1081,5655,3663,0,1081,5655,3663],[588,7239,390,0,588,7239,390],[7404,7405,5100,0,7404,7405,5100],[3389,2335,2668,0,3389,2335,2668],[868,867,4602,0,868,867,4602],[6121,157,3900,0,6121,157,3900],[4933,7634,6777,0,4933,7634,6777],[5077,4537,4113,0,5077,4537,4113],[1354,7994,2121,0,1354,7994,2121],[2557,3123,6040,0,2557,3123,6040],[1523,1525,7054,0,1523,1525,7054],[3602,4031,3603,0,3602,4031,3603],[294,296,2893,0,294,296,2893],[5558,5164,1359,0,5558,5164,1359],[7017,5780,3625,0,7017,5780,3625],[5663,1330,6103,0,5663,1330,6103],[5307,7995,7996,0,5307,7995,7996],[5307,7996,7637,0,5307,7996,7637],[5892,1932,4453,0,5892,1932,4453],[4073,6744,2133,0,4073,6744,2133],[3409,6708,3133,0,3409,6708,3133],[5856,5176,5175,0,5856,5176,5175],[7987,7637,7996,0,7987,7637,7996],[6110,5561,7601,0,6110,5561,7601],[1067,1066,1581,0,1067,1066,1581],[381,3583,283,0,381,3583,283],[7997,7998,7999,0,7997,7998,7999],[2081,202,6138,0,2081,202,6138],[4175,5866,5090,0,4175,5866,5090],[7474,6894,6145,0,7474,6894,6145],[7995,5307,7999,0,7995,5307,7999],[7995,7999,7998,0,7995,7999,7998],[814,2396,3337,0,814,2396,3337],[7216,5532,6475,0,7216,5532,6475],[2037,5240,6054,0,2037,5240,6054],[2692,4594,7606,0,2692,4594,7606],[2960,2959,6530,0,2960,2959,6530],[8000,7995,7998,0,8000,7995,7998],[243,6405,6364,0,243,6405,6364],[3755,6932,1411,0,3755,6932,1411],[7464,3014,7508,0,7464,3014,7508],[3656,3655,6737,0,3656,3655,6737],[2706,7618,3765,0,2706,7618,3765],[3545,2776,5173,0,3545,2776,5173],[1892,1894,570,0,1892,1894,570],[3355,5593,4400,0,3355,5593,4400],[8001,7464,7508,0,8001,7464,7508],[8001,7508,8002,0,8001,7508,8002],[92,7377,6922,0,92,7377,6922],[6035,6037,6844,0,6035,6037,6844],[5800,3056,7672,0,5800,3056,7672],[1810,1812,6129,0,1810,1812,6129],[8003,8004,8001,0,8003,8004,8001],[8003,8001,8002,0,8003,8001,8002],[8005,8006,8001,0,8005,8006,8001],[8005,8001,8004,0,8005,8001,8004],[7508,3013,8007,0,7508,3013,8007],[6756,1235,7804,0,6756,1235,7804],[6351,6350,3181,0,6351,6350,3181],[7987,8007,3013,0,7987,8007,3013],[982,2100,1935,0,982,2100,1935],[7996,8007,7987,0,7996,8007,7987],[8002,7508,8007,0,8002,7508,8007],[1749,1751,1639,0,1749,1751,1639],[8002,8007,8003,0,8002,8007,8003],[1707,2440,2515,0,1707,2440,2515],[7996,7995,8003,0,7996,7995,8003],[7996,8003,8007,0,7996,8003,8007],[2818,3808,5349,0,2818,3808,5349],[8000,8003,7995,0,8000,8003,7995],[2303,7713,2301,0,2303,7713,2301],[6394,4854,5083,0,6394,4854,5083],[3577,6231,4034,0,3577,6231,4034],[5243,6351,3456,0,5243,6351,3456],[8008,8004,7827,0,8008,8004,7827],[8008,7827,7826,0,8008,7827,7826],[2290,5435,6840,0,2290,5435,6840],[8000,7827,8004,0,8000,7827,8004],[5990,5476,6794,0,5990,5476,6794],[7828,7827,8000,0,7828,7827,8000],[7828,8000,8009,0,7828,8000,8009],[7828,8009,7823,0,7828,8009,7823],[3135,2158,6891,0,3135,2158,6891],[3078,2786,6678,0,3078,2786,6678],[1878,6498,1879,0,1878,6498,1879],[1423,4449,4448,0,1423,4449,4448],[7941,6373,1880,0,7941,6373,1880],[3222,3133,6708,0,3222,3133,6708],[942,3007,1609,0,942,3007,1609],[1122,1505,5351,0,1122,1505,5351],[995,994,1238,0,995,994,1238],[8005,8004,8008,0,8005,8004,8008],[4408,5511,6286,0,4408,5511,6286],[2442,1074,1073,0,2442,1074,1073],[689,5309,5996,0,689,5309,5996],[8000,8004,8003,0,8000,8004,8003],[2891,3747,3746,0,2891,3747,3746],[7919,2761,2760,0,7919,2761,2760],[4075,4074,4854,0,4075,4074,4854],[626,2297,627,0,626,2297,627],[5781,1111,2835,0,5781,1111,2835],[5520,373,372,0,5520,373,372],[7575,7476,7475,0,7575,7476,7475],[8009,8000,7998,0,8009,8000,7998],[1171,1173,6971,0,1171,1173,6971],[5864,4344,4343,0,5864,4344,4343],[7821,7823,8010,0,7821,7823,8010],[7821,8010,7758,0,7821,8010,7758],[7823,7997,8010,0,7823,7997,8010],[330,6669,3046,0,330,6669,3046],[5209,1937,7480,0,5209,1937,7480],[8011,8010,7997,0,8011,8010,7997],[6696,3324,165,0,6696,3324,165],[4316,5120,3863,0,4316,5120,3863],[7823,7998,7997,0,7823,7998,7997],[5764,7544,4672,0,5764,7544,4672],[2028,2307,2029,0,2028,2307,2029],[5634,3108,3107,0,5634,3108,3107],[3040,4927,4926,0,3040,4927,4926],[3730,3795,1002,0,3730,3795,1002],[6808,4368,4367,0,6808,4368,4367],[4444,5599,5598,0,4444,5599,5598],[5781,2835,6869,0,5781,2835,6869],[2638,7242,7854,0,2638,7242,7854],[5350,1120,5351,0,5350,1120,5351],[1168,4449,5404,0,1168,4449,5404],[2826,6116,4172,0,2826,6116,4172],[7367,6914,6727,0,7367,6914,6727],[7823,8009,7998,0,7823,8009,7998],[2323,2344,6658,0,2323,2344,6658],[3534,2819,2818,0,3534,2819,2818],[4616,4618,4804,0,4616,4618,4804],[5282,1458,1457,0,5282,1458,1457],[5525,7222,6940,0,5525,7222,6940],[2272,6962,7483,0,2272,6962,7483],[4569,4568,6365,0,4569,4568,6365],[7750,7752,8012,0,7750,7752,8012],[5661,5660,7462,0,5661,5660,7462],[3753,6230,6252,0,3753,6230,6252],[7755,8012,7752,0,7755,8012,7752],[1769,4962,2527,0,1769,4962,2527],[8013,8012,7755,0,8013,8012,7755],[2293,2239,2238,0,2293,2239,2238],[2589,5392,2011,0,2589,5392,2011],[7750,8012,8013,0,7750,8012,8013],[3817,4137,3951,0,3817,4137,3951],[3021,5873,4533,0,3021,5873,4533],[716,3727,7514,0,716,3727,7514],[1393,1392,4593,0,1393,1392,4593],[5572,7095,5247,0,5572,7095,5247],[6156,3785,6157,0,6156,3785,6157],[7416,2924,3682,0,7416,2924,3682],[813,377,814,0,813,377,814],[2087,895,2088,0,2087,895,2088],[6654,495,494,0,6654,495,494],[747,749,6868,0,747,749,6868],[8014,8013,7757,0,8014,8013,7757],[6258,6101,7562,0,6258,6101,7562],[8013,7755,7757,0,8013,7755,7757],[1762,1683,3125,0,1762,1683,3125],[4118,105,4116,0,4118,105,4116],[3340,3003,3000,0,3340,3003,3000],[8014,8015,8016,0,8014,8015,8016],[8014,8016,8013,0,8014,8016,8013],[8015,8017,8016,0,8015,8017,8016],[594,7278,1182,0,594,7278,1182],[5579,6817,5662,0,5579,6817,5662],[5360,490,5361,0,5360,490,5361],[7411,5208,2813,0,7411,5208,2813],[2062,2665,3606,0,2062,2665,3606],[8018,8016,7208,0,8018,8016,7208],[8018,7208,1469,0,8018,7208,1469],[8017,1470,7208,0,8017,1470,7208],[8017,7208,8016,0,8017,7208,8016],[6132,6134,4780,0,6132,6134,4780],[6476,7067,6477,0,6476,7067,6477],[4751,341,340,0,4751,341,340],[1470,8015,6027,0,1470,8015,6027],[2864,813,5914,0,2864,813,5914],[8017,8015,1470,0,8017,8015,1470],[1223,4111,4110,0,1223,4111,4110],[5195,5857,2822,0,5195,5857,2822],[528,4605,526,0,528,4605,526],[4664,7334,6180,0,4664,7334,6180],[5077,703,4537,0,5077,703,4537],[4955,636,4956,0,4955,636,4956],[3138,1929,228,0,3138,1929,228],[8013,8016,8018,0,8013,8016,8018],[2352,4045,2353,0,2352,4045,2353],[360,3001,5031,0,360,3001,5031],[4804,4899,7140,0,4804,4899,7140],[5841,5843,7787,0,5841,5843,7787],[5046,1264,4789,0,5046,1264,4789],[6954,5290,7555,0,6954,5290,7555],[3268,4734,740,0,3268,4734,740],[2064,514,516,0,2064,514,516],[6878,4434,4433,0,6878,4434,4433],[7410,1259,3790,0,7410,1259,3790],[6757,6442,6675,0,6757,6442,6675],[3981,1638,1637,0,3981,1638,1637],[7784,7185,5509,0,7784,7185,5509],[5074,5073,5307,0,5074,5073,5307],[4410,5389,4411,0,4410,5389,4411],[3956,1232,3708,0,3956,1232,3708],[8019,7999,5073,0,8019,7999,5073],[2337,2336,5117,0,2337,2336,5117],[7999,5307,5073,0,7999,5307,5073],[1471,5937,1666,0,1471,5937,1666],[3941,1219,1098,0,3941,1219,1098],[1292,1294,6903,0,1292,1294,6903],[312,314,586,0,312,314,586],[4384,3513,1295,0,4384,3513,1295],[7486,5486,5488,0,7486,5486,5488],[8020,8019,8015,0,8020,8019,8015],[7997,7999,8019,0,7997,7999,8019],[7997,8019,8020,0,7997,8019,8020],[130,6013,5631,0,130,6013,5631],[990,4548,4646,0,990,4548,4646],[6027,8015,8019,0,6027,8015,8019],[6027,8019,5073,0,6027,8019,5073],[2046,2045,2323,0,2046,2045,2323],[3372,336,3918,0,3372,336,3918],[7368,1456,1455,0,7368,1456,1455],[3022,2793,6877,0,3022,2793,6877],[119,1024,2355,0,119,1024,2355],[1748,480,4591,0,1748,480,4591],[1610,1609,59,0,1610,1609,59],[6177,6509,688,0,6177,6509,688],[2714,3170,3169,0,2714,3170,3169],[674,2683,4017,0,674,2683,4017],[3005,5407,2356,0,3005,5407,2356],[5947,5946,6370,0,5947,5946,6370],[7758,8010,7759,0,7758,8010,7759],[6246,1184,1183,0,6246,1184,1183],[6716,7536,7292,0,6716,7536,7292],[8011,7759,8010,0,8011,7759,8010],[3231,6321,7162,0,3231,6321,7162],[8021,7759,8011,0,8021,7759,8011],[2600,1294,1293,0,2600,1294,1293],[1120,5350,2739,0,1120,5350,2739],[7761,7759,8014,0,7761,7759,8014],[7761,8014,7757,0,7761,8014,7757],[5560,5559,4901,0,5560,5559,4901],[8021,8014,7759,0,8021,8014,7759],[6272,7881,6933,0,6272,7881,6933],[539,3766,5241,0,539,3766,5241],[4640,4639,3259,0,4640,4639,3259],[5689,5691,4415,0,5689,5691,4415],[8011,7997,8020,0,8011,7997,8020],[3511,2148,2147,0,3511,2148,2147],[6198,7118,2899,0,6198,7118,2899],[4162,6995,548,0,4162,6995,548],[2344,4554,6659,0,2344,4554,6659],[7000,2291,1314,0,7000,2291,1314],[8021,8011,8020,0,8021,8011,8020],[2195,811,6887,0,2195,811,6887],[5527,2279,2892,0,5527,2279,2892],[4454,4948,6171,0,4454,4948,6171],[401,403,5973,0,401,403,5973],[5550,2237,3003,0,5550,2237,3003],[5955,4008,2111,0,5955,4008,2111],[8015,8021,8020,0,8015,8021,8020],[5133,5818,7520,0,5133,5818,7520],[8014,8021,8015,0,8014,8021,8015],[4925,4927,6062,0,4925,4927,6062],[5338,5026,7358,0,5338,5026,7358],[7648,2607,6270,0,7648,2607,6270],[4929,1561,7568,0,4929,1561,7568],[1223,7317,7168,0,1223,7317,7168],[357,359,79,0,357,359,79],[4072,3234,617,0,4072,3234,617],[7116,2749,3144,0,7116,2749,3144],[7121,1606,1605,0,7121,1606,1605],[1505,1504,5351,0,1505,1504,5351],[3343,1262,1261,0,3343,1262,1261],[2533,1913,6464,0,2533,1913,6464],[2913,3354,7662,0,2913,3354,7662],[2400,7101,1131,0,2400,7101,1131],[3985,7949,5791,0,3985,7949,5791],[3872,4269,4268,0,3872,4269,4268],[2997,2407,2345,0,2997,2407,2345],[4552,1466,2691,0,4552,1466,2691],[2028,7590,5252,0,2028,7590,5252],[505,507,5294,0,505,507,5294],[6693,223,4363,0,6693,223,4363],[5689,6585,6671,0,5689,6585,6671],[473,4722,474,0,473,4722,474],[5767,2978,4732,0,5767,2978,4732],[5420,1871,1870,0,5420,1871,1870],[3965,1332,549,0,3965,1332,549],[5539,1657,1656,0,5539,1657,1656],[2028,3428,2307,0,2028,3428,2307],[6064,5966,7611,0,6064,5966,7611],[6556,4524,2593,0,6556,4524,2593],[6477,4796,5647,0,6477,4796,5647],[674,673,4338,0,674,673,4338],[5539,3709,1143,0,5539,3709,1143],[1269,7706,7553,0,1269,7706,7553],[2474,7385,2769,0,2474,7385,2769],[3159,4787,5803,0,3159,4787,5803],[4661,6119,7837,0,4661,6119,7837],[163,162,5161,0,163,162,5161],[7017,3625,6180,0,7017,3625,6180],[1207,2558,4661,0,1207,2558,4661],[5337,1778,2847,0,5337,1778,2847],[6929,7568,1561,0,6929,7568,1561],[7955,4734,5746,0,7955,4734,5746],[3757,6926,7565,0,3757,6926,7565],[3075,3077,4710,0,3075,3077,4710],[1462,1461,5876,0,1462,1461,5876],[656,7355,654,0,656,7355,654],[4534,5622,7409,0,4534,5622,7409],[5272,3800,4087,0,5272,3800,4087],[6184,534,5477,0,6184,534,5477],[2686,2688,7613,0,2686,2688,7613],[6844,6296,7161,0,6844,6296,7161],[1301,7972,4112,0,1301,7972,4112],[2064,1733,1732,0,2064,1733,1732],[7097,5339,5340,0,7097,5339,5340],[4465,525,273,0,4465,525,273],[7257,5188,4266,0,7257,5188,4266],[6841,1918,2199,0,6841,1918,2199],[3239,4901,4900,0,3239,4901,4900],[454,398,2190,0,454,398,2190],[7270,3834,7269,0,7270,3834,7269],[1518,1517,1020,0,1518,1517,1020],[7193,5976,163,0,7193,5976,163],[5348,4352,1146,0,5348,4352,1146],[6369,5118,7857,0,6369,5118,7857],[3261,5752,1211,0,3261,5752,1211],[6379,5412,7386,0,6379,5412,7386],[3040,3042,1958,0,3040,3042,1958],[2710,3172,6368,0,2710,3172,6368],[4889,3730,1002,0,4889,3730,1002],[6219,4206,551,0,6219,4206,551],[19,5330,20,0,19,5330,20],[615,7992,7256,0,615,7992,7256],[7856,1687,2172,0,7856,1687,2172],[2283,7321,7381,0,2283,7321,7381],[5407,4837,7597,0,5407,4837,7597],[1479,4141,4589,0,1479,4141,4589],[674,4338,2683,0,674,4338,2683],[5000,5002,5987,0,5000,5002,5987],[6215,1304,7859,0,6215,1304,7859],[4825,7177,4440,0,4825,7177,4440],[6033,2743,5726,0,6033,2743,5726],[182,297,3698,0,182,297,3698],[7602,5885,7549,0,7602,5885,7549],[2680,1763,6956,0,2680,1763,6956],[634,3811,7401,0,634,3811,7401],[5658,6660,770,0,5658,6660,770],[4116,105,104,0,4116,105,104],[831,5481,5761,0,831,5481,5761],[941,6882,2132,0,941,6882,2132],[4321,6287,4658,0,4321,6287,4658],[3899,6732,6731,0,3899,6732,6731],[857,3776,858,0,857,3776,858],[2814,2813,7052,0,2814,2813,7052],[4727,2805,3346,0,4727,2805,3346],[4651,2002,4079,0,4651,2002,4079],[6221,3924,3926,0,6221,3924,3926],[4634,5385,7045,0,4634,5385,7045],[3085,3087,7558,0,3085,3087,7558],[547,5543,1040,0,547,5543,1040],[7375,5502,7312,0,7375,5502,7312],[3356,226,225,0,3356,226,225],[6755,1270,6179,0,6755,1270,6179],[2040,6163,7013,0,2040,6163,7013],[5329,5649,4642,0,5329,5649,4642],[3770,3771,4176,0,3770,3771,4176],[7081,7407,4154,0,7081,7407,4154],[5353,7457,904,0,5353,7457,904],[134,4881,5291,0,134,4881,5291],[5004,6594,567,0,5004,6594,567],[4317,4787,3329,0,4317,4787,3329],[6738,6041,6765,0,6738,6041,6765],[6940,8022,6941,0,6940,8022,6941],[4877,3739,8023,0,4877,3739,8023],[6773,7658,5480,0,6773,7658,5480],[6894,427,426,0,6894,427,426],[3507,3509,6449,0,3507,3509,6449],[3586,5802,4701,0,3586,5802,4701],[1347,1848,2550,0,1347,1848,2550],[2140,7633,3483,0,2140,7633,3483],[4419,4797,3440,0,4419,4797,3440],[1272,1680,1513,0,1272,1680,1513],[613,5059,3263,0,613,5059,3263],[3801,3800,5272,0,3801,3800,5272],[3607,3606,6656,0,3607,3606,6656],[4280,7365,6964,0,4280,7365,6964],[2478,2477,5271,0,2478,2477,5271],[1895,4052,4955,0,1895,4052,4955],[966,4209,4208,0,966,4209,4208],[7062,883,3707,0,7062,883,3707],[6578,6135,1866,0,6578,6135,1866],[7081,3255,2048,0,7081,3255,2048],[1815,6285,1816,0,1815,6285,1816],[4521,1353,6765,0,4521,1353,6765],[6199,6073,4888,0,6199,6073,4888],[1678,5825,1999,0,1678,5825,1999],[3469,2195,491,0,3469,2195,491],[8024,8025,7942,0,8024,8025,7942],[5706,4761,7712,0,5706,4761,7712],[2087,4557,895,0,2087,4557,895],[8026,8027,8025,0,8026,8027,8025],[6629,7226,34,0,6629,7226,34],[3338,4291,3322,0,3338,4291,3322],[7942,8025,8027,0,7942,8025,8027],[3171,5262,3172,0,3171,5262,3172],[6753,6755,1452,0,6753,6755,1452],[2973,6519,6560,0,2973,6519,6560],[794,5450,795,0,794,5450,795],[3561,3802,6679,0,3561,3802,6679],[5767,4732,5768,0,5767,4732,5768],[7258,6171,6777,0,7258,6171,6777],[7133,198,7592,0,7133,198,7592],[3083,6295,6058,0,3083,6295,6058],[4455,942,944,0,4455,942,944],[8023,3739,8025,0,8023,3739,8025],[5956,5955,2898,0,5956,5955,2898],[3739,8026,8025,0,3739,8026,8025],[7320,7483,4481,0,7320,7483,4481],[4760,4761,7663,0,4760,4761,7663],[3393,7985,5517,0,3393,7985,5517],[5824,1414,7090,0,5824,1414,7090],[2346,4023,4022,0,2346,4023,4022],[6670,5085,5086,0,6670,5085,5086],[2975,1417,7497,0,2975,1417,7497],[5982,7570,2546,0,5982,7570,2546],[6869,2835,2837,0,6869,2835,2837],[974,976,6043,0,974,976,6043],[5847,745,744,0,5847,745,744],[2359,1476,1475,0,2359,1476,1475],[228,230,987,0,228,230,987],[7928,1487,2977,0,7928,1487,2977],[4298,7543,4299,0,4298,7543,4299],[3326,1826,334,0,3326,1826,334],[4229,3781,3780,0,4229,3781,3780],[4657,6329,4040,0,4657,6329,4040],[7849,770,769,0,7849,770,769],[7642,7942,8027,0,7642,7942,8027],[7220,280,3557,0,7220,280,3557],[4697,4699,5169,0,4697,4699,5169],[7032,3487,7346,0,7032,3487,7346],[6719,1829,4281,0,6719,1829,4281],[5829,5831,5015,0,5829,5831,5015],[2292,7107,745,0,2292,7107,745],[5745,6327,3725,0,5745,6327,3725],[770,7849,2212,0,770,7849,2212],[6271,4138,5738,0,6271,4138,5738],[4898,2017,7304,0,4898,2017,7304],[377,5795,2396,0,377,5795,2396],[5600,6749,5766,0,5600,6749,5766],[5034,4956,636,0,5034,4956,636],[485,59,3007,0,485,59,3007],[6118,6119,4661,0,6118,6119,4661],[5218,5220,5402,0,5218,5220,5402],[4607,7935,4608,0,4607,7935,4608],[5244,7322,6553,0,5244,7322,6553],[7038,6325,4994,0,7038,6325,4994],[416,7249,4802,0,416,7249,4802],[4254,5278,5280,0,4254,5278,5280],[2672,3812,1080,0,2672,3812,1080],[6455,1727,1726,0,6455,1727,1726],[4552,4782,204,0,4552,4782,204],[3919,5747,7455,0,3919,5747,7455],[641,138,4476,0,641,138,4476],[6304,72,6305,0,6304,72,6305],[7925,3293,3927,0,7925,3293,3927],[7473,5217,5216,0,7473,5217,5216],[7317,1222,6000,0,7317,1222,6000],[2585,253,7969,0,2585,253,7969],[2362,5590,2363,0,2362,5590,2363],[7671,3155,3402,0,7671,3155,3402],[1487,1243,2977,0,1487,1243,2977],[5374,5446,3742,0,5374,5446,3742],[7357,6005,6771,0,7357,6005,6771],[560,6788,4880,0,560,6788,4880],[1329,3335,7240,0,1329,3335,7240],[48,6957,4432,0,48,6957,4432],[3394,718,720,0,3394,718,720],[2519,2521,5269,0,2519,2521,5269],[5206,3726,5207,0,5206,3726,5207],[510,2402,4598,0,510,2402,4598],[1859,2908,2495,0,1859,2908,2495],[1488,5607,5510,0,1488,5607,5510],[3910,2377,2287,0,3910,2377,2287],[2123,3930,5067,0,2123,3930,5067],[7642,8027,7965,0,7642,8027,7965],[6147,1384,3968,0,6147,1384,3968],[3561,5717,3562,0,3561,5717,3562],[2432,6598,7064,0,2432,6598,7064],[483,3359,3982,0,483,3359,3982],[81,2868,6891,0,81,2868,6891],[1319,2628,2630,0,1319,2628,2630],[52,1644,6205,0,52,1644,6205],[1719,5726,4936,0,1719,5726,4936],[4427,4939,4428,0,4427,4939,4428],[8027,7374,7965,0,8027,7374,7965],[6848,5421,3145,0,6848,5421,3145],[1912,3509,1720,0,1912,3509,1720],[3998,432,7088,0,3998,432,7088],[3066,3116,2685,0,3066,3116,2685],[1697,3328,3878,0,1697,3328,3878],[7925,7478,3291,0,7925,7478,3291],[2405,4172,4554,0,2405,4172,4554],[7992,2363,7256,0,7992,2363,7256],[3022,6877,5404,0,3022,6877,5404],[5823,1358,3586,0,5823,1358,3586],[5296,3604,3605,0,5296,3604,3605],[2999,5035,4350,0,2999,5035,4350],[6636,7520,3463,0,6636,7520,3463],[8027,8026,7374,0,8027,8026,7374],[4536,7130,7883,0,4536,7130,7883],[6958,5279,2995,0,6958,5279,2995],[6473,5128,7331,0,6473,5128,7331],[1034,6888,3594,0,1034,6888,3594],[6737,3655,3249,0,6737,3655,3249],[4153,1753,1752,0,4153,1753,1752],[6873,6816,2446,0,6873,6816,2446],[7551,7200,7597,0,7551,7200,7597],[5184,7559,6214,0,5184,7559,6214],[3418,1327,1765,0,3418,1327,1765],[1969,4499,5439,0,1969,4499,5439],[4371,3060,619,0,4371,3060,619],[3311,7014,7541,0,3311,7014,7541],[2662,7322,1774,0,2662,7322,1774],[6209,746,923,0,6209,746,923],[1663,6275,6254,0,1663,6275,6254],[4826,2403,2405,0,4826,2403,2405],[287,286,384,0,287,286,384],[4995,5308,2427,0,4995,5308,2427],[5364,7491,1437,0,5364,7491,1437],[4415,853,852,0,4415,853,852],[3975,3099,6479,0,3975,3099,6479],[710,709,4524,0,710,709,4524],[5424,3997,4294,0,5424,3997,4294],[5006,7965,7374,0,5006,7965,7374],[3470,1408,1407,0,3470,1408,1407],[434,5916,435,0,434,5916,435],[3884,3886,7335,0,3884,3886,7335],[1052,1051,7270,0,1052,1051,7270],[6209,923,922,0,6209,923,922],[1381,3128,1382,0,1381,3128,1382],[3723,2106,3724,0,3723,2106,3724],[3535,3537,7611,0,3535,3537,7611],[3920,4292,3921,0,3920,4292,3921],[839,2763,5880,0,839,2763,5880],[1257,1272,1256,0,1257,1272,1256],[7456,6647,3083,0,7456,6647,3083],[3990,210,212,0,3990,210,212],[4746,3853,3589,0,4746,3853,3589],[7270,1051,3834,0,7270,1051,3834],[6955,7105,1196,0,6955,7105,1196],[5893,6439,6283,0,5893,6439,6283],[5836,6254,6275,0,5836,6254,6275],[6281,4730,4729,0,6281,4730,4729],[1910,3032,1151,0,1910,3032,1151],[5362,3283,2318,0,5362,3283,2318],[5625,5700,5702,0,5625,5700,5702],[5030,1373,6010,0,5030,1373,6010],[7121,430,1606,0,7121,430,1606],[3376,5312,7983,0,3376,5312,7983],[730,6174,5551,0,730,6174,5551],[1602,7424,6107,0,1602,7424,6107],[7386,4396,3220,0,7386,4396,3220],[257,4709,266,0,257,4709,266],[6126,6429,6924,0,6126,6429,6924],[2492,7429,7150,0,2492,7429,7150],[6471,7789,7641,0,6471,7789,7641],[1350,3467,7567,0,1350,3467,7567],[3506,3589,3505,0,3506,3589,3505],[2315,6886,5666,0,2315,6886,5666],[3048,5152,5718,0,3048,5152,5718],[3421,6221,3828,0,3421,6221,3828],[1216,5007,7374,0,1216,5007,7374],[3380,235,3608,0,3380,235,3608],[1216,7374,5812,0,1216,7374,5812],[4812,5948,4132,0,4812,5948,4132],[3435,5061,5022,0,3435,5061,5022],[174,4879,2738,0,174,4879,2738],[4153,4154,3896,0,4153,4154,3896],[7727,2872,2871,0,7727,2872,2871],[5812,7374,8026,0,5812,7374,8026],[366,368,7653,0,366,368,7653],[2409,4539,5591,0,2409,4539,5591],[7179,6790,6789,0,7179,6790,6789],[6947,6948,2397,0,6947,6948,2397],[1290,7004,5045,0,1290,7004,5045],[200,7592,198,0,200,7592,198],[6244,7766,1998,0,6244,7766,1998],[7587,3370,6544,0,7587,3370,6544],[808,3549,6728,0,808,3549,6728],[6179,1452,6755,0,6179,1452,6755],[1302,5052,6549,0,1302,5052,6549],[6421,2979,6842,0,6421,2979,6842],[6614,5419,4199,0,6614,5419,4199],[1737,6613,131,0,1737,6613,131],[8026,3739,3738,0,8026,3739,3738],[6318,3378,6319,0,6318,3378,6319],[5324,5856,5855,0,5324,5856,5855],[314,4504,1321,0,314,4504,1321],[3216,7522,3214,0,3216,7522,3214],[5519,5521,4626,0,5519,5521,4626],[4134,5738,4138,0,4134,5738,4138],[1589,6053,6453,0,1589,6053,6453],[3491,6042,4021,0,3491,6042,4021],[6932,5874,1080,0,6932,5874,1080],[533,3602,647,0,533,3602,647],[2282,3903,3962,0,2282,3903,3962],[553,6791,5051,0,553,6791,5051],[5812,8026,3738,0,5812,8026,3738],[439,438,4157,0,439,438,4157],[5854,6211,6791,0,5854,6211,6791],[3805,6908,403,0,3805,6908,403],[2687,4918,4632,0,2687,4918,4632],[4624,4625,6131,0,4624,4625,6131],[7621,6282,7326,0,7621,6282,7326],[7493,3114,2045,0,7493,3114,2045],[7712,5911,4625,0,7712,5911,4625],[2528,7605,2824,0,2528,7605,2824],[6276,1239,6566,0,6276,1239,6566],[4347,7611,3537,0,4347,7611,3537],[1292,6770,7267,0,1292,6770,7267],[5699,5698,4834,0,5699,5698,4834],[3165,7589,5378,0,3165,7589,5378],[3721,7608,3967,0,3721,7608,3967],[7165,2373,1434,0,7165,2373,1434],[1586,3259,3258,0,1586,3259,3258],[4752,357,3437,0,4752,357,3437],[3516,7527,5313,0,3516,7527,5313],[3704,6100,4852,0,3704,6100,4852],[686,3875,1987,0,686,3875,1987],[5361,490,7488,0,5361,490,7488],[1188,7023,1187,0,1188,7023,1187],[7268,4076,521,0,7268,4076,521],[2791,2790,4051,0,2791,2790,4051],[7702,7593,7612,0,7702,7593,7612],[2044,6004,930,0,2044,6004,930],[2542,6173,1776,0,2542,6173,1776],[5167,4862,5933,0,5167,4862,5933],[4315,929,928,0,4315,929,928],[6295,6647,6614,0,6295,6647,6614],[7468,7988,7519,0,7468,7988,7519],[2200,2202,1886,0,2200,2202,1886],[1739,1880,6373,0,1739,1880,6373],[1943,7209,7835,0,1943,7209,7835],[4967,4966,3179,0,4967,4966,3179],[7380,5162,3860,0,7380,5162,3860],[6716,6165,4287,0,6716,6165,4287],[2326,2982,2484,0,2326,2982,2484],[4807,2998,2842,0,4807,2998,2842],[1282,1281,2682,0,1282,1281,2682],[6295,4024,6786,0,6295,4024,6786],[3697,5468,4173,0,3697,5468,4173],[1328,1330,2480,0,1328,1330,2480],[6072,3173,6146,0,6072,3173,6146],[4724,7007,6906,0,4724,7007,6906],[1940,5720,3130,0,1940,5720,3130],[48,4431,49,0,48,4431,49],[1031,1033,5759,0,1031,1033,5759],[3863,5183,5460,0,3863,5183,5460],[2528,8028,2529,0,2528,8028,2529],[2532,5115,5789,0,2532,5115,5789],[4508,4102,4101,0,4508,4102,4101],[4123,1614,856,0,4123,1614,856],[593,3222,6707,0,593,3222,6707],[7648,6270,7879,0,7648,6270,7879],[1021,1574,1022,0,1021,1574,1022],[4026,6361,4337,0,4026,6361,4337],[1004,1478,7363,0,1004,1478,7363],[1226,2993,281,0,1226,2993,281],[6367,3870,151,0,6367,3870,151],[6401,5651,1339,0,6401,5651,1339],[2315,5897,6886,0,2315,5897,6886],[2050,7302,2051,0,2050,7302,2051],[6411,6257,2115,0,6411,6257,2115],[4288,1726,1725,0,4288,1726,1725],[6417,772,5985,0,6417,772,5985],[7989,7988,7468,0,7989,7988,7468],[5291,5290,132,0,5291,5290,132],[1101,4264,7952,0,1101,4264,7952],[7701,4574,1685,0,7701,4574,1685],[5044,2785,2701,0,5044,2785,2701],[3626,3625,5780,0,3626,3625,5780],[2169,4653,1967,0,2169,4653,1967],[4306,4305,7514,0,4306,4305,7514],[3038,5488,7426,0,3038,5488,7426],[7556,5357,7557,0,7556,5357,7557],[839,841,2762,0,839,841,2762],[429,1606,430,0,429,1606,430],[3047,6669,896,0,3047,6669,896],[153,4494,7280,0,153,4494,7280],[6671,6585,7351,0,6671,6585,7351],[5515,3100,3976,0,5515,3100,3976],[5470,2903,2902,0,5470,2903,2902],[2237,5550,5091,0,2237,5550,5091],[4898,3893,2018,0,4898,3893,2018],[6440,840,4681,0,6440,840,4681],[7327,6554,1204,0,7327,6554,1204],[1399,6690,2094,0,1399,6690,2094],[4444,5598,5514,0,4444,5598,5514],[6200,1102,1688,0,6200,1102,1688],[2616,4242,2833,0,2616,4242,2833],[4231,1350,708,0,4231,1350,708],[1251,7636,37,0,1251,7636,37],[3095,1013,949,0,3095,1013,949],[237,6466,328,0,237,6466,328],[7538,865,864,0,7538,865,864],[5902,2725,3952,0,5902,2725,3952],[1666,6970,3276,0,1666,6970,3276],[4536,7883,5622,0,4536,7883,5622],[2703,6499,1944,0,2703,6499,1944],[542,3748,5352,0,542,3748,5352],[7190,7373,6409,0,7190,7373,6409],[5384,5383,1031,0,5384,5383,1031],[4628,6413,666,0,4628,6413,666],[2944,2920,879,0,2944,2920,879],[6113,6560,6196,0,6113,6560,6196],[294,2893,3948,0,294,2893,3948],[2301,7713,4028,0,2301,7713,4028],[3830,6733,3831,0,3830,6733,3831],[3201,3342,3578,0,3201,3342,3578],[1439,7188,7281,0,1439,7188,7281],[3865,3864,6824,0,3865,3864,6824],[6326,6429,6327,0,6326,6429,6327],[5685,4094,5650,0,5685,4094,5650],[6976,960,6960,0,6976,960,6960],[5810,7339,158,0,5810,7339,158],[144,146,1664,0,144,146,1664],[5514,5598,85,0,5514,5598,85],[4680,4786,4681,0,4680,4786,4681],[7260,698,697,0,7260,698,697],[4673,4241,3560,0,4673,4241,3560],[608,5364,1436,0,608,5364,1436],[6412,1952,6413,0,6412,1952,6413],[2635,3240,1419,0,2635,3240,1419],[4576,2207,4338,0,4576,2207,4338],[7628,1584,7170,0,7628,1584,7170],[6259,7562,2463,0,6259,7562,2463],[6692,7129,5686,0,6692,7129,5686],[536,4160,3705,0,536,4160,3705],[6021,6308,6253,0,6021,6308,6253],[3409,5962,3410,0,3409,5962,3410],[2666,6189,2799,0,2666,6189,2799],[3886,7209,7335,0,3886,7209,7335],[1940,1939,5720,0,1940,1939,5720],[7133,4412,5332,0,7133,4412,5332],[2658,2657,3177,0,2658,2657,3177],[6640,6068,2234,0,6640,6068,2234],[4621,2699,4533,0,4621,2699,4533],[8029,5449,461,0,8029,5449,461],[4561,4924,7106,0,4561,4924,7106],[2568,2570,7731,0,2568,2570,7731],[3529,3443,7589,0,3529,3443,7589],[2738,4879,5166,0,2738,4879,5166],[2970,2972,2993,0,2970,2972,2993],[6369,7897,4699,0,6369,7897,4699],[5588,6930,5397,0,5588,6930,5397],[7185,7784,7223,0,7185,7784,7223],[3085,5745,3725,0,3085,5745,3725],[5093,6951,6950,0,5093,6951,6950],[1957,5505,6062,0,1957,5505,6062],[5358,5542,6920,0,5358,5542,6920],[6491,7077,7055,0,6491,7077,7055],[2145,5335,5811,0,2145,5335,5811],[6864,2057,2056,0,6864,2057,2056],[3063,4993,1925,0,3063,4993,1925],[4882,1431,120,0,4882,1431,120],[3216,6781,7522,0,3216,6781,7522],[6037,6845,6844,0,6037,6845,6844],[3337,4799,3956,0,3337,4799,3956],[5129,5130,7139,0,5129,5130,7139],[3636,3382,4760,0,3636,3382,4760],[7614,5697,3089,0,7614,5697,3089],[2742,6997,6240,0,2742,6997,6240],[4391,6307,4392,0,4391,6307,4392],[6139,6746,520,0,6139,6746,520],[3632,1889,2434,0,3632,1889,2434],[17,16,5965,0,17,16,5965],[635,1382,3128,0,635,1382,3128],[3306,6663,3304,0,3306,6663,3304],[2136,7984,4035,0,2136,7984,4035],[83,3009,3649,0,83,3009,3649],[8025,8024,7988,0,8025,8024,7988],[4280,6964,1837,0,4280,6964,1837],[6550,2106,5977,0,6550,2106,5977],[4646,7733,5104,0,4646,7733,5104],[4550,3683,3109,0,4550,3683,3109],[3227,3229,3553,0,3227,3229,3553],[8023,8025,7988,0,8023,8025,7988],[6184,4853,3474,0,6184,4853,3474],[6020,2827,4089,0,6020,2827,4089],[1461,1190,2456,0,1461,1190,2456],[6046,7036,1435,0,6046,7036,1435],[4145,7125,2495,0,4145,7125,2495],[7991,2121,7994,0,7991,2121,7994],[7297,7860,2256,0,7297,7860,2256],[4860,4859,5905,0,4860,4859,5905],[7976,7963,2513,0,7976,7963,2513],[2934,2935,3786,0,2934,2935,3786],[3655,3657,6807,0,3655,3657,6807],[7074,7075,7988,0,7074,7075,7988],[7074,7988,8024,0,7074,7988,8024],[458,5795,456,0,458,5795,456],[6524,1877,5043,0,6524,1877,5043],[7113,2982,7199,0,7113,2982,7199],[5946,6836,3963,0,5946,6836,3963],[6677,7152,4319,0,6677,7152,4319],[4877,8023,7988,0,4877,8023,7988],[1997,5922,5924,0,1997,5922,5924],[2832,1348,2833,0,2832,1348,2833],[3841,1280,5157,0,3841,1280,5157],[4904,4721,4733,0,4904,4721,4733],[4703,7282,6237,0,4703,7282,6237],[3998,6628,1996,0,3998,6628,1996],[5606,646,645,0,5606,646,645],[5428,3868,2744,0,5428,3868,2744],[6384,3840,3839,0,6384,3840,3839],[847,846,1433,0,847,846,1433],[2973,4086,6519,0,2973,4086,6519],[6016,1408,3471,0,6016,1408,3471],[7595,6969,4600,0,7595,6969,4600],[2059,2061,5159,0,2059,2061,5159],[6970,1666,2613,0,6970,1666,2613],[542,3746,3748,0,542,3746,3748],[974,7612,7593,0,974,7612,7593],[3093,6850,3235,0,3093,6850,3235],[7571,4187,369,0,7571,4187,369],[1449,5334,1416,0,1449,5334,1416],[6471,6392,7789,0,6471,6392,7789],[5131,6283,6966,0,5131,6283,6966],[3991,3179,4398,0,3991,3179,4398],[180,182,2370,0,180,182,2370],[1142,1144,6175,0,1142,1144,6175],[180,7713,181,0,180,7713,181],[106,105,1844,0,106,105,1844],[6677,7150,7152,0,6677,7150,7152],[3685,1960,1144,0,3685,1960,1144],[2659,938,7308,0,2659,938,7308],[662,7982,3302,0,662,7982,3302],[1842,5525,6940,0,1842,5525,6940],[7992,957,2361,0,7992,957,2361],[4186,1137,2215,0,4186,1137,2215],[7075,1204,7519,0,7075,1204,7519],[4888,1002,333,0,4888,1002,333],[3391,7146,4260,0,3391,7146,4260],[2021,6331,6199,0,2021,6331,6199],[5297,5296,7627,0,5297,5296,7627],[7017,2794,2796,0,7017,2794,2796],[7947,129,6613,0,7947,129,6613],[6616,6982,6981,0,6616,6982,6981],[4587,5788,4588,0,4587,5788,4588],[559,4595,5838,0,559,4595,5838],[5565,2200,1885,0,5565,2200,1885],[3532,3534,3905,0,3532,3534,3905],[5812,5814,1216,0,5812,5814,1216],[1009,6517,919,0,1009,6517,919],[5096,5739,4474,0,5096,5739,4474],[3593,2626,4139,0,3593,2626,4139],[4946,3175,5989,0,4946,3175,5989],[3038,7486,5488,0,3038,7486,5488],[7075,7519,7988,0,7075,7519,7988],[6560,6519,6518,0,6560,6519,6518],[217,216,2966,0,217,216,2966],[4010,400,7043,0,4010,400,7043],[352,1737,1736,0,352,1737,1736],[1177,6381,6488,0,1177,6381,6488],[2025,2027,1781,0,2025,2027,1781],[5684,6388,4092,0,5684,6388,4092],[7487,6161,1628,0,7487,6161,1628],[1088,1442,2852,0,1088,1442,2852],[6656,3288,3607,0,6656,3288,3607],[6677,7913,6761,0,6677,7913,6761],[7300,451,453,0,7300,451,453],[2369,1761,6829,0,2369,1761,6829],[6795,1334,5321,0,6795,1334,5321],[3201,3200,721,0,3201,3200,721],[6932,3812,1409,0,6932,3812,1409],[270,7267,271,0,270,7267,271],[3417,5508,1175,0,3417,5508,1175],[5631,1310,1309,0,5631,1310,1309],[6745,5234,7428,0,6745,5234,7428],[3606,2665,6003,0,3606,2665,6003],[1031,7931,2050,0,1031,7931,2050],[2033,5456,4939,0,2033,5456,4939],[7096,7095,5572,0,7096,7095,5572],[1864,1866,6135,0,1864,1866,6135],[2593,7567,3467,0,2593,7567,3467],[5635,1828,1830,0,5635,1828,1830],[5507,6166,5672,0,5507,6166,5672],[1344,8030,2208,0,1344,8030,2208],[6951,5093,6301,0,6951,5093,6301],[4527,6923,4528,0,4527,6923,4528],[2344,6659,6658,0,2344,6659,6658],[1273,4318,3854,0,1273,4318,3854],[6547,4182,6087,0,6547,4182,6087],[2208,8030,7227,0,2208,8030,7227],[2816,6597,4596,0,2816,6597,4596],[2886,6138,6111,0,2886,6138,6111],[3572,4917,3807,0,3572,4917,3807],[2091,2604,2603,0,2091,2604,2603],[3081,326,325,0,3081,326,325],[4508,1281,5420,0,4508,1281,5420],[6833,4458,4457,0,6833,4458,4457],[1238,481,35,0,1238,481,35],[7410,3744,3309,0,7410,3744,3309],[2946,2948,5081,0,2946,2948,5081],[599,3544,4252,0,599,3544,4252],[5191,2564,2566,0,5191,2564,2566],[2205,2207,4576,0,2205,2207,4576],[5018,2286,6219,0,5018,2286,6219],[199,3353,200,0,199,3353,200],[1052,7270,7640,0,1052,7270,7640],[5316,752,1044,0,5316,752,1044],[2016,5897,2315,0,2016,5897,2315],[8030,7942,7578,0,8030,7942,7578],[7702,170,979,0,7702,170,979],[6591,3692,6281,0,6591,3692,6281],[7428,4123,6805,0,7428,4123,6805],[5411,6120,7023,0,5411,6120,7023],[1921,1161,1682,0,1921,1161,1682],[954,7544,5764,0,954,7544,5764],[7227,7578,7682,0,7227,7578,7682],[7418,7230,5270,0,7418,7230,5270],[8030,7578,7227,0,8030,7578,7227],[2207,2206,115,0,2207,2206,115],[4333,4332,1733,0,4333,4332,1733],[7331,5128,7332,0,7331,5128,7332],[6618,2741,5792,0,6618,2741,5792],[4508,5420,7289,0,4508,5420,7289],[2815,1225,5092,0,2815,1225,5092],[904,5469,5468,0,904,5469,5468],[3756,6649,449,0,3756,6649,449],[7960,7984,1724,0,7960,7984,1724],[3212,4863,6092,0,3212,4863,6092],[6484,2104,5243,0,6484,2104,5243],[7682,3142,4970,0,7682,3142,4970],[7942,8030,8024,0,7942,8030,8024],[5754,6946,3485,0,5754,6946,3485],[8030,7074,8024,0,8030,7074,8024],[6408,4261,7669,0,6408,4261,7669],[1937,5209,5832,0,1937,5209,5832],[7606,7648,7923,0,7606,7648,7923],[7610,7242,4994,0,7610,7242,4994],[7222,5525,6542,0,7222,5525,6542],[5776,5192,5863,0,5776,5192,5863],[3438,3539,2332,0,3438,3539,2332],[6938,7015,3787,0,6938,7015,3787],[6843,6991,3004,0,6843,6991,3004],[4877,748,3737,0,4877,748,3737],[6938,3787,3659,0,6938,3787,3659],[4097,7534,6792,0,4097,7534,6792],[3034,3036,7643,0,3034,3036,7643],[1313,6881,3427,0,1313,6881,3427],[3237,3236,6029,0,3237,3236,6029],[6848,7132,4806,0,6848,7132,4806],[5762,1427,1426,0,5762,1427,1426],[5422,7328,3644,0,5422,7328,3644],[5890,4331,1685,0,5890,4331,1685],[4329,1212,7091,0,4329,1212,7091],[7534,4097,930,0,7534,4097,930],[3889,3888,1882,0,3889,3888,1882],[7911,8031,7912,0,7911,8031,7912],[2780,837,4845,0,2780,837,4845],[7175,1407,7843,0,7175,1407,7843],[2063,937,936,0,2063,937,936],[5706,1955,7665,0,5706,1955,7665],[7660,5867,2883,0,7660,5867,2883],[83,82,3009,0,83,82,3009],[114,4202,115,0,114,4202,115],[7074,1205,1204,0,7074,1205,1204],[7974,1397,4631,0,7974,1397,4631],[8030,1205,7074,0,8030,1205,7074],[6591,3211,3210,0,6591,3211,3210],[4274,7149,6651,0,4274,7149,6651],[7349,6885,128,0,7349,6885,128],[3656,5375,6040,0,3656,5375,6040],[7955,5941,387,0,7955,5941,387],[6371,6370,7137,0,6371,6370,7137],[8030,1344,1205,0,8030,1344,1205],[168,6044,169,0,168,6044,169],[5228,2947,4479,0,5228,2947,4479],[5858,2259,665,0,5858,2259,665],[1731,1733,4332,0,1731,1733,4332],[3270,483,2551,0,3270,483,2551],[99,98,4068,0,99,98,4068],[5604,7579,3752,0,5604,7579,3752],[6372,5805,137,0,6372,5805,137],[3075,4710,4647,0,3075,4710,4647],[2625,4203,7186,0,2625,4203,7186],[5796,4037,4039,0,5796,4037,4039],[205,2642,206,0,205,2642,206],[4451,6406,3064,0,4451,6406,3064],[6570,5807,5806,0,6570,5807,5806],[4465,1903,523,0,4465,1903,523],[3335,1663,6247,0,3335,1663,6247],[7381,6436,5619,0,7381,6436,5619],[1967,4652,1968,0,1967,4652,1968],[5606,645,3384,0,5606,645,3384],[7564,5771,4541,0,7564,5771,4541],[4801,7249,1583,0,4801,7249,1583],[4667,3899,5531,0,4667,3899,5531],[5167,6850,1566,0,5167,6850,1566],[1583,1151,7566,0,1583,1151,7566],[3769,5213,3298,0,3769,5213,3298],[97,4678,95,0,97,4678,95],[3300,4925,7283,0,3300,4925,7283],[5087,3908,4891,0,5087,3908,4891],[5618,5722,3894,0,5618,5722,3894],[3782,3720,3719,0,3782,3720,3719],[2420,2422,5772,0,2420,2422,5772],[4951,6636,4949,0,4951,6636,4949],[1704,5900,5119,0,1704,5900,5119],[7833,7305,4624,0,7833,7305,4624],[2393,7583,4363,0,2393,7583,4363],[6426,3055,63,0,6426,3055,63],[6757,6675,1376,0,6757,6675,1376],[6807,6039,3603,0,6807,6039,3603],[1954,7305,6555,0,1954,7305,6555],[7190,5990,2384,0,7190,5990,2384],[3206,6795,737,0,3206,6795,737],[6721,7643,3036,0,6721,7643,3036],[4570,7501,1925,0,4570,7501,1925],[800,1213,801,0,800,1213,801],[2374,3242,2375,0,2374,3242,2375],[3460,3459,1803,0,3460,3459,1803],[3684,641,4476,0,3684,641,4476],[7297,6074,7860,0,7297,6074,7860],[5624,5504,1635,0,5624,5504,1635],[725,1166,768,0,725,1166,768],[4833,4834,5698,0,4833,4834,5698],[2066,4237,711,0,2066,4237,711],[1646,1770,1647,0,1646,1770,1647],[3332,4263,7290,0,3332,4263,7290],[6220,3421,3423,0,6220,3421,3423],[6412,6414,3054,0,6412,6414,3054],[8029,461,7919,0,8029,461,7919],[1300,7626,928,0,1300,7626,928],[4424,3431,3139,0,4424,3431,3139],[221,1091,5401,0,221,1091,5401],[1249,1248,5722,0,1249,1248,5722],[2600,4492,4491,0,2600,4492,4491],[4838,6582,4839,0,4838,6582,4839],[4656,4042,6328,0,4656,4042,6328],[4551,5204,1461,0,4551,5204,1461],[1475,1477,4593,0,1475,1477,4593],[445,3316,342,0,445,3316,342],[6945,6468,4326,0,6945,6468,4326],[719,3404,7661,0,719,3404,7661],[7081,5835,3255,0,7081,5835,3255],[7356,1780,6170,0,7356,1780,6170],[2159,7281,4309,0,2159,7281,4309],[2584,7250,1562,0,2584,7250,1562],[4827,4041,4828,0,4827,4041,4828],[1150,7170,7566,0,1150,7170,7566],[4496,7858,4643,0,4496,7858,4643],[7031,5626,324,0,7031,5626,324],[1378,1944,6499,0,1378,1944,6499],[3574,4385,4387,0,3574,4385,4387],[5236,2954,5442,0,5236,2954,5442],[6076,6317,6620,0,6076,6317,6620],[4904,6715,6928,0,4904,6715,6928],[6352,6147,3968,0,6352,6147,3968],[1191,1190,1460,0,1191,1190,1460],[2439,7975,5039,0,2439,7975,5039],[6533,5780,7646,0,6533,5780,7646],[4487,6255,7202,0,4487,6255,7202],[1067,4788,1264,0,1067,4788,1264],[2367,3813,2368,0,2367,3813,2368],[2416,3408,6407,0,2416,3408,6407],[1010,7659,3153,0,1010,7659,3153],[451,2140,2139,0,451,2140,2139],[207,980,982,0,207,980,982],[4318,3582,3584,0,4318,3582,3584],[635,637,4049,0,635,637,4049],[5315,6742,5996,0,5315,6742,5996],[3488,7099,831,0,3488,7099,831],[2184,3949,5906,0,2184,3949,5906],[2210,2212,7848,0,2210,2212,7848],[7515,7623,67,0,7515,7623,67],[6034,6878,4433,0,6034,6878,4433],[5054,4885,4887,0,5054,4885,4887],[5047,5696,6674,0,5047,5696,6674],[7410,3790,4525,0,7410,3790,4525],[4386,4385,5521,0,4386,4385,5521],[6763,834,6151,0,6763,834,6151],[425,427,5216,0,425,427,5216],[5298,7542,6162,0,5298,7542,6162],[2070,2069,5564,0,2070,2069,5564],[2093,6300,1254,0,2093,6300,1254],[3017,3566,3018,0,3017,3566,3018],[3406,6780,6717,0,3406,6780,6717],[2274,6932,2275,0,2274,6932,2275],[3147,2365,2364,0,3147,2365,2364],[7561,5646,5654,0,7561,5646,5654],[2296,537,2039,0,2296,537,2039],[1685,4520,1686,0,1685,4520,1686],[260,262,3163,0,260,262,3163],[4172,6116,6659,0,4172,6116,6659],[6503,3594,6888,0,6503,3594,6888],[6389,1417,2975,0,6389,1417,2975],[6814,4376,2436,0,6814,4376,2436],[4810,4811,843,0,4810,4811,843],[5655,4876,4875,0,5655,4876,4875],[4447,2133,2132,0,4447,2133,2132],[2568,7731,4357,0,2568,7731,4357],[1040,4164,123,0,1040,4164,123],[4847,5898,2634,0,4847,5898,2634],[1627,1626,5168,0,1627,1626,5168],[5484,94,1821,0,5484,94,1821],[818,7686,7707,0,818,7686,7707],[2375,3242,5015,0,2375,3242,5015],[4053,682,5107,0,4053,682,5107],[7288,4806,6278,0,7288,4806,6278],[5605,5225,4643,0,5605,5225,4643],[1589,6453,6452,0,1589,6453,6452],[6039,3123,3603,0,6039,3123,3603],[4164,5543,7028,0,4164,5543,7028],[1249,5722,3348,0,1249,5722,3348],[3215,2801,2802,0,3215,2801,2802],[949,6508,6507,0,949,6508,6507],[2107,2992,2991,0,2107,2992,2991],[2484,2483,5639,0,2484,2483,5639],[1010,6741,7659,0,1010,6741,7659],[3200,3202,630,0,3200,3202,630],[5391,2588,2909,0,5391,2588,2909],[7702,168,170,0,7702,168,170],[6768,7558,6769,0,6768,7558,6769],[6192,2399,1130,0,6192,2399,1130],[1521,2594,753,0,1521,2594,753],[3916,4753,7145,0,3916,4753,7145],[2660,3352,1018,0,2660,3352,1018],[5387,7409,4575,0,5387,7409,4575],[4821,4822,2797,0,4821,4822,2797],[1458,2692,7923,0,1458,2692,7923],[3417,3419,7337,0,3417,3419,7337],[5681,4018,2841,0,5681,4018,2841],[1645,4621,2627,0,1645,4621,2627],[5829,5015,6136,0,5829,5015,6136],[2400,5683,355,0,2400,5683,355],[6004,2044,2043,0,6004,2044,2043],[4954,7664,7059,0,4954,7664,7059],[4618,3975,4804,0,4618,3975,4804],[5449,8029,7968,0,5449,8029,7968],[7417,5889,7596,0,7417,5889,7596],[2253,6375,2254,0,2253,6375,2254],[2981,6624,860,0,2981,6624,860],[2890,3747,2891,0,2890,3747,2891],[3181,6350,2438,0,3181,6350,2438],[3300,3299,4926,0,3300,3299,4926],[3124,2173,3617,0,3124,2173,3617],[7968,8029,7967,0,7968,8029,7967],[3990,212,5640,0,3990,212,5640],[5050,6024,6522,0,5050,6024,6522],[5928,3009,82,0,5928,3009,82],[1103,1102,4019,0,1103,1102,4019],[3089,3091,7977,0,3089,3091,7977],[5248,4667,5249,0,5248,4667,5249],[7685,7684,5374,0,7685,7684,5374],[3165,3529,7589,0,3165,3529,7589],[535,2335,3420,0,535,2335,3420],[7648,7879,1459,0,7648,7879,1459],[3249,3655,1255,0,3249,3655,1255],[7054,497,5414,0,7054,497,5414],[3687,3521,5168,0,3687,3521,5168],[2160,2162,7004,0,2160,2162,7004],[1144,3709,3685,0,1144,3709,3685],[3618,3620,7615,0,3618,3620,7615],[6747,7967,7533,0,6747,7967,7533],[267,2938,1464,0,267,2938,1464],[4120,2285,4006,0,4120,2285,4006],[4310,3678,7111,0,4310,3678,7111],[7146,4015,5871,0,7146,4015,5871],[7647,7136,167,0,7647,7136,167],[3697,4174,3887,0,3697,4174,3887],[2742,2741,6997,0,2742,2741,6997],[2968,7979,5105,0,2968,7979,5105],[2915,2889,2603,0,2915,2889,2603],[2612,275,274,0,2612,275,274],[4490,2559,4197,0,4490,2559,4197],[6005,6115,2592,0,6005,6115,2592],[3131,5720,7749,0,3131,5720,7749],[6776,4772,218,0,6776,4772,218],[6083,4692,1694,0,6083,4692,1694],[6079,3680,6623,0,6079,3680,6623],[4705,5032,3822,0,4705,5032,3822],[2903,6573,3222,0,2903,6573,3222],[7569,2865,6261,0,7569,2865,6261],[5619,5344,1979,0,5619,5344,1979],[5713,2995,5279,0,5713,2995,5279],[1619,447,1620,0,1619,447,1620],[4657,4656,6329,0,4657,4656,6329],[857,859,40,0,857,859,40],[2075,4604,6356,0,2075,4604,6356],[616,618,2569,0,616,618,2569],[6603,1106,4767,0,6603,1106,4767],[5578,4648,5576,0,5578,4648,5576],[869,6297,7030,0,869,6297,7030],[74,1631,3173,0,74,1631,3173],[4260,7146,6935,0,4260,7146,6935],[4426,7962,5507,0,4426,7962,5507],[504,7685,5492,0,504,7685,5492],[7340,5062,747,0,7340,5062,747],[7967,7918,7533,0,7967,7918,7533],[6578,3475,6135,0,6578,3475,6135],[7238,7354,7450,0,7238,7354,7450],[5134,5135,6454,0,5134,5135,6454],[363,6825,7100,0,363,6825,7100],[5851,5850,5123,0,5851,5850,5123],[2996,3333,3335,0,2996,3333,3335],[2606,6557,6270,0,2606,6557,6270],[6968,4504,7104,0,6968,4504,7104],[48,4432,4431,0,48,4432,4431],[2228,3877,3876,0,2228,3877,3876],[1807,5048,2525,0,1807,5048,2525],[1458,7923,7287,0,1458,7923,7287],[2808,2846,2845,0,2808,2846,2845],[4228,59,58,0,4228,59,58],[4705,3822,3824,0,4705,3822,3824],[181,2303,6128,0,181,2303,6128],[7102,1360,3474,0,7102,1360,3474],[3799,3801,5969,0,3799,3801,5969],[5032,2774,5164,0,5032,2774,5164],[2530,7039,195,0,2530,7039,195],[8031,7228,351,0,8031,7228,351],[789,188,2567,0,789,188,2567],[7918,8029,7919,0,7918,8029,7919],[7359,6892,602,0,7359,6892,602],[180,2574,4029,0,180,2574,4029],[6194,5139,5909,0,6194,5139,5909],[1834,420,6481,0,1834,420,6481],[5088,5138,2858,0,5088,5138,2858],[5928,2628,1319,0,5928,2628,1319],[4998,3565,4999,0,4998,3565,4999],[1684,7701,1685,0,1684,7701,1685],[2997,2347,3950,0,2997,2347,3950],[4564,1050,4563,0,4564,1050,4563],[8032,397,6,0,8032,397,6],[6922,7824,1790,0,6922,7824,1790],[1358,2819,3585,0,1358,2819,3585],[7670,3726,7161,0,7670,3726,7161],[5945,5947,4483,0,5945,5947,4483],[197,7498,329,0,197,7498,329],[6735,3973,7855,0,6735,3973,7855],[3026,91,7191,0,3026,91,7191],[4374,7497,4375,0,4374,7497,4375],[5843,1743,1998,0,5843,1743,1998],[8029,7918,7967,0,8029,7918,7967],[7523,7819,6839,0,7523,7819,6839],[4642,884,4484,0,4642,884,4484],[269,2985,4326,0,269,2985,4326],[7621,4997,3375,0,7621,4997,3375],[461,460,2761,0,461,460,2761],[340,4847,1975,0,340,4847,1975],[4353,4434,6878,0,4353,4434,6878],[6398,4986,6756,0,6398,4986,6756],[4420,5790,5115,0,4420,5790,5115],[1913,2533,1914,0,1913,2533,1914],[6722,1035,3594,0,6722,1035,3594],[7442,6822,3700,0,7442,6822,3700],[7936,7481,4935,0,7936,7481,4935],[7330,5333,505,0,7330,5333,505],[6191,153,155,0,6191,153,155],[7833,4624,3446,0,7833,4624,3446],[3748,6642,884,0,3748,6642,884],[1051,1053,7126,0,1051,1053,7126],[5176,7301,5177,0,5176,7301,5177],[4062,4273,448,0,4062,4273,448],[6073,5202,5201,0,6073,5202,5201],[884,5649,885,0,884,5649,885],[3250,5348,3251,0,3250,5348,3251],[5150,6407,2165,0,5150,6407,2165],[6993,6692,2159,0,6993,6692,2159],[5721,1395,7705,0,5721,1395,7705],[393,4980,394,0,393,4980,394],[7621,3375,5483,0,7621,3375,5483],[5721,7705,2919,0,5721,7705,2919],[2339,2780,5958,0,2339,2780,5958],[3830,3832,4454,0,3830,3832,4454],[2441,6196,2442,0,2441,6196,2442],[7035,4068,98,0,7035,4068,98],[1679,1511,1513,0,1679,1511,1513],[315,317,5068,0,315,317,5068],[3426,7856,2172,0,3426,7856,2172],[1017,4180,2664,0,1017,4180,2664],[4307,7969,253,0,4307,7969,253],[1550,3949,1085,0,1550,3949,1085],[3880,1094,2743,0,3880,1094,2743],[7471,1007,4082,0,7471,1007,4082],[3769,5214,5213,0,3769,5214,5213],[6965,4218,5063,0,6965,4218,5063],[7955,5746,5941,0,7955,5746,5941],[1902,6924,1903,0,1902,6924,1903],[1553,1157,7310,0,1553,1157,7310],[4473,5395,5095,0,4473,5395,5095],[4069,1364,4985,0,4069,1364,4985],[6300,1426,7278,0,6300,1426,7278],[5267,5266,7993,0,5267,5266,7993],[2204,2203,7079,0,2204,2203,7079],[1629,1794,8033,0,1629,1794,8033],[1609,3007,59,0,1609,3007,59],[4746,2608,3853,0,4746,2608,3853],[5831,4493,4633,0,5831,4493,4633],[919,5624,1635,0,919,5624,1635],[3768,2470,1310,0,3768,2470,1310],[6061,5505,577,0,6061,5505,577],[6525,7041,2343,0,6525,7041,2343],[6813,7674,6814,0,6813,7674,6814],[2309,2308,576,0,2309,2308,576],[6525,6581,7041,0,6525,6581,7041],[4390,7098,4389,0,4390,7098,4389],[3788,3676,5437,0,3788,3676,5437],[7496,278,1297,0,7496,278,1297],[4229,2602,3781,0,4229,2602,3781],[7656,5080,639,0,7656,5080,639],[2988,5060,1063,0,2988,5060,1063],[3429,6349,3430,0,3429,6349,3430],[5033,5558,2801,0,5033,5558,2801],[7023,6120,6684,0,7023,6120,6684],[960,962,691,0,960,962,691],[7275,5728,6845,0,7275,5728,6845],[786,788,7539,0,786,788,7539],[4277,7863,7053,0,4277,7863,7053],[1360,4852,3216,0,1360,4852,3216],[7088,1619,1621,0,7088,1619,1621],[594,3249,1255,0,594,3249,1255],[252,254,4389,0,252,254,4389],[2305,696,6902,0,2305,696,6902],[1011,4325,920,0,1011,4325,920],[7361,1652,1654,0,7361,1652,1654],[7275,6845,6037,0,7275,6845,6037],[7200,4423,4422,0,7200,4423,4422],[3435,1628,1630,0,3435,1628,1630],[246,4402,5158,0,246,4402,5158],[4791,3670,4435,0,4791,3670,4435],[2074,4604,2075,0,2074,4604,2075],[1597,7341,6576,0,1597,7341,6576],[2702,7469,1289,0,2702,7469,1289],[459,3069,460,0,459,3069,460],[456,6663,457,0,456,6663,457],[5287,3304,2395,0,5287,3304,2395],[6949,7489,6645,0,6949,7489,6645],[6129,6128,6143,0,6129,6128,6143],[112,6490,113,0,112,6490,113],[3099,3976,3100,0,3099,3976,3100],[7186,6896,6898,0,7186,6896,6898],[3520,3521,4213,0,3520,3521,4213],[7519,6554,2179,0,7519,6554,2179],[4650,2248,3938,0,4650,2248,3938],[3512,460,3069,0,3512,460,3069],[1721,6345,5792,0,1721,6345,5792],[5101,2834,2833,0,5101,2834,2833],[4349,5500,686,0,4349,5500,686],[6143,6128,2303,0,6143,6128,2303],[2354,6630,5009,0,2354,6630,5009],[4326,5751,5752,0,4326,5751,5752],[3512,913,3511,0,3512,913,3511],[5508,3417,5509,0,5508,3417,5509],[2387,3601,2360,0,2387,3601,2360],[6711,1729,3332,0,6711,1729,3332],[6195,5877,3821,0,6195,5877,3821],[880,7358,6346,0,880,7358,6346],[7947,6613,7585,0,7947,6613,7585],[6495,897,896,0,6495,897,896],[6654,7059,7664,0,6654,7059,7664],[4930,2457,4908,0,4930,2457,4908],[386,740,4734,0,386,740,4734],[5145,1222,5723,0,5145,1222,5723],[769,7844,7853,0,769,7844,7853],[5625,1548,1549,0,5625,1548,1549],[4388,7525,5872,0,4388,7525,5872],[1,0,3964,0,1,0,3964],[3958,4641,7397,0,3958,4641,7397],[1712,1714,6686,0,1712,1714,6686],[1304,6215,5204,0,1304,6215,5204],[7525,7700,5872,0,7525,7700,5872],[254,863,4389,0,254,863,4389],[1261,1228,3876,0,1261,1228,3876],[5027,3349,5865,0,5027,3349,5865],[2958,6145,6894,0,2958,6145,6894],[3069,913,3512,0,3069,913,3512],[3555,503,3556,0,3555,503,3556],[408,1558,409,0,408,1558,409],[9,2719,8034,0,9,2719,8034],[7140,7304,7114,0,7140,7304,7114],[2719,8035,8034,0,2719,8035,8034],[274,524,2113,0,274,524,2113],[5485,7533,7918,0,5485,7533,7918],[4796,731,5551,0,4796,731,5551],[5785,9,8034,0,5785,9,8034],[1936,207,1935,0,1936,207,1935],[335,3112,7119,0,335,3112,7119],[5785,8036,5786,0,5785,8036,5786],[8034,8037,8036,0,8034,8037,8036],[8034,8036,5785,0,8034,8036,5785],[4506,2260,7848,0,4506,2260,7848],[7386,3220,7387,0,7386,3220,7387],[1745,6338,4106,0,1745,6338,4106],[363,4676,364,0,363,4676,364],[4591,7480,7479,0,4591,7480,7479],[1105,1338,1337,0,1105,1338,1337],[2718,8038,8035,0,2718,8038,8035],[2718,8035,2719,0,2718,8035,2719],[227,7359,7285,0,227,7359,7285],[2785,5044,5043,0,2785,5044,5043],[3248,7436,1579,0,3248,7436,1579],[3311,7541,1429,0,3311,7541,1429],[8034,8035,8039,0,8034,8035,8039],[8034,8039,8037,0,8034,8039,8037],[8038,8040,8039,0,8038,8040,8039],[8038,8039,8035,0,8038,8039,8035],[355,5683,356,0,355,5683,356],[4403,1476,7073,0,4403,1476,7073],[4030,3603,4031,0,4030,3603,4031],[6586,1951,2041,0,6586,1951,2041],[529,245,7313,0,529,245,7313],[73,1631,74,0,73,1631,74],[6765,8037,4522,0,6765,8037,4522],[6765,4522,4521,0,6765,4522,4521],[3194,6949,3195,0,3194,6949,3195],[5001,3986,5002,0,5001,3986,5002],[3575,2537,3140,0,3575,2537,3140],[6453,7560,5711,0,6453,7560,5711],[2627,4621,7525,0,2627,4621,7525],[5633,5480,7658,0,5633,5480,7658],[4522,8040,8041,0,4522,8040,8041],[4522,8041,7991,0,4522,8041,7991],[6334,1447,6250,0,6334,1447,6250],[8042,8041,8040,0,8042,8041,8040],[4253,7991,8041,0,4253,7991,8041],[5953,1072,5967,0,5953,1072,5967],[4615,4358,4357,0,4615,4358,4357],[1057,3227,3553,0,1057,3227,3553],[5786,8036,8037,0,5786,8036,8037],[5786,8037,6765,0,5786,8037,6765],[7651,6587,1012,0,7651,6587,1012],[2080,3174,6972,0,2080,3174,6972],[7440,6502,5969,0,7440,6502,5969],[3536,5013,7509,0,3536,5013,7509],[3667,3666,7408,0,3667,3666,7408],[4087,2975,7497,0,4087,2975,7497],[8037,8039,8040,0,8037,8039,8040],[8037,8040,4522,0,8037,8040,4522],[1595,1597,6576,0,1595,1597,6576],[6241,3055,2673,0,6241,3055,2673],[3571,1271,1257,0,3571,1271,1257],[4885,7254,6667,0,4885,7254,6667],[7372,2900,8043,0,7372,2900,8043],[7372,8043,7694,0,7372,8043,7694],[4252,8044,8043,0,4252,8044,8043],[4252,8043,2900,0,4252,8043,2900],[2281,2725,6376,0,2281,2725,6376],[8045,8043,8044,0,8045,8043,8044],[6144,7474,6145,0,6144,7474,6145],[7694,8043,8045,0,7694,8043,8045],[7694,8045,8046,0,7694,8045,8046],[2981,7199,2982,0,2981,7199,2982],[759,6746,7672,0,759,6746,7672],[2490,5963,7230,0,2490,5963,7230],[8047,8048,8046,0,8047,8048,8046],[5694,3046,7134,0,5694,3046,7134],[7692,7694,8046,0,7692,7694,8046],[7692,8046,8048,0,7692,8046,8048],[4252,4253,8044,0,4252,4253,8044],[7201,1734,5546,0,7201,1734,5546],[4253,8041,8044,0,4253,8041,8044],[2996,2995,7247,0,2996,2995,7247],[8042,8049,8044,0,8042,8049,8044],[8042,8044,8041,0,8042,8044,8041],[7031,324,2088,0,7031,324,2088],[8045,8044,8049,0,8045,8044,8049],[3932,2934,3787,0,3932,2934,3787],[8045,8049,8046,0,8045,8049,8046],[7359,6243,6892,0,7359,6243,6892],[3864,3866,5260,0,3864,3866,5260],[4146,3273,3274,0,4146,3273,3274],[8040,8049,8042,0,8040,8049,8042],[8047,8046,8049,0,8047,8046,8049],[8047,8049,8040,0,8047,8049,8040],[5986,5528,3885,0,5986,5528,3885],[597,7194,7196,0,597,7194,7196],[7690,8050,7686,0,7690,8050,7686],[3905,5349,6178,0,3905,5349,6178],[5986,5985,774,0,5986,5985,774],[3312,6842,7298,0,3312,6842,7298],[3089,7977,7452,0,3089,7977,7452],[7707,7686,8050,0,7707,7686,8050],[7707,8050,2718,0,7707,8050,2718],[4991,2765,2764,0,4991,2765,2764],[6141,348,6093,0,6141,348,6093],[1720,1719,4351,0,1720,1719,4351],[5749,5344,5343,0,5749,5344,5343],[5223,3931,1427,0,5223,3931,1427],[3767,6889,2896,0,3767,6889,2896],[7381,1978,194,0,7381,1978,194],[3026,5227,7675,0,3026,5227,7675],[7690,8048,8050,0,7690,8048,8050],[5496,3528,6113,0,5496,3528,6113],[7692,8048,7690,0,7692,8048,7690],[8047,8050,8048,0,8047,8050,8048],[4453,7495,5892,0,4453,7495,5892],[3563,2070,5563,0,3563,2070,5563],[6273,7588,7882,0,6273,7588,7882],[2693,4201,4200,0,2693,4201,4200],[6914,5758,5256,0,6914,5758,5256],[8047,8040,8050,0,8047,8040,8050],[4076,5718,4077,0,4076,5718,4077],[7051,7122,834,0,7051,7122,834],[7184,3290,2187,0,7184,3290,2187],[8038,2718,8050,0,8038,2718,8050],[8038,8050,8040,0,8038,8050,8040],[3517,3519,7091,0,3517,3519,7091],[7238,5935,833,0,7238,5935,833],[2727,2728,5542,0,2727,2728,5542],[5769,7298,6842,0,5769,7298,6842],[8051,8052,7091,0,8051,8052,7091],[8051,7091,3519,0,8051,7091,3519],[8031,7911,6098,0,8031,7911,6098],[7625,5304,7336,0,7625,5304,7336],[4944,6417,5985,0,4944,6417,5985],[6873,3157,4247,0,6873,3157,4247],[700,4820,1491,0,700,4820,1491],[3255,3254,2049,0,3255,3254,2049],[2756,5174,3031,0,2756,5174,3031],[4116,5479,5478,0,4116,5479,5478],[4329,7091,8052,0,4329,7091,8052],[1832,2951,2950,0,1832,2951,2950],[3519,4509,8051,0,3519,4509,8051],[6005,7033,6115,0,6005,7033,6115],[5459,4915,2617,0,5459,4915,2617],[8053,8051,4509,0,8053,8051,4509],[8054,8055,8051,0,8054,8055,8051],[8054,8051,8053,0,8054,8051,8053],[7028,3473,3472,0,7028,3473,3472],[1006,996,998,0,1006,996,998],[3794,7284,6061,0,3794,7284,6061],[6318,3672,1087,0,6318,3672,1087],[916,7554,929,0,916,7554,929],[1446,7037,1447,0,1446,7037,1447],[8056,8057,8055,0,8056,8057,8055],[8056,8055,8054,0,8056,8055,8054],[8052,8051,8055,0,8052,8051,8055],[8052,8055,8057,0,8052,8055,8057],[4408,6286,1815,0,4408,6286,1815],[3488,7248,5464,0,3488,7248,5464],[3899,6731,5531,0,3899,6731,5531],[6905,8058,3118,0,6905,8058,3118],[7614,3089,7452,0,7614,3089,7452],[4818,5146,5145,0,4818,5146,5145],[2894,2734,2733,0,2894,2734,2733],[8059,8058,8060,0,8059,8058,8060],[5012,5014,6907,0,5012,5014,6907],[8059,8060,8061,0,8059,8060,8061],[2528,2825,7939,0,2528,2825,7939],[7938,4126,7302,0,7938,4126,7302],[3953,6936,5443,0,3953,6936,5443],[5567,7993,5266,0,5567,7993,5266],[3333,7247,6204,0,3333,7247,6204],[3513,7040,7789,0,3513,7040,7789],[7639,6810,5742,0,7639,6810,5742],[4592,4593,1392,0,4592,4593,1392],[4329,8052,6905,0,4329,8052,6905],[7218,7737,3598,0,7218,7737,3598],[6118,4661,6379,0,6118,4661,6379],[1707,2515,6913,0,1707,2515,6913],[6733,3267,5694,0,6733,3267,5694],[8058,6905,8052,0,8058,6905,8052],[8058,8052,8057,0,8058,8052,8057],[8058,8057,8060,0,8058,8057,8060],[5412,5103,4394,0,5412,5103,4394],[6702,6703,4123,0,6702,6703,4123],[2696,4507,3745,0,2696,4507,3745],[4920,3913,7609,0,4920,3913,7609],[8061,8060,8057,0,8061,8060,8057],[8061,8057,8056,0,8061,8057,8056],[7348,6182,4275,0,7348,6182,4275],[7204,643,597,0,7204,643,597],[610,3743,7272,0,610,3743,7272],[7626,1300,7065,0,7626,1300,7065],[5188,718,3394,0,5188,718,3394],[3444,3696,6122,0,3444,3696,6122],[7708,7716,8062,0,7708,7716,8062],[1925,4993,1926,0,1925,4993,1926],[6279,6278,4805,0,6279,6278,4805],[4238,563,5641,0,4238,563,5641],[8062,8063,7708,0,8062,8063,7708],[1503,160,159,0,1503,160,159],[869,1390,870,0,869,1390,870],[1589,1683,1682,0,1589,1683,1682],[3295,5972,6637,0,3295,5972,6637],[2388,2390,1477,0,2388,2390,1477],[6063,3754,2507,0,6063,3754,2507],[282,284,6314,0,282,284,6314],[3021,1078,1080,0,3021,1078,1080],[6327,5207,3725,0,6327,5207,3725],[3404,3403,7661,0,3404,3403,7661],[6089,2001,2003,0,6089,2001,2003],[4936,3599,3600,0,4936,3599,3600],[5621,7409,5622,0,5621,7409,5622],[8062,8061,8063,0,8062,8061,8063],[1489,1491,2644,0,1489,1491,2644],[8061,8056,8063,0,8061,8056,8063],[1882,5233,5668,0,1882,5233,5668],[3792,7589,3443,0,3792,7589,3443],[7471,6830,1007,0,7471,6830,1007],[6214,7559,2779,0,6214,7559,2779],[4314,6358,6357,0,4314,6358,6357],[6262,7429,7502,0,6262,7429,7502],[2460,206,1180,0,2460,206,1180],[3719,3721,7627,0,3719,3721,7627],[3413,3505,4991,0,3413,3505,4991],[6456,2350,6650,0,6456,2350,6650],[4609,443,783,0,4609,443,783],[7204,7195,8064,0,7204,7195,8064],[6366,4922,6367,0,6366,4922,6367],[4473,5095,4474,0,4473,5095,4474],[7204,8054,643,0,7204,8054,643],[1620,6117,7236,0,1620,6117,7236],[8064,8054,7204,0,8064,8054,7204],[4229,6394,4230,0,4229,6394,4230],[2672,2674,1409,0,2672,2674,1409],[8053,643,8054,0,8053,643,8054],[5479,4116,104,0,5479,4116,104],[4514,6798,6353,0,4514,6798,6353],[7162,4520,4519,0,7162,4520,4519],[2365,5144,7882,0,2365,5144,7882],[7708,8064,7195,0,7708,8064,7195],[6800,2575,6883,0,6800,2575,6883],[8063,8064,7708,0,8063,8064,7708],[6853,7018,6972,0,6853,7018,6972],[3277,598,643,0,3277,598,643],[4222,1989,6728,0,4222,1989,6728],[8064,8065,8054,0,8064,8065,8054],[1175,5508,1176,0,1175,5508,1176],[8063,8065,8064,0,8063,8065,8064],[8056,8054,8065,0,8056,8054,8065],[8056,8065,8063,0,8056,8065,8063],[5278,5570,5714,0,5278,5570,5714],[3187,4671,7579,0,3187,4671,7579],[3118,8058,4610,0,3118,8058,4610],[2896,2898,2111,0,2896,2898,2111],[5125,5124,7576,0,5125,5124,7576],[8059,4610,8058,0,8059,4610,8058],[8059,8066,4610,0,8059,8066,4610],[6213,3004,6991,0,6213,3004,6991],[6267,6122,3696,0,6267,6122,3696],[135,5141,6712,0,135,5141,6712],[2881,6576,7341,0,2881,6576,7341],[4610,8066,4283,0,4610,8066,4283],[8059,8067,8066,0,8059,8067,8066],[4032,4031,3602,0,4032,4031,3602],[8067,5098,8066,0,8067,5098,8066],[1445,570,1894,0,1445,570,1894],[3415,1125,1124,0,3415,1125,1124],[4283,8066,5098,0,4283,8066,5098],[8059,8061,8067,0,8059,8061,8067],[7098,3247,4389,0,7098,3247,4389],[3102,3307,5200,0,3102,3307,5200],[1217,7673,3701,0,1217,7673,3701],[6852,7511,7174,0,6852,7511,7174],[983,985,5400,0,983,985,5400],[7897,4686,5169,0,7897,4686,5169],[4983,562,564,0,4983,562,564],[3402,5631,5630,0,3402,5631,5630],[2379,7406,7123,0,2379,7406,7123],[229,5616,7548,0,229,5616,7548],[3755,1411,1410,0,3755,1411,1410],[3376,4999,5312,0,3376,4999,5312],[2990,2992,76,0,2990,2992,76],[6210,5069,4296,0,6210,5069,4296],[4070,5123,4068,0,4070,5123,4068],[2845,5049,5547,0,2845,5049,5547],[3906,423,5887,0,3906,423,5887],[5573,6624,7082,0,5573,6624,7082],[7360,3486,1968,0,7360,3486,1968],[3587,1676,1248,0,3587,1676,1248],[4717,293,292,0,4717,293,292],[3936,621,620,0,3936,621,620],[5933,5932,7274,0,5933,5932,7274],[8068,7291,8069,0,8068,7291,8069],[2929,4557,7945,0,2929,4557,7945],[5098,8070,8069,0,5098,8070,8069],[5098,8069,7291,0,5098,8069,7291],[5,133,132,0,5,133,132],[6926,6634,7565,0,6926,6634,7565],[8071,8068,8069,0,8071,8068,8069],[304,1770,1646,0,304,1770,1646],[5756,1746,7467,0,5756,1746,7467],[5739,2523,3301,0,5739,2523,3301],[6107,6193,5239,0,6107,6193,5239],[6749,7489,3194,0,6749,7489,3194],[982,981,7435,0,982,981,7435],[4663,4587,6783,0,4663,4587,6783],[5330,7008,20,0,5330,7008,20],[1622,5788,4663,0,1622,5788,4663],[5191,5777,7403,0,5191,5777,7403],[5098,8072,8070,0,5098,8072,8070],[4781,6541,5369,0,4781,6541,5369],[8067,8072,5098,0,8067,8072,5098],[2378,2380,2507,0,2378,2380,2507],[7275,6037,5621,0,7275,6037,5621],[6637,4396,2768,0,6637,4396,2768],[88,87,3120,0,88,87,3120],[5251,115,2206,0,5251,115,2206],[7750,8073,7751,0,7750,8073,7751],[8074,8075,8073,0,8074,8075,8073],[8074,8073,7750,0,8074,8073,7750],[8075,7751,8073,0,8075,7751,8073],[2257,4059,4922,0,2257,4059,4922],[6241,2673,2672,0,6241,2673,2672],[1784,2096,2095,0,1784,2096,2095],[1625,3617,2173,0,1625,3617,2173],[7751,8076,7753,0,7751,8076,7753],[1387,302,301,0,1387,302,301],[8075,8076,7751,0,8075,8076,7751],[8077,7744,8076,0,8077,7744,8076],[5321,1334,6851,0,5321,1334,6851],[7744,7753,8076,0,7744,7753,8076],[4983,2290,562,0,4983,2290,562],[1154,6879,4623,0,1154,6879,4623],[8074,8078,8075,0,8074,8078,8075],[8071,8069,8078,0,8071,8069,8078],[8071,8078,8074,0,8071,8078,8074],[272,3816,591,0,272,3816,591],[8070,8078,8069,0,8070,8078,8069],[2428,5142,6572,0,2428,5142,6572],[5978,6922,7377,0,5978,6922,7377],[8075,8078,8070,0,8075,8078,8070],[8075,8070,8076,0,8075,8070,8076],[3046,6669,3047,0,3046,6669,3047],[4812,4132,2919,0,4812,4132,2919],[8072,8077,8070,0,8072,8077,8070],[2378,2507,3754,0,2378,2507,3754],[8077,8076,8070,0,8077,8076,8070],[2631,5495,1896,0,2631,5495,1896],[7484,2541,4206,0,7484,2541,4206],[7716,7739,8062,0,7716,7739,8062],[7741,8079,7739,0,7741,8079,7739],[7315,695,6762,0,7315,695,6762],[8080,8062,7739,0,8080,8062,7739],[8080,7739,8079,0,8080,7739,8079],[7605,7677,2824,0,7605,7677,2824],[6979,2548,6911,0,6979,2548,6911],[7237,1924,1923,0,7237,1924,1923],[8062,8080,8061,0,8062,8080,8061],[586,1747,1286,0,586,1747,1286],[197,196,7363,0,197,196,7363],[614,5624,2884,0,614,5624,2884],[3338,1618,5380,0,3338,1618,5380],[3361,4038,3362,0,3361,4038,3362],[8061,8080,8067,0,8061,8080,8067],[1305,6050,142,0,1305,6050,142],[675,7466,3144,0,675,7466,3144],[6281,3692,4730,0,6281,3692,4730],[7744,8079,7741,0,7744,8079,7741],[1179,4771,2164,0,1179,4771,2164],[8077,8079,7744,0,8077,8079,7744],[675,3144,3143,0,675,3144,3143],[8080,8079,8077,0,8080,8079,8077],[5045,7004,2162,0,5045,7004,2162],[3967,7608,526,0,3967,7608,526],[1764,6564,6543,0,1764,6564,6543],[2578,7837,7047,0,2578,7837,7047],[8072,8067,8080,0,8072,8067,8080],[8072,8080,8077,0,8072,8080,8077],[1769,970,969,0,1769,970,969],[3808,6548,7447,0,3808,6548,7447],[3699,1026,2711,0,3699,1026,2711],[5857,4823,2823,0,5857,4823,2823],[4858,7435,4742,0,4858,7435,4742],[7552,8081,4842,0,7552,8081,4842],[3468,4416,1825,0,3468,4416,1825],[7237,2273,7236,0,7237,2273,7236],[7683,4842,8081,0,7683,4842,8081],[2806,5546,1734,0,2806,5546,1734],[1597,1596,1840,0,1597,1596,1840],[7683,8082,4106,0,7683,8082,4106],[351,7228,352,0,351,7228,352],[8081,8082,7683,0,8081,8082,7683],[8083,3315,8082,0,8083,3315,8082],[6743,6760,6744,0,6743,6760,6744],[3315,4106,8082,0,3315,4106,8082],[1829,4867,1830,0,1829,4867,1830],[1640,3134,1641,0,1640,3134,1641],[3953,6196,6518,0,3953,6196,6518],[1194,3867,4275,0,1194,3867,4275],[1869,1195,1197,0,1869,1195,1197],[8084,8081,7552,0,8084,8081,7552],[4054,3680,5057,0,4054,3680,5057],[6934,2871,6687,0,6934,2871,6687],[1128,7651,1012,0,1128,7651,1012],[2980,4532,1386,0,2980,4532,1386],[8081,8085,8082,0,8081,8085,8082],[24,1014,3096,0,24,1014,3096],[8084,8085,8081,0,8084,8085,8081],[3135,1071,2158,0,3135,1071,2158],[6255,7143,4063,0,6255,7143,4063],[8083,8082,8085,0,8083,8082,8085],[8083,8085,8086,0,8083,8085,8086],[1469,1665,8087,0,1469,1665,8087],[3391,4015,7146,0,3391,4015,7146],[4667,5531,2026,0,4667,5531,2026],[3314,8087,1665,0,3314,8087,1665],[7032,7346,6529,0,7032,7346,6529],[6478,6480,3848,0,6478,6480,3848],[8018,1469,8087,0,8018,1469,8087],[2465,6470,2466,0,2465,6470,2466],[5909,5315,1552,0,5909,5315,1552],[2025,1783,1624,0,2025,1783,1624],[3623,4685,2183,0,3623,4685,2183],[3314,8018,8087,0,3314,8018,8087],[6914,7412,5758,0,6914,7412,5758],[8088,8018,3314,0,8088,8018,3314],[7311,7357,1554,0,7311,7357,1554],[7526,6004,6619,0,7526,6004,6619],[7112,3814,7083,0,7112,3814,7083],[6669,6495,896,0,6669,6495,896],[2513,3750,3661,0,2513,3750,3661],[2678,5226,2449,0,2678,5226,2449],[5786,6041,5787,0,5786,6041,5787],[983,5400,4214,0,983,5400,4214],[1991,1990,6939,0,1991,1990,6939],[270,591,763,0,270,591,763],[3314,3315,8086,0,3314,3315,8086],[3672,3560,1551,0,3672,3560,1551],[3801,4515,5969,0,3801,4515,5969],[8083,8086,3315,0,8083,8086,3315],[346,345,3340,0,346,345,3340],[2754,954,2755,0,2754,954,2755],[8088,3314,8086,0,8088,3314,8086],[8088,8086,8089,0,8088,8086,8089],[7051,7121,7122,0,7051,7121,7122],[537,539,2039,0,537,539,2039],[3677,2547,7211,0,3677,2547,7211],[2293,2238,7338,0,2293,2238,7338],[8088,8090,7750,0,8088,8090,7750],[6299,7342,773,0,6299,7342,773],[2100,2102,4590,0,2100,2102,4590],[8074,7750,8090,0,8074,7750,8090],[3931,5730,2215,0,3931,5730,2215],[5130,6148,6149,0,5130,6148,6149],[8088,8089,8090,0,8088,8089,8090],[5856,201,3114,0,5856,201,3114],[8091,8092,8090,0,8091,8092,8090],[8091,8090,8089,0,8091,8090,8089],[8071,8074,8090,0,8071,8074,8090],[8071,8090,8092,0,8071,8090,8092],[7750,8013,8088,0,7750,8013,8088],[6062,6061,7284,0,6062,6061,7284],[8013,8018,8088,0,8013,8018,8088],[4640,3259,1586,0,4640,3259,1586],[1100,1099,1603,0,1100,1099,1603],[6374,6373,5667,0,6374,6373,5667],[7629,4539,4538,0,7629,4539,4538],[661,6060,662,0,661,6060,662],[5193,5341,985,0,5193,5341,985],[732,7217,5725,0,732,7217,5725],[7648,1459,7287,0,7648,1459,7287],[4835,4606,528,0,4835,4606,528],[8086,8093,8089,0,8086,8093,8089],[3923,4201,2693,0,3923,4201,2693],[816,6534,6444,0,816,6534,6444],[8091,8089,8093,0,8091,8089,8093],[1480,4594,855,0,1480,4594,855],[7291,8068,7597,0,7291,8068,7597],[2324,4826,2405,0,2324,4826,2405],[7192,7919,2760,0,7192,7919,2760],[172,6806,7250,0,172,6806,7250],[5773,2620,1283,0,5773,2620,1283],[3581,1188,7554,0,3581,1188,7554],[5263,6018,5264,0,5263,6018,5264],[7597,8068,7551,0,7597,8068,7551],[4012,938,937,0,4012,938,937],[8094,8084,7551,0,8094,8084,7551],[8094,7551,8068,0,8094,7551,8068],[8084,7552,7551,0,8084,7552,7551],[3536,7509,6069,0,3536,7509,6069],[1198,1199,6983,0,1198,1199,6983],[7486,3038,1113,0,7486,3038,1113],[5713,5279,5278,0,5713,5279,5278],[5293,3186,3185,0,5293,3186,3185],[8071,8092,8094,0,8071,8092,8094],[8071,8094,8068,0,8071,8094,8068],[1503,1502,3393,0,1503,1502,3393],[8091,8094,8092,0,8091,8094,8092],[3943,6124,1217,0,3943,6124,1217],[6276,6666,6277,0,6276,6666,6277],[8094,8091,8093,0,8094,8091,8093],[8094,8093,8084,0,8094,8093,8084],[6053,2150,2149,0,6053,2150,2149],[5254,914,6854,0,5254,914,6854],[8086,8085,8093,0,8086,8085,8093],[6735,7855,4248,0,6735,7855,4248],[2228,2230,1474,0,2228,2230,1474],[8084,8093,8085,0,8084,8093,8085],[5856,3114,5176,0,5856,3114,5176],[4227,1608,4228,0,4227,1608,4228],[2961,4857,4059,0,2961,4857,4059],[2578,2577,7837,0,2578,2577,7837],[2125,4587,3653,0,2125,4587,3653],[949,6507,309,0,949,6507,309],[6181,1419,1418,0,6181,1419,1418],[5839,5475,5474,0,5839,5475,5474],[4922,7620,6367,0,4922,7620,6367],[7272,4462,569,0,7272,4462,569],[6549,5052,3919,0,6549,5052,3919],[3312,7298,3313,0,3312,7298,3313],[764,6707,6573,0,764,6707,6573],[7060,2535,7981,0,7060,2535,7981],[6210,3637,5069,0,6210,3637,5069],[4560,4562,5155,0,4560,4562,5155],[4073,962,6744,0,4073,962,6744],[6724,2012,183,0,6724,2012,183],[1085,3949,6668,0,1085,3949,6668],[5,132,3111,0,5,132,3111],[7538,3687,6688,0,7538,3687,6688],[3567,2498,2655,0,3567,2498,2655],[1854,65,2426,0,1854,65,2426],[1163,3602,533,0,1163,3602,533],[3982,3359,5143,0,3982,3359,5143],[6857,3972,2008,0,6857,3972,2008],[2283,1599,7321,0,2283,1599,7321],[4674,8,7,0,4674,8,7],[6454,5825,3627,0,6454,5825,3627],[7401,3811,3810,0,7401,3811,3810],[2999,3340,3000,0,2999,3340,3000],[4013,937,4360,0,4013,937,4360],[886,5353,3748,0,886,5353,3748],[1410,1409,3462,0,1410,1409,3462],[5865,5618,5617,0,5865,5618,5617],[126,1730,1729,0,126,1730,1729],[3035,6609,5319,0,3035,6609,5319],[6494,5626,6495,0,6494,5626,6495],[3671,7972,1301,0,3671,7972,1301],[5428,1430,5815,0,5428,1430,5815],[3504,4017,4016,0,3504,4017,4016],[5742,1393,4593,0,5742,1393,4593],[1698,5385,5021,0,1698,5385,5021],[6100,3706,3705,0,6100,3706,3705],[7545,5966,4151,0,7545,5966,4151],[8033,5875,6945,0,8033,5875,6945],[6799,8095,3742,0,6799,8095,3742],[5865,5617,6455,0,5865,5617,6455],[574,754,1352,0,574,754,1352],[324,1549,325,0,324,1549,325],[5828,4319,7152,0,5828,4319,7152],[6602,7949,6571,0,6602,7949,6571],[1784,2095,1785,0,1784,2095,1785],[7096,5572,2245,0,7096,5572,2245],[716,4305,4289,0,716,4305,4289],[1762,1809,1683,0,1762,1809,1683],[4200,2694,2693,0,4200,2694,2693],[7974,2677,1397,0,7974,2677,1397],[4238,564,563,0,4238,564,563],[6304,73,72,0,6304,73,72],[2252,4089,6856,0,2252,4089,6856],[2961,3476,4857,0,2961,3476,4857],[5028,6989,3347,0,5028,6989,3347],[2304,3476,2961,0,2304,3476,2961],[2257,4922,2255,0,2257,4922,2255],[1954,6555,1955,0,1954,6555,1955],[6994,4795,6674,0,6994,4795,6674],[3139,228,987,0,3139,228,987],[6525,3630,3547,0,6525,3630,3547],[5487,6222,6509,0,5487,6222,6509],[3213,3695,4335,0,3213,3695,4335],[658,4104,659,0,658,4104,659],[3692,2411,2413,0,3692,2411,2413],[7411,282,5116,0,7411,282,5116],[5675,3170,2713,0,5675,3170,2713],[3306,162,457,0,3306,162,457],[3381,4761,3382,0,3381,4761,3382],[3238,6342,3239,0,3238,6342,3239],[5761,3489,3488,0,5761,3489,3488],[1659,7361,4235,0,1659,7361,4235],[1824,3468,1825,0,1824,3468,1825],[6253,2376,6420,0,6253,2376,6420],[4330,4519,4331,0,4330,4519,4331],[4738,7674,7638,0,4738,7674,7638],[2183,2185,3300,0,2183,2185,3300],[7432,4509,3277,0,7432,4509,3277],[6539,1296,7789,0,6539,1296,7789],[6330,6523,3102,0,6330,6523,3102],[2963,2304,2961,0,2963,2304,2961],[7190,2384,6151,0,7190,2384,6151],[1268,4665,1269,0,1268,4665,1269],[5755,1650,6317,0,5755,1650,6317],[726,767,922,0,726,767,922],[7846,2885,2729,0,7846,2885,2729],[3055,6426,7382,0,3055,6426,7382],[3260,1210,5081,0,3260,1210,5081],[6766,6765,1353,0,6766,6765,1353],[2424,2465,2425,0,2424,2465,2425],[3938,2248,4949,0,3938,2248,4949],[7553,2431,2433,0,7553,2431,2433],[601,7675,3319,0,601,7675,3319],[1681,1683,2349,0,1681,1683,2349],[6887,810,491,0,6887,810,491],[89,3026,7675,0,89,3026,7675],[808,6728,1964,0,808,6728,1964],[2415,6241,2672,0,2415,6241,2672],[1634,1009,919,0,1634,1009,919],[5588,1571,6930,0,5588,1571,6930],[2107,5971,2108,0,2107,5971,2108],[6230,2983,2982,0,6230,2983,2982],[5380,5382,3659,0,5380,5382,3659],[2709,5668,5232,0,2709,5668,5232],[7548,3355,470,0,7548,3355,470],[5736,7308,4012,0,5736,7308,4012],[616,4072,617,0,616,4072,617],[6195,5496,6113,0,6195,5496,6113],[5293,5765,4672,0,5293,5765,4672],[1802,2733,2732,0,1802,2733,2732],[880,6346,2058,0,880,6346,2058],[3289,7261,3288,0,3289,7261,3288],[1398,1397,2329,0,1398,1397,2329],[1803,3523,7147,0,1803,3523,7147],[5765,5293,506,0,5765,5293,506],[7965,5006,3034,0,7965,5006,3034],[449,448,6664,0,449,448,6664],[5129,7139,6483,0,5129,7139,6483],[7502,7429,2492,0,7502,7429,2492],[6796,3543,1599,0,6796,3543,1599],[3318,1565,595,0,3318,1565,595],[6655,6654,7664,0,6655,6654,7664],[105,4256,1845,0,105,4256,1845],[2183,3300,6290,0,2183,3300,6290],[1180,2676,2461,0,1180,2676,2461],[8096,2256,2011,0,8096,2256,2011],[7352,7614,7452,0,7352,7614,7452],[6071,5082,6944,0,6071,5082,6944],[2256,8096,2257,0,2256,8096,2257],[4753,3823,7145,0,4753,3823,7145],[3362,2770,2769,0,3362,2770,2769],[5964,6387,7116,0,5964,6387,7116],[7041,1507,1757,0,7041,1507,1757],[4095,6392,4096,0,4095,6392,4096],[2778,5587,5589,0,2778,5587,5589],[6582,2663,6458,0,6582,2663,6458],[1533,4435,1532,0,1533,4435,1532],[4875,439,1161,0,4875,439,1161],[6574,5753,7319,0,6574,5753,7319],[3538,433,7786,0,3538,433,7786],[38,1582,1581,0,38,1582,1581],[4060,4857,5719,0,4060,4857,5719],[1649,6783,4587,0,1649,6783,4587],[4342,4341,5665,0,4342,4341,5665],[3698,3272,1245,0,3698,3272,1245],[4692,6502,4691,0,4692,6502,4691],[3050,5533,3051,0,3050,5533,3051],[1431,6506,3274,0,1431,6506,3274],[2801,5558,1361,0,2801,5558,1361],[1646,1648,6877,0,1646,1648,6877],[342,6904,343,0,342,6904,343],[634,633,1810,0,634,633,1810],[8033,6945,5752,0,8033,6945,5752],[2170,1318,6047,0,2170,1318,6047],[1864,2773,1865,0,1864,2773,1865],[65,1854,2119,0,65,1854,2119],[4809,1385,1818,0,4809,1385,1818],[3499,3501,778,0,3499,3501,778],[5872,5874,2274,0,5872,5874,2274],[1174,1176,3103,0,1174,1176,3103],[1004,7363,196,0,1004,7363,196],[1978,5619,1979,0,1978,5619,1979],[1714,5100,4215,0,1714,5100,4215],[5659,137,5805,0,5659,137,5805],[1182,7278,1426,0,1182,7278,1426],[7059,4952,4954,0,7059,4952,4954],[5562,6971,2717,0,5562,6971,2717],[3129,5837,4595,0,3129,5837,4595],[2763,6668,4684,0,2763,6668,4684],[512,1661,513,0,512,1661,513],[1020,1022,851,0,1020,1022,851],[3604,3764,7652,0,3604,3764,7652],[4891,3908,7036,0,4891,3908,7036],[5759,5760,6500,0,5759,5760,6500],[2030,2029,578,0,2030,2029,578],[2961,2257,8096,0,2961,2257,8096],[4866,5724,5180,0,4866,5724,5180],[7571,4648,2610,0,7571,4648,2610],[7552,4842,7200,0,7552,4842,7200],[6341,4769,3167,0,6341,4769,3167],[2720,11,7680,0,2720,11,7680],[5017,5681,5680,0,5017,5681,5680],[6902,1755,6665,0,6902,1755,6665],[2522,199,7133,0,2522,199,7133],[6219,5980,5018,0,6219,5980,5018],[3645,6876,6158,0,3645,6876,6158],[7490,6749,3142,0,7490,6749,3142],[4054,5057,5840,0,4054,5057,5840],[5394,5393,3258,0,5394,5393,3258],[2025,1781,1783,0,2025,1781,1783],[6645,7489,7577,0,6645,7489,7577],[6064,7611,4347,0,6064,7611,4347],[3672,1551,1087,0,3672,1551,1087],[2160,5024,6090,0,2160,5024,6090],[6207,7014,3310,0,6207,7014,3310],[95,4678,6172,0,95,4678,6172],[2240,4235,1654,0,2240,4235,1654],[4897,3408,3407,0,4897,3408,3407],[901,1451,1450,0,901,1451,1450],[5392,2961,8096,0,5392,2961,8096],[5367,5946,6325,0,5367,5946,6325],[1379,7581,5637,0,1379,7581,5637],[1710,669,671,0,1710,669,671],[1640,5846,3135,0,1640,5846,3135],[7350,6439,7229,0,7350,6439,7229],[3780,7363,6595,0,3780,7363,6595],[4177,485,2552,0,4177,485,2552],[4186,4187,1137,0,4186,4187,1137],[171,6806,172,0,171,6806,172],[1577,4737,1578,0,1577,4737,1578],[7881,6272,6274,0,7881,6272,6274],[6453,5711,3127,0,6453,5711,3127],[1572,2779,7312,0,1572,2779,7312],[6986,5943,5942,0,6986,5943,5942],[6377,6655,4954,0,6377,6655,4954],[7888,7661,3403,0,7888,7661,3403],[1389,7575,1390,0,1389,7575,1390],[6585,3056,7382,0,6585,3056,7382],[2715,25,24,0,2715,25,24],[2585,7969,2586,0,2585,7969,2586],[6186,4735,2453,0,6186,4735,2453],[5166,7591,1039,0,5166,7591,1039],[4507,2696,2697,0,4507,2696,2697],[4354,4355,6607,0,4354,4355,6607],[304,5494,1770,0,304,5494,1770],[4000,7939,1083,0,4000,7939,1083],[5392,8096,2011,0,5392,8096,2011],[2973,2975,4086,0,2973,2975,4086],[1323,1890,3751,0,1323,1890,3751],[3224,3954,3225,0,3224,3954,3225],[4766,7241,3334,0,4766,7241,3334],[5133,7520,6636,0,5133,7520,6636],[610,7272,568,0,610,7272,568],[4628,666,4629,0,4628,666,4629],[5545,5915,4959,0,5545,5915,4959],[4600,5701,6463,0,4600,5701,6463],[6216,5424,2640,0,6216,5424,2640],[1469,1471,1665,0,1469,1471,1665],[80,3023,7308,0,80,3023,7308],[3187,7579,7810,0,3187,7579,7810],[6716,7292,6165,0,6716,7292,6165],[5284,6796,6797,0,5284,6796,6797],[131,130,3402,0,131,130,3402],[6788,7089,4880,0,6788,7089,4880],[2863,6999,1725,0,2863,6999,1725],[2240,2241,4677,0,2240,2241,4677],[1841,5525,1842,0,1841,5525,1842],[3596,3595,6082,0,3596,3595,6082],[1130,2399,1131,0,1130,2399,1131],[3869,3701,4786,0,3869,3701,4786],[1927,7078,1925,0,1927,7078,1925],[2620,4064,2621,0,2620,4064,2621],[150,1756,7296,0,150,1756,7296],[5538,3686,3709,0,5538,3686,3709],[2623,7430,1446,0,2623,7430,1446],[6819,413,2262,0,6819,413,2262],[189,781,190,0,189,781,190],[1859,2495,2496,0,1859,2495,2496],[7017,2796,5780,0,7017,2796,5780],[941,2132,2131,0,941,2132,2131],[7610,222,7854,0,7610,222,7854],[3651,3190,3189,0,3651,3190,3189],[2641,5904,1919,0,2641,5904,1919],[5228,4617,4616,0,5228,4617,4616],[4768,3607,3288,0,4768,3607,3288],[6116,4971,6095,0,6116,4971,6095],[623,4968,4537,0,623,4968,4537],[2139,452,451,0,2139,452,451],[2200,3238,2201,0,2200,3238,2201],[1715,206,2642,0,1715,206,2642],[5284,6797,3422,0,5284,6797,3422],[2735,2737,4978,0,2735,2737,4978],[3996,7777,6603,0,3996,7777,6603],[4933,7268,7634,0,4933,7268,7634],[1569,1795,1192,0,1569,1795,1192],[4276,4278,1857,0,4276,4278,1857],[764,6573,3983,0,764,6573,3983],[1278,1277,881,0,1278,1277,881],[1902,953,6126,0,1902,953,6126],[5416,5418,5744,0,5416,5418,5744],[2240,678,1797,0,2240,678,1797],[66,7368,1455,0,66,7368,1455],[7663,4761,5708,0,7663,4761,5708],[7848,2260,2210,0,7848,2260,2210],[7638,6532,6531,0,7638,6532,6531],[4703,3824,7282,0,4703,3824,7282],[7141,7142,4459,0,7141,7142,4459],[5373,3742,8095,0,5373,3742,8095],[2723,7452,7977,0,2723,7452,7977],[7056,3252,3251,0,7056,3252,3251],[5394,3257,5112,0,5394,3257,5112],[4452,6700,1059,0,4452,6700,1059],[3369,2020,2110,0,3369,2020,2110],[4608,5501,5899,0,4608,5501,5899],[7989,7468,2233,0,7989,7468,2233],[2015,2004,7547,0,2015,2004,7547],[4099,5365,5472,0,4099,5365,5472],[4559,1396,7971,0,4559,1396,7971],[6935,6718,6719,0,6935,6718,6719],[3201,721,3342,0,3201,721,3342],[903,902,2437,0,903,902,2437],[7015,8028,7939,0,7015,8028,7939],[520,2927,6139,0,520,2927,6139],[4003,3018,4998,0,4003,3018,4998],[3841,3843,6243,0,3841,3843,6243],[3307,5732,7860,0,3307,5732,7860],[5964,3144,7466,0,5964,3144,7466],[7970,290,289,0,7970,290,289],[1712,2166,1713,0,1712,2166,1713],[7960,1724,1723,0,7960,1724,1723],[6360,6362,5710,0,6360,6362,5710],[2166,7660,2883,0,2166,7660,2883],[5322,7290,2383,0,5322,7290,2383],[1101,7952,824,0,1101,7952,824],[1811,6268,6267,0,1811,6268,6267],[2249,4752,3436,0,2249,4752,3436],[3887,3889,2085,0,3887,3889,2085],[3395,2031,2033,0,3395,2031,2033],[5570,6496,5714,0,5570,6496,5714],[4946,3024,4947,0,4946,3024,4947],[3530,3529,4768,0,3530,3529,4768],[4724,5014,5433,0,4724,5014,5433],[6701,7888,2785,0,6701,7888,2785],[7651,616,2568,0,7651,616,2568],[2428,57,2429,0,2428,57,2429],[6737,2751,4918,0,6737,2751,4918],[5747,4800,7455,0,5747,4800,7455],[3388,2668,2667,0,3388,2668,2667],[3389,3225,3954,0,3389,3225,3954],[2860,5282,2861,0,2860,5282,2861],[4764,6548,4765,0,4764,6548,4765],[2419,7672,6746,0,2419,7672,6746],[3879,6863,1329,0,3879,6863,1329],[4628,6240,6414,0,4628,6240,6414],[1217,3702,3115,0,1217,3702,3115],[7585,7933,7947,0,7585,7933,7947],[159,161,4047,0,159,161,4047],[1011,920,6517,0,1011,920,6517],[6229,6685,5302,0,6229,6685,5302],[1771,1770,5494,0,1771,1770,5494],[1088,2852,2851,0,1088,2852,2851],[388,387,7616,0,388,387,7616],[2366,7882,6933,0,2366,7882,6933],[2067,7084,6673,0,2067,7084,6673],[2759,6292,2757,0,2759,6292,2757],[6492,4715,3881,0,6492,4715,3881],[5913,5112,3257,0,5913,5112,3257],[4041,3434,4828,0,4041,3434,4828],[300,302,6959,0,300,302,6959],[6243,6522,6892,0,6243,6522,6892],[2596,296,295,0,2596,296,295],[1884,1886,4779,0,1884,1886,4779],[432,1996,6512,0,432,1996,6512],[7244,4500,4502,0,7244,4500,4502],[2273,2217,5327,0,2273,2217,5327],[5054,7401,3810,0,5054,7401,3810],[1837,6114,4279,0,1837,6114,4279],[5142,6427,3364,0,5142,6427,3364],[939,1995,940,0,939,1995,940],[6,397,7,0,6,397,7],[5575,3827,6779,0,5575,3827,6779],[1111,7182,2835,0,1111,7182,2835],[7281,7188,4309,0,7281,7188,4309],[6665,150,152,0,6665,150,152],[1066,2855,7950,0,1066,2855,7950],[135,1019,136,0,135,1019,136],[3784,3733,5303,0,3784,3733,5303],[6971,1173,3783,0,6971,1173,3783],[7624,7271,7028,0,7624,7271,7028],[1387,6976,302,0,1387,6976,302],[1280,5420,1281,0,1280,5420,1281],[2016,4579,5898,0,2016,4579,5898],[5478,2962,4116,0,5478,2962,4116],[6843,3004,2382,0,6843,3004,2382],[5585,7650,3183,0,5585,7650,3183],[5639,3298,5371,0,5639,3298,5371],[1867,10,9,0,1867,10,9],[60,2597,61,0,60,2597,61],[151,4989,152,0,151,4989,152],[1799,1800,5099,0,1799,1800,5099],[7009,4115,7005,0,7009,4115,7005],[4573,4575,6037,0,4573,4575,6037],[956,5316,954,0,956,5316,954],[4765,3449,3448,0,4765,3449,3448],[143,5184,7859,0,143,5184,7859],[6951,6301,6682,0,6951,6301,6682],[7625,4143,1274,0,7625,4143,1274],[4288,1454,3496,0,4288,1454,3496],[8097,7829,7834,0,8097,7829,7834],[1802,1801,2733,0,1802,1801,2733],[2166,3408,7660,0,2166,3408,7660],[7831,7834,7829,0,7831,7834,7829],[8098,8099,8100,0,8098,8099,8100],[8098,8100,7834,0,8098,8100,7834],[2790,6116,4051,0,2790,6116,4051],[8101,8100,8099,0,8101,8100,8099],[5414,6133,5801,0,5414,6133,5801],[3905,3904,3532,0,3905,3904,3532],[3704,5477,3705,0,3704,5477,3705],[5157,6568,7105,0,5157,6568,7105],[7834,8100,8097,0,7834,8100,8097],[4268,112,111,0,4268,112,111],[2128,1106,1105,0,2128,1106,1105],[1103,7203,1104,0,1103,7203,1104],[3535,7545,5432,0,3535,7545,5432],[3026,225,5227,0,3026,225,5227],[2011,4348,2012,0,2011,4348,2012],[7218,7481,7937,0,7218,7481,7937],[5314,7086,6419,0,5314,7086,6419],[6339,7243,5818,0,6339,7243,5818],[226,6223,2054,0,226,6223,2054],[6415,6597,6416,0,6415,6597,6416],[5843,5842,1744,0,5843,5842,1744],[6148,1848,1349,0,6148,1848,1349],[2303,181,7713,0,2303,181,7713],[4144,7125,4145,0,4144,7125,4145],[8102,7826,8103,0,8102,7826,8103],[8102,8103,8104,0,8102,8103,8104],[6940,6437,8022,0,6940,6437,8022],[8097,8103,7826,0,8097,8103,7826],[8105,8106,8103,0,8105,8106,8103],[2057,3472,3286,0,2057,3472,3286],[8106,8104,8103,0,8106,8104,8103],[147,3287,148,0,147,3287,148],[3931,1225,5730,0,3931,1225,5730],[3832,4948,4454,0,3832,4948,4454],[6195,6785,5877,0,6195,6785,5877],[5850,99,4068,0,5850,99,4068],[7931,3943,7938,0,7931,3943,7938],[2931,727,3279,0,2931,727,3279],[8097,7826,7829,0,8097,7826,7829],[500,245,244,0,500,245,244],[4049,4048,7141,0,4049,4048,7141],[4193,2698,5203,0,4193,2698,5203],[6434,2768,4396,0,6434,2768,4396],[5274,5211,5275,0,5274,5211,5275],[4650,6081,2248,0,4650,6081,2248],[5943,6985,7616,0,5943,6985,7616],[8105,8103,8097,0,8105,8103,8097],[8105,8097,8100,0,8105,8097,8100],[7868,8107,8108,0,7868,8107,8108],[2590,3814,7112,0,2590,3814,7112],[8109,8106,8108,0,8109,8106,8108],[8109,8108,8107,0,8109,8108,8107],[8105,8101,8108,0,8105,8101,8108],[8105,8108,8106,0,8105,8108,8106],[6665,1755,150,0,6665,1755,150],[8110,8108,8101,0,8110,8108,8101],[1214,1366,1365,0,1214,1366,1365],[4694,746,4695,0,4694,746,4695],[3293,7550,6338,0,3293,7550,6338],[2135,2743,1094,0,2135,2743,1094],[865,4389,863,0,865,4389,863],[7585,6096,4690,0,7585,6096,4690],[7201,6255,6256,0,7201,6255,6256],[2747,2184,5906,0,2747,2184,5906],[5962,394,7524,0,5962,394,7524],[6957,6896,6758,0,6957,6896,6758],[5062,6965,5063,0,5062,6965,5063],[735,734,3555,0,735,734,3555],[3326,1003,1371,0,3326,1003,1371],[4992,6419,5682,0,4992,6419,5682],[3226,670,3033,0,3226,670,3033],[7451,7068,4084,0,7451,7068,4084],[6430,4794,7529,0,6430,4794,7529],[3326,1371,1826,0,3326,1371,1826],[355,7398,7101,0,355,7398,7101],[3239,4377,3240,0,3239,4377,3240],[3025,3024,5989,0,3025,3024,5989],[3088,700,1491,0,3088,700,1491],[8100,8101,8105,0,8100,8101,8105],[3005,4284,5407,0,3005,4284,5407],[332,4540,2487,0,332,4540,2487],[4103,6537,6392,0,4103,6537,6392],[6397,8111,7393,0,6397,8111,7393],[5250,2637,7334,0,5250,2637,7334],[1441,2852,1442,0,1441,2852,1442],[6430,7529,976,0,6430,7529,976],[7806,7392,7393,0,7806,7392,7393],[7633,451,7300,0,7633,451,7300],[7806,7393,8112,0,7806,7393,8112],[4583,664,4584,0,4583,664,4584],[8111,8098,8112,0,8111,8098,8112],[8111,8112,7393,0,8111,8112,7393],[5016,6088,2598,0,5016,6088,2598],[4635,2234,6068,0,4635,2234,6068],[6727,6915,5475,0,6727,6915,5475],[1731,4773,4774,0,1731,4773,4774],[7062,3707,1164,0,7062,3707,1164],[5967,5969,6502,0,5967,5969,6502],[6759,475,6928,0,6759,475,6928],[6695,4441,7253,0,6695,4441,7253],[173,172,7523,0,173,172,7523],[2602,2604,327,0,2602,2604,327],[5664,4342,5665,0,5664,4342,5665],[3530,4768,3288,0,3530,4768,3288],[8111,6397,8098,0,8111,6397,8098],[7204,597,7196,0,7204,597,7196],[1858,4342,5664,0,1858,4342,5664],[870,8098,6397,0,870,8098,6397],[218,791,6567,0,218,791,6567],[1390,8098,870,0,1390,8098,870],[3504,2685,3116,0,3504,2685,3116],[5555,805,804,0,5555,805,804],[6979,6911,6980,0,6979,6911,6980],[7800,7805,7834,0,7800,7805,7834],[5844,5005,4588,0,5844,5005,4588],[7948,2491,7418,0,7948,2491,7418],[356,5683,5682,0,356,5683,5682],[4761,3381,5910,0,4761,3381,5910],[8098,7834,7805,0,8098,7834,7805],[7732,7734,5474,0,7732,7734,5474],[3873,3874,7343,0,3873,3874,7343],[3969,171,407,0,3969,171,407],[5446,5445,3742,0,5446,5445,3742],[2786,4660,6678,0,2786,4660,6678],[5082,1948,6681,0,5082,1948,6681],[7517,1528,6723,0,7517,1528,6723],[4267,1433,846,0,4267,1433,846],[6945,5875,6946,0,6945,5875,6946],[4257,813,2864,0,4257,813,2864],[702,7092,624,0,702,7092,624],[7516,4395,4394,0,7516,4395,4394],[7806,8112,7805,0,7806,8112,7805],[7228,8031,6097,0,7228,8031,6097],[1009,2821,5541,0,1009,2821,5541],[8098,7805,8112,0,8098,7805,8112],[4998,3566,3565,0,4998,3566,3565],[5374,3555,6874,0,5374,3555,6874],[5570,4914,6496,0,5570,4914,6496],[4706,6444,3937,0,4706,6444,3937],[3567,2878,2498,0,3567,2878,2498],[3872,751,4269,0,3872,751,4269],[1390,8099,8098,0,1390,8099,8098],[5737,3523,6862,0,5737,3523,6862],[6782,861,5289,0,6782,861,5289],[6795,1335,1334,0,6795,1335,1334],[7868,8108,7869,0,7868,8108,7869],[2605,3454,5884,0,2605,3454,5884],[1015,4097,5735,0,1015,4097,5735],[7595,3874,4770,0,7595,3874,4770],[2994,2996,6247,0,2994,2996,6247],[6768,3085,7558,0,6768,3085,7558],[7869,8108,8110,0,7869,8108,8110],[3717,3718,7586,0,3717,3718,7586],[4995,3614,5309,0,4995,3614,5309],[7063,6121,3900,0,7063,6121,3900],[2054,6223,1787,0,2054,6223,1787],[8110,8113,7869,0,8110,8113,7869],[7897,7857,1374,0,7897,7857,1374],[1333,1335,6235,0,1333,1335,6235],[7865,7869,8113,0,7865,7869,8113],[4906,611,5944,0,4906,611,5944],[291,7649,1320,0,291,7649,1320],[2735,4978,4286,0,2735,4978,4286],[6740,5679,7011,0,6740,5679,7011],[7069,6990,6380,0,7069,6990,6380],[5736,5674,7308,0,5736,5674,7308],[4497,1191,7950,0,4497,1191,7950],[5861,3810,540,0,5861,3810,540],[8110,8101,1390,0,8110,8101,1390],[1275,6762,7415,0,1275,6762,7415],[6734,7493,978,0,6734,7493,978],[8099,1390,8101,0,8099,1390,8101],[7668,3763,6064,0,7668,3763,6064],[328,7676,6689,0,328,7676,6689],[2282,5637,7581,0,2282,5637,7581],[7970,5282,290,0,7970,5282,290],[80,7308,5674,0,80,7308,5674],[3441,1834,6714,0,3441,1834,6714],[4411,7437,1407,0,4411,7437,1407],[7862,8113,7575,0,7862,8113,7575],[1203,7327,1204,0,1203,7327,1204],[2483,4892,4891,0,2483,4892,4891],[1390,7575,8113,0,1390,7575,8113],[4167,6985,4168,0,4167,6985,4168],[6985,661,663,0,6985,661,663],[342,3316,6904,0,342,3316,6904],[1034,3594,1035,0,1034,3594,1035],[1269,2433,1270,0,1269,2433,1270],[1501,1503,159,0,1501,1503,159],[5036,3324,7093,0,5036,3324,7093],[4085,1807,3829,0,4085,1807,3829],[4923,1331,7260,0,4923,1331,7260],[615,957,7992,0,615,957,7992],[2413,6201,1208,0,2413,6201,1208],[5425,1026,1760,0,5425,1026,1760],[7865,8113,7862,0,7865,8113,7862],[6567,793,7024,0,6567,793,7024],[7835,3321,6629,0,7835,3321,6629],[6271,5721,4138,0,6271,5721,4138],[1390,8113,8110,0,1390,8113,8110],[3421,5284,3422,0,3421,5284,3422],[705,4755,3646,0,705,4755,3646],[5193,985,984,0,5193,985,984],[5318,3036,5319,0,5318,3036,5319],[6745,6805,778,0,6745,6805,778],[2763,1086,1085,0,2763,1086,1085],[6548,2729,4765,0,6548,2729,4765],[3495,5059,4538,0,3495,5059,4538],[4204,2624,8114,0,4204,2624,8114],[4204,8114,7788,0,4204,8114,7788],[2624,8115,8114,0,2624,8115,8114],[3489,5632,3490,0,3489,5632,3490],[4563,4803,3975,0,4563,4803,3975],[1178,4821,1179,0,1178,4821,1179],[5540,6741,5541,0,5540,6741,5541],[3671,1303,4430,0,3671,1303,4430],[7788,8114,8116,0,7788,8114,8116],[7788,8116,7781,0,7788,8116,7781],[8115,8117,8116,0,8115,8117,8116],[8115,8116,8114,0,8115,8116,8114],[8117,8118,8116,0,8117,8118,8116],[1136,595,1182,0,1136,595,1182],[3138,3650,3189,0,3138,3650,3189],[7781,8116,8118,0,7781,8116,8118],[407,1513,408,0,407,1513,408],[2624,8119,8115,0,2624,8119,8115],[2623,3265,8119,0,2623,3265,8119],[2623,8119,2624,0,2623,8119,2624],[286,7882,5144,0,286,7882,5144],[6430,5819,5410,0,6430,5819,5410],[6421,7928,2977,0,6421,7928,2977],[5460,4625,5911,0,5460,4625,5911],[8115,8119,8120,0,8115,8119,8120],[8115,8120,8117,0,8115,8120,8117],[3265,8121,8120,0,3265,8121,8120],[3265,8120,8119,0,3265,8120,8119],[747,6868,7340,0,747,6868,7340],[3002,5848,5031,0,3002,5848,5031],[656,6328,7355,0,656,6328,7355],[1415,3528,2831,0,1415,3528,2831],[794,4739,5450,0,794,4739,5450],[5879,7779,871,0,5879,7779,871],[1957,3881,5252,0,1957,3881,5252],[3932,3934,579,0,3932,3934,579],[8122,6297,7779,0,8122,6297,7779],[842,844,912,0,842,844,912],[6297,871,7779,0,6297,871,7779],[1286,3989,3988,0,1286,3989,3988],[597,599,7194,0,597,599,7194],[371,1964,6728,0,371,1964,6728],[666,6207,5503,0,666,6207,5503],[8122,7030,6297,0,8122,7030,6297],[8120,3542,7030,0,8120,3542,7030],[6616,193,192,0,6616,193,192],[1300,928,7825,0,1300,928,7825],[6451,1683,1809,0,6451,1683,1809],[7779,7781,8118,0,7779,7781,8118],[7779,8118,8122,0,7779,8118,8122],[2171,5928,1319,0,2171,5928,1319],[1311,1310,7990,0,1311,1310,7990],[8117,8122,8118,0,8117,8122,8118],[7131,2031,7132,0,7131,2031,7132],[4185,5419,3666,0,4185,5419,3666],[5661,7462,5264,0,5661,7462,5264],[2148,3856,4555,0,2148,3856,4555],[1241,4981,2142,0,1241,4981,2142],[2554,2553,1208,0,2554,2553,1208],[8117,7030,8122,0,8117,7030,8122],[3628,2316,1653,0,3628,2316,1653],[8120,7030,8117,0,8120,7030,8117],[3221,3765,392,0,3221,3765,392],[1164,1163,7062,0,1164,1163,7062],[3740,3742,7875,0,3740,3742,7875],[1554,1553,7311,0,1554,1553,7311],[1502,295,5517,0,1502,295,5517],[4303,6410,4542,0,4303,6410,4542],[3542,7840,1389,0,3542,7840,1389],[2334,694,696,0,2334,694,696],[7856,2952,6855,0,7856,2952,6855],[3977,5264,7462,0,3977,5264,7462],[6160,4660,2786,0,6160,4660,2786],[1516,1314,1313,0,1516,1314,1313],[6677,2492,7150,0,6677,2492,7150],[5509,7185,5350,0,5509,7185,5350],[1128,6203,650,0,1128,6203,650],[8121,7840,3542,0,8121,7840,3542],[7094,7096,2244,0,7094,7096,2244],[6245,1073,5953,0,6245,1073,5953],[6774,1560,6775,0,6774,1560,6775],[2609,7507,3318,0,2609,7507,3318],[421,1835,5725,0,421,1835,5725],[7111,3677,7211,0,7111,3677,7211],[5004,3653,4588,0,5004,3653,4588],[44,43,462,0,44,43,462],[3786,3540,4291,0,3786,3540,4291],[6251,1447,7037,0,6251,1447,7037],[5959,336,338,0,5959,336,338],[2542,2541,6029,0,2542,2541,6029],[7276,7087,5535,0,7276,7087,5535],[7706,3922,5245,0,7706,3922,5245],[8120,8121,3542,0,8120,8121,3542],[968,967,7123,0,968,967,7123],[3153,5303,3733,0,3153,5303,3733],[6408,1522,2869,0,6408,1522,2869],[6278,7289,7288,0,6278,7289,7288],[5087,4891,5061,0,5087,4891,5061],[5462,7046,6903,0,5462,7046,6903],[2186,474,4722,0,2186,474,4722],[2325,3753,6252,0,2325,3753,6252],[434,2246,2247,0,434,2246,2247],[1882,3888,5233,0,1882,3888,5233],[3947,1993,1992,0,3947,1993,1992],[2616,4243,4242,0,2616,4243,4242],[195,197,6689,0,195,197,6689],[970,5102,971,0,970,5102,971],[3039,7647,702,0,3039,7647,702],[6764,3254,2482,0,6764,3254,2482],[1163,7472,3602,0,1163,7472,3602],[1683,2350,2349,0,1683,2350,2349],[1676,656,6676,0,1676,656,6676],[4643,7858,5604,0,4643,7858,5604],[6334,7840,1447,0,6334,7840,1447],[5457,2032,2051,0,5457,2032,2051],[2362,5321,6851,0,2362,5321,6851],[8121,1448,7840,0,8121,1448,7840],[7573,6042,3491,0,7573,6042,3491],[1448,1447,7840,0,1448,1447,7840],[4521,4523,1353,0,4521,4523,1353],[4894,45,1514,0,4894,45,1514],[1448,8121,3265,0,1448,8121,3265],[7269,832,7099,0,7269,832,7099],[7175,7843,7050,0,7175,7843,7050],[7427,1668,6694,0,7427,1668,6694],[7945,2927,2929,0,7945,2927,2929],[2731,5584,3184,0,2731,5584,3184],[2258,659,309,0,2258,659,309],[8031,6098,6097,0,8031,6098,6097],[553,5051,554,0,553,5051,554],[1520,7665,1955,0,1520,7665,1955],[3842,7105,5051,0,3842,7105,5051],[3549,6233,2651,0,3549,6233,2651],[5298,6162,6031,0,5298,6162,6031],[6590,1267,820,0,6590,1267,820],[2453,4735,4734,0,2453,4735,4734],[5247,7095,7094,0,5247,7095,7094],[5313,7980,1092,0,5313,7980,1092],[489,6766,465,0,489,6766,465],[6847,1789,1876,0,6847,1789,1876],[3488,7640,7099,0,3488,7640,7099],[1365,1215,1214,0,1365,1215,1214],[565,567,6594,0,565,567,6594],[6008,2267,2269,0,6008,2267,2269],[6199,6330,5202,0,6199,6330,5202],[6484,5243,3455,0,6484,5243,3455],[599,4252,2900,0,599,4252,2900],[981,6019,4742,0,981,6019,4742],[4487,7202,4488,0,4487,7202,4488],[4358,309,6507,0,4358,309,6507],[7489,6949,3194,0,7489,6949,3194],[5313,7527,7980,0,5313,7527,7980],[7472,4032,3602,0,7472,4032,3602],[5709,7235,5602,0,5709,7235,5602],[562,2290,6840,0,562,2290,6840],[4983,564,4984,0,4983,564,4984],[6009,2269,1642,0,6009,2269,1642],[10,1869,1197,0,10,1869,1197],[433,2131,7786,0,433,2131,7786],[2293,7338,6515,0,2293,7338,6515],[8032,6,7980,0,8032,6,7980],[4235,4677,4236,0,4235,4677,4236],[4054,6623,3680,0,4054,6623,3680],[6918,2070,3562,0,6918,2070,3562],[5922,4461,5923,0,5922,4461,5923],[4391,4717,5386,0,4391,4717,5386],[3511,3856,2148,0,3511,3856,2148],[5028,5027,1913,0,5028,5027,1913],[818,820,1266,0,818,820,1266],[5314,5908,7086,0,5314,5908,7086],[2141,2176,3152,0,2141,2176,3152],[4214,5400,5399,0,4214,5400,5399],[334,424,335,0,334,424,335],[1581,6966,6283,0,1581,6966,6283],[2143,7986,2144,0,2143,7986,2144],[8032,7980,7953,0,8032,7980,7953],[1661,512,2932,0,1661,512,2932],[6775,3330,7658,0,6775,3330,7658],[1520,5707,7665,0,1520,5707,7665],[2744,3414,6880,0,2744,3414,6880],[5473,5475,6915,0,5473,5475,6915],[5316,7544,954,0,5316,7544,954],[3932,4000,3933,0,3932,4000,3933],[6610,1877,7176,0,6610,1877,7176],[895,897,2088,0,895,897,2088],[1673,2119,1853,0,1673,2119,1853],[327,238,328,0,327,238,328],[3749,5638,1670,0,3749,5638,1670],[2613,5937,2561,0,2613,5937,2561],[2268,2267,2906,0,2268,2267,2906],[386,4734,7955,0,386,4734,7955],[3116,3502,3504,0,3116,3502,3504],[1659,3015,1652,0,1659,3015,1652],[2918,470,469,0,2918,470,469],[1237,5513,1238,0,1237,5513,1238],[1629,8033,1630,0,1629,8033,1630],[4222,1403,1402,0,4222,1403,1402],[6315,6862,6372,0,6315,6862,6372],[5195,2822,3992,0,5195,2822,3992],[7851,5289,861,0,7851,5289,861],[6272,6933,7588,0,6272,6933,7588],[5378,6794,5476,0,5378,6794,5476],[2503,5903,2546,0,2503,5903,2546],[4910,5802,3585,0,4910,5802,3585],[7463,2177,1727,0,7463,2177,1727],[2184,6668,3949,0,2184,6668,3949],[5335,950,311,0,5335,950,311],[3380,277,236,0,3380,277,236],[3973,3972,7855,0,3973,3972,7855],[4443,4444,2705,0,4443,4444,2705],[5627,5629,5091,0,5627,5629,5091],[8032,7953,8123,0,8032,7953,8123],[7442,3700,7156,0,7442,3700,7156],[1544,7478,7925,0,1544,7478,7925],[4666,7514,3727,0,4666,7514,3727],[6963,2052,2032,0,6963,2052,2032],[3704,3706,6100,0,3704,3706,6100],[4700,7127,5823,0,4700,7127,5823],[7068,7069,6380,0,7068,7069,6380],[770,2212,2211,0,770,2212,2211],[5272,4374,4973,0,5272,4374,4973],[3496,1726,4288,0,3496,1726,4288],[5527,7329,2279,0,5527,7329,2279],[510,5225,2402,0,510,5225,2402],[1834,4818,1835,0,1834,4818,1835],[3778,640,3779,0,3778,640,3779],[4850,2089,6551,0,4850,2089,6551],[7882,7588,6933,0,7882,7588,6933],[5225,509,4643,0,5225,509,4643],[4385,3574,4627,0,4385,3574,4627],[3044,3313,3045,0,3044,3313,3045],[7102,3474,4853,0,7102,3474,4853],[2522,5331,3301,0,2522,5331,3301],[78,3437,79,0,78,3437,79],[5346,5475,5839,0,5346,5475,5839],[3638,4720,3060,0,3638,4720,3060],[2066,2067,4452,0,2066,2067,4452],[1438,5189,1342,0,1438,5189,1342],[4633,4493,4495,0,4633,4493,4495],[3360,738,6871,0,3360,738,6871],[3567,2879,2878,0,3567,2879,2878],[7951,7953,7527,0,7951,7953,7527],[2821,2823,5540,0,2821,2823,5540],[5596,5746,1833,0,5596,5746,1833],[6539,7789,6392,0,6539,7789,6392],[7500,574,1351,0,7500,574,1351],[5678,3593,7001,0,5678,3593,7001],[1529,7517,1592,0,1529,7517,1592],[3725,3087,3086,0,3725,3087,3086],[582,1813,3662,0,582,1813,3662],[3079,6396,3080,0,3079,6396,3080],[4455,4454,942,0,4455,4454,942],[2957,2734,2895,0,2957,2734,2895],[4848,7266,7535,0,4848,7266,7535],[7980,7527,7953,0,7980,7527,7953],[760,891,761,0,760,891,761],[1769,515,4962,0,1769,515,4962],[1987,687,686,0,1987,687,686],[699,1922,1924,0,699,1922,1924],[6314,6313,2337,0,6314,6313,2337],[7447,6548,6309,0,7447,6548,6309],[4796,6477,7067,0,4796,6477,7067],[6503,6083,3595,0,6503,6083,3595],[4607,4609,783,0,4607,4609,783],[2897,5328,5670,0,2897,5328,5670],[4166,1757,7376,0,4166,1757,7376],[5694,7246,3046,0,5694,7246,3046],[7041,1757,2343,0,7041,1757,2343],[5561,5566,7601,0,5561,5566,7601],[3399,2373,2372,0,3399,2373,2372],[491,2195,6887,0,491,2195,6887],[2458,2457,4662,0,2458,2457,4662],[7479,1936,4590,0,7479,1936,4590],[680,5826,1678,0,680,5826,1678],[4508,7289,4102,0,4508,7289,4102],[868,4602,330,0,868,4602,330],[7187,5743,7280,0,7187,5743,7280],[6885,7467,1746,0,6885,7467,1746],[2267,2784,2906,0,2267,2784,2906],[7187,7280,7563,0,7187,7280,7563],[2516,2515,7263,0,2516,2515,7263],[6761,7415,6762,0,6761,7415,6762],[1113,7182,1111,0,1113,7182,1111],[7421,1854,5308,0,7421,1854,5308],[1915,6989,5028,0,1915,6989,5028],[1498,1500,4383,0,1498,1500,4383],[397,8032,8123,0,397,8032,8123],[339,5898,340,0,339,5898,340],[6938,2529,8028,0,6938,2529,8028],[3063,1925,7607,0,3063,1925,7607],[966,968,4209,0,966,968,4209],[6938,8028,7015,0,6938,8028,7015],[3548,2651,3214,0,3548,2651,3214],[3805,402,2077,0,3805,402,2077],[7272,569,568,0,7272,569,568],[3576,6293,5137,0,3576,6293,5137],[1926,7242,6565,0,1926,7242,6565],[6804,3648,3051,0,6804,3648,3051],[5388,1202,7437,0,5388,1202,7437],[1577,4973,4737,0,1577,4973,4737],[6425,3121,5936,0,6425,3121,5936],[5824,7025,3455,0,5824,7025,3455],[1975,4847,3729,0,1975,4847,3729],[1996,1995,6512,0,1996,1995,6512],[3805,2077,3806,0,3805,2077,3806],[1364,2071,1362,0,1364,2071,1362],[7214,4832,7197,0,7214,4832,7197],[2569,618,3510,0,2569,618,3510],[568,2068,5944,0,568,2068,5944],[3598,7294,5445,0,3598,7294,5445],[5170,5172,4657,0,5170,5172,4657],[1115,4814,1116,0,1115,4814,1116],[4871,4165,3107,0,4871,4165,3107],[4270,3854,6224,0,4270,3854,6224],[2874,715,4965,0,2874,715,4965],[1458,7970,289,0,1458,7970,289],[8123,7959,397,0,8123,7959,397],[5689,6671,6107,0,5689,6671,6107],[2506,3959,2783,0,2506,3959,2783],[395,397,7959,0,395,397,7959],[6283,38,1581,0,6283,38,1581],[1855,4278,7841,0,1855,4278,7841],[1398,7650,2126,0,1398,7650,2126],[608,1436,7036,0,608,1436,7036],[6623,3948,6079,0,6623,3948,6079],[7959,6383,395,0,7959,6383,395],[6268,633,632,0,6268,633,632],[3452,2605,2607,0,3452,2605,2607],[2579,6474,7331,0,2579,6474,7331],[3924,7128,3925,0,3924,7128,3925],[3452,2607,7648,0,3452,2607,7648],[5245,1777,4678,0,5245,1777,4678],[6289,7283,3794,0,6289,7283,3794],[7574,7884,795,0,7574,7884,795],[7053,7863,2371,0,7053,7863,2371],[3524,6730,4055,0,3524,6730,4055],[4122,7303,4121,0,4122,7303,4121],[6481,5987,5002,0,6481,5987,5002],[6170,1779,7487,0,6170,1779,7487],[6448,2227,1539,0,6448,2227,1539],[6758,4432,6957,0,6758,4432,6957],[5768,735,3556,0,5768,735,3556],[3292,4843,5246,0,3292,4843,5246],[5734,2242,6186,0,5734,2242,6186],[6837,2943,6686,0,6837,2943,6686],[7117,7194,599,0,7117,7194,599],[6094,6093,348,0,6094,6093,348],[7345,318,7532,0,7345,318,7532],[1847,3538,6743,0,1847,3538,6743],[2235,3311,1428,0,2235,3311,1428],[7155,3629,5796,0,7155,3629,5796],[7149,7183,455,0,7149,7183,455],[7172,7593,7173,0,7172,7593,7173],[90,7191,91,0,90,7191,91],[7578,7577,7682,0,7578,7577,7682],[5004,3654,3653,0,5004,3654,3653],[1379,3903,7581,0,1379,3903,7581],[797,2501,6346,0,797,2501,6346],[5952,2397,4259,0,5952,2397,4259],[7953,7954,8123,0,7953,7954,8123],[7858,7810,7579,0,7858,7810,7579],[5845,2850,2849,0,5845,2850,2849],[472,1213,473,0,472,1213,473],[5459,2617,2616,0,5459,2617,2616],[2633,3729,2634,0,2633,3729,2634],[3799,6608,3800,0,3799,6608,3800],[3443,3793,3792,0,3443,3793,3792],[3756,4273,6925,0,3756,4273,6925],[4887,634,7401,0,4887,634,7401],[7114,7073,6975,0,7114,7073,6975],[968,303,4209,0,968,303,4209],[3079,1374,1376,0,3079,1374,1376],[5465,7245,5831,0,5465,7245,5831],[6234,1335,108,0,6234,1335,108],[4799,6643,2277,0,4799,6643,2277],[3261,3435,6973,0,3261,3435,6973],[7620,4058,4060,0,7620,4058,4060],[1885,3332,1729,0,1885,3332,1729],[6109,6968,7104,0,6109,6968,7104],[7959,8123,7954,0,7959,8123,7954],[2578,7047,874,0,2578,7047,874],[851,853,5237,0,851,853,5237],[1439,1343,7188,0,1439,1343,7188],[7549,5582,7602,0,7549,5582,7602],[1707,6785,2440,0,1707,6785,2440],[7318,1174,6564,0,7318,1174,6564],[2494,2493,3196,0,2494,2493,3196],[2848,2850,4935,0,2848,2850,4935],[6545,3160,6312,0,6545,3160,6312],[5411,7023,5687,0,5411,7023,5687],[7944,7964,4861,0,7944,7964,4861],[7161,7112,7670,0,7161,7112,7670],[4590,1936,1935,0,4590,1936,1935],[6473,7331,6474,0,6473,7331,6474],[2205,1101,826,0,2205,1101,826],[2430,6720,4227,0,2430,6720,4227],[129,6013,130,0,129,6013,130],[4753,7282,3824,0,4753,7282,3824],[6415,6417,7154,0,6415,6417,7154],[4100,5154,4456,0,4100,5154,4456],[6048,293,4393,0,6048,293,4393],[1530,1529,1380,0,1530,1529,1380],[2457,4930,3907,0,2457,4930,3907],[6350,7050,6497,0,6350,7050,6497],[6677,6761,5601,0,6677,6761,5601],[7381,194,193,0,7381,194,193],[2390,5742,4593,0,2390,5742,4593],[5285,2490,7071,0,5285,2490,7071],[4938,4939,4125,0,4938,4939,4125],[4724,5433,5432,0,4724,5433,5432],[4863,2712,6528,0,4863,2712,6528],[1790,92,6922,0,1790,92,6922],[2505,5573,7395,0,2505,5573,7395],[6521,3843,3842,0,6521,3843,3842],[4306,7514,4666,0,4306,7514,4666],[6475,6477,6831,0,6475,6477,6831],[2570,2569,4606,0,2570,2569,4606],[6994,6154,3883,0,6994,6154,3883],[2879,3365,6871,0,2879,3365,6871],[1192,1779,848,0,1192,1779,848],[2758,6279,6632,0,2758,6279,6632],[5041,6686,2943,0,5041,6686,2943],[5473,6915,2941,0,5473,6915,2941],[2442,6246,7263,0,2442,6246,7263],[5833,5396,5852,0,5833,5396,5852],[3246,2446,6816,0,3246,2446,6816],[3226,4271,671,0,3226,4271,671],[3187,3186,4671,0,3187,3186,4671],[253,3247,3970,0,253,3247,3970],[935,934,5882,0,935,934,5882],[7621,7326,4004,0,7621,7326,4004],[387,5943,7616,0,387,5943,7616],[1992,76,1632,0,1992,76,1632],[183,185,6724,0,183,185,6724],[7492,1238,994,0,7492,1238,994],[681,5078,2387,0,681,5078,2387],[7884,3701,3869,0,7884,3701,3869],[2848,4935,6759,0,2848,4935,6759],[3107,807,806,0,3107,807,806],[6652,6651,455,0,6652,6651,455],[3721,5097,2926,0,3721,5097,2926],[5033,2801,7171,0,5033,2801,7171],[5616,229,1931,0,5616,229,1931],[2216,5283,2217,0,2216,5283,2217],[571,3199,572,0,571,3199,572],[1928,7492,7491,0,1928,7492,7491],[588,6399,7353,0,588,6399,7353],[6764,3481,3254,0,6764,3481,3254],[5322,5003,3774,0,5322,5003,3774],[2391,6492,3881,0,2391,6492,3881],[4875,1920,651,0,4875,1920,651],[7241,7240,3334,0,7241,7240,3334],[3016,6572,3017,0,3016,6572,3017],[425,5216,3570,0,425,5216,3570],[815,6534,816,0,815,6534,816],[731,7067,6476,0,731,7067,6476],[809,6460,810,0,809,6460,810],[2356,5408,4422,0,2356,5408,4422],[6556,2593,2594,0,6556,2593,2594],[4122,5092,7303,0,4122,5092,7303],[2933,5292,1661,0,2933,5292,1661],[61,5280,6958,0,61,5280,6958],[1207,7603,1593,0,1207,7603,1593],[3371,2653,337,0,3371,2653,337],[4161,547,7591,0,4161,547,7591],[5465,5831,5830,0,5465,5831,5830],[1869,2671,1195,0,1869,2671,1195],[6202,7257,650,0,6202,7257,650],[3300,4926,4925,0,3300,4926,4925],[1369,605,604,0,1369,605,604],[722,7259,5165,0,722,7259,5165],[3292,5246,3293,0,3292,5246,3293],[3183,7650,2330,0,3183,7650,2330],[7014,7013,7542,0,7014,7013,7542],[120,3273,2120,0,120,3273,2120],[3768,6012,7420,0,3768,6012,7420],[4280,4279,7365,0,4280,4279,7365],[3801,5272,4515,0,3801,5272,4515],[2528,7939,8028,0,2528,7939,8028],[629,631,7259,0,629,631,7259],[2102,5651,4591,0,2102,5651,4591],[7149,455,6651,0,7149,455,6651],[6119,872,7047,0,6119,872,7047],[7275,5621,5623,0,7275,5621,5623],[3059,4836,3060,0,3059,4836,3060],[7287,7923,7648,0,7287,7923,7648],[4194,7659,6741,0,4194,7659,6741],[7307,7638,6531,0,7307,7638,6531],[2521,4682,6435,0,2521,4682,6435],[5354,7089,6790,0,5354,7089,6790],[6615,215,214,0,6615,215,214],[6459,2997,2998,0,6459,2997,2998],[1502,5517,7985,0,1502,5517,7985],[5340,3059,3061,0,5340,3059,3061],[7117,7118,7194,0,7117,7118,7194],[3335,3334,7240,0,3335,3334,7240],[6796,1599,2284,0,6796,1599,2284],[1150,3540,7170,0,1150,3540,7170],[3743,4525,4572,0,3743,4525,4572],[55,85,4783,0,55,85,4783],[4480,4457,406,0,4480,4457,406],[6952,6951,7472,0,6952,6951,7472],[47,7494,2261,0,47,7494,2261],[2890,6376,2725,0,2890,6376,2725],[3794,7328,6289,0,3794,7328,6289],[3894,7463,5617,0,3894,7463,5617],[4752,6853,358,0,4752,6853,358],[910,6861,6865,0,910,6861,6865],[4427,6673,712,0,4427,6673,712],[7219,7158,7157,0,7219,7158,7157],[5290,640,7555,0,5290,640,7555],[456,7002,6663,0,456,7002,6663],[1802,2732,6730,0,1802,2732,6730],[3216,4852,6100,0,3216,4852,6100],[6819,5450,413,0,6819,5450,413],[6701,2785,2784,0,6701,2785,2784],[1502,2596,295,0,1502,2596,295],[1936,1603,208,0,1936,1603,208],[3796,3795,3732,0,3796,3795,3732],[2345,3031,5173,0,2345,3031,5173],[7044,6425,6638,0,7044,6425,6638],[1794,5875,8033,0,1794,5875,8033],[5402,4883,4884,0,5402,4883,4884],[6737,596,2751,0,6737,596,2751],[6869,2837,7022,0,6869,2837,7022],[682,4843,3292,0,682,4843,3292],[3095,949,5040,0,3095,949,5040],[1695,6798,1696,0,1695,6798,1696],[7345,4337,6361,0,7345,4337,6361],[6128,3698,297,0,6128,3698,297],[5392,2962,2961,0,5392,2962,2961],[8053,7432,643,0,8053,7432,643],[4706,816,6444,0,4706,816,6444],[4381,95,6172,0,4381,95,6172],[2334,4148,694,0,2334,4148,694],[7317,7169,7168,0,7317,7169,7168],[5717,5944,3562,0,5717,5944,3562],[6052,3803,5564,0,6052,3803,5564],[6071,44,5082,0,6071,44,5082],[283,382,381,0,283,382,381],[1674,3587,3988,0,1674,3587,3988],[3890,3516,2009,0,3890,3516,2009],[2524,2523,2943,0,2524,2523,2943],[4861,7964,1499,0,4861,7964,1499],[1006,6506,996,0,1006,6506,996],[5198,1046,4535,0,5198,1046,4535],[7941,1882,7189,0,7941,1882,7189],[3148,530,3149,0,3148,530,3149],[4323,6147,6352,0,4323,6147,6352],[4264,3332,1884,0,4264,3332,1884],[5908,6216,7106,0,5908,6216,7106],[2091,4372,2092,0,2091,4372,2092],[7371,1311,7990,0,7371,1311,7990],[1744,6397,7392,0,1744,6397,7392],[3152,1798,680,0,3152,1798,680],[382,7411,2812,0,382,7411,2812],[7683,4106,6338,0,7683,4106,6338],[4313,4314,2296,0,4313,4314,2296],[114,116,6369,0,114,116,6369],[658,6070,7509,0,658,6070,7509],[1662,2994,1663,0,1662,2994,1663],[6485,7055,7077,0,6485,7055,7077],[1299,7065,1300,0,1299,7065,1300],[1100,1822,1821,0,1100,1822,1821],[6310,4745,3506,0,6310,4745,3506],[2013,4225,4224,0,2013,4225,4224],[1488,1487,7928,0,1488,1487,7928],[3624,6757,1704,0,3624,6757,1704],[2572,3947,2086,0,2572,3947,2086],[6520,5326,5325,0,6520,5326,5325],[6769,7267,6770,0,6769,7267,6770],[1201,4894,4895,0,1201,4894,4895],[5761,5632,3489,0,5761,5632,3489],[2128,2130,4767,0,2128,2130,4767],[3946,3945,4362,0,3946,3945,4362],[3652,3654,566,0,3652,3654,566],[5895,881,883,0,5895,881,883],[2091,2888,4372,0,2091,2888,4372],[4781,5369,2936,0,4781,5369,2936],[5706,1956,1955,0,5706,1956,1955],[6957,7175,5230,0,6957,7175,5230],[1909,5398,1941,0,1909,5398,1941],[7200,4422,5408,0,7200,4422,5408],[5692,4463,2675,0,5692,4463,2675],[6316,7339,5810,0,6316,7339,5810],[4167,828,388,0,4167,828,388],[6029,2541,7484,0,6029,2541,7484],[890,5575,761,0,890,5575,761],[4809,2907,1385,0,4809,2907,1385],[1282,2682,6568,0,1282,2682,6568],[3938,4949,6636,0,3938,4949,6636],[2298,4290,724,0,2298,4290,724],[3823,7171,7144,0,3823,7171,7144],[6804,1933,5892,0,6804,1933,5892],[7824,1099,1790,0,7824,1099,1790],[6506,4146,3274,0,6506,4146,3274],[2221,2223,7076,0,2221,2223,7076],[6672,6658,6657,0,6672,6658,6657],[1311,4366,1405,0,1311,4366,1405],[573,6043,7529,0,573,6043,7529],[4546,4366,4365,0,4546,4366,4365],[1799,5100,1713,0,1799,5100,1713],[6109,173,7523,0,6109,173,7523],[2890,2892,6376,0,2890,2892,6376],[6487,6489,2069,0,6487,6489,2069],[658,7509,5012,0,658,7509,5012],[1099,7824,1604,0,1099,7824,1604],[1129,7398,4370,0,1129,7398,4370],[7793,7222,6438,0,7793,7222,6438],[7364,3396,2033,0,7364,3396,2033],[282,7411,283,0,282,7411,283],[3850,3609,3610,0,3850,3609,3610],[710,4524,1587,0,710,4524,1587],[6865,6861,4425,0,6865,6861,4425],[710,1587,5089,0,710,1587,5089],[3958,5329,4641,0,3958,5329,4641],[3907,6050,1305,0,3907,6050,1305],[511,3345,3849,0,511,3345,3849],[1164,1232,1162,0,1164,1232,1162],[7011,287,3648,0,7011,287,3648],[1623,7048,1624,0,1623,7048,1624],[6721,7642,7643,0,6721,7642,7643],[3282,2958,6017,0,3282,2958,6017],[2004,2006,5644,0,2004,2006,5644],[7023,6684,1187,0,7023,6684,1187],[6956,1763,1762,0,6956,1763,1762],[2147,460,3512,0,2147,460,3512],[5139,6742,5909,0,5139,6742,5909],[613,7256,5059,0,613,7256,5059],[2417,2419,6767,0,2417,2419,6767],[4589,7441,3454,0,4589,7441,3454],[3849,3609,3850,0,3849,3609,3850],[2417,6649,3462,0,2417,6649,3462],[7411,382,283,0,7411,382,283],[1449,1416,2614,0,1449,1416,2614],[5085,4865,4864,0,5085,4865,4864],[7624,7028,3472,0,7624,7028,3472],[3105,548,6704,0,3105,548,6704],[2713,3170,2714,0,2713,3170,2714],[3157,2445,3158,0,3157,2445,3158],[2994,61,2995,0,2994,61,2995],[5527,2892,3746,0,5527,2892,3746],[2630,1047,5198,0,2630,1047,5198],[3593,4140,7001,0,3593,4140,7001],[990,4646,4490,0,990,4646,4490],[3737,747,6228,0,3737,747,6228],[2178,2177,7463,0,2178,2177,7463],[4375,1417,7521,0,4375,1417,7521],[7146,5871,4869,0,7146,5871,4869],[7371,7990,5999,0,7371,7990,5999],[4920,8124,7978,0,4920,8124,7978],[7146,4869,4868,0,7146,4869,4868],[6963,6860,2052,0,6963,6860,2052],[5262,5261,1117,0,5262,5261,1117],[3377,7332,5128,0,3377,7332,5128],[711,5372,442,0,711,5372,442],[3345,6459,4807,0,3345,6459,4807],[976,7529,6043,0,976,7529,6043],[1626,1625,2173,0,1626,1625,2173],[148,2397,5952,0,148,2397,5952],[5220,5354,6790,0,5220,5354,6790],[366,3942,1098,0,366,3942,1098],[7040,7641,7789,0,7040,7641,7789],[1307,72,3090,0,1307,72,3090],[7129,3815,3814,0,7129,3815,3814],[2401,4598,2402,0,2401,4598,2402],[1524,6258,6726,0,1524,6258,6726],[7609,8124,4920,0,7609,8124,4920],[3343,4,1262,0,3343,4,1262],[6408,7663,5707,0,6408,7663,5707],[5227,7285,7359,0,5227,7285,7359],[1746,682,4053,0,1746,682,4053],[3183,3449,4765,0,3183,3449,4765],[6657,6659,6116,0,6657,6659,6116],[177,5888,178,0,177,5888,178],[3439,5544,5673,0,3439,5544,5673],[5527,2302,7329,0,5527,2302,7329],[8124,7631,7978,0,8124,7631,7978],[2118,489,5360,0,2118,489,5360],[713,2875,6987,0,713,2875,6987],[6316,5053,6322,0,6316,5053,6322],[1958,3042,933,0,1958,3042,933],[6010,1324,893,0,6010,1324,893],[552,3447,553,0,552,3447,553],[3264,3263,5059,0,3264,3263,5059],[3400,4197,1206,0,3400,4197,1206],[4619,7631,8124,0,4619,7631,8124],[6996,7356,3736,0,6996,7356,3736],[2141,5983,1271,0,2141,5983,1271],[2472,2769,2771,0,2472,2769,2771],[7250,6806,1562,0,7250,6806,1562],[4364,4366,1311,0,4364,4366,1311],[6505,7841,6662,0,6505,7841,6662],[3722,6791,6211,0,3722,6791,6211],[136,7087,137,0,136,7087,137],[6073,6075,4889,0,6073,6075,4889],[4285,4295,4294,0,4285,4295,4294],[6417,6416,772,0,6417,6416,772],[686,5500,5653,0,686,5500,5653],[6523,6330,6331,0,6523,6330,6331],[5870,2658,4014,0,5870,2658,4014],[3917,7145,3372,0,3917,7145,3372],[7282,3918,5685,0,7282,3918,5685],[5920,1868,1867,0,5920,1868,1867],[6137,201,5856,0,6137,201,5856],[7500,7057,6285,0,7500,7057,6285],[4701,4700,3586,0,4701,4700,3586],[4573,6036,4328,0,4573,6036,4328],[6692,5556,7130,0,6692,5556,7130],[487,2379,488,0,487,2379,488],[4552,204,1466,0,4552,204,1466],[354,356,6238,0,354,356,6238],[4830,2483,2485,0,4830,2483,2485],[8125,4237,2066,0,8125,4237,2066],[1062,2297,626,0,1062,2297,626],[3908,609,608,0,3908,609,608],[6096,6098,4817,0,6096,6098,4817],[1183,258,266,0,1183,258,266],[187,1753,2124,0,187,1753,2124],[891,6585,5689,0,891,6585,5689],[1202,5390,46,0,1202,5390,46],[5324,5855,1584,0,5324,5855,1584],[4619,8124,4620,0,4619,8124,4620],[2855,1065,2856,0,2855,1065,2856],[2439,1514,7975,0,2439,1514,7975],[6488,6381,6489,0,6488,6381,6489],[6901,4107,7573,0,6901,4107,7573],[3650,7667,1283,0,3650,7667,1283],[537,3766,538,0,537,3766,538],[7178,7174,1236,0,7178,7174,1236],[7270,7099,7640,0,7270,7099,7640],[7178,1236,1823,0,7178,1236,1823],[8124,5998,4620,0,8124,5998,4620],[6523,7587,6564,0,6523,7587,6564],[2509,2511,5400,0,2509,2511,5400],[453,452,1527,0,453,452,1527],[4364,7371,7609,0,4364,7371,7609],[7644,2022,1443,0,7644,2022,1443],[3717,7586,7555,0,3717,7586,7555],[5998,7609,7371,0,5998,7609,7371],[3645,1168,6876,0,3645,1168,6876],[4030,4032,6682,0,4030,4032,6682],[3204,6562,3203,0,3204,6562,3203],[3775,4130,3776,0,3775,4130,3776],[5443,3799,5968,0,5443,3799,5968],[2261,7494,6536,0,2261,7494,6536],[4604,4452,3064,0,4604,4452,3064],[7457,5232,5469,0,7457,5232,5469],[5785,5787,5920,0,5785,5787,5920],[6076,5755,6317,0,6076,5755,6317],[5957,4845,4723,0,5957,4845,4723],[500,244,4568,0,500,244,4568],[2339,2047,6745,0,2339,2047,6745],[5403,4001,7324,0,5403,4001,7324],[8125,2066,1058,0,8125,2066,1058],[2981,2983,7082,0,2981,2983,7082],[4302,7824,7126,0,4302,7824,7126],[3135,5846,1071,0,3135,5846,1071],[4048,1897,3820,0,4048,1897,3820],[457,6643,458,0,457,6643,458],[3051,287,384,0,3051,287,384],[7275,804,5728,0,7275,804,5728],[1434,3406,6717,0,1434,3406,6717],[3061,6444,6534,0,3061,6444,6534],[5387,4575,4574,0,5387,4575,4574],[7960,1723,2949,0,7960,1723,2949],[5942,6311,6986,0,5942,6311,6986],[7609,5998,8124,0,7609,5998,8124],[6289,3300,7283,0,6289,3300,7283],[5737,7147,3523,0,5737,7147,3523],[3159,3161,3330,0,3159,3161,3330],[271,5357,7083,0,271,5357,7083],[7701,5386,4574,0,7701,5386,4574],[3359,3269,3360,0,3359,3269,3360],[7573,4107,2987,0,7573,4107,2987],[1409,1411,6932,0,1409,1411,6932],[294,436,4553,0,294,436,4553],[1246,3271,3695,0,1246,3271,3695],[4534,7409,4716,0,4534,7409,4716],[8126,898,4468,0,8126,898,4468],[7553,7706,5245,0,7553,7706,5245],[6891,7400,5770,0,6891,7400,5770],[4609,2478,443,0,4609,2478,443],[4963,4659,4267,0,4963,4659,4267],[4468,8127,8128,0,4468,8127,8128],[2984,4618,517,0,2984,4618,517],[422,424,5126,0,422,424,5126],[138,140,3838,0,138,140,3838],[6878,3273,4353,0,6878,3273,4353],[1689,2770,3362,0,1689,2770,3362],[8126,4468,8128,0,8126,4468,8128],[1152,1151,3032,0,1152,1151,3032],[7644,2023,2022,0,7644,2023,2022],[4163,1567,124,0,4163,1567,124],[3900,4667,5248,0,3900,4667,5248],[2638,224,6565,0,2638,224,6565],[8129,8126,8128,0,8129,8126,8128],[3126,6453,3127,0,3126,6453,3127],[3397,2097,4805,0,3397,2097,4805],[7421,1736,1852,0,7421,1736,1852],[5986,774,5528,0,5986,774,5528],[2537,4078,3939,0,2537,4078,3939],[1421,6262,4619,0,1421,6262,4619],[4206,2541,551,0,4206,2541,551],[5204,6916,1574,0,5204,6916,1574],[6835,275,4783,0,6835,275,4783],[2893,2596,6085,0,2893,2596,6085],[3303,984,1800,0,3303,984,1800],[7397,4641,4485,0,7397,4641,4485],[3558,7633,6598,0,3558,7633,6598],[5835,4154,1752,0,5835,4154,1752],[8126,7973,4216,0,8126,7973,4216],[4129,3775,40,0,4129,3775,40],[6478,2220,6479,0,6478,2220,6479],[7247,5715,6204,0,7247,5715,6204],[4692,6503,6502,0,4692,6503,6502],[1874,1,2543,0,1874,1,2543],[4216,898,8126,0,4216,898,8126],[5659,3570,3569,0,5659,3570,3569],[4450,736,277,0,4450,736,277],[1487,1241,1243,0,1487,1241,1243],[4830,4832,7214,0,4830,4832,7214],[1490,5187,2713,0,1490,5187,2713],[6330,3102,5200,0,6330,3102,5200],[5019,4340,4793,0,5019,4340,4793],[3357,2816,4596,0,3357,2816,4596],[2290,2289,5435,0,2290,2289,5435],[7938,3942,4126,0,7938,3942,4126],[7526,4878,931,0,7526,4878,931],[5844,5455,4580,0,5844,5455,4580],[4759,6415,1940,0,4759,6415,1940],[7973,8126,8129,0,7973,8126,8129],[650,7257,4266,0,650,7257,4266],[4964,7391,3869,0,4964,7391,3869],[5227,7359,602,0,5227,7359,602],[7348,4198,6182,0,7348,4198,6182],[6598,7103,2223,0,6598,7103,2223],[2143,2884,7986,0,2143,2884,7986],[489,6738,6766,0,489,6738,6766],[4091,6159,6020,0,4091,6159,6020],[5012,7509,5013,0,5012,7509,5013],[4444,5138,5599,0,4444,5138,5599],[7973,8129,6194,0,7973,8129,6194],[7973,6194,5909,0,7973,6194,5909],[4462,1892,570,0,4462,1892,570],[2153,1461,2154,0,2153,1461,2154],[6184,3474,5951,0,6184,3474,5951],[5766,2492,6677,0,5766,2492,6677],[1238,4155,481,0,1238,4155,481],[2084,73,6304,0,2084,73,6304],[5998,7371,5999,0,5998,7371,5999],[6673,4429,5912,0,6673,4429,5912],[1177,6488,2022,0,1177,6488,2022],[4635,2232,2234,0,4635,2232,2234],[7002,306,2395,0,7002,306,2395],[4350,346,3339,0,4350,346,3339],[1102,7314,1688,0,1102,7314,1688],[6746,6139,6767,0,6746,6139,6767],[6349,3650,3430,0,6349,3650,3430],[3985,5791,3442,0,3985,5791,3442],[2678,2449,2679,0,2678,2449,2679],[1117,5261,251,0,1117,5261,251],[4074,2859,4443,0,4074,2859,4443],[3610,511,3850,0,3610,511,3850],[5515,3976,268,0,5515,3976,268],[3160,5803,4910,0,3160,5803,4910],[6088,6087,4182,0,6088,6087,4182],[7913,4319,4318,0,7913,4319,4318],[7131,6859,2031,0,7131,6859,2031],[6194,8130,5140,0,6194,8130,5140],[6809,6680,3914,0,6809,6680,3914],[7025,4836,6484,0,7025,4836,6484],[6769,5356,7267,0,6769,5356,7267],[5069,4760,4261,0,5069,4760,4261],[6194,8129,8128,0,6194,8129,8128],[6194,8128,8130,0,6194,8128,8130],[6811,1333,6235,0,6811,1333,6235],[8033,5752,6973,0,8033,5752,6973],[8127,8130,8128,0,8127,8130,8128],[863,254,2585,0,863,254,2585],[6540,6825,2249,0,6540,6825,2249],[6998,3597,3598,0,6998,3597,3598],[1117,4298,1118,0,1117,4298,1118],[6825,3224,3223,0,6825,3224,3223],[1643,1642,2269,0,1643,1642,2269],[1735,7201,6256,0,1735,7201,6256],[7375,7559,5185,0,7375,7559,5185],[4253,2121,7991,0,4253,2121,7991],[6482,6038,7439,0,6482,6038,7439],[5568,5567,7286,0,5568,5567,7286],[1166,4290,1167,0,1166,4290,1167],[6270,2607,2606,0,6270,2607,2606],[2917,2919,7705,0,2917,2919,7705],[5748,872,1824,0,5748,872,1824],[4547,7368,1672,0,4547,7368,1672],[7485,2076,7494,0,7485,2076,7494],[39,6407,6248,0,39,6407,6248],[4217,5063,4218,0,4217,5063,4218],[139,6919,4984,0,139,6919,4984],[2689,3607,6340,0,2689,3607,6340],[6748,7533,5484,0,6748,7533,5484],[6501,5811,7641,0,6501,5811,7641],[662,6060,7982,0,662,6060,7982],[7425,7453,8131,0,7425,7453,8131],[4399,4092,6388,0,4399,4092,6388],[7425,8131,4467,0,7425,8131,4467],[7176,2161,6091,0,7176,2161,6091],[2110,2020,5779,0,2110,2020,5779],[6372,137,7087,0,6372,137,7087],[5305,1950,4612,0,5305,1950,4612],[6950,5092,5093,0,6950,5092,5093],[4615,4357,7731,0,4615,4357,7731],[6146,5910,3381,0,6146,5910,3381],[1312,1314,3980,0,1312,1314,3980],[6466,3327,2824,0,6466,3327,2824],[5820,6120,5411,0,5820,6120,5411],[6466,2824,7677,0,6466,2824,7677],[1467,7449,4384,0,1467,7449,4384],[2028,2036,3428,0,2028,2036,3428],[3395,2033,3396,0,3395,2033,3396],[5542,2728,1355,0,5542,2728,1355],[4685,2184,2183,0,4685,2184,2183],[7453,6176,8131,0,7453,6176,8131],[6773,7615,3620,0,6773,7615,3620],[4705,3190,7384,0,4705,3190,7384],[1490,3088,1491,0,1490,3088,1491],[1742,1744,7392,0,1742,1744,7392],[2502,2082,2934,0,2502,2082,2934],[7352,156,7614,0,7352,156,7614],[993,3802,991,0,993,3802,991],[7269,7203,832,0,7269,7203,832],[5201,3307,7860,0,5201,3307,7860],[209,208,1053,0,209,208,1053],[4826,2081,2083,0,4826,2081,2083],[1801,1803,3459,0,1801,1803,3459],[4468,4467,8127,0,4468,4467,8127],[752,956,2407,0,752,956,2407],[3197,4794,816,0,3197,4794,816],[23,7365,5794,0,23,7365,5794],[5561,5565,5566,0,5561,5565,5566],[2493,5766,3196,0,2493,5766,3196],[319,5247,7094,0,319,5247,7094],[4256,105,4118,0,4256,105,4118],[1735,6256,580,0,1735,6256,580],[4581,5070,4262,0,4581,5070,4262],[1630,8033,6973,0,1630,8033,6973],[4467,8131,8127,0,4467,8131,8127],[959,4384,2361,0,959,4384,2361],[2431,7553,5245,0,2431,7553,5245],[4075,4854,692,0,4075,4854,692],[7634,7378,7258,0,7634,7378,7258],[7625,4270,5304,0,7625,4270,5304],[542,541,3746,0,542,541,3746],[7056,2389,5611,0,7056,2389,5611],[5881,6393,6387,0,5881,6393,6387],[3011,4308,3970,0,3011,4308,3970],[6593,5635,1830,0,6593,5635,1830],[7261,4184,3444,0,7261,4184,3444],[7056,5611,1370,0,7056,5611,1370],[6547,5499,4182,0,6547,5499,4182],[6964,2197,1091,0,6964,2197,1091],[2105,6898,6897,0,2105,6898,6897],[4644,3920,7303,0,4644,3920,7303],[8130,6176,5140,0,8130,6176,5140],[7398,355,354,0,7398,355,354],[2495,7125,1496,0,2495,7125,1496],[4913,6496,4914,0,4913,6496,4914],[7577,7489,3142,0,7577,7489,3142],[6268,632,3793,0,6268,632,3793],[4990,1724,2138,0,4990,1724,2138],[1351,6160,7500,0,1351,6160,7500],[5366,7137,6370,0,5366,7137,6370],[1354,4523,7994,0,1354,4523,7994],[3465,4543,6752,0,3465,4543,6752],[6321,7600,7163,0,6321,7600,7163],[5616,5594,5593,0,5616,5594,5593],[2352,3743,610,0,2352,3743,610],[133,3877,1474,0,133,3877,1474],[8127,8131,6176,0,8127,8131,6176],[8127,6176,8130,0,8127,6176,8130],[6386,5740,3042,0,6386,5740,3042],[7035,98,7537,0,7035,98,7537],[1484,1486,4211,0,1484,1486,4211],[6666,6565,224,0,6666,6565,224],[3376,7983,858,0,3376,7983,858],[7093,3324,2967,0,7093,3324,2967],[792,3590,3592,0,792,3590,3592],[6695,3354,4215,0,6695,3354,4215],[5220,7179,5402,0,5220,7179,5402],[7369,2929,5151,0,7369,2929,5151],[1838,1596,995,0,1838,1596,995],[3674,2372,2371,0,3674,2372,2371],[2221,3548,2222,0,2221,3548,2222],[6857,4249,4248,0,6857,4249,4248],[4724,6906,5014,0,4724,6906,5014],[7991,7994,4523,0,7991,7994,4523],[5908,4675,5424,0,5908,4675,5424],[6091,5285,7071,0,6091,5285,7071],[1303,5160,4430,0,1303,5160,4430],[5487,6509,6177,0,5487,6509,6177],[6955,5051,7105,0,6955,5051,7105],[3135,6891,3136,0,3135,6891,3136],[176,5493,5693,0,176,5493,5693],[5208,2531,2813,0,5208,2531,2813],[5901,2726,5902,0,5901,2726,5902],[6189,2668,2335,0,6189,2668,2335],[6336,2820,3256,0,6336,2820,3256],[2017,4403,7304,0,2017,4403,7304],[3905,3534,5349,0,3905,3534,5349],[5524,1090,1089,0,5524,1090,1089],[7033,7357,7311,0,7033,7357,7311],[4933,4763,7268,0,4933,4763,7268],[7315,1275,4143,0,7315,1275,4143],[6120,1823,6263,0,6120,1823,6263],[2190,398,400,0,2190,398,400],[7654,6484,7037,0,7654,6484,7037],[7455,5415,3919,0,7455,5415,3919],[4725,5432,4151,0,4725,5432,4151],[2014,6076,6620,0,2014,6076,6620],[402,4237,8125,0,402,4237,8125],[7582,7964,7944,0,7582,7964,7944],[1616,2164,4771,0,1616,2164,4771],[4351,1719,4936,0,4351,1719,4936],[7453,6177,6176,0,7453,6177,6176],[2706,2708,7618,0,2706,2708,7618],[3808,6336,3809,0,3808,6336,3809],[3688,4022,3689,0,3688,4022,3689],[5058,5193,3264,0,5058,5193,3264],[8132,8008,8102,0,8132,8008,8102],[1884,4779,7952,0,1884,4779,7952],[8008,7826,8102,0,8008,7826,8102],[4977,2615,2830,0,4977,2615,2830],[216,2986,2964,0,216,2986,2964],[785,4608,7935,0,785,4608,7935],[4589,3454,3453,0,4589,3454,3453],[8132,8133,8008,0,8132,8133,8008],[2686,7613,3027,0,2686,7613,3027],[3013,6884,7637,0,3013,6884,7637],[8005,8008,8133,0,8005,8008,8133],[8005,8133,8006,0,8005,8133,8006],[6059,7982,6060,0,6059,7982,6060],[8102,8104,8132,0,8102,8104,8132],[8106,8134,8104,0,8106,8134,8104],[7116,3041,2749,0,7116,3041,2749],[8135,8136,8104,0,8135,8136,8104],[8135,8104,8134,0,8135,8104,8134],[2339,5958,4816,0,2339,5958,4816],[8132,8104,8136,0,8132,8104,8136],[8132,8136,8137,0,8132,8136,8137],[8132,8137,8133,0,8132,8137,8133],[7887,3864,4466,0,7887,3864,4466],[8135,8137,8136,0,8135,8137,8136],[8138,8139,8137,0,8138,8139,8137],[2489,7158,7072,0,2489,7158,7072],[8006,8133,8137,0,8006,8133,8137],[8006,8137,8139,0,8006,8137,8139],[6473,6462,5127,0,6473,6462,5127],[3230,1995,3231,0,3230,1995,3231],[6365,6364,3012,0,6365,6364,3012],[6973,5752,3261,0,6973,5752,3261],[8139,7431,7464,0,8139,7431,7464],[7185,7224,6105,0,7185,7224,6105],[7168,7167,4312,0,7168,7167,4312],[7370,5152,3048,0,7370,5152,3048],[1240,6570,992,0,1240,6570,992],[7431,8140,7930,0,7431,8140,7930],[8139,8141,8140,0,8139,8141,8140],[8139,8140,7431,0,8139,8140,7431],[4317,3329,3331,0,4317,3329,3331],[5770,3136,6891,0,5770,3136,6891],[3073,6055,5775,0,3073,6055,5775],[878,880,4599,0,878,880,4599],[7274,5932,6173,0,7274,5932,6173],[8001,8006,7464,0,8001,8006,7464],[7237,1923,2273,0,7237,1923,2273],[1860,2496,1317,0,1860,2496,1317],[4957,4956,3001,0,4957,4956,3001],[6321,1994,7600,0,6321,1994,7600],[8139,7464,8006,0,8139,7464,8006],[1129,4369,3043,0,1129,4369,3043],[3975,268,3976,0,3975,268,3976],[5244,5438,2959,0,5244,5438,2959],[3377,6440,7332,0,3377,6440,7332],[845,7366,4963,0,845,7366,4963],[8138,8142,8139,0,8138,8142,8139],[1232,1231,1162,0,1232,1231,1162],[143,1976,7054,0,143,1976,7054],[8141,8139,8142,0,8141,8139,8142],[7313,501,7892,0,7313,501,7892],[4776,916,4844,0,4776,916,4844],[1006,4083,1007,0,1006,4083,1007],[4558,7892,501,0,4558,7892,501],[4146,5821,2694,0,4146,5821,2694],[8143,7892,4558,0,8143,7892,4558],[2276,2275,5899,0,2276,2275,5899],[4023,5173,2776,0,4023,5173,2776],[7892,8143,8144,0,7892,8143,8144],[7892,8144,7889,0,7892,8144,7889],[5959,6388,5684,0,5959,6388,5684],[5484,3713,94,0,5484,3713,94],[8142,7889,8144,0,8142,7889,8144],[6873,2445,3157,0,6873,2445,3157],[1198,6983,6861,0,1198,6983,6861],[4881,5712,5961,0,4881,5712,5961],[1576,3106,5729,0,1576,3106,5729],[6504,6715,4904,0,6504,6715,4904],[7177,4195,4440,0,7177,4195,4440],[2620,5773,4064,0,2620,5773,4064],[8141,8143,7930,0,8141,8143,7930],[8141,7930,8140,0,8141,7930,8140],[8143,4558,7930,0,8143,4558,7930],[3778,3717,7555,0,3778,3717,7555],[6970,7576,1544,0,6970,7576,1544],[8143,8142,8144,0,8143,8142,8144],[830,6697,5481,0,830,6697,5481],[8141,8142,8143,0,8141,8142,8143],[1463,7252,5515,0,1463,7252,5515],[7646,5780,2796,0,7646,5780,2796],[123,125,7266,0,123,125,7266],[6712,4299,7543,0,6712,4299,7543],[5895,3818,1278,0,5895,3818,1278],[4025,6362,4026,0,4025,6362,4026],[5974,6908,819,0,5974,6908,819],[7885,8107,7868,0,7885,8107,7868],[1453,3497,3496,0,1453,3497,3496],[1947,411,2042,0,1947,411,2042],[3658,3787,3786,0,3658,3787,3786],[8109,8107,8134,0,8109,8107,8134],[6546,3554,391,0,6546,3554,391],[4366,4547,1405,0,4366,4547,1405],[8107,8135,8134,0,8107,8135,8134],[5491,7136,504,0,5491,7136,504],[6665,2306,2305,0,6665,2306,2305],[5507,7598,6166,0,5507,7598,6166],[8106,8109,8134,0,8106,8109,8134],[716,4289,717,0,716,4289,717],[7885,7886,7889,0,7885,7886,7889],[847,1433,1432,0,847,1433,1432],[4013,4012,937,0,4013,4012,937],[5860,1574,6916,0,5860,1574,6916],[3049,6854,3050,0,3049,6854,3050],[5330,3854,7008,0,5330,3854,7008],[8107,7885,7889,0,8107,7885,7889],[8107,7889,8142,0,8107,7889,8142],[8107,8142,8138,0,8107,8142,8138],[8107,8138,8135,0,8107,8138,8135],[5416,6768,7046,0,5416,6768,7046],[4361,4360,2690,0,4361,4360,2690],[6232,3108,6592,0,6232,3108,6592],[4727,7617,2805,0,4727,7617,2805],[7000,4057,47,0,7000,4057,47],[8135,8138,8137,0,8135,8138,8137],[5615,4543,7243,0,5615,4543,7243],[3014,4569,6365,0,3014,4569,6365],[7804,6398,6756,0,7804,6398,6756],[2724,3959,7397,0,2724,3959,7397],[2925,7627,2926,0,2925,7627,2926],[879,2945,2944,0,879,2945,2944],[7993,5569,7164,0,7993,5569,7164],[3245,5084,3246,0,3245,5084,3246],[3728,3727,716,0,3728,3727,716],[7368,4547,4985,0,7368,4547,4985],[7252,4182,5515,0,7252,4182,5515],[6846,1787,6847,0,6846,1787,6847],[1899,2645,4144,0,1899,2645,4144],[306,7002,5795,0,306,7002,5795],[6673,5912,6406,0,6673,5912,6406],[5352,5353,5861,0,5352,5353,5861],[6378,6377,947,0,6378,6377,947],[7069,5807,6052,0,7069,5807,6052],[2890,4485,3747,0,2890,4485,3747],[2714,3169,836,0,2714,3169,836],[2701,7888,3403,0,2701,7888,3403],[7993,7164,8031,0,7993,7164,8031],[1251,1252,7636,0,1251,1252,7636],[7368,1673,1672,0,7368,1673,1672],[6048,7649,293,0,6048,7649,293],[6243,3843,6521,0,6243,3843,6521],[4334,6817,5579,0,4334,6817,5579],[5758,7412,1703,0,5758,7412,1703],[4383,1500,6939,0,4383,1500,6939],[1463,1465,7252,0,1463,1465,7252],[5779,424,423,0,5779,424,423],[3093,2688,4632,0,3093,2688,4632],[2720,2719,5868,0,2720,2719,5868],[689,5267,5309,0,689,5267,5309],[4330,3232,7162,0,4330,3232,7162],[5095,5395,3341,0,5095,5395,3341],[7654,2104,6484,0,7654,2104,6484],[2562,5170,5125,0,2562,5170,5125],[7260,697,3405,0,7260,697,3405],[807,3108,6232,0,807,3108,6232],[6323,1139,5047,0,6323,1139,5047],[3515,1483,7212,0,3515,1483,7212],[3956,4800,1233,0,3956,4800,1233],[6820,3151,1096,0,6820,3151,1096],[3207,5358,6920,0,3207,5358,6920],[4776,4844,6251,0,4776,4844,6251],[5304,3731,3730,0,5304,3731,3730],[1818,1385,1819,0,1818,1385,1819],[5434,4109,5435,0,5434,4109,5435],[6537,4103,6907,0,6537,4103,6907],[2506,2783,2782,0,2506,2783,2782],[7383,7065,4511,0,7383,7065,4511],[7684,503,3555,0,7684,503,3555],[439,4156,1161,0,439,4156,1161],[6092,4863,6528,0,6092,4863,6528],[5109,1812,1811,0,5109,1812,1811],[3206,3205,6795,0,3206,3205,6795],[5679,7482,7515,0,5679,7482,7515],[3200,630,629,0,3200,630,629],[3601,5078,6562,0,3601,5078,6562],[2246,4054,1982,0,2246,4054,1982],[3891,3973,6854,0,3891,3973,6854],[784,443,445,0,784,443,445],[1644,52,51,0,1644,52,51],[2243,5179,5613,0,2243,5179,5613],[4995,5309,353,0,4995,5309,353],[2994,6247,1663,0,2994,6247,1663],[6960,691,693,0,6960,691,693],[6762,1275,7315,0,6762,1275,7315],[4721,4904,6320,0,4721,4904,6320],[5338,7358,2920,0,5338,7358,2920],[2469,5101,7191,0,2469,5101,7191],[353,5309,5267,0,353,5309,5267],[353,5267,351,0,353,5267,351],[2362,6851,5590,0,2362,6851,5590],[3371,3214,2651,0,3371,3214,2651],[2692,289,288,0,2692,289,288],[4062,4191,4272,0,4062,4191,4272],[3465,3464,4543,0,3465,3464,4543],[351,5267,7993,0,351,5267,7993],[5253,5252,3881,0,5253,5252,3881],[7521,4067,2955,0,7521,4067,2955],[5123,5850,4068,0,5123,5850,4068],[2557,3028,3761,0,2557,3028,3761],[2499,155,1027,0,2499,155,1027],[6830,5979,1007,0,6830,5979,1007],[5458,5720,5459,0,5458,5720,5459],[2868,3649,6890,0,2868,3649,6890],[1877,7323,7176,0,1877,7323,7176],[5,3111,2582,0,5,3111,2582],[7492,4155,1238,0,7492,4155,1238],[3590,4295,4285,0,3590,4295,4285],[4350,5035,1108,0,4350,5035,1108],[1195,6955,1196,0,1195,6955,1196],[4117,2962,5391,0,4117,2962,5391],[307,813,4257,0,307,813,4257],[2694,4200,4185,0,2694,4200,4185],[2641,1919,1904,0,2641,1919,1904],[4610,4282,3502,0,4610,4282,3502],[3965,0,698,0,3965,0,698],[268,2984,269,0,268,2984,269],[1486,1485,7652,0,1486,1485,7652],[3580,1555,1557,0,3580,1555,1557],[1209,1171,5040,0,1209,1171,5040],[796,795,7884,0,796,795,7884],[4809,1818,4960,0,4809,1818,4960],[201,6138,202,0,201,6138,202],[6716,3961,5939,0,6716,3961,5939],[3460,7147,4134,0,3460,7147,4134],[2283,7381,193,0,2283,7381,193],[1276,6554,7327,0,1276,6554,7327],[6197,2550,1848,0,6197,2550,1848],[2269,2867,6438,0,2269,2867,6438],[3717,3778,1420,0,3717,3778,1420],[7975,1514,1313,0,7975,1514,1313],[498,3882,6133,0,498,3882,6133],[910,5989,6861,0,910,5989,6861],[3255,2049,2048,0,3255,2049,2048],[7993,8031,351,0,7993,8031,351],[3082,7408,7456,0,3082,7408,7456],[4839,6826,7656,0,4839,6826,7656],[6142,2529,5382,0,6142,2529,5382],[1571,1573,6931,0,1571,1573,6931],[6406,3065,3064,0,6406,3065,3064],[6106,6944,6104,0,6106,6944,6104],[1293,762,2601,0,1293,762,2601],[5268,2527,5883,0,5268,2527,5883],[2810,1388,301,0,2810,1388,301],[487,3785,7406,0,487,3785,7406],[1513,1512,408,0,1513,1512,408],[673,2381,4264,0,673,2381,4264],[731,6476,5532,0,731,6476,5532],[566,6286,3652,0,566,6286,3652],[2012,3308,6559,0,2012,3308,6559],[7278,594,1254,0,7278,594,1254],[402,8125,1058,0,402,8125,1058],[2819,3533,4910,0,2819,3533,4910],[6956,3125,3127,0,6956,3125,3127],[4032,7472,6951,0,4032,7472,6951],[5798,125,2972,0,5798,125,2972],[7229,6671,7351,0,7229,6671,7351],[4192,1140,6324,0,4192,1140,6324],[6316,6322,1306,0,6316,6322,1306],[5601,5430,5709,0,5601,5430,5709],[1432,1434,6717,0,1432,1434,6717],[1984,2880,1985,0,1984,2880,1985],[1846,5914,3691,0,1846,5914,3691],[5113,4010,7043,0,5113,4010,7043],[1575,1909,1576,0,1575,1909,1576],[7003,3864,7887,0,7003,3864,7887],[97,96,4679,0,97,96,4679],[6091,7071,7176,0,6091,7071,7176],[7941,7189,6373,0,7941,7189,6373],[273,275,7080,0,273,275,7080],[5318,3196,3195,0,5318,3196,3195],[2279,6376,2892,0,2279,6376,2892],[7007,5181,276,0,7007,5181,276],[3488,6019,7248,0,3488,6019,7248],[4179,7167,7169,0,4179,7167,7169],[7007,276,7496,0,7007,276,7496],[2956,7081,2544,0,2956,7081,2544],[2093,6301,6300,0,2093,6301,6300],[6746,5575,520,0,6746,5575,520],[2202,2201,2637,0,2202,2201,2637],[988,2059,989,0,988,2059,989],[3484,6781,4160,0,3484,6781,4160],[6339,6341,5615,0,6339,6341,5615],[4556,2087,4851,0,4556,2087,4851],[6200,830,4019,0,6200,830,4019],[994,264,3296,0,994,264,3296],[4179,8145,7164,0,4179,8145,7164],[4404,4475,4405,0,4404,4475,4405],[3687,2366,6688,0,3687,2366,6688],[2874,4965,3869,0,2874,4965,3869],[4293,4645,6952,0,4293,4645,6952],[6165,7292,6410,0,6165,7292,6410],[6104,6943,4707,0,6104,6943,4707],[1403,7103,96,0,1403,7103,96],[7257,6202,6823,0,7257,6202,6823],[8053,4509,7432,0,8053,4509,7432],[3016,4139,6572,0,3016,4139,6572],[4963,4267,846,0,4963,4267,846],[2174,4466,2175,0,2174,4466,2175],[4033,549,551,0,4033,549,551],[7179,559,5838,0,7179,559,5838],[3575,3077,3076,0,3575,3077,3076],[4179,7169,8145,0,4179,7169,8145],[7972,6786,4112,0,7972,6786,4112],[7484,4005,2368,0,7484,4005,2368],[5388,4411,5389,0,5388,4411,5389],[6315,7276,7207,0,6315,7276,7207],[1317,1316,4181,0,1317,1316,4181],[419,7561,420,0,419,7561,420],[4760,7663,7669,0,4760,7663,7669],[7836,2211,5859,0,7836,2211,5859],[2930,800,802,0,2930,800,802],[6027,5075,3120,0,6027,5075,3120],[4678,97,4679,0,4678,97,4679],[7106,6217,4561,0,7106,6217,4561],[165,3324,5036,0,165,3324,5036],[6464,5865,5490,0,6464,5865,5490],[8031,8145,7912,0,8031,8145,7912],[3621,5870,4014,0,3621,5870,4014],[638,4840,639,0,638,4840,639],[7666,3207,3517,0,7666,3207,3517],[7088,431,1619,0,7088,431,1619],[1304,141,7859,0,1304,141,7859],[7156,3699,4299,0,7156,3699,4299],[1117,251,4298,0,1117,251,4298],[2437,902,4247,0,2437,902,4247],[5248,5211,3900,0,5248,5211,3900],[6494,6463,5701,0,6494,6463,5701],[1710,1767,6912,0,1710,1767,6912],[8145,8031,7164,0,8145,8031,7164],[5860,5589,1575,0,5860,5589,1575],[7456,7408,5419,0,7456,7408,5419],[6979,2838,7210,0,6979,2838,7210],[1036,1035,1528,0,1036,1035,1528],[4759,6597,6415,0,4759,6597,6415],[799,7330,6778,0,799,7330,6778],[6889,5778,5328,0,6889,5778,5328],[5007,1215,781,0,5007,1215,781],[6901,7573,6900,0,6901,7573,6900],[1715,1180,206,0,1715,1180,206],[371,6728,5577,0,371,6728,5577],[7477,3807,3806,0,7477,3807,3806],[4399,12,4400,0,4399,12,4400],[6052,3631,3803,0,6052,3631,3803],[1031,5759,5698,0,1031,5759,5698],[1836,4105,6709,0,1836,4105,6709],[2587,2010,5121,0,2587,2010,5121],[3247,252,4389,0,3247,252,4389],[6671,7229,1602,0,6671,7229,1602],[3792,4566,5991,0,3792,4566,5991],[7618,2708,392,0,7618,2708,392],[4661,7837,7603,0,4661,7837,7603],[3472,1908,3286,0,3472,1908,3286],[7614,156,1307,0,7614,156,1307],[2263,2264,2844,0,2263,2264,2844],[972,7564,867,0,972,7564,867],[7685,5374,5373,0,7685,5374,5373],[1945,1959,1961,0,1945,1959,1961],[250,6003,2665,0,250,6003,2665],[7912,7169,6000,0,7912,7169,6000],[3289,4184,7261,0,3289,4184,7261],[8145,7169,7912,0,8145,7169,7912],[5339,7231,1556,0,5339,7231,1556],[1644,1056,4387,0,1644,1056,4387],[225,227,7285,0,225,227,7285],[6259,6258,7562,0,6259,6258,7562],[3080,6396,2787,0,3080,6396,2787],[2857,4447,2132,0,2857,4447,2132],[2904,7157,2905,0,2904,7157,2905],[6643,457,162,0,6643,457,162],[3021,4532,2980,0,3021,4532,2980],[6008,6701,2267,0,6008,6701,2267],[3865,365,364,0,3865,365,364],[4549,4736,4437,0,4549,4736,4437],[5364,1437,1436,0,5364,1437,1436],[7494,47,46,0,7494,47,46],[6098,4818,4817,0,6098,4818,4817],[2216,2218,2861,0,2216,2218,2861],[2427,5308,1854,0,2427,5308,1854],[530,3148,245,0,530,3148,245],[7532,320,4988,0,7532,320,4988],[5976,7193,5160,0,5976,7193,5160],[168,7612,6044,0,168,7612,6044],[2150,1591,4157,0,2150,1591,4157],[489,490,5360,0,489,490,5360],[5528,774,1839,0,5528,774,1839],[6190,4494,6191,0,6190,4494,6191],[4306,4666,6754,0,4306,4666,6754],[5337,849,1778,0,5337,849,1778],[1124,1126,4025,0,1124,1126,4025],[4591,480,7480,0,4591,480,7480],[6962,4481,7483,0,6962,4481,7483],[2302,3746,541,0,2302,3746,541],[8095,6799,5373,0,8095,6799,5373],[129,6012,6013,0,129,6012,6013],[6057,3809,6336,0,6057,3809,6336],[4399,3621,12,0,4399,3621,12],[5832,5209,6748,0,5832,5209,6748],[7810,7061,3185,0,7810,7061,3185],[6459,2998,4807,0,6459,2998,4807],[5238,6107,5239,0,5238,6107,5239],[4116,2962,4117,0,4116,2962,4117],[2154,1461,5204,0,2154,1461,5204],[1152,3033,5692,0,1152,3033,5692],[5858,665,6185,0,5858,665,6185],[7396,3627,2167,0,7396,3627,2167],[2923,4751,1974,0,2923,4751,1974],[5414,5801,6621,0,5414,5801,6621],[7939,2825,3328,0,7939,2825,3328],[923,7107,7617,0,923,7107,7617],[7098,7678,3247,0,7098,7678,3247],[7045,5385,1698,0,7045,5385,1698],[1326,3418,3417,0,1326,3418,3417],[838,701,3088,0,838,701,3088],[5299,5241,4745,0,5299,5241,4745],[1406,1408,590,0,1406,1408,590],[179,3011,177,0,179,3011,177],[6750,5602,7235,0,6750,5602,7235],[7911,5146,4818,0,7911,5146,4818],[1832,1134,6311,0,1832,1134,6311],[6775,3331,3330,0,6775,3331,3330],[5299,3414,2746,0,5299,3414,2746],[350,1761,1245,0,350,1761,1245],[2614,2830,2615,0,2614,2830,2615],[1069,6504,1438,0,1069,6504,1438],[7369,4557,2929,0,7369,4557,2929],[708,5089,7602,0,708,5089,7602],[3386,3385,4453,0,3386,3385,4453],[2792,772,6416,0,2792,772,6416],[333,7119,7120,0,333,7119,7120],[3507,1142,3508,0,3507,1142,3508],[7338,5628,6515,0,7338,5628,6515],[3911,7681,2377,0,3911,7681,2377],[6271,6315,7207,0,6271,6315,7207],[885,5669,5668,0,885,5669,5668],[1582,7636,1252,0,1582,7636,1252],[93,1821,94,0,93,1821,94],[1735,1734,7201,0,1735,1734,7201],[5739,5096,721,0,5739,5096,721],[2339,6745,2517,0,2339,6745,2517],[3420,3694,6875,0,3420,3694,6875],[405,1709,1708,0,405,1709,1708],[22,21,1156,0,22,21,1156],[4604,6700,4452,0,4604,6700,4452],[4083,1006,998,0,4083,1006,998],[3423,2247,1981,0,3423,2247,1981],[2792,6416,2793,0,2792,6416,2793],[43,4007,463,0,43,4007,463],[3203,2947,6895,0,3203,2947,6895],[197,7363,7498,0,197,7363,7498],[5498,5515,4182,0,5498,5515,4182],[2923,4693,4751,0,2923,4693,4751],[1930,1929,3188,0,1930,1929,3188],[6591,3210,3692,0,6591,3210,3692],[475,6759,7481,0,475,6759,7481],[2762,6318,1086,0,2762,6318,1086],[2747,2749,3299,0,2747,2749,3299],[6472,1392,6462,0,6472,1392,6462],[1727,2177,1725,0,1727,2177,1725],[6098,7911,4818,0,6098,7911,4818],[5971,5977,2108,0,5971,5977,2108],[2732,2734,6893,0,2732,2734,6893],[5162,5161,3860,0,5162,5161,3860],[1720,4351,1911,0,1720,4351,1911],[4970,4969,7682,0,4970,4969,7682],[6035,5205,4327,0,6035,5205,4327],[7107,746,745,0,7107,746,745],[1517,1021,1020,0,1517,1021,1020],[6539,1297,1296,0,6539,1297,1296],[6094,348,6424,0,6094,348,6424],[1834,4798,4817,0,1834,4798,4817],[2422,4749,6282,0,2422,4749,6282],[2045,3114,2323,0,2045,3114,2323],[6108,1861,1863,0,6108,1861,1863],[396,6827,1107,0,396,6827,1107],[1498,4383,4382,0,1498,4383,4382],[4690,6096,4817,0,4690,6096,4817],[986,5603,6428,0,986,5603,6428],[2488,1970,5439,0,2488,1970,5439],[7009,6192,823,0,7009,6192,823],[1368,5610,6886,0,1368,5610,6886],[6296,6845,5728,0,6296,6845,5728],[4925,6062,7284,0,4925,6062,7284],[1168,5404,6876,0,1168,5404,6876],[1739,6374,1740,0,1739,6374,1740],[428,3493,3711,0,428,3493,3711]], + + 'end': (new Date).getTime() + } + +postMessage( model ); diff --git a/examples/obj_convert_test.html b/examples/obj_convert_test.html index 473a3c24ad350e3fb8060264bde247692f198050..de3d09aa34dca091a491df6b23aa6d85d17323fe 100644 --- a/examples/obj_convert_test.html +++ b/examples/obj_convert_test.html @@ -6,45 +6,45 @@ - -
-

OBJ to Three.js converter test

- - 2d canvas renderer - WebGL renderer -
- -

Models by Reallusion - iClone. - -

Using a modified version of Three.js by mrdoob. - -
-

Best viewed in Chrome 7/8 or Firefox 4 using WebGL renderer. -

Canvas renderer is very slow on anything other than Chrome. -

- -
- - + +
+

OBJ to Three.js converter test

+ + 2d canvas renderer + WebGL renderer +
+ +

Models by Reallusion + iClone. + +

Using a modified version of Three.js by mrdoob. + +
+

Best viewed in Chrome 8/9 or Firefox 4 using WebGL renderer. +

Canvas renderer is very slow on anything other than Chrome. +

+ +
+ + + --> + --> @@ -108,29 +109,29 @@ var canvasRenderer, webglRenderer; var mesh, zmesh, geometry; - + var mouseX = 0; var mouseY = 0; var windowHalfX = window.innerWidth >> 1; var windowHalfY = window.innerHeight >> 1; - var render_canvas = 1, render_gl = 1; - var has_gl = 0; - - var bcanvas = document.getElementById("rcanvas"); - var bwebgl = document.getElementById("rwebgl"); - + var render_canvas = 1, render_gl = 1; + var has_gl = 0; + + var bcanvas = document.getElementById("rcanvas"); + var bwebgl = document.getElementById("rwebgl"); + document.addEventListener('mousemove', onDocumentMouseMove, false); init(); - + loop(); - - render_canvas = !has_gl; - bwebgl.style.display = has_gl ? "inline" : "none"; - bcanvas.className = render_canvas ? "button" : "button inactive"; - + + render_canvas = !has_gl; + bwebgl.style.display = has_gl ? "inline" : "none"; + bcanvas.className = render_canvas ? "button" : "button inactive"; + setInterval(loop, 1000/60); @@ -140,62 +141,62 @@ document.body.appendChild(container); camera = new THREE.Camera( 75, SCREEN_WIDTH / SCREEN_HEIGHT, 1, 100000 ); - camera.position.z = 500; - camera.updateMatrix(); + camera.position.z = 500; + camera.updateMatrix(); scene = new THREE.Scene(); - - // GROUND - - var x = document.createElement( "canvas" ); - var xc = x.getContext("2d"); - x.width = x.height = 128; - xc.fillStyle = "#fff"; - xc.fillRect(0, 0, 128, 128); - xc.fillStyle = "#000"; - xc.fillRect(0, 0, 64, 64); - xc.fillStyle = "#999"; - xc.fillRect(32, 32, 32, 32); - xc.fillStyle = "#000"; - xc.fillRect(64, 64, 64, 64); - xc.fillStyle = "#555"; - xc.fillRect(96, 96, 32, 32); - - var xm = new THREE.MeshBitmapMaterial( x ); - xm.loaded = 1; - - geometry = new Plane( 100, 100, 15, 10 ); - for(var i=0; i" + e.innerHTML; - - } - - function toggleCanvas() { - - render_canvas = !render_canvas; - bcanvas.className = render_canvas ? "button" : "button inactive"; - - render_gl = !render_canvas; - bwebgl.className = render_gl ? "button" : "button inactive"; - - if( has_gl ) - webglRenderer.domElement.style.display = render_gl ? "block" : "none"; - - canvasRenderer.domElement.style.display = render_canvas ? "block" : "none"; - - } - - function toggleWebGL() { - - render_gl = !render_gl; - bwebgl.className = render_gl ? "button" : "button inactive"; - - render_canvas = !render_gl; - bcanvas.className = render_canvas ? "button" : "button inactive"; - - if( has_gl ) - webglRenderer.domElement.style.display = render_gl ? "block" : "none"; - - canvasRenderer.domElement.style.display = render_canvas ? "block" : "none"; - - } + function log(text) { + + var e = document.getElementById("log"); + e.innerHTML = text + "
" + e.innerHTML; + + } + + function toggleCanvas() { + + render_canvas = !render_canvas; + bcanvas.className = render_canvas ? "button" : "button inactive"; + + render_gl = !render_canvas; + bwebgl.className = render_gl ? "button" : "button inactive"; + + if( has_gl ) + webglRenderer.domElement.style.display = render_gl ? "block" : "none"; + + canvasRenderer.domElement.style.display = render_canvas ? "block" : "none"; + + } + + function toggleWebGL() { + + render_gl = !render_gl; + bwebgl.className = render_gl ? "button" : "button inactive"; + + render_canvas = !render_gl; + bcanvas.className = render_canvas ? "button" : "button inactive"; + + if( has_gl ) + webglRenderer.domElement.style.display = render_gl ? "block" : "none"; + + canvasRenderer.domElement.style.display = render_canvas ? "block" : "none"; + + } diff --git a/examples/shader_test.html b/examples/shader_test.html index 16fdf4f6a510ea012fb18b26b4a04aaaf83eb17c..9d1024923e1ecdf8be1a1c25135b025c9a950f21 100644 --- a/examples/shader_test.html +++ b/examples/shader_test.html @@ -6,44 +6,44 @@ - -
-

Shader test

- - 2d canvas renderer - WebGL renderer -
- -

Using a modified version of Three.js by mrdoob. - -
-

Best viewed in Chrome 7/8 or Firefox 4 using WebGL renderer. -

Canvas renderer is very slow on anything other than Chrome. -

Blinn-Phong shader only works in WebGL, canvas has only diffuse materials. -

- -

-
-         
+	
+		
+

Shader test

+ + 2d canvas renderer + WebGL renderer +
+ +

Using a modified version of Three.js by mrdoob. + +
+

Best viewed in Chrome 8/9 or Firefox 4 using WebGL renderer. +

Canvas renderer is very slow on anything other than Chrome. +

Blinn-Phong shader only works in WebGL, canvas has only diffuse materials. +

+ +

+
+		 
 		
+		-->
 
 		
+		-->
 		
 		
 
@@ -105,171 +106,171 @@
 			var canvasRenderer, webglRenderer;
 
 			var mesh, zmesh, lightMesh, geometry;
-            
-            var directionalLight, pointLight;
-            
+			
+			var directionalLight, pointLight;
+			
 			var mouseX = 0;
 			var mouseY = 0;
 
 			var windowHalfX = window.innerWidth >> 1;
 			var windowHalfY = window.innerHeight >> 1;
 
-            var render_canvas = 1, render_gl = 1;
-            var has_gl = 0;
-            
-            var bcanvas = document.getElementById("rcanvas");
-            var bwebgl = document.getElementById("rwebgl");
-            
+			var render_canvas = 1, render_gl = 1;
+			var has_gl = 0;
+			
+			var bcanvas = document.getElementById("rcanvas");
+			var bwebgl = document.getElementById("rwebgl");
+			
 			document.addEventListener('mousemove', onDocumentMouseMove, false);
 
 			init();
-            
+			
 			loop();
-            
-            render_canvas = !has_gl;
-            bwebgl.style.display = has_gl ? "inline" : "none";
-            bcanvas.className = render_canvas ? "button" : "button inactive";
-            
+			
+			render_canvas = !has_gl;
+			bwebgl.style.display = has_gl ? "inline" : "none";
+			bcanvas.className = render_canvas ? "button" : "button inactive";
+			
 			setInterval(loop, 1000/60);
-            
-            function addMesh( geometry, scale, x, y, z, rx, ry, rz, material ) {
-                
-                mesh = new THREE.Mesh( geometry, material );
-                mesh.scale.x = mesh.scale.y = mesh.scale.z = scale;
-                mesh.position.x = x;
-                mesh.position.y = y;
-                mesh.position.z = z;
-                mesh.rotation.x = rx;
-                mesh.rotation.y = ry;
-                mesh.rotation.z = rz;
-                mesh.overdraw = true;
-                mesh.updateMatrix();
-                scene.addObject(mesh);
-                
-            }
-            
+			
+			function addMesh( geometry, scale, x, y, z, rx, ry, rz, material ) {
+				
+				mesh = new THREE.Mesh( geometry, material );
+				mesh.scale.x = mesh.scale.y = mesh.scale.z = scale;
+				mesh.position.x = x;
+				mesh.position.y = y;
+				mesh.position.z = z;
+				mesh.rotation.x = rx;
+				mesh.rotation.y = ry;
+				mesh.rotation.z = rz;
+				mesh.overdraw = true;
+				mesh.updateMatrix();
+				scene.addObject(mesh);
+				
+			}
+			
 			function init() {
 
 				container = document.createElement('div');
 				document.body.appendChild(container);
 
 				camera = new THREE.Camera( 75, SCREEN_WIDTH / SCREEN_HEIGHT, 1, 100000 );
-                camera.position.z = 1000;
-                camera.updateMatrix();
+				camera.position.z = 1000;
+				camera.updateMatrix();
 
 				scene = new THREE.Scene();
 
 				// LIGHTS
 
-                var ambient = new THREE.AmbientLight( 0x101010 );
+				var ambient = new THREE.AmbientLight( 0x101010 );
 				scene.addLight( ambient );
 
-                directionalLight = new THREE.DirectionalLight( 0xffffff, 1.0 );
-                directionalLight.position.x = 1;
-                directionalLight.position.y = 1;
-                directionalLight.position.z = 2;
+				directionalLight = new THREE.DirectionalLight( 0xffffff, 1.0 );
+				directionalLight.position.x = 1;
+				directionalLight.position.y = 1;
+				directionalLight.position.z = 2;
 				directionalLight.position.normalize();
 				scene.addLight( directionalLight );
 
 				pointLight = new THREE.PointLight( 0xffffff );
-                pointLight.position.x = 0;
-                pointLight.position.y = 0;
-                pointLight.position.z = 0;
+				pointLight.position.x = 0;
+				pointLight.position.y = 0;
+				pointLight.position.z = 0;
 				scene.addLight( pointLight );
 
-                // light representation
-                sphere = new Sphere( 100, 16, 8, 1 );
-                lightMesh = new THREE.Mesh( sphere, new THREE.MeshColorFillMaterial( 0xffaa00 ) );
-                lightMesh.scale.x = lightMesh.scale.y = lightMesh.scale.z = 0.05;
-                lightMesh.position = pointLight.position;
-                lightMesh.overdraw = true;
-                lightMesh.updateMatrix();
-                scene.addObject(lightMesh);
-
-                // material samples
-                sphere = new Sphere( 100, 32, 32, 1 );
-
-                var y1 = 0, y2 = -200;
-                
-                addMesh( sphere, 1, -600, y1, 0, 0,0,0, new THREE.MeshPhongMaterial( 0x050505, 0x000000, 0x555555, 30, 1.0 ) );
-                addMesh( sphere, 1, -600, y2, 0, 0,0,0, new THREE.MeshColorFillMaterial( 0x050505 ) );
-
-                addMesh( sphere, 1, -400, y1, 0, 0,0,0, new THREE.MeshPhongMaterial( 0x000000, 0xffffff, 0x555555, 30, 1.0 ) );
-                addMesh( sphere, 1, -400, y2, 0, 0,0,0, new THREE.MeshColorFillMaterial( 0xffffff ) );
-
-                addMesh( sphere, 1, -200, y1, 0, 0,0,0, new THREE.MeshPhongMaterial( 0x000000, 0xff5500, 0x555555, 10, 1.0 ) );
-                addMesh( sphere, 1, -200, y2, 0, 0,0,0, new THREE.MeshColorFillMaterial( 0xff5500 ) );
-
-                addMesh( sphere, 1,    0, y1, 0, 0,0,0, new THREE.MeshPhongMaterial( 0x000000, 0xffaa00, 0x555555, 30, 1.0 ) );
-                addMesh( sphere, 1,    0, y2, 0, 0,0,0, new THREE.MeshColorFillMaterial( 0xffaa00 ) );
-
-                addMesh( sphere, 1,  200, y1, 0, 0,0,0, new THREE.MeshPhongMaterial( 0x000000, 0x55ff00, 0x555555, 30, 1.0 ) );
-                addMesh( sphere, 1,  200, y2, 0, 0,0,0, new THREE.MeshColorFillMaterial( 0x55ff00 ) );
-
-                addMesh( sphere, 1,  400, y1, 0, 0,0,0, new THREE.MeshPhongMaterial( 0x000000, 0x0055ff, 0x555555, 30, 1.0 ) );
-                addMesh( sphere, 1,  400, y2, 0, 0,0,0, new THREE.MeshColorFillMaterial( 0x0055ff ) );
-
-                addMesh( sphere, 1,  600, y1, 0, 0,0,0, new THREE.MeshPhongMaterial( 0x000000, 0x5500ff, 0x555555, 30, 1.0 ) );
-                addMesh( sphere, 1,  600, y2, 0, 0,0,0, new THREE.MeshColorFillMaterial( 0x5500ff ) );
-
-                if ( render_gl ) {
-                    try {
-                        webglRenderer = new THREE.WebGLRenderer( scene );
-                        webglRenderer.setSize( SCREEN_WIDTH, SCREEN_HEIGHT );
-                        container.appendChild( webglRenderer.domElement );
-                        has_gl = 1;
-                    }
-                    catch (e) {
-                    }
-                }
-                
-                if( render_canvas ) {
-                    canvasRenderer = new THREE.CanvasRenderer();
-                    canvasRenderer.setSize( SCREEN_WIDTH, SCREEN_HEIGHT );
-                    container.appendChild( canvasRenderer.domElement );
-                }
+				// light representation
+				sphere = new Sphere( 100, 16, 8, 1 );
+				lightMesh = new THREE.Mesh( sphere, new THREE.MeshColorFillMaterial( 0xffaa00 ) );
+				lightMesh.scale.x = lightMesh.scale.y = lightMesh.scale.z = 0.05;
+				lightMesh.position = pointLight.position;
+				lightMesh.overdraw = true;
+				lightMesh.updateMatrix();
+				scene.addObject(lightMesh);
+
+				// material samples
+				sphere = new Sphere( 100, 32, 32, 1 );
+
+				var y1 = 0, y2 = -200;
+				
+				addMesh( sphere, 1, -600, y1, 0, 0,0,0, new THREE.MeshPhongMaterial( 0x050505, 0x000000, 0x555555, 30, 1.0 ) );
+				addMesh( sphere, 1, -600, y2, 0, 0,0,0, new THREE.MeshColorFillMaterial( 0x050505 ) );
+
+				addMesh( sphere, 1, -400, y1, 0, 0,0,0, new THREE.MeshPhongMaterial( 0x000000, 0xffffff, 0x555555, 30, 1.0 ) );
+				addMesh( sphere, 1, -400, y2, 0, 0,0,0, new THREE.MeshColorFillMaterial( 0xffffff ) );
+
+				addMesh( sphere, 1, -200, y1, 0, 0,0,0, new THREE.MeshPhongMaterial( 0x000000, 0xff5500, 0x555555, 10, 1.0 ) );
+				addMesh( sphere, 1, -200, y2, 0, 0,0,0, new THREE.MeshColorFillMaterial( 0xff5500 ) );
+
+				addMesh( sphere, 1,    0, y1, 0, 0,0,0, new THREE.MeshPhongMaterial( 0x000000, 0xffaa00, 0x555555, 30, 1.0 ) );
+				addMesh( sphere, 1,    0, y2, 0, 0,0,0, new THREE.MeshColorFillMaterial( 0xffaa00 ) );
+
+				addMesh( sphere, 1,  200, y1, 0, 0,0,0, new THREE.MeshPhongMaterial( 0x000000, 0x55ff00, 0x555555, 30, 1.0 ) );
+				addMesh( sphere, 1,  200, y2, 0, 0,0,0, new THREE.MeshColorFillMaterial( 0x55ff00 ) );
+
+				addMesh( sphere, 1,  400, y1, 0, 0,0,0, new THREE.MeshPhongMaterial( 0x000000, 0x0055ff, 0x555555, 30, 1.0 ) );
+				addMesh( sphere, 1,  400, y2, 0, 0,0,0, new THREE.MeshColorFillMaterial( 0x0055ff ) );
+
+				addMesh( sphere, 1,  600, y1, 0, 0,0,0, new THREE.MeshPhongMaterial( 0x000000, 0x5500ff, 0x555555, 30, 1.0 ) );
+				addMesh( sphere, 1,  600, y2, 0, 0,0,0, new THREE.MeshColorFillMaterial( 0x5500ff ) );
+
+				if ( render_gl ) {
+					try {
+						webglRenderer = new THREE.WebGLRenderer( scene );
+						webglRenderer.setSize( SCREEN_WIDTH, SCREEN_HEIGHT );
+						container.appendChild( webglRenderer.domElement );
+						has_gl = 1;
+					}
+					catch (e) {
+					}
+				}
+				
+				if( render_canvas ) {
+					canvasRenderer = new THREE.CanvasRenderer();
+					canvasRenderer.setSize( SCREEN_WIDTH, SCREEN_HEIGHT );
+					container.appendChild( canvasRenderer.domElement );
+				}
 
 
 				stats = new Stats();
 				stats.domElement.style.position = 'absolute';
 				stats.domElement.style.top = '0px';
-                stats.domElement.style.zIndex = 100;
+				stats.domElement.style.zIndex = 100;
 				container.appendChild( stats.domElement );
-                
-                bcanvas.addEventListener("click", toggleCanvas, false);
-                bwebgl.addEventListener("click", toggleWebGL, false);
-
-                function createModel() {
-                    
-                    geometry = new Torus( );
-                    
-                    var s = 80, t = s + 20, y = 200;
-                    
-                    addMesh( geometry, s, -6*t, y, 0, 1.57,0,0, new THREE.MeshPhongMaterial( 0x000000, 0x000000, 0x333333, 10, 1.0 ) );
-                    addMesh( geometry, s, -4*t, y, 0, 1.57,0,0, new THREE.MeshPhongMaterial( 0x030303, 0x888888, 0x333333, 10, 1.0 ) );
-                    addMesh( geometry, s, -2*t, y, 0, 1.57,0,0, new THREE.MeshPhongMaterial( 0x030303, 0x030303, 0xff5500, 10, 1.0 ) );
-                    addMesh( geometry, s,    0, y, 0, 1.57,0,0, new THREE.MeshPhongMaterial( 0x030303, 0x030303, 0xffaa00, 10, 1.0 ) );
-                    addMesh( geometry, s,  2*t, y, 0, 1.57,0,0, new THREE.MeshPhongMaterial( 0x030303, 0x030303, 0x55ff00, 10, 1.0 ) );
-                    addMesh( geometry, s,  4*t, y, 0, 1.57,0,0, new THREE.MeshPhongMaterial( 0x030303, 0x030303, 0x0055ff, 10, 1.0 ) );
-                    addMesh( geometry, s,  6*t, y, 0, 1.57,0,0, new THREE.MeshPhongMaterial( 0x030303, 0x030303, 0x5500ff, 10, 1.0 ) );
-
-                }
-
-                loadAsync( "obj/torus/Torus.js", createModel);
+				
+				bcanvas.addEventListener("click", toggleCanvas, false);
+				bwebgl.addEventListener("click", toggleWebGL, false);
+
+				var loader = new THREE.Loader();
+				loader.loadAsync( "obj/torus/Torus.js", function() { createScene( new Torus() ) } );
+				//loader.loadWorker( "obj/torus/Torus_slim.js", function( geometry ) { createScene( geometry ) } );
+
+			}
+
+			function createScene( geometry ) {
+				
+				var s = 80, t = s + 20, y = 200;
+				
+				addMesh( geometry, s, -6*t, y, 0, 1.57,0,0, new THREE.MeshPhongMaterial( 0x000000, 0x000000, 0x333333, 10, 1.0 ) );
+				addMesh( geometry, s, -4*t, y, 0, 1.57,0,0, new THREE.MeshPhongMaterial( 0x030303, 0x888888, 0x333333, 10, 1.0 ) );
+				addMesh( geometry, s, -2*t, y, 0, 1.57,0,0, new THREE.MeshPhongMaterial( 0x030303, 0x030303, 0xff5500, 10, 1.0 ) );
+				addMesh( geometry, s,    0, y, 0, 1.57,0,0, new THREE.MeshPhongMaterial( 0x030303, 0x030303, 0xffaa00, 10, 1.0 ) );
+				addMesh( geometry, s,  2*t, y, 0, 1.57,0,0, new THREE.MeshPhongMaterial( 0x030303, 0x030303, 0x55ff00, 10, 1.0 ) );
+				addMesh( geometry, s,  4*t, y, 0, 1.57,0,0, new THREE.MeshPhongMaterial( 0x030303, 0x030303, 0x0055ff, 10, 1.0 ) );
+				addMesh( geometry, s,  6*t, y, 0, 1.57,0,0, new THREE.MeshPhongMaterial( 0x030303, 0x030303, 0x5500ff, 10, 1.0 ) );
 
 			}
 
-            function loadAsync( url, callback ) {
-                
-                var el = document.createElement( 'script' );
-                el.type = 'text/javascript';
-                el.onload = callback;
-                el.src = url;
-                document.getElementsByTagName("head")[0].appendChild(el);
+			function loadAsync( url, callback ) {
+				
+				var el = document.createElement( 'script' );
+				el.type = 'text/javascript';
+				el.onload = callback;
+				el.src = url;
+				document.getElementsByTagName("head")[0].appendChild(el);
 
-            }
+			}
 
-            
+			
 			function onDocumentMouseMove(event) {
 
 				mouseX = ( event.clientX - windowHalfX );
@@ -277,28 +278,28 @@
 
 			}
 
-            var r = 0;
-            
+			var r = 0;
+			
 			function loop() {
 
 				camera.position.x += ( mouseX - camera.position.x ) * .05;
 				camera.position.y += ( - mouseY - camera.position.y ) * .05;
 				camera.updateMatrix();
-               
-                
-                /*
-                for(var i=0; i" + e.innerHTML;
-                
-            }
-            
-            function toggleCanvas() {
-            
-                render_canvas = !render_canvas;
-                bcanvas.className = render_canvas ? "button" : "button inactive";
-                
-                render_gl = !render_canvas;
-                bwebgl.className = render_gl ? "button" : "button inactive";
-                
-                if( has_gl )
-                    webglRenderer.domElement.style.display = render_gl ? "block" : "none";
-                
-                canvasRenderer.domElement.style.display = render_canvas ? "block" : "none";
-                
-            }
-            
-            function toggleWebGL() {
-            
-                render_gl = !render_gl;
-                bwebgl.className = render_gl ? "button" : "button inactive";
-                
-                render_canvas = !render_gl;
-                bcanvas.className = render_canvas ? "button" : "button inactive";
-                
-                if( has_gl )
-                    webglRenderer.domElement.style.display = render_gl ? "block" : "none";
-                    
-                canvasRenderer.domElement.style.display = render_canvas ? "block" : "none";
-                
-            }
+			function log(text) {
+			
+				var e = document.getElementById("log");
+				e.innerHTML = text + "
" + e.innerHTML; + + } + + function toggleCanvas() { + + render_canvas = !render_canvas; + bcanvas.className = render_canvas ? "button" : "button inactive"; + + render_gl = !render_canvas; + bwebgl.className = render_gl ? "button" : "button inactive"; + + if( has_gl ) + webglRenderer.domElement.style.display = render_gl ? "block" : "none"; + + canvasRenderer.domElement.style.display = render_canvas ? "block" : "none"; + + } + + function toggleWebGL() { + + render_gl = !render_gl; + bwebgl.className = render_gl ? "button" : "button inactive"; + + render_canvas = !render_gl; + bcanvas.className = render_canvas ? "button" : "button inactive"; + + if( has_gl ) + webglRenderer.domElement.style.display = render_gl ? "block" : "none"; + + canvasRenderer.domElement.style.display = render_canvas ? "block" : "none"; + + } diff --git a/src/io/Loader.js b/src/io/Loader.js new file mode 100644 index 0000000000000000000000000000000000000000..02d95cc05746ff6dc11982f97df28a345f381ed4 --- /dev/null +++ b/src/io/Loader.js @@ -0,0 +1,270 @@ +/** + * @author alteredq / http://alteredqualia.com/ + */ + +THREE.Loader = function() { +}; + +THREE.Loader.prototype = { + + loadAsync: function( url, callback ) { + + var element = document.createElement( 'script' ); + element.type = 'text/javascript'; + element.onload = callback; + element.src = url; + document.getElementsByTagName( "head" )[ 0 ].appendChild( element ); + + }, + + loadWorker: function ( url, callback, urlbase ) { + + var s = (new Date).getTime(), + worker = new Worker( url ); + + worker.onmessage = function( event ) { + + THREE.Loader.prototype.createModel( event.data, callback, urlbase ); + + }; + + worker.postMessage( s ); + + }, + + createModel: function ( data, callback, urlbase ) { + + var Model = function ( urlbase ) { + + var scope = this; + + THREE.Geometry.call(this); + + init_materials(); + init_vertices(); + init_uvs(); + init_faces(); + + this.computeCentroids(); + this.computeNormals(); + + function init_vertices() { + + var i, l, d; + + for( i = 0, l = data.vertices.length; i < l; i++ ) { + + d = data.vertices[i]; + v( d[0], d[1], d[2] ); + + } + + } + + function init_uvs() { + + var i, l, d; + + for( i = 0, l = data.uvs.length; i < l; i++ ) { + + d = data.uvs[i]; + if ( d.length == 6 ) { + + uv( d[0], d[1], d[2], d[3], d[4], d[5] ); + + } else if ( d.length == 8 ) { + + uv( d[0], d[1], d[2], d[3], d[4], d[5], d[6], d[7] ); + + } + + } + + } + + function init_faces() { + + var i, l, d; + + for( i = 0, l = data.faces.length; i < l; i++ ) { + + d = data.faces[i]; + + if ( d.length == 4 ) { + + f3( d[0], d[1], d[2], d[3] ); + + } else if ( d.length == 5 ) { + + f4( d[0], d[1], d[2], d[3], d[4] ); + + } else if ( d.length == 7 ) { + + f3n( d[0], d[1], d[2], d[3], d[4], d[5], d[6] ); + + } else if ( d.length == 9 ) { + + f4n( d[0], d[1], d[2], d[3], d[4], d[5], d[6], d[7], d[8] ); + + } + + } + + } + + function v( x, y, z ) { + + scope.vertices.push( new THREE.Vertex( new THREE.Vector3( x, y, z ) ) ); + + } + + function f3( a, b, c, mi ) { + + var material = scope.materials[ mi ]; + scope.faces.push( new THREE.Face3( a, b, c, null, material ) ); + + } + + function f4( a, b, c, d, mi ) { + + var material = scope.materials[ mi ]; + scope.faces.push( new THREE.Face4( a, b, c, d, null, material ) ); + + } + + function f3n( a, b, c, mi, n1, n2, n3 ) { + + var material = scope.materials[ mi ], + n1x = data.normals[n1][0], + n1y = data.normals[n1][1], + n1z = data.normals[n1][2], + n2x = data.normals[n2][0], + n2y = data.normals[n2][1], + n2z = data.normals[n2][2], + n3x = data.normals[n3][0], + n3y = data.normals[n3][1], + n3z = data.normals[n3][2]; + + scope.faces.push( new THREE.Face3( a, b, c, + [new THREE.Vector3( n1x, n1y, n1z ), new THREE.Vector3( n2x, n2y, n2z ), new THREE.Vector3( n3x, n3y, n3z )], + material ) ); + + } + + function f4n( a, b, c, d, mi, n1, n2, n3, n4 ) { + + var material = scope.materials[ mi ], + n1x = data.normals[n1][0], + n1y = data.normals[n1][1], + n1z = data.normals[n1][2], + n2x = data.normals[n2][0], + n2y = data.normals[n2][1], + n2z = data.normals[n2][2], + n3x = data.normals[n3][0], + n3y = data.normals[n3][1], + n3z = data.normals[n3][2], + n4x = data.normals[n4][0], + n4y = data.normals[n4][1], + n4z = data.normals[n4][2]; + + scope.faces.push( new THREE.Face4( a, b, c, d, + [new THREE.Vector3( n1x, n1y, n1z ), new THREE.Vector3( n2x, n2y, n2z ), new THREE.Vector3( n3x, n3y, n3z ), new THREE.Vector3( n4x, n4y, n4z )], + material ) ); + + } + + function uv( u1, v1, u2, v2, u3, v3, u4, v4 ) { + + var uv = []; + uv.push( new THREE.UV( u1, v1 ) ); + uv.push( new THREE.UV( u2, v2 ) ); + uv.push( new THREE.UV( u3, v3 ) ); + if ( u4 && v4 ) uv.push( new THREE.UV( u4, v4 ) ); + scope.uvs.push( uv ); + + } + + function init_materials() { + + scope.materials = []; + for( var i = 0; i < data.materials.length; ++i ) { + scope.materials[i] = [ create_material( data.materials[i], urlbase ) ]; + } + + } + + function is_pow2( n ) { + + var l = Math.log(n) / Math.LN2; + return Math.floor(l) == l; + + } + + function nearest_pow2(n) { + + var l = Math.log(n) / Math.LN2; + return Math.pow( 2, Math.round(l) ); + + } + + function create_material( m ) { + + var material, texture, image, color; + + if( m.map_diffuse && urlbase ) { + + texture = document.createElement( 'canvas' ); + material = new THREE.MeshBitmapMaterial( texture ); + + image = new Image(); + image.onload = function () { + + if ( !is_pow2( this.width ) || !is_pow2( this.height ) ) { + + var w = nearest_pow2( this.width ), + h = nearest_pow2( this.height ); + + material.bitmap.width = w; + material.bitmap.height = h; + material.bitmap.getContext("2d").drawImage( this, 0, 0, w, h ); + + } else { + + material.bitmap = this; + + } + + material.loaded = 1; + + }; + + image.src = urlbase + "/" + m.map_diffuse; + + } else if( m.col_diffuse ) { + + color = (m.col_diffuse[0]*255 << 16) + (m.col_diffuse[1]*255 << 8) + m.col_diffuse[2]*255; + material = new THREE.MeshColorFillMaterial( color, m.transparency ); + + } else if( m.a_dbg_color ) { + + material = new THREE.MeshColorFillMaterial( m.a_dbg_color ); + + } else { + + material = new THREE.MeshColorFillMaterial( 0xffeeeeee ); + + } + + return material; + } + + } + + Model.prototype = new THREE.Geometry(); + Model.prototype.constructor = Model; + + callback( new Model( urlbase ) ); + + } + +}; \ No newline at end of file diff --git a/utils/Builder.py b/utils/Builder.py index 17ba47b82f9f3d06599f51fd10d0495b22462544..983741ad78d3a7d0de8fba15c54d4d4d1cbd4e8f 100644 --- a/utils/Builder.py +++ b/utils/Builder.py @@ -20,6 +20,7 @@ files.append('core/Face4.js') files.append('core/UV.js') files.append('core/Geometry.js') files.append('cameras/Camera.js') +files.append('io/Loader.js') files.append('lights/Light.js') files.append('lights/AmbientLight.js') files.append('lights/DirectionalLight.js') diff --git a/utils/BuilderCanvas.py b/utils/BuilderCanvas.py index 4691bde180706ebf9e94096093de3f535fca2c92..89cf76572c0e3561ffcfdecec1325eca1bd312da 100644 --- a/utils/BuilderCanvas.py +++ b/utils/BuilderCanvas.py @@ -20,6 +20,7 @@ files.append('core/Face4.js') files.append('core/UV.js') files.append('core/Geometry.js') files.append('cameras/Camera.js') +files.append('io/Loader.js') files.append('lights/Light.js') files.append('lights/AmbientLight.js') files.append('lights/DirectionalLight.js') diff --git a/utils/BuilderDOM.py b/utils/BuilderDOM.py index 659cf90e2703364ed0807696f19ad03ce4e88550..510f5e73af819a998be439feabcd6e9cab1ea6c4 100644 --- a/utils/BuilderDOM.py +++ b/utils/BuilderDOM.py @@ -19,6 +19,7 @@ files.append('core/Face3.js') files.append('core/Face4.js') files.append('core/UV.js') files.append('cameras/Camera.js') +files.append('io/Loader.js') files.append('objects/Object3D.js') files.append('objects/Particle.js') files.append('materials/ParticleDOMMaterial.js') diff --git a/utils/BuilderDebug.py b/utils/BuilderDebug.py index f9f553d6f5551aee2300285c4320e488cca2001f..ccfca8001719bf582c643454d28fc2f87e10fcd9 100644 --- a/utils/BuilderDebug.py +++ b/utils/BuilderDebug.py @@ -20,6 +20,7 @@ files.append('core/Face4.js') files.append('core/UV.js') files.append('core/Geometry.js') files.append('cameras/Camera.js') +files.append('io/Loader.js') files.append('lights/Light.js') files.append('lights/AmbientLight.js') files.append('lights/DirectionalLight.js') diff --git a/utils/BuilderSVG.py b/utils/BuilderSVG.py index b542bb7f2dccdcff7d9fbe081287586be22b03e0..32d3712d43dbc71c995d20220f1044d9aea37dbb 100644 --- a/utils/BuilderSVG.py +++ b/utils/BuilderSVG.py @@ -20,6 +20,7 @@ files.append('core/Face4.js') files.append('core/UV.js') files.append('core/Geometry.js') files.append('cameras/Camera.js') +files.append('io/Loader.js') files.append('lights/Light.js') files.append('lights/AmbientLight.js') files.append('lights/DirectionalLight.js') diff --git a/utils/BuilderWebGL.py b/utils/BuilderWebGL.py index 6c14d14c7740e91847d1da57b4e3d3885061aedd..f93cc1ad4129e92ca97a0c2c32bd2fd1f7cea34e 100644 --- a/utils/BuilderWebGL.py +++ b/utils/BuilderWebGL.py @@ -20,6 +20,7 @@ files.append('core/Face4.js') files.append('core/UV.js') files.append('core/Geometry.js') files.append('cameras/Camera.js') +files.append('io/Loader.js') files.append('lights/Light.js') files.append('lights/AmbientLight.js') files.append('lights/DirectionalLight.js') diff --git a/utils/REVISION b/utils/REVISION index f64f5d8d85ac0230d36724bd7e6ba351a95b4942..9902f17848a8974ab57d57999b74a63198fe6e23 100644 --- a/utils/REVISION +++ b/utils/REVISION @@ -1 +1 @@ -27 +28 diff --git a/utils/exporters/convert_obj_threejs_slim.py b/utils/exporters/convert_obj_threejs_slim.py new file mode 100644 index 0000000000000000000000000000000000000000..395c5739831b9b8a3e2b8cea76d3f91bc64f3e99 --- /dev/null +++ b/utils/exporters/convert_obj_threejs_slim.py @@ -0,0 +1,723 @@ +"""Convert Wavefront OBJ / MTL files into Three.js (slim models version, to be used with web worker loader) + +------------------------- +How to use this converter +------------------------- + +python convert_obj_threejs_slim.py -i filename.obj -o filename.js [-a center|top|bottom] [-s smooth|flat] + +Note: by default, model is centered (middle of bounding box goes to 0,0,0) + and uses smooth shading (if there were vertex normals in the original + model). + +-------------------------------------------------- +How to use generated JS file in your HTML document +-------------------------------------------------- + + + + ... + + + +------------------------------------- +Parsers based on formats descriptions +------------------------------------- + + http://en.wikipedia.org/wiki/Obj + http://en.wikipedia.org/wiki/Material_Template_Library + +------------------- +Current limitations +------------------- + + - for the moment, only diffuse color and texture are used + (will need to extend shaders / renderers / materials in Three) + + - models can have more than 65,536 vertices, + but in most cases it will not work well with browsers, + which currently seem to have troubles with handling + large JS files + + - texture coordinates can be wrong in canvas renderer + (there is crude normalization, but it doesn't + work for all cases) + + - smoothing can be turned on/off only for the whole mesh + +---------------------------------------------- +How to get proper OBJ + MTL files with Blender +---------------------------------------------- + + 0. Remove default cube (press DEL and ENTER) + + 1. Import / create model + + 2. Select all meshes (Select -> Select All by Type -> Mesh) + + 3. Export to OBJ (File -> Export -> Wavefront .obj) [*] + - enable following options in exporter + Material Groups + Rotate X90 + Apply Modifiers + High Quality Normals + Copy Images + Selection Only + Objects as OBJ Objects + UVs + Normals + Materials + Edges + + - select empty folder + - give your exported file name with "obj" extension + - click on "Export OBJ" button + + 4. Your model is now all files in this folder (OBJ, MTL, number of images) + - this converter assumes all files staying in the same folder, + (OBJ / MTL files use relative paths) + + - for WebGL, textures must be power of 2 sized + + [*] If OBJ export fails (Blender 2.54 beta), patch your Blender installation + following instructions here: + + http://www.blendernation.com/2010/09/12/blender-2-54-beta-released/ + +------ +Author +------ +AlteredQualia http://alteredqualia.com + +""" + +import fileinput +import operator +import random +import os.path +import getopt +import sys + +# ##################################################### +# Configuration +# ##################################################### +ALIGN = "center" # center bottom top none + +SHADING = "smooth" # flat smooth + +# default colors for debugging (each material gets one distinct color): +# white, red, green, blue, yellow, cyan, magenta +COLORS = [0xffeeeeee, 0xffee0000, 0xff00ee00, 0xff0000ee, 0xffeeee00, 0xff00eeee, 0xffee00ee] + +# ##################################################### +# Templates +# ##################################################### +TEMPLATE_FILE = u"""\ +// Converted from: %(fname)s +// vertices: %(nvertex)d +// faces: %(nface)d +// materials: %(nmaterial)d +// +// Generated with OBJ -> Three.js converter +// http://github.com/alteredq/three.js/blob/master/utils/exporters/convert_obj_threejs_slim.py + + +var model = { + 'materials': [%(materials)s], + + 'normals': [%(normals)s], + + 'vertices': [%(vertices)s], + + 'uvs': [%(uvs)s], + + 'faces': [%(faces)s], + + 'end': (new Date).getTime() + } + +postMessage( model ); +""" + +TEMPLATE_VERTEX = "[%f,%f,%f]" + +TEMPLATE_UV3 = "[%f,%f,%f,%f,%f,%f]" +TEMPLATE_UV4 = "[%f,%f,%f,%f,%f,%f,%f,%f]" + +TEMPLATE_FACE3 = "[%d,%d,%d,%d]" +TEMPLATE_FACE4 = "[%d,%d,%d,%d,%d]" + +TEMPLATE_FACE3N = "[%d,%d,%d,%d,%d,%d,%d]" +TEMPLATE_FACE4N = "[%d,%d,%d,%d,%d,%d,%d,%d,%d]" + +TEMPLATE_N = "[%f,%f,%f]" + +# ##################################################### +# Utils +# ##################################################### +def file_exists(filename): + """Return true if file exists and is accessible for reading. + + Should be safer than just testing for existence due to links and + permissions magic on Unix filesystems. + + @rtype: boolean + """ + + try: + f = open(filename, 'r') + f.close() + return True + except IOError: + return False + + +def get_name(fname): + """Create model name based of filename ("path/fname.js" -> "fname"). + """ + + return os.path.basename(fname).split(".")[0] + +def bbox(vertices): + """Compute bounding box of vertex array. + """ + + if len(vertices)>0: + minx = maxx = vertices[0][0] + miny = maxy = vertices[0][1] + minz = maxz = vertices[0][2] + + for v in vertices[1:]: + if v[0]maxx: + maxx = v[0] + + if v[1]maxy: + maxy = v[1] + + if v[2]maxz: + maxz = v[2] + + return { 'x':[minx,maxx], 'y':[miny,maxy], 'z':[minz,maxz] } + + else: + return { 'x':[0,0], 'y':[0,0], 'z':[0,0] } + +def translate(vertices, t): + """Translate array of vertices by vector t. + """ + + for i in xrange(len(vertices)): + vertices[i][0] += t[0] + vertices[i][1] += t[1] + vertices[i][2] += t[2] + +def center(vertices): + """Center model (middle of bounding box). + """ + + bb = bbox(vertices) + + cx = bb['x'][0] + (bb['x'][1] - bb['x'][0])/2.0 + cy = bb['y'][0] + (bb['y'][1] - bb['y'][0])/2.0 + cz = bb['z'][0] + (bb['z'][1] - bb['z'][0])/2.0 + + translate(vertices, [-cx,-cy,-cz]) + +def top(vertices): + """Align top of the model with the floor (Y-axis) and center it around X and Z. + """ + + bb = bbox(vertices) + + cx = bb['x'][0] + (bb['x'][1] - bb['x'][0])/2.0 + cy = bb['y'][1] + cz = bb['z'][0] + (bb['z'][1] - bb['z'][0])/2.0 + + translate(vertices, [-cx,-cy,-cz]) + +def bottom(vertices): + """Align bottom of the model with the floor (Y-axis) and center it around X and Z. + """ + + bb = bbox(vertices) + + cx = bb['x'][0] + (bb['x'][1] - bb['x'][0])/2.0 + cy = bb['y'][0] + cz = bb['z'][0] + (bb['z'][1] - bb['z'][0])/2.0 + + translate(vertices, [-cx,cy,-cz]) + +def normalize(v): + """Normalize 3d vector""" + + l = math.sqrt(v[0]*v[0] + v[1]*v[1] + v[2]*v[2]) + v[0] /= l + v[1] /= l + v[2] /= l + +# ##################################################### +# MTL parser +# ##################################################### +def parse_mtl(fname): + """Parse MTL file. + """ + + materials = {} + + for line in fileinput.input(fname): + chunks = line.split() + if len(chunks) > 0: + + # Material start + # newmtl identifier + if chunks[0] == "newmtl" and len(chunks) == 2: + identifier = chunks[1] + if not identifier in materials: + materials[identifier] = {} + + # Diffuse color + # Kd 1.000 1.000 1.000 + if chunks[0] == "Kd" and len(chunks) == 4: + materials[identifier]["col_diffuse"] = [float(chunks[1]), float(chunks[2]), float(chunks[3])] + + # Ambient color + # Ka 1.000 1.000 1.000 + if chunks[0] == "Ka" and len(chunks) == 4: + materials[identifier]["col_ambient"] = [float(chunks[1]), float(chunks[2]), float(chunks[3])] + + # Specular color + # Ks 1.000 1.000 1.000 + if chunks[0] == "Ks" and len(chunks) == 4: + materials[identifier]["col_specular"] = [float(chunks[1]), float(chunks[2]), float(chunks[3])] + + # Specular coefficient + # Ns 154.000 + if chunks[0] == "Ns" and len(chunks) == 2: + materials[identifier]["specular_coef"] = float(chunks[1]) + + # Transparency + # Tr 0.9 or d 0.9 + if (chunks[0] == "Tr" or chunks[0] == "d") and len(chunks) == 2: + materials[identifier]["transparency"] = float(chunks[1]) + + # Optical density + # Ni 1.0 + if chunks[0] == "Ni" and len(chunks) == 2: + materials[identifier]["optical_density"] = float(chunks[1]) + + # Diffuse texture + # map_Kd texture_diffuse.jpg + if chunks[0] == "map_Kd" and len(chunks) == 2: + materials[identifier]["map_diffuse"] = chunks[1] + + # Ambient texture + # map_Ka texture_ambient.jpg + if chunks[0] == "map_Ka" and len(chunks) == 2: + materials[identifier]["map_ambient"] = chunks[1] + + # Specular texture + # map_Ks texture_specular.jpg + if chunks[0] == "map_Ks" and len(chunks) == 2: + materials[identifier]["map_specular"] = chunks[1] + + # Alpha texture + # map_d texture_alpha.png + if chunks[0] == "map_d" and len(chunks) == 2: + materials[identifier]["map_alpha"] = chunks[1] + + # Bump texture + # map_bump texture_bump.jpg or bump texture_bump.jpg + if (chunks[0] == "map_bump" or chunks[0] == "bump") and len(chunks) == 2: + materials[identifier]["map_bump"] = chunks[1] + + # Illumination + # illum 2 + # + # 0. Color on and Ambient off + # 1. Color on and Ambient on + # 2. Highlight on + # 3. Reflection on and Ray trace on + # 4. Transparency: Glass on, Reflection: Ray trace on + # 5. Reflection: Fresnel on and Ray trace on + # 6. Transparency: Refraction on, Reflection: Fresnel off and Ray trace on + # 7. Transparency: Refraction on, Reflection: Fresnel on and Ray trace on + # 8. Reflection on and Ray trace off + # 9. Transparency: Glass on, Reflection: Ray trace off + # 10. Casts shadows onto invisible surfaces + if chunks[0] == "illum" and len(chunks) == 2: + materials[identifier]["illumination"] = int(chunks[1]) + + return materials + +# ##################################################### +# OBJ parser +# ##################################################### +def parse_vertex(text): + """Parse text chunk specifying single vertex. + + Possible formats: + vertex index + vertex index / texture index + vertex index / texture index / normal index + vertex index / / normal index + """ + + v = 0 + t = 0 + n = 0 + + chunks = text.split("/") + + v = int(chunks[0]) + if len(chunks) > 1: + if chunks[1]: + t = int(chunks[1]) + if len(chunks) > 2: + if chunks[2]: + n = int(chunks[2]) + + return { 'v':v, 't':t, 'n':n } + +def parse_obj(fname): + """Parse OBJ file. + """ + + vertices = [] + normals = [] + uvs = [] + + faces = [] + + materials = {} + mcounter = 0 + mcurrent = 0 + + mtllib = "" + + # current face state + group = 0 + object = 0 + smooth = 0 + + for line in fileinput.input(fname): + chunks = line.split() + if len(chunks) > 0: + + # Vertices as (x,y,z) coordinates + # v 0.123 0.234 0.345 + if chunks[0] == "v" and len(chunks) == 4: + x = float(chunks[1]) + y = float(chunks[2]) + z = float(chunks[3]) + vertices.append([x,y,z]) + + # Normals in (x,y,z) form; normals might not be unit + # vn 0.707 0.000 0.707 + if chunks[0] == "vn" and len(chunks) == 4: + x = float(chunks[1]) + y = float(chunks[2]) + z = float(chunks[3]) + normals.append([x,y,z]) + + # Texture coordinates in (u,v[,w]) coordinates, w is optional + # vt 0.500 -1.352 [0.234] + if chunks[0] == "vt" and len(chunks) >= 3: + u = float(chunks[1]) + v = float(chunks[2]) + w = 0 + if len(chunks)>3: + w = float(chunks[3]) + uvs.append([u,v,w]) + + # Face + if chunks[0] == "f" and len(chunks) >= 4: + vertex_index = [] + uv_index = [] + normal_index = [] + + for v in chunks[1:]: + vertex = parse_vertex(v) + if vertex['v']: + vertex_index.append(vertex['v']) + if vertex['t']: + uv_index.append(vertex['t']) + if vertex['n']: + normal_index.append(vertex['n']) + + faces.append({ + 'vertex':vertex_index, + 'uv':uv_index, + 'normal':normal_index, + + 'material':mcurrent, + 'group':group, + 'object':object, + 'smooth':smooth, + }) + + # Group + if chunks[0] == "g" and len(chunks) == 2: + group = chunks[1] + + # Object + if chunks[0] == "o" and len(chunks) == 2: + object = chunks[1] + + # Materials definition + if chunks[0] == "mtllib" and len(chunks) == 2: + mtllib = chunks[1] + + # Material + if chunks[0] == "usemtl" and len(chunks) == 2: + material = chunks[1] + if not material in materials: + mcurrent = mcounter + materials[material] = mcounter + mcounter += 1 + else: + mcurrent = materials[material] + + # Smooth shading + if chunks[0] == "s" and len(chunks) == 2: + smooth = chunks[1] + + return faces, vertices, uvs, normals, materials, mtllib + +# ##################################################### +# Generator +# ##################################################### +def generate_vertex(v): + return TEMPLATE_VERTEX % (v[0], v[1], v[2]) + +def generate_uv(f, uvs): + ui = f['uv'] + if len(ui) == 3: + return TEMPLATE_UV3 % (uvs[ui[0]-1][0], 1.0 - uvs[ui[0]-1][1], + uvs[ui[1]-1][0], 1.0 - uvs[ui[1]-1][1], + uvs[ui[2]-1][0], 1.0 - uvs[ui[2]-1][1]) + elif len(ui) == 4: + return TEMPLATE_UV4 % (uvs[ui[0]-1][0], 1.0 - uvs[ui[0]-1][1], + uvs[ui[1]-1][0], 1.0 - uvs[ui[1]-1][1], + uvs[ui[2]-1][0], 1.0 - uvs[ui[2]-1][1], + uvs[ui[3]-1][0], 1.0 - uvs[ui[3]-1][1]) + return "" + +def generate_face(f): + vi = f['vertex'] + if f["normal"] and SHADING == "smooth": + ni = f['normal'] + if len(vi) == 3: + return TEMPLATE_FACE3N % (vi[0]-1, vi[1]-1, vi[2]-1, f['material'], ni[0]-1, ni[1]-1, ni[2]-1) + elif len(vi) == 4: + return TEMPLATE_FACE4N % (vi[0]-1, vi[1]-1, vi[2]-1, vi[3]-1, f['material'], ni[0]-1, ni[1]-1, ni[2]-1, ni[3]-1) + else: + if len(vi) == 3: + return TEMPLATE_FACE3 % (vi[0]-1, vi[1]-1, vi[2]-1, f['material']) + elif len(vi) == 4: + return TEMPLATE_FACE4 % (vi[0]-1, vi[1]-1, vi[2]-1, vi[3]-1, f['material']) + return "" + +def generate_normal(n): + return TEMPLATE_N % (n[0], n[1], n[2]) + +def generate_color(i): + """Generate hex color corresponding to integer. + + Colors should have well defined ordering. + First N colors are hardcoded, then colors are random + (must seed random number generator with deterministic value + before getting colors). + """ + + if i < len(COLORS): + return "0x%x" % COLORS[i] + else: + return "0x%x" % (int(0xffffff * random.random()) + 0xff000000) + +def value2string(v): + if type(v)==str and v[0] != "0": + return '"%s"' % v + return str(v) + +def generate_materials(mtl, materials): + """Generate JS array of materials objects + + JS material objects are basically prettified one-to-one + mappings of MTL properties in JSON format. + """ + + mtl_array = [] + for m in mtl: + index = materials[m] + + # add debug information + # materials should be sorted according to how + # they appeared in OBJ file (for the first time) + # this index is identifier used in face definitions + mtl[m]['a_dbg_name'] = m + mtl[m]['a_dbg_index'] = index + mtl[m]['a_dbg_color'] = generate_color(index) + + mtl_raw = ",\n".join(['\t"%s" : %s' % (n, value2string(v)) for n,v in sorted(mtl[m].items())]) + mtl_string = "\t{\n%s\n\t}" % mtl_raw + mtl_array.append([index, mtl_string]) + + return ",\n\n".join([m for i,m in sorted(mtl_array)]) + +def generate_mtl(materials): + """Generate dummy materials (if there is no MTL file). + """ + + mtl = {} + for m in materials: + index = materials[m] + mtl[m] = { + 'a_dbg_name': m, + 'a_dbg_index': index, + 'a_dbg_color': generate_color(index) + } + return mtl + +# ##################################################### +# API +# ##################################################### +def convert(infile, outfile): + """Convert infile.obj to outfile.js + + Here is where everything happens. If you need to automate conversions, + just import this file as Python module and call this method. + """ + + if not file_exists(infile): + print "Couldn't find [%s]" % infile + return + + faces, vertices, uvs, normals, materials, mtllib = parse_obj(infile) + + if ALIGN == "center": + center(vertices) + elif ALIGN == "bottom": + bottom(vertices) + elif ALIGN == "top": + top(vertices) + + random.seed(42) # to get well defined color order for materials + + uv_string = "" + if len(uvs)>0: + uv_string = ",".join([generate_uv(f, uvs) for f in faces]) + + + # default materials with debug colors for when + # there is no specified MTL / MTL loading failed, + # or if there were no materials / null materials + if not materials: + materials = { 'default':0 } + mtl = generate_mtl(materials) + + if mtllib: + # create full pathname for MTL (included from OBJ) + path = os.path.dirname(infile) + fname = os.path.join(path, mtllib) + + if file_exists(fname): + # override default materials with real ones from MTL + # (where they exist, otherwise keep defaults) + mtl.update(parse_mtl(fname)) + + else: + print "Couldn't find [%s]" % fname + + normals_string = "" + if SHADING == "smooth": + normals_string = ",".join(generate_normal(n) for n in normals) + + text = TEMPLATE_FILE % { + "name" : get_name(outfile), + "vertices" : ",".join([generate_vertex(v) for v in vertices]), + "faces" : ",".join([generate_face(f) for f in faces]), + "uvs" : uv_string, + "normals" : normals_string, + + "materials" : generate_materials(mtl, materials), + + "fname" : infile, + "nvertex" : len(vertices), + "nface" : len(faces), + "nmaterial" : len(materials) + } + + out = open(outfile, "w") + out.write(text) + out.close() + + print "%d vertices, %d faces, %d materials" % (len(vertices), len(faces), len(materials)) + +# ############################################################################# +# Helpers +# ############################################################################# +def usage(): + print "Usage: %s -i filename.obj -o filename.js [-a center|top|bottom] [-s flat|smooth]" % os.path.basename(sys.argv[0]) + +# ##################################################### +# Main +# ##################################################### +if __name__ == "__main__": + + # get parameters from the command line + try: + opts, args = getopt.getopt(sys.argv[1:], "hi:o:a:s:", ["help", "input=", "output=", "align=", "shading="]) + + except getopt.GetoptError: + usage() + sys.exit(2) + + infile = outfile = "" + + for o, a in opts: + if o in ("-h", "--help"): + usage() + sys.exit() + + elif o in ("-i", "--input"): + infile = a + + elif o in ("-o", "--output"): + outfile = a + + elif o in ("-a", "--align"): + if a in ("top", "bottom", "center"): + ALIGN = a + + elif o in ("-s", "--shading"): + if a in ("flat", "smooth"): + SHADING = a + + if infile == "" or outfile == "": + usage() + sys.exit(2) + + print "Converting [%s] into [%s] ..." % (infile, outfile) + convert(infile, outfile) + + \ No newline at end of file