@leafer-draw/miniapp 1.2.0 → 1.2.2

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.
@@ -2047,11 +2047,11 @@ class LeaferCanvasBase extends Canvas$1 {
2047
2047
  toBlob(_type, _quality) { return undefined; }
2048
2048
  toDataURL(_type, _quality) { return undefined; }
2049
2049
  saveAs(_filename, _quality) { return undefined; }
2050
- resize(size) {
2050
+ resize(size, safeResize = true) {
2051
2051
  if (this.isSameSize(size))
2052
2052
  return;
2053
2053
  let takeCanvas;
2054
- if (this.context && !this.unreal && this.width) {
2054
+ if (this.context && !this.unreal && safeResize && this.width) {
2055
2055
  takeCanvas = this.getSameCanvas();
2056
2056
  takeCanvas.copyWorld(this);
2057
2057
  }
@@ -4253,18 +4253,21 @@ const LeafHelper = {
4253
4253
  L.setTransform(t, matrix, resize);
4254
4254
  },
4255
4255
  setTransform(t, transform, resize) {
4256
- const layout = getLayout(transform, t.origin && L.getInnerOrigin(t, t.origin), t.around && L.getInnerOrigin(t, t.around));
4256
+ const data = t.__, originPoint = data.origin && L.getInnerOrigin(t, data.origin);
4257
+ const layout = getLayout(transform, originPoint, data.around && L.getInnerOrigin(t, data.around));
4257
4258
  if (resize) {
4258
- const scaleX = layout.scaleX / t.scaleX;
4259
- const scaleY = layout.scaleY / t.scaleY;
4260
- delete layout.scaleX;
4261
- delete layout.scaleY;
4259
+ const scaleX = layout.scaleX / t.scaleX, scaleY = layout.scaleY / t.scaleY;
4260
+ delete layout.scaleX, delete layout.scaleY;
4261
+ if (originPoint) {
4262
+ BoundsHelper.scale(t.boxBounds, Math.abs(scaleX), Math.abs(scaleY));
4263
+ const changedPoint = L.getInnerOrigin(t, data.origin);
4264
+ PointHelper.move(layout, originPoint.x - changedPoint.x, originPoint.y - changedPoint.y);
4265
+ }
4262
4266
  t.set(layout);
4263
- t.scaleResize(scaleX, scaleY, resize !== true);
4267
+ t.scaleResize(scaleX, scaleY, false);
4264
4268
  }
4265
- else {
4269
+ else
4266
4270
  t.set(layout);
4267
- }
4268
4271
  },
4269
4272
  getFlipTransform(t, axis) {
4270
4273
  const m = getMatrixData();
@@ -4947,14 +4950,15 @@ class Eventer {
4947
4950
  if (list) {
4948
4951
  let item;
4949
4952
  for (let i = 0, len = list.length; i < len; i++) {
4950
- item = list[i];
4951
- item.listener(event);
4952
- if (item.once) {
4953
- this.off(type, item.listener, capture);
4954
- i--, len--;
4953
+ if (item = list[i]) {
4954
+ item.listener(event);
4955
+ if (item.once) {
4956
+ this.off(type, item.listener, capture);
4957
+ i--, len--;
4958
+ }
4959
+ if (event && event.isStopNow)
4960
+ break;
4955
4961
  }
4956
- if (event && event.isStopNow)
4957
- break;
4958
4962
  }
4959
4963
  }
4960
4964
  this.syncEventer && this.syncEventer.emitEvent(event, capture);
@@ -5431,7 +5435,7 @@ let Leaf = class Leaf {
5431
5435
  this.__[attrName] = value === undefined ? null : undefined;
5432
5436
  this[attrName] = value;
5433
5437
  }
5434
- forceRender(_bounds) {
5438
+ forceRender(_bounds, _sync) {
5435
5439
  this.forceUpdate('surface');
5436
5440
  }
5437
5441
  __updateWorldMatrix() { }
@@ -6001,7 +6005,7 @@ class LeafLevelList {
6001
6005
  }
6002
6006
  }
6003
6007
 
6004
- const version = "1.2.0";
6008
+ const version = "1.2.2";
6005
6009
 
6006
6010
  class LeaferCanvas extends LeaferCanvasBase {
6007
6011
  get allowBackgroundColor() { return false; }
@@ -7767,10 +7771,13 @@ let Leafer = Leafer_1 = class Leafer extends Group {
7767
7771
  const data = DataHelper.copyAttrs({}, size, canvasSizeAttrs);
7768
7772
  Object.keys(data).forEach(key => this[key] = data[key]);
7769
7773
  }
7770
- forceRender(bounds) {
7771
- this.renderer.addBlock(bounds ? new Bounds(bounds) : this.canvas.bounds);
7772
- if (this.viewReady)
7773
- this.renderer.render();
7774
+ forceRender(bounds, sync) {
7775
+ const { renderer } = this;
7776
+ if (renderer) {
7777
+ renderer.addBlock(bounds ? new Bounds(bounds) : this.canvas.bounds);
7778
+ if (this.viewReady)
7779
+ sync ? renderer.render() : renderer.update();
7780
+ }
7774
7781
  }
7775
7782
  requestRender(change = false) {
7776
7783
  if (this.renderer)
@@ -7887,6 +7894,8 @@ let Leafer = Leafer_1 = class Leafer extends Group {
7887
7894
  this.requestRender();
7888
7895
  }
7889
7896
  }
7897
+ else
7898
+ this.requestRender();
7890
7899
  }
7891
7900
  __checkViewCompleted(emit = true) {
7892
7901
  this.nextRender(() => {
@@ -8452,10 +8461,10 @@ let Canvas = class Canvas extends Rect {
8452
8461
  __updateSize() {
8453
8462
  const { canvas } = this;
8454
8463
  if (canvas) {
8455
- const { smooth } = this.__;
8464
+ const { smooth, safeResize } = this.__;
8465
+ canvas.resize(this.__, safeResize);
8456
8466
  if (canvas.smooth !== smooth)
8457
8467
  canvas.smooth = smooth;
8458
- canvas.resize(this.__);
8459
8468
  }
8460
8469
  }
8461
8470
  destroy() {
@@ -8481,6 +8490,9 @@ __decorate([
8481
8490
  __decorate([
8482
8491
  resizeType(true)
8483
8492
  ], Canvas.prototype, "smooth", void 0);
8493
+ __decorate([
8494
+ dataType(false)
8495
+ ], Canvas.prototype, "safeResize", void 0);
8484
8496
  __decorate([
8485
8497
  resizeType()
8486
8498
  ], Canvas.prototype, "contextSettings", void 0);
@@ -1 +1 @@
1
- const t={toURL(t,e){let s=encodeURIComponent(t);return"text"===e?s="data:text/plain;charset=utf-8,"+s:"svg"===e&&(s="data:image/svg+xml,"+s),s},image:{hitCanvasSize:100,maxCacheSize:4096e3,maxPatternSize:8847360,crossOrigin:"anonymous",getRealURL(e){const{prefix:s,suffix:i}=t.image;return!i||e.startsWith("data:")||e.startsWith("blob:")||(e+=(e.includes("?")?"&":"?")+i),s&&"/"===e[0]&&(e=s+e),e}}},e={},s={RUNTIME:"runtime",LEAF:"leaf",TASK:"task",CNAVAS:"canvas",IMAGE:"image",types:{},create(t){const{types:e}=i;return e[t]?e[t]++:(e[t]=1,0)}},i=s,{round:r,pow:n,PI:o}=Math,a={within:(t,e,s)=>("object"==typeof e&&(s=e.max,e=e.min),void 0!==e&&t<e&&(t=e),void 0!==s&&t>s&&(t=s),t),fourNumber(t,e){let s;if(t instanceof Array)switch(t.length){case 4:s=void 0===e?t:[...t];break;case 2:s=[t[0],t[1],t[0],t[1]];break;case 3:s=[t[0],t[1],t[2],t[1]];break;case 1:t=t[0];break;default:t=0}if(s||(s=[t,t,t,t]),e)for(let t=0;t<4;t++)s[t]>e&&(s[t]=e);return s},formatRotation:(t,e)=>(t%=360,e?t<0&&(t+=360):(t>180&&(t-=360),t<-180&&(t+=360)),a.float(t)),getGapRotation(t,e,s=0){let i=t+s;if(e>1){const t=Math.abs(i%e);(t<1||t>e-1)&&(i=Math.round(i/e)*e)}return i-s},float(t,e){const s=void 0!==e?n(10,e):1e12;return-0===(t=r(t*s)/s)?0:t},getScaleData:(t,e,s,i)=>(i||(i={}),e?(i.scaleX=("number"==typeof e?e:e.width)/s.width,i.scaleY=("number"==typeof e?e:e.height)/s.height):t&&a.assignScale(i,t),i),assignScale(t,e){"number"==typeof e?t.scaleX=t.scaleY=e:(t.scaleX=e.x,t.scaleY=e.y)}},h=o/180,l=2*o,d=o/2;function c(){return{x:0,y:0}}function u(){return{x:0,y:0,width:0,height:0}}function _(){return{a:1,b:0,c:0,d:1,e:0,f:0}}const{sin:p,cos:g,acos:f,sqrt:y}=Math,{float:m}=a,w={};function x(){return Object.assign(Object.assign(Object.assign({},{a:1,b:0,c:0,d:1,e:0,f:0}),{x:0,y:0,width:0,height:0}),{scaleX:1,scaleY:1,rotation:0,skewX:0,skewY:0})}const v={defaultMatrix:{a:1,b:0,c:0,d:1,e:0,f:0},defaultWorld:x(),tempMatrix:{},set(t,e=1,s=0,i=0,r=1,n=0,o=0){t.a=e,t.b=s,t.c=i,t.d=r,t.e=n,t.f=o},get:_,getWorld:x,copy(t,e){t.a=e.a,t.b=e.b,t.c=e.c,t.d=e.d,t.e=e.e,t.f=e.f},translate(t,e,s){t.e+=e,t.f+=s},translateInner(t,e,s,i){t.e+=t.a*e+t.c*s,t.f+=t.b*e+t.d*s,i&&(t.e-=e,t.f-=s)},scale(t,e,s=e){t.a*=e,t.b*=e,t.c*=s,t.d*=s},scaleOfOuter(t,e,s,i){b.toInnerPoint(t,e,w),b.scaleOfInner(t,w,s,i)},scaleOfInner(t,e,s,i=s){b.translateInner(t,e.x,e.y),b.scale(t,s,i),b.translateInner(t,-e.x,-e.y)},rotate(t,e){const{a:s,b:i,c:r,d:n}=t,o=g(e*=h),a=p(e);t.a=s*o-i*a,t.b=s*a+i*o,t.c=r*o-n*a,t.d=r*a+n*o},rotateOfOuter(t,e,s){b.toInnerPoint(t,e,w),b.rotateOfInner(t,w,s)},rotateOfInner(t,e,s){b.translateInner(t,e.x,e.y),b.rotate(t,s),b.translateInner(t,-e.x,-e.y)},skew(t,e,s){const{a:i,b:r,c:n,d:o}=t;s&&(s*=h,t.a=i+n*s,t.b=r+o*s),e&&(e*=h,t.c=n+i*e,t.d=o+r*e)},skewOfOuter(t,e,s,i){b.toInnerPoint(t,e,w),b.skewOfInner(t,w,s,i)},skewOfInner(t,e,s,i=0){b.translateInner(t,e.x,e.y),b.skew(t,s,i),b.translateInner(t,-e.x,-e.y)},multiply(t,e){const{a:s,b:i,c:r,d:n,e:o,f:a}=t;t.a=e.a*s+e.b*r,t.b=e.a*i+e.b*n,t.c=e.c*s+e.d*r,t.d=e.c*i+e.d*n,t.e=e.e*s+e.f*r+o,t.f=e.e*i+e.f*n+a},multiplyParent(t,e,s,i,r,n){let{e:o,f:a}=t;if(n&&(o+=n.scrollX,a+=n.scrollY),s||(s=t),void 0===i&&(i=1!==t.a||t.b||t.c||1!==t.d),i){const{a:i,b:n,c:o,d:a}=t;s.a=i*e.a+n*e.c,s.b=i*e.b+n*e.d,s.c=o*e.a+a*e.c,s.d=o*e.b+a*e.d,r&&(s.scaleX=e.scaleX*r.scaleX,s.scaleY=e.scaleY*r.scaleY)}else s.a=e.a,s.b=e.b,s.c=e.c,s.d=e.d,r&&(s.scaleX=e.scaleX,s.scaleY=e.scaleY);s.e=o*e.a+a*e.c+e.e,s.f=o*e.b+a*e.d+e.f},divide(t,e){b.multiply(t,b.tempInvert(e))},divideParent(t,e){b.multiplyParent(t,b.tempInvert(e))},tempInvert(t){const{tempMatrix:e}=b;return b.copy(e,t),b.invert(e),e},invert(t){const{a:e,b:s,c:i,d:r,e:n,f:o}=t;if(s||i){const a=1/(e*r-s*i);t.a=r*a,t.b=-s*a,t.c=-i*a,t.d=e*a,t.e=-(n*r-o*i)*a,t.f=-(o*e-n*s)*a}else if(1===e&&1===r)t.e=-n,t.f=-o;else{const s=1/(e*r);t.a=r*s,t.d=e*s,t.e=-n*r*s,t.f=-o*e*s}},toOuterPoint(t,e,s,i){const{x:r,y:n}=e;s||(s=e),s.x=r*t.a+n*t.c,s.y=r*t.b+n*t.d,i||(s.x+=t.e,s.y+=t.f)},toInnerPoint(t,e,s,i){const{a:r,b:n,c:o,d:a}=t,h=1/(r*a-n*o),{x:l,y:d}=e;if(s||(s=e),s.x=(l*a-d*o)*h,s.y=(d*r-l*n)*h,!i){const{e:e,f:i}=t;s.x-=(e*a-i*o)*h,s.y-=(i*r-e*n)*h}},setLayout(t,e,s,i,r){const{x:n,y:o,scaleX:a,scaleY:l}=e;if(void 0===r&&(r=e.rotation||e.skewX||e.skewY),r){const{rotation:s,skewX:i,skewY:r}=e,n=s*h,o=g(n),d=p(n);if(i||r){const e=i*h,s=r*h;t.a=(o+s*-d)*a,t.b=(d+s*o)*a,t.c=(e*o-d)*l,t.d=(o+e*d)*l}else t.a=o*a,t.b=d*a,t.c=-d*l,t.d=o*l}else t.a=a,t.b=0,t.c=0,t.d=l;t.e=n,t.f=o,(s=s||i)&&b.translateInner(t,-s.x,-s.y,!i)},getLayout(t,e,s,i){const{a:r,b:n,c:o,d:a,e:l,f:c}=t;let u,_,w,x,v,b=l,B=c;if(n||o){const t=r*a-n*o;if(o&&!i){u=y(r*r+n*n),_=t/u;const e=r/u;w=n>0?f(e):-f(e)}else{_=y(o*o+a*a),u=t/_;const e=o/_;w=d-(a>0?f(-e):-f(e))}const e=m(g(w)),s=p(w);u=m(u),_=m(_),x=e?m((o/_+s)/e/h,9):0,v=e?m((n/u-s)/e/h,9):0,w=m(w/h)}else u=r,_=a,w=x=v=0;return(e=s||e)&&(b+=e.x*r+e.y*o,B+=e.x*n+e.y*a,s||(b-=e.x,B-=e.y)),{x:b,y:B,scaleX:u,scaleY:_,rotation:w,skewX:x,skewY:v}},withScale(t,e,s=e){const i=t;if(!e||!s){const{a:i,b:r,c:n,d:o}=t;r||n?s=(i*o-r*n)/(e=y(i*i+r*r)):(e=i,s=o)}return i.scaleX=e,i.scaleY=s,i},reset(t){b.set(t)}},b=v,{toInnerPoint:B,toOuterPoint:k}=v,{sin:R,cos:S,abs:C,sqrt:T,atan2:P,min:O,PI:A}=Math,L={defaultPoint:{x:0,y:0},tempPoint:{},tempRadiusPoint:{},set(t,e=0,s=0){t.x=e,t.y=s},setRadius(t,e,s){t.radiusX=e,t.radiusY=void 0===s?e:s},copy(t,e){t.x=e.x,t.y=e.y},copyFrom(t,e,s){t.x=e,t.y=s},move(t,e,s){t.x+=e,t.y+=s},scale(t,e,s=e){t.x&&(t.x*=e),t.y&&(t.y*=s)},scaleOf(t,e,s,i=s){t.x+=(t.x-e.x)*(s-1),t.y+=(t.y-e.y)*(i-1)},rotate(t,e,s){s||(s=E.defaultPoint);const i=S(e*=h),r=R(e),n=t.x-s.x,o=t.y-s.y;t.x=s.x+n*i-o*r,t.y=s.y+n*r+o*i},tempToInnerOf(t,e){const{tempPoint:s}=E;return W(s,t),B(e,s,s),s},tempToOuterOf(t,e){const{tempPoint:s}=E;return W(s,t),k(e,s,s),s},tempToInnerRadiusPointOf(t,e){const{tempRadiusPoint:s}=E;return W(s,t),E.toInnerRadiusPointOf(t,e,s),s},toInnerRadiusPointOf(t,e,s){s||(s=t),B(e,t,s),s.radiusX=Math.abs(t.radiusX/e.scaleX),s.radiusY=Math.abs(t.radiusY/e.scaleY)},toInnerOf(t,e,s){B(e,t,s)},toOuterOf(t,e,s){k(e,t,s)},getCenter:(t,e)=>({x:t.x+(e.x-t.x)/2,y:t.y+(e.y-t.y)/2}),getCenterX:(t,e)=>t+(e-t)/2,getCenterY:(t,e)=>t+(e-t)/2,getDistance:(t,e)=>I(t.x,t.y,e.x,e.y),getDistanceFrom(t,e,s,i){const r=C(s-t),n=C(i-e);return T(r*r+n*n)},getMinDistanceFrom:(t,e,s,i,r,n)=>O(I(t,e,s,i),I(s,i,r,n)),getAngle:(t,e)=>M(t,e)/h,getRotation:(t,e,s,i)=>(i||(i=e),E.getRadianFrom(t.x,t.y,e.x,e.y,s.x,s.y,i.x,i.y)/h),getRadianFrom(t,e,s,i,r,n,o,a){void 0===o&&(o=s,a=i);let h=P(e-i,t-s);const d=P(n-a,r-o)-h;return d<-A?d+l:d},getAtan2:(t,e)=>P(e.y-t.y,e.x-t.x),getDistancePoint(t,e,s,i){const r=M(t,e);return(e=i?e:{}).x=t.x+S(r)*s,e.y=t.y+R(r)*s,e},toNumberPoints(t){let e=t;return"object"==typeof t[0]&&(e=[],t.forEach((t=>e.push(t.x,t.y)))),e},reset(t){E.reset(t)}},E=L,{getDistanceFrom:I,copy:W,getAtan2:M}=E;class D{constructor(t,e){this.set(t,e)}set(t,e){return"object"==typeof t?L.copy(this,t):L.set(this,t,e),this}get(){const{x:t,y:e}=this;return{x:t,y:e}}clone(){return new D(this)}move(t,e){return L.move(this,t,e),this}scale(t,e){return L.scale(this,t,e),this}scaleOf(t,e,s){return L.scaleOf(this,t,e,s),this}rotate(t,e){return L.rotate(this,t,e),this}rotateOf(t,e){return L.rotate(this,e,t),this}getRotation(t,e,s){return L.getRotation(this,t,e,s)}toInnerOf(t,e){return L.toInnerOf(this,t,e),this}toOuterOf(t,e){return L.toOuterOf(this,t,e),this}getCenter(t){return new D(L.getCenter(this,t))}getDistance(t){return L.getDistance(this,t)}getDistancePoint(t,e,s){return new D(L.getDistancePoint(this,t,e,s))}getAngle(t){return L.getAngle(this,t)}getAtan2(t){return L.getAtan2(this,t)}reset(){return L.reset(this),this}}const F=new D;class z{constructor(t,e,s,i,r,n){this.set(t,e,s,i,r,n)}set(t,e,s,i,r,n){return"object"==typeof t?v.copy(this,t):v.set(this,t,e,s,i,r,n),this}setWith(t){return v.copy(this,t),this.scaleX=t.scaleX,this.scaleY=t.scaleY,this}get(){const{a:t,b:e,c:s,d:i,e:r,f:n}=this;return{a:t,b:e,c:s,d:i,e:r,f:n}}clone(){return new z(this)}translate(t,e){return v.translate(this,t,e),this}translateInner(t,e){return v.translateInner(this,t,e),this}scale(t,e){return v.scale(this,t,e),this}scaleWith(t,e){return v.scale(this,t,e),this.scaleX*=t,this.scaleY*=e||t,this}scaleOfOuter(t,e,s){return v.scaleOfOuter(this,t,e,s),this}scaleOfInner(t,e,s){return v.scaleOfInner(this,t,e,s),this}rotate(t){return v.rotate(this,t),this}rotateOfOuter(t,e){return v.rotateOfOuter(this,t,e),this}rotateOfInner(t,e){return v.rotateOfInner(this,t,e),this}skew(t,e){return v.skew(this,t,e),this}skewOfOuter(t,e,s){return v.skewOfOuter(this,t,e,s),this}skewOfInner(t,e,s){return v.skewOfInner(this,t,e,s),this}multiply(t){return v.multiply(this,t),this}multiplyParent(t){return v.multiplyParent(this,t),this}divide(t){return v.divide(this,t),this}divideParent(t){return v.divideParent(this,t),this}invert(){return v.invert(this),this}invertWith(){return v.invert(this),this.scaleX=1/this.scaleX,this.scaleY=1/this.scaleY,this}toOuterPoint(t,e,s){v.toOuterPoint(this,t,e,s)}toInnerPoint(t,e,s){v.toInnerPoint(this,t,e,s)}setLayout(t,e,s){return v.setLayout(this,t,e,s),this}getLayout(t,e,s){return v.getLayout(this,t,e,s)}withScale(t,e){return v.withScale(this,t,e)}reset(){v.reset(this)}}const N=new z,Y={tempPointBounds:{},setPoint(t,e,s){t.minX=t.maxX=e,t.minY=t.maxY=s},addPoint(t,e,s){t.minX=e<t.minX?e:t.minX,t.minY=s<t.minY?s:t.minY,t.maxX=e>t.maxX?e:t.maxX,t.maxY=s>t.maxY?s:t.maxY},addBounds(t,e,s,i,r){X(t,e,s),X(t,e+i,s+r)},copy(t,e){t.minX=e.minX,t.minY=e.minY,t.maxX=e.maxX,t.maxY=e.maxY},addPointBounds(t,e){t.minX=e.minX<t.minX?e.minX:t.minX,t.minY=e.minY<t.minY?e.minY:t.minY,t.maxX=e.maxX>t.maxX?e.maxX:t.maxX,t.maxY=e.maxY>t.maxY?e.maxY:t.maxY},toBounds(t,e){e.x=t.minX,e.y=t.minY,e.width=t.maxX-t.minX,e.height=t.maxY-t.minY}},{addPoint:X}=Y,{tempPointBounds:j,setPoint:U,addPoint:V,toBounds:G}=Y,{toOuterPoint:H}=v,{float:q,fourNumber:Q}=a,{floor:J,ceil:$}=Math;let Z,K,tt,et;const st={},it={},rt={tempBounds:{},set(t,e=0,s=0,i=0,r=0){t.x=e,t.y=s,t.width=i,t.height=r},copy(t,e){t.x=e.x,t.y=e.y,t.width=e.width,t.height=e.height},copyAndSpread(t,e,s,i,r){const{x:n,y:o,width:a,height:h}=e;if(s instanceof Array){const e=Q(s);i?nt.set(t,n+e[3],o+e[0],a-e[1]-e[3],h-e[2]-e[0]):nt.set(t,n-e[3],o-e[0],a+e[1]+e[3],h+e[2]+e[0])}else i&&(s=-s),nt.set(t,n-s,o-s,a+2*s,h+2*s);r&&("width"===r?(t.y=o,t.height=h):(t.x=n,t.width=a))},minX:t=>t.width>0?t.x:t.x+t.width,minY:t=>t.height>0?t.y:t.y+t.height,maxX:t=>t.width>0?t.x+t.width:t.x,maxY:t=>t.height>0?t.y+t.height:t.y,move(t,e,s){t.x+=e,t.y+=s},getByMove:(t,e,s)=>(t=Object.assign({},t),nt.move(t,e,s),t),toOffsetOutBounds(t,e,s){e?at(e,t):e=t,s?(e.offsetX=-(nt.maxX(s)-t.x),e.offsetY=-(nt.maxY(s)-t.y)):(e.offsetX=t.x+t.width,e.offsetY=t.y+t.height),nt.move(e,-e.offsetX,-e.offsetY)},scale(t,e,s=e){L.scale(t,e,s),t.width*=e,t.height*=s},scaleOf(t,e,s,i=s){L.scaleOf(t,e,s,i),t.width*=s,t.height*=i},tempToOuterOf:(t,e)=>(nt.copy(nt.tempBounds,t),nt.toOuterOf(nt.tempBounds,e),nt.tempBounds),getOuterOf:(t,e)=>(t=Object.assign({},t),nt.toOuterOf(t,e),t),toOuterOf(t,e,s){if(s||(s=t),0===e.b&&0===e.c){const{a:i,d:r}=e;i>0?(s.width=t.width*i,s.x=e.e+t.x*i):(s.width=t.width*-i,s.x=e.e+t.x*i-s.width),r>0?(s.height=t.height*r,s.y=e.f+t.y*r):(s.height=t.height*-r,s.y=e.f+t.y*r-s.height)}else st.x=t.x,st.y=t.y,H(e,st,it),U(j,it.x,it.y),st.x=t.x+t.width,H(e,st,it),V(j,it.x,it.y),st.y=t.y+t.height,H(e,st,it),V(j,it.x,it.y),st.x=t.x,H(e,st,it),V(j,it.x,it.y),G(j,s)},toInnerOf(t,e,s){s||(s=t),nt.move(s,-e.e,-e.f),nt.scale(s,1/e.a,1/e.d)},getFitMatrix(t,e,s=1){const i=Math.min(s,Math.min(t.width/e.width,t.height/e.height));return new z(i,0,0,i,-e.x*i,-e.y*i)},getSpread(t,e,s){const i={};return nt.copyAndSpread(i,t,e,!1,s),i},spread(t,e,s){nt.copyAndSpread(t,t,e,!1,s)},shrink(t,e,s){nt.copyAndSpread(t,t,e,!0,s)},ceil(t){const{x:e,y:s}=t;t.x=J(t.x),t.y=J(t.y),t.width=e>t.x?$(t.width+e-t.x):$(t.width),t.height=s>t.y?$(t.height+s-t.y):$(t.height)},unsign(t){t.width<0&&(t.x+=t.width,t.width=-t.width),t.height<0&&(t.y+=t.height,t.height=-t.height)},float(t,e){t.x=q(t.x,e),t.y=q(t.y,e),t.width=q(t.width,e),t.height=q(t.height,e)},add(t,e,s){Z=t.x+t.width,K=t.y+t.height,tt=e.x,et=e.y,s||(tt+=e.width,et+=e.height),Z=Z>tt?Z:tt,K=K>et?K:et,t.x=t.x<e.x?t.x:e.x,t.y=t.y<e.y?t.y:e.y,t.width=Z-t.x,t.height=K-t.y},addList(t,e){nt.setListWithFn(t,e,void 0,!0)},setList(t,e,s=!1){nt.setListWithFn(t,e,void 0,s)},addListWithFn(t,e,s){nt.setListWithFn(t,e,s,!0)},setListWithFn(t,e,s,i=!1){let r,n=!0;for(let o=0,a=e.length;o<a;o++)r=s?s(e[o]):e[o],r&&(r.width||r.height)&&(n?(n=!1,i||at(t,r)):ot(t,r));n&&nt.reset(t)},setPoints(t,e){e.forEach(((t,e)=>0===e?U(j,t.x,t.y):V(j,t.x,t.y))),G(j,t)},setPoint(t,e){nt.set(t,e.x,e.y)},addPoint(t,e){ot(t,e,!0)},getPoints(t){const{x:e,y:s,width:i,height:r}=t;return[{x:e,y:s},{x:e+i,y:s},{x:e+i,y:s+r},{x:e,y:s+r}]},hitRadiusPoint:(t,e,s)=>(s&&(e=L.tempToInnerRadiusPointOf(e,s)),e.x>=t.x-e.radiusX&&e.x<=t.x+t.width+e.radiusX&&e.y>=t.y-e.radiusY&&e.y<=t.y+t.height+e.radiusY),hitPoint:(t,e,s)=>(s&&(e=L.tempToInnerOf(e,s)),e.x>=t.x&&e.x<=t.x+t.width&&e.y>=t.y&&e.y<=t.y+t.height),hit:(t,e,s)=>(s&&(e=nt.tempToOuterOf(e,s)),!(t.y+t.height<e.y||e.y+e.height<t.y||t.x+t.width<e.x||e.x+e.width<t.x)),includes:(t,e,s)=>(s&&(e=nt.tempToOuterOf(e,s)),t.x<=e.x&&t.y<=e.y&&t.x+t.width>=e.x+e.width&&t.y+t.height>=e.y+e.height),getIntersectData(t,e,s){if(s&&(e=nt.tempToOuterOf(e,s)),!nt.hit(t,e))return{x:0,y:0,width:0,height:0};let{x:i,y:r,width:n,height:o}=e;return Z=i+n,K=r+o,tt=t.x+t.width,et=t.y+t.height,i=i>t.x?i:t.x,r=r>t.y?r:t.y,Z=Z<tt?Z:tt,K=K<et?K:et,n=Z-i,o=K-r,{x:i,y:r,width:n,height:o}},intersect(t,e,s){nt.copy(t,nt.getIntersectData(t,e,s))},isSame:(t,e)=>t.x===e.x&&t.y===e.y&&t.width===e.width&&t.height===e.height,isEmpty:t=>0===t.x&&0===t.y&&0===t.width&&0===t.height,reset(t){nt.set(t)}},nt=rt,{add:ot,copy:at}=nt;class ht{get minX(){return rt.minX(this)}get minY(){return rt.minY(this)}get maxX(){return rt.maxX(this)}get maxY(){return rt.maxY(this)}constructor(t,e,s,i){this.set(t,e,s,i)}set(t,e,s,i){return"object"==typeof t?rt.copy(this,t):rt.set(this,t,e,s,i),this}get(){const{x:t,y:e,width:s,height:i}=this;return{x:t,y:e,width:s,height:i}}clone(){return new ht(this)}move(t,e){return rt.move(this,t,e),this}scale(t,e){return rt.scale(this,t,e),this}scaleOf(t,e,s){return rt.scaleOf(this,t,e,s),this}toOuterOf(t,e){return rt.toOuterOf(this,t,e),this}toInnerOf(t,e){return rt.toInnerOf(this,t,e),this}getFitMatrix(t,e){return rt.getFitMatrix(this,t,e)}spread(t,e){return rt.spread(this,t,e),this}shrink(t,e){return rt.shrink(this,t,e),this}ceil(){return rt.ceil(this),this}unsign(){return rt.unsign(this),this}float(t){return rt.float(this,t),this}add(t){return rt.add(this,t),this}addList(t){return rt.setList(this,t,!0),this}setList(t){return rt.setList(this,t),this}addListWithFn(t,e){return rt.setListWithFn(this,t,e,!0),this}setListWithFn(t,e){return rt.setListWithFn(this,t,e),this}setPoint(t){return rt.setPoint(this,t),this}setPoints(t){return rt.setPoints(this,t),this}addPoint(t){return rt.addPoint(this,t),this}getPoints(){return rt.getPoints(this)}hitPoint(t,e){return rt.hitPoint(this,t,e)}hitRadiusPoint(t,e){return rt.hitRadiusPoint(this,t,e)}hit(t,e){return rt.hit(this,t,e)}includes(t,e){return rt.includes(this,t,e)}intersect(t,e){return rt.intersect(this,t,e),this}getIntersect(t,e){return new ht(rt.getIntersectData(this,t,e))}isSame(t){return rt.isSame(this,t)}isEmpty(){return rt.isEmpty(this)}reset(){rt.reset(this)}}const lt=new ht;class dt{constructor(t,e,s,i,r,n){"object"==typeof t?this.copy(t):this.set(t,e,s,i,r,n)}set(t=0,e=0,s=0,i=0,r=0,n=0){this.top=t,this.right=e,this.bottom=s,this.left=i,this.width=r,this.height=n}copy(t){const{top:e,right:s,bottom:i,left:r,width:n,height:o}=t;this.set(e,s,i,r,n,o)}getBoundsFrom(t){const{top:e,right:s,bottom:i,left:r,width:n,height:o}=this;return new ht(r,e,n||t.width-r-s,o||t.height-e-i)}}var ct,ut;!function(t){t[t.top=0]="top",t[t.right=1]="right",t[t.bottom=2]="bottom",t[t.left=3]="left"}(ct||(ct={})),function(t){t[t.topLeft=0]="topLeft",t[t.top=1]="top",t[t.topRight=2]="topRight",t[t.right=3]="right",t[t.bottomRight=4]="bottomRight",t[t.bottom=5]="bottom",t[t.bottomLeft=6]="bottomLeft",t[t.left=7]="left",t[t.center=8]="center",t[t["top-left"]=0]="top-left",t[t["top-right"]=2]="top-right",t[t["bottom-right"]=4]="bottom-right",t[t["bottom-left"]=6]="bottom-left"}(ut||(ut={}));const _t=[{x:0,y:0},{x:.5,y:0},{x:1,y:0},{x:1,y:.5},{x:1,y:1},{x:.5,y:1},{x:0,y:1},{x:0,y:.5},{x:.5,y:.5}];_t.forEach((t=>t.type="percent"));const pt={directionData:_t,tempPoint:{},get:gt,toPoint(t,e,s,i,r){const n=gt(t);s.x=n.x,s.y=n.y,"percent"===n.type&&(s.x*=e.width,s.y*=e.height,r&&(s.x-=r.x,s.y-=r.y,n.x&&(s.x-=1===n.x?r.width:.5===n.x?n.x*r.width:0),n.y&&(s.y-=1===n.y?r.height:.5===n.y?n.y*r.height:0))),i||(s.x+=e.x,s.y+=e.y)}};function gt(t){return"string"==typeof t?_t[ut[t]]:t}const{toPoint:ft}=pt,yt={toPoint(t,e,s,i,r){ft(t,s,i,r,e)}},mt={0:1,1:1,2:1,3:1,4:1,5:1,6:1,7:1,8:1,9:1,".":1,e:1,E:1};class wt{constructor(t){this.repeatMap={},this.name=t}static get(t){return new wt(t)}static set filter(t){this.filterList=xt(t)}static set exclude(t){this.excludeList=xt(t)}log(...t){if(vt.enable){if(vt.filterList.length&&vt.filterList.every((t=>t!==this.name)))return;if(vt.excludeList.length&&vt.excludeList.some((t=>t===this.name)))return;console.log("%c"+this.name,"color:#21ae62",...t)}}tip(...t){vt.enable&&this.warn(...t)}warn(...t){vt.showWarn&&console.warn(this.name,...t)}repeat(t,...e){this.repeatMap[t]||(this.warn("repeat:"+t,...e),this.repeatMap[t]=!0)}error(...t){try{throw new Error}catch(e){console.error(this.name,...t,e)}}}function xt(t){return t?"string"==typeof t&&(t=[t]):t=[],t}wt.filterList=[],wt.excludeList=[],wt.showWarn=!0;const vt=wt,bt=wt.get("RunTime"),Bt={currentId:0,currentName:"",idMap:{},nameMap:{},nameToIdMap:{},start(t,e){const i=s.create(s.RUNTIME);return kt.currentId=kt.idMap[i]=e?performance.now():Date.now(),kt.currentName=kt.nameMap[i]=t,kt.nameToIdMap[t]=i,i},end(t,e){const s=kt.idMap[t],i=kt.nameMap[t],r=e?(performance.now()-s)/1e3:Date.now()-s;kt.idMap[t]=kt.nameMap[t]=kt.nameToIdMap[i]=void 0,bt.log(i,r,"ms")},endOfName(t,e){const s=kt.nameToIdMap[t];void 0!==s&&kt.end(s,e)}},kt=Bt,Rt={list:{},add(t){this.list[t]=!0},check(t,e){const s=this.list[t];return!s&&e&&this.need(t),s},need(t){console.error("need plugin: @leafer-in/"+t)}},St=wt.get("UICreator"),Ct={list:{},register(t){const{__tag:e}=t.prototype;Tt[e]&&St.repeat(e),Tt[e]=t},get(t,e,s,i,r,n){Tt[t]||St.error("not register "+t);const o=new Tt[t](e);return void 0!==s&&(o.x=s,i&&(o.y=i),r&&(o.width=r),n&&(o.height=n)),o}},{list:Tt}=Ct,Pt=wt.get("EventCreator"),Ot={nameList:{},register(t){let e;Object.keys(t).forEach((s=>{e=t[s],"string"==typeof e&&(At[e]&&Pt.repeat(e),At[e]=t)}))},changeName(t,e){const s=At[t];if(s){const i=Object.keys(s).find((e=>s[e]===t));i&&(s[i]=e,At[e]=s)}},has(t){return!!this.nameList[t]},get:(t,...e)=>new At[t](...e)},{nameList:At}=Ot;class Lt{constructor(){this.list=[]}add(t){t.manager=this,this.list.push(t)}get(t){let s;const{list:i}=this;for(let e=0,r=i.length;e<r;e++)if(s=i[e],s.recycled&&s.isSameSize(t))return s.recycled=!1,s.manager||(s.manager=this),s;const r=e.canvas(t);return this.add(r),r}recycle(t){t.recycled=!0}clearRecycled(){let t;const e=[];for(let s=0,i=this.list.length;s<i;s++)t=this.list[s],t.recycled?t.destroy():e.push(t);this.list=e}clear(){this.list.forEach((t=>{t.destroy()})),this.list.length=0}destroy(){this.clear()}}const Et={default:(t,e)=>(It(e,t),It(t,e),t),assign(t,e,s){let i;Object.keys(e).forEach((r=>{var n,o;if(i=e[r],(null==i?void 0:i.constructor)===Object&&(null===(n=t[r])||void 0===n?void 0:n.constructor)===Object)return It(t[r],e[r],s&&s[r]);s&&r in s?(null===(o=s[r])||void 0===o?void 0:o.constructor)===Object&&It(t[r]={},e[r],s[r]):t[r]=e[r]}))},copyAttrs:(t,e,s)=>(s.forEach((s=>{void 0!==e[s]&&(t[s]=e[s])})),t),clone:t=>JSON.parse(JSON.stringify(t)),toMap(t){const e={};for(let s=0,i=t.length;s<i;s++)e[t[s]]=!0;return e}},{assign:It}=Et;class Wt{get __useNaturalRatio(){return!0}get __isLinePath(){const{path:t}=this;return t&&6===t.length&&1===t[0]}get __blendMode(){if(this.eraser&&"path"!==this.eraser)return"destination-out";const{blendMode:t}=this;return"pass-through"===t?null:t}constructor(t){this.__leaf=t}__get(t){if(this.__input){const e=this.__input[t];if(void 0!==e)return e}return this[t]}__getData(){const t={tag:this.__leaf.tag},{__input:e}=this;let s;for(let i in this)"_"!==i[0]&&(s=e?e[i]:void 0,t[i]=void 0===s?this[i]:s);return t}__setInput(t,e){this.__input||(this.__input={}),this.__input[t]=e}__getInput(t){if(this.__input){const e=this.__input[t];if(void 0!==e)return e}if("path"!==t||this.__pathInputed)return this["_"+t]}__removeInput(t){this.__input&&void 0!==this.__input[t]&&(this.__input[t]=void 0)}__getInputData(t,e){const s={};if(t)if(t instanceof Array)for(let e of t)s[e]=this.__getInput(e);else for(let e in t)s[e]=this.__getInput(e);else{let t,e,{__input:i}=this;s.tag=this.__leaf.tag;for(let r in this)if("_"!==r[0]&&(t=this["_"+r],void 0!==t)){if("path"===r&&!this.__pathInputed)continue;e=i?i[r]:void 0,s[r]=void 0===e?t:e}}if(e&&e.matrix){const{a:t,b:e,c:i,d:r,e:n,f:o}=this.__leaf.__localMatrix;s.matrix={a:t,b:e,c:i,d:r,e:n,f:o}}return s}__setMiddle(t,e){this.__middle||(this.__middle={}),this.__middle[t]=e}__getMiddle(t){return this.__middle&&this.__middle[t]}__checkSingle(){const t=this;if("pass-through"===t.blendMode){const e=this.__leaf;t.opacity<1&&(e.isBranch||t.__hasMultiPaint)||e.__hasEraser||t.eraser?t.__single=!0:t.__single&&(t.__single=!1)}else t.__single=!0}__removeNaturalSize(){this.__naturalWidth=this.__naturalHeight=void 0}destroy(){this.__input=this.__middle=null}}var Mt;!function(t){t[t.No=0]="No",t[t.Yes=1]="Yes",t[t.NoAndSkip=2]="NoAndSkip",t[t.YesAndSkip=3]="YesAndSkip"}(Mt||(Mt={}));const Dt={};function Ft(t){return null==t}function zt(t,e,s,i){var r,n=arguments.length,o=n<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,s):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(t,e,s,i);else for(var a=t.length-1;a>=0;a--)(r=t[a])&&(o=(n<3?r(o):n>3?r(e,s,o):r(e,s))||o);return n>3&&o&&Object.defineProperty(e,s,o),o}function Nt(t,e,s,i){return new(s||(s=Promise))((function(r,n){function o(t){try{h(i.next(t))}catch(t){n(t)}}function a(t){try{h(i.throw(t))}catch(t){n(t)}}function h(t){var e;t.done?r(t.value):(e=t.value,e instanceof s?e:new s((function(t){t(e)}))).then(o,a)}h((i=i.apply(t,e||[])).next())}))}function Yt(t){return(e,s)=>{t||(t=s),Object.defineProperty(e,s,{get(){return this.context[t]},set(e){this.context[t]=e}})}}"function"==typeof SuppressedError&&SuppressedError;const Xt=[];function jt(){return(t,e)=>{Xt.push(e)}}const Ut=[];let Vt=class{set blendMode(t){"normal"===t&&(t="source-over"),this.context.globalCompositeOperation=t}get blendMode(){return this.context.globalCompositeOperation}set dashPattern(t){this.context.setLineDash(t||Ut)}get dashPattern(){return this.context.getLineDash()}__bindContext(){let t;Xt.forEach((e=>{t=this.context[e],t&&(this[e]=t.bind(this.context))})),this.textBaseline="alphabetic"}setTransform(t,e,s,i,r,n){}resetTransform(){}getTransform(){}save(){}restore(){}transform(t,e,s,i,r,n){"object"==typeof t?this.context.transform(t.a,t.b,t.c,t.d,t.e,t.f):this.context.transform(t,e,s,i,r,n)}translate(t,e){}scale(t,e){}rotate(t){}fill(t,e){}stroke(t){}clip(t,e){}fillRect(t,e,s,i){}strokeRect(t,e,s,i){}clearRect(t,e,s,i){}drawImage(t,e,s,i,r,n,o,a,h){switch(arguments.length){case 9:if(e<0){const t=-e/i*a;i+=e,e=0,n+=t,a-=t}if(s<0){const t=-s/r*h;r+=s,s=0,o+=t,h-=t}this.context.drawImage(t,e,s,i,r,n,o,a,h);break;case 5:this.context.drawImage(t,e,s,i,r);break;case 3:this.context.drawImage(t,e,s)}}beginPath(){}moveTo(t,e){}lineTo(t,e){}bezierCurveTo(t,e,s,i,r,n){}quadraticCurveTo(t,e,s,i){}closePath(){}arc(t,e,s,i,r,n){}arcTo(t,e,s,i,r){}ellipse(t,e,s,i,r,n,o,a){}rect(t,e,s,i){}roundRect(t,e,s,i,r){}createConicGradient(t,e,s){}createLinearGradient(t,e,s,i){}createPattern(t,e){}createRadialGradient(t,e,s,i,r,n){}fillText(t,e,s,i){}measureText(t){}strokeText(t,e,s,i){}destroy(){this.context=null}};zt([Yt("imageSmoothingEnabled")],Vt.prototype,"smooth",void 0),zt([Yt("imageSmoothingQuality")],Vt.prototype,"smoothLevel",void 0),zt([Yt("globalAlpha")],Vt.prototype,"opacity",void 0),zt([Yt()],Vt.prototype,"fillStyle",void 0),zt([Yt()],Vt.prototype,"strokeStyle",void 0),zt([Yt("lineWidth")],Vt.prototype,"strokeWidth",void 0),zt([Yt("lineCap")],Vt.prototype,"strokeCap",void 0),zt([Yt("lineJoin")],Vt.prototype,"strokeJoin",void 0),zt([Yt("lineDashOffset")],Vt.prototype,"dashOffset",void 0),zt([Yt()],Vt.prototype,"miterLimit",void 0),zt([Yt()],Vt.prototype,"shadowBlur",void 0),zt([Yt()],Vt.prototype,"shadowColor",void 0),zt([Yt()],Vt.prototype,"shadowOffsetX",void 0),zt([Yt()],Vt.prototype,"shadowOffsetY",void 0),zt([Yt()],Vt.prototype,"filter",void 0),zt([Yt()],Vt.prototype,"font",void 0),zt([Yt()],Vt.prototype,"fontKerning",void 0),zt([Yt()],Vt.prototype,"fontStretch",void 0),zt([Yt()],Vt.prototype,"fontVariantCaps",void 0),zt([Yt()],Vt.prototype,"textAlign",void 0),zt([Yt()],Vt.prototype,"textBaseline",void 0),zt([Yt()],Vt.prototype,"textRendering",void 0),zt([Yt()],Vt.prototype,"wordSpacing",void 0),zt([Yt()],Vt.prototype,"letterSpacing",void 0),zt([Yt()],Vt.prototype,"direction",void 0),zt([jt()],Vt.prototype,"setTransform",null),zt([jt()],Vt.prototype,"resetTransform",null),zt([jt()],Vt.prototype,"getTransform",null),zt([jt()],Vt.prototype,"save",null),zt([jt()],Vt.prototype,"restore",null),zt([jt()],Vt.prototype,"translate",null),zt([jt()],Vt.prototype,"scale",null),zt([jt()],Vt.prototype,"rotate",null),zt([jt()],Vt.prototype,"fill",null),zt([jt()],Vt.prototype,"stroke",null),zt([jt()],Vt.prototype,"clip",null),zt([jt()],Vt.prototype,"fillRect",null),zt([jt()],Vt.prototype,"strokeRect",null),zt([jt()],Vt.prototype,"clearRect",null),zt([jt()],Vt.prototype,"beginPath",null),zt([jt()],Vt.prototype,"moveTo",null),zt([jt()],Vt.prototype,"lineTo",null),zt([jt()],Vt.prototype,"bezierCurveTo",null),zt([jt()],Vt.prototype,"quadraticCurveTo",null),zt([jt()],Vt.prototype,"closePath",null),zt([jt()],Vt.prototype,"arc",null),zt([jt()],Vt.prototype,"arcTo",null),zt([jt()],Vt.prototype,"ellipse",null),zt([jt()],Vt.prototype,"rect",null),zt([jt()],Vt.prototype,"roundRect",null),zt([jt()],Vt.prototype,"createConicGradient",null),zt([jt()],Vt.prototype,"createLinearGradient",null),zt([jt()],Vt.prototype,"createPattern",null),zt([jt()],Vt.prototype,"createRadialGradient",null),zt([jt()],Vt.prototype,"fillText",null),zt([jt()],Vt.prototype,"measureText",null),zt([jt()],Vt.prototype,"strokeText",null);const{copy:Gt}=v,Ht={width:1,height:1,pixelRatio:1},qt=["width","height","pixelRatio"];class Qt extends Vt{get width(){return this.size.width}get height(){return this.size.height}get pixelRatio(){return this.size.pixelRatio}get pixelWidth(){return this.width*this.pixelRatio}get pixelHeight(){return this.height*this.pixelRatio}get allowBackgroundColor(){return this.view&&this.parentView}constructor(e,i){super(),this.size={},this.worldTransform={},e||(e=Ht),e.pixelRatio||(e.pixelRatio=t.devicePixelRatio),this.manager=i,this.innerId=s.create(s.CNAVAS);const{width:r,height:n,pixelRatio:o}=e;this.autoLayout=!r||!n,this.size.pixelRatio=o,this.config=e,this.init()}init(){}__createContext(){const{view:t}=this,{contextSettings:e}=this.config;this.context=e?t.getContext("2d",e):t.getContext("2d"),this.__bindContext()}export(t,e){}toBlob(t,e){}toDataURL(t,e){}saveAs(t,e){}resize(t){if(this.isSameSize(t))return;let e;this.context&&!this.unreal&&this.width&&(e=this.getSameCanvas(),e.copyWorld(this));const s=this.size;Et.copyAttrs(s,t,qt),qt.forEach((t=>s[t]||(s[t]=1))),this.bounds=new ht(0,0,this.width,this.height),this.context&&!this.unreal&&(this.updateViewSize(),this.smooth=this.config.smooth),this.updateClientBounds(),this.context&&!this.unreal&&e&&(this.clearWorld(e.bounds),this.copyWorld(e),e.recycle())}updateViewSize(){}updateClientBounds(){}getClientBounds(t){return t&&this.updateClientBounds(),this.clientBounds||this.bounds}startAutoLayout(t,e){}stopAutoLayout(){}setCursor(t){}setWorld(t,e){const{pixelRatio:s}=this,i=this.worldTransform;if(e){const{a:r,b:n,c:o,d:a,e:h,f:l}=e;this.setTransform(i.a=(t.a*r+t.b*o)*s,i.b=(t.a*n+t.b*a)*s,i.c=(t.c*r+t.d*o)*s,i.d=(t.c*n+t.d*a)*s,i.e=(t.e*r+t.f*o+h)*s,i.f=(t.e*n+t.f*a+l)*s)}else this.setTransform(i.a=t.a*s,i.b=t.b*s,i.c=t.c*s,i.d=t.d*s,i.e=t.e*s,i.f=t.f*s)}useWorldTransform(t){t&&(this.worldTransform=t);const e=this.worldTransform;e&&this.setTransform(e.a,e.b,e.c,e.d,e.e,e.f)}setStroke(t,e,s){e&&(this.strokeWidth=e),t&&(this.strokeStyle=t),s&&this.setStrokeOptions(s)}setStrokeOptions(t){this.strokeCap="none"===t.strokeCap?"butt":t.strokeCap,this.strokeJoin=t.strokeJoin,this.dashPattern=t.dashPattern,this.dashOffset=t.dashOffset,this.miterLimit=t.miterLimit}saveBlendMode(t){this.savedBlendMode=this.blendMode,this.blendMode=t}restoreBlendMode(){this.blendMode=this.savedBlendMode}hitFill(t,e){return!0}hitStroke(t,e){return!0}hitPixel(t,e,s=1){return!0}setWorldShadow(t,e,s,i){const{pixelRatio:r}=this;this.shadowOffsetX=t*r,this.shadowOffsetY=e*r,this.shadowBlur=s*r,this.shadowColor=i||"black"}setWorldBlur(t){const{pixelRatio:e}=this;this.filter=`blur(${t*e}px)`}copyWorld(t,e,s,i){if(i&&(this.blendMode=i),e){const{pixelRatio:i}=this;s||(s=e),this.drawImage(t.view,e.x*i,e.y*i,e.width*i,e.height*i,s.x*i,s.y*i,s.width*i,s.height*i)}else this.drawImage(t.view,0,0);i&&(this.blendMode="source-over")}copyWorldToInner(t,e,s,i){if(i&&(this.blendMode=i),e.b||e.c)this.save(),this.resetTransform(),this.copyWorld(t,e,rt.tempToOuterOf(s,e)),this.restore();else{const{pixelRatio:i}=this;this.drawImage(t.view,e.x*i,e.y*i,e.width*i,e.height*i,s.x,s.y,s.width,s.height)}i&&(this.blendMode="source-over")}copyWorldByReset(t,e,s,i,r){this.resetTransform(),this.copyWorld(t,e,s,i),r||this.useWorldTransform()}useGrayscaleAlpha(t){let e,s;this.setTempBounds(t,!0,!0);const{context:i}=this,r=i.getImageData(lt.x,lt.y,lt.width,lt.height),{data:n}=r;for(let t=0,i=n.length;t<i;t+=4)s=.299*n[t]+.587*n[t+1]+.114*n[t+2],(e=n[t+3])&&(n[t+3]=255===e?s:e*(s/255));i.putImageData(r,lt.x,lt.y)}useMask(t,e,s){this.copyWorld(t,e,s,"destination-in")}useEraser(t,e,s){this.copyWorld(t,e,s,"destination-out")}fillWorld(t,e,s){s&&(this.blendMode=s),this.fillStyle=e,this.setTempBounds(t),this.fillRect(lt.x,lt.y,lt.width,lt.height),s&&(this.blendMode="source-over")}strokeWorld(t,e,s){s&&(this.blendMode=s),this.strokeStyle=e,this.setTempBounds(t),this.strokeRect(lt.x,lt.y,lt.width,lt.height),s&&(this.blendMode="source-over")}clearWorld(t,e){this.setTempBounds(t,e),this.clearRect(lt.x,lt.y,lt.width,lt.height)}clipWorld(t,e){this.beginPath(),this.setTempBounds(t,e),this.rect(lt.x,lt.y,lt.width,lt.height),this.clip()}clear(){const{pixelRatio:t}=this;this.clearRect(0,0,this.width*t+2,this.height*t+2)}setTempBounds(t,e,s){lt.set(t),s&&lt.intersect(this.bounds),lt.scale(this.pixelRatio),e&&lt.ceil()}isSameSize(t){return this.width===t.width&&this.height===t.height&&this.pixelRatio===t.pixelRatio}getSameCanvas(t,s){const i=this.manager?this.manager.get(this.size):e.canvas(Object.assign({},this.size));return i.save(),t&&(Gt(i.worldTransform,this.worldTransform),i.useWorldTransform()),s&&(i.smooth=this.smooth),i}recycle(t){this.recycled||(this.restore(),t?this.clearWorld(t,!0):this.clear(),this.manager?this.manager.recycle(this):this.destroy())}updateRender(t){}unrealCanvas(){}destroy(){this.manager=this.view=this.parentView=null}}const Jt={creator:{},parse(t,e){},convertToCanvasData(t,e){}},$t={N:21,D:22,X:23,G:24,F:25,O:26,P:27,U:28},Zt=Object.assign({M:1,m:10,L:2,l:20,H:3,h:30,V:4,v:40,C:5,c:50,S:6,s:60,Q:7,q:70,T:8,t:80,A:9,a:90,Z:11,z:11,R:12},$t),Kt={M:3,m:3,L:3,l:3,H:2,h:2,V:2,v:2,C:7,c:7,S:5,s:5,Q:5,q:5,T:3,t:3,A:8,a:8,Z:1,z:1,N:5,D:9,X:6,G:9,F:5,O:7,P:4,U:6},te={m:10,l:20,H:3,h:30,V:4,v:40,c:50,S:6,s:60,q:70,T:8,t:80,A:9,a:90},ee=Object.assign(Object.assign({},te),$t),se=Zt,ie={};for(let t in se)ie[se[t]]=t;const re={};for(let t in se)re[se[t]]=Kt[t];const ne={drawRoundRect(t,e,s,i,r,n){const o=a.fourNumber(n,Math.min(i/2,r/2)),h=e+i,l=s+r;o[0]?t.moveTo(e+o[0],s):t.moveTo(e,s),o[1]?t.arcTo(h,s,h,l,o[1]):t.lineTo(h,s),o[2]?t.arcTo(h,l,e,l,o[2]):t.lineTo(h,l),o[3]?t.arcTo(e,l,e,s,o[3]):t.lineTo(e,l),o[0]?t.arcTo(e,s,h,s,o[0]):t.lineTo(e,s)}},{sin:oe,cos:ae,atan2:he,ceil:le,abs:de,PI:ce,sqrt:ue,pow:_e}=Math,{setPoint:pe,addPoint:ge}=Y,{set:fe,toNumberPoints:ye}=L,{M:me,L:we,C:xe,Q:ve,Z:be}=Zt,Be={},ke={points(t,e,s,i){let r=ye(e);if(t.push(me,r[0],r[1]),s&&r.length>5){let e,n,o,a,h,l,d,c,u,_,p,g,f,y=r.length;const m=!0===s?.5:s;i&&(r=[r[y-2],r[y-1],...r,r[0],r[1],r[2],r[3]],y=r.length);for(let s=2;s<y-2;s+=2)e=r[s-2],n=r[s-1],o=r[s],a=r[s+1],h=r[s+2],l=r[s+3],p=ue(_e(o-e,2)+_e(a-n,2)),g=ue(_e(h-o,2)+_e(l-a,2)),f=p+g,p=m*p/f,g=m*g/f,h-=e,l-=n,d=o-p*h,c=a-p*l,2===s?i||t.push(ve,d,c,o,a):t.push(xe,u,_,d,c,o,a),u=o+g*h,_=a+g*l;i||t.push(ve,u,_,r[y-2],r[y-1])}else for(let e=2,s=r.length;e<s;e+=2)t.push(we,r[e],r[e+1]);i&&t.push(be)},rect(t,e,s,i,r){Jt.creator.path=t,Jt.creator.moveTo(e,s).lineTo(e+i,s).lineTo(e+i,s+r).lineTo(e,s+r).lineTo(e,s)},roundRect(t,e,s,i,r,n){Jt.creator.path=[],ne.drawRoundRect(Jt.creator,e,s,i,r,n),t.push(...Jt.convertToCanvasData(Jt.creator.path,!0))},arcTo(t,e,s,i,r,n,o,a,c,u,_){const p=i-e,g=r-s,f=n-i,y=o-r;let m=he(g,p),w=he(y,f),x=w-m;if(x<0&&(x+=l),x===ce||de(p+g)<1e-12||de(f+y)<1e-12)return t&&t.push(we,i,r),c&&(pe(c,e,s),ge(c,i,r)),_&&fe(_,e,s),void(u&&fe(u,i,r));const v=p*y-f*g<0,b=v?-1:1,B=a/ae(x/2),k=i+B*ae(m+x/2+d*b),R=r+B*oe(m+x/2+d*b);return m-=d*b,w-=d*b,Ce(t,k,R,a,a,0,m/h,w/h,v,c,u,_)},arc:(t,e,s,i,r,n,o,a,h,l)=>Ce(t,e,s,i,i,0,r,n,o,a,h,l),ellipse(t,e,s,i,r,n,o,a,c,u,_,p){const g=n*h,f=oe(g),y=ae(g);let m=o*h,w=a*h;m>ce&&(m-=l),w<0&&(w+=l);let x=w-m;x<0?x+=l:x>l&&(x-=l),c&&(x-=l);const v=le(de(x/d)),b=x/v,B=oe(b/4),k=8/3*B*B/oe(b/2);w=m+b;let R,S,C,T,P,O,A,L,E=ae(m),I=oe(m),W=C=y*i*E-f*r*I,M=T=f*i*E+y*r*I,D=e+C,F=s+T;t&&t.push(t.length?we:me,D,F),u&&pe(u,D,F),p&&fe(p,D,F);for(let n=0;n<v;n++)R=ae(w),S=oe(w),C=y*i*R-f*r*S,T=f*i*R+y*r*S,P=e+W-k*(y*i*I+f*r*E),O=s+M-k*(f*i*I-y*r*E),A=e+C+k*(y*i*S+f*r*R),L=s+T+k*(f*i*S-y*r*R),t&&t.push(xe,P,O,A,L,e+C,s+T),u&&Se(e+W,s+M,P,O,A,L,e+C,s+T,u,!0),W=C,M=T,E=R,I=S,m=w,w+=b;_&&fe(_,e+C,s+T)},quadraticCurveTo(t,e,s,i,r,n,o){t.push(xe,(e+2*i)/3,(s+2*r)/3,(n+2*i)/3,(o+2*r)/3,n,o)},toTwoPointBoundsByQuadraticCurve(t,e,s,i,r,n,o,a){Se(t,e,(t+2*s)/3,(e+2*i)/3,(r+2*s)/3,(n+2*i)/3,r,n,o,a)},toTwoPointBounds(t,e,s,i,r,n,o,a,h,l){const d=[];let c,u,_,p,g,f,y,m,w=t,x=s,v=r,b=o;for(let t=0;t<2;++t)if(1==t&&(w=e,x=i,v=n,b=a),c=-3*w+9*x-9*v+3*b,u=6*w-12*x+6*v,_=3*x-3*w,Math.abs(c)<1e-12){if(Math.abs(u)<1e-12)continue;p=-_/u,0<p&&p<1&&d.push(p)}else y=u*u-4*_*c,m=Math.sqrt(y),y<0||(g=(-u+m)/(2*c),0<g&&g<1&&d.push(g),f=(-u-m)/(2*c),0<f&&f<1&&d.push(f));l?ge(h,t,e):pe(h,t,e),ge(h,o,a);for(let l=0,c=d.length;l<c;l++)Re(d[l],t,e,s,i,r,n,o,a,Be),ge(h,Be.x,Be.y)},getPointAndSet(t,e,s,i,r,n,o,a,h,l){const d=1-t,c=d*d*d,u=3*d*d*t,_=3*d*t*t,p=t*t*t;l.x=c*e+u*i+_*n+p*a,l.y=c*s+u*r+_*o+p*h},getPoint(t,e,s,i,r,n,o,a,h){const l={};return Re(t,e,s,i,r,n,o,a,h,l),l}},{getPointAndSet:Re,toTwoPointBounds:Se,ellipse:Ce}=ke,{sin:Te,cos:Pe,sqrt:Oe,atan2:Ae}=Math,{ellipse:Le}=ke,Ee={ellipticalArc(e,s,i,r,n,o,a,d,c,u,_){const p=(c-s)/2,g=(u-i)/2,f=o*h,y=Te(f),m=Pe(f),w=-m*p-y*g,x=-m*g+y*p,v=r*r,b=n*n,B=x*x,k=w*w,R=v*b-v*B-b*k;let S=0;if(R<0){const t=Oe(1-R/(v*b));r*=t,n*=t}else S=(a===d?-1:1)*Oe(R/(v*B+b*k));const C=S*r*x/n,T=-S*n*w/r,P=Ae((x-T)/n,(w-C)/r),O=Ae((-x-T)/n,(-w-C)/r);let A=O-P;0===d&&A>0?A-=l:1===d&&A<0&&(A+=l);const L=s+p+m*C-y*T,E=i+g+y*C+m*T,I=A<0?1:0;_||t.ellipseToCurve?Le(e,L,E,r,n,o,P/h,O/h,I):r!==n||o?e.push(Zt.G,L,E,r,n,o,P/h,O/h,I):e.push(Zt.O,L,E,r,P/h,O/h,I)}},{M:Ie,m:We,L:Me,l:De,H:Fe,h:ze,V:Ne,v:Ye,C:Xe,c:je,S:Ue,s:Ve,Q:Ge,q:He,T:qe,t:Qe,A:Je,a:$e,Z:Ze,z:Ke,N:ts,D:es,X:ss,G:is,F:rs,O:ns,P:os,U:as}=Zt,{rect:hs,roundRect:ls,arcTo:ds,arc:cs,ellipse:us,quadraticCurveTo:_s}=ke,{ellipticalArc:ps}=Ee,gs=wt.get("PathConvert"),fs={},ys={current:{dot:0},stringify(t,e){let s,i,r,n=0,o=t.length,h="";for(;n<o;){i=t[n],s=re[i],h+=i===r?" ":ie[i];for(let i=1;i<s;i++)h+=a.float(t[n+i],e),i===s-1||(h+=" ");r=i,n+=s}return h},parse(t,e){let s,i,r,n="";const o=[],a=e?ee:te;for(let e=0,h=t.length;e<h;e++)i=t[e],mt[i]?("."===i&&(ms.dot&&(ws(o,n),n=""),ms.dot++),"0"===n&&"."!==i&&(ws(o,n),n=""),n+=i):Zt[i]?(n&&(ws(o,n),n=""),ms.name=Zt[i],ms.length=Kt[i],ms.index=0,ws(o,ms.name),!s&&a[i]&&(s=!0)):"-"===i||"+"===i?"e"===r||"E"===r?n+=i:(n&&ws(o,n),n=i):n&&(ws(o,n),n=""),r=i;return n&&ws(o,n),s?ys.toCanvasData(o,e):o},toCanvasData(t,e){let s,i,r,n,o,a=0,h=0,l=0,d=0,c=0,u=t.length;const _=[];for(;c<u;){switch(r=t[c],r){case We:t[c+1]+=a,t[c+2]+=h;case Ie:a=t[c+1],h=t[c+2],_.push(Ie,a,h),c+=3;break;case ze:t[c+1]+=a;case Fe:a=t[c+1],_.push(Me,a,h),c+=2;break;case Ye:t[c+1]+=h;case Ne:h=t[c+1],_.push(Me,a,h),c+=2;break;case De:t[c+1]+=a,t[c+2]+=h;case Me:a=t[c+1],h=t[c+2],_.push(Me,a,h),c+=3;break;case Ve:t[c+1]+=a,t[c+2]+=h,t[c+3]+=a,t[c+4]+=h,r=Ue;case Ue:o=n===Xe||n===Ue,l=o?2*a-s:t[c+1],d=o?2*h-i:t[c+2],s=t[c+1],i=t[c+2],a=t[c+3],h=t[c+4],_.push(Xe,l,d,s,i,a,h),c+=5;break;case je:t[c+1]+=a,t[c+2]+=h,t[c+3]+=a,t[c+4]+=h,t[c+5]+=a,t[c+6]+=h,r=Xe;case Xe:s=t[c+3],i=t[c+4],a=t[c+5],h=t[c+6],_.push(Xe,t[c+1],t[c+2],s,i,a,h),c+=7;break;case Qe:t[c+1]+=a,t[c+2]+=h,r=qe;case qe:o=n===Ge||n===qe,s=o?2*a-s:t[c+1],i=o?2*h-i:t[c+2],e?_s(_,a,h,s,i,t[c+1],t[c+2]):_.push(Ge,s,i,t[c+1],t[c+2]),a=t[c+1],h=t[c+2],c+=3;break;case He:t[c+1]+=a,t[c+2]+=h,t[c+3]+=a,t[c+4]+=h,r=Ge;case Ge:s=t[c+1],i=t[c+2],e?_s(_,a,h,s,i,t[c+3],t[c+4]):_.push(Ge,s,i,t[c+3],t[c+4]),a=t[c+3],h=t[c+4],c+=5;break;case $e:t[c+6]+=a,t[c+7]+=h;case Je:ps(_,a,h,t[c+1],t[c+2],t[c+3],t[c+4],t[c+5],t[c+6],t[c+7],e),a=t[c+6],h=t[c+7],c+=8;break;case Ke:case Ze:_.push(Ze),c++;break;case ts:a=t[c+1],h=t[c+2],e?hs(_,a,h,t[c+3],t[c+4]):xs(_,t,c,5),c+=5;break;case es:a=t[c+1],h=t[c+2],e?ls(_,a,h,t[c+3],t[c+4],[t[c+5],t[c+6],t[c+7],t[c+8]]):xs(_,t,c,9),c+=9;break;case ss:a=t[c+1],h=t[c+2],e?ls(_,a,h,t[c+3],t[c+4],t[c+5]):xs(_,t,c,6),c+=6;break;case is:us(e?_:xs(_,t,c,9),t[c+1],t[c+2],t[c+3],t[c+4],t[c+5],t[c+6],t[c+7],t[c+8],null,fs),a=fs.x,h=fs.y,c+=9;break;case rs:e?us(_,t[c+1],t[c+2],t[c+3],t[c+4],0,0,360,!1):xs(_,t,c,5),a=t[c+1]+t[c+3],h=t[c+2],c+=5;break;case ns:cs(e?_:xs(_,t,c,7),t[c+1],t[c+2],t[c+3],t[c+4],t[c+5],t[c+6],null,fs),a=fs.x,h=fs.y,c+=7;break;case os:e?cs(_,t[c+1],t[c+2],t[c+3],0,360,!1):xs(_,t,c,4),a=t[c+1]+t[c+3],h=t[c+2],c+=4;break;case as:ds(e?_:xs(_,t,c,6),a,h,t[c+1],t[c+2],t[c+3],t[c+4],t[c+5],null,fs),a=fs.x,h=fs.y,c+=6;break;default:return gs.error(`command: ${r} [index:${c}]`,t),_}n=r}return _},objectToCanvasData(t){const e=[];return t.forEach((t=>{switch(t.name){case"M":e.push(Ie,t.x,t.y);break;case"L":e.push(Me,t.x,t.y);break;case"C":e.push(Xe,t.x1,t.y1,t.x2,t.y2,t.x,t.y);break;case"Q":e.push(Ge,t.x1,t.y1,t.x,t.y);break;case"Z":e.push(Ze)}})),e},copyData(t,e,s,i){for(let r=s,n=s+i;r<n;r++)t.push(e[r])},pushData(t,e){ms.index===ms.length&&(ms.index=1,t.push(ms.name)),t.push(Number(e)),ms.index++,ms.dot=0}},{current:ms,pushData:ws,copyData:xs}=ys,{M:vs,L:bs,C:Bs,Q:ks,Z:Rs,N:Ss,D:Cs,X:Ts,G:Ps,F:Os,O:As,P:Ls,U:Es}=Zt,{getMinDistanceFrom:Is,getRadianFrom:Ws}=L,{tan:Ms,min:Ds,abs:Fs}=Math,zs={},Ns={beginPath(t){t.length=0},moveTo(t,e,s){t.push(vs,e,s)},lineTo(t,e,s){t.push(bs,e,s)},bezierCurveTo(t,e,s,i,r,n,o){t.push(Bs,e,s,i,r,n,o)},quadraticCurveTo(t,e,s,i,r){t.push(ks,e,s,i,r)},closePath(t){t.push(Rs)},rect(t,e,s,i,r){t.push(Ss,e,s,i,r)},roundRect(t,e,s,i,r,n){if("number"==typeof n)t.push(Ts,e,s,i,r,n);else{const o=a.fourNumber(n);o?t.push(Cs,e,s,i,r,...o):t.push(Ss,e,s,i,r)}},ellipse(t,e,s,i,r,n,o,a,h){void 0===n?t.push(Os,e,s,i,r):(void 0===o&&(o=0),void 0===a&&(a=360),t.push(Ps,e,s,i,r,n,o,a,h?1:0))},arc(t,e,s,i,r,n,o){void 0===r?t.push(Ls,e,s,i):(void 0===n&&(n=360),t.push(As,e,s,i,r,n,o?1:0))},arcTo(t,e,s,i,r,n,o,a){if(void 0!==o){const h=Ms(Ws(o,a,e,s,i,r)/2)*(Is(o,a,e,s,i,r)/2);t.push(Es,e,s,i,r,Ds(n,Fs(h)))}else t.push(Es,e,s,i,r,n)},drawEllipse(t,e,s,i,r,n,o,a,h){ke.ellipse(null,e,s,i,r,void 0===n?0:n,void 0===o?0:o,void 0===a?360:a,h,null,null,zs),t.push(vs,zs.x,zs.y),Ys(t,e,s,i,r,n,o,a,h)},drawArc(t,e,s,i,r,n,o){ke.arc(null,e,s,i,void 0===r?0:r,void 0===n?360:n,o,null,null,zs),t.push(vs,zs.x,zs.y),Xs(t,e,s,i,r,n,o)},drawPoints(t,e,s,i){ke.points(t,e,s,i)}},{ellipse:Ys,arc:Xs}=Ns,{moveTo:js,lineTo:Us,quadraticCurveTo:Vs,bezierCurveTo:Gs,closePath:Hs,beginPath:qs,rect:Qs,roundRect:Js,ellipse:$s,arc:Zs,arcTo:Ks,drawEllipse:ti,drawArc:ei,drawPoints:si}=Ns;class ii{set path(t){this.__path=t}get path(){return this.__path}constructor(t){this.set(t)}set(t){return this.__path=t?"string"==typeof t?Jt.parse(t):t:[],this}beginPath(){return qs(this.__path),this.paint(),this}moveTo(t,e){return js(this.__path,t,e),this.paint(),this}lineTo(t,e){return Us(this.__path,t,e),this.paint(),this}bezierCurveTo(t,e,s,i,r,n){return Gs(this.__path,t,e,s,i,r,n),this.paint(),this}quadraticCurveTo(t,e,s,i){return Vs(this.__path,t,e,s,i),this.paint(),this}closePath(){return Hs(this.__path),this.paint(),this}rect(t,e,s,i){return Qs(this.__path,t,e,s,i),this.paint(),this}roundRect(t,e,s,i,r){return Js(this.__path,t,e,s,i,r),this.paint(),this}ellipse(t,e,s,i,r,n,o,a){return $s(this.__path,t,e,s,i,r,n,o,a),this.paint(),this}arc(t,e,s,i,r,n){return Zs(this.__path,t,e,s,i,r,n),this.paint(),this}arcTo(t,e,s,i,r){return Ks(this.__path,t,e,s,i,r),this.paint(),this}drawEllipse(t,e,s,i,r,n,o,a){return ti(this.__path,t,e,s,i,r,n,o,a),this.paint(),this}drawArc(t,e,s,i,r,n){return ei(this.__path,t,e,s,i,r,n),this.paint(),this}drawPoints(t,e,s){return si(this.__path,t,e,s),this.paint(),this}clearPath(){return this.beginPath()}paint(){}}const{M:ri,L:ni,C:oi,Q:ai,Z:hi,N:li,D:di,X:ci,G:ui,F:_i,O:pi,P:gi,U:fi}=Zt,yi=wt.get("PathDrawer"),mi={drawPathByData(t,e){if(!e)return;let s,i=0,r=e.length;for(;i<r;)switch(s=e[i],s){case ri:t.moveTo(e[i+1],e[i+2]),i+=3;break;case ni:t.lineTo(e[i+1],e[i+2]),i+=3;break;case oi:t.bezierCurveTo(e[i+1],e[i+2],e[i+3],e[i+4],e[i+5],e[i+6]),i+=7;break;case ai:t.quadraticCurveTo(e[i+1],e[i+2],e[i+3],e[i+4]),i+=5;break;case hi:t.closePath(),i+=1;break;case li:t.rect(e[i+1],e[i+2],e[i+3],e[i+4]),i+=5;break;case di:t.roundRect(e[i+1],e[i+2],e[i+3],e[i+4],[e[i+5],e[i+6],e[i+7],e[i+8]]),i+=9;break;case ci:t.roundRect(e[i+1],e[i+2],e[i+3],e[i+4],e[i+5]),i+=6;break;case ui:t.ellipse(e[i+1],e[i+2],e[i+3],e[i+4],e[i+5]*h,e[i+6]*h,e[i+7]*h,e[i+8]),i+=9;break;case _i:t.ellipse(e[i+1],e[i+2],e[i+3],e[i+4],0,0,l,!1),i+=5;break;case pi:t.arc(e[i+1],e[i+2],e[i+3],e[i+4]*h,e[i+5]*h,e[i+6]),i+=7;break;case gi:t.arc(e[i+1],e[i+2],e[i+3],0,l,!1),i+=4;break;case fi:t.arcTo(e[i+1],e[i+2],e[i+3],e[i+4],e[i+5]),i+=6;break;default:return void yi.error(`command: ${s} [index:${i}]`,e)}}},{M:wi,L:xi,C:vi,Q:bi,Z:Bi,N:ki,D:Ri,X:Si,G:Ci,F:Ti,O:Pi,P:Oi,U:Ai}=Zt,{toTwoPointBounds:Li,toTwoPointBoundsByQuadraticCurve:Ei,arcTo:Ii,arc:Wi,ellipse:Mi}=ke,{addPointBounds:Di,copy:Fi,addPoint:zi,setPoint:Ni,addBounds:Yi,toBounds:Xi}=Y,ji=wt.get("PathBounds");let Ui,Vi,Gi;const Hi={},qi={},Qi={},Ji={toBounds(t,e){Ji.toTwoPointBounds(t,qi),Xi(qi,e)},toTwoPointBounds(t,e){if(!t||!t.length)return Ni(e,0,0);let s,i,r,n,o,a=0,h=0,l=0;const d=t.length;for(;a<d;)switch(o=t[a],0===a&&(o===Bi||o===vi||o===bi?Ni(e,h,l):Ni(e,t[a+1],t[a+2])),o){case wi:case xi:h=t[a+1],l=t[a+2],zi(e,h,l),a+=3;break;case vi:r=t[a+5],n=t[a+6],Li(h,l,t[a+1],t[a+2],t[a+3],t[a+4],r,n,Hi),Di(e,Hi),h=r,l=n,a+=7;break;case bi:s=t[a+1],i=t[a+2],r=t[a+3],n=t[a+4],Ei(h,l,s,i,r,n,Hi),Di(e,Hi),h=r,l=n,a+=5;break;case Bi:a+=1;break;case ki:h=t[a+1],l=t[a+2],Yi(e,h,l,t[a+3],t[a+4]),a+=5;break;case Ri:case Si:h=t[a+1],l=t[a+2],Yi(e,h,l,t[a+3],t[a+4]),a+=o===Ri?9:6;break;case Ci:Mi(null,t[a+1],t[a+2],t[a+3],t[a+4],t[a+5],t[a+6],t[a+7],t[a+8],Hi,Qi),0===a?Fi(e,Hi):Di(e,Hi),h=Qi.x,l=Qi.y,a+=9;break;case Ti:h=t[a+1],l=t[a+2],Vi=t[a+3],Gi=t[a+4],Yi(e,h-Vi,l-Gi,2*Vi,2*Gi),h+=Vi,a+=5;break;case Pi:Wi(null,t[a+1],t[a+2],t[a+3],t[a+4],t[a+5],t[a+6],Hi,Qi),0===a?Fi(e,Hi):Di(e,Hi),h=Qi.x,l=Qi.y,a+=7;break;case Oi:h=t[a+1],l=t[a+2],Ui=t[a+3],Yi(e,h-Ui,l-Ui,2*Ui,2*Ui),h+=Ui,a+=4;break;case Ai:Ii(null,h,l,t[a+1],t[a+2],t[a+3],t[a+4],t[a+5],Hi,Qi),0===a?Fi(e,Hi):Di(e,Hi),h=Qi.x,l=Qi.y,a+=6;break;default:return void ji.error(`command: ${o} [index:${a}]`,t)}}},{M:$i,L:Zi,C:Ki,Z:tr}=Zt,{getCenterX:er,getCenterY:sr}=L,{arcTo:ir}=Ns,rr={smooth(t,e,s){let i,r=0,n=0,o=0,a=0,h=0,l=0,d=0,c=0,u=0;const _=t.length,p=[];for(;r<_;)switch(i=t[r],i){case $i:a=c=t[r+1],h=u=t[r+2],r+=3,t[r]===Zi?(l=t[r+1],d=t[r+2],p.push($i,er(a,l),sr(h,d))):p.push($i,a,h);break;case Zi:switch(n=t[r+1],o=t[r+2],r+=3,t[r]){case Zi:ir(p,n,o,t[r+1],t[r+2],e,c,u);break;case tr:ir(p,n,o,a,h,e,c,u);break;default:p.push(Zi,n,o)}c=n,u=o;break;case Ki:p.push(Ki,t[r+1],t[r+2],t[r+3],t[r+4],t[r+5],t[r+6]),r+=7;break;case tr:ir(p,a,h,l,d,e,c,u),p.push(tr),r+=1}return i!==tr&&(p[1]=a,p[2]=h),p}};Jt.creator=new ii,Jt.parse=ys.parse,Jt.convertToCanvasData=ys.toCanvasData;const nr=new ii,{drawRoundRect:or}=ne;function ar(t){!function(t){t&&!t.roundRect&&(t.roundRect=function(t,e,s,i,r){or(this,t,e,s,i,r)})}(t)}const hr={opacityTypes:["png","webp","svg"],upperCaseTypeMap:{},mineType:t=>!t||t.startsWith("image")?t:("jpg"===t&&(t="jpeg"),"image/"+t),fileType(t){const e=t.split(".");return e[e.length-1]},isOpaqueImage(t){const e=lr.fileType(t);return["jpg","jpeg"].some((t=>t===e))},getExportOptions(t){switch(typeof t){case"object":return t;case"number":return{quality:t};case"boolean":return{blob:t};default:return{}}}},lr=hr;lr.opacityTypes.forEach((t=>lr.upperCaseTypeMap[t]=t.toUpperCase()));const dr=wt.get("TaskProcessor");class cr{constructor(t){this.parallel=!0,this.time=1,this.id=s.create(s.TASK),this.task=t}run(){return Nt(this,void 0,void 0,(function*(){try{this.task&&!this.isComplete&&this.parent.running&&(yield this.task())}catch(t){dr.error(t)}}))}complete(){this.isComplete=!0,this.parent=null,this.task=null}cancel(){this.isCancel=!0,this.complete()}}class ur{get total(){return this.list.length+this.delayNumber}get finishedIndex(){return this.isComplete?0:this.index+this.parallelSuccessNumber}get remain(){return this.isComplete?this.total:this.total-this.finishedIndex}get percent(){const{total:t}=this;let e=0,s=0;for(let i=0;i<t;i++)i<=this.finishedIndex?(s+=this.list[i].time,i===this.finishedIndex&&(e=s)):e+=this.list[i].time;return this.isComplete?1:s/e}constructor(t){this.config={parallel:6},this.list=[],this.running=!1,this.isComplete=!0,this.index=0,this.delayNumber=0,t&&Et.assign(this.config,t),this.empty()}add(t,e){let s,i,r,n;const o=new cr(t);return o.parent=this,"number"==typeof e?n=e:e&&(i=e.parallel,s=e.start,r=e.time,n=e.delay),r&&(o.time=r),!1===i&&(o.parallel=!1),void 0===n?this.push(o,s):(this.delayNumber++,setTimeout((()=>{this.delayNumber&&(this.delayNumber--,this.push(o,s))}),n)),this.isComplete=!1,o}push(t,e){this.list.push(t),!1===e||this.timer||(this.timer=setTimeout((()=>this.start())))}empty(){this.index=0,this.parallelSuccessNumber=0,this.list=[],this.parallelList=[],this.delayNumber=0}start(){this.running||(this.running=!0,this.isComplete=!1,this.run())}pause(){clearTimeout(this.timer),this.timer=null,this.running=!1}resume(){this.start()}skip(){this.index++,this.resume()}stop(){this.isComplete=!0,this.list.forEach((t=>{t.isComplete||t.cancel()})),this.pause(),this.empty()}run(){this.running&&(this.setParallelList(),this.parallelList.length>1?this.runParallelTasks():this.remain?this.runTask():this.onComplete())}runTask(){const t=this.list[this.index];t?t.run().then((()=>{this.onTask(t),this.index++,this.nextTask()})).catch((t=>{this.onError(t)})):this.nextTask()}runParallelTasks(){this.parallelList.forEach((t=>this.runParallelTask(t)))}runParallelTask(t){t.run().then((()=>{this.onTask(t),this.fillParallelTask()})).catch((t=>{this.onParallelError(t)}))}nextTask(){this.total===this.finishedIndex?this.onComplete():this.timer=setTimeout((()=>this.run()))}setParallelList(){let t;this.parallelList=[],this.parallelSuccessNumber=0;let e=this.index+this.config.parallel;e>this.list.length&&(e=this.list.length);for(let s=this.index;s<e&&(t=this.list[s],t.parallel);s++)this.parallelList.push(t)}fillParallelTask(){let t;const e=this.parallelList;this.parallelSuccessNumber++,e.pop();const s=e.length,i=this.finishedIndex+s;if(e.length){if(!this.running)return;i<this.total&&(t=this.list[i],t&&t.parallel&&(e.push(t),this.runParallelTask(t)))}else this.index+=this.parallelSuccessNumber,this.parallelSuccessNumber=0,this.nextTask()}onComplete(){this.stop(),this.config.onComplete&&this.config.onComplete()}onTask(t){t.complete(),this.config.onTask&&this.config.onTask()}onParallelError(t){this.parallelList.forEach((t=>{t.parallel=!1})),this.parallelList.length=0,this.parallelSuccessNumber=0,this.onError(t)}onError(t){this.pause(),this.config.onError&&this.config.onError(t)}destroy(){this.stop()}}const _r={map:{},recycledList:[],tasker:new ur,patternTasker:new ur,get isComplete(){return pr.tasker.isComplete},get(t){let s=pr.map[t.url];return s||(s=e.image(t),pr.map[t.url]=s),s.use++,s},recycle(t){t.use--,setTimeout((()=>{t.use||pr.recycledList.push(t)}))},clearRecycled(){const t=pr.recycledList;t.length>100&&(t.forEach((t=>{!t.use&&t.url&&(delete pr.map[t.url],t.destroy())})),t.length=0)},hasOpacityPixel:t=>hr.opacityTypes.some((e=>pr.isFormat(e,t))),isFormat(t,e){if(e.format===t)return!0;const{url:s}=e;if(s.startsWith("data:")){if(s.startsWith("data:"+hr.mineType(t)))return!0}else{if(s.includes("."+t)||s.includes("."+hr.upperCaseTypeMap[t]))return!0;if("png"===t&&!s.includes("."))return!0}return!1},destroy(){pr.map={},pr.recycledList=[]}},pr=_r,{IMAGE:gr,create:fr}=s;class yr{get url(){return this.config.url}get completed(){return this.ready||!!this.error}constructor(t){this.use=0,this.waitComplete=[],this.innerId=fr(gr),this.config=t||{url:""},this.isSVG=_r.isFormat("svg",t),this.hasOpacityPixel=_r.hasOpacityPixel(t)}load(e,s){return this.loading||(this.loading=!0,_r.tasker.add((()=>Nt(this,void 0,void 0,(function*(){return yield t.origin.loadImage(this.url).then((t=>{this.ready=!0,this.width=t.naturalWidth||t.width,this.height=t.naturalHeight||t.height,this.view=t,this.onComplete(!0)})).catch((t=>{this.error=t,this.onComplete(!1)}))}))))),this.waitComplete.push(e,s),this.waitComplete.length-2}unload(t,e){const s=this.waitComplete;if(e){const e=s[t+1];e&&e({type:"stop"})}s[t]=s[t+1]=void 0}onComplete(t){let e;this.waitComplete.forEach(((s,i)=>{e=i%2,s&&(t?e||s(this):e&&s(this.error))})),this.waitComplete.length=0,this.loading=!1}getCanvas(e,s,i,r){if(e||(e=this.width),s||(s=this.height),this.cache){let{params:t,data:e}=this.cache;for(let s in t)if(t[s]!==arguments[s]){e=null;break}if(e)return e}const n=t.origin.createCanvas(e,s),o=n.getContext("2d");return i&&(o.globalAlpha=i),o.drawImage(this.view,0,0,e,s),this.cache=this.use>1?{data:n,params:arguments}:null,n}getPattern(e,s,i,r){const n=t.canvas.createPattern(e,s);try{i&&n.setTransform&&(n.setTransform(i),i=null)}catch(t){}return r&&(r.transform=i),n}destroy(){this.config={url:""},this.cache=null,this.waitComplete.length=0}}function mr(t,e,s,i){i||(s.configurable=s.enumerable=!0),Object.defineProperty(t,e,s)}function wr(t,e){return Object.getOwnPropertyDescriptor(t,e)}function xr(t,e){return(s,i)=>br(s,i,t,e&&e(i))}function vr(t){return t}function br(t,e,s,i){const r={get(){return this.__getAttr(e)},set(t){this.__setAttr(e,t)}};mr(t,e,Object.assign(r,i||{})),Qr(t,e,s)}function Br(t){return xr(t)}function kr(t,e){return xr(t,(t=>({set(s){this.__setAttr(t,s,e)&&(this.__layout.matrixChanged||this.__layout.matrixChange())}})))}function Rr(t){return xr(t,(t=>({set(e){this.__setAttr(t,e)&&(this.__layout.matrixChanged||this.__layout.matrixChange(),this.__hasAutoLayout=!!(this.origin||this.around||this.flow),this.__local||this.__layout.createLocal())}})))}function Sr(t,e){return xr(t,(t=>({set(s){this.__setAttr(t,s,e)&&(this.__layout.scaleChanged||this.__layout.scaleChange())}})))}function Cr(t,e){return xr(t,(t=>({set(s){this.__setAttr(t,s,e)&&(this.__layout.rotationChanged||this.__layout.rotationChange())}})))}function Tr(t,e){return xr(t,(t=>({set(s){this.__setAttr(t,s,e)&&Or(this)}})))}function Pr(t){return xr(t,(t=>({set(e){this.__setAttr(t,e)&&(Or(this),this.__.__removeNaturalSize())}})))}function Or(t){t.__layout.boxChanged||t.__layout.boxChange(),t.__hasAutoLayout&&(t.__layout.matrixChanged||t.__layout.matrixChange())}function Ar(t){return xr(t,(t=>({set(e){const s=this.__;2!==s.__pathInputed&&(s.__pathInputed=e?1:0),e||(s.__pathForRender=void 0),this.__setAttr(t,e),Or(this)}})))}const Lr=Tr;function Er(t){return xr(t,(t=>({set(e){this.__setAttr(t,e)&&Ir(this)}})))}function Ir(t){t.__layout.strokeChanged||t.__layout.strokeChange(),t.__.__useArrow&&Or(t)}const Wr=Er;function Mr(t){return xr(t,(t=>({set(e){this.__setAttr(t,e),this.__layout.renderChanged||this.__layout.renderChange()}})))}function Dr(t){return xr(t,(t=>({set(e){this.__setAttr(t,e)&&(this.__layout.surfaceChanged||this.__layout.surfaceChange())}})))}function Fr(t){return xr(t,(t=>({set(e){this.__setAttr(t,e)&&(this.__layout.opacityChanged||this.__layout.opacityChange()),this.mask&&Nr(this)}})))}function zr(t){return xr(t,(t=>({set(e){const s=this.visible;if(!0===s&&0===e){if(this.animationOut)return this.__runAnimation("out",(()=>Yr(this,t,e,s)))}else 0===s&&!0===e&&this.animation&&this.__runAnimation("in");Yr(this,t,e,s),this.mask&&Nr(this)}})))}function Nr(t){const{parent:e}=t;if(e){const{__hasMask:t}=e;e.__updateMask(),t!==e.__hasMask&&e.forceUpdate()}}function Yr(t,e,s,i){t.__setAttr(e,s)&&(t.__layout.opacityChanged||t.__layout.opacityChange(),0!==i&&0!==s||Or(t))}function Xr(t){return xr(t,(t=>({set(e){this.__setAttr(t,e)&&(this.__layout.surfaceChanged||this.__layout.surfaceChange(),this.waitParent((()=>{this.parent.__layout.childrenSortChange()})))}})))}function jr(t){return xr(t,(t=>({set(e){this.__setAttr(t,e)&&(this.__layout.boxChanged||this.__layout.boxChange(),this.waitParent((()=>{this.parent.__updateMask(e)})))}})))}function Ur(t){return xr(t,(t=>({set(e){this.__setAttr(t,e)&&this.waitParent((()=>{this.parent.__updateEraser(e)}))}})))}function Vr(t){return xr(t,(t=>({set(e){this.__setAttr(t,e)&&(this.__layout.hitCanvasChanged=!0,wt.showHitView&&(this.__layout.surfaceChanged||this.__layout.surfaceChange()),this.leafer&&this.leafer.updateCursor())}})))}function Gr(t){return xr(t,(t=>({set(e){this.__setAttr(t,e),this.leafer&&this.leafer.updateCursor()}})))}function Hr(t){return(e,s)=>{mr(e,"__DataProcessor",{get:()=>t})}}function qr(t){return(e,s)=>{mr(e,"__LayoutProcessor",{get:()=>t})}}function Qr(t,e,s){const i=t.__DataProcessor.prototype,r="_"+e,n=function(t){return"set"+t.charAt(0).toUpperCase()+t.slice(1)}(e),o={get(){const t=this[r];return void 0===t?s:t},set(t){this[r]=t}};if(void 0===s)o.get=function(){return this[r]};else if("object"==typeof s){const{clone:t}=Et;o.get=function(){let e=this[r];return void 0===e&&(this[r]=e=t(s)),e}}"width"===e?o.get=function(){const t=this[r];if(void 0===t){const t=this;return t._height&&t.__naturalWidth&&t.__useNaturalRatio?t._height*t.__naturalWidth/t.__naturalHeight:t.__naturalWidth||s}return t}:"height"===e&&(o.get=function(){const t=this[r];if(void 0===t){const t=this;return t._width&&t.__naturalHeight&&t.__useNaturalRatio?t._width*t.__naturalHeight/t.__naturalWidth:t.__naturalHeight||s}return t});let a,h=i;for(;!a&&h;)a=wr(h,e),h=h.__proto__;a&&a.set&&(o.set=a.set),i[n]&&(o.set=i[n],delete i[n]),mr(i,e,o)}const Jr=new wt("rewrite"),$r=[],Zr=["destroy","constructor"];function Kr(t){return(e,s)=>{$r.push({name:e.constructor.name+"."+s,run:()=>{e[s]=t}})}}function tn(){return t=>{en()}}function en(t){$r.length&&($r.forEach((e=>{t&&Jr.error(e.name,"需在Class上装饰@rewriteAble()"),e.run()})),$r.length=0)}function sn(t,e){return s=>{var i;(t.prototype?(i=t.prototype,Object.getOwnPropertyNames(i)):Object.keys(t)).forEach((i=>{if(!(Zr.includes(i)||e&&e.includes(i)))if(t.prototype){wr(t.prototype,i).writable&&(s.prototype[i]=t.prototype[i])}else s.prototype[i]=t[i]}))}}function rn(){return t=>{Ct.register(t)}}function nn(){return t=>{Ot.register(t)}}setTimeout((()=>en(!0)));const{copy:on,toInnerPoint:an,toOuterPoint:hn,scaleOfOuter:ln,rotateOfOuter:dn,skewOfOuter:cn,multiplyParent:un,divideParent:_n,getLayout:pn}=v,gn={},fn={updateAllMatrix(t,e,s){if(e&&t.__hasAutoLayout&&t.__layout.matrixChanged&&(s=!0),wn(t,e,s),t.isBranch){const{children:i}=t;for(let t=0,r=i.length;t<r;t++)mn(i[t],e,s)}},updateMatrix(t,e,s){const i=t.__layout;e?s&&(i.waitAutoLayout=!0,t.__hasAutoLayout&&(i.matrixChanged=!1)):i.waitAutoLayout&&(i.waitAutoLayout=!1),i.matrixChanged&&t.__updateLocalMatrix(),i.waitAutoLayout||t.__updateWorldMatrix()},updateBounds(t){const e=t.__layout;e.boundsChanged&&t.__updateLocalBounds(),e.waitAutoLayout||t.__updateWorldBounds()},updateAllWorldOpacity(t){if(t.__updateWorldOpacity(),t.isBranch){const{children:e}=t;for(let t=0,s=e.length;t<s;t++)xn(e[t])}},updateAllChange(t){if(xn(t),t.__updateChange(),t.isBranch){const{children:e}=t;for(let t=0,s=e.length;t<s;t++)vn(e[t])}},worldHittable(t){for(;t;){if(!t.__.hittable)return!1;t=t.parent}return!0},moveWorld(t,e,s=0,i,r){const n="object"==typeof e?Object.assign({},e):{x:e,y:s};i?hn(t.localTransform,n,n,!0):t.parent&&an(t.parent.worldTransform,n,n,!0),yn.moveLocal(t,n.x,n.y,r)},moveLocal(t,e,s=0,i){"object"==typeof e&&(s=e.y,e=e.x),e+=t.x,s+=t.y,i?t.animate({x:e,y:s},i):(t.x=e,t.y=s)},zoomOfWorld(t,e,s,i,r){yn.zoomOfLocal(t,Bn(t,e),s,i,r)},zoomOfLocal(t,e,s,i=s,r){on(gn,t.__localMatrix),ln(gn,e,s,i),t.origin||t.around?yn.setTransform(t,gn,r):(bn(t,gn),t.scaleResize(s,i,!0!==r))},rotateOfWorld(t,e,s){yn.rotateOfLocal(t,Bn(t,e),s)},rotateOfLocal(t,e,s){on(gn,t.__localMatrix),dn(gn,e,s),t.origin||t.around?yn.setTransform(t,gn):(bn(t,gn),t.rotation=a.formatRotation(t.rotation+s))},skewOfWorld(t,e,s,i,r){yn.skewOfLocal(t,Bn(t,e),s,i,r)},skewOfLocal(t,e,s,i=0,r){on(gn,t.__localMatrix),cn(gn,e,s,i),yn.setTransform(t,gn,r)},transformWorld(t,e,s){on(gn,t.worldTransform),un(gn,e),t.parent&&_n(gn,t.parent.worldTransform),yn.setTransform(t,gn,s)},transform(t,e,s){on(gn,t.localTransform),un(gn,e),yn.setTransform(t,gn,s)},setTransform(t,e,s){const i=pn(e,t.origin&&yn.getInnerOrigin(t,t.origin),t.around&&yn.getInnerOrigin(t,t.around));if(s){const e=i.scaleX/t.scaleX,r=i.scaleY/t.scaleY;delete i.scaleX,delete i.scaleY,t.set(i),t.scaleResize(e,r,!0!==s)}else t.set(i)},getFlipTransform(t,e){const s={a:1,b:0,c:0,d:1,e:0,f:0},i="x"===e?1:-1;return ln(s,yn.getLocalOrigin(t,"center"),-1*i,1*i),s},getLocalOrigin:(t,e)=>L.tempToOuterOf(yn.getInnerOrigin(t,e),t.localTransform),getInnerOrigin(t,e){const s={};return pt.toPoint(e,t.boxBounds,s),s},getRelativeWorld:(t,e,s)=>(on(gn,t.worldTransform),_n(gn,e.worldTransform),s?gn:Object.assign({},gn)),drop(t,e,s,i){t.setTransform(yn.getRelativeWorld(t,e,!0),i),e.add(t,s)},hasParent(t,e){if(!e)return!1;for(;t;){if(e===t)return!0;t=t.parent}}},yn=fn,{updateAllMatrix:mn,updateMatrix:wn,updateAllWorldOpacity:xn,updateAllChange:vn}=yn;function bn(t,e){const{e:s,f:i}=t.__localMatrix;t.x+=e.e-s,t.y+=e.f-i}function Bn(t,e){return t.__layout.update(),t.parent?L.tempToInnerOf(e,t.parent.__world):e}const kn={worldBounds:t=>t.__world,localBoxBounds:t=>t.__.eraser||0===t.__.visible?null:t.__local||t.__layout,localStrokeBounds:t=>t.__.eraser||0===t.__.visible?null:t.__layout.localStrokeBounds,localRenderBounds:t=>t.__.eraser||0===t.__.visible?null:t.__layout.localRenderBounds,maskLocalBoxBounds:t=>t.__.mask?t.__localBoxBounds:null,maskLocalStrokeBounds:t=>t.__.mask?t.__layout.localStrokeBounds:null,maskLocalRenderBounds:t=>t.__.mask?t.__layout.localRenderBounds:null,excludeRenderBounds:(t,e)=>!(!e.bounds||e.bounds.hit(t.__world,e.matrix))||!(!e.hideBounds||!e.hideBounds.includes(t.__world,e.matrix))},{updateBounds:Rn}=fn,Sn={sort:(t,e)=>t.__.zIndex===e.__.zIndex?t.__tempNumber-e.__tempNumber:t.__.zIndex-e.__.zIndex,pushAllChildBranch(t,e){if(t.__tempNumber=1,t.__.__childBranchNumber){const{children:s}=t;for(let i=0,r=s.length;i<r;i++)(t=s[i]).isBranch&&(t.__tempNumber=1,e.add(t),Cn(t,e))}},pushAllParent(t,e){const{keys:s}=e;if(s)for(;t.parent&&void 0===s[t.parent.innerId];)e.add(t.parent),t=t.parent;else for(;t.parent;)e.add(t.parent),t=t.parent},pushAllBranchStack(t,e){let s=e.length;const{children:i}=t;for(let t=0,s=i.length;t<s;t++)i[t].isBranch&&e.push(i[t]);for(let t=s,i=e.length;t<i;t++)Tn(e[t],e)},updateBounds(t,e){const s=[t];Tn(t,s),Pn(s,e)},updateBoundsByBranchStack(t,e){let s,i;for(let r=t.length-1;r>-1;r--){s=t[r],i=s.children;for(let t=0,e=i.length;t<e;t++)Rn(i[t]);e&&e===s||Rn(s)}}},{pushAllChildBranch:Cn,pushAllBranchStack:Tn,updateBoundsByBranchStack:Pn}=Sn,On={run(t){if(t&&t.length){const e=t.length;for(let s=0;s<e;s++)t[s]();t.length===e?t.length=0:t.splice(0,e)}}},{getRelativeWorld:An}=fn,{toOuterOf:Ln,getPoints:En,copy:In}=rt,Wn="_localContentBounds",Mn="_worldContentBounds",Dn="_worldBoxBounds",Fn="_worldStrokeBounds";class zn{get contentBounds(){return this._contentBounds||this.boxBounds}set contentBounds(t){this._contentBounds=t}get strokeBounds(){return this._strokeBounds||this.boxBounds}get renderBounds(){return this._renderBounds||this.boxBounds}get localContentBounds(){return Ln(this.contentBounds,this.leaf.__localMatrix,this[Wn]||(this[Wn]={})),this[Wn]}get localStrokeBounds(){return this._localStrokeBounds||this}get localRenderBounds(){return this._localRenderBounds||this}get worldContentBounds(){return Ln(this.contentBounds,this.leaf.__world,this[Mn]||(this[Mn]={})),this[Mn]}get worldBoxBounds(){return Ln(this.boxBounds,this.leaf.__world,this[Dn]||(this[Dn]={})),this[Dn]}get worldStrokeBounds(){return Ln(this.strokeBounds,this.leaf.__world,this[Fn]||(this[Fn]={})),this[Fn]}get a(){return 1}get b(){return 0}get c(){return 0}get d(){return 1}get e(){return this.leaf.__.x}get f(){return this.leaf.__.y}get x(){return this.e+this.boxBounds.x}get y(){return this.f+this.boxBounds.y}get width(){return this.boxBounds.width}get height(){return this.boxBounds.height}constructor(t){this.leaf=t,this.boxBounds={x:0,y:0,width:0,height:0},this.leaf.__local&&(this._localRenderBounds=this._localStrokeBounds=this.leaf.__local),this.boxChange(),this.matrixChange()}createLocal(){const t=this.leaf.__local={a:1,b:0,c:0,d:1,e:0,f:0,x:0,y:0,width:0,height:0};this._localStrokeBounds||(this._localStrokeBounds=t),this._localRenderBounds||(this._localRenderBounds=t)}update(){const{leafer:e}=this.leaf;if(e)e.ready?e.watcher.changed&&e.layouter.layout():e.start();else{let e=this.leaf;for(;e.parent&&!e.parent.leafer;)e=e.parent;t.layout(e)}}getTransform(t="world"){this.update();const{leaf:e}=this;switch(t){case"world":return e.__world;case"local":return e.__localMatrix;case"inner":return v.defaultMatrix;case"page":t=e.zoomLayer;default:return An(e,t)}}getBounds(t,e="world"){switch(this.update(),e){case"world":return this.getWorldBounds(t);case"local":return this.getLocalBounds(t);case"inner":return this.getInnerBounds(t);case"page":e=this.leaf.zoomLayer;default:return new ht(this.getInnerBounds(t)).toOuterOf(this.getTransform(e))}}getInnerBounds(t="box"){switch(t){case"render":return this.renderBounds;case"content":if(this.contentBounds)return this.contentBounds;case"box":return this.boxBounds;case"stroke":return this.strokeBounds}}getLocalBounds(t="box"){switch(t){case"render":return this.localRenderBounds;case"stroke":return this.localStrokeBounds;case"content":if(this.contentBounds)return this.localContentBounds;case"box":return this.leaf.__localBoxBounds}}getWorldBounds(t="box"){switch(t){case"render":return this.leaf.__world;case"stroke":return this.worldStrokeBounds;case"content":if(this.contentBounds)return this.worldContentBounds;case"box":return this.worldBoxBounds}}getLayoutBounds(t,e="world",s){const{leaf:i}=this;let r,n,o,a=this.getInnerBounds(t);switch(e){case"world":r=i.getWorldPoint(a),n=i.__world;break;case"local":const{scaleX:t,scaleY:s,rotation:h,skewX:l,skewY:d}=i.__;o={scaleX:t,scaleY:s,rotation:h,skewX:l,skewY:d},r=i.getLocalPointByInner(a);break;case"inner":r=a,n=v.defaultMatrix;break;case"page":e=i.zoomLayer;default:r=i.getWorldPoint(a,e),n=An(i,e,!0)}if(o||(o=v.getLayout(n)),In(o,a),L.copy(o,r),s){const{scaleX:t,scaleY:e}=o,s=Math.abs(t),i=Math.abs(e);1===s&&1===i||(o.scaleX/=s,o.scaleY/=i,o.width*=s,o.height*=i)}return o}getLayoutPoints(t,e="world"){const{leaf:s}=this,i=En(this.getInnerBounds(t));let r;switch(e){case"world":r=null;break;case"local":r=s.parent;break;case"inner":break;case"page":e=s.zoomLayer;default:r=e}return void 0!==r&&i.forEach((t=>s.innerToWorld(t,null,!1,r))),i}shrinkContent(){const{x:t,y:e,width:s,height:i}=this.boxBounds;this._contentBounds={x:t,y:e,width:s,height:i}}spreadStroke(){const{x:t,y:e,width:s,height:i}=this.strokeBounds;this._strokeBounds={x:t,y:e,width:s,height:i},this._localStrokeBounds={x:t,y:e,width:s,height:i},this.renderSpread||this.spreadRenderCancel()}spreadRender(){const{x:t,y:e,width:s,height:i}=this.renderBounds;this._renderBounds={x:t,y:e,width:s,height:i},this._localRenderBounds={x:t,y:e,width:s,height:i}}shrinkContentCancel(){this._contentBounds=void 0}spreadStrokeCancel(){const t=this.renderBounds===this.strokeBounds;this._strokeBounds=this.boxBounds,this._localStrokeBounds=this.leaf.__localBoxBounds,t&&this.spreadRenderCancel()}spreadRenderCancel(){this._renderBounds=this._strokeBounds,this._localRenderBounds=this._localStrokeBounds}boxChange(){this.boxChanged=!0,this.localBoxChanged||this.localBoxChange(),this.hitCanvasChanged=!0}localBoxChange(){this.localBoxChanged=!0,this.boundsChanged=!0}strokeChange(){this.strokeChanged=!0,this.strokeSpread||(this.strokeSpread=1),this.boundsChanged=!0,this.hitCanvasChanged=!0}renderChange(){this.renderChanged=!0,this.renderSpread||(this.renderSpread=1),this.boundsChanged=!0}scaleChange(){this.scaleChanged=!0,this._scaleOrRotationChange()}rotationChange(){this.rotationChanged=!0,this.affectRotation=!0,this._scaleOrRotationChange()}_scaleOrRotationChange(){this.affectScaleOrRotation=!0,this.matrixChange(),this.leaf.__local||this.createLocal()}matrixChange(){this.matrixChanged=!0,this.localBoxChanged||this.localBoxChange()}surfaceChange(){this.surfaceChanged=!0}opacityChange(){this.opacityChanged=!0,this.surfaceChanged||this.surfaceChange()}childrenSortChange(){this.childrenSortChanged||(this.childrenSortChanged=!0,this.leaf.forceUpdate("surface"))}destroy(){}}class Nn{constructor(t,e){this.bubbles=!1,this.type=t,e&&(this.target=e)}stopDefault(){this.isStopDefault=!0,this.origin&&t.event.stopDefault(this.origin)}stopNow(){this.isStopNow=!0,this.isStop=!0,this.origin&&t.event.stopNow(this.origin)}stop(){this.isStop=!0,this.origin&&t.event.stop(this.origin)}}class Yn extends Nn{constructor(t,e,s){super(t,e),this.parent=s,this.child=e}}Yn.ADD="child.add",Yn.REMOVE="child.remove",Yn.CREATED="created",Yn.MOUNTED="mounted",Yn.UNMOUNTED="unmounted",Yn.DESTROY="destroy";class Xn extends Nn{constructor(t,e,s,i,r){super(t,e),this.attrName=s,this.oldValue=i,this.newValue=r}}Xn.CHANGE="property.change",Xn.LEAFER_CHANGE="property.leafer_change";class jn extends Nn{constructor(t,e){super(t),Object.assign(this,e)}}jn.LOAD="image.load",jn.LOADED="image.loaded",jn.ERROR="image.error";class Un extends Nn{get bigger(){if(!this.old)return!0;const{width:t,height:e}=this.old;return this.width>=t&&this.height>=e}get smaller(){return!this.bigger}get samePixelRatio(){return!this.old||this.pixelRatio===this.old.pixelRatio}constructor(t,e){"object"==typeof t?(super(Un.RESIZE),Object.assign(this,t)):super(t),this.old=e}}Un.RESIZE="resize";class Vn extends Nn{constructor(t,e){super(t),this.data=e}}Vn.REQUEST="watch.request",Vn.DATA="watch.data";class Gn extends Nn{constructor(t,e,s){super(t),e&&(this.data=e,this.times=s)}}Gn.CHECK_UPDATE="layout.check_update",Gn.REQUEST="layout.request",Gn.START="layout.start",Gn.BEFORE="layout.before",Gn.LAYOUT="layout",Gn.AFTER="layout.after",Gn.AGAIN="layout.again",Gn.END="layout.end";class Hn extends Nn{constructor(t,e,s,i){super(t),e&&(this.times=e),s&&(this.renderBounds=s,this.renderOptions=i)}}Hn.REQUEST="render.request",Hn.CHILD_START="render.child_start",Hn.START="render.start",Hn.BEFORE="render.before",Hn.RENDER="render",Hn.AFTER="render.after",Hn.AGAIN="render.again",Hn.END="render.end",Hn.NEXT="render.next";class qn extends Nn{}qn.START="leafer.start",qn.BEFORE_READY="leafer.before_ready",qn.READY="leafer.ready",qn.AFTER_READY="leafer.after_ready",qn.VIEW_READY="leafer.view_ready",qn.VIEW_COMPLETED="leafer.view_completed",qn.STOP="leafer.stop",qn.RESTART="leafer.restart",qn.END="leafer.end";const Qn={};class Jn{set event(t){this.on(t)}on(t,e,s){if(!e){let e,s=t;for(let t in s)e=s[t],e instanceof Array?this.on(t,e[0],e[1]):this.on(t,e);return}let i,r,n;s&&("once"===s?r=!0:"boolean"==typeof s?i=s:(i=s.capture,r=s.once));const o=$n(this,i,!0),a="string"==typeof t?t.split(" "):t,h=r?{listener:e,once:r}:{listener:e};a.forEach((t=>{t&&(n=o[t],n?-1===n.findIndex((t=>t.listener===e))&&n.push(h):o[t]=[h])}))}off(t,e,s){if(t){const i="string"==typeof t?t.split(" "):t;if(e){let t,r,n;s&&(t="boolean"==typeof s?s:"once"!==s&&s.capture);const o=$n(this,t);i.forEach((t=>{t&&(r=o[t],r&&(n=r.findIndex((t=>t.listener===e)),n>-1&&r.splice(n,1),r.length||delete o[t]))}))}else{const{__bubbleMap:t,__captureMap:e}=this;i.forEach((s=>{t&&delete t[s],e&&delete e[s]}))}}else this.__bubbleMap=this.__captureMap=void 0}on_(t,e,s,i){return s&&(e=e.bind(s)),this.on(t,e,i),{type:t,current:this,listener:e,options:i}}off_(t){if(!t)return;const e=t instanceof Array?t:[t];e.forEach((t=>t.current.off(t.type,t.listener,t.options))),e.length=0}once(t,e,s){this.on(t,e,{once:!0,capture:s})}emit(t,e,s){!e&&Ot.has(t)&&(e=Ot.get(t,{type:t,target:this,current:this}));const i=$n(this,s)[t];if(i){let r;for(let n=0,o=i.length;n<o&&(r=i[n],r.listener(e),r.once&&(this.off(t,r.listener,s),n--,o--),!e||!e.isStopNow);n++);}this.syncEventer&&this.syncEventer.emitEvent(e,s)}emitEvent(t,e){t.current=this,this.emit(t.type,t,e)}hasEvent(t,e){if(this.syncEventer&&this.syncEventer.hasEvent(t,e))return!0;const{__bubbleMap:s,__captureMap:i}=this,r=s&&s[t],n=i&&i[t];return!!(void 0===e?r||n:e?n:r)}destroy(){this.__captureMap=this.__bubbleMap=this.syncEventer=null}}function $n(t,e,s){if(e){const{__captureMap:e}=t;return e||(s?t.__captureMap={}:Qn)}{const{__bubbleMap:e}=t;return e||(s?t.__bubbleMap={}:Qn)}}const{on:Zn,on_:Kn,off:to,off_:eo,once:so,emit:io,emitEvent:ro,hasEvent:no,destroy:oo}=Jn.prototype,ao={on:Zn,on_:Kn,off:to,off_:eo,once:so,emit:io,emitEvent:ro,hasEvent:no,destroyEventer:oo},{isFinite:ho}=Number,lo=wt.get("setAttr"),co={__setAttr(t,e,s){if(this.leaferIsCreated){const i=this.__.__getInput(t);if(s&&!ho(e)&&void 0!==e&&(lo.warn(this.innerName,t,e),e=void 0),"object"==typeof e||i!==e){this.__realSetAttr(t,e);const{CHANGE:s}=Xn,r=new Xn(s,this,t,i,e);return this.isLeafer?this.emitEvent(new Xn(Xn.LEAFER_CHANGE,this,t,i,e)):this.hasEvent(s)&&this.emitEvent(r),this.leafer.emitEvent(r),!0}return!1}return this.__realSetAttr(t,e),!0},__realSetAttr(t,e){const s=this.__;s[t]=e,this.__proxyData&&this.setProxyAttr(t,e),s.normalStyle&&(this.lockNormalStyle||void 0===s.normalStyle[t]||(s.normalStyle[t]=e))},__getAttr(t){return this.__proxyData?this.getProxyAttr(t):this.__.__get(t)}},{setLayout:uo,multiplyParent:_o,translateInner:po,defaultWorld:go}=v,{toPoint:fo,tempPoint:yo}=pt,mo={__updateWorldMatrix(){_o(this.__local||this.__layout,this.parent?this.parent.__world:go,this.__world,!!this.__layout.affectScaleOrRotation,this.__,this.parent&&this.parent.__)},__updateLocalMatrix(){if(this.__local){const t=this.__layout,e=this.__local,s=this.__;t.affectScaleOrRotation&&(t.scaleChanged||t.rotationChanged)&&(uo(e,s,null,null,t.affectRotation),t.scaleChanged=t.rotationChanged=!1),e.e=s.x+s.offsetX,e.f=s.y+s.offsetY,(s.around||s.origin)&&(fo(s.around||s.origin,t.boxBounds,yo),po(e,-yo.x,-yo.y,!s.around))}this.__layout.matrixChanged=!1}},{updateMatrix:wo,updateAllMatrix:xo}=fn,{updateBounds:vo}=Sn,{toOuterOf:bo,copyAndSpread:Bo,copy:ko}=rt,{toBounds:Ro}=Ji,So={__updateWorldBounds(){bo(this.__layout.renderBounds,this.__world,this.__world),this.__layout.resized&&(this.__onUpdateSize(),this.__layout.resized=!1)},__updateLocalBounds(){const t=this.__layout;t.boxChanged&&(this.__.__pathInputed||this.__updatePath(),this.__updateRenderPath(),this.__updateBoxBounds(),t.resized=!0),t.localBoxChanged&&(this.__local&&this.__updateLocalBoxBounds(),t.localBoxChanged=!1,t.strokeSpread&&(t.strokeChanged=!0),t.renderSpread&&(t.renderChanged=!0),this.parent&&this.parent.__layout.boxChange()),t.boxChanged=!1,t.strokeChanged&&(t.strokeSpread=this.__updateStrokeSpread(),t.strokeSpread?(t.strokeBounds===t.boxBounds&&t.spreadStroke(),this.__updateStrokeBounds(),this.__updateLocalStrokeBounds()):t.spreadStrokeCancel(),t.strokeChanged=!1,(t.renderSpread||t.strokeSpread!==t.strokeBoxSpread)&&(t.renderChanged=!0),this.parent&&this.parent.__layout.strokeChange(),t.resized=!0),t.renderChanged&&(t.renderSpread=this.__updateRenderSpread(),t.renderSpread?(t.renderBounds!==t.boxBounds&&t.renderBounds!==t.strokeBounds||t.spreadRender(),this.__updateRenderBounds(),this.__updateLocalRenderBounds()):t.spreadRenderCancel(),t.renderChanged=!1,this.parent&&this.parent.__layout.renderChange()),t.boundsChanged=!1},__updateLocalBoxBounds(){this.__hasMotionPath&&this.__updateMotionPath(),this.__hasAutoLayout&&this.__updateAutoLayout(),bo(this.__layout.boxBounds,this.__local,this.__local)},__updateLocalStrokeBounds(){bo(this.__layout.strokeBounds,this.__localMatrix,this.__layout.localStrokeBounds)},__updateLocalRenderBounds(){bo(this.__layout.renderBounds,this.__localMatrix,this.__layout.localRenderBounds)},__updateBoxBounds(){const t=this.__layout.boxBounds,e=this.__;e.__pathInputed?Ro(e.path,t):(t.x=0,t.y=0,t.width=e.width,t.height=e.height)},__updateAutoLayout(){this.__layout.matrixChanged=!0,this.isBranch?(this.leaferIsReady&&this.leafer.layouter.addExtra(this),this.__.flow?(this.__layout.boxChanged&&this.__updateFlowLayout(),xo(this),vo(this,this),this.__.__autoSide&&this.__updateBoxBounds(!0)):(xo(this),vo(this,this))):wo(this)},__updateNaturalSize(){const{__:t,__layout:e}=this;t.__naturalWidth=e.boxBounds.width,t.__naturalHeight=e.boxBounds.height},__updateStrokeBounds(){const t=this.__layout;Bo(t.strokeBounds,t.boxBounds,t.strokeBoxSpread)},__updateRenderBounds(){const t=this.__layout;t.renderSpread>0?Bo(t.renderBounds,t.boxBounds,t.renderSpread):ko(t.renderBounds,t.strokeBounds)}},Co={__render(t,e){if(this.__worldOpacity)if(t.setWorld(this.__nowWorld=this.__getNowWorld(e)),t.opacity=this.__.opacity,this.__.__single){if("path"===this.__.eraser)return this.__renderEraser(t,e);const s=t.getSameCanvas(!0,!0);this.__draw(s,e),this.__worldFlipped?t.copyWorldByReset(s,this.__nowWorld,null,this.__.__blendMode,!0):t.copyWorldToInner(s,this.__nowWorld,this.__layout.renderBounds,this.__.__blendMode),s.recycle(this.__nowWorld)}else this.__draw(t,e)},__clip(t,e){this.__worldOpacity&&(t.setWorld(this.__nowWorld=this.__getNowWorld(e)),this.__drawRenderPath(t),this.windingRule?t.clip(this.windingRule):t.clip())},__updateWorldOpacity(){this.__worldOpacity=this.__.visible?this.parent?this.parent.__worldOpacity*this.__.opacity:this.__.opacity:0,this.__layout.opacityChanged&&(this.__layout.opacityChanged=!1)}},{excludeRenderBounds:To}=kn,Po={__updateChange(){const{__layout:t}=this;t.childrenSortChanged&&(this.__updateSortChildren(),t.childrenSortChanged=!1),this.__.__checkSingle()},__render(t,e){if(this.__nowWorld=this.__getNowWorld(e),this.__worldOpacity)if(this.__.__single){if("path"===this.__.eraser)return this.__renderEraser(t,e);const s=t.getSameCanvas(!1,!0);this.__renderBranch(s,e);const i=this.__nowWorld;t.opacity=this.__.opacity,t.copyWorldByReset(s,i,i,this.__.__blendMode,!0),s.recycle(i)}else this.__renderBranch(t,e)},__renderBranch(t,e){if(this.__hasMask)this.__renderMask(t,e);else{const{children:s}=this;for(let i=0,r=s.length;i<r;i++)To(s[i],e)||s[i].__render(t,e)}},__clip(t,e){if(this.__worldOpacity){const{children:s}=this;for(let i=0,r=s.length;i<r;i++)To(s[i],e)||s[i].__clip(t,e)}}},{LEAF:Oo,create:Ao}=s,{toInnerPoint:Lo,toOuterPoint:Eo,multiplyParent:Io}=v,{toOuterOf:Wo}=rt,{copy:Mo,move:Do}=L,{moveLocal:Fo,zoomOfLocal:zo,rotateOfLocal:No,skewOfLocal:Yo,moveWorld:Xo,zoomOfWorld:jo,rotateOfWorld:Uo,skewOfWorld:Vo,transform:Go,transformWorld:Ho,setTransform:qo,getFlipTransform:Qo,getLocalOrigin:Jo,getRelativeWorld:$o,drop:Zo}=fn;let Ko=class{get tag(){return this.__tag}set tag(t){}get __tag(){return"Leaf"}get innerName(){return this.__.name||this.tag+this.innerId}get __DataProcessor(){return Wt}get __LayoutProcessor(){return zn}get leaferIsCreated(){return this.leafer&&this.leafer.created}get leaferIsReady(){return this.leafer&&this.leafer.ready}get isLeafer(){return!1}get isBranch(){return!1}get isBranchLeaf(){return!1}get __localMatrix(){return this.__local||this.__layout}get __localBoxBounds(){return this.__local||this.__layout}get worldTransform(){return this.__layout.getTransform("world")}get localTransform(){return this.__layout.getTransform("local")}get boxBounds(){return this.getBounds("box","inner")}get renderBounds(){return this.getBounds("render","inner")}get worldBoxBounds(){return this.getBounds("box")}get worldStrokeBounds(){return this.getBounds("stroke")}get worldRenderBounds(){return this.getBounds("render")}get worldOpacity(){return this.__layout.update(),this.__worldOpacity}get __worldFlipped(){return this.__world.scaleX<0||this.__world.scaleY<0}get __onlyHitMask(){return this.__hasMask&&!this.__.hitChildren}get __ignoreHitWorld(){return(this.__hasMask||this.__hasEraser)&&this.__.hitChildren}get __inLazyBounds(){const{leafer:t}=this;return t&&t.created&&t.lazyBounds.hit(this.__world)}get pathInputed(){return this.__.__pathInputed}set event(t){this.on(t)}constructor(t){this.innerId=Ao(Oo),this.reset(t),this.__bubbleMap&&this.__emitLifeEvent(Yn.CREATED)}reset(t){this.leafer&&this.leafer.forceRender(this.__world),this.__world={a:1,b:0,c:0,d:1,e:0,f:0,x:0,y:0,width:0,height:0,scaleX:1,scaleY:1},null!==t&&(this.__local={a:1,b:0,c:0,d:1,e:0,f:0,x:0,y:0,width:0,height:0}),this.__worldOpacity=1,this.__=new this.__DataProcessor(this),this.__layout=new this.__LayoutProcessor(this),this.__level&&this.resetCustom(),t&&(t.__&&(t=t.toJSON()),t.children?this.set(t):Object.assign(this,t))}resetCustom(){this.__hasMask=this.__hasEraser=null,this.forceUpdate()}waitParent(t,e){e&&(t=t.bind(e)),this.parent?t():this.on(Yn.ADD,t,"once")}waitLeafer(t,e){e&&(t=t.bind(e)),this.leafer?t():this.on(Yn.MOUNTED,t,"once")}nextRender(t,e,s){this.leafer?this.leafer.nextRender(t,e,s):this.waitLeafer((()=>this.leafer.nextRender(t,e,s)))}removeNextRender(t){this.nextRender(t,null,"off")}__bindLeafer(t){if(this.isLeafer&&null!==t&&(t=this),this.leafer&&!t&&this.leafer.leafs--,this.leafer=t,t?(t.leafs++,this.__level=this.parent?this.parent.__level+1:1,this.animation&&this.__runAnimation("in"),this.__bubbleMap&&this.__emitLifeEvent(Yn.MOUNTED)):this.__emitLifeEvent(Yn.UNMOUNTED),this.isBranch){const{children:e}=this;for(let s=0,i=e.length;s<i;s++)e[s].__bindLeafer(t)}}set(t,e){}get(t){}setAttr(t,e){this[t]=e}getAttr(t){return this[t]}getComputedAttr(t){return this.__[t]}toJSON(t){return t&&this.__layout.update(),this.__.__getInputData(null,t)}toString(t){return JSON.stringify(this.toJSON(t))}toSVG(){}__SVG(t){}toHTML(){}__setAttr(t,e){return!0}__getAttr(t){}setProxyAttr(t,e){}getProxyAttr(t){}find(t,e){}findTag(t){}findOne(t,e){}findId(t){}focus(t){}updateState(){}updateLayout(){this.__layout.update()}forceUpdate(t){void 0===t?t="width":"surface"===t&&(t="blendMode");const e=this.__.__getInput(t);this.__[t]=void 0===e?null:void 0,this[t]=e}forceRender(t){this.forceUpdate("surface")}__updateWorldMatrix(){}__updateLocalMatrix(){}__updateWorldBounds(){}__updateLocalBounds(){}__updateLocalBoxBounds(){}__updateLocalStrokeBounds(){}__updateLocalRenderBounds(){}__updateBoxBounds(){}__updateContentBounds(){}__updateStrokeBounds(){}__updateRenderBounds(){}__updateAutoLayout(){}__updateFlowLayout(){}__updateNaturalSize(){}__updateStrokeSpread(){return 0}__updateRenderSpread(){return 0}__onUpdateSize(){}__updateEraser(t){this.__hasEraser=!!t||this.children.some((t=>t.__.eraser))}__renderEraser(t,e){t.save(),this.__clip(t,e);const{renderBounds:s}=this.__layout;t.clearRect(s.x,s.y,s.width,s.height),t.restore()}__updateMask(t){this.__hasMask=this.children.some((t=>t.__.mask&&t.__.visible&&t.__.opacity))}__renderMask(t,e){}__getNowWorld(t){if(t.matrix){this.__cameraWorld||(this.__cameraWorld={});const e=this.__cameraWorld;return Io(this.__world,t.matrix,e,void 0,this.__world),Wo(this.__layout.renderBounds,e,e),e}return this.__world}getTransform(t){return this.__layout.getTransform(t||"local")}getBounds(t,e){return this.__layout.getBounds(t,e)}getLayoutBounds(t,e,s){return this.__layout.getLayoutBounds(t,e,s)}getLayoutPoints(t,e){return this.__layout.getLayoutPoints(t,e)}getWorldBounds(t,e,s){const i=e?$o(this,e):this.worldTransform,r=s?t:{};return Wo(t,i,r),r}worldToLocal(t,e,s,i){this.parent?this.parent.worldToInner(t,e,s,i):e&&Mo(e,t)}localToWorld(t,e,s,i){this.parent?this.parent.innerToWorld(t,e,s,i):e&&Mo(e,t)}worldToInner(t,e,s,i){i&&(i.innerToWorld(t,e,s),t=e||t),Lo(this.worldTransform,t,e,s)}innerToWorld(t,e,s,i){Eo(this.worldTransform,t,e,s),i&&i.worldToInner(e||t,null,s)}getBoxPoint(t,e,s,i){return this.getBoxPointByInner(this.getInnerPoint(t,e,s,i),null,null,!0)}getBoxPointByInner(t,e,s,i){const r=i?t:Object.assign({},t),{x:n,y:o}=this.boxBounds;return Do(r,-n,-o),r}getInnerPoint(t,e,s,i){const r=i?t:{};return this.worldToInner(t,r,s,e),r}getInnerPointByBox(t,e,s,i){const r=i?t:Object.assign({},t),{x:n,y:o}=this.boxBounds;return Do(r,n,o),r}getInnerPointByLocal(t,e,s,i){return this.getInnerPoint(t,this.parent,s,i)}getLocalPoint(t,e,s,i){const r=i?t:{};return this.worldToLocal(t,r,s,e),r}getLocalPointByInner(t,e,s,i){return this.getWorldPoint(t,this.parent,s,i)}getPagePoint(t,e,s,i){return(this.leafer?this.leafer.zoomLayer:this).getInnerPoint(t,e,s,i)}getWorldPoint(t,e,s,i){const r=i?t:{};return this.innerToWorld(t,r,s,e),r}getWorldPointByBox(t,e,s,i){return this.getWorldPoint(this.getInnerPointByBox(t,null,null,i),e,s,!0)}getWorldPointByLocal(t,e,s,i){const r=i?t:{};return this.localToWorld(t,r,s,e),r}getWorldPointByPage(t,e,s,i){return(this.leafer?this.leafer.zoomLayer:this).getWorldPoint(t,e,s,i)}setTransform(t,e){qo(this,t,e)}transform(t,e){Go(this,t,e)}move(t,e,s){Fo(this,t,e,s)}moveInner(t,e,s){Xo(this,t,e,!0,s)}scaleOf(t,e,s,i){zo(this,Jo(this,t),e,s,i)}rotateOf(t,e){No(this,Jo(this,t),e)}skewOf(t,e,s,i){Yo(this,Jo(this,t),e,s,i)}transformWorld(t,e){Ho(this,t,e)}moveWorld(t,e,s){Xo(this,t,e,!1,s)}scaleOfWorld(t,e,s,i){jo(this,t,e,s,i)}rotateOfWorld(t,e){Uo(this,t,e)}skewOfWorld(t,e,s,i){Vo(this,t,e,s,i)}flip(t){Go(this,Qo(this,t))}scaleResize(t,e=t,s){this.scaleX*=t,this.scaleY*=e}__scaleResize(t,e){}resizeWidth(t){}resizeHeight(t){}__hitWorld(t){return!0}__hit(t){return!0}__hitFill(t){return!0}__hitStroke(t,e){return!0}__hitPixel(t){return!0}__drawHitPath(t){}__updateHitCanvas(){}__render(t,e){}__drawFast(t,e){}__draw(t,e){}__clip(t,e){}__renderShape(t,e,s,i){}__updateWorldOpacity(){}__updateChange(){}__drawPath(t){}__drawRenderPath(t){}__updatePath(){}__updateRenderPath(){}getMotionPathData(){return Rt.need("path")}getMotionPoint(t){return Rt.need("path")}getMotionTotal(){return 0}__updateMotionPath(){}__runAnimation(t,e){}__updateSortChildren(){}add(t,e){}remove(t,e){this.parent&&this.parent.remove(this,e)}dropTo(t,e,s){Zo(this,t,e,s)}on(t,e,s){}off(t,e,s){}on_(t,e,s,i){}off_(t){}once(t,e,s){}emit(t,e,s){}emitEvent(t,e){}hasEvent(t,e){return!1}static changeAttr(t,e,s){s?this.addAttr(t,e,s):Qr(this.prototype,t,e)}static addAttr(t,e,s){s||(s=Tr),s(e)(this.prototype,t)}__emitLifeEvent(t){this.hasEvent(t)&&this.emitEvent(new Yn(t,this,this.parent))}destroy(){this.destroyed||(this.parent&&this.remove(),this.children&&this.clear(),this.__emitLifeEvent(Yn.DESTROY),this.__.destroy(),this.__layout.destroy(),this.destroyEventer(),this.destroyed=!0)}};Ko=zt([sn(co),sn(mo),sn(So),sn(ao),sn(Co)],Ko);const{setListWithFn:ta}=rt,{sort:ea}=Sn,{localBoxBounds:sa,localStrokeBounds:ia,localRenderBounds:ra,maskLocalBoxBounds:na,maskLocalStrokeBounds:oa,maskLocalRenderBounds:aa}=kn,ha=new wt("Branch");let la=class extends Ko{__updateStrokeSpread(){const{children:t}=this;for(let e=0,s=t.length;e<s;e++)if(t[e].__layout.strokeSpread)return 1;return 0}__updateRenderSpread(){const{children:t}=this;for(let e=0,s=t.length;e<s;e++)if(t[e].__layout.renderSpread)return 1;return 0}__updateBoxBounds(){ta(this.__layout.boxBounds,this.children,this.__hasMask?na:sa)}__updateStrokeBounds(){ta(this.__layout.strokeBounds,this.children,this.__hasMask?oa:ia)}__updateRenderBounds(){ta(this.__layout.renderBounds,this.children,this.__hasMask?aa:ra)}__updateSortChildren(){let t;const{children:e}=this;if(e.length>1){for(let s=0,i=e.length;s<i;s++)e[s].__tempNumber=s,e[s].__.zIndex&&(t=!0);e.sort(ea),this.__layout.affectChildrenSort=t}}add(t,e){if(t===this||t.destroyed)return ha.warn("add self or destroyed");const s=void 0===e;if(!t.__){if(t instanceof Array)return t.forEach((t=>{this.add(t,e),s||e++}));t=Ct.get(t.tag,t)}t.parent&&t.parent.remove(t),t.parent=this,s?this.children.push(t):this.children.splice(e,0,t),t.isBranch&&(this.__.__childBranchNumber=(this.__.__childBranchNumber||0)+1);const i=t.__layout;i.boxChanged||i.boxChange(),i.matrixChanged||i.matrixChange(),t.__bubbleMap&&t.__emitLifeEvent(Yn.ADD),this.leafer&&(t.__bindLeafer(this.leafer),this.leafer.created&&this.__emitChildEvent(Yn.ADD,t)),this.__layout.affectChildrenSort&&this.__layout.childrenSortChange()}addMany(...t){this.add(t)}remove(t,e){t?t.__?t.animationOut?t.__runAnimation("out",(()=>this.__remove(t,e))):this.__remove(t,e):this.find(t).forEach((t=>this.remove(t,e))):void 0===t&&super.remove(null,e)}removeAll(t){const{children:e}=this;e.length&&(this.children=[],this.__preRemove(),this.__.__childBranchNumber=0,e.forEach((e=>{this.__realRemoveChild(e),t&&e.destroy()})))}clear(){this.removeAll(!0)}__remove(t,e){const s=this.children.indexOf(t);s>-1&&(this.children.splice(s,1),t.isBranch&&(this.__.__childBranchNumber=(this.__.__childBranchNumber||1)-1),this.__preRemove(),this.__realRemoveChild(t),e&&t.destroy())}__preRemove(){this.__hasMask&&this.__updateMask(),this.__hasEraser&&this.__updateEraser(),this.__layout.boxChange(),this.__layout.affectChildrenSort&&this.__layout.childrenSortChange()}__realRemoveChild(t){t.__emitLifeEvent(Yn.REMOVE),t.parent=null,this.leafer&&(t.__bindLeafer(null),this.leafer.created&&(this.__emitChildEvent(Yn.REMOVE,t),this.leafer.hitCanvasManager&&this.leafer.hitCanvasManager.clear()))}__emitChildEvent(t,e){const s=new Yn(t,e,this);this.hasEvent(t)&&!this.isLeafer&&this.emitEvent(s),this.leafer.emitEvent(s)}};la=zt([sn(Po)],la);class da{get length(){return this.list.length}constructor(t){this.reset(),t&&(t instanceof Array?this.addList(t):this.add(t))}has(t){return t&&void 0!==this.keys[t.innerId]}indexAt(t){return this.list[t]}indexOf(t){const e=this.keys[t.innerId];return void 0===e?-1:e}add(t){const{list:e,keys:s}=this;void 0===s[t.innerId]&&(e.push(t),s[t.innerId]=e.length-1)}addAt(t,e=0){const{keys:s}=this;if(void 0===s[t.innerId]){const{list:i}=this;for(let t=e,r=i.length;t<r;t++)s[i[t].innerId]++;0===e?i.unshift(t):(e>i.length&&(e=i.length),i.splice(e,0,t)),s[t.innerId]=e}}addList(t){for(let e=0;e<t.length;e++)this.add(t[e])}remove(t){const{list:e}=this;let s;for(let i=0,r=e.length;i<r;i++)void 0!==s?this.keys[e[i].innerId]=i-1:e[i].innerId===t.innerId&&(s=i,delete this.keys[t.innerId]);void 0!==s&&e.splice(s,1)}sort(t){const{list:e}=this;t?e.sort(((t,e)=>e.__level-t.__level)):e.sort(((t,e)=>t.__level-e.__level))}forEach(t){this.list.forEach(t)}clone(){const t=new da;return t.list=[...this.list],t.keys=Object.assign({},this.keys),t}update(){this.keys={};const{list:t,keys:e}=this;for(let s=0,i=t.length;s<i;s++)e[t[s].innerId]=s}reset(){this.list=[],this.keys={}}destroy(){this.reset()}}class ca{get length(){return this._length}constructor(t){this._length=0,this.reset(),t&&(t instanceof Array?this.addList(t):this.add(t))}has(t){return void 0!==this.keys[t.innerId]}without(t){return void 0===this.keys[t.innerId]}sort(t){const{levels:e}=this;t?e.sort(((t,e)=>e-t)):e.sort(((t,e)=>t-e))}addList(t){t.forEach((t=>{this.add(t)}))}add(t){const{keys:e,levelMap:s}=this;e[t.innerId]||(e[t.innerId]=1,s[t.__level]?s[t.__level].push(t):(s[t.__level]=[t],this.levels.push(t.__level)),this._length++)}forEach(t){let e;this.levels.forEach((s=>{e=this.levelMap[s];for(let s=0,i=e.length;s<i;s++)t(e[s])}))}reset(){this.levelMap={},this.keys={},this.levels=[],this._length=0}destroy(){this.levelMap=null}}const ua="1.2.0";class _a extends Qt{get allowBackgroundColor(){return!1}init(){const{config:e}=this;let s=e.view||e.canvas;s?("string"==typeof s?("#"!==s[0]&&(s="#"+s),this.viewSelect=t.miniapp.select(s)):s.fields?this.viewSelect=s:this.initView(s),this.viewSelect&&t.miniapp.getSizeView(this.viewSelect).then((t=>{this.initView(t)}))):this.initView()}initView(e){e?this.view=e.view||e:(e={},this.__createView()),this.view.getContext?this.__createContext():this.unrealCanvas();const{width:s,height:i,pixelRatio:r}=this.config,n={width:s||e.width,height:i||e.height,pixelRatio:r};this.resize(n),this.context&&(this.viewSelect&&(t.renderCanvas=this),this.context.roundRect&&(this.roundRect=function(t,e,s,i,r){this.context.roundRect(t,e,s,i,"number"==typeof r?[r]:r)}),ar(this.context.__proto__))}__createView(){this.view=t.origin.createCanvas(1,1)}updateViewSize(){const{width:t,height:e,pixelRatio:s}=this;this.view.width=Math.ceil(t*s),this.view.height=Math.ceil(e*s)}updateClientBounds(e){this.viewSelect&&t.miniapp.getBounds(this.viewSelect).then((t=>{this.clientBounds=t,e&&e()}))}startAutoLayout(e,s){this.resizeListener=s,e&&(this.checkSize=this.checkSize.bind(this),t.miniapp.onWindowResize(this.checkSize))}checkSize(){this.viewSelect&&setTimeout((()=>{this.updateClientBounds((()=>{const{width:t,height:e}=this.clientBounds,{pixelRatio:s}=this,i={width:t,height:e,pixelRatio:s};this.isSameSize(i)||this.emitResize(i)}))}),500)}stopAutoLayout(){this.autoLayout=!1,this.resizeListener=null,t.miniapp.offWindowResize(this.checkSize)}unrealCanvas(){this.unreal=!0}emitResize(t){const e={};Et.copyAttrs(e,this,qt),this.resize(t),void 0!==this.width&&this.resizeListener(new Un(t,e))}}const{mineType:pa,fileType:ga}=hr;function fa(s,i){t.origin={createCanvas:(t,e,s)=>{const r={type:"2d",width:t,height:e};return i.createOffscreenCanvas?i.createOffscreenCanvas(r):i.createOffScreenCanvas(r)},canvasToDataURL:(t,e,s)=>t.toDataURL(pa(e),s),canvasToBolb:(t,e,s)=>t.toBuffer(e,{quality:s}),canvasSaveAs:(e,s,i)=>{let r=e.toDataURL(pa(ga(s)),i);return r=r.substring(r.indexOf("64,")+3),t.origin.download(r,s)},download:(e,s)=>new Promise(((r,n)=>{let o;s.includes("/")||(s=`${i.env.USER_DATA_PATH}/`+s,o=!0);const a=i.getFileSystemManager();a.writeFile({filePath:s,data:e,encoding:"base64",success(){o?t.miniapp.saveToAlbum(s).then((()=>{a.unlink({filePath:s}),r()})):r()},fail(t){n(t)}})})),loadImage:e=>new Promise(((s,i)=>{const r=t.canvas.view.createImage();r.onload=()=>{s(r)},r.onerror=t=>{i(t)},r.src=t.image.getRealURL(e)})),noRepeat:"repeat-x"},t.miniapp={select:t=>i.createSelectorQuery().select(t),getBounds:t=>new Promise((e=>{t.boundingClientRect().exec((t=>{const s=t[1];e({x:s.top,y:s.left,width:s.width,height:s.height})}))})),getSizeView:t=>new Promise((e=>{t.fields({node:!0,size:!0}).exec((t=>{const s=t[0];e({view:s.node,width:s.width,height:s.height})}))})),saveToAlbum:t=>new Promise((e=>{i.getSetting({success:s=>{s.authSetting["scope.writePhotosAlbum"]?i.saveImageToPhotosAlbum({filePath:t,success(){e(!0)}}):i.authorize({scope:"scope.writePhotosAlbum",success:()=>{i.saveImageToPhotosAlbum({filePath:t,success(){e(!0)}})},fail:()=>{}})}})})),onWindowResize(t){i.onWindowResize(t)},offWindowResize(t){i.offWindowResize(t)}},t.event={stopDefault(t){},stopNow(t){},stop(t){}},t.canvas=e.canvas(),t.conicGradientSupport=!!t.canvas.context.createConicGradient}Object.assign(e,{canvas:(t,e)=>new _a(t,e),image:t=>new yr(t)}),t.name="miniapp",t.requestRender=function(e){const{view:s}=t.renderCanvas||t.canvas;s.requestAnimationFrame?s.requestAnimationFrame(e):setTimeout(e,16)},mr(t,"devicePixelRatio",{get:()=>Math.max(1,wx.getSystemInfoSync().pixelRatio)});class ya{get childrenChanged(){return this.hasAdd||this.hasRemove||this.hasVisible}get updatedList(){if(this.hasRemove){const t=new da;return this.__updatedList.list.forEach((e=>{e.leafer&&t.add(e)})),t}return this.__updatedList}constructor(t,e){this.totalTimes=0,this.config={},this.__updatedList=new da,this.target=t,e&&(this.config=Et.default(e,this.config)),this.__listenEvents()}start(){this.disabled||(this.running=!0)}stop(){this.running=!1}disable(){this.stop(),this.__removeListenEvents(),this.disabled=!0}update(){this.changed=!0,this.running&&this.target.emit(Hn.REQUEST)}__onAttrChange(t){this.__updatedList.add(t.target),this.update()}__onChildEvent(t){t.type===Yn.ADD?(this.hasAdd=!0,this.__pushChild(t.child)):(this.hasRemove=!0,this.__updatedList.add(t.parent)),this.update()}__pushChild(t){this.__updatedList.add(t),t.isBranch&&this.__loopChildren(t)}__loopChildren(t){const{children:e}=t;for(let t=0,s=e.length;t<s;t++)this.__pushChild(e[t])}__onRquestData(){this.target.emitEvent(new Vn(Vn.DATA,{updatedList:this.updatedList})),this.__updatedList=new da,this.totalTimes++,this.changed=!1,this.hasVisible=!1,this.hasRemove=!1,this.hasAdd=!1}__listenEvents(){const{target:t}=this;this.__eventIds=[t.on_(Xn.CHANGE,this.__onAttrChange,this),t.on_([Yn.ADD,Yn.REMOVE],this.__onChildEvent,this),t.on_(Vn.REQUEST,this.__onRquestData,this)]}__removeListenEvents(){this.target.off_(this.__eventIds)}destroy(){this.target&&(this.stop(),this.__removeListenEvents(),this.target=null,this.__updatedList=null)}}const{updateAllMatrix:ma,updateBounds:wa,updateAllWorldOpacity:xa}=fn,{pushAllChildBranch:va,pushAllParent:ba}=Sn;const{worldBounds:Ba}=kn,ka={x:0,y:0,width:1e5,height:1e5};class Ra{constructor(t){this.updatedBounds=new ht,this.beforeBounds=new ht,this.afterBounds=new ht,t instanceof Array&&(t=new da(t)),this.updatedList=t}setBefore(){this.beforeBounds.setListWithFn(this.updatedList.list,Ba)}setAfter(){const{list:t}=this.updatedList;t.some((t=>t.noBounds))?this.afterBounds.set(ka):this.afterBounds.setListWithFn(t,Ba),this.updatedBounds.setList([this.beforeBounds,this.afterBounds])}merge(t){this.updatedList.addList(t.updatedList.list),this.beforeBounds.add(t.beforeBounds),this.afterBounds.add(t.afterBounds),this.updatedBounds.add(t.updatedBounds)}destroy(){this.updatedList=null}}const{updateAllMatrix:Sa,updateAllChange:Ca}=fn,Ta=wt.get("Layouter");class Pa{constructor(t,e){this.totalTimes=0,this.config={},this.__levelList=new ca,this.target=t,e&&(this.config=Et.default(e,this.config)),this.__listenEvents()}start(){this.disabled||(this.running=!0)}stop(){this.running=!1}disable(){this.stop(),this.__removeListenEvents(),this.disabled=!0}layout(){if(!this.running)return;const{target:t}=this;this.times=0;try{t.emit(Gn.START),this.layoutOnce(),t.emitEvent(new Gn(Gn.END,this.layoutedBlocks,this.times))}catch(t){Ta.error(t)}this.layoutedBlocks=null}layoutAgain(){this.layouting?this.waitAgain=!0:this.layoutOnce()}layoutOnce(){return this.layouting?Ta.warn("layouting"):this.times>3?Ta.warn("layout max times"):(this.times++,this.totalTimes++,this.layouting=!0,this.target.emit(Vn.REQUEST),this.totalTimes>1?this.partLayout():this.fullLayout(),this.layouting=!1,void(this.waitAgain&&(this.waitAgain=!1,this.layoutOnce())))}partLayout(){var t;if(!(null===(t=this.__updatedList)||void 0===t?void 0:t.length))return;const e=Bt.start("PartLayout"),{target:s,__updatedList:i}=this,{BEFORE:r,LAYOUT:n,AFTER:o}=Gn,a=this.getBlocks(i);a.forEach((t=>t.setBefore())),s.emitEvent(new Gn(r,a,this.times)),this.extraBlock=null,i.sort(),function(t,e){let s;t.list.forEach((t=>{s=t.__layout,e.without(t)&&!s.proxyZoom&&(s.matrixChanged?(ma(t,!0),e.add(t),t.isBranch&&va(t,e),ba(t,e)):s.boundsChanged&&(e.add(t),t.isBranch&&(t.__tempNumber=0),ba(t,e)))}))}(i,this.__levelList),function(t){let e,s,i;t.sort(!0),t.levels.forEach((r=>{e=t.levelMap[r];for(let t=0,r=e.length;t<r;t++){if(s=e[t],s.isBranch&&s.__tempNumber){i=s.children;for(let t=0,e=i.length;t<e;t++)i[t].isBranch||wa(i[t])}wa(s)}}))}(this.__levelList),function(t){let e;t.list.forEach((t=>{e=t.__layout,e.opacityChanged&&xa(t),e.stateStyleChanged&&setTimeout((()=>e.stateStyleChanged&&t.updateState())),t.__updateChange()}))}(i),this.extraBlock&&a.push(this.extraBlock),a.forEach((t=>t.setAfter())),s.emitEvent(new Gn(n,a,this.times)),s.emitEvent(new Gn(o,a,this.times)),this.addBlocks(a),this.__levelList.reset(),this.__updatedList=null,Bt.end(e)}fullLayout(){const t=Bt.start("FullLayout"),{target:e}=this,{BEFORE:s,LAYOUT:i,AFTER:r}=Gn,n=this.getBlocks(new da(e));e.emitEvent(new Gn(s,n,this.times)),Pa.fullLayout(e),n.forEach((t=>{t.setAfter()})),e.emitEvent(new Gn(i,n,this.times)),e.emitEvent(new Gn(r,n,this.times)),this.addBlocks(n),Bt.end(t)}static fullLayout(t){Sa(t,!0),t.isBranch?Sn.updateBounds(t):fn.updateBounds(t),Ca(t)}addExtra(t){if(!this.__updatedList.has(t)){const{updatedList:e,beforeBounds:s}=this.extraBlock||(this.extraBlock=new Ra([]));e.length?s.add(t.__world):s.set(t.__world),e.add(t)}}createBlock(t){return new Ra(t)}getBlocks(t){return[this.createBlock(t)]}addBlocks(t){this.layoutedBlocks?this.layoutedBlocks.push(...t):this.layoutedBlocks=t}__onReceiveWatchData(t){this.__updatedList=t.data.updatedList}__listenEvents(){const{target:t}=this;this.__eventIds=[t.on_(Gn.REQUEST,this.layout,this),t.on_(Gn.AGAIN,this.layoutAgain,this),t.on_(Vn.DATA,this.__onReceiveWatchData,this)]}__removeListenEvents(){this.target.off_(this.__eventIds)}destroy(){this.target&&(this.stop(),this.__removeListenEvents(),this.target=this.config=null)}}const Oa=wt.get("Renderer");class Aa{get needFill(){return!(this.canvas.allowBackgroundColor||!this.config.fill)}constructor(t,e,s){this.FPS=60,this.totalTimes=0,this.times=0,this.config={usePartRender:!0,maxFPS:60},this.target=t,this.canvas=e,s&&(this.config=Et.default(s,this.config)),this.__listenEvents()}start(){this.running=!0,this.update(!1)}stop(){this.running=!1}update(t=!0){this.changed||(this.changed=t),this.__requestRender()}requestLayout(){this.target.emit(Gn.REQUEST)}render(t){if(!this.running||!this.canvas.view)return this.update();const{target:e}=this;this.times=0,this.totalBounds=new ht,Oa.log(e.innerName,"---\x3e");try{e.isApp||e.app.emit(Hn.CHILD_START,e),this.emitRender(Hn.START),this.renderOnce(t),this.emitRender(Hn.END,this.totalBounds),_r.clearRecycled()}catch(t){this.rendering=!1,Oa.error(t)}Oa.log("-------------|")}renderAgain(){this.rendering?this.waitAgain=!0:this.renderOnce()}renderOnce(t){if(this.rendering)return Oa.warn("rendering");if(this.times>3)return Oa.warn("render max times");if(this.times++,this.totalTimes++,this.rendering=!0,this.changed=!1,this.renderBounds=new ht,this.renderOptions={},t)this.emitRender(Hn.BEFORE),t();else{if(this.requestLayout(),this.ignore)return void(this.ignore=this.rendering=!1);this.emitRender(Hn.BEFORE),this.config.usePartRender&&this.totalTimes>1?this.partRender():this.fullRender()}this.emitRender(Hn.RENDER,this.renderBounds,this.renderOptions),this.emitRender(Hn.AFTER,this.renderBounds,this.renderOptions),this.updateBlocks=null,this.rendering=!1,this.waitAgain&&(this.waitAgain=!1,this.renderOnce())}partRender(){const{canvas:t,updateBlocks:e}=this;if(!e)return Oa.warn("PartRender: need update attr");this.mergeBlocks(),e.forEach((e=>{t.bounds.hit(e)&&!e.isEmpty()&&this.clipRender(e)}))}clipRender(t){const e=Bt.start("PartRender"),{canvas:s}=this,i=t.getIntersect(s.bounds),r=t.includes(this.target.__world),n=new ht(i);s.save(),r&&!wt.showRepaint?s.clear():(i.spread(10+1/this.canvas.pixelRatio).ceil(),s.clearWorld(i,!0),s.clipWorld(i,!0)),this.__render(i,r,n),s.restore(),Bt.end(e)}fullRender(){const t=Bt.start("FullRender"),{canvas:e}=this;e.save(),e.clear(),this.__render(e.bounds,!0),e.restore(),Bt.end(t)}__render(t,e,s){const i=t.includes(this.target.__world)?{includes:e}:{bounds:t,includes:e};this.needFill&&this.canvas.fillWorld(t,this.config.fill),wt.showRepaint&&this.canvas.strokeWorld(t,"red"),this.target.__render(this.canvas,i),this.renderBounds=s=s||t,this.renderOptions=i,this.totalBounds.isEmpty()?this.totalBounds=s:this.totalBounds.add(s),wt.showHitView&&this.renderHitView(i),wt.showBoundsView&&this.renderBoundsView(i),this.canvas.updateRender(s)}renderHitView(t){}renderBoundsView(t){}addBlock(t){this.updateBlocks||(this.updateBlocks=[]),this.updateBlocks.push(t)}mergeBlocks(){const{updateBlocks:t}=this;if(t){const e=new ht;e.setList(t),t.length=0,t.push(e)}}__requestRender(){if(this.requestTime)return;const e=this.requestTime=Date.now();t.requestRender((()=>{this.FPS=Math.min(60,Math.ceil(1e3/(Date.now()-e))),this.requestTime=0,this.running&&(this.changed&&this.canvas.view&&this.render(),this.target.emit(Hn.NEXT))}))}__onResize(t){if(!this.canvas.unreal){if(t.bigger||!t.samePixelRatio){const{width:e,height:s}=t.old;if(!new ht(0,0,e,s).includes(this.target.__world)||this.needFill||!t.samePixelRatio)return this.addBlock(this.canvas.bounds),void this.target.forceUpdate("surface")}this.addBlock(new ht(0,0,1,1)),this.update()}}__onLayoutEnd(t){t.data&&t.data.map((t=>{let e;t.updatedList&&t.updatedList.list.some((t=>(e=!t.__world.width||!t.__world.height,e&&(t.isLeafer||Oa.tip(t.innerName,": empty"),e=!t.isBranch||t.isBranchLeaf),e))),this.addBlock(e?this.canvas.bounds:t.updatedBounds)}))}emitRender(t,e,s){this.target.emitEvent(new Hn(t,this.times,e,s))}__listenEvents(){const{target:t}=this;this.__eventIds=[t.on_(Hn.REQUEST,this.update,this),t.on_(Gn.END,this.__onLayoutEnd,this),t.on_(Hn.AGAIN,this.renderAgain,this),t.on_(Un.RESIZE,this.__onResize,this)]}__removeListenEvents(){this.target.off_(this.__eventIds)}destroy(){this.target&&(this.stop(),this.__removeListenEvents(),this.target=this.canvas=this.config=null)}}function La(t){return xr(t,(t=>({set(e){this.__setAttr(t,e),e&&(this.__.__useEffect=!0),this.__layout.renderChanged||this.__layout.renderChange()}})))}function Ea(t){return xr(t,(t=>({set(e){this.__setAttr(t,e),this.__layout.boxChanged||this.__layout.boxChange(),this.__updateSize()}})))}function Ia(){return(t,e)=>{const s="_"+e;mr(t,e,{set(t){this.isLeafer&&(this[s]=t)},get(){return this.isApp?this.tree.zoomLayer:this.isLeafer?this[s]||this:this.leafer&&this.leafer.zoomLayer}})}}Object.assign(e,{watcher:(t,e)=>new ya(t,e),layouter:(t,e)=>new Pa(t,e),renderer:(t,e,s)=>new Aa(t,e,s),selector:(t,e)=>{},interaction:(t,e,s,i)=>{}}),t.layout=Pa.fullLayout;const Wa={},Ma={},Da={number:(t,e)=>"object"==typeof t?"percent"===t.type?t.value*e:t.value:t},Fa={},za={},Na={},Ya={},Xa={},ja={},Ua={setStyleName:(t,e,s)=>Rt.need("state"),set:(t,e)=>Rt.need("state")},Va={list:{},register(t,e){Va.list[t]=e},get:t=>Va.list[t]},{parse:Ga,objectToCanvasData:Ha}=ys,qa={},Qa=wt.get("UIData");class Ja extends Wt{get scale(){const{scaleX:t,scaleY:e}=this;return t!==e?{x:t,y:e}:t}get __strokeWidth(){const{strokeWidth:t,strokeWidthFixed:e}=this;if(e){const e=this.__leaf;let{scaleX:s}=e.__nowWorld||e.__world;return s<0&&(s=-s),s>1?t/s:t}return t}get __hasStroke(){return this.stroke&&this.strokeWidth}get __hasMultiPaint(){const t=this;return!!(t.__isFills&&t.fill.length>1||t.__isStrokes&&t.stroke.length>1||t.__useEffect)||t.fill&&this.__hasStroke}get __clipAfterFill(){const t=this;return t.cornerRadius||t.innerShadow||t.__pathInputed}get __autoWidth(){return!this._width}get __autoHeight(){return!this._height}get __autoSide(){return!this._width||!this._height}get __autoSize(){return!this._width&&!this._height}setVisible(t){this._visible=t;const{leafer:e}=this.__leaf;e&&(e.watcher.hasVisible=!0)}setWidth(t){t<0?(this._width=-t,this.__leaf.scaleX*=-1,Qa.warn("width < 0, instead -scaleX ",this)):this._width=t}setHeight(t){t<0?(this._height=-t,this.__leaf.scaleY*=-1,Qa.warn("height < 0, instead -scaleY",this)):this._height=t}setFill(t){this.__naturalWidth&&this.__removeNaturalSize(),"string"!=typeof t&&t?"object"==typeof t&&(this.__setInput("fill",t),this.__leaf.__layout.boxChanged||this.__leaf.__layout.boxChange(),this.__isFills=!0,this._fill||(this._fill=qa)):(this.__isFills&&(this.__removeInput("fill"),Na.recycleImage("fill",this),this.__isFills=!1,this.__pixelFill&&(this.__pixelFill=!1)),this._fill=t)}setStroke(t){"string"!=typeof t&&t?"object"==typeof t&&(this.__setInput("stroke",t),this.__leaf.__layout.boxChanged||this.__leaf.__layout.boxChange(),this.__isStrokes=!0,this._stroke||(this._stroke=qa)):(this.__isStrokes&&(this.__removeInput("stroke"),Na.recycleImage("stroke",this),this.__isStrokes=!1,this.__pixelStroke&&(this.__pixelStroke=!1)),this._stroke=t)}setPath(t){const e="string"==typeof t;e||t&&"object"==typeof t[0]?(this.__setInput("path",t),this._path=e?Ga(t):Ha(t)):(this.__input&&this.__removeInput("path"),this._path=t)}setShadow(t){this.__setInput("shadow",t),t instanceof Array?(t.some((t=>!1===t.visible))&&(t=t.filter((t=>!1!==t.visible))),this._shadow=t.length?t:null):this._shadow=t&&!1!==t.visible?[t]:null}setInnerShadow(t){this.__setInput("innerShadow",t),t instanceof Array?(t.some((t=>!1===t.visible))&&(t=t.filter((t=>!1!==t.visible))),this._innerShadow=t.length?t:null):this._innerShadow=t&&!1!==t.visible?[t]:null}__computePaint(){const{fill:t,stroke:e}=this.__input;t&&za.compute("fill",this.__leaf),e&&za.compute("stroke",this.__leaf),this.__needComputePaint=!1}}class $a extends Ja{}class Za extends $a{get __boxStroke(){return!this.__pathInputed}get __drawAfterFill(){const t=this;return"hide"===t.overflow&&(t.__clipAfterFill||t.innerShadow)&&t.__leaf.children.length}get __clipAfterFill(){return this.__leaf.isOverflow||super.__clipAfterFill}}class Ka extends $a{__getInputData(t,e){const s=super.__getInputData(t,e);return qt.forEach((t=>delete s[t])),s}}class th extends Za{}class eh extends Ja{}class sh extends Ja{get __boxStroke(){return!this.__pathInputed}}class ih extends Ja{get __boxStroke(){return!this.__pathInputed}}class rh extends Ja{}class nh extends Ja{}class oh extends Ja{get __pathInputed(){return 2}}class ah extends $a{}const hh={thin:100,"extra-light":200,light:300,normal:400,medium:500,"semi-bold":600,bold:700,"extra-bold":800,black:900};class lh extends Ja{get __useNaturalRatio(){return!1}setFontWeight(t){"string"==typeof t?(this.__setInput("fontWeight",t),this._fontWeight=hh[t]||400):(this.__input&&this.__removeInput("fontWeight"),this._fontWeight=t)}}class dh extends sh{setUrl(t){this.__setImageFill(t),this._url=t}__setImageFill(t){this.__leaf.image&&(this.__leaf.image=null),this.fill=t?{type:"image",mode:"stretch",url:t}:void 0}__getData(){const t=super.__getData();return delete t.fill,t}__getInputData(t,e){const s=super.__getInputData(t,e);return delete s.fill,s}}class ch extends sh{get __isCanvas(){return!0}get __drawAfterFill(){return!0}__getInputData(t,e){const s=super.__getInputData(t,e);return s.url=this.__leaf.canvas.toDataURL("image/png"),s}}const uh={__updateStrokeSpread(){let t=0,e=0;const s=this.__,{strokeAlign:i,strokeWidth:r}=s;if((s.stroke||"all"===s.hitStroke)&&r&&"inside"!==i&&(e=t="center"===i?r/2:r,!s.__boxStroke)){const e=s.__isLinePath?0:10*t,i="none"===s.strokeCap?0:r;t+=Math.max(e,i)}return s.__useArrow&&(t+=5*r),this.__layout.strokeBoxSpread=e,t},__updateRenderSpread(){let t=0;const{shadow:e,innerShadow:s,blur:i,backgroundBlur:r}=this.__;e&&e.forEach((e=>t=Math.max(t,Math.max(Math.abs(e.y),Math.abs(e.x))+(e.spread>0?e.spread:0)+1.5*e.blur))),i&&(t=Math.max(t,i));let n=t=Math.ceil(t);return s&&s.forEach((t=>n=Math.max(n,Math.max(Math.abs(t.y),Math.abs(t.x))+(t.spread<0?-t.spread:0)+1.5*t.blur))),r&&(n=Math.max(n,r)),this.__layout.renderShapeSpread=n,t+(this.__layout.strokeSpread||0)}},_h={__updateChange(){const t=this.__;if(t.__useEffect){const{shadow:e,innerShadow:s,blur:i,backgroundBlur:r}=this.__;t.__useEffect=!!(e||s||i||r)}t.__checkSingle();t.__isFills||t.__isStrokes||t.cornerRadius||t.__useEffect?t.__complex=!0:t.__complex&&(t.__complex=!1)},__drawFast(t,e){ph(this,t,e)},__draw(t,e){const s=this.__;if(s.__complex){s.__needComputePaint&&s.__computePaint();const{fill:i,stroke:r,__drawAfterFill:n}=s;if(this.__drawRenderPath(t),s.__useEffect){const o=za.shape(this,t,e);this.__nowWorld=this.__getNowWorld(e);const{shadow:a,innerShadow:h}=s;a&&Xa.shadow(this,t,o),i&&(s.__isFills?za.fills(i,this,t):za.fill(i,this,t)),n&&this.__drawAfterFill(t,e),h&&Xa.innerShadow(this,t,o),r&&(s.__isStrokes?za.strokes(r,this,t):za.stroke(r,this,t)),o.worldCanvas&&o.worldCanvas.recycle(),o.canvas.recycle()}else i&&(s.__isFills?za.fills(i,this,t):za.fill(i,this,t)),n&&this.__drawAfterFill(t,e),r&&(s.__isStrokes?za.strokes(r,this,t):za.stroke(r,this,t))}else s.__pathInputed?ph(this,t,e):this.__drawFast(t,e)},__renderShape(t,e,s,i){if(this.__worldOpacity){t.setWorld(this.__nowWorld=this.__getNowWorld(e));const{fill:r,stroke:n}=this.__;this.__drawRenderPath(t),r&&!s&&(this.__.__pixelFill?za.fills(r,this,t):za.fill("#000000",this,t)),this.__.__isCanvas&&this.__drawAfterFill(t,e),n&&!i&&(this.__.__pixelStroke?za.strokes(n,this,t):za.stroke("#000000",this,t))}},__drawAfterFill(t,e){this.__.__clipAfterFill?(t.save(),this.windingRule?t.clip(this.windingRule):t.clip(),this.__drawContent(t,e),t.restore()):this.__drawContent(t,e)}};function ph(t,e,s){const{fill:i,stroke:r,__drawAfterFill:n}=t.__;t.__drawRenderPath(e),i&&za.fill(i,t,e),n&&t.__drawAfterFill(e,s),r&&za.stroke(r,t,e)}const gh={__drawFast(t,e){let{width:s,height:i,fill:r,stroke:n,__drawAfterFill:o}=this.__;if(r&&(t.fillStyle=r,t.fillRect(0,0,s,i)),o&&this.__drawAfterFill(t,e),n){const{strokeAlign:r,__strokeWidth:o}=this.__;if(!o)return;t.setStroke(n,o,this.__);const a=o/2;switch(r){case"center":t.strokeRect(0,0,s,i);break;case"inside":s-=o,i-=o,s<0||i<0?(t.save(),this.__clip(t,e),t.strokeRect(a,a,s,i),t.restore()):t.strokeRect(a,a,s,i);break;case"outside":t.strokeRect(-a,-a,s+o,i+o)}}}};var fh;let yh=fh=class extends Ko{get app(){return this.leafer&&this.leafer.app}get isFrame(){return!1}set scale(t){a.assignScale(this,t)}get scale(){return this.__.scale}get pen(){const{path:t}=this.__;return nr.set(this.path=t||[]),t||this.__drawPathByBox(nr),nr}get editConfig(){}get editOuter(){return""}get editInner(){return""}constructor(t){super(t)}reset(t){}set(t,e){e?"temp"===e?(this.lockNormalStyle=!0,Object.assign(this,t),this.lockNormalStyle=!1):this.animate(t,e):Object.assign(this,t)}get(t){return"string"==typeof t?this.__.__getInput(t):this.__.__getInputData(t)}createProxyData(){}find(t,e){}findTag(t){return this.find({tag:t})}findOne(t,e){}findId(t){return this.findOne({id:t})}getPath(t,e){this.__layout.update();let s=e?this.__.__pathForRender:this.__.path;return s||(nr.set(s=[]),this.__drawPathByBox(nr)),t?ys.toCanvasData(s,!0):s}getPathString(t,e,s){return ys.stringify(this.getPath(t,e),s)}load(){this.__.__computePaint()}__onUpdateSize(){if(this.__.__input){const t=this.__;!t.lazy||this.__inLazyBounds||ja.running?t.__computePaint():t.__needComputePaint=!0}}__updateRenderPath(){if(this.__.path){const t=this.__;t.__pathForRender=t.cornerRadius?rr.smooth(t.path,t.cornerRadius,t.cornerSmoothing):t.path,t.__useArrow&&Fa.addArrows(this,!t.cornerRadius)}}__drawRenderPath(t){t.beginPath(),this.__drawPathByData(t,this.__.__pathForRender)}__drawPath(t){t.beginPath(),this.__drawPathByData(t,this.__.path)}__drawPathByData(t,e){e?mi.drawPathByData(t,e):this.__drawPathByBox(t)}__drawPathByBox(t){const{x:e,y:s,width:i,height:r}=this.__layout.boxBounds;if(this.__.cornerRadius){const{cornerRadius:n}=this.__;t.roundRect(e,s,i,r,"number"==typeof n?[n]:n)}else t.rect(e,s,i,r)}animate(t,e,s,i){return Rt.need("animate")}killAnimate(t){}export(t,e){return ja.export(this,t,e)}clone(t){const e=this.toJSON();return t&&Object.assign(e,t),fh.one(e)}static one(t,e,s,i,r){return Ct.get(t.tag||this.prototype.__tag,t,e,s,i,r)}static registerUI(){rn()(this)}static registerData(t){Hr(t)(this.prototype)}static setEditConfig(t){}static setEditOuter(t){}static setEditInner(t){}destroy(){this.fill=this.stroke=null,this.__animate&&this.killAnimate(),super.destroy()}};zt([Hr(Ja)],yh.prototype,"__",void 0),zt([Ia()],yh.prototype,"zoomLayer",void 0),zt([Br("")],yh.prototype,"id",void 0),zt([Br("")],yh.prototype,"name",void 0),zt([Br("")],yh.prototype,"className",void 0),zt([Dr("pass-through")],yh.prototype,"blendMode",void 0),zt([Fr(1)],yh.prototype,"opacity",void 0),zt([zr(!0)],yh.prototype,"visible",void 0),zt([Dr(!1)],yh.prototype,"locked",void 0),zt([Xr(0)],yh.prototype,"zIndex",void 0),zt([jr(!1)],yh.prototype,"mask",void 0),zt([Ur(!1)],yh.prototype,"eraser",void 0),zt([kr(0,!0)],yh.prototype,"x",void 0),zt([kr(0,!0)],yh.prototype,"y",void 0),zt([Tr(100,!0)],yh.prototype,"width",void 0),zt([Tr(100,!0)],yh.prototype,"height",void 0),zt([Sr(1,!0)],yh.prototype,"scaleX",void 0),zt([Sr(1,!0)],yh.prototype,"scaleY",void 0),zt([Cr(0,!0)],yh.prototype,"rotation",void 0),zt([Cr(0,!0)],yh.prototype,"skewX",void 0),zt([Cr(0,!0)],yh.prototype,"skewY",void 0),zt([kr(0,!0)],yh.prototype,"offsetX",void 0),zt([kr(0,!0)],yh.prototype,"offsetY",void 0),zt([kr(0,!0)],yh.prototype,"scrollX",void 0),zt([kr(0,!0)],yh.prototype,"scrollY",void 0),zt([Rr()],yh.prototype,"origin",void 0),zt([Rr()],yh.prototype,"around",void 0),zt([Br(!1)],yh.prototype,"lazy",void 0),zt([Pr(1)],yh.prototype,"pixelRatio",void 0),zt([Ar()],yh.prototype,"path",void 0),zt([Lr()],yh.prototype,"windingRule",void 0),zt([Lr(!0)],yh.prototype,"closed",void 0),zt([Tr(0)],yh.prototype,"padding",void 0),zt([Tr(!1)],yh.prototype,"lockRatio",void 0),zt([Tr()],yh.prototype,"widthRange",void 0),zt([Tr()],yh.prototype,"heightRange",void 0),zt([Br(!1)],yh.prototype,"draggable",void 0),zt([Br()],yh.prototype,"dragBounds",void 0),zt([Br(!1)],yh.prototype,"editable",void 0),zt([Vr(!0)],yh.prototype,"hittable",void 0),zt([Vr("path")],yh.prototype,"hitFill",void 0),zt([Wr("path")],yh.prototype,"hitStroke",void 0),zt([Vr(!1)],yh.prototype,"hitBox",void 0),zt([Vr(!0)],yh.prototype,"hitChildren",void 0),zt([Vr(!0)],yh.prototype,"hitSelf",void 0),zt([Vr()],yh.prototype,"hitRadius",void 0),zt([Gr("")],yh.prototype,"cursor",void 0),zt([Dr()],yh.prototype,"fill",void 0),zt([Wr()],yh.prototype,"stroke",void 0),zt([Wr("inside")],yh.prototype,"strokeAlign",void 0),zt([Wr(1)],yh.prototype,"strokeWidth",void 0),zt([Wr(!1)],yh.prototype,"strokeWidthFixed",void 0),zt([Wr("none")],yh.prototype,"strokeCap",void 0),zt([Wr("miter")],yh.prototype,"strokeJoin",void 0),zt([Wr()],yh.prototype,"dashPattern",void 0),zt([Wr()],yh.prototype,"dashOffset",void 0),zt([Wr(10)],yh.prototype,"miterLimit",void 0),zt([Lr(0)],yh.prototype,"cornerRadius",void 0),zt([Lr()],yh.prototype,"cornerSmoothing",void 0),zt([La()],yh.prototype,"shadow",void 0),zt([La()],yh.prototype,"innerShadow",void 0),zt([La()],yh.prototype,"blur",void 0),zt([La()],yh.prototype,"backgroundBlur",void 0),zt([La()],yh.prototype,"grayscale",void 0),zt([Br({})],yh.prototype,"data",void 0),zt([Kr(Ko.prototype.reset)],yh.prototype,"reset",null),yh=fh=zt([sn(uh),sn(_h),tn()],yh);let mh=class extends yh{get __tag(){return"Group"}get isBranch(){return!0}constructor(t){super(t)}reset(t){this.__setBranch(),super.reset(t)}__setBranch(){this.children||(this.children=[])}set(t,e){if(t.children){const{children:s}=t;delete t.children,this.children?this.clear():this.__setBranch(),super.set(t,e),s.forEach((t=>this.add(t))),t.children=s}else super.set(t,e)}toJSON(t){const e=super.toJSON(t);return e.children=this.children.map((e=>e.toJSON(t))),e}pick(t,e){}addAt(t,e){this.add(t,e)}addAfter(t,e){this.add(t,this.children.indexOf(e)+1)}addBefore(t,e){this.add(t,this.children.indexOf(e))}add(t,e){}addMany(...t){}remove(t,e){}removeAll(t){}clear(){}};var wh;zt([Hr($a)],mh.prototype,"__",void 0),mh=zt([sn(la),rn()],mh);const xh=wt.get("Leafer");let vh=wh=class extends mh{get __tag(){return"Leafer"}get isApp(){return!1}get app(){return this.parent||this}get isLeafer(){return!0}get imageReady(){return this.viewReady&&_r.isComplete}get layoutLocked(){return!this.layouter.running}get FPS(){return this.renderer?this.renderer.FPS:60}get cursorPoint(){return this.interaction&&this.interaction.hoverData||{x:this.width/2,y:this.height/2}}get clientBounds(){return this.canvas&&this.canvas.getClientBounds()}constructor(t,e){super(e),this.config={start:!0,hittable:!0,smooth:!0,lazySpeard:100},this.leafs=0,this.__eventIds=[],this.__controllers=[],this.__readyWait=[],this.__viewReadyWait=[],this.__viewCompletedWait=[],this.__nextRenderWait=[],this.userConfig=t,t&&(t.view||t.width)&&this.init(t),wh.list.add(this)}init(t,s){if(this.canvas)return;let i;const{config:r}=this;this.__setLeafer(this),s&&(this.parentApp=s,this.__bindApp(s),i=s.running),t&&(this.parent=s,this.initType(t.type),this.parent=void 0,Et.assign(r,t));const n=this.canvas=e.canvas(r);this.__controllers.push(this.renderer=e.renderer(this,n,r),this.watcher=e.watcher(this,r),this.layouter=e.layouter(this,r)),this.isApp&&this.__setApp(),this.__checkAutoLayout(r,s),this.view=n.view,s||(this.selector=e.selector(this),this.interaction=e.interaction(this,n,this.selector,r),this.interaction&&(this.__controllers.unshift(this.interaction),this.hitCanvasManager=e.hitCanvasManager()),this.canvasManager=new Lt,i=r.start),this.hittable=r.hittable,this.fill=r.fill,this.canvasManager.add(n),this.__listenEvents(),i&&(this.__startTimer=setTimeout(this.start.bind(this))),On.run(this.__initWait),this.onInit()}onInit(){}initType(t){}set(t,e){this.waitInit((()=>{super.set(t,e)}))}start(){clearTimeout(this.__startTimer),!this.running&&this.canvas&&(this.running=!0,this.ready?this.emitLeafer(qn.RESTART):this.emitLeafer(qn.START),this.__controllers.forEach((t=>t.start())),this.isApp||this.renderer.render())}stop(){clearTimeout(this.__startTimer),this.running&&this.canvas&&(this.__controllers.forEach((t=>t.stop())),this.running=!1,this.emitLeafer(qn.STOP))}unlockLayout(){this.layouter.start(),this.updateLayout()}lockLayout(){this.updateLayout(),this.layouter.stop()}resize(t){const e=Et.copyAttrs({},t,qt);Object.keys(e).forEach((t=>this[t]=e[t]))}forceRender(t){this.renderer.addBlock(t?new ht(t):this.canvas.bounds),this.viewReady&&this.renderer.render()}requestRender(t=!1){this.renderer&&this.renderer.update(t)}updateCursor(t){const e=this.interaction;e&&(t?e.setCursor(t):e.updateCursor())}updateLazyBounds(){this.lazyBounds=this.canvas.bounds.clone().spread(this.config.lazySpeard)}__doResize(t){const{canvas:e}=this;if(!e||e.isSameSize(t))return;const s=Et.copyAttrs({},this.canvas,qt);e.resize(t),this.updateLazyBounds(),this.__onResize(new Un(t,s))}__onResize(t){this.emitEvent(t),Et.copyAttrs(this.__,t,qt),setTimeout((()=>{this.canvasManager&&this.canvasManager.clearRecycled()}),0)}__setApp(){}__bindApp(t){this.selector=t.selector,this.interaction=t.interaction,this.canvasManager=t.canvasManager,this.hitCanvasManager=t.hitCanvasManager}__setLeafer(t){this.leafer=t,this.__level=1}__checkAutoLayout(t,e){e||(t.width&&t.height||(this.autoLayout=new dt(t)),this.canvas.startAutoLayout(this.autoLayout,this.__onResize.bind(this)))}__setAttr(t,e){return this.canvas&&(qt.includes(t)?(e||xh.warn(t+" is 0"),this.__changeCanvasSize(t,e)):"fill"===t?this.__changeFill(e):"hittable"===t?this.parent||(this.canvas.hittable=e):"zIndex"===t&&(this.canvas.zIndex=e,setTimeout((()=>this.parent&&this.parent.__updateSortChildren())))),super.__setAttr(t,e)}__getAttr(t){return this.canvas&&qt.includes(t)?this.canvas[t]:super.__getAttr(t)}__changeCanvasSize(t,e){const s=Et.copyAttrs({},this.canvas,qt);s[t]=this.config[t]=e,e&&this.canvas.stopAutoLayout(),this.__doResize(s)}__changeFill(t){this.config.fill=t,this.canvas.allowBackgroundColor?this.canvas.backgroundColor=t:this.forceRender()}__onCreated(){this.created=!0}__onReady(){this.ready||(this.ready=!0,this.emitLeafer(qn.BEFORE_READY),this.emitLeafer(qn.READY),this.emitLeafer(qn.AFTER_READY),On.run(this.__readyWait))}__onViewReady(){this.viewReady||(this.viewReady=!0,this.emitLeafer(qn.VIEW_READY),On.run(this.__viewReadyWait))}__onNextRender(){if(this.viewReady){On.run(this.__nextRenderWait);const{imageReady:t}=this;t&&!this.viewCompleted&&this.__checkViewCompleted(),t||(this.viewCompleted=!1,this.requestRender())}}__checkViewCompleted(t=!0){this.nextRender((()=>{this.imageReady&&(t&&this.emitLeafer(qn.VIEW_COMPLETED),On.run(this.__viewCompletedWait),this.viewCompleted=!0)}))}__onWatchData(){this.watcher.childrenChanged&&this.interaction&&this.nextRender((()=>this.interaction.updateCursor()))}waitInit(t,e){e&&(t=t.bind(e)),this.__initWait||(this.__initWait=[]),this.canvas?t():this.__initWait.push(t)}waitReady(t,e){e&&(t=t.bind(e)),this.ready?t():this.__readyWait.push(t)}waitViewReady(t,e){e&&(t=t.bind(e)),this.viewReady?t():this.__viewReadyWait.push(t)}waitViewCompleted(t,e){e&&(t=t.bind(e)),this.__viewCompletedWait.push(t),this.viewCompleted?this.__checkViewCompleted(!1):this.running||this.start()}nextRender(t,e,s){e&&(t=t.bind(e));const i=this.__nextRenderWait;if(s){for(let e=0;e<i.length;e++)if(i[e]===t){i.splice(e,1);break}}else i.push(t);this.requestRender()}zoom(t,e,s){return Rt.need("view")}getValidMove(t,e){return{x:t,y:e}}getValidScale(t){return t}getWorldPointByClient(t,e){return this.interaction&&this.interaction.getLocal(t,e)}getPagePointByClient(t,e){return this.getPagePoint(this.getWorldPointByClient(t,e))}updateClientBounds(){this.canvas&&this.canvas.updateClientBounds()}receiveEvent(t){}__checkUpdateLayout(){this.__layout.update()}emitLeafer(t){this.emitEvent(new qn(t,this))}__listenEvents(){const t=Bt.start("FirstCreate "+this.innerName);this.once(qn.START,(()=>Bt.end(t))),this.once(Gn.START,(()=>this.updateLazyBounds())),this.once(Gn.END,(()=>this.__onReady())),this.once(Hn.START,(()=>this.__onCreated())),this.once(Hn.END,(()=>this.__onViewReady())),this.__eventIds.push(this.on_(Vn.DATA,this.__onWatchData,this),this.on_(Hn.NEXT,this.__onNextRender,this),this.on_(Gn.CHECK_UPDATE,this.__checkUpdateLayout,this))}__removeListenEvents(){this.off_(this.__eventIds),this.__eventIds.length=0}destroy(t){const e=()=>{if(!this.destroyed){wh.list.remove(this);try{this.stop(),this.emitEvent(new qn(qn.END,this)),this.__removeListenEvents(),this.__controllers.forEach((t=>!(this.parent&&t===this.interaction)&&t.destroy())),this.__controllers.length=0,this.parent||(this.selector&&this.selector.destroy(),this.hitCanvasManager&&this.hitCanvasManager.destroy(),this.canvasManager.destroy()),this.canvas.destroy(),this.config.view=this.view=this.parentApp=null,this.userConfig&&(this.userConfig.view=null),super.destroy(),setTimeout((()=>{_r.clearRecycled()}),100)}catch(t){xh.error(t)}}};t?e():setTimeout(e)}};vh.list=new da,zt([Hr(Ka)],vh.prototype,"__",void 0),zt([Tr()],vh.prototype,"pixelRatio",void 0),vh=wh=zt([rn()],vh);let bh=class extends yh{get __tag(){return"Rect"}constructor(t){super(t)}};zt([Hr(sh)],bh.prototype,"__",void 0),bh=zt([sn(gh),tn(),rn()],bh);const{copy:Bh,add:kh,includes:Rh}=rt,Sh=bh.prototype,Ch=mh.prototype,Th={};let Ph=class extends mh{get __tag(){return"Box"}get isBranchLeaf(){return!0}constructor(t){super(t),this.__layout.renderChanged||this.__layout.renderChange()}__updateStrokeSpread(){return 0}__updateRectRenderSpread(){return 0}__updateRenderSpread(){return this.__updateRectRenderSpread()||-1}__updateRectBoxBounds(){}__updateBoxBounds(t){const e=this.__;if(this.children.length)if(e.__autoSide){super.__updateBoxBounds();const{boxBounds:t}=this.__layout;e.__autoSize||(e.__autoWidth?(t.width+=t.x,t.x=0,t.height=e.height,t.y=0):(t.height+=t.y,t.y=0,t.width=e.width,t.x=0)),this.__updateNaturalSize()}else this.__updateRectBoxBounds();else this.__updateRectBoxBounds()}__updateStrokeBounds(){}__updateRenderBounds(){let t;const{renderBounds:e}=this.__layout;this.children.length?(super.__updateRenderBounds(),Bh(Th,e),this.__updateRectRenderBounds(),t=!Rh(e,Th),t&&"hide"!==this.__.overflow&&kh(e,Th)):this.__updateRectRenderBounds(),!this.isOverflow!=!t&&(this.isOverflow=t)}__updateRectRenderBounds(){}__updateRectChange(){}__updateChange(){super.__updateChange(),this.__updateRectChange()}__renderRect(t,e){}__renderGroup(t,e){}__render(t,e){this.__.__drawAfterFill?this.__renderRect(t,e):(this.__renderRect(t,e),this.children.length&&this.__renderGroup(t,e))}__drawContent(t,e){this.__renderGroup(t,e),this.__.__hasStroke&&(t.setWorld(this.__nowWorld),this.__drawRenderPath(t))}};zt([Hr(Za)],Ph.prototype,"__",void 0),zt([Br(!1)],Ph.prototype,"resizeChildren",void 0),zt([Mr("show")],Ph.prototype,"overflow",void 0),zt([Kr(Sh.__updateStrokeSpread)],Ph.prototype,"__updateStrokeSpread",null),zt([Kr(Sh.__updateRenderSpread)],Ph.prototype,"__updateRectRenderSpread",null),zt([Kr(Sh.__updateBoxBounds)],Ph.prototype,"__updateRectBoxBounds",null),zt([Kr(Sh.__updateStrokeBounds)],Ph.prototype,"__updateStrokeBounds",null),zt([Kr(Sh.__updateRenderBounds)],Ph.prototype,"__updateRectRenderBounds",null),zt([Kr(Sh.__updateChange)],Ph.prototype,"__updateRectChange",null),zt([Kr(Sh.__render)],Ph.prototype,"__renderRect",null),zt([Kr(Ch.__render)],Ph.prototype,"__renderGroup",null),Ph=zt([tn(),rn()],Ph);let Oh=class extends Ph{get __tag(){return"Frame"}get isFrame(){return!0}constructor(t){super(t)}};zt([Hr(th)],Oh.prototype,"__",void 0),zt([Dr("#FFFFFF")],Oh.prototype,"fill",void 0),zt([Mr("hide")],Oh.prototype,"overflow",void 0),Oh=zt([rn()],Oh);const{moveTo:Ah,closePath:Lh,ellipse:Eh}=Ns;let Ih=class extends yh{get __tag(){return"Ellipse"}constructor(t){super(t)}__updatePath(){const{width:e,height:s,innerRadius:i,startAngle:r,endAngle:n}=this.__,o=e/2,a=s/2,h=this.__.path=[];i?(r||n?(i<1&&Eh(h,o,a,o*i,a*i,0,r,n,!1),Eh(h,o,a,o,a,0,n,r,!0),i<1&&Lh(h)):(i<1&&(Eh(h,o,a,o*i,a*i),Ah(h,e,a)),Eh(h,o,a,o,a,0,360,0,!0)),t.ellipseToCurve&&(this.__.path=this.getPath(!0))):r||n?(Ah(h,o,a),Eh(h,o,a,o,a,0,r,n,!1),Lh(h)):Eh(h,o,a,o,a)}};zt([Hr(ih)],Ih.prototype,"__",void 0),zt([Lr(0)],Ih.prototype,"innerRadius",void 0),zt([Lr(0)],Ih.prototype,"startAngle",void 0),zt([Lr(0)],Ih.prototype,"endAngle",void 0),Ih=zt([rn()],Ih);const{moveTo:Wh,lineTo:Mh,drawPoints:Dh}=Ns,{rotate:Fh,getAngle:zh,getDistance:Nh,defaultPoint:Yh}=L,{toBounds:Xh}=Ji;let jh=class extends yh{get __tag(){return"Line"}get toPoint(){const{width:t,rotation:e}=this.__,s={x:0,y:0};return t&&(s.x=t),e&&Fh(s,e),s}set toPoint(t){this.width=Nh(Yh,t),this.rotation=zh(Yh,t),this.height&&(this.height=0)}constructor(t){super(t)}__updatePath(){const t=this.__,e=t.path=[];t.points?Dh(e,t.points,!1,t.closed):(Wh(e,0,0),Mh(e,this.width,0))}__updateRenderPath(){const t=this.__;!this.pathInputed&&t.points&&t.curve?(Dh(t.__pathForRender=[],t.points,t.curve,t.closed),t.__useArrow&&Fa.addArrows(this,!1)):super.__updateRenderPath()}__updateBoxBounds(){this.points?Xh(this.__.__pathForRender,this.__layout.boxBounds):super.__updateBoxBounds()}};zt([Hr(eh)],jh.prototype,"__",void 0),zt([Er("center")],jh.prototype,"strokeAlign",void 0),zt([Tr(0)],jh.prototype,"height",void 0),zt([Lr()],jh.prototype,"points",void 0),zt([Lr(0)],jh.prototype,"curve",void 0),zt([Lr(!1)],jh.prototype,"closed",void 0),jh=zt([rn()],jh);const{sin:Uh,cos:Vh,PI:Gh}=Math,{moveTo:Hh,lineTo:qh,closePath:Qh,drawPoints:Jh}=Ns,$h=jh.prototype;let Zh=class extends yh{get __tag(){return"Polygon"}constructor(t){super(t)}__updatePath(){const t=this.__.path=[];if(this.__.points)Jh(t,this.__.points,!1,!0);else{const{width:e,height:s,sides:i}=this.__,r=e/2,n=s/2;Hh(t,r,0);for(let e=1;e<i;e++)qh(t,r+r*Uh(2*e*Gh/i),n-n*Vh(2*e*Gh/i))}Qh(t)}__updateRenderPath(){}__updateBoxBounds(){}};zt([Hr(rh)],Zh.prototype,"__",void 0),zt([Lr(3)],Zh.prototype,"sides",void 0),zt([Lr()],Zh.prototype,"points",void 0),zt([Lr(0)],Zh.prototype,"curve",void 0),zt([Kr($h.__updateRenderPath)],Zh.prototype,"__updateRenderPath",null),zt([Kr($h.__updateBoxBounds)],Zh.prototype,"__updateBoxBounds",null),Zh=zt([tn(),rn()],Zh);const{sin:Kh,cos:tl,PI:el}=Math,{moveTo:sl,lineTo:il,closePath:rl}=Ns;let nl=class extends yh{get __tag(){return"Star"}constructor(t){super(t)}__updatePath(){const{width:t,height:e,corners:s,innerRadius:i}=this.__,r=t/2,n=e/2,o=this.__.path=[];sl(o,r,0);for(let t=1;t<2*s;t++)il(o,r+(t%2==0?r:r*i)*Kh(t*el/s),n-(t%2==0?n:n*i)*tl(t*el/s));rl(o)}};zt([Hr(nh)],nl.prototype,"__",void 0),zt([Lr(5)],nl.prototype,"corners",void 0),zt([Lr(.382)],nl.prototype,"innerRadius",void 0),nl=zt([rn()],nl);let ol=class extends bh{get __tag(){return"Image"}get ready(){return!!this.image&&this.image.ready}constructor(t){super(t),this.on(jn.LOADED,(t=>{"fill"===t.attrName&&t.attrValue.url===this.url&&(this.image=t.image)}))}destroy(){this.image=null,super.destroy()}};zt([Hr(dh)],ol.prototype,"__",void 0),zt([Tr("")],ol.prototype,"url",void 0),ol=zt([rn()],ol);const al=ol;let hl=class extends bh{get __tag(){return"Canvas"}get ready(){return!this.url}constructor(t){super(t),this.canvas=e.canvas(this.__),this.context=this.canvas.context,t&&t.url&&this.drawImage(t.url)}drawImage(t){new yr({url:t}).load((t=>{this.context.drawImage(t.view,0,0),this.url=void 0,this.paint(),this.emitEvent(new jn(jn.LOADED,{image:t}))}))}draw(t,e,s,i){const r=new z(t.worldTransform).invert(),n=new z;e&&n.translate(e.x,e.y),s&&("number"==typeof s?n.scale(s):n.scale(s.x,s.y)),i&&n.rotate(i),r.multiplyParent(n),t.__render(this.canvas,{matrix:r.withScale()}),this.paint()}paint(){this.forceRender()}__drawContent(t,e){const{width:s,height:i}=this.__,{view:r}=this.canvas;t.drawImage(r,0,0,r.width,r.height,0,0,s,i)}__updateSize(){const{canvas:t}=this;if(t){const{smooth:e}=this.__;t.smooth!==e&&(t.smooth=e),t.resize(this.__)}}destroy(){this.canvas&&(this.canvas.destroy(),this.canvas=this.context=null),super.destroy()}};zt([Hr(ch)],hl.prototype,"__",void 0),zt([Ea(100)],hl.prototype,"width",void 0),zt([Ea(100)],hl.prototype,"height",void 0),zt([Ea(1)],hl.prototype,"pixelRatio",void 0),zt([Ea(!0)],hl.prototype,"smooth",void 0),zt([Ea()],hl.prototype,"contextSettings",void 0),hl=zt([rn()],hl);const{copyAndSpread:ll,includes:dl,isSame:cl,spread:ul,setList:_l}=rt;let pl=class extends yh{get __tag(){return"Text"}get textDrawData(){return this.__layout.update(),this.__.__textDrawData}constructor(t){super(t)}__drawHitPath(t){const{__lineHeight:e,fontSize:s,__baseLine:i,__textDrawData:r}=this.__;t.beginPath(),this.__.__letterSpacing<0?this.__drawPathByData(t):r.rows.forEach((r=>t.rect(r.x,r.y-i,r.width,e<s?s:e)))}__drawPathByData(t,e){const{x:s,y:i,width:r,height:n}=this.__layout.boxBounds;t.rect(s,i,r,n)}__drawRenderPath(t){t.font=this.__.__font}__updateTextDrawData(){const t=this.__,{lineHeight:e,letterSpacing:s,fontFamily:i,fontSize:r,fontWeight:n,italic:o,textCase:h,textOverflow:l,padding:d}=t;t.__lineHeight=Da.number(e,r),t.__letterSpacing=Da.number(s,r),t.__padding=d?a.fourNumber(d):void 0,t.__baseLine=t.__lineHeight-(t.__lineHeight-.7*r)/2,t.__font=`${o?"italic ":""}${"small-caps"===h?"small-caps ":""}${"normal"!==n?n+" ":""}${r}px ${i}`,t.__clipText="show"!==l&&!t.__autoSize,t.__textDrawData=Wa.getDrawData(t.text,this.__)}__updateBoxBounds(){const t=this.__,e=this.__layout,{fontSize:s,italic:i,padding:r,__autoWidth:n,__autoHeight:o}=t;this.__updateTextDrawData();const{bounds:a}=t.__textDrawData,h=e.boxBounds;if(t.__lineHeight<s&&ul(a,s/2),n||o){if(h.x=n?a.x:0,h.y=o?a.y:0,h.width=n?a.width:t.width,h.height=o?a.height:t.height,r){const[e,s,i,r]=t.__padding;n&&(h.x-=r,h.width+=s+r),o&&(h.y-=e,h.height+=i+e)}this.__updateNaturalSize()}else super.__updateBoxBounds();i&&(h.width+=.16*s);const l=dl(h,a)?h:a;cl(l,e.contentBounds)?t.__textBoxBounds=l:(e.contentBounds=l,e.renderChanged=!0,_l(t.__textBoxBounds={},[h,a]))}__updateRenderSpread(){let t=super.__updateRenderSpread();return t||(t=this.__layout.boxBounds===this.__layout.contentBounds?0:1),t}__updateRenderBounds(){ll(this.__layout.renderBounds,this.__.__textBoxBounds,this.__layout.renderSpread)}};zt([Hr(lh)],pl.prototype,"__",void 0),zt([Tr(0)],pl.prototype,"width",void 0),zt([Tr(0)],pl.prototype,"height",void 0),zt([Br(!1)],pl.prototype,"resizeFontSize",void 0),zt([Dr("#000000")],pl.prototype,"fill",void 0),zt([Er("outside")],pl.prototype,"strokeAlign",void 0),zt([Vr("all")],pl.prototype,"hitFill",void 0),zt([Tr("")],pl.prototype,"text",void 0),zt([Tr("L")],pl.prototype,"fontFamily",void 0),zt([Tr(12)],pl.prototype,"fontSize",void 0),zt([Tr("normal")],pl.prototype,"fontWeight",void 0),zt([Tr(!1)],pl.prototype,"italic",void 0),zt([Tr("none")],pl.prototype,"textCase",void 0),zt([Tr("none")],pl.prototype,"textDecoration",void 0),zt([Tr(0)],pl.prototype,"letterSpacing",void 0),zt([Tr({type:"percent",value:1.5})],pl.prototype,"lineHeight",void 0),zt([Tr(0)],pl.prototype,"paraIndent",void 0),zt([Tr(0)],pl.prototype,"paraSpacing",void 0),zt([Tr("left")],pl.prototype,"textAlign",void 0),zt([Tr("top")],pl.prototype,"verticalAlign",void 0),zt([Tr(!0)],pl.prototype,"autoSizeAlign",void 0),zt([Tr("normal")],pl.prototype,"textWrap",void 0),zt([Tr("show")],pl.prototype,"textOverflow",void 0),pl=zt([rn()],pl);let gl=class extends yh{get __tag(){return"Path"}constructor(t){super(t)}};zt([Hr(oh)],gl.prototype,"__",void 0),zt([Er("center")],gl.prototype,"strokeAlign",void 0),gl=zt([rn()],gl);let fl=class extends mh{get __tag(){return"Pen"}constructor(t){super(t)}setStyle(t){const e=this.pathElement=new gl(t);return this.pathStyle=t,this.__path=e.path||(e.path=[]),this.add(e),this}beginPath(){return this}moveTo(t,e){return this}lineTo(t,e){return this}bezierCurveTo(t,e,s,i,r,n){return this}quadraticCurveTo(t,e,s,i){return this}closePath(){return this}rect(t,e,s,i){return this}roundRect(t,e,s,i,r){return this}ellipse(t,e,s,i,r,n,o,a){return this}arc(t,e,s,i,r,n){return this}arcTo(t,e,s,i,r){return this}drawEllipse(t,e,s,i,r,n,o,a){return this}drawArc(t,e,s,i,r,n){return this}drawPoints(t,e,s){return this}clearPath(){return this}paint(){this.pathElement.__layout.boxChanged||this.pathElement.forceUpdate("path")}};function yl(t,e){let s;const{rows:i,decorationY:r,decorationHeight:n}=t.__.__textDrawData;for(let t=0,o=i.length;t<o;t++)s=i[t],s.text?e.fillText(s.text,s.x,s.y):s.data&&s.data.forEach((t=>{e.fillText(t.char,t.x,s.y)})),r&&e.fillRect(s.x,s.y+r,s.width,n)}function ml(t,e,s){const{strokeAlign:i}=e.__,r="string"!=typeof t;switch(i){case"center":s.setStroke(r?void 0:t,e.__.strokeWidth,e.__),r?vl(t,!0,e,s):xl(e,s);break;case"inside":wl("inside",t,r,e,s);break;case"outside":wl("outside",t,r,e,s)}}function wl(t,e,s,i,r){const{__strokeWidth:n,__font:o}=i.__,a=r.getSameCanvas(!0,!0);a.setStroke(s?void 0:e,2*n,i.__),a.font=o,s?vl(e,!0,i,a):xl(i,a),a.blendMode="outside"===t?"destination-out":"destination-in",yl(i,a),a.blendMode="normal",i.__worldFlipped?r.copyWorldByReset(a,i.__nowWorld):r.copyWorldToInner(a,i.__nowWorld,i.__layout.renderBounds),a.recycle(i.__nowWorld)}function xl(t,e){let s;const{rows:i,decorationY:r,decorationHeight:n}=t.__.__textDrawData;for(let t=0,o=i.length;t<o;t++)s=i[t],s.text?e.strokeText(s.text,s.x,s.y):s.data&&s.data.forEach((t=>{e.strokeText(t.char,t.x,s.y)})),r&&e.strokeRect(s.x,s.y+r,s.width,n)}function vl(t,e,s,i){let r;for(let n=0,o=t.length;n<o;n++)r=t[n],r.image&&Na.checkImage(s,i,r,!1)||r.style&&(i.strokeStyle=r.style,r.blendMode?(i.saveBlendMode(r.blendMode),e?xl(s,i):i.stroke(),i.restoreBlendMode()):e?xl(s,i):i.stroke())}function bl(t,e){t.__.dashPattern&&(e.beginPath(),t.__drawPathByData(e,t.__.__pathForArrow),e.dashPattern=null,e.stroke())}zt([Hr(ah)],fl.prototype,"__",void 0),zt([(t,e)=>{mr(t,e,{get(){return this.__path}})}],fl.prototype,"path",void 0),fl=zt([sn(ii,["set","path","paint"]),rn()],fl);const{getSpread:Bl,getOuterOf:kl,getByMove:Rl,getIntersectData:Sl}=rt;let Cl;function Tl(t,e,s){if("object"!=typeof e||!1===e.visible||0===e.opacity)return;const{boxBounds:i}=s.__layout;switch(e.type){case"solid":let{type:r,blendMode:n,color:o,opacity:a}=e;return{type:r,blendMode:n,style:Ma.string(o,a)};case"image":return Na.image(s,t,e,i,!Cl||!Cl[e.url]);case"linear":return Ya.linearGradient(e,i);case"radial":return Ya.radialGradient(e,i);case"angular":return Ya.conicGradient(e,i);default:return void 0!==e.r?{type:"solid",style:Ma.string(e)}:void 0}}const Pl={compute:function(t,e){const s=e.__,i=[];let r,n=s.__input[t];n instanceof Array||(n=[n]),Cl=Na.recycleImage(t,s);for(let s,r=0,o=n.length;r<o;r++)s=Tl(t,n[r],e),s&&i.push(s);s["_"+t]=i.length?i:void 0,i.length&&i[0].image&&(r=i[0].image.hasOpacityPixel),"fill"===t?s.__pixelFill=r:s.__pixelStroke=r},fill:function(t,e,s){s.fillStyle=t,e.__.__font?yl(e,s):e.__.windingRule?s.fill(e.__.windingRule):s.fill()},fills:function(t,e,s){let i;const{windingRule:r,__font:n}=e.__;for(let o=0,a=t.length;o<a;o++)i=t[o],i.image&&Na.checkImage(e,s,i,!n)||i.style&&(s.fillStyle=i.style,i.transform?(s.save(),s.transform(i.transform),i.blendMode&&(s.blendMode=i.blendMode),n?yl(e,s):r?s.fill(r):s.fill(),s.restore()):i.blendMode?(s.saveBlendMode(i.blendMode),n?yl(e,s):r?s.fill(r):s.fill(),s.restoreBlendMode()):n?yl(e,s):r?s.fill(r):s.fill())},fillText:yl,stroke:function(t,e,s){const i=e.__,{__strokeWidth:r,strokeAlign:n,__font:o}=i;if(r)if(o)ml(t,e,s);else switch(n){case"center":s.setStroke(t,r,i),s.stroke(),i.__useArrow&&bl(e,s);break;case"inside":s.save(),s.setStroke(t,2*r,i),i.windingRule?s.clip(i.windingRule):s.clip(),s.stroke(),s.restore();break;case"outside":const n=s.getSameCanvas(!0,!0);n.setStroke(t,2*r,i),e.__drawRenderPath(n),n.stroke(),i.windingRule?n.clip(i.windingRule):n.clip(),n.clearWorld(e.__layout.renderBounds),e.__worldFlipped?s.copyWorldByReset(n,e.__nowWorld):s.copyWorldToInner(n,e.__nowWorld,e.__layout.renderBounds),n.recycle(e.__nowWorld)}},strokes:function(t,e,s){const i=e.__,{__strokeWidth:r,strokeAlign:n,__font:o}=i;if(r)if(o)ml(t,e,s);else switch(n){case"center":s.setStroke(void 0,r,i),vl(t,!1,e,s),i.__useArrow&&bl(e,s);break;case"inside":s.save(),s.setStroke(void 0,2*r,i),i.windingRule?s.clip(i.windingRule):s.clip(),vl(t,!1,e,s),s.restore();break;case"outside":const{renderBounds:n}=e.__layout,o=s.getSameCanvas(!0,!0);e.__drawRenderPath(o),o.setStroke(void 0,2*r,i),vl(t,!1,e,o),i.windingRule?o.clip(i.windingRule):o.clip(),o.clearWorld(n),e.__worldFlipped?s.copyWorldByReset(o,e.__nowWorld):s.copyWorldToInner(o,e.__nowWorld,n),o.recycle(e.__nowWorld)}},strokeText:ml,drawTextStroke:xl,shape:function(t,e,s){const i=e.getSameCanvas(),r=t.__nowWorld;let n,o,a,h,{scaleX:l,scaleY:d}=r;if(l<0&&(l=-l),d<0&&(d=-d),e.bounds.includes(r))h=i,n=a=r;else{const{renderShapeSpread:i}=t.__layout,c=Sl(i?Bl(e.bounds,l===d?i*l:[i*d,i*l]):e.bounds,r);o=e.bounds.getFitMatrix(c);let{a:u,d:_}=o;if(o.a<1&&(h=e.getSameCanvas(),t.__renderShape(h,s),l*=u,d*=_),a=kl(r,o),n=Rl(a,-o.e,-o.f),s.matrix){const{matrix:t}=s;o.multiply(t),u*=t.scaleX,_*=t.scaleY}s=Object.assign(Object.assign({},s),{matrix:o.withScale(u,_)})}return t.__renderShape(i,s),{canvas:i,matrix:o,bounds:n,worldCanvas:h,shapeBounds:a,scaleX:l,scaleY:d}}};let Ol={};const{get:Al,rotateOfOuter:Ll,translate:El,scaleOfOuter:Il,scale:Wl,rotate:Ml}=v;function Dl(t,e,s,i,r,n,o){const a=Al();El(a,e.x+s,e.y+i),Wl(a,r,n),o&&Ll(a,{x:e.x+e.width/2,y:e.y+e.height/2},o),t.transform=a}function Fl(t,e,s,i,r,n,o){const a=Al();El(a,e.x+s,e.y+i),r&&Wl(a,r,n),o&&Ml(a,o),t.transform=a}function zl(t,e,s,i,r,n,o,a,h,l){const d=Al();if(h)if("center"===l)Ll(d,{x:s/2,y:i/2},h);else switch(Ml(d,h),h){case 90:El(d,i,0);break;case 180:El(d,s,i);break;case 270:El(d,0,s)}Ol.x=e.x+r,Ol.y=e.y+n,El(d,Ol.x,Ol.y),o&&Il(d,Ol,o,a),t.transform=d}const{get:Nl,translate:Yl}=v,Xl=new ht,jl={},Ul={};function Vl(t,e,s,i){const{blendMode:r,sync:n}=s;r&&(t.blendMode=r),n&&(t.sync=n),t.data=Gl(s,i,e)}function Gl(t,e,s){let{width:i,height:r}=s;t.padding&&(e=Xl.set(e).shrink(t.padding)),"strench"===t.mode&&(t.mode="stretch");const{opacity:n,mode:o,align:h,offset:l,scale:d,size:c,rotation:u,repeat:_}=t,p=e.width===i&&e.height===r,g={mode:o},f="center"!==h&&(u||0)%180==90,y=f?r:i,m=f?i:r;let w,x,v=0,b=0;if(o&&"cover"!==o&&"fit"!==o)(d||c)&&(a.getScaleData(d,c,s,Ul),w=Ul.scaleX,x=Ul.scaleY);else if(!p||u){const t=e.width/y,s=e.height/m;w=x="fit"===o?Math.min(t,s):Math.max(t,s),v+=(e.width-i*w)/2,b+=(e.height-r*x)/2}if(h){const t={x:v,y:b,width:y,height:m};w&&(t.width*=w,t.height*=x),yt.toPoint(h,t,e,jl,!0),v+=jl.x,b+=jl.y}switch(l&&(v+=l.x,b+=l.y),o){case"stretch":p||(i=e.width,r=e.height);break;case"normal":case"clip":(v||b||w||u)&&Fl(g,e,v,b,w,x,u);break;case"repeat":(!p||w||u)&&zl(g,e,i,r,v,b,w,x,u,h),_||(g.repeat="repeat");break;default:w&&Dl(g,e,v,b,w,x,u)}return g.transform||(e.x||e.y)&&(g.transform=Nl(),Yl(g.transform,e.x,e.y)),w&&"stretch"!==o&&(g.scaleX=w,g.scaleY=x),g.width=i,g.height=r,n&&(g.opacity=n),_&&(g.repeat="string"==typeof _?"x"===_?"repeat-x":"repeat-y":"repeat"),g}let Hl,ql=new ht;const{isSame:Ql}=rt;function Jl(t,e,s,i,r,n){if("fill"===e&&!t.__.__naturalWidth){const e=t.__;if(e.__naturalWidth=i.width/e.pixelRatio,e.__naturalHeight=i.height/e.pixelRatio,e.__autoSide)return t.forceUpdate("width"),t.__proxyData&&(t.setProxyAttr("width",e.width),t.setProxyAttr("height",e.height)),!1}return r.data||Vl(r,i,s,n),!0}function $l(t,e){td(t,jn.LOAD,e)}function Zl(t,e){td(t,jn.LOADED,e)}function Kl(t,e,s){e.error=s,t.forceUpdate("surface"),td(t,jn.ERROR,e)}function td(t,e,s){t.hasEvent(e)&&t.emitEvent(new jn(e,s))}function ed(t,e){const{leafer:s}=t;s&&s.viewReady&&(s.renderer.ignore=e)}const{get:sd,scale:id,copy:rd}=v,{ceil:nd,abs:od}=Math;function ad(e,s,i){let{scaleX:r,scaleY:n}=_r.patternLocked?e.__world:e.__nowWorld;const o=r+"-"+n+"-"+i;if(s.patternId===o||e.destroyed)return!1;{r=od(r),n=od(n);const{image:e,data:a}=s;let h,l,{width:d,height:c,scaleX:u,scaleY:_,opacity:p,transform:g,repeat:f}=a;u&&(l=sd(),rd(l,g),id(l,1/u,1/_),r*=u,n*=_),r*=i,n*=i,d*=r,c*=n;const y=d*c;if(!f&&y>t.image.maxCacheSize)return!1;let m=t.image.maxPatternSize;if(!e.isSVG){const t=e.width*e.height;m>t&&(m=t)}y>m&&(h=Math.sqrt(y/m)),h&&(r/=h,n/=h,d/=h,c/=h),u&&(r/=u,n/=_),(g||1!==r||1!==n)&&(l||(l=sd(),g&&rd(l,g)),id(l,1/r,1/n));const w=e.getCanvas(nd(d)||1,nd(c)||1,p),x=e.getPattern(w,f||t.origin.noRepeat||"no-repeat",l,s);return s.style=x,s.patternId=o,!0}}const{abs:hd}=Math;const ld={image:function(t,e,s,i,r){let n,o;const a=_r.get(s);return Hl&&s===Hl.paint&&Ql(i,Hl.boxBounds)?n=Hl.leafPaint:(n={type:s.type,image:a},Hl=a.use>1?{leafPaint:n,paint:s,boxBounds:ql.set(i)}:null),(r||a.loading)&&(o={image:a,attrName:e,attrValue:s}),a.ready?(Jl(t,e,s,a,n,i),r&&($l(t,o),Zl(t,o))):a.error?r&&Kl(t,o,a.error):(r&&(ed(t,!0),$l(t,o)),n.loadId=a.load((()=>{ed(t,!1),t.destroyed||(Jl(t,e,s,a,n,i)&&(a.hasOpacityPixel&&(t.__layout.hitCanvasChanged=!0),t.forceUpdate("surface")),Zl(t,o)),n.loadId=null}),(e=>{ed(t,!1),Kl(t,o,e),n.loadId=null}))),n},checkImage:function(e,s,i,r){const{scaleX:n,scaleY:o}=_r.patternLocked?e.__world:e.__nowWorld,{pixelRatio:a}=s;if(!i.data||i.patternId===n+"-"+o+"-"+a&&!ja.running)return!1;{const{data:h}=i;if(r)if(h.repeat)r=!1;else{let{width:e,height:s}=h;e*=hd(n)*a,s*=hd(o)*a,h.scaleX&&(e*=h.scaleX,s*=h.scaleY),r=e*s>t.image.maxCacheSize||ja.running}return r?(s.save(),e.windingRule?s.clip(e.windingRule):s.clip(),i.blendMode&&(s.blendMode=i.blendMode),h.opacity&&(s.opacity*=h.opacity),h.transform&&s.transform(h.transform),s.drawImage(i.image.view,0,0,h.width,h.height),s.restore(),!0):(!i.style||i.sync||ja.running?ad(e,i,a):i.patternTask||(i.patternTask=_r.patternTasker.add((()=>Nt(this,void 0,void 0,(function*(){i.patternTask=null,s.bounds.hit(e.__nowWorld)&&ad(e,i,a),e.forceUpdate("surface")}))),300)),!1)}},createPattern:ad,recycleImage:function(t,e){const s=e["_"+t];if(s instanceof Array){let i,r,n,o;for(let a=0,h=s.length;a<h;a++)i=s[a].image,o=i&&i.url,o&&(r||(r={}),r[o]=!0,_r.recycle(i),i.loading&&(n||(n=e.__input&&e.__input[t]||[],n instanceof Array||(n=[n])),i.unload(s[a].loadId,!n.some((t=>t.url===o)))));return r}return null},createData:Vl,getPatternData:Gl,fillOrFitMode:Dl,clipMode:Fl,repeatMode:zl},{toPoint:dd}=pt,cd={},ud={};function _d(t,e,s){if(e){let i;for(let r=0,n=e.length;r<n;r++)i=e[r],"string"==typeof i?t.addColorStop(r/(n-1),Ma.string(i,s)):t.addColorStop(i.offset,Ma.string(i.color,s))}}const{getAngle:pd,getDistance:gd}=L,{get:fd,rotateOfOuter:yd,scaleOfOuter:md}=v,{toPoint:wd}=pt,xd={},vd={};function bd(t,e,s,i,r){let n;const{width:o,height:a}=t;if(o!==a||i){const t=pd(e,s);n=fd(),r?(md(n,e,o/a*(i||1),1),yd(n,e,t+90)):(md(n,e,1,o/a*(i||1)),yd(n,e,t))}return n}const{getDistance:Bd}=L,{toPoint:kd}=pt,Rd={},Sd={};const Cd={linearGradient:function(e,s){let{from:i,to:r,type:n,blendMode:o,opacity:a}=e;dd(i||"top",s,cd),dd(r||"bottom",s,ud);const h=t.canvas.createLinearGradient(cd.x,cd.y,ud.x,ud.y);_d(h,e.stops,a);const l={type:n,style:h};return o&&(l.blendMode=o),l},radialGradient:function(e,s){let{from:i,to:r,type:n,opacity:o,blendMode:a,stretch:h}=e;wd(i||"center",s,xd),wd(r||"bottom",s,vd);const l=t.canvas.createRadialGradient(xd.x,xd.y,0,xd.x,xd.y,gd(xd,vd));_d(l,e.stops,o);const d={type:n,style:l},c=bd(s,xd,vd,h,!0);return c&&(d.transform=c),a&&(d.blendMode=a),d},conicGradient:function(e,s){let{from:i,to:r,type:n,opacity:o,blendMode:a,stretch:h}=e;kd(i||"center",s,Rd),kd(r||"bottom",s,Sd);const l=t.conicGradientSupport?t.canvas.createConicGradient(0,Rd.x,Rd.y):t.canvas.createRadialGradient(Rd.x,Rd.y,0,Rd.x,Rd.y,Bd(Rd,Sd));_d(l,e.stops,o);const d={type:n,style:l},c=bd(s,Rd,Sd,h||1,t.conicGradientRotate90);return c&&(d.transform=c),a&&(d.blendMode=a),d},getTransform:bd},{copy:Td,toOffsetOutBounds:Pd}=rt,Od={},Ad={};function Ld(e,s,i,r){const{bounds:n,shapeBounds:o}=r;if(t.fullImageShadow){if(Td(Od,e.bounds),Od.x+=s.x-o.x,Od.y+=s.y-o.y,i){const{matrix:t}=r;Od.x-=(n.x+(t?t.e:0)+n.width/2)*(i-1),Od.y-=(n.y+(t?t.f:0)+n.height/2)*(i-1),Od.width*=i,Od.height*=i}e.copyWorld(r.canvas,e.bounds,Od)}else i&&(Td(Od,s),Od.x-=s.width/2*(i-1),Od.y-=s.height/2*(i-1),Od.width*=i,Od.height*=i),e.copyWorld(r.canvas,o,i?Od:s)}const{toOffsetOutBounds:Ed}=rt,Id={};const Wd={shadow:function(t,e,s){let i,r;const{__nowWorld:n,__layout:o}=t,{shadow:a}=t.__,{worldCanvas:h,bounds:l,shapeBounds:d,scaleX:c,scaleY:u}=s,_=e.getSameCanvas(),p=a.length-1;Pd(l,Ad),a.forEach(((a,g)=>{_.setWorldShadow(Ad.offsetX+a.x*c,Ad.offsetY+a.y*u,a.blur*c,a.color),r=a.spread?1+2*a.spread/(o.boxBounds.width+2*(o.strokeBoxSpread||0)):0,Ld(_,Ad,r,s),i=l,a.box&&(_.restore(),_.save(),h&&(_.copyWorld(_,l,n,"copy"),i=n),h?_.copyWorld(h,n,n,"destination-out"):_.copyWorld(s.canvas,d,l,"destination-out")),t.__worldFlipped?e.copyWorldByReset(_,i,n,a.blendMode):e.copyWorldToInner(_,i,o.renderBounds,a.blendMode),p&&g<p&&_.clearWorld(i,!0)})),_.recycle(i)},innerShadow:function(t,e,s){let i,r;const{__nowWorld:n,__layout:o}=t,{innerShadow:a}=t.__,{worldCanvas:h,bounds:l,shapeBounds:d,scaleX:c,scaleY:u}=s,_=e.getSameCanvas(),p=a.length-1;Ed(l,Id),a.forEach(((a,g)=>{_.save(),_.setWorldShadow(Id.offsetX+a.x*c,Id.offsetY+a.y*u,a.blur*c),r=a.spread?1-2*a.spread/(o.boxBounds.width+2*(o.strokeBoxSpread||0)):0,Ld(_,Id,r,s),_.restore(),h?(_.copyWorld(_,l,n,"copy"),_.copyWorld(h,n,n,"source-out"),i=n):(_.copyWorld(s.canvas,d,l,"source-out"),i=l),_.fillWorld(i,a.color,"source-in"),t.__worldFlipped?e.copyWorldByReset(_,i,n,a.blendMode):e.copyWorldToInner(_,i,o.renderBounds,a.blendMode),p&&g<p&&_.clearWorld(i,!0)})),_.recycle(i)},blur:function(t,e,s){const{blur:i}=t.__;s.setWorldBlur(i*t.__nowWorld.a),s.copyWorldToInner(e,t.__nowWorld,t.__layout.renderBounds),s.filter="none"},backgroundBlur:function(t,e,s){}},{excludeRenderBounds:Md}=kn;function Dd(t,e,s,i,r,n){switch(e){case"grayscale":r.useGrayscaleAlpha(t.__nowWorld);case"alpha":!function(t,e,s,i){const r=t.__nowWorld;s.resetTransform(),s.opacity=1,s.useMask(i,r),i.recycle(r),zd(t,e,s,1)}(t,s,i,r);break;case"opacity-path":zd(t,s,i,n);break;case"path":s.restore()}}function Fd(t){return t.getSameCanvas(!1,!0)}function zd(t,e,s,i){const r=t.__nowWorld;e.resetTransform(),e.opacity=i,e.copyWorld(s,r),s.recycle(r)}mh.prototype.__renderMask=function(t,e){let s,i,r,n,o,a;const{children:h}=this;for(let l=0,d=h.length;l<d;l++)s=h[l],a=s.__.mask,a&&(o&&(Dd(this,o,t,r,i,n),i=r=null),"path"===a||"clipping-path"===a?(s.opacity<1?(o="opacity-path",n=s.opacity,r||(r=Fd(t))):(o="path",t.save()),s.__clip(r||t,e)):(o="grayscale"===a?"grayscale":"alpha",i||(i=Fd(t)),r||(r=Fd(t)),s.__render(i,e)),"clipping"!==a&&"clipping-path"!==a)||Md(s,e)||s.__render(r||t,e);Dd(this,o,t,r,i,n)};const Nd=">)]}%!?,.:;'\"》)」〉』〗】〕}┐>’”!?,、。:;‰",Yd=Nd+"_#~&*+\\=|≮≯≈≠=…",Xd=new RegExp([[19968,40959],[13312,19903],[131072,173791],[173824,177983],[177984,178207],[178208,183983],[183984,191471],[196608,201551],[201552,205743],[11904,12031],[12032,12255],[12272,12287],[12288,12351],[12736,12783],[12800,13055],[13056,13311],[63744,64255],[65072,65103],[127488,127743],[194560,195103]].map((([t,e])=>`[\\u${t.toString(16)}-\\u${e.toString(16)}]`)).join("|"));function jd(t){const e={};return t.split("").forEach((t=>e[t]=!0)),e}const Ud=jd("ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz"),Vd=jd("{[(<'\"《(「〈『〖【〔{┌<‘“=¥¥$€££¢¢"),Gd=jd(Nd),Hd=jd(Yd),qd=jd("- —/~|┆·");var Qd;!function(t){t[t.Letter=0]="Letter",t[t.Single=1]="Single",t[t.Before=2]="Before",t[t.After=3]="After",t[t.Symbol=4]="Symbol",t[t.Break=5]="Break"}(Qd||(Qd={}));const{Letter:Jd,Single:$d,Before:Zd,After:Kd,Symbol:tc,Break:ec}=Qd;function sc(t){return Ud[t]?Jd:qd[t]?ec:Vd[t]?Zd:Gd[t]?Kd:Hd[t]?tc:Xd.test(t)?$d:Jd}const ic={trimRight(t){const{words:e}=t;let s,i=0,r=e.length;for(let n=r-1;n>-1&&(s=e[n].data[0]," "===s.char);n--)i++,t.width-=s.width;i&&e.splice(r-i,i)}};function rc(t,e,s){switch(e){case"title":return s?t.toUpperCase():t;case"upper":return t.toUpperCase();case"lower":return t.toLowerCase();default:return t}}const{trimRight:nc}=ic,{Letter:oc,Single:ac,Before:hc,After:lc,Symbol:dc,Break:cc}=Qd;let uc,_c,pc,gc,fc,yc,mc,wc,xc,vc,bc,Bc,kc,Rc,Sc,Cc,Tc,Pc=[];function Oc(t,e){xc&&!wc&&(wc=xc),uc.data.push({char:t,width:e}),pc+=e}function Ac(){gc+=pc,uc.width=pc,_c.words.push(uc),uc={data:[]},pc=0}function Lc(){Rc&&(Sc.paraNumber++,_c.paraStart=!0,Rc=!1),xc&&(_c.startCharSize=wc,_c.endCharSize=xc,wc=0),_c.width=gc,Cc.width?nc(_c):Tc&&Ec(),Pc.push(_c),_c={words:[]},gc=0}function Ec(){gc>(Sc.maxWidth||0)&&(Sc.maxWidth=gc)}const Ic=0,Wc=1,Mc=2;const{top:Dc,right:Fc,bottom:zc,left:Nc}=ct;function Yc(t,e,s){const{bounds:i,rows:r}=t;i[e]+=s;for(let t=0;t<r.length;t++)r[t][e]+=s}const Xc={getDrawData:function(e,s){"string"!=typeof e&&(e=String(e));let i=0,r=0,n=s.__getInput("width")||0,o=s.__getInput("height")||0;const{textDecoration:a,__font:h,__padding:l}=s;l&&(n?(i=l[Nc],n-=l[Fc]+l[Nc]):s.autoSizeAlign||(i=l[Nc]),o?(r=l[Dc],o-=l[Dc]+l[zc]):s.autoSizeAlign||(r=l[Dc]));const d={bounds:{x:i,y:r,width:n,height:o},rows:[],paraNumber:0,font:t.canvas.font=h};return function(e,s,i){Sc=e,Pc=e.rows,Cc=e.bounds,Tc=!Cc.width&&!i.autoSizeAlign;const{__letterSpacing:r,paraIndent:n,textCase:o}=i,{canvas:a}=t,{width:h,height:l}=Cc;if(h||l||r||"none"!==o){const t="none"!==i.textWrap,e="break"===i.textWrap;Rc=!0,bc=null,wc=mc=xc=pc=gc=0,uc={data:[]},_c={words:[]};for(let i=0,l=s.length;i<l;i++)yc=s[i],"\n"===yc?(pc&&Ac(),_c.paraEnd=!0,Lc(),Rc=!0):(vc=sc(yc),vc===oc&&"none"!==o&&(yc=rc(yc,o,!pc)),mc=a.measureText(yc).width,r&&(r<0&&(xc=mc),mc+=r),Bc=vc===ac&&(bc===ac||bc===oc)||bc===ac&&vc!==lc,kc=!(vc!==hc&&vc!==ac||bc!==dc&&bc!==lc),fc=Rc&&n?h-n:h,t&&h&&gc+pc+mc>fc&&(e?(pc&&Ac(),gc&&Lc()):(kc||(kc=vc===oc&&bc==lc),Bc||kc||vc===cc||vc===hc||vc===ac||pc+mc>fc?(pc&&Ac(),gc&&Lc()):gc&&Lc()))," "===yc&&!0!==Rc&&gc+pc===0||(vc===cc?(" "===yc&&pc&&Ac(),Oc(yc,mc),Ac()):Bc||kc?(pc&&Ac(),Oc(yc,mc)):Oc(yc,mc)),bc=vc);pc&&Ac(),gc&&Lc(),Pc.length>0&&(Pc[Pc.length-1].paraEnd=!0)}else s.split("\n").forEach((t=>{Sc.paraNumber++,gc=a.measureText(t).width,Pc.push({x:n||0,text:t,width:gc,paraStart:!0}),Tc&&Ec()}))}(d,e,s),l&&function(t,e,s,i,r){if(!i&&s.autoSizeAlign)switch(s.textAlign){case"left":Yc(e,"x",t[Nc]);break;case"right":Yc(e,"x",-t[Fc])}if(!r&&s.autoSizeAlign)switch(s.verticalAlign){case"top":Yc(e,"y",t[Dc]);break;case"bottom":Yc(e,"y",-t[zc])}}(l,d,s,n,o),function(t,e){const{rows:s,bounds:i}=t,{__lineHeight:r,__baseLine:n,__letterSpacing:o,__clipText:a,textAlign:h,verticalAlign:l,paraSpacing:d,autoSizeAlign:c}=e;let{x:u,y:_,width:p,height:g}=i,f=r*s.length+(d?d*(t.paraNumber-1):0),y=n;if(a&&f>g)f=Math.max(g,r),t.overflow=s.length;else if(g||c)switch(l){case"middle":_+=(g-f)/2;break;case"bottom":_+=g-f}y+=_;let m,w,x,v=p||c?p:t.maxWidth;for(let n=0,l=s.length;n<l;n++){if(m=s[n],m.x=u,m.width<p||m.width>p&&!a)switch(h){case"center":m.x+=(v-m.width)/2;break;case"right":m.x+=v-m.width}m.paraStart&&d&&n>0&&(y+=d),m.y=y,y+=r,t.overflow>n&&y>f&&(m.isOverflow=!0,t.overflow=n+1),w=m.x,x=m.width,o<0&&(m.width<0?(x=-m.width+e.fontSize+o,w-=x,x+=e.fontSize):x-=o),w<i.x&&(i.x=w),x>i.width&&(i.width=x),a&&p&&p<x&&(m.isOverflow=!0,t.overflow||(t.overflow=s.length))}i.y=_,i.height=f}(d,s),function(t,e,s,i){const{rows:r}=t,{textAlign:n,paraIndent:o,letterSpacing:a}=e;let h,l,d,c,u;r.forEach((t=>{t.words&&(d=o&&t.paraStart?o:0,l=s&&"justify"===n&&t.words.length>1?(s-t.width-d)/(t.words.length-1):0,c=a||t.isOverflow?Ic:l>.01?Wc:Mc,t.isOverflow&&!a&&(t.textMode=!0),c===Mc?(t.x+=d,function(t){t.text="",t.words.forEach((e=>{e.data.forEach((e=>{t.text+=e.char}))}))}(t)):(t.x+=d,h=t.x,t.data=[],t.words.forEach((e=>{c===Wc?(u={char:"",x:h},h=function(t,e,s){return t.forEach((t=>{s.char+=t.char,e+=t.width})),e}(e.data,h,u),(t.isOverflow||" "!==u.char)&&t.data.push(u)):h=function(t,e,s,i){return t.forEach((t=>{(i||" "!==t.char)&&(t.x=e,s.push(t)),e+=t.width})),e}(e.data,h,t.data,t.isOverflow),!t.paraEnd&&l&&(h+=l,t.width+=l)}))),t.words=null)}))}(d,s,n),d.overflow&&function(e,s,i,r){if(!r)return;const{rows:n,overflow:o}=e;let{textOverflow:a}=s;if(n.splice(o),a&&"show"!==a){let e,h;"hide"===a?a="":"ellipsis"===a&&(a="...");const l=a?t.canvas.measureText(a).width:0,d=i+r-l;("none"===s.textWrap?n:[n[o-1]]).forEach((t=>{if(t.isOverflow&&t.data){let s=t.data.length-1;for(let i=s;i>-1&&(e=t.data[i],h=e.x+e.width,!(i===s&&h<d));i--){if(h<d&&" "!==e.char){t.data.splice(i+1),t.width-=e.width;break}t.width-=e.width}t.width+=l,t.data.push({char:a,x:h}),t.textMode&&function(t){t.text="",t.data.forEach((e=>{t.text+=e.char})),t.data=null}(t)}}))}}(d,s,i,n),"none"!==a&&function(t,e){const{fontSize:s}=e;switch(t.decorationHeight=s/11,e.textDecoration){case"under":t.decorationY=.15*s;break;case"delete":t.decorationY=.35*-s}}(d,s),d}};const jc={string:function(t,e){const s="number"==typeof e&&1!==e;if("string"==typeof t){if(!s||!Ma.object)return t;t=Ma.object(t)}let i=void 0===t.a?1:t.a;s&&(i*=e);const r=t.r+","+t.g+","+t.b;return 1===i?"rgb("+r+")":"rgba("+r+","+i+")"}},{setPoint:Uc,addPoint:Vc,toBounds:Gc}=Y;const Hc={export(s,i,r){this.running=!0;const n=hr.fileType(i),o=i.includes(".");return r=hr.getExportOptions(r),function(t){qc||(qc=new ur);return new Promise((e=>{qc.add((()=>Nt(this,void 0,void 0,(function*(){return yield t(e)}))),{parallel:!1})}))}((h=>new Promise((l=>{const d=t=>{h(t),l(),this.running=!1},{toURL:c}=t,{download:u}=t.origin;if("json"===n)return o&&u(c(JSON.stringify(s.toJSON(r.json)),"text"),i),d({data:!!o||s.toJSON(r.json)});if("svg"===n)return o&&u(c(s.toSVG(),"svg"),i),d({data:!!o||s.toSVG()});const{leafer:_}=s;_?(Qc(s),_.waitViewCompleted((()=>Nt(this,void 0,void 0,(function*(){let t,n,o=1,h=1;const{worldTransform:l,isLeafer:c,isFrame:u}=s,{slice:p,trim:g,onCanvas:f}=r,y=void 0===r.smooth?_.config.smooth:r.smooth,m=r.contextSettings||_.config.contextSettings,w=r.screenshot||s.isApp,x=c&&w&&void 0===r.fill?s.fill:r.fill,v=hr.isOpaqueImage(i)||x,b=new z;if(w)t=!0===w?c?_.canvas.bounds:s.worldRenderBounds:w;else{let e=r.relative||(c?"inner":"local");switch(o=l.scaleX,h=l.scaleY,e){case"inner":b.set(l);break;case"local":b.set(l).divide(s.localTransform),o/=s.scaleX,h/=s.scaleY;break;case"world":o=1,h=1;break;case"page":e=s.leafer;default:b.set(l).divide(s.getTransform(e));const t=e.worldTransform;o/=o/t.scaleX,h/=h/t.scaleY}t=s.getBounds("render",e)}const B={scaleX:1,scaleY:1};a.getScaleData(r.scale,r.size,t,B);let k=r.pixelRatio||1;s.isApp&&(B.scaleX*=k,B.scaleY*=k,k=s.app.pixelRatio);const{x:R,y:S,width:C,height:T}=new ht(t).scale(B.scaleX,B.scaleY),P={matrix:b.scale(1/B.scaleX,1/B.scaleY).invert().translate(-R,-S).withScale(1/o*B.scaleX,1/h*B.scaleY)};let O,A=e.canvas({width:Math.round(C),height:Math.round(T),pixelRatio:k,smooth:y,contextSettings:m});if(p&&(O=s,O.__worldOpacity=0,s=_,P.bounds=A.bounds),A.save(),u&&void 0!==x){const t=s.get("fill");s.fill="",s.__render(A,P),s.fill=t}else s.__render(A,P);if(A.restore(),O&&O.__updateWorldOpacity(),g){n=function(t){const{width:e,height:s}=t.view,{data:i}=t.context.getImageData(0,0,e,s);let r,n,o,a=0;for(let t=0;t<i.length;t+=4)0!==i[t+3]&&(r=a%e,n=(a-r)/e,o?Vc(o,r,n):Uc(o={},r,n)),a++;const h=new ht;return Gc(o,h),h.scale(1/t.pixelRatio).ceil()}(A);const t=A,{width:s,height:i}=n,r={x:0,y:0,width:s,height:i,pixelRatio:k};A=e.canvas(r),A.copyWorld(t,n,r)}v&&A.fillWorld(A.bounds,x||"#FFFFFF","destination-over"),f&&f(A);const L="canvas"===i?A:yield A.export(i,r);d({data:L,width:A.pixelWidth,height:A.pixelHeight,renderBounds:t,trimBounds:n})}))))):d({data:!1})}))))}};let qc;function Qc(t){t.__.__needComputePaint&&t.__.__computePaint(),t.isBranch&&t.children.forEach((t=>Qc(t)))}const Jc=Qt.prototype,$c=wt.get("@leafer-ui/export");Jc.export=function(t,e){const{quality:s,blob:i}=hr.getExportOptions(e);return t.includes(".")?this.saveAs(t,s):i?this.toBlob(t,s):this.toDataURL(t,s)},Jc.toBlob=function(e,s){return new Promise((i=>{t.origin.canvasToBolb(this.view,e,s).then((t=>{i(t)})).catch((t=>{$c.error(t),i(null)}))}))},Jc.toDataURL=function(e,s){return t.origin.canvasToDataURL(this.view,e,s)},Jc.saveAs=function(e,s){return new Promise((i=>{t.origin.canvasSaveAs(this.view,e,s).then((()=>{i(!0)})).catch((t=>{$c.error(t),i(!1)}))}))},Object.assign(Wa,Xc),Object.assign(Ma,jc),Object.assign(za,Pl),Object.assign(Na,ld),Object.assign(Ya,Cd),Object.assign(Xa,Wd),Object.assign(ja,Hc);try{wx&&fa(0,wx)}catch(t){}export{yt as AlignHelper,Mt as Answer,pt as AroundHelper,dt as AutoBounds,ke as BezierHelper,ht as Bounds,rt as BoundsHelper,Ph as Box,Za as BoxData,la as Branch,Sn as BranchHelper,Po as BranchRender,hl as Canvas,ch as CanvasData,Lt as CanvasManager,Yn as ChildEvent,Ma as ColorConvert,e as Creator,Et as DataHelper,wt as Debug,ct as Direction4,ut as Direction9,Xa as Effect,Ih as Ellipse,ih as EllipseData,Ee as EllipseHelper,Nn as Event,Ot as EventCreator,Jn as Eventer,ja as Export,hr as FileHelper,Oh as Frame,th as FrameData,mh as Group,$a as GroupData,ol as Image,dh as ImageData,jn as ImageEvent,_r as ImageManager,s as IncrementId,Gn as LayoutEvent,Pa as Layouter,Ko as Leaf,So as LeafBounds,kn as LeafBoundsHelper,Wt as LeafData,co as LeafDataProxy,ao as LeafEventer,fn as LeafHelper,zn as LeafLayout,ca as LeafLevelList,da as LeafList,mo as LeafMatrix,Co as LeafRender,vh as Leafer,_a as LeaferCanvas,Qt as LeaferCanvasBase,Ka as LeaferData,qn as LeaferEvent,yr as LeaferImage,jh as Line,eh as LineData,a as MathHelper,z as Matrix,v as MatrixHelper,al as MyImage,te as NeedConvertToCanvasCommandMap,h as OneRadian,l as PI2,d as PI_2,za as Paint,Ya as PaintGradient,Na as PaintImage,gl as Path,Fa as PathArrow,Ji as PathBounds,Ns as PathCommandDataHelper,Zt as PathCommandMap,ys as PathConvert,rr as PathCorner,ii as PathCreator,oh as PathData,mi as PathDrawer,Jt as PathHelper,re as PathNumberCommandLengthMap,ie as PathNumberCommandMap,fl as Pen,ah as PenData,t as Platform,Rt as Plugin,D as Point,L as PointHelper,Zh as Polygon,rh as PolygonData,Xn as PropertyEvent,bh as Rect,sh as RectData,ne as RectHelper,gh as RectRender,Hn as RenderEvent,Aa as Renderer,Un as ResizeEvent,Bt as Run,nl as Star,nh as StarData,Ua as State,mt as StringNumberMap,cr as TaskItem,ur as TaskProcessor,pl as Text,Wa as TextConvert,lh as TextData,Va as Transition,Y as TwoPointBoundsHelper,yh as UI,uh as UIBounds,Ct as UICreator,Ja as UIData,_h as UIRender,Da as UnitConvert,On as WaitHelper,Vn as WatchEvent,ya as Watcher,Mr as affectRenderBoundsType,Er as affectStrokeBoundsType,vr as attr,Rr as autoLayoutType,Tr as boundsType,ar as canvasPatch,qt as canvasSizeAttrs,Gr as cursorType,Hr as dataProcessor,Br as dataType,xr as decorateLeafAttr,Qr as defineDataProcessor,mr as defineKey,br as defineLeafAttr,Or as doBoundsType,Ir as doStrokeType,La as effectType,Dt as emptyData,Ur as eraserType,u as getBoundsData,wr as getDescriptor,_ as getMatrixData,c as getPointData,Vr as hitType,Ft as isNull,qr as layoutProcessor,jr as maskType,Pr as naturalBoundsType,Fr as opacityType,Ar as pathInputType,Lr as pathType,nr as pen,kr as positionType,rn as registerUI,nn as registerUIEvent,Ea as resizeType,Kr as rewrite,tn as rewriteAble,Cr as rotationType,Sr as scaleType,Xr as sortType,Wr as strokeType,Dr as surfaceType,lt as tempBounds,N as tempMatrix,F as tempPoint,fa as useCanvas,sn as useModule,ua as version,zr as visibleType,Ia as zoomLayerType};
1
+ const t={toURL(t,e){let s=encodeURIComponent(t);return"text"===e?s="data:text/plain;charset=utf-8,"+s:"svg"===e&&(s="data:image/svg+xml,"+s),s},image:{hitCanvasSize:100,maxCacheSize:4096e3,maxPatternSize:8847360,crossOrigin:"anonymous",getRealURL(e){const{prefix:s,suffix:i}=t.image;return!i||e.startsWith("data:")||e.startsWith("blob:")||(e+=(e.includes("?")?"&":"?")+i),s&&"/"===e[0]&&(e=s+e),e}}},e={},s={RUNTIME:"runtime",LEAF:"leaf",TASK:"task",CNAVAS:"canvas",IMAGE:"image",types:{},create(t){const{types:e}=i;return e[t]?e[t]++:(e[t]=1,0)}},i=s,{round:r,pow:n,PI:o}=Math,a={within:(t,e,s)=>("object"==typeof e&&(s=e.max,e=e.min),void 0!==e&&t<e&&(t=e),void 0!==s&&t>s&&(t=s),t),fourNumber(t,e){let s;if(t instanceof Array)switch(t.length){case 4:s=void 0===e?t:[...t];break;case 2:s=[t[0],t[1],t[0],t[1]];break;case 3:s=[t[0],t[1],t[2],t[1]];break;case 1:t=t[0];break;default:t=0}if(s||(s=[t,t,t,t]),e)for(let t=0;t<4;t++)s[t]>e&&(s[t]=e);return s},formatRotation:(t,e)=>(t%=360,e?t<0&&(t+=360):(t>180&&(t-=360),t<-180&&(t+=360)),a.float(t)),getGapRotation(t,e,s=0){let i=t+s;if(e>1){const t=Math.abs(i%e);(t<1||t>e-1)&&(i=Math.round(i/e)*e)}return i-s},float(t,e){const s=void 0!==e?n(10,e):1e12;return-0===(t=r(t*s)/s)?0:t},getScaleData:(t,e,s,i)=>(i||(i={}),e?(i.scaleX=("number"==typeof e?e:e.width)/s.width,i.scaleY=("number"==typeof e?e:e.height)/s.height):t&&a.assignScale(i,t),i),assignScale(t,e){"number"==typeof e?t.scaleX=t.scaleY=e:(t.scaleX=e.x,t.scaleY=e.y)}},h=o/180,l=2*o,d=o/2;function c(){return{x:0,y:0}}function u(){return{x:0,y:0,width:0,height:0}}function _(){return{a:1,b:0,c:0,d:1,e:0,f:0}}const{sin:p,cos:g,acos:f,sqrt:y}=Math,{float:m}=a,w={};function x(){return Object.assign(Object.assign(Object.assign({},{a:1,b:0,c:0,d:1,e:0,f:0}),{x:0,y:0,width:0,height:0}),{scaleX:1,scaleY:1,rotation:0,skewX:0,skewY:0})}const v={defaultMatrix:{a:1,b:0,c:0,d:1,e:0,f:0},defaultWorld:x(),tempMatrix:{},set(t,e=1,s=0,i=0,r=1,n=0,o=0){t.a=e,t.b=s,t.c=i,t.d=r,t.e=n,t.f=o},get:_,getWorld:x,copy(t,e){t.a=e.a,t.b=e.b,t.c=e.c,t.d=e.d,t.e=e.e,t.f=e.f},translate(t,e,s){t.e+=e,t.f+=s},translateInner(t,e,s,i){t.e+=t.a*e+t.c*s,t.f+=t.b*e+t.d*s,i&&(t.e-=e,t.f-=s)},scale(t,e,s=e){t.a*=e,t.b*=e,t.c*=s,t.d*=s},scaleOfOuter(t,e,s,i){b.toInnerPoint(t,e,w),b.scaleOfInner(t,w,s,i)},scaleOfInner(t,e,s,i=s){b.translateInner(t,e.x,e.y),b.scale(t,s,i),b.translateInner(t,-e.x,-e.y)},rotate(t,e){const{a:s,b:i,c:r,d:n}=t,o=g(e*=h),a=p(e);t.a=s*o-i*a,t.b=s*a+i*o,t.c=r*o-n*a,t.d=r*a+n*o},rotateOfOuter(t,e,s){b.toInnerPoint(t,e,w),b.rotateOfInner(t,w,s)},rotateOfInner(t,e,s){b.translateInner(t,e.x,e.y),b.rotate(t,s),b.translateInner(t,-e.x,-e.y)},skew(t,e,s){const{a:i,b:r,c:n,d:o}=t;s&&(s*=h,t.a=i+n*s,t.b=r+o*s),e&&(e*=h,t.c=n+i*e,t.d=o+r*e)},skewOfOuter(t,e,s,i){b.toInnerPoint(t,e,w),b.skewOfInner(t,w,s,i)},skewOfInner(t,e,s,i=0){b.translateInner(t,e.x,e.y),b.skew(t,s,i),b.translateInner(t,-e.x,-e.y)},multiply(t,e){const{a:s,b:i,c:r,d:n,e:o,f:a}=t;t.a=e.a*s+e.b*r,t.b=e.a*i+e.b*n,t.c=e.c*s+e.d*r,t.d=e.c*i+e.d*n,t.e=e.e*s+e.f*r+o,t.f=e.e*i+e.f*n+a},multiplyParent(t,e,s,i,r,n){let{e:o,f:a}=t;if(n&&(o+=n.scrollX,a+=n.scrollY),s||(s=t),void 0===i&&(i=1!==t.a||t.b||t.c||1!==t.d),i){const{a:i,b:n,c:o,d:a}=t;s.a=i*e.a+n*e.c,s.b=i*e.b+n*e.d,s.c=o*e.a+a*e.c,s.d=o*e.b+a*e.d,r&&(s.scaleX=e.scaleX*r.scaleX,s.scaleY=e.scaleY*r.scaleY)}else s.a=e.a,s.b=e.b,s.c=e.c,s.d=e.d,r&&(s.scaleX=e.scaleX,s.scaleY=e.scaleY);s.e=o*e.a+a*e.c+e.e,s.f=o*e.b+a*e.d+e.f},divide(t,e){b.multiply(t,b.tempInvert(e))},divideParent(t,e){b.multiplyParent(t,b.tempInvert(e))},tempInvert(t){const{tempMatrix:e}=b;return b.copy(e,t),b.invert(e),e},invert(t){const{a:e,b:s,c:i,d:r,e:n,f:o}=t;if(s||i){const a=1/(e*r-s*i);t.a=r*a,t.b=-s*a,t.c=-i*a,t.d=e*a,t.e=-(n*r-o*i)*a,t.f=-(o*e-n*s)*a}else if(1===e&&1===r)t.e=-n,t.f=-o;else{const s=1/(e*r);t.a=r*s,t.d=e*s,t.e=-n*r*s,t.f=-o*e*s}},toOuterPoint(t,e,s,i){const{x:r,y:n}=e;s||(s=e),s.x=r*t.a+n*t.c,s.y=r*t.b+n*t.d,i||(s.x+=t.e,s.y+=t.f)},toInnerPoint(t,e,s,i){const{a:r,b:n,c:o,d:a}=t,h=1/(r*a-n*o),{x:l,y:d}=e;if(s||(s=e),s.x=(l*a-d*o)*h,s.y=(d*r-l*n)*h,!i){const{e:e,f:i}=t;s.x-=(e*a-i*o)*h,s.y-=(i*r-e*n)*h}},setLayout(t,e,s,i,r){const{x:n,y:o,scaleX:a,scaleY:l}=e;if(void 0===r&&(r=e.rotation||e.skewX||e.skewY),r){const{rotation:s,skewX:i,skewY:r}=e,n=s*h,o=g(n),d=p(n);if(i||r){const e=i*h,s=r*h;t.a=(o+s*-d)*a,t.b=(d+s*o)*a,t.c=(e*o-d)*l,t.d=(o+e*d)*l}else t.a=o*a,t.b=d*a,t.c=-d*l,t.d=o*l}else t.a=a,t.b=0,t.c=0,t.d=l;t.e=n,t.f=o,(s=s||i)&&b.translateInner(t,-s.x,-s.y,!i)},getLayout(t,e,s,i){const{a:r,b:n,c:o,d:a,e:l,f:c}=t;let u,_,w,x,v,b=l,B=c;if(n||o){const t=r*a-n*o;if(o&&!i){u=y(r*r+n*n),_=t/u;const e=r/u;w=n>0?f(e):-f(e)}else{_=y(o*o+a*a),u=t/_;const e=o/_;w=d-(a>0?f(-e):-f(e))}const e=m(g(w)),s=p(w);u=m(u),_=m(_),x=e?m((o/_+s)/e/h,9):0,v=e?m((n/u-s)/e/h,9):0,w=m(w/h)}else u=r,_=a,w=x=v=0;return(e=s||e)&&(b+=e.x*r+e.y*o,B+=e.x*n+e.y*a,s||(b-=e.x,B-=e.y)),{x:b,y:B,scaleX:u,scaleY:_,rotation:w,skewX:x,skewY:v}},withScale(t,e,s=e){const i=t;if(!e||!s){const{a:i,b:r,c:n,d:o}=t;r||n?s=(i*o-r*n)/(e=y(i*i+r*r)):(e=i,s=o)}return i.scaleX=e,i.scaleY=s,i},reset(t){b.set(t)}},b=v,{toInnerPoint:B,toOuterPoint:k}=v,{sin:R,cos:S,abs:C,sqrt:T,atan2:P,min:O,PI:A}=Math,L={defaultPoint:{x:0,y:0},tempPoint:{},tempRadiusPoint:{},set(t,e=0,s=0){t.x=e,t.y=s},setRadius(t,e,s){t.radiusX=e,t.radiusY=void 0===s?e:s},copy(t,e){t.x=e.x,t.y=e.y},copyFrom(t,e,s){t.x=e,t.y=s},move(t,e,s){t.x+=e,t.y+=s},scale(t,e,s=e){t.x&&(t.x*=e),t.y&&(t.y*=s)},scaleOf(t,e,s,i=s){t.x+=(t.x-e.x)*(s-1),t.y+=(t.y-e.y)*(i-1)},rotate(t,e,s){s||(s=E.defaultPoint);const i=S(e*=h),r=R(e),n=t.x-s.x,o=t.y-s.y;t.x=s.x+n*i-o*r,t.y=s.y+n*r+o*i},tempToInnerOf(t,e){const{tempPoint:s}=E;return M(s,t),B(e,s,s),s},tempToOuterOf(t,e){const{tempPoint:s}=E;return M(s,t),k(e,s,s),s},tempToInnerRadiusPointOf(t,e){const{tempRadiusPoint:s}=E;return M(s,t),E.toInnerRadiusPointOf(t,e,s),s},toInnerRadiusPointOf(t,e,s){s||(s=t),B(e,t,s),s.radiusX=Math.abs(t.radiusX/e.scaleX),s.radiusY=Math.abs(t.radiusY/e.scaleY)},toInnerOf(t,e,s){B(e,t,s)},toOuterOf(t,e,s){k(e,t,s)},getCenter:(t,e)=>({x:t.x+(e.x-t.x)/2,y:t.y+(e.y-t.y)/2}),getCenterX:(t,e)=>t+(e-t)/2,getCenterY:(t,e)=>t+(e-t)/2,getDistance:(t,e)=>I(t.x,t.y,e.x,e.y),getDistanceFrom(t,e,s,i){const r=C(s-t),n=C(i-e);return T(r*r+n*n)},getMinDistanceFrom:(t,e,s,i,r,n)=>O(I(t,e,s,i),I(s,i,r,n)),getAngle:(t,e)=>W(t,e)/h,getRotation:(t,e,s,i)=>(i||(i=e),E.getRadianFrom(t.x,t.y,e.x,e.y,s.x,s.y,i.x,i.y)/h),getRadianFrom(t,e,s,i,r,n,o,a){void 0===o&&(o=s,a=i);let h=P(e-i,t-s);const d=P(n-a,r-o)-h;return d<-A?d+l:d},getAtan2:(t,e)=>P(e.y-t.y,e.x-t.x),getDistancePoint(t,e,s,i){const r=W(t,e);return(e=i?e:{}).x=t.x+S(r)*s,e.y=t.y+R(r)*s,e},toNumberPoints(t){let e=t;return"object"==typeof t[0]&&(e=[],t.forEach((t=>e.push(t.x,t.y)))),e},reset(t){E.reset(t)}},E=L,{getDistanceFrom:I,copy:M,getAtan2:W}=E;class D{constructor(t,e){this.set(t,e)}set(t,e){return"object"==typeof t?L.copy(this,t):L.set(this,t,e),this}get(){const{x:t,y:e}=this;return{x:t,y:e}}clone(){return new D(this)}move(t,e){return L.move(this,t,e),this}scale(t,e){return L.scale(this,t,e),this}scaleOf(t,e,s){return L.scaleOf(this,t,e,s),this}rotate(t,e){return L.rotate(this,t,e),this}rotateOf(t,e){return L.rotate(this,e,t),this}getRotation(t,e,s){return L.getRotation(this,t,e,s)}toInnerOf(t,e){return L.toInnerOf(this,t,e),this}toOuterOf(t,e){return L.toOuterOf(this,t,e),this}getCenter(t){return new D(L.getCenter(this,t))}getDistance(t){return L.getDistance(this,t)}getDistancePoint(t,e,s){return new D(L.getDistancePoint(this,t,e,s))}getAngle(t){return L.getAngle(this,t)}getAtan2(t){return L.getAtan2(this,t)}reset(){return L.reset(this),this}}const F=new D;class z{constructor(t,e,s,i,r,n){this.set(t,e,s,i,r,n)}set(t,e,s,i,r,n){return"object"==typeof t?v.copy(this,t):v.set(this,t,e,s,i,r,n),this}setWith(t){return v.copy(this,t),this.scaleX=t.scaleX,this.scaleY=t.scaleY,this}get(){const{a:t,b:e,c:s,d:i,e:r,f:n}=this;return{a:t,b:e,c:s,d:i,e:r,f:n}}clone(){return new z(this)}translate(t,e){return v.translate(this,t,e),this}translateInner(t,e){return v.translateInner(this,t,e),this}scale(t,e){return v.scale(this,t,e),this}scaleWith(t,e){return v.scale(this,t,e),this.scaleX*=t,this.scaleY*=e||t,this}scaleOfOuter(t,e,s){return v.scaleOfOuter(this,t,e,s),this}scaleOfInner(t,e,s){return v.scaleOfInner(this,t,e,s),this}rotate(t){return v.rotate(this,t),this}rotateOfOuter(t,e){return v.rotateOfOuter(this,t,e),this}rotateOfInner(t,e){return v.rotateOfInner(this,t,e),this}skew(t,e){return v.skew(this,t,e),this}skewOfOuter(t,e,s){return v.skewOfOuter(this,t,e,s),this}skewOfInner(t,e,s){return v.skewOfInner(this,t,e,s),this}multiply(t){return v.multiply(this,t),this}multiplyParent(t){return v.multiplyParent(this,t),this}divide(t){return v.divide(this,t),this}divideParent(t){return v.divideParent(this,t),this}invert(){return v.invert(this),this}invertWith(){return v.invert(this),this.scaleX=1/this.scaleX,this.scaleY=1/this.scaleY,this}toOuterPoint(t,e,s){v.toOuterPoint(this,t,e,s)}toInnerPoint(t,e,s){v.toInnerPoint(this,t,e,s)}setLayout(t,e,s){return v.setLayout(this,t,e,s),this}getLayout(t,e,s){return v.getLayout(this,t,e,s)}withScale(t,e){return v.withScale(this,t,e)}reset(){v.reset(this)}}const N=new z,Y={tempPointBounds:{},setPoint(t,e,s){t.minX=t.maxX=e,t.minY=t.maxY=s},addPoint(t,e,s){t.minX=e<t.minX?e:t.minX,t.minY=s<t.minY?s:t.minY,t.maxX=e>t.maxX?e:t.maxX,t.maxY=s>t.maxY?s:t.maxY},addBounds(t,e,s,i,r){X(t,e,s),X(t,e+i,s+r)},copy(t,e){t.minX=e.minX,t.minY=e.minY,t.maxX=e.maxX,t.maxY=e.maxY},addPointBounds(t,e){t.minX=e.minX<t.minX?e.minX:t.minX,t.minY=e.minY<t.minY?e.minY:t.minY,t.maxX=e.maxX>t.maxX?e.maxX:t.maxX,t.maxY=e.maxY>t.maxY?e.maxY:t.maxY},toBounds(t,e){e.x=t.minX,e.y=t.minY,e.width=t.maxX-t.minX,e.height=t.maxY-t.minY}},{addPoint:X}=Y,{tempPointBounds:j,setPoint:U,addPoint:V,toBounds:G}=Y,{toOuterPoint:H}=v,{float:q,fourNumber:Q}=a,{floor:J,ceil:$}=Math;let Z,K,tt,et;const st={},it={},rt={tempBounds:{},set(t,e=0,s=0,i=0,r=0){t.x=e,t.y=s,t.width=i,t.height=r},copy(t,e){t.x=e.x,t.y=e.y,t.width=e.width,t.height=e.height},copyAndSpread(t,e,s,i,r){const{x:n,y:o,width:a,height:h}=e;if(s instanceof Array){const e=Q(s);i?nt.set(t,n+e[3],o+e[0],a-e[1]-e[3],h-e[2]-e[0]):nt.set(t,n-e[3],o-e[0],a+e[1]+e[3],h+e[2]+e[0])}else i&&(s=-s),nt.set(t,n-s,o-s,a+2*s,h+2*s);r&&("width"===r?(t.y=o,t.height=h):(t.x=n,t.width=a))},minX:t=>t.width>0?t.x:t.x+t.width,minY:t=>t.height>0?t.y:t.y+t.height,maxX:t=>t.width>0?t.x+t.width:t.x,maxY:t=>t.height>0?t.y+t.height:t.y,move(t,e,s){t.x+=e,t.y+=s},getByMove:(t,e,s)=>(t=Object.assign({},t),nt.move(t,e,s),t),toOffsetOutBounds(t,e,s){e?at(e,t):e=t,s?(e.offsetX=-(nt.maxX(s)-t.x),e.offsetY=-(nt.maxY(s)-t.y)):(e.offsetX=t.x+t.width,e.offsetY=t.y+t.height),nt.move(e,-e.offsetX,-e.offsetY)},scale(t,e,s=e){L.scale(t,e,s),t.width*=e,t.height*=s},scaleOf(t,e,s,i=s){L.scaleOf(t,e,s,i),t.width*=s,t.height*=i},tempToOuterOf:(t,e)=>(nt.copy(nt.tempBounds,t),nt.toOuterOf(nt.tempBounds,e),nt.tempBounds),getOuterOf:(t,e)=>(t=Object.assign({},t),nt.toOuterOf(t,e),t),toOuterOf(t,e,s){if(s||(s=t),0===e.b&&0===e.c){const{a:i,d:r}=e;i>0?(s.width=t.width*i,s.x=e.e+t.x*i):(s.width=t.width*-i,s.x=e.e+t.x*i-s.width),r>0?(s.height=t.height*r,s.y=e.f+t.y*r):(s.height=t.height*-r,s.y=e.f+t.y*r-s.height)}else st.x=t.x,st.y=t.y,H(e,st,it),U(j,it.x,it.y),st.x=t.x+t.width,H(e,st,it),V(j,it.x,it.y),st.y=t.y+t.height,H(e,st,it),V(j,it.x,it.y),st.x=t.x,H(e,st,it),V(j,it.x,it.y),G(j,s)},toInnerOf(t,e,s){s||(s=t),nt.move(s,-e.e,-e.f),nt.scale(s,1/e.a,1/e.d)},getFitMatrix(t,e,s=1){const i=Math.min(s,Math.min(t.width/e.width,t.height/e.height));return new z(i,0,0,i,-e.x*i,-e.y*i)},getSpread(t,e,s){const i={};return nt.copyAndSpread(i,t,e,!1,s),i},spread(t,e,s){nt.copyAndSpread(t,t,e,!1,s)},shrink(t,e,s){nt.copyAndSpread(t,t,e,!0,s)},ceil(t){const{x:e,y:s}=t;t.x=J(t.x),t.y=J(t.y),t.width=e>t.x?$(t.width+e-t.x):$(t.width),t.height=s>t.y?$(t.height+s-t.y):$(t.height)},unsign(t){t.width<0&&(t.x+=t.width,t.width=-t.width),t.height<0&&(t.y+=t.height,t.height=-t.height)},float(t,e){t.x=q(t.x,e),t.y=q(t.y,e),t.width=q(t.width,e),t.height=q(t.height,e)},add(t,e,s){Z=t.x+t.width,K=t.y+t.height,tt=e.x,et=e.y,s||(tt+=e.width,et+=e.height),Z=Z>tt?Z:tt,K=K>et?K:et,t.x=t.x<e.x?t.x:e.x,t.y=t.y<e.y?t.y:e.y,t.width=Z-t.x,t.height=K-t.y},addList(t,e){nt.setListWithFn(t,e,void 0,!0)},setList(t,e,s=!1){nt.setListWithFn(t,e,void 0,s)},addListWithFn(t,e,s){nt.setListWithFn(t,e,s,!0)},setListWithFn(t,e,s,i=!1){let r,n=!0;for(let o=0,a=e.length;o<a;o++)r=s?s(e[o]):e[o],r&&(r.width||r.height)&&(n?(n=!1,i||at(t,r)):ot(t,r));n&&nt.reset(t)},setPoints(t,e){e.forEach(((t,e)=>0===e?U(j,t.x,t.y):V(j,t.x,t.y))),G(j,t)},setPoint(t,e){nt.set(t,e.x,e.y)},addPoint(t,e){ot(t,e,!0)},getPoints(t){const{x:e,y:s,width:i,height:r}=t;return[{x:e,y:s},{x:e+i,y:s},{x:e+i,y:s+r},{x:e,y:s+r}]},hitRadiusPoint:(t,e,s)=>(s&&(e=L.tempToInnerRadiusPointOf(e,s)),e.x>=t.x-e.radiusX&&e.x<=t.x+t.width+e.radiusX&&e.y>=t.y-e.radiusY&&e.y<=t.y+t.height+e.radiusY),hitPoint:(t,e,s)=>(s&&(e=L.tempToInnerOf(e,s)),e.x>=t.x&&e.x<=t.x+t.width&&e.y>=t.y&&e.y<=t.y+t.height),hit:(t,e,s)=>(s&&(e=nt.tempToOuterOf(e,s)),!(t.y+t.height<e.y||e.y+e.height<t.y||t.x+t.width<e.x||e.x+e.width<t.x)),includes:(t,e,s)=>(s&&(e=nt.tempToOuterOf(e,s)),t.x<=e.x&&t.y<=e.y&&t.x+t.width>=e.x+e.width&&t.y+t.height>=e.y+e.height),getIntersectData(t,e,s){if(s&&(e=nt.tempToOuterOf(e,s)),!nt.hit(t,e))return{x:0,y:0,width:0,height:0};let{x:i,y:r,width:n,height:o}=e;return Z=i+n,K=r+o,tt=t.x+t.width,et=t.y+t.height,i=i>t.x?i:t.x,r=r>t.y?r:t.y,Z=Z<tt?Z:tt,K=K<et?K:et,n=Z-i,o=K-r,{x:i,y:r,width:n,height:o}},intersect(t,e,s){nt.copy(t,nt.getIntersectData(t,e,s))},isSame:(t,e)=>t.x===e.x&&t.y===e.y&&t.width===e.width&&t.height===e.height,isEmpty:t=>0===t.x&&0===t.y&&0===t.width&&0===t.height,reset(t){nt.set(t)}},nt=rt,{add:ot,copy:at}=nt;class ht{get minX(){return rt.minX(this)}get minY(){return rt.minY(this)}get maxX(){return rt.maxX(this)}get maxY(){return rt.maxY(this)}constructor(t,e,s,i){this.set(t,e,s,i)}set(t,e,s,i){return"object"==typeof t?rt.copy(this,t):rt.set(this,t,e,s,i),this}get(){const{x:t,y:e,width:s,height:i}=this;return{x:t,y:e,width:s,height:i}}clone(){return new ht(this)}move(t,e){return rt.move(this,t,e),this}scale(t,e){return rt.scale(this,t,e),this}scaleOf(t,e,s){return rt.scaleOf(this,t,e,s),this}toOuterOf(t,e){return rt.toOuterOf(this,t,e),this}toInnerOf(t,e){return rt.toInnerOf(this,t,e),this}getFitMatrix(t,e){return rt.getFitMatrix(this,t,e)}spread(t,e){return rt.spread(this,t,e),this}shrink(t,e){return rt.shrink(this,t,e),this}ceil(){return rt.ceil(this),this}unsign(){return rt.unsign(this),this}float(t){return rt.float(this,t),this}add(t){return rt.add(this,t),this}addList(t){return rt.setList(this,t,!0),this}setList(t){return rt.setList(this,t),this}addListWithFn(t,e){return rt.setListWithFn(this,t,e,!0),this}setListWithFn(t,e){return rt.setListWithFn(this,t,e),this}setPoint(t){return rt.setPoint(this,t),this}setPoints(t){return rt.setPoints(this,t),this}addPoint(t){return rt.addPoint(this,t),this}getPoints(){return rt.getPoints(this)}hitPoint(t,e){return rt.hitPoint(this,t,e)}hitRadiusPoint(t,e){return rt.hitRadiusPoint(this,t,e)}hit(t,e){return rt.hit(this,t,e)}includes(t,e){return rt.includes(this,t,e)}intersect(t,e){return rt.intersect(this,t,e),this}getIntersect(t,e){return new ht(rt.getIntersectData(this,t,e))}isSame(t){return rt.isSame(this,t)}isEmpty(){return rt.isEmpty(this)}reset(){rt.reset(this)}}const lt=new ht;class dt{constructor(t,e,s,i,r,n){"object"==typeof t?this.copy(t):this.set(t,e,s,i,r,n)}set(t=0,e=0,s=0,i=0,r=0,n=0){this.top=t,this.right=e,this.bottom=s,this.left=i,this.width=r,this.height=n}copy(t){const{top:e,right:s,bottom:i,left:r,width:n,height:o}=t;this.set(e,s,i,r,n,o)}getBoundsFrom(t){const{top:e,right:s,bottom:i,left:r,width:n,height:o}=this;return new ht(r,e,n||t.width-r-s,o||t.height-e-i)}}var ct,ut;!function(t){t[t.top=0]="top",t[t.right=1]="right",t[t.bottom=2]="bottom",t[t.left=3]="left"}(ct||(ct={})),function(t){t[t.topLeft=0]="topLeft",t[t.top=1]="top",t[t.topRight=2]="topRight",t[t.right=3]="right",t[t.bottomRight=4]="bottomRight",t[t.bottom=5]="bottom",t[t.bottomLeft=6]="bottomLeft",t[t.left=7]="left",t[t.center=8]="center",t[t["top-left"]=0]="top-left",t[t["top-right"]=2]="top-right",t[t["bottom-right"]=4]="bottom-right",t[t["bottom-left"]=6]="bottom-left"}(ut||(ut={}));const _t=[{x:0,y:0},{x:.5,y:0},{x:1,y:0},{x:1,y:.5},{x:1,y:1},{x:.5,y:1},{x:0,y:1},{x:0,y:.5},{x:.5,y:.5}];_t.forEach((t=>t.type="percent"));const pt={directionData:_t,tempPoint:{},get:gt,toPoint(t,e,s,i,r){const n=gt(t);s.x=n.x,s.y=n.y,"percent"===n.type&&(s.x*=e.width,s.y*=e.height,r&&(s.x-=r.x,s.y-=r.y,n.x&&(s.x-=1===n.x?r.width:.5===n.x?n.x*r.width:0),n.y&&(s.y-=1===n.y?r.height:.5===n.y?n.y*r.height:0))),i||(s.x+=e.x,s.y+=e.y)}};function gt(t){return"string"==typeof t?_t[ut[t]]:t}const{toPoint:ft}=pt,yt={toPoint(t,e,s,i,r){ft(t,s,i,r,e)}},mt={0:1,1:1,2:1,3:1,4:1,5:1,6:1,7:1,8:1,9:1,".":1,e:1,E:1};class wt{constructor(t){this.repeatMap={},this.name=t}static get(t){return new wt(t)}static set filter(t){this.filterList=xt(t)}static set exclude(t){this.excludeList=xt(t)}log(...t){if(vt.enable){if(vt.filterList.length&&vt.filterList.every((t=>t!==this.name)))return;if(vt.excludeList.length&&vt.excludeList.some((t=>t===this.name)))return;console.log("%c"+this.name,"color:#21ae62",...t)}}tip(...t){vt.enable&&this.warn(...t)}warn(...t){vt.showWarn&&console.warn(this.name,...t)}repeat(t,...e){this.repeatMap[t]||(this.warn("repeat:"+t,...e),this.repeatMap[t]=!0)}error(...t){try{throw new Error}catch(e){console.error(this.name,...t,e)}}}function xt(t){return t?"string"==typeof t&&(t=[t]):t=[],t}wt.filterList=[],wt.excludeList=[],wt.showWarn=!0;const vt=wt,bt=wt.get("RunTime"),Bt={currentId:0,currentName:"",idMap:{},nameMap:{},nameToIdMap:{},start(t,e){const i=s.create(s.RUNTIME);return kt.currentId=kt.idMap[i]=e?performance.now():Date.now(),kt.currentName=kt.nameMap[i]=t,kt.nameToIdMap[t]=i,i},end(t,e){const s=kt.idMap[t],i=kt.nameMap[t],r=e?(performance.now()-s)/1e3:Date.now()-s;kt.idMap[t]=kt.nameMap[t]=kt.nameToIdMap[i]=void 0,bt.log(i,r,"ms")},endOfName(t,e){const s=kt.nameToIdMap[t];void 0!==s&&kt.end(s,e)}},kt=Bt,Rt={list:{},add(t){this.list[t]=!0},check(t,e){const s=this.list[t];return!s&&e&&this.need(t),s},need(t){console.error("need plugin: @leafer-in/"+t)}},St=wt.get("UICreator"),Ct={list:{},register(t){const{__tag:e}=t.prototype;Tt[e]&&St.repeat(e),Tt[e]=t},get(t,e,s,i,r,n){Tt[t]||St.error("not register "+t);const o=new Tt[t](e);return void 0!==s&&(o.x=s,i&&(o.y=i),r&&(o.width=r),n&&(o.height=n)),o}},{list:Tt}=Ct,Pt=wt.get("EventCreator"),Ot={nameList:{},register(t){let e;Object.keys(t).forEach((s=>{e=t[s],"string"==typeof e&&(At[e]&&Pt.repeat(e),At[e]=t)}))},changeName(t,e){const s=At[t];if(s){const i=Object.keys(s).find((e=>s[e]===t));i&&(s[i]=e,At[e]=s)}},has(t){return!!this.nameList[t]},get:(t,...e)=>new At[t](...e)},{nameList:At}=Ot;class Lt{constructor(){this.list=[]}add(t){t.manager=this,this.list.push(t)}get(t){let s;const{list:i}=this;for(let e=0,r=i.length;e<r;e++)if(s=i[e],s.recycled&&s.isSameSize(t))return s.recycled=!1,s.manager||(s.manager=this),s;const r=e.canvas(t);return this.add(r),r}recycle(t){t.recycled=!0}clearRecycled(){let t;const e=[];for(let s=0,i=this.list.length;s<i;s++)t=this.list[s],t.recycled?t.destroy():e.push(t);this.list=e}clear(){this.list.forEach((t=>{t.destroy()})),this.list.length=0}destroy(){this.clear()}}const Et={default:(t,e)=>(It(e,t),It(t,e),t),assign(t,e,s){let i;Object.keys(e).forEach((r=>{var n,o;if(i=e[r],(null==i?void 0:i.constructor)===Object&&(null===(n=t[r])||void 0===n?void 0:n.constructor)===Object)return It(t[r],e[r],s&&s[r]);s&&r in s?(null===(o=s[r])||void 0===o?void 0:o.constructor)===Object&&It(t[r]={},e[r],s[r]):t[r]=e[r]}))},copyAttrs:(t,e,s)=>(s.forEach((s=>{void 0!==e[s]&&(t[s]=e[s])})),t),clone:t=>JSON.parse(JSON.stringify(t)),toMap(t){const e={};for(let s=0,i=t.length;s<i;s++)e[t[s]]=!0;return e}},{assign:It}=Et;class Mt{get __useNaturalRatio(){return!0}get __isLinePath(){const{path:t}=this;return t&&6===t.length&&1===t[0]}get __blendMode(){if(this.eraser&&"path"!==this.eraser)return"destination-out";const{blendMode:t}=this;return"pass-through"===t?null:t}constructor(t){this.__leaf=t}__get(t){if(this.__input){const e=this.__input[t];if(void 0!==e)return e}return this[t]}__getData(){const t={tag:this.__leaf.tag},{__input:e}=this;let s;for(let i in this)"_"!==i[0]&&(s=e?e[i]:void 0,t[i]=void 0===s?this[i]:s);return t}__setInput(t,e){this.__input||(this.__input={}),this.__input[t]=e}__getInput(t){if(this.__input){const e=this.__input[t];if(void 0!==e)return e}if("path"!==t||this.__pathInputed)return this["_"+t]}__removeInput(t){this.__input&&void 0!==this.__input[t]&&(this.__input[t]=void 0)}__getInputData(t,e){const s={};if(t)if(t instanceof Array)for(let e of t)s[e]=this.__getInput(e);else for(let e in t)s[e]=this.__getInput(e);else{let t,e,{__input:i}=this;s.tag=this.__leaf.tag;for(let r in this)if("_"!==r[0]&&(t=this["_"+r],void 0!==t)){if("path"===r&&!this.__pathInputed)continue;e=i?i[r]:void 0,s[r]=void 0===e?t:e}}if(e&&e.matrix){const{a:t,b:e,c:i,d:r,e:n,f:o}=this.__leaf.__localMatrix;s.matrix={a:t,b:e,c:i,d:r,e:n,f:o}}return s}__setMiddle(t,e){this.__middle||(this.__middle={}),this.__middle[t]=e}__getMiddle(t){return this.__middle&&this.__middle[t]}__checkSingle(){const t=this;if("pass-through"===t.blendMode){const e=this.__leaf;t.opacity<1&&(e.isBranch||t.__hasMultiPaint)||e.__hasEraser||t.eraser?t.__single=!0:t.__single&&(t.__single=!1)}else t.__single=!0}__removeNaturalSize(){this.__naturalWidth=this.__naturalHeight=void 0}destroy(){this.__input=this.__middle=null}}var Wt;!function(t){t[t.No=0]="No",t[t.Yes=1]="Yes",t[t.NoAndSkip=2]="NoAndSkip",t[t.YesAndSkip=3]="YesAndSkip"}(Wt||(Wt={}));const Dt={};function Ft(t){return null==t}function zt(t,e,s,i){var r,n=arguments.length,o=n<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,s):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(t,e,s,i);else for(var a=t.length-1;a>=0;a--)(r=t[a])&&(o=(n<3?r(o):n>3?r(e,s,o):r(e,s))||o);return n>3&&o&&Object.defineProperty(e,s,o),o}function Nt(t,e,s,i){return new(s||(s=Promise))((function(r,n){function o(t){try{h(i.next(t))}catch(t){n(t)}}function a(t){try{h(i.throw(t))}catch(t){n(t)}}function h(t){var e;t.done?r(t.value):(e=t.value,e instanceof s?e:new s((function(t){t(e)}))).then(o,a)}h((i=i.apply(t,e||[])).next())}))}function Yt(t){return(e,s)=>{t||(t=s),Object.defineProperty(e,s,{get(){return this.context[t]},set(e){this.context[t]=e}})}}"function"==typeof SuppressedError&&SuppressedError;const Xt=[];function jt(){return(t,e)=>{Xt.push(e)}}const Ut=[];let Vt=class{set blendMode(t){"normal"===t&&(t="source-over"),this.context.globalCompositeOperation=t}get blendMode(){return this.context.globalCompositeOperation}set dashPattern(t){this.context.setLineDash(t||Ut)}get dashPattern(){return this.context.getLineDash()}__bindContext(){let t;Xt.forEach((e=>{t=this.context[e],t&&(this[e]=t.bind(this.context))})),this.textBaseline="alphabetic"}setTransform(t,e,s,i,r,n){}resetTransform(){}getTransform(){}save(){}restore(){}transform(t,e,s,i,r,n){"object"==typeof t?this.context.transform(t.a,t.b,t.c,t.d,t.e,t.f):this.context.transform(t,e,s,i,r,n)}translate(t,e){}scale(t,e){}rotate(t){}fill(t,e){}stroke(t){}clip(t,e){}fillRect(t,e,s,i){}strokeRect(t,e,s,i){}clearRect(t,e,s,i){}drawImage(t,e,s,i,r,n,o,a,h){switch(arguments.length){case 9:if(e<0){const t=-e/i*a;i+=e,e=0,n+=t,a-=t}if(s<0){const t=-s/r*h;r+=s,s=0,o+=t,h-=t}this.context.drawImage(t,e,s,i,r,n,o,a,h);break;case 5:this.context.drawImage(t,e,s,i,r);break;case 3:this.context.drawImage(t,e,s)}}beginPath(){}moveTo(t,e){}lineTo(t,e){}bezierCurveTo(t,e,s,i,r,n){}quadraticCurveTo(t,e,s,i){}closePath(){}arc(t,e,s,i,r,n){}arcTo(t,e,s,i,r){}ellipse(t,e,s,i,r,n,o,a){}rect(t,e,s,i){}roundRect(t,e,s,i,r){}createConicGradient(t,e,s){}createLinearGradient(t,e,s,i){}createPattern(t,e){}createRadialGradient(t,e,s,i,r,n){}fillText(t,e,s,i){}measureText(t){}strokeText(t,e,s,i){}destroy(){this.context=null}};zt([Yt("imageSmoothingEnabled")],Vt.prototype,"smooth",void 0),zt([Yt("imageSmoothingQuality")],Vt.prototype,"smoothLevel",void 0),zt([Yt("globalAlpha")],Vt.prototype,"opacity",void 0),zt([Yt()],Vt.prototype,"fillStyle",void 0),zt([Yt()],Vt.prototype,"strokeStyle",void 0),zt([Yt("lineWidth")],Vt.prototype,"strokeWidth",void 0),zt([Yt("lineCap")],Vt.prototype,"strokeCap",void 0),zt([Yt("lineJoin")],Vt.prototype,"strokeJoin",void 0),zt([Yt("lineDashOffset")],Vt.prototype,"dashOffset",void 0),zt([Yt()],Vt.prototype,"miterLimit",void 0),zt([Yt()],Vt.prototype,"shadowBlur",void 0),zt([Yt()],Vt.prototype,"shadowColor",void 0),zt([Yt()],Vt.prototype,"shadowOffsetX",void 0),zt([Yt()],Vt.prototype,"shadowOffsetY",void 0),zt([Yt()],Vt.prototype,"filter",void 0),zt([Yt()],Vt.prototype,"font",void 0),zt([Yt()],Vt.prototype,"fontKerning",void 0),zt([Yt()],Vt.prototype,"fontStretch",void 0),zt([Yt()],Vt.prototype,"fontVariantCaps",void 0),zt([Yt()],Vt.prototype,"textAlign",void 0),zt([Yt()],Vt.prototype,"textBaseline",void 0),zt([Yt()],Vt.prototype,"textRendering",void 0),zt([Yt()],Vt.prototype,"wordSpacing",void 0),zt([Yt()],Vt.prototype,"letterSpacing",void 0),zt([Yt()],Vt.prototype,"direction",void 0),zt([jt()],Vt.prototype,"setTransform",null),zt([jt()],Vt.prototype,"resetTransform",null),zt([jt()],Vt.prototype,"getTransform",null),zt([jt()],Vt.prototype,"save",null),zt([jt()],Vt.prototype,"restore",null),zt([jt()],Vt.prototype,"translate",null),zt([jt()],Vt.prototype,"scale",null),zt([jt()],Vt.prototype,"rotate",null),zt([jt()],Vt.prototype,"fill",null),zt([jt()],Vt.prototype,"stroke",null),zt([jt()],Vt.prototype,"clip",null),zt([jt()],Vt.prototype,"fillRect",null),zt([jt()],Vt.prototype,"strokeRect",null),zt([jt()],Vt.prototype,"clearRect",null),zt([jt()],Vt.prototype,"beginPath",null),zt([jt()],Vt.prototype,"moveTo",null),zt([jt()],Vt.prototype,"lineTo",null),zt([jt()],Vt.prototype,"bezierCurveTo",null),zt([jt()],Vt.prototype,"quadraticCurveTo",null),zt([jt()],Vt.prototype,"closePath",null),zt([jt()],Vt.prototype,"arc",null),zt([jt()],Vt.prototype,"arcTo",null),zt([jt()],Vt.prototype,"ellipse",null),zt([jt()],Vt.prototype,"rect",null),zt([jt()],Vt.prototype,"roundRect",null),zt([jt()],Vt.prototype,"createConicGradient",null),zt([jt()],Vt.prototype,"createLinearGradient",null),zt([jt()],Vt.prototype,"createPattern",null),zt([jt()],Vt.prototype,"createRadialGradient",null),zt([jt()],Vt.prototype,"fillText",null),zt([jt()],Vt.prototype,"measureText",null),zt([jt()],Vt.prototype,"strokeText",null);const{copy:Gt}=v,Ht={width:1,height:1,pixelRatio:1},qt=["width","height","pixelRatio"];class Qt extends Vt{get width(){return this.size.width}get height(){return this.size.height}get pixelRatio(){return this.size.pixelRatio}get pixelWidth(){return this.width*this.pixelRatio}get pixelHeight(){return this.height*this.pixelRatio}get allowBackgroundColor(){return this.view&&this.parentView}constructor(e,i){super(),this.size={},this.worldTransform={},e||(e=Ht),e.pixelRatio||(e.pixelRatio=t.devicePixelRatio),this.manager=i,this.innerId=s.create(s.CNAVAS);const{width:r,height:n,pixelRatio:o}=e;this.autoLayout=!r||!n,this.size.pixelRatio=o,this.config=e,this.init()}init(){}__createContext(){const{view:t}=this,{contextSettings:e}=this.config;this.context=e?t.getContext("2d",e):t.getContext("2d"),this.__bindContext()}export(t,e){}toBlob(t,e){}toDataURL(t,e){}saveAs(t,e){}resize(t,e=!0){if(this.isSameSize(t))return;let s;this.context&&!this.unreal&&e&&this.width&&(s=this.getSameCanvas(),s.copyWorld(this));const i=this.size;Et.copyAttrs(i,t,qt),qt.forEach((t=>i[t]||(i[t]=1))),this.bounds=new ht(0,0,this.width,this.height),this.context&&!this.unreal&&(this.updateViewSize(),this.smooth=this.config.smooth),this.updateClientBounds(),this.context&&!this.unreal&&s&&(this.clearWorld(s.bounds),this.copyWorld(s),s.recycle())}updateViewSize(){}updateClientBounds(){}getClientBounds(t){return t&&this.updateClientBounds(),this.clientBounds||this.bounds}startAutoLayout(t,e){}stopAutoLayout(){}setCursor(t){}setWorld(t,e){const{pixelRatio:s}=this,i=this.worldTransform;if(e){const{a:r,b:n,c:o,d:a,e:h,f:l}=e;this.setTransform(i.a=(t.a*r+t.b*o)*s,i.b=(t.a*n+t.b*a)*s,i.c=(t.c*r+t.d*o)*s,i.d=(t.c*n+t.d*a)*s,i.e=(t.e*r+t.f*o+h)*s,i.f=(t.e*n+t.f*a+l)*s)}else this.setTransform(i.a=t.a*s,i.b=t.b*s,i.c=t.c*s,i.d=t.d*s,i.e=t.e*s,i.f=t.f*s)}useWorldTransform(t){t&&(this.worldTransform=t);const e=this.worldTransform;e&&this.setTransform(e.a,e.b,e.c,e.d,e.e,e.f)}setStroke(t,e,s){e&&(this.strokeWidth=e),t&&(this.strokeStyle=t),s&&this.setStrokeOptions(s)}setStrokeOptions(t){this.strokeCap="none"===t.strokeCap?"butt":t.strokeCap,this.strokeJoin=t.strokeJoin,this.dashPattern=t.dashPattern,this.dashOffset=t.dashOffset,this.miterLimit=t.miterLimit}saveBlendMode(t){this.savedBlendMode=this.blendMode,this.blendMode=t}restoreBlendMode(){this.blendMode=this.savedBlendMode}hitFill(t,e){return!0}hitStroke(t,e){return!0}hitPixel(t,e,s=1){return!0}setWorldShadow(t,e,s,i){const{pixelRatio:r}=this;this.shadowOffsetX=t*r,this.shadowOffsetY=e*r,this.shadowBlur=s*r,this.shadowColor=i||"black"}setWorldBlur(t){const{pixelRatio:e}=this;this.filter=`blur(${t*e}px)`}copyWorld(t,e,s,i){if(i&&(this.blendMode=i),e){const{pixelRatio:i}=this;s||(s=e),this.drawImage(t.view,e.x*i,e.y*i,e.width*i,e.height*i,s.x*i,s.y*i,s.width*i,s.height*i)}else this.drawImage(t.view,0,0);i&&(this.blendMode="source-over")}copyWorldToInner(t,e,s,i){if(i&&(this.blendMode=i),e.b||e.c)this.save(),this.resetTransform(),this.copyWorld(t,e,rt.tempToOuterOf(s,e)),this.restore();else{const{pixelRatio:i}=this;this.drawImage(t.view,e.x*i,e.y*i,e.width*i,e.height*i,s.x,s.y,s.width,s.height)}i&&(this.blendMode="source-over")}copyWorldByReset(t,e,s,i,r){this.resetTransform(),this.copyWorld(t,e,s,i),r||this.useWorldTransform()}useGrayscaleAlpha(t){let e,s;this.setTempBounds(t,!0,!0);const{context:i}=this,r=i.getImageData(lt.x,lt.y,lt.width,lt.height),{data:n}=r;for(let t=0,i=n.length;t<i;t+=4)s=.299*n[t]+.587*n[t+1]+.114*n[t+2],(e=n[t+3])&&(n[t+3]=255===e?s:e*(s/255));i.putImageData(r,lt.x,lt.y)}useMask(t,e,s){this.copyWorld(t,e,s,"destination-in")}useEraser(t,e,s){this.copyWorld(t,e,s,"destination-out")}fillWorld(t,e,s){s&&(this.blendMode=s),this.fillStyle=e,this.setTempBounds(t),this.fillRect(lt.x,lt.y,lt.width,lt.height),s&&(this.blendMode="source-over")}strokeWorld(t,e,s){s&&(this.blendMode=s),this.strokeStyle=e,this.setTempBounds(t),this.strokeRect(lt.x,lt.y,lt.width,lt.height),s&&(this.blendMode="source-over")}clearWorld(t,e){this.setTempBounds(t,e),this.clearRect(lt.x,lt.y,lt.width,lt.height)}clipWorld(t,e){this.beginPath(),this.setTempBounds(t,e),this.rect(lt.x,lt.y,lt.width,lt.height),this.clip()}clear(){const{pixelRatio:t}=this;this.clearRect(0,0,this.width*t+2,this.height*t+2)}setTempBounds(t,e,s){lt.set(t),s&&lt.intersect(this.bounds),lt.scale(this.pixelRatio),e&&lt.ceil()}isSameSize(t){return this.width===t.width&&this.height===t.height&&this.pixelRatio===t.pixelRatio}getSameCanvas(t,s){const i=this.manager?this.manager.get(this.size):e.canvas(Object.assign({},this.size));return i.save(),t&&(Gt(i.worldTransform,this.worldTransform),i.useWorldTransform()),s&&(i.smooth=this.smooth),i}recycle(t){this.recycled||(this.restore(),t?this.clearWorld(t,!0):this.clear(),this.manager?this.manager.recycle(this):this.destroy())}updateRender(t){}unrealCanvas(){}destroy(){this.manager=this.view=this.parentView=null}}const Jt={creator:{},parse(t,e){},convertToCanvasData(t,e){}},$t={N:21,D:22,X:23,G:24,F:25,O:26,P:27,U:28},Zt=Object.assign({M:1,m:10,L:2,l:20,H:3,h:30,V:4,v:40,C:5,c:50,S:6,s:60,Q:7,q:70,T:8,t:80,A:9,a:90,Z:11,z:11,R:12},$t),Kt={M:3,m:3,L:3,l:3,H:2,h:2,V:2,v:2,C:7,c:7,S:5,s:5,Q:5,q:5,T:3,t:3,A:8,a:8,Z:1,z:1,N:5,D:9,X:6,G:9,F:5,O:7,P:4,U:6},te={m:10,l:20,H:3,h:30,V:4,v:40,c:50,S:6,s:60,q:70,T:8,t:80,A:9,a:90},ee=Object.assign(Object.assign({},te),$t),se=Zt,ie={};for(let t in se)ie[se[t]]=t;const re={};for(let t in se)re[se[t]]=Kt[t];const ne={drawRoundRect(t,e,s,i,r,n){const o=a.fourNumber(n,Math.min(i/2,r/2)),h=e+i,l=s+r;o[0]?t.moveTo(e+o[0],s):t.moveTo(e,s),o[1]?t.arcTo(h,s,h,l,o[1]):t.lineTo(h,s),o[2]?t.arcTo(h,l,e,l,o[2]):t.lineTo(h,l),o[3]?t.arcTo(e,l,e,s,o[3]):t.lineTo(e,l),o[0]?t.arcTo(e,s,h,s,o[0]):t.lineTo(e,s)}},{sin:oe,cos:ae,atan2:he,ceil:le,abs:de,PI:ce,sqrt:ue,pow:_e}=Math,{setPoint:pe,addPoint:ge}=Y,{set:fe,toNumberPoints:ye}=L,{M:me,L:we,C:xe,Q:ve,Z:be}=Zt,Be={},ke={points(t,e,s,i){let r=ye(e);if(t.push(me,r[0],r[1]),s&&r.length>5){let e,n,o,a,h,l,d,c,u,_,p,g,f,y=r.length;const m=!0===s?.5:s;i&&(r=[r[y-2],r[y-1],...r,r[0],r[1],r[2],r[3]],y=r.length);for(let s=2;s<y-2;s+=2)e=r[s-2],n=r[s-1],o=r[s],a=r[s+1],h=r[s+2],l=r[s+3],p=ue(_e(o-e,2)+_e(a-n,2)),g=ue(_e(h-o,2)+_e(l-a,2)),f=p+g,p=m*p/f,g=m*g/f,h-=e,l-=n,d=o-p*h,c=a-p*l,2===s?i||t.push(ve,d,c,o,a):t.push(xe,u,_,d,c,o,a),u=o+g*h,_=a+g*l;i||t.push(ve,u,_,r[y-2],r[y-1])}else for(let e=2,s=r.length;e<s;e+=2)t.push(we,r[e],r[e+1]);i&&t.push(be)},rect(t,e,s,i,r){Jt.creator.path=t,Jt.creator.moveTo(e,s).lineTo(e+i,s).lineTo(e+i,s+r).lineTo(e,s+r).lineTo(e,s)},roundRect(t,e,s,i,r,n){Jt.creator.path=[],ne.drawRoundRect(Jt.creator,e,s,i,r,n),t.push(...Jt.convertToCanvasData(Jt.creator.path,!0))},arcTo(t,e,s,i,r,n,o,a,c,u,_){const p=i-e,g=r-s,f=n-i,y=o-r;let m=he(g,p),w=he(y,f),x=w-m;if(x<0&&(x+=l),x===ce||de(p+g)<1e-12||de(f+y)<1e-12)return t&&t.push(we,i,r),c&&(pe(c,e,s),ge(c,i,r)),_&&fe(_,e,s),void(u&&fe(u,i,r));const v=p*y-f*g<0,b=v?-1:1,B=a/ae(x/2),k=i+B*ae(m+x/2+d*b),R=r+B*oe(m+x/2+d*b);return m-=d*b,w-=d*b,Ce(t,k,R,a,a,0,m/h,w/h,v,c,u,_)},arc:(t,e,s,i,r,n,o,a,h,l)=>Ce(t,e,s,i,i,0,r,n,o,a,h,l),ellipse(t,e,s,i,r,n,o,a,c,u,_,p){const g=n*h,f=oe(g),y=ae(g);let m=o*h,w=a*h;m>ce&&(m-=l),w<0&&(w+=l);let x=w-m;x<0?x+=l:x>l&&(x-=l),c&&(x-=l);const v=le(de(x/d)),b=x/v,B=oe(b/4),k=8/3*B*B/oe(b/2);w=m+b;let R,S,C,T,P,O,A,L,E=ae(m),I=oe(m),M=C=y*i*E-f*r*I,W=T=f*i*E+y*r*I,D=e+C,F=s+T;t&&t.push(t.length?we:me,D,F),u&&pe(u,D,F),p&&fe(p,D,F);for(let n=0;n<v;n++)R=ae(w),S=oe(w),C=y*i*R-f*r*S,T=f*i*R+y*r*S,P=e+M-k*(y*i*I+f*r*E),O=s+W-k*(f*i*I-y*r*E),A=e+C+k*(y*i*S+f*r*R),L=s+T+k*(f*i*S-y*r*R),t&&t.push(xe,P,O,A,L,e+C,s+T),u&&Se(e+M,s+W,P,O,A,L,e+C,s+T,u,!0),M=C,W=T,E=R,I=S,m=w,w+=b;_&&fe(_,e+C,s+T)},quadraticCurveTo(t,e,s,i,r,n,o){t.push(xe,(e+2*i)/3,(s+2*r)/3,(n+2*i)/3,(o+2*r)/3,n,o)},toTwoPointBoundsByQuadraticCurve(t,e,s,i,r,n,o,a){Se(t,e,(t+2*s)/3,(e+2*i)/3,(r+2*s)/3,(n+2*i)/3,r,n,o,a)},toTwoPointBounds(t,e,s,i,r,n,o,a,h,l){const d=[];let c,u,_,p,g,f,y,m,w=t,x=s,v=r,b=o;for(let t=0;t<2;++t)if(1==t&&(w=e,x=i,v=n,b=a),c=-3*w+9*x-9*v+3*b,u=6*w-12*x+6*v,_=3*x-3*w,Math.abs(c)<1e-12){if(Math.abs(u)<1e-12)continue;p=-_/u,0<p&&p<1&&d.push(p)}else y=u*u-4*_*c,m=Math.sqrt(y),y<0||(g=(-u+m)/(2*c),0<g&&g<1&&d.push(g),f=(-u-m)/(2*c),0<f&&f<1&&d.push(f));l?ge(h,t,e):pe(h,t,e),ge(h,o,a);for(let l=0,c=d.length;l<c;l++)Re(d[l],t,e,s,i,r,n,o,a,Be),ge(h,Be.x,Be.y)},getPointAndSet(t,e,s,i,r,n,o,a,h,l){const d=1-t,c=d*d*d,u=3*d*d*t,_=3*d*t*t,p=t*t*t;l.x=c*e+u*i+_*n+p*a,l.y=c*s+u*r+_*o+p*h},getPoint(t,e,s,i,r,n,o,a,h){const l={};return Re(t,e,s,i,r,n,o,a,h,l),l}},{getPointAndSet:Re,toTwoPointBounds:Se,ellipse:Ce}=ke,{sin:Te,cos:Pe,sqrt:Oe,atan2:Ae}=Math,{ellipse:Le}=ke,Ee={ellipticalArc(e,s,i,r,n,o,a,d,c,u,_){const p=(c-s)/2,g=(u-i)/2,f=o*h,y=Te(f),m=Pe(f),w=-m*p-y*g,x=-m*g+y*p,v=r*r,b=n*n,B=x*x,k=w*w,R=v*b-v*B-b*k;let S=0;if(R<0){const t=Oe(1-R/(v*b));r*=t,n*=t}else S=(a===d?-1:1)*Oe(R/(v*B+b*k));const C=S*r*x/n,T=-S*n*w/r,P=Ae((x-T)/n,(w-C)/r),O=Ae((-x-T)/n,(-w-C)/r);let A=O-P;0===d&&A>0?A-=l:1===d&&A<0&&(A+=l);const L=s+p+m*C-y*T,E=i+g+y*C+m*T,I=A<0?1:0;_||t.ellipseToCurve?Le(e,L,E,r,n,o,P/h,O/h,I):r!==n||o?e.push(Zt.G,L,E,r,n,o,P/h,O/h,I):e.push(Zt.O,L,E,r,P/h,O/h,I)}},{M:Ie,m:Me,L:We,l:De,H:Fe,h:ze,V:Ne,v:Ye,C:Xe,c:je,S:Ue,s:Ve,Q:Ge,q:He,T:qe,t:Qe,A:Je,a:$e,Z:Ze,z:Ke,N:ts,D:es,X:ss,G:is,F:rs,O:ns,P:os,U:as}=Zt,{rect:hs,roundRect:ls,arcTo:ds,arc:cs,ellipse:us,quadraticCurveTo:_s}=ke,{ellipticalArc:ps}=Ee,gs=wt.get("PathConvert"),fs={},ys={current:{dot:0},stringify(t,e){let s,i,r,n=0,o=t.length,h="";for(;n<o;){i=t[n],s=re[i],h+=i===r?" ":ie[i];for(let i=1;i<s;i++)h+=a.float(t[n+i],e),i===s-1||(h+=" ");r=i,n+=s}return h},parse(t,e){let s,i,r,n="";const o=[],a=e?ee:te;for(let e=0,h=t.length;e<h;e++)i=t[e],mt[i]?("."===i&&(ms.dot&&(ws(o,n),n=""),ms.dot++),"0"===n&&"."!==i&&(ws(o,n),n=""),n+=i):Zt[i]?(n&&(ws(o,n),n=""),ms.name=Zt[i],ms.length=Kt[i],ms.index=0,ws(o,ms.name),!s&&a[i]&&(s=!0)):"-"===i||"+"===i?"e"===r||"E"===r?n+=i:(n&&ws(o,n),n=i):n&&(ws(o,n),n=""),r=i;return n&&ws(o,n),s?ys.toCanvasData(o,e):o},toCanvasData(t,e){let s,i,r,n,o,a=0,h=0,l=0,d=0,c=0,u=t.length;const _=[];for(;c<u;){switch(r=t[c],r){case Me:t[c+1]+=a,t[c+2]+=h;case Ie:a=t[c+1],h=t[c+2],_.push(Ie,a,h),c+=3;break;case ze:t[c+1]+=a;case Fe:a=t[c+1],_.push(We,a,h),c+=2;break;case Ye:t[c+1]+=h;case Ne:h=t[c+1],_.push(We,a,h),c+=2;break;case De:t[c+1]+=a,t[c+2]+=h;case We:a=t[c+1],h=t[c+2],_.push(We,a,h),c+=3;break;case Ve:t[c+1]+=a,t[c+2]+=h,t[c+3]+=a,t[c+4]+=h,r=Ue;case Ue:o=n===Xe||n===Ue,l=o?2*a-s:t[c+1],d=o?2*h-i:t[c+2],s=t[c+1],i=t[c+2],a=t[c+3],h=t[c+4],_.push(Xe,l,d,s,i,a,h),c+=5;break;case je:t[c+1]+=a,t[c+2]+=h,t[c+3]+=a,t[c+4]+=h,t[c+5]+=a,t[c+6]+=h,r=Xe;case Xe:s=t[c+3],i=t[c+4],a=t[c+5],h=t[c+6],_.push(Xe,t[c+1],t[c+2],s,i,a,h),c+=7;break;case Qe:t[c+1]+=a,t[c+2]+=h,r=qe;case qe:o=n===Ge||n===qe,s=o?2*a-s:t[c+1],i=o?2*h-i:t[c+2],e?_s(_,a,h,s,i,t[c+1],t[c+2]):_.push(Ge,s,i,t[c+1],t[c+2]),a=t[c+1],h=t[c+2],c+=3;break;case He:t[c+1]+=a,t[c+2]+=h,t[c+3]+=a,t[c+4]+=h,r=Ge;case Ge:s=t[c+1],i=t[c+2],e?_s(_,a,h,s,i,t[c+3],t[c+4]):_.push(Ge,s,i,t[c+3],t[c+4]),a=t[c+3],h=t[c+4],c+=5;break;case $e:t[c+6]+=a,t[c+7]+=h;case Je:ps(_,a,h,t[c+1],t[c+2],t[c+3],t[c+4],t[c+5],t[c+6],t[c+7],e),a=t[c+6],h=t[c+7],c+=8;break;case Ke:case Ze:_.push(Ze),c++;break;case ts:a=t[c+1],h=t[c+2],e?hs(_,a,h,t[c+3],t[c+4]):xs(_,t,c,5),c+=5;break;case es:a=t[c+1],h=t[c+2],e?ls(_,a,h,t[c+3],t[c+4],[t[c+5],t[c+6],t[c+7],t[c+8]]):xs(_,t,c,9),c+=9;break;case ss:a=t[c+1],h=t[c+2],e?ls(_,a,h,t[c+3],t[c+4],t[c+5]):xs(_,t,c,6),c+=6;break;case is:us(e?_:xs(_,t,c,9),t[c+1],t[c+2],t[c+3],t[c+4],t[c+5],t[c+6],t[c+7],t[c+8],null,fs),a=fs.x,h=fs.y,c+=9;break;case rs:e?us(_,t[c+1],t[c+2],t[c+3],t[c+4],0,0,360,!1):xs(_,t,c,5),a=t[c+1]+t[c+3],h=t[c+2],c+=5;break;case ns:cs(e?_:xs(_,t,c,7),t[c+1],t[c+2],t[c+3],t[c+4],t[c+5],t[c+6],null,fs),a=fs.x,h=fs.y,c+=7;break;case os:e?cs(_,t[c+1],t[c+2],t[c+3],0,360,!1):xs(_,t,c,4),a=t[c+1]+t[c+3],h=t[c+2],c+=4;break;case as:ds(e?_:xs(_,t,c,6),a,h,t[c+1],t[c+2],t[c+3],t[c+4],t[c+5],null,fs),a=fs.x,h=fs.y,c+=6;break;default:return gs.error(`command: ${r} [index:${c}]`,t),_}n=r}return _},objectToCanvasData(t){const e=[];return t.forEach((t=>{switch(t.name){case"M":e.push(Ie,t.x,t.y);break;case"L":e.push(We,t.x,t.y);break;case"C":e.push(Xe,t.x1,t.y1,t.x2,t.y2,t.x,t.y);break;case"Q":e.push(Ge,t.x1,t.y1,t.x,t.y);break;case"Z":e.push(Ze)}})),e},copyData(t,e,s,i){for(let r=s,n=s+i;r<n;r++)t.push(e[r])},pushData(t,e){ms.index===ms.length&&(ms.index=1,t.push(ms.name)),t.push(Number(e)),ms.index++,ms.dot=0}},{current:ms,pushData:ws,copyData:xs}=ys,{M:vs,L:bs,C:Bs,Q:ks,Z:Rs,N:Ss,D:Cs,X:Ts,G:Ps,F:Os,O:As,P:Ls,U:Es}=Zt,{getMinDistanceFrom:Is,getRadianFrom:Ms}=L,{tan:Ws,min:Ds,abs:Fs}=Math,zs={},Ns={beginPath(t){t.length=0},moveTo(t,e,s){t.push(vs,e,s)},lineTo(t,e,s){t.push(bs,e,s)},bezierCurveTo(t,e,s,i,r,n,o){t.push(Bs,e,s,i,r,n,o)},quadraticCurveTo(t,e,s,i,r){t.push(ks,e,s,i,r)},closePath(t){t.push(Rs)},rect(t,e,s,i,r){t.push(Ss,e,s,i,r)},roundRect(t,e,s,i,r,n){if("number"==typeof n)t.push(Ts,e,s,i,r,n);else{const o=a.fourNumber(n);o?t.push(Cs,e,s,i,r,...o):t.push(Ss,e,s,i,r)}},ellipse(t,e,s,i,r,n,o,a,h){void 0===n?t.push(Os,e,s,i,r):(void 0===o&&(o=0),void 0===a&&(a=360),t.push(Ps,e,s,i,r,n,o,a,h?1:0))},arc(t,e,s,i,r,n,o){void 0===r?t.push(Ls,e,s,i):(void 0===n&&(n=360),t.push(As,e,s,i,r,n,o?1:0))},arcTo(t,e,s,i,r,n,o,a){if(void 0!==o){const h=Ws(Ms(o,a,e,s,i,r)/2)*(Is(o,a,e,s,i,r)/2);t.push(Es,e,s,i,r,Ds(n,Fs(h)))}else t.push(Es,e,s,i,r,n)},drawEllipse(t,e,s,i,r,n,o,a,h){ke.ellipse(null,e,s,i,r,void 0===n?0:n,void 0===o?0:o,void 0===a?360:a,h,null,null,zs),t.push(vs,zs.x,zs.y),Ys(t,e,s,i,r,n,o,a,h)},drawArc(t,e,s,i,r,n,o){ke.arc(null,e,s,i,void 0===r?0:r,void 0===n?360:n,o,null,null,zs),t.push(vs,zs.x,zs.y),Xs(t,e,s,i,r,n,o)},drawPoints(t,e,s,i){ke.points(t,e,s,i)}},{ellipse:Ys,arc:Xs}=Ns,{moveTo:js,lineTo:Us,quadraticCurveTo:Vs,bezierCurveTo:Gs,closePath:Hs,beginPath:qs,rect:Qs,roundRect:Js,ellipse:$s,arc:Zs,arcTo:Ks,drawEllipse:ti,drawArc:ei,drawPoints:si}=Ns;class ii{set path(t){this.__path=t}get path(){return this.__path}constructor(t){this.set(t)}set(t){return this.__path=t?"string"==typeof t?Jt.parse(t):t:[],this}beginPath(){return qs(this.__path),this.paint(),this}moveTo(t,e){return js(this.__path,t,e),this.paint(),this}lineTo(t,e){return Us(this.__path,t,e),this.paint(),this}bezierCurveTo(t,e,s,i,r,n){return Gs(this.__path,t,e,s,i,r,n),this.paint(),this}quadraticCurveTo(t,e,s,i){return Vs(this.__path,t,e,s,i),this.paint(),this}closePath(){return Hs(this.__path),this.paint(),this}rect(t,e,s,i){return Qs(this.__path,t,e,s,i),this.paint(),this}roundRect(t,e,s,i,r){return Js(this.__path,t,e,s,i,r),this.paint(),this}ellipse(t,e,s,i,r,n,o,a){return $s(this.__path,t,e,s,i,r,n,o,a),this.paint(),this}arc(t,e,s,i,r,n){return Zs(this.__path,t,e,s,i,r,n),this.paint(),this}arcTo(t,e,s,i,r){return Ks(this.__path,t,e,s,i,r),this.paint(),this}drawEllipse(t,e,s,i,r,n,o,a){return ti(this.__path,t,e,s,i,r,n,o,a),this.paint(),this}drawArc(t,e,s,i,r,n){return ei(this.__path,t,e,s,i,r,n),this.paint(),this}drawPoints(t,e,s){return si(this.__path,t,e,s),this.paint(),this}clearPath(){return this.beginPath()}paint(){}}const{M:ri,L:ni,C:oi,Q:ai,Z:hi,N:li,D:di,X:ci,G:ui,F:_i,O:pi,P:gi,U:fi}=Zt,yi=wt.get("PathDrawer"),mi={drawPathByData(t,e){if(!e)return;let s,i=0,r=e.length;for(;i<r;)switch(s=e[i],s){case ri:t.moveTo(e[i+1],e[i+2]),i+=3;break;case ni:t.lineTo(e[i+1],e[i+2]),i+=3;break;case oi:t.bezierCurveTo(e[i+1],e[i+2],e[i+3],e[i+4],e[i+5],e[i+6]),i+=7;break;case ai:t.quadraticCurveTo(e[i+1],e[i+2],e[i+3],e[i+4]),i+=5;break;case hi:t.closePath(),i+=1;break;case li:t.rect(e[i+1],e[i+2],e[i+3],e[i+4]),i+=5;break;case di:t.roundRect(e[i+1],e[i+2],e[i+3],e[i+4],[e[i+5],e[i+6],e[i+7],e[i+8]]),i+=9;break;case ci:t.roundRect(e[i+1],e[i+2],e[i+3],e[i+4],e[i+5]),i+=6;break;case ui:t.ellipse(e[i+1],e[i+2],e[i+3],e[i+4],e[i+5]*h,e[i+6]*h,e[i+7]*h,e[i+8]),i+=9;break;case _i:t.ellipse(e[i+1],e[i+2],e[i+3],e[i+4],0,0,l,!1),i+=5;break;case pi:t.arc(e[i+1],e[i+2],e[i+3],e[i+4]*h,e[i+5]*h,e[i+6]),i+=7;break;case gi:t.arc(e[i+1],e[i+2],e[i+3],0,l,!1),i+=4;break;case fi:t.arcTo(e[i+1],e[i+2],e[i+3],e[i+4],e[i+5]),i+=6;break;default:return void yi.error(`command: ${s} [index:${i}]`,e)}}},{M:wi,L:xi,C:vi,Q:bi,Z:Bi,N:ki,D:Ri,X:Si,G:Ci,F:Ti,O:Pi,P:Oi,U:Ai}=Zt,{toTwoPointBounds:Li,toTwoPointBoundsByQuadraticCurve:Ei,arcTo:Ii,arc:Mi,ellipse:Wi}=ke,{addPointBounds:Di,copy:Fi,addPoint:zi,setPoint:Ni,addBounds:Yi,toBounds:Xi}=Y,ji=wt.get("PathBounds");let Ui,Vi,Gi;const Hi={},qi={},Qi={},Ji={toBounds(t,e){Ji.toTwoPointBounds(t,qi),Xi(qi,e)},toTwoPointBounds(t,e){if(!t||!t.length)return Ni(e,0,0);let s,i,r,n,o,a=0,h=0,l=0;const d=t.length;for(;a<d;)switch(o=t[a],0===a&&(o===Bi||o===vi||o===bi?Ni(e,h,l):Ni(e,t[a+1],t[a+2])),o){case wi:case xi:h=t[a+1],l=t[a+2],zi(e,h,l),a+=3;break;case vi:r=t[a+5],n=t[a+6],Li(h,l,t[a+1],t[a+2],t[a+3],t[a+4],r,n,Hi),Di(e,Hi),h=r,l=n,a+=7;break;case bi:s=t[a+1],i=t[a+2],r=t[a+3],n=t[a+4],Ei(h,l,s,i,r,n,Hi),Di(e,Hi),h=r,l=n,a+=5;break;case Bi:a+=1;break;case ki:h=t[a+1],l=t[a+2],Yi(e,h,l,t[a+3],t[a+4]),a+=5;break;case Ri:case Si:h=t[a+1],l=t[a+2],Yi(e,h,l,t[a+3],t[a+4]),a+=o===Ri?9:6;break;case Ci:Wi(null,t[a+1],t[a+2],t[a+3],t[a+4],t[a+5],t[a+6],t[a+7],t[a+8],Hi,Qi),0===a?Fi(e,Hi):Di(e,Hi),h=Qi.x,l=Qi.y,a+=9;break;case Ti:h=t[a+1],l=t[a+2],Vi=t[a+3],Gi=t[a+4],Yi(e,h-Vi,l-Gi,2*Vi,2*Gi),h+=Vi,a+=5;break;case Pi:Mi(null,t[a+1],t[a+2],t[a+3],t[a+4],t[a+5],t[a+6],Hi,Qi),0===a?Fi(e,Hi):Di(e,Hi),h=Qi.x,l=Qi.y,a+=7;break;case Oi:h=t[a+1],l=t[a+2],Ui=t[a+3],Yi(e,h-Ui,l-Ui,2*Ui,2*Ui),h+=Ui,a+=4;break;case Ai:Ii(null,h,l,t[a+1],t[a+2],t[a+3],t[a+4],t[a+5],Hi,Qi),0===a?Fi(e,Hi):Di(e,Hi),h=Qi.x,l=Qi.y,a+=6;break;default:return void ji.error(`command: ${o} [index:${a}]`,t)}}},{M:$i,L:Zi,C:Ki,Z:tr}=Zt,{getCenterX:er,getCenterY:sr}=L,{arcTo:ir}=Ns,rr={smooth(t,e,s){let i,r=0,n=0,o=0,a=0,h=0,l=0,d=0,c=0,u=0;const _=t.length,p=[];for(;r<_;)switch(i=t[r],i){case $i:a=c=t[r+1],h=u=t[r+2],r+=3,t[r]===Zi?(l=t[r+1],d=t[r+2],p.push($i,er(a,l),sr(h,d))):p.push($i,a,h);break;case Zi:switch(n=t[r+1],o=t[r+2],r+=3,t[r]){case Zi:ir(p,n,o,t[r+1],t[r+2],e,c,u);break;case tr:ir(p,n,o,a,h,e,c,u);break;default:p.push(Zi,n,o)}c=n,u=o;break;case Ki:p.push(Ki,t[r+1],t[r+2],t[r+3],t[r+4],t[r+5],t[r+6]),r+=7;break;case tr:ir(p,a,h,l,d,e,c,u),p.push(tr),r+=1}return i!==tr&&(p[1]=a,p[2]=h),p}};Jt.creator=new ii,Jt.parse=ys.parse,Jt.convertToCanvasData=ys.toCanvasData;const nr=new ii,{drawRoundRect:or}=ne;function ar(t){!function(t){t&&!t.roundRect&&(t.roundRect=function(t,e,s,i,r){or(this,t,e,s,i,r)})}(t)}const hr={opacityTypes:["png","webp","svg"],upperCaseTypeMap:{},mineType:t=>!t||t.startsWith("image")?t:("jpg"===t&&(t="jpeg"),"image/"+t),fileType(t){const e=t.split(".");return e[e.length-1]},isOpaqueImage(t){const e=lr.fileType(t);return["jpg","jpeg"].some((t=>t===e))},getExportOptions(t){switch(typeof t){case"object":return t;case"number":return{quality:t};case"boolean":return{blob:t};default:return{}}}},lr=hr;lr.opacityTypes.forEach((t=>lr.upperCaseTypeMap[t]=t.toUpperCase()));const dr=wt.get("TaskProcessor");class cr{constructor(t){this.parallel=!0,this.time=1,this.id=s.create(s.TASK),this.task=t}run(){return Nt(this,void 0,void 0,(function*(){try{this.task&&!this.isComplete&&this.parent.running&&(yield this.task())}catch(t){dr.error(t)}}))}complete(){this.isComplete=!0,this.parent=null,this.task=null}cancel(){this.isCancel=!0,this.complete()}}class ur{get total(){return this.list.length+this.delayNumber}get finishedIndex(){return this.isComplete?0:this.index+this.parallelSuccessNumber}get remain(){return this.isComplete?this.total:this.total-this.finishedIndex}get percent(){const{total:t}=this;let e=0,s=0;for(let i=0;i<t;i++)i<=this.finishedIndex?(s+=this.list[i].time,i===this.finishedIndex&&(e=s)):e+=this.list[i].time;return this.isComplete?1:s/e}constructor(t){this.config={parallel:6},this.list=[],this.running=!1,this.isComplete=!0,this.index=0,this.delayNumber=0,t&&Et.assign(this.config,t),this.empty()}add(t,e){let s,i,r,n;const o=new cr(t);return o.parent=this,"number"==typeof e?n=e:e&&(i=e.parallel,s=e.start,r=e.time,n=e.delay),r&&(o.time=r),!1===i&&(o.parallel=!1),void 0===n?this.push(o,s):(this.delayNumber++,setTimeout((()=>{this.delayNumber&&(this.delayNumber--,this.push(o,s))}),n)),this.isComplete=!1,o}push(t,e){this.list.push(t),!1===e||this.timer||(this.timer=setTimeout((()=>this.start())))}empty(){this.index=0,this.parallelSuccessNumber=0,this.list=[],this.parallelList=[],this.delayNumber=0}start(){this.running||(this.running=!0,this.isComplete=!1,this.run())}pause(){clearTimeout(this.timer),this.timer=null,this.running=!1}resume(){this.start()}skip(){this.index++,this.resume()}stop(){this.isComplete=!0,this.list.forEach((t=>{t.isComplete||t.cancel()})),this.pause(),this.empty()}run(){this.running&&(this.setParallelList(),this.parallelList.length>1?this.runParallelTasks():this.remain?this.runTask():this.onComplete())}runTask(){const t=this.list[this.index];t?t.run().then((()=>{this.onTask(t),this.index++,this.nextTask()})).catch((t=>{this.onError(t)})):this.nextTask()}runParallelTasks(){this.parallelList.forEach((t=>this.runParallelTask(t)))}runParallelTask(t){t.run().then((()=>{this.onTask(t),this.fillParallelTask()})).catch((t=>{this.onParallelError(t)}))}nextTask(){this.total===this.finishedIndex?this.onComplete():this.timer=setTimeout((()=>this.run()))}setParallelList(){let t;this.parallelList=[],this.parallelSuccessNumber=0;let e=this.index+this.config.parallel;e>this.list.length&&(e=this.list.length);for(let s=this.index;s<e&&(t=this.list[s],t.parallel);s++)this.parallelList.push(t)}fillParallelTask(){let t;const e=this.parallelList;this.parallelSuccessNumber++,e.pop();const s=e.length,i=this.finishedIndex+s;if(e.length){if(!this.running)return;i<this.total&&(t=this.list[i],t&&t.parallel&&(e.push(t),this.runParallelTask(t)))}else this.index+=this.parallelSuccessNumber,this.parallelSuccessNumber=0,this.nextTask()}onComplete(){this.stop(),this.config.onComplete&&this.config.onComplete()}onTask(t){t.complete(),this.config.onTask&&this.config.onTask()}onParallelError(t){this.parallelList.forEach((t=>{t.parallel=!1})),this.parallelList.length=0,this.parallelSuccessNumber=0,this.onError(t)}onError(t){this.pause(),this.config.onError&&this.config.onError(t)}destroy(){this.stop()}}const _r={map:{},recycledList:[],tasker:new ur,patternTasker:new ur,get isComplete(){return pr.tasker.isComplete},get(t){let s=pr.map[t.url];return s||(s=e.image(t),pr.map[t.url]=s),s.use++,s},recycle(t){t.use--,setTimeout((()=>{t.use||pr.recycledList.push(t)}))},clearRecycled(){const t=pr.recycledList;t.length>100&&(t.forEach((t=>{!t.use&&t.url&&(delete pr.map[t.url],t.destroy())})),t.length=0)},hasOpacityPixel:t=>hr.opacityTypes.some((e=>pr.isFormat(e,t))),isFormat(t,e){if(e.format===t)return!0;const{url:s}=e;if(s.startsWith("data:")){if(s.startsWith("data:"+hr.mineType(t)))return!0}else{if(s.includes("."+t)||s.includes("."+hr.upperCaseTypeMap[t]))return!0;if("png"===t&&!s.includes("."))return!0}return!1},destroy(){pr.map={},pr.recycledList=[]}},pr=_r,{IMAGE:gr,create:fr}=s;class yr{get url(){return this.config.url}get completed(){return this.ready||!!this.error}constructor(t){this.use=0,this.waitComplete=[],this.innerId=fr(gr),this.config=t||{url:""},this.isSVG=_r.isFormat("svg",t),this.hasOpacityPixel=_r.hasOpacityPixel(t)}load(e,s){return this.loading||(this.loading=!0,_r.tasker.add((()=>Nt(this,void 0,void 0,(function*(){return yield t.origin.loadImage(this.url).then((t=>{this.ready=!0,this.width=t.naturalWidth||t.width,this.height=t.naturalHeight||t.height,this.view=t,this.onComplete(!0)})).catch((t=>{this.error=t,this.onComplete(!1)}))}))))),this.waitComplete.push(e,s),this.waitComplete.length-2}unload(t,e){const s=this.waitComplete;if(e){const e=s[t+1];e&&e({type:"stop"})}s[t]=s[t+1]=void 0}onComplete(t){let e;this.waitComplete.forEach(((s,i)=>{e=i%2,s&&(t?e||s(this):e&&s(this.error))})),this.waitComplete.length=0,this.loading=!1}getCanvas(e,s,i,r){if(e||(e=this.width),s||(s=this.height),this.cache){let{params:t,data:e}=this.cache;for(let s in t)if(t[s]!==arguments[s]){e=null;break}if(e)return e}const n=t.origin.createCanvas(e,s),o=n.getContext("2d");return i&&(o.globalAlpha=i),o.drawImage(this.view,0,0,e,s),this.cache=this.use>1?{data:n,params:arguments}:null,n}getPattern(e,s,i,r){const n=t.canvas.createPattern(e,s);try{i&&n.setTransform&&(n.setTransform(i),i=null)}catch(t){}return r&&(r.transform=i),n}destroy(){this.config={url:""},this.cache=null,this.waitComplete.length=0}}function mr(t,e,s,i){i||(s.configurable=s.enumerable=!0),Object.defineProperty(t,e,s)}function wr(t,e){return Object.getOwnPropertyDescriptor(t,e)}function xr(t,e){return(s,i)=>br(s,i,t,e&&e(i))}function vr(t){return t}function br(t,e,s,i){const r={get(){return this.__getAttr(e)},set(t){this.__setAttr(e,t)}};mr(t,e,Object.assign(r,i||{})),Qr(t,e,s)}function Br(t){return xr(t)}function kr(t,e){return xr(t,(t=>({set(s){this.__setAttr(t,s,e)&&(this.__layout.matrixChanged||this.__layout.matrixChange())}})))}function Rr(t){return xr(t,(t=>({set(e){this.__setAttr(t,e)&&(this.__layout.matrixChanged||this.__layout.matrixChange(),this.__hasAutoLayout=!!(this.origin||this.around||this.flow),this.__local||this.__layout.createLocal())}})))}function Sr(t,e){return xr(t,(t=>({set(s){this.__setAttr(t,s,e)&&(this.__layout.scaleChanged||this.__layout.scaleChange())}})))}function Cr(t,e){return xr(t,(t=>({set(s){this.__setAttr(t,s,e)&&(this.__layout.rotationChanged||this.__layout.rotationChange())}})))}function Tr(t,e){return xr(t,(t=>({set(s){this.__setAttr(t,s,e)&&Or(this)}})))}function Pr(t){return xr(t,(t=>({set(e){this.__setAttr(t,e)&&(Or(this),this.__.__removeNaturalSize())}})))}function Or(t){t.__layout.boxChanged||t.__layout.boxChange(),t.__hasAutoLayout&&(t.__layout.matrixChanged||t.__layout.matrixChange())}function Ar(t){return xr(t,(t=>({set(e){const s=this.__;2!==s.__pathInputed&&(s.__pathInputed=e?1:0),e||(s.__pathForRender=void 0),this.__setAttr(t,e),Or(this)}})))}const Lr=Tr;function Er(t){return xr(t,(t=>({set(e){this.__setAttr(t,e)&&Ir(this)}})))}function Ir(t){t.__layout.strokeChanged||t.__layout.strokeChange(),t.__.__useArrow&&Or(t)}const Mr=Er;function Wr(t){return xr(t,(t=>({set(e){this.__setAttr(t,e),this.__layout.renderChanged||this.__layout.renderChange()}})))}function Dr(t){return xr(t,(t=>({set(e){this.__setAttr(t,e)&&(this.__layout.surfaceChanged||this.__layout.surfaceChange())}})))}function Fr(t){return xr(t,(t=>({set(e){this.__setAttr(t,e)&&(this.__layout.opacityChanged||this.__layout.opacityChange()),this.mask&&Nr(this)}})))}function zr(t){return xr(t,(t=>({set(e){const s=this.visible;if(!0===s&&0===e){if(this.animationOut)return this.__runAnimation("out",(()=>Yr(this,t,e,s)))}else 0===s&&!0===e&&this.animation&&this.__runAnimation("in");Yr(this,t,e,s),this.mask&&Nr(this)}})))}function Nr(t){const{parent:e}=t;if(e){const{__hasMask:t}=e;e.__updateMask(),t!==e.__hasMask&&e.forceUpdate()}}function Yr(t,e,s,i){t.__setAttr(e,s)&&(t.__layout.opacityChanged||t.__layout.opacityChange(),0!==i&&0!==s||Or(t))}function Xr(t){return xr(t,(t=>({set(e){this.__setAttr(t,e)&&(this.__layout.surfaceChanged||this.__layout.surfaceChange(),this.waitParent((()=>{this.parent.__layout.childrenSortChange()})))}})))}function jr(t){return xr(t,(t=>({set(e){this.__setAttr(t,e)&&(this.__layout.boxChanged||this.__layout.boxChange(),this.waitParent((()=>{this.parent.__updateMask(e)})))}})))}function Ur(t){return xr(t,(t=>({set(e){this.__setAttr(t,e)&&this.waitParent((()=>{this.parent.__updateEraser(e)}))}})))}function Vr(t){return xr(t,(t=>({set(e){this.__setAttr(t,e)&&(this.__layout.hitCanvasChanged=!0,wt.showHitView&&(this.__layout.surfaceChanged||this.__layout.surfaceChange()),this.leafer&&this.leafer.updateCursor())}})))}function Gr(t){return xr(t,(t=>({set(e){this.__setAttr(t,e),this.leafer&&this.leafer.updateCursor()}})))}function Hr(t){return(e,s)=>{mr(e,"__DataProcessor",{get:()=>t})}}function qr(t){return(e,s)=>{mr(e,"__LayoutProcessor",{get:()=>t})}}function Qr(t,e,s){const i=t.__DataProcessor.prototype,r="_"+e,n=function(t){return"set"+t.charAt(0).toUpperCase()+t.slice(1)}(e),o={get(){const t=this[r];return void 0===t?s:t},set(t){this[r]=t}};if(void 0===s)o.get=function(){return this[r]};else if("object"==typeof s){const{clone:t}=Et;o.get=function(){let e=this[r];return void 0===e&&(this[r]=e=t(s)),e}}"width"===e?o.get=function(){const t=this[r];if(void 0===t){const t=this;return t._height&&t.__naturalWidth&&t.__useNaturalRatio?t._height*t.__naturalWidth/t.__naturalHeight:t.__naturalWidth||s}return t}:"height"===e&&(o.get=function(){const t=this[r];if(void 0===t){const t=this;return t._width&&t.__naturalHeight&&t.__useNaturalRatio?t._width*t.__naturalHeight/t.__naturalWidth:t.__naturalHeight||s}return t});let a,h=i;for(;!a&&h;)a=wr(h,e),h=h.__proto__;a&&a.set&&(o.set=a.set),i[n]&&(o.set=i[n],delete i[n]),mr(i,e,o)}const Jr=new wt("rewrite"),$r=[],Zr=["destroy","constructor"];function Kr(t){return(e,s)=>{$r.push({name:e.constructor.name+"."+s,run:()=>{e[s]=t}})}}function tn(){return t=>{en()}}function en(t){$r.length&&($r.forEach((e=>{t&&Jr.error(e.name,"需在Class上装饰@rewriteAble()"),e.run()})),$r.length=0)}function sn(t,e){return s=>{var i;(t.prototype?(i=t.prototype,Object.getOwnPropertyNames(i)):Object.keys(t)).forEach((i=>{if(!(Zr.includes(i)||e&&e.includes(i)))if(t.prototype){wr(t.prototype,i).writable&&(s.prototype[i]=t.prototype[i])}else s.prototype[i]=t[i]}))}}function rn(){return t=>{Ct.register(t)}}function nn(){return t=>{Ot.register(t)}}setTimeout((()=>en(!0)));const{copy:on,toInnerPoint:an,toOuterPoint:hn,scaleOfOuter:ln,rotateOfOuter:dn,skewOfOuter:cn,multiplyParent:un,divideParent:_n,getLayout:pn}=v,gn={},fn={updateAllMatrix(t,e,s){if(e&&t.__hasAutoLayout&&t.__layout.matrixChanged&&(s=!0),wn(t,e,s),t.isBranch){const{children:i}=t;for(let t=0,r=i.length;t<r;t++)mn(i[t],e,s)}},updateMatrix(t,e,s){const i=t.__layout;e?s&&(i.waitAutoLayout=!0,t.__hasAutoLayout&&(i.matrixChanged=!1)):i.waitAutoLayout&&(i.waitAutoLayout=!1),i.matrixChanged&&t.__updateLocalMatrix(),i.waitAutoLayout||t.__updateWorldMatrix()},updateBounds(t){const e=t.__layout;e.boundsChanged&&t.__updateLocalBounds(),e.waitAutoLayout||t.__updateWorldBounds()},updateAllWorldOpacity(t){if(t.__updateWorldOpacity(),t.isBranch){const{children:e}=t;for(let t=0,s=e.length;t<s;t++)xn(e[t])}},updateAllChange(t){if(xn(t),t.__updateChange(),t.isBranch){const{children:e}=t;for(let t=0,s=e.length;t<s;t++)vn(e[t])}},worldHittable(t){for(;t;){if(!t.__.hittable)return!1;t=t.parent}return!0},moveWorld(t,e,s=0,i,r){const n="object"==typeof e?Object.assign({},e):{x:e,y:s};i?hn(t.localTransform,n,n,!0):t.parent&&an(t.parent.worldTransform,n,n,!0),yn.moveLocal(t,n.x,n.y,r)},moveLocal(t,e,s=0,i){"object"==typeof e&&(s=e.y,e=e.x),e+=t.x,s+=t.y,i?t.animate({x:e,y:s},i):(t.x=e,t.y=s)},zoomOfWorld(t,e,s,i,r){yn.zoomOfLocal(t,Bn(t,e),s,i,r)},zoomOfLocal(t,e,s,i=s,r){on(gn,t.__localMatrix),ln(gn,e,s,i),t.origin||t.around?yn.setTransform(t,gn,r):(bn(t,gn),t.scaleResize(s,i,!0!==r))},rotateOfWorld(t,e,s){yn.rotateOfLocal(t,Bn(t,e),s)},rotateOfLocal(t,e,s){on(gn,t.__localMatrix),dn(gn,e,s),t.origin||t.around?yn.setTransform(t,gn):(bn(t,gn),t.rotation=a.formatRotation(t.rotation+s))},skewOfWorld(t,e,s,i,r){yn.skewOfLocal(t,Bn(t,e),s,i,r)},skewOfLocal(t,e,s,i=0,r){on(gn,t.__localMatrix),cn(gn,e,s,i),yn.setTransform(t,gn,r)},transformWorld(t,e,s){on(gn,t.worldTransform),un(gn,e),t.parent&&_n(gn,t.parent.worldTransform),yn.setTransform(t,gn,s)},transform(t,e,s){on(gn,t.localTransform),un(gn,e),yn.setTransform(t,gn,s)},setTransform(t,e,s){const i=t.__,r=i.origin&&yn.getInnerOrigin(t,i.origin),n=pn(e,r,i.around&&yn.getInnerOrigin(t,i.around));if(s){const e=n.scaleX/t.scaleX,s=n.scaleY/t.scaleY;if(delete n.scaleX,delete n.scaleY,r){rt.scale(t.boxBounds,Math.abs(e),Math.abs(s));const o=yn.getInnerOrigin(t,i.origin);L.move(n,r.x-o.x,r.y-o.y)}t.set(n),t.scaleResize(e,s,!1)}else t.set(n)},getFlipTransform(t,e){const s={a:1,b:0,c:0,d:1,e:0,f:0},i="x"===e?1:-1;return ln(s,yn.getLocalOrigin(t,"center"),-1*i,1*i),s},getLocalOrigin:(t,e)=>L.tempToOuterOf(yn.getInnerOrigin(t,e),t.localTransform),getInnerOrigin(t,e){const s={};return pt.toPoint(e,t.boxBounds,s),s},getRelativeWorld:(t,e,s)=>(on(gn,t.worldTransform),_n(gn,e.worldTransform),s?gn:Object.assign({},gn)),drop(t,e,s,i){t.setTransform(yn.getRelativeWorld(t,e,!0),i),e.add(t,s)},hasParent(t,e){if(!e)return!1;for(;t;){if(e===t)return!0;t=t.parent}}},yn=fn,{updateAllMatrix:mn,updateMatrix:wn,updateAllWorldOpacity:xn,updateAllChange:vn}=yn;function bn(t,e){const{e:s,f:i}=t.__localMatrix;t.x+=e.e-s,t.y+=e.f-i}function Bn(t,e){return t.__layout.update(),t.parent?L.tempToInnerOf(e,t.parent.__world):e}const kn={worldBounds:t=>t.__world,localBoxBounds:t=>t.__.eraser||0===t.__.visible?null:t.__local||t.__layout,localStrokeBounds:t=>t.__.eraser||0===t.__.visible?null:t.__layout.localStrokeBounds,localRenderBounds:t=>t.__.eraser||0===t.__.visible?null:t.__layout.localRenderBounds,maskLocalBoxBounds:t=>t.__.mask?t.__localBoxBounds:null,maskLocalStrokeBounds:t=>t.__.mask?t.__layout.localStrokeBounds:null,maskLocalRenderBounds:t=>t.__.mask?t.__layout.localRenderBounds:null,excludeRenderBounds:(t,e)=>!(!e.bounds||e.bounds.hit(t.__world,e.matrix))||!(!e.hideBounds||!e.hideBounds.includes(t.__world,e.matrix))},{updateBounds:Rn}=fn,Sn={sort:(t,e)=>t.__.zIndex===e.__.zIndex?t.__tempNumber-e.__tempNumber:t.__.zIndex-e.__.zIndex,pushAllChildBranch(t,e){if(t.__tempNumber=1,t.__.__childBranchNumber){const{children:s}=t;for(let i=0,r=s.length;i<r;i++)(t=s[i]).isBranch&&(t.__tempNumber=1,e.add(t),Cn(t,e))}},pushAllParent(t,e){const{keys:s}=e;if(s)for(;t.parent&&void 0===s[t.parent.innerId];)e.add(t.parent),t=t.parent;else for(;t.parent;)e.add(t.parent),t=t.parent},pushAllBranchStack(t,e){let s=e.length;const{children:i}=t;for(let t=0,s=i.length;t<s;t++)i[t].isBranch&&e.push(i[t]);for(let t=s,i=e.length;t<i;t++)Tn(e[t],e)},updateBounds(t,e){const s=[t];Tn(t,s),Pn(s,e)},updateBoundsByBranchStack(t,e){let s,i;for(let r=t.length-1;r>-1;r--){s=t[r],i=s.children;for(let t=0,e=i.length;t<e;t++)Rn(i[t]);e&&e===s||Rn(s)}}},{pushAllChildBranch:Cn,pushAllBranchStack:Tn,updateBoundsByBranchStack:Pn}=Sn,On={run(t){if(t&&t.length){const e=t.length;for(let s=0;s<e;s++)t[s]();t.length===e?t.length=0:t.splice(0,e)}}},{getRelativeWorld:An}=fn,{toOuterOf:Ln,getPoints:En,copy:In}=rt,Mn="_localContentBounds",Wn="_worldContentBounds",Dn="_worldBoxBounds",Fn="_worldStrokeBounds";class zn{get contentBounds(){return this._contentBounds||this.boxBounds}set contentBounds(t){this._contentBounds=t}get strokeBounds(){return this._strokeBounds||this.boxBounds}get renderBounds(){return this._renderBounds||this.boxBounds}get localContentBounds(){return Ln(this.contentBounds,this.leaf.__localMatrix,this[Mn]||(this[Mn]={})),this[Mn]}get localStrokeBounds(){return this._localStrokeBounds||this}get localRenderBounds(){return this._localRenderBounds||this}get worldContentBounds(){return Ln(this.contentBounds,this.leaf.__world,this[Wn]||(this[Wn]={})),this[Wn]}get worldBoxBounds(){return Ln(this.boxBounds,this.leaf.__world,this[Dn]||(this[Dn]={})),this[Dn]}get worldStrokeBounds(){return Ln(this.strokeBounds,this.leaf.__world,this[Fn]||(this[Fn]={})),this[Fn]}get a(){return 1}get b(){return 0}get c(){return 0}get d(){return 1}get e(){return this.leaf.__.x}get f(){return this.leaf.__.y}get x(){return this.e+this.boxBounds.x}get y(){return this.f+this.boxBounds.y}get width(){return this.boxBounds.width}get height(){return this.boxBounds.height}constructor(t){this.leaf=t,this.boxBounds={x:0,y:0,width:0,height:0},this.leaf.__local&&(this._localRenderBounds=this._localStrokeBounds=this.leaf.__local),this.boxChange(),this.matrixChange()}createLocal(){const t=this.leaf.__local={a:1,b:0,c:0,d:1,e:0,f:0,x:0,y:0,width:0,height:0};this._localStrokeBounds||(this._localStrokeBounds=t),this._localRenderBounds||(this._localRenderBounds=t)}update(){const{leafer:e}=this.leaf;if(e)e.ready?e.watcher.changed&&e.layouter.layout():e.start();else{let e=this.leaf;for(;e.parent&&!e.parent.leafer;)e=e.parent;t.layout(e)}}getTransform(t="world"){this.update();const{leaf:e}=this;switch(t){case"world":return e.__world;case"local":return e.__localMatrix;case"inner":return v.defaultMatrix;case"page":t=e.zoomLayer;default:return An(e,t)}}getBounds(t,e="world"){switch(this.update(),e){case"world":return this.getWorldBounds(t);case"local":return this.getLocalBounds(t);case"inner":return this.getInnerBounds(t);case"page":e=this.leaf.zoomLayer;default:return new ht(this.getInnerBounds(t)).toOuterOf(this.getTransform(e))}}getInnerBounds(t="box"){switch(t){case"render":return this.renderBounds;case"content":if(this.contentBounds)return this.contentBounds;case"box":return this.boxBounds;case"stroke":return this.strokeBounds}}getLocalBounds(t="box"){switch(t){case"render":return this.localRenderBounds;case"stroke":return this.localStrokeBounds;case"content":if(this.contentBounds)return this.localContentBounds;case"box":return this.leaf.__localBoxBounds}}getWorldBounds(t="box"){switch(t){case"render":return this.leaf.__world;case"stroke":return this.worldStrokeBounds;case"content":if(this.contentBounds)return this.worldContentBounds;case"box":return this.worldBoxBounds}}getLayoutBounds(t,e="world",s){const{leaf:i}=this;let r,n,o,a=this.getInnerBounds(t);switch(e){case"world":r=i.getWorldPoint(a),n=i.__world;break;case"local":const{scaleX:t,scaleY:s,rotation:h,skewX:l,skewY:d}=i.__;o={scaleX:t,scaleY:s,rotation:h,skewX:l,skewY:d},r=i.getLocalPointByInner(a);break;case"inner":r=a,n=v.defaultMatrix;break;case"page":e=i.zoomLayer;default:r=i.getWorldPoint(a,e),n=An(i,e,!0)}if(o||(o=v.getLayout(n)),In(o,a),L.copy(o,r),s){const{scaleX:t,scaleY:e}=o,s=Math.abs(t),i=Math.abs(e);1===s&&1===i||(o.scaleX/=s,o.scaleY/=i,o.width*=s,o.height*=i)}return o}getLayoutPoints(t,e="world"){const{leaf:s}=this,i=En(this.getInnerBounds(t));let r;switch(e){case"world":r=null;break;case"local":r=s.parent;break;case"inner":break;case"page":e=s.zoomLayer;default:r=e}return void 0!==r&&i.forEach((t=>s.innerToWorld(t,null,!1,r))),i}shrinkContent(){const{x:t,y:e,width:s,height:i}=this.boxBounds;this._contentBounds={x:t,y:e,width:s,height:i}}spreadStroke(){const{x:t,y:e,width:s,height:i}=this.strokeBounds;this._strokeBounds={x:t,y:e,width:s,height:i},this._localStrokeBounds={x:t,y:e,width:s,height:i},this.renderSpread||this.spreadRenderCancel()}spreadRender(){const{x:t,y:e,width:s,height:i}=this.renderBounds;this._renderBounds={x:t,y:e,width:s,height:i},this._localRenderBounds={x:t,y:e,width:s,height:i}}shrinkContentCancel(){this._contentBounds=void 0}spreadStrokeCancel(){const t=this.renderBounds===this.strokeBounds;this._strokeBounds=this.boxBounds,this._localStrokeBounds=this.leaf.__localBoxBounds,t&&this.spreadRenderCancel()}spreadRenderCancel(){this._renderBounds=this._strokeBounds,this._localRenderBounds=this._localStrokeBounds}boxChange(){this.boxChanged=!0,this.localBoxChanged||this.localBoxChange(),this.hitCanvasChanged=!0}localBoxChange(){this.localBoxChanged=!0,this.boundsChanged=!0}strokeChange(){this.strokeChanged=!0,this.strokeSpread||(this.strokeSpread=1),this.boundsChanged=!0,this.hitCanvasChanged=!0}renderChange(){this.renderChanged=!0,this.renderSpread||(this.renderSpread=1),this.boundsChanged=!0}scaleChange(){this.scaleChanged=!0,this._scaleOrRotationChange()}rotationChange(){this.rotationChanged=!0,this.affectRotation=!0,this._scaleOrRotationChange()}_scaleOrRotationChange(){this.affectScaleOrRotation=!0,this.matrixChange(),this.leaf.__local||this.createLocal()}matrixChange(){this.matrixChanged=!0,this.localBoxChanged||this.localBoxChange()}surfaceChange(){this.surfaceChanged=!0}opacityChange(){this.opacityChanged=!0,this.surfaceChanged||this.surfaceChange()}childrenSortChange(){this.childrenSortChanged||(this.childrenSortChanged=!0,this.leaf.forceUpdate("surface"))}destroy(){}}class Nn{constructor(t,e){this.bubbles=!1,this.type=t,e&&(this.target=e)}stopDefault(){this.isStopDefault=!0,this.origin&&t.event.stopDefault(this.origin)}stopNow(){this.isStopNow=!0,this.isStop=!0,this.origin&&t.event.stopNow(this.origin)}stop(){this.isStop=!0,this.origin&&t.event.stop(this.origin)}}class Yn extends Nn{constructor(t,e,s){super(t,e),this.parent=s,this.child=e}}Yn.ADD="child.add",Yn.REMOVE="child.remove",Yn.CREATED="created",Yn.MOUNTED="mounted",Yn.UNMOUNTED="unmounted",Yn.DESTROY="destroy";class Xn extends Nn{constructor(t,e,s,i,r){super(t,e),this.attrName=s,this.oldValue=i,this.newValue=r}}Xn.CHANGE="property.change",Xn.LEAFER_CHANGE="property.leafer_change";class jn extends Nn{constructor(t,e){super(t),Object.assign(this,e)}}jn.LOAD="image.load",jn.LOADED="image.loaded",jn.ERROR="image.error";class Un extends Nn{get bigger(){if(!this.old)return!0;const{width:t,height:e}=this.old;return this.width>=t&&this.height>=e}get smaller(){return!this.bigger}get samePixelRatio(){return!this.old||this.pixelRatio===this.old.pixelRatio}constructor(t,e){"object"==typeof t?(super(Un.RESIZE),Object.assign(this,t)):super(t),this.old=e}}Un.RESIZE="resize";class Vn extends Nn{constructor(t,e){super(t),this.data=e}}Vn.REQUEST="watch.request",Vn.DATA="watch.data";class Gn extends Nn{constructor(t,e,s){super(t),e&&(this.data=e,this.times=s)}}Gn.CHECK_UPDATE="layout.check_update",Gn.REQUEST="layout.request",Gn.START="layout.start",Gn.BEFORE="layout.before",Gn.LAYOUT="layout",Gn.AFTER="layout.after",Gn.AGAIN="layout.again",Gn.END="layout.end";class Hn extends Nn{constructor(t,e,s,i){super(t),e&&(this.times=e),s&&(this.renderBounds=s,this.renderOptions=i)}}Hn.REQUEST="render.request",Hn.CHILD_START="render.child_start",Hn.START="render.start",Hn.BEFORE="render.before",Hn.RENDER="render",Hn.AFTER="render.after",Hn.AGAIN="render.again",Hn.END="render.end",Hn.NEXT="render.next";class qn extends Nn{}qn.START="leafer.start",qn.BEFORE_READY="leafer.before_ready",qn.READY="leafer.ready",qn.AFTER_READY="leafer.after_ready",qn.VIEW_READY="leafer.view_ready",qn.VIEW_COMPLETED="leafer.view_completed",qn.STOP="leafer.stop",qn.RESTART="leafer.restart",qn.END="leafer.end";const Qn={};class Jn{set event(t){this.on(t)}on(t,e,s){if(!e){let e,s=t;for(let t in s)e=s[t],e instanceof Array?this.on(t,e[0],e[1]):this.on(t,e);return}let i,r,n;s&&("once"===s?r=!0:"boolean"==typeof s?i=s:(i=s.capture,r=s.once));const o=$n(this,i,!0),a="string"==typeof t?t.split(" "):t,h=r?{listener:e,once:r}:{listener:e};a.forEach((t=>{t&&(n=o[t],n?-1===n.findIndex((t=>t.listener===e))&&n.push(h):o[t]=[h])}))}off(t,e,s){if(t){const i="string"==typeof t?t.split(" "):t;if(e){let t,r,n;s&&(t="boolean"==typeof s?s:"once"!==s&&s.capture);const o=$n(this,t);i.forEach((t=>{t&&(r=o[t],r&&(n=r.findIndex((t=>t.listener===e)),n>-1&&r.splice(n,1),r.length||delete o[t]))}))}else{const{__bubbleMap:t,__captureMap:e}=this;i.forEach((s=>{t&&delete t[s],e&&delete e[s]}))}}else this.__bubbleMap=this.__captureMap=void 0}on_(t,e,s,i){return s&&(e=e.bind(s)),this.on(t,e,i),{type:t,current:this,listener:e,options:i}}off_(t){if(!t)return;const e=t instanceof Array?t:[t];e.forEach((t=>t.current.off(t.type,t.listener,t.options))),e.length=0}once(t,e,s){this.on(t,e,{once:!0,capture:s})}emit(t,e,s){!e&&Ot.has(t)&&(e=Ot.get(t,{type:t,target:this,current:this}));const i=$n(this,s)[t];if(i){let r;for(let n=0,o=i.length;n<o&&!((r=i[n])&&(r.listener(e),r.once&&(this.off(t,r.listener,s),n--,o--),e&&e.isStopNow));n++);}this.syncEventer&&this.syncEventer.emitEvent(e,s)}emitEvent(t,e){t.current=this,this.emit(t.type,t,e)}hasEvent(t,e){if(this.syncEventer&&this.syncEventer.hasEvent(t,e))return!0;const{__bubbleMap:s,__captureMap:i}=this,r=s&&s[t],n=i&&i[t];return!!(void 0===e?r||n:e?n:r)}destroy(){this.__captureMap=this.__bubbleMap=this.syncEventer=null}}function $n(t,e,s){if(e){const{__captureMap:e}=t;return e||(s?t.__captureMap={}:Qn)}{const{__bubbleMap:e}=t;return e||(s?t.__bubbleMap={}:Qn)}}const{on:Zn,on_:Kn,off:to,off_:eo,once:so,emit:io,emitEvent:ro,hasEvent:no,destroy:oo}=Jn.prototype,ao={on:Zn,on_:Kn,off:to,off_:eo,once:so,emit:io,emitEvent:ro,hasEvent:no,destroyEventer:oo},{isFinite:ho}=Number,lo=wt.get("setAttr"),co={__setAttr(t,e,s){if(this.leaferIsCreated){const i=this.__.__getInput(t);if(s&&!ho(e)&&void 0!==e&&(lo.warn(this.innerName,t,e),e=void 0),"object"==typeof e||i!==e){this.__realSetAttr(t,e);const{CHANGE:s}=Xn,r=new Xn(s,this,t,i,e);return this.isLeafer?this.emitEvent(new Xn(Xn.LEAFER_CHANGE,this,t,i,e)):this.hasEvent(s)&&this.emitEvent(r),this.leafer.emitEvent(r),!0}return!1}return this.__realSetAttr(t,e),!0},__realSetAttr(t,e){const s=this.__;s[t]=e,this.__proxyData&&this.setProxyAttr(t,e),s.normalStyle&&(this.lockNormalStyle||void 0===s.normalStyle[t]||(s.normalStyle[t]=e))},__getAttr(t){return this.__proxyData?this.getProxyAttr(t):this.__.__get(t)}},{setLayout:uo,multiplyParent:_o,translateInner:po,defaultWorld:go}=v,{toPoint:fo,tempPoint:yo}=pt,mo={__updateWorldMatrix(){_o(this.__local||this.__layout,this.parent?this.parent.__world:go,this.__world,!!this.__layout.affectScaleOrRotation,this.__,this.parent&&this.parent.__)},__updateLocalMatrix(){if(this.__local){const t=this.__layout,e=this.__local,s=this.__;t.affectScaleOrRotation&&(t.scaleChanged||t.rotationChanged)&&(uo(e,s,null,null,t.affectRotation),t.scaleChanged=t.rotationChanged=!1),e.e=s.x+s.offsetX,e.f=s.y+s.offsetY,(s.around||s.origin)&&(fo(s.around||s.origin,t.boxBounds,yo),po(e,-yo.x,-yo.y,!s.around))}this.__layout.matrixChanged=!1}},{updateMatrix:wo,updateAllMatrix:xo}=fn,{updateBounds:vo}=Sn,{toOuterOf:bo,copyAndSpread:Bo,copy:ko}=rt,{toBounds:Ro}=Ji,So={__updateWorldBounds(){bo(this.__layout.renderBounds,this.__world,this.__world),this.__layout.resized&&(this.__onUpdateSize(),this.__layout.resized=!1)},__updateLocalBounds(){const t=this.__layout;t.boxChanged&&(this.__.__pathInputed||this.__updatePath(),this.__updateRenderPath(),this.__updateBoxBounds(),t.resized=!0),t.localBoxChanged&&(this.__local&&this.__updateLocalBoxBounds(),t.localBoxChanged=!1,t.strokeSpread&&(t.strokeChanged=!0),t.renderSpread&&(t.renderChanged=!0),this.parent&&this.parent.__layout.boxChange()),t.boxChanged=!1,t.strokeChanged&&(t.strokeSpread=this.__updateStrokeSpread(),t.strokeSpread?(t.strokeBounds===t.boxBounds&&t.spreadStroke(),this.__updateStrokeBounds(),this.__updateLocalStrokeBounds()):t.spreadStrokeCancel(),t.strokeChanged=!1,(t.renderSpread||t.strokeSpread!==t.strokeBoxSpread)&&(t.renderChanged=!0),this.parent&&this.parent.__layout.strokeChange(),t.resized=!0),t.renderChanged&&(t.renderSpread=this.__updateRenderSpread(),t.renderSpread?(t.renderBounds!==t.boxBounds&&t.renderBounds!==t.strokeBounds||t.spreadRender(),this.__updateRenderBounds(),this.__updateLocalRenderBounds()):t.spreadRenderCancel(),t.renderChanged=!1,this.parent&&this.parent.__layout.renderChange()),t.boundsChanged=!1},__updateLocalBoxBounds(){this.__hasMotionPath&&this.__updateMotionPath(),this.__hasAutoLayout&&this.__updateAutoLayout(),bo(this.__layout.boxBounds,this.__local,this.__local)},__updateLocalStrokeBounds(){bo(this.__layout.strokeBounds,this.__localMatrix,this.__layout.localStrokeBounds)},__updateLocalRenderBounds(){bo(this.__layout.renderBounds,this.__localMatrix,this.__layout.localRenderBounds)},__updateBoxBounds(){const t=this.__layout.boxBounds,e=this.__;e.__pathInputed?Ro(e.path,t):(t.x=0,t.y=0,t.width=e.width,t.height=e.height)},__updateAutoLayout(){this.__layout.matrixChanged=!0,this.isBranch?(this.leaferIsReady&&this.leafer.layouter.addExtra(this),this.__.flow?(this.__layout.boxChanged&&this.__updateFlowLayout(),xo(this),vo(this,this),this.__.__autoSide&&this.__updateBoxBounds(!0)):(xo(this),vo(this,this))):wo(this)},__updateNaturalSize(){const{__:t,__layout:e}=this;t.__naturalWidth=e.boxBounds.width,t.__naturalHeight=e.boxBounds.height},__updateStrokeBounds(){const t=this.__layout;Bo(t.strokeBounds,t.boxBounds,t.strokeBoxSpread)},__updateRenderBounds(){const t=this.__layout;t.renderSpread>0?Bo(t.renderBounds,t.boxBounds,t.renderSpread):ko(t.renderBounds,t.strokeBounds)}},Co={__render(t,e){if(this.__worldOpacity)if(t.setWorld(this.__nowWorld=this.__getNowWorld(e)),t.opacity=this.__.opacity,this.__.__single){if("path"===this.__.eraser)return this.__renderEraser(t,e);const s=t.getSameCanvas(!0,!0);this.__draw(s,e),this.__worldFlipped?t.copyWorldByReset(s,this.__nowWorld,null,this.__.__blendMode,!0):t.copyWorldToInner(s,this.__nowWorld,this.__layout.renderBounds,this.__.__blendMode),s.recycle(this.__nowWorld)}else this.__draw(t,e)},__clip(t,e){this.__worldOpacity&&(t.setWorld(this.__nowWorld=this.__getNowWorld(e)),this.__drawRenderPath(t),this.windingRule?t.clip(this.windingRule):t.clip())},__updateWorldOpacity(){this.__worldOpacity=this.__.visible?this.parent?this.parent.__worldOpacity*this.__.opacity:this.__.opacity:0,this.__layout.opacityChanged&&(this.__layout.opacityChanged=!1)}},{excludeRenderBounds:To}=kn,Po={__updateChange(){const{__layout:t}=this;t.childrenSortChanged&&(this.__updateSortChildren(),t.childrenSortChanged=!1),this.__.__checkSingle()},__render(t,e){if(this.__nowWorld=this.__getNowWorld(e),this.__worldOpacity)if(this.__.__single){if("path"===this.__.eraser)return this.__renderEraser(t,e);const s=t.getSameCanvas(!1,!0);this.__renderBranch(s,e);const i=this.__nowWorld;t.opacity=this.__.opacity,t.copyWorldByReset(s,i,i,this.__.__blendMode,!0),s.recycle(i)}else this.__renderBranch(t,e)},__renderBranch(t,e){if(this.__hasMask)this.__renderMask(t,e);else{const{children:s}=this;for(let i=0,r=s.length;i<r;i++)To(s[i],e)||s[i].__render(t,e)}},__clip(t,e){if(this.__worldOpacity){const{children:s}=this;for(let i=0,r=s.length;i<r;i++)To(s[i],e)||s[i].__clip(t,e)}}},{LEAF:Oo,create:Ao}=s,{toInnerPoint:Lo,toOuterPoint:Eo,multiplyParent:Io}=v,{toOuterOf:Mo}=rt,{copy:Wo,move:Do}=L,{moveLocal:Fo,zoomOfLocal:zo,rotateOfLocal:No,skewOfLocal:Yo,moveWorld:Xo,zoomOfWorld:jo,rotateOfWorld:Uo,skewOfWorld:Vo,transform:Go,transformWorld:Ho,setTransform:qo,getFlipTransform:Qo,getLocalOrigin:Jo,getRelativeWorld:$o,drop:Zo}=fn;let Ko=class{get tag(){return this.__tag}set tag(t){}get __tag(){return"Leaf"}get innerName(){return this.__.name||this.tag+this.innerId}get __DataProcessor(){return Mt}get __LayoutProcessor(){return zn}get leaferIsCreated(){return this.leafer&&this.leafer.created}get leaferIsReady(){return this.leafer&&this.leafer.ready}get isLeafer(){return!1}get isBranch(){return!1}get isBranchLeaf(){return!1}get __localMatrix(){return this.__local||this.__layout}get __localBoxBounds(){return this.__local||this.__layout}get worldTransform(){return this.__layout.getTransform("world")}get localTransform(){return this.__layout.getTransform("local")}get boxBounds(){return this.getBounds("box","inner")}get renderBounds(){return this.getBounds("render","inner")}get worldBoxBounds(){return this.getBounds("box")}get worldStrokeBounds(){return this.getBounds("stroke")}get worldRenderBounds(){return this.getBounds("render")}get worldOpacity(){return this.__layout.update(),this.__worldOpacity}get __worldFlipped(){return this.__world.scaleX<0||this.__world.scaleY<0}get __onlyHitMask(){return this.__hasMask&&!this.__.hitChildren}get __ignoreHitWorld(){return(this.__hasMask||this.__hasEraser)&&this.__.hitChildren}get __inLazyBounds(){const{leafer:t}=this;return t&&t.created&&t.lazyBounds.hit(this.__world)}get pathInputed(){return this.__.__pathInputed}set event(t){this.on(t)}constructor(t){this.innerId=Ao(Oo),this.reset(t),this.__bubbleMap&&this.__emitLifeEvent(Yn.CREATED)}reset(t){this.leafer&&this.leafer.forceRender(this.__world),this.__world={a:1,b:0,c:0,d:1,e:0,f:0,x:0,y:0,width:0,height:0,scaleX:1,scaleY:1},null!==t&&(this.__local={a:1,b:0,c:0,d:1,e:0,f:0,x:0,y:0,width:0,height:0}),this.__worldOpacity=1,this.__=new this.__DataProcessor(this),this.__layout=new this.__LayoutProcessor(this),this.__level&&this.resetCustom(),t&&(t.__&&(t=t.toJSON()),t.children?this.set(t):Object.assign(this,t))}resetCustom(){this.__hasMask=this.__hasEraser=null,this.forceUpdate()}waitParent(t,e){e&&(t=t.bind(e)),this.parent?t():this.on(Yn.ADD,t,"once")}waitLeafer(t,e){e&&(t=t.bind(e)),this.leafer?t():this.on(Yn.MOUNTED,t,"once")}nextRender(t,e,s){this.leafer?this.leafer.nextRender(t,e,s):this.waitLeafer((()=>this.leafer.nextRender(t,e,s)))}removeNextRender(t){this.nextRender(t,null,"off")}__bindLeafer(t){if(this.isLeafer&&null!==t&&(t=this),this.leafer&&!t&&this.leafer.leafs--,this.leafer=t,t?(t.leafs++,this.__level=this.parent?this.parent.__level+1:1,this.animation&&this.__runAnimation("in"),this.__bubbleMap&&this.__emitLifeEvent(Yn.MOUNTED)):this.__emitLifeEvent(Yn.UNMOUNTED),this.isBranch){const{children:e}=this;for(let s=0,i=e.length;s<i;s++)e[s].__bindLeafer(t)}}set(t,e){}get(t){}setAttr(t,e){this[t]=e}getAttr(t){return this[t]}getComputedAttr(t){return this.__[t]}toJSON(t){return t&&this.__layout.update(),this.__.__getInputData(null,t)}toString(t){return JSON.stringify(this.toJSON(t))}toSVG(){}__SVG(t){}toHTML(){}__setAttr(t,e){return!0}__getAttr(t){}setProxyAttr(t,e){}getProxyAttr(t){}find(t,e){}findTag(t){}findOne(t,e){}findId(t){}focus(t){}updateState(){}updateLayout(){this.__layout.update()}forceUpdate(t){void 0===t?t="width":"surface"===t&&(t="blendMode");const e=this.__.__getInput(t);this.__[t]=void 0===e?null:void 0,this[t]=e}forceRender(t,e){this.forceUpdate("surface")}__updateWorldMatrix(){}__updateLocalMatrix(){}__updateWorldBounds(){}__updateLocalBounds(){}__updateLocalBoxBounds(){}__updateLocalStrokeBounds(){}__updateLocalRenderBounds(){}__updateBoxBounds(){}__updateContentBounds(){}__updateStrokeBounds(){}__updateRenderBounds(){}__updateAutoLayout(){}__updateFlowLayout(){}__updateNaturalSize(){}__updateStrokeSpread(){return 0}__updateRenderSpread(){return 0}__onUpdateSize(){}__updateEraser(t){this.__hasEraser=!!t||this.children.some((t=>t.__.eraser))}__renderEraser(t,e){t.save(),this.__clip(t,e);const{renderBounds:s}=this.__layout;t.clearRect(s.x,s.y,s.width,s.height),t.restore()}__updateMask(t){this.__hasMask=this.children.some((t=>t.__.mask&&t.__.visible&&t.__.opacity))}__renderMask(t,e){}__getNowWorld(t){if(t.matrix){this.__cameraWorld||(this.__cameraWorld={});const e=this.__cameraWorld;return Io(this.__world,t.matrix,e,void 0,this.__world),Mo(this.__layout.renderBounds,e,e),e}return this.__world}getTransform(t){return this.__layout.getTransform(t||"local")}getBounds(t,e){return this.__layout.getBounds(t,e)}getLayoutBounds(t,e,s){return this.__layout.getLayoutBounds(t,e,s)}getLayoutPoints(t,e){return this.__layout.getLayoutPoints(t,e)}getWorldBounds(t,e,s){const i=e?$o(this,e):this.worldTransform,r=s?t:{};return Mo(t,i,r),r}worldToLocal(t,e,s,i){this.parent?this.parent.worldToInner(t,e,s,i):e&&Wo(e,t)}localToWorld(t,e,s,i){this.parent?this.parent.innerToWorld(t,e,s,i):e&&Wo(e,t)}worldToInner(t,e,s,i){i&&(i.innerToWorld(t,e,s),t=e||t),Lo(this.worldTransform,t,e,s)}innerToWorld(t,e,s,i){Eo(this.worldTransform,t,e,s),i&&i.worldToInner(e||t,null,s)}getBoxPoint(t,e,s,i){return this.getBoxPointByInner(this.getInnerPoint(t,e,s,i),null,null,!0)}getBoxPointByInner(t,e,s,i){const r=i?t:Object.assign({},t),{x:n,y:o}=this.boxBounds;return Do(r,-n,-o),r}getInnerPoint(t,e,s,i){const r=i?t:{};return this.worldToInner(t,r,s,e),r}getInnerPointByBox(t,e,s,i){const r=i?t:Object.assign({},t),{x:n,y:o}=this.boxBounds;return Do(r,n,o),r}getInnerPointByLocal(t,e,s,i){return this.getInnerPoint(t,this.parent,s,i)}getLocalPoint(t,e,s,i){const r=i?t:{};return this.worldToLocal(t,r,s,e),r}getLocalPointByInner(t,e,s,i){return this.getWorldPoint(t,this.parent,s,i)}getPagePoint(t,e,s,i){return(this.leafer?this.leafer.zoomLayer:this).getInnerPoint(t,e,s,i)}getWorldPoint(t,e,s,i){const r=i?t:{};return this.innerToWorld(t,r,s,e),r}getWorldPointByBox(t,e,s,i){return this.getWorldPoint(this.getInnerPointByBox(t,null,null,i),e,s,!0)}getWorldPointByLocal(t,e,s,i){const r=i?t:{};return this.localToWorld(t,r,s,e),r}getWorldPointByPage(t,e,s,i){return(this.leafer?this.leafer.zoomLayer:this).getWorldPoint(t,e,s,i)}setTransform(t,e){qo(this,t,e)}transform(t,e){Go(this,t,e)}move(t,e,s){Fo(this,t,e,s)}moveInner(t,e,s){Xo(this,t,e,!0,s)}scaleOf(t,e,s,i){zo(this,Jo(this,t),e,s,i)}rotateOf(t,e){No(this,Jo(this,t),e)}skewOf(t,e,s,i){Yo(this,Jo(this,t),e,s,i)}transformWorld(t,e){Ho(this,t,e)}moveWorld(t,e,s){Xo(this,t,e,!1,s)}scaleOfWorld(t,e,s,i){jo(this,t,e,s,i)}rotateOfWorld(t,e){Uo(this,t,e)}skewOfWorld(t,e,s,i){Vo(this,t,e,s,i)}flip(t){Go(this,Qo(this,t))}scaleResize(t,e=t,s){this.scaleX*=t,this.scaleY*=e}__scaleResize(t,e){}resizeWidth(t){}resizeHeight(t){}__hitWorld(t){return!0}__hit(t){return!0}__hitFill(t){return!0}__hitStroke(t,e){return!0}__hitPixel(t){return!0}__drawHitPath(t){}__updateHitCanvas(){}__render(t,e){}__drawFast(t,e){}__draw(t,e){}__clip(t,e){}__renderShape(t,e,s,i){}__updateWorldOpacity(){}__updateChange(){}__drawPath(t){}__drawRenderPath(t){}__updatePath(){}__updateRenderPath(){}getMotionPathData(){return Rt.need("path")}getMotionPoint(t){return Rt.need("path")}getMotionTotal(){return 0}__updateMotionPath(){}__runAnimation(t,e){}__updateSortChildren(){}add(t,e){}remove(t,e){this.parent&&this.parent.remove(this,e)}dropTo(t,e,s){Zo(this,t,e,s)}on(t,e,s){}off(t,e,s){}on_(t,e,s,i){}off_(t){}once(t,e,s){}emit(t,e,s){}emitEvent(t,e){}hasEvent(t,e){return!1}static changeAttr(t,e,s){s?this.addAttr(t,e,s):Qr(this.prototype,t,e)}static addAttr(t,e,s){s||(s=Tr),s(e)(this.prototype,t)}__emitLifeEvent(t){this.hasEvent(t)&&this.emitEvent(new Yn(t,this,this.parent))}destroy(){this.destroyed||(this.parent&&this.remove(),this.children&&this.clear(),this.__emitLifeEvent(Yn.DESTROY),this.__.destroy(),this.__layout.destroy(),this.destroyEventer(),this.destroyed=!0)}};Ko=zt([sn(co),sn(mo),sn(So),sn(ao),sn(Co)],Ko);const{setListWithFn:ta}=rt,{sort:ea}=Sn,{localBoxBounds:sa,localStrokeBounds:ia,localRenderBounds:ra,maskLocalBoxBounds:na,maskLocalStrokeBounds:oa,maskLocalRenderBounds:aa}=kn,ha=new wt("Branch");let la=class extends Ko{__updateStrokeSpread(){const{children:t}=this;for(let e=0,s=t.length;e<s;e++)if(t[e].__layout.strokeSpread)return 1;return 0}__updateRenderSpread(){const{children:t}=this;for(let e=0,s=t.length;e<s;e++)if(t[e].__layout.renderSpread)return 1;return 0}__updateBoxBounds(){ta(this.__layout.boxBounds,this.children,this.__hasMask?na:sa)}__updateStrokeBounds(){ta(this.__layout.strokeBounds,this.children,this.__hasMask?oa:ia)}__updateRenderBounds(){ta(this.__layout.renderBounds,this.children,this.__hasMask?aa:ra)}__updateSortChildren(){let t;const{children:e}=this;if(e.length>1){for(let s=0,i=e.length;s<i;s++)e[s].__tempNumber=s,e[s].__.zIndex&&(t=!0);e.sort(ea),this.__layout.affectChildrenSort=t}}add(t,e){if(t===this||t.destroyed)return ha.warn("add self or destroyed");const s=void 0===e;if(!t.__){if(t instanceof Array)return t.forEach((t=>{this.add(t,e),s||e++}));t=Ct.get(t.tag,t)}t.parent&&t.parent.remove(t),t.parent=this,s?this.children.push(t):this.children.splice(e,0,t),t.isBranch&&(this.__.__childBranchNumber=(this.__.__childBranchNumber||0)+1);const i=t.__layout;i.boxChanged||i.boxChange(),i.matrixChanged||i.matrixChange(),t.__bubbleMap&&t.__emitLifeEvent(Yn.ADD),this.leafer&&(t.__bindLeafer(this.leafer),this.leafer.created&&this.__emitChildEvent(Yn.ADD,t)),this.__layout.affectChildrenSort&&this.__layout.childrenSortChange()}addMany(...t){this.add(t)}remove(t,e){t?t.__?t.animationOut?t.__runAnimation("out",(()=>this.__remove(t,e))):this.__remove(t,e):this.find(t).forEach((t=>this.remove(t,e))):void 0===t&&super.remove(null,e)}removeAll(t){const{children:e}=this;e.length&&(this.children=[],this.__preRemove(),this.__.__childBranchNumber=0,e.forEach((e=>{this.__realRemoveChild(e),t&&e.destroy()})))}clear(){this.removeAll(!0)}__remove(t,e){const s=this.children.indexOf(t);s>-1&&(this.children.splice(s,1),t.isBranch&&(this.__.__childBranchNumber=(this.__.__childBranchNumber||1)-1),this.__preRemove(),this.__realRemoveChild(t),e&&t.destroy())}__preRemove(){this.__hasMask&&this.__updateMask(),this.__hasEraser&&this.__updateEraser(),this.__layout.boxChange(),this.__layout.affectChildrenSort&&this.__layout.childrenSortChange()}__realRemoveChild(t){t.__emitLifeEvent(Yn.REMOVE),t.parent=null,this.leafer&&(t.__bindLeafer(null),this.leafer.created&&(this.__emitChildEvent(Yn.REMOVE,t),this.leafer.hitCanvasManager&&this.leafer.hitCanvasManager.clear()))}__emitChildEvent(t,e){const s=new Yn(t,e,this);this.hasEvent(t)&&!this.isLeafer&&this.emitEvent(s),this.leafer.emitEvent(s)}};la=zt([sn(Po)],la);class da{get length(){return this.list.length}constructor(t){this.reset(),t&&(t instanceof Array?this.addList(t):this.add(t))}has(t){return t&&void 0!==this.keys[t.innerId]}indexAt(t){return this.list[t]}indexOf(t){const e=this.keys[t.innerId];return void 0===e?-1:e}add(t){const{list:e,keys:s}=this;void 0===s[t.innerId]&&(e.push(t),s[t.innerId]=e.length-1)}addAt(t,e=0){const{keys:s}=this;if(void 0===s[t.innerId]){const{list:i}=this;for(let t=e,r=i.length;t<r;t++)s[i[t].innerId]++;0===e?i.unshift(t):(e>i.length&&(e=i.length),i.splice(e,0,t)),s[t.innerId]=e}}addList(t){for(let e=0;e<t.length;e++)this.add(t[e])}remove(t){const{list:e}=this;let s;for(let i=0,r=e.length;i<r;i++)void 0!==s?this.keys[e[i].innerId]=i-1:e[i].innerId===t.innerId&&(s=i,delete this.keys[t.innerId]);void 0!==s&&e.splice(s,1)}sort(t){const{list:e}=this;t?e.sort(((t,e)=>e.__level-t.__level)):e.sort(((t,e)=>t.__level-e.__level))}forEach(t){this.list.forEach(t)}clone(){const t=new da;return t.list=[...this.list],t.keys=Object.assign({},this.keys),t}update(){this.keys={};const{list:t,keys:e}=this;for(let s=0,i=t.length;s<i;s++)e[t[s].innerId]=s}reset(){this.list=[],this.keys={}}destroy(){this.reset()}}class ca{get length(){return this._length}constructor(t){this._length=0,this.reset(),t&&(t instanceof Array?this.addList(t):this.add(t))}has(t){return void 0!==this.keys[t.innerId]}without(t){return void 0===this.keys[t.innerId]}sort(t){const{levels:e}=this;t?e.sort(((t,e)=>e-t)):e.sort(((t,e)=>t-e))}addList(t){t.forEach((t=>{this.add(t)}))}add(t){const{keys:e,levelMap:s}=this;e[t.innerId]||(e[t.innerId]=1,s[t.__level]?s[t.__level].push(t):(s[t.__level]=[t],this.levels.push(t.__level)),this._length++)}forEach(t){let e;this.levels.forEach((s=>{e=this.levelMap[s];for(let s=0,i=e.length;s<i;s++)t(e[s])}))}reset(){this.levelMap={},this.keys={},this.levels=[],this._length=0}destroy(){this.levelMap=null}}const ua="1.2.2";class _a extends Qt{get allowBackgroundColor(){return!1}init(){const{config:e}=this;let s=e.view||e.canvas;s?("string"==typeof s?("#"!==s[0]&&(s="#"+s),this.viewSelect=t.miniapp.select(s)):s.fields?this.viewSelect=s:this.initView(s),this.viewSelect&&t.miniapp.getSizeView(this.viewSelect).then((t=>{this.initView(t)}))):this.initView()}initView(e){e?this.view=e.view||e:(e={},this.__createView()),this.view.getContext?this.__createContext():this.unrealCanvas();const{width:s,height:i,pixelRatio:r}=this.config,n={width:s||e.width,height:i||e.height,pixelRatio:r};this.resize(n),this.context&&(this.viewSelect&&(t.renderCanvas=this),this.context.roundRect&&(this.roundRect=function(t,e,s,i,r){this.context.roundRect(t,e,s,i,"number"==typeof r?[r]:r)}),ar(this.context.__proto__))}__createView(){this.view=t.origin.createCanvas(1,1)}updateViewSize(){const{width:t,height:e,pixelRatio:s}=this;this.view.width=Math.ceil(t*s),this.view.height=Math.ceil(e*s)}updateClientBounds(e){this.viewSelect&&t.miniapp.getBounds(this.viewSelect).then((t=>{this.clientBounds=t,e&&e()}))}startAutoLayout(e,s){this.resizeListener=s,e&&(this.checkSize=this.checkSize.bind(this),t.miniapp.onWindowResize(this.checkSize))}checkSize(){this.viewSelect&&setTimeout((()=>{this.updateClientBounds((()=>{const{width:t,height:e}=this.clientBounds,{pixelRatio:s}=this,i={width:t,height:e,pixelRatio:s};this.isSameSize(i)||this.emitResize(i)}))}),500)}stopAutoLayout(){this.autoLayout=!1,this.resizeListener=null,t.miniapp.offWindowResize(this.checkSize)}unrealCanvas(){this.unreal=!0}emitResize(t){const e={};Et.copyAttrs(e,this,qt),this.resize(t),void 0!==this.width&&this.resizeListener(new Un(t,e))}}const{mineType:pa,fileType:ga}=hr;function fa(s,i){t.origin={createCanvas:(t,e,s)=>{const r={type:"2d",width:t,height:e};return i.createOffscreenCanvas?i.createOffscreenCanvas(r):i.createOffScreenCanvas(r)},canvasToDataURL:(t,e,s)=>t.toDataURL(pa(e),s),canvasToBolb:(t,e,s)=>t.toBuffer(e,{quality:s}),canvasSaveAs:(e,s,i)=>{let r=e.toDataURL(pa(ga(s)),i);return r=r.substring(r.indexOf("64,")+3),t.origin.download(r,s)},download:(e,s)=>new Promise(((r,n)=>{let o;s.includes("/")||(s=`${i.env.USER_DATA_PATH}/`+s,o=!0);const a=i.getFileSystemManager();a.writeFile({filePath:s,data:e,encoding:"base64",success(){o?t.miniapp.saveToAlbum(s).then((()=>{a.unlink({filePath:s}),r()})):r()},fail(t){n(t)}})})),loadImage:e=>new Promise(((s,i)=>{const r=t.canvas.view.createImage();r.onload=()=>{s(r)},r.onerror=t=>{i(t)},r.src=t.image.getRealURL(e)})),noRepeat:"repeat-x"},t.miniapp={select:t=>i.createSelectorQuery().select(t),getBounds:t=>new Promise((e=>{t.boundingClientRect().exec((t=>{const s=t[1];e({x:s.top,y:s.left,width:s.width,height:s.height})}))})),getSizeView:t=>new Promise((e=>{t.fields({node:!0,size:!0}).exec((t=>{const s=t[0];e({view:s.node,width:s.width,height:s.height})}))})),saveToAlbum:t=>new Promise((e=>{i.getSetting({success:s=>{s.authSetting["scope.writePhotosAlbum"]?i.saveImageToPhotosAlbum({filePath:t,success(){e(!0)}}):i.authorize({scope:"scope.writePhotosAlbum",success:()=>{i.saveImageToPhotosAlbum({filePath:t,success(){e(!0)}})},fail:()=>{}})}})})),onWindowResize(t){i.onWindowResize(t)},offWindowResize(t){i.offWindowResize(t)}},t.event={stopDefault(t){},stopNow(t){},stop(t){}},t.canvas=e.canvas(),t.conicGradientSupport=!!t.canvas.context.createConicGradient}Object.assign(e,{canvas:(t,e)=>new _a(t,e),image:t=>new yr(t)}),t.name="miniapp",t.requestRender=function(e){const{view:s}=t.renderCanvas||t.canvas;s.requestAnimationFrame?s.requestAnimationFrame(e):setTimeout(e,16)},mr(t,"devicePixelRatio",{get:()=>Math.max(1,wx.getSystemInfoSync().pixelRatio)});class ya{get childrenChanged(){return this.hasAdd||this.hasRemove||this.hasVisible}get updatedList(){if(this.hasRemove){const t=new da;return this.__updatedList.list.forEach((e=>{e.leafer&&t.add(e)})),t}return this.__updatedList}constructor(t,e){this.totalTimes=0,this.config={},this.__updatedList=new da,this.target=t,e&&(this.config=Et.default(e,this.config)),this.__listenEvents()}start(){this.disabled||(this.running=!0)}stop(){this.running=!1}disable(){this.stop(),this.__removeListenEvents(),this.disabled=!0}update(){this.changed=!0,this.running&&this.target.emit(Hn.REQUEST)}__onAttrChange(t){this.__updatedList.add(t.target),this.update()}__onChildEvent(t){t.type===Yn.ADD?(this.hasAdd=!0,this.__pushChild(t.child)):(this.hasRemove=!0,this.__updatedList.add(t.parent)),this.update()}__pushChild(t){this.__updatedList.add(t),t.isBranch&&this.__loopChildren(t)}__loopChildren(t){const{children:e}=t;for(let t=0,s=e.length;t<s;t++)this.__pushChild(e[t])}__onRquestData(){this.target.emitEvent(new Vn(Vn.DATA,{updatedList:this.updatedList})),this.__updatedList=new da,this.totalTimes++,this.changed=!1,this.hasVisible=!1,this.hasRemove=!1,this.hasAdd=!1}__listenEvents(){const{target:t}=this;this.__eventIds=[t.on_(Xn.CHANGE,this.__onAttrChange,this),t.on_([Yn.ADD,Yn.REMOVE],this.__onChildEvent,this),t.on_(Vn.REQUEST,this.__onRquestData,this)]}__removeListenEvents(){this.target.off_(this.__eventIds)}destroy(){this.target&&(this.stop(),this.__removeListenEvents(),this.target=null,this.__updatedList=null)}}const{updateAllMatrix:ma,updateBounds:wa,updateAllWorldOpacity:xa}=fn,{pushAllChildBranch:va,pushAllParent:ba}=Sn;const{worldBounds:Ba}=kn,ka={x:0,y:0,width:1e5,height:1e5};class Ra{constructor(t){this.updatedBounds=new ht,this.beforeBounds=new ht,this.afterBounds=new ht,t instanceof Array&&(t=new da(t)),this.updatedList=t}setBefore(){this.beforeBounds.setListWithFn(this.updatedList.list,Ba)}setAfter(){const{list:t}=this.updatedList;t.some((t=>t.noBounds))?this.afterBounds.set(ka):this.afterBounds.setListWithFn(t,Ba),this.updatedBounds.setList([this.beforeBounds,this.afterBounds])}merge(t){this.updatedList.addList(t.updatedList.list),this.beforeBounds.add(t.beforeBounds),this.afterBounds.add(t.afterBounds),this.updatedBounds.add(t.updatedBounds)}destroy(){this.updatedList=null}}const{updateAllMatrix:Sa,updateAllChange:Ca}=fn,Ta=wt.get("Layouter");class Pa{constructor(t,e){this.totalTimes=0,this.config={},this.__levelList=new ca,this.target=t,e&&(this.config=Et.default(e,this.config)),this.__listenEvents()}start(){this.disabled||(this.running=!0)}stop(){this.running=!1}disable(){this.stop(),this.__removeListenEvents(),this.disabled=!0}layout(){if(!this.running)return;const{target:t}=this;this.times=0;try{t.emit(Gn.START),this.layoutOnce(),t.emitEvent(new Gn(Gn.END,this.layoutedBlocks,this.times))}catch(t){Ta.error(t)}this.layoutedBlocks=null}layoutAgain(){this.layouting?this.waitAgain=!0:this.layoutOnce()}layoutOnce(){return this.layouting?Ta.warn("layouting"):this.times>3?Ta.warn("layout max times"):(this.times++,this.totalTimes++,this.layouting=!0,this.target.emit(Vn.REQUEST),this.totalTimes>1?this.partLayout():this.fullLayout(),this.layouting=!1,void(this.waitAgain&&(this.waitAgain=!1,this.layoutOnce())))}partLayout(){var t;if(!(null===(t=this.__updatedList)||void 0===t?void 0:t.length))return;const e=Bt.start("PartLayout"),{target:s,__updatedList:i}=this,{BEFORE:r,LAYOUT:n,AFTER:o}=Gn,a=this.getBlocks(i);a.forEach((t=>t.setBefore())),s.emitEvent(new Gn(r,a,this.times)),this.extraBlock=null,i.sort(),function(t,e){let s;t.list.forEach((t=>{s=t.__layout,e.without(t)&&!s.proxyZoom&&(s.matrixChanged?(ma(t,!0),e.add(t),t.isBranch&&va(t,e),ba(t,e)):s.boundsChanged&&(e.add(t),t.isBranch&&(t.__tempNumber=0),ba(t,e)))}))}(i,this.__levelList),function(t){let e,s,i;t.sort(!0),t.levels.forEach((r=>{e=t.levelMap[r];for(let t=0,r=e.length;t<r;t++){if(s=e[t],s.isBranch&&s.__tempNumber){i=s.children;for(let t=0,e=i.length;t<e;t++)i[t].isBranch||wa(i[t])}wa(s)}}))}(this.__levelList),function(t){let e;t.list.forEach((t=>{e=t.__layout,e.opacityChanged&&xa(t),e.stateStyleChanged&&setTimeout((()=>e.stateStyleChanged&&t.updateState())),t.__updateChange()}))}(i),this.extraBlock&&a.push(this.extraBlock),a.forEach((t=>t.setAfter())),s.emitEvent(new Gn(n,a,this.times)),s.emitEvent(new Gn(o,a,this.times)),this.addBlocks(a),this.__levelList.reset(),this.__updatedList=null,Bt.end(e)}fullLayout(){const t=Bt.start("FullLayout"),{target:e}=this,{BEFORE:s,LAYOUT:i,AFTER:r}=Gn,n=this.getBlocks(new da(e));e.emitEvent(new Gn(s,n,this.times)),Pa.fullLayout(e),n.forEach((t=>{t.setAfter()})),e.emitEvent(new Gn(i,n,this.times)),e.emitEvent(new Gn(r,n,this.times)),this.addBlocks(n),Bt.end(t)}static fullLayout(t){Sa(t,!0),t.isBranch?Sn.updateBounds(t):fn.updateBounds(t),Ca(t)}addExtra(t){if(!this.__updatedList.has(t)){const{updatedList:e,beforeBounds:s}=this.extraBlock||(this.extraBlock=new Ra([]));e.length?s.add(t.__world):s.set(t.__world),e.add(t)}}createBlock(t){return new Ra(t)}getBlocks(t){return[this.createBlock(t)]}addBlocks(t){this.layoutedBlocks?this.layoutedBlocks.push(...t):this.layoutedBlocks=t}__onReceiveWatchData(t){this.__updatedList=t.data.updatedList}__listenEvents(){const{target:t}=this;this.__eventIds=[t.on_(Gn.REQUEST,this.layout,this),t.on_(Gn.AGAIN,this.layoutAgain,this),t.on_(Vn.DATA,this.__onReceiveWatchData,this)]}__removeListenEvents(){this.target.off_(this.__eventIds)}destroy(){this.target&&(this.stop(),this.__removeListenEvents(),this.target=this.config=null)}}const Oa=wt.get("Renderer");class Aa{get needFill(){return!(this.canvas.allowBackgroundColor||!this.config.fill)}constructor(t,e,s){this.FPS=60,this.totalTimes=0,this.times=0,this.config={usePartRender:!0,maxFPS:60},this.target=t,this.canvas=e,s&&(this.config=Et.default(s,this.config)),this.__listenEvents()}start(){this.running=!0,this.update(!1)}stop(){this.running=!1}update(t=!0){this.changed||(this.changed=t),this.__requestRender()}requestLayout(){this.target.emit(Gn.REQUEST)}render(t){if(!this.running||!this.canvas.view)return this.update();const{target:e}=this;this.times=0,this.totalBounds=new ht,Oa.log(e.innerName,"---\x3e");try{e.isApp||e.app.emit(Hn.CHILD_START,e),this.emitRender(Hn.START),this.renderOnce(t),this.emitRender(Hn.END,this.totalBounds),_r.clearRecycled()}catch(t){this.rendering=!1,Oa.error(t)}Oa.log("-------------|")}renderAgain(){this.rendering?this.waitAgain=!0:this.renderOnce()}renderOnce(t){if(this.rendering)return Oa.warn("rendering");if(this.times>3)return Oa.warn("render max times");if(this.times++,this.totalTimes++,this.rendering=!0,this.changed=!1,this.renderBounds=new ht,this.renderOptions={},t)this.emitRender(Hn.BEFORE),t();else{if(this.requestLayout(),this.ignore)return void(this.ignore=this.rendering=!1);this.emitRender(Hn.BEFORE),this.config.usePartRender&&this.totalTimes>1?this.partRender():this.fullRender()}this.emitRender(Hn.RENDER,this.renderBounds,this.renderOptions),this.emitRender(Hn.AFTER,this.renderBounds,this.renderOptions),this.updateBlocks=null,this.rendering=!1,this.waitAgain&&(this.waitAgain=!1,this.renderOnce())}partRender(){const{canvas:t,updateBlocks:e}=this;if(!e)return Oa.warn("PartRender: need update attr");this.mergeBlocks(),e.forEach((e=>{t.bounds.hit(e)&&!e.isEmpty()&&this.clipRender(e)}))}clipRender(t){const e=Bt.start("PartRender"),{canvas:s}=this,i=t.getIntersect(s.bounds),r=t.includes(this.target.__world),n=new ht(i);s.save(),r&&!wt.showRepaint?s.clear():(i.spread(10+1/this.canvas.pixelRatio).ceil(),s.clearWorld(i,!0),s.clipWorld(i,!0)),this.__render(i,r,n),s.restore(),Bt.end(e)}fullRender(){const t=Bt.start("FullRender"),{canvas:e}=this;e.save(),e.clear(),this.__render(e.bounds,!0),e.restore(),Bt.end(t)}__render(t,e,s){const i=t.includes(this.target.__world)?{includes:e}:{bounds:t,includes:e};this.needFill&&this.canvas.fillWorld(t,this.config.fill),wt.showRepaint&&this.canvas.strokeWorld(t,"red"),this.target.__render(this.canvas,i),this.renderBounds=s=s||t,this.renderOptions=i,this.totalBounds.isEmpty()?this.totalBounds=s:this.totalBounds.add(s),wt.showHitView&&this.renderHitView(i),wt.showBoundsView&&this.renderBoundsView(i),this.canvas.updateRender(s)}renderHitView(t){}renderBoundsView(t){}addBlock(t){this.updateBlocks||(this.updateBlocks=[]),this.updateBlocks.push(t)}mergeBlocks(){const{updateBlocks:t}=this;if(t){const e=new ht;e.setList(t),t.length=0,t.push(e)}}__requestRender(){if(this.requestTime)return;const e=this.requestTime=Date.now();t.requestRender((()=>{this.FPS=Math.min(60,Math.ceil(1e3/(Date.now()-e))),this.requestTime=0,this.running&&(this.changed&&this.canvas.view&&this.render(),this.target.emit(Hn.NEXT))}))}__onResize(t){if(!this.canvas.unreal){if(t.bigger||!t.samePixelRatio){const{width:e,height:s}=t.old;if(!new ht(0,0,e,s).includes(this.target.__world)||this.needFill||!t.samePixelRatio)return this.addBlock(this.canvas.bounds),void this.target.forceUpdate("surface")}this.addBlock(new ht(0,0,1,1)),this.update()}}__onLayoutEnd(t){t.data&&t.data.map((t=>{let e;t.updatedList&&t.updatedList.list.some((t=>(e=!t.__world.width||!t.__world.height,e&&(t.isLeafer||Oa.tip(t.innerName,": empty"),e=!t.isBranch||t.isBranchLeaf),e))),this.addBlock(e?this.canvas.bounds:t.updatedBounds)}))}emitRender(t,e,s){this.target.emitEvent(new Hn(t,this.times,e,s))}__listenEvents(){const{target:t}=this;this.__eventIds=[t.on_(Hn.REQUEST,this.update,this),t.on_(Gn.END,this.__onLayoutEnd,this),t.on_(Hn.AGAIN,this.renderAgain,this),t.on_(Un.RESIZE,this.__onResize,this)]}__removeListenEvents(){this.target.off_(this.__eventIds)}destroy(){this.target&&(this.stop(),this.__removeListenEvents(),this.target=this.canvas=this.config=null)}}function La(t){return xr(t,(t=>({set(e){this.__setAttr(t,e),e&&(this.__.__useEffect=!0),this.__layout.renderChanged||this.__layout.renderChange()}})))}function Ea(t){return xr(t,(t=>({set(e){this.__setAttr(t,e),this.__layout.boxChanged||this.__layout.boxChange(),this.__updateSize()}})))}function Ia(){return(t,e)=>{const s="_"+e;mr(t,e,{set(t){this.isLeafer&&(this[s]=t)},get(){return this.isApp?this.tree.zoomLayer:this.isLeafer?this[s]||this:this.leafer&&this.leafer.zoomLayer}})}}Object.assign(e,{watcher:(t,e)=>new ya(t,e),layouter:(t,e)=>new Pa(t,e),renderer:(t,e,s)=>new Aa(t,e,s),selector:(t,e)=>{},interaction:(t,e,s,i)=>{}}),t.layout=Pa.fullLayout;const Ma={},Wa={},Da={number:(t,e)=>"object"==typeof t?"percent"===t.type?t.value*e:t.value:t},Fa={},za={},Na={},Ya={},Xa={},ja={},Ua={setStyleName:(t,e,s)=>Rt.need("state"),set:(t,e)=>Rt.need("state")},Va={list:{},register(t,e){Va.list[t]=e},get:t=>Va.list[t]},{parse:Ga,objectToCanvasData:Ha}=ys,qa={},Qa=wt.get("UIData");class Ja extends Mt{get scale(){const{scaleX:t,scaleY:e}=this;return t!==e?{x:t,y:e}:t}get __strokeWidth(){const{strokeWidth:t,strokeWidthFixed:e}=this;if(e){const e=this.__leaf;let{scaleX:s}=e.__nowWorld||e.__world;return s<0&&(s=-s),s>1?t/s:t}return t}get __hasStroke(){return this.stroke&&this.strokeWidth}get __hasMultiPaint(){const t=this;return!!(t.__isFills&&t.fill.length>1||t.__isStrokes&&t.stroke.length>1||t.__useEffect)||t.fill&&this.__hasStroke}get __clipAfterFill(){const t=this;return t.cornerRadius||t.innerShadow||t.__pathInputed}get __autoWidth(){return!this._width}get __autoHeight(){return!this._height}get __autoSide(){return!this._width||!this._height}get __autoSize(){return!this._width&&!this._height}setVisible(t){this._visible=t;const{leafer:e}=this.__leaf;e&&(e.watcher.hasVisible=!0)}setWidth(t){t<0?(this._width=-t,this.__leaf.scaleX*=-1,Qa.warn("width < 0, instead -scaleX ",this)):this._width=t}setHeight(t){t<0?(this._height=-t,this.__leaf.scaleY*=-1,Qa.warn("height < 0, instead -scaleY",this)):this._height=t}setFill(t){this.__naturalWidth&&this.__removeNaturalSize(),"string"!=typeof t&&t?"object"==typeof t&&(this.__setInput("fill",t),this.__leaf.__layout.boxChanged||this.__leaf.__layout.boxChange(),this.__isFills=!0,this._fill||(this._fill=qa)):(this.__isFills&&(this.__removeInput("fill"),Na.recycleImage("fill",this),this.__isFills=!1,this.__pixelFill&&(this.__pixelFill=!1)),this._fill=t)}setStroke(t){"string"!=typeof t&&t?"object"==typeof t&&(this.__setInput("stroke",t),this.__leaf.__layout.boxChanged||this.__leaf.__layout.boxChange(),this.__isStrokes=!0,this._stroke||(this._stroke=qa)):(this.__isStrokes&&(this.__removeInput("stroke"),Na.recycleImage("stroke",this),this.__isStrokes=!1,this.__pixelStroke&&(this.__pixelStroke=!1)),this._stroke=t)}setPath(t){const e="string"==typeof t;e||t&&"object"==typeof t[0]?(this.__setInput("path",t),this._path=e?Ga(t):Ha(t)):(this.__input&&this.__removeInput("path"),this._path=t)}setShadow(t){this.__setInput("shadow",t),t instanceof Array?(t.some((t=>!1===t.visible))&&(t=t.filter((t=>!1!==t.visible))),this._shadow=t.length?t:null):this._shadow=t&&!1!==t.visible?[t]:null}setInnerShadow(t){this.__setInput("innerShadow",t),t instanceof Array?(t.some((t=>!1===t.visible))&&(t=t.filter((t=>!1!==t.visible))),this._innerShadow=t.length?t:null):this._innerShadow=t&&!1!==t.visible?[t]:null}__computePaint(){const{fill:t,stroke:e}=this.__input;t&&za.compute("fill",this.__leaf),e&&za.compute("stroke",this.__leaf),this.__needComputePaint=!1}}class $a extends Ja{}class Za extends $a{get __boxStroke(){return!this.__pathInputed}get __drawAfterFill(){const t=this;return"hide"===t.overflow&&(t.__clipAfterFill||t.innerShadow)&&t.__leaf.children.length}get __clipAfterFill(){return this.__leaf.isOverflow||super.__clipAfterFill}}class Ka extends $a{__getInputData(t,e){const s=super.__getInputData(t,e);return qt.forEach((t=>delete s[t])),s}}class th extends Za{}class eh extends Ja{}class sh extends Ja{get __boxStroke(){return!this.__pathInputed}}class ih extends Ja{get __boxStroke(){return!this.__pathInputed}}class rh extends Ja{}class nh extends Ja{}class oh extends Ja{get __pathInputed(){return 2}}class ah extends $a{}const hh={thin:100,"extra-light":200,light:300,normal:400,medium:500,"semi-bold":600,bold:700,"extra-bold":800,black:900};class lh extends Ja{get __useNaturalRatio(){return!1}setFontWeight(t){"string"==typeof t?(this.__setInput("fontWeight",t),this._fontWeight=hh[t]||400):(this.__input&&this.__removeInput("fontWeight"),this._fontWeight=t)}}class dh extends sh{setUrl(t){this.__setImageFill(t),this._url=t}__setImageFill(t){this.__leaf.image&&(this.__leaf.image=null),this.fill=t?{type:"image",mode:"stretch",url:t}:void 0}__getData(){const t=super.__getData();return delete t.fill,t}__getInputData(t,e){const s=super.__getInputData(t,e);return delete s.fill,s}}class ch extends sh{get __isCanvas(){return!0}get __drawAfterFill(){return!0}__getInputData(t,e){const s=super.__getInputData(t,e);return s.url=this.__leaf.canvas.toDataURL("image/png"),s}}const uh={__updateStrokeSpread(){let t=0,e=0;const s=this.__,{strokeAlign:i,strokeWidth:r}=s;if((s.stroke||"all"===s.hitStroke)&&r&&"inside"!==i&&(e=t="center"===i?r/2:r,!s.__boxStroke)){const e=s.__isLinePath?0:10*t,i="none"===s.strokeCap?0:r;t+=Math.max(e,i)}return s.__useArrow&&(t+=5*r),this.__layout.strokeBoxSpread=e,t},__updateRenderSpread(){let t=0;const{shadow:e,innerShadow:s,blur:i,backgroundBlur:r}=this.__;e&&e.forEach((e=>t=Math.max(t,Math.max(Math.abs(e.y),Math.abs(e.x))+(e.spread>0?e.spread:0)+1.5*e.blur))),i&&(t=Math.max(t,i));let n=t=Math.ceil(t);return s&&s.forEach((t=>n=Math.max(n,Math.max(Math.abs(t.y),Math.abs(t.x))+(t.spread<0?-t.spread:0)+1.5*t.blur))),r&&(n=Math.max(n,r)),this.__layout.renderShapeSpread=n,t+(this.__layout.strokeSpread||0)}},_h={__updateChange(){const t=this.__;if(t.__useEffect){const{shadow:e,innerShadow:s,blur:i,backgroundBlur:r}=this.__;t.__useEffect=!!(e||s||i||r)}t.__checkSingle();t.__isFills||t.__isStrokes||t.cornerRadius||t.__useEffect?t.__complex=!0:t.__complex&&(t.__complex=!1)},__drawFast(t,e){ph(this,t,e)},__draw(t,e){const s=this.__;if(s.__complex){s.__needComputePaint&&s.__computePaint();const{fill:i,stroke:r,__drawAfterFill:n}=s;if(this.__drawRenderPath(t),s.__useEffect){const o=za.shape(this,t,e);this.__nowWorld=this.__getNowWorld(e);const{shadow:a,innerShadow:h}=s;a&&Xa.shadow(this,t,o),i&&(s.__isFills?za.fills(i,this,t):za.fill(i,this,t)),n&&this.__drawAfterFill(t,e),h&&Xa.innerShadow(this,t,o),r&&(s.__isStrokes?za.strokes(r,this,t):za.stroke(r,this,t)),o.worldCanvas&&o.worldCanvas.recycle(),o.canvas.recycle()}else i&&(s.__isFills?za.fills(i,this,t):za.fill(i,this,t)),n&&this.__drawAfterFill(t,e),r&&(s.__isStrokes?za.strokes(r,this,t):za.stroke(r,this,t))}else s.__pathInputed?ph(this,t,e):this.__drawFast(t,e)},__renderShape(t,e,s,i){if(this.__worldOpacity){t.setWorld(this.__nowWorld=this.__getNowWorld(e));const{fill:r,stroke:n}=this.__;this.__drawRenderPath(t),r&&!s&&(this.__.__pixelFill?za.fills(r,this,t):za.fill("#000000",this,t)),this.__.__isCanvas&&this.__drawAfterFill(t,e),n&&!i&&(this.__.__pixelStroke?za.strokes(n,this,t):za.stroke("#000000",this,t))}},__drawAfterFill(t,e){this.__.__clipAfterFill?(t.save(),this.windingRule?t.clip(this.windingRule):t.clip(),this.__drawContent(t,e),t.restore()):this.__drawContent(t,e)}};function ph(t,e,s){const{fill:i,stroke:r,__drawAfterFill:n}=t.__;t.__drawRenderPath(e),i&&za.fill(i,t,e),n&&t.__drawAfterFill(e,s),r&&za.stroke(r,t,e)}const gh={__drawFast(t,e){let{width:s,height:i,fill:r,stroke:n,__drawAfterFill:o}=this.__;if(r&&(t.fillStyle=r,t.fillRect(0,0,s,i)),o&&this.__drawAfterFill(t,e),n){const{strokeAlign:r,__strokeWidth:o}=this.__;if(!o)return;t.setStroke(n,o,this.__);const a=o/2;switch(r){case"center":t.strokeRect(0,0,s,i);break;case"inside":s-=o,i-=o,s<0||i<0?(t.save(),this.__clip(t,e),t.strokeRect(a,a,s,i),t.restore()):t.strokeRect(a,a,s,i);break;case"outside":t.strokeRect(-a,-a,s+o,i+o)}}}};var fh;let yh=fh=class extends Ko{get app(){return this.leafer&&this.leafer.app}get isFrame(){return!1}set scale(t){a.assignScale(this,t)}get scale(){return this.__.scale}get pen(){const{path:t}=this.__;return nr.set(this.path=t||[]),t||this.__drawPathByBox(nr),nr}get editConfig(){}get editOuter(){return""}get editInner(){return""}constructor(t){super(t)}reset(t){}set(t,e){e?"temp"===e?(this.lockNormalStyle=!0,Object.assign(this,t),this.lockNormalStyle=!1):this.animate(t,e):Object.assign(this,t)}get(t){return"string"==typeof t?this.__.__getInput(t):this.__.__getInputData(t)}createProxyData(){}find(t,e){}findTag(t){return this.find({tag:t})}findOne(t,e){}findId(t){return this.findOne({id:t})}getPath(t,e){this.__layout.update();let s=e?this.__.__pathForRender:this.__.path;return s||(nr.set(s=[]),this.__drawPathByBox(nr)),t?ys.toCanvasData(s,!0):s}getPathString(t,e,s){return ys.stringify(this.getPath(t,e),s)}load(){this.__.__computePaint()}__onUpdateSize(){if(this.__.__input){const t=this.__;!t.lazy||this.__inLazyBounds||ja.running?t.__computePaint():t.__needComputePaint=!0}}__updateRenderPath(){if(this.__.path){const t=this.__;t.__pathForRender=t.cornerRadius?rr.smooth(t.path,t.cornerRadius,t.cornerSmoothing):t.path,t.__useArrow&&Fa.addArrows(this,!t.cornerRadius)}}__drawRenderPath(t){t.beginPath(),this.__drawPathByData(t,this.__.__pathForRender)}__drawPath(t){t.beginPath(),this.__drawPathByData(t,this.__.path)}__drawPathByData(t,e){e?mi.drawPathByData(t,e):this.__drawPathByBox(t)}__drawPathByBox(t){const{x:e,y:s,width:i,height:r}=this.__layout.boxBounds;if(this.__.cornerRadius){const{cornerRadius:n}=this.__;t.roundRect(e,s,i,r,"number"==typeof n?[n]:n)}else t.rect(e,s,i,r)}animate(t,e,s,i){return Rt.need("animate")}killAnimate(t){}export(t,e){return ja.export(this,t,e)}clone(t){const e=this.toJSON();return t&&Object.assign(e,t),fh.one(e)}static one(t,e,s,i,r){return Ct.get(t.tag||this.prototype.__tag,t,e,s,i,r)}static registerUI(){rn()(this)}static registerData(t){Hr(t)(this.prototype)}static setEditConfig(t){}static setEditOuter(t){}static setEditInner(t){}destroy(){this.fill=this.stroke=null,this.__animate&&this.killAnimate(),super.destroy()}};zt([Hr(Ja)],yh.prototype,"__",void 0),zt([Ia()],yh.prototype,"zoomLayer",void 0),zt([Br("")],yh.prototype,"id",void 0),zt([Br("")],yh.prototype,"name",void 0),zt([Br("")],yh.prototype,"className",void 0),zt([Dr("pass-through")],yh.prototype,"blendMode",void 0),zt([Fr(1)],yh.prototype,"opacity",void 0),zt([zr(!0)],yh.prototype,"visible",void 0),zt([Dr(!1)],yh.prototype,"locked",void 0),zt([Xr(0)],yh.prototype,"zIndex",void 0),zt([jr(!1)],yh.prototype,"mask",void 0),zt([Ur(!1)],yh.prototype,"eraser",void 0),zt([kr(0,!0)],yh.prototype,"x",void 0),zt([kr(0,!0)],yh.prototype,"y",void 0),zt([Tr(100,!0)],yh.prototype,"width",void 0),zt([Tr(100,!0)],yh.prototype,"height",void 0),zt([Sr(1,!0)],yh.prototype,"scaleX",void 0),zt([Sr(1,!0)],yh.prototype,"scaleY",void 0),zt([Cr(0,!0)],yh.prototype,"rotation",void 0),zt([Cr(0,!0)],yh.prototype,"skewX",void 0),zt([Cr(0,!0)],yh.prototype,"skewY",void 0),zt([kr(0,!0)],yh.prototype,"offsetX",void 0),zt([kr(0,!0)],yh.prototype,"offsetY",void 0),zt([kr(0,!0)],yh.prototype,"scrollX",void 0),zt([kr(0,!0)],yh.prototype,"scrollY",void 0),zt([Rr()],yh.prototype,"origin",void 0),zt([Rr()],yh.prototype,"around",void 0),zt([Br(!1)],yh.prototype,"lazy",void 0),zt([Pr(1)],yh.prototype,"pixelRatio",void 0),zt([Ar()],yh.prototype,"path",void 0),zt([Lr()],yh.prototype,"windingRule",void 0),zt([Lr(!0)],yh.prototype,"closed",void 0),zt([Tr(0)],yh.prototype,"padding",void 0),zt([Tr(!1)],yh.prototype,"lockRatio",void 0),zt([Tr()],yh.prototype,"widthRange",void 0),zt([Tr()],yh.prototype,"heightRange",void 0),zt([Br(!1)],yh.prototype,"draggable",void 0),zt([Br()],yh.prototype,"dragBounds",void 0),zt([Br(!1)],yh.prototype,"editable",void 0),zt([Vr(!0)],yh.prototype,"hittable",void 0),zt([Vr("path")],yh.prototype,"hitFill",void 0),zt([Mr("path")],yh.prototype,"hitStroke",void 0),zt([Vr(!1)],yh.prototype,"hitBox",void 0),zt([Vr(!0)],yh.prototype,"hitChildren",void 0),zt([Vr(!0)],yh.prototype,"hitSelf",void 0),zt([Vr()],yh.prototype,"hitRadius",void 0),zt([Gr("")],yh.prototype,"cursor",void 0),zt([Dr()],yh.prototype,"fill",void 0),zt([Mr()],yh.prototype,"stroke",void 0),zt([Mr("inside")],yh.prototype,"strokeAlign",void 0),zt([Mr(1)],yh.prototype,"strokeWidth",void 0),zt([Mr(!1)],yh.prototype,"strokeWidthFixed",void 0),zt([Mr("none")],yh.prototype,"strokeCap",void 0),zt([Mr("miter")],yh.prototype,"strokeJoin",void 0),zt([Mr()],yh.prototype,"dashPattern",void 0),zt([Mr()],yh.prototype,"dashOffset",void 0),zt([Mr(10)],yh.prototype,"miterLimit",void 0),zt([Lr(0)],yh.prototype,"cornerRadius",void 0),zt([Lr()],yh.prototype,"cornerSmoothing",void 0),zt([La()],yh.prototype,"shadow",void 0),zt([La()],yh.prototype,"innerShadow",void 0),zt([La()],yh.prototype,"blur",void 0),zt([La()],yh.prototype,"backgroundBlur",void 0),zt([La()],yh.prototype,"grayscale",void 0),zt([Br({})],yh.prototype,"data",void 0),zt([Kr(Ko.prototype.reset)],yh.prototype,"reset",null),yh=fh=zt([sn(uh),sn(_h),tn()],yh);let mh=class extends yh{get __tag(){return"Group"}get isBranch(){return!0}constructor(t){super(t)}reset(t){this.__setBranch(),super.reset(t)}__setBranch(){this.children||(this.children=[])}set(t,e){if(t.children){const{children:s}=t;delete t.children,this.children?this.clear():this.__setBranch(),super.set(t,e),s.forEach((t=>this.add(t))),t.children=s}else super.set(t,e)}toJSON(t){const e=super.toJSON(t);return e.children=this.children.map((e=>e.toJSON(t))),e}pick(t,e){}addAt(t,e){this.add(t,e)}addAfter(t,e){this.add(t,this.children.indexOf(e)+1)}addBefore(t,e){this.add(t,this.children.indexOf(e))}add(t,e){}addMany(...t){}remove(t,e){}removeAll(t){}clear(){}};var wh;zt([Hr($a)],mh.prototype,"__",void 0),mh=zt([sn(la),rn()],mh);const xh=wt.get("Leafer");let vh=wh=class extends mh{get __tag(){return"Leafer"}get isApp(){return!1}get app(){return this.parent||this}get isLeafer(){return!0}get imageReady(){return this.viewReady&&_r.isComplete}get layoutLocked(){return!this.layouter.running}get FPS(){return this.renderer?this.renderer.FPS:60}get cursorPoint(){return this.interaction&&this.interaction.hoverData||{x:this.width/2,y:this.height/2}}get clientBounds(){return this.canvas&&this.canvas.getClientBounds()}constructor(t,e){super(e),this.config={start:!0,hittable:!0,smooth:!0,lazySpeard:100},this.leafs=0,this.__eventIds=[],this.__controllers=[],this.__readyWait=[],this.__viewReadyWait=[],this.__viewCompletedWait=[],this.__nextRenderWait=[],this.userConfig=t,t&&(t.view||t.width)&&this.init(t),wh.list.add(this)}init(t,s){if(this.canvas)return;let i;const{config:r}=this;this.__setLeafer(this),s&&(this.parentApp=s,this.__bindApp(s),i=s.running),t&&(this.parent=s,this.initType(t.type),this.parent=void 0,Et.assign(r,t));const n=this.canvas=e.canvas(r);this.__controllers.push(this.renderer=e.renderer(this,n,r),this.watcher=e.watcher(this,r),this.layouter=e.layouter(this,r)),this.isApp&&this.__setApp(),this.__checkAutoLayout(r,s),this.view=n.view,s||(this.selector=e.selector(this),this.interaction=e.interaction(this,n,this.selector,r),this.interaction&&(this.__controllers.unshift(this.interaction),this.hitCanvasManager=e.hitCanvasManager()),this.canvasManager=new Lt,i=r.start),this.hittable=r.hittable,this.fill=r.fill,this.canvasManager.add(n),this.__listenEvents(),i&&(this.__startTimer=setTimeout(this.start.bind(this))),On.run(this.__initWait),this.onInit()}onInit(){}initType(t){}set(t,e){this.waitInit((()=>{super.set(t,e)}))}start(){clearTimeout(this.__startTimer),!this.running&&this.canvas&&(this.running=!0,this.ready?this.emitLeafer(qn.RESTART):this.emitLeafer(qn.START),this.__controllers.forEach((t=>t.start())),this.isApp||this.renderer.render())}stop(){clearTimeout(this.__startTimer),this.running&&this.canvas&&(this.__controllers.forEach((t=>t.stop())),this.running=!1,this.emitLeafer(qn.STOP))}unlockLayout(){this.layouter.start(),this.updateLayout()}lockLayout(){this.updateLayout(),this.layouter.stop()}resize(t){const e=Et.copyAttrs({},t,qt);Object.keys(e).forEach((t=>this[t]=e[t]))}forceRender(t,e){const{renderer:s}=this;s&&(s.addBlock(t?new ht(t):this.canvas.bounds),this.viewReady&&(e?s.render():s.update()))}requestRender(t=!1){this.renderer&&this.renderer.update(t)}updateCursor(t){const e=this.interaction;e&&(t?e.setCursor(t):e.updateCursor())}updateLazyBounds(){this.lazyBounds=this.canvas.bounds.clone().spread(this.config.lazySpeard)}__doResize(t){const{canvas:e}=this;if(!e||e.isSameSize(t))return;const s=Et.copyAttrs({},this.canvas,qt);e.resize(t),this.updateLazyBounds(),this.__onResize(new Un(t,s))}__onResize(t){this.emitEvent(t),Et.copyAttrs(this.__,t,qt),setTimeout((()=>{this.canvasManager&&this.canvasManager.clearRecycled()}),0)}__setApp(){}__bindApp(t){this.selector=t.selector,this.interaction=t.interaction,this.canvasManager=t.canvasManager,this.hitCanvasManager=t.hitCanvasManager}__setLeafer(t){this.leafer=t,this.__level=1}__checkAutoLayout(t,e){e||(t.width&&t.height||(this.autoLayout=new dt(t)),this.canvas.startAutoLayout(this.autoLayout,this.__onResize.bind(this)))}__setAttr(t,e){return this.canvas&&(qt.includes(t)?(e||xh.warn(t+" is 0"),this.__changeCanvasSize(t,e)):"fill"===t?this.__changeFill(e):"hittable"===t?this.parent||(this.canvas.hittable=e):"zIndex"===t&&(this.canvas.zIndex=e,setTimeout((()=>this.parent&&this.parent.__updateSortChildren())))),super.__setAttr(t,e)}__getAttr(t){return this.canvas&&qt.includes(t)?this.canvas[t]:super.__getAttr(t)}__changeCanvasSize(t,e){const s=Et.copyAttrs({},this.canvas,qt);s[t]=this.config[t]=e,e&&this.canvas.stopAutoLayout(),this.__doResize(s)}__changeFill(t){this.config.fill=t,this.canvas.allowBackgroundColor?this.canvas.backgroundColor=t:this.forceRender()}__onCreated(){this.created=!0}__onReady(){this.ready||(this.ready=!0,this.emitLeafer(qn.BEFORE_READY),this.emitLeafer(qn.READY),this.emitLeafer(qn.AFTER_READY),On.run(this.__readyWait))}__onViewReady(){this.viewReady||(this.viewReady=!0,this.emitLeafer(qn.VIEW_READY),On.run(this.__viewReadyWait))}__onNextRender(){if(this.viewReady){On.run(this.__nextRenderWait);const{imageReady:t}=this;t&&!this.viewCompleted&&this.__checkViewCompleted(),t||(this.viewCompleted=!1,this.requestRender())}else this.requestRender()}__checkViewCompleted(t=!0){this.nextRender((()=>{this.imageReady&&(t&&this.emitLeafer(qn.VIEW_COMPLETED),On.run(this.__viewCompletedWait),this.viewCompleted=!0)}))}__onWatchData(){this.watcher.childrenChanged&&this.interaction&&this.nextRender((()=>this.interaction.updateCursor()))}waitInit(t,e){e&&(t=t.bind(e)),this.__initWait||(this.__initWait=[]),this.canvas?t():this.__initWait.push(t)}waitReady(t,e){e&&(t=t.bind(e)),this.ready?t():this.__readyWait.push(t)}waitViewReady(t,e){e&&(t=t.bind(e)),this.viewReady?t():this.__viewReadyWait.push(t)}waitViewCompleted(t,e){e&&(t=t.bind(e)),this.__viewCompletedWait.push(t),this.viewCompleted?this.__checkViewCompleted(!1):this.running||this.start()}nextRender(t,e,s){e&&(t=t.bind(e));const i=this.__nextRenderWait;if(s){for(let e=0;e<i.length;e++)if(i[e]===t){i.splice(e,1);break}}else i.push(t);this.requestRender()}zoom(t,e,s){return Rt.need("view")}getValidMove(t,e){return{x:t,y:e}}getValidScale(t){return t}getWorldPointByClient(t,e){return this.interaction&&this.interaction.getLocal(t,e)}getPagePointByClient(t,e){return this.getPagePoint(this.getWorldPointByClient(t,e))}updateClientBounds(){this.canvas&&this.canvas.updateClientBounds()}receiveEvent(t){}__checkUpdateLayout(){this.__layout.update()}emitLeafer(t){this.emitEvent(new qn(t,this))}__listenEvents(){const t=Bt.start("FirstCreate "+this.innerName);this.once(qn.START,(()=>Bt.end(t))),this.once(Gn.START,(()=>this.updateLazyBounds())),this.once(Gn.END,(()=>this.__onReady())),this.once(Hn.START,(()=>this.__onCreated())),this.once(Hn.END,(()=>this.__onViewReady())),this.__eventIds.push(this.on_(Vn.DATA,this.__onWatchData,this),this.on_(Hn.NEXT,this.__onNextRender,this),this.on_(Gn.CHECK_UPDATE,this.__checkUpdateLayout,this))}__removeListenEvents(){this.off_(this.__eventIds),this.__eventIds.length=0}destroy(t){const e=()=>{if(!this.destroyed){wh.list.remove(this);try{this.stop(),this.emitEvent(new qn(qn.END,this)),this.__removeListenEvents(),this.__controllers.forEach((t=>!(this.parent&&t===this.interaction)&&t.destroy())),this.__controllers.length=0,this.parent||(this.selector&&this.selector.destroy(),this.hitCanvasManager&&this.hitCanvasManager.destroy(),this.canvasManager.destroy()),this.canvas.destroy(),this.config.view=this.view=this.parentApp=null,this.userConfig&&(this.userConfig.view=null),super.destroy(),setTimeout((()=>{_r.clearRecycled()}),100)}catch(t){xh.error(t)}}};t?e():setTimeout(e)}};vh.list=new da,zt([Hr(Ka)],vh.prototype,"__",void 0),zt([Tr()],vh.prototype,"pixelRatio",void 0),vh=wh=zt([rn()],vh);let bh=class extends yh{get __tag(){return"Rect"}constructor(t){super(t)}};zt([Hr(sh)],bh.prototype,"__",void 0),bh=zt([sn(gh),tn(),rn()],bh);const{copy:Bh,add:kh,includes:Rh}=rt,Sh=bh.prototype,Ch=mh.prototype,Th={};let Ph=class extends mh{get __tag(){return"Box"}get isBranchLeaf(){return!0}constructor(t){super(t),this.__layout.renderChanged||this.__layout.renderChange()}__updateStrokeSpread(){return 0}__updateRectRenderSpread(){return 0}__updateRenderSpread(){return this.__updateRectRenderSpread()||-1}__updateRectBoxBounds(){}__updateBoxBounds(t){const e=this.__;if(this.children.length)if(e.__autoSide){super.__updateBoxBounds();const{boxBounds:t}=this.__layout;e.__autoSize||(e.__autoWidth?(t.width+=t.x,t.x=0,t.height=e.height,t.y=0):(t.height+=t.y,t.y=0,t.width=e.width,t.x=0)),this.__updateNaturalSize()}else this.__updateRectBoxBounds();else this.__updateRectBoxBounds()}__updateStrokeBounds(){}__updateRenderBounds(){let t;const{renderBounds:e}=this.__layout;this.children.length?(super.__updateRenderBounds(),Bh(Th,e),this.__updateRectRenderBounds(),t=!Rh(e,Th),t&&"hide"!==this.__.overflow&&kh(e,Th)):this.__updateRectRenderBounds(),!this.isOverflow!=!t&&(this.isOverflow=t)}__updateRectRenderBounds(){}__updateRectChange(){}__updateChange(){super.__updateChange(),this.__updateRectChange()}__renderRect(t,e){}__renderGroup(t,e){}__render(t,e){this.__.__drawAfterFill?this.__renderRect(t,e):(this.__renderRect(t,e),this.children.length&&this.__renderGroup(t,e))}__drawContent(t,e){this.__renderGroup(t,e),this.__.__hasStroke&&(t.setWorld(this.__nowWorld),this.__drawRenderPath(t))}};zt([Hr(Za)],Ph.prototype,"__",void 0),zt([Br(!1)],Ph.prototype,"resizeChildren",void 0),zt([Wr("show")],Ph.prototype,"overflow",void 0),zt([Kr(Sh.__updateStrokeSpread)],Ph.prototype,"__updateStrokeSpread",null),zt([Kr(Sh.__updateRenderSpread)],Ph.prototype,"__updateRectRenderSpread",null),zt([Kr(Sh.__updateBoxBounds)],Ph.prototype,"__updateRectBoxBounds",null),zt([Kr(Sh.__updateStrokeBounds)],Ph.prototype,"__updateStrokeBounds",null),zt([Kr(Sh.__updateRenderBounds)],Ph.prototype,"__updateRectRenderBounds",null),zt([Kr(Sh.__updateChange)],Ph.prototype,"__updateRectChange",null),zt([Kr(Sh.__render)],Ph.prototype,"__renderRect",null),zt([Kr(Ch.__render)],Ph.prototype,"__renderGroup",null),Ph=zt([tn(),rn()],Ph);let Oh=class extends Ph{get __tag(){return"Frame"}get isFrame(){return!0}constructor(t){super(t)}};zt([Hr(th)],Oh.prototype,"__",void 0),zt([Dr("#FFFFFF")],Oh.prototype,"fill",void 0),zt([Wr("hide")],Oh.prototype,"overflow",void 0),Oh=zt([rn()],Oh);const{moveTo:Ah,closePath:Lh,ellipse:Eh}=Ns;let Ih=class extends yh{get __tag(){return"Ellipse"}constructor(t){super(t)}__updatePath(){const{width:e,height:s,innerRadius:i,startAngle:r,endAngle:n}=this.__,o=e/2,a=s/2,h=this.__.path=[];i?(r||n?(i<1&&Eh(h,o,a,o*i,a*i,0,r,n,!1),Eh(h,o,a,o,a,0,n,r,!0),i<1&&Lh(h)):(i<1&&(Eh(h,o,a,o*i,a*i),Ah(h,e,a)),Eh(h,o,a,o,a,0,360,0,!0)),t.ellipseToCurve&&(this.__.path=this.getPath(!0))):r||n?(Ah(h,o,a),Eh(h,o,a,o,a,0,r,n,!1),Lh(h)):Eh(h,o,a,o,a)}};zt([Hr(ih)],Ih.prototype,"__",void 0),zt([Lr(0)],Ih.prototype,"innerRadius",void 0),zt([Lr(0)],Ih.prototype,"startAngle",void 0),zt([Lr(0)],Ih.prototype,"endAngle",void 0),Ih=zt([rn()],Ih);const{moveTo:Mh,lineTo:Wh,drawPoints:Dh}=Ns,{rotate:Fh,getAngle:zh,getDistance:Nh,defaultPoint:Yh}=L,{toBounds:Xh}=Ji;let jh=class extends yh{get __tag(){return"Line"}get toPoint(){const{width:t,rotation:e}=this.__,s={x:0,y:0};return t&&(s.x=t),e&&Fh(s,e),s}set toPoint(t){this.width=Nh(Yh,t),this.rotation=zh(Yh,t),this.height&&(this.height=0)}constructor(t){super(t)}__updatePath(){const t=this.__,e=t.path=[];t.points?Dh(e,t.points,!1,t.closed):(Mh(e,0,0),Wh(e,this.width,0))}__updateRenderPath(){const t=this.__;!this.pathInputed&&t.points&&t.curve?(Dh(t.__pathForRender=[],t.points,t.curve,t.closed),t.__useArrow&&Fa.addArrows(this,!1)):super.__updateRenderPath()}__updateBoxBounds(){this.points?Xh(this.__.__pathForRender,this.__layout.boxBounds):super.__updateBoxBounds()}};zt([Hr(eh)],jh.prototype,"__",void 0),zt([Er("center")],jh.prototype,"strokeAlign",void 0),zt([Tr(0)],jh.prototype,"height",void 0),zt([Lr()],jh.prototype,"points",void 0),zt([Lr(0)],jh.prototype,"curve",void 0),zt([Lr(!1)],jh.prototype,"closed",void 0),jh=zt([rn()],jh);const{sin:Uh,cos:Vh,PI:Gh}=Math,{moveTo:Hh,lineTo:qh,closePath:Qh,drawPoints:Jh}=Ns,$h=jh.prototype;let Zh=class extends yh{get __tag(){return"Polygon"}constructor(t){super(t)}__updatePath(){const t=this.__.path=[];if(this.__.points)Jh(t,this.__.points,!1,!0);else{const{width:e,height:s,sides:i}=this.__,r=e/2,n=s/2;Hh(t,r,0);for(let e=1;e<i;e++)qh(t,r+r*Uh(2*e*Gh/i),n-n*Vh(2*e*Gh/i))}Qh(t)}__updateRenderPath(){}__updateBoxBounds(){}};zt([Hr(rh)],Zh.prototype,"__",void 0),zt([Lr(3)],Zh.prototype,"sides",void 0),zt([Lr()],Zh.prototype,"points",void 0),zt([Lr(0)],Zh.prototype,"curve",void 0),zt([Kr($h.__updateRenderPath)],Zh.prototype,"__updateRenderPath",null),zt([Kr($h.__updateBoxBounds)],Zh.prototype,"__updateBoxBounds",null),Zh=zt([tn(),rn()],Zh);const{sin:Kh,cos:tl,PI:el}=Math,{moveTo:sl,lineTo:il,closePath:rl}=Ns;let nl=class extends yh{get __tag(){return"Star"}constructor(t){super(t)}__updatePath(){const{width:t,height:e,corners:s,innerRadius:i}=this.__,r=t/2,n=e/2,o=this.__.path=[];sl(o,r,0);for(let t=1;t<2*s;t++)il(o,r+(t%2==0?r:r*i)*Kh(t*el/s),n-(t%2==0?n:n*i)*tl(t*el/s));rl(o)}};zt([Hr(nh)],nl.prototype,"__",void 0),zt([Lr(5)],nl.prototype,"corners",void 0),zt([Lr(.382)],nl.prototype,"innerRadius",void 0),nl=zt([rn()],nl);let ol=class extends bh{get __tag(){return"Image"}get ready(){return!!this.image&&this.image.ready}constructor(t){super(t),this.on(jn.LOADED,(t=>{"fill"===t.attrName&&t.attrValue.url===this.url&&(this.image=t.image)}))}destroy(){this.image=null,super.destroy()}};zt([Hr(dh)],ol.prototype,"__",void 0),zt([Tr("")],ol.prototype,"url",void 0),ol=zt([rn()],ol);const al=ol;let hl=class extends bh{get __tag(){return"Canvas"}get ready(){return!this.url}constructor(t){super(t),this.canvas=e.canvas(this.__),this.context=this.canvas.context,t&&t.url&&this.drawImage(t.url)}drawImage(t){new yr({url:t}).load((t=>{this.context.drawImage(t.view,0,0),this.url=void 0,this.paint(),this.emitEvent(new jn(jn.LOADED,{image:t}))}))}draw(t,e,s,i){const r=new z(t.worldTransform).invert(),n=new z;e&&n.translate(e.x,e.y),s&&("number"==typeof s?n.scale(s):n.scale(s.x,s.y)),i&&n.rotate(i),r.multiplyParent(n),t.__render(this.canvas,{matrix:r.withScale()}),this.paint()}paint(){this.forceRender()}__drawContent(t,e){const{width:s,height:i}=this.__,{view:r}=this.canvas;t.drawImage(r,0,0,r.width,r.height,0,0,s,i)}__updateSize(){const{canvas:t}=this;if(t){const{smooth:e,safeResize:s}=this.__;t.resize(this.__,s),t.smooth!==e&&(t.smooth=e)}}destroy(){this.canvas&&(this.canvas.destroy(),this.canvas=this.context=null),super.destroy()}};zt([Hr(ch)],hl.prototype,"__",void 0),zt([Ea(100)],hl.prototype,"width",void 0),zt([Ea(100)],hl.prototype,"height",void 0),zt([Ea(1)],hl.prototype,"pixelRatio",void 0),zt([Ea(!0)],hl.prototype,"smooth",void 0),zt([Br(!1)],hl.prototype,"safeResize",void 0),zt([Ea()],hl.prototype,"contextSettings",void 0),hl=zt([rn()],hl);const{copyAndSpread:ll,includes:dl,isSame:cl,spread:ul,setList:_l}=rt;let pl=class extends yh{get __tag(){return"Text"}get textDrawData(){return this.__layout.update(),this.__.__textDrawData}constructor(t){super(t)}__drawHitPath(t){const{__lineHeight:e,fontSize:s,__baseLine:i,__textDrawData:r}=this.__;t.beginPath(),this.__.__letterSpacing<0?this.__drawPathByData(t):r.rows.forEach((r=>t.rect(r.x,r.y-i,r.width,e<s?s:e)))}__drawPathByData(t,e){const{x:s,y:i,width:r,height:n}=this.__layout.boxBounds;t.rect(s,i,r,n)}__drawRenderPath(t){t.font=this.__.__font}__updateTextDrawData(){const t=this.__,{lineHeight:e,letterSpacing:s,fontFamily:i,fontSize:r,fontWeight:n,italic:o,textCase:h,textOverflow:l,padding:d}=t;t.__lineHeight=Da.number(e,r),t.__letterSpacing=Da.number(s,r),t.__padding=d?a.fourNumber(d):void 0,t.__baseLine=t.__lineHeight-(t.__lineHeight-.7*r)/2,t.__font=`${o?"italic ":""}${"small-caps"===h?"small-caps ":""}${"normal"!==n?n+" ":""}${r}px ${i}`,t.__clipText="show"!==l&&!t.__autoSize,t.__textDrawData=Ma.getDrawData(t.text,this.__)}__updateBoxBounds(){const t=this.__,e=this.__layout,{fontSize:s,italic:i,padding:r,__autoWidth:n,__autoHeight:o}=t;this.__updateTextDrawData();const{bounds:a}=t.__textDrawData,h=e.boxBounds;if(t.__lineHeight<s&&ul(a,s/2),n||o){if(h.x=n?a.x:0,h.y=o?a.y:0,h.width=n?a.width:t.width,h.height=o?a.height:t.height,r){const[e,s,i,r]=t.__padding;n&&(h.x-=r,h.width+=s+r),o&&(h.y-=e,h.height+=i+e)}this.__updateNaturalSize()}else super.__updateBoxBounds();i&&(h.width+=.16*s);const l=dl(h,a)?h:a;cl(l,e.contentBounds)?t.__textBoxBounds=l:(e.contentBounds=l,e.renderChanged=!0,_l(t.__textBoxBounds={},[h,a]))}__updateRenderSpread(){let t=super.__updateRenderSpread();return t||(t=this.__layout.boxBounds===this.__layout.contentBounds?0:1),t}__updateRenderBounds(){ll(this.__layout.renderBounds,this.__.__textBoxBounds,this.__layout.renderSpread)}};zt([Hr(lh)],pl.prototype,"__",void 0),zt([Tr(0)],pl.prototype,"width",void 0),zt([Tr(0)],pl.prototype,"height",void 0),zt([Br(!1)],pl.prototype,"resizeFontSize",void 0),zt([Dr("#000000")],pl.prototype,"fill",void 0),zt([Er("outside")],pl.prototype,"strokeAlign",void 0),zt([Vr("all")],pl.prototype,"hitFill",void 0),zt([Tr("")],pl.prototype,"text",void 0),zt([Tr("L")],pl.prototype,"fontFamily",void 0),zt([Tr(12)],pl.prototype,"fontSize",void 0),zt([Tr("normal")],pl.prototype,"fontWeight",void 0),zt([Tr(!1)],pl.prototype,"italic",void 0),zt([Tr("none")],pl.prototype,"textCase",void 0),zt([Tr("none")],pl.prototype,"textDecoration",void 0),zt([Tr(0)],pl.prototype,"letterSpacing",void 0),zt([Tr({type:"percent",value:1.5})],pl.prototype,"lineHeight",void 0),zt([Tr(0)],pl.prototype,"paraIndent",void 0),zt([Tr(0)],pl.prototype,"paraSpacing",void 0),zt([Tr("left")],pl.prototype,"textAlign",void 0),zt([Tr("top")],pl.prototype,"verticalAlign",void 0),zt([Tr(!0)],pl.prototype,"autoSizeAlign",void 0),zt([Tr("normal")],pl.prototype,"textWrap",void 0),zt([Tr("show")],pl.prototype,"textOverflow",void 0),pl=zt([rn()],pl);let gl=class extends yh{get __tag(){return"Path"}constructor(t){super(t)}};zt([Hr(oh)],gl.prototype,"__",void 0),zt([Er("center")],gl.prototype,"strokeAlign",void 0),gl=zt([rn()],gl);let fl=class extends mh{get __tag(){return"Pen"}constructor(t){super(t)}setStyle(t){const e=this.pathElement=new gl(t);return this.pathStyle=t,this.__path=e.path||(e.path=[]),this.add(e),this}beginPath(){return this}moveTo(t,e){return this}lineTo(t,e){return this}bezierCurveTo(t,e,s,i,r,n){return this}quadraticCurveTo(t,e,s,i){return this}closePath(){return this}rect(t,e,s,i){return this}roundRect(t,e,s,i,r){return this}ellipse(t,e,s,i,r,n,o,a){return this}arc(t,e,s,i,r,n){return this}arcTo(t,e,s,i,r){return this}drawEllipse(t,e,s,i,r,n,o,a){return this}drawArc(t,e,s,i,r,n){return this}drawPoints(t,e,s){return this}clearPath(){return this}paint(){this.pathElement.__layout.boxChanged||this.pathElement.forceUpdate("path")}};function yl(t,e){let s;const{rows:i,decorationY:r,decorationHeight:n}=t.__.__textDrawData;for(let t=0,o=i.length;t<o;t++)s=i[t],s.text?e.fillText(s.text,s.x,s.y):s.data&&s.data.forEach((t=>{e.fillText(t.char,t.x,s.y)})),r&&e.fillRect(s.x,s.y+r,s.width,n)}function ml(t,e,s){const{strokeAlign:i}=e.__,r="string"!=typeof t;switch(i){case"center":s.setStroke(r?void 0:t,e.__.strokeWidth,e.__),r?vl(t,!0,e,s):xl(e,s);break;case"inside":wl("inside",t,r,e,s);break;case"outside":wl("outside",t,r,e,s)}}function wl(t,e,s,i,r){const{__strokeWidth:n,__font:o}=i.__,a=r.getSameCanvas(!0,!0);a.setStroke(s?void 0:e,2*n,i.__),a.font=o,s?vl(e,!0,i,a):xl(i,a),a.blendMode="outside"===t?"destination-out":"destination-in",yl(i,a),a.blendMode="normal",i.__worldFlipped?r.copyWorldByReset(a,i.__nowWorld):r.copyWorldToInner(a,i.__nowWorld,i.__layout.renderBounds),a.recycle(i.__nowWorld)}function xl(t,e){let s;const{rows:i,decorationY:r,decorationHeight:n}=t.__.__textDrawData;for(let t=0,o=i.length;t<o;t++)s=i[t],s.text?e.strokeText(s.text,s.x,s.y):s.data&&s.data.forEach((t=>{e.strokeText(t.char,t.x,s.y)})),r&&e.strokeRect(s.x,s.y+r,s.width,n)}function vl(t,e,s,i){let r;for(let n=0,o=t.length;n<o;n++)r=t[n],r.image&&Na.checkImage(s,i,r,!1)||r.style&&(i.strokeStyle=r.style,r.blendMode?(i.saveBlendMode(r.blendMode),e?xl(s,i):i.stroke(),i.restoreBlendMode()):e?xl(s,i):i.stroke())}function bl(t,e){t.__.dashPattern&&(e.beginPath(),t.__drawPathByData(e,t.__.__pathForArrow),e.dashPattern=null,e.stroke())}zt([Hr(ah)],fl.prototype,"__",void 0),zt([(t,e)=>{mr(t,e,{get(){return this.__path}})}],fl.prototype,"path",void 0),fl=zt([sn(ii,["set","path","paint"]),rn()],fl);const{getSpread:Bl,getOuterOf:kl,getByMove:Rl,getIntersectData:Sl}=rt;let Cl;function Tl(t,e,s){if("object"!=typeof e||!1===e.visible||0===e.opacity)return;const{boxBounds:i}=s.__layout;switch(e.type){case"solid":let{type:r,blendMode:n,color:o,opacity:a}=e;return{type:r,blendMode:n,style:Wa.string(o,a)};case"image":return Na.image(s,t,e,i,!Cl||!Cl[e.url]);case"linear":return Ya.linearGradient(e,i);case"radial":return Ya.radialGradient(e,i);case"angular":return Ya.conicGradient(e,i);default:return void 0!==e.r?{type:"solid",style:Wa.string(e)}:void 0}}const Pl={compute:function(t,e){const s=e.__,i=[];let r,n=s.__input[t];n instanceof Array||(n=[n]),Cl=Na.recycleImage(t,s);for(let s,r=0,o=n.length;r<o;r++)s=Tl(t,n[r],e),s&&i.push(s);s["_"+t]=i.length?i:void 0,i.length&&i[0].image&&(r=i[0].image.hasOpacityPixel),"fill"===t?s.__pixelFill=r:s.__pixelStroke=r},fill:function(t,e,s){s.fillStyle=t,e.__.__font?yl(e,s):e.__.windingRule?s.fill(e.__.windingRule):s.fill()},fills:function(t,e,s){let i;const{windingRule:r,__font:n}=e.__;for(let o=0,a=t.length;o<a;o++)i=t[o],i.image&&Na.checkImage(e,s,i,!n)||i.style&&(s.fillStyle=i.style,i.transform?(s.save(),s.transform(i.transform),i.blendMode&&(s.blendMode=i.blendMode),n?yl(e,s):r?s.fill(r):s.fill(),s.restore()):i.blendMode?(s.saveBlendMode(i.blendMode),n?yl(e,s):r?s.fill(r):s.fill(),s.restoreBlendMode()):n?yl(e,s):r?s.fill(r):s.fill())},fillText:yl,stroke:function(t,e,s){const i=e.__,{__strokeWidth:r,strokeAlign:n,__font:o}=i;if(r)if(o)ml(t,e,s);else switch(n){case"center":s.setStroke(t,r,i),s.stroke(),i.__useArrow&&bl(e,s);break;case"inside":s.save(),s.setStroke(t,2*r,i),i.windingRule?s.clip(i.windingRule):s.clip(),s.stroke(),s.restore();break;case"outside":const n=s.getSameCanvas(!0,!0);n.setStroke(t,2*r,i),e.__drawRenderPath(n),n.stroke(),i.windingRule?n.clip(i.windingRule):n.clip(),n.clearWorld(e.__layout.renderBounds),e.__worldFlipped?s.copyWorldByReset(n,e.__nowWorld):s.copyWorldToInner(n,e.__nowWorld,e.__layout.renderBounds),n.recycle(e.__nowWorld)}},strokes:function(t,e,s){const i=e.__,{__strokeWidth:r,strokeAlign:n,__font:o}=i;if(r)if(o)ml(t,e,s);else switch(n){case"center":s.setStroke(void 0,r,i),vl(t,!1,e,s),i.__useArrow&&bl(e,s);break;case"inside":s.save(),s.setStroke(void 0,2*r,i),i.windingRule?s.clip(i.windingRule):s.clip(),vl(t,!1,e,s),s.restore();break;case"outside":const{renderBounds:n}=e.__layout,o=s.getSameCanvas(!0,!0);e.__drawRenderPath(o),o.setStroke(void 0,2*r,i),vl(t,!1,e,o),i.windingRule?o.clip(i.windingRule):o.clip(),o.clearWorld(n),e.__worldFlipped?s.copyWorldByReset(o,e.__nowWorld):s.copyWorldToInner(o,e.__nowWorld,n),o.recycle(e.__nowWorld)}},strokeText:ml,drawTextStroke:xl,shape:function(t,e,s){const i=e.getSameCanvas(),r=t.__nowWorld;let n,o,a,h,{scaleX:l,scaleY:d}=r;if(l<0&&(l=-l),d<0&&(d=-d),e.bounds.includes(r))h=i,n=a=r;else{const{renderShapeSpread:i}=t.__layout,c=Sl(i?Bl(e.bounds,l===d?i*l:[i*d,i*l]):e.bounds,r);o=e.bounds.getFitMatrix(c);let{a:u,d:_}=o;if(o.a<1&&(h=e.getSameCanvas(),t.__renderShape(h,s),l*=u,d*=_),a=kl(r,o),n=Rl(a,-o.e,-o.f),s.matrix){const{matrix:t}=s;o.multiply(t),u*=t.scaleX,_*=t.scaleY}s=Object.assign(Object.assign({},s),{matrix:o.withScale(u,_)})}return t.__renderShape(i,s),{canvas:i,matrix:o,bounds:n,worldCanvas:h,shapeBounds:a,scaleX:l,scaleY:d}}};let Ol={};const{get:Al,rotateOfOuter:Ll,translate:El,scaleOfOuter:Il,scale:Ml,rotate:Wl}=v;function Dl(t,e,s,i,r,n,o){const a=Al();El(a,e.x+s,e.y+i),Ml(a,r,n),o&&Ll(a,{x:e.x+e.width/2,y:e.y+e.height/2},o),t.transform=a}function Fl(t,e,s,i,r,n,o){const a=Al();El(a,e.x+s,e.y+i),r&&Ml(a,r,n),o&&Wl(a,o),t.transform=a}function zl(t,e,s,i,r,n,o,a,h,l){const d=Al();if(h)if("center"===l)Ll(d,{x:s/2,y:i/2},h);else switch(Wl(d,h),h){case 90:El(d,i,0);break;case 180:El(d,s,i);break;case 270:El(d,0,s)}Ol.x=e.x+r,Ol.y=e.y+n,El(d,Ol.x,Ol.y),o&&Il(d,Ol,o,a),t.transform=d}const{get:Nl,translate:Yl}=v,Xl=new ht,jl={},Ul={};function Vl(t,e,s,i){const{blendMode:r,sync:n}=s;r&&(t.blendMode=r),n&&(t.sync=n),t.data=Gl(s,i,e)}function Gl(t,e,s){let{width:i,height:r}=s;t.padding&&(e=Xl.set(e).shrink(t.padding)),"strench"===t.mode&&(t.mode="stretch");const{opacity:n,mode:o,align:h,offset:l,scale:d,size:c,rotation:u,repeat:_}=t,p=e.width===i&&e.height===r,g={mode:o},f="center"!==h&&(u||0)%180==90,y=f?r:i,m=f?i:r;let w,x,v=0,b=0;if(o&&"cover"!==o&&"fit"!==o)(d||c)&&(a.getScaleData(d,c,s,Ul),w=Ul.scaleX,x=Ul.scaleY);else if(!p||u){const t=e.width/y,s=e.height/m;w=x="fit"===o?Math.min(t,s):Math.max(t,s),v+=(e.width-i*w)/2,b+=(e.height-r*x)/2}if(h){const t={x:v,y:b,width:y,height:m};w&&(t.width*=w,t.height*=x),yt.toPoint(h,t,e,jl,!0),v+=jl.x,b+=jl.y}switch(l&&(v+=l.x,b+=l.y),o){case"stretch":p||(i=e.width,r=e.height);break;case"normal":case"clip":(v||b||w||u)&&Fl(g,e,v,b,w,x,u);break;case"repeat":(!p||w||u)&&zl(g,e,i,r,v,b,w,x,u,h),_||(g.repeat="repeat");break;default:w&&Dl(g,e,v,b,w,x,u)}return g.transform||(e.x||e.y)&&(g.transform=Nl(),Yl(g.transform,e.x,e.y)),w&&"stretch"!==o&&(g.scaleX=w,g.scaleY=x),g.width=i,g.height=r,n&&(g.opacity=n),_&&(g.repeat="string"==typeof _?"x"===_?"repeat-x":"repeat-y":"repeat"),g}let Hl,ql=new ht;const{isSame:Ql}=rt;function Jl(t,e,s,i,r,n){if("fill"===e&&!t.__.__naturalWidth){const e=t.__;if(e.__naturalWidth=i.width/e.pixelRatio,e.__naturalHeight=i.height/e.pixelRatio,e.__autoSide)return t.forceUpdate("width"),t.__proxyData&&(t.setProxyAttr("width",e.width),t.setProxyAttr("height",e.height)),!1}return r.data||Vl(r,i,s,n),!0}function $l(t,e){td(t,jn.LOAD,e)}function Zl(t,e){td(t,jn.LOADED,e)}function Kl(t,e,s){e.error=s,t.forceUpdate("surface"),td(t,jn.ERROR,e)}function td(t,e,s){t.hasEvent(e)&&t.emitEvent(new jn(e,s))}function ed(t,e){const{leafer:s}=t;s&&s.viewReady&&(s.renderer.ignore=e)}const{get:sd,scale:id,copy:rd}=v,{ceil:nd,abs:od}=Math;function ad(e,s,i){let{scaleX:r,scaleY:n}=_r.patternLocked?e.__world:e.__nowWorld;const o=r+"-"+n+"-"+i;if(s.patternId===o||e.destroyed)return!1;{r=od(r),n=od(n);const{image:e,data:a}=s;let h,l,{width:d,height:c,scaleX:u,scaleY:_,opacity:p,transform:g,repeat:f}=a;u&&(l=sd(),rd(l,g),id(l,1/u,1/_),r*=u,n*=_),r*=i,n*=i,d*=r,c*=n;const y=d*c;if(!f&&y>t.image.maxCacheSize)return!1;let m=t.image.maxPatternSize;if(!e.isSVG){const t=e.width*e.height;m>t&&(m=t)}y>m&&(h=Math.sqrt(y/m)),h&&(r/=h,n/=h,d/=h,c/=h),u&&(r/=u,n/=_),(g||1!==r||1!==n)&&(l||(l=sd(),g&&rd(l,g)),id(l,1/r,1/n));const w=e.getCanvas(nd(d)||1,nd(c)||1,p),x=e.getPattern(w,f||t.origin.noRepeat||"no-repeat",l,s);return s.style=x,s.patternId=o,!0}}const{abs:hd}=Math;const ld={image:function(t,e,s,i,r){let n,o;const a=_r.get(s);return Hl&&s===Hl.paint&&Ql(i,Hl.boxBounds)?n=Hl.leafPaint:(n={type:s.type,image:a},Hl=a.use>1?{leafPaint:n,paint:s,boxBounds:ql.set(i)}:null),(r||a.loading)&&(o={image:a,attrName:e,attrValue:s}),a.ready?(Jl(t,e,s,a,n,i),r&&($l(t,o),Zl(t,o))):a.error?r&&Kl(t,o,a.error):(r&&(ed(t,!0),$l(t,o)),n.loadId=a.load((()=>{ed(t,!1),t.destroyed||(Jl(t,e,s,a,n,i)&&(a.hasOpacityPixel&&(t.__layout.hitCanvasChanged=!0),t.forceUpdate("surface")),Zl(t,o)),n.loadId=null}),(e=>{ed(t,!1),Kl(t,o,e),n.loadId=null}))),n},checkImage:function(e,s,i,r){const{scaleX:n,scaleY:o}=_r.patternLocked?e.__world:e.__nowWorld,{pixelRatio:a}=s;if(!i.data||i.patternId===n+"-"+o+"-"+a&&!ja.running)return!1;{const{data:h}=i;if(r)if(h.repeat)r=!1;else{let{width:e,height:s}=h;e*=hd(n)*a,s*=hd(o)*a,h.scaleX&&(e*=h.scaleX,s*=h.scaleY),r=e*s>t.image.maxCacheSize||ja.running}return r?(s.save(),e.windingRule?s.clip(e.windingRule):s.clip(),i.blendMode&&(s.blendMode=i.blendMode),h.opacity&&(s.opacity*=h.opacity),h.transform&&s.transform(h.transform),s.drawImage(i.image.view,0,0,h.width,h.height),s.restore(),!0):(!i.style||i.sync||ja.running?ad(e,i,a):i.patternTask||(i.patternTask=_r.patternTasker.add((()=>Nt(this,void 0,void 0,(function*(){i.patternTask=null,s.bounds.hit(e.__nowWorld)&&ad(e,i,a),e.forceUpdate("surface")}))),300)),!1)}},createPattern:ad,recycleImage:function(t,e){const s=e["_"+t];if(s instanceof Array){let i,r,n,o;for(let a=0,h=s.length;a<h;a++)i=s[a].image,o=i&&i.url,o&&(r||(r={}),r[o]=!0,_r.recycle(i),i.loading&&(n||(n=e.__input&&e.__input[t]||[],n instanceof Array||(n=[n])),i.unload(s[a].loadId,!n.some((t=>t.url===o)))));return r}return null},createData:Vl,getPatternData:Gl,fillOrFitMode:Dl,clipMode:Fl,repeatMode:zl},{toPoint:dd}=pt,cd={},ud={};function _d(t,e,s){if(e){let i;for(let r=0,n=e.length;r<n;r++)i=e[r],"string"==typeof i?t.addColorStop(r/(n-1),Wa.string(i,s)):t.addColorStop(i.offset,Wa.string(i.color,s))}}const{getAngle:pd,getDistance:gd}=L,{get:fd,rotateOfOuter:yd,scaleOfOuter:md}=v,{toPoint:wd}=pt,xd={},vd={};function bd(t,e,s,i,r){let n;const{width:o,height:a}=t;if(o!==a||i){const t=pd(e,s);n=fd(),r?(md(n,e,o/a*(i||1),1),yd(n,e,t+90)):(md(n,e,1,o/a*(i||1)),yd(n,e,t))}return n}const{getDistance:Bd}=L,{toPoint:kd}=pt,Rd={},Sd={};const Cd={linearGradient:function(e,s){let{from:i,to:r,type:n,blendMode:o,opacity:a}=e;dd(i||"top",s,cd),dd(r||"bottom",s,ud);const h=t.canvas.createLinearGradient(cd.x,cd.y,ud.x,ud.y);_d(h,e.stops,a);const l={type:n,style:h};return o&&(l.blendMode=o),l},radialGradient:function(e,s){let{from:i,to:r,type:n,opacity:o,blendMode:a,stretch:h}=e;wd(i||"center",s,xd),wd(r||"bottom",s,vd);const l=t.canvas.createRadialGradient(xd.x,xd.y,0,xd.x,xd.y,gd(xd,vd));_d(l,e.stops,o);const d={type:n,style:l},c=bd(s,xd,vd,h,!0);return c&&(d.transform=c),a&&(d.blendMode=a),d},conicGradient:function(e,s){let{from:i,to:r,type:n,opacity:o,blendMode:a,stretch:h}=e;kd(i||"center",s,Rd),kd(r||"bottom",s,Sd);const l=t.conicGradientSupport?t.canvas.createConicGradient(0,Rd.x,Rd.y):t.canvas.createRadialGradient(Rd.x,Rd.y,0,Rd.x,Rd.y,Bd(Rd,Sd));_d(l,e.stops,o);const d={type:n,style:l},c=bd(s,Rd,Sd,h||1,t.conicGradientRotate90);return c&&(d.transform=c),a&&(d.blendMode=a),d},getTransform:bd},{copy:Td,toOffsetOutBounds:Pd}=rt,Od={},Ad={};function Ld(e,s,i,r){const{bounds:n,shapeBounds:o}=r;if(t.fullImageShadow){if(Td(Od,e.bounds),Od.x+=s.x-o.x,Od.y+=s.y-o.y,i){const{matrix:t}=r;Od.x-=(n.x+(t?t.e:0)+n.width/2)*(i-1),Od.y-=(n.y+(t?t.f:0)+n.height/2)*(i-1),Od.width*=i,Od.height*=i}e.copyWorld(r.canvas,e.bounds,Od)}else i&&(Td(Od,s),Od.x-=s.width/2*(i-1),Od.y-=s.height/2*(i-1),Od.width*=i,Od.height*=i),e.copyWorld(r.canvas,o,i?Od:s)}const{toOffsetOutBounds:Ed}=rt,Id={};const Md={shadow:function(t,e,s){let i,r;const{__nowWorld:n,__layout:o}=t,{shadow:a}=t.__,{worldCanvas:h,bounds:l,shapeBounds:d,scaleX:c,scaleY:u}=s,_=e.getSameCanvas(),p=a.length-1;Pd(l,Ad),a.forEach(((a,g)=>{_.setWorldShadow(Ad.offsetX+a.x*c,Ad.offsetY+a.y*u,a.blur*c,a.color),r=a.spread?1+2*a.spread/(o.boxBounds.width+2*(o.strokeBoxSpread||0)):0,Ld(_,Ad,r,s),i=l,a.box&&(_.restore(),_.save(),h&&(_.copyWorld(_,l,n,"copy"),i=n),h?_.copyWorld(h,n,n,"destination-out"):_.copyWorld(s.canvas,d,l,"destination-out")),t.__worldFlipped?e.copyWorldByReset(_,i,n,a.blendMode):e.copyWorldToInner(_,i,o.renderBounds,a.blendMode),p&&g<p&&_.clearWorld(i,!0)})),_.recycle(i)},innerShadow:function(t,e,s){let i,r;const{__nowWorld:n,__layout:o}=t,{innerShadow:a}=t.__,{worldCanvas:h,bounds:l,shapeBounds:d,scaleX:c,scaleY:u}=s,_=e.getSameCanvas(),p=a.length-1;Ed(l,Id),a.forEach(((a,g)=>{_.save(),_.setWorldShadow(Id.offsetX+a.x*c,Id.offsetY+a.y*u,a.blur*c),r=a.spread?1-2*a.spread/(o.boxBounds.width+2*(o.strokeBoxSpread||0)):0,Ld(_,Id,r,s),_.restore(),h?(_.copyWorld(_,l,n,"copy"),_.copyWorld(h,n,n,"source-out"),i=n):(_.copyWorld(s.canvas,d,l,"source-out"),i=l),_.fillWorld(i,a.color,"source-in"),t.__worldFlipped?e.copyWorldByReset(_,i,n,a.blendMode):e.copyWorldToInner(_,i,o.renderBounds,a.blendMode),p&&g<p&&_.clearWorld(i,!0)})),_.recycle(i)},blur:function(t,e,s){const{blur:i}=t.__;s.setWorldBlur(i*t.__nowWorld.a),s.copyWorldToInner(e,t.__nowWorld,t.__layout.renderBounds),s.filter="none"},backgroundBlur:function(t,e,s){}},{excludeRenderBounds:Wd}=kn;function Dd(t,e,s,i,r,n){switch(e){case"grayscale":r.useGrayscaleAlpha(t.__nowWorld);case"alpha":!function(t,e,s,i){const r=t.__nowWorld;s.resetTransform(),s.opacity=1,s.useMask(i,r),i.recycle(r),zd(t,e,s,1)}(t,s,i,r);break;case"opacity-path":zd(t,s,i,n);break;case"path":s.restore()}}function Fd(t){return t.getSameCanvas(!1,!0)}function zd(t,e,s,i){const r=t.__nowWorld;e.resetTransform(),e.opacity=i,e.copyWorld(s,r),s.recycle(r)}mh.prototype.__renderMask=function(t,e){let s,i,r,n,o,a;const{children:h}=this;for(let l=0,d=h.length;l<d;l++)s=h[l],a=s.__.mask,a&&(o&&(Dd(this,o,t,r,i,n),i=r=null),"path"===a||"clipping-path"===a?(s.opacity<1?(o="opacity-path",n=s.opacity,r||(r=Fd(t))):(o="path",t.save()),s.__clip(r||t,e)):(o="grayscale"===a?"grayscale":"alpha",i||(i=Fd(t)),r||(r=Fd(t)),s.__render(i,e)),"clipping"!==a&&"clipping-path"!==a)||Wd(s,e)||s.__render(r||t,e);Dd(this,o,t,r,i,n)};const Nd=">)]}%!?,.:;'\"》)」〉』〗】〕}┐>’”!?,、。:;‰",Yd=Nd+"_#~&*+\\=|≮≯≈≠=…",Xd=new RegExp([[19968,40959],[13312,19903],[131072,173791],[173824,177983],[177984,178207],[178208,183983],[183984,191471],[196608,201551],[201552,205743],[11904,12031],[12032,12255],[12272,12287],[12288,12351],[12736,12783],[12800,13055],[13056,13311],[63744,64255],[65072,65103],[127488,127743],[194560,195103]].map((([t,e])=>`[\\u${t.toString(16)}-\\u${e.toString(16)}]`)).join("|"));function jd(t){const e={};return t.split("").forEach((t=>e[t]=!0)),e}const Ud=jd("ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz"),Vd=jd("{[(<'\"《(「〈『〖【〔{┌<‘“=¥¥$€££¢¢"),Gd=jd(Nd),Hd=jd(Yd),qd=jd("- —/~|┆·");var Qd;!function(t){t[t.Letter=0]="Letter",t[t.Single=1]="Single",t[t.Before=2]="Before",t[t.After=3]="After",t[t.Symbol=4]="Symbol",t[t.Break=5]="Break"}(Qd||(Qd={}));const{Letter:Jd,Single:$d,Before:Zd,After:Kd,Symbol:tc,Break:ec}=Qd;function sc(t){return Ud[t]?Jd:qd[t]?ec:Vd[t]?Zd:Gd[t]?Kd:Hd[t]?tc:Xd.test(t)?$d:Jd}const ic={trimRight(t){const{words:e}=t;let s,i=0,r=e.length;for(let n=r-1;n>-1&&(s=e[n].data[0]," "===s.char);n--)i++,t.width-=s.width;i&&e.splice(r-i,i)}};function rc(t,e,s){switch(e){case"title":return s?t.toUpperCase():t;case"upper":return t.toUpperCase();case"lower":return t.toLowerCase();default:return t}}const{trimRight:nc}=ic,{Letter:oc,Single:ac,Before:hc,After:lc,Symbol:dc,Break:cc}=Qd;let uc,_c,pc,gc,fc,yc,mc,wc,xc,vc,bc,Bc,kc,Rc,Sc,Cc,Tc,Pc=[];function Oc(t,e){xc&&!wc&&(wc=xc),uc.data.push({char:t,width:e}),pc+=e}function Ac(){gc+=pc,uc.width=pc,_c.words.push(uc),uc={data:[]},pc=0}function Lc(){Rc&&(Sc.paraNumber++,_c.paraStart=!0,Rc=!1),xc&&(_c.startCharSize=wc,_c.endCharSize=xc,wc=0),_c.width=gc,Cc.width?nc(_c):Tc&&Ec(),Pc.push(_c),_c={words:[]},gc=0}function Ec(){gc>(Sc.maxWidth||0)&&(Sc.maxWidth=gc)}const Ic=0,Mc=1,Wc=2;const{top:Dc,right:Fc,bottom:zc,left:Nc}=ct;function Yc(t,e,s){const{bounds:i,rows:r}=t;i[e]+=s;for(let t=0;t<r.length;t++)r[t][e]+=s}const Xc={getDrawData:function(e,s){"string"!=typeof e&&(e=String(e));let i=0,r=0,n=s.__getInput("width")||0,o=s.__getInput("height")||0;const{textDecoration:a,__font:h,__padding:l}=s;l&&(n?(i=l[Nc],n-=l[Fc]+l[Nc]):s.autoSizeAlign||(i=l[Nc]),o?(r=l[Dc],o-=l[Dc]+l[zc]):s.autoSizeAlign||(r=l[Dc]));const d={bounds:{x:i,y:r,width:n,height:o},rows:[],paraNumber:0,font:t.canvas.font=h};return function(e,s,i){Sc=e,Pc=e.rows,Cc=e.bounds,Tc=!Cc.width&&!i.autoSizeAlign;const{__letterSpacing:r,paraIndent:n,textCase:o}=i,{canvas:a}=t,{width:h,height:l}=Cc;if(h||l||r||"none"!==o){const t="none"!==i.textWrap,e="break"===i.textWrap;Rc=!0,bc=null,wc=mc=xc=pc=gc=0,uc={data:[]},_c={words:[]};for(let i=0,l=s.length;i<l;i++)yc=s[i],"\n"===yc?(pc&&Ac(),_c.paraEnd=!0,Lc(),Rc=!0):(vc=sc(yc),vc===oc&&"none"!==o&&(yc=rc(yc,o,!pc)),mc=a.measureText(yc).width,r&&(r<0&&(xc=mc),mc+=r),Bc=vc===ac&&(bc===ac||bc===oc)||bc===ac&&vc!==lc,kc=!(vc!==hc&&vc!==ac||bc!==dc&&bc!==lc),fc=Rc&&n?h-n:h,t&&h&&gc+pc+mc>fc&&(e?(pc&&Ac(),gc&&Lc()):(kc||(kc=vc===oc&&bc==lc),Bc||kc||vc===cc||vc===hc||vc===ac||pc+mc>fc?(pc&&Ac(),gc&&Lc()):gc&&Lc()))," "===yc&&!0!==Rc&&gc+pc===0||(vc===cc?(" "===yc&&pc&&Ac(),Oc(yc,mc),Ac()):Bc||kc?(pc&&Ac(),Oc(yc,mc)):Oc(yc,mc)),bc=vc);pc&&Ac(),gc&&Lc(),Pc.length>0&&(Pc[Pc.length-1].paraEnd=!0)}else s.split("\n").forEach((t=>{Sc.paraNumber++,gc=a.measureText(t).width,Pc.push({x:n||0,text:t,width:gc,paraStart:!0}),Tc&&Ec()}))}(d,e,s),l&&function(t,e,s,i,r){if(!i&&s.autoSizeAlign)switch(s.textAlign){case"left":Yc(e,"x",t[Nc]);break;case"right":Yc(e,"x",-t[Fc])}if(!r&&s.autoSizeAlign)switch(s.verticalAlign){case"top":Yc(e,"y",t[Dc]);break;case"bottom":Yc(e,"y",-t[zc])}}(l,d,s,n,o),function(t,e){const{rows:s,bounds:i}=t,{__lineHeight:r,__baseLine:n,__letterSpacing:o,__clipText:a,textAlign:h,verticalAlign:l,paraSpacing:d,autoSizeAlign:c}=e;let{x:u,y:_,width:p,height:g}=i,f=r*s.length+(d?d*(t.paraNumber-1):0),y=n;if(a&&f>g)f=Math.max(g,r),t.overflow=s.length;else if(g||c)switch(l){case"middle":_+=(g-f)/2;break;case"bottom":_+=g-f}y+=_;let m,w,x,v=p||c?p:t.maxWidth;for(let n=0,l=s.length;n<l;n++){if(m=s[n],m.x=u,m.width<p||m.width>p&&!a)switch(h){case"center":m.x+=(v-m.width)/2;break;case"right":m.x+=v-m.width}m.paraStart&&d&&n>0&&(y+=d),m.y=y,y+=r,t.overflow>n&&y>f&&(m.isOverflow=!0,t.overflow=n+1),w=m.x,x=m.width,o<0&&(m.width<0?(x=-m.width+e.fontSize+o,w-=x,x+=e.fontSize):x-=o),w<i.x&&(i.x=w),x>i.width&&(i.width=x),a&&p&&p<x&&(m.isOverflow=!0,t.overflow||(t.overflow=s.length))}i.y=_,i.height=f}(d,s),function(t,e,s,i){const{rows:r}=t,{textAlign:n,paraIndent:o,letterSpacing:a}=e;let h,l,d,c,u;r.forEach((t=>{t.words&&(d=o&&t.paraStart?o:0,l=s&&"justify"===n&&t.words.length>1?(s-t.width-d)/(t.words.length-1):0,c=a||t.isOverflow?Ic:l>.01?Mc:Wc,t.isOverflow&&!a&&(t.textMode=!0),c===Wc?(t.x+=d,function(t){t.text="",t.words.forEach((e=>{e.data.forEach((e=>{t.text+=e.char}))}))}(t)):(t.x+=d,h=t.x,t.data=[],t.words.forEach((e=>{c===Mc?(u={char:"",x:h},h=function(t,e,s){return t.forEach((t=>{s.char+=t.char,e+=t.width})),e}(e.data,h,u),(t.isOverflow||" "!==u.char)&&t.data.push(u)):h=function(t,e,s,i){return t.forEach((t=>{(i||" "!==t.char)&&(t.x=e,s.push(t)),e+=t.width})),e}(e.data,h,t.data,t.isOverflow),!t.paraEnd&&l&&(h+=l,t.width+=l)}))),t.words=null)}))}(d,s,n),d.overflow&&function(e,s,i,r){if(!r)return;const{rows:n,overflow:o}=e;let{textOverflow:a}=s;if(n.splice(o),a&&"show"!==a){let e,h;"hide"===a?a="":"ellipsis"===a&&(a="...");const l=a?t.canvas.measureText(a).width:0,d=i+r-l;("none"===s.textWrap?n:[n[o-1]]).forEach((t=>{if(t.isOverflow&&t.data){let s=t.data.length-1;for(let i=s;i>-1&&(e=t.data[i],h=e.x+e.width,!(i===s&&h<d));i--){if(h<d&&" "!==e.char){t.data.splice(i+1),t.width-=e.width;break}t.width-=e.width}t.width+=l,t.data.push({char:a,x:h}),t.textMode&&function(t){t.text="",t.data.forEach((e=>{t.text+=e.char})),t.data=null}(t)}}))}}(d,s,i,n),"none"!==a&&function(t,e){const{fontSize:s}=e;switch(t.decorationHeight=s/11,e.textDecoration){case"under":t.decorationY=.15*s;break;case"delete":t.decorationY=.35*-s}}(d,s),d}};const jc={string:function(t,e){const s="number"==typeof e&&1!==e;if("string"==typeof t){if(!s||!Wa.object)return t;t=Wa.object(t)}let i=void 0===t.a?1:t.a;s&&(i*=e);const r=t.r+","+t.g+","+t.b;return 1===i?"rgb("+r+")":"rgba("+r+","+i+")"}},{setPoint:Uc,addPoint:Vc,toBounds:Gc}=Y;const Hc={export(s,i,r){this.running=!0;const n=hr.fileType(i),o=i.includes(".");return r=hr.getExportOptions(r),function(t){qc||(qc=new ur);return new Promise((e=>{qc.add((()=>Nt(this,void 0,void 0,(function*(){return yield t(e)}))),{parallel:!1})}))}((h=>new Promise((l=>{const d=t=>{h(t),l(),this.running=!1},{toURL:c}=t,{download:u}=t.origin;if("json"===n)return o&&u(c(JSON.stringify(s.toJSON(r.json)),"text"),i),d({data:!!o||s.toJSON(r.json)});if("svg"===n)return o&&u(c(s.toSVG(),"svg"),i),d({data:!!o||s.toSVG()});const{leafer:_}=s;_?(Qc(s),_.waitViewCompleted((()=>Nt(this,void 0,void 0,(function*(){let t,n,o=1,h=1;const{worldTransform:l,isLeafer:c,isFrame:u}=s,{slice:p,trim:g,onCanvas:f}=r,y=void 0===r.smooth?_.config.smooth:r.smooth,m=r.contextSettings||_.config.contextSettings,w=r.screenshot||s.isApp,x=c&&w&&void 0===r.fill?s.fill:r.fill,v=hr.isOpaqueImage(i)||x,b=new z;if(w)t=!0===w?c?_.canvas.bounds:s.worldRenderBounds:w;else{let e=r.relative||(c?"inner":"local");switch(o=l.scaleX,h=l.scaleY,e){case"inner":b.set(l);break;case"local":b.set(l).divide(s.localTransform),o/=s.scaleX,h/=s.scaleY;break;case"world":o=1,h=1;break;case"page":e=s.leafer;default:b.set(l).divide(s.getTransform(e));const t=e.worldTransform;o/=o/t.scaleX,h/=h/t.scaleY}t=s.getBounds("render",e)}const B={scaleX:1,scaleY:1};a.getScaleData(r.scale,r.size,t,B);let k=r.pixelRatio||1;s.isApp&&(B.scaleX*=k,B.scaleY*=k,k=s.app.pixelRatio);const{x:R,y:S,width:C,height:T}=new ht(t).scale(B.scaleX,B.scaleY),P={matrix:b.scale(1/B.scaleX,1/B.scaleY).invert().translate(-R,-S).withScale(1/o*B.scaleX,1/h*B.scaleY)};let O,A=e.canvas({width:Math.round(C),height:Math.round(T),pixelRatio:k,smooth:y,contextSettings:m});if(p&&(O=s,O.__worldOpacity=0,s=_,P.bounds=A.bounds),A.save(),u&&void 0!==x){const t=s.get("fill");s.fill="",s.__render(A,P),s.fill=t}else s.__render(A,P);if(A.restore(),O&&O.__updateWorldOpacity(),g){n=function(t){const{width:e,height:s}=t.view,{data:i}=t.context.getImageData(0,0,e,s);let r,n,o,a=0;for(let t=0;t<i.length;t+=4)0!==i[t+3]&&(r=a%e,n=(a-r)/e,o?Vc(o,r,n):Uc(o={},r,n)),a++;const h=new ht;return Gc(o,h),h.scale(1/t.pixelRatio).ceil()}(A);const t=A,{width:s,height:i}=n,r={x:0,y:0,width:s,height:i,pixelRatio:k};A=e.canvas(r),A.copyWorld(t,n,r)}v&&A.fillWorld(A.bounds,x||"#FFFFFF","destination-over"),f&&f(A);const L="canvas"===i?A:yield A.export(i,r);d({data:L,width:A.pixelWidth,height:A.pixelHeight,renderBounds:t,trimBounds:n})}))))):d({data:!1})}))))}};let qc;function Qc(t){t.__.__needComputePaint&&t.__.__computePaint(),t.isBranch&&t.children.forEach((t=>Qc(t)))}const Jc=Qt.prototype,$c=wt.get("@leafer-ui/export");Jc.export=function(t,e){const{quality:s,blob:i}=hr.getExportOptions(e);return t.includes(".")?this.saveAs(t,s):i?this.toBlob(t,s):this.toDataURL(t,s)},Jc.toBlob=function(e,s){return new Promise((i=>{t.origin.canvasToBolb(this.view,e,s).then((t=>{i(t)})).catch((t=>{$c.error(t),i(null)}))}))},Jc.toDataURL=function(e,s){return t.origin.canvasToDataURL(this.view,e,s)},Jc.saveAs=function(e,s){return new Promise((i=>{t.origin.canvasSaveAs(this.view,e,s).then((()=>{i(!0)})).catch((t=>{$c.error(t),i(!1)}))}))},Object.assign(Ma,Xc),Object.assign(Wa,jc),Object.assign(za,Pl),Object.assign(Na,ld),Object.assign(Ya,Cd),Object.assign(Xa,Md),Object.assign(ja,Hc);try{wx&&fa(0,wx)}catch(t){}export{yt as AlignHelper,Wt as Answer,pt as AroundHelper,dt as AutoBounds,ke as BezierHelper,ht as Bounds,rt as BoundsHelper,Ph as Box,Za as BoxData,la as Branch,Sn as BranchHelper,Po as BranchRender,hl as Canvas,ch as CanvasData,Lt as CanvasManager,Yn as ChildEvent,Wa as ColorConvert,e as Creator,Et as DataHelper,wt as Debug,ct as Direction4,ut as Direction9,Xa as Effect,Ih as Ellipse,ih as EllipseData,Ee as EllipseHelper,Nn as Event,Ot as EventCreator,Jn as Eventer,ja as Export,hr as FileHelper,Oh as Frame,th as FrameData,mh as Group,$a as GroupData,ol as Image,dh as ImageData,jn as ImageEvent,_r as ImageManager,s as IncrementId,Gn as LayoutEvent,Pa as Layouter,Ko as Leaf,So as LeafBounds,kn as LeafBoundsHelper,Mt as LeafData,co as LeafDataProxy,ao as LeafEventer,fn as LeafHelper,zn as LeafLayout,ca as LeafLevelList,da as LeafList,mo as LeafMatrix,Co as LeafRender,vh as Leafer,_a as LeaferCanvas,Qt as LeaferCanvasBase,Ka as LeaferData,qn as LeaferEvent,yr as LeaferImage,jh as Line,eh as LineData,a as MathHelper,z as Matrix,v as MatrixHelper,al as MyImage,te as NeedConvertToCanvasCommandMap,h as OneRadian,l as PI2,d as PI_2,za as Paint,Ya as PaintGradient,Na as PaintImage,gl as Path,Fa as PathArrow,Ji as PathBounds,Ns as PathCommandDataHelper,Zt as PathCommandMap,ys as PathConvert,rr as PathCorner,ii as PathCreator,oh as PathData,mi as PathDrawer,Jt as PathHelper,re as PathNumberCommandLengthMap,ie as PathNumberCommandMap,fl as Pen,ah as PenData,t as Platform,Rt as Plugin,D as Point,L as PointHelper,Zh as Polygon,rh as PolygonData,Xn as PropertyEvent,bh as Rect,sh as RectData,ne as RectHelper,gh as RectRender,Hn as RenderEvent,Aa as Renderer,Un as ResizeEvent,Bt as Run,nl as Star,nh as StarData,Ua as State,mt as StringNumberMap,cr as TaskItem,ur as TaskProcessor,pl as Text,Ma as TextConvert,lh as TextData,Va as Transition,Y as TwoPointBoundsHelper,yh as UI,uh as UIBounds,Ct as UICreator,Ja as UIData,_h as UIRender,Da as UnitConvert,On as WaitHelper,Vn as WatchEvent,ya as Watcher,Wr as affectRenderBoundsType,Er as affectStrokeBoundsType,vr as attr,Rr as autoLayoutType,Tr as boundsType,ar as canvasPatch,qt as canvasSizeAttrs,Gr as cursorType,Hr as dataProcessor,Br as dataType,xr as decorateLeafAttr,Qr as defineDataProcessor,mr as defineKey,br as defineLeafAttr,Or as doBoundsType,Ir as doStrokeType,La as effectType,Dt as emptyData,Ur as eraserType,u as getBoundsData,wr as getDescriptor,_ as getMatrixData,c as getPointData,Vr as hitType,Ft as isNull,qr as layoutProcessor,jr as maskType,Pr as naturalBoundsType,Fr as opacityType,Ar as pathInputType,Lr as pathType,nr as pen,kr as positionType,rn as registerUI,nn as registerUIEvent,Ea as resizeType,Kr as rewrite,tn as rewriteAble,Cr as rotationType,Sr as scaleType,Xr as sortType,Mr as strokeType,Dr as surfaceType,lt as tempBounds,N as tempMatrix,F as tempPoint,fa as useCanvas,sn as useModule,ua as version,zr as visibleType,Ia as zoomLayerType};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leafer-draw/miniapp",
3
- "version": "1.2.0",
3
+ "version": "1.2.2",
4
4
  "description": "@leafer-draw/miniapp",
5
5
  "author": "Chao (Leafer) Wan",
6
6
  "license": "MIT",
@@ -33,11 +33,11 @@
33
33
  "leaferjs"
34
34
  ],
35
35
  "dependencies": {
36
- "@leafer/core": "1.2.0",
37
- "@leafer/miniapp": "1.2.0",
38
- "@leafer-draw/partner": "1.2.0",
39
- "@leafer-ui/draw": "1.2.0",
40
- "@leafer-ui/partner": "1.2.0",
41
- "@leafer-ui/interface": "1.2.0"
36
+ "@leafer/core": "1.2.2",
37
+ "@leafer/miniapp": "1.2.2",
38
+ "@leafer-draw/partner": "1.2.2",
39
+ "@leafer-ui/draw": "1.2.2",
40
+ "@leafer-ui/partner": "1.2.2",
41
+ "@leafer-ui/interface": "1.2.2"
42
42
  }
43
43
  }