@xframework-ca-test/cli 1.0.36 → 1.0.37

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.
Files changed (2) hide show
  1. package/index.bundle.js +10 -10
  2. package/package.json +1 -1
package/index.bundle.js CHANGED
@@ -19,12 +19,12 @@ Expecting one of '${n.join("', '")}'`);return this._lifeCycleHooks[e]?this._life
19
19
  `),this.outputHelp({error:!0}));let n=r||{},i=n.exitCode||1,o=n.code||"commander.error";this._exit(i,o,e)}_parseOptionsEnv(){this.options.forEach(e=>{if(e.envVar&&e.envVar in k.env){let r=e.attributeName();(this.getOptionValue(r)===void 0||["default","config","env"].includes(this.getOptionValueSource(r)))&&(e.required||e.optional?this.emit(`optionEnv:${e.name()}`,k.env[e.envVar]):this.emit(`optionEnv:${e.name()}`))}})}_parseOptionsImplied(){let e=new Kc(this.options),r=n=>this.getOptionValue(n)!==void 0&&!["default","implied"].includes(this.getOptionValueSource(n));this.options.filter(n=>n.implied!==void 0&&r(n.attributeName())&&e.valueFromOption(this.getOptionValue(n.attributeName()),n)).forEach(n=>{Object.keys(n.implied).filter(i=>!r(i)).forEach(i=>{this.setOptionValueWithSource(i,n.implied[i],"implied")})})}missingArgument(e){let r=`error: missing required argument '${e}'`;this.error(r,{code:"commander.missingArgument"})}optionMissingArgument(e){let r=`error: option '${e.flags}' argument missing`;this.error(r,{code:"commander.optionMissingArgument"})}missingMandatoryOptionValue(e){let r=`error: required option '${e.flags}' not specified`;this.error(r,{code:"commander.missingMandatoryOptionValue"})}_conflictingOption(e,r){let n=s=>{let a=s.attributeName(),l=this.getOptionValue(a),c=this.options.find(f=>f.negate&&a===f.attributeName()),u=this.options.find(f=>!f.negate&&a===f.attributeName());return c&&(c.presetArg===void 0&&l===!1||c.presetArg!==void 0&&l===c.presetArg)?c:u||s},i=s=>{let a=n(s),l=a.attributeName();return this.getOptionValueSource(l)==="env"?`environment variable '${a.envVar}'`:`option '${a.flags}'`},o=`error: ${i(e)} cannot be used with ${i(r)}`;this.error(o,{code:"commander.conflictingOption"})}unknownOption(e){if(this._allowUnknownOption)return;let r="";if(e.startsWith("--")&&this._showSuggestionAfterError){let i=[],o=this;do{let s=o.createHelp().visibleOptions(o).filter(a=>a.long).map(a=>a.long);i=i.concat(s),o=o.parent}while(o&&!o._enablePositionalOptions);r=io(e,i)}let n=`error: unknown option '${e}'${r}`;this.error(n,{code:"commander.unknownOption"})}_excessArguments(e){if(this._allowExcessArguments)return;let r=this.registeredArguments.length,n=r===1?"":"s",o=`error: too many arguments${this.parent?` for '${this.name()}'`:""}. Expected ${r} argument${n} but got ${e.length}.`;this.error(o,{code:"commander.excessArguments"})}unknownCommand(){let e=this.args[0],r="";if(this._showSuggestionAfterError){let i=[];this.createHelp().visibleCommands(this).forEach(o=>{i.push(o.name()),o.alias()&&i.push(o.alias())}),r=io(e,i)}let n=`error: unknown command '${e}'${r}`;this.error(n,{code:"commander.unknownCommand"})}version(e,r,n){if(e===void 0)return this._version;this._version=e,r=r||"-V, --version",n=n||"output the version number";let i=this.createOption(r,n);return this._versionOptionName=i.attributeName(),this.options.push(i),this.on("option:"+i.name(),()=>{this._outputConfiguration.writeOut(`${e}
20
20
  `),this._exit(0,"commander.version",e)}),this}description(e,r){return e===void 0&&r===void 0?this._description:(this._description=e,r&&(this._argsDescription=r),this)}summary(e){return e===void 0?this._summary:(this._summary=e,this)}alias(e){if(e===void 0)return this._aliases[0];let r=this;if(this.commands.length!==0&&this.commands[this.commands.length-1]._executableHandler&&(r=this.commands[this.commands.length-1]),e===r._name)throw new Error("Command alias can't be the same as its name");return r._aliases.push(e),this}aliases(e){return e===void 0?this._aliases:(e.forEach(r=>this.alias(r)),this)}usage(e){if(e===void 0){if(this._usage)return this._usage;let r=this.registeredArguments.map(n=>Hc(n));return[].concat(this.options.length||this._hasHelpOption?"[options]":[],this.commands.length?"[command]":[],this.registeredArguments.length?r:[]).join(" ")}return this._usage=e,this}name(e){return e===void 0?this._name:(this._name=e,this)}nameFromFilename(e){return this._name=ce.basename(e,ce.extname(e)),this}executableDir(e){return e===void 0?this._executableDir:(this._executableDir=e,this)}helpInformation(e){let r=this.createHelp();return r.helpWidth===void 0&&(r.helpWidth=e&&e.error?this._outputConfiguration.getErrHelpWidth():this._outputConfiguration.getOutHelpWidth()),r.formatHelp(this,r)}_getHelpContext(e){e=e||{};let r={error:!!e.error},n;return r.error?n=i=>this._outputConfiguration.writeErr(i):n=i=>this._outputConfiguration.writeOut(i),r.write=e.write||n,r.command=this,r}outputHelp(e){let r;typeof e=="function"&&(r=e,e=void 0);let n=this._getHelpContext(e);this._getCommandAndAncestors().reverse().forEach(o=>o.emit("beforeAllHelp",n)),this.emit("beforeHelp",n);let i=this.helpInformation(n);if(r&&(i=r(i),typeof i!="string"&&!Buffer.isBuffer(i)))throw new Error("outputHelp callback must return a string or a Buffer");n.write(i),this._helpLongFlag&&this.emit(this._helpLongFlag),this.emit("afterHelp",n),this._getCommandAndAncestors().forEach(o=>o.emit("afterAllHelp",n))}helpOption(e,r){if(typeof e=="boolean")return this._hasHelpOption=e,this;this._helpFlags=e||this._helpFlags,this._helpDescription=r||this._helpDescription;let n=zc(this._helpFlags);return this._helpShortFlag=n.shortFlag,this._helpLongFlag=n.longFlag,this}help(e){this.outputHelp(e);let r=k.exitCode||0;r===0&&e&&typeof e!="function"&&e.error&&(r=1),this._exit(r,"commander.help","(outputHelp)")}addHelpText(e,r){let n=["beforeAll","before","after","afterAll"];if(!n.includes(e))throw new Error(`Unexpected value for position to addHelpText.
21
21
  Expecting one of '${n.join("', '")}'`);let i=`${e}Help`;return this.on(i,o=>{let s;typeof r=="function"?s=r({error:o.error,command:o.command}):s=r,s&&o.write(`${s}
22
- `)}),this}};function oo(t,e){t._hasHelpOption&&e.find(n=>n===t._helpLongFlag||n===t._helpShortFlag)&&(t.outputHelp(),t._exit(0,"commander.helpDisplayed","(outputHelp)"))}function so(t){return t.map(e=>{if(!e.startsWith("--inspect"))return e;let r,n="127.0.0.1",i="9229",o;return(o=e.match(/^(--inspect(-brk)?)$/))!==null?r=o[1]:(o=e.match(/^(--inspect(-brk|-port)?)=([^:]+)$/))!==null?(r=o[1],/^\d+$/.test(o[3])?i=o[3]:n=o[3]):(o=e.match(/^(--inspect(-brk|-port)?)=([^:]+):(\d+)$/))!==null&&(r=o[1],n=o[3],i=o[4]),r&&i!=="0"?`${r}=${n}:${parseInt(i)+1}`:e})}ao.Command=hn});var ho=p((Z,fo)=>{var{Argument:Yc}=Lt(),{Command:co}=lo(),{CommanderError:Jc,InvalidArgumentError:uo}=at(),{Help:Xc}=sn(),{Option:Zc}=cn();Z=fo.exports=new co;Z.program=Z;Z.Command=co;Z.Option=Zc;Z.Argument=Yc;Z.Help=Xc;Z.CommanderError=Jc;Z.InvalidArgumentError=uo;Z.InvalidOptionArgumentError=uo});var pn=p((H0,Qc)=>{Qc.exports={name:"@xframework-ca-test/cli",version:"1.0.36",description:"xFramework \u2014 one command to run your portal locally",main:"index.bundle.js",bin:{"xframework-cli":"./index.bundle.js"},scripts:{start:"node index.js start",build:"npx esbuild index.js --bundle --platform=node --minify --external:embedded-postgres --external:*.node --outfile=index.bundle.js",prepack:"node scripts/prepack.js",prepublishOnly:"npm run build","build:aws":"node scripts/build-aws.js"},dependencies:{"adm-zip":"^0.5.17",chalk:"^4.1.2",commander:"^11.0.0",dotenv:"^16.4.5","embedded-postgres":"^18.3.0-beta.16","extract-zip":"^2.0.1",open:"^8.4.2",ora:"^5.4.1"},devDependencies:{esbuild:"^0.20.0"},engines:{node:">=18.0.0"},optionalDependencies:{"@embedded-postgres/win32-x64":"*"}}});var go=p((G0,po)=>{"use strict";po.exports={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]}});var gn=p((z0,yo)=>{var lt=go(),mo={};for(let t of Object.keys(lt))mo[lt[t]]=t;var b={rgb:{channels:3,labels:"rgb"},hsl:{channels:3,labels:"hsl"},hsv:{channels:3,labels:"hsv"},hwb:{channels:3,labels:"hwb"},cmyk:{channels:4,labels:"cmyk"},xyz:{channels:3,labels:"xyz"},lab:{channels:3,labels:"lab"},lch:{channels:3,labels:"lch"},hex:{channels:1,labels:["hex"]},keyword:{channels:1,labels:["keyword"]},ansi16:{channels:1,labels:["ansi16"]},ansi256:{channels:1,labels:["ansi256"]},hcg:{channels:3,labels:["h","c","g"]},apple:{channels:3,labels:["r16","g16","b16"]},gray:{channels:1,labels:["gray"]}};yo.exports=b;for(let t of Object.keys(b)){if(!("channels"in b[t]))throw new Error("missing channels property: "+t);if(!("labels"in b[t]))throw new Error("missing channel labels property: "+t);if(b[t].labels.length!==b[t].channels)throw new Error("channel and label counts mismatch: "+t);let{channels:e,labels:r}=b[t];delete b[t].channels,delete b[t].labels,Object.defineProperty(b[t],"channels",{value:e}),Object.defineProperty(b[t],"labels",{value:r})}b.rgb.hsl=function(t){let e=t[0]/255,r=t[1]/255,n=t[2]/255,i=Math.min(e,r,n),o=Math.max(e,r,n),s=o-i,a,l;o===i?a=0:e===o?a=(r-n)/s:r===o?a=2+(n-e)/s:n===o&&(a=4+(e-r)/s),a=Math.min(a*60,360),a<0&&(a+=360);let c=(i+o)/2;return o===i?l=0:c<=.5?l=s/(o+i):l=s/(2-o-i),[a,l*100,c*100]};b.rgb.hsv=function(t){let e,r,n,i,o,s=t[0]/255,a=t[1]/255,l=t[2]/255,c=Math.max(s,a,l),u=c-Math.min(s,a,l),f=function(d){return(c-d)/6/u+1/2};return u===0?(i=0,o=0):(o=u/c,e=f(s),r=f(a),n=f(l),s===c?i=n-r:a===c?i=1/3+e-n:l===c&&(i=2/3+r-e),i<0?i+=1:i>1&&(i-=1)),[i*360,o*100,c*100]};b.rgb.hwb=function(t){let e=t[0],r=t[1],n=t[2],i=b.rgb.hsl(t)[0],o=1/255*Math.min(e,Math.min(r,n));return n=1-1/255*Math.max(e,Math.max(r,n)),[i,o*100,n*100]};b.rgb.cmyk=function(t){let e=t[0]/255,r=t[1]/255,n=t[2]/255,i=Math.min(1-e,1-r,1-n),o=(1-e-i)/(1-i)||0,s=(1-r-i)/(1-i)||0,a=(1-n-i)/(1-i)||0;return[o*100,s*100,a*100,i*100]};function eu(t,e){return(t[0]-e[0])**2+(t[1]-e[1])**2+(t[2]-e[2])**2}b.rgb.keyword=function(t){let e=mo[t];if(e)return e;let r=1/0,n;for(let i of Object.keys(lt)){let o=lt[i],s=eu(t,o);s<r&&(r=s,n=i)}return n};b.keyword.rgb=function(t){return lt[t]};b.rgb.xyz=function(t){let e=t[0]/255,r=t[1]/255,n=t[2]/255;e=e>.04045?((e+.055)/1.055)**2.4:e/12.92,r=r>.04045?((r+.055)/1.055)**2.4:r/12.92,n=n>.04045?((n+.055)/1.055)**2.4:n/12.92;let i=e*.4124+r*.3576+n*.1805,o=e*.2126+r*.7152+n*.0722,s=e*.0193+r*.1192+n*.9505;return[i*100,o*100,s*100]};b.rgb.lab=function(t){let e=b.rgb.xyz(t),r=e[0],n=e[1],i=e[2];r/=95.047,n/=100,i/=108.883,r=r>.008856?r**(1/3):7.787*r+16/116,n=n>.008856?n**(1/3):7.787*n+16/116,i=i>.008856?i**(1/3):7.787*i+16/116;let o=116*n-16,s=500*(r-n),a=200*(n-i);return[o,s,a]};b.hsl.rgb=function(t){let e=t[0]/360,r=t[1]/100,n=t[2]/100,i,o,s;if(r===0)return s=n*255,[s,s,s];n<.5?i=n*(1+r):i=n+r-n*r;let a=2*n-i,l=[0,0,0];for(let c=0;c<3;c++)o=e+1/3*-(c-1),o<0&&o++,o>1&&o--,6*o<1?s=a+(i-a)*6*o:2*o<1?s=i:3*o<2?s=a+(i-a)*(2/3-o)*6:s=a,l[c]=s*255;return l};b.hsl.hsv=function(t){let e=t[0],r=t[1]/100,n=t[2]/100,i=r,o=Math.max(n,.01);n*=2,r*=n<=1?n:2-n,i*=o<=1?o:2-o;let s=(n+r)/2,a=n===0?2*i/(o+i):2*r/(n+r);return[e,a*100,s*100]};b.hsv.rgb=function(t){let e=t[0]/60,r=t[1]/100,n=t[2]/100,i=Math.floor(e)%6,o=e-Math.floor(e),s=255*n*(1-r),a=255*n*(1-r*o),l=255*n*(1-r*(1-o));switch(n*=255,i){case 0:return[n,l,s];case 1:return[a,n,s];case 2:return[s,n,l];case 3:return[s,a,n];case 4:return[l,s,n];case 5:return[n,s,a]}};b.hsv.hsl=function(t){let e=t[0],r=t[1]/100,n=t[2]/100,i=Math.max(n,.01),o,s;s=(2-r)*n;let a=(2-r)*i;return o=r*i,o/=a<=1?a:2-a,o=o||0,s/=2,[e,o*100,s*100]};b.hwb.rgb=function(t){let e=t[0]/360,r=t[1]/100,n=t[2]/100,i=r+n,o;i>1&&(r/=i,n/=i);let s=Math.floor(6*e),a=1-n;o=6*e-s,s&1&&(o=1-o);let l=r+o*(a-r),c,u,f;switch(s){default:case 6:case 0:c=a,u=l,f=r;break;case 1:c=l,u=a,f=r;break;case 2:c=r,u=a,f=l;break;case 3:c=r,u=l,f=a;break;case 4:c=l,u=r,f=a;break;case 5:c=a,u=r,f=l;break}return[c*255,u*255,f*255]};b.cmyk.rgb=function(t){let e=t[0]/100,r=t[1]/100,n=t[2]/100,i=t[3]/100,o=1-Math.min(1,e*(1-i)+i),s=1-Math.min(1,r*(1-i)+i),a=1-Math.min(1,n*(1-i)+i);return[o*255,s*255,a*255]};b.xyz.rgb=function(t){let e=t[0]/100,r=t[1]/100,n=t[2]/100,i,o,s;return i=e*3.2406+r*-1.5372+n*-.4986,o=e*-.9689+r*1.8758+n*.0415,s=e*.0557+r*-.204+n*1.057,i=i>.0031308?1.055*i**(1/2.4)-.055:i*12.92,o=o>.0031308?1.055*o**(1/2.4)-.055:o*12.92,s=s>.0031308?1.055*s**(1/2.4)-.055:s*12.92,i=Math.min(Math.max(0,i),1),o=Math.min(Math.max(0,o),1),s=Math.min(Math.max(0,s),1),[i*255,o*255,s*255]};b.xyz.lab=function(t){let e=t[0],r=t[1],n=t[2];e/=95.047,r/=100,n/=108.883,e=e>.008856?e**(1/3):7.787*e+16/116,r=r>.008856?r**(1/3):7.787*r+16/116,n=n>.008856?n**(1/3):7.787*n+16/116;let i=116*r-16,o=500*(e-r),s=200*(r-n);return[i,o,s]};b.lab.xyz=function(t){let e=t[0],r=t[1],n=t[2],i,o,s;o=(e+16)/116,i=r/500+o,s=o-n/200;let a=o**3,l=i**3,c=s**3;return o=a>.008856?a:(o-16/116)/7.787,i=l>.008856?l:(i-16/116)/7.787,s=c>.008856?c:(s-16/116)/7.787,i*=95.047,o*=100,s*=108.883,[i,o,s]};b.lab.lch=function(t){let e=t[0],r=t[1],n=t[2],i;i=Math.atan2(n,r)*360/2/Math.PI,i<0&&(i+=360);let s=Math.sqrt(r*r+n*n);return[e,s,i]};b.lch.lab=function(t){let e=t[0],r=t[1],i=t[2]/360*2*Math.PI,o=r*Math.cos(i),s=r*Math.sin(i);return[e,o,s]};b.rgb.ansi16=function(t,e=null){let[r,n,i]=t,o=e===null?b.rgb.hsv(t)[2]:e;if(o=Math.round(o/50),o===0)return 30;let s=30+(Math.round(i/255)<<2|Math.round(n/255)<<1|Math.round(r/255));return o===2&&(s+=60),s};b.hsv.ansi16=function(t){return b.rgb.ansi16(b.hsv.rgb(t),t[2])};b.rgb.ansi256=function(t){let e=t[0],r=t[1],n=t[2];return e===r&&r===n?e<8?16:e>248?231:Math.round((e-8)/247*24)+232:16+36*Math.round(e/255*5)+6*Math.round(r/255*5)+Math.round(n/255*5)};b.ansi16.rgb=function(t){let e=t%10;if(e===0||e===7)return t>50&&(e+=3.5),e=e/10.5*255,[e,e,e];let r=(~~(t>50)+1)*.5,n=(e&1)*r*255,i=(e>>1&1)*r*255,o=(e>>2&1)*r*255;return[n,i,o]};b.ansi256.rgb=function(t){if(t>=232){let o=(t-232)*10+8;return[o,o,o]}t-=16;let e,r=Math.floor(t/36)/5*255,n=Math.floor((e=t%36)/6)/5*255,i=e%6/5*255;return[r,n,i]};b.rgb.hex=function(t){let r=(((Math.round(t[0])&255)<<16)+((Math.round(t[1])&255)<<8)+(Math.round(t[2])&255)).toString(16).toUpperCase();return"000000".substring(r.length)+r};b.hex.rgb=function(t){let e=t.toString(16).match(/[a-f0-9]{6}|[a-f0-9]{3}/i);if(!e)return[0,0,0];let r=e[0];e[0].length===3&&(r=r.split("").map(a=>a+a).join(""));let n=parseInt(r,16),i=n>>16&255,o=n>>8&255,s=n&255;return[i,o,s]};b.rgb.hcg=function(t){let e=t[0]/255,r=t[1]/255,n=t[2]/255,i=Math.max(Math.max(e,r),n),o=Math.min(Math.min(e,r),n),s=i-o,a,l;return s<1?a=o/(1-s):a=0,s<=0?l=0:i===e?l=(r-n)/s%6:i===r?l=2+(n-e)/s:l=4+(e-r)/s,l/=6,l%=1,[l*360,s*100,a*100]};b.hsl.hcg=function(t){let e=t[1]/100,r=t[2]/100,n=r<.5?2*e*r:2*e*(1-r),i=0;return n<1&&(i=(r-.5*n)/(1-n)),[t[0],n*100,i*100]};b.hsv.hcg=function(t){let e=t[1]/100,r=t[2]/100,n=e*r,i=0;return n<1&&(i=(r-n)/(1-n)),[t[0],n*100,i*100]};b.hcg.rgb=function(t){let e=t[0]/360,r=t[1]/100,n=t[2]/100;if(r===0)return[n*255,n*255,n*255];let i=[0,0,0],o=e%1*6,s=o%1,a=1-s,l=0;switch(Math.floor(o)){case 0:i[0]=1,i[1]=s,i[2]=0;break;case 1:i[0]=a,i[1]=1,i[2]=0;break;case 2:i[0]=0,i[1]=1,i[2]=s;break;case 3:i[0]=0,i[1]=a,i[2]=1;break;case 4:i[0]=s,i[1]=0,i[2]=1;break;default:i[0]=1,i[1]=0,i[2]=a}return l=(1-r)*n,[(r*i[0]+l)*255,(r*i[1]+l)*255,(r*i[2]+l)*255]};b.hcg.hsv=function(t){let e=t[1]/100,r=t[2]/100,n=e+r*(1-e),i=0;return n>0&&(i=e/n),[t[0],i*100,n*100]};b.hcg.hsl=function(t){let e=t[1]/100,n=t[2]/100*(1-e)+.5*e,i=0;return n>0&&n<.5?i=e/(2*n):n>=.5&&n<1&&(i=e/(2*(1-n))),[t[0],i*100,n*100]};b.hcg.hwb=function(t){let e=t[1]/100,r=t[2]/100,n=e+r*(1-e);return[t[0],(n-e)*100,(1-n)*100]};b.hwb.hcg=function(t){let e=t[1]/100,n=1-t[2]/100,i=n-e,o=0;return i<1&&(o=(n-i)/(1-i)),[t[0],i*100,o*100]};b.apple.rgb=function(t){return[t[0]/65535*255,t[1]/65535*255,t[2]/65535*255]};b.rgb.apple=function(t){return[t[0]/255*65535,t[1]/255*65535,t[2]/255*65535]};b.gray.rgb=function(t){return[t[0]/100*255,t[0]/100*255,t[0]/100*255]};b.gray.hsl=function(t){return[0,0,t[0]]};b.gray.hsv=b.gray.hsl;b.gray.hwb=function(t){return[0,100,t[0]]};b.gray.cmyk=function(t){return[0,0,0,t[0]]};b.gray.lab=function(t){return[t[0],0,0]};b.gray.hex=function(t){let e=Math.round(t[0]/100*255)&255,n=((e<<16)+(e<<8)+e).toString(16).toUpperCase();return"000000".substring(n.length)+n};b.rgb.gray=function(t){return[(t[0]+t[1]+t[2])/3/255*100]}});var xo=p((K0,_o)=>{var kt=gn();function tu(){let t={},e=Object.keys(kt);for(let r=e.length,n=0;n<r;n++)t[e[n]]={distance:-1,parent:null};return t}function ru(t){let e=tu(),r=[t];for(e[t].distance=0;r.length;){let n=r.pop(),i=Object.keys(kt[n]);for(let o=i.length,s=0;s<o;s++){let a=i[s],l=e[a];l.distance===-1&&(l.distance=e[n].distance+1,l.parent=n,r.unshift(a))}}return e}function nu(t,e){return function(r){return e(t(r))}}function iu(t,e){let r=[e[t].parent,t],n=kt[e[t].parent][t],i=e[t].parent;for(;e[i].parent;)r.unshift(e[i].parent),n=nu(kt[e[i].parent][i],n),i=e[i].parent;return n.conversion=r,n}_o.exports=function(t){let e=ru(t),r={},n=Object.keys(e);for(let i=n.length,o=0;o<i;o++){let s=n[o];e[s].parent!==null&&(r[s]=iu(s,e))}return r}});var wo=p((Y0,bo)=>{var mn=gn(),ou=xo(),qe={},su=Object.keys(mn);function au(t){let e=function(...r){let n=r[0];return n==null?n:(n.length>1&&(r=n),t(r))};return"conversion"in t&&(e.conversion=t.conversion),e}function lu(t){let e=function(...r){let n=r[0];if(n==null)return n;n.length>1&&(r=n);let i=t(r);if(typeof i=="object")for(let o=i.length,s=0;s<o;s++)i[s]=Math.round(i[s]);return i};return"conversion"in t&&(e.conversion=t.conversion),e}su.forEach(t=>{qe[t]={},Object.defineProperty(qe[t],"channels",{value:mn[t].channels}),Object.defineProperty(qe[t],"labels",{value:mn[t].labels});let e=ou(t);Object.keys(e).forEach(n=>{let i=e[n];qe[t][n]=lu(i),qe[t][n].raw=au(i)})});bo.exports=qe});var Io=p((J0,Ao)=>{"use strict";var vo=(t,e)=>(...r)=>`\x1B[${t(...r)+e}m`,Eo=(t,e)=>(...r)=>{let n=t(...r);return`\x1B[${38+e};5;${n}m`},So=(t,e)=>(...r)=>{let n=t(...r);return`\x1B[${38+e};2;${n[0]};${n[1]};${n[2]}m`},Nt=t=>t,Co=(t,e,r)=>[t,e,r],Be=(t,e,r)=>{Object.defineProperty(t,e,{get:()=>{let n=r();return Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0}),n},enumerable:!0,configurable:!0})},yn,je=(t,e,r,n)=>{yn===void 0&&(yn=wo());let i=n?10:0,o={};for(let[s,a]of Object.entries(yn)){let l=s==="ansi16"?"ansi":s;s===e?o[l]=t(r,i):typeof a=="object"&&(o[l]=t(a[e],i))}return o};function cu(){let t=new Map,e={modifier:{reset:[0,0],bold:[1,22],dim:[2,22],italic:[3,23],underline:[4,24],inverse:[7,27],hidden:[8,28],strikethrough:[9,29]},color:{black:[30,39],red:[31,39],green:[32,39],yellow:[33,39],blue:[34,39],magenta:[35,39],cyan:[36,39],white:[37,39],blackBright:[90,39],redBright:[91,39],greenBright:[92,39],yellowBright:[93,39],blueBright:[94,39],magentaBright:[95,39],cyanBright:[96,39],whiteBright:[97,39]},bgColor:{bgBlack:[40,49],bgRed:[41,49],bgGreen:[42,49],bgYellow:[43,49],bgBlue:[44,49],bgMagenta:[45,49],bgCyan:[46,49],bgWhite:[47,49],bgBlackBright:[100,49],bgRedBright:[101,49],bgGreenBright:[102,49],bgYellowBright:[103,49],bgBlueBright:[104,49],bgMagentaBright:[105,49],bgCyanBright:[106,49],bgWhiteBright:[107,49]}};e.color.gray=e.color.blackBright,e.bgColor.bgGray=e.bgColor.bgBlackBright,e.color.grey=e.color.blackBright,e.bgColor.bgGrey=e.bgColor.bgBlackBright;for(let[r,n]of Object.entries(e)){for(let[i,o]of Object.entries(n))e[i]={open:`\x1B[${o[0]}m`,close:`\x1B[${o[1]}m`},n[i]=e[i],t.set(o[0],o[1]);Object.defineProperty(e,r,{value:n,enumerable:!1})}return Object.defineProperty(e,"codes",{value:t,enumerable:!1}),e.color.close="\x1B[39m",e.bgColor.close="\x1B[49m",Be(e.color,"ansi",()=>je(vo,"ansi16",Nt,!1)),Be(e.color,"ansi256",()=>je(Eo,"ansi256",Nt,!1)),Be(e.color,"ansi16m",()=>je(So,"rgb",Co,!1)),Be(e.bgColor,"ansi",()=>je(vo,"ansi16",Nt,!0)),Be(e.bgColor,"ansi256",()=>je(Eo,"ansi256",Nt,!0)),Be(e.bgColor,"ansi16m",()=>je(So,"rgb",Co,!0)),e}Object.defineProperty(Ao,"exports",{enumerable:!0,get:cu})});var To=p((X0,Oo)=>{"use strict";Oo.exports=(t,e=process.argv)=>{let r=t.startsWith("-")?"":t.length===1?"-":"--",n=e.indexOf(r+t),i=e.indexOf("--");return n!==-1&&(i===-1||n<i)}});var bn=p((Z0,Ro)=>{"use strict";var uu=require("os"),Po=require("tty"),K=To(),{env:$}=process,pe;K("no-color")||K("no-colors")||K("color=false")||K("color=never")?pe=0:(K("color")||K("colors")||K("color=true")||K("color=always"))&&(pe=1);"FORCE_COLOR"in $&&($.FORCE_COLOR==="true"?pe=1:$.FORCE_COLOR==="false"?pe=0:pe=$.FORCE_COLOR.length===0?1:Math.min(parseInt($.FORCE_COLOR,10),3));function _n(t){return t===0?!1:{level:t,hasBasic:!0,has256:t>=2,has16m:t>=3}}function xn(t,e){if(pe===0)return 0;if(K("color=16m")||K("color=full")||K("color=truecolor"))return 3;if(K("color=256"))return 2;if(t&&!e&&pe===void 0)return 0;let r=pe||0;if($.TERM==="dumb")return r;if(process.platform==="win32"){let n=uu.release().split(".");return Number(n[0])>=10&&Number(n[2])>=10586?Number(n[2])>=14931?3:2:1}if("CI"in $)return["TRAVIS","CIRCLECI","APPVEYOR","GITLAB_CI","GITHUB_ACTIONS","BUILDKITE"].some(n=>n in $)||$.CI_NAME==="codeship"?1:r;if("TEAMCITY_VERSION"in $)return/^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test($.TEAMCITY_VERSION)?1:0;if($.COLORTERM==="truecolor")return 3;if("TERM_PROGRAM"in $){let n=parseInt(($.TERM_PROGRAM_VERSION||"").split(".")[0],10);switch($.TERM_PROGRAM){case"iTerm.app":return n>=3?3:2;case"Apple_Terminal":return 2}}return/-256(color)?$/i.test($.TERM)?2:/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test($.TERM)||"COLORTERM"in $?1:r}function fu(t){let e=xn(t,t&&t.isTTY);return _n(e)}Ro.exports={supportsColor:fu,stdout:_n(xn(!0,Po.isatty(1))),stderr:_n(xn(!0,Po.isatty(2)))}});var Lo=p((Q0,Fo)=>{"use strict";var du=(t,e,r)=>{let n=t.indexOf(e);if(n===-1)return t;let i=e.length,o=0,s="";do s+=t.substr(o,n-o)+e+r,o=n+i,n=t.indexOf(e,o);while(n!==-1);return s+=t.substr(o),s},hu=(t,e,r,n)=>{let i=0,o="";do{let s=t[n-1]==="\r";o+=t.substr(i,(s?n-1:n)-i)+e+(s?`\r
22
+ `)}),this}};function oo(t,e){t._hasHelpOption&&e.find(n=>n===t._helpLongFlag||n===t._helpShortFlag)&&(t.outputHelp(),t._exit(0,"commander.helpDisplayed","(outputHelp)"))}function so(t){return t.map(e=>{if(!e.startsWith("--inspect"))return e;let r,n="127.0.0.1",i="9229",o;return(o=e.match(/^(--inspect(-brk)?)$/))!==null?r=o[1]:(o=e.match(/^(--inspect(-brk|-port)?)=([^:]+)$/))!==null?(r=o[1],/^\d+$/.test(o[3])?i=o[3]:n=o[3]):(o=e.match(/^(--inspect(-brk|-port)?)=([^:]+):(\d+)$/))!==null&&(r=o[1],n=o[3],i=o[4]),r&&i!=="0"?`${r}=${n}:${parseInt(i)+1}`:e})}ao.Command=hn});var ho=p((Z,fo)=>{var{Argument:Yc}=Lt(),{Command:co}=lo(),{CommanderError:Jc,InvalidArgumentError:uo}=at(),{Help:Xc}=sn(),{Option:Zc}=cn();Z=fo.exports=new co;Z.program=Z;Z.Command=co;Z.Option=Zc;Z.Argument=Yc;Z.Help=Xc;Z.CommanderError=Jc;Z.InvalidArgumentError=uo;Z.InvalidOptionArgumentError=uo});var pn=p((H0,Qc)=>{Qc.exports={name:"@xframework-ca-test/cli",version:"1.0.37",description:"xFramework \u2014 one command to run your portal locally",main:"index.bundle.js",bin:{"xframework-cli":"./index.bundle.js"},scripts:{start:"node index.js start",build:"npx esbuild index.js --bundle --platform=node --minify --external:embedded-postgres --external:*.node --outfile=index.bundle.js",prepack:"node scripts/prepack.js",prepublishOnly:"npm run build","build:aws":"node scripts/build-aws.js"},dependencies:{"adm-zip":"^0.5.17",chalk:"^4.1.2",commander:"^11.0.0",dotenv:"^16.4.5","embedded-postgres":"^18.3.0-beta.16","extract-zip":"^2.0.1",open:"^8.4.2",ora:"^5.4.1"},devDependencies:{esbuild:"^0.20.0"},engines:{node:">=18.0.0"},optionalDependencies:{"@embedded-postgres/win32-x64":"*"}}});var go=p((G0,po)=>{"use strict";po.exports={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]}});var gn=p((z0,yo)=>{var lt=go(),mo={};for(let t of Object.keys(lt))mo[lt[t]]=t;var b={rgb:{channels:3,labels:"rgb"},hsl:{channels:3,labels:"hsl"},hsv:{channels:3,labels:"hsv"},hwb:{channels:3,labels:"hwb"},cmyk:{channels:4,labels:"cmyk"},xyz:{channels:3,labels:"xyz"},lab:{channels:3,labels:"lab"},lch:{channels:3,labels:"lch"},hex:{channels:1,labels:["hex"]},keyword:{channels:1,labels:["keyword"]},ansi16:{channels:1,labels:["ansi16"]},ansi256:{channels:1,labels:["ansi256"]},hcg:{channels:3,labels:["h","c","g"]},apple:{channels:3,labels:["r16","g16","b16"]},gray:{channels:1,labels:["gray"]}};yo.exports=b;for(let t of Object.keys(b)){if(!("channels"in b[t]))throw new Error("missing channels property: "+t);if(!("labels"in b[t]))throw new Error("missing channel labels property: "+t);if(b[t].labels.length!==b[t].channels)throw new Error("channel and label counts mismatch: "+t);let{channels:e,labels:r}=b[t];delete b[t].channels,delete b[t].labels,Object.defineProperty(b[t],"channels",{value:e}),Object.defineProperty(b[t],"labels",{value:r})}b.rgb.hsl=function(t){let e=t[0]/255,r=t[1]/255,n=t[2]/255,i=Math.min(e,r,n),o=Math.max(e,r,n),s=o-i,a,l;o===i?a=0:e===o?a=(r-n)/s:r===o?a=2+(n-e)/s:n===o&&(a=4+(e-r)/s),a=Math.min(a*60,360),a<0&&(a+=360);let c=(i+o)/2;return o===i?l=0:c<=.5?l=s/(o+i):l=s/(2-o-i),[a,l*100,c*100]};b.rgb.hsv=function(t){let e,r,n,i,o,s=t[0]/255,a=t[1]/255,l=t[2]/255,c=Math.max(s,a,l),u=c-Math.min(s,a,l),f=function(d){return(c-d)/6/u+1/2};return u===0?(i=0,o=0):(o=u/c,e=f(s),r=f(a),n=f(l),s===c?i=n-r:a===c?i=1/3+e-n:l===c&&(i=2/3+r-e),i<0?i+=1:i>1&&(i-=1)),[i*360,o*100,c*100]};b.rgb.hwb=function(t){let e=t[0],r=t[1],n=t[2],i=b.rgb.hsl(t)[0],o=1/255*Math.min(e,Math.min(r,n));return n=1-1/255*Math.max(e,Math.max(r,n)),[i,o*100,n*100]};b.rgb.cmyk=function(t){let e=t[0]/255,r=t[1]/255,n=t[2]/255,i=Math.min(1-e,1-r,1-n),o=(1-e-i)/(1-i)||0,s=(1-r-i)/(1-i)||0,a=(1-n-i)/(1-i)||0;return[o*100,s*100,a*100,i*100]};function eu(t,e){return(t[0]-e[0])**2+(t[1]-e[1])**2+(t[2]-e[2])**2}b.rgb.keyword=function(t){let e=mo[t];if(e)return e;let r=1/0,n;for(let i of Object.keys(lt)){let o=lt[i],s=eu(t,o);s<r&&(r=s,n=i)}return n};b.keyword.rgb=function(t){return lt[t]};b.rgb.xyz=function(t){let e=t[0]/255,r=t[1]/255,n=t[2]/255;e=e>.04045?((e+.055)/1.055)**2.4:e/12.92,r=r>.04045?((r+.055)/1.055)**2.4:r/12.92,n=n>.04045?((n+.055)/1.055)**2.4:n/12.92;let i=e*.4124+r*.3576+n*.1805,o=e*.2126+r*.7152+n*.0722,s=e*.0193+r*.1192+n*.9505;return[i*100,o*100,s*100]};b.rgb.lab=function(t){let e=b.rgb.xyz(t),r=e[0],n=e[1],i=e[2];r/=95.047,n/=100,i/=108.883,r=r>.008856?r**(1/3):7.787*r+16/116,n=n>.008856?n**(1/3):7.787*n+16/116,i=i>.008856?i**(1/3):7.787*i+16/116;let o=116*n-16,s=500*(r-n),a=200*(n-i);return[o,s,a]};b.hsl.rgb=function(t){let e=t[0]/360,r=t[1]/100,n=t[2]/100,i,o,s;if(r===0)return s=n*255,[s,s,s];n<.5?i=n*(1+r):i=n+r-n*r;let a=2*n-i,l=[0,0,0];for(let c=0;c<3;c++)o=e+1/3*-(c-1),o<0&&o++,o>1&&o--,6*o<1?s=a+(i-a)*6*o:2*o<1?s=i:3*o<2?s=a+(i-a)*(2/3-o)*6:s=a,l[c]=s*255;return l};b.hsl.hsv=function(t){let e=t[0],r=t[1]/100,n=t[2]/100,i=r,o=Math.max(n,.01);n*=2,r*=n<=1?n:2-n,i*=o<=1?o:2-o;let s=(n+r)/2,a=n===0?2*i/(o+i):2*r/(n+r);return[e,a*100,s*100]};b.hsv.rgb=function(t){let e=t[0]/60,r=t[1]/100,n=t[2]/100,i=Math.floor(e)%6,o=e-Math.floor(e),s=255*n*(1-r),a=255*n*(1-r*o),l=255*n*(1-r*(1-o));switch(n*=255,i){case 0:return[n,l,s];case 1:return[a,n,s];case 2:return[s,n,l];case 3:return[s,a,n];case 4:return[l,s,n];case 5:return[n,s,a]}};b.hsv.hsl=function(t){let e=t[0],r=t[1]/100,n=t[2]/100,i=Math.max(n,.01),o,s;s=(2-r)*n;let a=(2-r)*i;return o=r*i,o/=a<=1?a:2-a,o=o||0,s/=2,[e,o*100,s*100]};b.hwb.rgb=function(t){let e=t[0]/360,r=t[1]/100,n=t[2]/100,i=r+n,o;i>1&&(r/=i,n/=i);let s=Math.floor(6*e),a=1-n;o=6*e-s,s&1&&(o=1-o);let l=r+o*(a-r),c,u,f;switch(s){default:case 6:case 0:c=a,u=l,f=r;break;case 1:c=l,u=a,f=r;break;case 2:c=r,u=a,f=l;break;case 3:c=r,u=l,f=a;break;case 4:c=l,u=r,f=a;break;case 5:c=a,u=r,f=l;break}return[c*255,u*255,f*255]};b.cmyk.rgb=function(t){let e=t[0]/100,r=t[1]/100,n=t[2]/100,i=t[3]/100,o=1-Math.min(1,e*(1-i)+i),s=1-Math.min(1,r*(1-i)+i),a=1-Math.min(1,n*(1-i)+i);return[o*255,s*255,a*255]};b.xyz.rgb=function(t){let e=t[0]/100,r=t[1]/100,n=t[2]/100,i,o,s;return i=e*3.2406+r*-1.5372+n*-.4986,o=e*-.9689+r*1.8758+n*.0415,s=e*.0557+r*-.204+n*1.057,i=i>.0031308?1.055*i**(1/2.4)-.055:i*12.92,o=o>.0031308?1.055*o**(1/2.4)-.055:o*12.92,s=s>.0031308?1.055*s**(1/2.4)-.055:s*12.92,i=Math.min(Math.max(0,i),1),o=Math.min(Math.max(0,o),1),s=Math.min(Math.max(0,s),1),[i*255,o*255,s*255]};b.xyz.lab=function(t){let e=t[0],r=t[1],n=t[2];e/=95.047,r/=100,n/=108.883,e=e>.008856?e**(1/3):7.787*e+16/116,r=r>.008856?r**(1/3):7.787*r+16/116,n=n>.008856?n**(1/3):7.787*n+16/116;let i=116*r-16,o=500*(e-r),s=200*(r-n);return[i,o,s]};b.lab.xyz=function(t){let e=t[0],r=t[1],n=t[2],i,o,s;o=(e+16)/116,i=r/500+o,s=o-n/200;let a=o**3,l=i**3,c=s**3;return o=a>.008856?a:(o-16/116)/7.787,i=l>.008856?l:(i-16/116)/7.787,s=c>.008856?c:(s-16/116)/7.787,i*=95.047,o*=100,s*=108.883,[i,o,s]};b.lab.lch=function(t){let e=t[0],r=t[1],n=t[2],i;i=Math.atan2(n,r)*360/2/Math.PI,i<0&&(i+=360);let s=Math.sqrt(r*r+n*n);return[e,s,i]};b.lch.lab=function(t){let e=t[0],r=t[1],i=t[2]/360*2*Math.PI,o=r*Math.cos(i),s=r*Math.sin(i);return[e,o,s]};b.rgb.ansi16=function(t,e=null){let[r,n,i]=t,o=e===null?b.rgb.hsv(t)[2]:e;if(o=Math.round(o/50),o===0)return 30;let s=30+(Math.round(i/255)<<2|Math.round(n/255)<<1|Math.round(r/255));return o===2&&(s+=60),s};b.hsv.ansi16=function(t){return b.rgb.ansi16(b.hsv.rgb(t),t[2])};b.rgb.ansi256=function(t){let e=t[0],r=t[1],n=t[2];return e===r&&r===n?e<8?16:e>248?231:Math.round((e-8)/247*24)+232:16+36*Math.round(e/255*5)+6*Math.round(r/255*5)+Math.round(n/255*5)};b.ansi16.rgb=function(t){let e=t%10;if(e===0||e===7)return t>50&&(e+=3.5),e=e/10.5*255,[e,e,e];let r=(~~(t>50)+1)*.5,n=(e&1)*r*255,i=(e>>1&1)*r*255,o=(e>>2&1)*r*255;return[n,i,o]};b.ansi256.rgb=function(t){if(t>=232){let o=(t-232)*10+8;return[o,o,o]}t-=16;let e,r=Math.floor(t/36)/5*255,n=Math.floor((e=t%36)/6)/5*255,i=e%6/5*255;return[r,n,i]};b.rgb.hex=function(t){let r=(((Math.round(t[0])&255)<<16)+((Math.round(t[1])&255)<<8)+(Math.round(t[2])&255)).toString(16).toUpperCase();return"000000".substring(r.length)+r};b.hex.rgb=function(t){let e=t.toString(16).match(/[a-f0-9]{6}|[a-f0-9]{3}/i);if(!e)return[0,0,0];let r=e[0];e[0].length===3&&(r=r.split("").map(a=>a+a).join(""));let n=parseInt(r,16),i=n>>16&255,o=n>>8&255,s=n&255;return[i,o,s]};b.rgb.hcg=function(t){let e=t[0]/255,r=t[1]/255,n=t[2]/255,i=Math.max(Math.max(e,r),n),o=Math.min(Math.min(e,r),n),s=i-o,a,l;return s<1?a=o/(1-s):a=0,s<=0?l=0:i===e?l=(r-n)/s%6:i===r?l=2+(n-e)/s:l=4+(e-r)/s,l/=6,l%=1,[l*360,s*100,a*100]};b.hsl.hcg=function(t){let e=t[1]/100,r=t[2]/100,n=r<.5?2*e*r:2*e*(1-r),i=0;return n<1&&(i=(r-.5*n)/(1-n)),[t[0],n*100,i*100]};b.hsv.hcg=function(t){let e=t[1]/100,r=t[2]/100,n=e*r,i=0;return n<1&&(i=(r-n)/(1-n)),[t[0],n*100,i*100]};b.hcg.rgb=function(t){let e=t[0]/360,r=t[1]/100,n=t[2]/100;if(r===0)return[n*255,n*255,n*255];let i=[0,0,0],o=e%1*6,s=o%1,a=1-s,l=0;switch(Math.floor(o)){case 0:i[0]=1,i[1]=s,i[2]=0;break;case 1:i[0]=a,i[1]=1,i[2]=0;break;case 2:i[0]=0,i[1]=1,i[2]=s;break;case 3:i[0]=0,i[1]=a,i[2]=1;break;case 4:i[0]=s,i[1]=0,i[2]=1;break;default:i[0]=1,i[1]=0,i[2]=a}return l=(1-r)*n,[(r*i[0]+l)*255,(r*i[1]+l)*255,(r*i[2]+l)*255]};b.hcg.hsv=function(t){let e=t[1]/100,r=t[2]/100,n=e+r*(1-e),i=0;return n>0&&(i=e/n),[t[0],i*100,n*100]};b.hcg.hsl=function(t){let e=t[1]/100,n=t[2]/100*(1-e)+.5*e,i=0;return n>0&&n<.5?i=e/(2*n):n>=.5&&n<1&&(i=e/(2*(1-n))),[t[0],i*100,n*100]};b.hcg.hwb=function(t){let e=t[1]/100,r=t[2]/100,n=e+r*(1-e);return[t[0],(n-e)*100,(1-n)*100]};b.hwb.hcg=function(t){let e=t[1]/100,n=1-t[2]/100,i=n-e,o=0;return i<1&&(o=(n-i)/(1-i)),[t[0],i*100,o*100]};b.apple.rgb=function(t){return[t[0]/65535*255,t[1]/65535*255,t[2]/65535*255]};b.rgb.apple=function(t){return[t[0]/255*65535,t[1]/255*65535,t[2]/255*65535]};b.gray.rgb=function(t){return[t[0]/100*255,t[0]/100*255,t[0]/100*255]};b.gray.hsl=function(t){return[0,0,t[0]]};b.gray.hsv=b.gray.hsl;b.gray.hwb=function(t){return[0,100,t[0]]};b.gray.cmyk=function(t){return[0,0,0,t[0]]};b.gray.lab=function(t){return[t[0],0,0]};b.gray.hex=function(t){let e=Math.round(t[0]/100*255)&255,n=((e<<16)+(e<<8)+e).toString(16).toUpperCase();return"000000".substring(n.length)+n};b.rgb.gray=function(t){return[(t[0]+t[1]+t[2])/3/255*100]}});var xo=p((K0,_o)=>{var kt=gn();function tu(){let t={},e=Object.keys(kt);for(let r=e.length,n=0;n<r;n++)t[e[n]]={distance:-1,parent:null};return t}function ru(t){let e=tu(),r=[t];for(e[t].distance=0;r.length;){let n=r.pop(),i=Object.keys(kt[n]);for(let o=i.length,s=0;s<o;s++){let a=i[s],l=e[a];l.distance===-1&&(l.distance=e[n].distance+1,l.parent=n,r.unshift(a))}}return e}function nu(t,e){return function(r){return e(t(r))}}function iu(t,e){let r=[e[t].parent,t],n=kt[e[t].parent][t],i=e[t].parent;for(;e[i].parent;)r.unshift(e[i].parent),n=nu(kt[e[i].parent][i],n),i=e[i].parent;return n.conversion=r,n}_o.exports=function(t){let e=ru(t),r={},n=Object.keys(e);for(let i=n.length,o=0;o<i;o++){let s=n[o];e[s].parent!==null&&(r[s]=iu(s,e))}return r}});var wo=p((Y0,bo)=>{var mn=gn(),ou=xo(),qe={},su=Object.keys(mn);function au(t){let e=function(...r){let n=r[0];return n==null?n:(n.length>1&&(r=n),t(r))};return"conversion"in t&&(e.conversion=t.conversion),e}function lu(t){let e=function(...r){let n=r[0];if(n==null)return n;n.length>1&&(r=n);let i=t(r);if(typeof i=="object")for(let o=i.length,s=0;s<o;s++)i[s]=Math.round(i[s]);return i};return"conversion"in t&&(e.conversion=t.conversion),e}su.forEach(t=>{qe[t]={},Object.defineProperty(qe[t],"channels",{value:mn[t].channels}),Object.defineProperty(qe[t],"labels",{value:mn[t].labels});let e=ou(t);Object.keys(e).forEach(n=>{let i=e[n];qe[t][n]=lu(i),qe[t][n].raw=au(i)})});bo.exports=qe});var Io=p((J0,Ao)=>{"use strict";var vo=(t,e)=>(...r)=>`\x1B[${t(...r)+e}m`,Eo=(t,e)=>(...r)=>{let n=t(...r);return`\x1B[${38+e};5;${n}m`},So=(t,e)=>(...r)=>{let n=t(...r);return`\x1B[${38+e};2;${n[0]};${n[1]};${n[2]}m`},Nt=t=>t,Co=(t,e,r)=>[t,e,r],Be=(t,e,r)=>{Object.defineProperty(t,e,{get:()=>{let n=r();return Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0}),n},enumerable:!0,configurable:!0})},yn,je=(t,e,r,n)=>{yn===void 0&&(yn=wo());let i=n?10:0,o={};for(let[s,a]of Object.entries(yn)){let l=s==="ansi16"?"ansi":s;s===e?o[l]=t(r,i):typeof a=="object"&&(o[l]=t(a[e],i))}return o};function cu(){let t=new Map,e={modifier:{reset:[0,0],bold:[1,22],dim:[2,22],italic:[3,23],underline:[4,24],inverse:[7,27],hidden:[8,28],strikethrough:[9,29]},color:{black:[30,39],red:[31,39],green:[32,39],yellow:[33,39],blue:[34,39],magenta:[35,39],cyan:[36,39],white:[37,39],blackBright:[90,39],redBright:[91,39],greenBright:[92,39],yellowBright:[93,39],blueBright:[94,39],magentaBright:[95,39],cyanBright:[96,39],whiteBright:[97,39]},bgColor:{bgBlack:[40,49],bgRed:[41,49],bgGreen:[42,49],bgYellow:[43,49],bgBlue:[44,49],bgMagenta:[45,49],bgCyan:[46,49],bgWhite:[47,49],bgBlackBright:[100,49],bgRedBright:[101,49],bgGreenBright:[102,49],bgYellowBright:[103,49],bgBlueBright:[104,49],bgMagentaBright:[105,49],bgCyanBright:[106,49],bgWhiteBright:[107,49]}};e.color.gray=e.color.blackBright,e.bgColor.bgGray=e.bgColor.bgBlackBright,e.color.grey=e.color.blackBright,e.bgColor.bgGrey=e.bgColor.bgBlackBright;for(let[r,n]of Object.entries(e)){for(let[i,o]of Object.entries(n))e[i]={open:`\x1B[${o[0]}m`,close:`\x1B[${o[1]}m`},n[i]=e[i],t.set(o[0],o[1]);Object.defineProperty(e,r,{value:n,enumerable:!1})}return Object.defineProperty(e,"codes",{value:t,enumerable:!1}),e.color.close="\x1B[39m",e.bgColor.close="\x1B[49m",Be(e.color,"ansi",()=>je(vo,"ansi16",Nt,!1)),Be(e.color,"ansi256",()=>je(Eo,"ansi256",Nt,!1)),Be(e.color,"ansi16m",()=>je(So,"rgb",Co,!1)),Be(e.bgColor,"ansi",()=>je(vo,"ansi16",Nt,!0)),Be(e.bgColor,"ansi256",()=>je(Eo,"ansi256",Nt,!0)),Be(e.bgColor,"ansi16m",()=>je(So,"rgb",Co,!0)),e}Object.defineProperty(Ao,"exports",{enumerable:!0,get:cu})});var To=p((X0,Oo)=>{"use strict";Oo.exports=(t,e=process.argv)=>{let r=t.startsWith("-")?"":t.length===1?"-":"--",n=e.indexOf(r+t),i=e.indexOf("--");return n!==-1&&(i===-1||n<i)}});var bn=p((Z0,Ro)=>{"use strict";var uu=require("os"),Po=require("tty"),K=To(),{env:$}=process,pe;K("no-color")||K("no-colors")||K("color=false")||K("color=never")?pe=0:(K("color")||K("colors")||K("color=true")||K("color=always"))&&(pe=1);"FORCE_COLOR"in $&&($.FORCE_COLOR==="true"?pe=1:$.FORCE_COLOR==="false"?pe=0:pe=$.FORCE_COLOR.length===0?1:Math.min(parseInt($.FORCE_COLOR,10),3));function _n(t){return t===0?!1:{level:t,hasBasic:!0,has256:t>=2,has16m:t>=3}}function xn(t,e){if(pe===0)return 0;if(K("color=16m")||K("color=full")||K("color=truecolor"))return 3;if(K("color=256"))return 2;if(t&&!e&&pe===void 0)return 0;let r=pe||0;if($.TERM==="dumb")return r;if(process.platform==="win32"){let n=uu.release().split(".");return Number(n[0])>=10&&Number(n[2])>=10586?Number(n[2])>=14931?3:2:1}if("CI"in $)return["TRAVIS","CIRCLECI","APPVEYOR","GITLAB_CI","GITHUB_ACTIONS","BUILDKITE"].some(n=>n in $)||$.CI_NAME==="codeship"?1:r;if("TEAMCITY_VERSION"in $)return/^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test($.TEAMCITY_VERSION)?1:0;if($.COLORTERM==="truecolor")return 3;if("TERM_PROGRAM"in $){let n=parseInt(($.TERM_PROGRAM_VERSION||"").split(".")[0],10);switch($.TERM_PROGRAM){case"iTerm.app":return n>=3?3:2;case"Apple_Terminal":return 2}}return/-256(color)?$/i.test($.TERM)?2:/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test($.TERM)||"COLORTERM"in $?1:r}function fu(t){let e=xn(t,t&&t.isTTY);return _n(e)}Ro.exports={supportsColor:fu,stdout:_n(xn(!0,Po.isatty(1))),stderr:_n(xn(!0,Po.isatty(2)))}});var Lo=p((Q0,Fo)=>{"use strict";var du=(t,e,r)=>{let n=t.indexOf(e);if(n===-1)return t;let i=e.length,o=0,s="";do s+=t.substr(o,n-o)+e+r,o=n+i,n=t.indexOf(e,o);while(n!==-1);return s+=t.substr(o),s},hu=(t,e,r,n)=>{let i=0,o="";do{let s=t[n-1]==="\r";o+=t.substr(i,(s?n-1:n)-i)+e+(s?`\r
23
23
  `:`
24
24
  `)+r,i=n+1,n=t.indexOf(`
25
25
  `,i)}while(n!==-1);return o+=t.substr(i),o};Fo.exports={stringReplaceAll:du,stringEncaseCRLFWithFirstIndex:hu}});var qo=p((eg,Mo)=>{"use strict";var pu=/(?:\\(u(?:[a-f\d]{4}|\{[a-f\d]{1,6}\})|x[a-f\d]{2}|.))|(?:\{(~)?(\w+(?:\([^)]*\))?(?:\.\w+(?:\([^)]*\))?)*)(?:[ \t]|(?=\r?\n)))|(\})|((?:.|[\r\n\f])+?)/gi,Do=/(?:^|\.)(\w+)(?:\(([^)]*)\))?/g,gu=/^(['"])((?:\\.|(?!\1)[^\\])*)\1$/,mu=/\\(u(?:[a-f\d]{4}|{[a-f\d]{1,6}})|x[a-f\d]{2}|.)|([^\\])/gi,yu=new Map([["n",`
26
26
  `],["r","\r"],["t"," "],["b","\b"],["f","\f"],["v","\v"],["0","\0"],["\\","\\"],["e","\x1B"],["a","\x07"]]);function No(t){let e=t[0]==="u",r=t[1]==="{";return e&&!r&&t.length===5||t[0]==="x"&&t.length===3?String.fromCharCode(parseInt(t.slice(1),16)):e&&r?String.fromCodePoint(parseInt(t.slice(2,-1),16)):yu.get(t)||t}function _u(t,e){let r=[],n=e.trim().split(/\s*,\s*/g),i;for(let o of n){let s=Number(o);if(!Number.isNaN(s))r.push(s);else if(i=o.match(gu))r.push(i[2].replace(mu,(a,l,c)=>l?No(l):c));else throw new Error(`Invalid Chalk template style argument: ${o} (in style '${t}')`)}return r}function xu(t){Do.lastIndex=0;let e=[],r;for(;(r=Do.exec(t))!==null;){let n=r[1];if(r[2]){let i=_u(n,r[2]);e.push([n].concat(i))}else e.push([n])}return e}function ko(t,e){let r={};for(let i of e)for(let o of i.styles)r[o[0]]=i.inverse?null:o.slice(1);let n=t;for(let[i,o]of Object.entries(r))if(Array.isArray(o)){if(!(i in n))throw new Error(`Unknown Chalk style: ${i}`);n=o.length>0?n[i](...o):n[i]}return n}Mo.exports=(t,e)=>{let r=[],n=[],i=[];if(e.replace(pu,(o,s,a,l,c,u)=>{if(s)i.push(No(s));else if(l){let f=i.join("");i=[],n.push(r.length===0?f:ko(t,r)(f)),r.push({inverse:a,styles:xu(l)})}else if(c){if(r.length===0)throw new Error("Found extraneous } in Chalk template literal");n.push(ko(t,r)(i.join(""))),i=[],r.pop()}else i.push(u)}),n.push(i.join("")),r.length>0){let o=`Chalk template literal is missing ${r.length} closing bracket${r.length===1?"":"s"} (\`}\`)`;throw new Error(o)}return n.join("")}});var Y=p((tg,Wo)=>{"use strict";var ct=Io(),{stdout:vn,stderr:En}=bn(),{stringReplaceAll:bu,stringEncaseCRLFWithFirstIndex:wu}=Lo(),{isArray:Mt}=Array,jo=["ansi","ansi","ansi256","ansi16m"],$e=Object.create(null),vu=(t,e={})=>{if(e.level&&!(Number.isInteger(e.level)&&e.level>=0&&e.level<=3))throw new Error("The `level` option should be an integer from 0 to 3");let r=vn?vn.level:0;t.level=e.level===void 0?r:e.level},Sn=class{constructor(e){return $o(e)}},$o=t=>{let e={};return vu(e,t),e.template=(...r)=>Vo(e.template,...r),Object.setPrototypeOf(e,qt.prototype),Object.setPrototypeOf(e.template,e),e.template.constructor=()=>{throw new Error("`chalk.constructor()` is deprecated. Use `new chalk.Instance()` instead.")},e.template.Instance=Sn,e.template};function qt(t){return $o(t)}for(let[t,e]of Object.entries(ct))$e[t]={get(){let r=Bt(this,Cn(e.open,e.close,this._styler),this._isEmpty);return Object.defineProperty(this,t,{value:r}),r}};$e.visible={get(){let t=Bt(this,this._styler,!0);return Object.defineProperty(this,"visible",{value:t}),t}};var Uo=["rgb","hex","keyword","hsl","hsv","hwb","ansi","ansi256"];for(let t of Uo)$e[t]={get(){let{level:e}=this;return function(...r){let n=Cn(ct.color[jo[e]][t](...r),ct.color.close,this._styler);return Bt(this,n,this._isEmpty)}}};for(let t of Uo){let e="bg"+t[0].toUpperCase()+t.slice(1);$e[e]={get(){let{level:r}=this;return function(...n){let i=Cn(ct.bgColor[jo[r]][t](...n),ct.bgColor.close,this._styler);return Bt(this,i,this._isEmpty)}}}}var Eu=Object.defineProperties(()=>{},{...$e,level:{enumerable:!0,get(){return this._generator.level},set(t){this._generator.level=t}}}),Cn=(t,e,r)=>{let n,i;return r===void 0?(n=t,i=e):(n=r.openAll+t,i=e+r.closeAll),{open:t,close:e,openAll:n,closeAll:i,parent:r}},Bt=(t,e,r)=>{let n=(...i)=>Mt(i[0])&&Mt(i[0].raw)?Bo(n,Vo(n,...i)):Bo(n,i.length===1?""+i[0]:i.join(" "));return Object.setPrototypeOf(n,Eu),n._generator=t,n._styler=e,n._isEmpty=r,n},Bo=(t,e)=>{if(t.level<=0||!e)return t._isEmpty?"":e;let r=t._styler;if(r===void 0)return e;let{openAll:n,closeAll:i}=r;if(e.indexOf("\x1B")!==-1)for(;r!==void 0;)e=bu(e,r.close,r.open),r=r.parent;let o=e.indexOf(`
27
- `);return o!==-1&&(e=wu(e,i,n,o)),n+e+i},wn,Vo=(t,...e)=>{let[r]=e;if(!Mt(r)||!Mt(r.raw))return e.join(" ");let n=e.slice(1),i=[r.raw[0]];for(let o=1;o<r.length;o++)i.push(String(n[o-1]).replace(/[{}\\]/g,"\\$&"),String(r.raw[o]));return wn===void 0&&(wn=qo()),wn(t,i.join(""))};Object.defineProperties(qt.prototype,$e);var jt=qt();jt.supportsColor=vn;jt.stderr=qt({level:En?En.level:0});jt.stderr.supportsColor=En;Wo.exports=jt});var Go=p((rg,An)=>{"use strict";var Ho=(t,e)=>{for(let r of Reflect.ownKeys(e))Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(e,r));return t};An.exports=Ho;An.exports.default=Ho});var Ko=p((ng,Ut)=>{"use strict";var Su=Go(),$t=new WeakMap,zo=(t,e={})=>{if(typeof t!="function")throw new TypeError("Expected a function");let r,n=0,i=t.displayName||t.name||"<anonymous>",o=function(...s){if($t.set(o,++n),n===1)r=t.apply(this,s),t=null;else if(e.throw===!0)throw new Error(`Function \`${i}\` can only be called once`);return r};return Su(o,t),$t.set(o,n),o};Ut.exports=zo;Ut.exports.default=zo;Ut.exports.callCount=t=>{if(!$t.has(t))throw new Error(`The given function \`${t.name}\` is not wrapped by the \`onetime\` package`);return $t.get(t)}});var Yo=p((ig,Vt)=>{Vt.exports=["SIGABRT","SIGALRM","SIGHUP","SIGINT","SIGTERM"];process.platform!=="win32"&&Vt.exports.push("SIGVTALRM","SIGXCPU","SIGXFSZ","SIGUSR2","SIGTRAP","SIGSYS","SIGQUIT","SIGIOT");process.platform==="linux"&&Vt.exports.push("SIGIO","SIGPOLL","SIGPWR","SIGSTKFLT","SIGUNUSED")});var es=p((og,We)=>{var N=global.process,Ce=function(t){return t&&typeof t=="object"&&typeof t.removeListener=="function"&&typeof t.emit=="function"&&typeof t.reallyExit=="function"&&typeof t.listeners=="function"&&typeof t.kill=="function"&&typeof t.pid=="number"&&typeof t.on=="function"};Ce(N)?(Jo=require("assert"),Ue=Yo(),Xo=/^win/i.test(N.platform),ut=require("events"),typeof ut!="function"&&(ut=ut.EventEmitter),N.__signal_exit_emitter__?U=N.__signal_exit_emitter__:(U=N.__signal_exit_emitter__=new ut,U.count=0,U.emitted={}),U.infinite||(U.setMaxListeners(1/0),U.infinite=!0),We.exports=function(t,e){if(!Ce(global.process))return function(){};Jo.equal(typeof t,"function","a callback must be provided for exit handler"),Ve===!1&&In();var r="exit";e&&e.alwaysLast&&(r="afterexit");var n=function(){U.removeListener(r,t),U.listeners("exit").length===0&&U.listeners("afterexit").length===0&&Wt()};return U.on(r,t),n},Wt=function(){!Ve||!Ce(global.process)||(Ve=!1,Ue.forEach(function(e){try{N.removeListener(e,Ht[e])}catch{}}),N.emit=Gt,N.reallyExit=On,U.count-=1)},We.exports.unload=Wt,Ae=function(e,r,n){U.emitted[e]||(U.emitted[e]=!0,U.emit(e,r,n))},Ht={},Ue.forEach(function(t){Ht[t]=function(){if(Ce(global.process)){var r=N.listeners(t);r.length===U.count&&(Wt(),Ae("exit",null,t),Ae("afterexit",null,t),Xo&&t==="SIGHUP"&&(t="SIGINT"),N.kill(N.pid,t))}}}),We.exports.signals=function(){return Ue},Ve=!1,In=function(){Ve||!Ce(global.process)||(Ve=!0,U.count+=1,Ue=Ue.filter(function(e){try{return N.on(e,Ht[e]),!0}catch{return!1}}),N.emit=Qo,N.reallyExit=Zo)},We.exports.load=In,On=N.reallyExit,Zo=function(e){Ce(global.process)&&(N.exitCode=e||0,Ae("exit",N.exitCode,null),Ae("afterexit",N.exitCode,null),On.call(N,N.exitCode))},Gt=N.emit,Qo=function(e,r){if(e==="exit"&&Ce(global.process)){r!==void 0&&(N.exitCode=r);var n=Gt.apply(this,arguments);return Ae("exit",N.exitCode,null),Ae("afterexit",N.exitCode,null),n}else return Gt.apply(this,arguments)}):We.exports=function(){return function(){}};var Jo,Ue,Xo,ut,U,Wt,Ae,Ht,Ve,In,On,Zo,Gt,Qo});var rs=p((sg,ts)=>{"use strict";var Cu=Ko(),Au=es();ts.exports=Cu(()=>{Au(()=>{process.stderr.write("\x1B[?25h")},{alwaysLast:!0})})});var ns=p(He=>{"use strict";var Iu=rs(),zt=!1;He.show=(t=process.stderr)=>{t.isTTY&&(zt=!1,t.write("\x1B[?25h"))};He.hide=(t=process.stderr)=>{t.isTTY&&(Iu(),zt=!0,t.write("\x1B[?25l"))};He.toggle=(t,e)=>{t!==void 0&&(zt=t),zt?He.show(e):He.hide(e)}});var is=p((lg,Ou)=>{Ou.exports={dots:{interval:80,frames:["\u280B","\u2819","\u2839","\u2838","\u283C","\u2834","\u2826","\u2827","\u2807","\u280F"]},dots2:{interval:80,frames:["\u28FE","\u28FD","\u28FB","\u28BF","\u287F","\u28DF","\u28EF","\u28F7"]},dots3:{interval:80,frames:["\u280B","\u2819","\u281A","\u281E","\u2816","\u2826","\u2834","\u2832","\u2833","\u2813"]},dots4:{interval:80,frames:["\u2804","\u2806","\u2807","\u280B","\u2819","\u2838","\u2830","\u2820","\u2830","\u2838","\u2819","\u280B","\u2807","\u2806"]},dots5:{interval:80,frames:["\u280B","\u2819","\u281A","\u2812","\u2802","\u2802","\u2812","\u2832","\u2834","\u2826","\u2816","\u2812","\u2810","\u2810","\u2812","\u2813","\u280B"]},dots6:{interval:80,frames:["\u2801","\u2809","\u2819","\u281A","\u2812","\u2802","\u2802","\u2812","\u2832","\u2834","\u2824","\u2804","\u2804","\u2824","\u2834","\u2832","\u2812","\u2802","\u2802","\u2812","\u281A","\u2819","\u2809","\u2801"]},dots7:{interval:80,frames:["\u2808","\u2809","\u280B","\u2813","\u2812","\u2810","\u2810","\u2812","\u2816","\u2826","\u2824","\u2820","\u2820","\u2824","\u2826","\u2816","\u2812","\u2810","\u2810","\u2812","\u2813","\u280B","\u2809","\u2808"]},dots8:{interval:80,frames:["\u2801","\u2801","\u2809","\u2819","\u281A","\u2812","\u2802","\u2802","\u2812","\u2832","\u2834","\u2824","\u2804","\u2804","\u2824","\u2820","\u2820","\u2824","\u2826","\u2816","\u2812","\u2810","\u2810","\u2812","\u2813","\u280B","\u2809","\u2808","\u2808"]},dots9:{interval:80,frames:["\u28B9","\u28BA","\u28BC","\u28F8","\u28C7","\u2867","\u2857","\u284F"]},dots10:{interval:80,frames:["\u2884","\u2882","\u2881","\u2841","\u2848","\u2850","\u2860"]},dots11:{interval:100,frames:["\u2801","\u2802","\u2804","\u2840","\u2880","\u2820","\u2810","\u2808"]},dots12:{interval:80,frames:["\u2880\u2800","\u2840\u2800","\u2804\u2800","\u2882\u2800","\u2842\u2800","\u2805\u2800","\u2883\u2800","\u2843\u2800","\u280D\u2800","\u288B\u2800","\u284B\u2800","\u280D\u2801","\u288B\u2801","\u284B\u2801","\u280D\u2809","\u280B\u2809","\u280B\u2809","\u2809\u2819","\u2809\u2819","\u2809\u2829","\u2808\u2899","\u2808\u2859","\u2888\u2829","\u2840\u2899","\u2804\u2859","\u2882\u2829","\u2842\u2898","\u2805\u2858","\u2883\u2828","\u2843\u2890","\u280D\u2850","\u288B\u2820","\u284B\u2880","\u280D\u2841","\u288B\u2801","\u284B\u2801","\u280D\u2809","\u280B\u2809","\u280B\u2809","\u2809\u2819","\u2809\u2819","\u2809\u2829","\u2808\u2899","\u2808\u2859","\u2808\u2829","\u2800\u2899","\u2800\u2859","\u2800\u2829","\u2800\u2898","\u2800\u2858","\u2800\u2828","\u2800\u2890","\u2800\u2850","\u2800\u2820","\u2800\u2880","\u2800\u2840"]},dots13:{interval:80,frames:["\u28FC","\u28F9","\u28BB","\u283F","\u285F","\u28CF","\u28E7","\u28F6"]},dots8Bit:{interval:80,frames:["\u2800","\u2801","\u2802","\u2803","\u2804","\u2805","\u2806","\u2807","\u2840","\u2841","\u2842","\u2843","\u2844","\u2845","\u2846","\u2847","\u2808","\u2809","\u280A","\u280B","\u280C","\u280D","\u280E","\u280F","\u2848","\u2849","\u284A","\u284B","\u284C","\u284D","\u284E","\u284F","\u2810","\u2811","\u2812","\u2813","\u2814","\u2815","\u2816","\u2817","\u2850","\u2851","\u2852","\u2853","\u2854","\u2855","\u2856","\u2857","\u2818","\u2819","\u281A","\u281B","\u281C","\u281D","\u281E","\u281F","\u2858","\u2859","\u285A","\u285B","\u285C","\u285D","\u285E","\u285F","\u2820","\u2821","\u2822","\u2823","\u2824","\u2825","\u2826","\u2827","\u2860","\u2861","\u2862","\u2863","\u2864","\u2865","\u2866","\u2867","\u2828","\u2829","\u282A","\u282B","\u282C","\u282D","\u282E","\u282F","\u2868","\u2869","\u286A","\u286B","\u286C","\u286D","\u286E","\u286F","\u2830","\u2831","\u2832","\u2833","\u2834","\u2835","\u2836","\u2837","\u2870","\u2871","\u2872","\u2873","\u2874","\u2875","\u2876","\u2877","\u2838","\u2839","\u283A","\u283B","\u283C","\u283D","\u283E","\u283F","\u2878","\u2879","\u287A","\u287B","\u287C","\u287D","\u287E","\u287F","\u2880","\u2881","\u2882","\u2883","\u2884","\u2885","\u2886","\u2887","\u28C0","\u28C1","\u28C2","\u28C3","\u28C4","\u28C5","\u28C6","\u28C7","\u2888","\u2889","\u288A","\u288B","\u288C","\u288D","\u288E","\u288F","\u28C8","\u28C9","\u28CA","\u28CB","\u28CC","\u28CD","\u28CE","\u28CF","\u2890","\u2891","\u2892","\u2893","\u2894","\u2895","\u2896","\u2897","\u28D0","\u28D1","\u28D2","\u28D3","\u28D4","\u28D5","\u28D6","\u28D7","\u2898","\u2899","\u289A","\u289B","\u289C","\u289D","\u289E","\u289F","\u28D8","\u28D9","\u28DA","\u28DB","\u28DC","\u28DD","\u28DE","\u28DF","\u28A0","\u28A1","\u28A2","\u28A3","\u28A4","\u28A5","\u28A6","\u28A7","\u28E0","\u28E1","\u28E2","\u28E3","\u28E4","\u28E5","\u28E6","\u28E7","\u28A8","\u28A9","\u28AA","\u28AB","\u28AC","\u28AD","\u28AE","\u28AF","\u28E8","\u28E9","\u28EA","\u28EB","\u28EC","\u28ED","\u28EE","\u28EF","\u28B0","\u28B1","\u28B2","\u28B3","\u28B4","\u28B5","\u28B6","\u28B7","\u28F0","\u28F1","\u28F2","\u28F3","\u28F4","\u28F5","\u28F6","\u28F7","\u28B8","\u28B9","\u28BA","\u28BB","\u28BC","\u28BD","\u28BE","\u28BF","\u28F8","\u28F9","\u28FA","\u28FB","\u28FC","\u28FD","\u28FE","\u28FF"]},sand:{interval:80,frames:["\u2801","\u2802","\u2804","\u2840","\u2848","\u2850","\u2860","\u28C0","\u28C1","\u28C2","\u28C4","\u28CC","\u28D4","\u28E4","\u28E5","\u28E6","\u28EE","\u28F6","\u28F7","\u28FF","\u287F","\u283F","\u289F","\u281F","\u285B","\u281B","\u282B","\u288B","\u280B","\u280D","\u2849","\u2809","\u2811","\u2821","\u2881"]},line:{interval:130,frames:["-","\\","|","/"]},line2:{interval:100,frames:["\u2802","-","\u2013","\u2014","\u2013","-"]},pipe:{interval:100,frames:["\u2524","\u2518","\u2534","\u2514","\u251C","\u250C","\u252C","\u2510"]},simpleDots:{interval:400,frames:[". ",".. ","..."," "]},simpleDotsScrolling:{interval:200,frames:[". ",".. ","..."," .."," ."," "]},star:{interval:70,frames:["\u2736","\u2738","\u2739","\u273A","\u2739","\u2737"]},star2:{interval:80,frames:["+","x","*"]},flip:{interval:70,frames:["_","_","_","-","`","`","'","\xB4","-","_","_","_"]},hamburger:{interval:100,frames:["\u2631","\u2632","\u2634"]},growVertical:{interval:120,frames:["\u2581","\u2583","\u2584","\u2585","\u2586","\u2587","\u2586","\u2585","\u2584","\u2583"]},growHorizontal:{interval:120,frames:["\u258F","\u258E","\u258D","\u258C","\u258B","\u258A","\u2589","\u258A","\u258B","\u258C","\u258D","\u258E"]},balloon:{interval:140,frames:[" ",".","o","O","@","*"," "]},balloon2:{interval:120,frames:[".","o","O","\xB0","O","o","."]},noise:{interval:100,frames:["\u2593","\u2592","\u2591"]},bounce:{interval:120,frames:["\u2801","\u2802","\u2804","\u2802"]},boxBounce:{interval:120,frames:["\u2596","\u2598","\u259D","\u2597"]},boxBounce2:{interval:100,frames:["\u258C","\u2580","\u2590","\u2584"]},triangle:{interval:50,frames:["\u25E2","\u25E3","\u25E4","\u25E5"]},binary:{interval:80,frames:["010010","001100","100101","111010","111101","010111","101011","111000","110011","110101"]},arc:{interval:100,frames:["\u25DC","\u25E0","\u25DD","\u25DE","\u25E1","\u25DF"]},circle:{interval:120,frames:["\u25E1","\u2299","\u25E0"]},squareCorners:{interval:180,frames:["\u25F0","\u25F3","\u25F2","\u25F1"]},circleQuarters:{interval:120,frames:["\u25F4","\u25F7","\u25F6","\u25F5"]},circleHalves:{interval:50,frames:["\u25D0","\u25D3","\u25D1","\u25D2"]},squish:{interval:100,frames:["\u256B","\u256A"]},toggle:{interval:250,frames:["\u22B6","\u22B7"]},toggle2:{interval:80,frames:["\u25AB","\u25AA"]},toggle3:{interval:120,frames:["\u25A1","\u25A0"]},toggle4:{interval:100,frames:["\u25A0","\u25A1","\u25AA","\u25AB"]},toggle5:{interval:100,frames:["\u25AE","\u25AF"]},toggle6:{interval:300,frames:["\u101D","\u1040"]},toggle7:{interval:80,frames:["\u29BE","\u29BF"]},toggle8:{interval:100,frames:["\u25CD","\u25CC"]},toggle9:{interval:100,frames:["\u25C9","\u25CE"]},toggle10:{interval:100,frames:["\u3282","\u3280","\u3281"]},toggle11:{interval:50,frames:["\u29C7","\u29C6"]},toggle12:{interval:120,frames:["\u2617","\u2616"]},toggle13:{interval:80,frames:["=","*","-"]},arrow:{interval:100,frames:["\u2190","\u2196","\u2191","\u2197","\u2192","\u2198","\u2193","\u2199"]},arrow2:{interval:80,frames:["\u2B06\uFE0F ","\u2197\uFE0F ","\u27A1\uFE0F ","\u2198\uFE0F ","\u2B07\uFE0F ","\u2199\uFE0F ","\u2B05\uFE0F ","\u2196\uFE0F "]},arrow3:{interval:120,frames:["\u25B9\u25B9\u25B9\u25B9\u25B9","\u25B8\u25B9\u25B9\u25B9\u25B9","\u25B9\u25B8\u25B9\u25B9\u25B9","\u25B9\u25B9\u25B8\u25B9\u25B9","\u25B9\u25B9\u25B9\u25B8\u25B9","\u25B9\u25B9\u25B9\u25B9\u25B8"]},bouncingBar:{interval:80,frames:["[ ]","[= ]","[== ]","[=== ]","[====]","[ ===]","[ ==]","[ =]","[ ]","[ =]","[ ==]","[ ===]","[====]","[=== ]","[== ]","[= ]"]},bouncingBall:{interval:80,frames:["( \u25CF )","( \u25CF )","( \u25CF )","( \u25CF )","( \u25CF)","( \u25CF )","( \u25CF )","( \u25CF )","( \u25CF )","(\u25CF )"]},smiley:{interval:200,frames:["\u{1F604} ","\u{1F61D} "]},monkey:{interval:300,frames:["\u{1F648} ","\u{1F648} ","\u{1F649} ","\u{1F64A} "]},hearts:{interval:100,frames:["\u{1F49B} ","\u{1F499} ","\u{1F49C} ","\u{1F49A} ","\u2764\uFE0F "]},clock:{interval:100,frames:["\u{1F55B} ","\u{1F550} ","\u{1F551} ","\u{1F552} ","\u{1F553} ","\u{1F554} ","\u{1F555} ","\u{1F556} ","\u{1F557} ","\u{1F558} ","\u{1F559} ","\u{1F55A} "]},earth:{interval:180,frames:["\u{1F30D} ","\u{1F30E} ","\u{1F30F} "]},material:{interval:17,frames:["\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581","\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581","\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581","\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581","\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581","\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581","\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581","\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581","\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581","\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581","\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581","\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581","\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588","\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588","\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588","\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588","\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588","\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588","\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588","\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588","\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581","\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581","\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581","\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581","\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581","\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581","\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581"]},moon:{interval:80,frames:["\u{1F311} ","\u{1F312} ","\u{1F313} ","\u{1F314} ","\u{1F315} ","\u{1F316} ","\u{1F317} ","\u{1F318} "]},runner:{interval:140,frames:["\u{1F6B6} ","\u{1F3C3} "]},pong:{interval:80,frames:["\u2590\u2802 \u258C","\u2590\u2808 \u258C","\u2590 \u2802 \u258C","\u2590 \u2820 \u258C","\u2590 \u2840 \u258C","\u2590 \u2820 \u258C","\u2590 \u2802 \u258C","\u2590 \u2808 \u258C","\u2590 \u2802 \u258C","\u2590 \u2820 \u258C","\u2590 \u2840 \u258C","\u2590 \u2820 \u258C","\u2590 \u2802 \u258C","\u2590 \u2808 \u258C","\u2590 \u2802\u258C","\u2590 \u2820\u258C","\u2590 \u2840\u258C","\u2590 \u2820 \u258C","\u2590 \u2802 \u258C","\u2590 \u2808 \u258C","\u2590 \u2802 \u258C","\u2590 \u2820 \u258C","\u2590 \u2840 \u258C","\u2590 \u2820 \u258C","\u2590 \u2802 \u258C","\u2590 \u2808 \u258C","\u2590 \u2802 \u258C","\u2590 \u2820 \u258C","\u2590 \u2840 \u258C","\u2590\u2820 \u258C"]},shark:{interval:120,frames:["\u2590|\\____________\u258C","\u2590_|\\___________\u258C","\u2590__|\\__________\u258C","\u2590___|\\_________\u258C","\u2590____|\\________\u258C","\u2590_____|\\_______\u258C","\u2590______|\\______\u258C","\u2590_______|\\_____\u258C","\u2590________|\\____\u258C","\u2590_________|\\___\u258C","\u2590__________|\\__\u258C","\u2590___________|\\_\u258C","\u2590____________|\\\u258C","\u2590____________/|\u258C","\u2590___________/|_\u258C","\u2590__________/|__\u258C","\u2590_________/|___\u258C","\u2590________/|____\u258C","\u2590_______/|_____\u258C","\u2590______/|______\u258C","\u2590_____/|_______\u258C","\u2590____/|________\u258C","\u2590___/|_________\u258C","\u2590__/|__________\u258C","\u2590_/|___________\u258C","\u2590/|____________\u258C"]},dqpb:{interval:100,frames:["d","q","p","b"]},weather:{interval:100,frames:["\u2600\uFE0F ","\u2600\uFE0F ","\u2600\uFE0F ","\u{1F324} ","\u26C5\uFE0F ","\u{1F325} ","\u2601\uFE0F ","\u{1F327} ","\u{1F328} ","\u{1F327} ","\u{1F328} ","\u{1F327} ","\u{1F328} ","\u26C8 ","\u{1F328} ","\u{1F327} ","\u{1F328} ","\u2601\uFE0F ","\u{1F325} ","\u26C5\uFE0F ","\u{1F324} ","\u2600\uFE0F ","\u2600\uFE0F "]},christmas:{interval:400,frames:["\u{1F332}","\u{1F384}"]},grenade:{interval:80,frames:["\u060C ","\u2032 "," \xB4 "," \u203E "," \u2E0C"," \u2E0A"," |"," \u204E"," \u2055"," \u0DF4 "," \u2053"," "," "," "]},point:{interval:125,frames:["\u2219\u2219\u2219","\u25CF\u2219\u2219","\u2219\u25CF\u2219","\u2219\u2219\u25CF","\u2219\u2219\u2219"]},layer:{interval:150,frames:["-","=","\u2261"]},betaWave:{interval:80,frames:["\u03C1\u03B2\u03B2\u03B2\u03B2\u03B2\u03B2","\u03B2\u03C1\u03B2\u03B2\u03B2\u03B2\u03B2","\u03B2\u03B2\u03C1\u03B2\u03B2\u03B2\u03B2","\u03B2\u03B2\u03B2\u03C1\u03B2\u03B2\u03B2","\u03B2\u03B2\u03B2\u03B2\u03C1\u03B2\u03B2","\u03B2\u03B2\u03B2\u03B2\u03B2\u03C1\u03B2","\u03B2\u03B2\u03B2\u03B2\u03B2\u03B2\u03C1"]},fingerDance:{interval:160,frames:["\u{1F918} ","\u{1F91F} ","\u{1F596} ","\u270B ","\u{1F91A} ","\u{1F446} "]},fistBump:{interval:80,frames:["\u{1F91C}\u3000\u3000\u3000\u3000\u{1F91B} ","\u{1F91C}\u3000\u3000\u3000\u3000\u{1F91B} ","\u{1F91C}\u3000\u3000\u3000\u3000\u{1F91B} ","\u3000\u{1F91C}\u3000\u3000\u{1F91B}\u3000 ","\u3000\u3000\u{1F91C}\u{1F91B}\u3000\u3000 ","\u3000\u{1F91C}\u2728\u{1F91B}\u3000\u3000 ","\u{1F91C}\u3000\u2728\u3000\u{1F91B}\u3000 "]},soccerHeader:{interval:80,frames:[" \u{1F9D1}\u26BD\uFE0F \u{1F9D1} ","\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ","\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ","\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ","\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ","\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ","\u{1F9D1} \u26BD\uFE0F\u{1F9D1} ","\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ","\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ","\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ","\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ","\u{1F9D1} \u26BD\uFE0F \u{1F9D1} "]},mindblown:{interval:160,frames:["\u{1F610} ","\u{1F610} ","\u{1F62E} ","\u{1F62E} ","\u{1F626} ","\u{1F626} ","\u{1F627} ","\u{1F627} ","\u{1F92F} ","\u{1F4A5} ","\u2728 ","\u3000 ","\u3000 ","\u3000 "]},speaker:{interval:160,frames:["\u{1F508} ","\u{1F509} ","\u{1F50A} ","\u{1F509} "]},orangePulse:{interval:100,frames:["\u{1F538} ","\u{1F536} ","\u{1F7E0} ","\u{1F7E0} ","\u{1F536} "]},bluePulse:{interval:100,frames:["\u{1F539} ","\u{1F537} ","\u{1F535} ","\u{1F535} ","\u{1F537} "]},orangeBluePulse:{interval:100,frames:["\u{1F538} ","\u{1F536} ","\u{1F7E0} ","\u{1F7E0} ","\u{1F536} ","\u{1F539} ","\u{1F537} ","\u{1F535} ","\u{1F535} ","\u{1F537} "]},timeTravel:{interval:100,frames:["\u{1F55B} ","\u{1F55A} ","\u{1F559} ","\u{1F558} ","\u{1F557} ","\u{1F556} ","\u{1F555} ","\u{1F554} ","\u{1F553} ","\u{1F552} ","\u{1F551} ","\u{1F550} "]},aesthetic:{interval:80,frames:["\u25B0\u25B1\u25B1\u25B1\u25B1\u25B1\u25B1","\u25B0\u25B0\u25B1\u25B1\u25B1\u25B1\u25B1","\u25B0\u25B0\u25B0\u25B1\u25B1\u25B1\u25B1","\u25B0\u25B0\u25B0\u25B0\u25B1\u25B1\u25B1","\u25B0\u25B0\u25B0\u25B0\u25B0\u25B1\u25B1","\u25B0\u25B0\u25B0\u25B0\u25B0\u25B0\u25B1","\u25B0\u25B0\u25B0\u25B0\u25B0\u25B0\u25B0","\u25B0\u25B1\u25B1\u25B1\u25B1\u25B1\u25B1"]},dwarfFortress:{interval:80,frames:[" \u2588\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ","\u263A\u2588\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ","\u263A\u2588\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ","\u263A\u2593\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ","\u263A\u2593\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ","\u263A\u2592\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ","\u263A\u2592\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ","\u263A\u2591\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ","\u263A\u2591\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ","\u263A \u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2593\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2593\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2592\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2592\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2591\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2591\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A \u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2593\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2593\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2592\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2592\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2591\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2591\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A \u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2593\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2593\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2592\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2592\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2591\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2591\u2588\u2588\xA3\xA3\xA3 "," \u263A \u2588\u2588\xA3\xA3\xA3 "," \u263A\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2593\u2588\xA3\xA3\xA3 "," \u263A\u2593\u2588\xA3\xA3\xA3 "," \u263A\u2592\u2588\xA3\xA3\xA3 "," \u263A\u2592\u2588\xA3\xA3\xA3 "," \u263A\u2591\u2588\xA3\xA3\xA3 "," \u263A\u2591\u2588\xA3\xA3\xA3 "," \u263A \u2588\xA3\xA3\xA3 "," \u263A\u2588\xA3\xA3\xA3 "," \u263A\u2588\xA3\xA3\xA3 "," \u263A\u2593\xA3\xA3\xA3 "," \u263A\u2593\xA3\xA3\xA3 "," \u263A\u2592\xA3\xA3\xA3 "," \u263A\u2592\xA3\xA3\xA3 "," \u263A\u2591\xA3\xA3\xA3 "," \u263A\u2591\xA3\xA3\xA3 "," \u263A \xA3\xA3\xA3 "," \u263A\xA3\xA3\xA3 "," \u263A\xA3\xA3\xA3 "," \u263A\u2593\xA3\xA3 "," \u263A\u2593\xA3\xA3 "," \u263A\u2592\xA3\xA3 "," \u263A\u2592\xA3\xA3 "," \u263A\u2591\xA3\xA3 "," \u263A\u2591\xA3\xA3 "," \u263A \xA3\xA3 "," \u263A\xA3\xA3 "," \u263A\xA3\xA3 "," \u263A\u2593\xA3 "," \u263A\u2593\xA3 "," \u263A\u2592\xA3 "," \u263A\u2592\xA3 "," \u263A\u2591\xA3 "," \u263A\u2591\xA3 "," \u263A \xA3 "," \u263A\xA3 "," \u263A\xA3 "," \u263A\u2593 "," \u263A\u2593 "," \u263A\u2592 "," \u263A\u2592 "," \u263A\u2591 "," \u263A\u2591 "," \u263A "," \u263A &"," \u263A \u263C&"," \u263A \u263C &"," \u263A\u263C &"," \u263A\u263C & "," \u203C & "," \u263A & "," \u203C & "," \u263A & "," \u203C & "," \u263A & ","\u203C & "," & "," & "," & \u2591 "," & \u2592 "," & \u2593 "," & \xA3 "," & \u2591\xA3 "," & \u2592\xA3 "," & \u2593\xA3 "," & \xA3\xA3 "," & \u2591\xA3\xA3 "," & \u2592\xA3\xA3 ","& \u2593\xA3\xA3 ","& \xA3\xA3\xA3 "," \u2591\xA3\xA3\xA3 "," \u2592\xA3\xA3\xA3 "," \u2593\xA3\xA3\xA3 "," \u2588\xA3\xA3\xA3 "," \u2591\u2588\xA3\xA3\xA3 "," \u2592\u2588\xA3\xA3\xA3 "," \u2593\u2588\xA3\xA3\xA3 "," \u2588\u2588\xA3\xA3\xA3 "," \u2591\u2588\u2588\xA3\xA3\xA3 "," \u2592\u2588\u2588\xA3\xA3\xA3 "," \u2593\u2588\u2588\xA3\xA3\xA3 "," \u2588\u2588\u2588\xA3\xA3\xA3 "," \u2591\u2588\u2588\u2588\xA3\xA3\xA3 "," \u2592\u2588\u2588\u2588\xA3\xA3\xA3 "," \u2593\u2588\u2588\u2588\xA3\xA3\xA3 "," \u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u2591\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u2592\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u2593\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u2591\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u2592\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u2593\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u2588\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u2588\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "]}}});var as=p((cg,ss)=>{"use strict";var Kt=Object.assign({},is()),os=Object.keys(Kt);Object.defineProperty(Kt,"random",{get(){let t=Math.floor(Math.random()*os.length),e=os[t];return Kt[e]}});ss.exports=Kt});var Tn=p((ug,ls)=>{"use strict";ls.exports=()=>process.platform!=="win32"?!0:!!process.env.CI||!!process.env.WT_SESSION||process.env.TERM_PROGRAM==="vscode"||process.env.TERM==="xterm-256color"||process.env.TERM==="alacritty"});var us=p((fg,cs)=>{"use strict";var ge=Y(),Tu=Tn(),Pu={info:ge.blue("\u2139"),success:ge.green("\u2714"),warning:ge.yellow("\u26A0"),error:ge.red("\u2716")},Ru={info:ge.blue("i"),success:ge.green("\u221A"),warning:ge.yellow("\u203C"),error:ge.red("\xD7")};cs.exports=Tu()?Pu:Ru});var ds=p((dg,fs)=>{"use strict";fs.exports=({onlyFirst:t=!1}={})=>{let e=["[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)","(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-ntqry=><~]))"].join("|");return new RegExp(e,t?void 0:"g")}});var ps=p((hg,hs)=>{"use strict";var Fu=ds();hs.exports=t=>typeof t=="string"?t.replace(Fu(),""):t});var gs=p((pg,Yt)=>{var Lu=function(){"use strict";function t(s,a,l,c){var u;typeof a=="object"&&(l=a.depth,c=a.prototype,u=a.filter,a=a.circular);var f=[],d=[],m=typeof Buffer<"u";typeof a>"u"&&(a=!0),typeof l>"u"&&(l=1/0);function g(h,_){if(h===null)return null;if(_==0)return h;var x,C;if(typeof h!="object")return h;if(t.__isArray(h))x=[];else if(t.__isRegExp(h))x=new RegExp(h.source,o(h)),h.lastIndex&&(x.lastIndex=h.lastIndex);else if(t.__isDate(h))x=new Date(h.getTime());else{if(m&&Buffer.isBuffer(h))return Buffer.allocUnsafe?x=Buffer.allocUnsafe(h.length):x=new Buffer(h.length),h.copy(x),x;typeof c>"u"?(C=Object.getPrototypeOf(h),x=Object.create(C)):(x=Object.create(c),C=c)}if(a){var O=f.indexOf(h);if(O!=-1)return d[O];f.push(h),d.push(x)}for(var P in h){var D;C&&(D=Object.getOwnPropertyDescriptor(C,P)),!(D&&D.set==null)&&(x[P]=g(h[P],_-1))}return x}return g(s,l)}t.clonePrototype=function(a){if(a===null)return null;var l=function(){};return l.prototype=a,new l};function e(s){return Object.prototype.toString.call(s)}t.__objToStr=e;function r(s){return typeof s=="object"&&e(s)==="[object Date]"}t.__isDate=r;function n(s){return typeof s=="object"&&e(s)==="[object Array]"}t.__isArray=n;function i(s){return typeof s=="object"&&e(s)==="[object RegExp]"}t.__isRegExp=i;function o(s){var a="";return s.global&&(a+="g"),s.ignoreCase&&(a+="i"),s.multiline&&(a+="m"),a}return t.__getRegExpFlags=o,t}();typeof Yt=="object"&&Yt.exports&&(Yt.exports=Lu)});var ys=p((gg,ms)=>{var Du=gs();ms.exports=function(t,e){return t=t||{},Object.keys(e).forEach(function(r){typeof t[r]>"u"&&(t[r]=Du(e[r]))}),t}});var xs=p((mg,_s)=>{_s.exports=[[768,879],[1155,1158],[1160,1161],[1425,1469],[1471,1471],[1473,1474],[1476,1477],[1479,1479],[1536,1539],[1552,1557],[1611,1630],[1648,1648],[1750,1764],[1767,1768],[1770,1773],[1807,1807],[1809,1809],[1840,1866],[1958,1968],[2027,2035],[2305,2306],[2364,2364],[2369,2376],[2381,2381],[2385,2388],[2402,2403],[2433,2433],[2492,2492],[2497,2500],[2509,2509],[2530,2531],[2561,2562],[2620,2620],[2625,2626],[2631,2632],[2635,2637],[2672,2673],[2689,2690],[2748,2748],[2753,2757],[2759,2760],[2765,2765],[2786,2787],[2817,2817],[2876,2876],[2879,2879],[2881,2883],[2893,2893],[2902,2902],[2946,2946],[3008,3008],[3021,3021],[3134,3136],[3142,3144],[3146,3149],[3157,3158],[3260,3260],[3263,3263],[3270,3270],[3276,3277],[3298,3299],[3393,3395],[3405,3405],[3530,3530],[3538,3540],[3542,3542],[3633,3633],[3636,3642],[3655,3662],[3761,3761],[3764,3769],[3771,3772],[3784,3789],[3864,3865],[3893,3893],[3895,3895],[3897,3897],[3953,3966],[3968,3972],[3974,3975],[3984,3991],[3993,4028],[4038,4038],[4141,4144],[4146,4146],[4150,4151],[4153,4153],[4184,4185],[4448,4607],[4959,4959],[5906,5908],[5938,5940],[5970,5971],[6002,6003],[6068,6069],[6071,6077],[6086,6086],[6089,6099],[6109,6109],[6155,6157],[6313,6313],[6432,6434],[6439,6440],[6450,6450],[6457,6459],[6679,6680],[6912,6915],[6964,6964],[6966,6970],[6972,6972],[6978,6978],[7019,7027],[7616,7626],[7678,7679],[8203,8207],[8234,8238],[8288,8291],[8298,8303],[8400,8431],[12330,12335],[12441,12442],[43014,43014],[43019,43019],[43045,43046],[64286,64286],[65024,65039],[65056,65059],[65279,65279],[65529,65531],[68097,68099],[68101,68102],[68108,68111],[68152,68154],[68159,68159],[119143,119145],[119155,119170],[119173,119179],[119210,119213],[119362,119364],[917505,917505],[917536,917631],[917760,917999]]});var Es=p((yg,Pn)=>{"use strict";var ku=ys(),ft=xs(),ws={nul:0,control:0};Pn.exports=function(e){return vs(e,ws)};Pn.exports.config=function(t){return t=ku(t||{},ws),function(r){return vs(r,t)}};function vs(t,e){if(typeof t!="string")return bs(t,e);for(var r=0,n=0;n<t.length;n++){var i=bs(t.charCodeAt(n),e);if(i<0)return-1;r+=i}return r}function bs(t,e){return t===0?e.nul:t<32||t>=127&&t<160?e.control:Nu(t)?0:1+(t>=4352&&(t<=4447||t==9001||t==9002||t>=11904&&t<=42191&&t!=12351||t>=44032&&t<=55203||t>=63744&&t<=64255||t>=65040&&t<=65049||t>=65072&&t<=65135||t>=65280&&t<=65376||t>=65504&&t<=65510||t>=131072&&t<=196605||t>=196608&&t<=262141))}function Nu(t){var e=0,r=ft.length-1,n;if(t<ft[0][0]||t>ft[r][1])return!1;for(;r>=e;)if(n=Math.floor((e+r)/2),t>ft[n][1])e=n+1;else if(t<ft[n][0])r=n-1;else return!0;return!1}});var Cs=p((_g,Ss)=>{"use strict";Ss.exports=({stream:t=process.stdout}={})=>!!(t&&t.isTTY&&process.env.TERM!=="dumb"&&!("CI"in process.env))});var Rn=p((xg,As)=>{As.exports=require("stream")});var Fs=p((bg,Rs)=>{"use strict";function Is(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),r.push.apply(r,n)}return r}function Os(t){for(var e=1;e<arguments.length;e++){var r=arguments[e]!=null?arguments[e]:{};e%2?Is(Object(r),!0).forEach(function(n){Mu(t,n,r[n])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Is(Object(r)).forEach(function(n){Object.defineProperty(t,n,Object.getOwnPropertyDescriptor(r,n))})}return t}function Mu(t,e,r){return e=Ps(e),e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function qu(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Ts(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Ps(n.key),n)}}function Bu(t,e,r){return e&&Ts(t.prototype,e),r&&Ts(t,r),Object.defineProperty(t,"prototype",{writable:!1}),t}function Ps(t){var e=ju(t,"string");return typeof e=="symbol"?e:String(e)}function ju(t,e){if(typeof t!="object"||t===null)return t;var r=t[Symbol.toPrimitive];if(r!==void 0){var n=r.call(t,e||"default");if(typeof n!="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}var $u=require("buffer"),Jt=$u.Buffer,Uu=require("util"),Fn=Uu.inspect,Vu=Fn&&Fn.custom||"inspect";function Wu(t,e,r){Jt.prototype.copy.call(t,e,r)}Rs.exports=function(){function t(){qu(this,t),this.head=null,this.tail=null,this.length=0}return Bu(t,[{key:"push",value:function(r){var n={data:r,next:null};this.length>0?this.tail.next=n:this.head=n,this.tail=n,++this.length}},{key:"unshift",value:function(r){var n={data:r,next:this.head};this.length===0&&(this.tail=n),this.head=n,++this.length}},{key:"shift",value:function(){if(this.length!==0){var r=this.head.data;return this.length===1?this.head=this.tail=null:this.head=this.head.next,--this.length,r}}},{key:"clear",value:function(){this.head=this.tail=null,this.length=0}},{key:"join",value:function(r){if(this.length===0)return"";for(var n=this.head,i=""+n.data;n=n.next;)i+=r+n.data;return i}},{key:"concat",value:function(r){if(this.length===0)return Jt.alloc(0);for(var n=Jt.allocUnsafe(r>>>0),i=this.head,o=0;i;)Wu(i.data,n,o),o+=i.data.length,i=i.next;return n}},{key:"consume",value:function(r,n){var i;return r<this.head.data.length?(i=this.head.data.slice(0,r),this.head.data=this.head.data.slice(r)):r===this.head.data.length?i=this.shift():i=n?this._getString(r):this._getBuffer(r),i}},{key:"first",value:function(){return this.head.data}},{key:"_getString",value:function(r){var n=this.head,i=1,o=n.data;for(r-=o.length;n=n.next;){var s=n.data,a=r>s.length?s.length:r;if(a===s.length?o+=s:o+=s.slice(0,r),r-=a,r===0){a===s.length?(++i,n.next?this.head=n.next:this.head=this.tail=null):(this.head=n,n.data=s.slice(a));break}++i}return this.length-=i,o}},{key:"_getBuffer",value:function(r){var n=Jt.allocUnsafe(r),i=this.head,o=1;for(i.data.copy(n),r-=i.data.length;i=i.next;){var s=i.data,a=r>s.length?s.length:r;if(s.copy(n,n.length-r,0,a),r-=a,r===0){a===s.length?(++o,i.next?this.head=i.next:this.head=this.tail=null):(this.head=i,i.data=s.slice(a));break}++o}return this.length-=o,n}},{key:Vu,value:function(r,n){return Fn(this,Os(Os({},n),{},{depth:0,customInspect:!1}))}}]),t}()});var Dn=p((wg,Ds)=>{"use strict";function Hu(t,e){var r=this,n=this._readableState&&this._readableState.destroyed,i=this._writableState&&this._writableState.destroyed;return n||i?(e?e(t):t&&(this._writableState?this._writableState.errorEmitted||(this._writableState.errorEmitted=!0,process.nextTick(Ln,this,t)):process.nextTick(Ln,this,t)),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(t||null,function(o){!e&&o?r._writableState?r._writableState.errorEmitted?process.nextTick(Xt,r):(r._writableState.errorEmitted=!0,process.nextTick(Ls,r,o)):process.nextTick(Ls,r,o):e?(process.nextTick(Xt,r),e(o)):process.nextTick(Xt,r)}),this)}function Ls(t,e){Ln(t,e),Xt(t)}function Xt(t){t._writableState&&!t._writableState.emitClose||t._readableState&&!t._readableState.emitClose||t.emit("close")}function Gu(){this._readableState&&(this._readableState.destroyed=!1,this._readableState.reading=!1,this._readableState.ended=!1,this._readableState.endEmitted=!1),this._writableState&&(this._writableState.destroyed=!1,this._writableState.ended=!1,this._writableState.ending=!1,this._writableState.finalCalled=!1,this._writableState.prefinished=!1,this._writableState.finished=!1,this._writableState.errorEmitted=!1)}function Ln(t,e){t.emit("error",e)}function zu(t,e){var r=t._readableState,n=t._writableState;r&&r.autoDestroy||n&&n.autoDestroy?t.destroy(e):t.emit("error",e)}Ds.exports={destroy:Hu,undestroy:Gu,errorOrDestroy:zu}});var me=p((vg,Ms)=>{"use strict";var Ns={};function J(t,e,r){r||(r=Error);function n(o,s,a){return typeof e=="string"?e:e(o,s,a)}class i extends r{constructor(s,a,l){super(n(s,a,l))}}i.prototype.name=r.name,i.prototype.code=t,Ns[t]=i}function ks(t,e){if(Array.isArray(t)){let r=t.length;return t=t.map(n=>String(n)),r>2?`one of ${e} ${t.slice(0,r-1).join(", ")}, or `+t[r-1]:r===2?`one of ${e} ${t[0]} or ${t[1]}`:`of ${e} ${t[0]}`}else return`of ${e} ${String(t)}`}function Ku(t,e,r){return t.substr(!r||r<0?0:+r,e.length)===e}function Yu(t,e,r){return(r===void 0||r>t.length)&&(r=t.length),t.substring(r-e.length,r)===e}function Ju(t,e,r){return typeof r!="number"&&(r=0),r+e.length>t.length?!1:t.indexOf(e,r)!==-1}J("ERR_INVALID_OPT_VALUE",function(t,e){return'The value "'+e+'" is invalid for option "'+t+'"'},TypeError);J("ERR_INVALID_ARG_TYPE",function(t,e,r){let n;typeof e=="string"&&Ku(e,"not ")?(n="must not be",e=e.replace(/^not /,"")):n="must be";let i;if(Yu(t," argument"))i=`The ${t} ${n} ${ks(e,"type")}`;else{let o=Ju(t,".")?"property":"argument";i=`The "${t}" ${o} ${n} ${ks(e,"type")}`}return i+=`. Received type ${typeof r}`,i},TypeError);J("ERR_STREAM_PUSH_AFTER_EOF","stream.push() after EOF");J("ERR_METHOD_NOT_IMPLEMENTED",function(t){return"The "+t+" method is not implemented"});J("ERR_STREAM_PREMATURE_CLOSE","Premature close");J("ERR_STREAM_DESTROYED",function(t){return"Cannot call "+t+" after a stream was destroyed"});J("ERR_MULTIPLE_CALLBACK","Callback called multiple times");J("ERR_STREAM_CANNOT_PIPE","Cannot pipe, not readable");J("ERR_STREAM_WRITE_AFTER_END","write after end");J("ERR_STREAM_NULL_VALUES","May not write null values to stream",TypeError);J("ERR_UNKNOWN_ENCODING",function(t){return"Unknown encoding: "+t},TypeError);J("ERR_STREAM_UNSHIFT_AFTER_END_EVENT","stream.unshift() after end event");Ms.exports.codes=Ns});var kn=p((Eg,qs)=>{"use strict";var Xu=me().codes.ERR_INVALID_OPT_VALUE;function Zu(t,e,r){return t.highWaterMark!=null?t.highWaterMark:e?t[r]:null}function Qu(t,e,r,n){var i=Zu(e,n,r);if(i!=null){if(!(isFinite(i)&&Math.floor(i)===i)||i<0){var o=n?r:"highWaterMark";throw new Xu(o,i)}return Math.floor(i)}return t.objectMode?16:16*1024}qs.exports={getHighWaterMark:Qu}});var Bs=p((Sg,Nn)=>{typeof Object.create=="function"?Nn.exports=function(e,r){r&&(e.super_=r,e.prototype=Object.create(r.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}))}:Nn.exports=function(e,r){if(r){e.super_=r;var n=function(){};n.prototype=r.prototype,e.prototype=new n,e.prototype.constructor=e}}});var Ie=p((Cg,qn)=>{try{if(Mn=require("util"),typeof Mn.inherits!="function")throw"";qn.exports=Mn.inherits}catch{qn.exports=Bs()}var Mn});var $s=p((Ag,js)=>{js.exports=require("util").deprecate});var $n=p((Ig,zs)=>{"use strict";zs.exports=M;function Vs(t){var e=this;this.next=null,this.entry=null,this.finish=function(){If(e,t)}}var Ge;M.WritableState=ht;var ef={deprecate:$s()},Ws=Rn(),Qt=require("buffer").Buffer,tf=(typeof global<"u"?global:typeof window<"u"?window:typeof self<"u"?self:{}).Uint8Array||function(){};function rf(t){return Qt.from(t)}function nf(t){return Qt.isBuffer(t)||t instanceof tf}var jn=Dn(),of=kn(),sf=of.getHighWaterMark,ye=me().codes,af=ye.ERR_INVALID_ARG_TYPE,lf=ye.ERR_METHOD_NOT_IMPLEMENTED,cf=ye.ERR_MULTIPLE_CALLBACK,uf=ye.ERR_STREAM_CANNOT_PIPE,ff=ye.ERR_STREAM_DESTROYED,df=ye.ERR_STREAM_NULL_VALUES,hf=ye.ERR_STREAM_WRITE_AFTER_END,pf=ye.ERR_UNKNOWN_ENCODING,ze=jn.errorOrDestroy;Ie()(M,Ws);function gf(){}function ht(t,e,r){Ge=Ge||Oe(),t=t||{},typeof r!="boolean"&&(r=e instanceof Ge),this.objectMode=!!t.objectMode,r&&(this.objectMode=this.objectMode||!!t.writableObjectMode),this.highWaterMark=sf(this,t,"writableHighWaterMark",r),this.finalCalled=!1,this.needDrain=!1,this.ending=!1,this.ended=!1,this.finished=!1,this.destroyed=!1;var n=t.decodeStrings===!1;this.decodeStrings=!n,this.defaultEncoding=t.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=function(i){vf(e,i)},this.writecb=null,this.writelen=0,this.bufferedRequest=null,this.lastBufferedRequest=null,this.pendingcb=0,this.prefinished=!1,this.errorEmitted=!1,this.emitClose=t.emitClose!==!1,this.autoDestroy=!!t.autoDestroy,this.bufferedRequestCount=0,this.corkedRequestsFree=new Vs(this)}ht.prototype.getBuffer=function(){for(var e=this.bufferedRequest,r=[];e;)r.push(e),e=e.next;return r};(function(){try{Object.defineProperty(ht.prototype,"buffer",{get:ef.deprecate(function(){return this.getBuffer()},"_writableState.buffer is deprecated. Use _writableState.getBuffer instead.","DEP0003")})}catch{}})();var Zt;typeof Symbol=="function"&&Symbol.hasInstance&&typeof Function.prototype[Symbol.hasInstance]=="function"?(Zt=Function.prototype[Symbol.hasInstance],Object.defineProperty(M,Symbol.hasInstance,{value:function(e){return Zt.call(this,e)?!0:this!==M?!1:e&&e._writableState instanceof ht}})):Zt=function(e){return e instanceof this};function M(t){Ge=Ge||Oe();var e=this instanceof Ge;if(!e&&!Zt.call(M,this))return new M(t);this._writableState=new ht(t,this,e),this.writable=!0,t&&(typeof t.write=="function"&&(this._write=t.write),typeof t.writev=="function"&&(this._writev=t.writev),typeof t.destroy=="function"&&(this._destroy=t.destroy),typeof t.final=="function"&&(this._final=t.final)),Ws.call(this)}M.prototype.pipe=function(){ze(this,new uf)};function mf(t,e){var r=new hf;ze(t,r),process.nextTick(e,r)}function yf(t,e,r,n){var i;return r===null?i=new df:typeof r!="string"&&!e.objectMode&&(i=new af("chunk",["string","Buffer"],r)),i?(ze(t,i),process.nextTick(n,i),!1):!0}M.prototype.write=function(t,e,r){var n=this._writableState,i=!1,o=!n.objectMode&&nf(t);return o&&!Qt.isBuffer(t)&&(t=rf(t)),typeof e=="function"&&(r=e,e=null),o?e="buffer":e||(e=n.defaultEncoding),typeof r!="function"&&(r=gf),n.ending?mf(this,r):(o||yf(this,n,t,r))&&(n.pendingcb++,i=xf(this,n,o,t,e,r)),i};M.prototype.cork=function(){this._writableState.corked++};M.prototype.uncork=function(){var t=this._writableState;t.corked&&(t.corked--,!t.writing&&!t.corked&&!t.bufferProcessing&&t.bufferedRequest&&Hs(this,t))};M.prototype.setDefaultEncoding=function(e){if(typeof e=="string"&&(e=e.toLowerCase()),!(["hex","utf8","utf-8","ascii","binary","base64","ucs2","ucs-2","utf16le","utf-16le","raw"].indexOf((e+"").toLowerCase())>-1))throw new pf(e);return this._writableState.defaultEncoding=e,this};Object.defineProperty(M.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}});function _f(t,e,r){return!t.objectMode&&t.decodeStrings!==!1&&typeof e=="string"&&(e=Qt.from(e,r)),e}Object.defineProperty(M.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}});function xf(t,e,r,n,i,o){if(!r){var s=_f(e,n,i);n!==s&&(r=!0,i="buffer",n=s)}var a=e.objectMode?1:n.length;e.length+=a;var l=e.length<e.highWaterMark;if(l||(e.needDrain=!0),e.writing||e.corked){var c=e.lastBufferedRequest;e.lastBufferedRequest={chunk:n,encoding:i,isBuf:r,callback:o,next:null},c?c.next=e.lastBufferedRequest:e.bufferedRequest=e.lastBufferedRequest,e.bufferedRequestCount+=1}else Bn(t,e,!1,a,n,i,o);return l}function Bn(t,e,r,n,i,o,s){e.writelen=n,e.writecb=s,e.writing=!0,e.sync=!0,e.destroyed?e.onwrite(new ff("write")):r?t._writev(i,e.onwrite):t._write(i,o,e.onwrite),e.sync=!1}function bf(t,e,r,n,i){--e.pendingcb,r?(process.nextTick(i,n),process.nextTick(dt,t,e),t._writableState.errorEmitted=!0,ze(t,n)):(i(n),t._writableState.errorEmitted=!0,ze(t,n),dt(t,e))}function wf(t){t.writing=!1,t.writecb=null,t.length-=t.writelen,t.writelen=0}function vf(t,e){var r=t._writableState,n=r.sync,i=r.writecb;if(typeof i!="function")throw new cf;if(wf(r),e)bf(t,r,n,e,i);else{var o=Gs(r)||t.destroyed;!o&&!r.corked&&!r.bufferProcessing&&r.bufferedRequest&&Hs(t,r),n?process.nextTick(Us,t,r,o,i):Us(t,r,o,i)}}function Us(t,e,r,n){r||Ef(t,e),e.pendingcb--,n(),dt(t,e)}function Ef(t,e){e.length===0&&e.needDrain&&(e.needDrain=!1,t.emit("drain"))}function Hs(t,e){e.bufferProcessing=!0;var r=e.bufferedRequest;if(t._writev&&r&&r.next){var n=e.bufferedRequestCount,i=new Array(n),o=e.corkedRequestsFree;o.entry=r;for(var s=0,a=!0;r;)i[s]=r,r.isBuf||(a=!1),r=r.next,s+=1;i.allBuffers=a,Bn(t,e,!0,e.length,i,"",o.finish),e.pendingcb++,e.lastBufferedRequest=null,o.next?(e.corkedRequestsFree=o.next,o.next=null):e.corkedRequestsFree=new Vs(e),e.bufferedRequestCount=0}else{for(;r;){var l=r.chunk,c=r.encoding,u=r.callback,f=e.objectMode?1:l.length;if(Bn(t,e,!1,f,l,c,u),r=r.next,e.bufferedRequestCount--,e.writing)break}r===null&&(e.lastBufferedRequest=null)}e.bufferedRequest=r,e.bufferProcessing=!1}M.prototype._write=function(t,e,r){r(new lf("_write()"))};M.prototype._writev=null;M.prototype.end=function(t,e,r){var n=this._writableState;return typeof t=="function"?(r=t,t=null,e=null):typeof e=="function"&&(r=e,e=null),t!=null&&this.write(t,e),n.corked&&(n.corked=1,this.uncork()),n.ending||Af(this,n,r),this};Object.defineProperty(M.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}});function Gs(t){return t.ending&&t.length===0&&t.bufferedRequest===null&&!t.finished&&!t.writing}function Sf(t,e){t._final(function(r){e.pendingcb--,r&&ze(t,r),e.prefinished=!0,t.emit("prefinish"),dt(t,e)})}function Cf(t,e){!e.prefinished&&!e.finalCalled&&(typeof t._final=="function"&&!e.destroyed?(e.pendingcb++,e.finalCalled=!0,process.nextTick(Sf,t,e)):(e.prefinished=!0,t.emit("prefinish")))}function dt(t,e){var r=Gs(e);if(r&&(Cf(t,e),e.pendingcb===0&&(e.finished=!0,t.emit("finish"),e.autoDestroy))){var n=t._readableState;(!n||n.autoDestroy&&n.endEmitted)&&t.destroy()}return r}function Af(t,e,r){e.ending=!0,dt(t,e),r&&(e.finished?process.nextTick(r):t.once("finish",r)),e.ended=!0,t.writable=!1}function If(t,e,r){var n=t.entry;for(t.entry=null;n;){var i=n.callback;e.pendingcb--,i(r),n=n.next}e.corkedRequestsFree.next=t}Object.defineProperty(M.prototype,"destroyed",{enumerable:!1,get:function(){return this._writableState===void 0?!1:this._writableState.destroyed},set:function(e){this._writableState&&(this._writableState.destroyed=e)}});M.prototype.destroy=jn.destroy;M.prototype._undestroy=jn.undestroy;M.prototype._destroy=function(t,e){e(t)}});var Oe=p((Og,Ys)=>{"use strict";var Of=Object.keys||function(t){var e=[];for(var r in t)e.push(r);return e};Ys.exports=ie;var Ks=Wn(),Vn=$n();Ie()(ie,Ks);for(Un=Of(Vn.prototype),er=0;er<Un.length;er++)tr=Un[er],ie.prototype[tr]||(ie.prototype[tr]=Vn.prototype[tr]);var Un,tr,er;function ie(t){if(!(this instanceof ie))return new ie(t);Ks.call(this,t),Vn.call(this,t),this.allowHalfOpen=!0,t&&(t.readable===!1&&(this.readable=!1),t.writable===!1&&(this.writable=!1),t.allowHalfOpen===!1&&(this.allowHalfOpen=!1,this.once("end",Tf)))}Object.defineProperty(ie.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}});Object.defineProperty(ie.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}});Object.defineProperty(ie.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}});function Tf(){this._writableState.ended||process.nextTick(Pf,this)}function Pf(t){t.end()}Object.defineProperty(ie.prototype,"destroyed",{enumerable:!1,get:function(){return this._readableState===void 0||this._writableState===void 0?!1:this._readableState.destroyed&&this._writableState.destroyed},set:function(e){this._readableState===void 0||this._writableState===void 0||(this._readableState.destroyed=e,this._writableState.destroyed=e)}})});var Zs=p((Hn,Xs)=>{var rr=require("buffer"),oe=rr.Buffer;function Js(t,e){for(var r in t)e[r]=t[r]}oe.from&&oe.alloc&&oe.allocUnsafe&&oe.allocUnsafeSlow?Xs.exports=rr:(Js(rr,Hn),Hn.Buffer=Te);function Te(t,e,r){return oe(t,e,r)}Te.prototype=Object.create(oe.prototype);Js(oe,Te);Te.from=function(t,e,r){if(typeof t=="number")throw new TypeError("Argument must not be a number");return oe(t,e,r)};Te.alloc=function(t,e,r){if(typeof t!="number")throw new TypeError("Argument must be a number");var n=oe(t);return e!==void 0?typeof r=="string"?n.fill(e,r):n.fill(e):n.fill(0),n};Te.allocUnsafe=function(t){if(typeof t!="number")throw new TypeError("Argument must be a number");return oe(t)};Te.allocUnsafeSlow=function(t){if(typeof t!="number")throw new TypeError("Argument must be a number");return rr.SlowBuffer(t)}});var Kn=p(ea=>{"use strict";var zn=Zs().Buffer,Qs=zn.isEncoding||function(t){switch(t=""+t,t&&t.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return!0;default:return!1}};function Rf(t){if(!t)return"utf8";for(var e;;)switch(t){case"utf8":case"utf-8":return"utf8";case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return"utf16le";case"latin1":case"binary":return"latin1";case"base64":case"ascii":case"hex":return t;default:if(e)return;t=(""+t).toLowerCase(),e=!0}}function Ff(t){var e=Rf(t);if(typeof e!="string"&&(zn.isEncoding===Qs||!Qs(t)))throw new Error("Unknown encoding: "+t);return e||t}ea.StringDecoder=pt;function pt(t){this.encoding=Ff(t);var e;switch(this.encoding){case"utf16le":this.text=qf,this.end=Bf,e=4;break;case"utf8":this.fillLast=kf,e=4;break;case"base64":this.text=jf,this.end=$f,e=3;break;default:this.write=Uf,this.end=Vf;return}this.lastNeed=0,this.lastTotal=0,this.lastChar=zn.allocUnsafe(e)}pt.prototype.write=function(t){if(t.length===0)return"";var e,r;if(this.lastNeed){if(e=this.fillLast(t),e===void 0)return"";r=this.lastNeed,this.lastNeed=0}else r=0;return r<t.length?e?e+this.text(t,r):this.text(t,r):e||""};pt.prototype.end=Mf;pt.prototype.text=Nf;pt.prototype.fillLast=function(t){if(this.lastNeed<=t.length)return t.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);t.copy(this.lastChar,this.lastTotal-this.lastNeed,0,t.length),this.lastNeed-=t.length};function Gn(t){return t<=127?0:t>>5===6?2:t>>4===14?3:t>>3===30?4:t>>6===2?-1:-2}function Lf(t,e,r){var n=e.length-1;if(n<r)return 0;var i=Gn(e[n]);return i>=0?(i>0&&(t.lastNeed=i-1),i):--n<r||i===-2?0:(i=Gn(e[n]),i>=0?(i>0&&(t.lastNeed=i-2),i):--n<r||i===-2?0:(i=Gn(e[n]),i>=0?(i>0&&(i===2?i=0:t.lastNeed=i-3),i):0))}function Df(t,e,r){if((e[0]&192)!==128)return t.lastNeed=0,"\uFFFD";if(t.lastNeed>1&&e.length>1){if((e[1]&192)!==128)return t.lastNeed=1,"\uFFFD";if(t.lastNeed>2&&e.length>2&&(e[2]&192)!==128)return t.lastNeed=2,"\uFFFD"}}function kf(t){var e=this.lastTotal-this.lastNeed,r=Df(this,t,e);if(r!==void 0)return r;if(this.lastNeed<=t.length)return t.copy(this.lastChar,e,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);t.copy(this.lastChar,e,0,t.length),this.lastNeed-=t.length}function Nf(t,e){var r=Lf(this,t,e);if(!this.lastNeed)return t.toString("utf8",e);this.lastTotal=r;var n=t.length-(r-this.lastNeed);return t.copy(this.lastChar,0,n),t.toString("utf8",e,n)}function Mf(t){var e=t&&t.length?this.write(t):"";return this.lastNeed?e+"\uFFFD":e}function qf(t,e){if((t.length-e)%2===0){var r=t.toString("utf16le",e);if(r){var n=r.charCodeAt(r.length-1);if(n>=55296&&n<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=t[t.length-2],this.lastChar[1]=t[t.length-1],r.slice(0,-1)}return r}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=t[t.length-1],t.toString("utf16le",e,t.length-1)}function Bf(t){var e=t&&t.length?this.write(t):"";if(this.lastNeed){var r=this.lastTotal-this.lastNeed;return e+this.lastChar.toString("utf16le",0,r)}return e}function jf(t,e){var r=(t.length-e)%3;return r===0?t.toString("base64",e):(this.lastNeed=3-r,this.lastTotal=3,r===1?this.lastChar[0]=t[t.length-1]:(this.lastChar[0]=t[t.length-2],this.lastChar[1]=t[t.length-1]),t.toString("base64",e,t.length-r))}function $f(t){var e=t&&t.length?this.write(t):"";return this.lastNeed?e+this.lastChar.toString("base64",0,3-this.lastNeed):e}function Uf(t){return t.toString(this.encoding)}function Vf(t){return t&&t.length?this.write(t):""}});var nr=p((Pg,na)=>{"use strict";var ta=me().codes.ERR_STREAM_PREMATURE_CLOSE;function Wf(t){var e=!1;return function(){if(!e){e=!0;for(var r=arguments.length,n=new Array(r),i=0;i<r;i++)n[i]=arguments[i];t.apply(this,n)}}}function Hf(){}function Gf(t){return t.setHeader&&typeof t.abort=="function"}function ra(t,e,r){if(typeof e=="function")return ra(t,null,e);e||(e={}),r=Wf(r||Hf);var n=e.readable||e.readable!==!1&&t.readable,i=e.writable||e.writable!==!1&&t.writable,o=function(){t.writable||a()},s=t._writableState&&t._writableState.finished,a=function(){i=!1,s=!0,n||r.call(t)},l=t._readableState&&t._readableState.endEmitted,c=function(){n=!1,l=!0,i||r.call(t)},u=function(g){r.call(t,g)},f=function(){var g;if(n&&!l)return(!t._readableState||!t._readableState.ended)&&(g=new ta),r.call(t,g);if(i&&!s)return(!t._writableState||!t._writableState.ended)&&(g=new ta),r.call(t,g)},d=function(){t.req.on("finish",a)};return Gf(t)?(t.on("complete",a),t.on("abort",f),t.req?d():t.on("request",d)):i&&!t._writableState&&(t.on("end",o),t.on("close",o)),t.on("end",c),t.on("finish",a),e.error!==!1&&t.on("error",u),t.on("close",f),function(){t.removeListener("complete",a),t.removeListener("abort",f),t.removeListener("request",d),t.req&&t.req.removeListener("finish",a),t.removeListener("end",o),t.removeListener("close",o),t.removeListener("finish",a),t.removeListener("end",c),t.removeListener("error",u),t.removeListener("close",f)}}na.exports=ra});var oa=p((Rg,ia)=>{"use strict";var ir;function _e(t,e,r){return e=zf(e),e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function zf(t){var e=Kf(t,"string");return typeof e=="symbol"?e:String(e)}function Kf(t,e){if(typeof t!="object"||t===null)return t;var r=t[Symbol.toPrimitive];if(r!==void 0){var n=r.call(t,e||"default");if(typeof n!="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}var Yf=nr(),xe=Symbol("lastResolve"),Pe=Symbol("lastReject"),gt=Symbol("error"),or=Symbol("ended"),Re=Symbol("lastPromise"),Yn=Symbol("handlePromise"),Fe=Symbol("stream");function be(t,e){return{value:t,done:e}}function Jf(t){var e=t[xe];if(e!==null){var r=t[Fe].read();r!==null&&(t[Re]=null,t[xe]=null,t[Pe]=null,e(be(r,!1)))}}function Xf(t){process.nextTick(Jf,t)}function Zf(t,e){return function(r,n){t.then(function(){if(e[or]){r(be(void 0,!0));return}e[Yn](r,n)},n)}}var Qf=Object.getPrototypeOf(function(){}),ed=Object.setPrototypeOf((ir={get stream(){return this[Fe]},next:function(){var e=this,r=this[gt];if(r!==null)return Promise.reject(r);if(this[or])return Promise.resolve(be(void 0,!0));if(this[Fe].destroyed)return new Promise(function(s,a){process.nextTick(function(){e[gt]?a(e[gt]):s(be(void 0,!0))})});var n=this[Re],i;if(n)i=new Promise(Zf(n,this));else{var o=this[Fe].read();if(o!==null)return Promise.resolve(be(o,!1));i=new Promise(this[Yn])}return this[Re]=i,i}},_e(ir,Symbol.asyncIterator,function(){return this}),_e(ir,"return",function(){var e=this;return new Promise(function(r,n){e[Fe].destroy(null,function(i){if(i){n(i);return}r(be(void 0,!0))})})}),ir),Qf),td=function(e){var r,n=Object.create(ed,(r={},_e(r,Fe,{value:e,writable:!0}),_e(r,xe,{value:null,writable:!0}),_e(r,Pe,{value:null,writable:!0}),_e(r,gt,{value:null,writable:!0}),_e(r,or,{value:e._readableState.endEmitted,writable:!0}),_e(r,Yn,{value:function(o,s){var a=n[Fe].read();a?(n[Re]=null,n[xe]=null,n[Pe]=null,o(be(a,!1))):(n[xe]=o,n[Pe]=s)},writable:!0}),r));return n[Re]=null,Yf(e,function(i){if(i&&i.code!=="ERR_STREAM_PREMATURE_CLOSE"){var o=n[Pe];o!==null&&(n[Re]=null,n[xe]=null,n[Pe]=null,o(i)),n[gt]=i;return}var s=n[xe];s!==null&&(n[Re]=null,n[xe]=null,n[Pe]=null,s(be(void 0,!0))),n[or]=!0}),e.on("readable",Xf.bind(null,n)),n};ia.exports=td});var ca=p((Fg,la)=>{"use strict";function sa(t,e,r,n,i,o,s){try{var a=t[o](s),l=a.value}catch(c){r(c);return}a.done?e(l):Promise.resolve(l).then(n,i)}function rd(t){return function(){var e=this,r=arguments;return new Promise(function(n,i){var o=t.apply(e,r);function s(l){sa(o,n,i,s,a,"next",l)}function a(l){sa(o,n,i,s,a,"throw",l)}s(void 0)})}}function aa(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),r.push.apply(r,n)}return r}function nd(t){for(var e=1;e<arguments.length;e++){var r=arguments[e]!=null?arguments[e]:{};e%2?aa(Object(r),!0).forEach(function(n){id(t,n,r[n])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):aa(Object(r)).forEach(function(n){Object.defineProperty(t,n,Object.getOwnPropertyDescriptor(r,n))})}return t}function id(t,e,r){return e=od(e),e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function od(t){var e=sd(t,"string");return typeof e=="symbol"?e:String(e)}function sd(t,e){if(typeof t!="object"||t===null)return t;var r=t[Symbol.toPrimitive];if(r!==void 0){var n=r.call(t,e||"default");if(typeof n!="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}var ad=me().codes.ERR_INVALID_ARG_TYPE;function ld(t,e,r){var n;if(e&&typeof e.next=="function")n=e;else if(e&&e[Symbol.asyncIterator])n=e[Symbol.asyncIterator]();else if(e&&e[Symbol.iterator])n=e[Symbol.iterator]();else throw new ad("iterable",["Iterable"],e);var i=new t(nd({objectMode:!0},r)),o=!1;i._read=function(){o||(o=!0,s())};function s(){return a.apply(this,arguments)}function a(){return a=rd(function*(){try{var l=yield n.next(),c=l.value,u=l.done;u?i.push(null):i.push(yield c)?s():o=!1}catch(f){i.destroy(f)}}),a.apply(this,arguments)}return i}la.exports=ld});var Wn=p((Dg,xa)=>{"use strict";xa.exports=T;var Ke;T.ReadableState=ha;var Lg=require("events").EventEmitter,da=function(e,r){return e.listeners(r).length},yt=Rn(),sr=require("buffer").Buffer,cd=(typeof global<"u"?global:typeof window<"u"?window:typeof self<"u"?self:{}).Uint8Array||function(){};function ud(t){return sr.from(t)}function fd(t){return sr.isBuffer(t)||t instanceof cd}var Jn=require("util"),A;Jn&&Jn.debuglog?A=Jn.debuglog("stream"):A=function(){};var dd=Fs(),ni=Dn(),hd=kn(),pd=hd.getHighWaterMark,ar=me().codes,gd=ar.ERR_INVALID_ARG_TYPE,md=ar.ERR_STREAM_PUSH_AFTER_EOF,yd=ar.ERR_METHOD_NOT_IMPLEMENTED,_d=ar.ERR_STREAM_UNSHIFT_AFTER_END_EVENT,Ye,Xn,Zn;Ie()(T,yt);var mt=ni.errorOrDestroy,Qn=["error","close","destroy","pause","resume"];function xd(t,e,r){if(typeof t.prependListener=="function")return t.prependListener(e,r);!t._events||!t._events[e]?t.on(e,r):Array.isArray(t._events[e])?t._events[e].unshift(r):t._events[e]=[r,t._events[e]]}function ha(t,e,r){Ke=Ke||Oe(),t=t||{},typeof r!="boolean"&&(r=e instanceof Ke),this.objectMode=!!t.objectMode,r&&(this.objectMode=this.objectMode||!!t.readableObjectMode),this.highWaterMark=pd(this,t,"readableHighWaterMark",r),this.buffer=new dd,this.length=0,this.pipes=null,this.pipesCount=0,this.flowing=null,this.ended=!1,this.endEmitted=!1,this.reading=!1,this.sync=!0,this.needReadable=!1,this.emittedReadable=!1,this.readableListening=!1,this.resumeScheduled=!1,this.paused=!0,this.emitClose=t.emitClose!==!1,this.autoDestroy=!!t.autoDestroy,this.destroyed=!1,this.defaultEncoding=t.defaultEncoding||"utf8",this.awaitDrain=0,this.readingMore=!1,this.decoder=null,this.encoding=null,t.encoding&&(Ye||(Ye=Kn().StringDecoder),this.decoder=new Ye(t.encoding),this.encoding=t.encoding)}function T(t){if(Ke=Ke||Oe(),!(this instanceof T))return new T(t);var e=this instanceof Ke;this._readableState=new ha(t,this,e),this.readable=!0,t&&(typeof t.read=="function"&&(this._read=t.read),typeof t.destroy=="function"&&(this._destroy=t.destroy)),yt.call(this)}Object.defineProperty(T.prototype,"destroyed",{enumerable:!1,get:function(){return this._readableState===void 0?!1:this._readableState.destroyed},set:function(e){this._readableState&&(this._readableState.destroyed=e)}});T.prototype.destroy=ni.destroy;T.prototype._undestroy=ni.undestroy;T.prototype._destroy=function(t,e){e(t)};T.prototype.push=function(t,e){var r=this._readableState,n;return r.objectMode?n=!0:typeof t=="string"&&(e=e||r.defaultEncoding,e!==r.encoding&&(t=sr.from(t,e),e=""),n=!0),pa(this,t,e,!1,n)};T.prototype.unshift=function(t){return pa(this,t,null,!0,!1)};function pa(t,e,r,n,i){A("readableAddChunk",e);var o=t._readableState;if(e===null)o.reading=!1,vd(t,o);else{var s;if(i||(s=bd(o,e)),s)mt(t,s);else if(o.objectMode||e&&e.length>0)if(typeof e!="string"&&!o.objectMode&&Object.getPrototypeOf(e)!==sr.prototype&&(e=ud(e)),n)o.endEmitted?mt(t,new _d):ei(t,o,e,!0);else if(o.ended)mt(t,new md);else{if(o.destroyed)return!1;o.reading=!1,o.decoder&&!r?(e=o.decoder.write(e),o.objectMode||e.length!==0?ei(t,o,e,!1):ri(t,o)):ei(t,o,e,!1)}else n||(o.reading=!1,ri(t,o))}return!o.ended&&(o.length<o.highWaterMark||o.length===0)}function ei(t,e,r,n){e.flowing&&e.length===0&&!e.sync?(e.awaitDrain=0,t.emit("data",r)):(e.length+=e.objectMode?1:r.length,n?e.buffer.unshift(r):e.buffer.push(r),e.needReadable&&lr(t)),ri(t,e)}function bd(t,e){var r;return!fd(e)&&typeof e!="string"&&e!==void 0&&!t.objectMode&&(r=new gd("chunk",["string","Buffer","Uint8Array"],e)),r}T.prototype.isPaused=function(){return this._readableState.flowing===!1};T.prototype.setEncoding=function(t){Ye||(Ye=Kn().StringDecoder);var e=new Ye(t);this._readableState.decoder=e,this._readableState.encoding=this._readableState.decoder.encoding;for(var r=this._readableState.buffer.head,n="";r!==null;)n+=e.write(r.data),r=r.next;return this._readableState.buffer.clear(),n!==""&&this._readableState.buffer.push(n),this._readableState.length=n.length,this};var ua=1073741824;function wd(t){return t>=ua?t=ua:(t--,t|=t>>>1,t|=t>>>2,t|=t>>>4,t|=t>>>8,t|=t>>>16,t++),t}function fa(t,e){return t<=0||e.length===0&&e.ended?0:e.objectMode?1:t!==t?e.flowing&&e.length?e.buffer.head.data.length:e.length:(t>e.highWaterMark&&(e.highWaterMark=wd(t)),t<=e.length?t:e.ended?e.length:(e.needReadable=!0,0))}T.prototype.read=function(t){A("read",t),t=parseInt(t,10);var e=this._readableState,r=t;if(t!==0&&(e.emittedReadable=!1),t===0&&e.needReadable&&((e.highWaterMark!==0?e.length>=e.highWaterMark:e.length>0)||e.ended))return A("read: emitReadable",e.length,e.ended),e.length===0&&e.ended?ti(this):lr(this),null;if(t=fa(t,e),t===0&&e.ended)return e.length===0&&ti(this),null;var n=e.needReadable;A("need readable",n),(e.length===0||e.length-t<e.highWaterMark)&&(n=!0,A("length less than watermark",n)),e.ended||e.reading?(n=!1,A("reading or ended",n)):n&&(A("do read"),e.reading=!0,e.sync=!0,e.length===0&&(e.needReadable=!0),this._read(e.highWaterMark),e.sync=!1,e.reading||(t=fa(r,e)));var i;return t>0?i=ya(t,e):i=null,i===null?(e.needReadable=e.length<=e.highWaterMark,t=0):(e.length-=t,e.awaitDrain=0),e.length===0&&(e.ended||(e.needReadable=!0),r!==t&&e.ended&&ti(this)),i!==null&&this.emit("data",i),i};function vd(t,e){if(A("onEofChunk"),!e.ended){if(e.decoder){var r=e.decoder.end();r&&r.length&&(e.buffer.push(r),e.length+=e.objectMode?1:r.length)}e.ended=!0,e.sync?lr(t):(e.needReadable=!1,e.emittedReadable||(e.emittedReadable=!0,ga(t)))}}function lr(t){var e=t._readableState;A("emitReadable",e.needReadable,e.emittedReadable),e.needReadable=!1,e.emittedReadable||(A("emitReadable",e.flowing),e.emittedReadable=!0,process.nextTick(ga,t))}function ga(t){var e=t._readableState;A("emitReadable_",e.destroyed,e.length,e.ended),!e.destroyed&&(e.length||e.ended)&&(t.emit("readable"),e.emittedReadable=!1),e.needReadable=!e.flowing&&!e.ended&&e.length<=e.highWaterMark,ii(t)}function ri(t,e){e.readingMore||(e.readingMore=!0,process.nextTick(Ed,t,e))}function Ed(t,e){for(;!e.reading&&!e.ended&&(e.length<e.highWaterMark||e.flowing&&e.length===0);){var r=e.length;if(A("maybeReadMore read 0"),t.read(0),r===e.length)break}e.readingMore=!1}T.prototype._read=function(t){mt(this,new yd("_read()"))};T.prototype.pipe=function(t,e){var r=this,n=this._readableState;switch(n.pipesCount){case 0:n.pipes=t;break;case 1:n.pipes=[n.pipes,t];break;default:n.pipes.push(t);break}n.pipesCount+=1,A("pipe count=%d opts=%j",n.pipesCount,e);var i=(!e||e.end!==!1)&&t!==process.stdout&&t!==process.stderr,o=i?a:h;n.endEmitted?process.nextTick(o):r.once("end",o),t.on("unpipe",s);function s(_,x){A("onunpipe"),_===r&&x&&x.hasUnpiped===!1&&(x.hasUnpiped=!0,u())}function a(){A("onend"),t.end()}var l=Sd(r);t.on("drain",l);var c=!1;function u(){A("cleanup"),t.removeListener("close",m),t.removeListener("finish",g),t.removeListener("drain",l),t.removeListener("error",d),t.removeListener("unpipe",s),r.removeListener("end",a),r.removeListener("end",h),r.removeListener("data",f),c=!0,n.awaitDrain&&(!t._writableState||t._writableState.needDrain)&&l()}r.on("data",f);function f(_){A("ondata");var x=t.write(_);A("dest.write",x),x===!1&&((n.pipesCount===1&&n.pipes===t||n.pipesCount>1&&_a(n.pipes,t)!==-1)&&!c&&(A("false write response, pause",n.awaitDrain),n.awaitDrain++),r.pause())}function d(_){A("onerror",_),h(),t.removeListener("error",d),da(t,"error")===0&&mt(t,_)}xd(t,"error",d);function m(){t.removeListener("finish",g),h()}t.once("close",m);function g(){A("onfinish"),t.removeListener("close",m),h()}t.once("finish",g);function h(){A("unpipe"),r.unpipe(t)}return t.emit("pipe",r),n.flowing||(A("pipe resume"),r.resume()),t};function Sd(t){return function(){var r=t._readableState;A("pipeOnDrain",r.awaitDrain),r.awaitDrain&&r.awaitDrain--,r.awaitDrain===0&&da(t,"data")&&(r.flowing=!0,ii(t))}}T.prototype.unpipe=function(t){var e=this._readableState,r={hasUnpiped:!1};if(e.pipesCount===0)return this;if(e.pipesCount===1)return t&&t!==e.pipes?this:(t||(t=e.pipes),e.pipes=null,e.pipesCount=0,e.flowing=!1,t&&t.emit("unpipe",this,r),this);if(!t){var n=e.pipes,i=e.pipesCount;e.pipes=null,e.pipesCount=0,e.flowing=!1;for(var o=0;o<i;o++)n[o].emit("unpipe",this,{hasUnpiped:!1});return this}var s=_a(e.pipes,t);return s===-1?this:(e.pipes.splice(s,1),e.pipesCount-=1,e.pipesCount===1&&(e.pipes=e.pipes[0]),t.emit("unpipe",this,r),this)};T.prototype.on=function(t,e){var r=yt.prototype.on.call(this,t,e),n=this._readableState;return t==="data"?(n.readableListening=this.listenerCount("readable")>0,n.flowing!==!1&&this.resume()):t==="readable"&&!n.endEmitted&&!n.readableListening&&(n.readableListening=n.needReadable=!0,n.flowing=!1,n.emittedReadable=!1,A("on readable",n.length,n.reading),n.length?lr(this):n.reading||process.nextTick(Cd,this)),r};T.prototype.addListener=T.prototype.on;T.prototype.removeListener=function(t,e){var r=yt.prototype.removeListener.call(this,t,e);return t==="readable"&&process.nextTick(ma,this),r};T.prototype.removeAllListeners=function(t){var e=yt.prototype.removeAllListeners.apply(this,arguments);return(t==="readable"||t===void 0)&&process.nextTick(ma,this),e};function ma(t){var e=t._readableState;e.readableListening=t.listenerCount("readable")>0,e.resumeScheduled&&!e.paused?e.flowing=!0:t.listenerCount("data")>0&&t.resume()}function Cd(t){A("readable nexttick read 0"),t.read(0)}T.prototype.resume=function(){var t=this._readableState;return t.flowing||(A("resume"),t.flowing=!t.readableListening,Ad(this,t)),t.paused=!1,this};function Ad(t,e){e.resumeScheduled||(e.resumeScheduled=!0,process.nextTick(Id,t,e))}function Id(t,e){A("resume",e.reading),e.reading||t.read(0),e.resumeScheduled=!1,t.emit("resume"),ii(t),e.flowing&&!e.reading&&t.read(0)}T.prototype.pause=function(){return A("call pause flowing=%j",this._readableState.flowing),this._readableState.flowing!==!1&&(A("pause"),this._readableState.flowing=!1,this.emit("pause")),this._readableState.paused=!0,this};function ii(t){var e=t._readableState;for(A("flow",e.flowing);e.flowing&&t.read()!==null;);}T.prototype.wrap=function(t){var e=this,r=this._readableState,n=!1;t.on("end",function(){if(A("wrapped end"),r.decoder&&!r.ended){var s=r.decoder.end();s&&s.length&&e.push(s)}e.push(null)}),t.on("data",function(s){if(A("wrapped data"),r.decoder&&(s=r.decoder.write(s)),!(r.objectMode&&s==null)&&!(!r.objectMode&&(!s||!s.length))){var a=e.push(s);a||(n=!0,t.pause())}});for(var i in t)this[i]===void 0&&typeof t[i]=="function"&&(this[i]=function(a){return function(){return t[a].apply(t,arguments)}}(i));for(var o=0;o<Qn.length;o++)t.on(Qn[o],this.emit.bind(this,Qn[o]));return this._read=function(s){A("wrapped _read",s),n&&(n=!1,t.resume())},this};typeof Symbol=="function"&&(T.prototype[Symbol.asyncIterator]=function(){return Xn===void 0&&(Xn=oa()),Xn(this)});Object.defineProperty(T.prototype,"readableHighWaterMark",{enumerable:!1,get:function(){return this._readableState.highWaterMark}});Object.defineProperty(T.prototype,"readableBuffer",{enumerable:!1,get:function(){return this._readableState&&this._readableState.buffer}});Object.defineProperty(T.prototype,"readableFlowing",{enumerable:!1,get:function(){return this._readableState.flowing},set:function(e){this._readableState&&(this._readableState.flowing=e)}});T._fromList=ya;Object.defineProperty(T.prototype,"readableLength",{enumerable:!1,get:function(){return this._readableState.length}});function ya(t,e){if(e.length===0)return null;var r;return e.objectMode?r=e.buffer.shift():!t||t>=e.length?(e.decoder?r=e.buffer.join(""):e.buffer.length===1?r=e.buffer.first():r=e.buffer.concat(e.length),e.buffer.clear()):r=e.buffer.consume(t,e.decoder),r}function ti(t){var e=t._readableState;A("endReadable",e.endEmitted),e.endEmitted||(e.ended=!0,process.nextTick(Od,e,t))}function Od(t,e){if(A("endReadableNT",t.endEmitted,t.length),!t.endEmitted&&t.length===0&&(t.endEmitted=!0,e.readable=!1,e.emit("end"),t.autoDestroy)){var r=e._writableState;(!r||r.autoDestroy&&r.finished)&&e.destroy()}}typeof Symbol=="function"&&(T.from=function(t,e){return Zn===void 0&&(Zn=ca()),Zn(T,t,e)});function _a(t,e){for(var r=0,n=t.length;r<n;r++)if(t[r]===e)return r;return-1}});var oi=p((kg,wa)=>{"use strict";wa.exports=ue;var cr=me().codes,Td=cr.ERR_METHOD_NOT_IMPLEMENTED,Pd=cr.ERR_MULTIPLE_CALLBACK,Rd=cr.ERR_TRANSFORM_ALREADY_TRANSFORMING,Fd=cr.ERR_TRANSFORM_WITH_LENGTH_0,ur=Oe();Ie()(ue,ur);function Ld(t,e){var r=this._transformState;r.transforming=!1;var n=r.writecb;if(n===null)return this.emit("error",new Pd);r.writechunk=null,r.writecb=null,e!=null&&this.push(e),n(t);var i=this._readableState;i.reading=!1,(i.needReadable||i.length<i.highWaterMark)&&this._read(i.highWaterMark)}function ue(t){if(!(this instanceof ue))return new ue(t);ur.call(this,t),this._transformState={afterTransform:Ld.bind(this),needTransform:!1,transforming:!1,writecb:null,writechunk:null,writeencoding:null},this._readableState.needReadable=!0,this._readableState.sync=!1,t&&(typeof t.transform=="function"&&(this._transform=t.transform),typeof t.flush=="function"&&(this._flush=t.flush)),this.on("prefinish",Dd)}function Dd(){var t=this;typeof this._flush=="function"&&!this._readableState.destroyed?this._flush(function(e,r){ba(t,e,r)}):ba(this,null,null)}ue.prototype.push=function(t,e){return this._transformState.needTransform=!1,ur.prototype.push.call(this,t,e)};ue.prototype._transform=function(t,e,r){r(new Td("_transform()"))};ue.prototype._write=function(t,e,r){var n=this._transformState;if(n.writecb=r,n.writechunk=t,n.writeencoding=e,!n.transforming){var i=this._readableState;(n.needTransform||i.needReadable||i.length<i.highWaterMark)&&this._read(i.highWaterMark)}};ue.prototype._read=function(t){var e=this._transformState;e.writechunk!==null&&!e.transforming?(e.transforming=!0,this._transform(e.writechunk,e.writeencoding,e.afterTransform)):e.needTransform=!0};ue.prototype._destroy=function(t,e){ur.prototype._destroy.call(this,t,function(r){e(r)})};function ba(t,e,r){if(e)return t.emit("error",e);if(r!=null&&t.push(r),t._writableState.length)throw new Fd;if(t._transformState.transforming)throw new Rd;return t.push(null)}});var Sa=p((Ng,Ea)=>{"use strict";Ea.exports=_t;var va=oi();Ie()(_t,va);function _t(t){if(!(this instanceof _t))return new _t(t);va.call(this,t)}_t.prototype._transform=function(t,e,r){r(null,t)}});var Ta=p((Mg,Oa)=>{"use strict";var si;function kd(t){var e=!1;return function(){e||(e=!0,t.apply(void 0,arguments))}}var Ia=me().codes,Nd=Ia.ERR_MISSING_ARGS,Md=Ia.ERR_STREAM_DESTROYED;function Ca(t){if(t)throw t}function qd(t){return t.setHeader&&typeof t.abort=="function"}function Bd(t,e,r,n){n=kd(n);var i=!1;t.on("close",function(){i=!0}),si===void 0&&(si=nr()),si(t,{readable:e,writable:r},function(s){if(s)return n(s);i=!0,n()});var o=!1;return function(s){if(!i&&!o){if(o=!0,qd(t))return t.abort();if(typeof t.destroy=="function")return t.destroy();n(s||new Md("pipe"))}}}function Aa(t){t()}function jd(t,e){return t.pipe(e)}function $d(t){return!t.length||typeof t[t.length-1]!="function"?Ca:t.pop()}function Ud(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];var n=$d(e);if(Array.isArray(e[0])&&(e=e[0]),e.length<2)throw new Nd("streams");var i,o=e.map(function(s,a){var l=a<e.length-1,c=a>0;return Bd(s,l,c,function(u){i||(i=u),u&&o.forEach(Aa),!l&&(o.forEach(Aa),n(i))})});return e.reduce(jd)}Oa.exports=Ud});var Pa=p((X,bt)=>{var xt=require("stream");process.env.READABLE_STREAM==="disable"&&xt?(bt.exports=xt.Readable,Object.assign(bt.exports,xt),bt.exports.Stream=xt):(X=bt.exports=Wn(),X.Stream=xt||X,X.Readable=X,X.Writable=$n(),X.Duplex=Oe(),X.Transform=oi(),X.PassThrough=Sa(),X.finished=nr(),X.pipeline=Ta())});var La=p((qg,Fa)=>{"use strict";var{Buffer:Q}=require("buffer"),Ra=Symbol.for("BufferList");function L(t){if(!(this instanceof L))return new L(t);L._init.call(this,t)}L._init=function(e){Object.defineProperty(this,Ra,{value:!0}),this._bufs=[],this.length=0,e&&this.append(e)};L.prototype._new=function(e){return new L(e)};L.prototype._offset=function(e){if(e===0)return[0,0];let r=0;for(let n=0;n<this._bufs.length;n++){let i=r+this._bufs[n].length;if(e<i||n===this._bufs.length-1)return[n,e-r];r=i}};L.prototype._reverseOffset=function(t){let e=t[0],r=t[1];for(let n=0;n<e;n++)r+=this._bufs[n].length;return r};L.prototype.get=function(e){if(e>this.length||e<0)return;let r=this._offset(e);return this._bufs[r[0]][r[1]]};L.prototype.slice=function(e,r){return typeof e=="number"&&e<0&&(e+=this.length),typeof r=="number"&&r<0&&(r+=this.length),this.copy(null,0,e,r)};L.prototype.copy=function(e,r,n,i){if((typeof n!="number"||n<0)&&(n=0),(typeof i!="number"||i>this.length)&&(i=this.length),n>=this.length||i<=0)return e||Q.alloc(0);let o=!!e,s=this._offset(n),a=i-n,l=a,c=o&&r||0,u=s[1];if(n===0&&i===this.length){if(!o)return this._bufs.length===1?this._bufs[0]:Q.concat(this._bufs,this.length);for(let f=0;f<this._bufs.length;f++)this._bufs[f].copy(e,c),c+=this._bufs[f].length;return e}if(l<=this._bufs[s[0]].length-u)return o?this._bufs[s[0]].copy(e,r,u,u+l):this._bufs[s[0]].slice(u,u+l);o||(e=Q.allocUnsafe(a));for(let f=s[0];f<this._bufs.length;f++){let d=this._bufs[f].length-u;if(l>d)this._bufs[f].copy(e,c,u),c+=d;else{this._bufs[f].copy(e,c,u,u+l),c+=d;break}l-=d,u&&(u=0)}return e.length>c?e.slice(0,c):e};L.prototype.shallowSlice=function(e,r){if(e=e||0,r=typeof r!="number"?this.length:r,e<0&&(e+=this.length),r<0&&(r+=this.length),e===r)return this._new();let n=this._offset(e),i=this._offset(r),o=this._bufs.slice(n[0],i[0]+1);return i[1]===0?o.pop():o[o.length-1]=o[o.length-1].slice(0,i[1]),n[1]!==0&&(o[0]=o[0].slice(n[1])),this._new(o)};L.prototype.toString=function(e,r,n){return this.slice(r,n).toString(e)};L.prototype.consume=function(e){if(e=Math.trunc(e),Number.isNaN(e)||e<=0)return this;for(;this._bufs.length;)if(e>=this._bufs[0].length)e-=this._bufs[0].length,this.length-=this._bufs[0].length,this._bufs.shift();else{this._bufs[0]=this._bufs[0].slice(e),this.length-=e;break}return this};L.prototype.duplicate=function(){let e=this._new();for(let r=0;r<this._bufs.length;r++)e.append(this._bufs[r]);return e};L.prototype.append=function(e){if(e==null)return this;if(e.buffer)this._appendBuffer(Q.from(e.buffer,e.byteOffset,e.byteLength));else if(Array.isArray(e))for(let r=0;r<e.length;r++)this.append(e[r]);else if(this._isBufferList(e))for(let r=0;r<e._bufs.length;r++)this.append(e._bufs[r]);else typeof e=="number"&&(e=e.toString()),this._appendBuffer(Q.from(e));return this};L.prototype._appendBuffer=function(e){this._bufs.push(e),this.length+=e.length};L.prototype.indexOf=function(t,e,r){if(r===void 0&&typeof e=="string"&&(r=e,e=void 0),typeof t=="function"||Array.isArray(t))throw new TypeError('The "value" argument must be one of type string, Buffer, BufferList, or Uint8Array.');if(typeof t=="number"?t=Q.from([t]):typeof t=="string"?t=Q.from(t,r):this._isBufferList(t)?t=t.slice():Array.isArray(t.buffer)?t=Q.from(t.buffer,t.byteOffset,t.byteLength):Q.isBuffer(t)||(t=Q.from(t)),e=Number(e||0),isNaN(e)&&(e=0),e<0&&(e=this.length+e),e<0&&(e=0),t.length===0)return e>this.length?this.length:e;let n=this._offset(e),i=n[0],o=n[1];for(;i<this._bufs.length;i++){let s=this._bufs[i];for(;o<s.length;)if(s.length-o>=t.length){let l=s.indexOf(t,o);if(l!==-1)return this._reverseOffset([i,l]);o=s.length-t.length+1}else{let l=this._reverseOffset([i,o]);if(this._match(l,t))return l;o++}o=0}return-1};L.prototype._match=function(t,e){if(this.length-t<e.length)return!1;for(let r=0;r<e.length;r++)if(this.get(t+r)!==e[r])return!1;return!0};(function(){let t={readDoubleBE:8,readDoubleLE:8,readFloatBE:4,readFloatLE:4,readInt32BE:4,readInt32LE:4,readUInt32BE:4,readUInt32LE:4,readInt16BE:2,readInt16LE:2,readUInt16BE:2,readUInt16LE:2,readInt8:1,readUInt8:1,readIntBE:null,readIntLE:null,readUIntBE:null,readUIntLE:null};for(let e in t)(function(r){t[r]===null?L.prototype[r]=function(n,i){return this.slice(n,n+i)[r](0,i)}:L.prototype[r]=function(n=0){return this.slice(n,n+t[r])[r](0)}})(e)})();L.prototype._isBufferList=function(e){return e instanceof L||L.isBufferList(e)};L.isBufferList=function(e){return e!=null&&e[Ra]};Fa.exports=L});var Da=p((Bg,fr)=>{"use strict";var ai=Pa().Duplex,Vd=Ie(),wt=La();function W(t){if(!(this instanceof W))return new W(t);if(typeof t=="function"){this._callback=t;let e=function(n){this._callback&&(this._callback(n),this._callback=null)}.bind(this);this.on("pipe",function(n){n.on("error",e)}),this.on("unpipe",function(n){n.removeListener("error",e)}),t=null}wt._init.call(this,t),ai.call(this)}Vd(W,ai);Object.assign(W.prototype,wt.prototype);W.prototype._new=function(e){return new W(e)};W.prototype._write=function(e,r,n){this._appendBuffer(e),typeof n=="function"&&n()};W.prototype._read=function(e){if(!this.length)return this.push(null);e=Math.min(e,this.length),this.push(this.slice(0,e)),this.consume(e)};W.prototype.end=function(e){ai.prototype.end.call(this,e),this._callback&&(this._callback(null,this.slice()),this._callback=null)};W.prototype._destroy=function(e,r){this._bufs.length=0,this.length=0,r(e)};W.prototype._isBufferList=function(e){return e instanceof W||e instanceof wt||W.isBufferList(e)};W.isBufferList=wt.isBufferList;fr.exports=W;fr.exports.BufferListStream=W;fr.exports.BufferList=wt});var mr=p((jg,fi)=>{"use strict";var Wd=require("readline"),Hd=Y(),ka=ns(),dr=as(),hr=us(),Gd=ps(),zd=Es(),Kd=Cs(),Yd=Tn(),{BufferListStream:Jd}=Da(),li=Symbol("text"),ci=Symbol("prefixText"),Xd=3,ui=class{constructor(){this.requests=0,this.mutedStream=new Jd,this.mutedStream.pipe(process.stdout);let e=this;this.ourEmit=function(r,n,...i){let{stdin:o}=process;if(e.requests>0||o.emit===e.ourEmit){if(r==="keypress")return;r==="data"&&n.includes(Xd)&&process.emit("SIGINT"),Reflect.apply(e.oldEmit,this,[r,n,...i])}else Reflect.apply(process.stdin.emit,this,[r,n,...i])}}start(){this.requests++,this.requests===1&&this.realStart()}stop(){if(this.requests<=0)throw new Error("`stop` called more times than `start`");this.requests--,this.requests===0&&this.realStop()}realStart(){process.platform!=="win32"&&(this.rl=Wd.createInterface({input:process.stdin,output:this.mutedStream}),this.rl.on("SIGINT",()=>{process.listenerCount("SIGINT")===0?process.emit("SIGINT"):(this.rl.close(),process.kill(process.pid,"SIGINT"))}))}realStop(){process.platform!=="win32"&&(this.rl.close(),this.rl=void 0)}},pr,gr=class{constructor(e){pr||(pr=new ui),typeof e=="string"&&(e={text:e}),this.options={text:"",color:"cyan",stream:process.stderr,discardStdin:!0,...e},this.spinner=this.options.spinner,this.color=this.options.color,this.hideCursor=this.options.hideCursor!==!1,this.interval=this.options.interval||this.spinner.interval||100,this.stream=this.options.stream,this.id=void 0,this.isEnabled=typeof this.options.isEnabled=="boolean"?this.options.isEnabled:Kd({stream:this.stream}),this.isSilent=typeof this.options.isSilent=="boolean"?this.options.isSilent:!1,this.text=this.options.text,this.prefixText=this.options.prefixText,this.linesToClear=0,this.indent=this.options.indent,this.discardStdin=this.options.discardStdin,this.isDiscardingStdin=!1}get indent(){return this._indent}set indent(e=0){if(!(e>=0&&Number.isInteger(e)))throw new Error("The `indent` option must be an integer from 0 and up");this._indent=e}_updateInterval(e){e!==void 0&&(this.interval=e)}get spinner(){return this._spinner}set spinner(e){if(this.frameIndex=0,typeof e=="object"){if(e.frames===void 0)throw new Error("The given spinner must have a `frames` property");this._spinner=e}else if(!Yd())this._spinner=dr.line;else if(e===void 0)this._spinner=dr.dots;else if(e!=="default"&&dr[e])this._spinner=dr[e];else throw new Error(`There is no built-in spinner named '${e}'. See https://github.com/sindresorhus/cli-spinners/blob/main/spinners.json for a full list.`);this._updateInterval(this._spinner.interval)}get text(){return this[li]}set text(e){this[li]=e,this.updateLineCount()}get prefixText(){return this[ci]}set prefixText(e){this[ci]=e,this.updateLineCount()}get isSpinning(){return this.id!==void 0}getFullPrefixText(e=this[ci],r=" "){return typeof e=="string"?e+r:typeof e=="function"?e()+r:""}updateLineCount(){let e=this.stream.columns||80,r=this.getFullPrefixText(this.prefixText,"-");this.lineCount=0;for(let n of Gd(r+"--"+this[li]).split(`
27
+ `);return o!==-1&&(e=wu(e,i,n,o)),n+e+i},wn,Vo=(t,...e)=>{let[r]=e;if(!Mt(r)||!Mt(r.raw))return e.join(" ");let n=e.slice(1),i=[r.raw[0]];for(let o=1;o<r.length;o++)i.push(String(n[o-1]).replace(/[{}\\]/g,"\\$&"),String(r.raw[o]));return wn===void 0&&(wn=qo()),wn(t,i.join(""))};Object.defineProperties(qt.prototype,$e);var jt=qt();jt.supportsColor=vn;jt.stderr=qt({level:En?En.level:0});jt.stderr.supportsColor=En;Wo.exports=jt});var Go=p((rg,An)=>{"use strict";var Ho=(t,e)=>{for(let r of Reflect.ownKeys(e))Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(e,r));return t};An.exports=Ho;An.exports.default=Ho});var Ko=p((ng,Ut)=>{"use strict";var Su=Go(),$t=new WeakMap,zo=(t,e={})=>{if(typeof t!="function")throw new TypeError("Expected a function");let r,n=0,i=t.displayName||t.name||"<anonymous>",o=function(...s){if($t.set(o,++n),n===1)r=t.apply(this,s),t=null;else if(e.throw===!0)throw new Error(`Function \`${i}\` can only be called once`);return r};return Su(o,t),$t.set(o,n),o};Ut.exports=zo;Ut.exports.default=zo;Ut.exports.callCount=t=>{if(!$t.has(t))throw new Error(`The given function \`${t.name}\` is not wrapped by the \`onetime\` package`);return $t.get(t)}});var Yo=p((ig,Vt)=>{Vt.exports=["SIGABRT","SIGALRM","SIGHUP","SIGINT","SIGTERM"];process.platform!=="win32"&&Vt.exports.push("SIGVTALRM","SIGXCPU","SIGXFSZ","SIGUSR2","SIGTRAP","SIGSYS","SIGQUIT","SIGIOT");process.platform==="linux"&&Vt.exports.push("SIGIO","SIGPOLL","SIGPWR","SIGSTKFLT","SIGUNUSED")});var es=p((og,We)=>{var N=global.process,Ce=function(t){return t&&typeof t=="object"&&typeof t.removeListener=="function"&&typeof t.emit=="function"&&typeof t.reallyExit=="function"&&typeof t.listeners=="function"&&typeof t.kill=="function"&&typeof t.pid=="number"&&typeof t.on=="function"};Ce(N)?(Jo=require("assert"),Ue=Yo(),Xo=/^win/i.test(N.platform),ut=require("events"),typeof ut!="function"&&(ut=ut.EventEmitter),N.__signal_exit_emitter__?U=N.__signal_exit_emitter__:(U=N.__signal_exit_emitter__=new ut,U.count=0,U.emitted={}),U.infinite||(U.setMaxListeners(1/0),U.infinite=!0),We.exports=function(t,e){if(!Ce(global.process))return function(){};Jo.equal(typeof t,"function","a callback must be provided for exit handler"),Ve===!1&&In();var r="exit";e&&e.alwaysLast&&(r="afterexit");var n=function(){U.removeListener(r,t),U.listeners("exit").length===0&&U.listeners("afterexit").length===0&&Wt()};return U.on(r,t),n},Wt=function(){!Ve||!Ce(global.process)||(Ve=!1,Ue.forEach(function(e){try{N.removeListener(e,Ht[e])}catch{}}),N.emit=Gt,N.reallyExit=On,U.count-=1)},We.exports.unload=Wt,Ae=function(e,r,n){U.emitted[e]||(U.emitted[e]=!0,U.emit(e,r,n))},Ht={},Ue.forEach(function(t){Ht[t]=function(){if(Ce(global.process)){var r=N.listeners(t);r.length===U.count&&(Wt(),Ae("exit",null,t),Ae("afterexit",null,t),Xo&&t==="SIGHUP"&&(t="SIGINT"),N.kill(N.pid,t))}}}),We.exports.signals=function(){return Ue},Ve=!1,In=function(){Ve||!Ce(global.process)||(Ve=!0,U.count+=1,Ue=Ue.filter(function(e){try{return N.on(e,Ht[e]),!0}catch{return!1}}),N.emit=Qo,N.reallyExit=Zo)},We.exports.load=In,On=N.reallyExit,Zo=function(e){Ce(global.process)&&(N.exitCode=e||0,Ae("exit",N.exitCode,null),Ae("afterexit",N.exitCode,null),On.call(N,N.exitCode))},Gt=N.emit,Qo=function(e,r){if(e==="exit"&&Ce(global.process)){r!==void 0&&(N.exitCode=r);var n=Gt.apply(this,arguments);return Ae("exit",N.exitCode,null),Ae("afterexit",N.exitCode,null),n}else return Gt.apply(this,arguments)}):We.exports=function(){return function(){}};var Jo,Ue,Xo,ut,U,Wt,Ae,Ht,Ve,In,On,Zo,Gt,Qo});var rs=p((sg,ts)=>{"use strict";var Cu=Ko(),Au=es();ts.exports=Cu(()=>{Au(()=>{process.stderr.write("\x1B[?25h")},{alwaysLast:!0})})});var ns=p(He=>{"use strict";var Iu=rs(),zt=!1;He.show=(t=process.stderr)=>{t.isTTY&&(zt=!1,t.write("\x1B[?25h"))};He.hide=(t=process.stderr)=>{t.isTTY&&(Iu(),zt=!0,t.write("\x1B[?25l"))};He.toggle=(t,e)=>{t!==void 0&&(zt=t),zt?He.show(e):He.hide(e)}});var is=p((lg,Ou)=>{Ou.exports={dots:{interval:80,frames:["\u280B","\u2819","\u2839","\u2838","\u283C","\u2834","\u2826","\u2827","\u2807","\u280F"]},dots2:{interval:80,frames:["\u28FE","\u28FD","\u28FB","\u28BF","\u287F","\u28DF","\u28EF","\u28F7"]},dots3:{interval:80,frames:["\u280B","\u2819","\u281A","\u281E","\u2816","\u2826","\u2834","\u2832","\u2833","\u2813"]},dots4:{interval:80,frames:["\u2804","\u2806","\u2807","\u280B","\u2819","\u2838","\u2830","\u2820","\u2830","\u2838","\u2819","\u280B","\u2807","\u2806"]},dots5:{interval:80,frames:["\u280B","\u2819","\u281A","\u2812","\u2802","\u2802","\u2812","\u2832","\u2834","\u2826","\u2816","\u2812","\u2810","\u2810","\u2812","\u2813","\u280B"]},dots6:{interval:80,frames:["\u2801","\u2809","\u2819","\u281A","\u2812","\u2802","\u2802","\u2812","\u2832","\u2834","\u2824","\u2804","\u2804","\u2824","\u2834","\u2832","\u2812","\u2802","\u2802","\u2812","\u281A","\u2819","\u2809","\u2801"]},dots7:{interval:80,frames:["\u2808","\u2809","\u280B","\u2813","\u2812","\u2810","\u2810","\u2812","\u2816","\u2826","\u2824","\u2820","\u2820","\u2824","\u2826","\u2816","\u2812","\u2810","\u2810","\u2812","\u2813","\u280B","\u2809","\u2808"]},dots8:{interval:80,frames:["\u2801","\u2801","\u2809","\u2819","\u281A","\u2812","\u2802","\u2802","\u2812","\u2832","\u2834","\u2824","\u2804","\u2804","\u2824","\u2820","\u2820","\u2824","\u2826","\u2816","\u2812","\u2810","\u2810","\u2812","\u2813","\u280B","\u2809","\u2808","\u2808"]},dots9:{interval:80,frames:["\u28B9","\u28BA","\u28BC","\u28F8","\u28C7","\u2867","\u2857","\u284F"]},dots10:{interval:80,frames:["\u2884","\u2882","\u2881","\u2841","\u2848","\u2850","\u2860"]},dots11:{interval:100,frames:["\u2801","\u2802","\u2804","\u2840","\u2880","\u2820","\u2810","\u2808"]},dots12:{interval:80,frames:["\u2880\u2800","\u2840\u2800","\u2804\u2800","\u2882\u2800","\u2842\u2800","\u2805\u2800","\u2883\u2800","\u2843\u2800","\u280D\u2800","\u288B\u2800","\u284B\u2800","\u280D\u2801","\u288B\u2801","\u284B\u2801","\u280D\u2809","\u280B\u2809","\u280B\u2809","\u2809\u2819","\u2809\u2819","\u2809\u2829","\u2808\u2899","\u2808\u2859","\u2888\u2829","\u2840\u2899","\u2804\u2859","\u2882\u2829","\u2842\u2898","\u2805\u2858","\u2883\u2828","\u2843\u2890","\u280D\u2850","\u288B\u2820","\u284B\u2880","\u280D\u2841","\u288B\u2801","\u284B\u2801","\u280D\u2809","\u280B\u2809","\u280B\u2809","\u2809\u2819","\u2809\u2819","\u2809\u2829","\u2808\u2899","\u2808\u2859","\u2808\u2829","\u2800\u2899","\u2800\u2859","\u2800\u2829","\u2800\u2898","\u2800\u2858","\u2800\u2828","\u2800\u2890","\u2800\u2850","\u2800\u2820","\u2800\u2880","\u2800\u2840"]},dots13:{interval:80,frames:["\u28FC","\u28F9","\u28BB","\u283F","\u285F","\u28CF","\u28E7","\u28F6"]},dots8Bit:{interval:80,frames:["\u2800","\u2801","\u2802","\u2803","\u2804","\u2805","\u2806","\u2807","\u2840","\u2841","\u2842","\u2843","\u2844","\u2845","\u2846","\u2847","\u2808","\u2809","\u280A","\u280B","\u280C","\u280D","\u280E","\u280F","\u2848","\u2849","\u284A","\u284B","\u284C","\u284D","\u284E","\u284F","\u2810","\u2811","\u2812","\u2813","\u2814","\u2815","\u2816","\u2817","\u2850","\u2851","\u2852","\u2853","\u2854","\u2855","\u2856","\u2857","\u2818","\u2819","\u281A","\u281B","\u281C","\u281D","\u281E","\u281F","\u2858","\u2859","\u285A","\u285B","\u285C","\u285D","\u285E","\u285F","\u2820","\u2821","\u2822","\u2823","\u2824","\u2825","\u2826","\u2827","\u2860","\u2861","\u2862","\u2863","\u2864","\u2865","\u2866","\u2867","\u2828","\u2829","\u282A","\u282B","\u282C","\u282D","\u282E","\u282F","\u2868","\u2869","\u286A","\u286B","\u286C","\u286D","\u286E","\u286F","\u2830","\u2831","\u2832","\u2833","\u2834","\u2835","\u2836","\u2837","\u2870","\u2871","\u2872","\u2873","\u2874","\u2875","\u2876","\u2877","\u2838","\u2839","\u283A","\u283B","\u283C","\u283D","\u283E","\u283F","\u2878","\u2879","\u287A","\u287B","\u287C","\u287D","\u287E","\u287F","\u2880","\u2881","\u2882","\u2883","\u2884","\u2885","\u2886","\u2887","\u28C0","\u28C1","\u28C2","\u28C3","\u28C4","\u28C5","\u28C6","\u28C7","\u2888","\u2889","\u288A","\u288B","\u288C","\u288D","\u288E","\u288F","\u28C8","\u28C9","\u28CA","\u28CB","\u28CC","\u28CD","\u28CE","\u28CF","\u2890","\u2891","\u2892","\u2893","\u2894","\u2895","\u2896","\u2897","\u28D0","\u28D1","\u28D2","\u28D3","\u28D4","\u28D5","\u28D6","\u28D7","\u2898","\u2899","\u289A","\u289B","\u289C","\u289D","\u289E","\u289F","\u28D8","\u28D9","\u28DA","\u28DB","\u28DC","\u28DD","\u28DE","\u28DF","\u28A0","\u28A1","\u28A2","\u28A3","\u28A4","\u28A5","\u28A6","\u28A7","\u28E0","\u28E1","\u28E2","\u28E3","\u28E4","\u28E5","\u28E6","\u28E7","\u28A8","\u28A9","\u28AA","\u28AB","\u28AC","\u28AD","\u28AE","\u28AF","\u28E8","\u28E9","\u28EA","\u28EB","\u28EC","\u28ED","\u28EE","\u28EF","\u28B0","\u28B1","\u28B2","\u28B3","\u28B4","\u28B5","\u28B6","\u28B7","\u28F0","\u28F1","\u28F2","\u28F3","\u28F4","\u28F5","\u28F6","\u28F7","\u28B8","\u28B9","\u28BA","\u28BB","\u28BC","\u28BD","\u28BE","\u28BF","\u28F8","\u28F9","\u28FA","\u28FB","\u28FC","\u28FD","\u28FE","\u28FF"]},sand:{interval:80,frames:["\u2801","\u2802","\u2804","\u2840","\u2848","\u2850","\u2860","\u28C0","\u28C1","\u28C2","\u28C4","\u28CC","\u28D4","\u28E4","\u28E5","\u28E6","\u28EE","\u28F6","\u28F7","\u28FF","\u287F","\u283F","\u289F","\u281F","\u285B","\u281B","\u282B","\u288B","\u280B","\u280D","\u2849","\u2809","\u2811","\u2821","\u2881"]},line:{interval:130,frames:["-","\\","|","/"]},line2:{interval:100,frames:["\u2802","-","\u2013","\u2014","\u2013","-"]},pipe:{interval:100,frames:["\u2524","\u2518","\u2534","\u2514","\u251C","\u250C","\u252C","\u2510"]},simpleDots:{interval:400,frames:[". ",".. ","..."," "]},simpleDotsScrolling:{interval:200,frames:[". ",".. ","..."," .."," ."," "]},star:{interval:70,frames:["\u2736","\u2738","\u2739","\u273A","\u2739","\u2737"]},star2:{interval:80,frames:["+","x","*"]},flip:{interval:70,frames:["_","_","_","-","`","`","'","\xB4","-","_","_","_"]},hamburger:{interval:100,frames:["\u2631","\u2632","\u2634"]},growVertical:{interval:120,frames:["\u2581","\u2583","\u2584","\u2585","\u2586","\u2587","\u2586","\u2585","\u2584","\u2583"]},growHorizontal:{interval:120,frames:["\u258F","\u258E","\u258D","\u258C","\u258B","\u258A","\u2589","\u258A","\u258B","\u258C","\u258D","\u258E"]},balloon:{interval:140,frames:[" ",".","o","O","@","*"," "]},balloon2:{interval:120,frames:[".","o","O","\xB0","O","o","."]},noise:{interval:100,frames:["\u2593","\u2592","\u2591"]},bounce:{interval:120,frames:["\u2801","\u2802","\u2804","\u2802"]},boxBounce:{interval:120,frames:["\u2596","\u2598","\u259D","\u2597"]},boxBounce2:{interval:100,frames:["\u258C","\u2580","\u2590","\u2584"]},triangle:{interval:50,frames:["\u25E2","\u25E3","\u25E4","\u25E5"]},binary:{interval:80,frames:["010010","001100","100101","111010","111101","010111","101011","111000","110011","110101"]},arc:{interval:100,frames:["\u25DC","\u25E0","\u25DD","\u25DE","\u25E1","\u25DF"]},circle:{interval:120,frames:["\u25E1","\u2299","\u25E0"]},squareCorners:{interval:180,frames:["\u25F0","\u25F3","\u25F2","\u25F1"]},circleQuarters:{interval:120,frames:["\u25F4","\u25F7","\u25F6","\u25F5"]},circleHalves:{interval:50,frames:["\u25D0","\u25D3","\u25D1","\u25D2"]},squish:{interval:100,frames:["\u256B","\u256A"]},toggle:{interval:250,frames:["\u22B6","\u22B7"]},toggle2:{interval:80,frames:["\u25AB","\u25AA"]},toggle3:{interval:120,frames:["\u25A1","\u25A0"]},toggle4:{interval:100,frames:["\u25A0","\u25A1","\u25AA","\u25AB"]},toggle5:{interval:100,frames:["\u25AE","\u25AF"]},toggle6:{interval:300,frames:["\u101D","\u1040"]},toggle7:{interval:80,frames:["\u29BE","\u29BF"]},toggle8:{interval:100,frames:["\u25CD","\u25CC"]},toggle9:{interval:100,frames:["\u25C9","\u25CE"]},toggle10:{interval:100,frames:["\u3282","\u3280","\u3281"]},toggle11:{interval:50,frames:["\u29C7","\u29C6"]},toggle12:{interval:120,frames:["\u2617","\u2616"]},toggle13:{interval:80,frames:["=","*","-"]},arrow:{interval:100,frames:["\u2190","\u2196","\u2191","\u2197","\u2192","\u2198","\u2193","\u2199"]},arrow2:{interval:80,frames:["\u2B06\uFE0F ","\u2197\uFE0F ","\u27A1\uFE0F ","\u2198\uFE0F ","\u2B07\uFE0F ","\u2199\uFE0F ","\u2B05\uFE0F ","\u2196\uFE0F "]},arrow3:{interval:120,frames:["\u25B9\u25B9\u25B9\u25B9\u25B9","\u25B8\u25B9\u25B9\u25B9\u25B9","\u25B9\u25B8\u25B9\u25B9\u25B9","\u25B9\u25B9\u25B8\u25B9\u25B9","\u25B9\u25B9\u25B9\u25B8\u25B9","\u25B9\u25B9\u25B9\u25B9\u25B8"]},bouncingBar:{interval:80,frames:["[ ]","[= ]","[== ]","[=== ]","[====]","[ ===]","[ ==]","[ =]","[ ]","[ =]","[ ==]","[ ===]","[====]","[=== ]","[== ]","[= ]"]},bouncingBall:{interval:80,frames:["( \u25CF )","( \u25CF )","( \u25CF )","( \u25CF )","( \u25CF)","( \u25CF )","( \u25CF )","( \u25CF )","( \u25CF )","(\u25CF )"]},smiley:{interval:200,frames:["\u{1F604} ","\u{1F61D} "]},monkey:{interval:300,frames:["\u{1F648} ","\u{1F648} ","\u{1F649} ","\u{1F64A} "]},hearts:{interval:100,frames:["\u{1F49B} ","\u{1F499} ","\u{1F49C} ","\u{1F49A} ","\u2764\uFE0F "]},clock:{interval:100,frames:["\u{1F55B} ","\u{1F550} ","\u{1F551} ","\u{1F552} ","\u{1F553} ","\u{1F554} ","\u{1F555} ","\u{1F556} ","\u{1F557} ","\u{1F558} ","\u{1F559} ","\u{1F55A} "]},earth:{interval:180,frames:["\u{1F30D} ","\u{1F30E} ","\u{1F30F} "]},material:{interval:17,frames:["\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581","\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581","\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581","\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581","\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581","\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581","\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581","\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581","\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581","\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581","\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581","\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581","\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588","\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588","\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588","\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588","\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588","\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588","\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588","\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588","\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581","\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581","\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581","\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581","\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581","\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581","\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581","\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581","\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581"]},moon:{interval:80,frames:["\u{1F311} ","\u{1F312} ","\u{1F313} ","\u{1F314} ","\u{1F315} ","\u{1F316} ","\u{1F317} ","\u{1F318} "]},runner:{interval:140,frames:["\u{1F6B6} ","\u{1F3C3} "]},pong:{interval:80,frames:["\u2590\u2802 \u258C","\u2590\u2808 \u258C","\u2590 \u2802 \u258C","\u2590 \u2820 \u258C","\u2590 \u2840 \u258C","\u2590 \u2820 \u258C","\u2590 \u2802 \u258C","\u2590 \u2808 \u258C","\u2590 \u2802 \u258C","\u2590 \u2820 \u258C","\u2590 \u2840 \u258C","\u2590 \u2820 \u258C","\u2590 \u2802 \u258C","\u2590 \u2808 \u258C","\u2590 \u2802\u258C","\u2590 \u2820\u258C","\u2590 \u2840\u258C","\u2590 \u2820 \u258C","\u2590 \u2802 \u258C","\u2590 \u2808 \u258C","\u2590 \u2802 \u258C","\u2590 \u2820 \u258C","\u2590 \u2840 \u258C","\u2590 \u2820 \u258C","\u2590 \u2802 \u258C","\u2590 \u2808 \u258C","\u2590 \u2802 \u258C","\u2590 \u2820 \u258C","\u2590 \u2840 \u258C","\u2590\u2820 \u258C"]},shark:{interval:120,frames:["\u2590|\\____________\u258C","\u2590_|\\___________\u258C","\u2590__|\\__________\u258C","\u2590___|\\_________\u258C","\u2590____|\\________\u258C","\u2590_____|\\_______\u258C","\u2590______|\\______\u258C","\u2590_______|\\_____\u258C","\u2590________|\\____\u258C","\u2590_________|\\___\u258C","\u2590__________|\\__\u258C","\u2590___________|\\_\u258C","\u2590____________|\\\u258C","\u2590____________/|\u258C","\u2590___________/|_\u258C","\u2590__________/|__\u258C","\u2590_________/|___\u258C","\u2590________/|____\u258C","\u2590_______/|_____\u258C","\u2590______/|______\u258C","\u2590_____/|_______\u258C","\u2590____/|________\u258C","\u2590___/|_________\u258C","\u2590__/|__________\u258C","\u2590_/|___________\u258C","\u2590/|____________\u258C"]},dqpb:{interval:100,frames:["d","q","p","b"]},weather:{interval:100,frames:["\u2600\uFE0F ","\u2600\uFE0F ","\u2600\uFE0F ","\u{1F324} ","\u26C5\uFE0F ","\u{1F325} ","\u2601\uFE0F ","\u{1F327} ","\u{1F328} ","\u{1F327} ","\u{1F328} ","\u{1F327} ","\u{1F328} ","\u26C8 ","\u{1F328} ","\u{1F327} ","\u{1F328} ","\u2601\uFE0F ","\u{1F325} ","\u26C5\uFE0F ","\u{1F324} ","\u2600\uFE0F ","\u2600\uFE0F "]},christmas:{interval:400,frames:["\u{1F332}","\u{1F384}"]},grenade:{interval:80,frames:["\u060C ","\u2032 "," \xB4 "," \u203E "," \u2E0C"," \u2E0A"," |"," \u204E"," \u2055"," \u0DF4 "," \u2053"," "," "," "]},point:{interval:125,frames:["\u2219\u2219\u2219","\u25CF\u2219\u2219","\u2219\u25CF\u2219","\u2219\u2219\u25CF","\u2219\u2219\u2219"]},layer:{interval:150,frames:["-","=","\u2261"]},betaWave:{interval:80,frames:["\u03C1\u03B2\u03B2\u03B2\u03B2\u03B2\u03B2","\u03B2\u03C1\u03B2\u03B2\u03B2\u03B2\u03B2","\u03B2\u03B2\u03C1\u03B2\u03B2\u03B2\u03B2","\u03B2\u03B2\u03B2\u03C1\u03B2\u03B2\u03B2","\u03B2\u03B2\u03B2\u03B2\u03C1\u03B2\u03B2","\u03B2\u03B2\u03B2\u03B2\u03B2\u03C1\u03B2","\u03B2\u03B2\u03B2\u03B2\u03B2\u03B2\u03C1"]},fingerDance:{interval:160,frames:["\u{1F918} ","\u{1F91F} ","\u{1F596} ","\u270B ","\u{1F91A} ","\u{1F446} "]},fistBump:{interval:80,frames:["\u{1F91C}\u3000\u3000\u3000\u3000\u{1F91B} ","\u{1F91C}\u3000\u3000\u3000\u3000\u{1F91B} ","\u{1F91C}\u3000\u3000\u3000\u3000\u{1F91B} ","\u3000\u{1F91C}\u3000\u3000\u{1F91B}\u3000 ","\u3000\u3000\u{1F91C}\u{1F91B}\u3000\u3000 ","\u3000\u{1F91C}\u2728\u{1F91B}\u3000\u3000 ","\u{1F91C}\u3000\u2728\u3000\u{1F91B}\u3000 "]},soccerHeader:{interval:80,frames:[" \u{1F9D1}\u26BD\uFE0F \u{1F9D1} ","\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ","\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ","\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ","\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ","\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ","\u{1F9D1} \u26BD\uFE0F\u{1F9D1} ","\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ","\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ","\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ","\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ","\u{1F9D1} \u26BD\uFE0F \u{1F9D1} "]},mindblown:{interval:160,frames:["\u{1F610} ","\u{1F610} ","\u{1F62E} ","\u{1F62E} ","\u{1F626} ","\u{1F626} ","\u{1F627} ","\u{1F627} ","\u{1F92F} ","\u{1F4A5} ","\u2728 ","\u3000 ","\u3000 ","\u3000 "]},speaker:{interval:160,frames:["\u{1F508} ","\u{1F509} ","\u{1F50A} ","\u{1F509} "]},orangePulse:{interval:100,frames:["\u{1F538} ","\u{1F536} ","\u{1F7E0} ","\u{1F7E0} ","\u{1F536} "]},bluePulse:{interval:100,frames:["\u{1F539} ","\u{1F537} ","\u{1F535} ","\u{1F535} ","\u{1F537} "]},orangeBluePulse:{interval:100,frames:["\u{1F538} ","\u{1F536} ","\u{1F7E0} ","\u{1F7E0} ","\u{1F536} ","\u{1F539} ","\u{1F537} ","\u{1F535} ","\u{1F535} ","\u{1F537} "]},timeTravel:{interval:100,frames:["\u{1F55B} ","\u{1F55A} ","\u{1F559} ","\u{1F558} ","\u{1F557} ","\u{1F556} ","\u{1F555} ","\u{1F554} ","\u{1F553} ","\u{1F552} ","\u{1F551} ","\u{1F550} "]},aesthetic:{interval:80,frames:["\u25B0\u25B1\u25B1\u25B1\u25B1\u25B1\u25B1","\u25B0\u25B0\u25B1\u25B1\u25B1\u25B1\u25B1","\u25B0\u25B0\u25B0\u25B1\u25B1\u25B1\u25B1","\u25B0\u25B0\u25B0\u25B0\u25B1\u25B1\u25B1","\u25B0\u25B0\u25B0\u25B0\u25B0\u25B1\u25B1","\u25B0\u25B0\u25B0\u25B0\u25B0\u25B0\u25B1","\u25B0\u25B0\u25B0\u25B0\u25B0\u25B0\u25B0","\u25B0\u25B1\u25B1\u25B1\u25B1\u25B1\u25B1"]},dwarfFortress:{interval:80,frames:[" \u2588\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ","\u263A\u2588\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ","\u263A\u2588\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ","\u263A\u2593\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ","\u263A\u2593\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ","\u263A\u2592\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ","\u263A\u2592\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ","\u263A\u2591\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ","\u263A\u2591\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ","\u263A \u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2593\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2593\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2592\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2592\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2591\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2591\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A \u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2593\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2593\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2592\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2592\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2591\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2591\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A \u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2588\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2593\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2593\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2592\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2592\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2591\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2591\u2588\u2588\xA3\xA3\xA3 "," \u263A \u2588\u2588\xA3\xA3\xA3 "," \u263A\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2588\u2588\xA3\xA3\xA3 "," \u263A\u2593\u2588\xA3\xA3\xA3 "," \u263A\u2593\u2588\xA3\xA3\xA3 "," \u263A\u2592\u2588\xA3\xA3\xA3 "," \u263A\u2592\u2588\xA3\xA3\xA3 "," \u263A\u2591\u2588\xA3\xA3\xA3 "," \u263A\u2591\u2588\xA3\xA3\xA3 "," \u263A \u2588\xA3\xA3\xA3 "," \u263A\u2588\xA3\xA3\xA3 "," \u263A\u2588\xA3\xA3\xA3 "," \u263A\u2593\xA3\xA3\xA3 "," \u263A\u2593\xA3\xA3\xA3 "," \u263A\u2592\xA3\xA3\xA3 "," \u263A\u2592\xA3\xA3\xA3 "," \u263A\u2591\xA3\xA3\xA3 "," \u263A\u2591\xA3\xA3\xA3 "," \u263A \xA3\xA3\xA3 "," \u263A\xA3\xA3\xA3 "," \u263A\xA3\xA3\xA3 "," \u263A\u2593\xA3\xA3 "," \u263A\u2593\xA3\xA3 "," \u263A\u2592\xA3\xA3 "," \u263A\u2592\xA3\xA3 "," \u263A\u2591\xA3\xA3 "," \u263A\u2591\xA3\xA3 "," \u263A \xA3\xA3 "," \u263A\xA3\xA3 "," \u263A\xA3\xA3 "," \u263A\u2593\xA3 "," \u263A\u2593\xA3 "," \u263A\u2592\xA3 "," \u263A\u2592\xA3 "," \u263A\u2591\xA3 "," \u263A\u2591\xA3 "," \u263A \xA3 "," \u263A\xA3 "," \u263A\xA3 "," \u263A\u2593 "," \u263A\u2593 "," \u263A\u2592 "," \u263A\u2592 "," \u263A\u2591 "," \u263A\u2591 "," \u263A "," \u263A &"," \u263A \u263C&"," \u263A \u263C &"," \u263A\u263C &"," \u263A\u263C & "," \u203C & "," \u263A & "," \u203C & "," \u263A & "," \u203C & "," \u263A & ","\u203C & "," & "," & "," & \u2591 "," & \u2592 "," & \u2593 "," & \xA3 "," & \u2591\xA3 "," & \u2592\xA3 "," & \u2593\xA3 "," & \xA3\xA3 "," & \u2591\xA3\xA3 "," & \u2592\xA3\xA3 ","& \u2593\xA3\xA3 ","& \xA3\xA3\xA3 "," \u2591\xA3\xA3\xA3 "," \u2592\xA3\xA3\xA3 "," \u2593\xA3\xA3\xA3 "," \u2588\xA3\xA3\xA3 "," \u2591\u2588\xA3\xA3\xA3 "," \u2592\u2588\xA3\xA3\xA3 "," \u2593\u2588\xA3\xA3\xA3 "," \u2588\u2588\xA3\xA3\xA3 "," \u2591\u2588\u2588\xA3\xA3\xA3 "," \u2592\u2588\u2588\xA3\xA3\xA3 "," \u2593\u2588\u2588\xA3\xA3\xA3 "," \u2588\u2588\u2588\xA3\xA3\xA3 "," \u2591\u2588\u2588\u2588\xA3\xA3\xA3 "," \u2592\u2588\u2588\u2588\xA3\xA3\xA3 "," \u2593\u2588\u2588\u2588\xA3\xA3\xA3 "," \u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u2591\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u2592\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u2593\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u2591\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u2592\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u2593\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u2588\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "," \u2588\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "]}}});var as=p((cg,ss)=>{"use strict";var Kt=Object.assign({},is()),os=Object.keys(Kt);Object.defineProperty(Kt,"random",{get(){let t=Math.floor(Math.random()*os.length),e=os[t];return Kt[e]}});ss.exports=Kt});var Tn=p((ug,ls)=>{"use strict";ls.exports=()=>process.platform!=="win32"?!0:!!process.env.CI||!!process.env.WT_SESSION||process.env.TERM_PROGRAM==="vscode"||process.env.TERM==="xterm-256color"||process.env.TERM==="alacritty"});var us=p((fg,cs)=>{"use strict";var ge=Y(),Tu=Tn(),Pu={info:ge.blue("\u2139"),success:ge.green("\u2714"),warning:ge.yellow("\u26A0"),error:ge.red("\u2716")},Ru={info:ge.blue("i"),success:ge.green("\u221A"),warning:ge.yellow("\u203C"),error:ge.red("\xD7")};cs.exports=Tu()?Pu:Ru});var ds=p((dg,fs)=>{"use strict";fs.exports=({onlyFirst:t=!1}={})=>{let e=["[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)","(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-ntqry=><~]))"].join("|");return new RegExp(e,t?void 0:"g")}});var ps=p((hg,hs)=>{"use strict";var Fu=ds();hs.exports=t=>typeof t=="string"?t.replace(Fu(),""):t});var gs=p((pg,Yt)=>{var Lu=function(){"use strict";function t(s,a,l,c){var u;typeof a=="object"&&(l=a.depth,c=a.prototype,u=a.filter,a=a.circular);var f=[],d=[],m=typeof Buffer<"u";typeof a>"u"&&(a=!0),typeof l>"u"&&(l=1/0);function g(h,_){if(h===null)return null;if(_==0)return h;var x,S;if(typeof h!="object")return h;if(t.__isArray(h))x=[];else if(t.__isRegExp(h))x=new RegExp(h.source,o(h)),h.lastIndex&&(x.lastIndex=h.lastIndex);else if(t.__isDate(h))x=new Date(h.getTime());else{if(m&&Buffer.isBuffer(h))return Buffer.allocUnsafe?x=Buffer.allocUnsafe(h.length):x=new Buffer(h.length),h.copy(x),x;typeof c>"u"?(S=Object.getPrototypeOf(h),x=Object.create(S)):(x=Object.create(c),S=c)}if(a){var O=f.indexOf(h);if(O!=-1)return d[O];f.push(h),d.push(x)}for(var P in h){var D;S&&(D=Object.getOwnPropertyDescriptor(S,P)),!(D&&D.set==null)&&(x[P]=g(h[P],_-1))}return x}return g(s,l)}t.clonePrototype=function(a){if(a===null)return null;var l=function(){};return l.prototype=a,new l};function e(s){return Object.prototype.toString.call(s)}t.__objToStr=e;function r(s){return typeof s=="object"&&e(s)==="[object Date]"}t.__isDate=r;function n(s){return typeof s=="object"&&e(s)==="[object Array]"}t.__isArray=n;function i(s){return typeof s=="object"&&e(s)==="[object RegExp]"}t.__isRegExp=i;function o(s){var a="";return s.global&&(a+="g"),s.ignoreCase&&(a+="i"),s.multiline&&(a+="m"),a}return t.__getRegExpFlags=o,t}();typeof Yt=="object"&&Yt.exports&&(Yt.exports=Lu)});var ys=p((gg,ms)=>{var Du=gs();ms.exports=function(t,e){return t=t||{},Object.keys(e).forEach(function(r){typeof t[r]>"u"&&(t[r]=Du(e[r]))}),t}});var xs=p((mg,_s)=>{_s.exports=[[768,879],[1155,1158],[1160,1161],[1425,1469],[1471,1471],[1473,1474],[1476,1477],[1479,1479],[1536,1539],[1552,1557],[1611,1630],[1648,1648],[1750,1764],[1767,1768],[1770,1773],[1807,1807],[1809,1809],[1840,1866],[1958,1968],[2027,2035],[2305,2306],[2364,2364],[2369,2376],[2381,2381],[2385,2388],[2402,2403],[2433,2433],[2492,2492],[2497,2500],[2509,2509],[2530,2531],[2561,2562],[2620,2620],[2625,2626],[2631,2632],[2635,2637],[2672,2673],[2689,2690],[2748,2748],[2753,2757],[2759,2760],[2765,2765],[2786,2787],[2817,2817],[2876,2876],[2879,2879],[2881,2883],[2893,2893],[2902,2902],[2946,2946],[3008,3008],[3021,3021],[3134,3136],[3142,3144],[3146,3149],[3157,3158],[3260,3260],[3263,3263],[3270,3270],[3276,3277],[3298,3299],[3393,3395],[3405,3405],[3530,3530],[3538,3540],[3542,3542],[3633,3633],[3636,3642],[3655,3662],[3761,3761],[3764,3769],[3771,3772],[3784,3789],[3864,3865],[3893,3893],[3895,3895],[3897,3897],[3953,3966],[3968,3972],[3974,3975],[3984,3991],[3993,4028],[4038,4038],[4141,4144],[4146,4146],[4150,4151],[4153,4153],[4184,4185],[4448,4607],[4959,4959],[5906,5908],[5938,5940],[5970,5971],[6002,6003],[6068,6069],[6071,6077],[6086,6086],[6089,6099],[6109,6109],[6155,6157],[6313,6313],[6432,6434],[6439,6440],[6450,6450],[6457,6459],[6679,6680],[6912,6915],[6964,6964],[6966,6970],[6972,6972],[6978,6978],[7019,7027],[7616,7626],[7678,7679],[8203,8207],[8234,8238],[8288,8291],[8298,8303],[8400,8431],[12330,12335],[12441,12442],[43014,43014],[43019,43019],[43045,43046],[64286,64286],[65024,65039],[65056,65059],[65279,65279],[65529,65531],[68097,68099],[68101,68102],[68108,68111],[68152,68154],[68159,68159],[119143,119145],[119155,119170],[119173,119179],[119210,119213],[119362,119364],[917505,917505],[917536,917631],[917760,917999]]});var Es=p((yg,Pn)=>{"use strict";var ku=ys(),ft=xs(),ws={nul:0,control:0};Pn.exports=function(e){return vs(e,ws)};Pn.exports.config=function(t){return t=ku(t||{},ws),function(r){return vs(r,t)}};function vs(t,e){if(typeof t!="string")return bs(t,e);for(var r=0,n=0;n<t.length;n++){var i=bs(t.charCodeAt(n),e);if(i<0)return-1;r+=i}return r}function bs(t,e){return t===0?e.nul:t<32||t>=127&&t<160?e.control:Nu(t)?0:1+(t>=4352&&(t<=4447||t==9001||t==9002||t>=11904&&t<=42191&&t!=12351||t>=44032&&t<=55203||t>=63744&&t<=64255||t>=65040&&t<=65049||t>=65072&&t<=65135||t>=65280&&t<=65376||t>=65504&&t<=65510||t>=131072&&t<=196605||t>=196608&&t<=262141))}function Nu(t){var e=0,r=ft.length-1,n;if(t<ft[0][0]||t>ft[r][1])return!1;for(;r>=e;)if(n=Math.floor((e+r)/2),t>ft[n][1])e=n+1;else if(t<ft[n][0])r=n-1;else return!0;return!1}});var Cs=p((_g,Ss)=>{"use strict";Ss.exports=({stream:t=process.stdout}={})=>!!(t&&t.isTTY&&process.env.TERM!=="dumb"&&!("CI"in process.env))});var Rn=p((xg,As)=>{As.exports=require("stream")});var Fs=p((bg,Rs)=>{"use strict";function Is(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),r.push.apply(r,n)}return r}function Os(t){for(var e=1;e<arguments.length;e++){var r=arguments[e]!=null?arguments[e]:{};e%2?Is(Object(r),!0).forEach(function(n){Mu(t,n,r[n])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Is(Object(r)).forEach(function(n){Object.defineProperty(t,n,Object.getOwnPropertyDescriptor(r,n))})}return t}function Mu(t,e,r){return e=Ps(e),e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function qu(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Ts(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Ps(n.key),n)}}function Bu(t,e,r){return e&&Ts(t.prototype,e),r&&Ts(t,r),Object.defineProperty(t,"prototype",{writable:!1}),t}function Ps(t){var e=ju(t,"string");return typeof e=="symbol"?e:String(e)}function ju(t,e){if(typeof t!="object"||t===null)return t;var r=t[Symbol.toPrimitive];if(r!==void 0){var n=r.call(t,e||"default");if(typeof n!="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}var $u=require("buffer"),Jt=$u.Buffer,Uu=require("util"),Fn=Uu.inspect,Vu=Fn&&Fn.custom||"inspect";function Wu(t,e,r){Jt.prototype.copy.call(t,e,r)}Rs.exports=function(){function t(){qu(this,t),this.head=null,this.tail=null,this.length=0}return Bu(t,[{key:"push",value:function(r){var n={data:r,next:null};this.length>0?this.tail.next=n:this.head=n,this.tail=n,++this.length}},{key:"unshift",value:function(r){var n={data:r,next:this.head};this.length===0&&(this.tail=n),this.head=n,++this.length}},{key:"shift",value:function(){if(this.length!==0){var r=this.head.data;return this.length===1?this.head=this.tail=null:this.head=this.head.next,--this.length,r}}},{key:"clear",value:function(){this.head=this.tail=null,this.length=0}},{key:"join",value:function(r){if(this.length===0)return"";for(var n=this.head,i=""+n.data;n=n.next;)i+=r+n.data;return i}},{key:"concat",value:function(r){if(this.length===0)return Jt.alloc(0);for(var n=Jt.allocUnsafe(r>>>0),i=this.head,o=0;i;)Wu(i.data,n,o),o+=i.data.length,i=i.next;return n}},{key:"consume",value:function(r,n){var i;return r<this.head.data.length?(i=this.head.data.slice(0,r),this.head.data=this.head.data.slice(r)):r===this.head.data.length?i=this.shift():i=n?this._getString(r):this._getBuffer(r),i}},{key:"first",value:function(){return this.head.data}},{key:"_getString",value:function(r){var n=this.head,i=1,o=n.data;for(r-=o.length;n=n.next;){var s=n.data,a=r>s.length?s.length:r;if(a===s.length?o+=s:o+=s.slice(0,r),r-=a,r===0){a===s.length?(++i,n.next?this.head=n.next:this.head=this.tail=null):(this.head=n,n.data=s.slice(a));break}++i}return this.length-=i,o}},{key:"_getBuffer",value:function(r){var n=Jt.allocUnsafe(r),i=this.head,o=1;for(i.data.copy(n),r-=i.data.length;i=i.next;){var s=i.data,a=r>s.length?s.length:r;if(s.copy(n,n.length-r,0,a),r-=a,r===0){a===s.length?(++o,i.next?this.head=i.next:this.head=this.tail=null):(this.head=i,i.data=s.slice(a));break}++o}return this.length-=o,n}},{key:Vu,value:function(r,n){return Fn(this,Os(Os({},n),{},{depth:0,customInspect:!1}))}}]),t}()});var Dn=p((wg,Ds)=>{"use strict";function Hu(t,e){var r=this,n=this._readableState&&this._readableState.destroyed,i=this._writableState&&this._writableState.destroyed;return n||i?(e?e(t):t&&(this._writableState?this._writableState.errorEmitted||(this._writableState.errorEmitted=!0,process.nextTick(Ln,this,t)):process.nextTick(Ln,this,t)),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(t||null,function(o){!e&&o?r._writableState?r._writableState.errorEmitted?process.nextTick(Xt,r):(r._writableState.errorEmitted=!0,process.nextTick(Ls,r,o)):process.nextTick(Ls,r,o):e?(process.nextTick(Xt,r),e(o)):process.nextTick(Xt,r)}),this)}function Ls(t,e){Ln(t,e),Xt(t)}function Xt(t){t._writableState&&!t._writableState.emitClose||t._readableState&&!t._readableState.emitClose||t.emit("close")}function Gu(){this._readableState&&(this._readableState.destroyed=!1,this._readableState.reading=!1,this._readableState.ended=!1,this._readableState.endEmitted=!1),this._writableState&&(this._writableState.destroyed=!1,this._writableState.ended=!1,this._writableState.ending=!1,this._writableState.finalCalled=!1,this._writableState.prefinished=!1,this._writableState.finished=!1,this._writableState.errorEmitted=!1)}function Ln(t,e){t.emit("error",e)}function zu(t,e){var r=t._readableState,n=t._writableState;r&&r.autoDestroy||n&&n.autoDestroy?t.destroy(e):t.emit("error",e)}Ds.exports={destroy:Hu,undestroy:Gu,errorOrDestroy:zu}});var me=p((vg,Ms)=>{"use strict";var Ns={};function J(t,e,r){r||(r=Error);function n(o,s,a){return typeof e=="string"?e:e(o,s,a)}class i extends r{constructor(s,a,l){super(n(s,a,l))}}i.prototype.name=r.name,i.prototype.code=t,Ns[t]=i}function ks(t,e){if(Array.isArray(t)){let r=t.length;return t=t.map(n=>String(n)),r>2?`one of ${e} ${t.slice(0,r-1).join(", ")}, or `+t[r-1]:r===2?`one of ${e} ${t[0]} or ${t[1]}`:`of ${e} ${t[0]}`}else return`of ${e} ${String(t)}`}function Ku(t,e,r){return t.substr(!r||r<0?0:+r,e.length)===e}function Yu(t,e,r){return(r===void 0||r>t.length)&&(r=t.length),t.substring(r-e.length,r)===e}function Ju(t,e,r){return typeof r!="number"&&(r=0),r+e.length>t.length?!1:t.indexOf(e,r)!==-1}J("ERR_INVALID_OPT_VALUE",function(t,e){return'The value "'+e+'" is invalid for option "'+t+'"'},TypeError);J("ERR_INVALID_ARG_TYPE",function(t,e,r){let n;typeof e=="string"&&Ku(e,"not ")?(n="must not be",e=e.replace(/^not /,"")):n="must be";let i;if(Yu(t," argument"))i=`The ${t} ${n} ${ks(e,"type")}`;else{let o=Ju(t,".")?"property":"argument";i=`The "${t}" ${o} ${n} ${ks(e,"type")}`}return i+=`. Received type ${typeof r}`,i},TypeError);J("ERR_STREAM_PUSH_AFTER_EOF","stream.push() after EOF");J("ERR_METHOD_NOT_IMPLEMENTED",function(t){return"The "+t+" method is not implemented"});J("ERR_STREAM_PREMATURE_CLOSE","Premature close");J("ERR_STREAM_DESTROYED",function(t){return"Cannot call "+t+" after a stream was destroyed"});J("ERR_MULTIPLE_CALLBACK","Callback called multiple times");J("ERR_STREAM_CANNOT_PIPE","Cannot pipe, not readable");J("ERR_STREAM_WRITE_AFTER_END","write after end");J("ERR_STREAM_NULL_VALUES","May not write null values to stream",TypeError);J("ERR_UNKNOWN_ENCODING",function(t){return"Unknown encoding: "+t},TypeError);J("ERR_STREAM_UNSHIFT_AFTER_END_EVENT","stream.unshift() after end event");Ms.exports.codes=Ns});var kn=p((Eg,qs)=>{"use strict";var Xu=me().codes.ERR_INVALID_OPT_VALUE;function Zu(t,e,r){return t.highWaterMark!=null?t.highWaterMark:e?t[r]:null}function Qu(t,e,r,n){var i=Zu(e,n,r);if(i!=null){if(!(isFinite(i)&&Math.floor(i)===i)||i<0){var o=n?r:"highWaterMark";throw new Xu(o,i)}return Math.floor(i)}return t.objectMode?16:16*1024}qs.exports={getHighWaterMark:Qu}});var Bs=p((Sg,Nn)=>{typeof Object.create=="function"?Nn.exports=function(e,r){r&&(e.super_=r,e.prototype=Object.create(r.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}))}:Nn.exports=function(e,r){if(r){e.super_=r;var n=function(){};n.prototype=r.prototype,e.prototype=new n,e.prototype.constructor=e}}});var Ie=p((Cg,qn)=>{try{if(Mn=require("util"),typeof Mn.inherits!="function")throw"";qn.exports=Mn.inherits}catch{qn.exports=Bs()}var Mn});var $s=p((Ag,js)=>{js.exports=require("util").deprecate});var $n=p((Ig,zs)=>{"use strict";zs.exports=M;function Vs(t){var e=this;this.next=null,this.entry=null,this.finish=function(){If(e,t)}}var Ge;M.WritableState=ht;var ef={deprecate:$s()},Ws=Rn(),Qt=require("buffer").Buffer,tf=(typeof global<"u"?global:typeof window<"u"?window:typeof self<"u"?self:{}).Uint8Array||function(){};function rf(t){return Qt.from(t)}function nf(t){return Qt.isBuffer(t)||t instanceof tf}var jn=Dn(),of=kn(),sf=of.getHighWaterMark,ye=me().codes,af=ye.ERR_INVALID_ARG_TYPE,lf=ye.ERR_METHOD_NOT_IMPLEMENTED,cf=ye.ERR_MULTIPLE_CALLBACK,uf=ye.ERR_STREAM_CANNOT_PIPE,ff=ye.ERR_STREAM_DESTROYED,df=ye.ERR_STREAM_NULL_VALUES,hf=ye.ERR_STREAM_WRITE_AFTER_END,pf=ye.ERR_UNKNOWN_ENCODING,ze=jn.errorOrDestroy;Ie()(M,Ws);function gf(){}function ht(t,e,r){Ge=Ge||Oe(),t=t||{},typeof r!="boolean"&&(r=e instanceof Ge),this.objectMode=!!t.objectMode,r&&(this.objectMode=this.objectMode||!!t.writableObjectMode),this.highWaterMark=sf(this,t,"writableHighWaterMark",r),this.finalCalled=!1,this.needDrain=!1,this.ending=!1,this.ended=!1,this.finished=!1,this.destroyed=!1;var n=t.decodeStrings===!1;this.decodeStrings=!n,this.defaultEncoding=t.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=function(i){vf(e,i)},this.writecb=null,this.writelen=0,this.bufferedRequest=null,this.lastBufferedRequest=null,this.pendingcb=0,this.prefinished=!1,this.errorEmitted=!1,this.emitClose=t.emitClose!==!1,this.autoDestroy=!!t.autoDestroy,this.bufferedRequestCount=0,this.corkedRequestsFree=new Vs(this)}ht.prototype.getBuffer=function(){for(var e=this.bufferedRequest,r=[];e;)r.push(e),e=e.next;return r};(function(){try{Object.defineProperty(ht.prototype,"buffer",{get:ef.deprecate(function(){return this.getBuffer()},"_writableState.buffer is deprecated. Use _writableState.getBuffer instead.","DEP0003")})}catch{}})();var Zt;typeof Symbol=="function"&&Symbol.hasInstance&&typeof Function.prototype[Symbol.hasInstance]=="function"?(Zt=Function.prototype[Symbol.hasInstance],Object.defineProperty(M,Symbol.hasInstance,{value:function(e){return Zt.call(this,e)?!0:this!==M?!1:e&&e._writableState instanceof ht}})):Zt=function(e){return e instanceof this};function M(t){Ge=Ge||Oe();var e=this instanceof Ge;if(!e&&!Zt.call(M,this))return new M(t);this._writableState=new ht(t,this,e),this.writable=!0,t&&(typeof t.write=="function"&&(this._write=t.write),typeof t.writev=="function"&&(this._writev=t.writev),typeof t.destroy=="function"&&(this._destroy=t.destroy),typeof t.final=="function"&&(this._final=t.final)),Ws.call(this)}M.prototype.pipe=function(){ze(this,new uf)};function mf(t,e){var r=new hf;ze(t,r),process.nextTick(e,r)}function yf(t,e,r,n){var i;return r===null?i=new df:typeof r!="string"&&!e.objectMode&&(i=new af("chunk",["string","Buffer"],r)),i?(ze(t,i),process.nextTick(n,i),!1):!0}M.prototype.write=function(t,e,r){var n=this._writableState,i=!1,o=!n.objectMode&&nf(t);return o&&!Qt.isBuffer(t)&&(t=rf(t)),typeof e=="function"&&(r=e,e=null),o?e="buffer":e||(e=n.defaultEncoding),typeof r!="function"&&(r=gf),n.ending?mf(this,r):(o||yf(this,n,t,r))&&(n.pendingcb++,i=xf(this,n,o,t,e,r)),i};M.prototype.cork=function(){this._writableState.corked++};M.prototype.uncork=function(){var t=this._writableState;t.corked&&(t.corked--,!t.writing&&!t.corked&&!t.bufferProcessing&&t.bufferedRequest&&Hs(this,t))};M.prototype.setDefaultEncoding=function(e){if(typeof e=="string"&&(e=e.toLowerCase()),!(["hex","utf8","utf-8","ascii","binary","base64","ucs2","ucs-2","utf16le","utf-16le","raw"].indexOf((e+"").toLowerCase())>-1))throw new pf(e);return this._writableState.defaultEncoding=e,this};Object.defineProperty(M.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}});function _f(t,e,r){return!t.objectMode&&t.decodeStrings!==!1&&typeof e=="string"&&(e=Qt.from(e,r)),e}Object.defineProperty(M.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}});function xf(t,e,r,n,i,o){if(!r){var s=_f(e,n,i);n!==s&&(r=!0,i="buffer",n=s)}var a=e.objectMode?1:n.length;e.length+=a;var l=e.length<e.highWaterMark;if(l||(e.needDrain=!0),e.writing||e.corked){var c=e.lastBufferedRequest;e.lastBufferedRequest={chunk:n,encoding:i,isBuf:r,callback:o,next:null},c?c.next=e.lastBufferedRequest:e.bufferedRequest=e.lastBufferedRequest,e.bufferedRequestCount+=1}else Bn(t,e,!1,a,n,i,o);return l}function Bn(t,e,r,n,i,o,s){e.writelen=n,e.writecb=s,e.writing=!0,e.sync=!0,e.destroyed?e.onwrite(new ff("write")):r?t._writev(i,e.onwrite):t._write(i,o,e.onwrite),e.sync=!1}function bf(t,e,r,n,i){--e.pendingcb,r?(process.nextTick(i,n),process.nextTick(dt,t,e),t._writableState.errorEmitted=!0,ze(t,n)):(i(n),t._writableState.errorEmitted=!0,ze(t,n),dt(t,e))}function wf(t){t.writing=!1,t.writecb=null,t.length-=t.writelen,t.writelen=0}function vf(t,e){var r=t._writableState,n=r.sync,i=r.writecb;if(typeof i!="function")throw new cf;if(wf(r),e)bf(t,r,n,e,i);else{var o=Gs(r)||t.destroyed;!o&&!r.corked&&!r.bufferProcessing&&r.bufferedRequest&&Hs(t,r),n?process.nextTick(Us,t,r,o,i):Us(t,r,o,i)}}function Us(t,e,r,n){r||Ef(t,e),e.pendingcb--,n(),dt(t,e)}function Ef(t,e){e.length===0&&e.needDrain&&(e.needDrain=!1,t.emit("drain"))}function Hs(t,e){e.bufferProcessing=!0;var r=e.bufferedRequest;if(t._writev&&r&&r.next){var n=e.bufferedRequestCount,i=new Array(n),o=e.corkedRequestsFree;o.entry=r;for(var s=0,a=!0;r;)i[s]=r,r.isBuf||(a=!1),r=r.next,s+=1;i.allBuffers=a,Bn(t,e,!0,e.length,i,"",o.finish),e.pendingcb++,e.lastBufferedRequest=null,o.next?(e.corkedRequestsFree=o.next,o.next=null):e.corkedRequestsFree=new Vs(e),e.bufferedRequestCount=0}else{for(;r;){var l=r.chunk,c=r.encoding,u=r.callback,f=e.objectMode?1:l.length;if(Bn(t,e,!1,f,l,c,u),r=r.next,e.bufferedRequestCount--,e.writing)break}r===null&&(e.lastBufferedRequest=null)}e.bufferedRequest=r,e.bufferProcessing=!1}M.prototype._write=function(t,e,r){r(new lf("_write()"))};M.prototype._writev=null;M.prototype.end=function(t,e,r){var n=this._writableState;return typeof t=="function"?(r=t,t=null,e=null):typeof e=="function"&&(r=e,e=null),t!=null&&this.write(t,e),n.corked&&(n.corked=1,this.uncork()),n.ending||Af(this,n,r),this};Object.defineProperty(M.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}});function Gs(t){return t.ending&&t.length===0&&t.bufferedRequest===null&&!t.finished&&!t.writing}function Sf(t,e){t._final(function(r){e.pendingcb--,r&&ze(t,r),e.prefinished=!0,t.emit("prefinish"),dt(t,e)})}function Cf(t,e){!e.prefinished&&!e.finalCalled&&(typeof t._final=="function"&&!e.destroyed?(e.pendingcb++,e.finalCalled=!0,process.nextTick(Sf,t,e)):(e.prefinished=!0,t.emit("prefinish")))}function dt(t,e){var r=Gs(e);if(r&&(Cf(t,e),e.pendingcb===0&&(e.finished=!0,t.emit("finish"),e.autoDestroy))){var n=t._readableState;(!n||n.autoDestroy&&n.endEmitted)&&t.destroy()}return r}function Af(t,e,r){e.ending=!0,dt(t,e),r&&(e.finished?process.nextTick(r):t.once("finish",r)),e.ended=!0,t.writable=!1}function If(t,e,r){var n=t.entry;for(t.entry=null;n;){var i=n.callback;e.pendingcb--,i(r),n=n.next}e.corkedRequestsFree.next=t}Object.defineProperty(M.prototype,"destroyed",{enumerable:!1,get:function(){return this._writableState===void 0?!1:this._writableState.destroyed},set:function(e){this._writableState&&(this._writableState.destroyed=e)}});M.prototype.destroy=jn.destroy;M.prototype._undestroy=jn.undestroy;M.prototype._destroy=function(t,e){e(t)}});var Oe=p((Og,Ys)=>{"use strict";var Of=Object.keys||function(t){var e=[];for(var r in t)e.push(r);return e};Ys.exports=ie;var Ks=Wn(),Vn=$n();Ie()(ie,Ks);for(Un=Of(Vn.prototype),er=0;er<Un.length;er++)tr=Un[er],ie.prototype[tr]||(ie.prototype[tr]=Vn.prototype[tr]);var Un,tr,er;function ie(t){if(!(this instanceof ie))return new ie(t);Ks.call(this,t),Vn.call(this,t),this.allowHalfOpen=!0,t&&(t.readable===!1&&(this.readable=!1),t.writable===!1&&(this.writable=!1),t.allowHalfOpen===!1&&(this.allowHalfOpen=!1,this.once("end",Tf)))}Object.defineProperty(ie.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}});Object.defineProperty(ie.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}});Object.defineProperty(ie.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}});function Tf(){this._writableState.ended||process.nextTick(Pf,this)}function Pf(t){t.end()}Object.defineProperty(ie.prototype,"destroyed",{enumerable:!1,get:function(){return this._readableState===void 0||this._writableState===void 0?!1:this._readableState.destroyed&&this._writableState.destroyed},set:function(e){this._readableState===void 0||this._writableState===void 0||(this._readableState.destroyed=e,this._writableState.destroyed=e)}})});var Zs=p((Hn,Xs)=>{var rr=require("buffer"),oe=rr.Buffer;function Js(t,e){for(var r in t)e[r]=t[r]}oe.from&&oe.alloc&&oe.allocUnsafe&&oe.allocUnsafeSlow?Xs.exports=rr:(Js(rr,Hn),Hn.Buffer=Te);function Te(t,e,r){return oe(t,e,r)}Te.prototype=Object.create(oe.prototype);Js(oe,Te);Te.from=function(t,e,r){if(typeof t=="number")throw new TypeError("Argument must not be a number");return oe(t,e,r)};Te.alloc=function(t,e,r){if(typeof t!="number")throw new TypeError("Argument must be a number");var n=oe(t);return e!==void 0?typeof r=="string"?n.fill(e,r):n.fill(e):n.fill(0),n};Te.allocUnsafe=function(t){if(typeof t!="number")throw new TypeError("Argument must be a number");return oe(t)};Te.allocUnsafeSlow=function(t){if(typeof t!="number")throw new TypeError("Argument must be a number");return rr.SlowBuffer(t)}});var Kn=p(ea=>{"use strict";var zn=Zs().Buffer,Qs=zn.isEncoding||function(t){switch(t=""+t,t&&t.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return!0;default:return!1}};function Rf(t){if(!t)return"utf8";for(var e;;)switch(t){case"utf8":case"utf-8":return"utf8";case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return"utf16le";case"latin1":case"binary":return"latin1";case"base64":case"ascii":case"hex":return t;default:if(e)return;t=(""+t).toLowerCase(),e=!0}}function Ff(t){var e=Rf(t);if(typeof e!="string"&&(zn.isEncoding===Qs||!Qs(t)))throw new Error("Unknown encoding: "+t);return e||t}ea.StringDecoder=pt;function pt(t){this.encoding=Ff(t);var e;switch(this.encoding){case"utf16le":this.text=qf,this.end=Bf,e=4;break;case"utf8":this.fillLast=kf,e=4;break;case"base64":this.text=jf,this.end=$f,e=3;break;default:this.write=Uf,this.end=Vf;return}this.lastNeed=0,this.lastTotal=0,this.lastChar=zn.allocUnsafe(e)}pt.prototype.write=function(t){if(t.length===0)return"";var e,r;if(this.lastNeed){if(e=this.fillLast(t),e===void 0)return"";r=this.lastNeed,this.lastNeed=0}else r=0;return r<t.length?e?e+this.text(t,r):this.text(t,r):e||""};pt.prototype.end=Mf;pt.prototype.text=Nf;pt.prototype.fillLast=function(t){if(this.lastNeed<=t.length)return t.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);t.copy(this.lastChar,this.lastTotal-this.lastNeed,0,t.length),this.lastNeed-=t.length};function Gn(t){return t<=127?0:t>>5===6?2:t>>4===14?3:t>>3===30?4:t>>6===2?-1:-2}function Lf(t,e,r){var n=e.length-1;if(n<r)return 0;var i=Gn(e[n]);return i>=0?(i>0&&(t.lastNeed=i-1),i):--n<r||i===-2?0:(i=Gn(e[n]),i>=0?(i>0&&(t.lastNeed=i-2),i):--n<r||i===-2?0:(i=Gn(e[n]),i>=0?(i>0&&(i===2?i=0:t.lastNeed=i-3),i):0))}function Df(t,e,r){if((e[0]&192)!==128)return t.lastNeed=0,"\uFFFD";if(t.lastNeed>1&&e.length>1){if((e[1]&192)!==128)return t.lastNeed=1,"\uFFFD";if(t.lastNeed>2&&e.length>2&&(e[2]&192)!==128)return t.lastNeed=2,"\uFFFD"}}function kf(t){var e=this.lastTotal-this.lastNeed,r=Df(this,t,e);if(r!==void 0)return r;if(this.lastNeed<=t.length)return t.copy(this.lastChar,e,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);t.copy(this.lastChar,e,0,t.length),this.lastNeed-=t.length}function Nf(t,e){var r=Lf(this,t,e);if(!this.lastNeed)return t.toString("utf8",e);this.lastTotal=r;var n=t.length-(r-this.lastNeed);return t.copy(this.lastChar,0,n),t.toString("utf8",e,n)}function Mf(t){var e=t&&t.length?this.write(t):"";return this.lastNeed?e+"\uFFFD":e}function qf(t,e){if((t.length-e)%2===0){var r=t.toString("utf16le",e);if(r){var n=r.charCodeAt(r.length-1);if(n>=55296&&n<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=t[t.length-2],this.lastChar[1]=t[t.length-1],r.slice(0,-1)}return r}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=t[t.length-1],t.toString("utf16le",e,t.length-1)}function Bf(t){var e=t&&t.length?this.write(t):"";if(this.lastNeed){var r=this.lastTotal-this.lastNeed;return e+this.lastChar.toString("utf16le",0,r)}return e}function jf(t,e){var r=(t.length-e)%3;return r===0?t.toString("base64",e):(this.lastNeed=3-r,this.lastTotal=3,r===1?this.lastChar[0]=t[t.length-1]:(this.lastChar[0]=t[t.length-2],this.lastChar[1]=t[t.length-1]),t.toString("base64",e,t.length-r))}function $f(t){var e=t&&t.length?this.write(t):"";return this.lastNeed?e+this.lastChar.toString("base64",0,3-this.lastNeed):e}function Uf(t){return t.toString(this.encoding)}function Vf(t){return t&&t.length?this.write(t):""}});var nr=p((Pg,na)=>{"use strict";var ta=me().codes.ERR_STREAM_PREMATURE_CLOSE;function Wf(t){var e=!1;return function(){if(!e){e=!0;for(var r=arguments.length,n=new Array(r),i=0;i<r;i++)n[i]=arguments[i];t.apply(this,n)}}}function Hf(){}function Gf(t){return t.setHeader&&typeof t.abort=="function"}function ra(t,e,r){if(typeof e=="function")return ra(t,null,e);e||(e={}),r=Wf(r||Hf);var n=e.readable||e.readable!==!1&&t.readable,i=e.writable||e.writable!==!1&&t.writable,o=function(){t.writable||a()},s=t._writableState&&t._writableState.finished,a=function(){i=!1,s=!0,n||r.call(t)},l=t._readableState&&t._readableState.endEmitted,c=function(){n=!1,l=!0,i||r.call(t)},u=function(g){r.call(t,g)},f=function(){var g;if(n&&!l)return(!t._readableState||!t._readableState.ended)&&(g=new ta),r.call(t,g);if(i&&!s)return(!t._writableState||!t._writableState.ended)&&(g=new ta),r.call(t,g)},d=function(){t.req.on("finish",a)};return Gf(t)?(t.on("complete",a),t.on("abort",f),t.req?d():t.on("request",d)):i&&!t._writableState&&(t.on("end",o),t.on("close",o)),t.on("end",c),t.on("finish",a),e.error!==!1&&t.on("error",u),t.on("close",f),function(){t.removeListener("complete",a),t.removeListener("abort",f),t.removeListener("request",d),t.req&&t.req.removeListener("finish",a),t.removeListener("end",o),t.removeListener("close",o),t.removeListener("finish",a),t.removeListener("end",c),t.removeListener("error",u),t.removeListener("close",f)}}na.exports=ra});var oa=p((Rg,ia)=>{"use strict";var ir;function _e(t,e,r){return e=zf(e),e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function zf(t){var e=Kf(t,"string");return typeof e=="symbol"?e:String(e)}function Kf(t,e){if(typeof t!="object"||t===null)return t;var r=t[Symbol.toPrimitive];if(r!==void 0){var n=r.call(t,e||"default");if(typeof n!="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}var Yf=nr(),xe=Symbol("lastResolve"),Pe=Symbol("lastReject"),gt=Symbol("error"),or=Symbol("ended"),Re=Symbol("lastPromise"),Yn=Symbol("handlePromise"),Fe=Symbol("stream");function be(t,e){return{value:t,done:e}}function Jf(t){var e=t[xe];if(e!==null){var r=t[Fe].read();r!==null&&(t[Re]=null,t[xe]=null,t[Pe]=null,e(be(r,!1)))}}function Xf(t){process.nextTick(Jf,t)}function Zf(t,e){return function(r,n){t.then(function(){if(e[or]){r(be(void 0,!0));return}e[Yn](r,n)},n)}}var Qf=Object.getPrototypeOf(function(){}),ed=Object.setPrototypeOf((ir={get stream(){return this[Fe]},next:function(){var e=this,r=this[gt];if(r!==null)return Promise.reject(r);if(this[or])return Promise.resolve(be(void 0,!0));if(this[Fe].destroyed)return new Promise(function(s,a){process.nextTick(function(){e[gt]?a(e[gt]):s(be(void 0,!0))})});var n=this[Re],i;if(n)i=new Promise(Zf(n,this));else{var o=this[Fe].read();if(o!==null)return Promise.resolve(be(o,!1));i=new Promise(this[Yn])}return this[Re]=i,i}},_e(ir,Symbol.asyncIterator,function(){return this}),_e(ir,"return",function(){var e=this;return new Promise(function(r,n){e[Fe].destroy(null,function(i){if(i){n(i);return}r(be(void 0,!0))})})}),ir),Qf),td=function(e){var r,n=Object.create(ed,(r={},_e(r,Fe,{value:e,writable:!0}),_e(r,xe,{value:null,writable:!0}),_e(r,Pe,{value:null,writable:!0}),_e(r,gt,{value:null,writable:!0}),_e(r,or,{value:e._readableState.endEmitted,writable:!0}),_e(r,Yn,{value:function(o,s){var a=n[Fe].read();a?(n[Re]=null,n[xe]=null,n[Pe]=null,o(be(a,!1))):(n[xe]=o,n[Pe]=s)},writable:!0}),r));return n[Re]=null,Yf(e,function(i){if(i&&i.code!=="ERR_STREAM_PREMATURE_CLOSE"){var o=n[Pe];o!==null&&(n[Re]=null,n[xe]=null,n[Pe]=null,o(i)),n[gt]=i;return}var s=n[xe];s!==null&&(n[Re]=null,n[xe]=null,n[Pe]=null,s(be(void 0,!0))),n[or]=!0}),e.on("readable",Xf.bind(null,n)),n};ia.exports=td});var ca=p((Fg,la)=>{"use strict";function sa(t,e,r,n,i,o,s){try{var a=t[o](s),l=a.value}catch(c){r(c);return}a.done?e(l):Promise.resolve(l).then(n,i)}function rd(t){return function(){var e=this,r=arguments;return new Promise(function(n,i){var o=t.apply(e,r);function s(l){sa(o,n,i,s,a,"next",l)}function a(l){sa(o,n,i,s,a,"throw",l)}s(void 0)})}}function aa(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),r.push.apply(r,n)}return r}function nd(t){for(var e=1;e<arguments.length;e++){var r=arguments[e]!=null?arguments[e]:{};e%2?aa(Object(r),!0).forEach(function(n){id(t,n,r[n])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):aa(Object(r)).forEach(function(n){Object.defineProperty(t,n,Object.getOwnPropertyDescriptor(r,n))})}return t}function id(t,e,r){return e=od(e),e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function od(t){var e=sd(t,"string");return typeof e=="symbol"?e:String(e)}function sd(t,e){if(typeof t!="object"||t===null)return t;var r=t[Symbol.toPrimitive];if(r!==void 0){var n=r.call(t,e||"default");if(typeof n!="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}var ad=me().codes.ERR_INVALID_ARG_TYPE;function ld(t,e,r){var n;if(e&&typeof e.next=="function")n=e;else if(e&&e[Symbol.asyncIterator])n=e[Symbol.asyncIterator]();else if(e&&e[Symbol.iterator])n=e[Symbol.iterator]();else throw new ad("iterable",["Iterable"],e);var i=new t(nd({objectMode:!0},r)),o=!1;i._read=function(){o||(o=!0,s())};function s(){return a.apply(this,arguments)}function a(){return a=rd(function*(){try{var l=yield n.next(),c=l.value,u=l.done;u?i.push(null):i.push(yield c)?s():o=!1}catch(f){i.destroy(f)}}),a.apply(this,arguments)}return i}la.exports=ld});var Wn=p((Dg,xa)=>{"use strict";xa.exports=T;var Ke;T.ReadableState=ha;var Lg=require("events").EventEmitter,da=function(e,r){return e.listeners(r).length},yt=Rn(),sr=require("buffer").Buffer,cd=(typeof global<"u"?global:typeof window<"u"?window:typeof self<"u"?self:{}).Uint8Array||function(){};function ud(t){return sr.from(t)}function fd(t){return sr.isBuffer(t)||t instanceof cd}var Jn=require("util"),A;Jn&&Jn.debuglog?A=Jn.debuglog("stream"):A=function(){};var dd=Fs(),ni=Dn(),hd=kn(),pd=hd.getHighWaterMark,ar=me().codes,gd=ar.ERR_INVALID_ARG_TYPE,md=ar.ERR_STREAM_PUSH_AFTER_EOF,yd=ar.ERR_METHOD_NOT_IMPLEMENTED,_d=ar.ERR_STREAM_UNSHIFT_AFTER_END_EVENT,Ye,Xn,Zn;Ie()(T,yt);var mt=ni.errorOrDestroy,Qn=["error","close","destroy","pause","resume"];function xd(t,e,r){if(typeof t.prependListener=="function")return t.prependListener(e,r);!t._events||!t._events[e]?t.on(e,r):Array.isArray(t._events[e])?t._events[e].unshift(r):t._events[e]=[r,t._events[e]]}function ha(t,e,r){Ke=Ke||Oe(),t=t||{},typeof r!="boolean"&&(r=e instanceof Ke),this.objectMode=!!t.objectMode,r&&(this.objectMode=this.objectMode||!!t.readableObjectMode),this.highWaterMark=pd(this,t,"readableHighWaterMark",r),this.buffer=new dd,this.length=0,this.pipes=null,this.pipesCount=0,this.flowing=null,this.ended=!1,this.endEmitted=!1,this.reading=!1,this.sync=!0,this.needReadable=!1,this.emittedReadable=!1,this.readableListening=!1,this.resumeScheduled=!1,this.paused=!0,this.emitClose=t.emitClose!==!1,this.autoDestroy=!!t.autoDestroy,this.destroyed=!1,this.defaultEncoding=t.defaultEncoding||"utf8",this.awaitDrain=0,this.readingMore=!1,this.decoder=null,this.encoding=null,t.encoding&&(Ye||(Ye=Kn().StringDecoder),this.decoder=new Ye(t.encoding),this.encoding=t.encoding)}function T(t){if(Ke=Ke||Oe(),!(this instanceof T))return new T(t);var e=this instanceof Ke;this._readableState=new ha(t,this,e),this.readable=!0,t&&(typeof t.read=="function"&&(this._read=t.read),typeof t.destroy=="function"&&(this._destroy=t.destroy)),yt.call(this)}Object.defineProperty(T.prototype,"destroyed",{enumerable:!1,get:function(){return this._readableState===void 0?!1:this._readableState.destroyed},set:function(e){this._readableState&&(this._readableState.destroyed=e)}});T.prototype.destroy=ni.destroy;T.prototype._undestroy=ni.undestroy;T.prototype._destroy=function(t,e){e(t)};T.prototype.push=function(t,e){var r=this._readableState,n;return r.objectMode?n=!0:typeof t=="string"&&(e=e||r.defaultEncoding,e!==r.encoding&&(t=sr.from(t,e),e=""),n=!0),pa(this,t,e,!1,n)};T.prototype.unshift=function(t){return pa(this,t,null,!0,!1)};function pa(t,e,r,n,i){A("readableAddChunk",e);var o=t._readableState;if(e===null)o.reading=!1,vd(t,o);else{var s;if(i||(s=bd(o,e)),s)mt(t,s);else if(o.objectMode||e&&e.length>0)if(typeof e!="string"&&!o.objectMode&&Object.getPrototypeOf(e)!==sr.prototype&&(e=ud(e)),n)o.endEmitted?mt(t,new _d):ei(t,o,e,!0);else if(o.ended)mt(t,new md);else{if(o.destroyed)return!1;o.reading=!1,o.decoder&&!r?(e=o.decoder.write(e),o.objectMode||e.length!==0?ei(t,o,e,!1):ri(t,o)):ei(t,o,e,!1)}else n||(o.reading=!1,ri(t,o))}return!o.ended&&(o.length<o.highWaterMark||o.length===0)}function ei(t,e,r,n){e.flowing&&e.length===0&&!e.sync?(e.awaitDrain=0,t.emit("data",r)):(e.length+=e.objectMode?1:r.length,n?e.buffer.unshift(r):e.buffer.push(r),e.needReadable&&lr(t)),ri(t,e)}function bd(t,e){var r;return!fd(e)&&typeof e!="string"&&e!==void 0&&!t.objectMode&&(r=new gd("chunk",["string","Buffer","Uint8Array"],e)),r}T.prototype.isPaused=function(){return this._readableState.flowing===!1};T.prototype.setEncoding=function(t){Ye||(Ye=Kn().StringDecoder);var e=new Ye(t);this._readableState.decoder=e,this._readableState.encoding=this._readableState.decoder.encoding;for(var r=this._readableState.buffer.head,n="";r!==null;)n+=e.write(r.data),r=r.next;return this._readableState.buffer.clear(),n!==""&&this._readableState.buffer.push(n),this._readableState.length=n.length,this};var ua=1073741824;function wd(t){return t>=ua?t=ua:(t--,t|=t>>>1,t|=t>>>2,t|=t>>>4,t|=t>>>8,t|=t>>>16,t++),t}function fa(t,e){return t<=0||e.length===0&&e.ended?0:e.objectMode?1:t!==t?e.flowing&&e.length?e.buffer.head.data.length:e.length:(t>e.highWaterMark&&(e.highWaterMark=wd(t)),t<=e.length?t:e.ended?e.length:(e.needReadable=!0,0))}T.prototype.read=function(t){A("read",t),t=parseInt(t,10);var e=this._readableState,r=t;if(t!==0&&(e.emittedReadable=!1),t===0&&e.needReadable&&((e.highWaterMark!==0?e.length>=e.highWaterMark:e.length>0)||e.ended))return A("read: emitReadable",e.length,e.ended),e.length===0&&e.ended?ti(this):lr(this),null;if(t=fa(t,e),t===0&&e.ended)return e.length===0&&ti(this),null;var n=e.needReadable;A("need readable",n),(e.length===0||e.length-t<e.highWaterMark)&&(n=!0,A("length less than watermark",n)),e.ended||e.reading?(n=!1,A("reading or ended",n)):n&&(A("do read"),e.reading=!0,e.sync=!0,e.length===0&&(e.needReadable=!0),this._read(e.highWaterMark),e.sync=!1,e.reading||(t=fa(r,e)));var i;return t>0?i=ya(t,e):i=null,i===null?(e.needReadable=e.length<=e.highWaterMark,t=0):(e.length-=t,e.awaitDrain=0),e.length===0&&(e.ended||(e.needReadable=!0),r!==t&&e.ended&&ti(this)),i!==null&&this.emit("data",i),i};function vd(t,e){if(A("onEofChunk"),!e.ended){if(e.decoder){var r=e.decoder.end();r&&r.length&&(e.buffer.push(r),e.length+=e.objectMode?1:r.length)}e.ended=!0,e.sync?lr(t):(e.needReadable=!1,e.emittedReadable||(e.emittedReadable=!0,ga(t)))}}function lr(t){var e=t._readableState;A("emitReadable",e.needReadable,e.emittedReadable),e.needReadable=!1,e.emittedReadable||(A("emitReadable",e.flowing),e.emittedReadable=!0,process.nextTick(ga,t))}function ga(t){var e=t._readableState;A("emitReadable_",e.destroyed,e.length,e.ended),!e.destroyed&&(e.length||e.ended)&&(t.emit("readable"),e.emittedReadable=!1),e.needReadable=!e.flowing&&!e.ended&&e.length<=e.highWaterMark,ii(t)}function ri(t,e){e.readingMore||(e.readingMore=!0,process.nextTick(Ed,t,e))}function Ed(t,e){for(;!e.reading&&!e.ended&&(e.length<e.highWaterMark||e.flowing&&e.length===0);){var r=e.length;if(A("maybeReadMore read 0"),t.read(0),r===e.length)break}e.readingMore=!1}T.prototype._read=function(t){mt(this,new yd("_read()"))};T.prototype.pipe=function(t,e){var r=this,n=this._readableState;switch(n.pipesCount){case 0:n.pipes=t;break;case 1:n.pipes=[n.pipes,t];break;default:n.pipes.push(t);break}n.pipesCount+=1,A("pipe count=%d opts=%j",n.pipesCount,e);var i=(!e||e.end!==!1)&&t!==process.stdout&&t!==process.stderr,o=i?a:h;n.endEmitted?process.nextTick(o):r.once("end",o),t.on("unpipe",s);function s(_,x){A("onunpipe"),_===r&&x&&x.hasUnpiped===!1&&(x.hasUnpiped=!0,u())}function a(){A("onend"),t.end()}var l=Sd(r);t.on("drain",l);var c=!1;function u(){A("cleanup"),t.removeListener("close",m),t.removeListener("finish",g),t.removeListener("drain",l),t.removeListener("error",d),t.removeListener("unpipe",s),r.removeListener("end",a),r.removeListener("end",h),r.removeListener("data",f),c=!0,n.awaitDrain&&(!t._writableState||t._writableState.needDrain)&&l()}r.on("data",f);function f(_){A("ondata");var x=t.write(_);A("dest.write",x),x===!1&&((n.pipesCount===1&&n.pipes===t||n.pipesCount>1&&_a(n.pipes,t)!==-1)&&!c&&(A("false write response, pause",n.awaitDrain),n.awaitDrain++),r.pause())}function d(_){A("onerror",_),h(),t.removeListener("error",d),da(t,"error")===0&&mt(t,_)}xd(t,"error",d);function m(){t.removeListener("finish",g),h()}t.once("close",m);function g(){A("onfinish"),t.removeListener("close",m),h()}t.once("finish",g);function h(){A("unpipe"),r.unpipe(t)}return t.emit("pipe",r),n.flowing||(A("pipe resume"),r.resume()),t};function Sd(t){return function(){var r=t._readableState;A("pipeOnDrain",r.awaitDrain),r.awaitDrain&&r.awaitDrain--,r.awaitDrain===0&&da(t,"data")&&(r.flowing=!0,ii(t))}}T.prototype.unpipe=function(t){var e=this._readableState,r={hasUnpiped:!1};if(e.pipesCount===0)return this;if(e.pipesCount===1)return t&&t!==e.pipes?this:(t||(t=e.pipes),e.pipes=null,e.pipesCount=0,e.flowing=!1,t&&t.emit("unpipe",this,r),this);if(!t){var n=e.pipes,i=e.pipesCount;e.pipes=null,e.pipesCount=0,e.flowing=!1;for(var o=0;o<i;o++)n[o].emit("unpipe",this,{hasUnpiped:!1});return this}var s=_a(e.pipes,t);return s===-1?this:(e.pipes.splice(s,1),e.pipesCount-=1,e.pipesCount===1&&(e.pipes=e.pipes[0]),t.emit("unpipe",this,r),this)};T.prototype.on=function(t,e){var r=yt.prototype.on.call(this,t,e),n=this._readableState;return t==="data"?(n.readableListening=this.listenerCount("readable")>0,n.flowing!==!1&&this.resume()):t==="readable"&&!n.endEmitted&&!n.readableListening&&(n.readableListening=n.needReadable=!0,n.flowing=!1,n.emittedReadable=!1,A("on readable",n.length,n.reading),n.length?lr(this):n.reading||process.nextTick(Cd,this)),r};T.prototype.addListener=T.prototype.on;T.prototype.removeListener=function(t,e){var r=yt.prototype.removeListener.call(this,t,e);return t==="readable"&&process.nextTick(ma,this),r};T.prototype.removeAllListeners=function(t){var e=yt.prototype.removeAllListeners.apply(this,arguments);return(t==="readable"||t===void 0)&&process.nextTick(ma,this),e};function ma(t){var e=t._readableState;e.readableListening=t.listenerCount("readable")>0,e.resumeScheduled&&!e.paused?e.flowing=!0:t.listenerCount("data")>0&&t.resume()}function Cd(t){A("readable nexttick read 0"),t.read(0)}T.prototype.resume=function(){var t=this._readableState;return t.flowing||(A("resume"),t.flowing=!t.readableListening,Ad(this,t)),t.paused=!1,this};function Ad(t,e){e.resumeScheduled||(e.resumeScheduled=!0,process.nextTick(Id,t,e))}function Id(t,e){A("resume",e.reading),e.reading||t.read(0),e.resumeScheduled=!1,t.emit("resume"),ii(t),e.flowing&&!e.reading&&t.read(0)}T.prototype.pause=function(){return A("call pause flowing=%j",this._readableState.flowing),this._readableState.flowing!==!1&&(A("pause"),this._readableState.flowing=!1,this.emit("pause")),this._readableState.paused=!0,this};function ii(t){var e=t._readableState;for(A("flow",e.flowing);e.flowing&&t.read()!==null;);}T.prototype.wrap=function(t){var e=this,r=this._readableState,n=!1;t.on("end",function(){if(A("wrapped end"),r.decoder&&!r.ended){var s=r.decoder.end();s&&s.length&&e.push(s)}e.push(null)}),t.on("data",function(s){if(A("wrapped data"),r.decoder&&(s=r.decoder.write(s)),!(r.objectMode&&s==null)&&!(!r.objectMode&&(!s||!s.length))){var a=e.push(s);a||(n=!0,t.pause())}});for(var i in t)this[i]===void 0&&typeof t[i]=="function"&&(this[i]=function(a){return function(){return t[a].apply(t,arguments)}}(i));for(var o=0;o<Qn.length;o++)t.on(Qn[o],this.emit.bind(this,Qn[o]));return this._read=function(s){A("wrapped _read",s),n&&(n=!1,t.resume())},this};typeof Symbol=="function"&&(T.prototype[Symbol.asyncIterator]=function(){return Xn===void 0&&(Xn=oa()),Xn(this)});Object.defineProperty(T.prototype,"readableHighWaterMark",{enumerable:!1,get:function(){return this._readableState.highWaterMark}});Object.defineProperty(T.prototype,"readableBuffer",{enumerable:!1,get:function(){return this._readableState&&this._readableState.buffer}});Object.defineProperty(T.prototype,"readableFlowing",{enumerable:!1,get:function(){return this._readableState.flowing},set:function(e){this._readableState&&(this._readableState.flowing=e)}});T._fromList=ya;Object.defineProperty(T.prototype,"readableLength",{enumerable:!1,get:function(){return this._readableState.length}});function ya(t,e){if(e.length===0)return null;var r;return e.objectMode?r=e.buffer.shift():!t||t>=e.length?(e.decoder?r=e.buffer.join(""):e.buffer.length===1?r=e.buffer.first():r=e.buffer.concat(e.length),e.buffer.clear()):r=e.buffer.consume(t,e.decoder),r}function ti(t){var e=t._readableState;A("endReadable",e.endEmitted),e.endEmitted||(e.ended=!0,process.nextTick(Od,e,t))}function Od(t,e){if(A("endReadableNT",t.endEmitted,t.length),!t.endEmitted&&t.length===0&&(t.endEmitted=!0,e.readable=!1,e.emit("end"),t.autoDestroy)){var r=e._writableState;(!r||r.autoDestroy&&r.finished)&&e.destroy()}}typeof Symbol=="function"&&(T.from=function(t,e){return Zn===void 0&&(Zn=ca()),Zn(T,t,e)});function _a(t,e){for(var r=0,n=t.length;r<n;r++)if(t[r]===e)return r;return-1}});var oi=p((kg,wa)=>{"use strict";wa.exports=ue;var cr=me().codes,Td=cr.ERR_METHOD_NOT_IMPLEMENTED,Pd=cr.ERR_MULTIPLE_CALLBACK,Rd=cr.ERR_TRANSFORM_ALREADY_TRANSFORMING,Fd=cr.ERR_TRANSFORM_WITH_LENGTH_0,ur=Oe();Ie()(ue,ur);function Ld(t,e){var r=this._transformState;r.transforming=!1;var n=r.writecb;if(n===null)return this.emit("error",new Pd);r.writechunk=null,r.writecb=null,e!=null&&this.push(e),n(t);var i=this._readableState;i.reading=!1,(i.needReadable||i.length<i.highWaterMark)&&this._read(i.highWaterMark)}function ue(t){if(!(this instanceof ue))return new ue(t);ur.call(this,t),this._transformState={afterTransform:Ld.bind(this),needTransform:!1,transforming:!1,writecb:null,writechunk:null,writeencoding:null},this._readableState.needReadable=!0,this._readableState.sync=!1,t&&(typeof t.transform=="function"&&(this._transform=t.transform),typeof t.flush=="function"&&(this._flush=t.flush)),this.on("prefinish",Dd)}function Dd(){var t=this;typeof this._flush=="function"&&!this._readableState.destroyed?this._flush(function(e,r){ba(t,e,r)}):ba(this,null,null)}ue.prototype.push=function(t,e){return this._transformState.needTransform=!1,ur.prototype.push.call(this,t,e)};ue.prototype._transform=function(t,e,r){r(new Td("_transform()"))};ue.prototype._write=function(t,e,r){var n=this._transformState;if(n.writecb=r,n.writechunk=t,n.writeencoding=e,!n.transforming){var i=this._readableState;(n.needTransform||i.needReadable||i.length<i.highWaterMark)&&this._read(i.highWaterMark)}};ue.prototype._read=function(t){var e=this._transformState;e.writechunk!==null&&!e.transforming?(e.transforming=!0,this._transform(e.writechunk,e.writeencoding,e.afterTransform)):e.needTransform=!0};ue.prototype._destroy=function(t,e){ur.prototype._destroy.call(this,t,function(r){e(r)})};function ba(t,e,r){if(e)return t.emit("error",e);if(r!=null&&t.push(r),t._writableState.length)throw new Fd;if(t._transformState.transforming)throw new Rd;return t.push(null)}});var Sa=p((Ng,Ea)=>{"use strict";Ea.exports=_t;var va=oi();Ie()(_t,va);function _t(t){if(!(this instanceof _t))return new _t(t);va.call(this,t)}_t.prototype._transform=function(t,e,r){r(null,t)}});var Ta=p((Mg,Oa)=>{"use strict";var si;function kd(t){var e=!1;return function(){e||(e=!0,t.apply(void 0,arguments))}}var Ia=me().codes,Nd=Ia.ERR_MISSING_ARGS,Md=Ia.ERR_STREAM_DESTROYED;function Ca(t){if(t)throw t}function qd(t){return t.setHeader&&typeof t.abort=="function"}function Bd(t,e,r,n){n=kd(n);var i=!1;t.on("close",function(){i=!0}),si===void 0&&(si=nr()),si(t,{readable:e,writable:r},function(s){if(s)return n(s);i=!0,n()});var o=!1;return function(s){if(!i&&!o){if(o=!0,qd(t))return t.abort();if(typeof t.destroy=="function")return t.destroy();n(s||new Md("pipe"))}}}function Aa(t){t()}function jd(t,e){return t.pipe(e)}function $d(t){return!t.length||typeof t[t.length-1]!="function"?Ca:t.pop()}function Ud(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];var n=$d(e);if(Array.isArray(e[0])&&(e=e[0]),e.length<2)throw new Nd("streams");var i,o=e.map(function(s,a){var l=a<e.length-1,c=a>0;return Bd(s,l,c,function(u){i||(i=u),u&&o.forEach(Aa),!l&&(o.forEach(Aa),n(i))})});return e.reduce(jd)}Oa.exports=Ud});var Pa=p((X,bt)=>{var xt=require("stream");process.env.READABLE_STREAM==="disable"&&xt?(bt.exports=xt.Readable,Object.assign(bt.exports,xt),bt.exports.Stream=xt):(X=bt.exports=Wn(),X.Stream=xt||X,X.Readable=X,X.Writable=$n(),X.Duplex=Oe(),X.Transform=oi(),X.PassThrough=Sa(),X.finished=nr(),X.pipeline=Ta())});var La=p((qg,Fa)=>{"use strict";var{Buffer:Q}=require("buffer"),Ra=Symbol.for("BufferList");function L(t){if(!(this instanceof L))return new L(t);L._init.call(this,t)}L._init=function(e){Object.defineProperty(this,Ra,{value:!0}),this._bufs=[],this.length=0,e&&this.append(e)};L.prototype._new=function(e){return new L(e)};L.prototype._offset=function(e){if(e===0)return[0,0];let r=0;for(let n=0;n<this._bufs.length;n++){let i=r+this._bufs[n].length;if(e<i||n===this._bufs.length-1)return[n,e-r];r=i}};L.prototype._reverseOffset=function(t){let e=t[0],r=t[1];for(let n=0;n<e;n++)r+=this._bufs[n].length;return r};L.prototype.get=function(e){if(e>this.length||e<0)return;let r=this._offset(e);return this._bufs[r[0]][r[1]]};L.prototype.slice=function(e,r){return typeof e=="number"&&e<0&&(e+=this.length),typeof r=="number"&&r<0&&(r+=this.length),this.copy(null,0,e,r)};L.prototype.copy=function(e,r,n,i){if((typeof n!="number"||n<0)&&(n=0),(typeof i!="number"||i>this.length)&&(i=this.length),n>=this.length||i<=0)return e||Q.alloc(0);let o=!!e,s=this._offset(n),a=i-n,l=a,c=o&&r||0,u=s[1];if(n===0&&i===this.length){if(!o)return this._bufs.length===1?this._bufs[0]:Q.concat(this._bufs,this.length);for(let f=0;f<this._bufs.length;f++)this._bufs[f].copy(e,c),c+=this._bufs[f].length;return e}if(l<=this._bufs[s[0]].length-u)return o?this._bufs[s[0]].copy(e,r,u,u+l):this._bufs[s[0]].slice(u,u+l);o||(e=Q.allocUnsafe(a));for(let f=s[0];f<this._bufs.length;f++){let d=this._bufs[f].length-u;if(l>d)this._bufs[f].copy(e,c,u),c+=d;else{this._bufs[f].copy(e,c,u,u+l),c+=d;break}l-=d,u&&(u=0)}return e.length>c?e.slice(0,c):e};L.prototype.shallowSlice=function(e,r){if(e=e||0,r=typeof r!="number"?this.length:r,e<0&&(e+=this.length),r<0&&(r+=this.length),e===r)return this._new();let n=this._offset(e),i=this._offset(r),o=this._bufs.slice(n[0],i[0]+1);return i[1]===0?o.pop():o[o.length-1]=o[o.length-1].slice(0,i[1]),n[1]!==0&&(o[0]=o[0].slice(n[1])),this._new(o)};L.prototype.toString=function(e,r,n){return this.slice(r,n).toString(e)};L.prototype.consume=function(e){if(e=Math.trunc(e),Number.isNaN(e)||e<=0)return this;for(;this._bufs.length;)if(e>=this._bufs[0].length)e-=this._bufs[0].length,this.length-=this._bufs[0].length,this._bufs.shift();else{this._bufs[0]=this._bufs[0].slice(e),this.length-=e;break}return this};L.prototype.duplicate=function(){let e=this._new();for(let r=0;r<this._bufs.length;r++)e.append(this._bufs[r]);return e};L.prototype.append=function(e){if(e==null)return this;if(e.buffer)this._appendBuffer(Q.from(e.buffer,e.byteOffset,e.byteLength));else if(Array.isArray(e))for(let r=0;r<e.length;r++)this.append(e[r]);else if(this._isBufferList(e))for(let r=0;r<e._bufs.length;r++)this.append(e._bufs[r]);else typeof e=="number"&&(e=e.toString()),this._appendBuffer(Q.from(e));return this};L.prototype._appendBuffer=function(e){this._bufs.push(e),this.length+=e.length};L.prototype.indexOf=function(t,e,r){if(r===void 0&&typeof e=="string"&&(r=e,e=void 0),typeof t=="function"||Array.isArray(t))throw new TypeError('The "value" argument must be one of type string, Buffer, BufferList, or Uint8Array.');if(typeof t=="number"?t=Q.from([t]):typeof t=="string"?t=Q.from(t,r):this._isBufferList(t)?t=t.slice():Array.isArray(t.buffer)?t=Q.from(t.buffer,t.byteOffset,t.byteLength):Q.isBuffer(t)||(t=Q.from(t)),e=Number(e||0),isNaN(e)&&(e=0),e<0&&(e=this.length+e),e<0&&(e=0),t.length===0)return e>this.length?this.length:e;let n=this._offset(e),i=n[0],o=n[1];for(;i<this._bufs.length;i++){let s=this._bufs[i];for(;o<s.length;)if(s.length-o>=t.length){let l=s.indexOf(t,o);if(l!==-1)return this._reverseOffset([i,l]);o=s.length-t.length+1}else{let l=this._reverseOffset([i,o]);if(this._match(l,t))return l;o++}o=0}return-1};L.prototype._match=function(t,e){if(this.length-t<e.length)return!1;for(let r=0;r<e.length;r++)if(this.get(t+r)!==e[r])return!1;return!0};(function(){let t={readDoubleBE:8,readDoubleLE:8,readFloatBE:4,readFloatLE:4,readInt32BE:4,readInt32LE:4,readUInt32BE:4,readUInt32LE:4,readInt16BE:2,readInt16LE:2,readUInt16BE:2,readUInt16LE:2,readInt8:1,readUInt8:1,readIntBE:null,readIntLE:null,readUIntBE:null,readUIntLE:null};for(let e in t)(function(r){t[r]===null?L.prototype[r]=function(n,i){return this.slice(n,n+i)[r](0,i)}:L.prototype[r]=function(n=0){return this.slice(n,n+t[r])[r](0)}})(e)})();L.prototype._isBufferList=function(e){return e instanceof L||L.isBufferList(e)};L.isBufferList=function(e){return e!=null&&e[Ra]};Fa.exports=L});var Da=p((Bg,fr)=>{"use strict";var ai=Pa().Duplex,Vd=Ie(),wt=La();function W(t){if(!(this instanceof W))return new W(t);if(typeof t=="function"){this._callback=t;let e=function(n){this._callback&&(this._callback(n),this._callback=null)}.bind(this);this.on("pipe",function(n){n.on("error",e)}),this.on("unpipe",function(n){n.removeListener("error",e)}),t=null}wt._init.call(this,t),ai.call(this)}Vd(W,ai);Object.assign(W.prototype,wt.prototype);W.prototype._new=function(e){return new W(e)};W.prototype._write=function(e,r,n){this._appendBuffer(e),typeof n=="function"&&n()};W.prototype._read=function(e){if(!this.length)return this.push(null);e=Math.min(e,this.length),this.push(this.slice(0,e)),this.consume(e)};W.prototype.end=function(e){ai.prototype.end.call(this,e),this._callback&&(this._callback(null,this.slice()),this._callback=null)};W.prototype._destroy=function(e,r){this._bufs.length=0,this.length=0,r(e)};W.prototype._isBufferList=function(e){return e instanceof W||e instanceof wt||W.isBufferList(e)};W.isBufferList=wt.isBufferList;fr.exports=W;fr.exports.BufferListStream=W;fr.exports.BufferList=wt});var mr=p((jg,fi)=>{"use strict";var Wd=require("readline"),Hd=Y(),ka=ns(),dr=as(),hr=us(),Gd=ps(),zd=Es(),Kd=Cs(),Yd=Tn(),{BufferListStream:Jd}=Da(),li=Symbol("text"),ci=Symbol("prefixText"),Xd=3,ui=class{constructor(){this.requests=0,this.mutedStream=new Jd,this.mutedStream.pipe(process.stdout);let e=this;this.ourEmit=function(r,n,...i){let{stdin:o}=process;if(e.requests>0||o.emit===e.ourEmit){if(r==="keypress")return;r==="data"&&n.includes(Xd)&&process.emit("SIGINT"),Reflect.apply(e.oldEmit,this,[r,n,...i])}else Reflect.apply(process.stdin.emit,this,[r,n,...i])}}start(){this.requests++,this.requests===1&&this.realStart()}stop(){if(this.requests<=0)throw new Error("`stop` called more times than `start`");this.requests--,this.requests===0&&this.realStop()}realStart(){process.platform!=="win32"&&(this.rl=Wd.createInterface({input:process.stdin,output:this.mutedStream}),this.rl.on("SIGINT",()=>{process.listenerCount("SIGINT")===0?process.emit("SIGINT"):(this.rl.close(),process.kill(process.pid,"SIGINT"))}))}realStop(){process.platform!=="win32"&&(this.rl.close(),this.rl=void 0)}},pr,gr=class{constructor(e){pr||(pr=new ui),typeof e=="string"&&(e={text:e}),this.options={text:"",color:"cyan",stream:process.stderr,discardStdin:!0,...e},this.spinner=this.options.spinner,this.color=this.options.color,this.hideCursor=this.options.hideCursor!==!1,this.interval=this.options.interval||this.spinner.interval||100,this.stream=this.options.stream,this.id=void 0,this.isEnabled=typeof this.options.isEnabled=="boolean"?this.options.isEnabled:Kd({stream:this.stream}),this.isSilent=typeof this.options.isSilent=="boolean"?this.options.isSilent:!1,this.text=this.options.text,this.prefixText=this.options.prefixText,this.linesToClear=0,this.indent=this.options.indent,this.discardStdin=this.options.discardStdin,this.isDiscardingStdin=!1}get indent(){return this._indent}set indent(e=0){if(!(e>=0&&Number.isInteger(e)))throw new Error("The `indent` option must be an integer from 0 and up");this._indent=e}_updateInterval(e){e!==void 0&&(this.interval=e)}get spinner(){return this._spinner}set spinner(e){if(this.frameIndex=0,typeof e=="object"){if(e.frames===void 0)throw new Error("The given spinner must have a `frames` property");this._spinner=e}else if(!Yd())this._spinner=dr.line;else if(e===void 0)this._spinner=dr.dots;else if(e!=="default"&&dr[e])this._spinner=dr[e];else throw new Error(`There is no built-in spinner named '${e}'. See https://github.com/sindresorhus/cli-spinners/blob/main/spinners.json for a full list.`);this._updateInterval(this._spinner.interval)}get text(){return this[li]}set text(e){this[li]=e,this.updateLineCount()}get prefixText(){return this[ci]}set prefixText(e){this[ci]=e,this.updateLineCount()}get isSpinning(){return this.id!==void 0}getFullPrefixText(e=this[ci],r=" "){return typeof e=="string"?e+r:typeof e=="function"?e()+r:""}updateLineCount(){let e=this.stream.columns||80,r=this.getFullPrefixText(this.prefixText,"-");this.lineCount=0;for(let n of Gd(r+"--"+this[li]).split(`
28
28
  `))this.lineCount+=Math.max(1,Math.ceil(zd(n)/e))}get isEnabled(){return this._isEnabled&&!this.isSilent}set isEnabled(e){if(typeof e!="boolean")throw new TypeError("The `isEnabled` option must be a boolean");this._isEnabled=e}get isSilent(){return this._isSilent}set isSilent(e){if(typeof e!="boolean")throw new TypeError("The `isSilent` option must be a boolean");this._isSilent=e}frame(){let{frames:e}=this.spinner,r=e[this.frameIndex];this.color&&(r=Hd[this.color](r)),this.frameIndex=++this.frameIndex%e.length;let n=typeof this.prefixText=="string"&&this.prefixText!==""?this.prefixText+" ":"",i=typeof this.text=="string"?" "+this.text:"";return n+r+i}clear(){if(!this.isEnabled||!this.stream.isTTY)return this;for(let e=0;e<this.linesToClear;e++)e>0&&this.stream.moveCursor(0,-1),this.stream.clearLine(),this.stream.cursorTo(this.indent);return this.linesToClear=0,this}render(){return this.isSilent?this:(this.clear(),this.stream.write(this.frame()),this.linesToClear=this.lineCount,this)}start(e){return e&&(this.text=e),this.isSilent?this:this.isEnabled?this.isSpinning?this:(this.hideCursor&&ka.hide(this.stream),this.discardStdin&&process.stdin.isTTY&&(this.isDiscardingStdin=!0,pr.start()),this.render(),this.id=setInterval(this.render.bind(this),this.interval),this):(this.text&&this.stream.write(`- ${this.text}
29
29
  `),this)}stop(){return this.isEnabled?(clearInterval(this.id),this.id=void 0,this.frameIndex=0,this.clear(),this.hideCursor&&ka.show(this.stream),this.discardStdin&&process.stdin.isTTY&&this.isDiscardingStdin&&(pr.stop(),this.isDiscardingStdin=!1),this):this}succeed(e){return this.stopAndPersist({symbol:hr.success,text:e})}fail(e){return this.stopAndPersist({symbol:hr.error,text:e})}warn(e){return this.stopAndPersist({symbol:hr.warning,text:e})}info(e){return this.stopAndPersist({symbol:hr.info,text:e})}stopAndPersist(e={}){if(this.isSilent)return this;let r=e.prefixText||this.prefixText,n=e.text||this.text,i=typeof n=="string"?" "+n:"";return this.stop(),this.stream.write(`${this.getFullPrefixText(r," ")}${e.symbol||" "}${i}
30
30
  `),this}},Zd=function(t){return new gr(t)};fi.exports=Zd;fi.exports.promise=(t,e)=>{if(typeof t.then!="function")throw new TypeError("Parameter `action` must be a Promise");let r=new gr(e);return r.start(),(async()=>{try{await t,r.succeed()}catch{r.fail()}})(),r}});var hi=p(($g,Ma)=>{"use strict";var Na=require("fs"),di;function Qd(){try{return Na.statSync("/.dockerenv"),!0}catch{return!1}}function eh(){try{return Na.readFileSync("/proc/self/cgroup","utf8").includes("docker")}catch{return!1}}Ma.exports=()=>(di===void 0&&(di=Qd()||eh()),di)});var ja=p((Ug,pi)=>{"use strict";var th=require("os"),rh=require("fs"),qa=hi(),Ba=()=>{if(process.platform!=="linux")return!1;if(th.release().toLowerCase().includes("microsoft"))return!qa();try{return rh.readFileSync("/proc/version","utf8").toLowerCase().includes("microsoft")?!qa():!1}catch{return!1}};process.env.__IS_WSL_TEST__?pi.exports=Ba:pi.exports=Ba()});var Ua=p((Vg,$a)=>{"use strict";$a.exports=(t,e,r)=>{let n=i=>Object.defineProperty(t,e,{value:i,enumerable:!0,writable:!0});return Object.defineProperty(t,e,{configurable:!0,enumerable:!0,get(){let i=r();return n(i),i},set(i){n(i)}}),t}});var xi=p((Wg,Ka)=>{var nh=require("path"),ih=require("child_process"),{promises:_r,constants:za}=require("fs"),yr=ja(),oh=hi(),mi=Ua(),Va=nh.join(__dirname,"xdg-open"),{platform:Je,arch:Wa}=process,sh=()=>{try{return _r.statSync("/run/.containerenv"),!0}catch{return!1}},gi;function ah(){return gi===void 0&&(gi=sh()||oh()),gi}var lh=(()=>{let t="/mnt/",e;return async function(){if(e)return e;let r="/etc/wsl.conf",n=!1;try{await _r.access(r,za.F_OK),n=!0}catch{}if(!n)return t;let i=await _r.readFile(r,{encoding:"utf8"}),o=/(?<!#.*)root\s*=\s*(?<mountPoint>.*)/g.exec(i);return o?(e=o.groups.mountPoint.trim(),e=e.endsWith("/")?e:`${e}/`,e):t}})(),Ha=async(t,e)=>{let r;for(let n of t)try{return await e(n)}catch(i){r=i}throw r},xr=async t=>{if(t={wait:!1,background:!1,newInstance:!1,allowNonzeroExitCode:!1,...t},Array.isArray(t.app))return Ha(t.app,a=>xr({...t,app:a}));let{name:e,arguments:r=[]}=t.app||{};if(r=[...r],Array.isArray(e))return Ha(e,a=>xr({...t,app:{name:a,arguments:r}}));let n,i=[],o={};if(Je==="darwin")n="open",t.wait&&i.push("--wait-apps"),t.background&&i.push("--background"),t.newInstance&&i.push("--new"),e&&i.push("-a",e);else if(Je==="win32"||yr&&!ah()&&!e){let a=await lh();n=yr?`${a}c/Windows/System32/WindowsPowerShell/v1.0/powershell.exe`:`${process.env.SYSTEMROOT}\\System32\\WindowsPowerShell\\v1.0\\powershell`,i.push("-NoProfile","-NonInteractive","\u2013ExecutionPolicy","Bypass","-EncodedCommand"),yr||(o.windowsVerbatimArguments=!0);let l=["Start"];t.wait&&l.push("-Wait"),e?(l.push(`"\`"${e}\`""`,"-ArgumentList"),t.target&&r.unshift(t.target)):t.target&&l.push(`"${t.target}"`),r.length>0&&(r=r.map(c=>`"\`"${c}\`""`),l.push(r.join(","))),t.target=Buffer.from(l.join(" "),"utf16le").toString("base64")}else{if(e)n=e;else{let a=!__dirname||__dirname==="/",l=!1;try{await _r.access(Va,za.X_OK),l=!0}catch{}n=process.versions.electron||Je==="android"||a||!l?"xdg-open":Va}r.length>0&&i.push(...r),t.wait||(o.stdio="ignore",o.detached=!0)}t.target&&i.push(t.target),Je==="darwin"&&r.length>0&&i.push("--args",...r);let s=ih.spawn(n,i,o);return t.wait?new Promise((a,l)=>{s.once("error",l),s.once("close",c=>{if(!t.allowNonzeroExitCode&&c>0){l(new Error(`Exited with code ${c}`));return}a(s)})}):(s.unref(),s)},yi=(t,e)=>{if(typeof t!="string")throw new TypeError("Expected a `target`");return xr({...e,target:t})},ch=(t,e)=>{if(typeof t!="string")throw new TypeError("Expected a `name`");let{arguments:r=[]}=e||{};if(r!=null&&!Array.isArray(r))throw new TypeError("Expected `appArguments` as Array type");return xr({...e,app:{name:t,arguments:r}})};function Ga(t){if(typeof t=="string"||Array.isArray(t))return t;let{[Wa]:e}=t;if(!e)throw new Error(`${Wa} is not supported`);return e}function _i({[Je]:t},{wsl:e}){if(e&&yr)return Ga(e);if(!t)throw new Error(`${Je} is not supported`);return Ga(t)}var br={};mi(br,"chrome",()=>_i({darwin:"google chrome",win32:"chrome",linux:["google-chrome","google-chrome-stable","chromium"]},{wsl:{ia32:"/mnt/c/Program Files (x86)/Google/Chrome/Application/chrome.exe",x64:["/mnt/c/Program Files/Google/Chrome/Application/chrome.exe","/mnt/c/Program Files (x86)/Google/Chrome/Application/chrome.exe"]}}));mi(br,"firefox",()=>_i({darwin:"firefox",win32:"C:\\Program Files\\Mozilla Firefox\\firefox.exe",linux:"firefox"},{wsl:"/mnt/c/Program Files/Mozilla Firefox/firefox.exe"}));mi(br,"edge",()=>_i({darwin:"microsoft edge",win32:"msedge",linux:["microsoft-edge","microsoft-edge-dev"]},{wsl:"/mnt/c/Program Files (x86)/Microsoft/Edge/Application/msedge.exe"}));yi.apps=br;yi.openApp=ch;Ka.exports=yi});var Et=p((Hg,Za)=>{"use strict";var vt=require("fs"),Ja=require("path"),uh=require("crypto"),fh=require("os"),dh=Ja.join(fh.homedir(),".xFramework","instances","default"),Xe=Ja.join(dh,"license.key"),hh=`-----BEGIN PUBLIC KEY-----
@@ -35,11 +35,11 @@ BC8n5TsJENetqqmUORIWbyYkJ7wy0mtzXxe/yX3b9exUeZWt9PqrwIvax19WjyhR
35
35
  Hw6HyxZRvQ4TFWGRaEHh/GuLDQ+yNVBhhsphIqJAoMPZ4bSewyxlzM6qULuG35NY
36
36
  QKmi3vKOGAxG733mOS4aarZdL288bcOAV0QWjdQnRUxZNo7+t8+lS1Wo1LwZRsK2
37
37
  vwIDAQAB
38
- -----END PUBLIC KEY-----`;function Ya(t){let e=t.replace(/-/g,"+").replace(/_/g,"/"),r=e+"==".slice(0,(4-e.length%4)%4);return Buffer.from(r,"base64")}function Xa(t){let e=t.trim().split(".");if(e.length!==3)throw new Error("Invalid license key format");let[r,n,i]=e,o=`${r}.${n}`,s=Ya(i),a=uh.createVerify("SHA256");if(a.update(o),!a.verify(hh,s))throw new Error("License key signature is invalid");return JSON.parse(Ya(n).toString("utf8"))}function ph(){if(!vt.existsSync(Xe))return{valid:!0,type:"community",company:null,email:null,domains:[],expiresAt:null,daysRemaining:null,features:[],isLicensed:!1};try{let t=vt.readFileSync(Xe,"utf8").trim(),e=Xa(t),r=Math.floor(Date.now()/1e3);if(e.exp&&e.exp<r)return{valid:!1,type:"expired",company:e.company||null,email:e.sub||null,domains:Array.isArray(e.domains)?e.domains.filter(Boolean):[],expiresAt:new Date(e.exp*1e3),daysRemaining:0,features:[],isLicensed:!1};let n=e.exp?new Date(e.exp*1e3):null,i=n?Math.ceil((n-new Date)/(1e3*60*60*24)):null;return{valid:!0,type:e.type||"professional",company:e.company||null,email:e.sub||null,domains:Array.isArray(e.domains)?e.domains.filter(Boolean):[],expiresAt:n,daysRemaining:i,features:e.features||["*"],isLicensed:!0}}catch(t){return{valid:!1,type:"invalid",company:null,email:null,expiresAt:null,daysRemaining:null,features:[],isLicensed:!1,error:t.message}}}function gh(t){if(!t||typeof t!="string")throw new Error("No license key provided");let e=Xa(t.trim()),r=Math.floor(Date.now()/1e3);if(e.exp&&e.exp<r)throw new Error("This license key has already expired");return vt.writeFileSync(Xe,t.trim(),"utf8"),e}function mh(){return vt.existsSync(Xe)?(vt.unlinkSync(Xe),!0):!1}Za.exports={readLicense:ph,saveLicense:gh,removeLicense:mh,LICENSE_FILE:Xe}});var el=p((Gg,Qa)=>{var Ze=1e3,Qe=Ze*60,et=Qe*60,Le=et*24,yh=Le*7,_h=Le*365.25;Qa.exports=function(t,e){e=e||{};var r=typeof t;if(r==="string"&&t.length>0)return xh(t);if(r==="number"&&isFinite(t))return e.long?wh(t):bh(t);throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(t))};function xh(t){if(t=String(t),!(t.length>100)){var e=/^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(t);if(e){var r=parseFloat(e[1]),n=(e[2]||"ms").toLowerCase();switch(n){case"years":case"year":case"yrs":case"yr":case"y":return r*_h;case"weeks":case"week":case"w":return r*yh;case"days":case"day":case"d":return r*Le;case"hours":case"hour":case"hrs":case"hr":case"h":return r*et;case"minutes":case"minute":case"mins":case"min":case"m":return r*Qe;case"seconds":case"second":case"secs":case"sec":case"s":return r*Ze;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return r;default:return}}}}function bh(t){var e=Math.abs(t);return e>=Le?Math.round(t/Le)+"d":e>=et?Math.round(t/et)+"h":e>=Qe?Math.round(t/Qe)+"m":e>=Ze?Math.round(t/Ze)+"s":t+"ms"}function wh(t){var e=Math.abs(t);return e>=Le?wr(t,e,Le,"day"):e>=et?wr(t,e,et,"hour"):e>=Qe?wr(t,e,Qe,"minute"):e>=Ze?wr(t,e,Ze,"second"):t+" ms"}function wr(t,e,r,n){var i=e>=r*1.5;return Math.round(t/r)+" "+n+(i?"s":"")}});var bi=p((zg,tl)=>{function vh(t){r.debug=r,r.default=r,r.coerce=l,r.disable=s,r.enable=i,r.enabled=a,r.humanize=el(),r.destroy=c,Object.keys(t).forEach(u=>{r[u]=t[u]}),r.names=[],r.skips=[],r.formatters={};function e(u){let f=0;for(let d=0;d<u.length;d++)f=(f<<5)-f+u.charCodeAt(d),f|=0;return r.colors[Math.abs(f)%r.colors.length]}r.selectColor=e;function r(u){let f,d=null,m,g;function h(..._){if(!h.enabled)return;let x=h,C=Number(new Date),O=C-(f||C);x.diff=O,x.prev=f,x.curr=C,f=C,_[0]=r.coerce(_[0]),typeof _[0]!="string"&&_.unshift("%O");let P=0;_[0]=_[0].replace(/%([a-zA-Z%])/g,(Se,le)=>{if(Se==="%%")return"%";P++;let he=r.formatters[le];if(typeof he=="function"){let Rt=_[P];Se=he.call(x,Rt),_.splice(P,1),P--}return Se}),r.formatArgs.call(x,_),(x.log||r.log).apply(x,_)}return h.namespace=u,h.useColors=r.useColors(),h.color=r.selectColor(u),h.extend=n,h.destroy=r.destroy,Object.defineProperty(h,"enabled",{enumerable:!0,configurable:!1,get:()=>d!==null?d:(m!==r.namespaces&&(m=r.namespaces,g=r.enabled(u)),g),set:_=>{d=_}}),typeof r.init=="function"&&r.init(h),h}function n(u,f){let d=r(this.namespace+(typeof f>"u"?":":f)+u);return d.log=this.log,d}function i(u){r.save(u),r.namespaces=u,r.names=[],r.skips=[];let f=(typeof u=="string"?u:"").trim().replace(/\s+/g,",").split(",").filter(Boolean);for(let d of f)d[0]==="-"?r.skips.push(d.slice(1)):r.names.push(d)}function o(u,f){let d=0,m=0,g=-1,h=0;for(;d<u.length;)if(m<f.length&&(f[m]===u[d]||f[m]==="*"))f[m]==="*"?(g=m,h=d,m++):(d++,m++);else if(g!==-1)m=g+1,h++,d=h;else return!1;for(;m<f.length&&f[m]==="*";)m++;return m===f.length}function s(){let u=[...r.names,...r.skips.map(f=>"-"+f)].join(",");return r.enable(""),u}function a(u){for(let f of r.skips)if(o(u,f))return!1;for(let f of r.names)if(o(u,f))return!0;return!1}function l(u){return u instanceof Error?u.stack||u.message:u}function c(){console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.")}return r.enable(r.load()),r}tl.exports=vh});var rl=p((H,vr)=>{H.formatArgs=Sh;H.save=Ch;H.load=Ah;H.useColors=Eh;H.storage=Ih();H.destroy=(()=>{let t=!1;return()=>{t||(t=!0,console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."))}})();H.colors=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"];function Eh(){if(typeof window<"u"&&window.process&&(window.process.type==="renderer"||window.process.__nwjs))return!0;if(typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/))return!1;let t;return typeof document<"u"&&document.documentElement&&document.documentElement.style&&document.documentElement.style.WebkitAppearance||typeof window<"u"&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||typeof navigator<"u"&&navigator.userAgent&&(t=navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/))&&parseInt(t[1],10)>=31||typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/)}function Sh(t){if(t[0]=(this.useColors?"%c":"")+this.namespace+(this.useColors?" %c":" ")+t[0]+(this.useColors?"%c ":" ")+"+"+vr.exports.humanize(this.diff),!this.useColors)return;let e="color: "+this.color;t.splice(1,0,e,"color: inherit");let r=0,n=0;t[0].replace(/%[a-zA-Z%]/g,i=>{i!=="%%"&&(r++,i==="%c"&&(n=r))}),t.splice(n,0,e)}H.log=console.debug||console.log||(()=>{});function Ch(t){try{t?H.storage.setItem("debug",t):H.storage.removeItem("debug")}catch{}}function Ah(){let t;try{t=H.storage.getItem("debug")||H.storage.getItem("DEBUG")}catch{}return!t&&typeof process<"u"&&"env"in process&&(t=process.env.DEBUG),t}function Ih(){try{return localStorage}catch{}}vr.exports=bi()(H);var{formatters:Oh}=vr.exports;Oh.j=function(t){try{return JSON.stringify(t)}catch(e){return"[UnexpectedJSONParseError]: "+e.message}}});var il=p((V,Sr)=>{var Th=require("tty"),Er=require("util");V.init=Nh;V.log=Lh;V.formatArgs=Rh;V.save=Dh;V.load=kh;V.useColors=Ph;V.destroy=Er.deprecate(()=>{},"Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");V.colors=[6,2,3,4,5,1];try{let t=bn();t&&(t.stderr||t).level>=2&&(V.colors=[20,21,26,27,32,33,38,39,40,41,42,43,44,45,56,57,62,63,68,69,74,75,76,77,78,79,80,81,92,93,98,99,112,113,128,129,134,135,148,149,160,161,162,163,164,165,166,167,168,169,170,171,172,173,178,179,184,185,196,197,198,199,200,201,202,203,204,205,206,207,208,209,214,215,220,221])}catch{}V.inspectOpts=Object.keys(process.env).filter(t=>/^debug_/i.test(t)).reduce((t,e)=>{let r=e.substring(6).toLowerCase().replace(/_([a-z])/g,(i,o)=>o.toUpperCase()),n=process.env[e];return/^(yes|on|true|enabled)$/i.test(n)?n=!0:/^(no|off|false|disabled)$/i.test(n)?n=!1:n==="null"?n=null:n=Number(n),t[r]=n,t},{});function Ph(){return"colors"in V.inspectOpts?!!V.inspectOpts.colors:Th.isatty(process.stderr.fd)}function Rh(t){let{namespace:e,useColors:r}=this;if(r){let n=this.color,i="\x1B[3"+(n<8?n:"8;5;"+n),o=` ${i};1m${e} \x1B[0m`;t[0]=o+t[0].split(`
38
+ -----END PUBLIC KEY-----`;function Ya(t){let e=t.replace(/-/g,"+").replace(/_/g,"/"),r=e+"==".slice(0,(4-e.length%4)%4);return Buffer.from(r,"base64")}function Xa(t){let e=t.trim().split(".");if(e.length!==3)throw new Error("Invalid license key format");let[r,n,i]=e,o=`${r}.${n}`,s=Ya(i),a=uh.createVerify("SHA256");if(a.update(o),!a.verify(hh,s))throw new Error("License key signature is invalid");return JSON.parse(Ya(n).toString("utf8"))}function ph(){if(!vt.existsSync(Xe))return{valid:!0,type:"community",company:null,email:null,domains:[],expiresAt:null,daysRemaining:null,features:[],isLicensed:!1};try{let t=vt.readFileSync(Xe,"utf8").trim(),e=Xa(t),r=Math.floor(Date.now()/1e3);if(e.exp&&e.exp<r)return{valid:!1,type:"expired",company:e.company||null,email:e.sub||null,domains:Array.isArray(e.domains)?e.domains.filter(Boolean):[],expiresAt:new Date(e.exp*1e3),daysRemaining:0,features:[],isLicensed:!1};let n=e.exp?new Date(e.exp*1e3):null,i=n?Math.ceil((n-new Date)/(1e3*60*60*24)):null;return{valid:!0,type:e.type||"professional",company:e.company||null,email:e.sub||null,domains:Array.isArray(e.domains)?e.domains.filter(Boolean):[],expiresAt:n,daysRemaining:i,features:e.features||["*"],isLicensed:!0}}catch(t){return{valid:!1,type:"invalid",company:null,email:null,expiresAt:null,daysRemaining:null,features:[],isLicensed:!1,error:t.message}}}function gh(t){if(!t||typeof t!="string")throw new Error("No license key provided");let e=Xa(t.trim()),r=Math.floor(Date.now()/1e3);if(e.exp&&e.exp<r)throw new Error("This license key has already expired");return vt.writeFileSync(Xe,t.trim(),"utf8"),e}function mh(){return vt.existsSync(Xe)?(vt.unlinkSync(Xe),!0):!1}Za.exports={readLicense:ph,saveLicense:gh,removeLicense:mh,LICENSE_FILE:Xe}});var el=p((Gg,Qa)=>{var Ze=1e3,Qe=Ze*60,et=Qe*60,Le=et*24,yh=Le*7,_h=Le*365.25;Qa.exports=function(t,e){e=e||{};var r=typeof t;if(r==="string"&&t.length>0)return xh(t);if(r==="number"&&isFinite(t))return e.long?wh(t):bh(t);throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(t))};function xh(t){if(t=String(t),!(t.length>100)){var e=/^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(t);if(e){var r=parseFloat(e[1]),n=(e[2]||"ms").toLowerCase();switch(n){case"years":case"year":case"yrs":case"yr":case"y":return r*_h;case"weeks":case"week":case"w":return r*yh;case"days":case"day":case"d":return r*Le;case"hours":case"hour":case"hrs":case"hr":case"h":return r*et;case"minutes":case"minute":case"mins":case"min":case"m":return r*Qe;case"seconds":case"second":case"secs":case"sec":case"s":return r*Ze;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return r;default:return}}}}function bh(t){var e=Math.abs(t);return e>=Le?Math.round(t/Le)+"d":e>=et?Math.round(t/et)+"h":e>=Qe?Math.round(t/Qe)+"m":e>=Ze?Math.round(t/Ze)+"s":t+"ms"}function wh(t){var e=Math.abs(t);return e>=Le?wr(t,e,Le,"day"):e>=et?wr(t,e,et,"hour"):e>=Qe?wr(t,e,Qe,"minute"):e>=Ze?wr(t,e,Ze,"second"):t+" ms"}function wr(t,e,r,n){var i=e>=r*1.5;return Math.round(t/r)+" "+n+(i?"s":"")}});var bi=p((zg,tl)=>{function vh(t){r.debug=r,r.default=r,r.coerce=l,r.disable=s,r.enable=i,r.enabled=a,r.humanize=el(),r.destroy=c,Object.keys(t).forEach(u=>{r[u]=t[u]}),r.names=[],r.skips=[],r.formatters={};function e(u){let f=0;for(let d=0;d<u.length;d++)f=(f<<5)-f+u.charCodeAt(d),f|=0;return r.colors[Math.abs(f)%r.colors.length]}r.selectColor=e;function r(u){let f,d=null,m,g;function h(..._){if(!h.enabled)return;let x=h,S=Number(new Date),O=S-(f||S);x.diff=O,x.prev=f,x.curr=S,f=S,_[0]=r.coerce(_[0]),typeof _[0]!="string"&&_.unshift("%O");let P=0;_[0]=_[0].replace(/%([a-zA-Z%])/g,(Se,le)=>{if(Se==="%%")return"%";P++;let he=r.formatters[le];if(typeof he=="function"){let Rt=_[P];Se=he.call(x,Rt),_.splice(P,1),P--}return Se}),r.formatArgs.call(x,_),(x.log||r.log).apply(x,_)}return h.namespace=u,h.useColors=r.useColors(),h.color=r.selectColor(u),h.extend=n,h.destroy=r.destroy,Object.defineProperty(h,"enabled",{enumerable:!0,configurable:!1,get:()=>d!==null?d:(m!==r.namespaces&&(m=r.namespaces,g=r.enabled(u)),g),set:_=>{d=_}}),typeof r.init=="function"&&r.init(h),h}function n(u,f){let d=r(this.namespace+(typeof f>"u"?":":f)+u);return d.log=this.log,d}function i(u){r.save(u),r.namespaces=u,r.names=[],r.skips=[];let f=(typeof u=="string"?u:"").trim().replace(/\s+/g,",").split(",").filter(Boolean);for(let d of f)d[0]==="-"?r.skips.push(d.slice(1)):r.names.push(d)}function o(u,f){let d=0,m=0,g=-1,h=0;for(;d<u.length;)if(m<f.length&&(f[m]===u[d]||f[m]==="*"))f[m]==="*"?(g=m,h=d,m++):(d++,m++);else if(g!==-1)m=g+1,h++,d=h;else return!1;for(;m<f.length&&f[m]==="*";)m++;return m===f.length}function s(){let u=[...r.names,...r.skips.map(f=>"-"+f)].join(",");return r.enable(""),u}function a(u){for(let f of r.skips)if(o(u,f))return!1;for(let f of r.names)if(o(u,f))return!0;return!1}function l(u){return u instanceof Error?u.stack||u.message:u}function c(){console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.")}return r.enable(r.load()),r}tl.exports=vh});var rl=p((H,vr)=>{H.formatArgs=Sh;H.save=Ch;H.load=Ah;H.useColors=Eh;H.storage=Ih();H.destroy=(()=>{let t=!1;return()=>{t||(t=!0,console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."))}})();H.colors=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"];function Eh(){if(typeof window<"u"&&window.process&&(window.process.type==="renderer"||window.process.__nwjs))return!0;if(typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/))return!1;let t;return typeof document<"u"&&document.documentElement&&document.documentElement.style&&document.documentElement.style.WebkitAppearance||typeof window<"u"&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||typeof navigator<"u"&&navigator.userAgent&&(t=navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/))&&parseInt(t[1],10)>=31||typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/)}function Sh(t){if(t[0]=(this.useColors?"%c":"")+this.namespace+(this.useColors?" %c":" ")+t[0]+(this.useColors?"%c ":" ")+"+"+vr.exports.humanize(this.diff),!this.useColors)return;let e="color: "+this.color;t.splice(1,0,e,"color: inherit");let r=0,n=0;t[0].replace(/%[a-zA-Z%]/g,i=>{i!=="%%"&&(r++,i==="%c"&&(n=r))}),t.splice(n,0,e)}H.log=console.debug||console.log||(()=>{});function Ch(t){try{t?H.storage.setItem("debug",t):H.storage.removeItem("debug")}catch{}}function Ah(){let t;try{t=H.storage.getItem("debug")||H.storage.getItem("DEBUG")}catch{}return!t&&typeof process<"u"&&"env"in process&&(t=process.env.DEBUG),t}function Ih(){try{return localStorage}catch{}}vr.exports=bi()(H);var{formatters:Oh}=vr.exports;Oh.j=function(t){try{return JSON.stringify(t)}catch(e){return"[UnexpectedJSONParseError]: "+e.message}}});var il=p((V,Sr)=>{var Th=require("tty"),Er=require("util");V.init=Nh;V.log=Lh;V.formatArgs=Rh;V.save=Dh;V.load=kh;V.useColors=Ph;V.destroy=Er.deprecate(()=>{},"Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");V.colors=[6,2,3,4,5,1];try{let t=bn();t&&(t.stderr||t).level>=2&&(V.colors=[20,21,26,27,32,33,38,39,40,41,42,43,44,45,56,57,62,63,68,69,74,75,76,77,78,79,80,81,92,93,98,99,112,113,128,129,134,135,148,149,160,161,162,163,164,165,166,167,168,169,170,171,172,173,178,179,184,185,196,197,198,199,200,201,202,203,204,205,206,207,208,209,214,215,220,221])}catch{}V.inspectOpts=Object.keys(process.env).filter(t=>/^debug_/i.test(t)).reduce((t,e)=>{let r=e.substring(6).toLowerCase().replace(/_([a-z])/g,(i,o)=>o.toUpperCase()),n=process.env[e];return/^(yes|on|true|enabled)$/i.test(n)?n=!0:/^(no|off|false|disabled)$/i.test(n)?n=!1:n==="null"?n=null:n=Number(n),t[r]=n,t},{});function Ph(){return"colors"in V.inspectOpts?!!V.inspectOpts.colors:Th.isatty(process.stderr.fd)}function Rh(t){let{namespace:e,useColors:r}=this;if(r){let n=this.color,i="\x1B[3"+(n<8?n:"8;5;"+n),o=` ${i};1m${e} \x1B[0m`;t[0]=o+t[0].split(`
39
39
  `).join(`
40
40
  `+o),t.push(i+"m+"+Sr.exports.humanize(this.diff)+"\x1B[0m")}else t[0]=Fh()+e+" "+t[0]}function Fh(){return V.inspectOpts.hideDate?"":new Date().toISOString()+" "}function Lh(...t){return process.stderr.write(Er.formatWithOptions(V.inspectOpts,...t)+`
41
41
  `)}function Dh(t){t?process.env.DEBUG=t:delete process.env.DEBUG}function kh(){return process.env.DEBUG}function Nh(t){t.inspectOpts={};let e=Object.keys(V.inspectOpts);for(let r=0;r<e.length;r++)t.inspectOpts[e[r]]=V.inspectOpts[e[r]]}Sr.exports=bi()(V);var{formatters:nl}=Sr.exports;nl.o=function(t){return this.inspectOpts.colors=this.useColors,Er.inspect(t,this.inspectOpts).split(`
42
- `).map(e=>e.trim()).join(" ")};nl.O=function(t){return this.inspectOpts.colors=this.useColors,Er.inspect(t,this.inspectOpts)}});var ol=p((Kg,wi)=>{typeof process>"u"||process.type==="renderer"||process.browser===!0||process.__nwjs?wi.exports=rl():wi.exports=il()});var ll=p((Yg,al)=>{al.exports=sl;function sl(t,e){if(t&&e)return sl(t)(e);if(typeof t!="function")throw new TypeError("need wrapper function");return Object.keys(t).forEach(function(n){r[n]=t[n]}),r;function r(){for(var n=new Array(arguments.length),i=0;i<n.length;i++)n[i]=arguments[i];var o=t.apply(this,n),s=n[n.length-1];return typeof o=="function"&&o!==s&&Object.keys(s).forEach(function(a){o[a]=s[a]}),o}}});var Ei=p((Jg,vi)=>{var cl=ll();vi.exports=cl(Cr);vi.exports.strict=cl(ul);Cr.proto=Cr(function(){Object.defineProperty(Function.prototype,"once",{value:function(){return Cr(this)},configurable:!0}),Object.defineProperty(Function.prototype,"onceStrict",{value:function(){return ul(this)},configurable:!0})});function Cr(t){var e=function(){return e.called?e.value:(e.called=!0,e.value=t.apply(this,arguments))};return e.called=!1,e}function ul(t){var e=function(){if(e.called)throw new Error(e.onceError);return e.called=!0,e.value=t.apply(this,arguments)},r=t.name||"Function wrapped with `once`";return e.onceError=r+" shouldn't be called more than once",e.called=!1,e}});var hl=p((Xg,dl)=>{var Mh=Ei(),qh=function(){},Bh=global.Bare?queueMicrotask:process.nextTick.bind(process),jh=function(t){return t.setHeader&&typeof t.abort=="function"},$h=function(t){return t.stdio&&Array.isArray(t.stdio)&&t.stdio.length===3},fl=function(t,e,r){if(typeof e=="function")return fl(t,null,e);e||(e={}),r=Mh(r||qh);var n=t._writableState,i=t._readableState,o=e.readable||e.readable!==!1&&t.readable,s=e.writable||e.writable!==!1&&t.writable,a=!1,l=function(){t.writable||c()},c=function(){s=!1,o||r.call(t)},u=function(){o=!1,s||r.call(t)},f=function(_){r.call(t,_?new Error("exited with error code: "+_):null)},d=function(_){r.call(t,_)},m=function(){Bh(g)},g=function(){if(!a){if(o&&!(i&&i.ended&&!i.destroyed))return r.call(t,new Error("premature close"));if(s&&!(n&&n.ended&&!n.destroyed))return r.call(t,new Error("premature close"))}},h=function(){t.req.on("finish",c)};return jh(t)?(t.on("complete",c),t.on("abort",m),t.req?h():t.on("request",h)):s&&!n&&(t.on("end",l),t.on("close",l)),$h(t)&&t.on("exit",f),t.on("end",u),t.on("finish",c),e.error!==!1&&t.on("error",d),t.on("close",m),function(){a=!0,t.removeListener("complete",c),t.removeListener("abort",m),t.removeListener("request",h),t.req&&t.req.removeListener("finish",c),t.removeListener("end",l),t.removeListener("close",l),t.removeListener("finish",c),t.removeListener("exit",f),t.removeListener("end",u),t.removeListener("error",d),t.removeListener("close",m)}};dl.exports=fl});var ml=p((Zg,gl)=>{var Uh=Ei(),Vh=hl(),Ar;try{Ar=require("fs")}catch{}var St=function(){},Wh=typeof process>"u"?!1:/^v?\.0/.test(process.version),Ir=function(t){return typeof t=="function"},Hh=function(t){return!Wh||!Ar?!1:(t instanceof(Ar.ReadStream||St)||t instanceof(Ar.WriteStream||St))&&Ir(t.close)},Gh=function(t){return t.setHeader&&Ir(t.abort)},zh=function(t,e,r,n){n=Uh(n);var i=!1;t.on("close",function(){i=!0}),Vh(t,{readable:e,writable:r},function(s){if(s)return n(s);i=!0,n()});var o=!1;return function(s){if(!i&&!o){if(o=!0,Hh(t))return t.close(St);if(Gh(t))return t.abort();if(Ir(t.destroy))return t.destroy();n(s||new Error("stream was destroyed"))}}},pl=function(t){t()},Kh=function(t,e){return t.pipe(e)},Yh=function(){var t=Array.prototype.slice.call(arguments),e=Ir(t[t.length-1]||St)&&t.pop()||St;if(Array.isArray(t[0])&&(t=t[0]),t.length<2)throw new Error("pump requires two streams per minimum");var r,n=t.map(function(i,o){var s=o<t.length-1,a=o>0;return zh(i,s,a,function(l){r||(r=l),l&&n.forEach(pl),!s&&(n.forEach(pl),e(r))})});return t.reduce(Kh)};gl.exports=Yh});var _l=p((Qg,yl)=>{"use strict";var{PassThrough:Jh}=require("stream");yl.exports=t=>{t={...t};let{array:e}=t,{encoding:r}=t,n=r==="buffer",i=!1;e?i=!(r||n):r=r||"utf8",n&&(r=null);let o=new Jh({objectMode:i});r&&o.setEncoding(r);let s=0,a=[];return o.on("data",l=>{a.push(l),i?s=a.length:s+=l.length}),o.getBufferedValue=()=>e?a:n?Buffer.concat(a,s):a.join(""),o.getBufferedLength=()=>s,o}});var xl=p((em,tt)=>{"use strict";var{constants:Xh}=require("buffer"),Zh=ml(),Qh=_l(),Or=class extends Error{constructor(){super("maxBuffer exceeded"),this.name="MaxBufferError"}};async function Tr(t,e){if(!t)return Promise.reject(new Error("Expected a stream"));e={maxBuffer:1/0,...e};let{maxBuffer:r}=e,n;return await new Promise((i,o)=>{let s=a=>{a&&n.getBufferedLength()<=Xh.MAX_LENGTH&&(a.bufferedData=n.getBufferedValue()),o(a)};n=Zh(t,Qh(e),a=>{if(a){s(a);return}i()}),n.on("data",()=>{n.getBufferedLength()>r&&s(new Or)})}),n.getBufferedValue()}tt.exports=Tr;tt.exports.default=Tr;tt.exports.buffer=(t,e)=>Tr(t,{...e,encoding:"buffer"});tt.exports.array=(t,e)=>Tr(t,{...e,array:!0});tt.exports.MaxBufferError=Or});var El=p((tm,vl)=>{vl.exports=Pr;function Pr(){this.pending=0,this.max=1/0,this.listeners=[],this.waiting=[],this.error=null}Pr.prototype.go=function(t){this.pending<this.max?wl(this,t):this.waiting.push(t)};Pr.prototype.wait=function(t){this.pending===0?t(this.error):this.listeners.push(t)};Pr.prototype.hold=function(){return bl(this)};function bl(t){t.pending+=1;var e=!1;return r;function r(i){if(e)throw new Error("callback called twice");if(e=!0,t.error=t.error||i,t.pending-=1,t.waiting.length>0&&t.pending<t.max)wl(t,t.waiting.shift());else if(t.pending===0){var o=t.listeners;t.listeners=[],o.forEach(n)}}function n(i){i(t.error)}}function wl(t,e){e(bl(t))}});var Cl=p(At=>{var Ct=require("fs"),Rr=require("util"),Si=require("stream"),Sl=Si.Readable,Ci=Si.Writable,ep=Si.PassThrough,tp=El(),Fr=require("events").EventEmitter;At.createFromBuffer=rp;At.createFromFd=np;At.BufferSlicer=de;At.FdSlicer=fe;Rr.inherits(fe,Fr);function fe(t,e){e=e||{},Fr.call(this),this.fd=t,this.pend=new tp,this.pend.max=1,this.refCount=0,this.autoClose=!!e.autoClose}fe.prototype.read=function(t,e,r,n,i){var o=this;o.pend.go(function(s){Ct.read(o.fd,t,e,r,n,function(a,l,c){s(),i(a,l,c)})})};fe.prototype.write=function(t,e,r,n,i){var o=this;o.pend.go(function(s){Ct.write(o.fd,t,e,r,n,function(a,l,c){s(),i(a,l,c)})})};fe.prototype.createReadStream=function(t){return new Lr(this,t)};fe.prototype.createWriteStream=function(t){return new Dr(this,t)};fe.prototype.ref=function(){this.refCount+=1};fe.prototype.unref=function(){var t=this;if(t.refCount-=1,t.refCount>0)return;if(t.refCount<0)throw new Error("invalid unref");t.autoClose&&Ct.close(t.fd,e);function e(r){r?t.emit("error",r):t.emit("close")}};Rr.inherits(Lr,Sl);function Lr(t,e){e=e||{},Sl.call(this,e),this.context=t,this.context.ref(),this.start=e.start||0,this.endOffset=e.end,this.pos=this.start,this.destroyed=!1}Lr.prototype._read=function(t){var e=this;if(!e.destroyed){var r=Math.min(e._readableState.highWaterMark,t);if(e.endOffset!=null&&(r=Math.min(r,e.endOffset-e.pos)),r<=0){e.destroyed=!0,e.push(null),e.context.unref();return}e.context.pend.go(function(n){if(e.destroyed)return n();var i=new Buffer(r);Ct.read(e.context.fd,i,0,r,e.pos,function(o,s){o?e.destroy(o):s===0?(e.destroyed=!0,e.push(null),e.context.unref()):(e.pos+=s,e.push(i.slice(0,s))),n()})})}};Lr.prototype.destroy=function(t){this.destroyed||(t=t||new Error("stream destroyed"),this.destroyed=!0,this.emit("error",t),this.context.unref())};Rr.inherits(Dr,Ci);function Dr(t,e){e=e||{},Ci.call(this,e),this.context=t,this.context.ref(),this.start=e.start||0,this.endOffset=e.end==null?1/0:+e.end,this.bytesWritten=0,this.pos=this.start,this.destroyed=!1,this.on("finish",this.destroy.bind(this))}Dr.prototype._write=function(t,e,r){var n=this;if(!n.destroyed){if(n.pos+t.length>n.endOffset){var i=new Error("maximum file length exceeded");i.code="ETOOBIG",n.destroy(),r(i);return}n.context.pend.go(function(o){if(n.destroyed)return o();Ct.write(n.context.fd,t,0,t.length,n.pos,function(s,a){s?(n.destroy(),o(),r(s)):(n.bytesWritten+=a,n.pos+=a,n.emit("progress"),o(),r())})})}};Dr.prototype.destroy=function(){this.destroyed||(this.destroyed=!0,this.context.unref())};Rr.inherits(de,Fr);function de(t,e){Fr.call(this),e=e||{},this.refCount=0,this.buffer=t,this.maxChunkSize=e.maxChunkSize||Number.MAX_SAFE_INTEGER}de.prototype.read=function(t,e,r,n,i){var o=n+r,s=o-this.buffer.length,a=s>0?s:r;this.buffer.copy(t,e,n,o),setImmediate(function(){i(null,a)})};de.prototype.write=function(t,e,r,n,i){t.copy(this.buffer,n,e,e+r),setImmediate(function(){i(null,r,t)})};de.prototype.createReadStream=function(t){t=t||{};var e=new ep(t);e.destroyed=!1,e.start=t.start||0,e.endOffset=t.end,e.pos=e.endOffset||this.buffer.length;for(var r=this.buffer.slice(e.start,e.pos),n=0;;){var i=n+this.maxChunkSize;if(i>=r.length){n<r.length&&e.write(r.slice(n,r.length));break}e.write(r.slice(n,i)),n=i}return e.end(),e.destroy=function(){e.destroyed=!0},e};de.prototype.createWriteStream=function(t){var e=this;t=t||{};var r=new Ci(t);return r.start=t.start||0,r.endOffset=t.end==null?this.buffer.length:+t.end,r.bytesWritten=0,r.pos=r.start,r.destroyed=!1,r._write=function(n,i,o){if(!r.destroyed){var s=r.pos+n.length;if(s>r.endOffset){var a=new Error("maximum file length exceeded");a.code="ETOOBIG",r.destroyed=!0,o(a);return}n.copy(e.buffer,r.pos,0,n.length),r.bytesWritten+=n.length,r.pos=s,r.emit("progress"),o()}},r.destroy=function(){r.destroyed=!0},r};de.prototype.ref=function(){this.refCount+=1};de.prototype.unref=function(){if(this.refCount-=1,this.refCount<0)throw new Error("invalid unref")};function rp(t,e){return new de(t,e)}function np(t,e){return new fe(t,e)}});var Ol=p((nm,Il)=>{var we=require("buffer").Buffer,Ai=[0,1996959894,3993919788,2567524794,124634137,1886057615,3915621685,2657392035,249268274,2044508324,3772115230,2547177864,162941995,2125561021,3887607047,2428444049,498536548,1789927666,4089016648,2227061214,450548861,1843258603,4107580753,2211677639,325883990,1684777152,4251122042,2321926636,335633487,1661365465,4195302755,2366115317,997073096,1281953886,3579855332,2724688242,1006888145,1258607687,3524101629,2768942443,901097722,1119000684,3686517206,2898065728,853044451,1172266101,3705015759,2882616665,651767980,1373503546,3369554304,3218104598,565507253,1454621731,3485111705,3099436303,671266974,1594198024,3322730930,2970347812,795835527,1483230225,3244367275,3060149565,1994146192,31158534,2563907772,4023717930,1907459465,112637215,2680153253,3904427059,2013776290,251722036,2517215374,3775830040,2137656763,141376813,2439277719,3865271297,1802195444,476864866,2238001368,4066508878,1812370925,453092731,2181625025,4111451223,1706088902,314042704,2344532202,4240017532,1658658271,366619977,2362670323,4224994405,1303535960,984961486,2747007092,3569037538,1256170817,1037604311,2765210733,3554079995,1131014506,879679996,2909243462,3663771856,1141124467,855842277,2852801631,3708648649,1342533948,654459306,3188396048,3373015174,1466479909,544179635,3110523913,3462522015,1591671054,702138776,2966460450,3352799412,1504918807,783551873,3082640443,3233442989,3988292384,2596254646,62317068,1957810842,3939845945,2647816111,81470997,1943803523,3814918930,2489596804,225274430,2053790376,3826175755,2466906013,167816743,2097651377,4027552580,2265490386,503444072,1762050814,4150417245,2154129355,426522225,1852507879,4275313526,2312317920,282753626,1742555852,4189708143,2394877945,397917763,1622183637,3604390888,2714866558,953729732,1340076626,3518719985,2797360999,1068828381,1219638859,3624741850,2936675148,906185462,1090812512,3747672003,2825379669,829329135,1181335161,3412177804,3160834842,628085408,1382605366,3423369109,3138078467,570562233,1426400815,3317316542,2998733608,733239954,1555261956,3268935591,3050360625,752459403,1541320221,2607071920,3965973030,1969922972,40735498,2617837225,3943577151,1913087877,83908371,2512341634,3803740692,2075208622,213261112,2463272603,3855990285,2094854071,198958881,2262029012,4057260610,1759359992,534414190,2176718541,4139329115,1873836001,414664567,2282248934,4279200368,1711684554,285281116,2405801727,4167216745,1634467795,376229701,2685067896,3608007406,1308918612,956543938,2808555105,3495958263,1231636301,1047427035,2932959818,3654703836,1088359270,936918e3,2847714899,3736837829,1202900863,817233897,3183342108,3401237130,1404277552,615818150,3134207493,3453421203,1423857449,601450431,3009837614,3294710456,1567103746,711928724,3020668471,3272380065,1510334235,755167117];typeof Int32Array<"u"&&(Ai=new Int32Array(Ai));function Al(t){if(we.isBuffer(t))return t;var e=typeof we.alloc=="function"&&typeof we.from=="function";if(typeof t=="number")return e?we.alloc(t):new we(t);if(typeof t=="string")return e?we.from(t):new we(t);throw new Error("input must be buffer, number, or string, received "+typeof t)}function ip(t){var e=Al(4);return e.writeInt32BE(t,0),e}function Ii(t,e){t=Al(t),we.isBuffer(e)&&(e=e.readUInt32BE(0));for(var r=~~e^-1,n=0;n<t.length;n++)r=Ai[(r^t[n])&255]^r>>>8;return r^-1}function Oi(){return ip(Ii.apply(null,arguments))}Oi.signed=function(){return Ii.apply(null,arguments)};Oi.unsigned=function(){return Ii.apply(null,arguments)>>>0};Il.exports=Oi});var kl=p(ae=>{var Ti=require("fs"),op=require("zlib"),Tl=Cl(),sp=Ol(),Mr=require("util"),qr=require("events").EventEmitter,Pl=require("stream").Transform,Pi=require("stream").PassThrough,ap=require("stream").Writable;ae.open=lp;ae.fromFd=Rl;ae.fromBuffer=cp;ae.fromRandomAccessReader=Ri;ae.dosDateTimeToDate=Ll;ae.validateFileName=Dl;ae.ZipFile=ve;ae.Entry=It;ae.RandomAccessReader=Ee;function lp(t,e,r){typeof e=="function"&&(r=e,e=null),e==null&&(e={}),e.autoClose==null&&(e.autoClose=!0),e.lazyEntries==null&&(e.lazyEntries=!1),e.decodeStrings==null&&(e.decodeStrings=!0),e.validateEntrySizes==null&&(e.validateEntrySizes=!0),e.strictFileNames==null&&(e.strictFileNames=!1),r==null&&(r=Nr),Ti.open(t,"r",function(n,i){if(n)return r(n);Rl(i,e,function(o,s){o&&Ti.close(i,Nr),r(o,s)})})}function Rl(t,e,r){typeof e=="function"&&(r=e,e=null),e==null&&(e={}),e.autoClose==null&&(e.autoClose=!1),e.lazyEntries==null&&(e.lazyEntries=!1),e.decodeStrings==null&&(e.decodeStrings=!0),e.validateEntrySizes==null&&(e.validateEntrySizes=!0),e.strictFileNames==null&&(e.strictFileNames=!1),r==null&&(r=Nr),Ti.fstat(t,function(n,i){if(n)return r(n);var o=Tl.createFromFd(t,{autoClose:!0});Ri(o,i.size,e,r)})}function cp(t,e,r){typeof e=="function"&&(r=e,e=null),e==null&&(e={}),e.autoClose=!1,e.lazyEntries==null&&(e.lazyEntries=!1),e.decodeStrings==null&&(e.decodeStrings=!0),e.validateEntrySizes==null&&(e.validateEntrySizes=!0),e.strictFileNames==null&&(e.strictFileNames=!1);var n=Tl.createFromBuffer(t,{maxChunkSize:65536});Ri(n,t.length,e,r)}function Ri(t,e,r,n){typeof r=="function"&&(n=r,r=null),r==null&&(r={}),r.autoClose==null&&(r.autoClose=!0),r.lazyEntries==null&&(r.lazyEntries=!1),r.decodeStrings==null&&(r.decodeStrings=!0);var i=!!r.decodeStrings;if(r.validateEntrySizes==null&&(r.validateEntrySizes=!0),r.strictFileNames==null&&(r.strictFileNames=!1),n==null&&(n=Nr),typeof e!="number")throw new Error("expected totalSize parameter to be a number");if(e>Number.MAX_SAFE_INTEGER)throw new Error("zip file too large. only file sizes up to 2^52 are supported due to JavaScript's Number type being an IEEE 754 double.");t.ref();var o=22,s=65535,a=Math.min(o+s,e),l=se(a),c=e-l.length;rt(t,l,0,a,c,function(u){if(u)return n(u);for(var f=a-o;f>=0;f-=1)if(l.readUInt32LE(f)===101010256){var d=l.slice(f),m=d.readUInt16LE(4);if(m!==0)return n(new Error("multi-disk zip files are not supported: found disk number: "+m));var g=d.readUInt16LE(10),h=d.readUInt32LE(16),_=d.readUInt16LE(20),x=d.length-o;if(_!==x)return n(new Error("invalid comment length. expected: "+x+". found: "+_));var C=i?kr(d,22,d.length,!1):d.slice(22);if(!(g===65535||h===4294967295))return n(null,new ve(t,h,e,g,C,r.autoClose,r.lazyEntries,i,r.validateEntrySizes,r.strictFileNames));var O=se(20),P=c+f-O.length;rt(t,O,0,O.length,P,function(D){if(D)return n(D);if(O.readUInt32LE(0)!==117853008)return n(new Error("invalid zip64 end of central directory locator signature"));var Se=nt(O,8),le=se(56);rt(t,le,0,le.length,Se,function(he){return he?n(he):le.readUInt32LE(0)!==101075792?n(new Error("invalid zip64 end of central directory record signature")):(g=nt(le,32),h=nt(le,48),n(null,new ve(t,h,e,g,C,r.autoClose,r.lazyEntries,i,r.validateEntrySizes,r.strictFileNames)))})});return}n(new Error("end of central directory record signature not found"))})}Mr.inherits(ve,qr);function ve(t,e,r,n,i,o,s,a,l,c){var u=this;qr.call(u),u.reader=t,u.reader.on("error",function(f){Fl(u,f)}),u.reader.once("close",function(){u.emit("close")}),u.readEntryCursor=e,u.fileSize=r,u.entryCount=n,u.comment=i,u.entriesRead=0,u.autoClose=!!o,u.lazyEntries=!!s,u.decodeStrings=!!a,u.validateEntrySizes=!!l,u.strictFileNames=!!c,u.isOpen=!0,u.emittedError=!1,u.lazyEntries||u._readEntry()}ve.prototype.close=function(){this.isOpen&&(this.isOpen=!1,this.reader.unref())};function ee(t,e){t.autoClose&&t.close(),Fl(t,e)}function Fl(t,e){t.emittedError||(t.emittedError=!0,t.emit("error",e))}ve.prototype.readEntry=function(){if(!this.lazyEntries)throw new Error("readEntry() called without lazyEntries:true");this._readEntry()};ve.prototype._readEntry=function(){var t=this;if(t.entryCount===t.entriesRead){setImmediate(function(){t.autoClose&&t.close(),!t.emittedError&&t.emit("end")});return}if(!t.emittedError){var e=se(46);rt(t.reader,e,0,e.length,t.readEntryCursor,function(r){if(r)return ee(t,r);if(!t.emittedError){var n=new It,i=e.readUInt32LE(0);if(i!==33639248)return ee(t,new Error("invalid central directory file header signature: 0x"+i.toString(16)));if(n.versionMadeBy=e.readUInt16LE(4),n.versionNeededToExtract=e.readUInt16LE(6),n.generalPurposeBitFlag=e.readUInt16LE(8),n.compressionMethod=e.readUInt16LE(10),n.lastModFileTime=e.readUInt16LE(12),n.lastModFileDate=e.readUInt16LE(14),n.crc32=e.readUInt32LE(16),n.compressedSize=e.readUInt32LE(20),n.uncompressedSize=e.readUInt32LE(24),n.fileNameLength=e.readUInt16LE(28),n.extraFieldLength=e.readUInt16LE(30),n.fileCommentLength=e.readUInt16LE(32),n.internalFileAttributes=e.readUInt16LE(36),n.externalFileAttributes=e.readUInt32LE(38),n.relativeOffsetOfLocalHeader=e.readUInt32LE(42),n.generalPurposeBitFlag&64)return ee(t,new Error("strong encryption is not supported"));t.readEntryCursor+=46,e=se(n.fileNameLength+n.extraFieldLength+n.fileCommentLength),rt(t.reader,e,0,e.length,t.readEntryCursor,function(o){if(o)return ee(t,o);if(!t.emittedError){var s=(n.generalPurposeBitFlag&2048)!==0;n.fileName=t.decodeStrings?kr(e,0,n.fileNameLength,s):e.slice(0,n.fileNameLength);var a=n.fileNameLength+n.extraFieldLength,l=e.slice(n.fileNameLength,a);n.extraFields=[];for(var c=0;c<l.length-3;){var u=l.readUInt16LE(c+0),f=l.readUInt16LE(c+2),d=c+4,m=d+f;if(m>l.length)return ee(t,new Error("extra field length exceeds extra field buffer size"));var g=se(f);l.copy(g,0,d,m),n.extraFields.push({id:u,data:g}),c=m}if(n.fileComment=t.decodeStrings?kr(e,a,a+n.fileCommentLength,s):e.slice(a,a+n.fileCommentLength),n.comment=n.fileComment,t.readEntryCursor+=e.length,t.entriesRead+=1,n.uncompressedSize===4294967295||n.compressedSize===4294967295||n.relativeOffsetOfLocalHeader===4294967295){for(var h=null,c=0;c<n.extraFields.length;c++){var _=n.extraFields[c];if(_.id===1){h=_.data;break}}if(h==null)return ee(t,new Error("expected zip64 extended information extra field"));var x=0;if(n.uncompressedSize===4294967295){if(x+8>h.length)return ee(t,new Error("zip64 extended information extra field does not include uncompressed size"));n.uncompressedSize=nt(h,x),x+=8}if(n.compressedSize===4294967295){if(x+8>h.length)return ee(t,new Error("zip64 extended information extra field does not include compressed size"));n.compressedSize=nt(h,x),x+=8}if(n.relativeOffsetOfLocalHeader===4294967295){if(x+8>h.length)return ee(t,new Error("zip64 extended information extra field does not include relative header offset"));n.relativeOffsetOfLocalHeader=nt(h,x),x+=8}}if(t.decodeStrings)for(var c=0;c<n.extraFields.length;c++){var _=n.extraFields[c];if(_.id===28789){if(_.data.length<6||_.data.readUInt8(0)!==1)continue;var C=_.data.readUInt32LE(1);if(sp.unsigned(e.slice(0,n.fileNameLength))!==C)continue;n.fileName=kr(_.data,5,_.data.length,!0);break}}if(t.validateEntrySizes&&n.compressionMethod===0){var O=n.uncompressedSize;if(n.isEncrypted()&&(O+=12),n.compressedSize!==O){var P="compressed/uncompressed size mismatch for stored file: "+n.compressedSize+" != "+n.uncompressedSize;return ee(t,new Error(P))}}if(t.decodeStrings){t.strictFileNames||(n.fileName=n.fileName.replace(/\\/g,"/"));var D=Dl(n.fileName,t.validateFileNameOptions);if(D!=null)return ee(t,new Error(D))}t.emit("entry",n),t.lazyEntries||t._readEntry()}})}})}};ve.prototype.openReadStream=function(t,e,r){var n=this,i=0,o=t.compressedSize;if(r==null)r=e,e={};else{if(e.decrypt!=null){if(!t.isEncrypted())throw new Error("options.decrypt can only be specified for encrypted entries");if(e.decrypt!==!1)throw new Error("invalid options.decrypt value: "+e.decrypt);if(t.isCompressed()&&e.decompress!==!1)throw new Error("entry is encrypted and compressed, and options.decompress !== false")}if(e.decompress!=null){if(!t.isCompressed())throw new Error("options.decompress can only be specified for compressed entries");if(!(e.decompress===!1||e.decompress===!0))throw new Error("invalid options.decompress value: "+e.decompress)}if(e.start!=null||e.end!=null){if(t.isCompressed()&&e.decompress!==!1)throw new Error("start/end range not allowed for compressed entry without options.decompress === false");if(t.isEncrypted()&&e.decrypt!==!1)throw new Error("start/end range not allowed for encrypted entry without options.decrypt === false")}if(e.start!=null){if(i=e.start,i<0)throw new Error("options.start < 0");if(i>t.compressedSize)throw new Error("options.start > entry.compressedSize")}if(e.end!=null){if(o=e.end,o<0)throw new Error("options.end < 0");if(o>t.compressedSize)throw new Error("options.end > entry.compressedSize");if(o<i)throw new Error("options.end < options.start")}}if(!n.isOpen)return r(new Error("closed"));if(t.isEncrypted()&&e.decrypt!==!1)return r(new Error("entry is encrypted, and options.decrypt !== false"));n.reader.ref();var s=se(30);rt(n.reader,s,0,s.length,t.relativeOffsetOfLocalHeader,function(a){try{if(a)return r(a);var l=s.readUInt32LE(0);if(l!==67324752)return r(new Error("invalid local file header signature: 0x"+l.toString(16)));var c=s.readUInt16LE(26),u=s.readUInt16LE(28),f=t.relativeOffsetOfLocalHeader+s.length+c+u,d;if(t.compressionMethod===0)d=!1;else if(t.compressionMethod===8)d=e.decompress!=null?e.decompress:!0;else return r(new Error("unsupported compression method: "+t.compressionMethod));var m=f,g=m+t.compressedSize;if(t.compressedSize!==0&&g>n.fileSize)return r(new Error("file data overflows file bounds: "+m+" + "+t.compressedSize+" > "+n.fileSize));var h=n.reader.createReadStream({start:m+i,end:m+o}),_=h;if(d){var x=!1,C=op.createInflateRaw();h.on("error",function(O){setImmediate(function(){x||C.emit("error",O)})}),h.pipe(C),n.validateEntrySizes?(_=new Ot(t.uncompressedSize),C.on("error",function(O){setImmediate(function(){x||_.emit("error",O)})}),C.pipe(_)):_=C,_.destroy=function(){x=!0,C!==_&&C.unpipe(_),h.unpipe(C),h.destroy()}}r(null,_)}finally{n.reader.unref()}})};function It(){}It.prototype.getLastModDate=function(){return Ll(this.lastModFileDate,this.lastModFileTime)};It.prototype.isEncrypted=function(){return(this.generalPurposeBitFlag&1)!==0};It.prototype.isCompressed=function(){return this.compressionMethod===8};function Ll(t,e){var r=t&31,n=(t>>5&15)-1,i=(t>>9&127)+1980,o=0,s=(e&31)*2,a=e>>5&63,l=e>>11&31;return new Date(i,n,r,l,a,s,o)}function Dl(t){return t.indexOf("\\")!==-1?"invalid characters in fileName: "+t:/^[a-zA-Z]:/.test(t)||/^\//.test(t)?"absolute path: "+t:t.split("/").indexOf("..")!==-1?"invalid relative path: "+t:null}function rt(t,e,r,n,i,o){if(n===0)return setImmediate(function(){o(null,se(0))});t.read(e,r,n,i,function(s,a){if(s)return o(s);if(a<n)return o(new Error("unexpected EOF"));o()})}Mr.inherits(Ot,Pl);function Ot(t){Pl.call(this),this.actualByteCount=0,this.expectedByteCount=t}Ot.prototype._transform=function(t,e,r){if(this.actualByteCount+=t.length,this.actualByteCount>this.expectedByteCount){var n="too many bytes in the stream. expected "+this.expectedByteCount+". got at least "+this.actualByteCount;return r(new Error(n))}r(null,t)};Ot.prototype._flush=function(t){if(this.actualByteCount<this.expectedByteCount){var e="not enough bytes in the stream. expected "+this.expectedByteCount+". got only "+this.actualByteCount;return t(new Error(e))}t()};Mr.inherits(Ee,qr);function Ee(){qr.call(this),this.refCount=0}Ee.prototype.ref=function(){this.refCount+=1};Ee.prototype.unref=function(){var t=this;if(t.refCount-=1,t.refCount>0)return;if(t.refCount<0)throw new Error("invalid unref");t.close(e);function e(r){if(r)return t.emit("error",r);t.emit("close")}};Ee.prototype.createReadStream=function(t){var e=t.start,r=t.end;if(e===r){var n=new Pi;return setImmediate(function(){n.end()}),n}var i=this._readStreamForRange(e,r),o=!1,s=new Br(this);i.on("error",function(l){setImmediate(function(){o||s.emit("error",l)})}),s.destroy=function(){i.unpipe(s),s.unref(),i.destroy()};var a=new Ot(r-e);return s.on("error",function(l){setImmediate(function(){o||a.emit("error",l)})}),a.destroy=function(){o=!0,s.unpipe(a),s.destroy()},i.pipe(s).pipe(a)};Ee.prototype._readStreamForRange=function(t,e){throw new Error("not implemented")};Ee.prototype.read=function(t,e,r,n,i){var o=this.createReadStream({start:n,end:n+r}),s=new ap,a=0;s._write=function(l,c,u){l.copy(t,e+a,0,l.length),a+=l.length,u()},s.on("finish",i),o.on("error",function(l){i(l)}),o.pipe(s)};Ee.prototype.close=function(t){setImmediate(t)};Mr.inherits(Br,Pi);function Br(t){Pi.call(this),this.context=t,this.context.ref(),this.unreffedYet=!1}Br.prototype._flush=function(t){this.unref(),t()};Br.prototype.unref=function(t){this.unreffedYet||(this.unreffedYet=!0,this.context.unref())};var up="\0\u263A\u263B\u2665\u2666\u2663\u2660\u2022\u25D8\u25CB\u25D9\u2642\u2640\u266A\u266B\u263C\u25BA\u25C4\u2195\u203C\xB6\xA7\u25AC\u21A8\u2191\u2193\u2192\u2190\u221F\u2194\u25B2\u25BC !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\u2302\xC7\xFC\xE9\xE2\xE4\xE0\xE5\xE7\xEA\xEB\xE8\xEF\xEE\xEC\xC4\xC5\xC9\xE6\xC6\xF4\xF6\xF2\xFB\xF9\xFF\xD6\xDC\xA2\xA3\xA5\u20A7\u0192\xE1\xED\xF3\xFA\xF1\xD1\xAA\xBA\xBF\u2310\xAC\xBD\xBC\xA1\xAB\xBB\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255D\u255C\u255B\u2510\u2514\u2534\u252C\u251C\u2500\u253C\u255E\u255F\u255A\u2554\u2569\u2566\u2560\u2550\u256C\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256B\u256A\u2518\u250C\u2588\u2584\u258C\u2590\u2580\u03B1\xDF\u0393\u03C0\u03A3\u03C3\xB5\u03C4\u03A6\u0398\u03A9\u03B4\u221E\u03C6\u03B5\u2229\u2261\xB1\u2265\u2264\u2320\u2321\xF7\u2248\xB0\u2219\xB7\u221A\u207F\xB2\u25A0\xA0";function kr(t,e,r,n){if(n)return t.toString("utf8",e,r);for(var i="",o=e;o<r;o++)i+=up[t[o]];return i}function nt(t,e){var r=t.readUInt32LE(e),n=t.readUInt32LE(e+4);return n*4294967296+r}var se;typeof Buffer.allocUnsafe=="function"?se=function(t){return Buffer.allocUnsafe(t)}:se=function(t){return new Buffer(t)};function Nr(t){if(t)throw t}});var Di=p((om,Nl)=>{var te=ol()("extract-zip"),{createWriteStream:fp,promises:it}=require("fs"),dp=xl(),De=require("path"),{promisify:Li}=require("util"),hp=require("stream"),pp=kl(),gp=Li(pp.open),mp=Li(hp.pipeline),Fi=class{constructor(e,r){this.zipPath=e,this.opts=r}async extract(){return te("opening",this.zipPath,"with opts",this.opts),this.zipfile=await gp(this.zipPath,{lazyEntries:!0}),this.canceled=!1,new Promise((e,r)=>{this.zipfile.on("error",n=>{this.canceled=!0,r(n)}),this.zipfile.readEntry(),this.zipfile.on("close",()=>{this.canceled||(te("zip extraction complete"),e())}),this.zipfile.on("entry",async n=>{if(this.canceled){te("skipping entry",n.fileName,{cancelled:this.canceled});return}if(te("zipfile entry",n.fileName),n.fileName.startsWith("__MACOSX/")){this.zipfile.readEntry();return}let i=De.dirname(De.join(this.opts.dir,n.fileName));try{await it.mkdir(i,{recursive:!0});let o=await it.realpath(i);if(De.relative(this.opts.dir,o).split(De.sep).includes(".."))throw new Error(`Out of bound path "${o}" found while processing file ${n.fileName}`);await this.extractEntry(n),te("finished processing",n.fileName),this.zipfile.readEntry()}catch(o){this.canceled=!0,this.zipfile.close(),r(o)}})})}async extractEntry(e){if(this.canceled){te("skipping entry extraction",e.fileName,{cancelled:this.canceled});return}this.opts.onEntry&&this.opts.onEntry(e,this.zipfile);let r=De.join(this.opts.dir,e.fileName),n=e.externalFileAttributes>>16&65535,i=61440,o=16384,a=(n&i)===40960,l=(n&i)===o;!l&&e.fileName.endsWith("/")&&(l=!0);let c=e.versionMadeBy>>8;l||(l=c===0&&e.externalFileAttributes===16),te("extracting entry",{filename:e.fileName,isDir:l,isSymlink:a});let u=this.getExtractedMode(n,l)&511,f=l?r:De.dirname(r),d={recursive:!0};if(l&&(d.mode=u),te("mkdir",{dir:f,...d}),await it.mkdir(f,d),l)return;te("opening read stream",r);let m=await Li(this.zipfile.openReadStream.bind(this.zipfile))(e);if(a){let g=await dp(m);te("creating symlink",g,r),await it.symlink(g,r)}else await mp(m,fp(r,{mode:u}))}getExtractedMode(e,r){let n=e;return n===0&&(r?(this.opts.defaultDirMode&&(n=parseInt(this.opts.defaultDirMode,10)),n||(n=493)):(this.opts.defaultFileMode&&(n=parseInt(this.opts.defaultFileMode,10)),n||(n=420))),n}};Nl.exports=async function(t,e){if(te("creating target directory",e.dir),!De.isAbsolute(e.dir))throw new Error("Target directory is expected to be absolute");return await it.mkdir(e.dir,{recursive:!0}),e.dir=await it.realpath(e.dir),new Fi(t,e).extract()}});var ki=p((sm,Ml)=>{"use strict";var yp=require("path"),jr=require("fs"),_p=JSON.stringify({AppSetup:{AppInstallRequired:!0,AutoMigrate:!1},ConnectionStrings:{DefaultConnection:"Server=localhost;Database=xframework_setup_placeholder;User Id=setup;Password=placeholder;TrustServerCertificate=True;MultipleActiveResultSets=True;",ReportingConnection:"",ReadOnlyConnection:""},Logging:{LogLevel:{Default:"Information","Microsoft.AspNetCore":"Warning"}},AllowedHosts:"*",Jwt:{Key:"xframework-developer-placeholder-key-minimum-32-chars!!",Issuer:"XFrameworkApi",ExpireDays:"1",RefreshDays:"7"},LoginToken:{SecretKey:"xframework-developer-login-token-secret-minimum-32-chars!!"},Cors:{AllowedOrigins:["http://localhost:5173","http://localhost:3000"],AllowedMethods:["GET","POST","PUT","DELETE","PATCH","OPTIONS"],AllowedHeaders:["Content-Type","Authorization","X-Requested-With","Accept"],AllowCredentials:!0,PreflightMaxAge:600,ExposedHeaders:["Content-Disposition","X-Xf-License"]},AWSVideoSettings:{S3Settings:{VideoBucketName:"",ProcessedVideoBucketName:"",Region:"us-east-1",AccessKey:"",SecretKey:""},LambdaSettings:{BackendApiKey:""}},Aws:{AccessKeyId:"placeholder",SecretAccessKey:"placeholder",Bucket:"placeholder",Region:"us-east-1",IsAwsEnabled:"False",PreviewUrlExpiryMinutes:15},AzureBlobStorage:{ConnectionString:"",ContainerName:""},AzureStorage:{ConnectionString:"",MemberPhotosContainer:"",BaseUrl:""},AzureDocumentIntelligence:{Endpoint:"",Key:""},CVSettings:{AzureVisionEndpoint:"",AzureVisionKey:"",StorageLocation:"",ChunkSize:1e3,ChunkOverlap:200,VectorDimensions:1536},AISettings:{MaxRetries:3,VerificationPromptTemplate:""},Firebase:{CredentialsFile:""},Stripe:{SecretKey:"",PublishableKey:"",WebhookSecret:""},Email:{From:"noreply@localhost",SmtpServer:"localhost",Port:587,Username:"placeholder",Password:"placeholder"},Twilio:{AccountSid:"placeholder",AuthToken:"placeholder",VerifySID:"placeholder"},TwilioConfiguration:{AccountSid:"placeholder",AuthToken:"placeholder",PhoneNumber:"placeholder"},TwoFactorAuthentication:{DefaultMethod:"Email"},RateLimiting:{Enabled:!1,DefaultPolicy:"General",Policies:{General:{Name:"General",PermitLimit:100,Window:"00:01:00",QueueLimit:2}},Redis:{ConnectionString:"",InstanceName:"RateLimit_"}},IdentityOptions:{Password:{RequiredLength:6,RequireLowercase:!1,RequireUppercase:!1,RequireNonAlphanumeric:!1,RequireDigit:!1},User:{RequireUniqueEmail:!0},SignIn:{RequireConfirmedEmail:!1},Register:{RequireRegisterConfirmedEmail:!1},AWSSettings:{IsAwsEnabled:!1,AccessKeyId:"",SecretAccessKey:"",Bucket:""}},SecurityHeaders:{AddXFrameOptions:!1,HstsEnabled:!1,CspMode:"frame-ancestors-only"},BaseConfiguration:{AppName:"xFramework",BaseUrl:"http://localhost:5000"},DataRetention:{DefaultUserRetentionDays:2555,BackgroundProcessingEnabled:!1,DefaultToDryRun:!0},Features:{SupportTickets:!1},OpenAIKey:"",BrianOpenAIKey:"",EncryptKey:"xframework-default-encrypt-key",SuperAdmin:"Operation - Admin",DefaultRole:"",DefaultRoleType:"Operation",DefaultTenant:"",TempToken:{ExpireMinutes:"10"},TempTokenMinutes:10,Roles:{DefaultId:"797b6cf7-1a2f-4933-addb-33b4c51a87aa",DefaultType:"Operation",CustomerRoleId:"3DD64000-A0CF-494B-B41E-5113CB92D22A"},SiteUrl:"",ApplicationUrl:"http://localhost:5000",AvatarUploadFolder:"profileImages",AwsConfiguration:{AccessKeyId:"placeholder",SecretAccessKey:"placeholder",Bucket:"placeholder",Region:"us-east-1",IsAwsEnabled:!1}},null,2),xp=new Set(["appsettings.Local.json","appsettings.Development.json","appsettings.Production.json","appsettings.HierarchyDefaults.json","appsettings.PIIRedaction.json"]);function bp(t){let e=t.toLowerCase();return e.includes("firebase")||e.includes("adminsdk")||e==="google-services.json"||e.includes("googlecredential")}function wp(t){let e=0,r=0;function n(i){let o;try{o=jr.readdirSync(i)}catch{return}for(let s of o){let a=yp.join(i,s),l;try{l=jr.statSync(a)}catch{continue}if(l.isDirectory()){n(a);continue}if(s.endsWith(".json")){if(s==="appsettings.json")try{jr.writeFileSync(a,_p,"utf8"),e++}catch{}else if(xp.has(s)||bp(s))try{jr.unlinkSync(a),r++}catch{}}}}return n(t),{replaced:e,deleted:r}}Ml.exports=wp});var ji=p((lm,zl)=>{"use strict";var I=require("path"),v=require("fs"),Ni=require("os"),vp=require("readline"),{spawn:$l}=require("child_process"),E=Y(),Ep=mr(),Sp=xi(),Mi=require("crypto"),Ul=require("http"),ql=require("https"),{readLicense:Cp}=Et();function Bl(t){return new Promise(e=>{let r=vp.createInterface({input:process.stdin,output:process.stdout});r.question(t,n=>{r.close(),e(n.trim().toLowerCase())})})}function Vl(t){try{let e=JSON.parse(Buffer.from(t.split(".")[1].replace(/-/g,"+").replace(/_/g,"/"),"base64").toString("utf8"));return Array.isArray(e.domains)&&e.domains.length>0?e.domains.filter(Boolean):e.domain?[e.domain]:[]}catch{return[]}}function Ap(t){return new Promise(e=>{Ul.get(`http://127.0.0.1:${t}/api/v1.0/setup/status`,r=>{let n="";r.on("data",i=>{n+=i}),r.on("end",()=>{try{e(JSON.parse(n))}catch{e({isInstalled:!0})}})}).on("error",()=>e({isInstalled:!0}))})}function Ip(t,e){let r=t.database||{};return r.provider==="sqlserver"?`Server=${r.host},${r.port||1433};Database=${r.database};User Id=${r.username};Password=${r.password};TrustServerCertificate=True;MultipleActiveResultSets=True;`:r.provider==="postgresql"&&!r.embedded?`Host=${r.host};Port=${r.port||5432};Database=${r.database};Username=${r.username};Password=${r.password};SSL Mode=Prefer;`:`Host=127.0.0.1;Port=${Vr};Database=${Hl};Username=${Wl};Password=${e.pgPassword};SSL Mode=Disable;Persist Security Info=true;`}var z=I.join(Ni.homedir(),".xFramework","instances","default"),ke=I.join(z,"db"),$r=I.join(z,"logs"),jl=I.join(z,"data"),Ur=I.join(z,"secrets"),qi=I.join(z,".env"),Ne=I.join(z,"config.json"),Op=I.join(z,".pid"),Vr=54329,Wl="contentactive",Hl="contentactive",Bi=I.resolve(__dirname,v.existsSync(I.join(__dirname,"dist"))?".":".."),am=I.join(Bi,"dist","api"),Gl=I.join(Bi,"dist","ui"),ot=I.join(Bi,"dist","customer-portal");function Tp(){[z,ke,$r,jl,I.join(jl,"backups"),Ur].forEach(t=>{v.existsSync(t)||v.mkdirSync(t,{recursive:!0})})}function Pp(){if(v.existsSync(I.join(Ur,"master.key"))||v.writeFileSync(I.join(Ur,"master.key"),Mi.randomBytes(32).toString("hex"),"utf8"),!v.existsSync(qi)){let t=Mi.randomBytes(32).toString("hex");v.writeFileSync(qi,`# xFramework environment
42
+ `).map(e=>e.trim()).join(" ")};nl.O=function(t){return this.inspectOpts.colors=this.useColors,Er.inspect(t,this.inspectOpts)}});var ol=p((Kg,wi)=>{typeof process>"u"||process.type==="renderer"||process.browser===!0||process.__nwjs?wi.exports=rl():wi.exports=il()});var ll=p((Yg,al)=>{al.exports=sl;function sl(t,e){if(t&&e)return sl(t)(e);if(typeof t!="function")throw new TypeError("need wrapper function");return Object.keys(t).forEach(function(n){r[n]=t[n]}),r;function r(){for(var n=new Array(arguments.length),i=0;i<n.length;i++)n[i]=arguments[i];var o=t.apply(this,n),s=n[n.length-1];return typeof o=="function"&&o!==s&&Object.keys(s).forEach(function(a){o[a]=s[a]}),o}}});var Ei=p((Jg,vi)=>{var cl=ll();vi.exports=cl(Cr);vi.exports.strict=cl(ul);Cr.proto=Cr(function(){Object.defineProperty(Function.prototype,"once",{value:function(){return Cr(this)},configurable:!0}),Object.defineProperty(Function.prototype,"onceStrict",{value:function(){return ul(this)},configurable:!0})});function Cr(t){var e=function(){return e.called?e.value:(e.called=!0,e.value=t.apply(this,arguments))};return e.called=!1,e}function ul(t){var e=function(){if(e.called)throw new Error(e.onceError);return e.called=!0,e.value=t.apply(this,arguments)},r=t.name||"Function wrapped with `once`";return e.onceError=r+" shouldn't be called more than once",e.called=!1,e}});var hl=p((Xg,dl)=>{var Mh=Ei(),qh=function(){},Bh=global.Bare?queueMicrotask:process.nextTick.bind(process),jh=function(t){return t.setHeader&&typeof t.abort=="function"},$h=function(t){return t.stdio&&Array.isArray(t.stdio)&&t.stdio.length===3},fl=function(t,e,r){if(typeof e=="function")return fl(t,null,e);e||(e={}),r=Mh(r||qh);var n=t._writableState,i=t._readableState,o=e.readable||e.readable!==!1&&t.readable,s=e.writable||e.writable!==!1&&t.writable,a=!1,l=function(){t.writable||c()},c=function(){s=!1,o||r.call(t)},u=function(){o=!1,s||r.call(t)},f=function(_){r.call(t,_?new Error("exited with error code: "+_):null)},d=function(_){r.call(t,_)},m=function(){Bh(g)},g=function(){if(!a){if(o&&!(i&&i.ended&&!i.destroyed))return r.call(t,new Error("premature close"));if(s&&!(n&&n.ended&&!n.destroyed))return r.call(t,new Error("premature close"))}},h=function(){t.req.on("finish",c)};return jh(t)?(t.on("complete",c),t.on("abort",m),t.req?h():t.on("request",h)):s&&!n&&(t.on("end",l),t.on("close",l)),$h(t)&&t.on("exit",f),t.on("end",u),t.on("finish",c),e.error!==!1&&t.on("error",d),t.on("close",m),function(){a=!0,t.removeListener("complete",c),t.removeListener("abort",m),t.removeListener("request",h),t.req&&t.req.removeListener("finish",c),t.removeListener("end",l),t.removeListener("close",l),t.removeListener("finish",c),t.removeListener("exit",f),t.removeListener("end",u),t.removeListener("error",d),t.removeListener("close",m)}};dl.exports=fl});var ml=p((Zg,gl)=>{var Uh=Ei(),Vh=hl(),Ar;try{Ar=require("fs")}catch{}var St=function(){},Wh=typeof process>"u"?!1:/^v?\.0/.test(process.version),Ir=function(t){return typeof t=="function"},Hh=function(t){return!Wh||!Ar?!1:(t instanceof(Ar.ReadStream||St)||t instanceof(Ar.WriteStream||St))&&Ir(t.close)},Gh=function(t){return t.setHeader&&Ir(t.abort)},zh=function(t,e,r,n){n=Uh(n);var i=!1;t.on("close",function(){i=!0}),Vh(t,{readable:e,writable:r},function(s){if(s)return n(s);i=!0,n()});var o=!1;return function(s){if(!i&&!o){if(o=!0,Hh(t))return t.close(St);if(Gh(t))return t.abort();if(Ir(t.destroy))return t.destroy();n(s||new Error("stream was destroyed"))}}},pl=function(t){t()},Kh=function(t,e){return t.pipe(e)},Yh=function(){var t=Array.prototype.slice.call(arguments),e=Ir(t[t.length-1]||St)&&t.pop()||St;if(Array.isArray(t[0])&&(t=t[0]),t.length<2)throw new Error("pump requires two streams per minimum");var r,n=t.map(function(i,o){var s=o<t.length-1,a=o>0;return zh(i,s,a,function(l){r||(r=l),l&&n.forEach(pl),!s&&(n.forEach(pl),e(r))})});return t.reduce(Kh)};gl.exports=Yh});var _l=p((Qg,yl)=>{"use strict";var{PassThrough:Jh}=require("stream");yl.exports=t=>{t={...t};let{array:e}=t,{encoding:r}=t,n=r==="buffer",i=!1;e?i=!(r||n):r=r||"utf8",n&&(r=null);let o=new Jh({objectMode:i});r&&o.setEncoding(r);let s=0,a=[];return o.on("data",l=>{a.push(l),i?s=a.length:s+=l.length}),o.getBufferedValue=()=>e?a:n?Buffer.concat(a,s):a.join(""),o.getBufferedLength=()=>s,o}});var xl=p((em,tt)=>{"use strict";var{constants:Xh}=require("buffer"),Zh=ml(),Qh=_l(),Or=class extends Error{constructor(){super("maxBuffer exceeded"),this.name="MaxBufferError"}};async function Tr(t,e){if(!t)return Promise.reject(new Error("Expected a stream"));e={maxBuffer:1/0,...e};let{maxBuffer:r}=e,n;return await new Promise((i,o)=>{let s=a=>{a&&n.getBufferedLength()<=Xh.MAX_LENGTH&&(a.bufferedData=n.getBufferedValue()),o(a)};n=Zh(t,Qh(e),a=>{if(a){s(a);return}i()}),n.on("data",()=>{n.getBufferedLength()>r&&s(new Or)})}),n.getBufferedValue()}tt.exports=Tr;tt.exports.default=Tr;tt.exports.buffer=(t,e)=>Tr(t,{...e,encoding:"buffer"});tt.exports.array=(t,e)=>Tr(t,{...e,array:!0});tt.exports.MaxBufferError=Or});var El=p((tm,vl)=>{vl.exports=Pr;function Pr(){this.pending=0,this.max=1/0,this.listeners=[],this.waiting=[],this.error=null}Pr.prototype.go=function(t){this.pending<this.max?wl(this,t):this.waiting.push(t)};Pr.prototype.wait=function(t){this.pending===0?t(this.error):this.listeners.push(t)};Pr.prototype.hold=function(){return bl(this)};function bl(t){t.pending+=1;var e=!1;return r;function r(i){if(e)throw new Error("callback called twice");if(e=!0,t.error=t.error||i,t.pending-=1,t.waiting.length>0&&t.pending<t.max)wl(t,t.waiting.shift());else if(t.pending===0){var o=t.listeners;t.listeners=[],o.forEach(n)}}function n(i){i(t.error)}}function wl(t,e){e(bl(t))}});var Cl=p(At=>{var Ct=require("fs"),Rr=require("util"),Si=require("stream"),Sl=Si.Readable,Ci=Si.Writable,ep=Si.PassThrough,tp=El(),Fr=require("events").EventEmitter;At.createFromBuffer=rp;At.createFromFd=np;At.BufferSlicer=de;At.FdSlicer=fe;Rr.inherits(fe,Fr);function fe(t,e){e=e||{},Fr.call(this),this.fd=t,this.pend=new tp,this.pend.max=1,this.refCount=0,this.autoClose=!!e.autoClose}fe.prototype.read=function(t,e,r,n,i){var o=this;o.pend.go(function(s){Ct.read(o.fd,t,e,r,n,function(a,l,c){s(),i(a,l,c)})})};fe.prototype.write=function(t,e,r,n,i){var o=this;o.pend.go(function(s){Ct.write(o.fd,t,e,r,n,function(a,l,c){s(),i(a,l,c)})})};fe.prototype.createReadStream=function(t){return new Lr(this,t)};fe.prototype.createWriteStream=function(t){return new Dr(this,t)};fe.prototype.ref=function(){this.refCount+=1};fe.prototype.unref=function(){var t=this;if(t.refCount-=1,t.refCount>0)return;if(t.refCount<0)throw new Error("invalid unref");t.autoClose&&Ct.close(t.fd,e);function e(r){r?t.emit("error",r):t.emit("close")}};Rr.inherits(Lr,Sl);function Lr(t,e){e=e||{},Sl.call(this,e),this.context=t,this.context.ref(),this.start=e.start||0,this.endOffset=e.end,this.pos=this.start,this.destroyed=!1}Lr.prototype._read=function(t){var e=this;if(!e.destroyed){var r=Math.min(e._readableState.highWaterMark,t);if(e.endOffset!=null&&(r=Math.min(r,e.endOffset-e.pos)),r<=0){e.destroyed=!0,e.push(null),e.context.unref();return}e.context.pend.go(function(n){if(e.destroyed)return n();var i=new Buffer(r);Ct.read(e.context.fd,i,0,r,e.pos,function(o,s){o?e.destroy(o):s===0?(e.destroyed=!0,e.push(null),e.context.unref()):(e.pos+=s,e.push(i.slice(0,s))),n()})})}};Lr.prototype.destroy=function(t){this.destroyed||(t=t||new Error("stream destroyed"),this.destroyed=!0,this.emit("error",t),this.context.unref())};Rr.inherits(Dr,Ci);function Dr(t,e){e=e||{},Ci.call(this,e),this.context=t,this.context.ref(),this.start=e.start||0,this.endOffset=e.end==null?1/0:+e.end,this.bytesWritten=0,this.pos=this.start,this.destroyed=!1,this.on("finish",this.destroy.bind(this))}Dr.prototype._write=function(t,e,r){var n=this;if(!n.destroyed){if(n.pos+t.length>n.endOffset){var i=new Error("maximum file length exceeded");i.code="ETOOBIG",n.destroy(),r(i);return}n.context.pend.go(function(o){if(n.destroyed)return o();Ct.write(n.context.fd,t,0,t.length,n.pos,function(s,a){s?(n.destroy(),o(),r(s)):(n.bytesWritten+=a,n.pos+=a,n.emit("progress"),o(),r())})})}};Dr.prototype.destroy=function(){this.destroyed||(this.destroyed=!0,this.context.unref())};Rr.inherits(de,Fr);function de(t,e){Fr.call(this),e=e||{},this.refCount=0,this.buffer=t,this.maxChunkSize=e.maxChunkSize||Number.MAX_SAFE_INTEGER}de.prototype.read=function(t,e,r,n,i){var o=n+r,s=o-this.buffer.length,a=s>0?s:r;this.buffer.copy(t,e,n,o),setImmediate(function(){i(null,a)})};de.prototype.write=function(t,e,r,n,i){t.copy(this.buffer,n,e,e+r),setImmediate(function(){i(null,r,t)})};de.prototype.createReadStream=function(t){t=t||{};var e=new ep(t);e.destroyed=!1,e.start=t.start||0,e.endOffset=t.end,e.pos=e.endOffset||this.buffer.length;for(var r=this.buffer.slice(e.start,e.pos),n=0;;){var i=n+this.maxChunkSize;if(i>=r.length){n<r.length&&e.write(r.slice(n,r.length));break}e.write(r.slice(n,i)),n=i}return e.end(),e.destroy=function(){e.destroyed=!0},e};de.prototype.createWriteStream=function(t){var e=this;t=t||{};var r=new Ci(t);return r.start=t.start||0,r.endOffset=t.end==null?this.buffer.length:+t.end,r.bytesWritten=0,r.pos=r.start,r.destroyed=!1,r._write=function(n,i,o){if(!r.destroyed){var s=r.pos+n.length;if(s>r.endOffset){var a=new Error("maximum file length exceeded");a.code="ETOOBIG",r.destroyed=!0,o(a);return}n.copy(e.buffer,r.pos,0,n.length),r.bytesWritten+=n.length,r.pos=s,r.emit("progress"),o()}},r.destroy=function(){r.destroyed=!0},r};de.prototype.ref=function(){this.refCount+=1};de.prototype.unref=function(){if(this.refCount-=1,this.refCount<0)throw new Error("invalid unref")};function rp(t,e){return new de(t,e)}function np(t,e){return new fe(t,e)}});var Ol=p((nm,Il)=>{var we=require("buffer").Buffer,Ai=[0,1996959894,3993919788,2567524794,124634137,1886057615,3915621685,2657392035,249268274,2044508324,3772115230,2547177864,162941995,2125561021,3887607047,2428444049,498536548,1789927666,4089016648,2227061214,450548861,1843258603,4107580753,2211677639,325883990,1684777152,4251122042,2321926636,335633487,1661365465,4195302755,2366115317,997073096,1281953886,3579855332,2724688242,1006888145,1258607687,3524101629,2768942443,901097722,1119000684,3686517206,2898065728,853044451,1172266101,3705015759,2882616665,651767980,1373503546,3369554304,3218104598,565507253,1454621731,3485111705,3099436303,671266974,1594198024,3322730930,2970347812,795835527,1483230225,3244367275,3060149565,1994146192,31158534,2563907772,4023717930,1907459465,112637215,2680153253,3904427059,2013776290,251722036,2517215374,3775830040,2137656763,141376813,2439277719,3865271297,1802195444,476864866,2238001368,4066508878,1812370925,453092731,2181625025,4111451223,1706088902,314042704,2344532202,4240017532,1658658271,366619977,2362670323,4224994405,1303535960,984961486,2747007092,3569037538,1256170817,1037604311,2765210733,3554079995,1131014506,879679996,2909243462,3663771856,1141124467,855842277,2852801631,3708648649,1342533948,654459306,3188396048,3373015174,1466479909,544179635,3110523913,3462522015,1591671054,702138776,2966460450,3352799412,1504918807,783551873,3082640443,3233442989,3988292384,2596254646,62317068,1957810842,3939845945,2647816111,81470997,1943803523,3814918930,2489596804,225274430,2053790376,3826175755,2466906013,167816743,2097651377,4027552580,2265490386,503444072,1762050814,4150417245,2154129355,426522225,1852507879,4275313526,2312317920,282753626,1742555852,4189708143,2394877945,397917763,1622183637,3604390888,2714866558,953729732,1340076626,3518719985,2797360999,1068828381,1219638859,3624741850,2936675148,906185462,1090812512,3747672003,2825379669,829329135,1181335161,3412177804,3160834842,628085408,1382605366,3423369109,3138078467,570562233,1426400815,3317316542,2998733608,733239954,1555261956,3268935591,3050360625,752459403,1541320221,2607071920,3965973030,1969922972,40735498,2617837225,3943577151,1913087877,83908371,2512341634,3803740692,2075208622,213261112,2463272603,3855990285,2094854071,198958881,2262029012,4057260610,1759359992,534414190,2176718541,4139329115,1873836001,414664567,2282248934,4279200368,1711684554,285281116,2405801727,4167216745,1634467795,376229701,2685067896,3608007406,1308918612,956543938,2808555105,3495958263,1231636301,1047427035,2932959818,3654703836,1088359270,936918e3,2847714899,3736837829,1202900863,817233897,3183342108,3401237130,1404277552,615818150,3134207493,3453421203,1423857449,601450431,3009837614,3294710456,1567103746,711928724,3020668471,3272380065,1510334235,755167117];typeof Int32Array<"u"&&(Ai=new Int32Array(Ai));function Al(t){if(we.isBuffer(t))return t;var e=typeof we.alloc=="function"&&typeof we.from=="function";if(typeof t=="number")return e?we.alloc(t):new we(t);if(typeof t=="string")return e?we.from(t):new we(t);throw new Error("input must be buffer, number, or string, received "+typeof t)}function ip(t){var e=Al(4);return e.writeInt32BE(t,0),e}function Ii(t,e){t=Al(t),we.isBuffer(e)&&(e=e.readUInt32BE(0));for(var r=~~e^-1,n=0;n<t.length;n++)r=Ai[(r^t[n])&255]^r>>>8;return r^-1}function Oi(){return ip(Ii.apply(null,arguments))}Oi.signed=function(){return Ii.apply(null,arguments)};Oi.unsigned=function(){return Ii.apply(null,arguments)>>>0};Il.exports=Oi});var kl=p(ae=>{var Ti=require("fs"),op=require("zlib"),Tl=Cl(),sp=Ol(),Mr=require("util"),qr=require("events").EventEmitter,Pl=require("stream").Transform,Pi=require("stream").PassThrough,ap=require("stream").Writable;ae.open=lp;ae.fromFd=Rl;ae.fromBuffer=cp;ae.fromRandomAccessReader=Ri;ae.dosDateTimeToDate=Ll;ae.validateFileName=Dl;ae.ZipFile=ve;ae.Entry=It;ae.RandomAccessReader=Ee;function lp(t,e,r){typeof e=="function"&&(r=e,e=null),e==null&&(e={}),e.autoClose==null&&(e.autoClose=!0),e.lazyEntries==null&&(e.lazyEntries=!1),e.decodeStrings==null&&(e.decodeStrings=!0),e.validateEntrySizes==null&&(e.validateEntrySizes=!0),e.strictFileNames==null&&(e.strictFileNames=!1),r==null&&(r=Nr),Ti.open(t,"r",function(n,i){if(n)return r(n);Rl(i,e,function(o,s){o&&Ti.close(i,Nr),r(o,s)})})}function Rl(t,e,r){typeof e=="function"&&(r=e,e=null),e==null&&(e={}),e.autoClose==null&&(e.autoClose=!1),e.lazyEntries==null&&(e.lazyEntries=!1),e.decodeStrings==null&&(e.decodeStrings=!0),e.validateEntrySizes==null&&(e.validateEntrySizes=!0),e.strictFileNames==null&&(e.strictFileNames=!1),r==null&&(r=Nr),Ti.fstat(t,function(n,i){if(n)return r(n);var o=Tl.createFromFd(t,{autoClose:!0});Ri(o,i.size,e,r)})}function cp(t,e,r){typeof e=="function"&&(r=e,e=null),e==null&&(e={}),e.autoClose=!1,e.lazyEntries==null&&(e.lazyEntries=!1),e.decodeStrings==null&&(e.decodeStrings=!0),e.validateEntrySizes==null&&(e.validateEntrySizes=!0),e.strictFileNames==null&&(e.strictFileNames=!1);var n=Tl.createFromBuffer(t,{maxChunkSize:65536});Ri(n,t.length,e,r)}function Ri(t,e,r,n){typeof r=="function"&&(n=r,r=null),r==null&&(r={}),r.autoClose==null&&(r.autoClose=!0),r.lazyEntries==null&&(r.lazyEntries=!1),r.decodeStrings==null&&(r.decodeStrings=!0);var i=!!r.decodeStrings;if(r.validateEntrySizes==null&&(r.validateEntrySizes=!0),r.strictFileNames==null&&(r.strictFileNames=!1),n==null&&(n=Nr),typeof e!="number")throw new Error("expected totalSize parameter to be a number");if(e>Number.MAX_SAFE_INTEGER)throw new Error("zip file too large. only file sizes up to 2^52 are supported due to JavaScript's Number type being an IEEE 754 double.");t.ref();var o=22,s=65535,a=Math.min(o+s,e),l=se(a),c=e-l.length;rt(t,l,0,a,c,function(u){if(u)return n(u);for(var f=a-o;f>=0;f-=1)if(l.readUInt32LE(f)===101010256){var d=l.slice(f),m=d.readUInt16LE(4);if(m!==0)return n(new Error("multi-disk zip files are not supported: found disk number: "+m));var g=d.readUInt16LE(10),h=d.readUInt32LE(16),_=d.readUInt16LE(20),x=d.length-o;if(_!==x)return n(new Error("invalid comment length. expected: "+x+". found: "+_));var S=i?kr(d,22,d.length,!1):d.slice(22);if(!(g===65535||h===4294967295))return n(null,new ve(t,h,e,g,S,r.autoClose,r.lazyEntries,i,r.validateEntrySizes,r.strictFileNames));var O=se(20),P=c+f-O.length;rt(t,O,0,O.length,P,function(D){if(D)return n(D);if(O.readUInt32LE(0)!==117853008)return n(new Error("invalid zip64 end of central directory locator signature"));var Se=nt(O,8),le=se(56);rt(t,le,0,le.length,Se,function(he){return he?n(he):le.readUInt32LE(0)!==101075792?n(new Error("invalid zip64 end of central directory record signature")):(g=nt(le,32),h=nt(le,48),n(null,new ve(t,h,e,g,S,r.autoClose,r.lazyEntries,i,r.validateEntrySizes,r.strictFileNames)))})});return}n(new Error("end of central directory record signature not found"))})}Mr.inherits(ve,qr);function ve(t,e,r,n,i,o,s,a,l,c){var u=this;qr.call(u),u.reader=t,u.reader.on("error",function(f){Fl(u,f)}),u.reader.once("close",function(){u.emit("close")}),u.readEntryCursor=e,u.fileSize=r,u.entryCount=n,u.comment=i,u.entriesRead=0,u.autoClose=!!o,u.lazyEntries=!!s,u.decodeStrings=!!a,u.validateEntrySizes=!!l,u.strictFileNames=!!c,u.isOpen=!0,u.emittedError=!1,u.lazyEntries||u._readEntry()}ve.prototype.close=function(){this.isOpen&&(this.isOpen=!1,this.reader.unref())};function ee(t,e){t.autoClose&&t.close(),Fl(t,e)}function Fl(t,e){t.emittedError||(t.emittedError=!0,t.emit("error",e))}ve.prototype.readEntry=function(){if(!this.lazyEntries)throw new Error("readEntry() called without lazyEntries:true");this._readEntry()};ve.prototype._readEntry=function(){var t=this;if(t.entryCount===t.entriesRead){setImmediate(function(){t.autoClose&&t.close(),!t.emittedError&&t.emit("end")});return}if(!t.emittedError){var e=se(46);rt(t.reader,e,0,e.length,t.readEntryCursor,function(r){if(r)return ee(t,r);if(!t.emittedError){var n=new It,i=e.readUInt32LE(0);if(i!==33639248)return ee(t,new Error("invalid central directory file header signature: 0x"+i.toString(16)));if(n.versionMadeBy=e.readUInt16LE(4),n.versionNeededToExtract=e.readUInt16LE(6),n.generalPurposeBitFlag=e.readUInt16LE(8),n.compressionMethod=e.readUInt16LE(10),n.lastModFileTime=e.readUInt16LE(12),n.lastModFileDate=e.readUInt16LE(14),n.crc32=e.readUInt32LE(16),n.compressedSize=e.readUInt32LE(20),n.uncompressedSize=e.readUInt32LE(24),n.fileNameLength=e.readUInt16LE(28),n.extraFieldLength=e.readUInt16LE(30),n.fileCommentLength=e.readUInt16LE(32),n.internalFileAttributes=e.readUInt16LE(36),n.externalFileAttributes=e.readUInt32LE(38),n.relativeOffsetOfLocalHeader=e.readUInt32LE(42),n.generalPurposeBitFlag&64)return ee(t,new Error("strong encryption is not supported"));t.readEntryCursor+=46,e=se(n.fileNameLength+n.extraFieldLength+n.fileCommentLength),rt(t.reader,e,0,e.length,t.readEntryCursor,function(o){if(o)return ee(t,o);if(!t.emittedError){var s=(n.generalPurposeBitFlag&2048)!==0;n.fileName=t.decodeStrings?kr(e,0,n.fileNameLength,s):e.slice(0,n.fileNameLength);var a=n.fileNameLength+n.extraFieldLength,l=e.slice(n.fileNameLength,a);n.extraFields=[];for(var c=0;c<l.length-3;){var u=l.readUInt16LE(c+0),f=l.readUInt16LE(c+2),d=c+4,m=d+f;if(m>l.length)return ee(t,new Error("extra field length exceeds extra field buffer size"));var g=se(f);l.copy(g,0,d,m),n.extraFields.push({id:u,data:g}),c=m}if(n.fileComment=t.decodeStrings?kr(e,a,a+n.fileCommentLength,s):e.slice(a,a+n.fileCommentLength),n.comment=n.fileComment,t.readEntryCursor+=e.length,t.entriesRead+=1,n.uncompressedSize===4294967295||n.compressedSize===4294967295||n.relativeOffsetOfLocalHeader===4294967295){for(var h=null,c=0;c<n.extraFields.length;c++){var _=n.extraFields[c];if(_.id===1){h=_.data;break}}if(h==null)return ee(t,new Error("expected zip64 extended information extra field"));var x=0;if(n.uncompressedSize===4294967295){if(x+8>h.length)return ee(t,new Error("zip64 extended information extra field does not include uncompressed size"));n.uncompressedSize=nt(h,x),x+=8}if(n.compressedSize===4294967295){if(x+8>h.length)return ee(t,new Error("zip64 extended information extra field does not include compressed size"));n.compressedSize=nt(h,x),x+=8}if(n.relativeOffsetOfLocalHeader===4294967295){if(x+8>h.length)return ee(t,new Error("zip64 extended information extra field does not include relative header offset"));n.relativeOffsetOfLocalHeader=nt(h,x),x+=8}}if(t.decodeStrings)for(var c=0;c<n.extraFields.length;c++){var _=n.extraFields[c];if(_.id===28789){if(_.data.length<6||_.data.readUInt8(0)!==1)continue;var S=_.data.readUInt32LE(1);if(sp.unsigned(e.slice(0,n.fileNameLength))!==S)continue;n.fileName=kr(_.data,5,_.data.length,!0);break}}if(t.validateEntrySizes&&n.compressionMethod===0){var O=n.uncompressedSize;if(n.isEncrypted()&&(O+=12),n.compressedSize!==O){var P="compressed/uncompressed size mismatch for stored file: "+n.compressedSize+" != "+n.uncompressedSize;return ee(t,new Error(P))}}if(t.decodeStrings){t.strictFileNames||(n.fileName=n.fileName.replace(/\\/g,"/"));var D=Dl(n.fileName,t.validateFileNameOptions);if(D!=null)return ee(t,new Error(D))}t.emit("entry",n),t.lazyEntries||t._readEntry()}})}})}};ve.prototype.openReadStream=function(t,e,r){var n=this,i=0,o=t.compressedSize;if(r==null)r=e,e={};else{if(e.decrypt!=null){if(!t.isEncrypted())throw new Error("options.decrypt can only be specified for encrypted entries");if(e.decrypt!==!1)throw new Error("invalid options.decrypt value: "+e.decrypt);if(t.isCompressed()&&e.decompress!==!1)throw new Error("entry is encrypted and compressed, and options.decompress !== false")}if(e.decompress!=null){if(!t.isCompressed())throw new Error("options.decompress can only be specified for compressed entries");if(!(e.decompress===!1||e.decompress===!0))throw new Error("invalid options.decompress value: "+e.decompress)}if(e.start!=null||e.end!=null){if(t.isCompressed()&&e.decompress!==!1)throw new Error("start/end range not allowed for compressed entry without options.decompress === false");if(t.isEncrypted()&&e.decrypt!==!1)throw new Error("start/end range not allowed for encrypted entry without options.decrypt === false")}if(e.start!=null){if(i=e.start,i<0)throw new Error("options.start < 0");if(i>t.compressedSize)throw new Error("options.start > entry.compressedSize")}if(e.end!=null){if(o=e.end,o<0)throw new Error("options.end < 0");if(o>t.compressedSize)throw new Error("options.end > entry.compressedSize");if(o<i)throw new Error("options.end < options.start")}}if(!n.isOpen)return r(new Error("closed"));if(t.isEncrypted()&&e.decrypt!==!1)return r(new Error("entry is encrypted, and options.decrypt !== false"));n.reader.ref();var s=se(30);rt(n.reader,s,0,s.length,t.relativeOffsetOfLocalHeader,function(a){try{if(a)return r(a);var l=s.readUInt32LE(0);if(l!==67324752)return r(new Error("invalid local file header signature: 0x"+l.toString(16)));var c=s.readUInt16LE(26),u=s.readUInt16LE(28),f=t.relativeOffsetOfLocalHeader+s.length+c+u,d;if(t.compressionMethod===0)d=!1;else if(t.compressionMethod===8)d=e.decompress!=null?e.decompress:!0;else return r(new Error("unsupported compression method: "+t.compressionMethod));var m=f,g=m+t.compressedSize;if(t.compressedSize!==0&&g>n.fileSize)return r(new Error("file data overflows file bounds: "+m+" + "+t.compressedSize+" > "+n.fileSize));var h=n.reader.createReadStream({start:m+i,end:m+o}),_=h;if(d){var x=!1,S=op.createInflateRaw();h.on("error",function(O){setImmediate(function(){x||S.emit("error",O)})}),h.pipe(S),n.validateEntrySizes?(_=new Ot(t.uncompressedSize),S.on("error",function(O){setImmediate(function(){x||_.emit("error",O)})}),S.pipe(_)):_=S,_.destroy=function(){x=!0,S!==_&&S.unpipe(_),h.unpipe(S),h.destroy()}}r(null,_)}finally{n.reader.unref()}})};function It(){}It.prototype.getLastModDate=function(){return Ll(this.lastModFileDate,this.lastModFileTime)};It.prototype.isEncrypted=function(){return(this.generalPurposeBitFlag&1)!==0};It.prototype.isCompressed=function(){return this.compressionMethod===8};function Ll(t,e){var r=t&31,n=(t>>5&15)-1,i=(t>>9&127)+1980,o=0,s=(e&31)*2,a=e>>5&63,l=e>>11&31;return new Date(i,n,r,l,a,s,o)}function Dl(t){return t.indexOf("\\")!==-1?"invalid characters in fileName: "+t:/^[a-zA-Z]:/.test(t)||/^\//.test(t)?"absolute path: "+t:t.split("/").indexOf("..")!==-1?"invalid relative path: "+t:null}function rt(t,e,r,n,i,o){if(n===0)return setImmediate(function(){o(null,se(0))});t.read(e,r,n,i,function(s,a){if(s)return o(s);if(a<n)return o(new Error("unexpected EOF"));o()})}Mr.inherits(Ot,Pl);function Ot(t){Pl.call(this),this.actualByteCount=0,this.expectedByteCount=t}Ot.prototype._transform=function(t,e,r){if(this.actualByteCount+=t.length,this.actualByteCount>this.expectedByteCount){var n="too many bytes in the stream. expected "+this.expectedByteCount+". got at least "+this.actualByteCount;return r(new Error(n))}r(null,t)};Ot.prototype._flush=function(t){if(this.actualByteCount<this.expectedByteCount){var e="not enough bytes in the stream. expected "+this.expectedByteCount+". got only "+this.actualByteCount;return t(new Error(e))}t()};Mr.inherits(Ee,qr);function Ee(){qr.call(this),this.refCount=0}Ee.prototype.ref=function(){this.refCount+=1};Ee.prototype.unref=function(){var t=this;if(t.refCount-=1,t.refCount>0)return;if(t.refCount<0)throw new Error("invalid unref");t.close(e);function e(r){if(r)return t.emit("error",r);t.emit("close")}};Ee.prototype.createReadStream=function(t){var e=t.start,r=t.end;if(e===r){var n=new Pi;return setImmediate(function(){n.end()}),n}var i=this._readStreamForRange(e,r),o=!1,s=new Br(this);i.on("error",function(l){setImmediate(function(){o||s.emit("error",l)})}),s.destroy=function(){i.unpipe(s),s.unref(),i.destroy()};var a=new Ot(r-e);return s.on("error",function(l){setImmediate(function(){o||a.emit("error",l)})}),a.destroy=function(){o=!0,s.unpipe(a),s.destroy()},i.pipe(s).pipe(a)};Ee.prototype._readStreamForRange=function(t,e){throw new Error("not implemented")};Ee.prototype.read=function(t,e,r,n,i){var o=this.createReadStream({start:n,end:n+r}),s=new ap,a=0;s._write=function(l,c,u){l.copy(t,e+a,0,l.length),a+=l.length,u()},s.on("finish",i),o.on("error",function(l){i(l)}),o.pipe(s)};Ee.prototype.close=function(t){setImmediate(t)};Mr.inherits(Br,Pi);function Br(t){Pi.call(this),this.context=t,this.context.ref(),this.unreffedYet=!1}Br.prototype._flush=function(t){this.unref(),t()};Br.prototype.unref=function(t){this.unreffedYet||(this.unreffedYet=!0,this.context.unref())};var up="\0\u263A\u263B\u2665\u2666\u2663\u2660\u2022\u25D8\u25CB\u25D9\u2642\u2640\u266A\u266B\u263C\u25BA\u25C4\u2195\u203C\xB6\xA7\u25AC\u21A8\u2191\u2193\u2192\u2190\u221F\u2194\u25B2\u25BC !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\u2302\xC7\xFC\xE9\xE2\xE4\xE0\xE5\xE7\xEA\xEB\xE8\xEF\xEE\xEC\xC4\xC5\xC9\xE6\xC6\xF4\xF6\xF2\xFB\xF9\xFF\xD6\xDC\xA2\xA3\xA5\u20A7\u0192\xE1\xED\xF3\xFA\xF1\xD1\xAA\xBA\xBF\u2310\xAC\xBD\xBC\xA1\xAB\xBB\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255D\u255C\u255B\u2510\u2514\u2534\u252C\u251C\u2500\u253C\u255E\u255F\u255A\u2554\u2569\u2566\u2560\u2550\u256C\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256B\u256A\u2518\u250C\u2588\u2584\u258C\u2590\u2580\u03B1\xDF\u0393\u03C0\u03A3\u03C3\xB5\u03C4\u03A6\u0398\u03A9\u03B4\u221E\u03C6\u03B5\u2229\u2261\xB1\u2265\u2264\u2320\u2321\xF7\u2248\xB0\u2219\xB7\u221A\u207F\xB2\u25A0\xA0";function kr(t,e,r,n){if(n)return t.toString("utf8",e,r);for(var i="",o=e;o<r;o++)i+=up[t[o]];return i}function nt(t,e){var r=t.readUInt32LE(e),n=t.readUInt32LE(e+4);return n*4294967296+r}var se;typeof Buffer.allocUnsafe=="function"?se=function(t){return Buffer.allocUnsafe(t)}:se=function(t){return new Buffer(t)};function Nr(t){if(t)throw t}});var Di=p((om,Nl)=>{var te=ol()("extract-zip"),{createWriteStream:fp,promises:it}=require("fs"),dp=xl(),De=require("path"),{promisify:Li}=require("util"),hp=require("stream"),pp=kl(),gp=Li(pp.open),mp=Li(hp.pipeline),Fi=class{constructor(e,r){this.zipPath=e,this.opts=r}async extract(){return te("opening",this.zipPath,"with opts",this.opts),this.zipfile=await gp(this.zipPath,{lazyEntries:!0}),this.canceled=!1,new Promise((e,r)=>{this.zipfile.on("error",n=>{this.canceled=!0,r(n)}),this.zipfile.readEntry(),this.zipfile.on("close",()=>{this.canceled||(te("zip extraction complete"),e())}),this.zipfile.on("entry",async n=>{if(this.canceled){te("skipping entry",n.fileName,{cancelled:this.canceled});return}if(te("zipfile entry",n.fileName),n.fileName.startsWith("__MACOSX/")){this.zipfile.readEntry();return}let i=De.dirname(De.join(this.opts.dir,n.fileName));try{await it.mkdir(i,{recursive:!0});let o=await it.realpath(i);if(De.relative(this.opts.dir,o).split(De.sep).includes(".."))throw new Error(`Out of bound path "${o}" found while processing file ${n.fileName}`);await this.extractEntry(n),te("finished processing",n.fileName),this.zipfile.readEntry()}catch(o){this.canceled=!0,this.zipfile.close(),r(o)}})})}async extractEntry(e){if(this.canceled){te("skipping entry extraction",e.fileName,{cancelled:this.canceled});return}this.opts.onEntry&&this.opts.onEntry(e,this.zipfile);let r=De.join(this.opts.dir,e.fileName),n=e.externalFileAttributes>>16&65535,i=61440,o=16384,a=(n&i)===40960,l=(n&i)===o;!l&&e.fileName.endsWith("/")&&(l=!0);let c=e.versionMadeBy>>8;l||(l=c===0&&e.externalFileAttributes===16),te("extracting entry",{filename:e.fileName,isDir:l,isSymlink:a});let u=this.getExtractedMode(n,l)&511,f=l?r:De.dirname(r),d={recursive:!0};if(l&&(d.mode=u),te("mkdir",{dir:f,...d}),await it.mkdir(f,d),l)return;te("opening read stream",r);let m=await Li(this.zipfile.openReadStream.bind(this.zipfile))(e);if(a){let g=await dp(m);te("creating symlink",g,r),await it.symlink(g,r)}else await mp(m,fp(r,{mode:u}))}getExtractedMode(e,r){let n=e;return n===0&&(r?(this.opts.defaultDirMode&&(n=parseInt(this.opts.defaultDirMode,10)),n||(n=493)):(this.opts.defaultFileMode&&(n=parseInt(this.opts.defaultFileMode,10)),n||(n=420))),n}};Nl.exports=async function(t,e){if(te("creating target directory",e.dir),!De.isAbsolute(e.dir))throw new Error("Target directory is expected to be absolute");return await it.mkdir(e.dir,{recursive:!0}),e.dir=await it.realpath(e.dir),new Fi(t,e).extract()}});var ki=p((sm,Ml)=>{"use strict";var yp=require("path"),jr=require("fs"),_p=JSON.stringify({AppSetup:{AppInstallRequired:!0,AutoMigrate:!1},ConnectionStrings:{DefaultConnection:"Server=localhost;Database=xframework_setup_placeholder;User Id=setup;Password=placeholder;TrustServerCertificate=True;MultipleActiveResultSets=True;",ReportingConnection:"",ReadOnlyConnection:""},Logging:{LogLevel:{Default:"Information","Microsoft.AspNetCore":"Warning"}},AllowedHosts:"*",Jwt:{Key:"xframework-developer-placeholder-key-minimum-32-chars!!",Issuer:"XFrameworkApi",ExpireDays:"1",RefreshDays:"7"},LoginToken:{SecretKey:"xframework-developer-login-token-secret-minimum-32-chars!!"},Cors:{AllowedOrigins:["http://localhost:5173","http://localhost:3000"],AllowedMethods:["GET","POST","PUT","DELETE","PATCH","OPTIONS"],AllowedHeaders:["Content-Type","Authorization","X-Requested-With","Accept"],AllowCredentials:!0,PreflightMaxAge:600,ExposedHeaders:["Content-Disposition","X-Xf-License"]},AWSVideoSettings:{S3Settings:{VideoBucketName:"",ProcessedVideoBucketName:"",Region:"us-east-1",AccessKey:"",SecretKey:""},LambdaSettings:{BackendApiKey:""}},Aws:{AccessKeyId:"placeholder",SecretAccessKey:"placeholder",Bucket:"placeholder",Region:"us-east-1",IsAwsEnabled:"False",PreviewUrlExpiryMinutes:15},AzureBlobStorage:{ConnectionString:"",ContainerName:""},AzureStorage:{ConnectionString:"",MemberPhotosContainer:"",BaseUrl:""},AzureDocumentIntelligence:{Endpoint:"",Key:""},CVSettings:{AzureVisionEndpoint:"",AzureVisionKey:"",StorageLocation:"",ChunkSize:1e3,ChunkOverlap:200,VectorDimensions:1536},AISettings:{MaxRetries:3,VerificationPromptTemplate:""},Firebase:{CredentialsFile:""},Stripe:{SecretKey:"",PublishableKey:"",WebhookSecret:""},Email:{From:"noreply@localhost",SmtpServer:"localhost",Port:587,Username:"placeholder",Password:"placeholder"},Twilio:{AccountSid:"placeholder",AuthToken:"placeholder",VerifySID:"placeholder"},TwilioConfiguration:{AccountSid:"placeholder",AuthToken:"placeholder",PhoneNumber:"placeholder"},TwoFactorAuthentication:{DefaultMethod:"Email"},RateLimiting:{Enabled:!1,DefaultPolicy:"General",Policies:{General:{Name:"General",PermitLimit:100,Window:"00:01:00",QueueLimit:2}},Redis:{ConnectionString:"",InstanceName:"RateLimit_"}},IdentityOptions:{Password:{RequiredLength:6,RequireLowercase:!1,RequireUppercase:!1,RequireNonAlphanumeric:!1,RequireDigit:!1},User:{RequireUniqueEmail:!0},SignIn:{RequireConfirmedEmail:!1},Register:{RequireRegisterConfirmedEmail:!1},AWSSettings:{IsAwsEnabled:!1,AccessKeyId:"",SecretAccessKey:"",Bucket:""}},SecurityHeaders:{AddXFrameOptions:!1,HstsEnabled:!1,CspMode:"frame-ancestors-only"},BaseConfiguration:{AppName:"xFramework",BaseUrl:"http://localhost:5000"},DataRetention:{DefaultUserRetentionDays:2555,BackgroundProcessingEnabled:!1,DefaultToDryRun:!0},Features:{SupportTickets:!1},OpenAIKey:"",BrianOpenAIKey:"",EncryptKey:"xframework-default-encrypt-key",SuperAdmin:"Operation - Admin",DefaultRole:"",DefaultRoleType:"Operation",DefaultTenant:"",TempToken:{ExpireMinutes:"10"},TempTokenMinutes:10,Roles:{DefaultId:"797b6cf7-1a2f-4933-addb-33b4c51a87aa",DefaultType:"Operation",CustomerRoleId:"3DD64000-A0CF-494B-B41E-5113CB92D22A"},SiteUrl:"",ApplicationUrl:"http://localhost:5000",AvatarUploadFolder:"profileImages",AwsConfiguration:{AccessKeyId:"placeholder",SecretAccessKey:"placeholder",Bucket:"placeholder",Region:"us-east-1",IsAwsEnabled:!1}},null,2),xp=new Set(["appsettings.Local.json","appsettings.Development.json","appsettings.Production.json","appsettings.HierarchyDefaults.json","appsettings.PIIRedaction.json"]);function bp(t){let e=t.toLowerCase();return e.includes("firebase")||e.includes("adminsdk")||e==="google-services.json"||e.includes("googlecredential")}function wp(t){let e=0,r=0;function n(i){let o;try{o=jr.readdirSync(i)}catch{return}for(let s of o){let a=yp.join(i,s),l;try{l=jr.statSync(a)}catch{continue}if(l.isDirectory()){n(a);continue}if(s.endsWith(".json")){if(s==="appsettings.json")try{jr.writeFileSync(a,_p,"utf8"),e++}catch{}else if(xp.has(s)||bp(s))try{jr.unlinkSync(a),r++}catch{}}}}return n(t),{replaced:e,deleted:r}}Ml.exports=wp});var ji=p((lm,zl)=>{"use strict";var I=require("path"),v=require("fs"),Ni=require("os"),vp=require("readline"),{spawn:$l}=require("child_process"),E=Y(),Ep=mr(),Sp=xi(),Mi=require("crypto"),Ul=require("http"),ql=require("https"),{readLicense:Cp}=Et();function Bl(t){return new Promise(e=>{let r=vp.createInterface({input:process.stdin,output:process.stdout});r.question(t,n=>{r.close(),e(n.trim().toLowerCase())})})}function Vl(t){try{let e=JSON.parse(Buffer.from(t.split(".")[1].replace(/-/g,"+").replace(/_/g,"/"),"base64").toString("utf8"));return Array.isArray(e.domains)&&e.domains.length>0?e.domains.filter(Boolean):e.domain?[e.domain]:[]}catch{return[]}}function Ap(t){return new Promise(e=>{Ul.get(`http://127.0.0.1:${t}/api/v1.0/setup/status`,r=>{let n="";r.on("data",i=>{n+=i}),r.on("end",()=>{try{e(JSON.parse(n))}catch{e({isInstalled:!0})}})}).on("error",()=>e({isInstalled:!0}))})}function Ip(t,e){let r=t.database||{};return r.provider==="sqlserver"?`Server=${r.host},${r.port||1433};Database=${r.database};User Id=${r.username};Password=${r.password};TrustServerCertificate=True;MultipleActiveResultSets=True;`:r.provider==="postgresql"&&!r.embedded?`Host=${r.host};Port=${r.port||5432};Database=${r.database};Username=${r.username};Password=${r.password};SSL Mode=Prefer;`:`Host=127.0.0.1;Port=${Vr};Database=${Hl};Username=${Wl};Password=${e.pgPassword};SSL Mode=Disable;Persist Security Info=true;`}var z=I.join(Ni.homedir(),".xFramework","instances","default"),ke=I.join(z,"db"),$r=I.join(z,"logs"),jl=I.join(z,"data"),Ur=I.join(z,"secrets"),qi=I.join(z,".env"),Ne=I.join(z,"config.json"),Op=I.join(z,".pid"),Vr=54329,Wl="contentactive",Hl="contentactive",Bi=I.resolve(__dirname,v.existsSync(I.join(__dirname,"dist"))?".":".."),am=I.join(Bi,"dist","api"),Gl=I.join(Bi,"dist","ui"),ot=I.join(Bi,"dist","customer-portal");function Tp(){[z,ke,$r,jl,I.join(jl,"backups"),Ur].forEach(t=>{v.existsSync(t)||v.mkdirSync(t,{recursive:!0})})}function Pp(){if(v.existsSync(I.join(Ur,"master.key"))||v.writeFileSync(I.join(Ur,"master.key"),Mi.randomBytes(32).toString("hex"),"utf8"),!v.existsSync(qi)){let t=Mi.randomBytes(32).toString("hex");v.writeFileSync(qi,`# xFramework environment
43
43
  CA_JWT_SECRET=${t}
44
44
  `,"utf8")}}function Rp(){let t=v.readFileSync(I.join(Ur,"master.key"),"utf8").trim(),r=v.readFileSync(qi,"utf8").match(/CA_JWT_SECRET=(.+)/);return{masterKey:t,pgPassword:t.slice(0,32),jwtSecret:r?r[1].trim():Mi.randomBytes(32).toString("hex")}}function Fp(t){if(!v.existsSync(Ne)){let e={app:{companyName:"My Company",primaryColor:"#FF5733",timezone:"America/New_York"},server:{port:parseInt(t),host:"127.0.0.1"},database:{provider:"postgresql",embedded:!0},integrations:{googleClientId:"",microsoftClientId:"",microsoftLogin:"",googleMapsApiKey:"",auth0Domain:"",auth0ClientId:"",aiVisionBaseUrl:"",brainServiceKey:"",cmsPageId:"",cmsSiteId:""},customerPortal:{enabled:null,port:7126,integrations:{googleClientId:"",microsoftClientId:"",microsoftLogin:"",googleMapsApiKey:"",auth0Domain:"",auth0ClientId:"",cmsUrl:""}},features:{crm:!0,cms:!0,events:!0,training:!0,timesheets:!0,reports:!0,supportTickets:!0},backup:{enabled:!0,intervalMinutes:60,retentionDays:30}};v.writeFileSync(Ne,JSON.stringify(e,null,2),"utf8")}return JSON.parse(v.readFileSync(Ne,"utf8"))}function Lp(t,e){let r=I.join(Gl,"config.js");if(!v.existsSync(r))return;let n=t||{type:"community",company:"",isLicensed:!1},i=n.expiresAt?n.expiresAt.toISOString():"",o=e?.integrations||{},s=[];if(n.isLicensed)try{let l=v.readFileSync(I.join(z,"license.key"),"utf8").trim();s=Vl(l)}catch{}let a=`window.RUNTIME_CONFIG = {
45
45
  VITE_APP_BASE: "Embedded",
@@ -81,11 +81,11 @@ CA_JWT_SECRET=${t}
81
81
  `;v.writeFileSync(r,l,"utf8")}function kp(t){let e={".html":"text/html",".js":"application/javascript",".mjs":"application/javascript",".css":"text/css",".png":"image/png",".jpg":"image/jpeg",".jpeg":"image/jpeg",".svg":"image/svg+xml",".ico":"image/x-icon",".json":"application/json",".woff":"font/woff",".woff2":"font/woff2",".ttf":"font/ttf",".webp":"image/webp",".txt":"text/plain",".xml":"text/xml"},r=Ul.createServer((n,i)=>{let o=n.url.split("?")[0];o==="/"&&(o="/index.html");let s=I.join(ot,o),a=I.extname(s).toLowerCase();if(v.existsSync(s)&&v.statSync(s).isFile())i.writeHead(200,{"Content-Type":e[a]||"application/octet-stream"}),v.createReadStream(s).pipe(i);else{let l=I.join(ot,"index.html");i.writeHead(200,{"Content-Type":"text/html"}),v.createReadStream(l).pipe(i)}});return r.listen(t,"127.0.0.1"),r}async function Np(t,e){t.text="Starting database...";let r=await import("embedded-postgres"),n=r.default||r,i=new n({databaseDir:ke,user:Wl,password:e,port:Vr,persistent:!0});if(v.existsSync(I.join(ke,"PG_VERSION"))||(v.existsSync(ke)&&(v.rmSync(ke,{recursive:!0,force:!0}),v.mkdirSync(ke,{recursive:!0})),await i.initialise()),!await new Promise(a=>{let c=require("net").createConnection({host:"127.0.0.1",port:Vr});c.setTimeout(3e3),c.once("connect",()=>{c.destroy(),a(!0)}),c.once("error",()=>{c.destroy(),a(!1)}),c.once("timeout",()=>{c.destroy(),a(!1)})})){let a=I.join(ke,"postmaster.pid");v.existsSync(a)&&v.unlinkSync(a),await Promise.race([i.start(),new Promise((l,c)=>setTimeout(()=>c(new Error("PostgreSQL did not start within 60 seconds")),6e4))])}try{await i.createDatabase(Hl)}catch{}return i}function Mp(t,e,r){return r!=="win32"?new Promise((i,o)=>{let s=$l("unzip",["-o",t,"-d",e],{stdio:["ignore","pipe","pipe"]});s.on("close",a=>{a===0||a===1?i():o(new Error(`unzip exited with code ${a}`))}),s.on("error",()=>{Di()(t,{dir:e}).then(i,o)})}):Di()(t,{dir:e})}async function qp(t,e){if(e){let d=I.resolve(e);if(!v.existsSync(d))throw new Error(`Local API binary not found at: ${d}
82
82
  Run: dotnet publish -c Release -o <path>`);return t.succeed(E.green("API binary")+E.gray(` \u2014 using local build at ${d}`)),d}let r=I.join(z,"bin");v.existsSync(r)||v.mkdirSync(r,{recursive:!0});let n=Ni.platform(),i=Ni.arch();n==="darwin"&&(i="x64");let o="";n==="win32"?o="win":n==="darwin"?o="mac":o="linux";let s=`api-${o}-${i}.zip`,a=n==="win32"?".exe":"",l=I.join(r,`XFramework.Api${a}`);if(v.existsSync(l))return l;t.start(`Downloading xFramework Core for ${o} ${i}...`);let c="latest";try{let d=I.join(__dirname,"package.json"),m=I.join(__dirname,"..","package.json");v.existsSync(d)?c="v"+JSON.parse(v.readFileSync(d,"utf8")).version:v.existsSync(m)&&(c="v"+JSON.parse(v.readFileSync(m,"utf8")).version)}catch{}let u=`https://xframework-builds.s3.us-west-2.amazonaws.com/releases/${c}/${s}`,f=I.join(r,s);await new Promise((d,m)=>{ql.get(u,g=>{g.statusCode>=300&&g.statusCode<400&&g.headers.location?ql.get(g.headers.location,h).on("error",_=>{v.unlink(f,()=>{}),m(_)}):g.statusCode!==200?m(new Error(`HTTP ${g.statusCode} - ${g.statusMessage}
83
83
  URL: ${u}
84
- Ensure you have uploaded the build for this version.`)):h(g);function h(_){let x=v.createWriteStream(f),C=0,O=parseInt(_.headers["content-length"],10)||0;_.on("data",P=>{if(C+=P.length,O>0){let D=Math.round(C/O*100);t.text=`Downloading xFramework Core... ${D}%`}}),_.pipe(x),x.on("finish",()=>{x.close(()=>{O>0&&C<O?(v.unlink(f,()=>{}),m(new Error(`Download incomplete: received ${C} of ${O} bytes. Check your connection and try again.`))):d()})}),x.on("error",P=>{v.unlink(f,()=>{}),m(P)})}}).on("error",g=>{v.unlink(f,()=>{}),m(g)})}),t.text="Extracting core files...",await Mp(f,r,n),v.unlinkSync(f);try{ki()(r)}catch{}return n!=="win32"&&v.chmodSync(l,493),l}function Bp(t,e,r,n,i){n.text="Starting portal...";let o=Ip(t,e),s=t.database?.provider||"postgresql",a=t.server?.port||7125,l=v.createWriteStream(I.join($r,"api.log"),{flags:"a"}),c=I.dirname(i),u=$l(i,[],{env:Object.assign(Object.fromEntries(Object.entries(process.env).filter(([f])=>!f.toUpperCase().startsWith("APPSETUP__"))),{DOTNET_ROLL_FORWARD:"Major",ASPNETCORE_ENVIRONMENT:"Production",ASPNETCORE_URLS:`http://127.0.0.1:${a}`,ConnectionStrings__DefaultConnection:o,ConnectionStrings__ReportingConnection:o,ConnectionStrings__ReadOnlyConnection:o,CA_AUTO_MIGRATE:"true",AppSetup__AutoMigrate:"true",AppSetup__AppInstallRequired:"false",AppSetup__SeedDemoData:t.seedDemoData===!0?"true":"false",AppSetup__Username:"support@contentactive.com",AppSetup__Password:"Sa1234TT!",AppSetup__Role:"System Admin",CA_JWT_SECRET:e.jwtSecret,CA_COMPANY_NAME:t.app?.companyName||"xFramework",CA_PRIMARY_COLOR:t.app?.primaryColor||"#FF5733",CA_UI_PATH:Gl,CA_LICENSE_TYPE:r.type,CA_LICENSE_COMPANY:r.company||"",CA_LICENSE_EMAIL:r.email||"",CA_LICENSE_EXPIRES:r.expiresAt?r.expiresAt.toISOString():"",CA_LICENSE_VALID:r.isLicensed?"true":"false",CA_LICENSE_DOMAINS:Array.isArray(r.domains)?r.domains.join(","):"",License__Enabled:"true",CA_DB_PROVIDER:s,CA_LICENSE_TOKEN:r.isLicensed?(()=>{try{return v.readFileSync(I.join(z,"license.key"),"utf8").trim()}catch{return""}})():""}),cwd:c});return u.stdout.pipe(l),u.stderr.pipe(l),u.on("error",f=>{n.fail(E.red("Failed to start portal: "+f.message)),process.exit(1)}),v.writeFileSync(Op,String(u.pid),"utf8"),u}function jp(t,e=3e4){return new Promise((r,n)=>{let i=require("http"),o=Date.now(),s=()=>{i.get(`http://127.0.0.1:${t}/health`,a=>{a.statusCode<500?r():setTimeout(s,500)}).on("error",()=>{Date.now()-o>e?n(new Error("Portal did not start in time")):setTimeout(s,500)})};s()})}zl.exports=async function(e){let r=e.port||"7125";console.log(""),console.log(E.bold.white(" xFramework")),console.log(E.gray(" \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500"));let n=Ep({text:"Initializing...",color:"cyan"}).start();try{Tp(),Pp();let i=!v.existsSync(Ne),o=Fp(r),s=Rp();o.database||(o.database={provider:"postgresql",embedded:!0},v.writeFileSync(Ne,JSON.stringify(o,null,2),"utf8"));let a=Cp();if(n.succeed(E.green("Ready")+E.gray(" \u2014 data directory initialized")),Lp(a,o),o.database?.embedded!==!1&&o.database?.provider!=="sqlserver")n.start("Starting database..."),await Np(n,s.pgPassword),n.succeed(E.green("Database")+E.gray(` \u2014 PostgreSQL running on port ${Vr}`));else{let h=o.database?.provider==="sqlserver"?"SQL Server":"PostgreSQL";n.succeed(E.green("Database")+E.gray(` \u2014 using external ${h} at ${o.database?.host}`))}let c;try{c=await qp(n,e.localApi)}catch(h){n.fail(E.red("Failed to get core binaries: ")+h.message),process.exit(1)}if(o.seedDemoData===void 0||o.seedDemoData===null){n.stop(),console.log("");let h=await Bl(E.cyan(" ? ")+E.bold("Seed demo data?")+E.gray(" Loads sample users, CRM records & opportunities. ")+E.white("[y/N] "));o.seedDemoData=h==="y"||h==="yes",v.writeFileSync(Ne,JSON.stringify(o,null,2),"utf8"),console.log(""),n.start("Starting portal...")}if(v.existsSync(ot)&&(o.customerPortal?.enabled===null||o.customerPortal?.enabled===void 0)){n.stop(),console.log("");let h=await Bl(E.cyan(" ? ")+E.bold("Set up Customer Portal?")+E.gray(" Serves a separate customer-facing portal on a different port. ")+E.white("[y/N] "));o.customerPortal||(o.customerPortal={}),o.customerPortal.enabled=h==="y"||h==="yes",o.customerPortal.port=o.customerPortal.port||7126,o.customerPortal.integrations=o.customerPortal.integrations||{googleClientId:"",microsoftClientId:"",microsoftLogin:"",googleMapsApiKey:"",auth0Domain:"",auth0ClientId:"",cmsUrl:""},v.writeFileSync(Ne,JSON.stringify(o,null,2),"utf8"),console.log(""),n.start("Starting portal...")}n.start("Starting portal...");let u=Bp(o,s,a,n,c);await jp(o.server?.port||7125,3e5),n.succeed(E.green("Portal")+E.gray(` \u2014 running on http://localhost:${o.server?.port||7125}`));let f=null;if(o.customerPortal?.enabled&&v.existsSync(ot)){let h=o.customerPortal.port||7126;Dp(a,o),f=kp(h),n.succeed(E.green("Customer Portal")+E.gray(` \u2014 running on http://localhost:${h}`))}let d=await Ap(o.server?.port||7125),m=d.isInstalled?`http://localhost:${o.server?.port||7125}`:`http://localhost:${o.server?.port||7125}/setup`;console.log(""),console.log(E.bold.green(" \u2713 xFramework is running!")),console.log(""),console.log(E.white(" Portal: ")+E.cyan(`http://localhost:${o.server?.port||7125}`)),f&&console.log(E.white(" Customer: ")+E.cyan(`http://localhost:${o.customerPortal.port||7126}`)),d&&!d.isInstalled&&(console.log(E.white(" Setup: ")+E.cyan(`http://localhost:${o.server?.port||7125}/setup`)),console.log(E.gray(" Complete the setup wizard to create your admin account."))),console.log(E.white(" Data: ")+E.gray(z));let g=o.database?.provider==="sqlserver"?"SQL Server":o.database?.embedded!==!1?"PostgreSQL (embedded)":`PostgreSQL (${o.database?.host})`;if(console.log(E.white(" Database: ")+E.gray(g)),a.isLicensed){let h=a.expiresAt?E.gray(` \u2014 expires ${a.expiresAt.toDateString()} (${a.daysRemaining}d)`):"";console.log(E.white(" License: ")+E.green(`${a.type} \u2014 ${a.company}`)+h)}else a.type==="revoked"?console.log(E.white(" License: ")+E.red("Revoked \u2014 contact support@contentactive.com")):a.type==="domain_mismatch"?console.log(E.white(" License: ")+E.red("Domain mismatch \u2014 this key is not licensed for this domain")):a.type==="expired"?console.log(E.white(" License: ")+E.red("Expired \u2014 run: xFramework-cli license <key>")):console.log(E.white(" License: ")+E.yellow("Community Edition \u2014 run: xFramework-cli license <key>"));console.log(""),console.log(E.gray(" Press Ctrl+C to stop")),console.log(""),await Sp(m),process.on("SIGINT",async()=>{if(console.log(""),n.start("Stopping portal..."),f)try{f.close()}catch{}u.kill(),n.succeed("Portal stopped"),process.exit(0)}),u.on("exit",h=>{if(f)try{f.close()}catch{}h!==0&&h!==null&&console.log(E.red(`
84
+ Ensure you have uploaded the build for this version.`)):h(g);function h(_){let x=v.createWriteStream(f),S=0,O=parseInt(_.headers["content-length"],10)||0;_.on("data",P=>{if(S+=P.length,O>0){let D=Math.round(S/O*100);t.text=`Downloading xFramework Core... ${D}%`}}),_.pipe(x),x.on("finish",()=>{x.close(()=>{O>0&&S<O?(v.unlink(f,()=>{}),m(new Error(`Download incomplete: received ${S} of ${O} bytes. Check your connection and try again.`))):d()})}),x.on("error",P=>{v.unlink(f,()=>{}),m(P)})}}).on("error",g=>{v.unlink(f,()=>{}),m(g)})}),t.text="Extracting core files...",await Mp(f,r,n),v.unlinkSync(f);try{ki()(r)}catch{}return n!=="win32"&&v.chmodSync(l,493),l}function Bp(t,e,r,n,i){n.text="Starting portal...";let o=Ip(t,e),s=t.database?.provider||"postgresql",a=t.server?.port||7125,l=v.createWriteStream(I.join($r,"api.log"),{flags:"a"}),c=I.dirname(i),u=$l(i,[],{env:Object.assign(Object.fromEntries(Object.entries(process.env).filter(([f])=>!f.toUpperCase().startsWith("APPSETUP__"))),{DOTNET_ROLL_FORWARD:"Major",ASPNETCORE_ENVIRONMENT:"Production",ASPNETCORE_URLS:`http://127.0.0.1:${a}`,ConnectionStrings__DefaultConnection:o,ConnectionStrings__ReportingConnection:o,ConnectionStrings__ReadOnlyConnection:o,CA_AUTO_MIGRATE:"true",AppSetup__AutoMigrate:"true",AppSetup__AppInstallRequired:"false",AppSetup__SeedDemoData:t.seedDemoData===!0?"true":"false",AppSetup__Username:"support@contentactive.com",AppSetup__Password:"Sa1234TT!",AppSetup__Role:"System Admin",CA_JWT_SECRET:e.jwtSecret,CA_COMPANY_NAME:t.app?.companyName||"xFramework",CA_PRIMARY_COLOR:t.app?.primaryColor||"#FF5733",CA_UI_PATH:Gl,CA_LICENSE_TYPE:r.type,CA_LICENSE_COMPANY:r.company||"",CA_LICENSE_EMAIL:r.email||"",CA_LICENSE_EXPIRES:r.expiresAt?r.expiresAt.toISOString():"",CA_LICENSE_VALID:r.isLicensed?"true":"false",CA_LICENSE_DOMAINS:Array.isArray(r.domains)?r.domains.join(","):"",License__Enabled:"true",CA_DB_PROVIDER:s,CA_LICENSE_TOKEN:r.isLicensed?(()=>{try{return v.readFileSync(I.join(z,"license.key"),"utf8").trim()}catch{return""}})():""}),cwd:c});return u.stdout.pipe(l),u.stderr.pipe(l),u.on("error",f=>{n.fail(E.red("Failed to start portal: "+f.message)),process.exit(1)}),v.writeFileSync(Op,String(u.pid),"utf8"),u}function jp(t,e=3e4){return new Promise((r,n)=>{let i=require("http"),o=Date.now(),s=()=>{i.get(`http://127.0.0.1:${t}/health`,a=>{a.statusCode<500?r():setTimeout(s,500)}).on("error",()=>{Date.now()-o>e?n(new Error("Portal did not start in time")):setTimeout(s,500)})};s()})}zl.exports=async function(e){let r=e.port||"7125";console.log(""),console.log(E.bold.white(" xFramework")),console.log(E.gray(" \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500"));let n=Ep({text:"Initializing...",color:"cyan"}).start();try{Tp(),Pp();let i=!v.existsSync(Ne),o=Fp(r),s=Rp();o.database||(o.database={provider:"postgresql",embedded:!0},v.writeFileSync(Ne,JSON.stringify(o,null,2),"utf8"));let a=Cp();if(n.succeed(E.green("Ready")+E.gray(" \u2014 data directory initialized")),Lp(a,o),o.database?.embedded!==!1&&o.database?.provider!=="sqlserver")n.start("Starting database..."),await Np(n,s.pgPassword),n.succeed(E.green("Database")+E.gray(` \u2014 PostgreSQL running on port ${Vr}`));else{let h=o.database?.provider==="sqlserver"?"SQL Server":"PostgreSQL";n.succeed(E.green("Database")+E.gray(` \u2014 using external ${h} at ${o.database?.host}`))}let c;try{c=await qp(n,e.localApi)}catch(h){n.fail(E.red("Failed to get core binaries: ")+h.message),process.exit(1)}if(o.seedDemoData===void 0||o.seedDemoData===null){n.stop(),console.log("");let h=await Bl(E.cyan(" ? ")+E.bold("Seed demo data?")+E.gray(" Loads sample users, CRM records & opportunities. ")+E.white("[y/N] "));o.seedDemoData=h==="y"||h==="yes",v.writeFileSync(Ne,JSON.stringify(o,null,2),"utf8"),console.log(""),n.start("Starting portal...")}if(v.existsSync(ot)&&(o.customerPortal?.enabled===null||o.customerPortal?.enabled===void 0)){n.stop(),console.log("");let h=await Bl(E.cyan(" ? ")+E.bold("Set up Customer Portal?")+E.gray(" Serves a separate customer-facing portal on a different port. ")+E.white("[y/N] "));o.customerPortal||(o.customerPortal={}),o.customerPortal.enabled=h==="y"||h==="yes",o.customerPortal.port=o.customerPortal.port||7126,o.customerPortal.integrations=o.customerPortal.integrations||{googleClientId:"",microsoftClientId:"",microsoftLogin:"",googleMapsApiKey:"",auth0Domain:"",auth0ClientId:"",cmsUrl:""},v.writeFileSync(Ne,JSON.stringify(o,null,2),"utf8"),console.log(""),n.start("Starting portal...")}n.start("Starting portal...");let u=Bp(o,s,a,n,c);await jp(o.server?.port||7125,3e5),n.succeed(E.green("Portal")+E.gray(` \u2014 running on http://localhost:${o.server?.port||7125}`));let f=null;if(o.customerPortal?.enabled&&v.existsSync(ot)){let h=o.customerPortal.port||7126;Dp(a,o),f=kp(h),n.succeed(E.green("Customer Portal")+E.gray(` \u2014 running on http://localhost:${h}`))}let d=await Ap(o.server?.port||7125),m=d.isInstalled?`http://localhost:${o.server?.port||7125}`:`http://localhost:${o.server?.port||7125}/setup`;console.log(""),console.log(E.bold.green(" \u2713 xFramework is running!")),console.log(""),console.log(E.white(" Portal: ")+E.cyan(`http://localhost:${o.server?.port||7125}`)),f&&console.log(E.white(" Customer: ")+E.cyan(`http://localhost:${o.customerPortal.port||7126}`)),d&&!d.isInstalled&&(console.log(E.white(" Setup: ")+E.cyan(`http://localhost:${o.server?.port||7125}/setup`)),console.log(E.gray(" Complete the setup wizard to create your admin account."))),console.log(E.white(" Data: ")+E.gray(z));let g=o.database?.provider==="sqlserver"?"SQL Server":o.database?.embedded!==!1?"PostgreSQL (embedded)":`PostgreSQL (${o.database?.host})`;if(console.log(E.white(" Database: ")+E.gray(g)),a.isLicensed){let h=a.expiresAt?E.gray(` \u2014 expires ${a.expiresAt.toDateString()} (${a.daysRemaining}d)`):"";console.log(E.white(" License: ")+E.green(`${a.type} \u2014 ${a.company}`)+h)}else a.type==="revoked"?console.log(E.white(" License: ")+E.red("Revoked \u2014 contact support@contentactive.com")):a.type==="domain_mismatch"?console.log(E.white(" License: ")+E.red("Domain mismatch \u2014 this key is not licensed for this domain")):a.type==="expired"?console.log(E.white(" License: ")+E.red("Expired \u2014 run: xFramework-cli license <key>")):console.log(E.white(" License: ")+E.yellow("Community Edition \u2014 run: xFramework-cli license <key>"));console.log(""),console.log(E.gray(" Press Ctrl+C to stop")),console.log(""),await Sp(m),process.on("SIGINT",async()=>{if(console.log(""),n.start("Stopping portal..."),f)try{f.close()}catch{}u.kill(),n.succeed("Portal stopped"),process.exit(0)}),u.on("exit",h=>{if(f)try{f.close()}catch{}h!==0&&h!==null&&console.log(E.red(`
85
85
  Portal exited with code ${h}. Check logs: ${I.join($r,"api.log")}`)),process.exit(h||0)})}catch(i){n.fail(E.red("Startup failed: ")+(i?.message||String(i))),console.log(E.gray(`
86
- Check logs: ${I.join($r,"api.log")}`)),process.exit(1)}}});var Jl=p((cm,Yl)=>{"use strict";var Wr=require("fs"),Kl=require("path"),$p=require("os"),$i=Y(),Up=Kl.join($p.homedir(),".xFramework","instances","default"),Hr=Kl.join(Up,".pid");Yl.exports=function(){if(!Wr.existsSync(Hr)){console.log($i.yellow(" Portal is not running."));return}let e=parseInt(Wr.readFileSync(Hr,"utf8").trim());try{process.kill(e,"SIGTERM"),Wr.unlinkSync(Hr),console.log($i.green(" \u2713 Portal stopped."))}catch{Wr.unlinkSync(Hr),console.log($i.yellow(" Portal was not running."))}}});var tc=p((um,ec)=>{"use strict";var Gr=require("fs"),Ui=require("path"),Vp=require("os"),Wp=require("http"),st=Y(),Ql=Ui.join(Vp.homedir(),".xFramework","instances","default"),Xl=Ui.join(Ql,".pid"),Zl=Ui.join(Ql,"config.json");ec.exports=function(){let e=Gr.existsSync(Xl),n=(Gr.existsSync(Zl)?JSON.parse(Gr.readFileSync(Zl,"utf8")):{}).server?.port||7125;if(!e){console.log(st.yellow(" \u25CF Portal is stopped"));return}let i=parseInt(Gr.readFileSync(Xl,"utf8").trim());Wp.get(`http://localhost:${n}/health`,o=>{o.statusCode<500?(console.log(st.green(" \u25CF Portal is running")),console.log(st.gray(` URL: http://localhost:${n}`)),console.log(st.gray(` PID: ${i}`))):console.log(st.yellow(" \u25CF Portal is starting..."))}).on("error",()=>{console.log(st.yellow(" \u25CF Portal process exists but not responding yet"))})}});var ic=p((fm,nc)=>{"use strict";var rc=require("fs"),Wi=require("path"),Hp=require("os"),{execSync:Gp}=require("child_process"),zr=Y(),zp=Wi.join(Hp.homedir(),".xFramework","instances","default"),Vi=Wi.join(zp,"data","backups"),Kp=54329,Yp="contentactive",Jp="contentactive";nc.exports=function(){rc.existsSync(Vi)||rc.mkdirSync(Vi,{recursive:!0});let e=new Date().toISOString().replace(/[:.]/g,"-"),r=Wi.join(Vi,`backup-${e}.sql`);console.log(zr.cyan(" Creating backup..."));try{Gp(`pg_dump -h localhost -p ${Kp} -U ${Yp} -d ${Jp} -f "${r}"`,{env:{...process.env,PGPASSWORD:"contentactive_local"}}),console.log(zr.green(` \u2713 Backup saved: ${r}`))}catch(n){console.log(zr.red(" Backup failed: ")+n.message),console.log(zr.gray(" Make sure the portal is running first."))}}});var ac=p((dm,sc)=>{"use strict";var oc=require("fs"),Gi=require("path"),Xp=require("os"),{execSync:Zp}=require("child_process"),Tt=Y(),Qp=Gi.join(Xp.homedir(),".xFramework","instances","default"),Hi=Gi.join(Qp,"data","backups"),e0=54329,t0="contentactive",r0="contentactive";sc.exports=function(){if(!oc.existsSync(Hi)){console.log(Tt.yellow(" No backups found."));return}let e=oc.readdirSync(Hi).filter(n=>n.endsWith(".sql")).sort().reverse();if(e.length===0){console.log(Tt.yellow(" No backups found."));return}let r=Gi.join(Hi,e[0]);console.log(Tt.cyan(` Restoring from: ${e[0]}`));try{Zp(`psql -h localhost -p ${e0} -U ${t0} -d ${r0} -f "${r}"`,{env:{...process.env,PGPASSWORD:"contentactive_local"}}),console.log(Tt.green(" \u2713 Restore complete."))}catch(n){console.log(Tt.red(" Restore failed: ")+n.message)}}});var fc=p((hm,uc)=>{"use strict";var w=Y(),{readLicense:n0,saveLicense:i0,removeLicense:o0}=Et();function cc(t){return t?t.charAt(0).toUpperCase()+t.slice(1):""}function lc(){let t=n0();if(console.log(""),console.log(w.bold.white(" xFramework \u2014 License Status")),console.log(w.gray(" \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500")),console.log(""),t.type==="community")console.log(w.white(" Status: ")+w.yellow("Community Edition (Unlicensed)")),console.log(""),console.log(w.gray(" To activate a license:")),console.log(w.gray(" xFramework-cli license <your-key>"));else if(t.type==="expired")console.log(w.white(" Status: ")+w.red("Expired")),console.log(w.white(" Company: ")+w.cyan(t.company||"\u2014")),console.log(w.white(" Email: ")+w.cyan(t.email||"\u2014")),console.log(w.white(" Expired: ")+w.red(t.expiresAt.toDateString())),console.log(""),console.log(w.gray(" Renew at contentactive.com/renew"));else if(t.type==="invalid")console.log(w.white(" Status: ")+w.red("Invalid License Key")),console.log(w.red(" Error: ")+w.white(t.error||"Unknown error")),console.log(""),console.log(w.gray(" The license file may be corrupted. Re-activate with your key:")),console.log(w.gray(" xFramework-cli license <your-key>"));else if(console.log(w.white(" Status: ")+w.green("Licensed \u2713")),console.log(w.white(" Type: ")+w.cyan(cc(t.type))),console.log(w.white(" Company: ")+w.cyan(t.company||"\u2014")),console.log(w.white(" Email: ")+w.cyan(t.email||"\u2014")),t.expiresAt){let e=t.expiresAt.toDateString(),r=t.daysRemaining<30?w.yellow:w.cyan;console.log(w.white(" Expires: ")+r(`${e} (${t.daysRemaining} days remaining)`))}else console.log(w.white(" Expires: ")+w.cyan("Never"));console.log("")}function s0(t){console.log(""),console.log(w.bold.white(" xFramework \u2014 License Activation")),console.log(w.gray(" \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500")),console.log("");try{let e=i0(t),r=e.exp?new Date(e.exp*1e3):null,n=r?Math.ceil((r-new Date)/(1e3*60*60*24)):null;console.log(w.bold.green(" \u2713 License activated successfully!")),console.log(""),console.log(w.white(" Company: ")+w.cyan(e.company||"\u2014")),console.log(w.white(" Email: ")+w.cyan(e.sub||"\u2014")),console.log(w.white(" Type: ")+w.cyan(cc(e.type||"professional"))),console.log(r?w.white(" Expires: ")+w.cyan(`${r.toDateString()} (${n} days)`):w.white(" Expires: ")+w.cyan("Never")),console.log(""),console.log(w.gray(" Restart the portal to apply: xFramework-cli start"))}catch(e){console.log(w.bold.red(" \u2717 Activation failed")),console.log(w.white(" Reason: ")+w.red(e.message)),console.log(""),console.log(w.gray(" Please check your license key and try again.")),console.log(w.gray(" Contact support@contentactive.com if the issue persists."))}console.log("")}function a0(){console.log("");let t=o0();console.log(t?w.green(" \u2713 License removed. Running in Community Edition."):w.gray(" No active license found.")),console.log("")}uc.exports=function(e,r){if(r&&r.status){lc();return}if(r&&r.remove){a0();return}if(e){s0(e);return}lc()}});var zi=p((pm,gc)=>{"use strict";var{spawnSync:l0}=require("child_process"),Me=Y(),dc=18,Pt=8;function hc(){let t=process.version.replace(/^v/,"");return parseInt(t.split(".")[0],10)>=dc?{ok:!0}:{ok:!1,tool:"Node.js",installed:t||"unknown",required:`${dc}.x or later`,installUrl:"https://nodejs.org/en/download"}}function pc(){let t=(process.platform==="win32","dotnet"),e=l0(t,["--version"],{encoding:"utf8"});if(e.error||e.status!==0)return{ok:!1,tool:".NET SDK",installed:null,required:`${Pt}.0 or later`,installUrl:`https://dotnet.microsoft.com/download/dotnet/${Pt}.0`};let r=(e.stdout||"").trim();return parseInt(r.split(".")[0],10)>=Pt?{ok:!0}:{ok:!1,tool:".NET SDK",installed:r||"unknown",required:`${Pt}.0 or later`,installUrl:`https://dotnet.microsoft.com/download/dotnet/${Pt}.0`}}function c0(){let e=[hc(),pc()].filter(r=>!r.ok);if(e.length!==0){console.log(""),console.log(Me.red.bold(" Missing prerequisites")),console.log(Me.gray(" \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500"));for(let r of e)r.installed?console.log(Me.yellow(` \u2716 ${r.tool}`)+Me.gray(` \u2014 found v${r.installed}, requires ${r.required}`)):console.log(Me.yellow(` \u2716 ${r.tool}`)+Me.gray(` \u2014 not installed (requires ${r.required})`)),console.log(Me.cyan(` Install: ${r.installUrl}`));console.log(""),process.exit(1)}}gc.exports={assertPrerequisites:c0,checkNode:hc,checkDotnet:pc}});var Yi=p((mm,wc)=>{"use strict";var G=require("path"),B=require("fs"),gm=require("os"),{spawn:xc}=require("child_process"),bc=require("readline"),S=Y(),u0=mr(),f0=ki(),{assertPrerequisites:d0}=zi(),h0="contentactivedev",p0="xframework-api",g0="xframework",m0="xframework-customer",mc=process.env.XFRAMEWORK_BB_TOKEN_API||"ATCTT3xFfGN02smBNDdN8Z2c8JRMm0ubFdojS81iBP16bNzcuVkShFVaWOSPZIbq7nSZMIg1HgDhx1R_JHHsjnei5VqhUbJ2wH5ZqMUUWpWAhfzjDXG9ozUJiprMTYkHGG4qRXab_qvvuTB_U7SPlFZ2UhPcW8aA_GiGKNwa7sr-f1gKsTREXzw=A8A98735",yc=process.env.XFRAMEWORK_BB_TOKEN_UI||"ATCTT3xFfGN0EyhqJiYrlXpqtWMKWLAE27DqqmlyyfzOE6mne2s2tMmrNfa3kz-mh69o_cuVzx6mbjR8fFv5dO0xl_ml_snlhXJTNx_icCCdZWcwCmuuSVPam6VOsMilZgVaiG4WeYhKiv_ZrcbBolB2GXeLKWMHMZ6QyzlJz7v9PmJoUkgrO6w=4A159CCB",_c=process.env.XFRAMEWORK_BB_TOKEN_CP||"ATCTT3xFfGN0_1wcSaMQd96uCXWUQqJZoz_fUdzmMc5GKllSi4hXmEq2rPz7XIj8cEI1Ke5AtEmkUNKZqFBVMvneqFwpsPazacqHJtPX8BVOnnO7HHDPpVCFVsMgbr7htSVA2dy73NPQ6e2ztOqVLTiF1fSgAl4G_aNICzQSrhDdZkSDI2WkuTI=E7201F78";function y0(t,e){return new Promise(r=>t.question(e,n=>r(n.trim())))}function _0(t){return new Promise(e=>{let r=bc.createInterface({input:process.stdin,output:process.stdout});r.question(t,n=>{r.close(),e(n.trim().toLowerCase())})})}function Kr(t,e){B.mkdirSync(G.dirname(t),{recursive:!0}),B.writeFileSync(t,e,"utf8")}function x0(t,e,r){return new Promise((n,i)=>{let o=xc(t,e,{...r,stdio:["ignore","pipe","pipe"]});o.on("close",n),o.on("error",i)})}async function Ki(t,e,r,n,i,o,s=[]){let a=`https://x-token-auth:${encodeURIComponent(r)}@bitbucket.org/${h0}/${t}.git`,l=s.length>0,c=async m=>(o.text=`Downloading ${i} (${m})...`,B.existsSync(n)&&B.rmSync(n,{recursive:!0,force:!0}),new Promise((g,h)=>{let _=xc("git",["clone","--depth","1","--branch",m,"--single-branch",a,n],{stdio:["ignore","pipe","pipe"]}),x="";_.stderr.on("data",C=>{x+=C.toString()}),_.on("close",C=>{if(C!==0)return x.includes("couldn't find remote ref")||x.includes("Remote branch")||x.includes("not found in upstream")?h(new Error(`TAG_NOT_FOUND:${m}`)):x.includes("Authentication failed")||x.includes("could not read Username")?h(new Error("AUTH_FAILED: Git authentication failed \u2014 check the Bitbucket token.")):h(new Error(`git clone failed: ${x.trim().split(`
87
- `).pop()}`));for(let O of s)try{B.unlinkSync(G.join(n,O))}catch{}g()}),_.on("error",C=>h(new Error(C.code==="ENOENT"?"git not found \u2014 install Git and try again.":C.message)))})),u=[e];e.startsWith("v")?u.push(e.slice(1)):e!=="develop"&&u.push(`v${e}`),u.push("develop");let f=!1;for(let m of u)try{await c(m),f=!0;break}catch(g){if(!g.message.startsWith("TAG_NOT_FOUND"))throw g}if(!f)throw new Error(`Could not find a valid tag or branch for ${i}.`);let d=G.join(n,".git");B.existsSync(d)&&B.rmSync(d,{recursive:!0,force:!0})}function b0(t){try{let e=B.readdirSync(t);if(e.some(r=>r.endsWith(".csproj")))return t;for(let r of e){let n=G.join(t,r);try{if(B.statSync(n).isDirectory()&&B.readdirSync(n).some(i=>i.endsWith(".csproj")))return n}catch{}}}catch{}return t}function w0(){try{return pn().version}catch{return null}}function v0(t,e){return JSON.stringify({name:t,version:"1.0.0",xframeworkVersion:e||"latest",createdAt:new Date().toISOString().split("T")[0]},null,2)}function E0(){return JSON.stringify({AppSetup:{AppInstallRequired:!0,AutoMigrate:!1},ConnectionStrings:{DefaultConnection:"",SqlServerConnection:"Server=localhost;Database=xframework;User Id=sa;Password=yourpassword;TrustServerCertificate=True;MultipleActiveResultSets=True;",PostgreSQLConnection:"Host=localhost;Port=5432;Database=xframework;Username=postgres;Password=yourpassword;"}},null,2)}wc.exports=async function(e,r){d0(),console.log(""),console.log(S.bold.white(" xFramework")+S.gray(" \u2014 Developer Setup")),console.log(S.gray(" \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500")),console.log("");let n=bc.createInterface({input:process.stdin,output:process.stdout});e||(e=await y0(n,S.white(" Project name: "))),e=(e||"").replace(/[^a-zA-Z0-9._-]/g,"-").replace(/^-+|-+$/g,""),e||(n.close(),console.log(S.red(" Invalid project name.")),process.exit(1)),n.close();let i=G.resolve(process.cwd(),e);B.existsSync(i)&&(console.log(S.red(`
88
- Directory "${e}" already exists.`)),process.exit(1)),B.mkdirSync(i,{recursive:!0});let o=w0(),s=r.version||(o?`v${o}`:"latest"),a=u0({text:"Preparing...",color:"cyan"}).start(),l=G.join(i,"api"),c=G.join(i,"ui"),u=G.join(i,"customer-portal");(mc==="PASTE_API_REPO_TOKEN"||yc==="PASTE_UI_REPO_TOKEN")&&(a.fail(S.red("Bitbucket API tokens not configured.")),console.log(""),console.log(S.yellow(" Set tokens via environment variables:")),console.log(S.cyan(" set XFRAMEWORK_BB_TOKEN_API=<xframework-api repo token>")),console.log(S.cyan(" set XFRAMEWORK_BB_TOKEN_UI=<xframework repo token>")),console.log(S.gray(" Contact support@contentactive.com to get access.")),B.rmdirSync(i),process.exit(1));let f=_c!=="PASTE_CP_REPO_TOKEN",d=["appsettings.Local.json","appsettings.Development.json","appsettings.Production.json","google-services.json"],m=[".env",".env.local",".env.development",".env.development.local",".env.production",".env.production.local",".env.stage",".env.staging",".env.test",".env.test.local"];try{await Ki(p0,s,mc,l,"API source",a,d),a.succeed(S.green("API")+S.gray(` \u2014 downloaded (${s})`))}catch(x){a.fail(S.red("Failed to download API source: ")+x.message),B.rmSync(i,{recursive:!0,force:!0}),process.exit(1)}try{a.start(`Downloading UI source (${s})...`),await Ki(g0,s,yc,c,"UI source",a,m),a.succeed(S.green("UI")+S.gray(` \u2014 downloaded (${s})`))}catch(x){a.fail(S.red("Failed to download UI source: ")+x.message),B.rmSync(i,{recursive:!0,force:!0}),process.exit(1)}if(f){a.stop(),console.log("");let x=await _0(S.cyan(" ? ")+S.bold("Include Customer Portal?")+S.gray(" Clones the customer-facing portal into customer-portal/. ")+S.white("[y/N] ")),C=x==="y"||x==="yes";if(console.log(""),a.start("Continuing..."),C)try{a.start(`Downloading Customer Portal source (${s})...`),await Ki(m0,s,_c,u,"Customer Portal source",a,m),a.succeed(S.green("Customer Portal")+S.gray(` \u2014 downloaded (${s})`));let O=G.join(u,".env.embedded");if(B.existsSync(O)){let P=B.readFileSync(O,"utf8").replace(/^VITE_APP_BASE=.*$/m,'VITE_APP_BASE=""');Kr(G.join(u,".env"),P)}}catch(O){a.warn(S.yellow("Customer Portal")+S.gray(` \u2014 skipped (${O.message})`))}}let g=G.join(c,".env.embedded");if(B.existsSync(g)){let x=B.readFileSync(g,"utf8").replace(/^VITE_APP_BASE=.*$/m,'VITE_APP_BASE=""');Kr(G.join(c,".env"),x)}a.start("Writing API configuration template...");let{replaced:h}=f0(l);a.succeed(S.green("Configuration")+S.gray(" \u2014 template written"));let _=b0(l);if(Kr(G.join(i,"xframework.json"),v0(e,s)),Kr(G.join(_,"appsettings.Local.json.example"),E0()),!r.noInstall&&B.existsSync(_)){a.start("Restoring .NET packages...");try{await x0("dotnet",["restore",_],{cwd:_})===0?a.succeed(S.green(".NET packages")+S.gray(" \u2014 restored")):a.stop()}catch{a.stop()}}console.log(""),console.log(S.bold.green(" \u2713 Project created!")),console.log(""),console.log(S.white(" Project: ")+S.cyan(e+"/")),console.log(S.white(" Version: ")+S.gray(s)),B.existsSync(u)&&console.log(S.white(" Customer: ")+S.gray("customer-portal/ included")),console.log(""),console.log(S.bold.white(" Next steps:")),console.log(""),console.log(S.white(" 1.")+S.gray(" Start the portal:")),console.log(S.cyan(` cd ${e}`)),console.log(S.cyan(" xFramework-cli run")),console.log(""),console.log(S.white(" 2.")+S.gray(" Complete setup at:")),console.log(S.cyan(" http://localhost:5000/setup")),console.log(S.gray(" \u2014 configure your database and create your admin account")),console.log(""),console.log(S.white(" Optional \u2014 activate a developer license:")),console.log(S.cyan(" xFramework-cli license <your-key>")),console.log("")}});var Oc=p((ym,Ic)=>{"use strict";var R=require("path"),F=require("fs"),S0=require("os"),C0=require("readline"),{spawn:Ji}=require("child_process"),Yr=process.platform==="win32"?"npm.cmd":"npm",y=Y(),A0=mr(),I0=xi(),Ac=require("http"),{readLicense:O0}=Et(),{assertPrerequisites:T0}=zi();function P0(t){return new Promise(e=>{let r=C0.createInterface({input:process.stdin,output:process.stdout});r.question(t,n=>{r.close(),e(n.trim().toLowerCase())})})}var R0=5e3,Jr=5173,Xr=3e3;function vc(t,e=12e4){return new Promise((r,n)=>{let i=Date.now(),o=()=>{Ac.get(`http://127.0.0.1:${t}/health`,a=>{a.statusCode<500?r():s()}).on("error",()=>{Date.now()-i>e?n(new Error(`API did not start within ${e/1e3}s`)):s()})},s=()=>setTimeout(o,500);o()})}function F0(t){return new Promise(e=>{Ac.get(`http://127.0.0.1:${t}/api/v1.0/setup/status`,r=>{let n="";r.on("data",i=>{n+=i}),r.on("end",()=>{try{e(JSON.parse(n))}catch{e({isInstalled:!0})}})}).on("error",()=>e({isInstalled:!0}))})}function L0(t){let e=t;for(let r=0;r<4;r++){if(F.existsSync(R.join(e,"xframework.json")))return e;let n=R.dirname(e);if(n===e)break;e=n}return null}function D0(t){let e=R.join(t,"license.key");if(F.existsSync(e))try{let{verifyLicenseFile:n}=Et();if(typeof n=="function")return n(e)}catch{}let r=O0();return{...r,type:r.isLicensed?r.type:"developer",isLicensed:!0}}function Zr(t,e,r,n=!1){let i=R.join(t,"ui","public");if(!F.existsSync(i))return;let o=e.expiresAt?e.expiresAt.toISOString():"",s=`// Auto-generated by xFramework-cli run \u2014 do not edit manually
86
+ Check logs: ${I.join($r,"api.log")}`)),process.exit(1)}}});var Jl=p((cm,Yl)=>{"use strict";var Wr=require("fs"),Kl=require("path"),$p=require("os"),$i=Y(),Up=Kl.join($p.homedir(),".xFramework","instances","default"),Hr=Kl.join(Up,".pid");Yl.exports=function(){if(!Wr.existsSync(Hr)){console.log($i.yellow(" Portal is not running."));return}let e=parseInt(Wr.readFileSync(Hr,"utf8").trim());try{process.kill(e,"SIGTERM"),Wr.unlinkSync(Hr),console.log($i.green(" \u2713 Portal stopped."))}catch{Wr.unlinkSync(Hr),console.log($i.yellow(" Portal was not running."))}}});var tc=p((um,ec)=>{"use strict";var Gr=require("fs"),Ui=require("path"),Vp=require("os"),Wp=require("http"),st=Y(),Ql=Ui.join(Vp.homedir(),".xFramework","instances","default"),Xl=Ui.join(Ql,".pid"),Zl=Ui.join(Ql,"config.json");ec.exports=function(){let e=Gr.existsSync(Xl),n=(Gr.existsSync(Zl)?JSON.parse(Gr.readFileSync(Zl,"utf8")):{}).server?.port||7125;if(!e){console.log(st.yellow(" \u25CF Portal is stopped"));return}let i=parseInt(Gr.readFileSync(Xl,"utf8").trim());Wp.get(`http://localhost:${n}/health`,o=>{o.statusCode<500?(console.log(st.green(" \u25CF Portal is running")),console.log(st.gray(` URL: http://localhost:${n}`)),console.log(st.gray(` PID: ${i}`))):console.log(st.yellow(" \u25CF Portal is starting..."))}).on("error",()=>{console.log(st.yellow(" \u25CF Portal process exists but not responding yet"))})}});var ic=p((fm,nc)=>{"use strict";var rc=require("fs"),Wi=require("path"),Hp=require("os"),{execSync:Gp}=require("child_process"),zr=Y(),zp=Wi.join(Hp.homedir(),".xFramework","instances","default"),Vi=Wi.join(zp,"data","backups"),Kp=54329,Yp="contentactive",Jp="contentactive";nc.exports=function(){rc.existsSync(Vi)||rc.mkdirSync(Vi,{recursive:!0});let e=new Date().toISOString().replace(/[:.]/g,"-"),r=Wi.join(Vi,`backup-${e}.sql`);console.log(zr.cyan(" Creating backup..."));try{Gp(`pg_dump -h localhost -p ${Kp} -U ${Yp} -d ${Jp} -f "${r}"`,{env:{...process.env,PGPASSWORD:"contentactive_local"}}),console.log(zr.green(` \u2713 Backup saved: ${r}`))}catch(n){console.log(zr.red(" Backup failed: ")+n.message),console.log(zr.gray(" Make sure the portal is running first."))}}});var ac=p((dm,sc)=>{"use strict";var oc=require("fs"),Gi=require("path"),Xp=require("os"),{execSync:Zp}=require("child_process"),Tt=Y(),Qp=Gi.join(Xp.homedir(),".xFramework","instances","default"),Hi=Gi.join(Qp,"data","backups"),e0=54329,t0="contentactive",r0="contentactive";sc.exports=function(){if(!oc.existsSync(Hi)){console.log(Tt.yellow(" No backups found."));return}let e=oc.readdirSync(Hi).filter(n=>n.endsWith(".sql")).sort().reverse();if(e.length===0){console.log(Tt.yellow(" No backups found."));return}let r=Gi.join(Hi,e[0]);console.log(Tt.cyan(` Restoring from: ${e[0]}`));try{Zp(`psql -h localhost -p ${e0} -U ${t0} -d ${r0} -f "${r}"`,{env:{...process.env,PGPASSWORD:"contentactive_local"}}),console.log(Tt.green(" \u2713 Restore complete."))}catch(n){console.log(Tt.red(" Restore failed: ")+n.message)}}});var fc=p((hm,uc)=>{"use strict";var w=Y(),{readLicense:n0,saveLicense:i0,removeLicense:o0}=Et();function cc(t){return t?t.charAt(0).toUpperCase()+t.slice(1):""}function lc(){let t=n0();if(console.log(""),console.log(w.bold.white(" xFramework \u2014 License Status")),console.log(w.gray(" \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500")),console.log(""),t.type==="community")console.log(w.white(" Status: ")+w.yellow("Community Edition (Unlicensed)")),console.log(""),console.log(w.gray(" To activate a license:")),console.log(w.gray(" xFramework-cli license <your-key>"));else if(t.type==="expired")console.log(w.white(" Status: ")+w.red("Expired")),console.log(w.white(" Company: ")+w.cyan(t.company||"\u2014")),console.log(w.white(" Email: ")+w.cyan(t.email||"\u2014")),console.log(w.white(" Expired: ")+w.red(t.expiresAt.toDateString())),console.log(""),console.log(w.gray(" Renew at contentactive.com/renew"));else if(t.type==="invalid")console.log(w.white(" Status: ")+w.red("Invalid License Key")),console.log(w.red(" Error: ")+w.white(t.error||"Unknown error")),console.log(""),console.log(w.gray(" The license file may be corrupted. Re-activate with your key:")),console.log(w.gray(" xFramework-cli license <your-key>"));else if(console.log(w.white(" Status: ")+w.green("Licensed \u2713")),console.log(w.white(" Type: ")+w.cyan(cc(t.type))),console.log(w.white(" Company: ")+w.cyan(t.company||"\u2014")),console.log(w.white(" Email: ")+w.cyan(t.email||"\u2014")),t.expiresAt){let e=t.expiresAt.toDateString(),r=t.daysRemaining<30?w.yellow:w.cyan;console.log(w.white(" Expires: ")+r(`${e} (${t.daysRemaining} days remaining)`))}else console.log(w.white(" Expires: ")+w.cyan("Never"));console.log("")}function s0(t){console.log(""),console.log(w.bold.white(" xFramework \u2014 License Activation")),console.log(w.gray(" \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500")),console.log("");try{let e=i0(t),r=e.exp?new Date(e.exp*1e3):null,n=r?Math.ceil((r-new Date)/(1e3*60*60*24)):null;console.log(w.bold.green(" \u2713 License activated successfully!")),console.log(""),console.log(w.white(" Company: ")+w.cyan(e.company||"\u2014")),console.log(w.white(" Email: ")+w.cyan(e.sub||"\u2014")),console.log(w.white(" Type: ")+w.cyan(cc(e.type||"professional"))),console.log(r?w.white(" Expires: ")+w.cyan(`${r.toDateString()} (${n} days)`):w.white(" Expires: ")+w.cyan("Never")),console.log(""),console.log(w.gray(" Restart the portal to apply: xFramework-cli start"))}catch(e){console.log(w.bold.red(" \u2717 Activation failed")),console.log(w.white(" Reason: ")+w.red(e.message)),console.log(""),console.log(w.gray(" Please check your license key and try again.")),console.log(w.gray(" Contact support@contentactive.com if the issue persists."))}console.log("")}function a0(){console.log("");let t=o0();console.log(t?w.green(" \u2713 License removed. Running in Community Edition."):w.gray(" No active license found.")),console.log("")}uc.exports=function(e,r){if(r&&r.status){lc();return}if(r&&r.remove){a0();return}if(e){s0(e);return}lc()}});var zi=p((pm,gc)=>{"use strict";var{spawnSync:l0}=require("child_process"),Me=Y(),dc=20,Pt=10;function hc(){let t=process.version.replace(/^v/,"");return parseInt(t.split(".")[0],10)>=dc?{ok:!0}:{ok:!1,tool:"Node.js",installed:t||"unknown",required:`${dc}.x or later`,installUrl:"https://nodejs.org/en/download"}}function pc(){let t=(process.platform==="win32","dotnet"),e=l0(t,["--version"],{encoding:"utf8"});if(e.error||e.status!==0)return{ok:!1,tool:".NET SDK",installed:null,required:`${Pt}.0 or later`,installUrl:`https://dotnet.microsoft.com/download/dotnet/${Pt}.0`};let r=(e.stdout||"").trim();return parseInt(r.split(".")[0],10)>=Pt?{ok:!0}:{ok:!1,tool:".NET SDK",installed:r||"unknown",required:`${Pt}.0 or later`,installUrl:`https://dotnet.microsoft.com/download/dotnet/${Pt}.0`}}function c0(){let e=[hc(),pc()].filter(r=>!r.ok);if(e.length!==0){console.log(""),console.log(Me.red.bold(" Missing prerequisites")),console.log(Me.gray(" \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500"));for(let r of e)r.installed?console.log(Me.yellow(` \u2716 ${r.tool}`)+Me.gray(` \u2014 found v${r.installed}, requires ${r.required}`)):console.log(Me.yellow(` \u2716 ${r.tool}`)+Me.gray(` \u2014 not installed (requires ${r.required})`)),console.log(Me.cyan(` Install: ${r.installUrl}`));console.log(""),process.exit(1)}}gc.exports={assertPrerequisites:c0,checkNode:hc,checkDotnet:pc}});var Yi=p((mm,wc)=>{"use strict";var G=require("path"),B=require("fs"),gm=require("os"),{spawn:xc}=require("child_process"),bc=require("readline"),C=Y(),u0=mr(),f0=ki(),{assertPrerequisites:d0}=zi(),h0="contentactivedev",p0="xframework-api",g0="xframework",m0="xframework-customer",mc=process.env.XFRAMEWORK_BB_TOKEN_API||"ATCTT3xFfGN02smBNDdN8Z2c8JRMm0ubFdojS81iBP16bNzcuVkShFVaWOSPZIbq7nSZMIg1HgDhx1R_JHHsjnei5VqhUbJ2wH5ZqMUUWpWAhfzjDXG9ozUJiprMTYkHGG4qRXab_qvvuTB_U7SPlFZ2UhPcW8aA_GiGKNwa7sr-f1gKsTREXzw=A8A98735",yc=process.env.XFRAMEWORK_BB_TOKEN_UI||"ATCTT3xFfGN0EyhqJiYrlXpqtWMKWLAE27DqqmlyyfzOE6mne2s2tMmrNfa3kz-mh69o_cuVzx6mbjR8fFv5dO0xl_ml_snlhXJTNx_icCCdZWcwCmuuSVPam6VOsMilZgVaiG4WeYhKiv_ZrcbBolB2GXeLKWMHMZ6QyzlJz7v9PmJoUkgrO6w=4A159CCB",_c=process.env.XFRAMEWORK_BB_TOKEN_CP||"ATCTT3xFfGN0_1wcSaMQd96uCXWUQqJZoz_fUdzmMc5GKllSi4hXmEq2rPz7XIj8cEI1Ke5AtEmkUNKZqFBVMvneqFwpsPazacqHJtPX8BVOnnO7HHDPpVCFVsMgbr7htSVA2dy73NPQ6e2ztOqVLTiF1fSgAl4G_aNICzQSrhDdZkSDI2WkuTI=E7201F78";function y0(t,e){return new Promise(r=>t.question(e,n=>r(n.trim())))}function _0(t){return new Promise(e=>{let r=bc.createInterface({input:process.stdin,output:process.stdout});r.question(t,n=>{r.close(),e(n.trim().toLowerCase())})})}function Kr(t,e){B.mkdirSync(G.dirname(t),{recursive:!0}),B.writeFileSync(t,e,"utf8")}function x0(t,e,r){return new Promise((n,i)=>{let o=xc(t,e,{...r,stdio:["ignore","pipe","pipe"]});o.on("close",n),o.on("error",i)})}async function Ki(t,e,r,n,i,o,s=[]){let a=`https://x-token-auth:${encodeURIComponent(r)}@bitbucket.org/${h0}/${t}.git`,l=s.length>0,c=async m=>(o.text=`Downloading ${i} (${m})...`,B.existsSync(n)&&B.rmSync(n,{recursive:!0,force:!0}),new Promise((g,h)=>{let _=xc("git",["clone","--depth","1","--branch",m,"--single-branch",a,n],{stdio:["ignore","pipe","pipe"]}),x="";_.stderr.on("data",S=>{x+=S.toString()}),_.on("close",S=>{if(S!==0)return x.includes("couldn't find remote ref")||x.includes("Remote branch")||x.includes("not found in upstream")?h(new Error(`TAG_NOT_FOUND:${m}`)):x.includes("Authentication failed")||x.includes("could not read Username")?h(new Error("AUTH_FAILED: Git authentication failed \u2014 check the Bitbucket token.")):h(new Error(`git clone failed: ${x.trim().split(`
87
+ `).pop()}`));for(let O of s)try{B.unlinkSync(G.join(n,O))}catch{}g()}),_.on("error",S=>h(new Error(S.code==="ENOENT"?"git not found \u2014 install Git and try again.":S.message)))})),u=[e];e.startsWith("v")?u.push(e.slice(1)):e!=="develop"&&u.push(`v${e}`),u.push("develop");let f=!1;for(let m of u)try{await c(m),f=!0;break}catch(g){if(!g.message.startsWith("TAG_NOT_FOUND"))throw g}if(!f)throw new Error(`Could not find a valid tag or branch for ${i}.`);let d=G.join(n,".git");B.existsSync(d)&&B.rmSync(d,{recursive:!0,force:!0})}function b0(t){try{let e=B.readdirSync(t);if(e.some(r=>r.endsWith(".csproj")))return t;for(let r of e){let n=G.join(t,r);try{if(B.statSync(n).isDirectory()&&B.readdirSync(n).some(i=>i.endsWith(".csproj")))return n}catch{}}}catch{}return t}function w0(){try{return pn().version}catch{return null}}function v0(t,e){return JSON.stringify({name:t,version:"1.0.0",xframeworkVersion:e||"latest",createdAt:new Date().toISOString().split("T")[0]},null,2)}function E0(){return JSON.stringify({AppSetup:{AppInstallRequired:!0,AutoMigrate:!1},ConnectionStrings:{DefaultConnection:"",SqlServerConnection:"Server=localhost;Database=xframework;User Id=sa;Password=yourpassword;TrustServerCertificate=True;MultipleActiveResultSets=True;",PostgreSQLConnection:"Host=localhost;Port=5432;Database=xframework;Username=postgres;Password=yourpassword;"}},null,2)}wc.exports=async function(e,r){d0(),console.log(""),console.log(C.bold.white(" xFramework")+C.gray(" \u2014 Developer Setup")),console.log(C.gray(" \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500")),console.log("");let n=bc.createInterface({input:process.stdin,output:process.stdout});e||(e=await y0(n,C.white(" Project name: "))),e=(e||"").replace(/[^a-zA-Z0-9._-]/g,"-").replace(/^-+|-+$/g,""),e||(n.close(),console.log(C.red(" Invalid project name.")),process.exit(1)),n.close();let i=G.resolve(process.cwd(),e);B.existsSync(i)&&(console.log(C.red(`
88
+ Directory "${e}" already exists.`)),process.exit(1)),B.mkdirSync(i,{recursive:!0});let o=w0(),s=r.version||(o?`v${o}`:"latest"),a=u0({text:"Preparing...",color:"cyan"}).start(),l=G.join(i,"api"),c=G.join(i,"ui"),u=G.join(i,"customer-portal");(mc==="PASTE_API_REPO_TOKEN"||yc==="PASTE_UI_REPO_TOKEN")&&(a.fail(C.red("Bitbucket API tokens not configured.")),console.log(""),console.log(C.yellow(" Set tokens via environment variables:")),console.log(C.cyan(" set XFRAMEWORK_BB_TOKEN_API=<xframework-api repo token>")),console.log(C.cyan(" set XFRAMEWORK_BB_TOKEN_UI=<xframework repo token>")),console.log(C.gray(" Contact support@contentactive.com to get access.")),B.rmdirSync(i),process.exit(1));let f=_c!=="PASTE_CP_REPO_TOKEN",d=["appsettings.Local.json","appsettings.Development.json","appsettings.Production.json","google-services.json"],m=[".env",".env.local",".env.development",".env.development.local",".env.production",".env.production.local",".env.stage",".env.staging",".env.test",".env.test.local"];try{await Ki(p0,s,mc,l,"API source",a,d),a.succeed(C.green("API")+C.gray(` \u2014 downloaded (${s})`))}catch(x){a.fail(C.red("Failed to download API source: ")+x.message),B.rmSync(i,{recursive:!0,force:!0}),process.exit(1)}try{a.start(`Downloading UI source (${s})...`),await Ki(g0,s,yc,c,"UI source",a,m),a.succeed(C.green("UI")+C.gray(` \u2014 downloaded (${s})`))}catch(x){a.fail(C.red("Failed to download UI source: ")+x.message),B.rmSync(i,{recursive:!0,force:!0}),process.exit(1)}if(f){a.stop(),console.log("");let x=await _0(C.cyan(" ? ")+C.bold("Include Customer Portal?")+C.gray(" Clones the customer-facing portal into customer-portal/. ")+C.white("[y/N] ")),S=x==="y"||x==="yes";if(console.log(""),a.start("Continuing..."),S)try{a.start(`Downloading Customer Portal source (${s})...`),await Ki(m0,s,_c,u,"Customer Portal source",a,m),a.succeed(C.green("Customer Portal")+C.gray(` \u2014 downloaded (${s})`));let O=G.join(u,".env.embedded");if(B.existsSync(O)){let P=B.readFileSync(O,"utf8").replace(/^VITE_APP_BASE=.*$/m,'VITE_APP_BASE=""');Kr(G.join(u,".env"),P)}}catch(O){a.warn(C.yellow("Customer Portal")+C.gray(` \u2014 skipped (${O.message})`))}}let g=G.join(c,".env.embedded");if(B.existsSync(g)){let x=B.readFileSync(g,"utf8").replace(/^VITE_APP_BASE=.*$/m,'VITE_APP_BASE=""');Kr(G.join(c,".env"),x)}a.start("Writing API configuration template...");let{replaced:h}=f0(l);a.succeed(C.green("Configuration")+C.gray(" \u2014 template written"));let _=b0(l);if(Kr(G.join(i,"xframework.json"),v0(e,s)),Kr(G.join(_,"appsettings.Local.json.example"),E0()),!r.noInstall&&B.existsSync(_)){a.start("Restoring .NET packages...");try{await x0("dotnet",["restore",_],{cwd:_})===0?a.succeed(C.green(".NET packages")+C.gray(" \u2014 restored")):a.stop()}catch{a.stop()}}console.log(""),console.log(C.bold.green(" \u2713 Project created!")),console.log(""),console.log(C.white(" Project: ")+C.cyan(e+"/")),console.log(C.white(" Version: ")+C.gray(s)),B.existsSync(u)&&console.log(C.white(" Customer: ")+C.gray("customer-portal/ included")),console.log(""),console.log(C.bold.white(" Next steps:")),console.log(""),console.log(C.white(" 1.")+C.gray(" Start the portal:")),console.log(C.cyan(` cd ${e}`)),console.log(C.cyan(" npx @xframework-ca-test/cli@latest run")),console.log(""),console.log(C.white(" 2.")+C.gray(" Complete setup at:")),console.log(C.cyan(" http://localhost:5000/setup")),console.log(C.gray(" \u2014 configure your database and create your admin account")),console.log(""),console.log("")}});var Oc=p((ym,Ic)=>{"use strict";var R=require("path"),F=require("fs"),S0=require("os"),C0=require("readline"),{spawn:Ji}=require("child_process"),Yr=process.platform==="win32"?"npm.cmd":"npm",y=Y(),A0=mr(),I0=xi(),Ac=require("http"),{readLicense:O0}=Et(),{assertPrerequisites:T0}=zi();function P0(t){return new Promise(e=>{let r=C0.createInterface({input:process.stdin,output:process.stdout});r.question(t,n=>{r.close(),e(n.trim().toLowerCase())})})}var R0=5e3,Jr=5173,Xr=3e3;function vc(t,e=12e4){return new Promise((r,n)=>{let i=Date.now(),o=()=>{Ac.get(`http://127.0.0.1:${t}/health`,a=>{a.statusCode<500?r():s()}).on("error",()=>{Date.now()-i>e?n(new Error(`API did not start within ${e/1e3}s`)):s()})},s=()=>setTimeout(o,500);o()})}function F0(t){return new Promise(e=>{Ac.get(`http://127.0.0.1:${t}/api/v1.0/setup/status`,r=>{let n="";r.on("data",i=>{n+=i}),r.on("end",()=>{try{e(JSON.parse(n))}catch{e({isInstalled:!0})}})}).on("error",()=>e({isInstalled:!0}))})}function L0(t){let e=t;for(let r=0;r<4;r++){if(F.existsSync(R.join(e,"xframework.json")))return e;let n=R.dirname(e);if(n===e)break;e=n}return null}function D0(t){let e=R.join(t,"license.key");if(F.existsSync(e))try{let{verifyLicenseFile:n}=Et();if(typeof n=="function")return n(e)}catch{}let r=O0();return{...r,type:r.isLicensed?r.type:"developer",isLicensed:!0}}function Zr(t,e,r,n=!1){let i=R.join(t,"ui","public");if(!F.existsSync(i))return;let o=e.expiresAt?e.expiresAt.toISOString():"",s=`// Auto-generated by xFramework-cli run \u2014 do not edit manually
89
89
  window.RUNTIME_CONFIG = {
90
90
  VITE_APP_BASE: "Developer",
91
91
  VITE_API_BASE_URL: "http://localhost:${r}",
@@ -196,9 +196,9 @@ window.RUNTIME_CONFIG = {
196
196
  </script>
197
197
  </body>
198
198
  </html>`;F.writeFileSync(R.join(r,"_restarting.html"),n,"utf8")}function Sc(t){try{let e=R.join(t,"ui","public","_restarting.html");F.existsSync(e)&&F.unlinkSync(e)}catch{}}function Xi(t){let e=Object.fromEntries(Object.entries(process.env).filter(([n,i])=>typeof i=="string"&&!n.includes("\0")&&!i.includes("\0"))),r=Object.fromEntries(Object.entries(t).filter(([n,i])=>i!=null&&!n.includes("\0")).map(([n,i])=>[n,String(i)]));return Object.assign(e,r)}function N0(t){try{let e=F.readdirSync(t);if(e.some(r=>r.endsWith(".csproj")))return t;for(let r of e){let n=R.join(t,r);try{if(F.statSync(n).isDirectory()&&F.readdirSync(n).some(i=>i.endsWith(".csproj")))return n}catch{}}}catch{}return t}function Cc(t){try{let r=JSON.parse(F.readFileSync(R.join(t,"package.json"),"utf8")).scripts||{};for(let n of["dev","start","serve"])if(r[n])return n}catch{}return"dev"}Ic.exports=async function(e){T0();let r=parseInt(e.port||String(R0),10),n=S0.platform()==="win32";console.log(""),console.log(y.bold.white(" xFramework")+y.gray(" \u2014 Developer Mode")),console.log(y.gray(" \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500"));let i=A0({text:"Checking environment...",color:"cyan"}).start(),o=L0(process.cwd());o||(i.fail(y.red("Not in an xFramework project directory.")),console.log(y.gray(`
199
- Run from a directory created with:`)),console.log(y.cyan(" xFramework-cli init <project-name>")),process.exit(1));let s=R.join(o,"api"),a=R.join(o,"ui"),l=R.join(o,"customer-portal"),c=F.existsSync(R.join(a,"package.json")),u=F.existsSync(R.join(l,"package.json")),f=JSON.parse(F.readFileSync(R.join(o,"xframework.json"),"utf8"));F.existsSync(s)||(i.fail(y.red("api/ directory not found.")),process.exit(1)),i.succeed(y.green("Environment")+y.gray(" \u2014 Node.js & .NET SDK ready"));let d=D0(o);d.isLicensed&&d.type!=="developer"?i.succeed(y.green("License")+y.gray(` \u2014 ${d.type} \xB7 ${d.company||""}`)):i.succeed(y.green("License")+y.gray(" \u2014 developer (localhost)"));let m=!1;if(u&&!e.apiOnly){i.stop(),console.log("");let q=await P0(y.cyan(" ? ")+y.bold("Start Customer Portal?")+y.gray(" Runs a separate customer-facing portal on port "+Xr+". ")+y.white("[y/N] "));m=q==="y"||q==="yes",console.log(""),i.start(y.gray("Starting..."))}Zr(o,d,r),m&&k0(o,d,r);let g=N0(s),h=R.join(g,"appsettings.Local.json");if(!F.existsSync(h)){let q=!1;try{q=JSON.parse(F.readFileSync(R.join(g,"appsettings.json"),"utf8"))?.AppSetup?.AppInstallRequired===!1}catch{}if(q){console.log(""),console.log(y.yellow(" \u26A0 appsettings.Local.json not found"));let j=[R.join(g,"appsettings.Local.json.example"),R.join(s,"appsettings.Local.json.example")].find(F.existsSync);j?(console.log(y.gray(" Copy it from the example and add your DB credentials:")),console.log(y.cyan(` copy "${R.relative(process.cwd(),j)}" "${R.relative(process.cwd(),h)}"`))):console.log(y.gray(` Create ${R.relative(o,h)} with your connection string.`)),console.log("")}}i.start("Starting API (dotnet run)...");let _=R.join(o,"api.log"),x=F.createWriteStream(_,{flags:"a"}),C=null,O=()=>{let q=null;try{let j=JSON.parse(F.readFileSync(h,"utf8"));j.CA_DB_PROVIDER&&(q=String(j.CA_DB_PROVIDER))}catch{}C=Ji("dotnet",["run","--project",g,"--no-launch-profile","--urls",`http://localhost:${r}`],{cwd:g,stdio:["ignore","pipe","pipe"],shell:n,env:Xi({ASPNETCORE_ENVIRONMENT:"Development",ASPNETCORE_URLS:`http://localhost:${r}`,CA_SETUP_MODE:"developer",CA_LICENSE_TYPE:d.type||"developer",CA_LICENSE_COMPANY:d.company||"",CA_LICENSE_EMAIL:d.email||"",CA_LICENSE_EXPIRES:d.expiresAt?d.expiresAt.toISOString():"",CA_LICENSE_VALID:d.isLicensed?"true":"false",CA_LICENSE_DOMAINS:Array.isArray(d.domains)?d.domains.join(","):"",...q?{CA_DB_PROVIDER:q}:{}})}),C.stdout.on("data",j=>{x.write(j);let ne=j.toString();ne.includes("Restoring packages")||ne.includes("Restored ")?i.text=y.gray("API \u2014 restoring NuGet packages..."):ne.includes("Build succeeded")?i.text=y.gray("API \u2014 build succeeded, launching..."):ne.includes("Now listening")&&(i.text=y.gray("API \u2014 online"))}),C.stderr.on("data",j=>{x.write(j)}),C.on("error",j=>{j.code==="ENOENT"?(i.fail(y.red(".NET runtime not found")),console.log(y.yellow(`
199
+ Run from a directory created with:`)),console.log(y.cyan(" xFramework-cli init <project-name>")),process.exit(1));let s=R.join(o,"api"),a=R.join(o,"ui"),l=R.join(o,"customer-portal"),c=F.existsSync(R.join(a,"package.json")),u=F.existsSync(R.join(l,"package.json")),f=JSON.parse(F.readFileSync(R.join(o,"xframework.json"),"utf8"));F.existsSync(s)||(i.fail(y.red("api/ directory not found.")),process.exit(1)),i.succeed(y.green("Environment")+y.gray(" \u2014 Node.js & .NET SDK ready"));let d=D0(o);d.isLicensed&&d.type!=="developer"?i.succeed(y.green("License")+y.gray(` \u2014 ${d.type} \xB7 ${d.company||""}`)):i.succeed(y.green("License")+y.gray(" \u2014 developer (localhost)"));let m=!1;if(u&&!e.apiOnly){i.stop(),console.log("");let q=await P0(y.cyan(" ? ")+y.bold("Start Customer Portal?")+y.gray(" Runs a separate customer-facing portal on port "+Xr+". ")+y.white("[y/N] "));m=q==="y"||q==="yes",console.log(""),i.start(y.gray("Starting..."))}Zr(o,d,r),m&&k0(o,d,r);let g=N0(s),h=R.join(g,"appsettings.Local.json");if(!F.existsSync(h)){let q=!1;try{q=JSON.parse(F.readFileSync(R.join(g,"appsettings.json"),"utf8"))?.AppSetup?.AppInstallRequired===!1}catch{}if(q){console.log(""),console.log(y.yellow(" \u26A0 appsettings.Local.json not found"));let j=[R.join(g,"appsettings.Local.json.example"),R.join(s,"appsettings.Local.json.example")].find(F.existsSync);j?(console.log(y.gray(" Copy it from the example and add your DB credentials:")),console.log(y.cyan(` copy "${R.relative(process.cwd(),j)}" "${R.relative(process.cwd(),h)}"`))):console.log(y.gray(` Create ${R.relative(o,h)} with your connection string.`)),console.log("")}}i.start("Starting API (dotnet run)...");let _=R.join(o,"api.log"),x=F.createWriteStream(_,{flags:"a"}),S=null,O=()=>{let q=null;try{let j=JSON.parse(F.readFileSync(h,"utf8"));j.CA_DB_PROVIDER&&(q=String(j.CA_DB_PROVIDER))}catch{}S=Ji("dotnet",["run","--project",g,"--no-launch-profile","--urls",`http://localhost:${r}`],{cwd:g,stdio:["ignore","pipe","pipe"],shell:n,env:Xi({ASPNETCORE_ENVIRONMENT:"Development",ASPNETCORE_URLS:`http://localhost:${r}`,CA_SETUP_MODE:"developer",CA_LICENSE_TYPE:d.type||"developer",CA_LICENSE_COMPANY:d.company||"",CA_LICENSE_EMAIL:d.email||"",CA_LICENSE_EXPIRES:d.expiresAt?d.expiresAt.toISOString():"",CA_LICENSE_VALID:d.isLicensed?"true":"false",CA_LICENSE_DOMAINS:Array.isArray(d.domains)?d.domains.join(","):"",...q?{CA_DB_PROVIDER:q}:{}})}),S.stdout.on("data",j=>{x.write(j);let ne=j.toString();ne.includes("Restoring packages")||ne.includes("Restored ")?i.text=y.gray("API \u2014 restoring NuGet packages..."):ne.includes("Build succeeded")?i.text=y.gray("API \u2014 build succeeded, launching..."):ne.includes("Now listening")&&(i.text=y.gray("API \u2014 online"))}),S.stderr.on("data",j=>{x.write(j)}),S.on("error",j=>{j.code==="ENOENT"?(i.fail(y.red(".NET runtime not found")),console.log(y.yellow(`
200
200
  Install the .NET 8 SDK:`)),console.log(y.cyan(" https://dotnet.microsoft.com/download/dotnet/8.0"))):i.fail(y.red("API failed to start: "+j.message)),process.exit(1)})};Ec(o,r),O();let P=null;if(c&&!e.apiOnly){let q=R.join(a,"node_modules");if(F.existsSync(q))i.succeed(y.green("UI packages")+y.gray(" \u2014 already installed"));else{i.stop(),console.log(""),console.log(y.bold.white(" Installing UI packages..."));let Qr=require("child_process").spawnSync(Yr,["install","--include=optional"],{cwd:a,stdio:"inherit",shell:n});console.log(""),Qr.status===0?console.log(y.green(" \u2714 UI packages")+y.gray(" \u2014 ready")):console.log(y.yellow(" \u26A0 npm install failed")+y.gray(" \u2014 UI may not start")),i.start(y.gray("API building in background..."))}let j=Cc(a);i.text=`Starting UI dev server (npm run ${j})...`;let ne=F.createWriteStream(R.join(o,"ui.log"),{flags:"a"});P=Ji(Yr,["run",j],{cwd:a,stdio:["ignore","pipe","pipe"],shell:n,env:Xi({VITE_API_BASE_URL:`http://localhost:${r}`,VITE_LICENSE_TYPE:d.type,VITE_LICENSE_COMPANY:d.company||""})}),P.stdout.pipe(ne),P.stderr.pipe(ne),P.on("error",()=>{})}let D=null;if(m){let q=R.join(l,"node_modules");if(F.existsSync(q))i.succeed(y.green("Customer Portal packages")+y.gray(" \u2014 already installed"));else{i.stop(),console.log(""),console.log(y.bold.white(" Installing Customer Portal packages..."));let Qr=require("child_process").spawnSync(Yr,["install","--include=optional"],{cwd:l,stdio:"inherit",shell:n});console.log(""),Qr.status===0?console.log(y.green(" \u2714 Customer Portal packages")+y.gray(" \u2014 ready")):console.log(y.yellow(" \u26A0 npm install failed")+y.gray(" \u2014 Customer Portal may not start")),i.start(y.gray("API building in background..."))}let j=Cc(l);i.text=`Starting Customer Portal dev server (npm run ${j} --port ${Xr})...`;let ne=F.createWriteStream(R.join(o,"customer-portal.log"),{flags:"a"});D=Ji(Yr,["run",j,"--","--port",String(Xr)],{cwd:l,stdio:["ignore","pipe","pipe"],shell:n,env:Xi({VITE_API_BASE_URL:`http://localhost:${r}`,VITE_LICENSE_TYPE:d.type,VITE_LICENSE_COMPANY:d.company||""})}),D.stdout.pipe(ne),D.stderr.pipe(ne),D.on("error",()=>{})}i.text="Waiting for API to start (first run may take ~30s for dotnet build)...";try{await vc(r,18e4)}catch{if(i.fail(y.red("API did not start.")),console.log(y.gray(`
201
- Check logs: `+_)),P)try{P.kill()}catch{}if(D)try{D.kill()}catch{}process.exit(1)}i.succeed(y.green("API")+y.gray(` \u2014 http://localhost:${r}`));let Se=await F0(r),le=c&&!e.apiOnly?`http://localhost:${Jr}`:`http://localhost:${r}`;if(console.log(""),console.log(y.bold.green(" \u2713 xFramework running in Developer Mode!")),console.log(""),console.log(y.white(" Project: ")+y.gray(f.name||R.basename(o))),console.log(y.white(" API: ")+y.cyan(`http://localhost:${r}`)),c&&!e.apiOnly&&console.log(y.white(" UI: ")+y.cyan(`http://localhost:${Jr}`)),m&&console.log(y.white(" Customer: ")+y.cyan(`http://localhost:${Xr}`)),Se.isInstalled||console.log(y.gray(" First run \u2014 complete setup at: ")+y.cyan(`http://localhost:${c&&!e.apiOnly?Jr:r}`)),d.type==="developer")console.log(y.white(" License: ")+y.green("Developer")+y.gray(" (localhost \u2014 no activation needed)"));else if(d.isLicensed){let q=d.expiresAt?y.gray(` \u2014 expires ${d.expiresAt.toDateString()} (${d.daysRemaining}d)`):"";console.log(y.white(" License: ")+y.green(`${d.type} \u2014 ${d.company}`)+q)}else console.log(y.white(" License: ")+y.yellow("Community \u2014 run: xFramework-cli license <key>"));console.log(y.white(" Log: ")+y.gray(_)),console.log(""),console.log(y.gray(" Press Ctrl+C to stop")),console.log(""),await I0(le);let he=()=>{if(console.log(""),i.start("Stopping..."),P)try{P.kill()}catch{}if(D)try{D.kill()}catch{}C.kill(),i.succeed("Stopped"),process.exit(0)};process.on("SIGINT",he),process.on("SIGTERM",he);let Rt=()=>{C.once("exit",async q=>{if(q===42){console.log(""),console.log(y.cyan(" Setup complete \u2014 restarting API...")),Zr(o,d,r,!0),Ec(o,r),c&&!e.apiOnly&&console.log(y.gray(` UI showing restart screen \u2014 navigate to http://localhost:${Jr}/_restarting.html if still on the old page`)),i.start(y.gray("API restarting...")),O();try{await vc(r,18e4),Zr(o,d,r,!1),Sc(o),i.succeed(y.green("API")+y.gray(` \u2014 http://localhost:${r} (restarted)`)),Rt()}catch{if(Zr(o,d,r,!1),Sc(o),i.fail(y.red("API failed to restart after setup.")),console.log(y.gray(" Check logs: "+_)),P)try{P.kill()}catch{}if(D)try{D.kill()}catch{}process.exit(1)}return}if(q!==0&&q!==null&&console.log(y.red(`
201
+ Check logs: `+_)),P)try{P.kill()}catch{}if(D)try{D.kill()}catch{}process.exit(1)}i.succeed(y.green("API")+y.gray(` \u2014 http://localhost:${r}`));let Se=await F0(r),le=c&&!e.apiOnly?`http://localhost:${Jr}`:`http://localhost:${r}`;if(console.log(""),console.log(y.bold.green(" \u2713 xFramework running in Developer Mode!")),console.log(""),console.log(y.white(" Project: ")+y.gray(f.name||R.basename(o))),console.log(y.white(" API: ")+y.cyan(`http://localhost:${r}`)),c&&!e.apiOnly&&console.log(y.white(" UI: ")+y.cyan(`http://localhost:${Jr}`)),m&&console.log(y.white(" Customer: ")+y.cyan(`http://localhost:${Xr}`)),Se.isInstalled||console.log(y.gray(" First run \u2014 complete setup at: ")+y.cyan(`http://localhost:${c&&!e.apiOnly?Jr:r}`)),d.type==="developer")console.log(y.white(" License: ")+y.green("Developer")+y.gray(" (localhost \u2014 no activation needed)"));else if(d.isLicensed){let q=d.expiresAt?y.gray(` \u2014 expires ${d.expiresAt.toDateString()} (${d.daysRemaining}d)`):"";console.log(y.white(" License: ")+y.green(`${d.type} \u2014 ${d.company}`)+q)}else console.log(y.white(" License: ")+y.yellow("Community \u2014 run: xFramework-cli license <key>"));console.log(y.white(" Log: ")+y.gray(_)),console.log(""),console.log(y.gray(" Press Ctrl+C to stop")),console.log(""),await I0(le);let he=()=>{if(console.log(""),i.start("Stopping..."),P)try{P.kill()}catch{}if(D)try{D.kill()}catch{}S.kill(),i.succeed("Stopped"),process.exit(0)};process.on("SIGINT",he),process.on("SIGTERM",he);let Rt=()=>{S.once("exit",async q=>{if(q===42){console.log(""),console.log(y.cyan(" Setup complete \u2014 restarting API...")),Zr(o,d,r,!0),Ec(o,r),c&&!e.apiOnly&&console.log(y.gray(` UI showing restart screen \u2014 navigate to http://localhost:${Jr}/_restarting.html if still on the old page`)),i.start(y.gray("API restarting...")),O();try{await vc(r,18e4),Zr(o,d,r,!1),Sc(o),i.succeed(y.green("API")+y.gray(` \u2014 http://localhost:${r} (restarted)`)),Rt()}catch{if(Zr(o,d,r,!1),Sc(o),i.fail(y.red("API failed to restart after setup.")),console.log(y.gray(" Check logs: "+_)),P)try{P.kill()}catch{}if(D)try{D.kill()}catch{}process.exit(1)}return}if(q!==0&&q!==null&&console.log(y.red(`
202
202
  API exited (code ${q}). Check: ${_}`)),P)try{P.kill()}catch{}if(D)try{D.kill()}catch{}process.exit(q||0)})};Rt()}});var{program:re}=ho(),M0=pn();re.name("xFramework-cli").description("xFramework \u2014 run your portal locally with one command").version(M0.version);re.command("start").description("Start the xFramework").option("--port <port>","Port to run on","7125").option("--local-api <path>","Use a locally-published API binary instead of downloading from S3").action(t=>{ji()(t)});re.command("stop").description("Stop the xFramework").action(()=>{Jl()()});re.command("status").description("Check if the portal is running").action(()=>{tc()()});re.command("backup").description("Create a manual database backup").action(()=>{ic()()});re.command("restore").description("Restore database from a backup").action(()=>{ac()()});re.command("license [key]").description("Activate or check your xFramework license").option("--status","Show current license status").option("--remove","Remove the current license (revert to Community Edition)").action((t,e)=>{fc()(t,e)});re.command("init [name]").description("Create a new developer project with full API + UI source code").option("--db <provider>","Database provider: sqlserver | postgresql","").option("--no-install","Skip dotnet restore and npm install after scaffolding").option("--from <zipPath>","Use a local template zip instead of downloading from S3").action((t,e)=>{Yi()(t,e)});re.command("create [name]",{hidden:!0}).option("--db <provider>","","").option("--no-install").option("--from <zipPath>").action((t,e)=>{Yi()(t,e)});re.command("run").description("Start a developer project (API + UI) \u2014 run from project directory").option("--port <port>","API port (default: 5000)",String(5e3)).option("--api-only","Start API only, skip UI dev server").action(t=>{Oc()(t)});re.parse(process.argv);process.argv.slice(2).length||ji()({port:"7125"});
203
203
  /*! Bundled license information:
204
204
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xframework-ca-test/cli",
3
- "version": "1.0.36",
3
+ "version": "1.0.37",
4
4
  "description": "xFramework — one command to run your portal locally",
5
5
  "main": "index.bundle.js",
6
6
  "bin": {