window.SpinePlugin=function(n){vari={};functionr(t){if(i[t])returni[t].exports;vare=i[t]={i:t,l:!1,exports:{}};returnn[t].call(e.exports,e,e.exports,r),e.l=!0,e.exports}returnr.m=n,r.c=i,r.d=function(t,e,n){r.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:n})},r.r=function(t){"undefined"!=typeofSymbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)returne;if(4&t&&"object"==typeofe&&e&&e.__esModule)returne;varn=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeofe)for(variine)r.d(n,i,function(t){returne[t]}.bind(null,i));returnn},r.n=function(t){vare=t&&t.__esModule?function(){returnt.default}:function(){returnt};returnr.d(e,"a",e),e},r.o=function(t,e){returnObject.prototype.hasOwnProperty.call(t,e)},r.p="",r(r.s=35)}([function(t,e){functions(t,e,n,i){for(varrine)if(e.hasOwnProperty(r)){vars=(l=e,u=r,f=d=void0,f=(c=n)?l[u]:Object.getOwnPropertyDescriptor(l,u),!c&&f.value&&"object"==typeoff.value&&(f=f.value),!(!f||!((d=f).get&&"function"==typeofd.get||d.set&&"function"==typeofd.set))&&(void0===f.enumerable&&(f.enumerable=!0),void0===f.configurable&&(f.configurable=!0),f));if(!1!==s){if(o=(i||t).prototype,a=r,h=void0,(h=Object.getOwnPropertyDescriptor(o,a))&&(h.value&&"object"==typeofh.value&&(h=h.value),!1===h.configurable)){if(p.ignoreFinals)continue;thrownewError("cannot override final property '"+r+"', set Class.ignoreFinals = true to skip")}Object.defineProperty(t.prototype,r,s)}elset.prototype[r]=e[r]}varo,a,h,l,u,c,d,f}functiono(t,e){if(e){Array.isArray(e)||(e=[e]);for(varn=0;n<e.length;n++)s(t,e[n].prototype||e[n])}}functionp(t){vare,n,i;if((t=t||{}).initialize){if("function"!=typeoft.initialize)thrownewError("initialize must be a function");i=t.initialize,deletet.initialize}else{i=t.Extends?(n=t.Extends,function(){n.apply(this,arguments)}):function(){}}t.Extends?(i.prototype=Object.create(t.Extends.prototype),i.prototype.constructor=i,e=t.Extends,deletet.Extends):i.prototype.constructor=i;varr=null;returnt.Mixins&&(r=t.Mixins,deletet.Mixins),o(i,r),s(i,t,!0,e),i}p.extend=s,p.mixin=o,p.ignoreFinals=!1,t.exports=p},function(t,e){varn={PI2:2*Math.PI,TAU:.5*Math.PI,EPSILON:1e-6,DEG_TO_RAD:Math.PI/180,RAD_TO_DEG:180/Math.PI,RND:null,MIN_SAFE_INTEGER:Number.MIN_SAFE_INTEGER||-9007199254740991,MAX_SAFE_INTEGER:Number.MAX_SAFE_INTEGER||9007199254740991};t.exports=n},function(t,e){t.exports=function(t){if("object"!=typeoft||t.nodeType||t===t.window)return!1;try{if(t.constructor&&!{}.hasOwnProperty.call(t.constructor.prototype,"isPrototypeOf"))return!1}catch(t){return!1}return!0}},function(t,e,n){vari=n(0),r=n(20),s=newi({initialize:function(t,e){this.x=0,this.y=0,"object"==typeoft?(this.x=t.x||0,this.y=t.y||0):(void0===e&&(e=t),this.x=t||0,this.y=e||0)},clone:function(){returnnews(this.x,this.y)},copy:function(t){returnthis.x=t.x||0,this.y=t.y||0,this},setFromObject:function(t){returnthis.x=t.x||0,this.y=t.y||0,this},set:function(t,e){returnvoid0===e&&(e=t),this.x=t,this.y=e,this},setTo:function(t,e){returnthis.set(t,e)},setToPolar:function(t,e){returnnull==e&&(e=1),this.x=Math.cos(t)*e,this.y=Math.sin(t)*e,this},equals:function(t){returnthis.x===t.x&&this.y===t.y},fuzzyEquals:function(t,e){returnr(this.x,t.x,e)&&r(this.y,t.y,e)},angle:function(){vart=Math.atan2(this.y,this.x);returnt<0&&(t+=2*Math.PI),t},setAngle:function(t){returnthis.setToPolar(t,this.length())},add:function(t){returnthis.x+=t.x,this.y+=t.y,this},subtract:function(t){returnthis.x-=t.x,this.y-=t.y,this},multiply:function(t){returnthis.x*=t.x,this.y*=t.y,this},scale:function(t){returnisFinite(t)?(this.x*=t,this.y*=t):(this.x=0,this.y=0),this},divide:function(t){returnthis.x/=t.x,this.y/=t.y,this},negate:function(){returnthis.x=-this.x,this.y=-this.y,this},distance:function(t){vare=t.x-this.x,n=t.y-this.y;returnMath.sqrt(e*e+n*n)},distanceSq:function(t){vare=t.x-this.x,n=t.y-this.y;returne*e+