@esotericsoftware/spine-webgl 4.2.80 → 4.2.81

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- "use strict";var Os=Object.defineProperty,Ds=(e,t,i)=>t in e?Os(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,B=(e,t,i)=>(Ds(e,typeof t!="symbol"?t+"":t,i),i),Ns=class{array=new Array;add(e){let t=this.contains(e);return this.array[e|0]=e|0,!t}contains(e){return this.array[e|0]!=null}remove(e){this.array[e|0]=void 0}clear(){this.array.length=0}},zt=class{entries={};size=0;add(e){let t=this.entries[e];return this.entries[e]=!0,t?!1:(this.size++,!0)}addAll(e){let t=this.size;for(var i=0,s=e.length;i<s;i++)this.add(e[i]);return t!=this.size}contains(e){return this.entries[e]}clear(){this.entries={},this.size=0}},_e=class{constructor(e=0,t=0,i=0,s=0){this.r=e,this.g=t,this.b=i,this.a=s}set(e,t,i,s){return this.r=e,this.g=t,this.b=i,this.a=s,this.clamp()}setFromColor(e){return this.r=e.r,this.g=e.g,this.b=e.b,this.a=e.a,this}setFromString(e){return e=e.charAt(0)=="#"?e.substr(1):e,this.r=parseInt(e.substr(0,2),16)/255,this.g=parseInt(e.substr(2,2),16)/255,this.b=parseInt(e.substr(4,2),16)/255,this.a=e.length!=8?1:parseInt(e.substr(6,2),16)/255,this}add(e,t,i,s){return this.r+=e,this.g+=t,this.b+=i,this.a+=s,this.clamp()}clamp(){return this.r<0?this.r=0:this.r>1&&(this.r=1),this.g<0?this.g=0:this.g>1&&(this.g=1),this.b<0?this.b=0:this.b>1&&(this.b=1),this.a<0?this.a=0:this.a>1&&(this.a=1),this}static rgba8888ToColor(e,t){e.r=((t&4278190080)>>>24)/255,e.g=((t&16711680)>>>16)/255,e.b=((t&65280)>>>8)/255,e.a=(t&255)/255}static rgb888ToColor(e,t){e.r=((t&16711680)>>>16)/255,e.g=((t&65280)>>>8)/255,e.b=(t&255)/255}toRgb888(){const e=t=>("0"+(t*255).toString(16)).slice(-2);return Number("0x"+e(this.r)+e(this.g)+e(this.b))}static fromString(e){return new _e().setFromString(e)}},V=_e;B(V,"WHITE",new _e(1,1,1,1)),B(V,"RED",new _e(1,0,0,1)),B(V,"GREEN",new _e(0,1,0,1)),B(V,"BLUE",new _e(0,0,1,1)),B(V,"MAGENTA",new _e(1,0,1,1));var Ee=class{static clamp(e,t,i){return e<t?t:e>i?i:e}static cosDeg(e){return Math.cos(e*Ee.degRad)}static sinDeg(e){return Math.sin(e*Ee.degRad)}static atan2Deg(e,t){return Math.atan2(e,t)*Ee.degRad}static signum(e){return e>0?1:e<0?-1:0}static toInt(e){return e>0?Math.floor(e):Math.ceil(e)}static cbrt(e){let t=Math.pow(Math.abs(e),.3333333333333333);return e<0?-t:t}static randomTriangular(e,t){return Ee.randomTriangularWith(e,t,(e+t)*.5)}static randomTriangularWith(e,t,i){let s=Math.random(),n=t-e;return s<=(i-e)/n?e+Math.sqrt(s*n*(i-e)):t-Math.sqrt((1-s)*n*(t-i))}static isPowerOfTwo(e){return e&&(e&e-1)===0}},L=Ee;B(L,"PI",3.1415927),B(L,"PI2",Ee.PI*2),B(L,"invPI2",1/Ee.PI2),B(L,"radiansToDegrees",180/Ee.PI),B(L,"radDeg",Ee.radiansToDegrees),B(L,"degreesToRadians",Ee.PI/180),B(L,"degRad",Ee.degreesToRadians);var Qi=class{apply(e,t,i){return e+(t-e)*this.applyInternal(i)}},$i=class extends Qi{power=2;constructor(e){super(),this.power=e}applyInternal(e){return e<=.5?Math.pow(e*2,this.power)/2:Math.pow((e-1)*2,this.power)/(this.power%2==0?-2:2)+1}},Us=class extends $i{constructor(e){super(e)}applyInternal(e){return Math.pow(e-1,this.power)*(this.power%2==0?-1:1)+1}},Qe=class{static arrayCopy(e,t,i,s,n){for(let h=t,a=s;h<t+n;h++,a++)i[a]=e[h]}static arrayFill(e,t,i,s){for(let n=t;n<i;n++)e[n]=s}static setArraySize(e,t,i=0){let s=e.length;if(s==t)return e;if(e.length=t,s<t)for(let n=s;n<t;n++)e[n]=i;return e}static ensureArrayCapacity(e,t,i=0){return e.length>=t?e:Qe.setArraySize(e,t,i)}static newArray(e,t){let i=new Array(e);for(let s=0;s<e;s++)i[s]=t;return i}static newFloatArray(e){if(Qe.SUPPORTS_TYPED_ARRAYS)return new Float32Array(e);{let t=new Array(e);for(let i=0;i<t.length;i++)t[i]=0;return t}}static newShortArray(e){if(Qe.SUPPORTS_TYPED_ARRAYS)return new Int16Array(e);{let t=new Array(e);for(let i=0;i<t.length;i++)t[i]=0;return t}}static toFloatArray(e){return Qe.SUPPORTS_TYPED_ARRAYS?new Float32Array(e):e}static toSinglePrecision(e){return Qe.SUPPORTS_TYPED_ARRAYS?Math.fround(e):e}static webkit602BugfixHelper(e,t){}static contains(e,t,i=!0){for(var s=0;s<e.length;s++)if(e[s]==t)return!0;return!1}static enumValue(e,t){return e[t[0].toUpperCase()+t.slice(1)]}},P=Qe;B(P,"SUPPORTS_TYPED_ARRAYS",typeof Float32Array<"u");var zs=class{static logBones(e){for(let t=0;t<e.bones.length;t++){let i=e.bones[t];console.log(i.data.name+", "+i.a+", "+i.b+", "+i.c+", "+i.d+", "+i.worldX+", "+i.worldY)}}},lt=class{items=new Array;instantiator;constructor(e){this.instantiator=e}obtain(){return this.items.length>0?this.items.pop():this.instantiator()}free(e){e.reset&&e.reset(),this.items.push(e)}freeAll(e){for(let t=0;t<e.length;t++)this.free(e[t])}clear(){this.items.length=0}},We=class{constructor(e=0,t=0){this.x=e,this.y=t}set(e,t){return this.x=e,this.y=t,this}length(){let e=this.x,t=this.y;return Math.sqrt(e*e+t*t)}normalize(){let e=this.length();return e!=0&&(this.x/=e,this.y/=e),this}},_t=class{maxDelta=.064;framesPerSecond=0;delta=0;totalTime=0;lastTime=Date.now()/1e3;frameCount=0;frameTime=0;update(){let e=Date.now()/1e3;this.delta=e-this.lastTime,this.frameTime+=this.delta,this.totalTime+=this.delta,this.delta>this.maxDelta&&(this.delta=this.maxDelta),this.lastTime=e,this.frameCount++,this.frameTime>1&&(this.framesPerSecond=this.frameCount/this.frameTime,this.frameTime=0,this.frameCount=0)}},_s=class{values;addedValues=0;lastValue=0;mean=0;dirty=!0;constructor(e=32){this.values=new Array(e)}hasEnoughData(){return this.addedValues>=this.values.length}addValue(e){this.addedValues<this.values.length&&this.addedValues++,this.values[this.lastValue++]=e,this.lastValue>this.values.length-1&&(this.lastValue=0),this.dirty=!0}getMean(){if(this.hasEnoughData()){if(this.dirty){let e=0;for(let t=0;t<this.values.length;t++)e+=this.values[t];this.mean=e/this.values.length,this.dirty=!1}return this.mean}return 0}},Wt=class{name;constructor(e){if(!e)throw new Error("name cannot be null.");this.name=e}},es=class extends Wt{id=es.nextID++;bones=null;vertices=[];worldVerticesLength=0;timelineAttachment=this;constructor(e){super(e)}computeWorldVertices(e,t,i,s,n,h){i=n+(i>>1)*h;let a=e.bone.skeleton,r=e.deform,o=this.vertices,l=this.bones;if(!l){r.length>0&&(o=r);let u=e.bone,m=u.worldX,g=u.worldY,b=u.a,w=u.b,x=u.c,p=u.d;for(let y=t,v=n;v<i;y+=2,v+=h){let A=o[y],C=o[y+1];s[v]=A*b+C*w+m,s[v+1]=A*x+C*p+g}return}let c=0,f=0;for(let u=0;u<t;u+=2){let m=l[c];c+=m+1,f+=m}let d=a.bones;if(r.length==0)for(let u=n,m=f*3;u<i;u+=h){let g=0,b=0,w=l[c++];for(w+=c;c<w;c++,m+=3){let x=d[l[c]],p=o[m],y=o[m+1],v=o[m+2];g+=(p*x.a+y*x.b+x.worldX)*v,b+=(p*x.c+y*x.d+x.worldY)*v}s[u]=g,s[u+1]=b}else{let u=r;for(let m=n,g=f*3,b=f<<1;m<i;m+=h){let w=0,x=0,p=l[c++];for(p+=c;c<p;c++,g+=3,b+=2){let y=d[l[c]],v=o[g]+u[b],A=o[g+1]+u[b+1],C=o[g+2];w+=(v*y.a+A*y.b+y.worldX)*C,x+=(v*y.c+A*y.d+y.worldY)*C}s[m]=w,s[m+1]=x}}}copyTo(e){this.bones?(e.bones=new Array(this.bones.length),P.arrayCopy(this.bones,0,e.bones,0,this.bones.length)):e.bones=null,this.vertices&&(e.vertices=P.newFloatArray(this.vertices.length),P.arrayCopy(this.vertices,0,e.vertices,0,this.vertices.length)),e.worldVerticesLength=this.worldVerticesLength,e.timelineAttachment=this.timelineAttachment}},Ye=es;B(Ye,"nextID",0);var pt=class{id=pt.nextID();regions;start=0;digits=0;setupIndex=0;constructor(e){this.regions=new Array(e)}copy(){let e=new pt(this.regions.length);return P.arrayCopy(this.regions,0,e.regions,0,this.regions.length),e.start=this.start,e.digits=this.digits,e.setupIndex=this.setupIndex,e}apply(e,t){let i=e.sequenceIndex;i==-1&&(i=this.setupIndex),i>=this.regions.length&&(i=this.regions.length-1);let s=this.regions[i];t.region!=s&&(t.region=s,t.updateRegion())}getPath(e,t){let i=e,s=(this.start+t).toString();for(let n=this.digits-s.length;n>0;n--)i+="0";return i+=s,i}static nextID(){return pt._nextID++}},qt=pt;B(qt,"_nextID",0);var ts=(e=>(e[e.hold=0]="hold",e[e.once=1]="once",e[e.loop=2]="loop",e[e.pingpong=3]="pingpong",e[e.onceReverse=4]="onceReverse",e[e.loopReverse=5]="loopReverse",e[e.pingpongReverse=6]="pingpongReverse",e))(ts||{}),is=[0,1,2,3,4,5,6],wt=class{name;timelines=[];timelineIds=new zt;duration;constructor(e,t,i){if(!e)throw new Error("name cannot be null.");this.name=e,this.setTimelines(t),this.duration=i}setTimelines(e){if(!e)throw new Error("timelines cannot be null.");this.timelines=e,this.timelineIds.clear();for(var t=0;t<e.length;t++)this.timelineIds.addAll(e[t].getPropertyIds())}hasTimeline(e){for(let t=0;t<e.length;t++)if(this.timelineIds.contains(e[t]))return!0;return!1}apply(e,t,i,s,n,h,a,r){if(!e)throw new Error("skeleton cannot be null.");s&&this.duration!=0&&(i%=this.duration,t>0&&(t%=this.duration));let o=this.timelines;for(let l=0,c=o.length;l<c;l++)o[l].apply(e,t,i,n,h,a,r)}},ss=(e=>(e[e.setup=0]="setup",e[e.first=1]="first",e[e.replace=2]="replace",e[e.add=3]="add",e))(ss||{}),rs=(e=>(e[e.mixIn=0]="mixIn",e[e.mixOut=1]="mixOut",e))(rs||{}),re={rotate:0,x:1,y:2,scaleX:3,scaleY:4,shearX:5,shearY:6,inherit:7,rgb:8,alpha:9,rgb2:10,attachment:11,deform:12,event:13,drawOrder:14,ikConstraint:15,transformConstraint:16,pathConstraintPosition:17,pathConstraintSpacing:18,pathConstraintMix:19,physicsConstraintInertia:20,physicsConstraintStrength:21,physicsConstraintDamping:22,physicsConstraintMass:23,physicsConstraintWind:24,physicsConstraintGravity:25,physicsConstraintMix:26,physicsConstraintReset:27,sequence:28},me=class{propertyIds;frames;constructor(e,t){this.propertyIds=t,this.frames=P.newFloatArray(e*this.getFrameEntries())}getPropertyIds(){return this.propertyIds}getFrameEntries(){return 1}getFrameCount(){return this.frames.length/this.getFrameEntries()}getDuration(){return this.frames[this.frames.length-this.getFrameEntries()]}static search1(e,t){let i=e.length;for(let s=1;s<i;s++)if(e[s]>t)return s-1;return i-1}static search(e,t,i){let s=e.length;for(let n=i;n<s;n+=i)if(e[n]>t)return n-i;return s-i}},Re=class extends me{curves;constructor(e,t,i){super(e,i),this.curves=P.newFloatArray(e+t*18),this.curves[e-1]=1}setLinear(e){this.curves[e]=0}setStepped(e){this.curves[e]=1}shrink(e){let t=this.getFrameCount()+e*18;if(this.curves.length>t){let i=P.newFloatArray(t);P.arrayCopy(this.curves,0,i,0,t),this.curves=i}}setBezier(e,t,i,s,n,h,a,r,o,l,c){let f=this.curves,d=this.getFrameCount()+e*18;i==0&&(f[t]=2+d);let u=(s-h*2+r)*.03,m=(n-a*2+o)*.03,g=((h-r)*3-s+l)*.006,b=((a-o)*3-n+c)*.006,w=u*2+g,x=m*2+b,p=(h-s)*.3+u+g*.16666667,y=(a-n)*.3+m+b*.16666667,v=s+p,A=n+y;for(let C=d+18;d<C;d+=2)f[d]=v,f[d+1]=A,p+=w,y+=x,w+=g,x+=b,v+=p,A+=y}getBezierValue(e,t,i,s){let n=this.curves;if(n[s]>e){let o=this.frames[t],l=this.frames[t+i];return l+(e-o)/(n[s]-o)*(n[s+1]-l)}let h=s+18;for(s+=2;s<h;s+=2)if(n[s]>=e){let o=n[s-2],l=n[s-1];return l+(e-o)/(n[s]-o)*(n[s+1]-l)}t+=this.getFrameEntries();let a=n[h-2],r=n[h-1];return r+(e-a)/(this.frames[t]-a)*(this.frames[t+i]-r)}},Te=class extends Re{constructor(e,t,i){super(e,t,[i])}getFrameEntries(){return 2}setFrame(e,t,i){e<<=1,this.frames[e]=t,this.frames[e+1]=i}getCurveValue(e){let t=this.frames,i=t.length-2;for(let n=2;n<=i;n+=2)if(t[n]>e){i=n-2;break}let s=this.curves[i>>1];switch(s){case 0:let n=t[i],h=t[i+1];return h+(e-n)/(t[i+2]-n)*(t[i+2+1]-h);case 1:return t[i+1]}return this.getBezierValue(e,i,1,s-2)}getRelativeValue(e,t,i,s,n){if(e<this.frames[0]){switch(i){case 0:return n;case 1:return s+(n-s)*t}return s}let h=this.getCurveValue(e);switch(i){case 0:return n+h*t;case 1:case 2:h+=n-s}return s+h*t}getAbsoluteValue(e,t,i,s,n){if(e<this.frames[0]){switch(i){case 0:return n;case 1:return s+(n-s)*t}return s}let h=this.getCurveValue(e);return i==0?n+(h-n)*t:s+(h-s)*t}getAbsoluteValue2(e,t,i,s,n,h){if(e<this.frames[0]){switch(i){case 0:return n;case 1:return s+(n-s)*t}return s}return i==0?n+(h-n)*t:s+(h-s)*t}getScaleValue(e,t,i,s,n,h){const a=this.frames;if(e<a[0]){switch(i){case 0:return h;case 1:return n+(h-n)*t}return n}let r=this.getCurveValue(e)*h;if(t==1)return i==3?n+r-h:r;if(s==1)switch(i){case 0:return h+(Math.abs(r)*L.signum(h)-h)*t;case 1:case 2:return n+(Math.abs(r)*L.signum(n)-n)*t}else{let o=0;switch(i){case 0:return o=Math.abs(h)*L.signum(r),o+(r-o)*t;case 1:case 2:return o=Math.abs(n)*L.signum(r),o+(r-o)*t}}return n+(r-h)*t}},bt=class extends Re{constructor(e,t,i,s){super(e,t,[i,s])}getFrameEntries(){return 3}setFrame(e,t,i,s){e*=3,this.frames[e]=t,this.frames[e+1]=i,this.frames[e+2]=s}},ot=class extends Te{boneIndex=0;constructor(e,t,i){super(e,t,re.rotate+"|"+i),this.boneIndex=i}apply(e,t,i,s,n,h,a){let r=e.bones[this.boneIndex];r.active&&(r.rotation=this.getRelativeValue(i,n,h,r.rotation,r.data.rotation))}},Gt=class extends bt{boneIndex=0;constructor(e,t,i){super(e,t,re.x+"|"+i,re.y+"|"+i),this.boneIndex=i}apply(e,t,i,s,n,h,a){let r=e.bones[this.boneIndex];if(!r.active)return;let o=this.frames;if(i<o[0]){switch(h){case 0:r.x=r.data.x,r.y=r.data.y;return;case 1:r.x+=(r.data.x-r.x)*n,r.y+=(r.data.y-r.y)*n}return}let l=0,c=0,f=me.search(o,i,3),d=this.curves[f/3];switch(d){case 0:let u=o[f];l=o[f+1],c=o[f+2];let m=(i-u)/(o[f+3]-u);l+=(o[f+3+1]-l)*m,c+=(o[f+3+2]-c)*m;break;case 1:l=o[f+1],c=o[f+2];break;default:l=this.getBezierValue(i,f,1,d-2),c=this.getBezierValue(i,f,2,d+18-2)}switch(h){case 0:r.x=r.data.x+l*n,r.y=r.data.y+c*n;break;case 1:case 2:r.x+=(r.data.x+l-r.x)*n,r.y+=(r.data.y+c-r.y)*n;break;case 3:r.x+=l*n,r.y+=c*n}}},Ht=class extends Te{boneIndex=0;constructor(e,t,i){super(e,t,re.x+"|"+i),this.boneIndex=i}apply(e,t,i,s,n,h,a){let r=e.bones[this.boneIndex];r.active&&(r.x=this.getRelativeValue(i,n,h,r.x,r.data.x))}},jt=class extends Te{boneIndex=0;constructor(e,t,i){super(e,t,re.y+"|"+i),this.boneIndex=i}apply(e,t,i,s,n,h,a){let r=e.bones[this.boneIndex];r.active&&(r.y=this.getRelativeValue(i,n,h,r.y,r.data.y))}},Zt=class extends bt{boneIndex=0;constructor(e,t,i){super(e,t,re.scaleX+"|"+i,re.scaleY+"|"+i),this.boneIndex=i}apply(e,t,i,s,n,h,a){let r=e.bones[this.boneIndex];if(!r.active)return;let o=this.frames;if(i<o[0]){switch(h){case 0:r.scaleX=r.data.scaleX,r.scaleY=r.data.scaleY;return;case 1:r.scaleX+=(r.data.scaleX-r.scaleX)*n,r.scaleY+=(r.data.scaleY-r.scaleY)*n}return}let l,c,f=me.search(o,i,3),d=this.curves[f/3];switch(d){case 0:let u=o[f];l=o[f+1],c=o[f+2];let m=(i-u)/(o[f+3]-u);l+=(o[f+3+1]-l)*m,c+=(o[f+3+2]-c)*m;break;case 1:l=o[f+1],c=o[f+2];break;default:l=this.getBezierValue(i,f,1,d-2),c=this.getBezierValue(i,f,2,d+18-2)}if(l*=r.data.scaleX,c*=r.data.scaleY,n==1)h==3?(r.scaleX+=l-r.data.scaleX,r.scaleY+=c-r.data.scaleY):(r.scaleX=l,r.scaleY=c);else{let u=0,m=0;if(a==1)switch(h){case 0:u=r.data.scaleX,m=r.data.scaleY,r.scaleX=u+(Math.abs(l)*L.signum(u)-u)*n,r.scaleY=m+(Math.abs(c)*L.signum(m)-m)*n;break;case 1:case 2:u=r.scaleX,m=r.scaleY,r.scaleX=u+(Math.abs(l)*L.signum(u)-u)*n,r.scaleY=m+(Math.abs(c)*L.signum(m)-m)*n;break;case 3:r.scaleX+=(l-r.data.scaleX)*n,r.scaleY+=(c-r.data.scaleY)*n}else switch(h){case 0:u=Math.abs(r.data.scaleX)*L.signum(l),m=Math.abs(r.data.scaleY)*L.signum(c),r.scaleX=u+(l-u)*n,r.scaleY=m+(c-m)*n;break;case 1:case 2:u=Math.abs(r.scaleX)*L.signum(l),m=Math.abs(r.scaleY)*L.signum(c),r.scaleX=u+(l-u)*n,r.scaleY=m+(c-m)*n;break;case 3:r.scaleX+=(l-r.data.scaleX)*n,r.scaleY+=(c-r.data.scaleY)*n}}}},Kt=class extends Te{boneIndex=0;constructor(e,t,i){super(e,t,re.scaleX+"|"+i),this.boneIndex=i}apply(e,t,i,s,n,h,a){let r=e.bones[this.boneIndex];r.active&&(r.scaleX=this.getScaleValue(i,n,h,a,r.scaleX,r.data.scaleX))}},Jt=class extends Te{boneIndex=0;constructor(e,t,i){super(e,t,re.scaleY+"|"+i),this.boneIndex=i}apply(e,t,i,s,n,h,a){let r=e.bones[this.boneIndex];r.active&&(r.scaleY=this.getScaleValue(i,n,h,a,r.scaleY,r.data.scaleY))}},Qt=class extends bt{boneIndex=0;constructor(e,t,i){super(e,t,re.shearX+"|"+i,re.shearY+"|"+i),this.boneIndex=i}apply(e,t,i,s,n,h,a){let r=e.bones[this.boneIndex];if(!r.active)return;let o=this.frames;if(i<o[0]){switch(h){case 0:r.shearX=r.data.shearX,r.shearY=r.data.shearY;return;case 1:r.shearX+=(r.data.shearX-r.shearX)*n,r.shearY+=(r.data.shearY-r.shearY)*n}return}let l=0,c=0,f=me.search(o,i,3),d=this.curves[f/3];switch(d){case 0:let u=o[f];l=o[f+1],c=o[f+2];let m=(i-u)/(o[f+3]-u);l+=(o[f+3+1]-l)*m,c+=(o[f+3+2]-c)*m;break;case 1:l=o[f+1],c=o[f+2];break;default:l=this.getBezierValue(i,f,1,d-2),c=this.getBezierValue(i,f,2,d+18-2)}switch(h){case 0:r.shearX=r.data.shearX+l*n,r.shearY=r.data.shearY+c*n;break;case 1:case 2:r.shearX+=(r.data.shearX+l-r.shearX)*n,r.shearY+=(r.data.shearY+c-r.shearY)*n;break;case 3:r.shearX+=l*n,r.shearY+=c*n}}},$t=class extends Te{boneIndex=0;constructor(e,t,i){super(e,t,re.shearX+"|"+i),this.boneIndex=i}apply(e,t,i,s,n,h,a){let r=e.bones[this.boneIndex];r.active&&(r.shearX=this.getRelativeValue(i,n,h,r.shearX,r.data.shearX))}},ei=class extends Te{boneIndex=0;constructor(e,t,i){super(e,t,re.shearY+"|"+i),this.boneIndex=i}apply(e,t,i,s,n,h,a){let r=e.bones[this.boneIndex];r.active&&(r.shearY=this.getRelativeValue(i,n,h,r.shearY,r.data.shearY))}},ti=class extends me{boneIndex=0;constructor(e,t){super(e,[re.inherit+"|"+t]),this.boneIndex=t}getFrameEntries(){return 2}setFrame(e,t,i){e*=2,this.frames[e]=t,this.frames[e+1]=i}apply(e,t,i,s,n,h,a){let r=e.bones[this.boneIndex];if(!r.active)return;if(a==1){h==0&&(r.inherit=r.data.inherit);return}let o=this.frames;if(i<o[0]){(h==0||h==1)&&(r.inherit=r.data.inherit);return}r.inherit=this.frames[me.search(o,i,2)+1]}},ii=class extends Re{slotIndex=0;constructor(e,t,i){super(e,t,[re.rgb+"|"+i,re.alpha+"|"+i]),this.slotIndex=i}getFrameEntries(){return 5}setFrame(e,t,i,s,n,h){e*=5,this.frames[e]=t,this.frames[e+1]=i,this.frames[e+2]=s,this.frames[e+3]=n,this.frames[e+4]=h}apply(e,t,i,s,n,h,a){let r=e.slots[this.slotIndex];if(!r.bone.active)return;let o=this.frames,l=r.color;if(i<o[0]){let b=r.data.color;switch(h){case 0:l.setFromColor(b);return;case 1:l.add((b.r-l.r)*n,(b.g-l.g)*n,(b.b-l.b)*n,(b.a-l.a)*n)}return}let c=0,f=0,d=0,u=0,m=me.search(o,i,5),g=this.curves[m/5];switch(g){case 0:let b=o[m];c=o[m+1],f=o[m+2],d=o[m+3],u=o[m+4];let w=(i-b)/(o[m+5]-b);c+=(o[m+5+1]-c)*w,f+=(o[m+5+2]-f)*w,d+=(o[m+5+3]-d)*w,u+=(o[m+5+4]-u)*w;break;case 1:c=o[m+1],f=o[m+2],d=o[m+3],u=o[m+4];break;default:c=this.getBezierValue(i,m,1,g-2),f=this.getBezierValue(i,m,2,g+18-2),d=this.getBezierValue(i,m,3,g+18*2-2),u=this.getBezierValue(i,m,4,g+18*3-2)}n==1?l.set(c,f,d,u):(h==0&&l.setFromColor(r.data.color),l.add((c-l.r)*n,(f-l.g)*n,(d-l.b)*n,(u-l.a)*n))}},si=class extends Re{slotIndex=0;constructor(e,t,i){super(e,t,[re.rgb+"|"+i]),this.slotIndex=i}getFrameEntries(){return 4}setFrame(e,t,i,s,n){e<<=2,this.frames[e]=t,this.frames[e+1]=i,this.frames[e+2]=s,this.frames[e+3]=n}apply(e,t,i,s,n,h,a){let r=e.slots[this.slotIndex];if(!r.bone.active)return;let o=this.frames,l=r.color;if(i<o[0]){let g=r.data.color;switch(h){case 0:l.r=g.r,l.g=g.g,l.b=g.b;return;case 1:l.r+=(g.r-l.r)*n,l.g+=(g.g-l.g)*n,l.b+=(g.b-l.b)*n}return}let c=0,f=0,d=0,u=me.search(o,i,4),m=this.curves[u>>2];switch(m){case 0:let g=o[u];c=o[u+1],f=o[u+2],d=o[u+3];let b=(i-g)/(o[u+4]-g);c+=(o[u+4+1]-c)*b,f+=(o[u+4+2]-f)*b,d+=(o[u+4+3]-d)*b;break;case 1:c=o[u+1],f=o[u+2],d=o[u+3];break;default:c=this.getBezierValue(i,u,1,m-2),f=this.getBezierValue(i,u,2,m+18-2),d=this.getBezierValue(i,u,3,m+18*2-2)}if(n==1)l.r=c,l.g=f,l.b=d;else{if(h==0){let g=r.data.color;l.r=g.r,l.g=g.g,l.b=g.b}l.r+=(c-l.r)*n,l.g+=(f-l.g)*n,l.b+=(d-l.b)*n}}},ri=class extends Te{slotIndex=0;constructor(e,t,i){super(e,t,re.alpha+"|"+i),this.slotIndex=i}apply(e,t,i,s,n,h,a){let r=e.slots[this.slotIndex];if(!r.bone.active)return;let o=r.color;if(i<this.frames[0]){let c=r.data.color;switch(h){case 0:o.a=c.a;return;case 1:o.a+=(c.a-o.a)*n}return}let l=this.getCurveValue(i);n==1?o.a=l:(h==0&&(o.a=r.data.color.a),o.a+=(l-o.a)*n)}},ni=class extends Re{slotIndex=0;constructor(e,t,i){super(e,t,[re.rgb+"|"+i,re.alpha+"|"+i,re.rgb2+"|"+i]),this.slotIndex=i}getFrameEntries(){return 8}setFrame(e,t,i,s,n,h,a,r,o){e<<=3,this.frames[e]=t,this.frames[e+1]=i,this.frames[e+2]=s,this.frames[e+3]=n,this.frames[e+4]=h,this.frames[e+5]=a,this.frames[e+6]=r,this.frames[e+7]=o}apply(e,t,i,s,n,h,a){let r=e.slots[this.slotIndex];if(!r.bone.active)return;let o=this.frames,l=r.color,c=r.darkColor;if(i<o[0]){let y=r.data.color,v=r.data.darkColor;switch(h){case 0:l.setFromColor(y),c.r=v.r,c.g=v.g,c.b=v.b;return;case 1:l.add((y.r-l.r)*n,(y.g-l.g)*n,(y.b-l.b)*n,(y.a-l.a)*n),c.r+=(v.r-c.r)*n,c.g+=(v.g-c.g)*n,c.b+=(v.b-c.b)*n}return}let f=0,d=0,u=0,m=0,g=0,b=0,w=0,x=me.search(o,i,8),p=this.curves[x>>3];switch(p){case 0:let y=o[x];f=o[x+1],d=o[x+2],u=o[x+3],m=o[x+4],g=o[x+5],b=o[x+6],w=o[x+7];let v=(i-y)/(o[x+8]-y);f+=(o[x+8+1]-f)*v,d+=(o[x+8+2]-d)*v,u+=(o[x+8+3]-u)*v,m+=(o[x+8+4]-m)*v,g+=(o[x+8+5]-g)*v,b+=(o[x+8+6]-b)*v,w+=(o[x+8+7]-w)*v;break;case 1:f=o[x+1],d=o[x+2],u=o[x+3],m=o[x+4],g=o[x+5],b=o[x+6],w=o[x+7];break;default:f=this.getBezierValue(i,x,1,p-2),d=this.getBezierValue(i,x,2,p+18-2),u=this.getBezierValue(i,x,3,p+18*2-2),m=this.getBezierValue(i,x,4,p+18*3-2),g=this.getBezierValue(i,x,5,p+18*4-2),b=this.getBezierValue(i,x,6,p+18*5-2),w=this.getBezierValue(i,x,7,p+18*6-2)}if(n==1)l.set(f,d,u,m),c.r=g,c.g=b,c.b=w;else{if(h==0){l.setFromColor(r.data.color);let y=r.data.darkColor;c.r=y.r,c.g=y.g,c.b=y.b}l.add((f-l.r)*n,(d-l.g)*n,(u-l.b)*n,(m-l.a)*n),c.r+=(g-c.r)*n,c.g+=(b-c.g)*n,c.b+=(w-c.b)*n}}},ai=class extends Re{slotIndex=0;constructor(e,t,i){super(e,t,[re.rgb+"|"+i,re.rgb2+"|"+i]),this.slotIndex=i}getFrameEntries(){return 7}setFrame(e,t,i,s,n,h,a,r){e*=7,this.frames[e]=t,this.frames[e+1]=i,this.frames[e+2]=s,this.frames[e+3]=n,this.frames[e+4]=h,this.frames[e+5]=a,this.frames[e+6]=r}apply(e,t,i,s,n,h,a){let r=e.slots[this.slotIndex];if(!r.bone.active)return;let o=this.frames,l=r.color,c=r.darkColor;if(i<o[0]){let y=r.data.color,v=r.data.darkColor;switch(h){case 0:l.r=y.r,l.g=y.g,l.b=y.b,c.r=v.r,c.g=v.g,c.b=v.b;return;case 1:l.r+=(y.r-l.r)*n,l.g+=(y.g-l.g)*n,l.b+=(y.b-l.b)*n,c.r+=(v.r-c.r)*n,c.g+=(v.g-c.g)*n,c.b+=(v.b-c.b)*n}return}let f=0,d=0,u=0,m=0,g=0,b=0,w=0,x=me.search(o,i,7),p=this.curves[x/7];switch(p){case 0:let y=o[x];f=o[x+1],d=o[x+2],u=o[x+3],g=o[x+4],b=o[x+5],w=o[x+6];let v=(i-y)/(o[x+7]-y);f+=(o[x+7+1]-f)*v,d+=(o[x+7+2]-d)*v,u+=(o[x+7+3]-u)*v,g+=(o[x+7+4]-g)*v,b+=(o[x+7+5]-b)*v,w+=(o[x+7+6]-w)*v;break;case 1:f=o[x+1],d=o[x+2],u=o[x+3],g=o[x+4],b=o[x+5],w=o[x+6];break;default:f=this.getBezierValue(i,x,1,p-2),d=this.getBezierValue(i,x,2,p+18-2),u=this.getBezierValue(i,x,3,p+18*2-2),g=this.getBezierValue(i,x,4,p+18*3-2),b=this.getBezierValue(i,x,5,p+18*4-2),w=this.getBezierValue(i,x,6,p+18*5-2)}if(n==1)l.r=f,l.g=d,l.b=u,c.r=g,c.g=b,c.b=w;else{if(h==0){let y=r.data.color,v=r.data.darkColor;l.r=y.r,l.g=y.g,l.b=y.b,c.r=v.r,c.g=v.g,c.b=v.b}l.r+=(f-l.r)*n,l.g+=(d-l.g)*n,l.b+=(u-l.b)*n,c.r+=(g-c.r)*n,c.g+=(b-c.g)*n,c.b+=(w-c.b)*n}}},qe=class extends me{slotIndex=0;attachmentNames;constructor(e,t){super(e,[re.attachment+"|"+t]),this.slotIndex=t,this.attachmentNames=new Array(e)}getFrameCount(){return this.frames.length}setFrame(e,t,i){this.frames[e]=t,this.attachmentNames[e]=i}apply(e,t,i,s,n,h,a){let r=e.slots[this.slotIndex];if(r.bone.active){if(a==1){h==0&&this.setAttachment(e,r,r.data.attachmentName);return}if(i<this.frames[0]){(h==0||h==1)&&this.setAttachment(e,r,r.data.attachmentName);return}this.setAttachment(e,r,this.attachmentNames[me.search1(this.frames,i)])}}setAttachment(e,t,i){t.setAttachment(i?e.getAttachment(this.slotIndex,i):null)}},li=class extends Re{slotIndex=0;attachment;vertices;constructor(e,t,i,s){super(e,t,[re.deform+"|"+i+"|"+s.id]),this.slotIndex=i,this.attachment=s,this.vertices=new Array(e)}getFrameCount(){return this.frames.length}setFrame(e,t,i){this.frames[e]=t,this.vertices[e]=i}setBezier(e,t,i,s,n,h,a,r,o,l,c){let f=this.curves,d=this.getFrameCount()+e*18;i==0&&(f[t]=2+d);let u=(s-h*2+r)*.03,m=o*.03-a*.06,g=((h-r)*3-s+l)*.006,b=(a-o+.33333333)*.018,w=u*2+g,x=m*2+b,p=(h-s)*.3+u+g*.16666667,y=a*.3+m+b*.16666667,v=s+p,A=y;for(let C=d+18;d<C;d+=2)f[d]=v,f[d+1]=A,p+=w,y+=x,w+=g,x+=b,v+=p,A+=y}getCurvePercent(e,t){let i=this.curves,s=i[t];switch(s){case 0:let r=this.frames[t];return(e-r)/(this.frames[t+this.getFrameEntries()]-r);case 1:return 0}if(s-=2,i[s]>e){let r=this.frames[t];return i[s+1]*(e-r)/(i[s]-r)}let n=s+18;for(s+=2;s<n;s+=2)if(i[s]>=e){let r=i[s-2],o=i[s-1];return o+(e-r)/(i[s]-r)*(i[s+1]-o)}let h=i[n-2],a=i[n-1];return a+(1-a)*(e-h)/(this.frames[t+this.getFrameEntries()]-h)}apply(e,t,i,s,n,h,a){let r=e.slots[this.slotIndex];if(!r.bone.active)return;let o=r.getAttachment();if(!o||!(o instanceof Ye)||o.timelineAttachment!=this.attachment)return;let l=r.deform;l.length==0&&(h=0);let c=this.vertices,f=c[0].length,d=this.frames;if(i<d[0]){switch(h){case 0:l.length=0;return;case 1:if(n==1){l.length=0;return}l.length=f;let x=o;if(x.bones){n=1-n;for(var u=0;u<f;u++)l[u]*=n}else{let p=x.vertices;for(var u=0;u<f;u++)l[u]+=(p[u]-l[u])*n}}return}if(l.length=f,i>=d[d.length-1]){let x=c[d.length-1];if(n==1)if(h==3){let p=o;if(p.bones)for(let y=0;y<f;y++)l[y]+=x[y];else{let y=p.vertices;for(let v=0;v<f;v++)l[v]+=x[v]-y[v]}}else P.arrayCopy(x,0,l,0,f);else switch(h){case 0:{let y=o;if(y.bones)for(let v=0;v<f;v++)l[v]=x[v]*n;else{let v=y.vertices;for(let A=0;A<f;A++){let C=v[A];l[A]=C+(x[A]-C)*n}}break}case 1:case 2:for(let y=0;y<f;y++)l[y]+=(x[y]-l[y])*n;break;case 3:let p=o;if(p.bones)for(let y=0;y<f;y++)l[y]+=x[y]*n;else{let y=p.vertices;for(let v=0;v<f;v++)l[v]+=(x[v]-y[v])*n}}return}let m=me.search1(d,i),g=this.getCurvePercent(i,m),b=c[m],w=c[m+1];if(n==1)if(h==3){let x=o;if(x.bones)for(let p=0;p<f;p++){let y=b[p];l[p]+=y+(w[p]-y)*g}else{let p=x.vertices;for(let y=0;y<f;y++){let v=b[y];l[y]+=v+(w[y]-v)*g-p[y]}}}else for(let x=0;x<f;x++){let p=b[x];l[x]=p+(w[x]-p)*g}else switch(h){case 0:{let p=o;if(p.bones)for(let y=0;y<f;y++){let v=b[y];l[y]=(v+(w[y]-v)*g)*n}else{let y=p.vertices;for(let v=0;v<f;v++){let A=b[v],C=y[v];l[v]=C+(A+(w[v]-A)*g-C)*n}}break}case 1:case 2:for(let p=0;p<f;p++){let y=b[p];l[p]+=(y+(w[p]-y)*g-l[p])*n}break;case 3:let x=o;if(x.bones)for(let p=0;p<f;p++){let y=b[p];l[p]+=(y+(w[p]-y)*g)*n}else{let p=x.vertices;for(let y=0;y<f;y++){let v=b[y];l[y]+=(v+(w[y]-v)*g-p[y])*n}}}}},ns=class extends me{events;constructor(e){super(e,ns.propertyIds),this.events=new Array(e)}getFrameCount(){return this.frames.length}setFrame(e,t){this.frames[e]=t.time,this.events[e]=t}apply(e,t,i,s,n,h,a){if(!s)return;let r=this.frames,o=this.frames.length;if(t>i)this.apply(e,t,Number.MAX_VALUE,s,n,h,a),t=-1;else if(t>=r[o-1])return;if(i<r[0])return;let l=0;if(t<r[0])l=0;else{l=me.search1(r,t)+1;let c=r[l];for(;l>0&&r[l-1]==c;)l--}for(;l<o&&i>=r[l];l++)s.push(this.events[l])}},ht=ns;B(ht,"propertyIds",[""+re.event]);var as=class extends me{drawOrders;constructor(e){super(e,as.propertyIds),this.drawOrders=new Array(e)}getFrameCount(){return this.frames.length}setFrame(e,t,i){this.frames[e]=t,this.drawOrders[e]=i}apply(e,t,i,s,n,h,a){if(a==1){h==0&&P.arrayCopy(e.slots,0,e.drawOrder,0,e.slots.length);return}if(i<this.frames[0]){(h==0||h==1)&&P.arrayCopy(e.slots,0,e.drawOrder,0,e.slots.length);return}let r=me.search1(this.frames,i),o=this.drawOrders[r];if(!o)P.arrayCopy(e.slots,0,e.drawOrder,0,e.slots.length);else{let l=e.drawOrder,c=e.slots;for(let f=0,d=o.length;f<d;f++)l[f]=c[o[f]]}}},Ge=as;B(Ge,"propertyIds",[""+re.drawOrder]);var oi=class extends Re{constraintIndex=0;constructor(e,t,i){super(e,t,[re.ikConstraint+"|"+i]),this.constraintIndex=i}getFrameEntries(){return 6}setFrame(e,t,i,s,n,h,a){e*=6,this.frames[e]=t,this.frames[e+1]=i,this.frames[e+2]=s,this.frames[e+3]=n,this.frames[e+4]=h?1:0,this.frames[e+5]=a?1:0}apply(e,t,i,s,n,h,a){let r=e.ikConstraints[this.constraintIndex];if(!r.active)return;let o=this.frames;if(i<o[0]){switch(h){case 0:r.mix=r.data.mix,r.softness=r.data.softness,r.bendDirection=r.data.bendDirection,r.compress=r.data.compress,r.stretch=r.data.stretch;return;case 1:r.mix+=(r.data.mix-r.mix)*n,r.softness+=(r.data.softness-r.softness)*n,r.bendDirection=r.data.bendDirection,r.compress=r.data.compress,r.stretch=r.data.stretch}return}let l=0,c=0,f=me.search(o,i,6),d=this.curves[f/6];switch(d){case 0:let u=o[f];l=o[f+1],c=o[f+2];let m=(i-u)/(o[f+6]-u);l+=(o[f+6+1]-l)*m,c+=(o[f+6+2]-c)*m;break;case 1:l=o[f+1],c=o[f+2];break;default:l=this.getBezierValue(i,f,1,d-2),c=this.getBezierValue(i,f,2,d+18-2)}h==0?(r.mix=r.data.mix+(l-r.data.mix)*n,r.softness=r.data.softness+(c-r.data.softness)*n,a==1?(r.bendDirection=r.data.bendDirection,r.compress=r.data.compress,r.stretch=r.data.stretch):(r.bendDirection=o[f+3],r.compress=o[f+4]!=0,r.stretch=o[f+5]!=0)):(r.mix+=(l-r.mix)*n,r.softness+=(c-r.softness)*n,a==0&&(r.bendDirection=o[f+3],r.compress=o[f+4]!=0,r.stretch=o[f+5]!=0))}},hi=class extends Re{constraintIndex=0;constructor(e,t,i){super(e,t,[re.transformConstraint+"|"+i]),this.constraintIndex=i}getFrameEntries(){return 7}setFrame(e,t,i,s,n,h,a,r){let o=this.frames;e*=7,o[e]=t,o[e+1]=i,o[e+2]=s,o[e+3]=n,o[e+4]=h,o[e+5]=a,o[e+6]=r}apply(e,t,i,s,n,h,a){let r=e.transformConstraints[this.constraintIndex];if(!r.active)return;let o=this.frames;if(i<o[0]){let w=r.data;switch(h){case 0:r.mixRotate=w.mixRotate,r.mixX=w.mixX,r.mixY=w.mixY,r.mixScaleX=w.mixScaleX,r.mixScaleY=w.mixScaleY,r.mixShearY=w.mixShearY;return;case 1:r.mixRotate+=(w.mixRotate-r.mixRotate)*n,r.mixX+=(w.mixX-r.mixX)*n,r.mixY+=(w.mixY-r.mixY)*n,r.mixScaleX+=(w.mixScaleX-r.mixScaleX)*n,r.mixScaleY+=(w.mixScaleY-r.mixScaleY)*n,r.mixShearY+=(w.mixShearY-r.mixShearY)*n}return}let l,c,f,d,u,m,g=me.search(o,i,7),b=this.curves[g/7];switch(b){case 0:let w=o[g];l=o[g+1],c=o[g+2],f=o[g+3],d=o[g+4],u=o[g+5],m=o[g+6];let x=(i-w)/(o[g+7]-w);l+=(o[g+7+1]-l)*x,c+=(o[g+7+2]-c)*x,f+=(o[g+7+3]-f)*x,d+=(o[g+7+4]-d)*x,u+=(o[g+7+5]-u)*x,m+=(o[g+7+6]-m)*x;break;case 1:l=o[g+1],c=o[g+2],f=o[g+3],d=o[g+4],u=o[g+5],m=o[g+6];break;default:l=this.getBezierValue(i,g,1,b-2),c=this.getBezierValue(i,g,2,b+18-2),f=this.getBezierValue(i,g,3,b+18*2-2),d=this.getBezierValue(i,g,4,b+18*3-2),u=this.getBezierValue(i,g,5,b+18*4-2),m=this.getBezierValue(i,g,6,b+18*5-2)}if(h==0){let w=r.data;r.mixRotate=w.mixRotate+(l-w.mixRotate)*n,r.mixX=w.mixX+(c-w.mixX)*n,r.mixY=w.mixY+(f-w.mixY)*n,r.mixScaleX=w.mixScaleX+(d-w.mixScaleX)*n,r.mixScaleY=w.mixScaleY+(u-w.mixScaleY)*n,r.mixShearY=w.mixShearY+(m-w.mixShearY)*n}else r.mixRotate+=(l-r.mixRotate)*n,r.mixX+=(c-r.mixX)*n,r.mixY+=(f-r.mixY)*n,r.mixScaleX+=(d-r.mixScaleX)*n,r.mixScaleY+=(u-r.mixScaleY)*n,r.mixShearY+=(m-r.mixShearY)*n}},ci=class extends Te{constraintIndex=0;constructor(e,t,i){super(e,t,re.pathConstraintPosition+"|"+i),this.constraintIndex=i}apply(e,t,i,s,n,h,a){let r=e.pathConstraints[this.constraintIndex];r.active&&(r.position=this.getAbsoluteValue(i,n,h,r.position,r.data.position))}},di=class extends Te{constraintIndex=0;constructor(e,t,i){super(e,t,re.pathConstraintSpacing+"|"+i),this.constraintIndex=i}apply(e,t,i,s,n,h,a){let r=e.pathConstraints[this.constraintIndex];r.active&&(r.spacing=this.getAbsoluteValue(i,n,h,r.spacing,r.data.spacing))}},fi=class extends Re{constraintIndex=0;constructor(e,t,i){super(e,t,[re.pathConstraintMix+"|"+i]),this.constraintIndex=i}getFrameEntries(){return 4}setFrame(e,t,i,s,n){let h=this.frames;e<<=2,h[e]=t,h[e+1]=i,h[e+2]=s,h[e+3]=n}apply(e,t,i,s,n,h,a){let r=e.pathConstraints[this.constraintIndex];if(!r.active)return;let o=this.frames;if(i<o[0]){switch(h){case 0:r.mixRotate=r.data.mixRotate,r.mixX=r.data.mixX,r.mixY=r.data.mixY;return;case 1:r.mixRotate+=(r.data.mixRotate-r.mixRotate)*n,r.mixX+=(r.data.mixX-r.mixX)*n,r.mixY+=(r.data.mixY-r.mixY)*n}return}let l,c,f,d=me.search(o,i,4),u=this.curves[d>>2];switch(u){case 0:let m=o[d];l=o[d+1],c=o[d+2],f=o[d+3];let g=(i-m)/(o[d+4]-m);l+=(o[d+4+1]-l)*g,c+=(o[d+4+2]-c)*g,f+=(o[d+4+3]-f)*g;break;case 1:l=o[d+1],c=o[d+2],f=o[d+3];break;default:l=this.getBezierValue(i,d,1,u-2),c=this.getBezierValue(i,d,2,u+18-2),f=this.getBezierValue(i,d,3,u+18*2-2)}if(h==0){let m=r.data;r.mixRotate=m.mixRotate+(l-m.mixRotate)*n,r.mixX=m.mixX+(c-m.mixX)*n,r.mixY=m.mixY+(f-m.mixY)*n}else r.mixRotate+=(l-r.mixRotate)*n,r.mixX+=(c-r.mixX)*n,r.mixY+=(f-r.mixY)*n}},Oe=class extends Te{constraintIndex=0;constructor(e,t,i,s){super(e,t,s+"|"+i),this.constraintIndex=i}apply(e,t,i,s,n,h,a){let r;if(this.constraintIndex==-1){const o=i>=this.frames[0]?this.getCurveValue(i):0;for(const l of e.physicsConstraints)l.active&&this.global(l.data)&&this.set(l,this.getAbsoluteValue2(i,n,h,this.get(l),this.setup(l),o))}else r=e.physicsConstraints[this.constraintIndex],r.active&&this.set(r,this.getAbsoluteValue(i,n,h,this.get(r),this.setup(r)))}},ui=class extends Oe{constructor(e,t,i){super(e,t,i,re.physicsConstraintInertia)}setup(e){return e.data.inertia}get(e){return e.inertia}set(e,t){e.inertia=t}global(e){return e.inertiaGlobal}},mi=class extends Oe{constructor(e,t,i){super(e,t,i,re.physicsConstraintStrength)}setup(e){return e.data.strength}get(e){return e.strength}set(e,t){e.strength=t}global(e){return e.strengthGlobal}},gi=class extends Oe{constructor(e,t,i){super(e,t,i,re.physicsConstraintDamping)}setup(e){return e.data.damping}get(e){return e.damping}set(e,t){e.damping=t}global(e){return e.dampingGlobal}},xi=class extends Oe{constructor(e,t,i){super(e,t,i,re.physicsConstraintMass)}setup(e){return 1/e.data.massInverse}get(e){return 1/e.massInverse}set(e,t){e.massInverse=1/t}global(e){return e.massGlobal}},pi=class extends Oe{constructor(e,t,i){super(e,t,i,re.physicsConstraintWind)}setup(e){return e.data.wind}get(e){return e.wind}set(e,t){e.wind=t}global(e){return e.windGlobal}},wi=class extends Oe{constructor(e,t,i){super(e,t,i,re.physicsConstraintGravity)}setup(e){return e.data.gravity}get(e){return e.gravity}set(e,t){e.gravity=t}global(e){return e.gravityGlobal}},bi=class extends Oe{constructor(e,t,i){super(e,t,i,re.physicsConstraintMix)}setup(e){return e.data.mix}get(e){return e.mix}set(e,t){e.mix=t}global(e){return e.mixGlobal}},ls=class extends me{constraintIndex;constructor(e,t){super(e,ls.propertyIds),this.constraintIndex=t}getFrameCount(){return this.frames.length}setFrame(e,t){this.frames[e]=t}apply(e,t,i,s,n,h,a){let r;if(this.constraintIndex!=-1&&(r=e.physicsConstraints[this.constraintIndex],!r.active))return;const o=this.frames;if(t>i)this.apply(e,t,Number.MAX_VALUE,[],n,h,a),t=-1;else if(t>=o[o.length-1])return;if(!(i<o[0])&&(t<o[0]||i>=o[me.search1(o,t)+1]))if(r!=null)r.reset();else for(const l of e.physicsConstraints)l.active&&l.reset()}},vt=ls;B(vt,"propertyIds",[re.physicsConstraintReset.toString()]);var De=class extends me{slotIndex;attachment;constructor(e,t,i){super(e,[re.sequence+"|"+t+"|"+i.sequence.id]),this.slotIndex=t,this.attachment=i}getFrameEntries(){return De.ENTRIES}getSlotIndex(){return this.slotIndex}getAttachment(){return this.attachment}setFrame(e,t,i,s,n){let h=this.frames;e*=De.ENTRIES,h[e]=t,h[e+De.MODE]=i|s<<4,h[e+De.DELAY]=n}apply(e,t,i,s,n,h,a){let r=e.slots[this.slotIndex];if(!r.bone.active)return;let o=r.attachment,l=this.attachment;if(o!=l&&(!(o instanceof Ye)||o.timelineAttachment!=l))return;if(a==1){h==0&&(r.sequenceIndex=-1);return}let c=this.frames;if(i<c[0]){(h==0||h==1)&&(r.sequenceIndex=-1);return}let f=me.search(c,i,De.ENTRIES),d=c[f],u=c[f+De.MODE],m=c[f+De.DELAY];if(!this.attachment.sequence)return;let g=u>>4,b=this.attachment.sequence.regions.length,w=is[u&15];if(w!=0)switch(g+=(i-d)/m+1e-5|0,w){case 1:g=Math.min(b-1,g);break;case 2:g%=b;break;case 3:{let x=(b<<1)-2;g=x==0?0:g%x,g>=b&&(g=x-g);break}case 4:g=Math.max(b-1-g,0);break;case 5:g=b-1-g%b;break;case 6:{let x=(b<<1)-2;g=x==0?0:(g+b-1)%x,g>=b&&(g=x-g)}}r.sequenceIndex=g}},$e=De;B($e,"ENTRIES",3),B($e,"MODE",1),B($e,"DELAY",2);var yt=class{static emptyAnimation(){return yt._emptyAnimation}data;tracks=new Array;timeScale=1;unkeyedState=0;events=new Array;listeners=new Array;queue=new cs(this);propertyIDs=new zt;animationsChanged=!1;trackEntryPool=new lt(()=>new hs);constructor(e){this.data=e}update(e){e*=this.timeScale;let t=this.tracks;for(let i=0,s=t.length;i<s;i++){let n=t[i];if(!n)continue;n.animationLast=n.nextAnimationLast,n.trackLast=n.nextTrackLast;let h=e*n.timeScale;if(n.delay>0){if(n.delay-=h,n.delay>0)continue;h=-n.delay,n.delay=0}let a=n.next;if(a){let r=n.trackLast-a.delay;if(r>=0){for(a.delay=0,a.trackTime+=n.timeScale==0?0:(r/n.timeScale+e)*a.timeScale,n.trackTime+=h,this.setCurrent(i,a,!0);a.mixingFrom;)a.mixTime+=e,a=a.mixingFrom;continue}}else if(n.trackLast>=n.trackEnd&&!n.mixingFrom){t[i]=null,this.queue.end(n),this.clearNext(n);continue}if(n.mixingFrom&&this.updateMixingFrom(n,e)){let r=n.mixingFrom;for(n.mixingFrom=null,r&&(r.mixingTo=null);r;)this.queue.end(r),r=r.mixingFrom}n.trackTime+=h}this.queue.drain()}updateMixingFrom(e,t){let i=e.mixingFrom;if(!i)return!0;let s=this.updateMixingFrom(i,t);return i.animationLast=i.nextAnimationLast,i.trackLast=i.nextTrackLast,e.nextTrackLast!=-1&&e.mixTime>=e.mixDuration?((i.totalAlpha==0||e.mixDuration==0)&&(e.mixingFrom=i.mixingFrom,i.mixingFrom!=null&&(i.mixingFrom.mixingTo=e),e.interruptAlpha=i.interruptAlpha,this.queue.end(i)),s):(i.trackTime+=t*i.timeScale,e.mixTime+=t,!1)}apply(e){if(!e)throw new Error("skeleton cannot be null.");this.animationsChanged&&this._animationsChanged();let t=this.events,i=this.tracks,s=!1;for(let f=0,d=i.length;f<d;f++){let u=i[f];if(!u||u.delay>0)continue;s=!0;let m=f==0?1:u.mixBlend,g=u.alpha;u.mixingFrom?g*=this.applyMixingFrom(u,e,m):u.trackTime>=u.trackEnd&&!u.next&&(g=0);let b=g>=u.alphaAttachmentThreshold,w=u.animationLast,x=u.getAnimationTime(),p=x,y=t;u.reverse&&(p=u.animation.duration-p,y=null);let v=u.animation.timelines,A=v.length;if(f==0&&g==1||m==3){f==0&&(b=!0);for(let C=0;C<A;C++){P.webkit602BugfixHelper(g,m);var n=v[C];n instanceof qe?this.applyAttachmentTimeline(n,e,p,m,b):n.apply(e,w,p,y,g,m,0)}}else{let C=u.timelineMode,S=u.shortestRotation,E=!S&&u.timelinesRotation.length!=A<<1;E&&(u.timelinesRotation.length=A<<1);for(let Y=0;Y<A;Y++){let k=v[Y],X=C[Y]==At?m:0;!S&&k instanceof ot?this.applyRotateTimeline(k,e,p,g,X,u.timelinesRotation,Y<<1,E):k instanceof qe?this.applyAttachmentTimeline(k,e,p,m,b):(P.webkit602BugfixHelper(g,m),k.apply(e,w,p,y,g,X,0))}}this.queueEvents(u,x),t.length=0,u.nextAnimationLast=x,u.nextTrackLast=u.trackTime}for(var h=this.unkeyedState+Ai,a=e.slots,r=0,o=e.slots.length;r<o;r++){var l=a[r];if(l.attachmentState==h){var c=l.data.attachmentName;l.setAttachment(c?e.getAttachment(l.data.index,c):null)}}return this.unkeyedState+=2,this.queue.drain(),s}applyMixingFrom(e,t,i){let s=e.mixingFrom;s.mixingFrom&&this.applyMixingFrom(s,t,i);let n=0;e.mixDuration==0?(n=1,i==1&&(i=0)):(n=e.mixTime/e.mixDuration,n>1&&(n=1),i!=1&&(i=s.mixBlend));let h=n<s.mixAttachmentThreshold,a=n<s.mixDrawOrderThreshold,r=s.animation.timelines,o=r.length,l=s.alpha*e.interruptAlpha,c=l*(1-n),f=s.animationLast,d=s.getAnimationTime(),u=d,m=null;if(s.reverse?u=s.animation.duration-u:n<s.eventThreshold&&(m=this.events),i==3)for(let g=0;g<o;g++)r[g].apply(t,f,u,m,c,i,1);else{let g=s.timelineMode,b=s.timelineHoldMix,w=s.shortestRotation,x=!w&&s.timelinesRotation.length!=o<<1;x&&(s.timelinesRotation.length=o<<1),s.totalAlpha=0;for(let p=0;p<o;p++){let y=r[p],v=1,A,C=0;switch(g[p]){case At:if(!a&&y instanceof Ge)continue;A=i,C=c;break;case vi:A=0,C=c;break;case yi:A=i,C=l;break;case Ct:A=0,C=l;break;default:A=0;let S=b[p];C=l*Math.max(0,1-S.mixTime/S.mixDuration);break}s.totalAlpha+=C,!w&&y instanceof ot?this.applyRotateTimeline(y,t,u,C,A,s.timelinesRotation,p<<1,x):y instanceof qe?this.applyAttachmentTimeline(y,t,u,A,h&&C>=s.alphaAttachmentThreshold):(P.webkit602BugfixHelper(C,i),a&&y instanceof Ge&&A==0&&(v=0),y.apply(t,f,u,m,C,A,v))}}return e.mixDuration>0&&this.queueEvents(s,d),this.events.length=0,s.nextAnimationLast=d,s.nextTrackLast=s.trackTime,n}applyAttachmentTimeline(e,t,i,s,n){var h=t.slots[e.slotIndex];h.bone.active&&(i<e.frames[0]?(s==0||s==1)&&this.setAttachment(t,h,h.data.attachmentName,n):this.setAttachment(t,h,e.attachmentNames[me.search1(e.frames,i)],n),h.attachmentState<=this.unkeyedState&&(h.attachmentState=this.unkeyedState+Ai))}setAttachment(e,t,i,s){t.setAttachment(i?e.getAttachment(t.data.index,i):null),s&&(t.attachmentState=this.unkeyedState+fs)}applyRotateTimeline(e,t,i,s,n,h,a,r){if(r&&(h[a]=0),s==1){e.apply(t,0,i,null,1,n,0);return}let o=t.bones[e.boneIndex];if(!o.active)return;let l=e.frames,c=0,f=0;if(i<l[0])switch(n){case 0:o.rotation=o.data.rotation;default:return;case 1:c=o.rotation,f=o.data.rotation}else c=n==0?o.data.rotation:o.rotation,f=o.data.rotation+e.getCurveValue(i);let d=0,u=f-c;if(u-=Math.ceil(u/360-.5)*360,u==0)d=h[a];else{let m=0,g=0;r?(m=0,g=u):(m=h[a],g=h[a+1]);let b=m-m%360;d=u+b;let w=u>=0,x=m>=0;Math.abs(g)<=90&&L.signum(g)!=L.signum(u)&&(Math.abs(m-b)>180?(d+=360*L.signum(m),x=w):b!=0?d-=360*L.signum(m):x=w),x!=w&&(d+=360*L.signum(m)),h[a]=d}h[a+1]=u,o.rotation=c+d*s}queueEvents(e,t){let i=e.animationStart,s=e.animationEnd,n=s-i,h=e.trackLast%n,a=this.events,r=0,o=a.length;for(;r<o;r++){let c=a[r];if(c.time<h)break;c.time>s||this.queue.event(e,c)}let l=!1;if(e.loop)if(n==0)l=!0;else{const c=Math.floor(e.trackTime/n);l=c>0&&c>Math.floor(e.trackLast/n)}else l=t>=s&&e.animationLast<s;for(l&&this.queue.complete(e);r<o;r++){let c=a[r];c.time<i||this.queue.event(e,c)}}clearTracks(){let e=this.queue.drainDisabled;this.queue.drainDisabled=!0;for(let t=0,i=this.tracks.length;t<i;t++)this.clearTrack(t);this.tracks.length=0,this.queue.drainDisabled=e,this.queue.drain()}clearTrack(e){if(e>=this.tracks.length)return;let t=this.tracks[e];if(!t)return;this.queue.end(t),this.clearNext(t);let i=t;for(;;){let s=i.mixingFrom;if(!s)break;this.queue.end(s),i.mixingFrom=null,i.mixingTo=null,i=s}this.tracks[t.trackIndex]=null,this.queue.drain()}setCurrent(e,t,i){let s=this.expandToIndex(e);this.tracks[e]=t,t.previous=null,s&&(i&&this.queue.interrupt(s),t.mixingFrom=s,s.mixingTo=t,t.mixTime=0,s.mixingFrom&&s.mixDuration>0&&(t.interruptAlpha*=Math.min(1,s.mixTime/s.mixDuration)),s.timelinesRotation.length=0),this.queue.start(t)}setAnimation(e,t,i=!1){let s=this.data.skeletonData.findAnimation(t);if(!s)throw new Error("Animation not found: "+t);return this.setAnimationWith(e,s,i)}setAnimationWith(e,t,i=!1){if(!t)throw new Error("animation cannot be null.");let s=!0,n=this.expandToIndex(e);n&&(n.nextTrackLast==-1?(this.tracks[e]=n.mixingFrom,this.queue.interrupt(n),this.queue.end(n),this.clearNext(n),n=n.mixingFrom,s=!1):this.clearNext(n));let h=this.trackEntry(e,t,i,n);return this.setCurrent(e,h,s),this.queue.drain(),h}addAnimation(e,t,i=!1,s=0){let n=this.data.skeletonData.findAnimation(t);if(!n)throw new Error("Animation not found: "+t);return this.addAnimationWith(e,n,i,s)}addAnimationWith(e,t,i=!1,s=0){if(!t)throw new Error("animation cannot be null.");let n=this.expandToIndex(e);if(n)for(;n.next;)n=n.next;let h=this.trackEntry(e,t,i,n);return n?(n.next=h,h.previous=n,s<=0&&(s+=n.getTrackComplete()-h.mixDuration)):(this.setCurrent(e,h,!0),this.queue.drain()),h.delay=s,h}setEmptyAnimation(e,t=0){let i=this.setAnimationWith(e,yt.emptyAnimation(),!1);return i.mixDuration=t,i.trackEnd=t,i}addEmptyAnimation(e,t=0,i=0){let s=this.addAnimationWith(e,yt.emptyAnimation(),!1,i);return i<=0&&(s.delay+=s.mixDuration-t),s.mixDuration=t,s.trackEnd=t,s}setEmptyAnimations(e=0){let t=this.queue.drainDisabled;this.queue.drainDisabled=!0;for(let i=0,s=this.tracks.length;i<s;i++){let n=this.tracks[i];n&&this.setEmptyAnimation(n.trackIndex,e)}this.queue.drainDisabled=t,this.queue.drain()}expandToIndex(e){return e<this.tracks.length?this.tracks[e]:(P.ensureArrayCapacity(this.tracks,e+1,null),this.tracks.length=e+1,null)}trackEntry(e,t,i,s){let n=this.trackEntryPool.obtain();return n.reset(),n.trackIndex=e,n.animation=t,n.loop=i,n.holdPrevious=!1,n.reverse=!1,n.shortestRotation=!1,n.eventThreshold=0,n.alphaAttachmentThreshold=0,n.mixAttachmentThreshold=0,n.mixDrawOrderThreshold=0,n.animationStart=0,n.animationEnd=t.duration,n.animationLast=-1,n.nextAnimationLast=-1,n.delay=0,n.trackTime=0,n.trackLast=-1,n.nextTrackLast=-1,n.trackEnd=Number.MAX_VALUE,n.timeScale=1,n.alpha=1,n.mixTime=0,n.mixDuration=s?this.data.getMix(s.animation,t):0,n.interruptAlpha=1,n.totalAlpha=0,n.mixBlend=2,n}clearNext(e){let t=e.next;for(;t;)this.queue.dispose(t),t=t.next;e.next=null}_animationsChanged(){this.animationsChanged=!1,this.propertyIDs.clear();let e=this.tracks;for(let t=0,i=e.length;t<i;t++){let s=e[t];if(s){for(;s.mixingFrom;)s=s.mixingFrom;do(!s.mixingTo||s.mixBlend!=3)&&this.computeHold(s),s=s.mixingTo;while(s)}}}computeHold(e){let t=e.mixingTo,i=e.animation.timelines,s=e.animation.timelines.length,n=e.timelineMode;n.length=s;let h=e.timelineHoldMix;h.length=0;let a=this.propertyIDs;if(t&&t.holdPrevious){for(let r=0;r<s;r++)n[r]=a.addAll(i[r].getPropertyIds())?Ct:yi;return}e:for(let r=0;r<s;r++){let o=i[r],l=o.getPropertyIds();if(!a.addAll(l))n[r]=At;else if(!t||o instanceof qe||o instanceof Ge||o instanceof ht||!t.animation.hasTimeline(l))n[r]=vi;else{for(let c=t.mixingTo;c;c=c.mixingTo)if(!c.animation.hasTimeline(l)){if(e.mixDuration>0){n[r]=ds,h[r]=c;continue e}break}n[r]=Ct}}}getCurrent(e){return e>=this.tracks.length?null:this.tracks[e]}addListener(e){if(!e)throw new Error("listener cannot be null.");this.listeners.push(e)}removeListener(e){let t=this.listeners.indexOf(e);t>=0&&this.listeners.splice(t,1)}clearListeners(){this.listeners.length=0}clearListenerNotifications(){this.queue.clear()}},os=yt;B(os,"_emptyAnimation",new wt("<empty>",[],0));var hs=class{animation=null;previous=null;next=null;mixingFrom=null;mixingTo=null;listener=null;trackIndex=0;loop=!1;holdPrevious=!1;reverse=!1;shortestRotation=!1;eventThreshold=0;mixAttachmentThreshold=0;alphaAttachmentThreshold=0;mixDrawOrderThreshold=0;animationStart=0;animationEnd=0;animationLast=0;nextAnimationLast=0;delay=0;trackTime=0;trackLast=0;nextTrackLast=0;trackEnd=0;timeScale=0;alpha=0;mixTime=0;_mixDuration=0;interruptAlpha=0;totalAlpha=0;get mixDuration(){return this._mixDuration}set mixDuration(e){this._mixDuration=e}setMixDurationWithDelay(e,t){this._mixDuration=e,this.previous!=null&&t<=0&&(t+=this.previous.getTrackComplete()-e),this.delay=t}mixBlend=2;timelineMode=new Array;timelineHoldMix=new Array;timelinesRotation=new Array;reset(){this.next=null,this.previous=null,this.mixingFrom=null,this.mixingTo=null,this.animation=null,this.listener=null,this.timelineMode.length=0,this.timelineHoldMix.length=0,this.timelinesRotation.length=0}getAnimationTime(){if(this.loop){let e=this.animationEnd-this.animationStart;return e==0?this.animationStart:this.trackTime%e+this.animationStart}return Math.min(this.trackTime+this.animationStart,this.animationEnd)}setAnimationLast(e){this.animationLast=e,this.nextAnimationLast=e}isComplete(){return this.trackTime>=this.animationEnd-this.animationStart}resetRotationDirections(){this.timelinesRotation.length=0}getTrackComplete(){let e=this.animationEnd-this.animationStart;if(e!=0){if(this.loop)return e*(1+(this.trackTime/e|0));if(this.trackTime<e)return e}return this.trackTime}wasApplied(){return this.nextTrackLast!=-1}isNextReady(){return this.next!=null&&this.nextTrackLast-this.next.delay>=0}},cs=class{objects=[];drainDisabled=!1;animState;constructor(e){this.animState=e}start(e){this.objects.push(Ce.start),this.objects.push(e),this.animState.animationsChanged=!0}interrupt(e){this.objects.push(Ce.interrupt),this.objects.push(e)}end(e){this.objects.push(Ce.end),this.objects.push(e),this.animState.animationsChanged=!0}dispose(e){this.objects.push(Ce.dispose),this.objects.push(e)}complete(e){this.objects.push(Ce.complete),this.objects.push(e)}event(e,t){this.objects.push(Ce.event),this.objects.push(e),this.objects.push(t)}drain(){if(this.drainDisabled)return;this.drainDisabled=!0;let e=this.objects,t=this.animState.listeners;for(let i=0;i<e.length;i+=2){let s=e[i],n=e[i+1];switch(s){case Ce.start:n.listener&&n.listener.start&&n.listener.start(n);for(let a=0;a<t.length;a++){let r=t[a];r.start&&r.start(n)}break;case Ce.interrupt:n.listener&&n.listener.interrupt&&n.listener.interrupt(n);for(let a=0;a<t.length;a++){let r=t[a];r.interrupt&&r.interrupt(n)}break;case Ce.end:n.listener&&n.listener.end&&n.listener.end(n);for(let a=0;a<t.length;a++){let r=t[a];r.end&&r.end(n)}case Ce.dispose:n.listener&&n.listener.dispose&&n.listener.dispose(n);for(let a=0;a<t.length;a++){let r=t[a];r.dispose&&r.dispose(n)}this.animState.trackEntryPool.free(n);break;case Ce.complete:n.listener&&n.listener.complete&&n.listener.complete(n);for(let a=0;a<t.length;a++){let r=t[a];r.complete&&r.complete(n)}break;case Ce.event:let h=e[i+++2];n.listener&&n.listener.event&&n.listener.event(n,h);for(let a=0;a<t.length;a++){let r=t[a];r.event&&r.event(n,h)}break}}this.clear(),this.drainDisabled=!1}clear(){this.objects.length=0}},Ce=(e=>(e[e.start=0]="start",e[e.interrupt=1]="interrupt",e[e.end=2]="end",e[e.dispose=3]="dispose",e[e.complete=4]="complete",e[e.event=5]="event",e))(Ce||{}),Ws=class{start(e){}interrupt(e){}end(e){}dispose(e){}complete(e){}event(e,t){}},At=0,vi=1,yi=2,Ct=3,ds=4,Ai=1,fs=2,qs=class{skeletonData;animationToMixTime={};defaultMix=0;constructor(e){if(!e)throw new Error("skeletonData cannot be null.");this.skeletonData=e}setMix(e,t,i){let s=this.skeletonData.findAnimation(e);if(!s)throw new Error("Animation not found: "+e);let n=this.skeletonData.findAnimation(t);if(!n)throw new Error("Animation not found: "+t);this.setMixWith(s,n,i)}setMixWith(e,t,i){if(!e)throw new Error("from cannot be null.");if(!t)throw new Error("to cannot be null.");let s=e.name+"."+t.name;this.animationToMixTime[s]=i}getMix(e,t){let i=e.name+"."+t.name,s=this.animationToMixTime[i];return s===void 0?this.defaultMix:s}},St=class extends Ye{color=new V(1,1,1,1);constructor(e){super(e)}copy(){let e=new St(this.name);return this.copyTo(e),e.color.setFromColor(this.color),e}},et=class extends Ye{endSlot=null;color=new V(.2275,.2275,.8078,1);constructor(e){super(e)}copy(){let e=new et(this.name);return this.copyTo(e),e.endSlot=this.endSlot,e.color.setFromColor(this.color),e}},Ci=class{_image;constructor(e){this._image=e}getImage(){return this._image}},It=(e=>(e[e.Nearest=9728]="Nearest",e[e.Linear=9729]="Linear",e[e.MipMap=9987]="MipMap",e[e.MipMapNearestNearest=9984]="MipMapNearestNearest",e[e.MipMapLinearNearest=9985]="MipMapLinearNearest",e[e.MipMapNearestLinear=9986]="MipMapNearestLinear",e[e.MipMapLinearLinear=9987]="MipMapLinearLinear",e))(It||{}),us=(e=>(e[e.MirroredRepeat=33648]="MirroredRepeat",e[e.ClampToEdge=33071]="ClampToEdge",e[e.Repeat=10497]="Repeat",e))(us||{}),ms=class{texture;u=0;v=0;u2=0;v2=0;width=0;height=0;degrees=0;offsetX=0;offsetY=0;originalWidth=0;originalHeight=0},Gs=class extends Ci{setFilters(e,t){}setWraps(e,t){}dispose(){}},gs=class{pages=new Array;regions=new Array;constructor(e){let t=new Hs(e),i=new Array(4),s={};s.size=l=>{l.width=parseInt(i[1]),l.height=parseInt(i[2])},s.format=()=>{},s.filter=l=>{l.minFilter=P.enumValue(It,i[1]),l.magFilter=P.enumValue(It,i[2])},s.repeat=l=>{i[1].indexOf("x")!=-1&&(l.uWrap=10497),i[1].indexOf("y")!=-1&&(l.vWrap=10497)},s.pma=l=>{l.pma=i[1]=="true"};var n={};n.xy=l=>{l.x=parseInt(i[1]),l.y=parseInt(i[2])},n.size=l=>{l.width=parseInt(i[1]),l.height=parseInt(i[2])},n.bounds=l=>{l.x=parseInt(i[1]),l.y=parseInt(i[2]),l.width=parseInt(i[3]),l.height=parseInt(i[4])},n.offset=l=>{l.offsetX=parseInt(i[1]),l.offsetY=parseInt(i[2])},n.orig=l=>{l.originalWidth=parseInt(i[1]),l.originalHeight=parseInt(i[2])},n.offsets=l=>{l.offsetX=parseInt(i[1]),l.offsetY=parseInt(i[2]),l.originalWidth=parseInt(i[3]),l.originalHeight=parseInt(i[4])},n.rotate=l=>{let c=i[1];c=="true"?l.degrees=90:c!="false"&&(l.degrees=parseInt(c))},n.index=l=>{l.index=parseInt(i[1])};let h=t.readLine();for(;h&&h.trim().length==0;)h=t.readLine();for(;!(!h||h.trim().length==0||t.readEntry(i,h)==0);)h=t.readLine();let a=null,r=null,o=null;for(;h!==null;)if(h.trim().length==0)a=null,h=t.readLine();else if(a){let l=new Si(a,h);for(;;){let c=t.readEntry(i,h=t.readLine());if(c==0)break;let f=n[i[0]];if(f)f(l);else{r||(r=[]),o||(o=[]),r.push(i[0]);let d=[];for(let u=0;u<c;u++)d.push(parseInt(i[u+1]));o.push(d)}}l.originalWidth==0&&l.originalHeight==0&&(l.originalWidth=l.width,l.originalHeight=l.height),r&&r.length>0&&o&&o.length>0&&(l.names=r,l.values=o,r=null,o=null),l.u=l.x/a.width,l.v=l.y/a.height,l.degrees==90?(l.u2=(l.x+l.height)/a.width,l.v2=(l.y+l.width)/a.height):(l.u2=(l.x+l.width)/a.width,l.v2=(l.y+l.height)/a.height),this.regions.push(l)}else{for(a=new xs(h.trim());t.readEntry(i,h=t.readLine())!=0;){let l=s[i[0]];l&&l(a)}this.pages.push(a)}}findRegion(e){for(let t=0;t<this.regions.length;t++)if(this.regions[t].name==e)return this.regions[t];return null}setTextures(e,t=""){for(let i of this.pages)i.setTexture(e.get(t+i.name))}dispose(){for(let e=0;e<this.pages.length;e++)this.pages[e].texture?.dispose()}},Hs=class{lines;index=0;constructor(e){this.lines=e.split(/\r\n|\r|\n/)}readLine(){return this.index>=this.lines.length?null:this.lines[this.index++]}readEntry(e,t){if(!t||(t=t.trim(),t.length==0))return 0;let i=t.indexOf(":");if(i==-1)return 0;e[0]=t.substr(0,i).trim();for(let s=1,n=i+1;;s++){let h=t.indexOf(",",n);if(h==-1)return e[s]=t.substr(n).trim(),s;if(e[s]=t.substr(n,h-n).trim(),n=h+1,s==4)return 4}}},xs=class{name;minFilter=9728;magFilter=9728;uWrap=33071;vWrap=33071;texture=null;width=0;height=0;pma=!1;regions=new Array;constructor(e){this.name=e}setTexture(e){this.texture=e,e.setFilters(this.minFilter,this.magFilter),e.setWraps(this.uWrap,this.vWrap);for(let t of this.regions)t.texture=e}},Si=class extends ms{page;name;x=0;y=0;offsetX=0;offsetY=0;originalWidth=0;originalHeight=0;index=0;degrees=0;names=null;values=null;constructor(e,t){super(),this.page=e,this.name=t,e.regions.push(this)}},Ne=class extends Ye{region=null;path;regionUVs=[];uvs=[];triangles=[];color=new V(1,1,1,1);width=0;height=0;hullLength=0;edges=[];parentMesh=null;sequence=null;tempColor=new V(0,0,0,0);constructor(e,t){super(e),this.path=t}updateRegion(){if(!this.region)throw new Error("Region not set.");let e=this.regionUVs;(!this.uvs||this.uvs.length!=e.length)&&(this.uvs=P.newFloatArray(e.length));let t=this.uvs,i=this.uvs.length,s=this.region.u,n=this.region.v,h=0,a=0;if(this.region instanceof Si){let r=this.region,o=r.page,l=o.width,c=o.height;switch(r.degrees){case 90:s-=(r.originalHeight-r.offsetY-r.height)/l,n-=(r.originalWidth-r.offsetX-r.width)/c,h=r.originalHeight/l,a=r.originalWidth/c;for(let f=0;f<i;f+=2)t[f]=s+e[f+1]*h,t[f+1]=n+(1-e[f])*a;return;case 180:s-=(r.originalWidth-r.offsetX-r.width)/l,n-=r.offsetY/c,h=r.originalWidth/l,a=r.originalHeight/c;for(let f=0;f<i;f+=2)t[f]=s+(1-e[f])*h,t[f+1]=n+(1-e[f+1])*a;return;case 270:s-=r.offsetY/l,n-=r.offsetX/c,h=r.originalHeight/l,a=r.originalWidth/c;for(let f=0;f<i;f+=2)t[f]=s+(1-e[f+1])*h,t[f+1]=n+e[f]*a;return}s-=r.offsetX/l,n-=(r.originalHeight-r.offsetY-r.height)/c,h=r.originalWidth/l,a=r.originalHeight/c}else this.region?(h=this.region.u2-s,a=this.region.v2-n):(s=n=0,h=a=1);for(let r=0;r<i;r+=2)t[r]=s+e[r]*h,t[r+1]=n+e[r+1]*a}getParentMesh(){return this.parentMesh}setParentMesh(e){this.parentMesh=e,e&&(this.bones=e.bones,this.vertices=e.vertices,this.worldVerticesLength=e.worldVerticesLength,this.regionUVs=e.regionUVs,this.triangles=e.triangles,this.hullLength=e.hullLength,this.worldVerticesLength=e.worldVerticesLength)}copy(){if(this.parentMesh)return this.newLinkedMesh();let e=new Ne(this.name,this.path);return e.region=this.region,e.color.setFromColor(this.color),this.copyTo(e),e.regionUVs=new Array(this.regionUVs.length),P.arrayCopy(this.regionUVs,0,e.regionUVs,0,this.regionUVs.length),e.uvs=new Array(this.uvs.length),P.arrayCopy(this.uvs,0,e.uvs,0,this.uvs.length),e.triangles=new Array(this.triangles.length),P.arrayCopy(this.triangles,0,e.triangles,0,this.triangles.length),e.hullLength=this.hullLength,e.sequence=this.sequence!=null?this.sequence.copy():null,this.edges&&(e.edges=new Array(this.edges.length),P.arrayCopy(this.edges,0,e.edges,0,this.edges.length)),e.width=this.width,e.height=this.height,e}computeWorldVertices(e,t,i,s,n,h){this.sequence!=null&&this.sequence.apply(e,this),super.computeWorldVertices(e,t,i,s,n,h)}newLinkedMesh(){let e=new Ne(this.name,this.path);return e.region=this.region,e.color.setFromColor(this.color),e.timelineAttachment=this.timelineAttachment,e.setParentMesh(this.parentMesh?this.parentMesh:this),e.region!=null&&e.updateRegion(),e}},He=class extends Ye{lengths=[];closed=!1;constantSpeed=!1;color=new V(1,1,1,1);constructor(e){super(e)}copy(){let e=new He(this.name);return this.copyTo(e),e.lengths=new Array(this.lengths.length),P.arrayCopy(this.lengths,0,e.lengths,0,this.lengths.length),e.closed=closed,e.constantSpeed=this.constantSpeed,e.color.setFromColor(this.color),e}},Ii=class extends Ye{x=0;y=0;rotation=0;color=new V(.38,.94,0,1);constructor(e){super(e)}computeWorldPosition(e,t){return t.x=this.x*e.a+this.y*e.b+e.worldX,t.y=this.x*e.c+this.y*e.d+e.worldY,t}computeWorldRotation(e){const t=this.rotation*L.degRad,i=Math.cos(t),s=Math.sin(t),n=i*e.a+s*e.b,h=i*e.c+s*e.d;return L.atan2Deg(h,n)}copy(){let e=new Ii(this.name);return e.x=this.x,e.y=this.y,e.rotation=this.rotation,e.color.setFromColor(this.color),e}},ps=class extends Wt{x=0;y=0;scaleX=1;scaleY=1;rotation=0;width=0;height=0;color=new V(1,1,1,1);path;region=null;sequence=null;offset=P.newFloatArray(8);uvs=P.newFloatArray(8);tempColor=new V(1,1,1,1);constructor(e,t){super(e),this.path=t}updateRegion(){if(!this.region)throw new Error("Region not set.");let e=this.region,t=this.uvs;if(e==null){t[0]=0,t[1]=0,t[2]=0,t[3]=1,t[4]=1,t[5]=1,t[6]=1,t[7]=0;return}let i=this.width/this.region.originalWidth*this.scaleX,s=this.height/this.region.originalHeight*this.scaleY,n=-this.width/2*this.scaleX+this.region.offsetX*i,h=-this.height/2*this.scaleY+this.region.offsetY*s,a=n+this.region.width*i,r=h+this.region.height*s,o=this.rotation*L.degRad,l=Math.cos(o),c=Math.sin(o),f=this.x,d=this.y,u=n*l+f,m=n*c,g=h*l+d,b=h*c,w=a*l+f,x=a*c,p=r*l+d,y=r*c,v=this.offset;v[0]=u-b,v[1]=g+m,v[2]=u-y,v[3]=p+m,v[4]=w-y,v[5]=p+x,v[6]=w-b,v[7]=g+x,e.degrees==90?(t[0]=e.u2,t[1]=e.v2,t[2]=e.u,t[3]=e.v2,t[4]=e.u,t[5]=e.v,t[6]=e.u2,t[7]=e.v):(t[0]=e.u,t[1]=e.v2,t[2]=e.u,t[3]=e.v,t[4]=e.u2,t[5]=e.v,t[6]=e.u2,t[7]=e.v2)}computeWorldVertices(e,t,i,s){this.sequence!=null&&this.sequence.apply(e,this);let n=e.bone,h=this.offset,a=n.worldX,r=n.worldY,o=n.a,l=n.b,c=n.c,f=n.d,d=0,u=0;d=h[0],u=h[1],t[i]=d*o+u*l+a,t[i+1]=d*c+u*f+r,i+=s,d=h[2],u=h[3],t[i]=d*o+u*l+a,t[i+1]=d*c+u*f+r,i+=s,d=h[4],u=h[5],t[i]=d*o+u*l+a,t[i+1]=d*c+u*f+r,i+=s,d=h[6],u=h[7],t[i]=d*o+u*l+a,t[i+1]=d*c+u*f+r}copy(){let e=new ps(this.name,this.path);return e.region=this.region,e.x=this.x,e.y=this.y,e.scaleX=this.scaleX,e.scaleY=this.scaleY,e.rotation=this.rotation,e.width=this.width,e.height=this.height,P.arrayCopy(this.uvs,0,e.uvs,0,8),P.arrayCopy(this.offset,0,e.offset,0,8),e.color.setFromColor(this.color),e.sequence=this.sequence!=null?this.sequence.copy():null,e}},le=ps;B(le,"X1",0),B(le,"Y1",1),B(le,"C1R",2),B(le,"C1G",3),B(le,"C1B",4),B(le,"C1A",5),B(le,"U1",6),B(le,"V1",7),B(le,"X2",8),B(le,"Y2",9),B(le,"C2R",10),B(le,"C2G",11),B(le,"C2B",12),B(le,"C2A",13),B(le,"U2",14),B(le,"V2",15),B(le,"X3",16),B(le,"Y3",17),B(le,"C3R",18),B(le,"C3G",19),B(le,"C3B",20),B(le,"C3A",21),B(le,"U3",22),B(le,"V3",23),B(le,"X4",24),B(le,"Y4",25),B(le,"C4R",26),B(le,"C4G",27),B(le,"C4B",28),B(le,"C4A",29),B(le,"U4",30),B(le,"V4",31);var js=class{atlas;constructor(e){this.atlas=e}loadSequence(e,t,i){let s=i.regions;for(let n=0,h=s.length;n<h;n++){let a=i.getPath(t,n),r=this.atlas.findRegion(a);if(r==null)throw new Error("Region not found in atlas: "+a+" (sequence: "+e+")");s[n]=r}}newRegionAttachment(e,t,i,s){let n=new le(t,i);if(s!=null)this.loadSequence(t,i,s);else{let h=this.atlas.findRegion(i);if(!h)throw new Error("Region not found in atlas: "+i+" (region attachment: "+t+")");n.region=h}return n}newMeshAttachment(e,t,i,s){let n=new Ne(t,i);if(s!=null)this.loadSequence(t,i,s);else{let h=this.atlas.findRegion(i);if(!h)throw new Error("Region not found in atlas: "+i+" (mesh attachment: "+t+")");n.region=h}return n}newBoundingBoxAttachment(e,t){return new St(t)}newPathAttachment(e,t){return new He(t)}newPointAttachment(e,t){return new Ii(t)}newClippingAttachment(e,t){return new et(t)}},Ti=class{index=0;name;parent=null;length=0;x=0;y=0;rotation=0;scaleX=1;scaleY=1;shearX=0;shearY=0;inherit=ct.Normal;skinRequired=!1;color=new V;icon;visible=!1;constructor(e,t,i){if(e<0)throw new Error("index must be >= 0.");if(!t)throw new Error("name cannot be null.");this.index=e,this.name=t,this.parent=i}},ct=(e=>(e[e.Normal=0]="Normal",e[e.OnlyTranslation=1]="OnlyTranslation",e[e.NoRotationOrReflection=2]="NoRotationOrReflection",e[e.NoScale=3]="NoScale",e[e.NoScaleOrReflection=4]="NoScaleOrReflection",e))(ct||{}),Mi=class{data;skeleton;parent=null;children=new Array;x=0;y=0;rotation=0;scaleX=0;scaleY=0;shearX=0;shearY=0;ax=0;ay=0;arotation=0;ascaleX=0;ascaleY=0;ashearX=0;ashearY=0;a=0;b=0;c=0;d=0;worldY=0;worldX=0;inherit=0;sorted=!1;active=!1;constructor(e,t,i){if(!e)throw new Error("data cannot be null.");if(!t)throw new Error("skeleton cannot be null.");this.data=e,this.skeleton=t,this.parent=i,this.setToSetupPose()}isActive(){return this.active}update(e){this.updateWorldTransformWith(this.ax,this.ay,this.arotation,this.ascaleX,this.ascaleY,this.ashearX,this.ashearY)}updateWorldTransform(){this.updateWorldTransformWith(this.x,this.y,this.rotation,this.scaleX,this.scaleY,this.shearX,this.shearY)}updateWorldTransformWith(e,t,i,s,n,h,a){this.ax=e,this.ay=t,this.arotation=i,this.ascaleX=s,this.ascaleY=n,this.ashearX=h,this.ashearY=a;let r=this.parent;if(!r){let d=this.skeleton;const u=d.scaleX,m=d.scaleY,g=(i+h)*L.degRad,b=(i+90+a)*L.degRad;this.a=Math.cos(g)*s*u,this.b=Math.cos(b)*n*u,this.c=Math.sin(g)*s*m,this.d=Math.sin(b)*n*m,this.worldX=e*u+d.x,this.worldY=t*m+d.y;return}let o=r.a,l=r.b,c=r.c,f=r.d;switch(this.worldX=o*e+l*t+r.worldX,this.worldY=c*e+f*t+r.worldY,this.inherit){case 0:{const d=(i+h)*L.degRad,u=(i+90+a)*L.degRad,m=Math.cos(d)*s,g=Math.cos(u)*n,b=Math.sin(d)*s,w=Math.sin(u)*n;this.a=o*m+l*b,this.b=o*g+l*w,this.c=c*m+f*b,this.d=c*g+f*w;return}case 1:{const d=(i+h)*L.degRad,u=(i+90+a)*L.degRad;this.a=Math.cos(d)*s,this.b=Math.cos(u)*n,this.c=Math.sin(d)*s,this.d=Math.sin(u)*n;break}case 2:{let d=1/this.skeleton.scaleX,u=1/this.skeleton.scaleY;o*=d,c*=u;let m=o*o+c*c,g=0;m>1e-4?(m=Math.abs(o*f*u-l*d*c)/m,l=c*m,f=o*m,g=Math.atan2(c,o)*L.radDeg):(o=0,c=0,g=90-Math.atan2(f,l)*L.radDeg);const b=(i+h-g)*L.degRad,w=(i+a-g+90)*L.degRad,x=Math.cos(b)*s,p=Math.cos(w)*n,y=Math.sin(b)*s,v=Math.sin(w)*n;this.a=o*x-l*y,this.b=o*p-l*v,this.c=c*x+f*y,this.d=c*p+f*v;break}case 3:case 4:{i*=L.degRad;const d=Math.cos(i),u=Math.sin(i);let m=(o*d+l*u)/this.skeleton.scaleX,g=(c*d+f*u)/this.skeleton.scaleY,b=Math.sqrt(m*m+g*g);b>1e-5&&(b=1/b),m*=b,g*=b,b=Math.sqrt(m*m+g*g),this.inherit==3&&o*f-l*c<0!=(this.skeleton.scaleX<0!=this.skeleton.scaleY<0)&&(b=-b),i=Math.PI/2+Math.atan2(g,m);const w=Math.cos(i)*b,x=Math.sin(i)*b;h*=L.degRad,a=(90+a)*L.degRad;const p=Math.cos(h)*s,y=Math.cos(a)*n,v=Math.sin(h)*s,A=Math.sin(a)*n;this.a=m*p+w*v,this.b=m*y+w*A,this.c=g*p+x*v,this.d=g*y+x*A;break}}this.a*=this.skeleton.scaleX,this.b*=this.skeleton.scaleX,this.c*=this.skeleton.scaleY,this.d*=this.skeleton.scaleY}setToSetupPose(){let e=this.data;this.x=e.x,this.y=e.y,this.rotation=e.rotation,this.scaleX=e.scaleX,this.scaleY=e.scaleY,this.shearX=e.shearX,this.shearY=e.shearY,this.inherit=e.inherit}updateAppliedTransform(){let e=this.parent;if(!e){this.ax=this.worldX-this.skeleton.x,this.ay=this.worldY-this.skeleton.y,this.arotation=Math.atan2(this.c,this.a)*L.radDeg,this.ascaleX=Math.sqrt(this.a*this.a+this.c*this.c),this.ascaleY=Math.sqrt(this.b*this.b+this.d*this.d),this.ashearX=0,this.ashearY=Math.atan2(this.a*this.b+this.c*this.d,this.a*this.d-this.b*this.c)*L.radDeg;return}let t=e.a,i=e.b,s=e.c,n=e.d,h=1/(t*n-i*s),a=n*h,r=i*h,o=s*h,l=t*h,c=this.worldX-e.worldX,f=this.worldY-e.worldY;this.ax=c*a-f*r,this.ay=f*l-c*o;let d,u,m,g;if(this.inherit==1)d=this.a,u=this.b,m=this.c,g=this.d;else{switch(this.inherit){case 2:{let y=Math.abs(t*n-i*s)/(t*t+s*s);i=-s*this.skeleton.scaleX*y/this.skeleton.scaleY,n=t*this.skeleton.scaleY*y/this.skeleton.scaleX,h=1/(t*n-i*s),a=n*h,r=i*h;break}case 3:case 4:let b=L.cosDeg(this.rotation),w=L.sinDeg(this.rotation);t=(t*b+i*w)/this.skeleton.scaleX,s=(s*b+n*w)/this.skeleton.scaleY;let x=Math.sqrt(t*t+s*s);x>1e-5&&(x=1/x),t*=x,s*=x,x=Math.sqrt(t*t+s*s),this.inherit==3&&h<0!=(this.skeleton.scaleX<0!=this.skeleton.scaleY<0)&&(x=-x);let p=L.PI/2+Math.atan2(s,t);i=Math.cos(p)*x,n=Math.sin(p)*x,h=1/(t*n-i*s),a=n*h,r=i*h,o=s*h,l=t*h}d=a*this.a-r*this.c,u=a*this.b-r*this.d,m=l*this.c-o*this.a,g=l*this.d-o*this.b}if(this.ashearX=0,this.ascaleX=Math.sqrt(d*d+m*m),this.ascaleX>1e-4){let b=d*g-u*m;this.ascaleY=b/this.ascaleX,this.ashearY=-Math.atan2(d*u+m*g,b)*L.radDeg,this.arotation=Math.atan2(m,d)*L.radDeg}else this.ascaleX=0,this.ascaleY=Math.sqrt(u*u+g*g),this.ashearY=0,this.arotation=90-Math.atan2(g,u)*L.radDeg}getWorldRotationX(){return Math.atan2(this.c,this.a)*L.radDeg}getWorldRotationY(){return Math.atan2(this.d,this.b)*L.radDeg}getWorldScaleX(){return Math.sqrt(this.a*this.a+this.c*this.c)}getWorldScaleY(){return Math.sqrt(this.b*this.b+this.d*this.d)}worldToLocal(e){let t=1/(this.a*this.d-this.b*this.c),i=e.x-this.worldX,s=e.y-this.worldY;return e.x=i*this.d*t-s*this.b*t,e.y=s*this.a*t-i*this.c*t,e}localToWorld(e){let t=e.x,i=e.y;return e.x=t*this.a+i*this.b+this.worldX,e.y=t*this.c+i*this.d+this.worldY,e}worldToParent(e){if(e==null)throw new Error("world cannot be null.");return this.parent==null?e:this.parent.worldToLocal(e)}parentToWorld(e){if(e==null)throw new Error("world cannot be null.");return this.parent==null?e:this.parent.localToWorld(e)}worldToLocalRotation(e){let t=L.sinDeg(e),i=L.cosDeg(e);return Math.atan2(this.a*t-this.c*i,this.d*i-this.b*t)*L.radDeg+this.rotation-this.shearX}localToWorldRotation(e){e-=this.rotation-this.shearX;let t=L.sinDeg(e),i=L.cosDeg(e);return Math.atan2(i*this.c+t*this.d,i*this.a+t*this.b)*L.radDeg}rotateWorld(e){e*=L.degRad;const t=Math.sin(e),i=Math.cos(e),s=this.a,n=this.b;this.a=i*s-t*this.c,this.b=i*n-t*this.d,this.c=t*s+i*this.c,this.d=t*n+i*this.d}},dt=class{constructor(e,t,i){this.name=e,this.order=t,this.skinRequired=i}},ws=class{pathPrefix="";textureLoader;downloader;assets={};errors={};toLoad=0;loaded=0;constructor(e,t="",i=new Ei){this.textureLoader=e,this.pathPrefix=t,this.downloader=i}start(e){return this.toLoad++,this.pathPrefix+e}success(e,t,i){this.toLoad--,this.loaded++,this.assets[t]=i,e&&e(t,i)}error(e,t,i){this.toLoad--,this.loaded++,this.errors[t]=i,e&&e(t,i)}loadAll(){return new Promise((t,i)=>{let s=()=>{if(this.isLoadingComplete()){this.hasErrors()?i(this.errors):t(this);return}requestAnimationFrame(s)};requestAnimationFrame(s)})}setRawDataURI(e,t){this.downloader.rawDataUris[this.pathPrefix+e]=t}loadBinary(e,t=()=>{},i=()=>{}){e=this.start(e),this.downloader.downloadBinary(e,s=>{this.success(t,e,s)},(s,n)=>{this.error(i,e,`Couldn't load binary ${e}: status ${s}, ${n}`)})}loadText(e,t=()=>{},i=()=>{}){e=this.start(e),this.downloader.downloadText(e,s=>{this.success(t,e,s)},(s,n)=>{this.error(i,e,`Couldn't load text ${e}: status ${s}, ${n}`)})}loadJson(e,t=()=>{},i=()=>{}){e=this.start(e),this.downloader.downloadJson(e,s=>{this.success(t,e,s)},(s,n)=>{this.error(i,e,`Couldn't load JSON ${e}: status ${s}, ${n}`)})}loadTexture(e,t=()=>{},i=()=>{}){if(e=this.start(e),!!!(typeof window<"u"&&typeof navigator<"u"&&window.document))fetch(e,{mode:"cors"}).then(h=>h.ok?h.blob():(this.error(i,e,`Couldn't load image: ${e}`),null)).then(h=>h?createImageBitmap(h,{premultiplyAlpha:"none",colorSpaceConversion:"none"}):null).then(h=>{h&&this.success(t,e,this.textureLoader(h))});else{let h=new Image;h.crossOrigin="anonymous",h.onload=()=>{this.success(t,e,this.textureLoader(h))},h.onerror=()=>{this.error(i,e,`Couldn't load image: ${e}`)},this.downloader.rawDataUris[e]&&(e=this.downloader.rawDataUris[e]),h.src=e}}loadTextureAtlas(e,t=()=>{},i=()=>{},s){let n=e.lastIndexOf("/"),h=n>=0?e.substring(0,n+1):"";e=this.start(e),this.downloader.downloadText(e,a=>{try{let r=new gs(a),o=r.pages.length,l=!1;for(let c of r.pages)this.loadTexture(s?s[c.name]:h+c.name,(f,d)=>{l||(c.setTexture(d),--o==0&&this.success(t,e,r))},(f,d)=>{l||this.error(i,e,`Couldn't load texture atlas ${e} page image: ${f}`),l=!0})}catch(r){this.error(i,e,`Couldn't parse texture atlas ${e}: ${r.message}`)}},(a,r)=>{this.error(i,e,`Couldn't load texture atlas ${e}: status ${a}, ${r}`)})}get(e){return this.assets[this.pathPrefix+e]}require(e){e=this.pathPrefix+e;let t=this.assets[e];if(t)return t;let i=this.errors[e];throw Error("Asset not found: "+e+(i?`
1
+ "use strict";var Os=Object.defineProperty,Ds=(e,t,i)=>t in e?Os(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,B=(e,t,i)=>(Ds(e,typeof t!="symbol"?t+"":t,i),i),Ns=class{array=new Array;add(e){let t=this.contains(e);return this.array[e|0]=e|0,!t}contains(e){return this.array[e|0]!=null}remove(e){this.array[e|0]=void 0}clear(){this.array.length=0}},zt=class{entries={};size=0;add(e){let t=this.entries[e];return this.entries[e]=!0,t?!1:(this.size++,!0)}addAll(e){let t=this.size;for(var i=0,s=e.length;i<s;i++)this.add(e[i]);return t!=this.size}contains(e){return this.entries[e]}clear(){this.entries={},this.size=0}},_e=class{constructor(e=0,t=0,i=0,s=0){this.r=e,this.g=t,this.b=i,this.a=s}set(e,t,i,s){return this.r=e,this.g=t,this.b=i,this.a=s,this.clamp()}setFromColor(e){return this.r=e.r,this.g=e.g,this.b=e.b,this.a=e.a,this}setFromString(e){return e=e.charAt(0)=="#"?e.substr(1):e,this.r=parseInt(e.substr(0,2),16)/255,this.g=parseInt(e.substr(2,2),16)/255,this.b=parseInt(e.substr(4,2),16)/255,this.a=e.length!=8?1:parseInt(e.substr(6,2),16)/255,this}add(e,t,i,s){return this.r+=e,this.g+=t,this.b+=i,this.a+=s,this.clamp()}clamp(){return this.r<0?this.r=0:this.r>1&&(this.r=1),this.g<0?this.g=0:this.g>1&&(this.g=1),this.b<0?this.b=0:this.b>1&&(this.b=1),this.a<0?this.a=0:this.a>1&&(this.a=1),this}static rgba8888ToColor(e,t){e.r=((t&4278190080)>>>24)/255,e.g=((t&16711680)>>>16)/255,e.b=((t&65280)>>>8)/255,e.a=(t&255)/255}static rgb888ToColor(e,t){e.r=((t&16711680)>>>16)/255,e.g=((t&65280)>>>8)/255,e.b=(t&255)/255}toRgb888(){const e=t=>("0"+(t*255).toString(16)).slice(-2);return Number("0x"+e(this.r)+e(this.g)+e(this.b))}static fromString(e){return new _e().setFromString(e)}},V=_e;B(V,"WHITE",new _e(1,1,1,1)),B(V,"RED",new _e(1,0,0,1)),B(V,"GREEN",new _e(0,1,0,1)),B(V,"BLUE",new _e(0,0,1,1)),B(V,"MAGENTA",new _e(1,0,1,1));var Ee=class{static clamp(e,t,i){return e<t?t:e>i?i:e}static cosDeg(e){return Math.cos(e*Ee.degRad)}static sinDeg(e){return Math.sin(e*Ee.degRad)}static atan2Deg(e,t){return Math.atan2(e,t)*Ee.degRad}static signum(e){return e>0?1:e<0?-1:0}static toInt(e){return e>0?Math.floor(e):Math.ceil(e)}static cbrt(e){let t=Math.pow(Math.abs(e),.3333333333333333);return e<0?-t:t}static randomTriangular(e,t){return Ee.randomTriangularWith(e,t,(e+t)*.5)}static randomTriangularWith(e,t,i){let s=Math.random(),n=t-e;return s<=(i-e)/n?e+Math.sqrt(s*n*(i-e)):t-Math.sqrt((1-s)*n*(t-i))}static isPowerOfTwo(e){return e&&(e&e-1)===0}},L=Ee;B(L,"PI",3.1415927),B(L,"PI2",Ee.PI*2),B(L,"invPI2",1/Ee.PI2),B(L,"radiansToDegrees",180/Ee.PI),B(L,"radDeg",Ee.radiansToDegrees),B(L,"degreesToRadians",Ee.PI/180),B(L,"degRad",Ee.degreesToRadians);var Qi=class{apply(e,t,i){return e+(t-e)*this.applyInternal(i)}},$i=class extends Qi{power=2;constructor(e){super(),this.power=e}applyInternal(e){return e<=.5?Math.pow(e*2,this.power)/2:Math.pow((e-1)*2,this.power)/(this.power%2==0?-2:2)+1}},Us=class extends $i{constructor(e){super(e)}applyInternal(e){return Math.pow(e-1,this.power)*(this.power%2==0?-1:1)+1}},Qe=class{static arrayCopy(e,t,i,s,n){for(let h=t,a=s;h<t+n;h++,a++)i[a]=e[h]}static arrayFill(e,t,i,s){for(let n=t;n<i;n++)e[n]=s}static setArraySize(e,t,i=0){let s=e.length;if(s==t)return e;if(e.length=t,s<t)for(let n=s;n<t;n++)e[n]=i;return e}static ensureArrayCapacity(e,t,i=0){return e.length>=t?e:Qe.setArraySize(e,t,i)}static newArray(e,t){let i=new Array(e);for(let s=0;s<e;s++)i[s]=t;return i}static newFloatArray(e){if(Qe.SUPPORTS_TYPED_ARRAYS)return new Float32Array(e);{let t=new Array(e);for(let i=0;i<t.length;i++)t[i]=0;return t}}static newShortArray(e){if(Qe.SUPPORTS_TYPED_ARRAYS)return new Int16Array(e);{let t=new Array(e);for(let i=0;i<t.length;i++)t[i]=0;return t}}static toFloatArray(e){return Qe.SUPPORTS_TYPED_ARRAYS?new Float32Array(e):e}static toSinglePrecision(e){return Qe.SUPPORTS_TYPED_ARRAYS?Math.fround(e):e}static webkit602BugfixHelper(e,t){}static contains(e,t,i=!0){for(var s=0;s<e.length;s++)if(e[s]==t)return!0;return!1}static enumValue(e,t){return e[t[0].toUpperCase()+t.slice(1)]}},P=Qe;B(P,"SUPPORTS_TYPED_ARRAYS",typeof Float32Array<"u");var zs=class{static logBones(e){for(let t=0;t<e.bones.length;t++){let i=e.bones[t];console.log(i.data.name+", "+i.a+", "+i.b+", "+i.c+", "+i.d+", "+i.worldX+", "+i.worldY)}}},lt=class{items=new Array;instantiator;constructor(e){this.instantiator=e}obtain(){return this.items.length>0?this.items.pop():this.instantiator()}free(e){e.reset&&e.reset(),this.items.push(e)}freeAll(e){for(let t=0;t<e.length;t++)this.free(e[t])}clear(){this.items.length=0}},We=class{constructor(e=0,t=0){this.x=e,this.y=t}set(e,t){return this.x=e,this.y=t,this}length(){let e=this.x,t=this.y;return Math.sqrt(e*e+t*t)}normalize(){let e=this.length();return e!=0&&(this.x/=e,this.y/=e),this}},_t=class{maxDelta=.064;framesPerSecond=0;delta=0;totalTime=0;lastTime=Date.now()/1e3;frameCount=0;frameTime=0;update(){let e=Date.now()/1e3;this.delta=e-this.lastTime,this.frameTime+=this.delta,this.totalTime+=this.delta,this.delta>this.maxDelta&&(this.delta=this.maxDelta),this.lastTime=e,this.frameCount++,this.frameTime>1&&(this.framesPerSecond=this.frameCount/this.frameTime,this.frameTime=0,this.frameCount=0)}},_s=class{values;addedValues=0;lastValue=0;mean=0;dirty=!0;constructor(e=32){this.values=new Array(e)}hasEnoughData(){return this.addedValues>=this.values.length}addValue(e){this.addedValues<this.values.length&&this.addedValues++,this.values[this.lastValue++]=e,this.lastValue>this.values.length-1&&(this.lastValue=0),this.dirty=!0}getMean(){if(this.hasEnoughData()){if(this.dirty){let e=0;for(let t=0;t<this.values.length;t++)e+=this.values[t];this.mean=e/this.values.length,this.dirty=!1}return this.mean}return 0}},Wt=class{name;constructor(e){if(!e)throw new Error("name cannot be null.");this.name=e}},es=class extends Wt{id=es.nextID++;bones=null;vertices=[];worldVerticesLength=0;timelineAttachment=this;constructor(e){super(e)}computeWorldVertices(e,t,i,s,n,h){i=n+(i>>1)*h;let a=e.bone.skeleton,r=e.deform,o=this.vertices,l=this.bones;if(!l){r.length>0&&(o=r);let u=e.bone,m=u.worldX,g=u.worldY,b=u.a,w=u.b,x=u.c,p=u.d;for(let y=t,v=n;v<i;y+=2,v+=h){let A=o[y],C=o[y+1];s[v]=A*b+C*w+m,s[v+1]=A*x+C*p+g}return}let c=0,f=0;for(let u=0;u<t;u+=2){let m=l[c];c+=m+1,f+=m}let d=a.bones;if(r.length==0)for(let u=n,m=f*3;u<i;u+=h){let g=0,b=0,w=l[c++];for(w+=c;c<w;c++,m+=3){let x=d[l[c]],p=o[m],y=o[m+1],v=o[m+2];g+=(p*x.a+y*x.b+x.worldX)*v,b+=(p*x.c+y*x.d+x.worldY)*v}s[u]=g,s[u+1]=b}else{let u=r;for(let m=n,g=f*3,b=f<<1;m<i;m+=h){let w=0,x=0,p=l[c++];for(p+=c;c<p;c++,g+=3,b+=2){let y=d[l[c]],v=o[g]+u[b],A=o[g+1]+u[b+1],C=o[g+2];w+=(v*y.a+A*y.b+y.worldX)*C,x+=(v*y.c+A*y.d+y.worldY)*C}s[m]=w,s[m+1]=x}}}copyTo(e){this.bones?(e.bones=new Array(this.bones.length),P.arrayCopy(this.bones,0,e.bones,0,this.bones.length)):e.bones=null,this.vertices&&(e.vertices=P.newFloatArray(this.vertices.length),P.arrayCopy(this.vertices,0,e.vertices,0,this.vertices.length)),e.worldVerticesLength=this.worldVerticesLength,e.timelineAttachment=this.timelineAttachment}},Ye=es;B(Ye,"nextID",0);var pt=class{id=pt.nextID();regions;start=0;digits=0;setupIndex=0;constructor(e){this.regions=new Array(e)}copy(){let e=new pt(this.regions.length);return P.arrayCopy(this.regions,0,e.regions,0,this.regions.length),e.start=this.start,e.digits=this.digits,e.setupIndex=this.setupIndex,e}apply(e,t){let i=e.sequenceIndex;i==-1&&(i=this.setupIndex),i>=this.regions.length&&(i=this.regions.length-1);let s=this.regions[i];t.region!=s&&(t.region=s,t.updateRegion())}getPath(e,t){let i=e,s=(this.start+t).toString();for(let n=this.digits-s.length;n>0;n--)i+="0";return i+=s,i}static nextID(){return pt._nextID++}},qt=pt;B(qt,"_nextID",0);var ts=(e=>(e[e.hold=0]="hold",e[e.once=1]="once",e[e.loop=2]="loop",e[e.pingpong=3]="pingpong",e[e.onceReverse=4]="onceReverse",e[e.loopReverse=5]="loopReverse",e[e.pingpongReverse=6]="pingpongReverse",e))(ts||{}),is=[0,1,2,3,4,5,6],wt=class{name;timelines=[];timelineIds=new zt;duration;constructor(e,t,i){if(!e)throw new Error("name cannot be null.");this.name=e,this.setTimelines(t),this.duration=i}setTimelines(e){if(!e)throw new Error("timelines cannot be null.");this.timelines=e,this.timelineIds.clear();for(var t=0;t<e.length;t++)this.timelineIds.addAll(e[t].getPropertyIds())}hasTimeline(e){for(let t=0;t<e.length;t++)if(this.timelineIds.contains(e[t]))return!0;return!1}apply(e,t,i,s,n,h,a,r){if(!e)throw new Error("skeleton cannot be null.");s&&this.duration!=0&&(i%=this.duration,t>0&&(t%=this.duration));let o=this.timelines;for(let l=0,c=o.length;l<c;l++)o[l].apply(e,t,i,n,h,a,r)}},ss=(e=>(e[e.setup=0]="setup",e[e.first=1]="first",e[e.replace=2]="replace",e[e.add=3]="add",e))(ss||{}),rs=(e=>(e[e.mixIn=0]="mixIn",e[e.mixOut=1]="mixOut",e))(rs||{}),re={rotate:0,x:1,y:2,scaleX:3,scaleY:4,shearX:5,shearY:6,inherit:7,rgb:8,alpha:9,rgb2:10,attachment:11,deform:12,event:13,drawOrder:14,ikConstraint:15,transformConstraint:16,pathConstraintPosition:17,pathConstraintSpacing:18,pathConstraintMix:19,physicsConstraintInertia:20,physicsConstraintStrength:21,physicsConstraintDamping:22,physicsConstraintMass:23,physicsConstraintWind:24,physicsConstraintGravity:25,physicsConstraintMix:26,physicsConstraintReset:27,sequence:28},me=class{propertyIds;frames;constructor(e,t){this.propertyIds=t,this.frames=P.newFloatArray(e*this.getFrameEntries())}getPropertyIds(){return this.propertyIds}getFrameEntries(){return 1}getFrameCount(){return this.frames.length/this.getFrameEntries()}getDuration(){return this.frames[this.frames.length-this.getFrameEntries()]}static search1(e,t){let i=e.length;for(let s=1;s<i;s++)if(e[s]>t)return s-1;return i-1}static search(e,t,i){let s=e.length;for(let n=i;n<s;n+=i)if(e[n]>t)return n-i;return s-i}},Re=class extends me{curves;constructor(e,t,i){super(e,i),this.curves=P.newFloatArray(e+t*18),this.curves[e-1]=1}setLinear(e){this.curves[e]=0}setStepped(e){this.curves[e]=1}shrink(e){let t=this.getFrameCount()+e*18;if(this.curves.length>t){let i=P.newFloatArray(t);P.arrayCopy(this.curves,0,i,0,t),this.curves=i}}setBezier(e,t,i,s,n,h,a,r,o,l,c){let f=this.curves,d=this.getFrameCount()+e*18;i==0&&(f[t]=2+d);let u=(s-h*2+r)*.03,m=(n-a*2+o)*.03,g=((h-r)*3-s+l)*.006,b=((a-o)*3-n+c)*.006,w=u*2+g,x=m*2+b,p=(h-s)*.3+u+g*.16666667,y=(a-n)*.3+m+b*.16666667,v=s+p,A=n+y;for(let C=d+18;d<C;d+=2)f[d]=v,f[d+1]=A,p+=w,y+=x,w+=g,x+=b,v+=p,A+=y}getBezierValue(e,t,i,s){let n=this.curves;if(n[s]>e){let o=this.frames[t],l=this.frames[t+i];return l+(e-o)/(n[s]-o)*(n[s+1]-l)}let h=s+18;for(s+=2;s<h;s+=2)if(n[s]>=e){let o=n[s-2],l=n[s-1];return l+(e-o)/(n[s]-o)*(n[s+1]-l)}t+=this.getFrameEntries();let a=n[h-2],r=n[h-1];return r+(e-a)/(this.frames[t]-a)*(this.frames[t+i]-r)}},Te=class extends Re{constructor(e,t,i){super(e,t,[i])}getFrameEntries(){return 2}setFrame(e,t,i){e<<=1,this.frames[e]=t,this.frames[e+1]=i}getCurveValue(e){let t=this.frames,i=t.length-2;for(let n=2;n<=i;n+=2)if(t[n]>e){i=n-2;break}let s=this.curves[i>>1];switch(s){case 0:let n=t[i],h=t[i+1];return h+(e-n)/(t[i+2]-n)*(t[i+2+1]-h);case 1:return t[i+1]}return this.getBezierValue(e,i,1,s-2)}getRelativeValue(e,t,i,s,n){if(e<this.frames[0]){switch(i){case 0:return n;case 1:return s+(n-s)*t}return s}let h=this.getCurveValue(e);switch(i){case 0:return n+h*t;case 1:case 2:h+=n-s}return s+h*t}getAbsoluteValue(e,t,i,s,n){if(e<this.frames[0]){switch(i){case 0:return n;case 1:return s+(n-s)*t}return s}let h=this.getCurveValue(e);return i==0?n+(h-n)*t:s+(h-s)*t}getAbsoluteValue2(e,t,i,s,n,h){if(e<this.frames[0]){switch(i){case 0:return n;case 1:return s+(n-s)*t}return s}return i==0?n+(h-n)*t:s+(h-s)*t}getScaleValue(e,t,i,s,n,h){const a=this.frames;if(e<a[0]){switch(i){case 0:return h;case 1:return n+(h-n)*t}return n}let r=this.getCurveValue(e)*h;if(t==1)return i==3?n+r-h:r;if(s==1)switch(i){case 0:return h+(Math.abs(r)*L.signum(h)-h)*t;case 1:case 2:return n+(Math.abs(r)*L.signum(n)-n)*t}else{let o=0;switch(i){case 0:return o=Math.abs(h)*L.signum(r),o+(r-o)*t;case 1:case 2:return o=Math.abs(n)*L.signum(r),o+(r-o)*t}}return n+(r-h)*t}},bt=class extends Re{constructor(e,t,i,s){super(e,t,[i,s])}getFrameEntries(){return 3}setFrame(e,t,i,s){e*=3,this.frames[e]=t,this.frames[e+1]=i,this.frames[e+2]=s}},ot=class extends Te{boneIndex=0;constructor(e,t,i){super(e,t,re.rotate+"|"+i),this.boneIndex=i}apply(e,t,i,s,n,h,a){let r=e.bones[this.boneIndex];r.active&&(r.rotation=this.getRelativeValue(i,n,h,r.rotation,r.data.rotation))}},Gt=class extends bt{boneIndex=0;constructor(e,t,i){super(e,t,re.x+"|"+i,re.y+"|"+i),this.boneIndex=i}apply(e,t,i,s,n,h,a){let r=e.bones[this.boneIndex];if(!r.active)return;let o=this.frames;if(i<o[0]){switch(h){case 0:r.x=r.data.x,r.y=r.data.y;return;case 1:r.x+=(r.data.x-r.x)*n,r.y+=(r.data.y-r.y)*n}return}let l=0,c=0,f=me.search(o,i,3),d=this.curves[f/3];switch(d){case 0:let u=o[f];l=o[f+1],c=o[f+2];let m=(i-u)/(o[f+3]-u);l+=(o[f+3+1]-l)*m,c+=(o[f+3+2]-c)*m;break;case 1:l=o[f+1],c=o[f+2];break;default:l=this.getBezierValue(i,f,1,d-2),c=this.getBezierValue(i,f,2,d+18-2)}switch(h){case 0:r.x=r.data.x+l*n,r.y=r.data.y+c*n;break;case 1:case 2:r.x+=(r.data.x+l-r.x)*n,r.y+=(r.data.y+c-r.y)*n;break;case 3:r.x+=l*n,r.y+=c*n}}},Ht=class extends Te{boneIndex=0;constructor(e,t,i){super(e,t,re.x+"|"+i),this.boneIndex=i}apply(e,t,i,s,n,h,a){let r=e.bones[this.boneIndex];r.active&&(r.x=this.getRelativeValue(i,n,h,r.x,r.data.x))}},jt=class extends Te{boneIndex=0;constructor(e,t,i){super(e,t,re.y+"|"+i),this.boneIndex=i}apply(e,t,i,s,n,h,a){let r=e.bones[this.boneIndex];r.active&&(r.y=this.getRelativeValue(i,n,h,r.y,r.data.y))}},Zt=class extends bt{boneIndex=0;constructor(e,t,i){super(e,t,re.scaleX+"|"+i,re.scaleY+"|"+i),this.boneIndex=i}apply(e,t,i,s,n,h,a){let r=e.bones[this.boneIndex];if(!r.active)return;let o=this.frames;if(i<o[0]){switch(h){case 0:r.scaleX=r.data.scaleX,r.scaleY=r.data.scaleY;return;case 1:r.scaleX+=(r.data.scaleX-r.scaleX)*n,r.scaleY+=(r.data.scaleY-r.scaleY)*n}return}let l,c,f=me.search(o,i,3),d=this.curves[f/3];switch(d){case 0:let u=o[f];l=o[f+1],c=o[f+2];let m=(i-u)/(o[f+3]-u);l+=(o[f+3+1]-l)*m,c+=(o[f+3+2]-c)*m;break;case 1:l=o[f+1],c=o[f+2];break;default:l=this.getBezierValue(i,f,1,d-2),c=this.getBezierValue(i,f,2,d+18-2)}if(l*=r.data.scaleX,c*=r.data.scaleY,n==1)h==3?(r.scaleX+=l-r.data.scaleX,r.scaleY+=c-r.data.scaleY):(r.scaleX=l,r.scaleY=c);else{let u=0,m=0;if(a==1)switch(h){case 0:u=r.data.scaleX,m=r.data.scaleY,r.scaleX=u+(Math.abs(l)*L.signum(u)-u)*n,r.scaleY=m+(Math.abs(c)*L.signum(m)-m)*n;break;case 1:case 2:u=r.scaleX,m=r.scaleY,r.scaleX=u+(Math.abs(l)*L.signum(u)-u)*n,r.scaleY=m+(Math.abs(c)*L.signum(m)-m)*n;break;case 3:r.scaleX+=(l-r.data.scaleX)*n,r.scaleY+=(c-r.data.scaleY)*n}else switch(h){case 0:u=Math.abs(r.data.scaleX)*L.signum(l),m=Math.abs(r.data.scaleY)*L.signum(c),r.scaleX=u+(l-u)*n,r.scaleY=m+(c-m)*n;break;case 1:case 2:u=Math.abs(r.scaleX)*L.signum(l),m=Math.abs(r.scaleY)*L.signum(c),r.scaleX=u+(l-u)*n,r.scaleY=m+(c-m)*n;break;case 3:r.scaleX+=(l-r.data.scaleX)*n,r.scaleY+=(c-r.data.scaleY)*n}}}},Kt=class extends Te{boneIndex=0;constructor(e,t,i){super(e,t,re.scaleX+"|"+i),this.boneIndex=i}apply(e,t,i,s,n,h,a){let r=e.bones[this.boneIndex];r.active&&(r.scaleX=this.getScaleValue(i,n,h,a,r.scaleX,r.data.scaleX))}},Jt=class extends Te{boneIndex=0;constructor(e,t,i){super(e,t,re.scaleY+"|"+i),this.boneIndex=i}apply(e,t,i,s,n,h,a){let r=e.bones[this.boneIndex];r.active&&(r.scaleY=this.getScaleValue(i,n,h,a,r.scaleY,r.data.scaleY))}},Qt=class extends bt{boneIndex=0;constructor(e,t,i){super(e,t,re.shearX+"|"+i,re.shearY+"|"+i),this.boneIndex=i}apply(e,t,i,s,n,h,a){let r=e.bones[this.boneIndex];if(!r.active)return;let o=this.frames;if(i<o[0]){switch(h){case 0:r.shearX=r.data.shearX,r.shearY=r.data.shearY;return;case 1:r.shearX+=(r.data.shearX-r.shearX)*n,r.shearY+=(r.data.shearY-r.shearY)*n}return}let l=0,c=0,f=me.search(o,i,3),d=this.curves[f/3];switch(d){case 0:let u=o[f];l=o[f+1],c=o[f+2];let m=(i-u)/(o[f+3]-u);l+=(o[f+3+1]-l)*m,c+=(o[f+3+2]-c)*m;break;case 1:l=o[f+1],c=o[f+2];break;default:l=this.getBezierValue(i,f,1,d-2),c=this.getBezierValue(i,f,2,d+18-2)}switch(h){case 0:r.shearX=r.data.shearX+l*n,r.shearY=r.data.shearY+c*n;break;case 1:case 2:r.shearX+=(r.data.shearX+l-r.shearX)*n,r.shearY+=(r.data.shearY+c-r.shearY)*n;break;case 3:r.shearX+=l*n,r.shearY+=c*n}}},$t=class extends Te{boneIndex=0;constructor(e,t,i){super(e,t,re.shearX+"|"+i),this.boneIndex=i}apply(e,t,i,s,n,h,a){let r=e.bones[this.boneIndex];r.active&&(r.shearX=this.getRelativeValue(i,n,h,r.shearX,r.data.shearX))}},ei=class extends Te{boneIndex=0;constructor(e,t,i){super(e,t,re.shearY+"|"+i),this.boneIndex=i}apply(e,t,i,s,n,h,a){let r=e.bones[this.boneIndex];r.active&&(r.shearY=this.getRelativeValue(i,n,h,r.shearY,r.data.shearY))}},ti=class extends me{boneIndex=0;constructor(e,t){super(e,[re.inherit+"|"+t]),this.boneIndex=t}getFrameEntries(){return 2}setFrame(e,t,i){e*=2,this.frames[e]=t,this.frames[e+1]=i}apply(e,t,i,s,n,h,a){let r=e.bones[this.boneIndex];if(!r.active)return;if(a==1){h==0&&(r.inherit=r.data.inherit);return}let o=this.frames;if(i<o[0]){(h==0||h==1)&&(r.inherit=r.data.inherit);return}r.inherit=this.frames[me.search(o,i,2)+1]}},ii=class extends Re{slotIndex=0;constructor(e,t,i){super(e,t,[re.rgb+"|"+i,re.alpha+"|"+i]),this.slotIndex=i}getFrameEntries(){return 5}setFrame(e,t,i,s,n,h){e*=5,this.frames[e]=t,this.frames[e+1]=i,this.frames[e+2]=s,this.frames[e+3]=n,this.frames[e+4]=h}apply(e,t,i,s,n,h,a){let r=e.slots[this.slotIndex];if(!r.bone.active)return;let o=this.frames,l=r.color;if(i<o[0]){let b=r.data.color;switch(h){case 0:l.setFromColor(b);return;case 1:l.add((b.r-l.r)*n,(b.g-l.g)*n,(b.b-l.b)*n,(b.a-l.a)*n)}return}let c=0,f=0,d=0,u=0,m=me.search(o,i,5),g=this.curves[m/5];switch(g){case 0:let b=o[m];c=o[m+1],f=o[m+2],d=o[m+3],u=o[m+4];let w=(i-b)/(o[m+5]-b);c+=(o[m+5+1]-c)*w,f+=(o[m+5+2]-f)*w,d+=(o[m+5+3]-d)*w,u+=(o[m+5+4]-u)*w;break;case 1:c=o[m+1],f=o[m+2],d=o[m+3],u=o[m+4];break;default:c=this.getBezierValue(i,m,1,g-2),f=this.getBezierValue(i,m,2,g+18-2),d=this.getBezierValue(i,m,3,g+18*2-2),u=this.getBezierValue(i,m,4,g+18*3-2)}n==1?l.set(c,f,d,u):(h==0&&l.setFromColor(r.data.color),l.add((c-l.r)*n,(f-l.g)*n,(d-l.b)*n,(u-l.a)*n))}},si=class extends Re{slotIndex=0;constructor(e,t,i){super(e,t,[re.rgb+"|"+i]),this.slotIndex=i}getFrameEntries(){return 4}setFrame(e,t,i,s,n){e<<=2,this.frames[e]=t,this.frames[e+1]=i,this.frames[e+2]=s,this.frames[e+3]=n}apply(e,t,i,s,n,h,a){let r=e.slots[this.slotIndex];if(!r.bone.active)return;let o=this.frames,l=r.color;if(i<o[0]){let g=r.data.color;switch(h){case 0:l.r=g.r,l.g=g.g,l.b=g.b;return;case 1:l.r+=(g.r-l.r)*n,l.g+=(g.g-l.g)*n,l.b+=(g.b-l.b)*n}return}let c=0,f=0,d=0,u=me.search(o,i,4),m=this.curves[u>>2];switch(m){case 0:let g=o[u];c=o[u+1],f=o[u+2],d=o[u+3];let b=(i-g)/(o[u+4]-g);c+=(o[u+4+1]-c)*b,f+=(o[u+4+2]-f)*b,d+=(o[u+4+3]-d)*b;break;case 1:c=o[u+1],f=o[u+2],d=o[u+3];break;default:c=this.getBezierValue(i,u,1,m-2),f=this.getBezierValue(i,u,2,m+18-2),d=this.getBezierValue(i,u,3,m+18*2-2)}if(n==1)l.r=c,l.g=f,l.b=d;else{if(h==0){let g=r.data.color;l.r=g.r,l.g=g.g,l.b=g.b}l.r+=(c-l.r)*n,l.g+=(f-l.g)*n,l.b+=(d-l.b)*n}}},ri=class extends Te{slotIndex=0;constructor(e,t,i){super(e,t,re.alpha+"|"+i),this.slotIndex=i}apply(e,t,i,s,n,h,a){let r=e.slots[this.slotIndex];if(!r.bone.active)return;let o=r.color;if(i<this.frames[0]){let c=r.data.color;switch(h){case 0:o.a=c.a;return;case 1:o.a+=(c.a-o.a)*n}return}let l=this.getCurveValue(i);n==1?o.a=l:(h==0&&(o.a=r.data.color.a),o.a+=(l-o.a)*n)}},ni=class extends Re{slotIndex=0;constructor(e,t,i){super(e,t,[re.rgb+"|"+i,re.alpha+"|"+i,re.rgb2+"|"+i]),this.slotIndex=i}getFrameEntries(){return 8}setFrame(e,t,i,s,n,h,a,r,o){e<<=3,this.frames[e]=t,this.frames[e+1]=i,this.frames[e+2]=s,this.frames[e+3]=n,this.frames[e+4]=h,this.frames[e+5]=a,this.frames[e+6]=r,this.frames[e+7]=o}apply(e,t,i,s,n,h,a){let r=e.slots[this.slotIndex];if(!r.bone.active)return;let o=this.frames,l=r.color,c=r.darkColor;if(i<o[0]){let y=r.data.color,v=r.data.darkColor;switch(h){case 0:l.setFromColor(y),c.r=v.r,c.g=v.g,c.b=v.b;return;case 1:l.add((y.r-l.r)*n,(y.g-l.g)*n,(y.b-l.b)*n,(y.a-l.a)*n),c.r+=(v.r-c.r)*n,c.g+=(v.g-c.g)*n,c.b+=(v.b-c.b)*n}return}let f=0,d=0,u=0,m=0,g=0,b=0,w=0,x=me.search(o,i,8),p=this.curves[x>>3];switch(p){case 0:let y=o[x];f=o[x+1],d=o[x+2],u=o[x+3],m=o[x+4],g=o[x+5],b=o[x+6],w=o[x+7];let v=(i-y)/(o[x+8]-y);f+=(o[x+8+1]-f)*v,d+=(o[x+8+2]-d)*v,u+=(o[x+8+3]-u)*v,m+=(o[x+8+4]-m)*v,g+=(o[x+8+5]-g)*v,b+=(o[x+8+6]-b)*v,w+=(o[x+8+7]-w)*v;break;case 1:f=o[x+1],d=o[x+2],u=o[x+3],m=o[x+4],g=o[x+5],b=o[x+6],w=o[x+7];break;default:f=this.getBezierValue(i,x,1,p-2),d=this.getBezierValue(i,x,2,p+18-2),u=this.getBezierValue(i,x,3,p+18*2-2),m=this.getBezierValue(i,x,4,p+18*3-2),g=this.getBezierValue(i,x,5,p+18*4-2),b=this.getBezierValue(i,x,6,p+18*5-2),w=this.getBezierValue(i,x,7,p+18*6-2)}if(n==1)l.set(f,d,u,m),c.r=g,c.g=b,c.b=w;else{if(h==0){l.setFromColor(r.data.color);let y=r.data.darkColor;c.r=y.r,c.g=y.g,c.b=y.b}l.add((f-l.r)*n,(d-l.g)*n,(u-l.b)*n,(m-l.a)*n),c.r+=(g-c.r)*n,c.g+=(b-c.g)*n,c.b+=(w-c.b)*n}}},ai=class extends Re{slotIndex=0;constructor(e,t,i){super(e,t,[re.rgb+"|"+i,re.rgb2+"|"+i]),this.slotIndex=i}getFrameEntries(){return 7}setFrame(e,t,i,s,n,h,a,r){e*=7,this.frames[e]=t,this.frames[e+1]=i,this.frames[e+2]=s,this.frames[e+3]=n,this.frames[e+4]=h,this.frames[e+5]=a,this.frames[e+6]=r}apply(e,t,i,s,n,h,a){let r=e.slots[this.slotIndex];if(!r.bone.active)return;let o=this.frames,l=r.color,c=r.darkColor;if(i<o[0]){let y=r.data.color,v=r.data.darkColor;switch(h){case 0:l.r=y.r,l.g=y.g,l.b=y.b,c.r=v.r,c.g=v.g,c.b=v.b;return;case 1:l.r+=(y.r-l.r)*n,l.g+=(y.g-l.g)*n,l.b+=(y.b-l.b)*n,c.r+=(v.r-c.r)*n,c.g+=(v.g-c.g)*n,c.b+=(v.b-c.b)*n}return}let f=0,d=0,u=0,m=0,g=0,b=0,w=0,x=me.search(o,i,7),p=this.curves[x/7];switch(p){case 0:let y=o[x];f=o[x+1],d=o[x+2],u=o[x+3],g=o[x+4],b=o[x+5],w=o[x+6];let v=(i-y)/(o[x+7]-y);f+=(o[x+7+1]-f)*v,d+=(o[x+7+2]-d)*v,u+=(o[x+7+3]-u)*v,g+=(o[x+7+4]-g)*v,b+=(o[x+7+5]-b)*v,w+=(o[x+7+6]-w)*v;break;case 1:f=o[x+1],d=o[x+2],u=o[x+3],g=o[x+4],b=o[x+5],w=o[x+6];break;default:f=this.getBezierValue(i,x,1,p-2),d=this.getBezierValue(i,x,2,p+18-2),u=this.getBezierValue(i,x,3,p+18*2-2),g=this.getBezierValue(i,x,4,p+18*3-2),b=this.getBezierValue(i,x,5,p+18*4-2),w=this.getBezierValue(i,x,6,p+18*5-2)}if(n==1)l.r=f,l.g=d,l.b=u,c.r=g,c.g=b,c.b=w;else{if(h==0){let y=r.data.color,v=r.data.darkColor;l.r=y.r,l.g=y.g,l.b=y.b,c.r=v.r,c.g=v.g,c.b=v.b}l.r+=(f-l.r)*n,l.g+=(d-l.g)*n,l.b+=(u-l.b)*n,c.r+=(g-c.r)*n,c.g+=(b-c.g)*n,c.b+=(w-c.b)*n}}},qe=class extends me{slotIndex=0;attachmentNames;constructor(e,t){super(e,[re.attachment+"|"+t]),this.slotIndex=t,this.attachmentNames=new Array(e)}getFrameCount(){return this.frames.length}setFrame(e,t,i){this.frames[e]=t,this.attachmentNames[e]=i}apply(e,t,i,s,n,h,a){let r=e.slots[this.slotIndex];if(r.bone.active){if(a==1){h==0&&this.setAttachment(e,r,r.data.attachmentName);return}if(i<this.frames[0]){(h==0||h==1)&&this.setAttachment(e,r,r.data.attachmentName);return}this.setAttachment(e,r,this.attachmentNames[me.search1(this.frames,i)])}}setAttachment(e,t,i){t.setAttachment(i?e.getAttachment(this.slotIndex,i):null)}},li=class extends Re{slotIndex=0;attachment;vertices;constructor(e,t,i,s){super(e,t,[re.deform+"|"+i+"|"+s.id]),this.slotIndex=i,this.attachment=s,this.vertices=new Array(e)}getFrameCount(){return this.frames.length}setFrame(e,t,i){this.frames[e]=t,this.vertices[e]=i}setBezier(e,t,i,s,n,h,a,r,o,l,c){let f=this.curves,d=this.getFrameCount()+e*18;i==0&&(f[t]=2+d);let u=(s-h*2+r)*.03,m=o*.03-a*.06,g=((h-r)*3-s+l)*.006,b=(a-o+.33333333)*.018,w=u*2+g,x=m*2+b,p=(h-s)*.3+u+g*.16666667,y=a*.3+m+b*.16666667,v=s+p,A=y;for(let C=d+18;d<C;d+=2)f[d]=v,f[d+1]=A,p+=w,y+=x,w+=g,x+=b,v+=p,A+=y}getCurvePercent(e,t){let i=this.curves,s=i[t];switch(s){case 0:let r=this.frames[t];return(e-r)/(this.frames[t+this.getFrameEntries()]-r);case 1:return 0}if(s-=2,i[s]>e){let r=this.frames[t];return i[s+1]*(e-r)/(i[s]-r)}let n=s+18;for(s+=2;s<n;s+=2)if(i[s]>=e){let r=i[s-2],o=i[s-1];return o+(e-r)/(i[s]-r)*(i[s+1]-o)}let h=i[n-2],a=i[n-1];return a+(1-a)*(e-h)/(this.frames[t+this.getFrameEntries()]-h)}apply(e,t,i,s,n,h,a){let r=e.slots[this.slotIndex];if(!r.bone.active)return;let o=r.getAttachment();if(!o||!(o instanceof Ye)||o.timelineAttachment!=this.attachment)return;let l=r.deform;l.length==0&&(h=0);let c=this.vertices,f=c[0].length,d=this.frames;if(i<d[0]){switch(h){case 0:l.length=0;return;case 1:if(n==1){l.length=0;return}l.length=f;let x=o;if(x.bones){n=1-n;for(var u=0;u<f;u++)l[u]*=n}else{let p=x.vertices;for(var u=0;u<f;u++)l[u]+=(p[u]-l[u])*n}}return}if(l.length=f,i>=d[d.length-1]){let x=c[d.length-1];if(n==1)if(h==3){let p=o;if(p.bones)for(let y=0;y<f;y++)l[y]+=x[y];else{let y=p.vertices;for(let v=0;v<f;v++)l[v]+=x[v]-y[v]}}else P.arrayCopy(x,0,l,0,f);else switch(h){case 0:{let y=o;if(y.bones)for(let v=0;v<f;v++)l[v]=x[v]*n;else{let v=y.vertices;for(let A=0;A<f;A++){let C=v[A];l[A]=C+(x[A]-C)*n}}break}case 1:case 2:for(let y=0;y<f;y++)l[y]+=(x[y]-l[y])*n;break;case 3:let p=o;if(p.bones)for(let y=0;y<f;y++)l[y]+=x[y]*n;else{let y=p.vertices;for(let v=0;v<f;v++)l[v]+=(x[v]-y[v])*n}}return}let m=me.search1(d,i),g=this.getCurvePercent(i,m),b=c[m],w=c[m+1];if(n==1)if(h==3){let x=o;if(x.bones)for(let p=0;p<f;p++){let y=b[p];l[p]+=y+(w[p]-y)*g}else{let p=x.vertices;for(let y=0;y<f;y++){let v=b[y];l[y]+=v+(w[y]-v)*g-p[y]}}}else for(let x=0;x<f;x++){let p=b[x];l[x]=p+(w[x]-p)*g}else switch(h){case 0:{let p=o;if(p.bones)for(let y=0;y<f;y++){let v=b[y];l[y]=(v+(w[y]-v)*g)*n}else{let y=p.vertices;for(let v=0;v<f;v++){let A=b[v],C=y[v];l[v]=C+(A+(w[v]-A)*g-C)*n}}break}case 1:case 2:for(let p=0;p<f;p++){let y=b[p];l[p]+=(y+(w[p]-y)*g-l[p])*n}break;case 3:let x=o;if(x.bones)for(let p=0;p<f;p++){let y=b[p];l[p]+=(y+(w[p]-y)*g)*n}else{let p=x.vertices;for(let y=0;y<f;y++){let v=b[y];l[y]+=(v+(w[y]-v)*g-p[y])*n}}}}},ns=class extends me{events;constructor(e){super(e,ns.propertyIds),this.events=new Array(e)}getFrameCount(){return this.frames.length}setFrame(e,t){this.frames[e]=t.time,this.events[e]=t}apply(e,t,i,s,n,h,a){if(!s)return;let r=this.frames,o=this.frames.length;if(t>i)this.apply(e,t,Number.MAX_VALUE,s,n,h,a),t=-1;else if(t>=r[o-1])return;if(i<r[0])return;let l=0;if(t<r[0])l=0;else{l=me.search1(r,t)+1;let c=r[l];for(;l>0&&r[l-1]==c;)l--}for(;l<o&&i>=r[l];l++)s.push(this.events[l])}},ht=ns;B(ht,"propertyIds",[""+re.event]);var as=class extends me{drawOrders;constructor(e){super(e,as.propertyIds),this.drawOrders=new Array(e)}getFrameCount(){return this.frames.length}setFrame(e,t,i){this.frames[e]=t,this.drawOrders[e]=i}apply(e,t,i,s,n,h,a){if(a==1){h==0&&P.arrayCopy(e.slots,0,e.drawOrder,0,e.slots.length);return}if(i<this.frames[0]){(h==0||h==1)&&P.arrayCopy(e.slots,0,e.drawOrder,0,e.slots.length);return}let r=me.search1(this.frames,i),o=this.drawOrders[r];if(!o)P.arrayCopy(e.slots,0,e.drawOrder,0,e.slots.length);else{let l=e.drawOrder,c=e.slots;for(let f=0,d=o.length;f<d;f++)l[f]=c[o[f]]}}},Ge=as;B(Ge,"propertyIds",[""+re.drawOrder]);var oi=class extends Re{constraintIndex=0;constructor(e,t,i){super(e,t,[re.ikConstraint+"|"+i]),this.constraintIndex=i}getFrameEntries(){return 6}setFrame(e,t,i,s,n,h,a){e*=6,this.frames[e]=t,this.frames[e+1]=i,this.frames[e+2]=s,this.frames[e+3]=n,this.frames[e+4]=h?1:0,this.frames[e+5]=a?1:0}apply(e,t,i,s,n,h,a){let r=e.ikConstraints[this.constraintIndex];if(!r.active)return;let o=this.frames;if(i<o[0]){switch(h){case 0:r.mix=r.data.mix,r.softness=r.data.softness,r.bendDirection=r.data.bendDirection,r.compress=r.data.compress,r.stretch=r.data.stretch;return;case 1:r.mix+=(r.data.mix-r.mix)*n,r.softness+=(r.data.softness-r.softness)*n,r.bendDirection=r.data.bendDirection,r.compress=r.data.compress,r.stretch=r.data.stretch}return}let l=0,c=0,f=me.search(o,i,6),d=this.curves[f/6];switch(d){case 0:let u=o[f];l=o[f+1],c=o[f+2];let m=(i-u)/(o[f+6]-u);l+=(o[f+6+1]-l)*m,c+=(o[f+6+2]-c)*m;break;case 1:l=o[f+1],c=o[f+2];break;default:l=this.getBezierValue(i,f,1,d-2),c=this.getBezierValue(i,f,2,d+18-2)}h==0?(r.mix=r.data.mix+(l-r.data.mix)*n,r.softness=r.data.softness+(c-r.data.softness)*n,a==1?(r.bendDirection=r.data.bendDirection,r.compress=r.data.compress,r.stretch=r.data.stretch):(r.bendDirection=o[f+3],r.compress=o[f+4]!=0,r.stretch=o[f+5]!=0)):(r.mix+=(l-r.mix)*n,r.softness+=(c-r.softness)*n,a==0&&(r.bendDirection=o[f+3],r.compress=o[f+4]!=0,r.stretch=o[f+5]!=0))}},hi=class extends Re{constraintIndex=0;constructor(e,t,i){super(e,t,[re.transformConstraint+"|"+i]),this.constraintIndex=i}getFrameEntries(){return 7}setFrame(e,t,i,s,n,h,a,r){let o=this.frames;e*=7,o[e]=t,o[e+1]=i,o[e+2]=s,o[e+3]=n,o[e+4]=h,o[e+5]=a,o[e+6]=r}apply(e,t,i,s,n,h,a){let r=e.transformConstraints[this.constraintIndex];if(!r.active)return;let o=this.frames;if(i<o[0]){let w=r.data;switch(h){case 0:r.mixRotate=w.mixRotate,r.mixX=w.mixX,r.mixY=w.mixY,r.mixScaleX=w.mixScaleX,r.mixScaleY=w.mixScaleY,r.mixShearY=w.mixShearY;return;case 1:r.mixRotate+=(w.mixRotate-r.mixRotate)*n,r.mixX+=(w.mixX-r.mixX)*n,r.mixY+=(w.mixY-r.mixY)*n,r.mixScaleX+=(w.mixScaleX-r.mixScaleX)*n,r.mixScaleY+=(w.mixScaleY-r.mixScaleY)*n,r.mixShearY+=(w.mixShearY-r.mixShearY)*n}return}let l,c,f,d,u,m,g=me.search(o,i,7),b=this.curves[g/7];switch(b){case 0:let w=o[g];l=o[g+1],c=o[g+2],f=o[g+3],d=o[g+4],u=o[g+5],m=o[g+6];let x=(i-w)/(o[g+7]-w);l+=(o[g+7+1]-l)*x,c+=(o[g+7+2]-c)*x,f+=(o[g+7+3]-f)*x,d+=(o[g+7+4]-d)*x,u+=(o[g+7+5]-u)*x,m+=(o[g+7+6]-m)*x;break;case 1:l=o[g+1],c=o[g+2],f=o[g+3],d=o[g+4],u=o[g+5],m=o[g+6];break;default:l=this.getBezierValue(i,g,1,b-2),c=this.getBezierValue(i,g,2,b+18-2),f=this.getBezierValue(i,g,3,b+18*2-2),d=this.getBezierValue(i,g,4,b+18*3-2),u=this.getBezierValue(i,g,5,b+18*4-2),m=this.getBezierValue(i,g,6,b+18*5-2)}if(h==0){let w=r.data;r.mixRotate=w.mixRotate+(l-w.mixRotate)*n,r.mixX=w.mixX+(c-w.mixX)*n,r.mixY=w.mixY+(f-w.mixY)*n,r.mixScaleX=w.mixScaleX+(d-w.mixScaleX)*n,r.mixScaleY=w.mixScaleY+(u-w.mixScaleY)*n,r.mixShearY=w.mixShearY+(m-w.mixShearY)*n}else r.mixRotate+=(l-r.mixRotate)*n,r.mixX+=(c-r.mixX)*n,r.mixY+=(f-r.mixY)*n,r.mixScaleX+=(d-r.mixScaleX)*n,r.mixScaleY+=(u-r.mixScaleY)*n,r.mixShearY+=(m-r.mixShearY)*n}},ci=class extends Te{constraintIndex=0;constructor(e,t,i){super(e,t,re.pathConstraintPosition+"|"+i),this.constraintIndex=i}apply(e,t,i,s,n,h,a){let r=e.pathConstraints[this.constraintIndex];r.active&&(r.position=this.getAbsoluteValue(i,n,h,r.position,r.data.position))}},di=class extends Te{constraintIndex=0;constructor(e,t,i){super(e,t,re.pathConstraintSpacing+"|"+i),this.constraintIndex=i}apply(e,t,i,s,n,h,a){let r=e.pathConstraints[this.constraintIndex];r.active&&(r.spacing=this.getAbsoluteValue(i,n,h,r.spacing,r.data.spacing))}},fi=class extends Re{constraintIndex=0;constructor(e,t,i){super(e,t,[re.pathConstraintMix+"|"+i]),this.constraintIndex=i}getFrameEntries(){return 4}setFrame(e,t,i,s,n){let h=this.frames;e<<=2,h[e]=t,h[e+1]=i,h[e+2]=s,h[e+3]=n}apply(e,t,i,s,n,h,a){let r=e.pathConstraints[this.constraintIndex];if(!r.active)return;let o=this.frames;if(i<o[0]){switch(h){case 0:r.mixRotate=r.data.mixRotate,r.mixX=r.data.mixX,r.mixY=r.data.mixY;return;case 1:r.mixRotate+=(r.data.mixRotate-r.mixRotate)*n,r.mixX+=(r.data.mixX-r.mixX)*n,r.mixY+=(r.data.mixY-r.mixY)*n}return}let l,c,f,d=me.search(o,i,4),u=this.curves[d>>2];switch(u){case 0:let m=o[d];l=o[d+1],c=o[d+2],f=o[d+3];let g=(i-m)/(o[d+4]-m);l+=(o[d+4+1]-l)*g,c+=(o[d+4+2]-c)*g,f+=(o[d+4+3]-f)*g;break;case 1:l=o[d+1],c=o[d+2],f=o[d+3];break;default:l=this.getBezierValue(i,d,1,u-2),c=this.getBezierValue(i,d,2,u+18-2),f=this.getBezierValue(i,d,3,u+18*2-2)}if(h==0){let m=r.data;r.mixRotate=m.mixRotate+(l-m.mixRotate)*n,r.mixX=m.mixX+(c-m.mixX)*n,r.mixY=m.mixY+(f-m.mixY)*n}else r.mixRotate+=(l-r.mixRotate)*n,r.mixX+=(c-r.mixX)*n,r.mixY+=(f-r.mixY)*n}},Oe=class extends Te{constraintIndex=0;constructor(e,t,i,s){super(e,t,s+"|"+i),this.constraintIndex=i}apply(e,t,i,s,n,h,a){let r;if(this.constraintIndex==-1){const o=i>=this.frames[0]?this.getCurveValue(i):0;for(const l of e.physicsConstraints)l.active&&this.global(l.data)&&this.set(l,this.getAbsoluteValue2(i,n,h,this.get(l),this.setup(l),o))}else r=e.physicsConstraints[this.constraintIndex],r.active&&this.set(r,this.getAbsoluteValue(i,n,h,this.get(r),this.setup(r)))}},ui=class extends Oe{constructor(e,t,i){super(e,t,i,re.physicsConstraintInertia)}setup(e){return e.data.inertia}get(e){return e.inertia}set(e,t){e.inertia=t}global(e){return e.inertiaGlobal}},mi=class extends Oe{constructor(e,t,i){super(e,t,i,re.physicsConstraintStrength)}setup(e){return e.data.strength}get(e){return e.strength}set(e,t){e.strength=t}global(e){return e.strengthGlobal}},gi=class extends Oe{constructor(e,t,i){super(e,t,i,re.physicsConstraintDamping)}setup(e){return e.data.damping}get(e){return e.damping}set(e,t){e.damping=t}global(e){return e.dampingGlobal}},xi=class extends Oe{constructor(e,t,i){super(e,t,i,re.physicsConstraintMass)}setup(e){return 1/e.data.massInverse}get(e){return 1/e.massInverse}set(e,t){e.massInverse=1/t}global(e){return e.massGlobal}},pi=class extends Oe{constructor(e,t,i){super(e,t,i,re.physicsConstraintWind)}setup(e){return e.data.wind}get(e){return e.wind}set(e,t){e.wind=t}global(e){return e.windGlobal}},wi=class extends Oe{constructor(e,t,i){super(e,t,i,re.physicsConstraintGravity)}setup(e){return e.data.gravity}get(e){return e.gravity}set(e,t){e.gravity=t}global(e){return e.gravityGlobal}},bi=class extends Oe{constructor(e,t,i){super(e,t,i,re.physicsConstraintMix)}setup(e){return e.data.mix}get(e){return e.mix}set(e,t){e.mix=t}global(e){return e.mixGlobal}},ls=class extends me{constraintIndex;constructor(e,t){super(e,ls.propertyIds),this.constraintIndex=t}getFrameCount(){return this.frames.length}setFrame(e,t){this.frames[e]=t}apply(e,t,i,s,n,h,a){let r;if(this.constraintIndex!=-1&&(r=e.physicsConstraints[this.constraintIndex],!r.active))return;const o=this.frames;if(t>i)this.apply(e,t,Number.MAX_VALUE,[],n,h,a),t=-1;else if(t>=o[o.length-1])return;if(!(i<o[0])&&(t<o[0]||i>=o[me.search1(o,t)+1]))if(r!=null)r.reset();else for(const l of e.physicsConstraints)l.active&&l.reset()}},vt=ls;B(vt,"propertyIds",[re.physicsConstraintReset.toString()]);var De=class extends me{slotIndex;attachment;constructor(e,t,i){super(e,[re.sequence+"|"+t+"|"+i.sequence.id]),this.slotIndex=t,this.attachment=i}getFrameEntries(){return De.ENTRIES}getSlotIndex(){return this.slotIndex}getAttachment(){return this.attachment}setFrame(e,t,i,s,n){let h=this.frames;e*=De.ENTRIES,h[e]=t,h[e+De.MODE]=i|s<<4,h[e+De.DELAY]=n}apply(e,t,i,s,n,h,a){let r=e.slots[this.slotIndex];if(!r.bone.active)return;let o=r.attachment,l=this.attachment;if(o!=l&&(!(o instanceof Ye)||o.timelineAttachment!=l))return;if(a==1){h==0&&(r.sequenceIndex=-1);return}let c=this.frames;if(i<c[0]){(h==0||h==1)&&(r.sequenceIndex=-1);return}let f=me.search(c,i,De.ENTRIES),d=c[f],u=c[f+De.MODE],m=c[f+De.DELAY];if(!this.attachment.sequence)return;let g=u>>4,b=this.attachment.sequence.regions.length,w=is[u&15];if(w!=0)switch(g+=(i-d)/m+1e-5|0,w){case 1:g=Math.min(b-1,g);break;case 2:g%=b;break;case 3:{let x=(b<<1)-2;g=x==0?0:g%x,g>=b&&(g=x-g);break}case 4:g=Math.max(b-1-g,0);break;case 5:g=b-1-g%b;break;case 6:{let x=(b<<1)-2;g=x==0?0:(g+b-1)%x,g>=b&&(g=x-g)}}r.sequenceIndex=g}},$e=De;B($e,"ENTRIES",3),B($e,"MODE",1),B($e,"DELAY",2);var yt=class{static emptyAnimation(){return yt._emptyAnimation}data;tracks=new Array;timeScale=1;unkeyedState=0;events=new Array;listeners=new Array;queue=new cs(this);propertyIDs=new zt;animationsChanged=!1;trackEntryPool=new lt(()=>new hs);constructor(e){this.data=e}update(e){e*=this.timeScale;let t=this.tracks;for(let i=0,s=t.length;i<s;i++){let n=t[i];if(!n)continue;n.animationLast=n.nextAnimationLast,n.trackLast=n.nextTrackLast;let h=e*n.timeScale;if(n.delay>0){if(n.delay-=h,n.delay>0)continue;h=-n.delay,n.delay=0}let a=n.next;if(a){let r=n.trackLast-a.delay;if(r>=0){for(a.delay=0,a.trackTime+=n.timeScale==0?0:(r/n.timeScale+e)*a.timeScale,n.trackTime+=h,this.setCurrent(i,a,!0);a.mixingFrom;)a.mixTime+=e,a=a.mixingFrom;continue}}else if(n.trackLast>=n.trackEnd&&!n.mixingFrom){t[i]=null,this.queue.end(n),this.clearNext(n);continue}if(n.mixingFrom&&this.updateMixingFrom(n,e)){let r=n.mixingFrom;for(n.mixingFrom=null,r&&(r.mixingTo=null);r;)this.queue.end(r),r=r.mixingFrom}n.trackTime+=h}this.queue.drain()}updateMixingFrom(e,t){let i=e.mixingFrom;if(!i)return!0;let s=this.updateMixingFrom(i,t);return i.animationLast=i.nextAnimationLast,i.trackLast=i.nextTrackLast,e.nextTrackLast!=-1&&e.mixTime>=e.mixDuration?((i.totalAlpha==0||e.mixDuration==0)&&(e.mixingFrom=i.mixingFrom,i.mixingFrom!=null&&(i.mixingFrom.mixingTo=e),e.interruptAlpha=i.interruptAlpha,this.queue.end(i)),s):(i.trackTime+=t*i.timeScale,e.mixTime+=t,!1)}apply(e){if(!e)throw new Error("skeleton cannot be null.");this.animationsChanged&&this._animationsChanged();let t=this.events,i=this.tracks,s=!1;for(let f=0,d=i.length;f<d;f++){let u=i[f];if(!u||u.delay>0)continue;s=!0;let m=f==0?1:u.mixBlend,g=u.alpha;u.mixingFrom?g*=this.applyMixingFrom(u,e,m):u.trackTime>=u.trackEnd&&!u.next&&(g=0);let b=g>=u.alphaAttachmentThreshold,w=u.animationLast,x=u.getAnimationTime(),p=x,y=t;u.reverse&&(p=u.animation.duration-p,y=null);let v=u.animation.timelines,A=v.length;if(f==0&&g==1||m==3){f==0&&(b=!0);for(let C=0;C<A;C++){P.webkit602BugfixHelper(g,m);var n=v[C];n instanceof qe?this.applyAttachmentTimeline(n,e,p,m,b):n.apply(e,w,p,y,g,m,0)}}else{let C=u.timelineMode,S=u.shortestRotation,E=!S&&u.timelinesRotation.length!=A<<1;E&&(u.timelinesRotation.length=A<<1);for(let Y=0;Y<A;Y++){let k=v[Y],X=C[Y]==At?m:0;!S&&k instanceof ot?this.applyRotateTimeline(k,e,p,g,X,u.timelinesRotation,Y<<1,E):k instanceof qe?this.applyAttachmentTimeline(k,e,p,m,b):(P.webkit602BugfixHelper(g,m),k.apply(e,w,p,y,g,X,0))}}this.queueEvents(u,x),t.length=0,u.nextAnimationLast=x,u.nextTrackLast=u.trackTime}for(var h=this.unkeyedState+Ai,a=e.slots,r=0,o=e.slots.length;r<o;r++){var l=a[r];if(l.attachmentState==h){var c=l.data.attachmentName;l.setAttachment(c?e.getAttachment(l.data.index,c):null)}}return this.unkeyedState+=2,this.queue.drain(),s}applyMixingFrom(e,t,i){let s=e.mixingFrom;s.mixingFrom&&this.applyMixingFrom(s,t,i);let n=0;e.mixDuration==0?(n=1,i==1&&(i=0)):(n=e.mixTime/e.mixDuration,n>1&&(n=1),i!=1&&(i=s.mixBlend));let h=n<s.mixAttachmentThreshold,a=n<s.mixDrawOrderThreshold,r=s.animation.timelines,o=r.length,l=s.alpha*e.interruptAlpha,c=l*(1-n),f=s.animationLast,d=s.getAnimationTime(),u=d,m=null;if(s.reverse?u=s.animation.duration-u:n<s.eventThreshold&&(m=this.events),i==3)for(let g=0;g<o;g++)r[g].apply(t,f,u,m,c,i,1);else{let g=s.timelineMode,b=s.timelineHoldMix,w=s.shortestRotation,x=!w&&s.timelinesRotation.length!=o<<1;x&&(s.timelinesRotation.length=o<<1),s.totalAlpha=0;for(let p=0;p<o;p++){let y=r[p],v=1,A,C=0;switch(g[p]){case At:if(!a&&y instanceof Ge)continue;A=i,C=c;break;case vi:A=0,C=c;break;case yi:A=i,C=l;break;case Ct:A=0,C=l;break;default:A=0;let S=b[p];C=l*Math.max(0,1-S.mixTime/S.mixDuration);break}s.totalAlpha+=C,!w&&y instanceof ot?this.applyRotateTimeline(y,t,u,C,A,s.timelinesRotation,p<<1,x):y instanceof qe?this.applyAttachmentTimeline(y,t,u,A,h&&C>=s.alphaAttachmentThreshold):(P.webkit602BugfixHelper(C,i),a&&y instanceof Ge&&A==0&&(v=0),y.apply(t,f,u,m,C,A,v))}}return e.mixDuration>0&&this.queueEvents(s,d),this.events.length=0,s.nextAnimationLast=d,s.nextTrackLast=s.trackTime,n}applyAttachmentTimeline(e,t,i,s,n){var h=t.slots[e.slotIndex];h.bone.active&&(i<e.frames[0]?(s==0||s==1)&&this.setAttachment(t,h,h.data.attachmentName,n):this.setAttachment(t,h,e.attachmentNames[me.search1(e.frames,i)],n),h.attachmentState<=this.unkeyedState&&(h.attachmentState=this.unkeyedState+Ai))}setAttachment(e,t,i,s){t.setAttachment(i?e.getAttachment(t.data.index,i):null),s&&(t.attachmentState=this.unkeyedState+fs)}applyRotateTimeline(e,t,i,s,n,h,a,r){if(r&&(h[a]=0),s==1){e.apply(t,0,i,null,1,n,0);return}let o=t.bones[e.boneIndex];if(!o.active)return;let l=e.frames,c=0,f=0;if(i<l[0])switch(n){case 0:o.rotation=o.data.rotation;default:return;case 1:c=o.rotation,f=o.data.rotation}else c=n==0?o.data.rotation:o.rotation,f=o.data.rotation+e.getCurveValue(i);let d=0,u=f-c;if(u-=Math.ceil(u/360-.5)*360,u==0)d=h[a];else{let m=0,g=0;r?(m=0,g=u):(m=h[a],g=h[a+1]);let b=m-m%360;d=u+b;let w=u>=0,x=m>=0;Math.abs(g)<=90&&L.signum(g)!=L.signum(u)&&(Math.abs(m-b)>180?(d+=360*L.signum(m),x=w):b!=0?d-=360*L.signum(m):x=w),x!=w&&(d+=360*L.signum(m)),h[a]=d}h[a+1]=u,o.rotation=c+d*s}queueEvents(e,t){let i=e.animationStart,s=e.animationEnd,n=s-i,h=e.trackLast%n,a=this.events,r=0,o=a.length;for(;r<o;r++){let c=a[r];if(c.time<h)break;c.time>s||this.queue.event(e,c)}let l=!1;if(e.loop)if(n==0)l=!0;else{const c=Math.floor(e.trackTime/n);l=c>0&&c>Math.floor(e.trackLast/n)}else l=t>=s&&e.animationLast<s;for(l&&this.queue.complete(e);r<o;r++){let c=a[r];c.time<i||this.queue.event(e,c)}}clearTracks(){let e=this.queue.drainDisabled;this.queue.drainDisabled=!0;for(let t=0,i=this.tracks.length;t<i;t++)this.clearTrack(t);this.tracks.length=0,this.queue.drainDisabled=e,this.queue.drain()}clearTrack(e){if(e>=this.tracks.length)return;let t=this.tracks[e];if(!t)return;this.queue.end(t),this.clearNext(t);let i=t;for(;;){let s=i.mixingFrom;if(!s)break;this.queue.end(s),i.mixingFrom=null,i.mixingTo=null,i=s}this.tracks[t.trackIndex]=null,this.queue.drain()}setCurrent(e,t,i){let s=this.expandToIndex(e);this.tracks[e]=t,t.previous=null,s&&(i&&this.queue.interrupt(s),t.mixingFrom=s,s.mixingTo=t,t.mixTime=0,s.mixingFrom&&s.mixDuration>0&&(t.interruptAlpha*=Math.min(1,s.mixTime/s.mixDuration)),s.timelinesRotation.length=0),this.queue.start(t)}setAnimation(e,t,i=!1){let s=this.data.skeletonData.findAnimation(t);if(!s)throw new Error("Animation not found: "+t);return this.setAnimationWith(e,s,i)}setAnimationWith(e,t,i=!1){if(!t)throw new Error("animation cannot be null.");let s=!0,n=this.expandToIndex(e);n&&(n.nextTrackLast==-1?(this.tracks[e]=n.mixingFrom,this.queue.interrupt(n),this.queue.end(n),this.clearNext(n),n=n.mixingFrom,s=!1):this.clearNext(n));let h=this.trackEntry(e,t,i,n);return this.setCurrent(e,h,s),this.queue.drain(),h}addAnimation(e,t,i=!1,s=0){let n=this.data.skeletonData.findAnimation(t);if(!n)throw new Error("Animation not found: "+t);return this.addAnimationWith(e,n,i,s)}addAnimationWith(e,t,i=!1,s=0){if(!t)throw new Error("animation cannot be null.");let n=this.expandToIndex(e);if(n)for(;n.next;)n=n.next;let h=this.trackEntry(e,t,i,n);return n?(n.next=h,h.previous=n,s<=0&&(s=Math.max(s+n.getTrackComplete()-h.mixDuration,0))):(this.setCurrent(e,h,!0),this.queue.drain(),s<0&&(s=0)),h.delay=s,h}setEmptyAnimation(e,t=0){let i=this.setAnimationWith(e,yt.emptyAnimation(),!1);return i.mixDuration=t,i.trackEnd=t,i}addEmptyAnimation(e,t=0,i=0){let s=this.addAnimationWith(e,yt.emptyAnimation(),!1,i);return i<=0&&(s.delay=Math.max(s.delay+s.mixDuration-t,0)),s.mixDuration=t,s.trackEnd=t,s}setEmptyAnimations(e=0){let t=this.queue.drainDisabled;this.queue.drainDisabled=!0;for(let i=0,s=this.tracks.length;i<s;i++){let n=this.tracks[i];n&&this.setEmptyAnimation(n.trackIndex,e)}this.queue.drainDisabled=t,this.queue.drain()}expandToIndex(e){return e<this.tracks.length?this.tracks[e]:(P.ensureArrayCapacity(this.tracks,e+1,null),this.tracks.length=e+1,null)}trackEntry(e,t,i,s){let n=this.trackEntryPool.obtain();return n.reset(),n.trackIndex=e,n.animation=t,n.loop=i,n.holdPrevious=!1,n.reverse=!1,n.shortestRotation=!1,n.eventThreshold=0,n.alphaAttachmentThreshold=0,n.mixAttachmentThreshold=0,n.mixDrawOrderThreshold=0,n.animationStart=0,n.animationEnd=t.duration,n.animationLast=-1,n.nextAnimationLast=-1,n.delay=0,n.trackTime=0,n.trackLast=-1,n.nextTrackLast=-1,n.trackEnd=Number.MAX_VALUE,n.timeScale=1,n.alpha=1,n.mixTime=0,n.mixDuration=s?this.data.getMix(s.animation,t):0,n.interruptAlpha=1,n.totalAlpha=0,n.mixBlend=2,n}clearNext(e){let t=e.next;for(;t;)this.queue.dispose(t),t=t.next;e.next=null}_animationsChanged(){this.animationsChanged=!1,this.propertyIDs.clear();let e=this.tracks;for(let t=0,i=e.length;t<i;t++){let s=e[t];if(s){for(;s.mixingFrom;)s=s.mixingFrom;do(!s.mixingTo||s.mixBlend!=3)&&this.computeHold(s),s=s.mixingTo;while(s)}}}computeHold(e){let t=e.mixingTo,i=e.animation.timelines,s=e.animation.timelines.length,n=e.timelineMode;n.length=s;let h=e.timelineHoldMix;h.length=0;let a=this.propertyIDs;if(t&&t.holdPrevious){for(let r=0;r<s;r++)n[r]=a.addAll(i[r].getPropertyIds())?Ct:yi;return}e:for(let r=0;r<s;r++){let o=i[r],l=o.getPropertyIds();if(!a.addAll(l))n[r]=At;else if(!t||o instanceof qe||o instanceof Ge||o instanceof ht||!t.animation.hasTimeline(l))n[r]=vi;else{for(let c=t.mixingTo;c;c=c.mixingTo)if(!c.animation.hasTimeline(l)){if(e.mixDuration>0){n[r]=ds,h[r]=c;continue e}break}n[r]=Ct}}}getCurrent(e){return e>=this.tracks.length?null:this.tracks[e]}addListener(e){if(!e)throw new Error("listener cannot be null.");this.listeners.push(e)}removeListener(e){let t=this.listeners.indexOf(e);t>=0&&this.listeners.splice(t,1)}clearListeners(){this.listeners.length=0}clearListenerNotifications(){this.queue.clear()}},os=yt;B(os,"_emptyAnimation",new wt("<empty>",[],0));var hs=class{animation=null;previous=null;next=null;mixingFrom=null;mixingTo=null;listener=null;trackIndex=0;loop=!1;holdPrevious=!1;reverse=!1;shortestRotation=!1;eventThreshold=0;mixAttachmentThreshold=0;alphaAttachmentThreshold=0;mixDrawOrderThreshold=0;animationStart=0;animationEnd=0;animationLast=0;nextAnimationLast=0;delay=0;trackTime=0;trackLast=0;nextTrackLast=0;trackEnd=0;timeScale=0;alpha=0;mixTime=0;_mixDuration=0;interruptAlpha=0;totalAlpha=0;get mixDuration(){return this._mixDuration}set mixDuration(e){this._mixDuration=e}setMixDurationWithDelay(e,t){this._mixDuration=e,t<=0&&(this.previous!=null?t=Math.max(t+this.previous.getTrackComplete()-e,0):t=0),this.delay=t}mixBlend=2;timelineMode=new Array;timelineHoldMix=new Array;timelinesRotation=new Array;reset(){this.next=null,this.previous=null,this.mixingFrom=null,this.mixingTo=null,this.animation=null,this.listener=null,this.timelineMode.length=0,this.timelineHoldMix.length=0,this.timelinesRotation.length=0}getAnimationTime(){if(this.loop){let e=this.animationEnd-this.animationStart;return e==0?this.animationStart:this.trackTime%e+this.animationStart}return Math.min(this.trackTime+this.animationStart,this.animationEnd)}setAnimationLast(e){this.animationLast=e,this.nextAnimationLast=e}isComplete(){return this.trackTime>=this.animationEnd-this.animationStart}resetRotationDirections(){this.timelinesRotation.length=0}getTrackComplete(){let e=this.animationEnd-this.animationStart;if(e!=0){if(this.loop)return e*(1+(this.trackTime/e|0));if(this.trackTime<e)return e}return this.trackTime}wasApplied(){return this.nextTrackLast!=-1}isNextReady(){return this.next!=null&&this.nextTrackLast-this.next.delay>=0}},cs=class{objects=[];drainDisabled=!1;animState;constructor(e){this.animState=e}start(e){this.objects.push(Ce.start),this.objects.push(e),this.animState.animationsChanged=!0}interrupt(e){this.objects.push(Ce.interrupt),this.objects.push(e)}end(e){this.objects.push(Ce.end),this.objects.push(e),this.animState.animationsChanged=!0}dispose(e){this.objects.push(Ce.dispose),this.objects.push(e)}complete(e){this.objects.push(Ce.complete),this.objects.push(e)}event(e,t){this.objects.push(Ce.event),this.objects.push(e),this.objects.push(t)}drain(){if(this.drainDisabled)return;this.drainDisabled=!0;let e=this.objects,t=this.animState.listeners;for(let i=0;i<e.length;i+=2){let s=e[i],n=e[i+1];switch(s){case Ce.start:n.listener&&n.listener.start&&n.listener.start(n);for(let a=0;a<t.length;a++){let r=t[a];r.start&&r.start(n)}break;case Ce.interrupt:n.listener&&n.listener.interrupt&&n.listener.interrupt(n);for(let a=0;a<t.length;a++){let r=t[a];r.interrupt&&r.interrupt(n)}break;case Ce.end:n.listener&&n.listener.end&&n.listener.end(n);for(let a=0;a<t.length;a++){let r=t[a];r.end&&r.end(n)}case Ce.dispose:n.listener&&n.listener.dispose&&n.listener.dispose(n);for(let a=0;a<t.length;a++){let r=t[a];r.dispose&&r.dispose(n)}this.animState.trackEntryPool.free(n);break;case Ce.complete:n.listener&&n.listener.complete&&n.listener.complete(n);for(let a=0;a<t.length;a++){let r=t[a];r.complete&&r.complete(n)}break;case Ce.event:let h=e[i+++2];n.listener&&n.listener.event&&n.listener.event(n,h);for(let a=0;a<t.length;a++){let r=t[a];r.event&&r.event(n,h)}break}}this.clear(),this.drainDisabled=!1}clear(){this.objects.length=0}},Ce=(e=>(e[e.start=0]="start",e[e.interrupt=1]="interrupt",e[e.end=2]="end",e[e.dispose=3]="dispose",e[e.complete=4]="complete",e[e.event=5]="event",e))(Ce||{}),Ws=class{start(e){}interrupt(e){}end(e){}dispose(e){}complete(e){}event(e,t){}},At=0,vi=1,yi=2,Ct=3,ds=4,Ai=1,fs=2,qs=class{skeletonData;animationToMixTime={};defaultMix=0;constructor(e){if(!e)throw new Error("skeletonData cannot be null.");this.skeletonData=e}setMix(e,t,i){let s=this.skeletonData.findAnimation(e);if(!s)throw new Error("Animation not found: "+e);let n=this.skeletonData.findAnimation(t);if(!n)throw new Error("Animation not found: "+t);this.setMixWith(s,n,i)}setMixWith(e,t,i){if(!e)throw new Error("from cannot be null.");if(!t)throw new Error("to cannot be null.");let s=e.name+"."+t.name;this.animationToMixTime[s]=i}getMix(e,t){let i=e.name+"."+t.name,s=this.animationToMixTime[i];return s===void 0?this.defaultMix:s}},St=class extends Ye{color=new V(1,1,1,1);constructor(e){super(e)}copy(){let e=new St(this.name);return this.copyTo(e),e.color.setFromColor(this.color),e}},et=class extends Ye{endSlot=null;color=new V(.2275,.2275,.8078,1);constructor(e){super(e)}copy(){let e=new et(this.name);return this.copyTo(e),e.endSlot=this.endSlot,e.color.setFromColor(this.color),e}},Ci=class{_image;constructor(e){this._image=e}getImage(){return this._image}},It=(e=>(e[e.Nearest=9728]="Nearest",e[e.Linear=9729]="Linear",e[e.MipMap=9987]="MipMap",e[e.MipMapNearestNearest=9984]="MipMapNearestNearest",e[e.MipMapLinearNearest=9985]="MipMapLinearNearest",e[e.MipMapNearestLinear=9986]="MipMapNearestLinear",e[e.MipMapLinearLinear=9987]="MipMapLinearLinear",e))(It||{}),us=(e=>(e[e.MirroredRepeat=33648]="MirroredRepeat",e[e.ClampToEdge=33071]="ClampToEdge",e[e.Repeat=10497]="Repeat",e))(us||{}),ms=class{texture;u=0;v=0;u2=0;v2=0;width=0;height=0;degrees=0;offsetX=0;offsetY=0;originalWidth=0;originalHeight=0},Gs=class extends Ci{setFilters(e,t){}setWraps(e,t){}dispose(){}},gs=class{pages=new Array;regions=new Array;constructor(e){let t=new Hs(e),i=new Array(4),s={};s.size=l=>{l.width=parseInt(i[1]),l.height=parseInt(i[2])},s.format=()=>{},s.filter=l=>{l.minFilter=P.enumValue(It,i[1]),l.magFilter=P.enumValue(It,i[2])},s.repeat=l=>{i[1].indexOf("x")!=-1&&(l.uWrap=10497),i[1].indexOf("y")!=-1&&(l.vWrap=10497)},s.pma=l=>{l.pma=i[1]=="true"};var n={};n.xy=l=>{l.x=parseInt(i[1]),l.y=parseInt(i[2])},n.size=l=>{l.width=parseInt(i[1]),l.height=parseInt(i[2])},n.bounds=l=>{l.x=parseInt(i[1]),l.y=parseInt(i[2]),l.width=parseInt(i[3]),l.height=parseInt(i[4])},n.offset=l=>{l.offsetX=parseInt(i[1]),l.offsetY=parseInt(i[2])},n.orig=l=>{l.originalWidth=parseInt(i[1]),l.originalHeight=parseInt(i[2])},n.offsets=l=>{l.offsetX=parseInt(i[1]),l.offsetY=parseInt(i[2]),l.originalWidth=parseInt(i[3]),l.originalHeight=parseInt(i[4])},n.rotate=l=>{let c=i[1];c=="true"?l.degrees=90:c!="false"&&(l.degrees=parseInt(c))},n.index=l=>{l.index=parseInt(i[1])};let h=t.readLine();for(;h&&h.trim().length==0;)h=t.readLine();for(;!(!h||h.trim().length==0||t.readEntry(i,h)==0);)h=t.readLine();let a=null,r=null,o=null;for(;h!==null;)if(h.trim().length==0)a=null,h=t.readLine();else if(a){let l=new Si(a,h);for(;;){let c=t.readEntry(i,h=t.readLine());if(c==0)break;let f=n[i[0]];if(f)f(l);else{r||(r=[]),o||(o=[]),r.push(i[0]);let d=[];for(let u=0;u<c;u++)d.push(parseInt(i[u+1]));o.push(d)}}l.originalWidth==0&&l.originalHeight==0&&(l.originalWidth=l.width,l.originalHeight=l.height),r&&r.length>0&&o&&o.length>0&&(l.names=r,l.values=o,r=null,o=null),l.u=l.x/a.width,l.v=l.y/a.height,l.degrees==90?(l.u2=(l.x+l.height)/a.width,l.v2=(l.y+l.width)/a.height):(l.u2=(l.x+l.width)/a.width,l.v2=(l.y+l.height)/a.height),this.regions.push(l)}else{for(a=new xs(h.trim());t.readEntry(i,h=t.readLine())!=0;){let l=s[i[0]];l&&l(a)}this.pages.push(a)}}findRegion(e){for(let t=0;t<this.regions.length;t++)if(this.regions[t].name==e)return this.regions[t];return null}setTextures(e,t=""){for(let i of this.pages)i.setTexture(e.get(t+i.name))}dispose(){for(let e=0;e<this.pages.length;e++)this.pages[e].texture?.dispose()}},Hs=class{lines;index=0;constructor(e){this.lines=e.split(/\r\n|\r|\n/)}readLine(){return this.index>=this.lines.length?null:this.lines[this.index++]}readEntry(e,t){if(!t||(t=t.trim(),t.length==0))return 0;let i=t.indexOf(":");if(i==-1)return 0;e[0]=t.substr(0,i).trim();for(let s=1,n=i+1;;s++){let h=t.indexOf(",",n);if(h==-1)return e[s]=t.substr(n).trim(),s;if(e[s]=t.substr(n,h-n).trim(),n=h+1,s==4)return 4}}},xs=class{name;minFilter=9728;magFilter=9728;uWrap=33071;vWrap=33071;texture=null;width=0;height=0;pma=!1;regions=new Array;constructor(e){this.name=e}setTexture(e){this.texture=e,e.setFilters(this.minFilter,this.magFilter),e.setWraps(this.uWrap,this.vWrap);for(let t of this.regions)t.texture=e}},Si=class extends ms{page;name;x=0;y=0;offsetX=0;offsetY=0;originalWidth=0;originalHeight=0;index=0;degrees=0;names=null;values=null;constructor(e,t){super(),this.page=e,this.name=t,e.regions.push(this)}},Ne=class extends Ye{region=null;path;regionUVs=[];uvs=[];triangles=[];color=new V(1,1,1,1);width=0;height=0;hullLength=0;edges=[];parentMesh=null;sequence=null;tempColor=new V(0,0,0,0);constructor(e,t){super(e),this.path=t}updateRegion(){if(!this.region)throw new Error("Region not set.");let e=this.regionUVs;(!this.uvs||this.uvs.length!=e.length)&&(this.uvs=P.newFloatArray(e.length));let t=this.uvs,i=this.uvs.length,s=this.region.u,n=this.region.v,h=0,a=0;if(this.region instanceof Si){let r=this.region,o=r.page,l=o.width,c=o.height;switch(r.degrees){case 90:s-=(r.originalHeight-r.offsetY-r.height)/l,n-=(r.originalWidth-r.offsetX-r.width)/c,h=r.originalHeight/l,a=r.originalWidth/c;for(let f=0;f<i;f+=2)t[f]=s+e[f+1]*h,t[f+1]=n+(1-e[f])*a;return;case 180:s-=(r.originalWidth-r.offsetX-r.width)/l,n-=r.offsetY/c,h=r.originalWidth/l,a=r.originalHeight/c;for(let f=0;f<i;f+=2)t[f]=s+(1-e[f])*h,t[f+1]=n+(1-e[f+1])*a;return;case 270:s-=r.offsetY/l,n-=r.offsetX/c,h=r.originalHeight/l,a=r.originalWidth/c;for(let f=0;f<i;f+=2)t[f]=s+(1-e[f+1])*h,t[f+1]=n+e[f]*a;return}s-=r.offsetX/l,n-=(r.originalHeight-r.offsetY-r.height)/c,h=r.originalWidth/l,a=r.originalHeight/c}else this.region?(h=this.region.u2-s,a=this.region.v2-n):(s=n=0,h=a=1);for(let r=0;r<i;r+=2)t[r]=s+e[r]*h,t[r+1]=n+e[r+1]*a}getParentMesh(){return this.parentMesh}setParentMesh(e){this.parentMesh=e,e&&(this.bones=e.bones,this.vertices=e.vertices,this.worldVerticesLength=e.worldVerticesLength,this.regionUVs=e.regionUVs,this.triangles=e.triangles,this.hullLength=e.hullLength,this.worldVerticesLength=e.worldVerticesLength)}copy(){if(this.parentMesh)return this.newLinkedMesh();let e=new Ne(this.name,this.path);return e.region=this.region,e.color.setFromColor(this.color),this.copyTo(e),e.regionUVs=new Array(this.regionUVs.length),P.arrayCopy(this.regionUVs,0,e.regionUVs,0,this.regionUVs.length),e.uvs=new Array(this.uvs.length),P.arrayCopy(this.uvs,0,e.uvs,0,this.uvs.length),e.triangles=new Array(this.triangles.length),P.arrayCopy(this.triangles,0,e.triangles,0,this.triangles.length),e.hullLength=this.hullLength,e.sequence=this.sequence!=null?this.sequence.copy():null,this.edges&&(e.edges=new Array(this.edges.length),P.arrayCopy(this.edges,0,e.edges,0,this.edges.length)),e.width=this.width,e.height=this.height,e}computeWorldVertices(e,t,i,s,n,h){this.sequence!=null&&this.sequence.apply(e,this),super.computeWorldVertices(e,t,i,s,n,h)}newLinkedMesh(){let e=new Ne(this.name,this.path);return e.region=this.region,e.color.setFromColor(this.color),e.timelineAttachment=this.timelineAttachment,e.setParentMesh(this.parentMesh?this.parentMesh:this),e.region!=null&&e.updateRegion(),e}},He=class extends Ye{lengths=[];closed=!1;constantSpeed=!1;color=new V(1,1,1,1);constructor(e){super(e)}copy(){let e=new He(this.name);return this.copyTo(e),e.lengths=new Array(this.lengths.length),P.arrayCopy(this.lengths,0,e.lengths,0,this.lengths.length),e.closed=closed,e.constantSpeed=this.constantSpeed,e.color.setFromColor(this.color),e}},Ii=class extends Ye{x=0;y=0;rotation=0;color=new V(.38,.94,0,1);constructor(e){super(e)}computeWorldPosition(e,t){return t.x=this.x*e.a+this.y*e.b+e.worldX,t.y=this.x*e.c+this.y*e.d+e.worldY,t}computeWorldRotation(e){const t=this.rotation*L.degRad,i=Math.cos(t),s=Math.sin(t),n=i*e.a+s*e.b,h=i*e.c+s*e.d;return L.atan2Deg(h,n)}copy(){let e=new Ii(this.name);return e.x=this.x,e.y=this.y,e.rotation=this.rotation,e.color.setFromColor(this.color),e}},ps=class extends Wt{x=0;y=0;scaleX=1;scaleY=1;rotation=0;width=0;height=0;color=new V(1,1,1,1);path;region=null;sequence=null;offset=P.newFloatArray(8);uvs=P.newFloatArray(8);tempColor=new V(1,1,1,1);constructor(e,t){super(e),this.path=t}updateRegion(){if(!this.region)throw new Error("Region not set.");let e=this.region,t=this.uvs;if(e==null){t[0]=0,t[1]=0,t[2]=0,t[3]=1,t[4]=1,t[5]=1,t[6]=1,t[7]=0;return}let i=this.width/this.region.originalWidth*this.scaleX,s=this.height/this.region.originalHeight*this.scaleY,n=-this.width/2*this.scaleX+this.region.offsetX*i,h=-this.height/2*this.scaleY+this.region.offsetY*s,a=n+this.region.width*i,r=h+this.region.height*s,o=this.rotation*L.degRad,l=Math.cos(o),c=Math.sin(o),f=this.x,d=this.y,u=n*l+f,m=n*c,g=h*l+d,b=h*c,w=a*l+f,x=a*c,p=r*l+d,y=r*c,v=this.offset;v[0]=u-b,v[1]=g+m,v[2]=u-y,v[3]=p+m,v[4]=w-y,v[5]=p+x,v[6]=w-b,v[7]=g+x,e.degrees==90?(t[0]=e.u2,t[1]=e.v2,t[2]=e.u,t[3]=e.v2,t[4]=e.u,t[5]=e.v,t[6]=e.u2,t[7]=e.v):(t[0]=e.u,t[1]=e.v2,t[2]=e.u,t[3]=e.v,t[4]=e.u2,t[5]=e.v,t[6]=e.u2,t[7]=e.v2)}computeWorldVertices(e,t,i,s){this.sequence!=null&&this.sequence.apply(e,this);let n=e.bone,h=this.offset,a=n.worldX,r=n.worldY,o=n.a,l=n.b,c=n.c,f=n.d,d=0,u=0;d=h[0],u=h[1],t[i]=d*o+u*l+a,t[i+1]=d*c+u*f+r,i+=s,d=h[2],u=h[3],t[i]=d*o+u*l+a,t[i+1]=d*c+u*f+r,i+=s,d=h[4],u=h[5],t[i]=d*o+u*l+a,t[i+1]=d*c+u*f+r,i+=s,d=h[6],u=h[7],t[i]=d*o+u*l+a,t[i+1]=d*c+u*f+r}copy(){let e=new ps(this.name,this.path);return e.region=this.region,e.x=this.x,e.y=this.y,e.scaleX=this.scaleX,e.scaleY=this.scaleY,e.rotation=this.rotation,e.width=this.width,e.height=this.height,P.arrayCopy(this.uvs,0,e.uvs,0,8),P.arrayCopy(this.offset,0,e.offset,0,8),e.color.setFromColor(this.color),e.sequence=this.sequence!=null?this.sequence.copy():null,e}},le=ps;B(le,"X1",0),B(le,"Y1",1),B(le,"C1R",2),B(le,"C1G",3),B(le,"C1B",4),B(le,"C1A",5),B(le,"U1",6),B(le,"V1",7),B(le,"X2",8),B(le,"Y2",9),B(le,"C2R",10),B(le,"C2G",11),B(le,"C2B",12),B(le,"C2A",13),B(le,"U2",14),B(le,"V2",15),B(le,"X3",16),B(le,"Y3",17),B(le,"C3R",18),B(le,"C3G",19),B(le,"C3B",20),B(le,"C3A",21),B(le,"U3",22),B(le,"V3",23),B(le,"X4",24),B(le,"Y4",25),B(le,"C4R",26),B(le,"C4G",27),B(le,"C4B",28),B(le,"C4A",29),B(le,"U4",30),B(le,"V4",31);var js=class{atlas;constructor(e){this.atlas=e}loadSequence(e,t,i){let s=i.regions;for(let n=0,h=s.length;n<h;n++){let a=i.getPath(t,n),r=this.atlas.findRegion(a);if(r==null)throw new Error("Region not found in atlas: "+a+" (sequence: "+e+")");s[n]=r}}newRegionAttachment(e,t,i,s){let n=new le(t,i);if(s!=null)this.loadSequence(t,i,s);else{let h=this.atlas.findRegion(i);if(!h)throw new Error("Region not found in atlas: "+i+" (region attachment: "+t+")");n.region=h}return n}newMeshAttachment(e,t,i,s){let n=new Ne(t,i);if(s!=null)this.loadSequence(t,i,s);else{let h=this.atlas.findRegion(i);if(!h)throw new Error("Region not found in atlas: "+i+" (mesh attachment: "+t+")");n.region=h}return n}newBoundingBoxAttachment(e,t){return new St(t)}newPathAttachment(e,t){return new He(t)}newPointAttachment(e,t){return new Ii(t)}newClippingAttachment(e,t){return new et(t)}},Ti=class{index=0;name;parent=null;length=0;x=0;y=0;rotation=0;scaleX=1;scaleY=1;shearX=0;shearY=0;inherit=ct.Normal;skinRequired=!1;color=new V;icon;visible=!1;constructor(e,t,i){if(e<0)throw new Error("index must be >= 0.");if(!t)throw new Error("name cannot be null.");this.index=e,this.name=t,this.parent=i}},ct=(e=>(e[e.Normal=0]="Normal",e[e.OnlyTranslation=1]="OnlyTranslation",e[e.NoRotationOrReflection=2]="NoRotationOrReflection",e[e.NoScale=3]="NoScale",e[e.NoScaleOrReflection=4]="NoScaleOrReflection",e))(ct||{}),Mi=class{data;skeleton;parent=null;children=new Array;x=0;y=0;rotation=0;scaleX=0;scaleY=0;shearX=0;shearY=0;ax=0;ay=0;arotation=0;ascaleX=0;ascaleY=0;ashearX=0;ashearY=0;a=0;b=0;c=0;d=0;worldY=0;worldX=0;inherit=0;sorted=!1;active=!1;constructor(e,t,i){if(!e)throw new Error("data cannot be null.");if(!t)throw new Error("skeleton cannot be null.");this.data=e,this.skeleton=t,this.parent=i,this.setToSetupPose()}isActive(){return this.active}update(e){this.updateWorldTransformWith(this.ax,this.ay,this.arotation,this.ascaleX,this.ascaleY,this.ashearX,this.ashearY)}updateWorldTransform(){this.updateWorldTransformWith(this.x,this.y,this.rotation,this.scaleX,this.scaleY,this.shearX,this.shearY)}updateWorldTransformWith(e,t,i,s,n,h,a){this.ax=e,this.ay=t,this.arotation=i,this.ascaleX=s,this.ascaleY=n,this.ashearX=h,this.ashearY=a;let r=this.parent;if(!r){let d=this.skeleton;const u=d.scaleX,m=d.scaleY,g=(i+h)*L.degRad,b=(i+90+a)*L.degRad;this.a=Math.cos(g)*s*u,this.b=Math.cos(b)*n*u,this.c=Math.sin(g)*s*m,this.d=Math.sin(b)*n*m,this.worldX=e*u+d.x,this.worldY=t*m+d.y;return}let o=r.a,l=r.b,c=r.c,f=r.d;switch(this.worldX=o*e+l*t+r.worldX,this.worldY=c*e+f*t+r.worldY,this.inherit){case 0:{const d=(i+h)*L.degRad,u=(i+90+a)*L.degRad,m=Math.cos(d)*s,g=Math.cos(u)*n,b=Math.sin(d)*s,w=Math.sin(u)*n;this.a=o*m+l*b,this.b=o*g+l*w,this.c=c*m+f*b,this.d=c*g+f*w;return}case 1:{const d=(i+h)*L.degRad,u=(i+90+a)*L.degRad;this.a=Math.cos(d)*s,this.b=Math.cos(u)*n,this.c=Math.sin(d)*s,this.d=Math.sin(u)*n;break}case 2:{let d=1/this.skeleton.scaleX,u=1/this.skeleton.scaleY;o*=d,c*=u;let m=o*o+c*c,g=0;m>1e-4?(m=Math.abs(o*f*u-l*d*c)/m,l=c*m,f=o*m,g=Math.atan2(c,o)*L.radDeg):(o=0,c=0,g=90-Math.atan2(f,l)*L.radDeg);const b=(i+h-g)*L.degRad,w=(i+a-g+90)*L.degRad,x=Math.cos(b)*s,p=Math.cos(w)*n,y=Math.sin(b)*s,v=Math.sin(w)*n;this.a=o*x-l*y,this.b=o*p-l*v,this.c=c*x+f*y,this.d=c*p+f*v;break}case 3:case 4:{i*=L.degRad;const d=Math.cos(i),u=Math.sin(i);let m=(o*d+l*u)/this.skeleton.scaleX,g=(c*d+f*u)/this.skeleton.scaleY,b=Math.sqrt(m*m+g*g);b>1e-5&&(b=1/b),m*=b,g*=b,b=Math.sqrt(m*m+g*g),this.inherit==3&&o*f-l*c<0!=(this.skeleton.scaleX<0!=this.skeleton.scaleY<0)&&(b=-b),i=Math.PI/2+Math.atan2(g,m);const w=Math.cos(i)*b,x=Math.sin(i)*b;h*=L.degRad,a=(90+a)*L.degRad;const p=Math.cos(h)*s,y=Math.cos(a)*n,v=Math.sin(h)*s,A=Math.sin(a)*n;this.a=m*p+w*v,this.b=m*y+w*A,this.c=g*p+x*v,this.d=g*y+x*A;break}}this.a*=this.skeleton.scaleX,this.b*=this.skeleton.scaleX,this.c*=this.skeleton.scaleY,this.d*=this.skeleton.scaleY}setToSetupPose(){let e=this.data;this.x=e.x,this.y=e.y,this.rotation=e.rotation,this.scaleX=e.scaleX,this.scaleY=e.scaleY,this.shearX=e.shearX,this.shearY=e.shearY,this.inherit=e.inherit}updateAppliedTransform(){let e=this.parent;if(!e){this.ax=this.worldX-this.skeleton.x,this.ay=this.worldY-this.skeleton.y,this.arotation=Math.atan2(this.c,this.a)*L.radDeg,this.ascaleX=Math.sqrt(this.a*this.a+this.c*this.c),this.ascaleY=Math.sqrt(this.b*this.b+this.d*this.d),this.ashearX=0,this.ashearY=Math.atan2(this.a*this.b+this.c*this.d,this.a*this.d-this.b*this.c)*L.radDeg;return}let t=e.a,i=e.b,s=e.c,n=e.d,h=1/(t*n-i*s),a=n*h,r=i*h,o=s*h,l=t*h,c=this.worldX-e.worldX,f=this.worldY-e.worldY;this.ax=c*a-f*r,this.ay=f*l-c*o;let d,u,m,g;if(this.inherit==1)d=this.a,u=this.b,m=this.c,g=this.d;else{switch(this.inherit){case 2:{let y=Math.abs(t*n-i*s)/(t*t+s*s);i=-s*this.skeleton.scaleX*y/this.skeleton.scaleY,n=t*this.skeleton.scaleY*y/this.skeleton.scaleX,h=1/(t*n-i*s),a=n*h,r=i*h;break}case 3:case 4:let b=L.cosDeg(this.rotation),w=L.sinDeg(this.rotation);t=(t*b+i*w)/this.skeleton.scaleX,s=(s*b+n*w)/this.skeleton.scaleY;let x=Math.sqrt(t*t+s*s);x>1e-5&&(x=1/x),t*=x,s*=x,x=Math.sqrt(t*t+s*s),this.inherit==3&&h<0!=(this.skeleton.scaleX<0!=this.skeleton.scaleY<0)&&(x=-x);let p=L.PI/2+Math.atan2(s,t);i=Math.cos(p)*x,n=Math.sin(p)*x,h=1/(t*n-i*s),a=n*h,r=i*h,o=s*h,l=t*h}d=a*this.a-r*this.c,u=a*this.b-r*this.d,m=l*this.c-o*this.a,g=l*this.d-o*this.b}if(this.ashearX=0,this.ascaleX=Math.sqrt(d*d+m*m),this.ascaleX>1e-4){let b=d*g-u*m;this.ascaleY=b/this.ascaleX,this.ashearY=-Math.atan2(d*u+m*g,b)*L.radDeg,this.arotation=Math.atan2(m,d)*L.radDeg}else this.ascaleX=0,this.ascaleY=Math.sqrt(u*u+g*g),this.ashearY=0,this.arotation=90-Math.atan2(g,u)*L.radDeg}getWorldRotationX(){return Math.atan2(this.c,this.a)*L.radDeg}getWorldRotationY(){return Math.atan2(this.d,this.b)*L.radDeg}getWorldScaleX(){return Math.sqrt(this.a*this.a+this.c*this.c)}getWorldScaleY(){return Math.sqrt(this.b*this.b+this.d*this.d)}worldToLocal(e){let t=1/(this.a*this.d-this.b*this.c),i=e.x-this.worldX,s=e.y-this.worldY;return e.x=i*this.d*t-s*this.b*t,e.y=s*this.a*t-i*this.c*t,e}localToWorld(e){let t=e.x,i=e.y;return e.x=t*this.a+i*this.b+this.worldX,e.y=t*this.c+i*this.d+this.worldY,e}worldToParent(e){if(e==null)throw new Error("world cannot be null.");return this.parent==null?e:this.parent.worldToLocal(e)}parentToWorld(e){if(e==null)throw new Error("world cannot be null.");return this.parent==null?e:this.parent.localToWorld(e)}worldToLocalRotation(e){let t=L.sinDeg(e),i=L.cosDeg(e);return Math.atan2(this.a*t-this.c*i,this.d*i-this.b*t)*L.radDeg+this.rotation-this.shearX}localToWorldRotation(e){e-=this.rotation-this.shearX;let t=L.sinDeg(e),i=L.cosDeg(e);return Math.atan2(i*this.c+t*this.d,i*this.a+t*this.b)*L.radDeg}rotateWorld(e){e*=L.degRad;const t=Math.sin(e),i=Math.cos(e),s=this.a,n=this.b;this.a=i*s-t*this.c,this.b=i*n-t*this.d,this.c=t*s+i*this.c,this.d=t*n+i*this.d}},dt=class{constructor(e,t,i){this.name=e,this.order=t,this.skinRequired=i}},ws=class{pathPrefix="";textureLoader;downloader;assets={};errors={};toLoad=0;loaded=0;constructor(e,t="",i=new Ei){this.textureLoader=e,this.pathPrefix=t,this.downloader=i}start(e){return this.toLoad++,this.pathPrefix+e}success(e,t,i){this.toLoad--,this.loaded++,this.assets[t]=i,e&&e(t,i)}error(e,t,i){this.toLoad--,this.loaded++,this.errors[t]=i,e&&e(t,i)}loadAll(){return new Promise((t,i)=>{let s=()=>{if(this.isLoadingComplete()){this.hasErrors()?i(this.errors):t(this);return}requestAnimationFrame(s)};requestAnimationFrame(s)})}setRawDataURI(e,t){this.downloader.rawDataUris[this.pathPrefix+e]=t}loadBinary(e,t=()=>{},i=()=>{}){e=this.start(e),this.downloader.downloadBinary(e,s=>{this.success(t,e,s)},(s,n)=>{this.error(i,e,`Couldn't load binary ${e}: status ${s}, ${n}`)})}loadText(e,t=()=>{},i=()=>{}){e=this.start(e),this.downloader.downloadText(e,s=>{this.success(t,e,s)},(s,n)=>{this.error(i,e,`Couldn't load text ${e}: status ${s}, ${n}`)})}loadJson(e,t=()=>{},i=()=>{}){e=this.start(e),this.downloader.downloadJson(e,s=>{this.success(t,e,s)},(s,n)=>{this.error(i,e,`Couldn't load JSON ${e}: status ${s}, ${n}`)})}loadTexture(e,t=()=>{},i=()=>{}){if(e=this.start(e),!!!(typeof window<"u"&&typeof navigator<"u"&&window.document))fetch(e,{mode:"cors"}).then(h=>h.ok?h.blob():(this.error(i,e,`Couldn't load image: ${e}`),null)).then(h=>h?createImageBitmap(h,{premultiplyAlpha:"none",colorSpaceConversion:"none"}):null).then(h=>{h&&this.success(t,e,this.textureLoader(h))});else{let h=new Image;h.crossOrigin="anonymous",h.onload=()=>{this.success(t,e,this.textureLoader(h))},h.onerror=()=>{this.error(i,e,`Couldn't load image: ${e}`)},this.downloader.rawDataUris[e]&&(e=this.downloader.rawDataUris[e]),h.src=e}}loadTextureAtlas(e,t=()=>{},i=()=>{},s){let n=e.lastIndexOf("/"),h=n>=0?e.substring(0,n+1):"";e=this.start(e),this.downloader.downloadText(e,a=>{try{let r=new gs(a),o=r.pages.length,l=!1;for(let c of r.pages)this.loadTexture(s?s[c.name]:h+c.name,(f,d)=>{l||(c.setTexture(d),--o==0&&this.success(t,e,r))},(f,d)=>{l||this.error(i,e,`Couldn't load texture atlas ${e} page image: ${f}`),l=!0})}catch(r){this.error(i,e,`Couldn't parse texture atlas ${e}: ${r.message}`)}},(a,r)=>{this.error(i,e,`Couldn't load texture atlas ${e}: status ${a}, ${r}`)})}get(e){return this.assets[this.pathPrefix+e]}require(e){e=this.pathPrefix+e;let t=this.assets[e];if(t)return t;let i=this.errors[e];throw Error("Asset not found: "+e+(i?`
2
2
  `+i:""))}remove(e){e=this.pathPrefix+e;let t=this.assets[e];return t.dispose&&t.dispose(),delete this.assets[e],t}removeAll(){for(let e in this.assets){let t=this.assets[e];t.dispose&&t.dispose()}this.assets={}}isLoadingComplete(){return this.toLoad==0}getToLoad(){return this.toLoad}getLoaded(){return this.loaded}dispose(){this.removeAll()}hasErrors(){return Object.keys(this.errors).length>0}getErrors(){return this.errors}},Ei=class{callbacks={};rawDataUris={};dataUriToString(e){if(!e.startsWith("data:"))throw new Error("Not a data URI.");let t=e.indexOf("base64,");return t!=-1?(t+=7,atob(e.substr(t))):e.substr(e.indexOf(",")+1)}base64ToUint8Array(e){for(var t=window.atob(e),i=t.length,s=new Uint8Array(i),n=0;n<i;n++)s[n]=t.charCodeAt(n);return s}dataUriToUint8Array(e){if(!e.startsWith("data:"))throw new Error("Not a data URI.");let t=e.indexOf("base64,");if(t==-1)throw new Error("Not a binary data URI.");return t+=7,this.base64ToUint8Array(e.substr(t))}downloadText(e,t,i){if(this.start(e,t,i))return;if(this.rawDataUris[e]){try{let h=this.rawDataUris[e];this.finish(e,200,this.dataUriToString(h))}catch(h){this.finish(e,400,JSON.stringify(h))}return}let s=new XMLHttpRequest;s.overrideMimeType("text/html"),s.open("GET",e,!0);let n=()=>{this.finish(e,s.status,s.responseText)};s.onload=n,s.onerror=n,s.send()}downloadJson(e,t,i){this.downloadText(e,s=>{t(JSON.parse(s))},i)}downloadBinary(e,t,i){if(this.start(e,t,i))return;if(this.rawDataUris[e]){try{let h=this.rawDataUris[e];this.finish(e,200,this.dataUriToUint8Array(h))}catch(h){this.finish(e,400,JSON.stringify(h))}return}let s=new XMLHttpRequest;s.open("GET",e,!0),s.responseType="arraybuffer";let n=()=>{this.finish(e,s.status,s.response)};s.onload=()=>{s.status==200||s.status==0?this.finish(e,200,new Uint8Array(s.response)):n()},s.onerror=n,s.send()}start(e,t,i){let s=this.callbacks[e];try{if(s)return!0;this.callbacks[e]=s=[]}finally{s.push(t,i)}}finish(e,t,i){let s=this.callbacks[e];delete this.callbacks[e];let n=t==200||t==0?[i]:[t,i];for(let h=n.length-1,a=s.length;h<a;h+=2)s[h].apply(null,n)}},Yi=class{data;intValue=0;floatValue=0;stringValue=null;time=0;volume=0;balance=0;constructor(e,t){if(!t)throw new Error("data cannot be null.");this.time=e,this.data=t}},Ri=class{name;intValue=0;floatValue=0;stringValue=null;audioPath=null;volume=0;balance=0;constructor(e){this.name=e}},bs=class{data;bones;target;bendDirection=0;compress=!1;stretch=!1;mix=1;softness=0;active=!1;constructor(e,t){if(!e)throw new Error("data cannot be null.");if(!t)throw new Error("skeleton cannot be null.");this.data=e,this.bones=new Array;for(let s=0;s<e.bones.length;s++){let n=t.findBone(e.bones[s].name);if(!n)throw new Error(`Couldn't find bone ${e.bones[s].name}`);this.bones.push(n)}let i=t.findBone(e.target.name);if(!i)throw new Error(`Couldn't find bone ${e.target.name}`);this.target=i,this.mix=e.mix,this.softness=e.softness,this.bendDirection=e.bendDirection,this.compress=e.compress,this.stretch=e.stretch}isActive(){return this.active}setToSetupPose(){const e=this.data;this.mix=e.mix,this.softness=e.softness,this.bendDirection=e.bendDirection,this.compress=e.compress,this.stretch=e.stretch}update(e){if(this.mix==0)return;let t=this.target,i=this.bones;switch(i.length){case 1:this.apply1(i[0],t.worldX,t.worldY,this.compress,this.stretch,this.data.uniform,this.mix);break;case 2:this.apply2(i[0],i[1],t.worldX,t.worldY,this.bendDirection,this.stretch,this.data.uniform,this.softness,this.mix);break}}apply1(e,t,i,s,n,h,a){let r=e.parent;if(!r)throw new Error("IK bone must have parent.");let o=r.a,l=r.b,c=r.c,f=r.d,d=-e.ashearX-e.arotation,u=0,m=0;switch(e.inherit){case 1:u=(t-e.worldX)*L.signum(e.skeleton.scaleX),m=(i-e.worldY)*L.signum(e.skeleton.scaleY);break;case 2:let w=Math.abs(o*f-l*c)/Math.max(1e-4,o*o+c*c),x=o/e.skeleton.scaleX,p=c/e.skeleton.scaleY;l=-p*w*e.skeleton.scaleX,f=x*w*e.skeleton.scaleY,d+=Math.atan2(p,x)*L.radDeg;default:let y=t-r.worldX,v=i-r.worldY,A=o*f-l*c;Math.abs(A)<=1e-4?(u=0,m=0):(u=(y*f-v*l)/A-e.ax,m=(v*o-y*c)/A-e.ay)}d+=Math.atan2(m,u)*L.radDeg,e.ascaleX<0&&(d+=180),d>180?d-=360:d<-180&&(d+=360);let g=e.ascaleX,b=e.ascaleY;if(s||n){switch(e.inherit){case 3:case 4:u=t-e.worldX,m=i-e.worldY}const w=e.data.length*g;if(w>1e-4){const x=u*u+m*m;if(s&&x<w*w||n&&x>w*w){const p=(Math.sqrt(x)/w-1)*a+1;g*=p,h&&(b*=p)}}}e.updateWorldTransformWith(e.ax,e.ay,e.arotation+d*a,g,b,e.ashearX,e.ashearY)}apply2(e,t,i,s,n,h,a,r,o){if(e.inherit!=0||t.inherit!=0)return;let l=e.ax,c=e.ay,f=e.ascaleX,d=e.ascaleY,u=f,m=d,g=t.ascaleX,b=0,w=0,x=0;f<0?(f=-f,b=180,x=-1):(b=0,x=1),d<0&&(d=-d,x=-x),g<0?(g=-g,w=180):w=0;let p=t.ax,y=0,v=0,A=0,C=e.a,S=e.b,E=e.c,Y=e.d,k=Math.abs(f-d)<=1e-4;!k||h?(y=0,v=C*p+e.worldX,A=E*p+e.worldY):(y=t.ay,v=C*p+S*y+e.worldX,A=E*p+Y*y+e.worldY);let X=e.parent;if(!X)throw new Error("IK parent must itself have a parent.");C=X.a,S=X.b,E=X.c,Y=X.d;let T=C*Y-S*E,R=v-X.worldX,F=A-X.worldY;T=Math.abs(T)<=1e-4?0:1/T;let ie=(R*Y-F*S)*T-l,se=(F*C-R*E)*T-c,te=Math.sqrt(ie*ie+se*se),he=t.data.length*g,de,fe;if(te<1e-4){this.apply1(e,i,s,!1,h,!1,o),t.updateWorldTransformWith(p,y,0,t.ascaleX,t.ascaleY,t.ashearX,t.ashearY);return}R=i-X.worldX,F=s-X.worldY;let W=(R*Y-F*S)*T-l,ne=(F*C-R*E)*T-c,ae=W*W+ne*ne;if(r!=0){r*=f*(g+1)*.5;let ge=Math.sqrt(ae),pe=ge-te-he*f+r;if(pe>0){let we=Math.min(1,pe/(r*2))-1;we=(pe-r*(1-we*we))/ge,W-=we*W,ne-=we*ne,ae=W*W+ne*ne}}e:if(k){he*=f;let ge=(ae-te*te-he*he)/(2*te*he);ge<-1?(ge=-1,fe=Math.PI*n):ge>1?(ge=1,fe=0,h&&(C=(Math.sqrt(ae)/(te+he)-1)*o+1,u*=C,a&&(m*=C))):fe=Math.acos(ge)*n,C=te+he*ge,S=he*Math.sin(fe),de=Math.atan2(ne*C-W*S,W*C+ne*S)}else{C=f*he,S=d*he;let ge=C*C,pe=S*S,we=Math.atan2(ne,W);E=pe*te*te+ge*ae-ge*pe;let Ve=-2*pe*te,nt=pe-ge;if(Y=Ve*Ve-4*nt*E,Y>=0){let Je=Math.sqrt(Y);Ve<0&&(Je=-Je),Je=-(Ve+Je)*.5;let at=Je/nt,Ji=E/Je,xt=Math.abs(at)<Math.abs(Ji)?at:Ji;if(at=ae-xt*xt,at>=0){F=Math.sqrt(at)*n,de=we-Math.atan2(F,xt),fe=Math.atan2(F/d,(xt-te)/f);break e}}let Hi=L.PI,mt=te-C,Nt=mt*mt,ji=0,Zi=0,gt=te+C,Ut=gt*gt,Ki=0;E=-C*te/(ge-pe),E>=-1&&E<=1&&(E=Math.acos(E),R=C*Math.cos(E)+te,F=S*Math.sin(E),Y=R*R+F*F,Y<Nt&&(Hi=E,Nt=Y,mt=R,ji=F),Y>Ut&&(Zi=E,Ut=Y,gt=R,Ki=F)),ae<=(Nt+Ut)*.5?(de=we-Math.atan2(ji*n,mt),fe=Hi*n):(de=we-Math.atan2(Ki*n,gt),fe=Zi*n)}let Ie=Math.atan2(y,p)*x,Ae=e.arotation;de=(de-Ie)*L.radDeg+b-Ae,de>180?de-=360:de<-180&&(de+=360),e.updateWorldTransformWith(l,c,Ae+de*o,u,m,0,0),Ae=t.arotation,fe=((fe+Ie)*L.radDeg-t.ashearX)*x+w-Ae,fe>180?fe-=360:fe<-180&&(fe+=360),t.updateWorldTransformWith(p,y,Ae+fe*o,t.ascaleX,t.ascaleY,t.ashearX,t.ashearY)}},ki=class extends dt{bones=new Array;_target=null;set target(e){this._target=e}get target(){if(this._target)return this._target;throw new Error("BoneData not set.")}bendDirection=0;compress=!1;stretch=!1;uniform=!1;mix=0;softness=0;constructor(e){super(e,0,!1)}},Fi=class extends dt{bones=new Array;_target=null;set target(e){this._target=e}get target(){if(this._target)return this._target;throw new Error("SlotData not set.")}positionMode=Tt.Fixed;spacingMode=Mt.Fixed;rotateMode=Et.Chain;offsetRotation=0;position=0;spacing=0;mixRotate=0;mixX=0;mixY=0;constructor(e){super(e,0,!1)}},Tt=(e=>(e[e.Fixed=0]="Fixed",e[e.Percent=1]="Percent",e))(Tt||{}),Mt=(e=>(e[e.Length=0]="Length",e[e.Fixed=1]="Fixed",e[e.Percent=2]="Percent",e[e.Proportional=3]="Proportional",e))(Mt||{}),Et=(e=>(e[e.Tangent=0]="Tangent",e[e.Chain=1]="Chain",e[e.ChainScale=2]="ChainScale",e))(Et||{}),Ue=class{data;bones;target;position=0;spacing=0;mixRotate=0;mixX=0;mixY=0;spaces=new Array;positions=new Array;world=new Array;curves=new Array;lengths=new Array;segments=new Array;active=!1;constructor(e,t){if(!e)throw new Error("data cannot be null.");if(!t)throw new Error("skeleton cannot be null.");this.data=e,this.bones=new Array;for(let s=0,n=e.bones.length;s<n;s++){let h=t.findBone(e.bones[s].name);if(!h)throw new Error(`Couldn't find bone ${e.bones[s].name}.`);this.bones.push(h)}let i=t.findSlot(e.target.name);if(!i)throw new Error(`Couldn't find target bone ${e.target.name}`);this.target=i,this.position=e.position,this.spacing=e.spacing,this.mixRotate=e.mixRotate,this.mixX=e.mixX,this.mixY=e.mixY}isActive(){return this.active}setToSetupPose(){const e=this.data;this.position=e.position,this.spacing=e.spacing,this.mixRotate=e.mixRotate,this.mixX=e.mixX,this.mixY=e.mixY}update(e){let t=this.target.getAttachment();if(!(t instanceof He))return;let i=this.mixRotate,s=this.mixX,n=this.mixY;if(i==0&&s==0&&n==0)return;let h=this.data,a=h.rotateMode==0,r=h.rotateMode==2,o=this.bones,l=o.length,c=a?l:l+1,f=P.setArraySize(this.spaces,c),d=r?this.lengths=P.setArraySize(this.lengths,l):[],u=this.spacing;switch(h.spacingMode){case 2:if(r)for(let v=0,A=c-1;v<A;v++){let C=o[v],S=C.data.length,E=S*C.a,Y=S*C.c;d[v]=Math.sqrt(E*E+Y*Y)}P.arrayFill(f,1,c,u);break;case 3:let p=0;for(let v=0,A=c-1;v<A;){let C=o[v],S=C.data.length;if(S<Ue.epsilon)r&&(d[v]=0),f[++v]=u;else{let E=S*C.a,Y=S*C.c,k=Math.sqrt(E*E+Y*Y);r&&(d[v]=k),f[++v]=k,p+=k}}if(p>0){p=c/p*u;for(let v=1;v<c;v++)f[v]*=p}break;default:let y=h.spacingMode==0;for(let v=0,A=c-1;v<A;){let C=o[v],S=C.data.length;if(S<Ue.epsilon)r&&(d[v]=0),f[++v]=u;else{let E=S*C.a,Y=S*C.c,k=Math.sqrt(E*E+Y*Y);r&&(d[v]=k),f[++v]=(y?S+u:u)*k/S}}}let m=this.computeWorldPositions(t,c,a),g=m[0],b=m[1],w=h.offsetRotation,x=!1;if(w==0)x=h.rotateMode==1;else{x=!1;let p=this.target.bone;w*=p.a*p.d-p.b*p.c>0?L.degRad:-L.degRad}for(let p=0,y=3;p<l;p++,y+=3){let v=o[p];v.worldX+=(g-v.worldX)*s,v.worldY+=(b-v.worldY)*n;let A=m[y],C=m[y+1],S=A-g,E=C-b;if(r){let Y=d[p];if(Y!=0){let k=(Math.sqrt(S*S+E*E)/Y-1)*i+1;v.a*=k,v.c*=k}}if(g=A,b=C,i>0){let Y=v.a,k=v.b,X=v.c,T=v.d,R=0,F=0,ie=0;if(a?R=m[y-1]:f[p+1]==0?R=m[y+2]:R=Math.atan2(E,S),R-=Math.atan2(X,Y),x){F=Math.cos(R),ie=Math.sin(R);let se=v.data.length;g+=(se*(F*Y-ie*X)-S)*i,b+=(se*(ie*Y+F*X)-E)*i}else R+=w;R>L.PI?R-=L.PI2:R<-L.PI&&(R+=L.PI2),R*=i,F=Math.cos(R),ie=Math.sin(R),v.a=F*Y-ie*X,v.b=F*k-ie*T,v.c=ie*Y+F*X,v.d=ie*k+F*T}v.updateAppliedTransform()}}computeWorldPositions(e,t,i){let s=this.target,n=this.position,h=this.spaces,a=P.setArraySize(this.positions,t*3+2),r=this.world,o=e.closed,l=e.worldVerticesLength,c=l/6,f=Ue.NONE;if(!e.constantSpeed){let se=e.lengths;c-=o?1:2;let te=se[c];this.data.positionMode==1&&(n*=te);let he;switch(this.data.spacingMode){case 2:he=te;break;case 3:he=te/t;break;default:he=1}r=P.setArraySize(this.world,8);for(let de=0,fe=0,W=0;de<t;de++,fe+=3){let ne=h[de]*he;n+=ne;let ae=n;if(o)ae%=te,ae<0&&(ae+=te),W=0;else if(ae<0){f!=Ue.BEFORE&&(f=Ue.BEFORE,e.computeWorldVertices(s,2,4,r,0,2)),this.addBeforePosition(ae,r,0,a,fe);continue}else if(ae>te){f!=Ue.AFTER&&(f=Ue.AFTER,e.computeWorldVertices(s,l-6,4,r,0,2)),this.addAfterPosition(ae-te,r,0,a,fe);continue}for(;;W++){let Ie=se[W];if(!(ae>Ie)){if(W==0)ae/=Ie;else{let Ae=se[W-1];ae=(ae-Ae)/(Ie-Ae)}break}}W!=f&&(f=W,o&&W==c?(e.computeWorldVertices(s,l-4,4,r,0,2),e.computeWorldVertices(s,0,4,r,4,2)):e.computeWorldVertices(s,W*6+2,8,r,0,2)),this.addCurvePosition(ae,r[0],r[1],r[2],r[3],r[4],r[5],r[6],r[7],a,fe,i||de>0&&ne==0)}return a}o?(l+=2,r=P.setArraySize(this.world,l),e.computeWorldVertices(s,2,l-4,r,0,2),e.computeWorldVertices(s,0,2,r,l-4,2),r[l-2]=r[0],r[l-1]=r[1]):(c--,l-=4,r=P.setArraySize(this.world,l),e.computeWorldVertices(s,2,l,r,0,2));let d=P.setArraySize(this.curves,c),u=0,m=r[0],g=r[1],b=0,w=0,x=0,p=0,y=0,v=0,A=0,C=0,S=0,E=0,Y=0,k=0,X=0,T=0;for(let se=0,te=2;se<c;se++,te+=6)b=r[te],w=r[te+1],x=r[te+2],p=r[te+3],y=r[te+4],v=r[te+5],A=(m-b*2+x)*.1875,C=(g-w*2+p)*.1875,S=((b-x)*3-m+y)*.09375,E=((w-p)*3-g+v)*.09375,Y=A*2+S,k=C*2+E,X=(b-m)*.75+A+S*.16666667,T=(w-g)*.75+C+E*.16666667,u+=Math.sqrt(X*X+T*T),X+=Y,T+=k,Y+=S,k+=E,u+=Math.sqrt(X*X+T*T),X+=Y,T+=k,u+=Math.sqrt(X*X+T*T),X+=Y+S,T+=k+E,u+=Math.sqrt(X*X+T*T),d[se]=u,m=y,g=v;this.data.positionMode==1&&(n*=u);let R;switch(this.data.spacingMode){case 2:R=u;break;case 3:R=u/t;break;default:R=1}let F=this.segments,ie=0;for(let se=0,te=0,he=0,de=0;se<t;se++,te+=3){let fe=h[se]*R;n+=fe;let W=n;if(o)W%=u,W<0&&(W+=u),he=0;else if(W<0){this.addBeforePosition(W,r,0,a,te);continue}else if(W>u){this.addAfterPosition(W-u,r,l-4,a,te);continue}for(;;he++){let ne=d[he];if(!(W>ne)){if(he==0)W/=ne;else{let ae=d[he-1];W=(W-ae)/(ne-ae)}break}}if(he!=f){f=he;let ne=he*6;for(m=r[ne],g=r[ne+1],b=r[ne+2],w=r[ne+3],x=r[ne+4],p=r[ne+5],y=r[ne+6],v=r[ne+7],A=(m-b*2+x)*.03,C=(g-w*2+p)*.03,S=((b-x)*3-m+y)*.006,E=((w-p)*3-g+v)*.006,Y=A*2+S,k=C*2+E,X=(b-m)*.3+A+S*.16666667,T=(w-g)*.3+C+E*.16666667,ie=Math.sqrt(X*X+T*T),F[0]=ie,ne=1;ne<8;ne++)X+=Y,T+=k,Y+=S,k+=E,ie+=Math.sqrt(X*X+T*T),F[ne]=ie;X+=Y,T+=k,ie+=Math.sqrt(X*X+T*T),F[8]=ie,X+=Y+S,T+=k+E,ie+=Math.sqrt(X*X+T*T),F[9]=ie,de=0}for(W*=ie;;de++){let ne=F[de];if(!(W>ne)){if(de==0)W/=ne;else{let ae=F[de-1];W=de+(W-ae)/(ne-ae)}break}}this.addCurvePosition(W*.1,m,g,b,w,x,p,y,v,a,te,i||se>0&&fe==0)}return a}addBeforePosition(e,t,i,s,n){let h=t[i],a=t[i+1],r=t[i+2]-h,o=t[i+3]-a,l=Math.atan2(o,r);s[n]=h+e*Math.cos(l),s[n+1]=a+e*Math.sin(l),s[n+2]=l}addAfterPosition(e,t,i,s,n){let h=t[i+2],a=t[i+3],r=h-t[i],o=a-t[i+1],l=Math.atan2(o,r);s[n]=h+e*Math.cos(l),s[n+1]=a+e*Math.sin(l),s[n+2]=l}addCurvePosition(e,t,i,s,n,h,a,r,o,l,c,f){if(e==0||isNaN(e)){l[c]=t,l[c+1]=i,l[c+2]=Math.atan2(n-i,s-t);return}let d=e*e,u=d*e,m=1-e,g=m*m,b=g*m,w=m*e,x=w*3,p=m*x,y=x*e,v=t*b+s*p+h*y+r*u,A=i*b+n*p+a*y+o*u;l[c]=v,l[c+1]=A,f&&(e<.001?l[c+2]=Math.atan2(n-i,s-t):l[c+2]=Math.atan2(A-(i*g+n*w*2+a*d),v-(t*g+s*w*2+h*d)))}},tt=Ue;B(tt,"NONE",-1),B(tt,"BEFORE",-2),B(tt,"AFTER",-3),B(tt,"epsilon",1e-5);var Zs=class{data;_bone=null;set bone(e){this._bone=e}get bone(){if(this._bone)return this._bone;throw new Error("Bone not set.")}inertia=0;strength=0;damping=0;massInverse=0;wind=0;gravity=0;mix=0;_reset=!0;ux=0;uy=0;cx=0;cy=0;tx=0;ty=0;xOffset=0;xVelocity=0;yOffset=0;yVelocity=0;rotateOffset=0;rotateVelocity=0;scaleOffset=0;scaleVelocity=0;active=!1;skeleton;remaining=0;lastTime=0;constructor(e,t){this.data=e,this.skeleton=t,this.bone=t.bones[e.bone.index],this.inertia=e.inertia,this.strength=e.strength,this.damping=e.damping,this.massInverse=e.massInverse,this.wind=e.wind,this.gravity=e.gravity,this.mix=e.mix}reset(){this.remaining=0,this.lastTime=this.skeleton.time,this._reset=!0,this.xOffset=0,this.xVelocity=0,this.yOffset=0,this.yVelocity=0,this.rotateOffset=0,this.rotateVelocity=0,this.scaleOffset=0,this.scaleVelocity=0}setToSetupPose(){const e=this.data;this.inertia=e.inertia,this.strength=e.strength,this.damping=e.damping,this.massInverse=e.massInverse,this.wind=e.wind,this.gravity=e.gravity,this.mix=e.mix}isActive(){return this.active}update(e){const t=this.mix;if(t==0)return;const i=this.data.x>0,s=this.data.y>0,n=this.data.rotate>0||this.data.shearX>0,h=this.data.scaleX>0,a=this.bone,r=a.data.length;switch(e){case 0:return;case 1:this.reset();case 2:const o=this.skeleton,l=Math.max(this.skeleton.time-this.lastTime,0);this.remaining+=l,this.lastTime=o.time;const c=a.worldX,f=a.worldY;if(this._reset)this._reset=!1,this.ux=c,this.uy=f;else{let d=this.remaining,u=this.inertia,m=this.data.step,g=this.skeleton.data.referenceScale,b=-1,w=this.data.limit*l,x=w*Math.abs(o.scaleY);if(w*=Math.abs(o.scaleX),i||s){if(i){const p=(this.ux-c)*u;this.xOffset+=p>w?w:p<-w?-w:p,this.ux=c}if(s){const p=(this.uy-f)*u;this.yOffset+=p>x?x:p<-x?-x:p,this.uy=f}if(d>=m){b=Math.pow(this.damping,60*m);const p=this.massInverse*m,y=this.strength,v=this.wind*g*o.scaleX,A=this.gravity*g*o.scaleY;do i&&(this.xVelocity+=(v-this.xOffset*y)*p,this.xOffset+=this.xVelocity*m,this.xVelocity*=b),s&&(this.yVelocity-=(A+this.yOffset*y)*p,this.yOffset+=this.yVelocity*m,this.yVelocity*=b),d-=m;while(d>=m)}i&&(a.worldX+=this.xOffset*t*this.data.x),s&&(a.worldY+=this.yOffset*t*this.data.y)}if(n||h){let p=Math.atan2(a.c,a.a),y=0,v=0,A=0,C=this.cx-a.worldX,S=this.cy-a.worldY;if(C>w?C=w:C<-w&&(C=-w),S>x?S=x:S<-x&&(S=-x),n){A=(this.data.rotate+this.data.shearX)*t;let E=Math.atan2(S+this.ty,C+this.tx)-p-this.rotateOffset*A;this.rotateOffset+=(E-Math.ceil(E*L.invPI2-.5)*L.PI2)*u,E=this.rotateOffset*A+p,y=Math.cos(E),v=Math.sin(E),h&&(E=r*a.getWorldScaleX(),E>0&&(this.scaleOffset+=(C*y+S*v)*u/E))}else{y=Math.cos(p),v=Math.sin(p);const E=r*a.getWorldScaleX();E>0&&(this.scaleOffset+=(C*y+S*v)*u/E)}if(d=this.remaining,d>=m){b==-1&&(b=Math.pow(this.damping,60*m));const E=this.massInverse*m,Y=this.strength,k=this.wind,X=Yt.yDown?-this.gravity:this.gravity,T=r/g;for(;;)if(d-=m,h&&(this.scaleVelocity+=(k*y-X*v-this.scaleOffset*Y)*E,this.scaleOffset+=this.scaleVelocity*m,this.scaleVelocity*=b),n){if(this.rotateVelocity-=((k*v+X*y)*T+this.rotateOffset*Y)*E,this.rotateOffset+=this.rotateVelocity*m,this.rotateVelocity*=b,d<m)break;const R=this.rotateOffset*A+p;y=Math.cos(R),v=Math.sin(R)}else if(d<m)break}}this.remaining=d}this.cx=a.worldX,this.cy=a.worldY;break;case 3:i&&(a.worldX+=this.xOffset*t*this.data.x),s&&(a.worldY+=this.yOffset*t*this.data.y)}if(n){let o=this.rotateOffset*t,l=0,c=0,f=0;if(this.data.shearX>0){let d=0;this.data.rotate>0&&(d=o*this.data.rotate,l=Math.sin(d),c=Math.cos(d),f=a.b,a.b=c*f-l*a.d,a.d=l*f+c*a.d),d+=o*this.data.shearX,l=Math.sin(d),c=Math.cos(d),f=a.a,a.a=c*f-l*a.c,a.c=l*f+c*a.c}else o*=this.data.rotate,l=Math.sin(o),c=Math.cos(o),f=a.a,a.a=c*f-l*a.c,a.c=l*f+c*a.c,f=a.b,a.b=c*f-l*a.d,a.d=l*f+c*a.d}if(h){const o=1+this.scaleOffset*t*this.data.scaleX;a.a*=o,a.c*=o}e!=3&&(this.tx=r*a.a,this.ty=r*a.c),a.updateAppliedTransform()}translate(e,t){this.ux-=e,this.uy-=t,this.cx-=e,this.cy-=t}rotate(e,t,i){const s=i*L.degRad,n=Math.cos(s),h=Math.sin(s),a=this.cx-e,r=this.cy-t;this.translate(a*n-r*h-a,a*h+r*n-r)}},vs=class{data;bone;color;darkColor=null;attachment=null;attachmentState=0;sequenceIndex=-1;deform=new Array;constructor(e,t){if(!e)throw new Error("data cannot be null.");if(!t)throw new Error("bone cannot be null.");this.data=e,this.bone=t,this.color=new V,this.darkColor=e.darkColor?new V:null,this.setToSetupPose()}getSkeleton(){return this.bone.skeleton}getAttachment(){return this.attachment}setAttachment(e){this.attachment!=e&&((!(e instanceof Ye)||!(this.attachment instanceof Ye)||e.timelineAttachment!=this.attachment.timelineAttachment)&&(this.deform.length=0),this.attachment=e,this.sequenceIndex=-1)}setToSetupPose(){this.color.setFromColor(this.data.color),this.darkColor&&this.darkColor.setFromColor(this.data.darkColor),this.data.attachmentName?(this.attachment=null,this.setAttachment(this.bone.skeleton.getAttachment(this.data.index,this.data.attachmentName))):this.attachment=null}},ys=class{data;bones;target;mixRotate=0;mixX=0;mixY=0;mixScaleX=0;mixScaleY=0;mixShearY=0;temp=new We;active=!1;constructor(e,t){if(!e)throw new Error("data cannot be null.");if(!t)throw new Error("skeleton cannot be null.");this.data=e,this.bones=new Array;for(let s=0;s<e.bones.length;s++){let n=t.findBone(e.bones[s].name);if(!n)throw new Error(`Couldn't find bone ${e.bones[s].name}.`);this.bones.push(n)}let i=t.findBone(e.target.name);if(!i)throw new Error(`Couldn't find target bone ${e.target.name}.`);this.target=i,this.mixRotate=e.mixRotate,this.mixX=e.mixX,this.mixY=e.mixY,this.mixScaleX=e.mixScaleX,this.mixScaleY=e.mixScaleY,this.mixShearY=e.mixShearY}isActive(){return this.active}setToSetupPose(){const e=this.data;this.mixRotate=e.mixRotate,this.mixX=e.mixX,this.mixY=e.mixY,this.mixScaleX=e.mixScaleX,this.mixScaleY=e.mixScaleY,this.mixShearY=e.mixShearY}update(e){this.mixRotate==0&&this.mixX==0&&this.mixY==0&&this.mixScaleX==0&&this.mixScaleY==0&&this.mixShearY==0||(this.data.local?this.data.relative?this.applyRelativeLocal():this.applyAbsoluteLocal():this.data.relative?this.applyRelativeWorld():this.applyAbsoluteWorld())}applyAbsoluteWorld(){let e=this.mixRotate,t=this.mixX,i=this.mixY,s=this.mixScaleX,n=this.mixScaleY,h=this.mixShearY,a=t!=0||i!=0,r=this.target,o=r.a,l=r.b,c=r.c,f=r.d,d=o*f-l*c>0?L.degRad:-L.degRad,u=this.data.offsetRotation*d,m=this.data.offsetShearY*d,g=this.bones;for(let b=0,w=g.length;b<w;b++){let x=g[b];if(e!=0){let p=x.a,y=x.b,v=x.c,A=x.d,C=Math.atan2(c,o)-Math.atan2(v,p)+u;C>L.PI?C-=L.PI2:C<-L.PI&&(C+=L.PI2),C*=e;let S=Math.cos(C),E=Math.sin(C);x.a=S*p-E*v,x.b=S*y-E*A,x.c=E*p+S*v,x.d=E*y+S*A}if(a){let p=this.temp;r.localToWorld(p.set(this.data.offsetX,this.data.offsetY)),x.worldX+=(p.x-x.worldX)*t,x.worldY+=(p.y-x.worldY)*i}if(s!=0){let p=Math.sqrt(x.a*x.a+x.c*x.c);p!=0&&(p=(p+(Math.sqrt(o*o+c*c)-p+this.data.offsetScaleX)*s)/p),x.a*=p,x.c*=p}if(n!=0){let p=Math.sqrt(x.b*x.b+x.d*x.d);p!=0&&(p=(p+(Math.sqrt(l*l+f*f)-p+this.data.offsetScaleY)*n)/p),x.b*=p,x.d*=p}if(h>0){let p=x.b,y=x.d,v=Math.atan2(y,p),A=Math.atan2(f,l)-Math.atan2(c,o)-(v-Math.atan2(x.c,x.a));A>L.PI?A-=L.PI2:A<-L.PI&&(A+=L.PI2),A=v+(A+m)*h;let C=Math.sqrt(p*p+y*y);x.b=Math.cos(A)*C,x.d=Math.sin(A)*C}x.updateAppliedTransform()}}applyRelativeWorld(){let e=this.mixRotate,t=this.mixX,i=this.mixY,s=this.mixScaleX,n=this.mixScaleY,h=this.mixShearY,a=t!=0||i!=0,r=this.target,o=r.a,l=r.b,c=r.c,f=r.d,d=o*f-l*c>0?L.degRad:-L.degRad,u=this.data.offsetRotation*d,m=this.data.offsetShearY*d,g=this.bones;for(let b=0,w=g.length;b<w;b++){let x=g[b];if(e!=0){let p=x.a,y=x.b,v=x.c,A=x.d,C=Math.atan2(c,o)+u;C>L.PI?C-=L.PI2:C<-L.PI&&(C+=L.PI2),C*=e;let S=Math.cos(C),E=Math.sin(C);x.a=S*p-E*v,x.b=S*y-E*A,x.c=E*p+S*v,x.d=E*y+S*A}if(a){let p=this.temp;r.localToWorld(p.set(this.data.offsetX,this.data.offsetY)),x.worldX+=p.x*t,x.worldY+=p.y*i}if(s!=0){let p=(Math.sqrt(o*o+c*c)-1+this.data.offsetScaleX)*s+1;x.a*=p,x.c*=p}if(n!=0){let p=(Math.sqrt(l*l+f*f)-1+this.data.offsetScaleY)*n+1;x.b*=p,x.d*=p}if(h>0){let p=Math.atan2(f,l)-Math.atan2(c,o);p>L.PI?p-=L.PI2:p<-L.PI&&(p+=L.PI2);let y=x.b,v=x.d;p=Math.atan2(v,y)+(p-L.PI/2+m)*h;let A=Math.sqrt(y*y+v*v);x.b=Math.cos(p)*A,x.d=Math.sin(p)*A}x.updateAppliedTransform()}}applyAbsoluteLocal(){let e=this.mixRotate,t=this.mixX,i=this.mixY,s=this.mixScaleX,n=this.mixScaleY,h=this.mixShearY,a=this.target,r=this.bones;for(let o=0,l=r.length;o<l;o++){let c=r[o],f=c.arotation;e!=0&&(f+=(a.arotation-f+this.data.offsetRotation)*e);let d=c.ax,u=c.ay;d+=(a.ax-d+this.data.offsetX)*t,u+=(a.ay-u+this.data.offsetY)*i;let m=c.ascaleX,g=c.ascaleY;s!=0&&m!=0&&(m=(m+(a.ascaleX-m+this.data.offsetScaleX)*s)/m),n!=0&&g!=0&&(g=(g+(a.ascaleY-g+this.data.offsetScaleY)*n)/g);let b=c.ashearY;h!=0&&(b+=(a.ashearY-b+this.data.offsetShearY)*h),c.updateWorldTransformWith(d,u,f,m,g,c.ashearX,b)}}applyRelativeLocal(){let e=this.mixRotate,t=this.mixX,i=this.mixY,s=this.mixScaleX,n=this.mixScaleY,h=this.mixShearY,a=this.target,r=this.bones;for(let o=0,l=r.length;o<l;o++){let c=r[o],f=c.arotation+(a.arotation+this.data.offsetRotation)*e,d=c.ax+(a.ax+this.data.offsetX)*t,u=c.ay+(a.ay+this.data.offsetY)*i,m=c.ascaleX*((a.ascaleX-1+this.data.offsetScaleX)*s+1),g=c.ascaleY*((a.ascaleY-1+this.data.offsetScaleY)*n+1),b=c.ashearY+(a.ashearY+this.data.offsetShearY)*h;c.updateWorldTransformWith(d,u,f,m,g,c.ashearX,b)}}},Xi=class{data;bones;slots;drawOrder;ikConstraints;transformConstraints;pathConstraints;physicsConstraints;_updateCache=new Array;skin=null;color;scaleX=1;_scaleY=1;get scaleY(){return Xi.yDown?-this._scaleY:this._scaleY}set scaleY(e){this._scaleY=e}x=0;y=0;time=0;constructor(e){if(!e)throw new Error("data cannot be null.");this.data=e,this.bones=new Array;for(let t=0;t<e.bones.length;t++){let i=e.bones[t],s;if(!i.parent)s=new Mi(i,this,null);else{let n=this.bones[i.parent.index];s=new Mi(i,this,n),n.children.push(s)}this.bones.push(s)}this.slots=new Array,this.drawOrder=new Array;for(let t=0;t<e.slots.length;t++){let i=e.slots[t],s=this.bones[i.boneData.index],n=new vs(i,s);this.slots.push(n),this.drawOrder.push(n)}this.ikConstraints=new Array;for(let t=0;t<e.ikConstraints.length;t++){let i=e.ikConstraints[t];this.ikConstraints.push(new bs(i,this))}this.transformConstraints=new Array;for(let t=0;t<e.transformConstraints.length;t++){let i=e.transformConstraints[t];this.transformConstraints.push(new ys(i,this))}this.pathConstraints=new Array;for(let t=0;t<e.pathConstraints.length;t++){let i=e.pathConstraints[t];this.pathConstraints.push(new tt(i,this))}this.physicsConstraints=new Array;for(let t=0;t<e.physicsConstraints.length;t++){let i=e.physicsConstraints[t];this.physicsConstraints.push(new Zs(i,this))}this.color=new V(1,1,1,1),this.updateCache()}updateCache(){let e=this._updateCache;e.length=0;let t=this.bones;for(let f=0,d=t.length;f<d;f++){let u=t[f];u.sorted=u.data.skinRequired,u.active=!u.sorted}if(this.skin){let f=this.skin.bones;for(let d=0,u=this.skin.bones.length;d<u;d++){let m=this.bones[f[d].index];do m.sorted=!1,m.active=!0,m=m.parent;while(m)}}let i=this.ikConstraints,s=this.transformConstraints,n=this.pathConstraints,h=this.physicsConstraints,a=i.length,r=s.length,o=n.length,l=this.physicsConstraints.length,c=a+r+o+l;e:for(let f=0;f<c;f++){for(let d=0;d<a;d++){let u=i[d];if(u.data.order==f){this.sortIkConstraint(u);continue e}}for(let d=0;d<r;d++){let u=s[d];if(u.data.order==f){this.sortTransformConstraint(u);continue e}}for(let d=0;d<o;d++){let u=n[d];if(u.data.order==f){this.sortPathConstraint(u);continue e}}for(let d=0;d<l;d++){const u=h[d];if(u.data.order==f){this.sortPhysicsConstraint(u);continue e}}}for(let f=0,d=t.length;f<d;f++)this.sortBone(t[f])}sortIkConstraint(e){if(e.active=e.target.isActive()&&(!e.data.skinRequired||this.skin&&P.contains(this.skin.constraints,e.data,!0)),!e.active)return;let t=e.target;this.sortBone(t);let i=e.bones,s=i[0];if(this.sortBone(s),i.length==1)this._updateCache.push(e),this.sortReset(s.children);else{let n=i[i.length-1];this.sortBone(n),this._updateCache.push(e),this.sortReset(s.children),n.sorted=!0}}sortPathConstraint(e){if(e.active=e.target.bone.isActive()&&(!e.data.skinRequired||this.skin&&P.contains(this.skin.constraints,e.data,!0)),!e.active)return;let t=e.target,i=t.data.index,s=t.bone;this.skin&&this.sortPathConstraintAttachment(this.skin,i,s),this.data.defaultSkin&&this.data.defaultSkin!=this.skin&&this.sortPathConstraintAttachment(this.data.defaultSkin,i,s);for(let r=0,o=this.data.skins.length;r<o;r++)this.sortPathConstraintAttachment(this.data.skins[r],i,s);let n=t.getAttachment();n instanceof He&&this.sortPathConstraintAttachmentWith(n,s);let h=e.bones,a=h.length;for(let r=0;r<a;r++)this.sortBone(h[r]);this._updateCache.push(e);for(let r=0;r<a;r++)this.sortReset(h[r].children);for(let r=0;r<a;r++)h[r].sorted=!0}sortTransformConstraint(e){if(e.active=e.target.isActive()&&(!e.data.skinRequired||this.skin&&P.contains(this.skin.constraints,e.data,!0)),!e.active)return;this.sortBone(e.target);let t=e.bones,i=t.length;if(e.data.local)for(let s=0;s<i;s++){let n=t[s];this.sortBone(n.parent),this.sortBone(n)}else for(let s=0;s<i;s++)this.sortBone(t[s]);this._updateCache.push(e);for(let s=0;s<i;s++)this.sortReset(t[s].children);for(let s=0;s<i;s++)t[s].sorted=!0}sortPathConstraintAttachment(e,t,i){let s=e.attachments[t];if(s)for(let n in s)this.sortPathConstraintAttachmentWith(s[n],i)}sortPathConstraintAttachmentWith(e,t){if(!(e instanceof He))return;let i=e.bones;if(!i)this.sortBone(t);else{let s=this.bones;for(let n=0,h=i.length;n<h;){let a=i[n++];for(a+=n;n<a;)this.sortBone(s[i[n++]])}}}sortPhysicsConstraint(e){const t=e.bone;e.active=t.active&&(!e.data.skinRequired||this.skin!=null&&P.contains(this.skin.constraints,e.data,!0)),e.active&&(this.sortBone(t),this._updateCache.push(e),this.sortReset(t.children),t.sorted=!0)}sortBone(e){if(!e||e.sorted)return;let t=e.parent;t&&this.sortBone(t),e.sorted=!0,this._updateCache.push(e)}sortReset(e){for(let t=0,i=e.length;t<i;t++){let s=e[t];s.active&&(s.sorted&&this.sortReset(s.children),s.sorted=!1)}}updateWorldTransform(e){if(e==null)throw new Error("physics is undefined");let t=this.bones;for(let s=0,n=t.length;s<n;s++){let h=t[s];h.ax=h.x,h.ay=h.y,h.arotation=h.rotation,h.ascaleX=h.scaleX,h.ascaleY=h.scaleY,h.ashearX=h.shearX,h.ashearY=h.shearY}let i=this._updateCache;for(let s=0,n=i.length;s<n;s++)i[s].update(e)}updateWorldTransformWith(e,t){if(!t)throw new Error("parent cannot be null.");let i=this.bones;for(let g=1,b=i.length;g<b;g++){let w=i[g];w.ax=w.x,w.ay=w.y,w.arotation=w.rotation,w.ascaleX=w.scaleX,w.ascaleY=w.scaleY,w.ashearX=w.shearX,w.ashearY=w.shearY}let s=this.getRootBone();if(!s)throw new Error("Root bone must not be null.");let n=t.a,h=t.b,a=t.c,r=t.d;s.worldX=n*this.x+h*this.y+t.worldX,s.worldY=a*this.x+r*this.y+t.worldY;const o=(s.rotation+s.shearX)*L.degRad,l=(s.rotation+90+s.shearY)*L.degRad,c=Math.cos(o)*s.scaleX,f=Math.cos(l)*s.scaleY,d=Math.sin(o)*s.scaleX,u=Math.sin(l)*s.scaleY;s.a=(n*c+h*d)*this.scaleX,s.b=(n*f+h*u)*this.scaleX,s.c=(a*c+r*d)*this.scaleY,s.d=(a*f+r*u)*this.scaleY;let m=this._updateCache;for(let g=0,b=m.length;g<b;g++){let w=m[g];w!=s&&w.update(e)}}setToSetupPose(){this.setBonesToSetupPose(),this.setSlotsToSetupPose()}setBonesToSetupPose(){for(const e of this.bones)e.setToSetupPose();for(const e of this.ikConstraints)e.setToSetupPose();for(const e of this.transformConstraints)e.setToSetupPose();for(const e of this.pathConstraints)e.setToSetupPose();for(const e of this.physicsConstraints)e.setToSetupPose()}setSlotsToSetupPose(){let e=this.slots;P.arrayCopy(e,0,this.drawOrder,0,e.length);for(let t=0,i=e.length;t<i;t++)e[t].setToSetupPose()}getRootBone(){return this.bones.length==0?null:this.bones[0]}findBone(e){if(!e)throw new Error("boneName cannot be null.");let t=this.bones;for(let i=0,s=t.length;i<s;i++){let n=t[i];if(n.data.name==e)return n}return null}findSlot(e){if(!e)throw new Error("slotName cannot be null.");let t=this.slots;for(let i=0,s=t.length;i<s;i++){let n=t[i];if(n.data.name==e)return n}return null}setSkinByName(e){let t=this.data.findSkin(e);if(!t)throw new Error("Skin not found: "+e);this.setSkin(t)}setSkin(e){if(e!=this.skin){if(e)if(this.skin)e.attachAll(this,this.skin);else{let t=this.slots;for(let i=0,s=t.length;i<s;i++){let n=t[i],h=n.data.attachmentName;if(h){let a=e.getAttachment(i,h);a&&n.setAttachment(a)}}}this.skin=e,this.updateCache()}}getAttachmentByName(e,t){let i=this.data.findSlot(e);if(!i)throw new Error(`Can't find slot with name ${e}`);return this.getAttachment(i.index,t)}getAttachment(e,t){if(!t)throw new Error("attachmentName cannot be null.");if(this.skin){let i=this.skin.getAttachment(e,t);if(i)return i}return this.data.defaultSkin?this.data.defaultSkin.getAttachment(e,t):null}setAttachment(e,t){if(!e)throw new Error("slotName cannot be null.");let i=this.slots;for(let s=0,n=i.length;s<n;s++){let h=i[s];if(h.data.name==e){let a=null;if(t&&(a=this.getAttachment(s,t),!a))throw new Error("Attachment not found: "+t+", for slot: "+e);h.setAttachment(a);return}}throw new Error("Slot not found: "+e)}findIkConstraint(e){if(!e)throw new Error("constraintName cannot be null.");return this.ikConstraints.find(t=>t.data.name==e)??null}findTransformConstraint(e){if(!e)throw new Error("constraintName cannot be null.");return this.transformConstraints.find(t=>t.data.name==e)??null}findPathConstraint(e){if(!e)throw new Error("constraintName cannot be null.");return this.pathConstraints.find(t=>t.data.name==e)??null}findPhysicsConstraint(e){if(e==null)throw new Error("constraintName cannot be null.");return this.physicsConstraints.find(t=>t.data.name==e)??null}getBoundsRect(e){let t=new We,i=new We;return this.getBounds(t,i,void 0,e),{x:t.x,y:t.y,width:i.x,height:i.y}}getBounds(e,t,i=new Array(2),s=null){if(!e)throw new Error("offset cannot be null.");if(!t)throw new Error("size cannot be null.");let n=this.drawOrder,h=Number.POSITIVE_INFINITY,a=Number.POSITIVE_INFINITY,r=Number.NEGATIVE_INFINITY,o=Number.NEGATIVE_INFINITY;for(let l=0,c=n.length;l<c;l++){let f=n[l];if(!f.bone.active)continue;let d=0,u=null,m=null,g=f.getAttachment();if(g instanceof le)d=8,u=P.setArraySize(i,d,0),g.computeWorldVertices(f,u,0,2),m=Xi.quadTriangles;else if(g instanceof Ne){let b=g;d=b.worldVerticesLength,u=P.setArraySize(i,d,0),b.computeWorldVertices(f,0,d,u,0,2),m=b.triangles}else if(g instanceof et&&s!=null){s.clipStart(f,g);continue}if(u&&m){s!=null&&s.isClipping()&&(s.clipTriangles(u,m,m.length),u=s.clippedVertices,d=s.clippedVertices.length);for(let b=0,w=u.length;b<w;b+=2){let x=u[b],p=u[b+1];h=Math.min(h,x),a=Math.min(a,p),r=Math.max(r,x),o=Math.max(o,p)}}s?.clipEndWithSlot(f)}s?.clipEnd(),e.set(h,a),t.set(r-h,o-a)}update(e){this.time+=e}physicsTranslate(e,t){const i=this.physicsConstraints;for(let s=0,n=i.length;s<n;s++)i[s].translate(e,t)}physicsRotate(e,t,i){const s=this.physicsConstraints;for(let n=0,h=s.length;n<h;n++)s[n].rotate(e,t,i)}},Yt=Xi;B(Yt,"quadTriangles",[0,1,2,2,3,0]),B(Yt,"yDown",!1);var As=(e=>(e[e.none=0]="none",e[e.reset=1]="reset",e[e.update=2]="update",e[e.pose=3]="pose",e))(As||{}),Cs=class extends dt{_bone=null;set bone(e){this._bone=e}get bone(){if(this._bone)return this._bone;throw new Error("BoneData not set.")}x=0;y=0;rotate=0;scaleX=0;shearX=0;limit=0;step=0;inertia=0;strength=0;damping=0;massInverse=0;wind=0;gravity=0;mix=0;inertiaGlobal=!1;strengthGlobal=!1;dampingGlobal=!1;massGlobal=!1;windGlobal=!1;gravityGlobal=!1;mixGlobal=!1;constructor(e){super(e,0,!1)}},Li=class{name=null;bones=new Array;slots=new Array;skins=new Array;defaultSkin=null;events=new Array;animations=new Array;ikConstraints=new Array;transformConstraints=new Array;pathConstraints=new Array;physicsConstraints=new Array;x=0;y=0;width=0;height=0;referenceScale=100;version=null;hash=null;fps=0;imagesPath=null;audioPath=null;findBone(e){if(!e)throw new Error("boneName cannot be null.");let t=this.bones;for(let i=0,s=t.length;i<s;i++){let n=t[i];if(n.name==e)return n}return null}findSlot(e){if(!e)throw new Error("slotName cannot be null.");let t=this.slots;for(let i=0,s=t.length;i<s;i++){let n=t[i];if(n.name==e)return n}return null}findSkin(e){if(!e)throw new Error("skinName cannot be null.");let t=this.skins;for(let i=0,s=t.length;i<s;i++){let n=t[i];if(n.name==e)return n}return null}findEvent(e){if(!e)throw new Error("eventDataName cannot be null.");let t=this.events;for(let i=0,s=t.length;i<s;i++){let n=t[i];if(n.name==e)return n}return null}findAnimation(e){if(!e)throw new Error("animationName cannot be null.");let t=this.animations;for(let i=0,s=t.length;i<s;i++){let n=t[i];if(n.name==e)return n}return null}findIkConstraint(e){if(!e)throw new Error("constraintName cannot be null.");const t=this.ikConstraints;for(let i=0,s=t.length;i<s;i++){const n=t[i];if(n.name==e)return n}return null}findTransformConstraint(e){if(!e)throw new Error("constraintName cannot be null.");const t=this.transformConstraints;for(let i=0,s=t.length;i<s;i++){const n=t[i];if(n.name==e)return n}return null}findPathConstraint(e){if(!e)throw new Error("constraintName cannot be null.");const t=this.pathConstraints;for(let i=0,s=t.length;i<s;i++){const n=t[i];if(n.name==e)return n}return null}findPhysicsConstraint(e){if(!e)throw new Error("constraintName cannot be null.");const t=this.physicsConstraints;for(let i=0,s=t.length;i<s;i++){const n=t[i];if(n.name==e)return n}return null}},Pi=class{constructor(e=0,t,i){this.slotIndex=e,this.name=t,this.attachment=i}},Rt=class{name;attachments=new Array;bones=Array();constraints=new Array;color=new V(.99607843,.61960787,.30980393,1);constructor(e){if(!e)throw new Error("name cannot be null.");this.name=e}setAttachment(e,t,i){if(!i)throw new Error("attachment cannot be null.");let s=this.attachments;e>=s.length&&(s.length=e+1),s[e]||(s[e]={}),s[e][t]=i}addSkin(e){for(let s=0;s<e.bones.length;s++){let n=e.bones[s],h=!1;for(let a=0;a<this.bones.length;a++)if(this.bones[a]==n){h=!0;break}h||this.bones.push(n)}for(let s=0;s<e.constraints.length;s++){let n=e.constraints[s],h=!1;for(let a=0;a<this.constraints.length;a++)if(this.constraints[a]==n){h=!0;break}h||this.constraints.push(n)}let t=e.getAttachments();for(let s=0;s<t.length;s++){var i=t[s];this.setAttachment(i.slotIndex,i.name,i.attachment)}}copySkin(e){for(let s=0;s<e.bones.length;s++){let n=e.bones[s],h=!1;for(let a=0;a<this.bones.length;a++)if(this.bones[a]==n){h=!0;break}h||this.bones.push(n)}for(let s=0;s<e.constraints.length;s++){let n=e.constraints[s],h=!1;for(let a=0;a<this.constraints.length;a++)if(this.constraints[a]==n){h=!0;break}h||this.constraints.push(n)}let t=e.getAttachments();for(let s=0;s<t.length;s++){var i=t[s];i.attachment&&(i.attachment instanceof Ne?(i.attachment=i.attachment.newLinkedMesh(),this.setAttachment(i.slotIndex,i.name,i.attachment)):(i.attachment=i.attachment.copy(),this.setAttachment(i.slotIndex,i.name,i.attachment)))}}getAttachment(e,t){let i=this.attachments[e];return i?i[t]:null}removeAttachment(e,t){let i=this.attachments[e];i&&delete i[t]}getAttachments(){let e=new Array;for(var t=0;t<this.attachments.length;t++){let i=this.attachments[t];if(i)for(let s in i){let n=i[s];n&&e.push(new Pi(t,s,n))}}return e}getAttachmentsForSlot(e,t){let i=this.attachments[e];if(i)for(let s in i){let n=i[s];n&&t.push(new Pi(e,s,n))}}clear(){this.attachments.length=0,this.bones.length=0,this.constraints.length=0}attachAll(e,t){let i=0;for(let s=0;s<e.slots.length;s++){let n=e.slots[s],h=n.getAttachment();if(h&&i<t.attachments.length){let a=t.attachments[i];for(let r in a){let o=a[r];if(h==o){let l=this.getAttachment(i,r);l&&n.setAttachment(l);break}}}i++}}},Bi=class{index=0;name;boneData;color=new V(1,1,1,1);darkColor=null;attachmentName=null;blendMode=kt.Normal;visible=!0;constructor(e,t,i){if(e<0)throw new Error("index must be >= 0.");if(!t)throw new Error("name cannot be null.");if(!i)throw new Error("boneData cannot be null.");this.index=e,this.name=t,this.boneData=i}},kt=(e=>(e[e.Normal=0]="Normal",e[e.Additive=1]="Additive",e[e.Multiply=2]="Multiply",e[e.Screen=3]="Screen",e))(kt||{}),Vi=class extends dt{bones=new Array;_target=null;set target(e){this._target=e}get target(){if(this._target)return this._target;throw new Error("BoneData not set.")}mixRotate=0;mixX=0;mixY=0;mixScaleX=0;mixScaleY=0;mixShearY=0;offsetRotation=0;offsetX=0;offsetY=0;offsetScaleX=0;offsetScaleY=0;offsetShearY=0;relative=!1;local=!1;constructor(e){super(e,0,!1)}},Ks=class{scale=1;attachmentLoader;linkedMeshes=new Array;constructor(e){this.attachmentLoader=e}readSkeletonData(e){let t=this.scale,i=new Li;i.name="";let s=new Ss(e),n=s.readInt32(),h=s.readInt32();i.hash=h==0&&n==0?null:h.toString(16)+n.toString(16),i.version=s.readString(),i.x=s.readFloat(),i.y=s.readFloat(),i.width=s.readFloat(),i.height=s.readFloat(),i.referenceScale=s.readFloat()*t;let a=s.readBoolean();a&&(i.fps=s.readFloat(),i.imagesPath=s.readString(),i.audioPath=s.readString());let r=0;r=s.readInt(!0);for(let l=0;l<r;l++){let c=s.readString();if(!c)throw new Error("String in string table must not be null.");s.strings.push(c)}r=s.readInt(!0);for(let l=0;l<r;l++){let c=s.readString();if(!c)throw new Error("Bone name must not be null.");let f=l==0?null:i.bones[s.readInt(!0)],d=new Ti(l,c,f);d.rotation=s.readFloat(),d.x=s.readFloat()*t,d.y=s.readFloat()*t,d.scaleX=s.readFloat(),d.scaleY=s.readFloat(),d.shearX=s.readFloat(),d.shearY=s.readFloat(),d.length=s.readFloat()*t,d.inherit=s.readByte(),d.skinRequired=s.readBoolean(),a&&(V.rgba8888ToColor(d.color,s.readInt32()),d.icon=s.readString()??void 0,d.visible=s.readBoolean()),i.bones.push(d)}r=s.readInt(!0);for(let l=0;l<r;l++){let c=s.readString();if(!c)throw new Error("Slot name must not be null.");let f=i.bones[s.readInt(!0)],d=new Bi(l,c,f);V.rgba8888ToColor(d.color,s.readInt32());let u=s.readInt32();u!=-1&&V.rgb888ToColor(d.darkColor=new V,u),d.attachmentName=s.readStringRef(),d.blendMode=s.readInt(!0),a&&(d.visible=s.readBoolean()),i.slots.push(d)}r=s.readInt(!0);for(let l=0,c;l<r;l++){let f=s.readString();if(!f)throw new Error("IK constraint data name must not be null.");let d=new ki(f);d.order=s.readInt(!0),c=s.readInt(!0);for(let m=0;m<c;m++)d.bones.push(i.bones[s.readInt(!0)]);d.target=i.bones[s.readInt(!0)];let u=s.readByte();d.skinRequired=(u&1)!=0,d.bendDirection=u&2?1:-1,d.compress=(u&4)!=0,d.stretch=(u&8)!=0,d.uniform=(u&16)!=0,u&32&&(d.mix=u&64?s.readFloat():1),u&128&&(d.softness=s.readFloat()*t),i.ikConstraints.push(d)}r=s.readInt(!0);for(let l=0,c;l<r;l++){let f=s.readString();if(!f)throw new Error("Transform constraint data name must not be null.");let d=new Vi(f);d.order=s.readInt(!0),c=s.readInt(!0);for(let m=0;m<c;m++)d.bones.push(i.bones[s.readInt(!0)]);d.target=i.bones[s.readInt(!0)];let u=s.readByte();d.skinRequired=(u&1)!=0,d.local=(u&2)!=0,d.relative=(u&4)!=0,u&8&&(d.offsetRotation=s.readFloat()),u&16&&(d.offsetX=s.readFloat()*t),u&32&&(d.offsetY=s.readFloat()*t),u&64&&(d.offsetScaleX=s.readFloat()),u&128&&(d.offsetScaleY=s.readFloat()),u=s.readByte(),u&1&&(d.offsetShearY=s.readFloat()),u&2&&(d.mixRotate=s.readFloat()),u&4&&(d.mixX=s.readFloat()),u&8&&(d.mixY=s.readFloat()),u&16&&(d.mixScaleX=s.readFloat()),u&32&&(d.mixScaleY=s.readFloat()),u&64&&(d.mixShearY=s.readFloat()),i.transformConstraints.push(d)}r=s.readInt(!0);for(let l=0,c;l<r;l++){let f=s.readString();if(!f)throw new Error("Path constraint data name must not be null.");let d=new Fi(f);d.order=s.readInt(!0),d.skinRequired=s.readBoolean(),c=s.readInt(!0);for(let m=0;m<c;m++)d.bones.push(i.bones[s.readInt(!0)]);d.target=i.slots[s.readInt(!0)];const u=s.readByte();d.positionMode=u&1,d.spacingMode=u>>1&3,d.rotateMode=u>>3&3,u&128&&(d.offsetRotation=s.readFloat()),d.position=s.readFloat(),d.positionMode==0&&(d.position*=t),d.spacing=s.readFloat(),(d.spacingMode==0||d.spacingMode==1)&&(d.spacing*=t),d.mixRotate=s.readFloat(),d.mixX=s.readFloat(),d.mixY=s.readFloat(),i.pathConstraints.push(d)}r=s.readInt(!0);for(let l=0,c;l<r;l++){const f=s.readString();if(!f)throw new Error("Physics constraint data name must not be null.");const d=new Cs(f);d.order=s.readInt(!0),d.bone=i.bones[s.readInt(!0)];let u=s.readByte();d.skinRequired=(u&1)!=0,u&2&&(d.x=s.readFloat()),u&4&&(d.y=s.readFloat()),u&8&&(d.rotate=s.readFloat()),u&16&&(d.scaleX=s.readFloat()),u&32&&(d.shearX=s.readFloat()),d.limit=(u&64?s.readFloat():5e3)*t,d.step=1/s.readUnsignedByte(),d.inertia=s.readFloat(),d.strength=s.readFloat(),d.damping=s.readFloat(),d.massInverse=u&128?s.readFloat():1,d.wind=s.readFloat(),d.gravity=s.readFloat(),u=s.readByte(),u&1&&(d.inertiaGlobal=!0),u&2&&(d.strengthGlobal=!0),u&4&&(d.dampingGlobal=!0),u&8&&(d.massGlobal=!0),u&16&&(d.windGlobal=!0),u&32&&(d.gravityGlobal=!0),u&64&&(d.mixGlobal=!0),d.mix=u&128?s.readFloat():1,i.physicsConstraints.push(d)}let o=this.readSkin(s,i,!0,a);o&&(i.defaultSkin=o,i.skins.push(o));{let l=i.skins.length;for(P.setArraySize(i.skins,r=l+s.readInt(!0));l<r;l++){let c=this.readSkin(s,i,!1,a);if(!c)throw new Error("readSkin() should not have returned null.");i.skins[l]=c}}r=this.linkedMeshes.length;for(let l=0;l<r;l++){let c=this.linkedMeshes[l];const f=i.skins[c.skinIndex];if(!c.parent)throw new Error("Linked mesh parent must not be null");let d=f.getAttachment(c.slotIndex,c.parent);if(!d)throw new Error(`Parent mesh not found: ${c.parent}`);c.mesh.timelineAttachment=c.inheritTimeline?d:c.mesh,c.mesh.setParentMesh(d),c.mesh.region!=null&&c.mesh.updateRegion()}this.linkedMeshes.length=0,r=s.readInt(!0);for(let l=0;l<r;l++){let c=s.readString();if(!c)throw new Error("Event data name must not be null");let f=new Ri(c);f.intValue=s.readInt(!1),f.floatValue=s.readFloat(),f.stringValue=s.readString(),f.audioPath=s.readString(),f.audioPath&&(f.volume=s.readFloat(),f.balance=s.readFloat()),i.events.push(f)}r=s.readInt(!0);for(let l=0;l<r;l++){let c=s.readString();if(!c)throw new Error("Animatio name must not be null.");i.animations.push(this.readAnimation(s,c,i))}return i}readSkin(e,t,i,s){let n=null,h=0;if(i){if(h=e.readInt(!0),h==0)return null;n=new Rt("default")}else{let a=e.readString();if(!a)throw new Error("Skin name must not be null.");n=new Rt(a),s&&V.rgba8888ToColor(n.color,e.readInt32()),n.bones.length=e.readInt(!0);for(let r=0,o=n.bones.length;r<o;r++)n.bones[r]=t.bones[e.readInt(!0)];for(let r=0,o=e.readInt(!0);r<o;r++)n.constraints.push(t.ikConstraints[e.readInt(!0)]);for(let r=0,o=e.readInt(!0);r<o;r++)n.constraints.push(t.transformConstraints[e.readInt(!0)]);for(let r=0,o=e.readInt(!0);r<o;r++)n.constraints.push(t.pathConstraints[e.readInt(!0)]);for(let r=0,o=e.readInt(!0);r<o;r++)n.constraints.push(t.physicsConstraints[e.readInt(!0)]);h=e.readInt(!0)}for(let a=0;a<h;a++){let r=e.readInt(!0);for(let o=0,l=e.readInt(!0);o<l;o++){let c=e.readStringRef();if(!c)throw new Error("Attachment name must not be null");let f=this.readAttachment(e,t,n,r,c,s);f&&n.setAttachment(r,c,f)}}return n}readAttachment(e,t,i,s,n,h){let a=this.scale,r=e.readByte();const o=r&8?e.readStringRef():n;if(!o)throw new Error("Attachment name must not be null");switch(r&7){case ze.Region:{let l=r&16?e.readStringRef():null;const c=r&32?e.readInt32():4294967295,f=r&64?this.readSequence(e):null;let d=r&128?e.readFloat():0,u=e.readFloat(),m=e.readFloat(),g=e.readFloat(),b=e.readFloat(),w=e.readFloat(),x=e.readFloat();l||(l=o);let p=this.attachmentLoader.newRegionAttachment(i,o,l,f);return p?(p.path=l,p.x=u*a,p.y=m*a,p.scaleX=g,p.scaleY=b,p.rotation=d,p.width=w*a,p.height=x*a,V.rgba8888ToColor(p.color,c),p.sequence=f,f==null&&p.updateRegion(),p):null}case ze.BoundingBox:{let l=this.readVertices(e,(r&16)!=0),c=h?e.readInt32():0,f=this.attachmentLoader.newBoundingBoxAttachment(i,o);return f?(f.worldVerticesLength=l.length,f.vertices=l.vertices,f.bones=l.bones,h&&V.rgba8888ToColor(f.color,c),f):null}case ze.Mesh:{let l=r&16?e.readStringRef():o;const c=r&32?e.readInt32():4294967295,f=r&64?this.readSequence(e):null,d=e.readInt(!0),u=this.readVertices(e,(r&128)!=0),m=this.readFloatArray(e,u.length,1),g=this.readShortArray(e,(u.length-d-2)*3);let b=[],w=0,x=0;h&&(b=this.readShortArray(e,e.readInt(!0)),w=e.readFloat(),x=e.readFloat()),l||(l=o);let p=this.attachmentLoader.newMeshAttachment(i,o,l,f);return p?(p.path=l,V.rgba8888ToColor(p.color,c),p.bones=u.bones,p.vertices=u.vertices,p.worldVerticesLength=u.length,p.triangles=g,p.regionUVs=m,f==null&&p.updateRegion(),p.hullLength=d<<1,p.sequence=f,h&&(p.edges=b,p.width=w*a,p.height=x*a),p):null}case ze.LinkedMesh:{const l=r&16?e.readStringRef():o;if(l==null)throw new Error("Path of linked mesh must not be null");const c=r&32?e.readInt32():4294967295,f=r&64?this.readSequence(e):null,d=(r&128)!=0,u=e.readInt(!0),m=e.readStringRef();let g=0,b=0;h&&(g=e.readFloat(),b=e.readFloat());let w=this.attachmentLoader.newMeshAttachment(i,o,l,f);return w?(w.path=l,V.rgba8888ToColor(w.color,c),w.sequence=f,h&&(w.width=g*a,w.height=b*a),this.linkedMeshes.push(new Js(w,u,s,m,d)),w):null}case ze.Path:{const l=(r&16)!=0,c=(r&32)!=0,f=this.readVertices(e,(r&64)!=0),d=P.newArray(f.length/6,0);for(let g=0,b=d.length;g<b;g++)d[g]=e.readFloat()*a;const u=h?e.readInt32():0,m=this.attachmentLoader.newPathAttachment(i,o);return m?(m.closed=l,m.constantSpeed=c,m.worldVerticesLength=f.length,m.vertices=f.vertices,m.bones=f.bones,m.lengths=d,h&&V.rgba8888ToColor(m.color,u),m):null}case ze.Point:{const l=e.readFloat(),c=e.readFloat(),f=e.readFloat(),d=h?e.readInt32():0,u=this.attachmentLoader.newPointAttachment(i,o);return u?(u.x=c*a,u.y=f*a,u.rotation=l,h&&V.rgba8888ToColor(u.color,d),u):null}case ze.Clipping:{const l=e.readInt(!0),c=this.readVertices(e,(r&16)!=0);let f=h?e.readInt32():0,d=this.attachmentLoader.newClippingAttachment(i,o);return d?(d.endSlot=t.slots[l],d.worldVerticesLength=c.length,d.vertices=c.vertices,d.bones=c.bones,h&&V.rgba8888ToColor(d.color,f),d):null}}return null}readSequence(e){let t=new qt(e.readInt(!0));return t.start=e.readInt(!0),t.digits=e.readInt(!0),t.setupIndex=e.readInt(!0),t}readVertices(e,t){const i=this.scale,s=e.readInt(!0),n=new Qs;if(n.length=s<<1,!t)return n.vertices=this.readFloatArray(e,n.length,i),n;let h=new Array,a=new Array;for(let r=0;r<s;r++){let o=e.readInt(!0);a.push(o);for(let l=0;l<o;l++)a.push(e.readInt(!0)),h.push(e.readFloat()*i),h.push(e.readFloat()*i),h.push(e.readFloat())}return n.vertices=P.toFloatArray(h),n.bones=a,n}readFloatArray(e,t,i){let s=new Array(t);if(i==1)for(let n=0;n<t;n++)s[n]=e.readFloat();else for(let n=0;n<t;n++)s[n]=e.readFloat()*i;return s}readShortArray(e,t){let i=new Array(t);for(let s=0;s<t;s++)i[s]=e.readInt(!0);return i}readAnimation(e,t,i){e.readInt(!0);let s=new Array,n=this.scale;for(let o=0,l=e.readInt(!0);o<l;o++){let c=e.readInt(!0);for(let f=0,d=e.readInt(!0);f<d;f++){let u=e.readByte(),m=e.readInt(!0),g=m-1;switch(u){case cr:{let b=new qe(m,c);for(let w=0;w<m;w++)b.setFrame(w,e.readFloat(),e.readStringRef());s.push(b);break}case dr:{let b=e.readInt(!0),w=new ii(m,b,c),x=e.readFloat(),p=e.readUnsignedByte()/255,y=e.readUnsignedByte()/255,v=e.readUnsignedByte()/255,A=e.readUnsignedByte()/255;for(let C=0,S=0;w.setFrame(C,x,p,y,v,A),C!=g;C++){let E=e.readFloat(),Y=e.readUnsignedByte()/255,k=e.readUnsignedByte()/255,X=e.readUnsignedByte()/255,T=e.readUnsignedByte()/255;switch(e.readByte()){case Xe:w.setStepped(C);break;case Le:oe(e,w,S++,C,0,x,E,p,Y,1),oe(e,w,S++,C,1,x,E,y,k,1),oe(e,w,S++,C,2,x,E,v,X,1),oe(e,w,S++,C,3,x,E,A,T,1)}x=E,p=Y,y=k,v=X,A=T}s.push(w);break}case fr:{let b=e.readInt(!0),w=new si(m,b,c),x=e.readFloat(),p=e.readUnsignedByte()/255,y=e.readUnsignedByte()/255,v=e.readUnsignedByte()/255;for(let A=0,C=0;w.setFrame(A,x,p,y,v),A!=g;A++){let S=e.readFloat(),E=e.readUnsignedByte()/255,Y=e.readUnsignedByte()/255,k=e.readUnsignedByte()/255;switch(e.readByte()){case Xe:w.setStepped(A);break;case Le:oe(e,w,C++,A,0,x,S,p,E,1),oe(e,w,C++,A,1,x,S,y,Y,1),oe(e,w,C++,A,2,x,S,v,k,1)}x=S,p=E,y=Y,v=k}s.push(w);break}case ur:{let b=e.readInt(!0),w=new ni(m,b,c),x=e.readFloat(),p=e.readUnsignedByte()/255,y=e.readUnsignedByte()/255,v=e.readUnsignedByte()/255,A=e.readUnsignedByte()/255,C=e.readUnsignedByte()/255,S=e.readUnsignedByte()/255,E=e.readUnsignedByte()/255;for(let Y=0,k=0;w.setFrame(Y,x,p,y,v,A,C,S,E),Y!=g;Y++){let X=e.readFloat(),T=e.readUnsignedByte()/255,R=e.readUnsignedByte()/255,F=e.readUnsignedByte()/255,ie=e.readUnsignedByte()/255,se=e.readUnsignedByte()/255,te=e.readUnsignedByte()/255,he=e.readUnsignedByte()/255;switch(e.readByte()){case Xe:w.setStepped(Y);break;case Le:oe(e,w,k++,Y,0,x,X,p,T,1),oe(e,w,k++,Y,1,x,X,y,R,1),oe(e,w,k++,Y,2,x,X,v,F,1),oe(e,w,k++,Y,3,x,X,A,ie,1),oe(e,w,k++,Y,4,x,X,C,se,1),oe(e,w,k++,Y,5,x,X,S,te,1),oe(e,w,k++,Y,6,x,X,E,he,1)}x=X,p=T,y=R,v=F,A=ie,C=se,S=te,E=he}s.push(w);break}case mr:{let b=e.readInt(!0),w=new ai(m,b,c),x=e.readFloat(),p=e.readUnsignedByte()/255,y=e.readUnsignedByte()/255,v=e.readUnsignedByte()/255,A=e.readUnsignedByte()/255,C=e.readUnsignedByte()/255,S=e.readUnsignedByte()/255;for(let E=0,Y=0;w.setFrame(E,x,p,y,v,A,C,S),E!=g;E++){let k=e.readFloat(),X=e.readUnsignedByte()/255,T=e.readUnsignedByte()/255,R=e.readUnsignedByte()/255,F=e.readUnsignedByte()/255,ie=e.readUnsignedByte()/255,se=e.readUnsignedByte()/255;switch(e.readByte()){case Xe:w.setStepped(E);break;case Le:oe(e,w,Y++,E,0,x,k,p,X,1),oe(e,w,Y++,E,1,x,k,y,T,1),oe(e,w,Y++,E,2,x,k,v,R,1),oe(e,w,Y++,E,3,x,k,A,F,1),oe(e,w,Y++,E,4,x,k,C,ie,1),oe(e,w,Y++,E,5,x,k,S,se,1)}x=k,p=X,y=T,v=R,A=F,C=ie,S=se}s.push(w);break}case gr:{let b=new ri(m,e.readInt(!0),c),w=e.readFloat(),x=e.readUnsignedByte()/255;for(let p=0,y=0;b.setFrame(p,w,x),p!=g;p++){let v=e.readFloat(),A=e.readUnsignedByte()/255;switch(e.readByte()){case Xe:b.setStepped(p);break;case Le:oe(e,b,y++,p,0,w,v,x,A,1)}w=v,x=A}s.push(b)}}}}for(let o=0,l=e.readInt(!0);o<l;o++){let c=e.readInt(!0);for(let f=0,d=e.readInt(!0);f<d;f++){let u=e.readByte(),m=e.readInt(!0);if(u==hr){let b=new ti(m,c);for(let w=0;w<m;w++)b.setFrame(w,e.readFloat(),e.readByte());s.push(b);continue}let g=e.readInt(!0);switch(u){case $s:s.push(be(e,new ot(m,g,c),1));break;case er:s.push(Oi(e,new Gt(m,g,c),n));break;case tr:s.push(be(e,new Ht(m,g,c),n));break;case ir:s.push(be(e,new jt(m,g,c),n));break;case sr:s.push(Oi(e,new Zt(m,g,c),1));break;case rr:s.push(be(e,new Kt(m,g,c),1));break;case nr:s.push(be(e,new Jt(m,g,c),1));break;case ar:s.push(Oi(e,new Qt(m,g,c),1));break;case lr:s.push(be(e,new $t(m,g,c),1));break;case or:s.push(be(e,new ei(m,g,c),1))}}}for(let o=0,l=e.readInt(!0);o<l;o++){let c=e.readInt(!0),f=e.readInt(!0),d=f-1,u=new oi(f,e.readInt(!0),c),m=e.readByte(),g=e.readFloat(),b=m&1?m&2?e.readFloat():1:0,w=m&4?e.readFloat()*n:0;for(let x=0,p=0;u.setFrame(x,g,b,w,m&8?1:-1,(m&16)!=0,(m&32)!=0),x!=d;x++){m=e.readByte();const y=e.readFloat(),v=m&1?m&2?e.readFloat():1:0,A=m&4?e.readFloat()*n:0;m&64?u.setStepped(x):m&128&&(oe(e,u,p++,x,0,g,y,b,v,1),oe(e,u,p++,x,1,g,y,w,A,n)),g=y,b=v,w=A}s.push(u)}for(let o=0,l=e.readInt(!0);o<l;o++){let c=e.readInt(!0),f=e.readInt(!0),d=f-1,u=new hi(f,e.readInt(!0),c),m=e.readFloat(),g=e.readFloat(),b=e.readFloat(),w=e.readFloat(),x=e.readFloat(),p=e.readFloat(),y=e.readFloat();for(let v=0,A=0;u.setFrame(v,m,g,b,w,x,p,y),v!=d;v++){let C=e.readFloat(),S=e.readFloat(),E=e.readFloat(),Y=e.readFloat(),k=e.readFloat(),X=e.readFloat(),T=e.readFloat();switch(e.readByte()){case Xe:u.setStepped(v);break;case Le:oe(e,u,A++,v,0,m,C,g,S,1),oe(e,u,A++,v,1,m,C,b,E,1),oe(e,u,A++,v,2,m,C,w,Y,1),oe(e,u,A++,v,3,m,C,x,k,1),oe(e,u,A++,v,4,m,C,p,X,1),oe(e,u,A++,v,5,m,C,y,T,1)}m=C,g=S,b=E,w=Y,x=k,p=X,y=T}s.push(u)}for(let o=0,l=e.readInt(!0);o<l;o++){let c=e.readInt(!0),f=i.pathConstraints[c];for(let d=0,u=e.readInt(!0);d<u;d++){const m=e.readByte(),g=e.readInt(!0),b=e.readInt(!0);switch(m){case wr:s.push(be(e,new ci(g,b,c),f.positionMode==0?n:1));break;case br:s.push(be(e,new di(g,b,c),f.spacingMode==0||f.spacingMode==1?n:1));break;case vr:let w=new fi(g,b,c),x=e.readFloat(),p=e.readFloat(),y=e.readFloat(),v=e.readFloat();for(let A=0,C=0,S=w.getFrameCount()-1;w.setFrame(A,x,p,y,v),A!=S;A++){let E=e.readFloat(),Y=e.readFloat(),k=e.readFloat(),X=e.readFloat();switch(e.readByte()){case Xe:w.setStepped(A);break;case Le:oe(e,w,C++,A,0,x,E,p,Y,1),oe(e,w,C++,A,1,x,E,y,k,1),oe(e,w,C++,A,2,x,E,v,X,1)}x=E,p=Y,y=k,v=X}s.push(w)}}}for(let o=0,l=e.readInt(!0);o<l;o++){const c=e.readInt(!0)-1;for(let f=0,d=e.readInt(!0);f<d;f++){const u=e.readByte(),m=e.readInt(!0);if(u==Er){const b=new vt(m,c);for(let w=0;w<m;w++)b.setFrame(w,e.readFloat());s.push(b);continue}const g=e.readInt(!0);switch(u){case yr:s.push(be(e,new ui(m,g,c),1));break;case Ar:s.push(be(e,new mi(m,g,c),1));break;case Cr:s.push(be(e,new gi(m,g,c),1));break;case Sr:s.push(be(e,new xi(m,g,c),1));break;case Ir:s.push(be(e,new pi(m,g,c),1));break;case Tr:s.push(be(e,new wi(m,g,c),1));break;case Mr:s.push(be(e,new bi(m,g,c),1))}}}for(let o=0,l=e.readInt(!0);o<l;o++){let c=i.skins[e.readInt(!0)];for(let f=0,d=e.readInt(!0);f<d;f++){let u=e.readInt(!0);for(let m=0,g=e.readInt(!0);m<g;m++){let b=e.readStringRef();if(!b)throw new Error("attachmentName must not be null.");let w=c.getAttachment(u,b),x=e.readByte(),p=e.readInt(!0),y=p-1;switch(x){case xr:{let v=w,A=v.bones,C=v.vertices,S=A?C.length/3*2:C.length,E=e.readInt(!0),Y=new li(p,E,u,v),k=e.readFloat();for(let X=0,T=0;;X++){let R,F=e.readInt(!0);if(F==0)R=A?P.newFloatArray(S):C;else{R=P.newFloatArray(S);let se=e.readInt(!0);if(F+=se,n==1)for(let te=se;te<F;te++)R[te]=e.readFloat();else for(let te=se;te<F;te++)R[te]=e.readFloat()*n;if(!A)for(let te=0,he=R.length;te<he;te++)R[te]+=C[te]}if(Y.setFrame(X,k,R),X==y)break;let ie=e.readFloat();switch(e.readByte()){case Xe:Y.setStepped(X);break;case Le:oe(e,Y,T++,X,0,k,ie,0,1,1)}k=ie}s.push(Y);break}case pr:{let v=new $e(p,u,w);for(let A=0;A<p;A++){let C=e.readFloat(),S=e.readInt32();v.setFrame(A,C,is[S&15],S>>4,e.readFloat())}s.push(v);break}}}}}let h=e.readInt(!0);if(h>0){let o=new Ge(h),l=i.slots.length;for(let c=0;c<h;c++){let f=e.readFloat(),d=e.readInt(!0),u=P.newArray(l,0);for(let w=l-1;w>=0;w--)u[w]=-1;let m=P.newArray(l-d,0),g=0,b=0;for(let w=0;w<d;w++){let x=e.readInt(!0);for(;g!=x;)m[b++]=g++;u[g+e.readInt(!0)]=g++}for(;g<l;)m[b++]=g++;for(let w=l-1;w>=0;w--)u[w]==-1&&(u[w]=m[--b]);o.setFrame(c,f,u)}s.push(o)}let a=e.readInt(!0);if(a>0){let o=new ht(a);for(let l=0;l<a;l++){let c=e.readFloat(),f=i.events[e.readInt(!0)],d=new Yi(c,f);d.intValue=e.readInt(!1),d.floatValue=e.readFloat(),d.stringValue=e.readString(),d.stringValue==null&&(d.stringValue=f.stringValue),d.data.audioPath&&(d.volume=e.readFloat(),d.balance=e.readFloat()),o.setFrame(l,d)}s.push(o)}let r=0;for(let o=0,l=s.length;o<l;o++)r=Math.max(r,s[o].getDuration());return new wt(t,s,r)}},Ss=class{constructor(e,t=new Array,i=0,s=new DataView(e instanceof ArrayBuffer?e:e.buffer)){this.strings=t,this.index=i,this.buffer=s}readByte(){return this.buffer.getInt8(this.index++)}readUnsignedByte(){return this.buffer.getUint8(this.index++)}readShort(){let e=this.buffer.getInt16(this.index);return this.index+=2,e}readInt32(){let e=this.buffer.getInt32(this.index);return this.index+=4,e}readInt(e){let t=this.readByte(),i=t&127;return t&128&&(t=this.readByte(),i|=(t&127)<<7,t&128&&(t=this.readByte(),i|=(t&127)<<14,t&128&&(t=this.readByte(),i|=(t&127)<<21,t&128&&(t=this.readByte(),i|=(t&127)<<28)))),e?i:i>>>1^-(i&1)}readStringRef(){let e=this.readInt(!0);return e==0?null:this.strings[e-1]}readString(){let e=this.readInt(!0);switch(e){case 0:return null;case 1:return""}e--;let t="",i=0;for(let s=0;s<e;){let n=this.readUnsignedByte();switch(n>>4){case 12:case 13:t+=String.fromCharCode((n&31)<<6|this.readByte()&63),s+=2;break;case 14:t+=String.fromCharCode((n&15)<<12|(this.readByte()&63)<<6|this.readByte()&63),s+=3;break;default:t+=String.fromCharCode(n),s++}}return t}readFloat(){let e=this.buffer.getFloat32(this.index);return this.index+=4,e}readBoolean(){return this.readByte()!=0}},Js=class{parent;skinIndex;slotIndex;mesh;inheritTimeline;constructor(e,t,i,s,n){this.mesh=e,this.skinIndex=t,this.slotIndex=i,this.parent=s,this.inheritTimeline=n}},Qs=class{constructor(e=null,t=null,i=0){this.bones=e,this.vertices=t,this.length=i}},ze=(e=>(e[e.Region=0]="Region",e[e.BoundingBox=1]="BoundingBox",e[e.Mesh=2]="Mesh",e[e.LinkedMesh=3]="LinkedMesh",e[e.Path=4]="Path",e[e.Point=5]="Point",e[e.Clipping=6]="Clipping",e))(ze||{});function be(e,t,i){let s=e.readFloat(),n=e.readFloat()*i;for(let h=0,a=0,r=t.getFrameCount()-1;t.setFrame(h,s,n),h!=r;h++){let o=e.readFloat(),l=e.readFloat()*i;switch(e.readByte()){case Xe:t.setStepped(h);break;case Le:oe(e,t,a++,h,0,s,o,n,l,i)}s=o,n=l}return t}function Oi(e,t,i){let s=e.readFloat(),n=e.readFloat()*i,h=e.readFloat()*i;for(let a=0,r=0,o=t.getFrameCount()-1;t.setFrame(a,s,n,h),a!=o;a++){let l=e.readFloat(),c=e.readFloat()*i,f=e.readFloat()*i;switch(e.readByte()){case Xe:t.setStepped(a);break;case Le:oe(e,t,r++,a,0,s,l,n,c,i),oe(e,t,r++,a,1,s,l,h,f,i)}s=l,n=c,h=f}return t}function oe(e,t,i,s,n,h,a,r,o,l){t.setBezier(i,s,n,h,r,e.readFloat(),e.readFloat()*l,e.readFloat(),e.readFloat()*l,a,o)}var $s=0,er=1,tr=2,ir=3,sr=4,rr=5,nr=6,ar=7,lr=8,or=9,hr=10,cr=0,dr=1,fr=2,ur=3,mr=4,gr=5,xr=0,pr=1,wr=0,br=1,vr=2,yr=0,Ar=1,Cr=2,Sr=4,Ir=5,Tr=6,Mr=7,Er=8,Xe=1,Le=2,Is=class{minX=0;minY=0;maxX=0;maxY=0;boundingBoxes=new Array;polygons=new Array;polygonPool=new lt(()=>P.newFloatArray(16));update(e,t){if(!e)throw new Error("skeleton cannot be null.");let i=this.boundingBoxes,s=this.polygons,n=this.polygonPool,h=e.slots,a=h.length;i.length=0,n.freeAll(s),s.length=0;for(let r=0;r<a;r++){let o=h[r];if(!o.bone.active)continue;let l=o.getAttachment();if(l instanceof St){let c=l;i.push(c);let f=n.obtain();f.length!=c.worldVerticesLength&&(f=P.newFloatArray(c.worldVerticesLength)),s.push(f),c.computeWorldVertices(o,0,c.worldVerticesLength,f,0,2)}}t?this.aabbCompute():(this.minX=Number.POSITIVE_INFINITY,this.minY=Number.POSITIVE_INFINITY,this.maxX=Number.NEGATIVE_INFINITY,this.maxY=Number.NEGATIVE_INFINITY)}aabbCompute(){let e=Number.POSITIVE_INFINITY,t=Number.POSITIVE_INFINITY,i=Number.NEGATIVE_INFINITY,s=Number.NEGATIVE_INFINITY,n=this.polygons;for(let h=0,a=n.length;h<a;h++){let r=n[h],o=r;for(let l=0,c=r.length;l<c;l+=2){let f=o[l],d=o[l+1];e=Math.min(e,f),t=Math.min(t,d),i=Math.max(i,f),s=Math.max(s,d)}}this.minX=e,this.minY=t,this.maxX=i,this.maxY=s}aabbContainsPoint(e,t){return e>=this.minX&&e<=this.maxX&&t>=this.minY&&t<=this.maxY}aabbIntersectsSegment(e,t,i,s){let n=this.minX,h=this.minY,a=this.maxX,r=this.maxY;if(e<=n&&i<=n||t<=h&&s<=h||e>=a&&i>=a||t>=r&&s>=r)return!1;let o=(s-t)/(i-e),l=o*(n-e)+t;if(l>h&&l<r||(l=o*(a-e)+t,l>h&&l<r))return!0;let c=(h-t)/o+e;return c>n&&c<a||(c=(r-t)/o+e,c>n&&c<a)}aabbIntersectsSkeleton(e){return this.minX<e.maxX&&this.maxX>e.minX&&this.minY<e.maxY&&this.maxY>e.minY}containsPoint(e,t){let i=this.polygons;for(let s=0,n=i.length;s<n;s++)if(this.containsPointPolygon(i[s],e,t))return this.boundingBoxes[s];return null}containsPointPolygon(e,t,i){let s=e,n=e.length,h=n-2,a=!1;for(let r=0;r<n;r+=2){let o=s[r+1],l=s[h+1];if(o<i&&l>=i||l<i&&o>=i){let c=s[r];c+(i-o)/(l-o)*(s[h]-c)<t&&(a=!a)}h=r}return a}intersectsSegment(e,t,i,s){let n=this.polygons;for(let h=0,a=n.length;h<a;h++)if(this.intersectsSegmentPolygon(n[h],e,t,i,s))return this.boundingBoxes[h];return null}intersectsSegmentPolygon(e,t,i,s,n){let h=e,a=e.length,r=t-s,o=i-n,l=t*n-i*s,c=h[a-2],f=h[a-1];for(let d=0;d<a;d+=2){let u=h[d],m=h[d+1],g=c*m-f*u,b=c-u,w=f-m,x=r*w-o*b,p=(l*b-r*g)/x;if((p>=c&&p<=u||p>=u&&p<=c)&&(p>=t&&p<=s||p>=s&&p<=t)){let y=(l*w-o*g)/x;if((y>=f&&y<=m||y>=m&&y<=f)&&(y>=i&&y<=n||y>=n&&y<=i))return!0}c=u,f=m}return!1}getPolygon(e){if(!e)throw new Error("boundingBox cannot be null.");let t=this.boundingBoxes.indexOf(e);return t==-1?null:this.polygons[t]}getWidth(){return this.maxX-this.minX}getHeight(){return this.maxY-this.minY}},Se=class{convexPolygons=new Array;convexPolygonsIndices=new Array;indicesArray=new Array;isConcaveArray=new Array;triangles=new Array;polygonPool=new lt(()=>new Array);polygonIndicesPool=new lt(()=>new Array);triangulate(e){let t=e,i=e.length>>1,s=this.indicesArray;s.length=0;for(let a=0;a<i;a++)s[a]=a;let n=this.isConcaveArray;n.length=0;for(let a=0,r=i;a<r;++a)n[a]=Se.isConcave(a,i,t,s);let h=this.triangles;for(h.length=0;i>3;){let a=i-1,r=0,o=1;for(;;){e:if(!n[r]){let f=s[a]<<1,d=s[r]<<1,u=s[o]<<1,m=t[f],g=t[f+1],b=t[d],w=t[d+1],x=t[u],p=t[u+1];for(let y=(o+1)%i;y!=a;y=(y+1)%i){if(!n[y])continue;let v=s[y]<<1,A=t[v],C=t[v+1];if(Se.positiveArea(x,p,m,g,A,C)&&Se.positiveArea(m,g,b,w,A,C)&&Se.positiveArea(b,w,x,p,A,C))break e}break}if(o==0){do{if(!n[r])break;r--}while(r>0);break}a=r,r=o,o=(o+1)%i}h.push(s[(i+r-1)%i]),h.push(s[r]),h.push(s[(r+1)%i]),s.splice(r,1),n.splice(r,1),i--;let l=(i+r-1)%i,c=r==i?0:r;n[l]=Se.isConcave(l,i,t,s),n[c]=Se.isConcave(c,i,t,s)}return i==3&&(h.push(s[2]),h.push(s[0]),h.push(s[1])),h}decompose(e,t){let i=e,s=this.convexPolygons;this.polygonPool.freeAll(s),s.length=0;let n=this.convexPolygonsIndices;this.polygonIndicesPool.freeAll(n),n.length=0;let h=this.polygonIndicesPool.obtain();h.length=0;let a=this.polygonPool.obtain();a.length=0;let r=-1,o=0;for(let l=0,c=t.length;l<c;l+=3){let f=t[l]<<1,d=t[l+1]<<1,u=t[l+2]<<1,m=i[f],g=i[f+1],b=i[d],w=i[d+1],x=i[u],p=i[u+1],y=!1;if(r==f){let v=a.length-4,A=Se.winding(a[v],a[v+1],a[v+2],a[v+3],x,p),C=Se.winding(x,p,a[0],a[1],a[2],a[3]);A==o&&C==o&&(a.push(x),a.push(p),h.push(u),y=!0)}y||(a.length>0?(s.push(a),n.push(h)):(this.polygonPool.free(a),this.polygonIndicesPool.free(h)),a=this.polygonPool.obtain(),a.length=0,a.push(m),a.push(g),a.push(b),a.push(w),a.push(x),a.push(p),h=this.polygonIndicesPool.obtain(),h.length=0,h.push(f),h.push(d),h.push(u),o=Se.winding(m,g,b,w,x,p),r=f)}a.length>0&&(s.push(a),n.push(h));for(let l=0,c=s.length;l<c;l++){if(h=n[l],h.length==0)continue;let f=h[0],d=h[h.length-1];a=s[l];let u=a.length-4,m=a[u],g=a[u+1],b=a[u+2],w=a[u+3],x=a[0],p=a[1],y=a[2],v=a[3],A=Se.winding(m,g,b,w,x,p);for(let C=0;C<c;C++){if(C==l)continue;let S=n[C];if(S.length!=3)continue;let E=S[0],Y=S[1],k=S[2],X=s[C],T=X[X.length-2],R=X[X.length-1];if(E!=f||Y!=d)continue;let F=Se.winding(m,g,b,w,T,R),ie=Se.winding(T,R,x,p,y,v);F==A&&ie==A&&(X.length=0,S.length=0,a.push(T),a.push(R),h.push(k),m=b,g=w,b=T,w=R,C=0)}}for(let l=s.length-1;l>=0;l--)a=s[l],a.length==0&&(s.splice(l,1),this.polygonPool.free(a),h=n[l],n.splice(l,1),this.polygonIndicesPool.free(h));return s}static isConcave(e,t,i,s){let n=s[(t+e-1)%t]<<1,h=s[e]<<1,a=s[(e+1)%t]<<1;return!this.positiveArea(i[n],i[n+1],i[h],i[h+1],i[a],i[a+1])}static positiveArea(e,t,i,s,n,h){return e*(h-s)+i*(t-h)+n*(s-t)>=0}static winding(e,t,i,s,n,h){let a=i-e,r=s-t;return n*r-h*a+a*t-e*r>=0?1:-1}},Ft=class{triangulator=new Se;clippingPolygon=new Array;clipOutput=new Array;clippedVertices=new Array;clippedUVs=new Array;clippedTriangles=new Array;scratch=new Array;clipAttachment=null;clippingPolygons=null;clipStart(e,t){if(this.clipAttachment)return 0;this.clipAttachment=t;let i=t.worldVerticesLength,s=P.setArraySize(this.clippingPolygon,i);t.computeWorldVertices(e,0,i,s,0,2);let n=this.clippingPolygon;Ft.makeClockwise(n);let h=this.clippingPolygons=this.triangulator.decompose(n,this.triangulator.triangulate(n));for(let a=0,r=h.length;a<r;a++){let o=h[a];Ft.makeClockwise(o),o.push(o[0]),o.push(o[1])}return h.length}clipEndWithSlot(e){this.clipAttachment&&this.clipAttachment.endSlot==e.data&&this.clipEnd()}clipEnd(){this.clipAttachment&&(this.clipAttachment=null,this.clippingPolygons=null,this.clippedVertices.length=0,this.clippedTriangles.length=0,this.clippingPolygon.length=0)}isClipping(){return this.clipAttachment!=null}clipTriangles(e,t,i,s,n,h,a,r){let o,l,c,f,d,u;typeof t=="number"?(o=i,l=s,c=n,f=h,d=a,u=r):(o=t,l=i,c=s,f=n,d=h,u=a),c&&f&&d&&typeof u=="boolean"?this.clipTrianglesRender(e,o,l,c,f,d,u):this.clipTrianglesNoRender(e,o,l)}clipTrianglesNoRender(e,t,i){let s=this.clipOutput,n=this.clippedVertices,h=this.clippedTriangles,a=this.clippingPolygons,r=a.length,o=0;n.length=0,h.length=0;for(let l=0;l<i;l+=3){let c=t[l]<<1,f=e[c],d=e[c+1];c=t[l+1]<<1;let u=e[c],m=e[c+1];c=t[l+2]<<1;let g=e[c],b=e[c+1];for(let w=0;w<r;w++){let x=n.length;if(this.clip(f,d,u,m,g,b,a[w],s)){let p=s.length;if(p==0)continue;let y=p>>1,v=this.clipOutput,A=P.setArraySize(n,x+y*2);for(let S=0;S<p;S+=2,x+=2){let E=v[S],Y=v[S+1];A[x]=E,A[x+1]=Y}x=h.length;let C=P.setArraySize(h,x+3*(y-2));y--;for(let S=1;S<y;S++,x+=3)C[x]=o,C[x+1]=o+S,C[x+2]=o+S+1;o+=y+1}else{let p=P.setArraySize(n,x+6);p[x]=f,p[x+1]=d,p[x+2]=u,p[x+3]=m,p[x+4]=g,p[x+5]=b,x=h.length;let y=P.setArraySize(h,x+3);y[x]=o,y[x+1]=o+1,y[x+2]=o+2,o+=3;break}}}}clipTrianglesRender(e,t,i,s,n,h,a){let r=this.clipOutput,o=this.clippedVertices,l=this.clippedTriangles,c=this.clippingPolygons,f=c.length,d=a?12:8,u=0;o.length=0,l.length=0;for(let m=0;m<i;m+=3){let g=t[m]<<1,b=e[g],w=e[g+1],x=s[g],p=s[g+1];g=t[m+1]<<1;let y=e[g],v=e[g+1],A=s[g],C=s[g+1];g=t[m+2]<<1;let S=e[g],E=e[g+1],Y=s[g],k=s[g+1];for(let X=0;X<f;X++){let T=o.length;if(this.clip(b,w,y,v,S,E,c[X],r)){let R=r.length;if(R==0)continue;let F=v-E,ie=S-y,se=b-S,te=E-w,he=1/(F*se+ie*(w-E)),de=R>>1,fe=this.clipOutput,W=P.setArraySize(o,T+de*d);for(let ae=0;ae<R;ae+=2,T+=d){let Ie=fe[ae],Ae=fe[ae+1];W[T]=Ie,W[T+1]=Ae,W[T+2]=n.r,W[T+3]=n.g,W[T+4]=n.b,W[T+5]=n.a;let ge=Ie-S,pe=Ae-E,we=(F*ge+ie*pe)*he,Ve=(te*ge+se*pe)*he,nt=1-we-Ve;W[T+6]=x*we+A*Ve+Y*nt,W[T+7]=p*we+C*Ve+k*nt,a&&(W[T+8]=h.r,W[T+9]=h.g,W[T+10]=h.b,W[T+11]=h.a)}T=l.length;let ne=P.setArraySize(l,T+3*(de-2));de--;for(let ae=1;ae<de;ae++,T+=3)ne[T]=u,ne[T+1]=u+ae,ne[T+2]=u+ae+1;u+=de+1}else{let R=P.setArraySize(o,T+3*d);R[T]=b,R[T+1]=w,R[T+2]=n.r,R[T+3]=n.g,R[T+4]=n.b,R[T+5]=n.a,a?(R[T+6]=x,R[T+7]=p,R[T+8]=h.r,R[T+9]=h.g,R[T+10]=h.b,R[T+11]=h.a,R[T+12]=y,R[T+13]=v,R[T+14]=n.r,R[T+15]=n.g,R[T+16]=n.b,R[T+17]=n.a,R[T+18]=A,R[T+19]=C,R[T+20]=h.r,R[T+21]=h.g,R[T+22]=h.b,R[T+23]=h.a,R[T+24]=S,R[T+25]=E,R[T+26]=n.r,R[T+27]=n.g,R[T+28]=n.b,R[T+29]=n.a,R[T+30]=Y,R[T+31]=k,R[T+32]=h.r,R[T+33]=h.g,R[T+34]=h.b,R[T+35]=h.a):(R[T+6]=x,R[T+7]=p,R[T+8]=y,R[T+9]=v,R[T+10]=n.r,R[T+11]=n.g,R[T+12]=n.b,R[T+13]=n.a,R[T+14]=A,R[T+15]=C,R[T+16]=S,R[T+17]=E,R[T+18]=n.r,R[T+19]=n.g,R[T+20]=n.b,R[T+21]=n.a,R[T+22]=Y,R[T+23]=k),T=l.length;let F=P.setArraySize(l,T+3);F[T]=u,F[T+1]=u+1,F[T+2]=u+2,u+=3;break}}}}clipTrianglesUnpacked(e,t,i,s){let n=this.clipOutput,h=this.clippedVertices,a=this.clippedUVs,r=this.clippedTriangles,o=this.clippingPolygons,l=o.length,c=0;h.length=0,a.length=0,r.length=0;for(let f=0;f<i;f+=3){let d=t[f]<<1,u=e[d],m=e[d+1],g=s[d],b=s[d+1];d=t[f+1]<<1;let w=e[d],x=e[d+1],p=s[d],y=s[d+1];d=t[f+2]<<1;let v=e[d],A=e[d+1],C=s[d],S=s[d+1];for(let E=0;E<l;E++){let Y=h.length;if(this.clip(u,m,w,x,v,A,o[E],n)){let k=n.length;if(k==0)continue;let X=x-A,T=v-w,R=u-v,F=A-m,ie=1/(X*R+T*(m-A)),se=k>>1,te=this.clipOutput,he=P.setArraySize(h,Y+se*2),de=P.setArraySize(a,Y+se*2);for(let W=0;W<k;W+=2,Y+=2){let ne=te[W],ae=te[W+1];he[Y]=ne,he[Y+1]=ae;let Ie=ne-v,Ae=ae-A,ge=(X*Ie+T*Ae)*ie,pe=(F*Ie+R*Ae)*ie,we=1-ge-pe;de[Y]=g*ge+p*pe+C*we,de[Y+1]=b*ge+y*pe+S*we}Y=r.length;let fe=P.setArraySize(r,Y+3*(se-2));se--;for(let W=1;W<se;W++,Y+=3)fe[Y]=c,fe[Y+1]=c+W,fe[Y+2]=c+W+1;c+=se+1}else{let k=P.setArraySize(h,Y+6);k[Y]=u,k[Y+1]=m,k[Y+2]=w,k[Y+3]=x,k[Y+4]=v,k[Y+5]=A;let X=P.setArraySize(a,Y+3*2);X[Y]=g,X[Y+1]=b,X[Y+2]=p,X[Y+3]=y,X[Y+4]=C,X[Y+5]=S,Y=r.length;let T=P.setArraySize(r,Y+3);T[Y]=c,T[Y+1]=c+1,T[Y+2]=c+2,c+=3;break}}}}clip(e,t,i,s,n,h,a,r){let o=r,l=!1,c;a.length%4>=2?(c=r,r=this.scratch):c=this.scratch,c.length=0,c.push(e),c.push(t),c.push(i),c.push(s),c.push(n),c.push(h),c.push(e),c.push(t),r.length=0;let f=a.length-4,d=a;for(let u=0;;u+=2){let m=d[u],g=d[u+1],b=m-d[u+2],w=g-d[u+3],x=r.length,p=c;for(let v=0,A=c.length-2;v<A;){let C=p[v],S=p[v+1];v+=2;let E=p[v],Y=p[v+1],k=w*(m-E)>b*(g-Y),X=w*(m-C)-b*(g-S);if(X>0){if(k){r.push(E),r.push(Y);continue}let T=E-C,R=Y-S,F=X/(T*w-R*b);if(F>=0&&F<=1)r.push(C+T*F),r.push(S+R*F);else{r.push(E),r.push(Y);continue}}else if(k){let T=E-C,R=Y-S,F=X/(T*w-R*b);if(F>=0&&F<=1)r.push(C+T*F),r.push(S+R*F),r.push(E),r.push(Y);else{r.push(E),r.push(Y);continue}}l=!0}if(x==r.length)return o.length=0,!0;if(r.push(r[0]),r.push(r[1]),u==f)break;let y=r;r=c,r.length=0,c=y}if(o!=r){o.length=0;for(let u=0,m=r.length-2;u<m;u++)o[u]=r[u]}else o.length=o.length-2;return l}static makeClockwise(e){let t=e,i=e.length,s=t[i-2]*t[1]-t[0]*t[i-1],n=0,h=0,a=0,r=0;for(let o=0,l=i-3;o<l;o+=2)n=t[o],h=t[o+1],a=t[o+2],r=t[o+3],s+=n*r-a*h;if(!(s<0))for(let o=0,l=i-2,c=i>>1;o<c;o+=2){let f=t[o],d=t[o+1],u=l-o;t[o]=t[u],t[o+1]=t[u+1],t[u]=f,t[u+1]=d}}},Yr=class{attachmentLoader;scale=1;linkedMeshes=new Array;constructor(e){this.attachmentLoader=e}readSkeletonData(e){let t=this.scale,i=new Li,s=typeof e=="string"?JSON.parse(e):e,n=s.skeleton;if(n&&(i.hash=n.hash,i.version=n.spine,i.x=n.x,i.y=n.y,i.width=n.width,i.height=n.height,i.referenceScale=M(n,"referenceScale",100)*t,i.fps=n.fps,i.imagesPath=n.images??null,i.audioPath=n.audio??null),s.bones)for(let h=0;h<s.bones.length;h++){let a=s.bones[h],r=null,o=M(a,"parent",null);o&&(r=i.findBone(o));let l=new Ti(i.bones.length,a.name,r);l.length=M(a,"length",0)*t,l.x=M(a,"x",0)*t,l.y=M(a,"y",0)*t,l.rotation=M(a,"rotation",0),l.scaleX=M(a,"scaleX",1),l.scaleY=M(a,"scaleY",1),l.shearX=M(a,"shearX",0),l.shearY=M(a,"shearY",0),l.inherit=P.enumValue(ct,M(a,"inherit","Normal")),l.skinRequired=M(a,"skin",!1);let c=M(a,"color",null);c&&l.color.setFromString(c),i.bones.push(l)}if(s.slots)for(let h=0;h<s.slots.length;h++){let a=s.slots[h],r=a.name,o=i.findBone(a.bone);if(!o)throw new Error(`Couldn't find bone ${a.bone} for slot ${r}`);let l=new Bi(i.slots.length,r,o),c=M(a,"color",null);c&&l.color.setFromString(c);let f=M(a,"dark",null);f&&(l.darkColor=V.fromString(f)),l.attachmentName=M(a,"attachment",null),l.blendMode=P.enumValue(kt,M(a,"blend","normal")),l.visible=M(a,"visible",!0),i.slots.push(l)}if(s.ik)for(let h=0;h<s.ik.length;h++){let a=s.ik[h],r=new ki(a.name);r.order=M(a,"order",0),r.skinRequired=M(a,"skin",!1);for(let l=0;l<a.bones.length;l++){let c=i.findBone(a.bones[l]);if(!c)throw new Error(`Couldn't find bone ${a.bones[l]} for IK constraint ${a.name}.`);r.bones.push(c)}let o=i.findBone(a.target);if(!o)throw new Error(`Couldn't find target bone ${a.target} for IK constraint ${a.name}.`);r.target=o,r.mix=M(a,"mix",1),r.softness=M(a,"softness",0)*t,r.bendDirection=M(a,"bendPositive",!0)?1:-1,r.compress=M(a,"compress",!1),r.stretch=M(a,"stretch",!1),r.uniform=M(a,"uniform",!1),i.ikConstraints.push(r)}if(s.transform)for(let h=0;h<s.transform.length;h++){let a=s.transform[h],r=new Vi(a.name);r.order=M(a,"order",0),r.skinRequired=M(a,"skin",!1);for(let c=0;c<a.bones.length;c++){let f=a.bones[c],d=i.findBone(f);if(!d)throw new Error(`Couldn't find bone ${f} for transform constraint ${a.name}.`);r.bones.push(d)}let o=a.target,l=i.findBone(o);if(!l)throw new Error(`Couldn't find target bone ${o} for transform constraint ${a.name}.`);r.target=l,r.local=M(a,"local",!1),r.relative=M(a,"relative",!1),r.offsetRotation=M(a,"rotation",0),r.offsetX=M(a,"x",0)*t,r.offsetY=M(a,"y",0)*t,r.offsetScaleX=M(a,"scaleX",0),r.offsetScaleY=M(a,"scaleY",0),r.offsetShearY=M(a,"shearY",0),r.mixRotate=M(a,"mixRotate",1),r.mixX=M(a,"mixX",1),r.mixY=M(a,"mixY",r.mixX),r.mixScaleX=M(a,"mixScaleX",1),r.mixScaleY=M(a,"mixScaleY",r.mixScaleX),r.mixShearY=M(a,"mixShearY",1),i.transformConstraints.push(r)}if(s.path)for(let h=0;h<s.path.length;h++){let a=s.path[h],r=new Fi(a.name);r.order=M(a,"order",0),r.skinRequired=M(a,"skin",!1);for(let c=0;c<a.bones.length;c++){let f=a.bones[c],d=i.findBone(f);if(!d)throw new Error(`Couldn't find bone ${f} for path constraint ${a.name}.`);r.bones.push(d)}let o=a.target,l=i.findSlot(o);if(!l)throw new Error(`Couldn't find target slot ${o} for path constraint ${a.name}.`);r.target=l,r.positionMode=P.enumValue(Tt,M(a,"positionMode","Percent")),r.spacingMode=P.enumValue(Mt,M(a,"spacingMode","Length")),r.rotateMode=P.enumValue(Et,M(a,"rotateMode","Tangent")),r.offsetRotation=M(a,"rotation",0),r.position=M(a,"position",0),r.positionMode==0&&(r.position*=t),r.spacing=M(a,"spacing",0),(r.spacingMode==0||r.spacingMode==1)&&(r.spacing*=t),r.mixRotate=M(a,"mixRotate",1),r.mixX=M(a,"mixX",1),r.mixY=M(a,"mixY",r.mixX),i.pathConstraints.push(r)}if(s.physics)for(let h=0;h<s.physics.length;h++){const a=s.physics[h],r=new Cs(a.name);r.order=M(a,"order",0),r.skinRequired=M(a,"skin",!1);const o=a.bone,l=i.findBone(o);if(l==null)throw new Error("Physics bone not found: "+o);r.bone=l,r.x=M(a,"x",0),r.y=M(a,"y",0),r.rotate=M(a,"rotate",0),r.scaleX=M(a,"scaleX",0),r.shearX=M(a,"shearX",0),r.limit=M(a,"limit",5e3)*t,r.step=1/M(a,"fps",60),r.inertia=M(a,"inertia",1),r.strength=M(a,"strength",100),r.damping=M(a,"damping",1),r.massInverse=1/M(a,"mass",1),r.wind=M(a,"wind",0),r.gravity=M(a,"gravity",0),r.mix=M(a,"mix",1),r.inertiaGlobal=M(a,"inertiaGlobal",!1),r.strengthGlobal=M(a,"strengthGlobal",!1),r.dampingGlobal=M(a,"dampingGlobal",!1),r.massGlobal=M(a,"massGlobal",!1),r.windGlobal=M(a,"windGlobal",!1),r.gravityGlobal=M(a,"gravityGlobal",!1),r.mixGlobal=M(a,"mixGlobal",!1),i.physicsConstraints.push(r)}if(s.skins)for(let h=0;h<s.skins.length;h++){let a=s.skins[h],r=new Rt(a.name);if(a.bones)for(let o=0;o<a.bones.length;o++){let l=a.bones[o],c=i.findBone(l);if(!c)throw new Error(`Couldn't find bone ${l} for skin ${a.name}.`);r.bones.push(c)}if(a.ik)for(let o=0;o<a.ik.length;o++){let l=a.ik[o],c=i.findIkConstraint(l);if(!c)throw new Error(`Couldn't find IK constraint ${l} for skin ${a.name}.`);r.constraints.push(c)}if(a.transform)for(let o=0;o<a.transform.length;o++){let l=a.transform[o],c=i.findTransformConstraint(l);if(!c)throw new Error(`Couldn't find transform constraint ${l} for skin ${a.name}.`);r.constraints.push(c)}if(a.path)for(let o=0;o<a.path.length;o++){let l=a.path[o],c=i.findPathConstraint(l);if(!c)throw new Error(`Couldn't find path constraint ${l} for skin ${a.name}.`);r.constraints.push(c)}if(a.physics)for(let o=0;o<a.physics.length;o++){let l=a.physics[o],c=i.findPhysicsConstraint(l);if(!c)throw new Error(`Couldn't find physics constraint ${l} for skin ${a.name}.`);r.constraints.push(c)}for(let o in a.attachments){let l=i.findSlot(o);if(!l)throw new Error(`Couldn't find slot ${o} for skin ${a.name}.`);let c=a.attachments[o];for(let f in c){let d=this.readAttachment(c[f],r,l.index,f,i);d&&r.setAttachment(l.index,f,d)}}i.skins.push(r),r.name=="default"&&(i.defaultSkin=r)}for(let h=0,a=this.linkedMeshes.length;h<a;h++){let r=this.linkedMeshes[h],o=r.skin?i.findSkin(r.skin):i.defaultSkin;if(!o)throw new Error(`Skin not found: ${r.skin}`);let l=o.getAttachment(r.slotIndex,r.parent);if(!l)throw new Error(`Parent mesh not found: ${r.parent}`);r.mesh.timelineAttachment=r.inheritTimeline?l:r.mesh,r.mesh.setParentMesh(l),r.mesh.region!=null&&r.mesh.updateRegion()}if(this.linkedMeshes.length=0,s.events)for(let h in s.events){let a=s.events[h],r=new Ri(h);r.intValue=M(a,"int",0),r.floatValue=M(a,"float",0),r.stringValue=M(a,"string",""),r.audioPath=M(a,"audio",null),r.audioPath&&(r.volume=M(a,"volume",1),r.balance=M(a,"balance",0)),i.events.push(r)}if(s.animations)for(let h in s.animations){let a=s.animations[h];this.readAnimation(a,h,i)}return i}readAttachment(e,t,i,s,n){let h=this.scale;switch(s=M(e,"name",s),M(e,"type","region")){case"region":{let a=M(e,"path",s),r=this.readSequence(M(e,"sequence",null)),o=this.attachmentLoader.newRegionAttachment(t,s,a,r);if(!o)return null;o.path=a,o.x=M(e,"x",0)*h,o.y=M(e,"y",0)*h,o.scaleX=M(e,"scaleX",1),o.scaleY=M(e,"scaleY",1),o.rotation=M(e,"rotation",0),o.width=e.width*h,o.height=e.height*h,o.sequence=r;let l=M(e,"color",null);return l&&o.color.setFromString(l),o.region!=null&&o.updateRegion(),o}case"boundingbox":{let a=this.attachmentLoader.newBoundingBoxAttachment(t,s);if(!a)return null;this.readVertices(e,a,e.vertexCount<<1);let r=M(e,"color",null);return r&&a.color.setFromString(r),a}case"mesh":case"linkedmesh":{let a=M(e,"path",s),r=this.readSequence(M(e,"sequence",null)),o=this.attachmentLoader.newMeshAttachment(t,s,a,r);if(!o)return null;o.path=a;let l=M(e,"color",null);l&&o.color.setFromString(l),o.width=M(e,"width",0)*h,o.height=M(e,"height",0)*h,o.sequence=r;let c=M(e,"parent",null);if(c)return this.linkedMeshes.push(new Rr(o,M(e,"skin",null),i,c,M(e,"timelines",!0))),o;let f=e.uvs;return this.readVertices(e,o,f.length),o.triangles=e.triangles,o.regionUVs=f,o.region!=null&&o.updateRegion(),o.edges=M(e,"edges",null),o.hullLength=M(e,"hull",0)*2,o}case"path":{let a=this.attachmentLoader.newPathAttachment(t,s);if(!a)return null;a.closed=M(e,"closed",!1),a.constantSpeed=M(e,"constantSpeed",!0);let r=e.vertexCount;this.readVertices(e,a,r<<1);let o=P.newArray(r/3,0);for(let c=0;c<e.lengths.length;c++)o[c]=e.lengths[c]*h;a.lengths=o;let l=M(e,"color",null);return l&&a.color.setFromString(l),a}case"point":{let a=this.attachmentLoader.newPointAttachment(t,s);if(!a)return null;a.x=M(e,"x",0)*h,a.y=M(e,"y",0)*h,a.rotation=M(e,"rotation",0);let r=M(e,"color",null);return r&&a.color.setFromString(r),a}case"clipping":{let a=this.attachmentLoader.newClippingAttachment(t,s);if(!a)return null;let r=M(e,"end",null);r&&(a.endSlot=n.findSlot(r));let o=e.vertexCount;this.readVertices(e,a,o<<1);let l=M(e,"color",null);return l&&a.color.setFromString(l),a}}return null}readSequence(e){if(e==null)return null;let t=new qt(M(e,"count",0));return t.start=M(e,"start",1),t.digits=M(e,"digits",0),t.setupIndex=M(e,"setup",0),t}readVertices(e,t,i){let s=this.scale;t.worldVerticesLength=i;let n=e.vertices;if(i==n.length){let r=P.toFloatArray(n);if(s!=1)for(let o=0,l=n.length;o<l;o++)r[o]*=s;t.vertices=r;return}let h=new Array,a=new Array;for(let r=0,o=n.length;r<o;){let l=n[r++];a.push(l);for(let c=r+l*4;r<c;r+=4)a.push(n[r]),h.push(n[r+1]*s),h.push(n[r+2]*s),h.push(n[r+3])}t.bones=a,t.vertices=P.toFloatArray(h)}readAnimation(e,t,i){let s=this.scale,n=new Array;if(e.slots)for(let a in e.slots){let r=e.slots[a],o=i.findSlot(a);if(!o)throw new Error("Slot not found: "+a);let l=o.index;for(let c in r){let f=r[c];if(!f)continue;let d=f.length;if(c=="attachment"){let u=new qe(d,l);for(let m=0;m<d;m++){let g=f[m];u.setFrame(m,M(g,"time",0),M(g,"name",null))}n.push(u)}else if(c=="rgba"){let u=new ii(d,d<<2,l),m=f[0],g=M(m,"time",0),b=V.fromString(m.color);for(let w=0,x=0;;w++){u.setFrame(w,g,b.r,b.g,b.b,b.a);let p=f[w+1];if(!p){u.shrink(x);break}let y=M(p,"time",0),v=V.fromString(p.color),A=m.curve;A&&(x=ce(A,u,x,w,0,g,y,b.r,v.r,1),x=ce(A,u,x,w,1,g,y,b.g,v.g,1),x=ce(A,u,x,w,2,g,y,b.b,v.b,1),x=ce(A,u,x,w,3,g,y,b.a,v.a,1)),g=y,b=v,m=p}n.push(u)}else if(c=="rgb"){let u=new si(d,d*3,l),m=f[0],g=M(m,"time",0),b=V.fromString(m.color);for(let w=0,x=0;;w++){u.setFrame(w,g,b.r,b.g,b.b);let p=f[w+1];if(!p){u.shrink(x);break}let y=M(p,"time",0),v=V.fromString(p.color),A=m.curve;A&&(x=ce(A,u,x,w,0,g,y,b.r,v.r,1),x=ce(A,u,x,w,1,g,y,b.g,v.g,1),x=ce(A,u,x,w,2,g,y,b.b,v.b,1)),g=y,b=v,m=p}n.push(u)}else if(c=="alpha")n.push(ke(f,new ri(d,d,l),0,1));else if(c=="rgba2"){let u=new ni(d,d*7,l),m=f[0],g=M(m,"time",0),b=V.fromString(m.light),w=V.fromString(m.dark);for(let x=0,p=0;;x++){u.setFrame(x,g,b.r,b.g,b.b,b.a,w.r,w.g,w.b);let y=f[x+1];if(!y){u.shrink(p);break}let v=M(y,"time",0),A=V.fromString(y.light),C=V.fromString(y.dark),S=m.curve;S&&(p=ce(S,u,p,x,0,g,v,b.r,A.r,1),p=ce(S,u,p,x,1,g,v,b.g,A.g,1),p=ce(S,u,p,x,2,g,v,b.b,A.b,1),p=ce(S,u,p,x,3,g,v,b.a,A.a,1),p=ce(S,u,p,x,4,g,v,w.r,C.r,1),p=ce(S,u,p,x,5,g,v,w.g,C.g,1),p=ce(S,u,p,x,6,g,v,w.b,C.b,1)),g=v,b=A,w=C,m=y}n.push(u)}else if(c=="rgb2"){let u=new ai(d,d*6,l),m=f[0],g=M(m,"time",0),b=V.fromString(m.light),w=V.fromString(m.dark);for(let x=0,p=0;;x++){u.setFrame(x,g,b.r,b.g,b.b,w.r,w.g,w.b);let y=f[x+1];if(!y){u.shrink(p);break}let v=M(y,"time",0),A=V.fromString(y.light),C=V.fromString(y.dark),S=m.curve;S&&(p=ce(S,u,p,x,0,g,v,b.r,A.r,1),p=ce(S,u,p,x,1,g,v,b.g,A.g,1),p=ce(S,u,p,x,2,g,v,b.b,A.b,1),p=ce(S,u,p,x,3,g,v,w.r,C.r,1),p=ce(S,u,p,x,4,g,v,w.g,C.g,1),p=ce(S,u,p,x,5,g,v,w.b,C.b,1)),g=v,b=A,w=C,m=y}n.push(u)}}}if(e.bones)for(let a in e.bones){let r=e.bones[a],o=i.findBone(a);if(!o)throw new Error("Bone not found: "+a);let l=o.index;for(let c in r){let f=r[c],d=f.length;if(d!=0){if(c==="rotate")n.push(ke(f,new ot(d,d,l),0,1));else if(c==="translate"){let u=new Gt(d,d<<1,l);n.push(Di(f,u,"x","y",0,s))}else if(c==="translatex"){let u=new Ht(d,d,l);n.push(ke(f,u,0,s))}else if(c==="translatey"){let u=new jt(d,d,l);n.push(ke(f,u,0,s))}else if(c==="scale"){let u=new Zt(d,d<<1,l);n.push(Di(f,u,"x","y",1,1))}else if(c==="scalex"){let u=new Kt(d,d,l);n.push(ke(f,u,1,1))}else if(c==="scaley"){let u=new Jt(d,d,l);n.push(ke(f,u,1,1))}else if(c==="shear"){let u=new Qt(d,d<<1,l);n.push(Di(f,u,"x","y",0,1))}else if(c==="shearx"){let u=new $t(d,d,l);n.push(ke(f,u,0,1))}else if(c==="sheary"){let u=new ei(d,d,l);n.push(ke(f,u,0,1))}else if(c==="inherit"){let u=new ti(d,o.index);for(let m=0;m<f.length;m++){let g=f[m];u.setFrame(m,M(g,"time",0),P.enumValue(ct,M(g,"inherit","Normal")))}n.push(u)}}}}if(e.ik)for(let a in e.ik){let r=e.ik[a],o=r[0];if(!o)continue;let l=i.findIkConstraint(a);if(!l)throw new Error("IK Constraint not found: "+a);let c=i.ikConstraints.indexOf(l),f=new oi(r.length,r.length<<1,c),d=M(o,"time",0),u=M(o,"mix",1),m=M(o,"softness",0)*s;for(let g=0,b=0;;g++){f.setFrame(g,d,u,m,M(o,"bendPositive",!0)?1:-1,M(o,"compress",!1),M(o,"stretch",!1));let w=r[g+1];if(!w){f.shrink(b);break}let x=M(w,"time",0),p=M(w,"mix",1),y=M(w,"softness",0)*s,v=o.curve;v&&(b=ce(v,f,b,g,0,d,x,u,p,1),b=ce(v,f,b,g,1,d,x,m,y,s)),d=x,u=p,m=y,o=w}n.push(f)}if(e.transform)for(let a in e.transform){let r=e.transform[a],o=r[0];if(!o)continue;let l=i.findTransformConstraint(a);if(!l)throw new Error("Transform constraint not found: "+a);let c=i.transformConstraints.indexOf(l),f=new hi(r.length,r.length*6,c),d=M(o,"time",0),u=M(o,"mixRotate",1),m=M(o,"mixX",1),g=M(o,"mixY",m),b=M(o,"mixScaleX",1),w=M(o,"mixScaleY",b),x=M(o,"mixShearY",1);for(let p=0,y=0;;p++){f.setFrame(p,d,u,m,g,b,w,x);let v=r[p+1];if(!v){f.shrink(y);break}let A=M(v,"time",0),C=M(v,"mixRotate",1),S=M(v,"mixX",1),E=M(v,"mixY",S),Y=M(v,"mixScaleX",1),k=M(v,"mixScaleY",Y),X=M(v,"mixShearY",1),T=o.curve;T&&(y=ce(T,f,y,p,0,d,A,u,C,1),y=ce(T,f,y,p,1,d,A,m,S,1),y=ce(T,f,y,p,2,d,A,g,E,1),y=ce(T,f,y,p,3,d,A,b,Y,1),y=ce(T,f,y,p,4,d,A,w,k,1),y=ce(T,f,y,p,5,d,A,x,X,1)),d=A,u=C,m=S,g=E,b=Y,w=k,b=Y,o=v}n.push(f)}if(e.path)for(let a in e.path){let r=e.path[a],o=i.findPathConstraint(a);if(!o)throw new Error("Path constraint not found: "+a);let l=i.pathConstraints.indexOf(o);for(let c in r){let f=r[c],d=f[0];if(!d)continue;let u=f.length;if(c==="position"){let m=new ci(u,u,l);n.push(ke(f,m,0,o.positionMode==0?s:1))}else if(c==="spacing"){let m=new di(u,u,l);n.push(ke(f,m,0,o.spacingMode==0||o.spacingMode==1?s:1))}else if(c==="mix"){let m=new fi(u,u*3,l),g=M(d,"time",0),b=M(d,"mixRotate",1),w=M(d,"mixX",1),x=M(d,"mixY",w);for(let p=0,y=0;;p++){m.setFrame(p,g,b,w,x);let v=f[p+1];if(!v){m.shrink(y);break}let A=M(v,"time",0),C=M(v,"mixRotate",1),S=M(v,"mixX",1),E=M(v,"mixY",S),Y=d.curve;Y&&(y=ce(Y,m,y,p,0,g,A,b,C,1),y=ce(Y,m,y,p,1,g,A,w,S,1),y=ce(Y,m,y,p,2,g,A,x,E,1)),g=A,b=C,w=S,x=E,d=v}n.push(m)}}}if(e.physics)for(let a in e.physics){let r=e.physics[a],o=-1;if(a.length>0){let l=i.findPhysicsConstraint(a);if(!l)throw new Error("Physics constraint not found: "+a);o=i.physicsConstraints.indexOf(l)}for(let l in r){let c=r[l],f=c[0];if(!f)continue;let d=c.length;if(l=="reset"){const m=new vt(d,o);for(let g=0;f!=null;f=c[g+1],g++)m.setFrame(g,M(f,"time",0));n.push(m);continue}let u;if(l=="inertia")u=new ui(d,d,o);else if(l=="strength")u=new mi(d,d,o);else if(l=="damping")u=new gi(d,d,o);else if(l=="mass")u=new xi(d,d,o);else if(l=="wind")u=new pi(d,d,o);else if(l=="gravity")u=new wi(d,d,o);else if(l=="mix")u=new bi(d,d,o);else continue;n.push(ke(c,u,0,1))}}if(e.attachments)for(let a in e.attachments){let r=e.attachments[a],o=i.findSkin(a);if(!o)throw new Error("Skin not found: "+a);for(let l in r){let c=r[l],f=i.findSlot(l);if(!f)throw new Error("Slot not found: "+l);let d=f.index;for(let u in c){let m=c[u],g=o.getAttachment(d,u);for(let b in m){let w=m[b],x=w[0];if(x){if(b=="deform"){let p=g.bones,y=g.vertices,v=p?y.length/3*2:y.length,A=new li(w.length,w.length,d,g),C=M(x,"time",0);for(let S=0,E=0;;S++){let Y,k=M(x,"vertices",null);if(!k)Y=p?P.newFloatArray(v):y;else{Y=P.newFloatArray(v);let F=M(x,"offset",0);if(P.arrayCopy(k,0,Y,F,k.length),s!=1)for(let ie=F,se=ie+k.length;ie<se;ie++)Y[ie]*=s;if(!p)for(let ie=0;ie<v;ie++)Y[ie]+=y[ie]}A.setFrame(S,C,Y);let X=w[S+1];if(!X){A.shrink(E);break}let T=M(X,"time",0),R=x.curve;R&&(E=ce(R,A,E,S,0,C,T,0,1,1)),C=T,x=X}n.push(A)}else if(b=="sequence"){let p=new $e(w.length,d,g),y=0;for(let v=0;v<w.length;v++){let A=M(x,"delay",y),C=M(x,"time",0),S=ts[M(x,"mode","hold")],E=M(x,"index",0);p.setFrame(v,C,S,E,A),y=A,x=w[v+1]}n.push(p)}}}}}}if(e.drawOrder){let a=new Ge(e.drawOrder.length),r=i.slots.length,o=0;for(let l=0;l<e.drawOrder.length;l++,o++){let c=e.drawOrder[l],f=null,d=M(c,"offsets",null);if(d){f=P.newArray(r,-1);let u=P.newArray(r-d.length,0),m=0,g=0;for(let b=0;b<d.length;b++){let w=d[b],x=i.findSlot(w.slot);if(!x)throw new Error("Slot not found: "+x);let p=x.index;for(;m!=p;)u[g++]=m++;f[m+w.offset]=m++}for(;m<r;)u[g++]=m++;for(let b=r-1;b>=0;b--)f[b]==-1&&(f[b]=u[--g])}a.setFrame(o,M(c,"time",0),f)}n.push(a)}if(e.events){let a=new ht(e.events.length),r=0;for(let o=0;o<e.events.length;o++,r++){let l=e.events[o],c=i.findEvent(l.name);if(!c)throw new Error("Event not found: "+l.name);let f=new Yi(P.toSinglePrecision(M(l,"time",0)),c);f.intValue=M(l,"int",c.intValue),f.floatValue=M(l,"float",c.floatValue),f.stringValue=M(l,"string",c.stringValue),f.data.audioPath&&(f.volume=M(l,"volume",1),f.balance=M(l,"balance",0)),a.setFrame(r,f)}n.push(a)}let h=0;for(let a=0,r=n.length;a<r;a++)h=Math.max(h,n[a].getDuration());i.animations.push(new wt(t,n,h))}},Rr=class{parent;skin;slotIndex;mesh;inheritTimeline;constructor(e,t,i,s,n){this.mesh=e,this.skin=t,this.slotIndex=i,this.parent=s,this.inheritTimeline=n}};function ke(e,t,i,s){let n=e[0],h=M(n,"time",0),a=M(n,"value",i)*s,r=0;for(let o=0;;o++){t.setFrame(o,h,a);let l=e[o+1];if(!l)return t.shrink(r),t;let c=M(l,"time",0),f=M(l,"value",i)*s;n.curve&&(r=ce(n.curve,t,r,o,0,h,c,a,f,s)),h=c,a=f,n=l}}function Di(e,t,i,s,n,h){let a=e[0],r=M(a,"time",0),o=M(a,i,n)*h,l=M(a,s,n)*h,c=0;for(let f=0;;f++){t.setFrame(f,r,o,l);let d=e[f+1];if(!d)return t.shrink(c),t;let u=M(d,"time",0),m=M(d,i,n)*h,g=M(d,s,n)*h,b=a.curve;b&&(c=ce(b,t,c,f,0,r,u,o,m,h),c=ce(b,t,c,f,1,r,u,l,g,h)),r=u,o=m,l=g,a=d}}function ce(e,t,i,s,n,h,a,r,o,l){if(e=="stepped")return t.setStepped(s),i;let c=n<<2,f=e[c],d=e[c+1]*l,u=e[c+2],m=e[c+3]*l;return t.setBezier(i,s,n,h,r,f,d,u,m,a,o),i+1}function M(e,t,i){return e[t]!==void 0?e[t]:i}typeof Math.fround>"u"&&(Math.fround=function(e){return function(t){return e[0]=t,e[0]}}(new Float32Array(1)));var ve=class{canvas;gl;restorables=new Array;constructor(e,t={alpha:"true"}){if(e instanceof WebGLRenderingContext||typeof WebGL2RenderingContext<"u"&&e instanceof WebGL2RenderingContext)this.gl=e,this.canvas=this.gl.canvas;else{let i=e;this.gl=i.getContext("webgl2",t)||i.getContext("webgl",t),this.canvas=i,i.addEventListener("webglcontextlost",s=>{let n=s;s&&s.preventDefault()}),i.addEventListener("webglcontextrestored",s=>{for(let n=0,h=this.restorables.length;n<h;n++)this.restorables[n].restore()})}}addRestorable(e){this.restorables.push(e)}removeRestorable(e){let t=this.restorables.indexOf(e);t>-1&&this.restorables.splice(t,1)}},Xt=class extends Ci{context;texture=null;boundUnit=0;useMipMaps=!1;constructor(e,t,i=!1){super(t),this.context=e instanceof ve?e:new ve(e),this.useMipMaps=i,this.restore(),this.context.addRestorable(this)}setFilters(e,t){let i=this.context.gl;this.bind(),i.texParameteri(i.TEXTURE_2D,i.TEXTURE_MIN_FILTER,e),i.texParameteri(i.TEXTURE_2D,i.TEXTURE_MAG_FILTER,Xt.validateMagFilter(t)),this.useMipMaps=Xt.usesMipMaps(e),this.useMipMaps&&i.generateMipmap(i.TEXTURE_2D)}static validateMagFilter(e){switch(e){case 9987:case 9985:case 9986:case 9984:return 9729;default:return e}}static usesMipMaps(e){switch(e){case 9987:case 9985:case 9986:case 9984:return!0;default:return!1}}setWraps(e,t){let i=this.context.gl;this.bind(),i.texParameteri(i.TEXTURE_2D,i.TEXTURE_WRAP_S,e),i.texParameteri(i.TEXTURE_2D,i.TEXTURE_WRAP_T,t)}update(e){let t=this.context.gl;this.texture||(this.texture=this.context.gl.createTexture()),this.bind(),Xt.DISABLE_UNPACK_PREMULTIPLIED_ALPHA_WEBGL&&t.pixelStorei(t.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!1),t.texImage2D(t.TEXTURE_2D,0,t.RGBA,t.RGBA,t.UNSIGNED_BYTE,this._image),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_MAG_FILTER,t.LINEAR),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_MIN_FILTER,e?t.LINEAR_MIPMAP_LINEAR:t.LINEAR),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_WRAP_S,t.CLAMP_TO_EDGE),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_WRAP_T,t.CLAMP_TO_EDGE),e&&t.generateMipmap(t.TEXTURE_2D)}restore(){this.texture=null,this.update(this.useMipMaps)}bind(e=0){let t=this.context.gl;this.boundUnit=e,t.activeTexture(t.TEXTURE0+e),t.bindTexture(t.TEXTURE_2D,this.texture)}unbind(){let e=this.context.gl;e.activeTexture(e.TEXTURE0+this.boundUnit),e.bindTexture(e.TEXTURE_2D,null)}dispose(){this.context.removeRestorable(this),this.context.gl.deleteTexture(this.texture)}},ft=Xt;B(ft,"DISABLE_UNPACK_PREMULTIPLIED_ALPHA_WEBGL",!1);var Ts=class extends ws{constructor(e,t="",i=new Ei){super(s=>new ft(e,s),t,i)}},Me=class{x=0;y=0;z=0;constructor(e=0,t=0,i=0){this.x=e,this.y=t,this.z=i}setFrom(e){return this.x=e.x,this.y=e.y,this.z=e.z,this}set(e,t,i){return this.x=e,this.y=t,this.z=i,this}add(e){return this.x+=e.x,this.y+=e.y,this.z+=e.z,this}sub(e){return this.x-=e.x,this.y-=e.y,this.z-=e.z,this}scale(e){return this.x*=e,this.y*=e,this.z*=e,this}normalize(){let e=this.length();return e==0?this:(e=1/e,this.x*=e,this.y*=e,this.z*=e,this)}cross(e){return this.set(this.y*e.z-this.z*e.y,this.z*e.x-this.x*e.z,this.x*e.y-this.y*e.x)}multiply(e){let t=e.values;return this.set(this.x*t[O]+this.y*t[q]+this.z*t[G]+t[D],this.x*t[H]+this.y*t[N]+this.z*t[j]+t[U],this.x*t[Z]+this.y*t[K]+this.z*t[z]+t[_])}project(e){let t=e.values,i=1/(this.x*t[Q]+this.y*t[$]+this.z*t[ee]+t[J]);return this.set((this.x*t[O]+this.y*t[q]+this.z*t[G]+t[D])*i,(this.x*t[H]+this.y*t[N]+this.z*t[j]+t[U])*i,(this.x*t[Z]+this.y*t[K]+this.z*t[z]+t[_])*i)}dot(e){return this.x*e.x+this.y*e.y+this.z*e.z}length(){return Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z)}distance(e){let t=e.x-this.x,i=e.y-this.y,s=e.z-this.z;return Math.sqrt(t*t+i*i+s*s)}},O=0,q=4,G=8,D=12,H=1,N=5,j=9,U=13,Z=2,K=6,z=10,_=14,Q=3,$=7,ee=11,J=15,Fe=class{temp=new Float32Array(16);values=new Float32Array(16);constructor(){let e=this.values;e[O]=1,e[N]=1,e[z]=1,e[J]=1}set(e){return this.values.set(e),this}transpose(){let e=this.temp,t=this.values;return e[O]=t[O],e[q]=t[H],e[G]=t[Z],e[D]=t[Q],e[H]=t[q],e[N]=t[N],e[j]=t[K],e[U]=t[$],e[Z]=t[G],e[K]=t[j],e[z]=t[z],e[_]=t[ee],e[Q]=t[D],e[$]=t[U],e[ee]=t[_],e[J]=t[J],this.set(e)}identity(){let e=this.values;return e[O]=1,e[q]=0,e[G]=0,e[D]=0,e[H]=0,e[N]=1,e[j]=0,e[U]=0,e[Z]=0,e[K]=0,e[z]=1,e[_]=0,e[Q]=0,e[$]=0,e[ee]=0,e[J]=1,this}invert(){let e=this.values,t=this.temp,i=e[Q]*e[K]*e[j]*e[D]-e[Z]*e[$]*e[j]*e[D]-e[Q]*e[N]*e[z]*e[D]+e[H]*e[$]*e[z]*e[D]+e[Z]*e[N]*e[ee]*e[D]-e[H]*e[K]*e[ee]*e[D]-e[Q]*e[K]*e[G]*e[U]+e[Z]*e[$]*e[G]*e[U]+e[Q]*e[q]*e[z]*e[U]-e[O]*e[$]*e[z]*e[U]-e[Z]*e[q]*e[ee]*e[U]+e[O]*e[K]*e[ee]*e[U]+e[Q]*e[N]*e[G]*e[_]-e[H]*e[$]*e[G]*e[_]-e[Q]*e[q]*e[j]*e[_]+e[O]*e[$]*e[j]*e[_]+e[H]*e[q]*e[ee]*e[_]-e[O]*e[N]*e[ee]*e[_]-e[Z]*e[N]*e[G]*e[J]+e[H]*e[K]*e[G]*e[J]+e[Z]*e[q]*e[j]*e[J]-e[O]*e[K]*e[j]*e[J]-e[H]*e[q]*e[z]*e[J]+e[O]*e[N]*e[z]*e[J];if(i==0)throw new Error("non-invertible matrix");let s=1/i;return t[O]=e[j]*e[_]*e[$]-e[U]*e[z]*e[$]+e[U]*e[K]*e[ee]-e[N]*e[_]*e[ee]-e[j]*e[K]*e[J]+e[N]*e[z]*e[J],t[q]=e[D]*e[z]*e[$]-e[G]*e[_]*e[$]-e[D]*e[K]*e[ee]+e[q]*e[_]*e[ee]+e[G]*e[K]*e[J]-e[q]*e[z]*e[J],t[G]=e[G]*e[U]*e[$]-e[D]*e[j]*e[$]+e[D]*e[N]*e[ee]-e[q]*e[U]*e[ee]-e[G]*e[N]*e[J]+e[q]*e[j]*e[J],t[D]=e[D]*e[j]*e[K]-e[G]*e[U]*e[K]-e[D]*e[N]*e[z]+e[q]*e[U]*e[z]+e[G]*e[N]*e[_]-e[q]*e[j]*e[_],t[H]=e[U]*e[z]*e[Q]-e[j]*e[_]*e[Q]-e[U]*e[Z]*e[ee]+e[H]*e[_]*e[ee]+e[j]*e[Z]*e[J]-e[H]*e[z]*e[J],t[N]=e[G]*e[_]*e[Q]-e[D]*e[z]*e[Q]+e[D]*e[Z]*e[ee]-e[O]*e[_]*e[ee]-e[G]*e[Z]*e[J]+e[O]*e[z]*e[J],t[j]=e[D]*e[j]*e[Q]-e[G]*e[U]*e[Q]-e[D]*e[H]*e[ee]+e[O]*e[U]*e[ee]+e[G]*e[H]*e[J]-e[O]*e[j]*e[J],t[U]=e[G]*e[U]*e[Z]-e[D]*e[j]*e[Z]+e[D]*e[H]*e[z]-e[O]*e[U]*e[z]-e[G]*e[H]*e[_]+e[O]*e[j]*e[_],t[Z]=e[N]*e[_]*e[Q]-e[U]*e[K]*e[Q]+e[U]*e[Z]*e[$]-e[H]*e[_]*e[$]-e[N]*e[Z]*e[J]+e[H]*e[K]*e[J],t[K]=e[D]*e[K]*e[Q]-e[q]*e[_]*e[Q]-e[D]*e[Z]*e[$]+e[O]*e[_]*e[$]+e[q]*e[Z]*e[J]-e[O]*e[K]*e[J],t[z]=e[q]*e[U]*e[Q]-e[D]*e[N]*e[Q]+e[D]*e[H]*e[$]-e[O]*e[U]*e[$]-e[q]*e[H]*e[J]+e[O]*e[N]*e[J],t[_]=e[D]*e[N]*e[Z]-e[q]*e[U]*e[Z]-e[D]*e[H]*e[K]+e[O]*e[U]*e[K]+e[q]*e[H]*e[_]-e[O]*e[N]*e[_],t[Q]=e[j]*e[K]*e[Q]-e[N]*e[z]*e[Q]-e[j]*e[Z]*e[$]+e[H]*e[z]*e[$]+e[N]*e[Z]*e[ee]-e[H]*e[K]*e[ee],t[$]=e[q]*e[z]*e[Q]-e[G]*e[K]*e[Q]+e[G]*e[Z]*e[$]-e[O]*e[z]*e[$]-e[q]*e[Z]*e[ee]+e[O]*e[K]*e[ee],t[ee]=e[G]*e[N]*e[Q]-e[q]*e[j]*e[Q]-e[G]*e[H]*e[$]+e[O]*e[j]*e[$]+e[q]*e[H]*e[ee]-e[O]*e[N]*e[ee],t[J]=e[q]*e[j]*e[Z]-e[G]*e[N]*e[Z]+e[G]*e[H]*e[K]-e[O]*e[j]*e[K]-e[q]*e[H]*e[z]+e[O]*e[N]*e[z],e[O]=t[O]*s,e[q]=t[q]*s,e[G]=t[G]*s,e[D]=t[D]*s,e[H]=t[H]*s,e[N]=t[N]*s,e[j]=t[j]*s,e[U]=t[U]*s,e[Z]=t[Z]*s,e[K]=t[K]*s,e[z]=t[z]*s,e[_]=t[_]*s,e[Q]=t[Q]*s,e[$]=t[$]*s,e[ee]=t[ee]*s,e[J]=t[J]*s,this}determinant(){let e=this.values;return e[Q]*e[K]*e[j]*e[D]-e[Z]*e[$]*e[j]*e[D]-e[Q]*e[N]*e[z]*e[D]+e[H]*e[$]*e[z]*e[D]+e[Z]*e[N]*e[ee]*e[D]-e[H]*e[K]*e[ee]*e[D]-e[Q]*e[K]*e[G]*e[U]+e[Z]*e[$]*e[G]*e[U]+e[Q]*e[q]*e[z]*e[U]-e[O]*e[$]*e[z]*e[U]-e[Z]*e[q]*e[ee]*e[U]+e[O]*e[K]*e[ee]*e[U]+e[Q]*e[N]*e[G]*e[_]-e[H]*e[$]*e[G]*e[_]-e[Q]*e[q]*e[j]*e[_]+e[O]*e[$]*e[j]*e[_]+e[H]*e[q]*e[ee]*e[_]-e[O]*e[N]*e[ee]*e[_]-e[Z]*e[N]*e[G]*e[J]+e[H]*e[K]*e[G]*e[J]+e[Z]*e[q]*e[j]*e[J]-e[O]*e[K]*e[j]*e[J]-e[H]*e[q]*e[z]*e[J]+e[O]*e[N]*e[z]*e[J]}translate(e,t,i){let s=this.values;return s[D]+=e,s[U]+=t,s[_]+=i,this}copy(){return new Fe().set(this.values)}projection(e,t,i,s){this.identity();let n=1/Math.tan(i*(Math.PI/180)/2),h=(t+e)/(e-t),a=2*t*e/(e-t),r=this.values;return r[O]=n/s,r[H]=0,r[Z]=0,r[Q]=0,r[q]=0,r[N]=n,r[K]=0,r[$]=0,r[G]=0,r[j]=0,r[z]=h,r[ee]=-1,r[D]=0,r[U]=0,r[_]=a,r[J]=0,this}ortho2d(e,t,i,s){return this.ortho(e,e+i,t,t+s,0,1)}ortho(e,t,i,s,n,h){this.identity();let a=2/(t-e),r=2/(s-i),o=-2/(h-n),l=-(t+e)/(t-e),c=-(s+i)/(s-i),f=-(h+n)/(h-n),d=this.values;return d[O]=a,d[H]=0,d[Z]=0,d[Q]=0,d[q]=0,d[N]=r,d[K]=0,d[$]=0,d[G]=0,d[j]=0,d[z]=o,d[ee]=0,d[D]=l,d[U]=c,d[_]=f,d[J]=1,this}multiply(e){let t=this.temp,i=this.values,s=e.values;return t[O]=i[O]*s[O]+i[q]*s[H]+i[G]*s[Z]+i[D]*s[Q],t[q]=i[O]*s[q]+i[q]*s[N]+i[G]*s[K]+i[D]*s[$],t[G]=i[O]*s[G]+i[q]*s[j]+i[G]*s[z]+i[D]*s[ee],t[D]=i[O]*s[D]+i[q]*s[U]+i[G]*s[_]+i[D]*s[J],t[H]=i[H]*s[O]+i[N]*s[H]+i[j]*s[Z]+i[U]*s[Q],t[N]=i[H]*s[q]+i[N]*s[N]+i[j]*s[K]+i[U]*s[$],t[j]=i[H]*s[G]+i[N]*s[j]+i[j]*s[z]+i[U]*s[ee],t[U]=i[H]*s[D]+i[N]*s[U]+i[j]*s[_]+i[U]*s[J],t[Z]=i[Z]*s[O]+i[K]*s[H]+i[z]*s[Z]+i[_]*s[Q],t[K]=i[Z]*s[q]+i[K]*s[N]+i[z]*s[K]+i[_]*s[$],t[z]=i[Z]*s[G]+i[K]*s[j]+i[z]*s[z]+i[_]*s[ee],t[_]=i[Z]*s[D]+i[K]*s[U]+i[z]*s[_]+i[_]*s[J],t[Q]=i[Q]*s[O]+i[$]*s[H]+i[ee]*s[Z]+i[J]*s[Q],t[$]=i[Q]*s[q]+i[$]*s[N]+i[ee]*s[K]+i[J]*s[$],t[ee]=i[Q]*s[G]+i[$]*s[j]+i[ee]*s[z]+i[J]*s[ee],t[J]=i[Q]*s[D]+i[$]*s[U]+i[ee]*s[_]+i[J]*s[J],this.set(this.temp)}multiplyLeft(e){let t=this.temp,i=this.values,s=e.values;return t[O]=s[O]*i[O]+s[q]*i[H]+s[G]*i[Z]+s[D]*i[Q],t[q]=s[O]*i[q]+s[q]*i[N]+s[G]*i[K]+s[D]*i[$],t[G]=s[O]*i[G]+s[q]*i[j]+s[G]*i[z]+s[D]*i[ee],t[D]=s[O]*i[D]+s[q]*i[U]+s[G]*i[_]+s[D]*i[J],t[H]=s[H]*i[O]+s[N]*i[H]+s[j]*i[Z]+s[U]*i[Q],t[N]=s[H]*i[q]+s[N]*i[N]+s[j]*i[K]+s[U]*i[$],t[j]=s[H]*i[G]+s[N]*i[j]+s[j]*i[z]+s[U]*i[ee],t[U]=s[H]*i[D]+s[N]*i[U]+s[j]*i[_]+s[U]*i[J],t[Z]=s[Z]*i[O]+s[K]*i[H]+s[z]*i[Z]+s[_]*i[Q],t[K]=s[Z]*i[q]+s[K]*i[N]+s[z]*i[K]+s[_]*i[$],t[z]=s[Z]*i[G]+s[K]*i[j]+s[z]*i[z]+s[_]*i[ee],t[_]=s[Z]*i[D]+s[K]*i[U]+s[z]*i[_]+s[_]*i[J],t[Q]=s[Q]*i[O]+s[$]*i[H]+s[ee]*i[Z]+s[J]*i[Q],t[$]=s[Q]*i[q]+s[$]*i[N]+s[ee]*i[K]+s[J]*i[$],t[ee]=s[Q]*i[G]+s[$]*i[j]+s[ee]*i[z]+s[J]*i[ee],t[J]=s[Q]*i[D]+s[$]*i[U]+s[ee]*i[_]+s[J]*i[J],this.set(this.temp)}lookAt(e,t,i){let s=Fe.xAxis,n=Fe.yAxis,h=Fe.zAxis;h.setFrom(t).normalize(),s.setFrom(t).normalize(),s.cross(i).normalize(),n.setFrom(s).cross(h).normalize(),this.identity();let a=this.values;return a[O]=s.x,a[q]=s.y,a[G]=s.z,a[H]=n.x,a[N]=n.y,a[j]=n.z,a[Z]=-h.x,a[K]=-h.y,a[z]=-h.z,Fe.tmpMatrix.identity(),Fe.tmpMatrix.values[D]=-e.x,Fe.tmpMatrix.values[U]=-e.y,Fe.tmpMatrix.values[_]=-e.z,this.multiply(Fe.tmpMatrix),this}},Pe=Fe;B(Pe,"xAxis",new Me),B(Pe,"yAxis",new Me),B(Pe,"zAxis",new Me),B(Pe,"tmpMatrix",new Fe);var Ms=class{position=new Me(0,0,0);direction=new Me(0,0,-1);up=new Me(0,1,0);near=0;far=100;zoom=1;viewportWidth=0;viewportHeight=0;projectionView=new Pe;inverseProjectionView=new Pe;projection=new Pe;view=new Pe;constructor(e,t){this.viewportWidth=e,this.viewportHeight=t,this.update()}update(){let e=this.projection,t=this.view,i=this.projectionView,s=this.inverseProjectionView,n=this.zoom,h=this.viewportWidth,a=this.viewportHeight;e.ortho(n*(-h/2),n*(h/2),n*(-a/2),n*(a/2),this.near,this.far),t.lookAt(this.position,this.direction,this.up),i.set(e.values),i.multiply(t),s.set(i.values).invert()}screenToWorld(e,t,i){let s=e.x,n=i-e.y-1;return e.x=2*s/t-1,e.y=2*n/i-1,e.z=2*e.z-1,e.project(this.inverseProjectionView),e}worldToScreen(e,t,i){return e.project(this.projectionView),e.x=t*(e.x+1)/2,e.y=i*(e.y+1)/2,e.z=(e.z+1)/2,e}setViewport(e,t){this.viewportWidth=e,this.viewportHeight=t}},Ni=class{element;mouseX=0;mouseY=0;buttonDown=!1;touch0=null;touch1=null;initialPinchDistance=0;listeners=new Array;eventListeners=[];constructor(e){this.element=e,this.setupCallbacks(e)}setupCallbacks(e){let t=a=>{if(a instanceof MouseEvent){let r=e.getBoundingClientRect();this.mouseX=a.clientX-r.left,this.mouseY=a.clientY-r.top,this.buttonDown=!0,this.listeners.map(o=>{o.down&&o.down(this.mouseX,this.mouseY)}),document.addEventListener("mousemove",i),document.addEventListener("mouseup",s)}},i=a=>{if(a instanceof MouseEvent){let r=e.getBoundingClientRect();this.mouseX=a.clientX-r.left,this.mouseY=a.clientY-r.top,this.listeners.map(o=>{this.buttonDown?o.dragged&&o.dragged(this.mouseX,this.mouseY):o.moved&&o.moved(this.mouseX,this.mouseY)})}},s=a=>{if(a instanceof MouseEvent){let r=e.getBoundingClientRect();this.mouseX=a.clientX-r.left,this.mouseY=a.clientY-r.top,this.buttonDown=!1,this.listeners.map(o=>{o.up&&o.up(this.mouseX,this.mouseY)}),document.removeEventListener("mousemove",i),document.removeEventListener("mouseup",s)}},n=a=>{a.preventDefault();let r=a.deltaY;a.deltaMode==WheelEvent.DOM_DELTA_LINE&&(r*=8),a.deltaMode==WheelEvent.DOM_DELTA_PAGE&&(r*=24),this.listeners.map(o=>{o.wheel&&o.wheel(a.deltaY)})};e.addEventListener("mousedown",t,!0),e.addEventListener("mousemove",i,!0),e.addEventListener("mouseup",s,!0),e.addEventListener("wheel",n,!0),e.addEventListener("touchstart",a=>{if(!this.touch0||!this.touch1){var r=a.changedTouches;let o=r.item(0);if(!o)return;let l=e.getBoundingClientRect(),c=o.clientX-l.left,f=o.clientY-l.top,d=new Es(o.identifier,c,f);if(this.mouseX=c,this.mouseY=f,this.buttonDown=!0,!this.touch0)this.touch0=d,this.listeners.map(u=>{u.down&&u.down(d.x,d.y)});else if(!this.touch1){this.touch1=d;let u=this.touch1.x-this.touch0.x,m=this.touch1.x-this.touch0.x;this.initialPinchDistance=Math.sqrt(u*u+m*m),this.listeners.map(g=>{g.zoom&&g.zoom(this.initialPinchDistance,this.initialPinchDistance)})}}a.preventDefault()},!1),e.addEventListener("touchmove",a=>{if(this.touch0){var r=a.changedTouches;let c=e.getBoundingClientRect();for(var o=0;o<r.length;o++){var l=r[o];let f=l.clientX-c.left,d=l.clientY-c.top;this.touch0.identifier===l.identifier&&(this.touch0.x=this.mouseX=f,this.touch0.y=this.mouseY=d,this.listeners.map(u=>{u.dragged&&u.dragged(f,d)})),this.touch1&&this.touch1.identifier===l.identifier&&(this.touch1.x=this.mouseX=f,this.touch1.y=this.mouseY=d)}if(this.touch0&&this.touch1){let f=this.touch1.x-this.touch0.x,d=this.touch1.x-this.touch0.x,u=Math.sqrt(f*f+d*d);this.listeners.map(m=>{m.zoom&&m.zoom(this.initialPinchDistance,u)})}}a.preventDefault()},!1);let h=a=>{if(this.touch0){var r=a.changedTouches;let c=e.getBoundingClientRect();for(var o=0;o<r.length;o++){var l=r[o];let f=l.clientX-c.left,d=l.clientY-c.top;if(this.touch0.identifier===l.identifier)if(this.touch0=null,this.mouseX=f,this.mouseY=d,this.listeners.map(u=>{u.up&&u.up(f,d)}),this.touch1)this.touch0=this.touch1,this.touch1=null,this.mouseX=this.touch0.x,this.mouseX=this.touch0.x,this.buttonDown=!0,this.listeners.map(u=>{u.down&&u.down(this.touch0.x,this.touch0.y)});else{this.buttonDown=!1;break}this.touch1&&this.touch1.identifier&&(this.touch1=null)}}a.preventDefault()};e.addEventListener("touchend",h,!1),e.addEventListener("touchcancel",h)}addListener(e){this.listeners.push(e)}removeListener(e){let t=this.listeners.indexOf(e);t>-1&&this.listeners.splice(t,1)}},Es=class{constructor(e,t,i){this.identifier=e,this.x=t,this.y=i}},kr=class{constructor(e,t){this.canvas=e,this.camera=t;let i=0,s=0,n=0,h=0,a=0,r=0,o=0,l=0;new Ni(e).addListener({down:(c,f)=>{i=t.position.x,s=t.position.y,h=r=c,a=o=f,l=t.zoom},dragged:(c,f)=>{let d=c-h,u=f-a,m=t.screenToWorld(new Me(0,0),e.clientWidth,e.clientHeight),g=t.screenToWorld(new Me(d,u),e.clientWidth,e.clientHeight).sub(m);t.position.set(i-g.x,s-g.y,0),t.update(),r=c,o=f},wheel:c=>{let f=c/200*t.zoom,d=t.zoom+f;if(d>0){let u=0,m=0;if(c<0)u=r,m=o;else{let w=new Me(e.clientWidth/2+15,e.clientHeight/2),x=r-w.x,p=e.clientHeight-1-o-w.y;u=w.x-x,m=e.clientHeight-1-w.y+p}let g=t.screenToWorld(new Me(u,m),e.clientWidth,e.clientHeight);t.zoom=d,t.update();let b=t.screenToWorld(new Me(u,m),e.clientWidth,e.clientHeight);t.position.add(g.sub(b)),t.update()}},zoom:(c,f)=>{let d=c/f;t.zoom=l*d},up:(c,f)=>{r=c,o=f},moved:(c,f)=>{r=c,o=f}})}},ue=class{constructor(e,t,i){this.vertexShader=t,this.fragmentShader=i,this.vsSource=t,this.fsSource=i,this.context=e instanceof ve?e:new ve(e),this.context.addRestorable(this),this.compile()}context;vs=null;vsSource;fs=null;fsSource;program=null;tmp2x2=new Float32Array(2*2);tmp3x3=new Float32Array(3*3);tmp4x4=new Float32Array(4*4);getProgram(){return this.program}getVertexShader(){return this.vertexShader}getFragmentShader(){return this.fragmentShader}getVertexShaderSource(){return this.vsSource}getFragmentSource(){return this.fsSource}compile(){let e=this.context.gl;try{if(this.vs=this.compileShader(e.VERTEX_SHADER,this.vertexShader),!this.vs)throw new Error("Couldn't compile vertex shader.");if(this.fs=this.compileShader(e.FRAGMENT_SHADER,this.fragmentShader),!this.fs)throw new Error("Couldn#t compile fragment shader.");this.program=this.compileProgram(this.vs,this.fs)}catch(t){throw this.dispose(),t}}compileShader(e,t){let i=this.context.gl,s=i.createShader(e);if(!s)throw new Error("Couldn't create shader.");if(i.shaderSource(s,t),i.compileShader(s),!i.getShaderParameter(s,i.COMPILE_STATUS)){let n="Couldn't compile shader: "+i.getShaderInfoLog(s);if(i.deleteShader(s),!i.isContextLost())throw new Error(n)}return s}compileProgram(e,t){let i=this.context.gl,s=i.createProgram();if(!s)throw new Error("Couldn't compile program.");if(i.attachShader(s,e),i.attachShader(s,t),i.linkProgram(s),!i.getProgramParameter(s,i.LINK_STATUS)){let n="Couldn't compile shader program: "+i.getProgramInfoLog(s);if(i.deleteProgram(s),!i.isContextLost())throw new Error(n)}return s}restore(){this.compile()}bind(){this.context.gl.useProgram(this.program)}unbind(){this.context.gl.useProgram(null)}setUniformi(e,t){this.context.gl.uniform1i(this.getUniformLocation(e),t)}setUniformf(e,t){this.context.gl.uniform1f(this.getUniformLocation(e),t)}setUniform2f(e,t,i){this.context.gl.uniform2f(this.getUniformLocation(e),t,i)}setUniform3f(e,t,i,s){this.context.gl.uniform3f(this.getUniformLocation(e),t,i,s)}setUniform4f(e,t,i,s,n){this.context.gl.uniform4f(this.getUniformLocation(e),t,i,s,n)}setUniform2x2f(e,t){let i=this.context.gl;this.tmp2x2.set(t),i.uniformMatrix2fv(this.getUniformLocation(e),!1,this.tmp2x2)}setUniform3x3f(e,t){let i=this.context.gl;this.tmp3x3.set(t),i.uniformMatrix3fv(this.getUniformLocation(e),!1,this.tmp3x3)}setUniform4x4f(e,t){let i=this.context.gl;this.tmp4x4.set(t),i.uniformMatrix4fv(this.getUniformLocation(e),!1,this.tmp4x4)}getUniformLocation(e){let t=this.context.gl;if(!this.program)throw new Error("Shader not compiled.");let i=t.getUniformLocation(this.program,e);if(!i&&!t.isContextLost())throw new Error(`Couldn't find location for uniform ${e}`);return i}getAttributeLocation(e){let t=this.context.gl;if(!this.program)throw new Error("Shader not compiled.");let i=t.getAttribLocation(this.program,e);if(i==-1&&!t.isContextLost())throw new Error(`Couldn't find location for attribute ${e}`);return i}dispose(){this.context.removeRestorable(this);let e=this.context.gl;this.vs&&(e.deleteShader(this.vs),this.vs=null),this.fs&&(e.deleteShader(this.fs),this.fs=null),this.program&&(e.deleteProgram(this.program),this.program=null)}static newColoredTextured(e){let t=`
3
3
  attribute vec4 ${ue.POSITION};
4
4
  attribute vec4 ${ue.COLOR};