import{a as H,b as Q,c as F,d as I,e as P} from"../chunk-1da54319833c650d.js";class Y{z;_;k;constructor(z=I.create(),_=P.create(),k=I.fromValues(1,1,1)){this.position=z;this.rotation=_;this.scale=k}toMat4(){return F.fromRotationTranslationScale(F.create(),this.rotation,this.position,this.scale)}}class J extends H{z;_;k;C;D;modelMatrix=F.create();projectionMatrix=F.create();_meshBuffer;constructor(z,_,k,C=new Y([0,0,-6]),D={}){super(z);this.app=z;this.mesh=_;this.shader=k;this.camera=C;this.config=D}get meshBuffer(){if(this._meshBuffer)return this._meshBuffer;throw new Error("mesh buffer not ready")}initializeMeshBuffer(){const z=this.app.gl,_=z.createBuffer();if(!_)throw new Error("failed to create mesh buffer");z.bindBuffer(z.ARRAY_BUFFER,_),z.bufferData(z.ARRAY_BUFFER,this.mesh.config.mesh,z.STATIC_DRAW),this._meshBuffer=_}initializeAttributes(){const z=this.app.gl;z.bindBuffer(z.ARRAY_BUFFER,this.meshBuffer);const _=this.shader.attrib("aVertexPosition");if(_!==-1)z.vertexAttribPointer(_,this.mesh.config.positionSize,z.FLOAT,!1,4*this.mesh.config.stride,0),z.enableVertexAttribArray(_),this.shader.bindAttrib(_,"aVertexPosition");if(this.mesh.config.colorSize!==0){const C=this.shader.attrib("aVertexColor");if(C!==-1)z.vertexAttribPointer(C,this.mesh.config.colorSize,z.FLOAT,!1,4*this.mesh.config.stride,4*this.mesh.config.positionSize),z.enableVertexAttribArray(C),this.shader.bindAttrib(C,"aVertexColor")}const k=this.shader.attrib("aTextureCoord");if(k!==-1)z.vertexAttribPointer(k,this.mesh.config.uvSize,z.FLOAT,!1,4*this.mesh.config.stride,4*(this.mesh.config.positionSize+this.mesh.config.colorSize)),z.enableVertexAttribArray(k),this.shader.bindAttrib(k,"aTextureCoord")}onStart(){F.perspective(this.projectionMatrix,this.app.config.fov||45,this.app.canvas.width/this.app.canvas.height,this.app.config.zNear||0.1,this.app.config.zFar||100),this.shader.compile(),this.initializeMeshBuffer(),this.initializeAttributes(),this.shader.link()}onRenderableUpdate(z,_){const k=this.app.gl;this.shader.use(),k.bindBuffer(k.ARRAY_BUFFER,this.meshBuffer),this.shader.setupUniforms(z,this.projectionMatrix,_,this.camera),k.drawArrays(this.config.drawMode??k.TRIANGLE_STRIP,0,this.mesh.config.vertexCount);const C=k.getError();if(C!==0)throw console.log({err:C}),new Error(`(MeshRenderer) webgl failure: ${C}`)}}class K{z;canvas;telemetry;gl;registry={onBeforeUpdate:[],onAfterUpdate:[],onUpdate:[],onStart:[]};constructor(z={}){this.config=z;try{this.canvas=document.querySelector("canvas"),this.canvas.width=window.innerWidth,this.canvas.height=window.innerHeight;const _=this.canvas.getContext("webgl2");if(!_)throw new Error("Canvas was unable to get a webgl2 context");if(this.gl=_,location.search.includes("telemetry"))this.telemetry=new Q(this)}catch(_){const k=document.querySelector("main");if(k)k.innerHTML="
your browser didn't let me set up webgl.
";throw new Error(`Unable to initialize WebGL. Your browser or machine may not support it.\n -> ${_}`)}}clear(){const z=this.gl;z.clearColor(0,0,0,1),z.clearDepth(1),z.enable(z.DEPTH_TEST),z.depthFunc(z.LEQUAL),z.clear(z.COLOR_BUFFER_BIT|z.DEPTH_BUFFER_BIT)}onBeforeUpdate(z){this.registry.onBeforeUpdate.push(z)}onAfterUpdate(z){this.registry.onAfterUpdate.push(z)}onUpdate(z){this.registry.onUpdate.push(z)}onStart(z){this.registry.onStart.push(z)}doUpdate(z){this.registry.onBeforeUpdate.forEach((_)=>_(z,this)),this.registry.onUpdate.forEach((_)=>_(z,this)),this.registry.onAfterUpdate.forEach((_)=>_(z,this))}doStart(z=0){this.clear(),this.registry.onStart.forEach((_)=>_(z,this))}async oneShot(z=0){this.doStart(z),this.doUpdate(z)}async start(){this.doStart();const z=(_)=>{this.doUpdate(_),requestAnimationFrame(z)};requestAnimationFrame(z)}}class N extends H{z;_;k;constructor(z,_,k){super(z);this.app=z;this.transform=_;this.renderer=k}onUpdate(z){this.renderer.onRenderableUpdate(z,this.transform)}}class E{z;static VERTEX=35633;static FRAGMENT=35632;constructor(z={}){this.config=z}vertexCode="";fragmentCode="";_app;_program=null;get gl(){const z=this._app?.gl;if(!z)throw new Error("GL context not defined at shader compile time.");return z}app(z){return this._app=z,this._program=z.gl.createProgram(),this}vertex(z){return this.vertexCode=z,this}fragment(z){return this.fragmentCode=z,this}attrib(z){return this.gl.getAttribLocation(this._program,z)}uniform(z){return this.gl.getUniformLocation(this._program,z)}attach(z,_){const k=this.gl,C=k.createShader(z);if(!C)throw new Error(`failed to init ${y(z)} shader`);k.shaderSource(C,_),k.compileShader(C),k.attachShader(this._program,C)}compile(){const z=this.gl;this.attach(z.FRAGMENT_SHADER,this.fragmentCode),this.attach(z.VERTEX_SHADER,this.vertexCode),this.link()}link(){if(this.gl.linkProgram(this._program),!this.gl.getProgramParameter(this._program,this.gl.LINK_STATUS))throw new Error("Unable to initialize the shader program: "+this.gl.getProgramInfoLog(this._program))}bindAttrib(z,_){this.gl.bindAttribLocation(this._program,z,_)}setupUniforms(z,_,k,C){const{gl:D}=this._app;if(D.useProgram(this._program),D.uniformMatrix4fv(this.uniform("uProjectionMatrix"),!1,_),this.config.time)D.uniform1f(this.uniform("uTime"),z);const G=F.clone(k.toMat4());F.fromQuat(G,C.rotation),F.translate(G,G,C.position),D.uniformMatrix4fv(this.uniform("uModelViewMatrix"),!1,G)}use(){this._app?.gl.useProgram(this._program)}}var y=(z)=>{switch(z){case E.FRAGMENT:return"fragment";case E.VERTEX:return"vertex";default:return"some unknown type of"}};var U="precision highp float;uniform float uTime;uniform float uSinTime;uniform float uCosTime;varying highp vec2 vTextureCoord;vec3 rgb2hsv(vec3 c){vec4 K=vec4(0.0,-1.0/3.0,2.0/3.0,-1.0);vec4 p=mix(vec4(c.bg,K.wz),vec4(c.gb,K.xy),step(c.b,c.g));vec4 q=mix(vec4(p.xyw,c.r),vec4(c.r,p.yzx),step(p.x,c.r));float d=q.x-min(q.w,q.y);float e=1.0e-10;return vec3(abs(q.z+(q.w-q.y)/(6.0*d+e)),d/(q.x+e),q.x);}vec3 hsv2rgb(vec3 c){vec4 K=vec4(1.0,2.0/3.0,1.0/3.0,3.0);vec3 p=abs(fract(c.xxx+K.xyz)*6.0-K.www);return c.z*mix(K.xxx,clamp(p-K.xxx,0.0,1.0),c.y);}void main(){float zComponent=uSinTime*0.001*0.5+0.5;vec3 hsv=rgb2hsv(vec3(vTextureCoord,zComponent));hsv.x+=uTime*0.0001;hsv.y=1.0;hsv.z=1.0;vec3 rgb=hsv2rgb(hsv);gl_FragColor=vec4(rgb,1.0);gl_FragColor=clamp(gl_FragColor,0.0,1.0);}";var V="attribute vec4 aVertexPosition;attribute vec2 aTextureCoord;uniform mat4 uModelViewMatrix;uniform mat4 uProjectionMatrix;varying highp vec2 vTextureCoord;void main(){gl_Position=uProjectionMatrix*uModelViewMatrix*aVertexPosition;vTextureCoord=aTextureCoord;}";var X=(z)=>new E({time:!0}).vertex(V).fragment(U).app(z);class O{z;constructor(z){this.config=z}get name(){return this.config.name}}var W=new Float32Array([1.2393061,0.16315772,0,1,0,0,0,255,0.5208333,0.5,1.2165064,0,0.125,1,0,0,0,255,0.5,0.5833333,1.25,0,0,1,0,0,0,255,0.5,0.5,1.1153755,0.14684194,0.21650635,1,0,0,0,255,0.5208333,0.6666667,1.125,0,0.21650635,1,0,0,0,255,0.5,0.6666667,1,0,0.25,1,0,0,0,255,0.5,0.75,0.9914449,0.13052617,0.25,1,0,0,0,255,0.5208333,0.75,0.875,0,0.21650635,1,0,0,0,255,0.5,0.8333333,0.86751425,0.1142104,0.21650635,1,0,0,0,255,0.5208333,0.8333333,0.78349364,0,0.125,1,0,0,0,255,0.5,0.9166667,0.7435837,0.097894624,0.00000000000000003061617,1,0,0,0,255,0.5208333,1,0.75,0,0.00000000000000003061617,1,0,0,0,255,0.5,1,0.7435837,0.097894624,0.00000000000000003061617,1,0,0,0,255,0.5208333,0.0000000000000002220446,0.78349364,0,-0.125,1,0,0,0,255,0.5,0.083333336,0.75,0,0.00000000000000003061617,1,0,0,0,255,0.5,0.0000000000000002220446,0.77679074,0.10226642,-0.125,1,0,0,0,255,0.5208333,0.083333336,0.875,0,-0.21650635,1,0,0,0,255,0.5,0.16666667,0.86751425,0.1142104,-0.21650635,1,0,0,0,255,0.5208333,0.16666667,1,0,-0.25,1,0,0,0,255,0.5,0.25,0.9914449,0.13052617,-0.25,1,0,0,0,255,0.5208333,0.25,1.125,0,-0.21650635,1,0,0,0,255,0.5,0.33333334,1.1153755,0.14684194,-0.21650635,1,0,0,0,255,0.5208333,0.33333334,1.2165064,0,-0.125,1,0,0,0,255,0.5,0.41666666,1.206099,0.15878591,-0.125,1,0,0,0,255,0.5208333,0.41666666,1.2074072,0.32352373,0,1,0,0,0,255,0.5416667,0.5,1.206099,0.15878591,0.125,1,0,0,0,255,0.5208333,0.5833333,1.1750549,0.31485495,0.125,1,0,0,0,255,0.5416667,0.5833333,1.0866666,0.29117137,0.21650635,1,0,0,0,255,0.5416667,0.6666667,0.9659258,0.25881898,0.25,1,0,0,0,255,0.5416667,0.75,0.7567967,0.20278303,0.125,1,0,0,0,255,0.5416667,0.9166667,0.77679074,0.10226642,0.125,1,0,0,0,255,0.5208333,0.9166667,0.7244444,0.19411424,0.00000000000000003061617,1,0,0,0,255,0.5416667,0.0000000000000002220446,0.7567967,0.20278303,-0.125,1,0,0,0,255,0.5416667,0.083333336,0.9659258,0.25881898,-0.25,1,0,0,0,255,0.5416667,0.25,1.0866666,0.29117137,-0.21650635,1,0,0,0,255,0.5416667,0.33333334,1.1750549,0.31485495,-0.125,1,0,0,0,255,0.5416667,0.41666666,1.1239054,0.46553674,0.125,1,0,0,0,255,0.5625,0.5833333,1.0393645,0.43051878,0.21650635,1,0,0,0,255,0.5625,0.6666667,0.8083946,0.33484796,0.21650635,1,0,0,0,255,0.5625,0.8333333,0.8451851,0.22646661,0.21650635,1,0,0,0,255,0.5416667,0.8333333,0.72385377,0.29983,0.125,1,0,0,0,255,0.5625,0.9166667,0.69290966,0.28701252,0.00000000000000003061617,1,0,0,0,255,0.5625,1,0.7244444,0.19411424,0.00000000000000003061617,1,0,0,0,255,0.5416667,1,0.69290966,0.28701252,0.00000000000000003061617,1,0,0,0,255,0.5625,0.0000000000000002220446,0.72385377,0.29983,-0.125,1,0,0,0,255,0.5625,0.083333336,0.8451851,0.22646661,-0.21650635,1,0,0,0,255,0.5416667,0.16666667,0.92387956,0.38268337,-0.25,1,0,0,0,255,0.5625,0.25,1.0393645,0.43051878,-0.21650635,1,0,0,0,255,0.5625,0.33333334,1.1239054,0.46553674,-0.125,1,0,0,0,255,0.5625,0.41666666,1.1548494,0.47835422,0,1,0,0,0,255,0.5625,0.5,1.0535253,0.6082533,0.125,1,0,0,0,255,0.5833333,0.5833333,0.9742785,0.5625001,0.21650635,1,0,0,0,255,0.5833333,0.6666667,0.8660253,0.5000001,0.25,1,0,0,0,255,0.5833333,0.75,0.92387956,0.38268337,0.25,1,0,0,0,255,0.5625,0.75,0.6785253,0.3917469,0.125,1,0,0,0,255,0.5833333,0.9166667,0.64951897,0.3750001,0.00000000000000003061617,1,0,0,0,255,0.5833333,0.0000000000000002220446,0.6785253,0.3917469,-0.125,1,0,0,0,255,0.5833333,0.083333336,0.8083946,0.33484796,-0.21650635,1,0,0,0,255,0.5625,0.16666667,0.8660253,0.5000001,-0.25,1,0,0,0,255,0.5833333,0.25,0.9742785,0.5625001,-0.21650635,1,0,0,0,255,0.5833333,0.33333334,1.0535253,0.6082533,-0.125,1,0,0,0,255,0.5833333,0.41666666,0.9916918,0.76095164,0,1,0,0,0,255,0.6041667,0.5,1.0825317,0.6250001,0,1,0,0,0,255,0.5833333,0.5,0.89252263,0.6848565,0.21650635,1,0,0,0,255,0.6041667,0.6666667,0.79335344,0.6087613,0.25,1,0,0,0,255,0.6041667,0.75,0.75777215,0.43750012,0.21650635,1,0,0,0,255,0.5833333,0.8333333,0.6215874,0.4769606,0.125,1,0,0,0,255,0.6041667,0.9166667,0.64951897,0.3750001,0.00000000000000003061617,1,0,0,0,255,0.5833333,1,0.59501505,0.45657098,0.00000000000000003061617,1,0,0,0,255,0.6041667,0.0000000000000002220446,0.6215874,0.4769606,-0.125,1,0,0,0,255,0.6041667,0.083333336,0.75777215,0.43750012,-0.21650635,1,0,0,0,255,0.5833333,0.16666667,0.69418424,0.53266615,-0.21650635,1,0,0,0,255,0.6041667,0.16666667,0.79335344,0.6087613,-0.25,1,0,0,0,255,0.6041667,0.25,0.89252263,0.6848565,-0.21650635,1,0,0,0,255,0.6041667,0.33333334,0.88388336,0.88388354,0,1,0,0,0,255,0.625,0.5,0.9651195,0.740562,0.125,1,0,0,0,255,0.6041667,0.5833333,0.8601998,0.8601999,0.125,1,0,0,0,255,0.625,0.5833333,0.79549503,0.79549515,0.21650635,1,0,0,0,255,0.625,0.6666667,0.7071067,0.7071068,0.25,1,0,0,0,255,0.625,0.75,0.69418424,0.53266615,0.21650635,1,0,0,0,255,0.6041667,0.8333333,0.6187184,0.6187185,0.21650635,1,0,0,0,255,0.625,0.8333333,0.5540136,0.5540137,0.125,1,0,0,0,255,0.625,0.9166667,0.59501505,0.45657098,0.00000000000000003061617,1,0,0,0,255,0.6041667,1,0.5540136,0.5540137,-0.125,1,0,0,0,255,0.625,0.083333336,0.6187184,0.6187185,-0.21650635,1,0,0,0,255,0.625,0.16666667,0.7071067,0.7071068,-0.25,1,0,0,0,255,0.625,0.25,0.8601998,0.8601999,-0.125,1,0,0,0,255,0.625,0.41666666,0.9651195,0.740562,-0.125,1,0,0,0,255,0.6041667,0.41666666,0.76095194,0.99169147,0,1,0,0,0,255,0.6458333,0.5,0.6848568,0.89252234,0.21650635,1,0,0,0,255,0.6458333,0.6666667,0.60876155,0.7933532,0.25,1,0,0,0,255,0.6458333,0.75,0.4769608,0.62158716,0.125,1,0,0,0,255,0.6458333,0.9166667,0.53033006,0.5303301,0.00000000000000003061617,1,0,0,0,255,0.625,1,0.45657116,0.5950149,0.00000000000000003061617,1,0,0,0,255,0.6458333,0.0000000000000002220446,0.53033006,0.5303301,0.00000000000000003061617,1,0,0,0,255,0.625,0.0000000000000002220446,0.4769608,0.62158716,-0.125,1,0,0,0,255,0.6458333,0.083333336,0.60876155,0.7933532,-0.25,1,0,0,0,255,0.6458333,0.25,0.6848568,0.89252234,-0.21650635,1,0,0,0,255,0.6458333,0.33333334,0.79549503,0.79549515,-0.21650635,1,0,0,0,255,0.625,0.33333334,0.7405623,0.96511924,-0.125,1,0,0,0,255,0.6458333,0.41666666,0.62499994,1.0825318,0,1,0,0,0,255,0.6666667,0.5,0.7405623,0.96511924,0.125,1,0,0,0,255,0.6458333,0.5833333,0.56249994,0.9742786,0.21650635,1,0,0,0,255,0.6666667,0.6666667,0.49999997,0.86602545,0.25,1,0,0,0,255,0.6666667,0.75,0.5326663,0.69418406,0.21650635,1,0,0,0,255,0.6458333,0.8333333,0.3917468,0.67852545,0.125,1,0,0,0,255,0.6666667,0.9166667,0.45657116,0.5950149,0.00000000000000003061617,1,0,0,0,255,0.6458333,1,0.37499997,0.6495191,0.00000000000000003061617,1,0,0,0,255,0.6666667,0.0000000000000002220446,0.3917468,0.67852545,-0.125,1,0,0,0,255,0.6666667,0.083333336,0.5326663,0.69418406,-0.21650635,1,0,0,0,255,0.6458333,0.16666667,0.43749997,0.75777227,-0.21650635,1,0,0,0,255,0.6666667,0.16666667,0.49999997,0.86602545,-0.25,1,0,0,0,255,0.6666667,0.25,0.56249994,0.9742786,-0.21650635,1,0,0,0,255,0.6666667,0.33333334,0.6082531,1.0535254,-0.125,1,0,0,0,255,0.6666667,0.41666666,0.4655371,1.1239052,0.125,1,0,0,0,255,0.6875,0.5833333,0.6082531,1.0535254,0.125,1,0,0,0,255,0.6666667,0.5833333,0.43051913,1.0393643,0.21650635,1,0,0,0,255,0.6875,0.6666667,0.38268366,0.92387944,0.25,1,0,0,0,255,0.6875,0.75,0.43749997,0.75777227,0.21650635,1,0,0,0,255,0.6666667,0.8333333,0.3348482,0.8083945,0.21650635,1,0,0,0,255,0.6875,0.8333333,0.29983023,0.72385365,0.125,1,0,0,0,255,0.6875,0.9166667,0.37499997,0.6495191,0.00000000000000003061617,1,0,0,0,255,0.6666667,1,0.28701276,0.6929096,0.00000000000000003061617,1,0,0,0,255,0.6875,0.0000000000000002220446,0.29983023,0.72385365,-0.125,1,0,0,0,255,0.6875,0.083333336,0.38268366,0.92387944,-0.25,1,0,0,0,255,0.6875,0.25,0.43051913,1.0393643,-0.21650635,1,0,0,0,255,0.6875,0.33333334,0.4655371,1.1239052,-0.125,1,0,0,0,255,0.6875,0.41666666,0.32352385,1.2074072,0,1,0,0,0,255,0.7083333,0.5,0.47835457,1.1548493,0,1,0,0,0,255,0.6875,0.5,0.31485504,1.1750549,0.125,1,0,0,0,255,0.7083333,0.5833333,0.29117146,1.0866666,0.21650635,1,0,0,0,255,0.7083333,0.6666667,0.25881907,0.9659258,0.25,1,0,0,0,255,0.7083333,0.75,0.2027831,0.7567967,0.125,1,0,0,0,255,0.7083333,0.9166667,0.28701276,0.6929096,0.00000000000000003061617,1,0,0,0,255,0.6875,1,0.1941143,0.7244444,0.00000000000000003061617,1,0,0,0,255,0.7083333,0.0000000000000002220446,0.2027831,0.7567967,-0.125,1,0,0,0,255,0.7083333,0.083333336,0.3348482,0.8083945,-0.21650635,1,0,0,0,255,0.6875,0.16666667,0.22646669,0.8451851,-0.21650635,1,0,0,0,255,0.7083333,0.16666667,0.25881907,0.9659258,-0.25,1,0,0,0,255,0.7083333,0.25,0.29117146,1.0866666,-0.21650635,1,0,0,0,255,0.7083333,0.33333334,0.31485504,1.1750549,-0.125,1,0,0,0,255,0.7083333,0.41666666,0.16315751,1.2393061,0,1,0,0,0,255,0.7291667,0.5,0.15878572,1.206099,0.125,1,0,0,0,255,0.7291667,0.5833333,0.130526,0.9914449,0.25,1,0,0,0,255,0.7291667,0.75,0.22646669,0.8451851,0.21650635,1,0,0,0,255,0.7083333,0.8333333,0.114210255,0.86751425,0.21650635,1,0,0,0,255,0.7291667,0.8333333,0.1022663,0.77679074,0.125,1,0,0,0,255,0.7291667,0.9166667,0.1941143,0.7244444,0.00000000000000003061617,1,0,0,0,255,0.7083333,1,0.1022663,0.77679074,-0.125,1,0,0,0,255,0.7291667,0.083333336,0.130526,0.9914449,-0.25,1,0,0,0,255,0.7291667,0.25,0.14684176,1.1153755,-0.21650635,1,0,0,0,255,0.7291667,0.33333334,0.15878572,1.206099,-0.125,1,0,0,0,255,0.7291667,0.41666666,0.000000094372375,1.25,0,1,0,0,0,255,0.75,0.5,0.000000091843674,1.2165064,0.125,1,0,0,0,255,0.75,0.5833333,0.14684176,1.1153755,0.21650635,1,0,0,0,255,0.7291667,0.6666667,0.00000008493514,1.125,0.21650635,1,0,0,0,255,0.75,0.6666667,0.000000066060664,0.875,0.21650635,1,0,0,0,255,0.75,0.8333333,0.000000059152125,0.78349364,0.125,1,0,0,0,255,0.75,0.9166667,0.097894505,0.7435837,0.00000000000000003061617,1,0,0,0,255,0.7291667,1,0.000000056623428,0.75,0.00000000000000003061617,1,0,0,0,255,0.75,0.0000000000000002220446,0.097894505,0.7435837,0.00000000000000003061617,1,0,0,0,255,0.7291667,0.0000000000000002220446,0.000000059152125,0.78349364,-0.125,1,0,0,0,255,0.75,0.083333336,0.114210255,0.86751425,-0.21650635,1,0,0,0,255,0.7291667,0.16666667,0.000000066060664,0.875,-0.21650635,1,0,0,0,255,0.75,0.16666667,0.0000000754979,1,-0.25,1,0,0,0,255,0.75,0.25,0.00000008493514,1.125,-0.21650635,1,0,0,0,255,0.75,0.33333334,-0.16315791,1.239306,0,1,0,0,0,255,0.7708333,0.5,-0.15878612,1.2060989,0.125,1,0,0,0,255,0.7708333,0.5833333,-0.14684212,1.1153754,0.21650635,1,0,0,0,255,0.7708333,0.6666667,0.0000000754979,1,0.25,1,0,0,0,255,0.75,0.75,-0.13052633,0.9914448,0.25,1,0,0,0,255,0.7708333,0.75,-0.114210546,0.86751425,0.21650635,1,0,0,0,255,0.7708333,0.8333333,-0.10226655,0.77679074,0.125,1,0,0,0,255,0.7708333,0.9166667,0.000000056623428,0.75,0.00000000000000003061617,1,0,0,0,255,0.75,1,-0.10226655,0.77679074,-0.125,1,0,0,0,255,0.7708333,0.083333336,-0.13052633,0.9914448,-0.25,1,0,0,0,255,0.7708333,0.25,-0.14684212,1.1153754,-0.21650635,1,0,0,0,255,0.7708333,0.33333334,-0.15878612,1.2060989,-0.125,1,0,0,0,255,0.7708333,0.41666666,0.000000091843674,1.2165064,-0.125,1,0,0,0,255,0.75,0.41666666,-0.32352364,1.2074074,0,1,0,0,0,255,0.7916667,0.5,-0.29117128,1.0866666,0.21650635,1,0,0,0,255,0.7916667,0.6666667,-0.25881892,0.9659259,0.25,1,0,0,0,255,0.7916667,0.75,-0.22646657,0.84518516,0.21650635,1,0,0,0,255,0.7916667,0.8333333,-0.20278297,0.7567968,0.125,1,0,0,0,255,0.7916667,0.9166667,-0.09789475,0.7435836,0.00000000000000003061617,1,0,0,0,255,0.7708333,1,-0.1941142,0.7244444,0.00000000000000003061617,1,0,0,0,255,0.7916667,0.0000000000000002220446,-0.09789475,0.7435836,0.00000000000000003061617,1,0,0,0,255,0.7708333,0.0000000000000002220446,-0.20278297,0.7567968,-0.125,1,0,0,0,255,0.7916667,0.083333336,-0.114210546,0.86751425,-0.21650635,1,0,0,0,255,0.7708333,0.16666667,-0.22646657,0.84518516,-0.21650635,1,0,0,0,255,0.7916667,0.16666667,-0.25881892,0.9659259,-0.25,1,0,0,0,255,0.7916667,0.25,-0.29117128,1.0866666,-0.21650635,1,0,0,0,255,0.7916667,0.33333334,-0.31485486,1.175055,-0.125,1,0,0,0,255,0.7916667,0.41666666,-0.4783544,1.1548494,0,1,0,0,0,255,0.8125,0.5,-0.31485486,1.175055,0.125,1,0,0,0,255,0.7916667,0.5833333,-0.46553692,1.1239053,0.125,1,0,0,0,255,0.8125,0.5833333,-0.43051895,1.0393645,0.21650635,1,0,0,0,255,0.8125,0.6666667,-0.33484808,0.80839455,0.21650635,1,0,0,0,255,0.8125,0.8333333,-0.2998301,0.7238537,0.125,1,0,0,0,255,0.8125,0.9166667,-0.1941142,0.7244444,0.00000000000000003061617,1,0,0,0,255,0.7916667,1,-0.28701264,0.6929096,0.00000000000000003061617,1,0,0,0,255,0.8125,0.0000000000000002220446,-0.2998301,0.7238537,-0.125,1,0,0,0,255,0.8125,0.083333336,-0.38268352,0.9238795,-0.25,1,0,0,0,255,0.8125,0.25,-0.46553692,1.1239053,-0.125,1,0,0,0,255,0.8125,0.41666666,-0.6249998,1.0825319,0,1,0,0,0,255,0.8333333,0.5,-0.5624998,0.9742787,0.21650635,1,0,0,0,255,0.8333333,0.6666667,-0.38268352,0.9238795,0.25,1,0,0,0,255,0.8125,0.75,-0.49999985,0.8660255,0.25,1,0,0,0,255,0.8333333,0.75,-0.43749988,0.7577723,0.21650635,1,0,0,0,255,0.8333333,0.8333333,-0.3917467,0.67852545,0.125,1,0,0,0,255,0.8333333,0.9166667,-0.28701264,0.6929096,0.00000000000000003061617,1,0,0,0,255,0.8125,1,-0.37499988,0.64951915,0.00000000000000003061617,1,0,0,0,255,0.8333333,0.0000000000000002220446,-0.3917467,0.67852545,-0.125,1,0,0,0,255,0.8333333,0.083333336,-0.33484808,0.80839455,-0.21650635,1,0,0,0,255,0.8125,0.16666667,-0.43749988,0.7577723,-0.21650635,1,0,0,0,255,0.8333333,0.16666667,-0.49999985,0.8660255,-0.25,1,0,0,0,255,0.8333333,0.25,-0.43051895,1.0393645,-0.21650635,1,0,0,0,255,0.8125,0.33333334,-0.5624998,0.9742787,-0.21650635,1,0,0,0,255,0.8333333,0.33333334,-0.608253,1.0535256,-0.125,1,0,0,0,255,0.8333333,0.41666666,-0.76095176,0.99169165,0,1,0,0,0,255,0.8541667,0.5,-0.608253,1.0535256,0.125,1,0,0,0,255,0.8333333,0.5833333,-0.74056214,0.96511936,0.125,1,0,0,0,255,0.8541667,0.5833333,-0.6848566,0.89252245,0.21650635,1,0,0,0,255,0.8541667,0.6666667,-0.6087614,0.7933533,0.25,1,0,0,0,255,0.8541667,0.75,-0.53266627,0.6941842,0.21650635,1,0,0,0,255,0.8541667,0.8333333,-0.45657107,0.595015,0.00000000000000003061617,1,0,0,0,255,0.8541667,1,-0.37499988,0.64951915,0.00000000000000003061617,1,0,0,0,255,0.8333333,1,-0.45657107,0.595015,0.00000000000000003061617,1,0,0,0,255,0.8541667,0.0000000000000002220446,-0.53266627,0.6941842,-0.21650635,1,0,0,0,255,0.8541667,0.16666667,-0.6087614,0.7933533,-0.25,1,0,0,0,255,0.8541667,0.25,-0.6848566,0.89252245,-0.21650635,1,0,0,0,255,0.8541667,0.33333334,-0.74056214,0.96511936,-0.125,1,0,0,0,255,0.8541667,0.41666666,-0.8838837,0.88388324,0,1,0,0,0,255,0.875,0.5,-0.8602001,0.8601997,0.125,1,0,0,0,255,0.875,0.5833333,-0.70710695,0.7071066,0.25,1,0,0,0,255,0.875,0.75,-0.61871856,0.61871827,0.21650635,1,0,0,0,255,0.875,0.8333333,-0.47696072,0.6215873,0.125,1,0,0,0,255,0.8541667,0.9166667,-0.5540138,0.5540135,0.125,1,0,0,0,255,0.875,0.9166667,-0.5303302,0.53032994,0.00000000000000003061617,1,0,0,0,255,0.875,0.0000000000000002220446,-0.47696072,0.6215873,-0.125,1,0,0,0,255,0.8541667,0.083333336,-0.61871856,0.61871827,-0.21650635,1,0,0,0,255,0.875,0.16666667,-0.70710695,0.7071066,-0.25,1,0,0,0,255,0.875,0.25,-0.79549533,0.7954949,-0.21650635,1,0,0,0,255,0.875,0.33333334,-0.8602001,0.8601997,-0.125,1,0,0,0,255,0.875,0.41666666,-0.99169165,0.76095176,0,1,0,0,0,255,0.8958333,0.5,-0.96511936,0.74056214,0.125,1,0,0,0,255,0.8958333,0.5833333,-0.79549533,0.7954949,0.21650635,1,0,0,0,255,0.875,0.6666667,-0.89252245,0.6848566,0.21650635,1,0,0,0,255,0.8958333,0.6666667,-0.6941842,0.53266627,0.21650635,1,0,0,0,255,0.8958333,0.8333333,-0.6215873,0.47696072,0.125,1,0,0,0,255,0.8958333,0.9166667,-0.5303302,0.53032994,0.00000000000000003061617,1,0,0,0,255,0.875,1,-0.595015,0.45657107,0.00000000000000003061617,1,0,0,0,255,0.8958333,0.0000000000000002220446,-0.5540138,0.5540135,-0.125,1,0,0,0,255,0.875,0.083333336,-0.6941842,0.53266627,-0.21650635,1,0,0,0,255,0.8958333,0.16666667,-0.7933533,0.6087614,-0.25,1,0,0,0,255,0.8958333,0.25,-0.96511936,0.74056214,-0.125,1,0,0,0,255,0.8958333,0.41666666,-1.0535252,0.6082535,0.125,1,0,0,0,255,0.9166667,0.5833333,-0.86602527,0.50000024,0.25,1,0,0,0,255,0.9166667,0.75,-0.7933533,0.6087614,0.25,1,0,0,0,255,0.8958333,0.75,-0.7577721,0.4375002,0.21650635,1,0,0,0,255,0.9166667,0.8333333,-0.67852527,0.391747,0.125,1,0,0,0,255,0.9166667,0.9166667,-0.595015,0.45657107,0.00000000000000003061617,1,0,0,0,255,0.8958333,1,-0.64951897,0.37500018,0.00000000000000003061617,1,0,0,0,255,0.9166667,0.0000000000000002220446,-0.6215873,0.47696072,-0.125,1,0,0,0,255,0.8958333,0.083333336,-0.67852527,0.391747,-0.125,1,0,0,0,255,0.9166667,0.083333336,-0.86602527,0.50000024,-0.25,1,0,0,0,255,0.9166667,0.25,-0.89252245,0.6848566,-0.21650635,1,0,0,0,255,0.8958333,0.33333334,-0.97427845,0.56250024,-0.21650635,1,0,0,0,255,0.9166667,0.33333334,-1.0535252,0.6082535,-0.125,1,0,0,0,255,0.9166667,0.41666666,-1.1548494,0.47835436,0,1,0,0,0,255,0.9375,0.5,-1.0825316,0.6250003,0,1,0,0,0,255,0.9166667,0.5,-1.1239053,0.4655369,0.125,1,0,0,0,255,0.9375,0.5833333,-0.97427845,0.56250024,0.21650635,1,0,0,0,255,0.9166667,0.6666667,-1.0393645,0.43051893,0.21650635,1,0,0,0,255,0.9375,0.6666667,-0.80839455,0.33484805,0.21650635,1,0,0,0,255,0.9375,0.8333333,-0.7238537,0.29983008,0.125,1,0,0,0,255,0.9375,0.9166667,-0.64951897,0.37500018,0.00000000000000003061617,1,0,0,0,255,0.9166667,1,-0.7238537,0.29983008,-0.125,1,0,0,0,255,0.9375,0.083333336,-0.7577721,0.4375002,-0.21650635,1,0,0,0,255,0.9166667,0.16666667,-0.80839455,0.33484805,-0.21650635,1,0,0,0,255,0.9375,0.16666667,-0.9238795,0.3826835,-0.25,1,0,0,0,255,0.9375,0.25,-1.1239053,0.4655369,-0.125,1,0,0,0,255,0.9375,0.41666666,-1.175055,0.31485486,0.125,1,0,0,0,255,0.9583333,0.5833333,-1.0866666,0.29117128,0.21650635,1,0,0,0,255,0.9583333,0.6666667,-0.9238795,0.3826835,0.25,1,0,0,0,255,0.9375,0.75,-0.84518516,0.22646657,0.21650635,1,0,0,0,255,0.9583333,0.8333333,-0.7567968,0.20278297,0.125,1,0,0,0,255,0.9583333,0.9166667,-0.6929096,0.2870126,0.00000000000000003061617,1,0,0,0,255,0.9375,1,-0.7244444,0.1941142,0.00000000000000003061617,1,0,0,0,255,0.9583333,0.0000000000000002220446,-0.6929096,0.2870126,0.00000000000000003061617,1,0,0,0,255,0.9375,0.0000000000000002220446,-0.7567968,0.20278297,-0.125,1,0,0,0,255,0.9583333,0.083333336,-0.84518516,0.22646657,-0.21650635,1,0,0,0,255,0.9583333,0.16666667,-1.0866666,0.29117128,-0.21650635,1,0,0,0,255,0.9583333,0.33333334,-1.0393645,0.43051893,-0.21650635,1,0,0,0,255,0.9375,0.33333334,-1.175055,0.31485486,-0.125,1,0,0,0,255,0.9583333,0.41666666,-1.239306,0.1631579,0,1,0,0,0,255,0.9791667,0.5,-1.2074074,0.32352364,0,1,0,0,0,255,0.9583333,0.5,-1.2060989,0.1587861,0.125,1,0,0,0,255,0.9791667,0.5833333,-1.1153754,0.1468421,0.21650635,1,0,0,0,255,0.9791667,0.6666667,-0.9659259,0.25881892,0.25,1,0,0,0,255,0.9583333,0.75,-0.9914448,0.13052632,0.25,1,0,0,0,255,0.9791667,0.75,-0.86751425,0.11421053,0.21650635,1,0,0,0,255,0.9791667,0.8333333,-0.77679074,0.10226654,0.125,1,0,0,0,255,0.9791667,0.9166667,-0.7244444,0.1941142,0.00000000000000003061617,1,0,0,0,255,0.9583333,1,-0.7435836,0.09789474,0.00000000000000003061617,1,0,0,0,255,0.9791667,0.0000000000000002220446,-0.86751425,0.11421053,-0.21650635,1,0,0,0,255,0.9791667,0.16666667,-0.9914448,0.13052632,-0.25,1,0,0,0,255,0.9791667,0.25,-0.9659259,0.25881892,-0.25,1,0,0,0,255,0.9583333,0.25,-1.1153754,0.1468421,-0.21650635,1,0,0,0,255,0.9791667,0.33333334,-1.2060989,0.1587861,-0.125,1,0,0,0,255,0.9791667,0.41666666,-1.2165064,0.00000010635036,0.125,1,0,0,0,255,1,0.5833333,-1.125,0.000000098350625,0.21650635,1,0,0,0,255,1,0.6666667,-1,0.00000008742278,0.25,1,0,0,0,255,1,0.75,-0.875,0.00000007649493,0.21650635,1,0,0,0,255,1,0.8333333,-0.78349364,0.00000006849519,0.125,1,0,0,0,255,1,0.9166667,-0.7435836,0.09789474,0.00000000000000003061617,1,0,0,0,255,0.9791667,1,-0.75,0.00000006556708,0.00000000000000003061617,1,0,0,0,255,1,0.0000000000000002220446,-0.77679074,0.10226654,-0.125,1,0,0,0,255,0.9791667,0.083333336,-0.875,0.00000007649493,-0.21650635,1,0,0,0,255,1,0.16666667,-1,0.00000008742278,-0.25,1,0,0,0,255,1,0.25,-1.125,0.000000098350625,-0.21650635,1,0,0,0,255,1,0.33333334,-1.2165064,0.00000010635036,-0.125,1,0,0,0,255,1,0.41666666,-1.239306,-0.1631579,0,1,0,0,0,255,0.020833334,0.5,-1.2165064,0.00000010635036,0.125,1,0,0,0,255,0.0000000000000008881784,0.5833333,-1.25,0.000000109278474,0,1,0,0,0,255,0.0000000000000008881784,0.5,-1.2060989,-0.1587861,0.125,1,0,0,0,255,0.020833334,0.5833333,-1.125,0.000000098350625,0.21650635,1,0,0,0,255,0.0000000000000008881784,0.6666667,-1.1153754,-0.1468421,0.21650635,1,0,0,0,255,0.020833334,0.6666667,-1,0.00000008742278,0.25,1,0,0,0,255,0.0000000000000008881784,0.75,-0.9914448,-0.13052632,0.25,1,0,0,0,255,0.020833334,0.75,-0.875,0.00000007649493,0.21650635,1,0,0,0,255,0.0000000000000008881784,0.8333333,-0.86751425,-0.11421053,0.21650635,1,0,0,0,255,0.020833334,0.8333333,-0.78349364,0.00000006849519,0.125,1,0,0,0,255,0.0000000000000008881784,0.9166667,-0.77679074,-0.10226654,0.125,1,0,0,0,255,0.020833334,0.9166667,-0.75,0.00000006556708,0.00000000000000003061617,1,0,0,0,255,0.0000000000000008881784,1,-0.75,0.00000006556708,0.00000000000000003061617,1,0,0,0,255,0.0000000000000008881784,0.0000000000000002220446,-0.77679074,-0.10226654,-0.125,1,0,0,0,255,0.020833334,0.083333336,-0.78349364,0.00000006849519,-0.125,1,0,0,0,255,0.0000000000000008881784,0.083333336,-0.875,0.00000007649493,-0.21650635,1,0,0,0,255,0.0000000000000008881784,0.16666667,-0.9914448,-0.13052632,-0.25,1,0,0,0,255,0.020833334,0.25,-1,0.00000008742278,-0.25,1,0,0,0,255,0.0000000000000008881784,0.25,-1.1153754,-0.1468421,-0.21650635,1,0,0,0,255,0.020833334,0.33333334,-1.125,0.000000098350625,-0.21650635,1,0,0,0,255,0.0000000000000008881784,0.33333334,-1.2060989,-0.1587861,-0.125,1,0,0,0,255,0.020833334,0.41666666,-1.2165064,0.00000010635036,-0.125,1,0,0,0,255,0.0000000000000008881784,0.41666666,-1.175055,-0.31485486,0.125,1,0,0,0,255,0.041666668,0.5833333,-1.0866666,-0.29117128,0.21650635,1,0,0,0,255,0.041666668,0.6666667,-0.9659259,-0.25881892,0.25,1,0,0,0,255,0.041666668,0.75,-0.84518516,-0.22646657,0.21650635,1,0,0,0,255,0.041666668,0.8333333,-0.7567968,-0.20278297,0.125,1,0,0,0,255,0.041666668,0.9166667,-0.7435836,-0.09789474,0.00000000000000003061617,1,0,0,0,255,0.020833334,1,-0.7244444,-0.1941142,0.00000000000000003061617,1,0,0,0,255,0.041666668,0.0000000000000002220446,-0.7435836,-0.09789474,0.00000000000000003061617,1,0,0,0,255,0.020833334,0.0000000000000002220446,-0.7567968,-0.20278297,-0.125,1,0,0,0,255,0.041666668,0.083333336,-0.86751425,-0.11421053,-0.21650635,1,0,0,0,255,0.020833334,0.16666667,-0.84518516,-0.22646657,-0.21650635,1,0,0,0,255,0.041666668,0.16666667,-0.9659259,-0.25881892,-0.25,1,0,0,0,255,0.041666668,0.25,-1.0866666,-0.29117128,-0.21650635,1,0,0,0,255,0.041666668,0.33333334,-1.2074074,-0.32352364,0,1,0,0,0,255,0.041666668,0.5,-1.1548496,-0.47835383,0,1,0,0,0,255,0.0625,0.5,-1.1239055,-0.4655364,0.125,1,0,0,0,255,0.0625,0.5833333,-0.9238797,-0.38268307,0.25,1,0,0,0,255,0.0625,0.75,-0.80839473,-0.3348477,0.21650635,1,0,0,0,255,0.0625,0.8333333,-0.7238538,-0.29982975,0.125,1,0,0,0,255,0.0625,0.9166667,-0.7244444,-0.1941142,0.00000000000000003061617,1,0,0,0,255,0.041666668,1,-0.6929098,-0.2870123,0.00000000000000003061617,1,0,0,0,255,0.0625,0.0000000000000002220446,-0.80839473,-0.3348477,-0.21650635,1,0,0,0,255,0.0625,0.16666667,-0.9238797,-0.38268307,-0.25,1,0,0,0,255,0.0625,0.25,-1.1239055,-0.4655364,-0.125,1,0,0,0,255,0.0625,0.41666666,-1.175055,-0.31485486,-0.125,1,0,0,0,255,0.041666668,0.41666666,-1.0825319,-0.62499976,0,1,0,0,0,255,0.083333336,0.5,-1.0535256,-0.60825294,0.125,1,0,0,0,255,0.083333336,0.5833333,-1.0393647,-0.43051845,0.21650635,1,0,0,0,255,0.0625,0.6666667,-0.9742787,-0.5624998,0.21650635,1,0,0,0,255,0.083333336,0.6666667,-0.8660255,-0.49999982,0.25,1,0,0,0,255,0.083333336,0.75,-0.7577723,-0.43749985,0.21650635,1,0,0,0,255,0.083333336,0.8333333,-0.64951915,-0.37499988,0.00000000000000003061617,1,0,0,0,255,0.083333336,1,-0.6929098,-0.2870123,0.00000000000000003061617,1,0,0,0,255,0.0625,1,-0.64951915,-0.37499988,0.00000000000000003061617,1,0,0,0,255,0.083333336,0.0000000000000002220446,-0.7238538,-0.29982975,-0.125,1,0,0,0,255,0.0625,0.083333336,-0.67852545,-0.39174667,-0.125,1,0,0,0,255,0.083333336,0.083333336,-0.7577723,-0.43749985,-0.21650635,1,0,0,0,255,0.083333336,0.16666667,-0.9742787,-0.5624998,-0.21650635,1,0,0,0,255,0.083333336,0.33333334,-1.0393647,-0.43051845,-0.21650635,1,0,0,0,255,0.0625,0.33333334,-1.0535256,-0.60825294,-0.125,1,0,0,0,255,0.083333336,0.41666666,-0.99169165,-0.76095176,0,1,0,0,0,255,0.104166664,0.5,-0.96511936,-0.74056214,0.125,1,0,0,0,255,0.104166664,0.5833333,-0.89252245,-0.6848566,0.21650635,1,0,0,0,255,0.104166664,0.6666667,-0.6941842,-0.53266627,0.21650635,1,0,0,0,255,0.104166664,0.8333333,-0.67852545,-0.39174667,0.125,1,0,0,0,255,0.083333336,0.9166667,-0.6215873,-0.47696072,0.125,1,0,0,0,255,0.104166664,0.9166667,-0.595015,-0.45657107,0.00000000000000003061617,1,0,0,0,255,0.104166664,0.0000000000000002220446,-0.6941842,-0.53266627,-0.21650635,1,0,0,0,255,0.104166664,0.16666667,-0.8660255,-0.49999982,-0.25,1,0,0,0,255,0.083333336,0.25,-0.7933533,-0.6087614,-0.25,1,0,0,0,255,0.104166664,0.25,-0.96511936,-0.74056214,-0.125,1,0,0,0,255,0.104166664,0.41666666,-0.8838837,-0.88388324,0,1,0,0,0,255,0.125,0.5,-0.79549533,-0.7954949,0.21650635,1,0,0,0,255,0.125,0.6666667,-0.7933533,-0.6087614,0.25,1,0,0,0,255,0.104166664,0.75,-0.70710695,-0.7071066,0.25,1,0,0,0,255,0.125,0.75,-0.61871856,-0.61871827,0.21650635,1,0,0,0,255,0.125,0.8333333,-0.5540138,-0.5540135,0.125,1,0,0,0,255,0.125,0.9166667,-0.595015,-0.45657107,0.00000000000000003061617,1,0,0,0,255,0.104166664,1,-0.5303302,-0.53032994,0.00000000000000003061617,1,0,0,0,255,0.125,0.0000000000000002220446,-0.6215873,-0.47696072,-0.125,1,0,0,0,255,0.104166664,0.083333336,-0.5540138,-0.5540135,-0.125,1,0,0,0,255,0.125,0.083333336,-0.70710695,-0.7071066,-0.25,1,0,0,0,255,0.125,0.25,-0.89252245,-0.6848566,-0.21650635,1,0,0,0,255,0.104166664,0.33333334,-0.79549533,-0.7954949,-0.21650635,1,0,0,0,255,0.125,0.33333334,-0.8602001,-0.8601997,-0.125,1,0,0,0,255,0.125,0.41666666,-0.7405627,-0.965119,0.125,1,0,0,0,255,0.14583333,0.5833333,-0.8602001,-0.8601997,0.125,1,0,0,0,255,0.125,0.5833333,-0.6848571,-0.89252216,0.21650635,1,0,0,0,255,0.14583333,0.6666667,-0.5326666,-0.6941839,0.21650635,1,0,0,0,255,0.14583333,0.8333333,-0.47696105,-0.62158704,0.125,1,0,0,0,255,0.14583333,0.9166667,-0.5303302,-0.53032994,0.00000000000000003061617,1,0,0,0,255,0.125,1,-0.4565714,-0.59501475,0.00000000000000003061617,1,0,0,0,255,0.14583333,0.0000000000000002220446,-0.47696105,-0.62158704,-0.125,1,0,0,0,255,0.14583333,0.083333336,-0.61871856,-0.61871827,-0.21650635,1,0,0,0,255,0.125,0.16666667,-0.5326666,-0.6941839,-0.21650635,1,0,0,0,255,0.14583333,0.16666667,-0.60876185,-0.793353,-0.25,1,0,0,0,255,0.14583333,0.25,-0.6848571,-0.89252216,-0.21650635,1,0,0,0,255,0.14583333,0.33333334,-0.7405627,-0.965119,-0.125,1,0,0,0,255,0.14583333,0.41666666,-0.7609523,-0.9916913,0,1,0,0,0,255,0.14583333,0.5,-0.608253,-1.0535256,0.125,1,0,0,0,255,0.16666667,0.5833333,-0.5624998,-0.9742787,0.21650635,1,0,0,0,255,0.16666667,0.6666667,-0.60876185,-0.793353,0.25,1,0,0,0,255,0.14583333,0.75,-0.49999985,-0.8660255,0.25,1,0,0,0,255,0.16666667,0.75,-0.3917467,-0.67852545,0.125,1,0,0,0,255,0.16666667,0.9166667,-0.4565714,-0.59501475,0.00000000000000003061617,1,0,0,0,255,0.14583333,1,-0.37499988,-0.64951915,0.00000000000000003061617,1,0,0,0,255,0.16666667,0.0000000000000002220446,-0.3917467,-0.67852545,-0.125,1,0,0,0,255,0.16666667,0.083333336,-0.43749988,-0.7577723,-0.21650635,1,0,0,0,255,0.16666667,0.16666667,-0.5624998,-0.9742787,-0.21650635,1,0,0,0,255,0.16666667,0.33333334,-0.608253,-1.0535256,-0.125,1,0,0,0,255,0.16666667,0.41666666,-0.4783544,-1.1548494,0,1,0,0,0,255,0.1875,0.5,-0.6249998,-1.0825319,0,1,0,0,0,255,0.16666667,0.5,-0.46553692,-1.1239053,0.125,1,0,0,0,255,0.1875,0.5833333,-0.43051895,-1.0393645,0.21650635,1,0,0,0,255,0.1875,0.6666667,-0.38268352,-0.9238795,0.25,1,0,0,0,255,0.1875,0.75,-0.43749988,-0.7577723,0.21650635,1,0,0,0,255,0.16666667,0.8333333,-0.33484808,-0.80839455,0.21650635,1,0,0,0,255,0.1875,0.8333333,-0.2998301,-0.7238537,0.125,1,0,0,0,255,0.1875,0.9166667,-0.37499988,-0.64951915,0.00000000000000003061617,1,0,0,0,255,0.16666667,1,-0.28701264,-0.6929096,0.00000000000000003061617,1,0,0,0,255,0.1875,0.0000000000000002220446,-0.2998301,-0.7238537,-0.125,1,0,0,0,255,0.1875,0.083333336,-0.38268352,-0.9238795,-0.25,1,0,0,0,255,0.1875,0.25,-0.49999985,-0.8660255,-0.25,1,0,0,0,255,0.16666667,0.25,-0.46553692,-1.1239053,-0.125,1,0,0,0,255,0.1875,0.41666666,-0.3235242,-1.2074072,0,1,0,0,0,255,0.20833333,0.5,-0.31485543,-1.1750548,0.125,1,0,0,0,255,0.20833333,0.5833333,-0.2911718,-1.0866665,0.21650635,1,0,0,0,255,0.20833333,0.6666667,-0.25881937,-0.96592575,0.25,1,0,0,0,255,0.20833333,0.75,-0.20278333,-0.75679666,0.125,1,0,0,0,255,0.20833333,0.9166667,-0.28701264,-0.6929096,0.00000000000000003061617,1,0,0,0,255,0.1875,1,-0.19411454,-0.7244443,0.00000000000000003061617,1,0,0,0,255,0.20833333,0.0000000000000002220446,-0.20278333,-0.75679666,-0.125,1,0,0,0,255,0.20833333,0.083333336,-0.33484808,-0.80839455,-0.21650635,1,0,0,0,255,0.1875,0.16666667,-0.22646695,-0.84518504,-0.21650635,1,0,0,0,255,0.20833333,0.16666667,-0.25881937,-0.96592575,-0.25,1,0,0,0,255,0.20833333,0.25,-0.43051895,-1.0393645,-0.21650635,1,0,0,0,255,0.1875,0.33333334,-0.31485543,-1.1750548,-0.125,1,0,0,0,255,0.20833333,0.41666666,-0.16315849,-1.239306,0,1,0,0,0,255,0.22916667,0.5,-0.14684264,-1.1153754,0.21650635,1,0,0,0,255,0.22916667,0.6666667,-0.1305268,-0.99144477,0.25,1,0,0,0,255,0.22916667,0.75,-0.22646695,-0.84518504,0.21650635,1,0,0,0,255,0.20833333,0.8333333,-0.102266915,-0.7767907,0.125,1,0,0,0,255,0.22916667,0.9166667,-0.19411454,-0.7244443,0.00000000000000003061617,1,0,0,0,255,0.20833333,1,-0.0978951,-0.74358356,0.00000000000000003061617,1,0,0,0,255,0.22916667,0.0000000000000002220446,-0.102266915,-0.7767907,-0.125,1,0,0,0,255,0.22916667,0.083333336,-0.1305268,-0.99144477,-0.25,1,0,0,0,255,0.22916667,0.25,-0.2911718,-1.0866665,-0.21650635,1,0,0,0,255,0.20833333,0.33333334,-0.14684264,-1.1153754,-0.21650635,1,0,0,0,255,0.22916667,0.33333334,-0.15878668,-1.2060989,-0.125,1,0,0,0,255,0.22916667,0.41666666,0.000000094372375,-1.25,0,1,0,0,0,255,0.25,0.5,-0.15878668,-1.2060989,0.125,1,0,0,0,255,0.22916667,0.5833333,0.000000091843674,-1.2165064,0.125,1,0,0,0,255,0.25,0.5833333,0.0000000754979,-1,0.25,1,0,0,0,255,0.25,0.75,0.000000066060664,-0.875,0.21650635,1,0,0,0,255,0.25,0.8333333,-0.11421095,-0.8675142,0.21650635,1,0,0,0,255,0.22916667,0.8333333,0.000000056623428,-0.75,0.00000000000000003061617,1,0,0,0,255,0.25,1,-0.0978951,-0.74358356,0.00000000000000003061617,1,0,0,0,255,0.22916667,1,0.000000056623428,-0.75,0.00000000000000003061617,1,0,0,0,255,0.25,0.0000000000000002220446,0.000000059152125,-0.78349364,-0.125,1,0,0,0,255,0.25,0.083333336,-0.11421095,-0.8675142,-0.21650635,1,0,0,0,255,0.22916667,0.16666667,0.000000066060664,-0.875,-0.21650635,1,0,0,0,255,0.25,0.16666667,0.0000000754979,-1,-0.25,1,0,0,0,255,0.25,0.25,0.00000008493514,-1.125,-0.21650635,1,0,0,0,255,0.25,0.33333334,0.000000091843674,-1.2165064,-0.125,1,0,0,0,255,0.25,0.41666666,0.15878572,-1.206099,0.125,1,0,0,0,255,0.27083334,0.5833333,0.00000008493514,-1.125,0.21650635,1,0,0,0,255,0.25,0.6666667,0.14684176,-1.1153755,0.21650635,1,0,0,0,255,0.27083334,0.6666667,0.130526,-0.9914449,0.25,1,0,0,0,255,0.27083334,0.75,0.114210255,-0.86751425,0.21650635,1,0,0,0,255,0.27083334,0.8333333,0.000000059152125,-0.78349364,0.125,1,0,0,0,255,0.25,0.9166667,0.1022663,-0.77679074,0.125,1,0,0,0,255,0.27083334,0.9166667,0.097894505,-0.7435837,0.00000000000000003061617,1,0,0,0,255,0.27083334,0.0000000000000002220446,0.114210255,-0.86751425,-0.21650635,1,0,0,0,255,0.27083334,0.16666667,0.130526,-0.9914449,-0.25,1,0,0,0,255,0.27083334,0.25,0.14684176,-1.1153755,-0.21650635,1,0,0,0,255,0.27083334,0.33333334,0.15878572,-1.206099,-0.125,1,0,0,0,255,0.27083334,0.41666666,0.32352325,-1.2074075,0,1,0,0,0,255,0.29166666,0.5,0.16315751,-1.2393061,0,1,0,0,0,255,0.27083334,0.5,0.31485447,-1.175055,0.125,1,0,0,0,255,0.29166666,0.5833333,0.29117092,-1.0866667,0.21650635,1,0,0,0,255,0.29166666,0.6666667,0.2588186,-0.96592593,0.25,1,0,0,0,255,0.29166666,0.75,0.22646627,-0.84518516,0.21650635,1,0,0,0,255,0.29166666,0.8333333,0.19411394,-0.72444445,0.00000000000000003061617,1,0,0,0,255,0.29166666,1,0.097894505,-0.7435837,0.00000000000000003061617,1,0,0,0,255,0.27083334,1,0.19411394,-0.72444445,0.00000000000000003061617,1,0,0,0,255,0.29166666,0.0000000000000002220446,0.1022663,-0.77679074,-0.125,1,0,0,0,255,0.27083334,0.083333336,0.20278272,-0.75679684,-0.125,1,0,0,0,255,0.29166666,0.083333336,0.2588186,-0.96592593,-0.25,1,0,0,0,255,0.29166666,0.25,0.29117092,-1.0866667,-0.21650635,1,0,0,0,255,0.29166666,0.33333334,0.31485447,-1.175055,-0.125,1,0,0,0,255,0.29166666,0.41666666,0.47835457,-1.1548493,0,1,0,0,0,255,0.3125,0.5,0.4655371,-1.1239052,0.125,1,0,0,0,255,0.3125,0.5833333,0.43051913,-1.0393643,0.21650635,1,0,0,0,255,0.3125,0.6666667,0.38268366,-0.92387944,0.25,1,0,0,0,255,0.3125,0.75,0.3348482,-0.8083945,0.21650635,1,0,0,0,255,0.3125,0.8333333,0.20278272,-0.75679684,0.125,1,0,0,0,255,0.29166666,0.9166667,0.29983023,-0.72385365,0.125,1,0,0,0,255,0.3125,0.9166667,0.28701276,-0.6929096,0.00000000000000003061617,1,0,0,0,255,0.3125,0.0000000000000002220446,0.29983023,-0.72385365,-0.125,1,0,0,0,255,0.3125,0.083333336,0.22646627,-0.84518516,-0.21650635,1,0,0,0,255,0.29166666,0.16666667,0.3348482,-0.8083945,-0.21650635,1,0,0,0,255,0.3125,0.16666667,0.43051913,-1.0393643,-0.21650635,1,0,0,0,255,0.3125,0.33333334,0.4655371,-1.1239052,-0.125,1,0,0,0,255,0.3125,0.41666666,0.62499994,-1.0825318,0,1,0,0,0,255,0.33333334,0.5,0.6082531,-1.0535254,0.125,1,0,0,0,255,0.33333334,0.5833333,0.49999997,-0.86602545,0.25,1,0,0,0,255,0.33333334,0.75,0.43749997,-0.75777227,0.21650635,1,0,0,0,255,0.33333334,0.8333333,0.3917468,-0.67852545,0.125,1,0,0,0,255,0.33333334,0.9166667,0.28701276,-0.6929096,0.00000000000000003061617,1,0,0,0,255,0.3125,1,0.37499997,-0.6495191,0.00000000000000003061617,1,0,0,0,255,0.33333334,0.0000000000000002220446,0.3917468,-0.67852545,-0.125,1,0,0,0,255,0.33333334,0.083333336,0.43749997,-0.75777227,-0.21650635,1,0,0,0,255,0.33333334,0.16666667,0.38268366,-0.92387944,-0.25,1,0,0,0,255,0.3125,0.25,0.49999997,-0.86602545,-0.25,1,0,0,0,255,0.33333334,0.25,0.56249994,-0.9742786,-0.21650635,1,0,0,0,255,0.33333334,0.33333334,0.74056184,-0.9651196,0.125,1,0,0,0,255,0.35416666,0.5833333,0.56249994,-0.9742786,0.21650635,1,0,0,0,255,0.33333334,0.6666667,0.68485636,-0.8925227,0.21650635,1,0,0,0,255,0.35416666,0.6666667,0.6087612,-0.7933535,0.25,1,0,0,0,255,0.35416666,0.75,0.532666,-0.6941843,0.21650635,1,0,0,0,255,0.35416666,0.8333333,0.4769605,-0.6215874,0.125,1,0,0,0,255,0.35416666,0.9166667,0.37499997,-0.6495191,0.00000000000000003061617,1,0,0,0,255,0.33333334,1,0.4565709,-0.5950151,0.00000000000000003061617,1,0,0,0,255,0.35416666,0.0000000000000002220446,0.4769605,-0.6215874,-0.125,1,0,0,0,255,0.35416666,0.083333336,0.532666,-0.6941843,-0.21650635,1,0,0,0,255,0.35416666,0.16666667,0.6087612,-0.7933535,-0.25,1,0,0,0,255,0.35416666,0.25,0.74056184,-0.9651196,-0.125,1,0,0,0,255,0.35416666,0.41666666,0.6082531,-1.0535254,-0.125,1,0,0,0,255,0.33333334,0.41666666,0.7609515,-0.9916919,0,1,0,0,0,255,0.35416666,0.5,0.86019945,-0.8602004,0.125,1,0,0,0,255,0.375,0.5833333,0.7071064,-0.7071072,0.25,1,0,0,0,255,0.375,0.75,0.6187181,-0.6187188,0.21650635,1,0,0,0,255,0.375,0.8333333,0.5540134,-0.55401397,0.125,1,0,0,0,255,0.375,0.9166667,0.4565709,-0.5950151,0.00000000000000003061617,1,0,0,0,255,0.35416666,1,0.5303298,-0.5303304,0.00000000000000003061617,1,0,0,0,255,0.375,0.0000000000000002220446,0.5540134,-0.55401397,-0.125,1,0,0,0,255,0.375,0.083333336,0.6187181,-0.6187188,-0.21650635,1,0,0,0,255,0.375,0.16666667,0.7071064,-0.7071072,-0.25,1,0,0,0,255,0.375,0.25,0.68485636,-0.8925227,-0.21650635,1,0,0,0,255,0.35416666,0.33333334,0.86019945,-0.8602004,-0.125,1,0,0,0,255,0.375,0.41666666,0.883883,-0.88388395,0,1,0,0,0,255,0.375,0.5,0.9651195,-0.740562,0.125,1,0,0,0,255,0.39583334,0.5833333,0.79549474,-0.79549557,0.21650635,1,0,0,0,255,0.375,0.6666667,0.79335344,-0.6087613,0.25,1,0,0,0,255,0.39583334,0.75,0.69418424,-0.53266615,0.21650635,1,0,0,0,255,0.39583334,0.8333333,0.6215874,-0.4769606,0.125,1,0,0,0,255,0.39583334,0.9166667,0.5303298,-0.5303304,0.00000000000000003061617,1,0,0,0,255,0.375,1,0.59501505,-0.45657098,0.00000000000000003061617,1,0,0,0,255,0.39583334,0.0000000000000002220446,0.69418424,-0.53266615,-0.21650635,1,0,0,0,255,0.39583334,0.16666667,0.79335344,-0.6087613,-0.25,1,0,0,0,255,0.39583334,0.25,0.79549474,-0.79549557,-0.21650635,1,0,0,0,255,0.375,0.33333334,0.89252263,-0.6848565,-0.21650635,1,0,0,0,255,0.39583334,0.33333334,0.9651195,-0.740562,-0.125,1,0,0,0,255,0.39583334,0.41666666,1.0825317,-0.6250001,0,1,0,0,0,255,0.41666666,0.5,0.9916918,-0.76095164,0,1,0,0,0,255,0.39583334,0.5,1.0535253,-0.6082533,0.125,1,0,0,0,255,0.41666666,0.5833333,0.89252263,-0.6848565,0.21650635,1,0,0,0,255,0.39583334,0.6666667,0.9742785,-0.5625001,0.21650635,1,0,0,0,255,0.41666666,0.6666667,0.8660253,-0.5000001,0.25,1,0,0,0,255,0.41666666,0.75,0.75777215,-0.43750012,0.21650635,1,0,0,0,255,0.41666666,0.8333333,0.6785253,-0.3917469,0.125,1,0,0,0,255,0.41666666,0.9166667,0.59501505,-0.45657098,0.00000000000000003061617,1,0,0,0,255,0.39583334,1,0.64951897,-0.3750001,0.00000000000000003061617,1,0,0,0,255,0.41666666,0.0000000000000002220446,0.6215874,-0.4769606,-0.125,1,0,0,0,255,0.39583334,0.083333336,0.75777215,-0.43750012,-0.21650635,1,0,0,0,255,0.41666666,0.16666667,0.8660253,-0.5000001,-0.25,1,0,0,0,255,0.41666666,0.25,1.0535253,-0.6082533,-0.125,1,0,0,0,255,0.41666666,0.41666666,1.1548493,-0.47835475,0,1,0,0,0,255,0.4375,0.5,1.1239052,-0.46553728,0.125,1,0,0,0,255,0.4375,0.5833333,0.9238794,-0.3826838,0.25,1,0,0,0,255,0.4375,0.75,0.80839443,-0.33484834,0.21650635,1,0,0,0,255,0.4375,0.8333333,0.72385365,-0.29983035,0.125,1,0,0,0,255,0.4375,0.9166667,0.64951897,-0.3750001,0.00000000000000003061617,1,0,0,0,255,0.41666666,1,0.69290954,-0.28701288,0.00000000000000003061617,1,0,0,0,255,0.4375,0.0000000000000002220446,0.6785253,-0.3917469,-0.125,1,0,0,0,255,0.41666666,0.083333336,0.72385365,-0.29983035,-0.125,1,0,0,0,255,0.4375,0.083333336,0.80839443,-0.33484834,-0.21650635,1,0,0,0,255,0.4375,0.16666667,0.9238794,-0.3826838,-0.25,1,0,0,0,255,0.4375,0.25,0.9742785,-0.5625001,-0.21650635,1,0,0,0,255,0.41666666,0.33333334,1.0393643,-0.43051928,-0.21650635,1,0,0,0,255,0.4375,0.33333334,1.1239052,-0.46553728,-0.125,1,0,0,0,255,0.4375,0.41666666,1.2074074,-0.32352346,0,1,0,0,0,255,0.45833334,0.5,1.175055,-0.31485468,0.125,1,0,0,0,255,0.45833334,0.5833333,1.0393643,-0.43051928,0.21650635,1,0,0,0,255,0.4375,0.6666667,1.0866666,-0.29117113,0.21650635,1,0,0,0,255,0.45833334,0.6666667,0.9659259,-0.25881878,0.25,1,0,0,0,255,0.45833334,0.75,0.84518516,-0.22646643,0.21650635,1,0,0,0,255,0.45833334,0.8333333,0.7567968,-0.20278287,0.125,1,0,0,0,255,0.45833334,0.9166667,0.69290954,-0.28701288,0.00000000000000003061617,1,0,0,0,255,0.4375,1,0.7244444,-0.19411409,0.00000000000000003061617,1,0,0,0,255,0.45833334,0.0000000000000002220446,0.84518516,-0.22646643,-0.21650635,1,0,0,0,255,0.45833334,0.16666667,0.9659259,-0.25881878,-0.25,1,0,0,0,255,0.45833334,0.25,1.0866666,-0.29117113,-0.21650635,1,0,0,0,255,0.45833334,0.33333334,1.175055,-0.31485468,-0.125,1,0,0,0,255,0.45833334,0.41666666,1.206099,-0.15878591,0.125,1,0,0,0,255,0.47916666,0.5833333,1.1153755,-0.14684194,0.21650635,1,0,0,0,255,0.47916666,0.6666667,0.9914449,-0.13052617,0.25,1,0,0,0,255,0.47916666,0.75,0.86751425,-0.1142104,0.21650635,1,0,0,0,255,0.47916666,0.8333333,0.7435837,-0.097894624,0.00000000000000003061617,1,0,0,0,255,0.47916666,1,0.7244444,-0.19411409,0.00000000000000003061617,1,0,0,0,255,0.45833334,1,0.7435837,-0.097894624,0.00000000000000003061617,1,0,0,0,255,0.47916666,0.0000000000000002220446,0.7567968,-0.20278287,-0.125,1,0,0,0,255,0.45833334,0.083333336,0.77679074,-0.10226642,-0.125,1,0,0,0,255,0.47916666,0.083333336,0.9914449,-0.13052617,-0.25,1,0,0,0,255,0.47916666,0.25,1.1153755,-0.14684194,-0.21650635,1,0,0,0,255,0.47916666,0.33333334,1.206099,-0.15878591,-0.125,1,0,0,0,255,0.47916666,0.41666666,1.2393061,-0.16315772,0,1,0,0,0,255,0.47916666,0.5,0.77679074,-0.10226642,0.125,1,0,0,0,255,0.47916666,0.9166667,0.86751425,-0.1142104,-0.21650635,1,0,0,0,255,0.47916666,0.16666667,-1.25,0.000000109278474,0,1,0,0,0,255,1,0.5,-0.75,0.00000006556708,0.00000000000000003061617,1,0,0,0,255,1,1,-0.78349364,0.00000006849519,-0.125,1,0,0,0,255,1,0.083333336]),Z=new O({mesh:W,positionSize:4,colorSize:4,uvSize:2,vertexCount:637,stride:10,name:"src/meshes/torus.ply"});var A=new K({fov:45}),$=new Y([0,0,-6],P.fromEuler(P.create(),15,0,0));window.ANGLE_X=15;window.ANGLE_Y=0;window.ANGLE_Z=0;A.onUpdate((z)=>{const k=Math.sin(z*0.0001)*3;$.rotation=P.fromEuler(P.create(),k,0,0)});new N(A,new Y([0,0,4]),new J(A,Z,X(A),$,{drawMode:A.gl.TRIANGLE_FAN}));A.start();