botparty 0.0.58 → 0.0.60
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.
- package/dist/index.js +28 -28
- package/package.json +2 -1
package/dist/index.js
CHANGED
|
@@ -26,7 +26,7 @@ Expecting one of '${r.join("', '")}'`);return this._lifeCycleHooks[t]?this._life
|
|
|
26
26
|
`),this.outputHelp({error:!0}));let r=a||{},n=r.exitCode||1,i=r.code||"commander.error";this._exit(n,i,t)}_parseOptionsEnv(){this.options.forEach(t=>{if(t.envVar&&t.envVar in Ee.env){let a=t.attributeName();(this.getOptionValue(a)===void 0||["default","config","env"].includes(this.getOptionValueSource(a)))&&(t.required||t.optional?this.emit(`optionEnv:${t.name()}`,Ee.env[t.envVar]):this.emit(`optionEnv:${t.name()}`))}})}_parseOptionsImplied(){let t=new DN(this.options),a=r=>this.getOptionValue(r)!==void 0&&!["default","implied"].includes(this.getOptionValueSource(r));this.options.filter(r=>r.implied!==void 0&&a(r.attributeName())&&t.valueFromOption(this.getOptionValue(r.attributeName()),r)).forEach(r=>{Object.keys(r.implied).filter(n=>!a(n)).forEach(n=>{this.setOptionValueWithSource(n,r.implied[n],"implied")})})}missingArgument(t){let a=`error: missing required argument '${t}'`;this.error(a,{code:"commander.missingArgument"})}optionMissingArgument(t){let a=`error: option '${t.flags}' argument missing`;this.error(a,{code:"commander.optionMissingArgument"})}missingMandatoryOptionValue(t){let a=`error: required option '${t.flags}' not specified`;this.error(a,{code:"commander.missingMandatoryOptionValue"})}_conflictingOption(t,a){let r=s=>{let o=s.attributeName(),c=this.getOptionValue(o),l=this.options.find(u=>u.negate&&o===u.attributeName()),d=this.options.find(u=>!u.negate&&o===u.attributeName());return l&&(l.presetArg===void 0&&c===!1||l.presetArg!==void 0&&c===l.presetArg)?l:d||s},n=s=>{let o=r(s),c=o.attributeName();return this.getOptionValueSource(c)==="env"?`environment variable '${o.envVar}'`:`option '${o.flags}'`},i=`error: ${n(t)} cannot be used with ${n(a)}`;this.error(i,{code:"commander.conflictingOption"})}unknownOption(t){if(this._allowUnknownOption)return;let a="";if(t.startsWith("--")&&this._showSuggestionAfterError){let n=[],i=this;do{let s=i.createHelp().visibleOptions(i).filter(o=>o.long).map(o=>o.long);n=n.concat(s),i=i.parent}while(i&&!i._enablePositionalOptions);a=dd(t,n)}let r=`error: unknown option '${t}'${a}`;this.error(r,{code:"commander.unknownOption"})}_excessArguments(t){if(this._allowExcessArguments)return;let a=this.registeredArguments.length,r=a===1?"":"s",i=`error: too many arguments${this.parent?` for '${this.name()}'`:""}. Expected ${a} argument${r} but got ${t.length}.`;this.error(i,{code:"commander.excessArguments"})}unknownCommand(){let t=this.args[0],a="";if(this._showSuggestionAfterError){let n=[];this.createHelp().visibleCommands(this).forEach(i=>{n.push(i.name()),i.alias()&&n.push(i.alias())}),a=dd(t,n)}let r=`error: unknown command '${t}'${a}`;this.error(r,{code:"commander.unknownCommand"})}version(t,a,r){if(t===void 0)return this._version;this._version=t,a=a||"-V, --version",r=r||"output the version number";let n=this.createOption(a,r);return this._versionOptionName=n.attributeName(),this._registerOption(n),this.on("option:"+n.name(),()=>{this._outputConfiguration.writeOut(`${t}
|
|
27
27
|
`),this._exit(0,"commander.version",t)}),this}description(t,a){return t===void 0&&a===void 0?this._description:(this._description=t,a&&(this._argsDescription=a),this)}summary(t){return t===void 0?this._summary:(this._summary=t,this)}alias(t){if(t===void 0)return this._aliases[0];let a=this;if(this.commands.length!==0&&this.commands[this.commands.length-1]._executableHandler&&(a=this.commands[this.commands.length-1]),t===a._name)throw new Error("Command alias can't be the same as its name");let r=this.parent?._findCommand(t);if(r){let n=[r.name()].concat(r.aliases()).join("|");throw new Error(`cannot add alias '${t}' to command '${this.name()}' as already have command '${n}'`)}return a._aliases.push(t),this}aliases(t){return t===void 0?this._aliases:(t.forEach(a=>this.alias(a)),this)}usage(t){if(t===void 0){if(this._usage)return this._usage;let a=this.registeredArguments.map(r=>AN(r));return[].concat(this.options.length||this._helpOption!==null?"[options]":[],this.commands.length?"[command]":[],this.registeredArguments.length?a:[]).join(" ")}return this._usage=t,this}name(t){return t===void 0?this._name:(this._name=t,this)}helpGroup(t){return t===void 0?this._helpGroupHeading??"":(this._helpGroupHeading=t,this)}commandsGroup(t){return t===void 0?this._defaultCommandGroup??"":(this._defaultCommandGroup=t,this)}optionsGroup(t){return t===void 0?this._defaultOptionGroup??"":(this._defaultOptionGroup=t,this)}_initOptionGroup(t){this._defaultOptionGroup&&!t.helpGroupHeading&&t.helpGroup(this._defaultOptionGroup)}_initCommandGroup(t){this._defaultCommandGroup&&!t.helpGroup()&&t.helpGroup(this._defaultCommandGroup)}nameFromFilename(t){return this._name=ta.basename(t,ta.extname(t)),this}executableDir(t){return t===void 0?this._executableDir:(this._executableDir=t,this)}helpInformation(t){let a=this.createHelp(),r=this._getOutputContext(t);a.prepareContext({error:r.error,helpWidth:r.helpWidth,outputHasColors:r.hasColors});let n=a.formatHelp(this,a);return r.hasColors?n:this._outputConfiguration.stripColor(n)}_getOutputContext(t){t=t||{};let a=!!t.error,r,n,i;return a?(r=o=>this._outputConfiguration.writeErr(o),n=this._outputConfiguration.getErrHasColors(),i=this._outputConfiguration.getErrHelpWidth()):(r=o=>this._outputConfiguration.writeOut(o),n=this._outputConfiguration.getOutHasColors(),i=this._outputConfiguration.getOutHelpWidth()),{error:a,write:o=>(n||(o=this._outputConfiguration.stripColor(o)),r(o)),hasColors:n,helpWidth:i}}outputHelp(t){let a;typeof t=="function"&&(a=t,t=void 0);let r=this._getOutputContext(t),n={error:r.error,write:r.write,command:this};this._getCommandAndAncestors().reverse().forEach(s=>s.emit("beforeAllHelp",n)),this.emit("beforeHelp",n);let i=this.helpInformation({error:r.error});if(a&&(i=a(i),typeof i!="string"&&!Buffer.isBuffer(i)))throw new Error("outputHelp callback must return a string or a Buffer");r.write(i),this._getHelpOption()?.long&&this.emit(this._getHelpOption().long),this.emit("afterHelp",n),this._getCommandAndAncestors().forEach(s=>s.emit("afterAllHelp",n))}helpOption(t,a){return typeof t=="boolean"?(t?(this._helpOption===null&&(this._helpOption=void 0),this._defaultOptionGroup&&this._initOptionGroup(this._getHelpOption())):this._helpOption=null,this):(this._helpOption=this.createOption(t??"-h, --help",a??"display help for command"),(t||a)&&this._initOptionGroup(this._helpOption),this)}_getHelpOption(){return this._helpOption===void 0&&this.helpOption(void 0,void 0),this._helpOption}addHelpOption(t){return this._helpOption=t,this._initOptionGroup(t),this}help(t){this.outputHelp(t);let a=Number(Ee.exitCode??0);a===0&&t&&typeof t!="function"&&t.error&&(a=1),this._exit(a,"commander.help","(outputHelp)")}addHelpText(t,a){let r=["beforeAll","before","after","afterAll"];if(!r.includes(t))throw new Error(`Unexpected value for position to addHelpText.
|
|
28
28
|
Expecting one of '${r.join("', '")}'`);let n=`${t}Help`;return this.on(n,i=>{let s;typeof a=="function"?s=a({error:i.error,command:i.command}):s=a,s&&i.write(`${s}
|
|
29
|
-
`)}),this}_outputHelpIfRequested(t){let a=this._getHelpOption();a&&t.find(n=>a.is(n))&&(this.outputHelp(),this._exit(0,"commander.helpDisplayed","(outputHelp)"))}};function ud(e){return e.map(t=>{if(!t.startsWith("--inspect"))return t;let a,r="127.0.0.1",n="9229",i;return(i=t.match(/^(--inspect(-brk)?)$/))!==null?a=i[1]:(i=t.match(/^(--inspect(-brk|-port)?)=([^:]+)$/))!==null?(a=i[1],/^\d+$/.test(i[3])?n=i[3]:r=i[3]):(i=t.match(/^(--inspect(-brk|-port)?)=([^:]+):(\d+)$/))!==null&&(a=i[1],r=i[3],n=i[4]),a&&n!=="0"?`${a}=${r}:${parseInt(n)+1}`:t})}function Go(){if(Ee.env.NO_COLOR||Ee.env.FORCE_COLOR==="0"||Ee.env.FORCE_COLOR==="false")return!1;if(Ee.env.FORCE_COLOR||Ee.env.CLICOLOR_FORCE!==void 0)return!0}zo.Command=Bo;zo.useColor=Go});var Ed=p(At=>{var{Argument:md}=Si(),{Command:Ho}=pd(),{CommanderError:IN,InvalidArgumentError:gd}=yn(),{Help:kN}=wo(),{Option:fd}=Po();At.program=new Ho;At.createCommand=e=>new Ho(e);At.createOption=(e,t)=>new fd(e,t);At.createArgument=(e,t)=>new md(e,t);At.Command=Ho;At.Option=fd;At.Argument=md;At.Help=kN;At.CommanderError=IN;At.InvalidArgumentError=gd;At.InvalidOptionArgumentError=gd});var hd,BF,GF,zF,HF,YF,qF,$F,yi,VF,KF,WF,Yo=Ce(()=>{hd=ya(Ed(),1),{program:BF,createCommand:GF,createArgument:zF,createOption:HF,CommanderError:YF,InvalidArgumentError:qF,InvalidOptionArgumentError:$F,Command:yi,Argument:VF,Option:KF,Help:WF}=hd.default});function $(e){return`${vN}${e}${Nr}`}function
|
|
29
|
+
`)}),this}_outputHelpIfRequested(t){let a=this._getHelpOption();a&&t.find(n=>a.is(n))&&(this.outputHelp(),this._exit(0,"commander.helpDisplayed","(outputHelp)"))}};function ud(e){return e.map(t=>{if(!t.startsWith("--inspect"))return t;let a,r="127.0.0.1",n="9229",i;return(i=t.match(/^(--inspect(-brk)?)$/))!==null?a=i[1]:(i=t.match(/^(--inspect(-brk|-port)?)=([^:]+)$/))!==null?(a=i[1],/^\d+$/.test(i[3])?n=i[3]:r=i[3]):(i=t.match(/^(--inspect(-brk|-port)?)=([^:]+):(\d+)$/))!==null&&(a=i[1],r=i[3],n=i[4]),a&&n!=="0"?`${a}=${r}:${parseInt(n)+1}`:t})}function Go(){if(Ee.env.NO_COLOR||Ee.env.FORCE_COLOR==="0"||Ee.env.FORCE_COLOR==="false")return!1;if(Ee.env.FORCE_COLOR||Ee.env.CLICOLOR_FORCE!==void 0)return!0}zo.Command=Bo;zo.useColor=Go});var Ed=p(At=>{var{Argument:md}=Si(),{Command:Ho}=pd(),{CommanderError:IN,InvalidArgumentError:gd}=yn(),{Help:kN}=wo(),{Option:fd}=Po();At.program=new Ho;At.createCommand=e=>new Ho(e);At.createOption=(e,t)=>new fd(e,t);At.createArgument=(e,t)=>new md(e,t);At.Command=Ho;At.Option=fd;At.Argument=md;At.Help=kN;At.CommanderError=IN;At.InvalidArgumentError=gd;At.InvalidOptionArgumentError=gd});var hd,BF,GF,zF,HF,YF,qF,$F,yi,VF,KF,WF,Yo=Ce(()=>{hd=ya(Ed(),1),{program:BF,createCommand:GF,createArgument:zF,createOption:HF,CommanderError:YF,InvalidArgumentError:qF,InvalidOptionArgumentError:$F,Command:yi,Argument:VF,Option:KF,Help:WF}=hd.default});function $(e){return`${vN}${e}${Nr}`}function le(e){return`${wN}${e}${Nr}`}function ve(e){return`${xN}${e}${Nr}`}function Re(e){return`${MN}${e}${Nr}`}function pt(e){return`${LN}${e}${Nr}`}function G(e){return`${PN}${e}${Nr}`}var vN,wN,xN,MN,LN,PN,Nr,bi=Ce(()=>{"use strict";vN="\x1B[1m",wN="\x1B[2m",xN="\x1B[31m",MN="\x1B[32m",LN="\x1B[33m",PN="\x1B[36m",Nr="\x1B[0m"});var Id={};Tr(Id,{checkServiceExists:()=>Ri,fetchActionDetail:()=>Vo,fetchServicesIndex:()=>Aa});function $o(e){return(e.includes("://")?e:`https://${e}`).replace(/\/$/,"")}async function Aa(e){let t=`${$o(e)}/.well-known/botparty/services.json`,a=await fetch(t);if(!a.ok)throw new Error(`Failed to fetch services index from ${t} (${a.status} ${a.statusText})`);return a.json()}async function Vo(e,t){let a=`${$o(e)}/.well-known/botparty/services/${t}.json`,r=await fetch(a);if(!r.ok)throw new Error(`Failed to fetch action "${t}" from ${a} (${r.status} ${r.statusText})`);return r.json()}async function Ri(e){try{let t=`${$o(e)}/.well-known/botparty/services.json`,a=new AbortController,r=setTimeout(()=>a.abort(),3e3),n=await fetch(t,{method:"HEAD",signal:a.signal});return clearTimeout(r),n.ok}catch{return!1}}var Or=Ce(()=>{"use strict"});var vd={};Tr(vd,{discover:()=>Ko,listSubActions:()=>Wo});function jN(e){let t={label:"",children:new Map};for(let a of e){let r=a.slug.split("."),n=t;for(let i=0;i<r.length;i++){let s=r[i];n.children.has(s)||n.children.set(s,{label:s,children:new Map}),n=n.children.get(s)}n.description=a.description,n.method=a.method,n.payment=a.payment}return t}function kd(e,t="",a=!0,r=!0){if(!r){let s=`${t}${a?"\u2514\u2500\u2500 ":"\u251C\u2500\u2500 "}\x1B[36m${e.label}\x1B[0m`;if(e.method&&e.description){let o=e.payment&&e.payment!=="free"?` \x1B[33m[$${e.payment}]\x1B[0m`:"";s+=` \x1B[90m(${e.method})\x1B[0m \u2014 ${e.description}${o}`}console.log(s)}let n=[...e.children.entries()];n.forEach(([,i],s)=>{let o=s===n.length-1,c=r?"":t+(a?" ":"\u2502 ");kd(i,c,o,!1)})}async function Ko(e){let t=await Aa(e);console.log(`
|
|
30
30
|
\x1B[1m${t.name}\x1B[0m`),console.log(`\x1B[90m${t.description}\x1B[0m`),console.log(`\x1B[90mAuth: ${t.auth} \xB7 Base: ${t.baseUrl}\x1B[0m`),console.log(`\x1B[90m${t.actions.length} actions\x1B[0m
|
|
31
31
|
`);let a=jN(t.actions);kd(a),console.log()}async function Wo(e,t){let a=await Aa(e),r=t+".",n=a.actions.filter(i=>i.slug.startsWith(r)||i.slug===t);n.length===0&&(console.error(`\x1B[31mNo actions matching "${t}" found.\x1B[0m`),console.log(`
|
|
32
32
|
Available top-level categories:`,[...new Set(a.actions.map(i=>i.slug.split(".")[0]))].join(", ")),process.exit(1)),console.log(`
|
|
@@ -92,8 +92,8 @@ Please report this to https://github.com/markedjs/marked.`,e){let r="<p>An error
|
|
|
92
92
|
`,n)}while(r!==-1);return i+=e.slice(n),i}var iu=Ce(()=>{});function On(e){return YO(e)}var su,ou,ll,Dr,Nn,lu,Ir,HO,YO,cl,qO,$O,_l,Mi,VO,KO,M3,Xe,cu=Ce(()=>{Zd();au();iu();({stdout:su,stderr:ou}=tu),ll=Symbol("GENERATOR"),Dr=Symbol("STYLER"),Nn=Symbol("IS_EMPTY"),lu=["ansi","ansi","ansi256","ansi16m"],Ir=Object.create(null),HO=(e,t={})=>{if(t.level&&!(Number.isInteger(t.level)&&t.level>=0&&t.level<=3))throw new Error("The `level` option should be an integer from 0 to 3");let a=su?su.level:0;e.level=t.level===void 0?a:t.level},YO=e=>{let t=(...a)=>a.join(" ");return HO(t,e),Object.setPrototypeOf(t,On.prototype),t};Object.setPrototypeOf(On.prototype,Function.prototype);for(let[e,t]of Object.entries(Ft))Ir[e]={get(){let a=Mi(this,_l(t.open,t.close,this[Dr]),this[Nn]);return Object.defineProperty(this,e,{value:a}),a}};Ir.visible={get(){let e=Mi(this,this[Dr],!0);return Object.defineProperty(this,"visible",{value:e}),e}};cl=(e,t,a,...r)=>e==="rgb"?t==="ansi16m"?Ft[a].ansi16m(...r):t==="ansi256"?Ft[a].ansi256(Ft.rgbToAnsi256(...r)):Ft[a].ansi(Ft.rgbToAnsi(...r)):e==="hex"?cl("rgb",t,a,...Ft.hexToRgb(...r)):Ft[a][e](...r),qO=["rgb","hex","ansi256"];for(let e of qO){Ir[e]={get(){let{level:a}=this;return function(...r){let n=_l(cl(e,lu[a],"color",...r),Ft.color.close,this[Dr]);return Mi(this,n,this[Nn])}}};let t="bg"+e[0].toUpperCase()+e.slice(1);Ir[t]={get(){let{level:a}=this;return function(...r){let n=_l(cl(e,lu[a],"bgColor",...r),Ft.bgColor.close,this[Dr]);return Mi(this,n,this[Nn])}}}}$O=Object.defineProperties(()=>{},{...Ir,level:{enumerable:!0,get(){return this[ll].level},set(e){this[ll].level=e}}}),_l=(e,t,a)=>{let r,n;return a===void 0?(r=e,n=t):(r=a.openAll+e,n=t+a.closeAll),{open:e,close:t,openAll:r,closeAll:n,parent:a}},Mi=(e,t,a)=>{let r=(...n)=>VO(r,n.length===1?""+n[0]:n.join(" "));return Object.setPrototypeOf(r,$O),r[ll]=e,r[Dr]=t,r[Nn]=a,r},VO=(e,t)=>{if(e.level<=0||!t)return e[Nn]?"":t;let a=e[Dr];if(a===void 0)return t;let{openAll:r,closeAll:n}=a;if(t.includes("\x1B"))for(;a!==void 0;)t=ru(t,a.close,a.open),a=a.parent;let i=t.indexOf(`
|
|
93
93
|
`);return i!==-1&&(t=nu(t,n,r,i)),r+t+n};Object.defineProperties(On.prototype,Ir);KO=On(),M3=On({level:ou?ou.level:0}),Xe=KO});var Li=p((P3,du)=>{var dl=[],_u=0,rt=(e,t)=>{_u>=t&&dl.push(e)};rt.WARN=1;rt.INFO=2;rt.DEBUG=3;rt.reset=()=>{dl=[]};rt.setDebugLevel=e=>{_u=e};rt.warn=e=>rt(e,rt.WARN);rt.info=e=>rt(e,rt.INFO);rt.debug=e=>rt(e,rt.DEBUG);rt.debugMessages=()=>dl;du.exports=rt});var pu=p((F3,uu)=>{"use strict";uu.exports=({onlyFirst:e=!1}={})=>{let t=["[\\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(t,e?void 0:"g")}});var gu=p((U3,mu)=>{"use strict";var WO=pu();mu.exports=e=>typeof e=="string"?e.replace(WO(),""):e});var Eu=p((B3,ul)=>{"use strict";var fu=e=>Number.isNaN(e)?!1:e>=4352&&(e<=4447||e===9001||e===9002||11904<=e&&e<=12871&&e!==12351||12880<=e&&e<=19903||19968<=e&&e<=42182||43360<=e&&e<=43388||44032<=e&&e<=55203||63744<=e&&e<=64255||65040<=e&&e<=65049||65072<=e&&e<=65131||65281<=e&&e<=65376||65504<=e&&e<=65510||110592<=e&&e<=110593||127488<=e&&e<=127569||131072<=e&&e<=262141);ul.exports=fu;ul.exports.default=fu});var Su=p((G3,hu)=>{"use strict";hu.exports=function(){return/\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62(?:\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67|\uDB40\uDC73\uDB40\uDC63\uDB40\uDC74|\uDB40\uDC77\uDB40\uDC6C\uDB40\uDC73)\uDB40\uDC7F|\uD83D\uDC68(?:\uD83C\uDFFC\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68\uD83C\uDFFB|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFE])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFD])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFC])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83D\uDC68|(?:\uD83D[\uDC68\uDC69])\u200D(?:\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67]))|\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|(?:\uD83D[\uDC68\uDC69])\u200D(?:\uD83D[\uDC66\uDC67])|[\u2695\u2696\u2708]\uFE0F|\uD83D[\uDC66\uDC67]|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|(?:\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708])\uFE0F|\uD83C\uDFFB\u200D(?:\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C[\uDFFB-\uDFFF])|(?:\uD83E\uDDD1\uD83C\uDFFB\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFC\u200D\uD83E\uDD1D\u200D\uD83D\uDC69)\uD83C\uDFFB|\uD83E\uDDD1(?:\uD83C\uDFFF\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1(?:\uD83C[\uDFFB-\uDFFF])|\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1)|(?:\uD83E\uDDD1\uD83C\uDFFE\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFF\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB-\uDFFE])|(?:\uD83E\uDDD1\uD83C\uDFFC\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFD\u200D\uD83E\uDD1D\u200D\uD83D\uDC69)(?:\uD83C[\uDFFB\uDFFC])|\uD83D\uDC69(?:\uD83C\uDFFE\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFD\uDFFF])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFD-\uDFFF])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFB\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFC-\uDFFF])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67]))|(?:\uD83E\uDDD1\uD83C\uDFFD\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFE\u200D\uD83E\uDD1D\u200D\uD83D\uDC69)(?:\uD83C[\uDFFB-\uDFFD])|\uD83D\uDC69\u200D\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D[\uDC66\uDC67])|(?:\uD83D\uDC41\uFE0F\u200D\uD83D\uDDE8|\uD83D\uDC69(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])|(?:(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)\uFE0F|\uD83D\uDC6F|\uD83E[\uDD3C\uDDDE\uDDDF])\u200D[\u2640\u2642]|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uD83C[\uDFFB-\uDFFF])\u200D[\u2640\u2642]|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD6-\uDDDD])(?:(?:\uD83C[\uDFFB-\uDFFF])\u200D[\u2640\u2642]|\u200D[\u2640\u2642])|\uD83C\uDFF4\u200D\u2620)\uFE0F|\uD83D\uDC69\u200D\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08|\uD83D\uDC15\u200D\uD83E\uDDBA|\uD83D\uDC69\u200D\uD83D\uDC66|\uD83D\uDC69\u200D\uD83D\uDC67|\uD83C\uDDFD\uD83C\uDDF0|\uD83C\uDDF4\uD83C\uDDF2|\uD83C\uDDF6\uD83C\uDDE6|[#\*0-9]\uFE0F\u20E3|\uD83C\uDDE7(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF])|\uD83C\uDDF9(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF])|\uD83C\uDDEA(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA])|\uD83E\uDDD1(?:\uD83C[\uDFFB-\uDFFF])|\uD83C\uDDF7(?:\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC])|\uD83D\uDC69(?:\uD83C[\uDFFB-\uDFFF])|\uD83C\uDDF2(?:\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF])|\uD83C\uDDE6(?:\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF])|\uD83C\uDDF0(?:\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF])|\uD83C\uDDED(?:\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA])|\uD83C\uDDE9(?:\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF])|\uD83C\uDDFE(?:\uD83C[\uDDEA\uDDF9])|\uD83C\uDDEC(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE])|\uD83C\uDDF8(?:\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF])|\uD83C\uDDEB(?:\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7])|\uD83C\uDDF5(?:\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE])|\uD83C\uDDFB(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA])|\uD83C\uDDF3(?:\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF])|\uD83C\uDDE8(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF5\uDDF7\uDDFA-\uDDFF])|\uD83C\uDDF1(?:\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE])|\uD83C\uDDFF(?:\uD83C[\uDDE6\uDDF2\uDDFC])|\uD83C\uDDFC(?:\uD83C[\uDDEB\uDDF8])|\uD83C\uDDFA(?:\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF])|\uD83C\uDDEE(?:\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9])|\uD83C\uDDEF(?:\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5])|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD6-\uDDDD])(?:\uD83C[\uDFFB-\uDFFF])|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uD83C[\uDFFB-\uDFFF])|(?:[\u261D\u270A-\u270D]|\uD83C[\uDF85\uDFC2\uDFC7]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC70\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDCAA\uDD74\uDD7A\uDD90\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC]|\uD83E[\uDD0F\uDD18-\uDD1C\uDD1E\uDD1F\uDD30-\uDD36\uDDB5\uDDB6\uDDBB\uDDD2-\uDDD5])(?:\uD83C[\uDFFB-\uDFFF])|(?:[\u231A\u231B\u23E9-\u23EC\u23F0\u23F3\u25FD\u25FE\u2614\u2615\u2648-\u2653\u267F\u2693\u26A1\u26AA\u26AB\u26BD\u26BE\u26C4\u26C5\u26CE\u26D4\u26EA\u26F2\u26F3\u26F5\u26FA\u26FD\u2705\u270A\u270B\u2728\u274C\u274E\u2753-\u2755\u2757\u2795-\u2797\u27B0\u27BF\u2B1B\u2B1C\u2B50\u2B55]|\uD83C[\uDC04\uDCCF\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF7C\uDF7E-\uDF93\uDFA0-\uDFCA\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF4\uDFF8-\uDFFF]|\uD83D[\uDC00-\uDC3E\uDC40\uDC42-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDD7A\uDD95\uDD96\uDDA4\uDDFB-\uDE4F\uDE80-\uDEC5\uDECC\uDED0-\uDED2\uDED5\uDEEB\uDEEC\uDEF4-\uDEFA\uDFE0-\uDFEB]|\uD83E[\uDD0D-\uDD3A\uDD3C-\uDD45\uDD47-\uDD71\uDD73-\uDD76\uDD7A-\uDDA2\uDDA5-\uDDAA\uDDAE-\uDDCA\uDDCD-\uDDFF\uDE70-\uDE73\uDE78-\uDE7A\uDE80-\uDE82\uDE90-\uDE95])|(?:[#\*0-9\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23E9-\u23F3\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB-\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u261D\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692-\u2697\u2699\u269B\u269C\u26A0\u26A1\u26AA\u26AB\u26B0\u26B1\u26BD\u26BE\u26C4\u26C5\u26C8\u26CE\u26CF\u26D1\u26D3\u26D4\u26E9\u26EA\u26F0-\u26F5\u26F7-\u26FA\u26FD\u2702\u2705\u2708-\u270D\u270F\u2712\u2714\u2716\u271D\u2721\u2728\u2733\u2734\u2744\u2747\u274C\u274E\u2753-\u2755\u2757\u2763\u2764\u2795-\u2797\u27A1\u27B0\u27BF\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B50\u2B55\u3030\u303D\u3297\u3299]|\uD83C[\uDC04\uDCCF\uDD70\uDD71\uDD7E\uDD7F\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE02\uDE1A\uDE2F\uDE32-\uDE3A\uDE50\uDE51\uDF00-\uDF21\uDF24-\uDF93\uDF96\uDF97\uDF99-\uDF9B\uDF9E-\uDFF0\uDFF3-\uDFF5\uDFF7-\uDFFF]|\uD83D[\uDC00-\uDCFD\uDCFF-\uDD3D\uDD49-\uDD4E\uDD50-\uDD67\uDD6F\uDD70\uDD73-\uDD7A\uDD87\uDD8A-\uDD8D\uDD90\uDD95\uDD96\uDDA4\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA-\uDE4F\uDE80-\uDEC5\uDECB-\uDED2\uDED5\uDEE0-\uDEE5\uDEE9\uDEEB\uDEEC\uDEF0\uDEF3-\uDEFA\uDFE0-\uDFEB]|\uD83E[\uDD0D-\uDD3A\uDD3C-\uDD45\uDD47-\uDD71\uDD73-\uDD76\uDD7A-\uDDA2\uDDA5-\uDDAA\uDDAE-\uDDCA\uDDCD-\uDDFF\uDE70-\uDE73\uDE78-\uDE7A\uDE80-\uDE82\uDE90-\uDE95])\uFE0F|(?:[\u261D\u26F9\u270A-\u270D]|\uD83C[\uDF85\uDFC2-\uDFC4\uDFC7\uDFCA-\uDFCC]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66-\uDC78\uDC7C\uDC81-\uDC83\uDC85-\uDC87\uDC8F\uDC91\uDCAA\uDD74\uDD75\uDD7A\uDD90\uDD95\uDD96\uDE45-\uDE47\uDE4B-\uDE4F\uDEA3\uDEB4-\uDEB6\uDEC0\uDECC]|\uD83E[\uDD0F\uDD18-\uDD1F\uDD26\uDD30-\uDD39\uDD3C-\uDD3E\uDDB5\uDDB6\uDDB8\uDDB9\uDDBB\uDDCD-\uDDCF\uDDD1-\uDDDD])/g}});var yu=p((z3,pl)=>{"use strict";var QO=gu(),jO=Eu(),XO=Su(),Tu=e=>{if(typeof e!="string"||e.length===0||(e=QO(e),e.length===0))return 0;e=e.replace(XO()," ");let t=0;for(let a=0;a<e.length;a++){let r=e.codePointAt(a);r<=31||r>=127&&r<=159||r>=768&&r<=879||(r>65535&&a++,t+=jO(r)?2:1)}return t};pl.exports=Tu;pl.exports.default=Tu});var ml=p((H3,Au)=>{var bu=yu();function Pi(e){return e?/\u001b\[((?:\d*;){0,5}\d*)m/g:/\u001b\[(?:\d*;){0,5}\d*m/g}function $t(e){let t=Pi();return(""+e).replace(t,"").split(`
|
|
94
94
|
`).reduce(function(n,i){return bu(i)>n?bu(i):n},0)}function Dn(e,t){return Array(t+1).join(e)}function ZO(e,t,a,r){let n=$t(e);if(t+1>=n){let i=t-n;switch(r){case"right":{e=Dn(a,i)+e;break}case"center":{let s=Math.ceil(i/2),o=i-s;e=Dn(a,o)+e+Dn(a,s);break}default:{e=e+Dn(a,i);break}}}return e}var kr={};function In(e,t,a){t="\x1B["+t+"m",a="\x1B["+a+"m",kr[t]={set:e,to:!0},kr[a]={set:e,to:!1},kr[e]={on:t,off:a}}In("bold",1,22);In("italics",3,23);In("underline",4,24);In("inverse",7,27);In("strikethrough",9,29);function Cu(e,t){let a=t[1]?parseInt(t[1].split(";")[0]):0;if(a>=30&&a<=39||a>=90&&a<=97){e.lastForegroundAdded=t[0];return}if(a>=40&&a<=49||a>=100&&a<=107){e.lastBackgroundAdded=t[0];return}if(a===0){for(let n in e)Object.prototype.hasOwnProperty.call(e,n)&&delete e[n];return}let r=kr[t[0]];r&&(e[r.set]=r.to)}function JO(e){let t=Pi(!0),a=t.exec(e),r={};for(;a!==null;)Cu(r,a),a=t.exec(e);return r}function Ru(e,t){let a=e.lastBackgroundAdded,r=e.lastForegroundAdded;return delete e.lastBackgroundAdded,delete e.lastForegroundAdded,Object.keys(e).forEach(function(n){e[n]&&(t+=kr[n].off)}),a&&a!="\x1B[49m"&&(t+="\x1B[49m"),r&&r!="\x1B[39m"&&(t+="\x1B[39m"),t}function e0(e,t){let a=e.lastBackgroundAdded,r=e.lastForegroundAdded;return delete e.lastBackgroundAdded,delete e.lastForegroundAdded,Object.keys(e).forEach(function(n){e[n]&&(t=kr[n].on+t)}),a&&a!="\x1B[49m"&&(t=a+t),r&&r!="\x1B[39m"&&(t=r+t),t}function t0(e,t){if(e.length===$t(e))return e.substr(0,t);for(;$t(e)>t;)e=e.slice(0,-1);return e}function a0(e,t){let a=Pi(!0),r=e.split(Pi()),n=0,i=0,s="",o,c={};for(;i<t;){o=a.exec(e);let l=r[n];if(n++,i+$t(l)>t&&(l=t0(l,t-i)),s+=l,i+=$t(l),i<t){if(!o)break;s+=o[0],Cu(c,o)}}return Ru(c,s)}function r0(e,t,a){if(a=a||"\u2026",$t(e)<=t)return e;t-=$t(a);let n=a0(e,t);n+=a;let i="\x1B]8;;\x07";return e.includes(i)&&!n.includes(i)&&(n+=i),n}function n0(){return{chars:{top:"\u2500","top-mid":"\u252C","top-left":"\u250C","top-right":"\u2510",bottom:"\u2500","bottom-mid":"\u2534","bottom-left":"\u2514","bottom-right":"\u2518",left:"\u2502","left-mid":"\u251C",mid:"\u2500","mid-mid":"\u253C",right:"\u2502","right-mid":"\u2524",middle:"\u2502"},truncate:"\u2026",colWidths:[],rowHeights:[],colAligns:[],rowAligns:[],style:{"padding-left":1,"padding-right":1,head:["red"],border:["grey"],compact:!1},head:[]}}function i0(e,t){e=e||{},t=t||n0();let a=Object.assign({},t,e);return a.chars=Object.assign({},t.chars,e.chars),a.style=Object.assign({},t.style,e.style),a}function s0(e,t){let a=[],r=t.split(/(\s+)/g),n=[],i=0,s;for(let o=0;o<r.length;o+=2){let c=r[o],l=i+$t(c);i>0&&s&&(l+=s.length),l>e?(i!==0&&a.push(n.join("")),n=[c],i=$t(c)):(n.push(s||"",c),i=l),s=r[o+1]}return i&&a.push(n.join("")),a}function o0(e,t){let a=[],r="";function n(s,o){for(r.length&&o&&(r+=o),r+=s;r.length>e;)a.push(r.slice(0,e)),r=r.slice(e)}let i=t.split(/(\s+)/g);for(let s=0;s<i.length;s+=2)n(i[s],s&&i[s-1]);return r.length&&a.push(r),a}function l0(e,t,a=!0){let r=[];t=t.split(`
|
|
95
|
-
`);let n=a?s0:o0;for(let i=0;i<t.length;i++)r.push.apply(r,n(e,t[i]));return r}function c0(e){let t={},a=[];for(let r=0;r<e.length;r++){let n=e0(t,e[r]);t=JO(n);let i=Object.assign({},t);a.push(Ru(i,n))}return a}function _0(e,t){return["\x1B]","8",";",";",e||t,"\x07",t,"\x1B]","8",";",";","\x07"].join("")}Au.exports={strlen:$t,repeat:Dn,pad:ZO,truncate:r0,mergeOptions:i0,wordWrap:l0,colorizeLines:c0,hyperlink:_0}});var Iu=p((Y3,Du)=>{var Ou={};Du.exports=Ou;var Nu={reset:[0,0],bold:[1,22],dim:[2,22],italic:[3,23],underline:[4,24],inverse:[7,27],hidden:[8,28],strikethrough:[9,29],black:[30,39],red:[31,39],green:[32,39],yellow:[33,39],blue:[34,39],magenta:[35,39],cyan:[36,39],white:[37,39],gray:[90,39],grey:[90,39],brightRed:[91,39],brightGreen:[92,39],brightYellow:[93,39],brightBlue:[94,39],brightMagenta:[95,39],brightCyan:[96,39],brightWhite:[97,39],bgBlack:[40,49],bgRed:[41,49],bgGreen:[42,49],bgYellow:[43,49],bgBlue:[44,49],bgMagenta:[45,49],bgCyan:[46,49],bgWhite:[47,49],bgGray:[100,49],bgGrey:[100,49],bgBrightRed:[101,49],bgBrightGreen:[102,49],bgBrightYellow:[103,49],bgBrightBlue:[104,49],bgBrightMagenta:[105,49],bgBrightCyan:[106,49],bgBrightWhite:[107,49],blackBG:[40,49],redBG:[41,49],greenBG:[42,49],yellowBG:[43,49],blueBG:[44,49],magentaBG:[45,49],cyanBG:[46,49],whiteBG:[47,49]};Object.keys(Nu).forEach(function(e){var t=Nu[e],a=Ou[e]=[];a.open="\x1B["+t[0]+"m",a.close="\x1B["+t[1]+"m"})});var vu=p((q3,ku)=>{"use strict";ku.exports=function(e,t){t=t||process.argv;var a=t.indexOf("--"),r=/^-{1,2}/.test(e)?"":"--",n=t.indexOf(r+e);return n!==-1&&(a===-1?!0:n<a)}});var xu=p(($3,wu)=>{"use strict";var d0=ea("os"),Ut=vu(),ct=process.env,vr=void 0;Ut("no-color")||Ut("no-colors")||Ut("color=false")?vr=!1:(Ut("color")||Ut("colors")||Ut("color=true")||Ut("color=always"))&&(vr=!0);"FORCE_COLOR"in ct&&(vr=ct.FORCE_COLOR.length===0||parseInt(ct.FORCE_COLOR,10)!==0);function u0(e){return e===0?!1:{level:e,hasBasic:!0,has256:e>=2,has16m:e>=3}}function p0(e){if(vr===!1)return 0;if(Ut("color=16m")||Ut("color=full")||Ut("color=truecolor"))return 3;if(Ut("color=256"))return 2;if(e&&!e.isTTY&&vr!==!0)return 0;var t=vr?1:0;if(process.platform==="win32"){var a=d0.release().split(".");return Number(process.versions.node.split(".")[0])>=8&&Number(a[0])>=10&&Number(a[2])>=10586?Number(a[2])>=14931?3:2:1}if("CI"in ct)return["TRAVIS","CIRCLECI","APPVEYOR","GITLAB_CI"].some(function(n){return n in ct})||ct.CI_NAME==="codeship"?1:t;if("TEAMCITY_VERSION"in ct)return/^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(ct.TEAMCITY_VERSION)?1:0;if("TERM_PROGRAM"in ct){var r=parseInt((ct.TERM_PROGRAM_VERSION||"").split(".")[0],10);switch(ct.TERM_PROGRAM){case"iTerm.app":return r>=3?3:2;case"Hyper":return 3;case"Apple_Terminal":return 2}}return/-256(color)?$/i.test(ct.TERM)?2:/^screen|^xterm|^vt100|^rxvt|color|ansi|cygwin|linux/i.test(ct.TERM)||"COLORTERM"in ct?1:(ct.TERM==="dumb",t)}function gl(e){var t=p0(e);return u0(t)}wu.exports={supportsColor:gl,stdout:gl(process.stdout),stderr:gl(process.stderr)}});var Lu=p((V3,Mu)=>{Mu.exports=function(t,a){var r="";t=t||"Run the trap, drop the bass",t=t.split("");var n={a:["@","\u0104","\u023A","\u0245","\u0394","\u039B","\u0414"],b:["\xDF","\u0181","\u0243","\u026E","\u03B2","\u0E3F"],c:["\xA9","\u023B","\u03FE"],d:["\xD0","\u018A","\u0500","\u0501","\u0502","\u0503"],e:["\xCB","\u0115","\u018E","\u0258","\u03A3","\u03BE","\u04BC","\u0A6C"],f:["\u04FA"],g:["\u0262"],h:["\u0126","\u0195","\u04A2","\u04BA","\u04C7","\u050A"],i:["\u0F0F"],j:["\u0134"],k:["\u0138","\u04A0","\u04C3","\u051E"],l:["\u0139"],m:["\u028D","\u04CD","\u04CE","\u0520","\u0521","\u0D69"],n:["\xD1","\u014B","\u019D","\u0376","\u03A0","\u048A"],o:["\xD8","\xF5","\xF8","\u01FE","\u0298","\u047A","\u05DD","\u06DD","\u0E4F"],p:["\u01F7","\u048E"],q:["\u09CD"],r:["\xAE","\u01A6","\u0210","\u024C","\u0280","\u042F"],s:["\xA7","\u03DE","\u03DF","\u03E8"],t:["\u0141","\u0166","\u0373"],u:["\u01B1","\u054D"],v:["\u05D8"],w:["\u0428","\u0460","\u047C","\u0D70"],x:["\u04B2","\u04FE","\u04FC","\u04FD"],y:["\xA5","\u04B0","\u04CB"],z:["\u01B5","\u0240"]};return t.forEach(function(i){i=i.toLowerCase();var s=n[i]||[" "],o=Math.floor(Math.random()*s.length);typeof n[i]<"u"?r+=n[i][o]:r+=i}),r}});var Fu=p((K3,Pu)=>{Pu.exports=function(t,a){t=t||" he is here ";var r={up:["\u030D","\u030E","\u0304","\u0305","\u033F","\u0311","\u0306","\u0310","\u0352","\u0357","\u0351","\u0307","\u0308","\u030A","\u0342","\u0313","\u0308","\u034A","\u034B","\u034C","\u0303","\u0302","\u030C","\u0350","\u0300","\u0301","\u030B","\u030F","\u0312","\u0313","\u0314","\u033D","\u0309","\u0363","\u0364","\u0365","\u0366","\u0367","\u0368","\u0369","\u036A","\u036B","\u036C","\u036D","\u036E","\u036F","\u033E","\u035B","\u0346","\u031A"],down:["\u0316","\u0317","\u0318","\u0319","\u031C","\u031D","\u031E","\u031F","\u0320","\u0324","\u0325","\u0326","\u0329","\u032A","\u032B","\u032C","\u032D","\u032E","\u032F","\u0330","\u0331","\u0332","\u0333","\u0339","\u033A","\u033B","\u033C","\u0345","\u0347","\u0348","\u0349","\u034D","\u034E","\u0353","\u0354","\u0355","\u0356","\u0359","\u035A","\u0323"],mid:["\u0315","\u031B","\u0300","\u0301","\u0358","\u0321","\u0322","\u0327","\u0328","\u0334","\u0335","\u0336","\u035C","\u035D","\u035E","\u035F","\u0360","\u0362","\u0338","\u0337","\u0361"," \u0489"]},n=[].concat(r.up,r.down,r.mid);function i(c){var l=Math.floor(Math.random()*c);return l}function s(c){var l=!1;return n.filter(function(d){l=d===c}),l}function o(c,l){var d="",u,g;l=l||{},l.up=typeof l.up<"u"?l.up:!0,l.mid=typeof l.mid<"u"?l.mid:!0,l.down=typeof l.down<"u"?l.down:!0,l.size=typeof l.size<"u"?l.size:"maxi",c=c.split("");for(g in c)if(!s(g)){switch(d=d+c[g],u={up:0,down:0,mid:0},l.size){case"mini":u.up=i(8),u.mid=i(2),u.down=i(8);break;case"maxi":u.up=i(16)+3,u.mid=i(4)+1,u.down=i(64)+3;break;default:u.up=i(8)+1,u.mid=i(6)/2,u.down=i(8)+1;break}var h=["up","mid","down"];for(var m in h)for(var y=h[m],b=0;b<=u[y];b++)l[y]&&(d=d+r[y][i(r[y].length)])}return d}return o(t,a)}});var Bu=p((W3,Uu)=>{Uu.exports=function(e){return function(t,a,r){if(t===" ")return t;switch(a%3){case 0:return e.red(t);case 1:return e.white(t);case 2:return e.blue(t)}}}});var zu=p((Q3,Gu)=>{Gu.exports=function(e){return function(t,a,r){return a%2===0?t:e.inverse(t)}}});var Yu=p((j3,Hu)=>{Hu.exports=function(e){var t=["red","yellow","green","blue","magenta"];return function(a,r,n){return a===" "?a:e[t[r++%t.length]](a)}}});var $u=p((X3,qu)=>{qu.exports=function(e){var t=["underline","inverse","grey","yellow","red","green","blue","white","cyan","magenta","brightYellow","brightRed","brightGreen","brightBlue","brightWhite","brightCyan","brightMagenta"];return function(a,r,n){return a===" "?a:e[t[Math.round(Math.random()*(t.length-2))]](a)}}});var Xu=p((J3,ju)=>{var
|
|
96
|
-
`)!=-1,r=this._styles,n=r.length;n--;){var i=Ka[r[n]];t=i.open+t.replace(i.closeRe,i.open)+i.close,a&&(t=t.replace(g0,function(s){return i.close+s+i.open}))}return t}
|
|
95
|
+
`);let n=a?s0:o0;for(let i=0;i<t.length;i++)r.push.apply(r,n(e,t[i]));return r}function c0(e){let t={},a=[];for(let r=0;r<e.length;r++){let n=e0(t,e[r]);t=JO(n);let i=Object.assign({},t);a.push(Ru(i,n))}return a}function _0(e,t){return["\x1B]","8",";",";",e||t,"\x07",t,"\x1B]","8",";",";","\x07"].join("")}Au.exports={strlen:$t,repeat:Dn,pad:ZO,truncate:r0,mergeOptions:i0,wordWrap:l0,colorizeLines:c0,hyperlink:_0}});var Iu=p((Y3,Du)=>{var Ou={};Du.exports=Ou;var Nu={reset:[0,0],bold:[1,22],dim:[2,22],italic:[3,23],underline:[4,24],inverse:[7,27],hidden:[8,28],strikethrough:[9,29],black:[30,39],red:[31,39],green:[32,39],yellow:[33,39],blue:[34,39],magenta:[35,39],cyan:[36,39],white:[37,39],gray:[90,39],grey:[90,39],brightRed:[91,39],brightGreen:[92,39],brightYellow:[93,39],brightBlue:[94,39],brightMagenta:[95,39],brightCyan:[96,39],brightWhite:[97,39],bgBlack:[40,49],bgRed:[41,49],bgGreen:[42,49],bgYellow:[43,49],bgBlue:[44,49],bgMagenta:[45,49],bgCyan:[46,49],bgWhite:[47,49],bgGray:[100,49],bgGrey:[100,49],bgBrightRed:[101,49],bgBrightGreen:[102,49],bgBrightYellow:[103,49],bgBrightBlue:[104,49],bgBrightMagenta:[105,49],bgBrightCyan:[106,49],bgBrightWhite:[107,49],blackBG:[40,49],redBG:[41,49],greenBG:[42,49],yellowBG:[43,49],blueBG:[44,49],magentaBG:[45,49],cyanBG:[46,49],whiteBG:[47,49]};Object.keys(Nu).forEach(function(e){var t=Nu[e],a=Ou[e]=[];a.open="\x1B["+t[0]+"m",a.close="\x1B["+t[1]+"m"})});var vu=p((q3,ku)=>{"use strict";ku.exports=function(e,t){t=t||process.argv;var a=t.indexOf("--"),r=/^-{1,2}/.test(e)?"":"--",n=t.indexOf(r+e);return n!==-1&&(a===-1?!0:n<a)}});var xu=p(($3,wu)=>{"use strict";var d0=ea("os"),Ut=vu(),ct=process.env,vr=void 0;Ut("no-color")||Ut("no-colors")||Ut("color=false")?vr=!1:(Ut("color")||Ut("colors")||Ut("color=true")||Ut("color=always"))&&(vr=!0);"FORCE_COLOR"in ct&&(vr=ct.FORCE_COLOR.length===0||parseInt(ct.FORCE_COLOR,10)!==0);function u0(e){return e===0?!1:{level:e,hasBasic:!0,has256:e>=2,has16m:e>=3}}function p0(e){if(vr===!1)return 0;if(Ut("color=16m")||Ut("color=full")||Ut("color=truecolor"))return 3;if(Ut("color=256"))return 2;if(e&&!e.isTTY&&vr!==!0)return 0;var t=vr?1:0;if(process.platform==="win32"){var a=d0.release().split(".");return Number(process.versions.node.split(".")[0])>=8&&Number(a[0])>=10&&Number(a[2])>=10586?Number(a[2])>=14931?3:2:1}if("CI"in ct)return["TRAVIS","CIRCLECI","APPVEYOR","GITLAB_CI"].some(function(n){return n in ct})||ct.CI_NAME==="codeship"?1:t;if("TEAMCITY_VERSION"in ct)return/^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(ct.TEAMCITY_VERSION)?1:0;if("TERM_PROGRAM"in ct){var r=parseInt((ct.TERM_PROGRAM_VERSION||"").split(".")[0],10);switch(ct.TERM_PROGRAM){case"iTerm.app":return r>=3?3:2;case"Hyper":return 3;case"Apple_Terminal":return 2}}return/-256(color)?$/i.test(ct.TERM)?2:/^screen|^xterm|^vt100|^rxvt|color|ansi|cygwin|linux/i.test(ct.TERM)||"COLORTERM"in ct?1:(ct.TERM==="dumb",t)}function gl(e){var t=p0(e);return u0(t)}wu.exports={supportsColor:gl,stdout:gl(process.stdout),stderr:gl(process.stderr)}});var Lu=p((V3,Mu)=>{Mu.exports=function(t,a){var r="";t=t||"Run the trap, drop the bass",t=t.split("");var n={a:["@","\u0104","\u023A","\u0245","\u0394","\u039B","\u0414"],b:["\xDF","\u0181","\u0243","\u026E","\u03B2","\u0E3F"],c:["\xA9","\u023B","\u03FE"],d:["\xD0","\u018A","\u0500","\u0501","\u0502","\u0503"],e:["\xCB","\u0115","\u018E","\u0258","\u03A3","\u03BE","\u04BC","\u0A6C"],f:["\u04FA"],g:["\u0262"],h:["\u0126","\u0195","\u04A2","\u04BA","\u04C7","\u050A"],i:["\u0F0F"],j:["\u0134"],k:["\u0138","\u04A0","\u04C3","\u051E"],l:["\u0139"],m:["\u028D","\u04CD","\u04CE","\u0520","\u0521","\u0D69"],n:["\xD1","\u014B","\u019D","\u0376","\u03A0","\u048A"],o:["\xD8","\xF5","\xF8","\u01FE","\u0298","\u047A","\u05DD","\u06DD","\u0E4F"],p:["\u01F7","\u048E"],q:["\u09CD"],r:["\xAE","\u01A6","\u0210","\u024C","\u0280","\u042F"],s:["\xA7","\u03DE","\u03DF","\u03E8"],t:["\u0141","\u0166","\u0373"],u:["\u01B1","\u054D"],v:["\u05D8"],w:["\u0428","\u0460","\u047C","\u0D70"],x:["\u04B2","\u04FE","\u04FC","\u04FD"],y:["\xA5","\u04B0","\u04CB"],z:["\u01B5","\u0240"]};return t.forEach(function(i){i=i.toLowerCase();var s=n[i]||[" "],o=Math.floor(Math.random()*s.length);typeof n[i]<"u"?r+=n[i][o]:r+=i}),r}});var Fu=p((K3,Pu)=>{Pu.exports=function(t,a){t=t||" he is here ";var r={up:["\u030D","\u030E","\u0304","\u0305","\u033F","\u0311","\u0306","\u0310","\u0352","\u0357","\u0351","\u0307","\u0308","\u030A","\u0342","\u0313","\u0308","\u034A","\u034B","\u034C","\u0303","\u0302","\u030C","\u0350","\u0300","\u0301","\u030B","\u030F","\u0312","\u0313","\u0314","\u033D","\u0309","\u0363","\u0364","\u0365","\u0366","\u0367","\u0368","\u0369","\u036A","\u036B","\u036C","\u036D","\u036E","\u036F","\u033E","\u035B","\u0346","\u031A"],down:["\u0316","\u0317","\u0318","\u0319","\u031C","\u031D","\u031E","\u031F","\u0320","\u0324","\u0325","\u0326","\u0329","\u032A","\u032B","\u032C","\u032D","\u032E","\u032F","\u0330","\u0331","\u0332","\u0333","\u0339","\u033A","\u033B","\u033C","\u0345","\u0347","\u0348","\u0349","\u034D","\u034E","\u0353","\u0354","\u0355","\u0356","\u0359","\u035A","\u0323"],mid:["\u0315","\u031B","\u0300","\u0301","\u0358","\u0321","\u0322","\u0327","\u0328","\u0334","\u0335","\u0336","\u035C","\u035D","\u035E","\u035F","\u0360","\u0362","\u0338","\u0337","\u0361"," \u0489"]},n=[].concat(r.up,r.down,r.mid);function i(c){var l=Math.floor(Math.random()*c);return l}function s(c){var l=!1;return n.filter(function(d){l=d===c}),l}function o(c,l){var d="",u,g;l=l||{},l.up=typeof l.up<"u"?l.up:!0,l.mid=typeof l.mid<"u"?l.mid:!0,l.down=typeof l.down<"u"?l.down:!0,l.size=typeof l.size<"u"?l.size:"maxi",c=c.split("");for(g in c)if(!s(g)){switch(d=d+c[g],u={up:0,down:0,mid:0},l.size){case"mini":u.up=i(8),u.mid=i(2),u.down=i(8);break;case"maxi":u.up=i(16)+3,u.mid=i(4)+1,u.down=i(64)+3;break;default:u.up=i(8)+1,u.mid=i(6)/2,u.down=i(8)+1;break}var h=["up","mid","down"];for(var m in h)for(var y=h[m],b=0;b<=u[y];b++)l[y]&&(d=d+r[y][i(r[y].length)])}return d}return o(t,a)}});var Bu=p((W3,Uu)=>{Uu.exports=function(e){return function(t,a,r){if(t===" ")return t;switch(a%3){case 0:return e.red(t);case 1:return e.white(t);case 2:return e.blue(t)}}}});var zu=p((Q3,Gu)=>{Gu.exports=function(e){return function(t,a,r){return a%2===0?t:e.inverse(t)}}});var Yu=p((j3,Hu)=>{Hu.exports=function(e){var t=["red","yellow","green","blue","magenta"];return function(a,r,n){return a===" "?a:e[t[r++%t.length]](a)}}});var $u=p((X3,qu)=>{qu.exports=function(e){var t=["underline","inverse","grey","yellow","red","green","blue","white","cyan","magenta","brightYellow","brightRed","brightGreen","brightBlue","brightWhite","brightCyan","brightMagenta"];return function(a,r,n){return a===" "?a:e[t[Math.round(Math.random()*(t.length-2))]](a)}}});var Xu=p((J3,ju)=>{var ce={};ju.exports=ce;ce.themes={};var m0=ea("util"),Ka=ce.styles=Iu(),Ku=Object.defineProperties,g0=new RegExp(/[\r\n]+/g);ce.supportsColor=xu().supportsColor;typeof ce.enabled>"u"&&(ce.enabled=ce.supportsColor()!==!1);ce.enable=function(){ce.enabled=!0};ce.disable=function(){ce.enabled=!1};ce.stripColors=ce.strip=function(e){return(""+e).replace(/\x1B\[\d+m/g,"")};var Z3=ce.stylize=function(t,a){if(!ce.enabled)return t+"";var r=Ka[a];return!r&&a in ce?ce[a](t):r.open+t+r.close},f0=/[|\\{}()[\]^$+*?.]/g,E0=function(e){if(typeof e!="string")throw new TypeError("Expected a string");return e.replace(f0,"\\$&")};function Wu(e){var t=function a(){return S0.apply(a,arguments)};return t._styles=e,t.__proto__=h0,t}var Qu=(function(){var e={};return Ka.grey=Ka.gray,Object.keys(Ka).forEach(function(t){Ka[t].closeRe=new RegExp(E0(Ka[t].close),"g"),e[t]={get:function(){return Wu(this._styles.concat(t))}}}),e})(),h0=Ku(function(){},Qu);function S0(){var e=Array.prototype.slice.call(arguments),t=e.map(function(s){return s!=null&&s.constructor===String?s:m0.inspect(s)}).join(" ");if(!ce.enabled||!t)return t;for(var a=t.indexOf(`
|
|
96
|
+
`)!=-1,r=this._styles,n=r.length;n--;){var i=Ka[r[n]];t=i.open+t.replace(i.closeRe,i.open)+i.close,a&&(t=t.replace(g0,function(s){return i.close+s+i.open}))}return t}ce.setTheme=function(e){if(typeof e=="string"){console.log("colors.setTheme now only accepts an object, not a string. If you are trying to set a theme from a file, it is now your (the caller's) responsibility to require the file. The old syntax looked like colors.setTheme(__dirname + '/../themes/generic-logging.js'); The new syntax looks like colors.setTheme(require(__dirname + '/../themes/generic-logging.js'));");return}for(var t in e)(function(a){ce[a]=function(r){if(typeof e[a]=="object"){var n=r;for(var i in e[a])n=ce[e[a][i]](n);return n}return ce[e[a]](r)}})(t)};function T0(){var e={};return Object.keys(Qu).forEach(function(t){e[t]={get:function(){return Wu([t])}}}),e}var y0=function(t,a){var r=a.split("");return r=r.map(t),r.join("")};ce.trap=Lu();ce.zalgo=Fu();ce.maps={};ce.maps.america=Bu()(ce);ce.maps.zebra=zu()(ce);ce.maps.rainbow=Yu()(ce);ce.maps.random=$u()(ce);for(Vu in ce.maps)(function(e){ce[e]=function(t){return y0(ce.maps[e],t)}})(Vu);var Vu;Ku(ce,T0())});var Ju=p((eU,Zu)=>{var b0=Xu();Zu.exports=b0});var rp=p((tU,Fi)=>{var{info:C0,debug:ap}=Li(),Tt=ml(),El=class e{constructor(t){this.setOptions(t),this.x=null,this.y=null}setOptions(t){["boolean","number","bigint","string"].indexOf(typeof t)!==-1&&(t={content:""+t}),t=t||{},this.options=t;let a=t.content;if(["boolean","number","bigint","string"].indexOf(typeof a)!==-1)this.content=String(a);else if(!a)this.content=this.options.href||"";else throw new Error("Content needs to be a primitive, got: "+typeof a);this.colSpan=t.colSpan||1,this.rowSpan=t.rowSpan||1,this.options.href&&Object.defineProperty(this,"href",{get(){return this.options.href}})}mergeTableOptions(t,a){this.cells=a;let r=this.options.chars||{},n=t.chars,i=this.chars={};A0.forEach(function(c){fl(r,n,c,i)}),this.truncate=this.options.truncate||t.truncate;let s=this.options.style=this.options.style||{},o=t.style;fl(s,o,"padding-left",this),fl(s,o,"padding-right",this),this.head=s.head||o.head,this.border=s.border||o.border,this.fixedWidth=t.colWidths[this.x],this.lines=this.computeLines(t),this.desiredWidth=Tt.strlen(this.content)+this.paddingLeft+this.paddingRight,this.desiredHeight=this.lines.length}computeLines(t){let a=t.wordWrap||t.textWrap,{wordWrap:r=a}=this.options;if(this.fixedWidth&&r){if(this.fixedWidth-=this.paddingLeft+this.paddingRight,this.colSpan){let s=1;for(;s<this.colSpan;)this.fixedWidth+=t.colWidths[this.x+s],s++}let{wrapOnWordBoundary:n=!0}=t,{wrapOnWordBoundary:i=n}=this.options;return this.wrapLines(Tt.wordWrap(this.fixedWidth,this.content,i))}return this.wrapLines(this.content.split(`
|
|
97
97
|
`))}wrapLines(t){let a=Tt.colorizeLines(t);return this.href?a.map(r=>Tt.hyperlink(this.href,r)):a}init(t){let a=this.x,r=this.y;this.widths=t.colWidths.slice(a,a+this.colSpan),this.heights=t.rowHeights.slice(r,r+this.rowSpan),this.width=this.widths.reduce(tp,-1),this.height=this.heights.reduce(tp,-1),this.hAlign=this.options.hAlign||t.colAligns[a],this.vAlign=this.options.vAlign||t.rowAligns[r],this.drawRight=a+this.colSpan==t.colWidths.length}draw(t,a){if(t=="top")return this.drawTop(this.drawRight);if(t=="bottom")return this.drawBottom(this.drawRight);let r=Tt.truncate(this.content,10,this.truncate);t||C0(`${this.y}-${this.x}: ${this.rowSpan-t}x${this.colSpan} Cell ${r}`);let n=Math.max(this.height-this.lines.length,0),i;switch(this.vAlign){case"center":i=Math.ceil(n/2);break;case"bottom":i=n;break;default:i=0}if(t<i||t>=i+this.lines.length)return this.drawEmpty(this.drawRight,a);let s=this.lines.length>this.height&&t+1>=this.height;return this.drawLine(t-i,this.drawRight,s,a)}drawTop(t){let a=[];return this.cells?this.widths.forEach(function(r,n){a.push(this._topLeftChar(n)),a.push(Tt.repeat(this.chars[this.y==0?"top":"mid"],r))},this):(a.push(this._topLeftChar(0)),a.push(Tt.repeat(this.chars[this.y==0?"top":"mid"],this.width))),t&&a.push(this.chars[this.y==0?"topRight":"rightMid"]),this.wrapWithStyleColors("border",a.join(""))}_topLeftChar(t){let a=this.x+t,r;if(this.y==0)r=a==0?"topLeft":t==0?"topMid":"top";else if(a==0)r="leftMid";else if(r=t==0?"midMid":"bottomMid",this.cells&&(this.cells[this.y-1][a]instanceof e.ColSpanCell&&(r=t==0?"topMid":"mid"),t==0)){let i=1;for(;this.cells[this.y][a-i]instanceof e.ColSpanCell;)i++;this.cells[this.y][a-i]instanceof e.RowSpanCell&&(r="leftMid")}return this.chars[r]}wrapWithStyleColors(t,a){if(this[t]&&this[t].length)try{let r=Ju();for(let n=this[t].length-1;n>=0;n--)r=r[this[t][n]];return r(a)}catch{return a}else return a}drawLine(t,a,r,n){let i=this.chars[this.x==0?"left":"middle"];if(this.x&&n&&this.cells){let g=this.cells[this.y+n][this.x-1];for(;g instanceof kn;)g=this.cells[g.y][g.x-1];g instanceof vn||(i=this.chars.rightMid)}let s=Tt.repeat(" ",this.paddingLeft),o=a?this.chars.right:"",c=Tt.repeat(" ",this.paddingRight),l=this.lines[t],d=this.width-(this.paddingLeft+this.paddingRight);r&&(l+=this.truncate||"\u2026");let u=Tt.truncate(l,d,this.truncate);return u=Tt.pad(u,d," ",this.hAlign),u=s+u+c,this.stylizeLine(i,u,o)}stylizeLine(t,a,r){return t=this.wrapWithStyleColors("border",t),r=this.wrapWithStyleColors("border",r),this.y===0&&(a=this.wrapWithStyleColors("head",a)),t+a+r}drawBottom(t){let a=this.chars[this.x==0?"bottomLeft":"bottomMid"],r=Tt.repeat(this.chars.bottom,this.width),n=t?this.chars.bottomRight:"";return this.wrapWithStyleColors("border",a+r+n)}drawEmpty(t,a){let r=this.chars[this.x==0?"left":"middle"];if(this.x&&a&&this.cells){let s=this.cells[this.y+a][this.x-1];for(;s instanceof kn;)s=this.cells[s.y][s.x-1];s instanceof vn||(r=this.chars.rightMid)}let n=t?this.chars.right:"",i=Tt.repeat(" ",this.width);return this.stylizeLine(r,i,n)}},kn=class{constructor(){}draw(t){return typeof t=="number"&&ap(`${this.y}-${this.x}: 1x1 ColSpanCell`),""}init(){}mergeTableOptions(){}},vn=class{constructor(t){this.originalCell=t}init(t){let a=this.y,r=this.originalCell.y;this.cellOffset=a-r,this.offset=R0(t.rowHeights,r,this.cellOffset)}draw(t){return t=="top"?this.originalCell.draw(this.offset,this.cellOffset):t=="bottom"?this.originalCell.draw("bottom"):(ap(`${this.y}-${this.x}: 1x${this.colSpan} RowSpanCell for ${this.originalCell.content}`),this.originalCell.draw(this.offset+1+t))}mergeTableOptions(){}};function ep(...e){return e.filter(t=>t!=null).shift()}function fl(e,t,a,r){let n=a.split("-");n.length>1?(n[1]=n[1].charAt(0).toUpperCase()+n[1].substr(1),n=n.join(""),r[n]=ep(e[n],e[a],t[n],t[a])):r[a]=ep(e[a],t[a])}function R0(e,t,a){let r=e[t];for(let n=1;n<a;n++)r+=1+e[t+n];return r}function tp(e,t){return e+t+1}var A0=["top","top-mid","top-left","top-right","bottom","bottom-mid","bottom-left","bottom-right","left","left-mid","mid","mid-mid","right","right-mid","middle"];Fi.exports=El;Fi.exports.ColSpanCell=kn;Fi.exports.RowSpanCell=vn});var sp=p((aU,ip)=>{var{warn:N0,debug:O0}=Li(),hl=rp(),{ColSpanCell:D0,RowSpanCell:I0}=hl;(function(){function e(h,m){return h[m]>0?e(h,m+1):m}function t(h){let m={};h.forEach(function(y,b){let N=0;y.forEach(function(C){C.y=b,C.x=b?e(m,N):N;let A=C.rowSpan||1,I=C.colSpan||1;if(A>1)for(let L=0;L<I;L++)m[C.x+L]=A;N=C.x+I}),Object.keys(m).forEach(C=>{m[C]--,m[C]<1&&delete m[C]})})}function a(h){let m=0;return h.forEach(function(y){y.forEach(function(b){m=Math.max(m,b.x+(b.colSpan||1))})}),m}function r(h){return h.length}function n(h,m){let y=h.y,b=h.y-1+(h.rowSpan||1),N=m.y,C=m.y-1+(m.rowSpan||1),A=!(y>C||N>b),I=h.x,L=h.x-1+(h.colSpan||1),Y=m.x,Z=m.x-1+(m.colSpan||1),Oe=!(I>Z||Y>L);return A&&Oe}function i(h,m,y){let b=Math.min(h.length-1,y),N={x:m,y};for(let C=0;C<=b;C++){let A=h[C];for(let I=0;I<A.length;I++)if(n(N,A[I]))return!0}return!1}function s(h,m,y,b){for(let N=y;N<b;N++)if(i(h,N,m))return!1;return!0}function o(h){h.forEach(function(m,y){m.forEach(function(b){for(let N=1;N<b.rowSpan;N++){let C=new I0(b);C.x=b.x,C.y=b.y+N,C.colSpan=b.colSpan,l(C,h[y+N])}})})}function c(h){for(let m=h.length-1;m>=0;m--){let y=h[m];for(let b=0;b<y.length;b++){let N=y[b];for(let C=1;C<N.colSpan;C++){let A=new D0;A.x=N.x+C,A.y=N.y,y.splice(b+1,0,A)}}}}function l(h,m){let y=0;for(;y<m.length&&m[y].x<h.x;)y++;m.splice(y,0,h)}function d(h){let m=r(h),y=a(h);O0(`Max rows: ${m}; Max cols: ${y}`);for(let b=0;b<m;b++)for(let N=0;N<y;N++)if(!i(h,N,b)){let C={x:N,y:b,colSpan:1,rowSpan:1};for(N++;N<y&&!i(h,N,b);)C.colSpan++,N++;let A=b+1;for(;A<m&&s(h,A,C.x,C.x+C.colSpan);)C.rowSpan++,A++;let I=new hl(C);I.x=C.x,I.y=C.y,N0(`Missing cell at ${I.y}-${I.x}.`),l(I,h[b])}}function u(h){return h.map(function(m){if(!Array.isArray(m)){let y=Object.keys(m)[0];m=m[y],Array.isArray(m)?(m=m.slice(),m.unshift(y)):m=[y,m]}return m.map(function(y){return new hl(y)})})}function g(h){let m=u(h);return t(m),d(m),o(m),c(m),m}ip.exports={makeTableLayout:g,layoutTable:t,addRowSpanCells:o,maxWidth:a,fillInTable:d,computeWidths:np("colSpan","desiredWidth","x",1),computeHeights:np("rowSpan","desiredHeight","y",1)}})();function np(e,t,a,r){return function(n,i){let s=[],o=[],c={};i.forEach(function(l){l.forEach(function(d){(d[e]||1)>1?o.push(d):s[d[a]]=Math.max(s[d[a]]||0,d[t]||0,r)})}),n.forEach(function(l,d){typeof l=="number"&&(s[d]=l)});for(let l=o.length-1;l>=0;l--){let d=o[l],u=d[e],g=d[a],h=s[g],m=typeof n[g]=="number"?0:1;if(typeof h=="number")for(let y=1;y<u;y++)h+=1+s[g+y],typeof n[g+y]!="number"&&m++;else h=t==="desiredWidth"?d.desiredWidth-1:1,(!c[g]||c[g]<h)&&(c[g]=h);if(d[t]>h){let y=0;for(;m>0&&d[t]>h;){if(typeof n[g+y]!="number"){let b=Math.round((d[t]-h)/m);h+=b,s[g+y]+=b,m--}y++}}}Object.assign(n,s,c);for(let l=0;l<n.length;l++)n[l]=Math.max(r,n[l]||0)}}});var lp=p((rU,op)=>{var na=Li(),k0=ml(),Sl=sp(),Ui=class extends Array{constructor(t){super();let a=k0.mergeOptions(t);if(Object.defineProperty(this,"options",{value:a,enumerable:a.debug}),a.debug){switch(typeof a.debug){case"boolean":na.setDebugLevel(na.WARN);break;case"number":na.setDebugLevel(a.debug);break;case"string":na.setDebugLevel(parseInt(a.debug,10));break;default:na.setDebugLevel(na.WARN),na.warn(`Debug option is expected to be boolean, number, or string. Received a ${typeof a.debug}`)}Object.defineProperty(this,"messages",{get(){return na.debugMessages()}})}}toString(){let t=this,a=this.options.head&&this.options.head.length;a?(t=[this.options.head],this.length&&t.push.apply(t,this)):this.options.style.head=[];let r=Sl.makeTableLayout(t);r.forEach(function(i){i.forEach(function(s){s.mergeTableOptions(this.options,r)},this)},this),Sl.computeWidths(this.options.colWidths,r),Sl.computeHeights(this.options.rowHeights,r),r.forEach(function(i){i.forEach(function(s){s.init(this.options)},this)},this);let n=[];for(let i=0;i<r.length;i++){let s=r[i],o=this.options.rowHeights[i];(i===0||!this.options.style.compact||i==1&&a)&&Tl(s,"top",n);for(let c=0;c<o;c++)Tl(s,c,n);i+1==r.length&&Tl(s,"bottom",n)}return n.join(`
|
|
98
98
|
`)}get width(){return this.toString().split(`
|
|
99
99
|
`)[0].length}};Ui.reset=()=>na.reset();function Tl(e,t,a){let r=[];e.forEach(function(i){r.push(i.draw(t))});let n=r.join("");n.length&&a.push(n)}op.exports=Ui});var _p=p((nU,cp)=>{cp.exports=lp()});var Ap=p((iU,Rp)=>{function Ol(e){return e instanceof Map?e.clear=e.delete=e.set=function(){throw new Error("map is read-only")}:e instanceof Set&&(e.add=e.clear=e.delete=function(){throw new Error("set is read-only")}),Object.freeze(e),Object.getOwnPropertyNames(e).forEach(function(t){var a=e[t];typeof a=="object"&&!Object.isFrozen(a)&&Ol(a)}),e}var Ep=Ol,v0=Ol;Ep.default=v0;var Gi=class{constructor(t){t.data===void 0&&(t.data={}),this.data=t.data,this.isMatchIgnored=!1}ignoreMatch(){this.isMatchIgnored=!0}};function wr(e){return e.replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">").replace(/"/g,""").replace(/'/g,"'")}function Na(e,...t){let a=Object.create(null);for(let r in e)a[r]=e[r];return t.forEach(function(r){for(let n in r)a[n]=r[n]}),a}var w0="</span>",dp=e=>!!e.kind,Cl=class{constructor(t,a){this.buffer="",this.classPrefix=a.classPrefix,t.walk(this)}addText(t){this.buffer+=wr(t)}openNode(t){if(!dp(t))return;let a=t.kind;t.sublanguage||(a=`${this.classPrefix}${a}`),this.span(a)}closeNode(t){dp(t)&&(this.buffer+=w0)}value(){return this.buffer}span(t){this.buffer+=`<span class="${t}">`}},Rl=class e{constructor(){this.rootNode={children:[]},this.stack=[this.rootNode]}get top(){return this.stack[this.stack.length-1]}get root(){return this.rootNode}add(t){this.top.children.push(t)}openNode(t){let a={kind:t,children:[]};this.add(a),this.stack.push(a)}closeNode(){if(this.stack.length>1)return this.stack.pop()}closeAllNodes(){for(;this.closeNode(););}toJSON(){return JSON.stringify(this.rootNode,null,4)}walk(t){return this.constructor._walk(t,this.rootNode)}static _walk(t,a){return typeof a=="string"?t.addText(a):a.children&&(t.openNode(a),a.children.forEach(r=>this._walk(t,r)),t.closeNode(a)),t}static _collapse(t){typeof t!="string"&&t.children&&(t.children.every(a=>typeof a=="string")?t.children=[t.children.join("")]:t.children.forEach(a=>{e._collapse(a)}))}},Al=class extends Rl{constructor(t){super(),this.options=t}addKeyword(t,a){t!==""&&(this.openNode(a),this.addText(t),this.closeNode())}addText(t){t!==""&&this.add(t)}addSublanguage(t,a){let r=t.root;r.kind=a,r.sublanguage=!0,this.add(r)}toHTML(){return new Cl(this,this.options).value()}finalize(){return!0}};function x0(e){return new RegExp(e.replace(/[-/\\^$*+?.()|[\]{}]/g,"\\$&"),"m")}function wn(e){return e?typeof e=="string"?e:e.source:null}function M0(...e){return e.map(a=>wn(a)).join("")}function L0(...e){return"("+e.map(a=>wn(a)).join("|")+")"}function P0(e){return new RegExp(e.toString()+"|").exec("").length-1}function F0(e,t){let a=e&&e.exec(t);return a&&a.index===0}var U0=/\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./;function B0(e,t="|"){let a=0;return e.map(r=>{a+=1;let n=a,i=wn(r),s="";for(;i.length>0;){let o=U0.exec(i);if(!o){s+=i;break}s+=i.substring(0,o.index),i=i.substring(o.index+o[0].length),o[0][0]==="\\"&&o[1]?s+="\\"+String(Number(o[1])+n):(s+=o[0],o[0]==="("&&a++)}return s}).map(r=>`(${r})`).join(t)}var G0=/\b\B/,hp="[a-zA-Z]\\w*",Dl="[a-zA-Z_]\\w*",Il="\\b\\d+(\\.\\d+)?",Sp="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",Tp="\\b(0b[01]+)",z0="!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",H0=(e={})=>{let t=/^#![ ]*\//;return e.binary&&(e.begin=M0(t,/.*\b/,e.binary,/\b.*/)),Na({className:"meta",begin:t,end:/$/,relevance:0,"on:begin":(a,r)=>{a.index!==0&&r.ignoreMatch()}},e)},xn={begin:"\\\\[\\s\\S]",relevance:0},Y0={className:"string",begin:"'",end:"'",illegal:"\\n",contains:[xn]},q0={className:"string",begin:'"',end:'"',illegal:"\\n",contains:[xn]},yp={begin:/\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/},zi=function(e,t,a={}){let r=Na({className:"comment",begin:e,end:t,contains:[]},a);return r.contains.push(yp),r.contains.push({className:"doctag",begin:"(?:TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):",relevance:0}),r},$0=zi("//","$"),V0=zi("/\\*","\\*/"),K0=zi("#","$"),W0={className:"number",begin:Il,relevance:0},Q0={className:"number",begin:Sp,relevance:0},j0={className:"number",begin:Tp,relevance:0},X0={className:"number",begin:Il+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",relevance:0},Z0={begin:/(?=\/[^/\n]*\/)/,contains:[{className:"regexp",begin:/\//,end:/\/[gimuy]*/,illegal:/\n/,contains:[xn,{begin:/\[/,end:/\]/,relevance:0,contains:[xn]}]}]},J0={className:"title",begin:hp,relevance:0},eD={className:"title",begin:Dl,relevance:0},tD={begin:"\\.\\s*"+Dl,relevance:0},aD=function(e){return Object.assign(e,{"on:begin":(t,a)=>{a.data._beginMatch=t[1]},"on:end":(t,a)=>{a.data._beginMatch!==t[1]&&a.ignoreMatch()}})},Bi=Object.freeze({__proto__:null,MATCH_NOTHING_RE:G0,IDENT_RE:hp,UNDERSCORE_IDENT_RE:Dl,NUMBER_RE:Il,C_NUMBER_RE:Sp,BINARY_NUMBER_RE:Tp,RE_STARTERS_RE:z0,SHEBANG:H0,BACKSLASH_ESCAPE:xn,APOS_STRING_MODE:Y0,QUOTE_STRING_MODE:q0,PHRASAL_WORDS_MODE:yp,COMMENT:zi,C_LINE_COMMENT_MODE:$0,C_BLOCK_COMMENT_MODE:V0,HASH_COMMENT_MODE:K0,NUMBER_MODE:W0,C_NUMBER_MODE:Q0,BINARY_NUMBER_MODE:j0,CSS_NUMBER_MODE:X0,REGEXP_MODE:Z0,TITLE_MODE:J0,UNDERSCORE_TITLE_MODE:eD,METHOD_GUARD:tD,END_SAME_AS_BEGIN:aD});function rD(e,t){e.input[e.index-1]==="."&&t.ignoreMatch()}function nD(e,t){t&&e.beginKeywords&&(e.begin="\\b("+e.beginKeywords.split(" ").join("|")+")(?!\\.)(?=\\b|\\s)",e.__beforeBegin=rD,e.keywords=e.keywords||e.beginKeywords,delete e.beginKeywords,e.relevance===void 0&&(e.relevance=0))}function iD(e,t){Array.isArray(e.illegal)&&(e.illegal=L0(...e.illegal))}function sD(e,t){if(e.match){if(e.begin||e.end)throw new Error("begin & end are not supported with match");e.begin=e.match,delete e.match}}function oD(e,t){e.relevance===void 0&&(e.relevance=1)}var lD=["of","and","for","in","not","or","if","then","parent","list","value"],cD="keyword";function bp(e,t,a=cD){let r={};return typeof e=="string"?n(a,e.split(" ")):Array.isArray(e)?n(a,e):Object.keys(e).forEach(function(i){Object.assign(r,bp(e[i],t,i))}),r;function n(i,s){t&&(s=s.map(o=>o.toLowerCase())),s.forEach(function(o){let c=o.split("|");r[c[0]]=[i,_D(c[0],c[1])]})}}function _D(e,t){return t?Number(t):dD(e)?0:1}function dD(e){return lD.includes(e.toLowerCase())}function uD(e,{plugins:t}){function a(o,c){return new RegExp(wn(o),"m"+(e.case_insensitive?"i":"")+(c?"g":""))}class r{constructor(){this.matchIndexes={},this.regexes=[],this.matchAt=1,this.position=0}addRule(c,l){l.position=this.position++,this.matchIndexes[this.matchAt]=l,this.regexes.push([l,c]),this.matchAt+=P0(c)+1}compile(){this.regexes.length===0&&(this.exec=()=>null);let c=this.regexes.map(l=>l[1]);this.matcherRe=a(B0(c),!0),this.lastIndex=0}exec(c){this.matcherRe.lastIndex=this.lastIndex;let l=this.matcherRe.exec(c);if(!l)return null;let d=l.findIndex((g,h)=>h>0&&g!==void 0),u=this.matchIndexes[d];return l.splice(0,d),Object.assign(l,u)}}class n{constructor(){this.rules=[],this.multiRegexes=[],this.count=0,this.lastIndex=0,this.regexIndex=0}getMatcher(c){if(this.multiRegexes[c])return this.multiRegexes[c];let l=new r;return this.rules.slice(c).forEach(([d,u])=>l.addRule(d,u)),l.compile(),this.multiRegexes[c]=l,l}resumingScanAtSamePosition(){return this.regexIndex!==0}considerAll(){this.regexIndex=0}addRule(c,l){this.rules.push([c,l]),l.type==="begin"&&this.count++}exec(c){let l=this.getMatcher(this.regexIndex);l.lastIndex=this.lastIndex;let d=l.exec(c);if(this.resumingScanAtSamePosition()&&!(d&&d.index===this.lastIndex)){let u=this.getMatcher(0);u.lastIndex=this.lastIndex+1,d=u.exec(c)}return d&&(this.regexIndex+=d.position+1,this.regexIndex===this.count&&this.considerAll()),d}}function i(o){let c=new n;return o.contains.forEach(l=>c.addRule(l.begin,{rule:l,type:"begin"})),o.terminatorEnd&&c.addRule(o.terminatorEnd,{type:"end"}),o.illegal&&c.addRule(o.illegal,{type:"illegal"}),c}function s(o,c){let l=o;if(o.isCompiled)return l;[sD].forEach(u=>u(o,c)),e.compilerExtensions.forEach(u=>u(o,c)),o.__beforeBegin=null,[nD,iD,oD].forEach(u=>u(o,c)),o.isCompiled=!0;let d=null;if(typeof o.keywords=="object"&&(d=o.keywords.$pattern,delete o.keywords.$pattern),o.keywords&&(o.keywords=bp(o.keywords,e.case_insensitive)),o.lexemes&&d)throw new Error("ERR: Prefer `keywords.$pattern` to `mode.lexemes`, BOTH are not allowed. (see mode reference) ");return d=d||o.lexemes||/\w+/,l.keywordPatternRe=a(d,!0),c&&(o.begin||(o.begin=/\B|\b/),l.beginRe=a(o.begin),o.endSameAsBegin&&(o.end=o.begin),!o.end&&!o.endsWithParent&&(o.end=/\B|\b/),o.end&&(l.endRe=a(o.end)),l.terminatorEnd=wn(o.end)||"",o.endsWithParent&&c.terminatorEnd&&(l.terminatorEnd+=(o.end?"|":"")+c.terminatorEnd)),o.illegal&&(l.illegalRe=a(o.illegal)),o.contains||(o.contains=[]),o.contains=[].concat(...o.contains.map(function(u){return pD(u==="self"?o:u)})),o.contains.forEach(function(u){s(u,l)}),o.starts&&s(o.starts,c),l.matcher=i(l),l}if(e.compilerExtensions||(e.compilerExtensions=[]),e.contains&&e.contains.includes("self"))throw new Error("ERR: contains `self` is not supported at the top-level of a language. See documentation.");return e.classNameAliases=Na(e.classNameAliases||{}),s(e)}function Cp(e){return e?e.endsWithParent||Cp(e.starts):!1}function pD(e){return e.variants&&!e.cachedVariants&&(e.cachedVariants=e.variants.map(function(t){return Na(e,{variants:null},t)})),e.cachedVariants?e.cachedVariants:Cp(e)?Na(e,{starts:e.starts?Na(e.starts):null}):Object.isFrozen(e)?Na(e):e}var mD="10.7.3";function gD(e){return!!(e||e==="")}function fD(e){let t={props:["language","code","autodetect"],data:function(){return{detectedLanguage:"",unknownLanguage:!1}},computed:{className(){return this.unknownLanguage?"":"hljs "+this.detectedLanguage},highlighted(){if(!this.autoDetect&&!e.getLanguage(this.language))return console.warn(`The language "${this.language}" you specified could not be found.`),this.unknownLanguage=!0,wr(this.code);let r={};return this.autoDetect?(r=e.highlightAuto(this.code),this.detectedLanguage=r.language):(r=e.highlight(this.language,this.code,this.ignoreIllegals),this.detectedLanguage=this.language),r.value},autoDetect(){return!this.language||gD(this.autodetect)},ignoreIllegals(){return!0}},render(r){return r("pre",{},[r("code",{class:this.className,domProps:{innerHTML:this.highlighted}})])}};return{Component:t,VuePlugin:{install(r){r.component("highlightjs",t)}}}}var ED={"after:highlightElement":({el:e,result:t,text:a})=>{let r=up(e);if(!r.length)return;let n=document.createElement("div");n.innerHTML=t.value,t.value=hD(r,up(n),a)}};function Nl(e){return e.nodeName.toLowerCase()}function up(e){let t=[];return(function a(r,n){for(let i=r.firstChild;i;i=i.nextSibling)i.nodeType===3?n+=i.nodeValue.length:i.nodeType===1&&(t.push({event:"start",offset:n,node:i}),n=a(i,n),Nl(i).match(/br|hr|img|input/)||t.push({event:"stop",offset:n,node:i}));return n})(e,0),t}function hD(e,t,a){let r=0,n="",i=[];function s(){return!e.length||!t.length?e.length?e:t:e[0].offset!==t[0].offset?e[0].offset<t[0].offset?e:t:t[0].event==="start"?e:t}function o(d){function u(g){return" "+g.nodeName+'="'+wr(g.value)+'"'}n+="<"+Nl(d)+[].map.call(d.attributes,u).join("")+">"}function c(d){n+="</"+Nl(d)+">"}function l(d){(d.event==="start"?o:c)(d.node)}for(;e.length||t.length;){let d=s();if(n+=wr(a.substring(r,d[0].offset)),r=d[0].offset,d===e){i.reverse().forEach(c);do l(d.splice(0,1)[0]),d=s();while(d===e&&d.length&&d[0].offset===r);i.reverse().forEach(o)}else d[0].event==="start"?i.push(d[0].node):i.pop(),l(d.splice(0,1)[0])}return n+wr(a.substr(r))}var pp={},yl=e=>{console.error(e)},mp=(e,...t)=>{console.log(`WARN: ${e}`,...t)},Ot=(e,t)=>{pp[`${e}/${t}`]||(console.log(`Deprecated as of ${e}. ${t}`),pp[`${e}/${t}`]=!0)},bl=wr,gp=Na,fp=Symbol("nomatch"),SD=function(e){let t=Object.create(null),a=Object.create(null),r=[],n=!0,i=/(^(<[^>]+>|\t|)+|\n)/gm,s="Could not find the language '{}', did you forget to load/include a language module?",o={disableAutodetect:!0,name:"Plain text",contains:[]},c={noHighlightRe:/^(no-?highlight)$/i,languageDetectRe:/\blang(?:uage)?-([\w-]+)\b/i,classPrefix:"hljs-",tabReplace:null,useBR:!1,languages:null,__emitter:Al};function l(O){return c.noHighlightRe.test(O)}function d(O){let U=O.className+" ";U+=O.parentNode?O.parentNode.className:"";let ae=c.languageDetectRe.exec(U);if(ae){let fe=Qe(ae[1]);return fe||(mp(s.replace("{}",ae[1])),mp("Falling back to no-highlight mode for this block.",O)),fe?ae[1]:"no-highlight"}return U.split(/\s+/).find(fe=>l(fe)||Qe(fe))}function u(O,U,ae,fe){let we="",bt="";typeof U=="object"?(we=O,ae=U.ignoreIllegals,bt=U.language,fe=void 0):(Ot("10.7.0","highlight(lang, code, ...args) has been deprecated."),Ot("10.7.0",`Please use highlight(code, options) instead.
|
|
@@ -107,7 +107,7 @@ https://github.com/highlightjs/highlight.js/issues/2277`),bt=O,we=U);let st={cod
|
|
|
107
107
|
]*?"'`},{begin:`"[^\r
|
|
108
108
|
"]*"`}]},{className:"built_in",variants:[{begin:"\\b(abs|acos|asin|atan|atan2|atanh|ceil|cloglog|comb|cos|digamma|exp|floor|invcloglog|invlogit|ln|lnfact|lnfactorial|lngamma|log|log10|max|min|mod|reldif|round|sign|sin|sqrt|sum|tan|tanh|trigamma|trunc|betaden|Binomial|binorm|binormal|chi2|chi2tail|dgammapda|dgammapdada|dgammapdadx|dgammapdx|dgammapdxdx|F|Fden|Ftail|gammaden|gammap|ibeta|invbinomial|invchi2|invchi2tail|invF|invFtail|invgammap|invibeta|invnchi2|invnFtail|invnibeta|invnorm|invnormal|invttail|nbetaden|nchi2|nFden|nFtail|nibeta|norm|normal|normalden|normd|npnchi2|tden|ttail|uniform|abbrev|char|index|indexnot|length|lower|ltrim|match|plural|proper|real|regexm|regexr|regexs|reverse|rtrim|string|strlen|strlower|strltrim|strmatch|strofreal|strpos|strproper|strreverse|strrtrim|strtrim|strupper|subinstr|subinword|substr|trim|upper|word|wordcount|_caller|autocode|byteorder|chop|clip|cond|e|epsdouble|epsfloat|group|inlist|inrange|irecode|matrix|maxbyte|maxdouble|maxfloat|maxint|maxlong|mi|minbyte|mindouble|minfloat|minint|minlong|missing|r|recode|replay|return|s|scalar|d|date|day|dow|doy|halfyear|mdy|month|quarter|week|year|d|daily|dofd|dofh|dofm|dofq|dofw|dofy|h|halfyearly|hofd|m|mofd|monthly|q|qofd|quarterly|tin|twithin|w|weekly|wofd|y|yearly|yh|ym|yofd|yq|yw|cholesky|colnumb|colsof|corr|det|diag|diag0cnt|el|get|hadamard|I|inv|invsym|issym|issymmetric|J|matmissing|matuniform|mreldif|nullmat|rownumb|rowsof|sweep|syminv|trace|vec|vecdiag)(?=\\()"}]},e.COMMENT("^[ ]*\\*.*$",!1),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]}}iS.exports=Tx});var lS=p((u7,oS)=>{function yx(e){return{name:"STEP Part 21",aliases:["p21","step","stp"],case_insensitive:!0,keywords:{$pattern:"[A-Z_][A-Z0-9_.]*",keyword:"HEADER ENDSEC DATA"},contains:[{className:"meta",begin:"ISO-10303-21;",relevance:10},{className:"meta",begin:"END-ISO-10303-21;",relevance:10},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.COMMENT("/\\*\\*!","\\*/"),e.C_NUMBER_MODE,e.inherit(e.APOS_STRING_MODE,{illegal:null}),e.inherit(e.QUOTE_STRING_MODE,{illegal:null}),{className:"string",begin:"'",end:"'"},{className:"symbol",variants:[{begin:"#",end:"\\d+",illegal:"\\W"}]}]}}oS.exports=yx});var _S=p((p7,cS)=>{var bx=e=>({IMPORTANT:{className:"meta",begin:"!important"},HEXCOLOR:{className:"number",begin:"#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})"},ATTRIBUTE_SELECTOR_MODE:{className:"selector-attr",begin:/\[/,end:/\]/,illegal:"$",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]}}),Cx=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","p","q","quote","samp","section","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],Rx=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"],Ax=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"],Nx=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"],Ox=["align-content","align-items","align-self","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","auto","backface-visibility","background","background-attachment","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","border","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","clear","clip","clip-path","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","content","counter-increment","counter-reset","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-size","font-size-adjust","font-smoothing","font-stretch","font-style","font-variant","font-variant-ligatures","font-variation-settings","font-weight","height","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","inherit","initial","justify-content","left","letter-spacing","line-height","list-style","list-style-image","list-style-position","list-style-type","margin","margin-bottom","margin-left","margin-right","margin-top","marks","mask","max-height","max-width","min-height","min-width","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-wrap","overflow-x","overflow-y","padding","padding-bottom","padding-left","padding-right","padding-top","page-break-after","page-break-before","page-break-inside","perspective","perspective-origin","pointer-events","position","quotes","resize","right","src","tab-size","table-layout","text-align","text-align-last","text-decoration","text-decoration-color","text-decoration-line","text-decoration-style","text-indent","text-overflow","text-rendering","text-shadow","text-transform","text-underline-position","top","transform","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","white-space","widows","width","word-break","word-spacing","word-wrap","z-index"].reverse();function Dx(e){let t=bx(e),a="and or not only",r={className:"variable",begin:"\\$"+e.IDENT_RE},n=["charset","css","debug","extend","font-face","for","import","include","keyframes","media","mixin","page","warn","while"],i="(?=[.\\s\\n[:,(])";return{name:"Stylus",aliases:["styl"],case_insensitive:!1,keywords:"if else for in",illegal:"("+["\\?","(\\bReturn\\b)","(\\bEnd\\b)","(\\bend\\b)","(\\bdef\\b)",";","#\\s","\\*\\s","===\\s","\\|","%"].join("|")+")",contains:[e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,t.HEXCOLOR,{begin:"\\.[a-zA-Z][a-zA-Z0-9_-]*"+i,className:"selector-class"},{begin:"#[a-zA-Z][a-zA-Z0-9_-]*"+i,className:"selector-id"},{begin:"\\b("+Cx.join("|")+")"+i,className:"selector-tag"},{className:"selector-pseudo",begin:"&?:("+Ax.join("|")+")"+i},{className:"selector-pseudo",begin:"&?::("+Nx.join("|")+")"+i},t.ATTRIBUTE_SELECTOR_MODE,{className:"keyword",begin:/@media/,starts:{end:/[{;}]/,keywords:{$pattern:/[a-z-]+/,keyword:a,attribute:Rx.join(" ")},contains:[e.CSS_NUMBER_MODE]}},{className:"keyword",begin:"@((-(o|moz|ms|webkit)-)?("+n.join("|")+"))\\b"},r,e.CSS_NUMBER_MODE,{className:"function",begin:"^[a-zA-Z][a-zA-Z0-9_-]*\\(.*\\)",illegal:"[\\n]",returnBegin:!0,contains:[{className:"title",begin:"\\b[a-zA-Z][a-zA-Z0-9_-]*"},{className:"params",begin:/\(/,end:/\)/,contains:[t.HEXCOLOR,r,e.APOS_STRING_MODE,e.CSS_NUMBER_MODE,e.QUOTE_STRING_MODE]}]},{className:"attribute",begin:"\\b("+Ox.join("|")+")\\b",starts:{end:/;|$/,contains:[t.HEXCOLOR,r,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.CSS_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,t.IMPORTANT],illegal:/\./,relevance:0}}]}}cS.exports=Dx});var uS=p((m7,dS)=>{function Ix(e){return{name:"SubUnit",case_insensitive:!0,contains:[{className:"string",begin:`\\[
|
|
109
109
|
(multipart)?`,end:`\\]
|
|
110
|
-
`},{className:"string",begin:"\\d{4}-\\d{2}-\\d{2}(\\s+)\\d{2}:\\d{2}:\\d{2}.\\d+Z"},{className:"string",begin:"(\\+|-)\\d+"},{className:"keyword",relevance:10,variants:[{begin:"^(test|testing|success|successful|failure|error|skip|xfail|uxsuccess)(:?)\\s+(test)?"},{begin:"^progress(:?)(\\s+)?(pop|push)?"},{begin:"^tags:"},{begin:"^time:"}]}]}}dS.exports=Ix});var yS=p((g7,TS)=>{function fS(e){return e?typeof e=="string"?e:e.source:null}function Pr(e){return De("(?=",e,")")}function De(...e){return e.map(a=>fS(a)).join("")}function _t(...e){return"("+e.map(a=>fS(a)).join("|")+")"}var $l=e=>De(/\b/,e,/\w$/.test(e)?/\b/:/\B/),pS=["Protocol","Type"].map($l),zl=["init","self"].map($l),kx=["Any","Self"],Hl=["associatedtype","async","await",/as\?/,/as!/,"as","break","case","catch","class","continue","convenience","default","defer","deinit","didSet","do","dynamic","else","enum","extension","fallthrough",/fileprivate\(set\)/,"fileprivate","final","for","func","get","guard","if","import","indirect","infix",/init\?/,/init!/,"inout",/internal\(set\)/,"internal","in","is","lazy","let","mutating","nonmutating",/open\(set\)/,"open","operator","optional","override","postfix","precedencegroup","prefix",/private\(set\)/,"private","protocol",/public\(set\)/,"public","repeat","required","rethrows","return","set","some","static","struct","subscript","super","switch","throws","throw",/try\?/,/try!/,"try","typealias",/unowned\(safe\)/,/unowned\(unsafe\)/,"unowned","var","weak","where","while","willSet"],mS=["false","nil","true"],vx=["assignment","associativity","higherThan","left","lowerThan","none","right"],wx=["#colorLiteral","#column","#dsohandle","#else","#elseif","#endif","#error","#file","#fileID","#fileLiteral","#filePath","#function","#if","#imageLiteral","#keyPath","#line","#selector","#sourceLocation","#warn_unqualified_access","#warning"],gS=["abs","all","any","assert","assertionFailure","debugPrint","dump","fatalError","getVaList","isKnownUniquelyReferenced","max","min","numericCast","pointwiseMax","pointwiseMin","precondition","preconditionFailure","print","readLine","repeatElement","sequence","stride","swap","swift_unboxFromSwiftValueWithType","transcode","type","unsafeBitCast","unsafeDowncast","withExtendedLifetime","withUnsafeMutablePointer","withUnsafePointer","withVaList","withoutActuallyEscaping","zip"],ES=_t(/[/=\-+!*%<>&|^~?]/,/[\u00A1-\u00A7]/,/[\u00A9\u00AB]/,/[\u00AC\u00AE]/,/[\u00B0\u00B1]/,/[\u00B6\u00BB\u00BF\u00D7\u00F7]/,/[\u2016-\u2017]/,/[\u2020-\u2027]/,/[\u2030-\u203E]/,/[\u2041-\u2053]/,/[\u2055-\u205E]/,/[\u2190-\u23FF]/,/[\u2500-\u2775]/,/[\u2794-\u2BFF]/,/[\u2E00-\u2E7F]/,/[\u3001-\u3003]/,/[\u3008-\u3020]/,/[\u3030]/),hS=_t(ES,/[\u0300-\u036F]/,/[\u1DC0-\u1DFF]/,/[\u20D0-\u20FF]/,/[\uFE00-\uFE0F]/,/[\uFE20-\uFE2F]/),Yl=De(ES,hS,"*"),SS=_t(/[a-zA-Z_]/,/[\u00A8\u00AA\u00AD\u00AF\u00B2-\u00B5\u00B7-\u00BA]/,/[\u00BC-\u00BE\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF]/,/[\u0100-\u02FF\u0370-\u167F\u1681-\u180D\u180F-\u1DBF]/,/[\u1E00-\u1FFF]/,/[\u200B-\u200D\u202A-\u202E\u203F-\u2040\u2054\u2060-\u206F]/,/[\u2070-\u20CF\u2100-\u218F\u2460-\u24FF\u2776-\u2793]/,/[\u2C00-\u2DFF\u2E80-\u2FFF]/,/[\u3004-\u3007\u3021-\u302F\u3031-\u303F\u3040-\uD7FF]/,/[\uF900-\uFD3D\uFD40-\uFDCF\uFDF0-\uFE1F\uFE30-\uFE44]/,/[\uFE47-\uFEFE\uFF00-\uFFFD]/),Zi=_t(SS,/\d/,/[\u0300-\u036F\u1DC0-\u1DFF\u20D0-\u20FF\uFE20-\uFE2F]/),ia=De(SS,Zi,"*"),ql=De(/[A-Z]/,Zi,"*"),xx=["autoclosure",De(/convention\(/,_t("swift","block","c"),/\)/),"discardableResult","dynamicCallable","dynamicMemberLookup","escaping","frozen","GKInspectable","IBAction","IBDesignable","IBInspectable","IBOutlet","IBSegueAction","inlinable","main","nonobjc","NSApplicationMain","NSCopying","NSManaged",De(/objc\(/,ia,/\)/),"objc","objcMembers","propertyWrapper","requires_stored_property_inits","testable","UIApplicationMain","unknown","usableFromInline"],Mx=["iOS","iOSApplicationExtension","macOS","macOSApplicationExtension","macCatalyst","macCatalystApplicationExtension","watchOS","watchOSApplicationExtension","tvOS","tvOSApplicationExtension","swift"];function Lx(e){let t={match:/\s+/,relevance:0},a=e.COMMENT("/\\*","\\*/",{contains:["self"]}),r=[e.C_LINE_COMMENT_MODE,a],n={className:"keyword",begin:De(/\./,Pr(_t(...pS,...zl))),end:_t(...pS,...zl),excludeBegin:!0},i={match:De(/\./,_t(...Hl)),relevance:0},s=Hl.filter(oe=>typeof oe=="string").concat(["_|0"]),o=Hl.filter(oe=>typeof oe!="string").concat(kx).map($l),c={variants:[{className:"keyword",match:_t(...o,...zl)}]},l={$pattern:_t(/\b\w+/,/#\w+/),keyword:s.concat(wx),literal:mS},d=[n,i,c],u={match:De(/\./,_t(...gS)),relevance:0},g={className:"built_in",match:De(/\b/,_t(...gS),/(?=\()/)},h=[u,g],m={match:/->/,relevance:0},y={className:"operator",relevance:0,variants:[{match:Yl},{match:`\\.(\\.|${hS})+`}]},b=[m,y],N="([0-9]_*)+",C="([0-9a-fA-F]_*)+",A={className:"number",relevance:0,variants:[{match:`\\b(${N})(\\.(${N}))?([eE][+-]?(${N}))?\\b`},{match:`\\b0x(${C})(\\.(${C}))?([pP][+-]?(${N}))?\\b`},{match:/\b0o([0-7]_*)+\b/},{match:/\b0b([01]_*)+\b/}]},I=(oe="")=>({className:"subst",variants:[{match:De(/\\/,oe,/[0\\tnr"']/)},{match:De(/\\/,oe,/u\{[0-9a-fA-F]{1,8}\}/)}]}),L=(oe="")=>({className:"subst",match:De(/\\/,oe,/[\t ]*(?:[\r\n]|\r\n)/)}),Y=(oe="")=>({className:"subst",label:"interpol",begin:De(/\\/,oe,/\(/),end:/\)/}),Z=(oe="")=>({begin:De(oe,/"""/),end:De(/"""/,oe),contains:[I(oe),L(oe),Y(oe)]}),Oe=(oe="")=>({begin:De(oe,/"/),end:De(/"/,oe),contains:[I(oe),Y(oe)]}),W={className:"string",variants:[Z(),Z("#"),Z("##"),Z("###"),Oe(),Oe("#"),Oe("##"),Oe("###")]},Be={match:De(/`/,ia,/`/)},dt={className:"variable",match:/\$\d+/},Ta={className:"variable",match:`\\$${Zi}+`},Pt=[Be,dt,Ta],Ve={match:/(@|#)available/,className:"keyword",starts:{contains:[{begin:/\(/,end:/\)/,keywords:Mx,contains:[...b,A,W]}]}},Qe={className:"keyword",match:De(/@/,_t(...xx))},F={className:"meta",match:De(/@/,ia)},X=[Ve,Qe,F],ze={match:Pr(/\b[A-Z]/),relevance:0,contains:[{className:"type",match:De(/(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)/,Zi,"+")},{className:"type",match:ql,relevance:0},{match:/[?!]+/,relevance:0},{match:/\.\.\./,relevance:0},{match:De(/\s+&\s+/,Pr(ql)),relevance:0}]},Jt={begin:/</,end:/>/,keywords:l,contains:[...r,...d,...X,m,ze]};ze.contains.push(Jt);let Ye={match:De(ia,/\s*:/),keywords:"_|0",relevance:0},tt={begin:/\(/,end:/\)/,relevance:0,keywords:l,contains:["self",Ye,...r,...d,...h,...b,A,W,...Pt,...X,ze]},yt={beginKeywords:"func",contains:[{className:"title",match:_t(Be.match,ia,Yl),endsParent:!0,relevance:0},t]},O={begin:/</,end:/>/,contains:[...r,ze]},U={begin:_t(Pr(De(ia,/\s*:/)),Pr(De(ia,/\s+/,ia,/\s*:/))),end:/:/,relevance:0,contains:[{className:"keyword",match:/\b_\b/},{className:"params",match:ia}]},ae={begin:/\(/,end:/\)/,keywords:l,contains:[U,...r,...d,...b,A,W,...X,ze,tt],endsParent:!0,illegal:/["']/},fe={className:"function",match:Pr(/\bfunc\b/),contains:[yt,O,ae,t],illegal:[/\[/,/%/]},we={className:"function",match:/\b(subscript|init[?!]?)\s*(?=[<(])/,keywords:{keyword:"subscript init init? init!",$pattern:/\w+[?!]?/},contains:[O,ae,t],illegal:/\[|%/},bt={beginKeywords:"operator",end:e.MATCH_NOTHING_RE,contains:[{className:"title",match:Yl,endsParent:!0,relevance:0}]},st={beginKeywords:"precedencegroup",end:e.MATCH_NOTHING_RE,contains:[{className:"title",match:ql,relevance:0},{begin:/{/,end:/}/,relevance:0,endsParent:!0,keywords:[...vx,...mS],contains:[ze]}]};for(let oe of W.variants){let ut=oe.contains.find(li=>li.label==="interpol");ut.keywords=l;let Ct=[...d,...h,...b,A,W,...Pt];ut.contains=[...Ct,{begin:/\(/,end:/\)/,contains:["self",...Ct]}]}return{name:"Swift",keywords:l,contains:[...r,fe,we,{className:"class",beginKeywords:"struct protocol class extension enum",end:"\\{",excludeEnd:!0,keywords:l,contains:[e.inherit(e.TITLE_MODE,{begin:/[A-Za-z$_][\u00C0-\u02B80-9A-Za-z$_]*/}),...d]},bt,st,{beginKeywords:"import",end:/$/,contains:[...r],relevance:0},...d,...h,...b,A,W,...Pt,...X,ze,tt]}}TS.exports=Lx});var CS=p((f7,bS)=>{function Px(e){return{name:"Tagger Script",contains:[{className:"comment",begin:/\$noop\(/,end:/\)/,contains:[{begin:/\(/,end:/\)/,contains:["self",{begin:/\\./}]}],relevance:10},{className:"keyword",begin:/\$(?!noop)[a-zA-Z][_a-zA-Z0-9]*/,end:/\(/,excludeEnd:!0},{className:"variable",begin:/%[_a-zA-Z0-9:]*/,end:"%"},{className:"symbol",begin:/\\./}]}}bS.exports=Px});var AS=p((E7,RS)=>{function Fx(e){var t="true false yes no null",a="[\\w#;/?:@&=+$,.~*'()[\\]]+",r={className:"attr",variants:[{begin:"\\w[\\w :\\/.-]*:(?=[ ]|$)"},{begin:'"\\w[\\w :\\/.-]*":(?=[ ]|$)'},{begin:"'\\w[\\w :\\/.-]*':(?=[ ]|$)"}]},n={className:"template-variable",variants:[{begin:/\{\{/,end:/\}\}/},{begin:/%\{/,end:/\}/}]},i={className:"string",relevance:0,variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/\S+/}],contains:[e.BACKSLASH_ESCAPE,n]},s=e.inherit(i,{variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/[^\s,{}[\]]+/}]}),o="[0-9]{4}(-[0-9][0-9]){0,2}",c="([Tt \\t][0-9][0-9]?(:[0-9][0-9]){2})?",l="(\\.[0-9]*)?",d="([ \\t])*(Z|[-+][0-9][0-9]?(:[0-9][0-9])?)?",u={className:"number",begin:"\\b"+o+c+l+d+"\\b"},g={end:",",endsWithParent:!0,excludeEnd:!0,keywords:t,relevance:0},h={begin:/\{/,end:/\}/,contains:[g],illegal:"\\n",relevance:0},m={begin:"\\[",end:"\\]",contains:[g],illegal:"\\n",relevance:0},y=[r,{className:"meta",begin:"^---\\s*$",relevance:10},{className:"string",begin:"[\\|>]([1-9]?[+-])?[ ]*\\n( +)[^ ][^\\n]*\\n(\\2[^\\n]+\\n?)*"},{begin:"<%[%=-]?",end:"[%-]?%>",subLanguage:"ruby",excludeBegin:!0,excludeEnd:!0,relevance:0},{className:"type",begin:"!\\w+!"+a},{className:"type",begin:"!<"+a+">"},{className:"type",begin:"!"+a},{className:"type",begin:"!!"+a},{className:"meta",begin:"&"+e.UNDERSCORE_IDENT_RE+"$"},{className:"meta",begin:"\\*"+e.UNDERSCORE_IDENT_RE+"$"},{className:"bullet",begin:"-(?=[ ]|$)",relevance:0},e.HASH_COMMENT_MODE,{beginKeywords:t,keywords:{literal:t}},u,{className:"number",begin:e.C_NUMBER_RE+"\\b",relevance:0},h,m,i],b=[...y];return b.pop(),b.push(s),g.contains=b,{name:"YAML",case_insensitive:!0,aliases:["yml"],contains:y}}RS.exports=Fx});var OS=p((h7,NS)=>{function Ux(e){return{name:"Test Anything Protocol",case_insensitive:!0,contains:[e.HASH_COMMENT_MODE,{className:"meta",variants:[{begin:"^TAP version (\\d+)$"},{begin:"^1\\.\\.(\\d+)$"}]},{begin:/---$/,end:"\\.\\.\\.$",subLanguage:"yaml",relevance:0},{className:"number",begin:" (\\d+) "},{className:"symbol",variants:[{begin:"^ok"},{begin:"^not ok"}]}]}}NS.exports=Ux});var kS=p((S7,IS)=>{function Bx(e){return e?typeof e=="string"?e:e.source:null}function Gx(e){return DS("(",e,")?")}function DS(...e){return e.map(a=>Bx(a)).join("")}function zx(e){let t=/[a-zA-Z_][a-zA-Z0-9_]*/,a={className:"number",variants:[e.BINARY_NUMBER_MODE,e.C_NUMBER_MODE]};return{name:"Tcl",aliases:["tk"],keywords:"after append apply array auto_execok auto_import auto_load auto_mkindex auto_mkindex_old auto_qualify auto_reset bgerror binary break catch cd chan clock close concat continue dde dict encoding eof error eval exec exit expr fblocked fconfigure fcopy file fileevent filename flush for foreach format gets glob global history http if incr info interp join lappend|10 lassign|10 lindex|10 linsert|10 list llength|10 load lrange|10 lrepeat|10 lreplace|10 lreverse|10 lsearch|10 lset|10 lsort|10 mathfunc mathop memory msgcat namespace open package parray pid pkg::create pkg_mkIndex platform platform::shell proc puts pwd read refchan regexp registry regsub|10 rename return safe scan seek set socket source split string subst switch tcl_endOfWord tcl_findLibrary tcl_startOfNextWord tcl_startOfPreviousWord tcl_wordBreakAfter tcl_wordBreakBefore tcltest tclvars tell time tm trace unknown unload unset update uplevel upvar variable vwait while",contains:[e.COMMENT(";[ \\t]*#","$"),e.COMMENT("^[ \\t]*#","$"),{beginKeywords:"proc",end:"[\\{]",excludeEnd:!0,contains:[{className:"title",begin:"[ \\t\\n\\r]+(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*",end:"[ \\t\\n\\r]",endsWithParent:!0,excludeEnd:!0}]},{className:"variable",variants:[{begin:DS(/\$/,Gx(/::/),t,"(::",t,")*")},{begin:"\\$\\{(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*",end:"\\}",contains:[a]}]},{className:"string",contains:[e.BACKSLASH_ESCAPE],variants:[e.inherit(e.QUOTE_STRING_MODE,{illegal:null})]},a]}}IS.exports=zx});var wS=p((T7,vS)=>{function Hx(e){let t="bool byte i16 i32 i64 double string binary";return{name:"Thrift",keywords:{keyword:"namespace const typedef struct enum service exception void oneway set list map required optional",built_in:t,literal:"true false"},contains:[e.QUOTE_STRING_MODE,e.NUMBER_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:"class",beginKeywords:"struct enum service exception",end:/\{/,illegal:/\n/,contains:[e.inherit(e.TITLE_MODE,{starts:{endsWithParent:!0,excludeEnd:!0}})]},{begin:"\\b(set|list|map)\\s*<",end:">",keywords:t,contains:["self"]}]}}vS.exports=Hx});var MS=p((y7,xS)=>{function Yx(e){let t={className:"number",begin:"[1-9][0-9]*",relevance:0},a={className:"symbol",begin:":[^\\]]+"},r={className:"built_in",begin:"(AR|P|PAYLOAD|PR|R|SR|RSR|LBL|VR|UALM|MESSAGE|UTOOL|UFRAME|TIMER|TIMER_OVERFLOW|JOINT_MAX_SPEED|RESUME_PROG|DIAG_REC)\\[",end:"\\]",contains:["self",t,a]},n={className:"built_in",begin:"(AI|AO|DI|DO|F|RI|RO|UI|UO|GI|GO|SI|SO)\\[",end:"\\]",contains:["self",t,e.QUOTE_STRING_MODE,a]};return{name:"TP",keywords:{keyword:"ABORT ACC ADJUST AND AP_LD BREAK CALL CNT COL CONDITION CONFIG DA DB DIV DETECT ELSE END ENDFOR ERR_NUM ERROR_PROG FINE FOR GP GUARD INC IF JMP LINEAR_MAX_SPEED LOCK MOD MONITOR OFFSET Offset OR OVERRIDE PAUSE PREG PTH RT_LD RUN SELECT SKIP Skip TA TB TO TOOL_OFFSET Tool_Offset UF UT UFRAME_NUM UTOOL_NUM UNLOCK WAIT X Y Z W P R STRLEN SUBSTR FINDSTR VOFFSET PROG ATTR MN POS",literal:"ON OFF max_speed LPOS JPOS ENABLE DISABLE START STOP RESET"},contains:[r,n,{className:"keyword",begin:"/(PROG|ATTR|MN|POS|END)\\b"},{className:"keyword",begin:"(CALL|RUN|POINT_LOGIC|LBL)\\b"},{className:"keyword",begin:"\\b(ACC|CNT|Skip|Offset|PSPD|RT_LD|AP_LD|Tool_Offset)"},{className:"number",begin:"\\d+(sec|msec|mm/sec|cm/min|inch/min|deg/sec|mm|in|cm)?\\b",relevance:0},e.COMMENT("//","[;$]"),e.COMMENT("!","[;$]"),e.COMMENT("--eg:","$"),e.QUOTE_STRING_MODE,{className:"string",begin:"'",end:"'"},e.C_NUMBER_MODE,{className:"variable",begin:"\\$[A-Za-z0-9_]+"}]}}xS.exports=Yx});var PS=p((b7,LS)=>{function qx(e){var t={className:"params",begin:"\\(",end:"\\)"},a="attribute block constant cycle date dump include max min parent random range source template_from_string",r={beginKeywords:a,keywords:{name:a},relevance:0,contains:[t]},n={begin:/\|[A-Za-z_]+:?/,keywords:"abs batch capitalize column convert_encoding date date_modify default escape filter first format inky_to_html inline_css join json_encode keys last length lower map markdown merge nl2br number_format raw reduce replace reverse round slice sort spaceless split striptags title trim upper url_encode",contains:[r]},i="apply autoescape block deprecated do embed extends filter flush for from if import include macro sandbox set use verbatim with";return i=i+" "+i.split(" ").map(function(s){return"end"+s}).join(" "),{name:"Twig",aliases:["craftcms"],case_insensitive:!0,subLanguage:"xml",contains:[e.COMMENT(/\{#/,/#\}/),{className:"template-tag",begin:/\{%/,end:/%\}/,contains:[{className:"name",begin:/\w+/,keywords:i,starts:{endsWithParent:!0,contains:[n,r],relevance:0}}]},{className:"template-variable",begin:/\{\{/,end:/\}\}/,contains:["self",n,r]}]}}LS.exports=qx});var HS=p((C7,zS)=>{var Ji="[A-Za-z$_][0-9A-Za-z$_]*",US=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends"],BS=["true","false","null","undefined","NaN","Infinity"],$x=["Intl","DataView","Number","Math","Date","String","RegExp","Object","Function","Boolean","Error","Symbol","Set","Map","WeakSet","WeakMap","Proxy","Reflect","JSON","Promise","Float64Array","Int16Array","Int32Array","Int8Array","Uint16Array","Uint32Array","Float32Array","Array","Uint8Array","Uint8ClampedArray","ArrayBuffer","BigInt64Array","BigUint64Array","BigInt"],Vx=["EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"],Kx=["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],Wx=["arguments","this","super","console","window","document","localStorage","module","global"],GS=[].concat(Kx,Wx,$x,Vx);function Qx(e){return e?typeof e=="string"?e:e.source:null}function FS(e){return Vl("(?=",e,")")}function Vl(...e){return e.map(a=>Qx(a)).join("")}function jx(e){let t=(I,{after:L})=>{let Y="</"+I[0].slice(1);return I.input.indexOf(Y,L)!==-1},a=Ji,r={begin:"<>",end:"</>"},n={begin:/<[A-Za-z0-9\\._:-]+/,end:/\/[A-Za-z0-9\\._:-]+>|\/>/,isTrulyOpeningTag:(I,L)=>{let Y=I[0].length+I.index,Z=I.input[Y];if(Z==="<"){L.ignoreMatch();return}Z===">"&&(t(I,{after:Y})||L.ignoreMatch())}},i={$pattern:Ji,keyword:US,literal:BS,built_in:GS},s="[0-9](_?[0-9])*",o=`\\.(${s})`,c="0|[1-9](_?[0-9])*|0[0-7]*[89][0-9]*",l={className:"number",variants:[{begin:`(\\b(${c})((${o})|\\.)?|(${o}))[eE][+-]?(${s})\\b`},{begin:`\\b(${c})\\b((${o})\\b|\\.)?|(${o})\\b`},{begin:"\\b(0|[1-9](_?[0-9])*)n\\b"},{begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*n?\\b"},{begin:"\\b0[bB][0-1](_?[0-1])*n?\\b"},{begin:"\\b0[oO][0-7](_?[0-7])*n?\\b"},{begin:"\\b0[0-7]+n?\\b"}],relevance:0},d={className:"subst",begin:"\\$\\{",end:"\\}",keywords:i,contains:[]},u={begin:"html`",end:"",starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,d],subLanguage:"xml"}},g={begin:"css`",end:"",starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,d],subLanguage:"css"}},h={className:"string",begin:"`",end:"`",contains:[e.BACKSLASH_ESCAPE,d]},y={className:"comment",variants:[e.COMMENT(/\/\*\*(?!\/)/,"\\*/",{relevance:0,contains:[{className:"doctag",begin:"@[A-Za-z]+",contains:[{className:"type",begin:"\\{",end:"\\}",relevance:0},{className:"variable",begin:a+"(?=\\s*(-)|$)",endsParent:!0,relevance:0},{begin:/(?=[^\n])\s/,relevance:0}]}]}),e.C_BLOCK_COMMENT_MODE,e.C_LINE_COMMENT_MODE]},b=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,u,g,h,l,e.REGEXP_MODE];d.contains=b.concat({begin:/\{/,end:/\}/,keywords:i,contains:["self"].concat(b)});let N=[].concat(y,d.contains),C=N.concat([{begin:/\(/,end:/\)/,keywords:i,contains:["self"].concat(N)}]),A={className:"params",begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:i,contains:C};return{name:"Javascript",aliases:["js","jsx","mjs","cjs"],keywords:i,exports:{PARAMS_CONTAINS:C},illegal:/#(?![$_A-z])/,contains:[e.SHEBANG({label:"shebang",binary:"node",relevance:5}),{label:"use_strict",className:"meta",relevance:10,begin:/^\s*['"]use (strict|asm)['"]/},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,u,g,h,y,l,{begin:Vl(/[{,\n]\s*/,FS(Vl(/(((\/\/.*$)|(\/\*(\*[^/]|[^*])*\*\/))\s*)*/,a+"\\s*:"))),relevance:0,contains:[{className:"attr",begin:a+FS("\\s*:"),relevance:0}]},{begin:"("+e.RE_STARTERS_RE+"|\\b(case|return|throw)\\b)\\s*",keywords:"return throw case",contains:[y,e.REGEXP_MODE,{className:"function",begin:"(\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)|"+e.UNDERSCORE_IDENT_RE+")\\s*=>",returnBegin:!0,end:"\\s*=>",contains:[{className:"params",variants:[{begin:e.UNDERSCORE_IDENT_RE,relevance:0},{className:null,begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:i,contains:C}]}]},{begin:/,/,relevance:0},{className:"",begin:/\s/,end:/\s*/,skip:!0},{variants:[{begin:r.begin,end:r.end},{begin:n.begin,"on:begin":n.isTrulyOpeningTag,end:n.end}],subLanguage:"xml",contains:[{begin:n.begin,end:n.end,skip:!0,contains:["self"]}]}],relevance:0},{className:"function",beginKeywords:"function",end:/[{;]/,excludeEnd:!0,keywords:i,contains:["self",e.inherit(e.TITLE_MODE,{begin:a}),A],illegal:/%/},{beginKeywords:"while if switch catch for"},{className:"function",begin:e.UNDERSCORE_IDENT_RE+"\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{",returnBegin:!0,contains:[A,e.inherit(e.TITLE_MODE,{begin:a})]},{variants:[{begin:"\\."+a},{begin:"\\$"+a}],relevance:0},{className:"class",beginKeywords:"class",end:/[{;=]/,excludeEnd:!0,illegal:/[:"[\]]/,contains:[{beginKeywords:"extends"},e.UNDERSCORE_TITLE_MODE]},{begin:/\b(?=constructor)/,end:/[{;]/,excludeEnd:!0,contains:[e.inherit(e.TITLE_MODE,{begin:a}),"self",A]},{begin:"(get|set)\\s+(?="+a+"\\()",end:/\{/,keywords:"get set",contains:[e.inherit(e.TITLE_MODE,{begin:a}),{begin:/\(\)/},A]},{begin:/\$[(.]/}]}}function Xx(e){let t=Ji,a={beginKeywords:"namespace",end:/\{/,excludeEnd:!0},r={beginKeywords:"interface",end:/\{/,excludeEnd:!0,keywords:"interface extends"},n={className:"meta",relevance:10,begin:/^\s*['"]use strict['"]/},i=["any","void","number","boolean","string","object","never","enum"],s=["type","namespace","typedef","interface","public","private","protected","implements","declare","abstract","readonly"],o={$pattern:Ji,keyword:US.concat(s),literal:BS,built_in:GS.concat(i)},c={className:"meta",begin:"@"+t},l=(g,h,m)=>{let y=g.contains.findIndex(b=>b.label===h);if(y===-1)throw new Error("can not find mode to replace");g.contains.splice(y,1,m)},d=jx(e);Object.assign(d.keywords,o),d.exports.PARAMS_CONTAINS.push(c),d.contains=d.contains.concat([c,a,r]),l(d,"shebang",e.SHEBANG()),l(d,"use_strict",n);let u=d.contains.find(g=>g.className==="function");return u.relevance=0,Object.assign(d,{name:"TypeScript",aliases:["ts","tsx"]}),d}zS.exports=Xx});var qS=p((R7,YS)=>{function Zx(e){return{name:"Vala",keywords:{keyword:"char uchar unichar int uint long ulong short ushort int8 int16 int32 int64 uint8 uint16 uint32 uint64 float double bool struct enum string void weak unowned owned async signal static abstract interface override virtual delegate if while do for foreach else switch case break default return try catch public private protected internal using new this get set const stdout stdin stderr var",built_in:"DBus GLib CCode Gee Object Gtk Posix",literal:"false true null"},contains:[{className:"class",beginKeywords:"class interface namespace",end:/\{/,excludeEnd:!0,illegal:"[^,:\\n\\s\\.]",contains:[e.UNDERSCORE_TITLE_MODE]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:"string",begin:'"""',end:'"""',relevance:5},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.C_NUMBER_MODE,{className:"meta",begin:"^#",end:"$",relevance:2}]}}YS.exports=Zx});var KS=p((A7,VS)=>{function $S(e){return e?typeof e=="string"?e:e.source:null}function es(...e){return e.map(a=>$S(a)).join("")}function Kl(...e){return"("+e.map(a=>$S(a)).join("|")+")"}function Jx(e){let t={className:"string",begin:/"(""|[^/n])"C\b/},a={className:"string",begin:/"/,end:/"/,illegal:/\n/,contains:[{begin:/""/}]},r=/\d{1,2}\/\d{1,2}\/\d{4}/,n=/\d{4}-\d{1,2}-\d{1,2}/,i=/(\d|1[012])(:\d+){0,2} *(AM|PM)/,s=/\d{1,2}(:\d{1,2}){1,2}/,o={className:"literal",variants:[{begin:es(/# */,Kl(n,r),/ *#/)},{begin:es(/# */,s,/ *#/)},{begin:es(/# */,i,/ *#/)},{begin:es(/# */,Kl(n,r),/ +/,Kl(i,s),/ *#/)}]},c={className:"number",relevance:0,variants:[{begin:/\b\d[\d_]*((\.[\d_]+(E[+-]?[\d_]+)?)|(E[+-]?[\d_]+))[RFD@!#]?/},{begin:/\b\d[\d_]*((U?[SIL])|[%&])?/},{begin:/&H[\dA-F_]+((U?[SIL])|[%&])?/},{begin:/&O[0-7_]+((U?[SIL])|[%&])?/},{begin:/&B[01_]+((U?[SIL])|[%&])?/}]},l={className:"label",begin:/^\w+:/},d=e.COMMENT(/'''/,/$/,{contains:[{className:"doctag",begin:/<\/?/,end:/>/}]}),u=e.COMMENT(null,/$/,{variants:[{begin:/'/},{begin:/([\t ]|^)REM(?=\s)/}]});return{name:"Visual Basic .NET",aliases:["vb"],case_insensitive:!0,classNameAliases:{label:"symbol"},keywords:{keyword:"addhandler alias aggregate ansi as async assembly auto binary by byref byval call case catch class compare const continue custom declare default delegate dim distinct do each equals else elseif end enum erase error event exit explicit finally for friend from function get global goto group handles if implements imports in inherits interface into iterator join key let lib loop me mid module mustinherit mustoverride mybase myclass namespace narrowing new next notinheritable notoverridable of off on operator option optional order overloads overridable overrides paramarray partial preserve private property protected public raiseevent readonly redim removehandler resume return select set shadows shared skip static step stop structure strict sub synclock take text then throw to try unicode until using when where while widening with withevents writeonly yield",built_in:"addressof and andalso await directcast gettype getxmlnamespace is isfalse isnot istrue like mod nameof new not or orelse trycast typeof xor cbool cbyte cchar cdate cdbl cdec cint clng cobj csbyte cshort csng cstr cuint culng cushort",type:"boolean byte char date decimal double integer long object sbyte short single string uinteger ulong ushort",literal:"true false nothing"},illegal:"//|\\{|\\}|endif|gosub|variant|wend|^\\$ ",contains:[t,a,o,c,l,d,u,{className:"meta",begin:/[\t ]*#(const|disable|else|elseif|enable|end|externalsource|if|region)\b/,end:/$/,keywords:{"meta-keyword":"const disable else elseif enable end externalsource if region then"},contains:[u]}]}}VS.exports=Jx});var jS=p((N7,QS)=>{function WS(e){return e?typeof e=="string"?e:e.source:null}function eM(...e){return e.map(a=>WS(a)).join("")}function tM(...e){return"("+e.map(a=>WS(a)).join("|")+")"}function aM(e){let t="lcase month vartype instrrev ubound setlocale getobject rgb getref string weekdayname rnd dateadd monthname now day minute isarray cbool round formatcurrency conversions csng timevalue second year space abs clng timeserial fixs len asc isempty maths dateserial atn timer isobject filter weekday datevalue ccur isdate instr datediff formatdatetime replace isnull right sgn array snumeric log cdbl hex chr lbound msgbox ucase getlocale cos cdate cbyte rtrim join hour oct typename trim strcomp int createobject loadpicture tan formatnumber mid split cint sin datepart ltrim sqr time derived eval date formatpercent exp inputbox left ascw chrw regexp cstr err".split(" "),a=["server","response","request","scriptengine","scriptenginebuildversion","scriptengineminorversion","scriptenginemajorversion"],r={begin:eM(tM(...t),"\\s*\\("),relevance:0,keywords:{built_in:t}};return{name:"VBScript",aliases:["vbs"],case_insensitive:!0,keywords:{keyword:"call class const dim do loop erase execute executeglobal exit for each next function if then else on error option explicit new private property let get public randomize redim rem select case set stop sub while wend with end to elseif is or xor and not class_initialize class_terminate default preserve in me byval byref step resume goto",built_in:a,literal:"true false null nothing empty"},illegal:"//",contains:[r,e.inherit(e.QUOTE_STRING_MODE,{contains:[{begin:'""'}]}),e.COMMENT(/'/,/$/,{relevance:0}),e.C_NUMBER_MODE]}}QS.exports=aM});var ZS=p((O7,XS)=>{function rM(e){return{name:"VBScript in HTML",subLanguage:"xml",contains:[{begin:"<%",end:"%>",subLanguage:"vbscript"}]}}XS.exports=rM});var eT=p((D7,JS)=>{function nM(e){return{name:"Verilog",aliases:["v","sv","svh"],case_insensitive:!1,keywords:{$pattern:/[\w\$]+/,keyword:"accept_on alias always always_comb always_ff always_latch and assert assign assume automatic before begin bind bins binsof bit break buf|0 bufif0 bufif1 byte case casex casez cell chandle checker class clocking cmos config const constraint context continue cover covergroup coverpoint cross deassign default defparam design disable dist do edge else end endcase endchecker endclass endclocking endconfig endfunction endgenerate endgroup endinterface endmodule endpackage endprimitive endprogram endproperty endspecify endsequence endtable endtask enum event eventually expect export extends extern final first_match for force foreach forever fork forkjoin function generate|5 genvar global highz0 highz1 if iff ifnone ignore_bins illegal_bins implements implies import incdir include initial inout input inside instance int integer interconnect interface intersect join join_any join_none large let liblist library local localparam logic longint macromodule matches medium modport module nand negedge nettype new nexttime nmos nor noshowcancelled not notif0 notif1 or output package packed parameter pmos posedge primitive priority program property protected pull0 pull1 pulldown pullup pulsestyle_ondetect pulsestyle_onevent pure rand randc randcase randsequence rcmos real realtime ref reg reject_on release repeat restrict return rnmos rpmos rtran rtranif0 rtranif1 s_always s_eventually s_nexttime s_until s_until_with scalared sequence shortint shortreal showcancelled signed small soft solve specify specparam static string strong strong0 strong1 struct super supply0 supply1 sync_accept_on sync_reject_on table tagged task this throughout time timeprecision timeunit tran tranif0 tranif1 tri tri0 tri1 triand trior trireg type typedef union unique unique0 unsigned until until_with untyped use uwire var vectored virtual void wait wait_order wand weak weak0 weak1 while wildcard wire with within wor xnor xor",literal:"null",built_in:"$finish $stop $exit $fatal $error $warning $info $realtime $time $printtimescale $bitstoreal $bitstoshortreal $itor $signed $cast $bits $stime $timeformat $realtobits $shortrealtobits $rtoi $unsigned $asserton $assertkill $assertpasson $assertfailon $assertnonvacuouson $assertoff $assertcontrol $assertpassoff $assertfailoff $assertvacuousoff $isunbounded $sampled $fell $changed $past_gclk $fell_gclk $changed_gclk $rising_gclk $steady_gclk $coverage_control $coverage_get $coverage_save $set_coverage_db_name $rose $stable $past $rose_gclk $stable_gclk $future_gclk $falling_gclk $changing_gclk $display $coverage_get_max $coverage_merge $get_coverage $load_coverage_db $typename $unpacked_dimensions $left $low $increment $clog2 $ln $log10 $exp $sqrt $pow $floor $ceil $sin $cos $tan $countbits $onehot $isunknown $fatal $warning $dimensions $right $high $size $asin $acos $atan $atan2 $hypot $sinh $cosh $tanh $asinh $acosh $atanh $countones $onehot0 $error $info $random $dist_chi_square $dist_erlang $dist_exponential $dist_normal $dist_poisson $dist_t $dist_uniform $q_initialize $q_remove $q_exam $async$and$array $async$nand$array $async$or$array $async$nor$array $sync$and$array $sync$nand$array $sync$or$array $sync$nor$array $q_add $q_full $psprintf $async$and$plane $async$nand$plane $async$or$plane $async$nor$plane $sync$and$plane $sync$nand$plane $sync$or$plane $sync$nor$plane $system $display $displayb $displayh $displayo $strobe $strobeb $strobeh $strobeo $write $readmemb $readmemh $writememh $value$plusargs $dumpvars $dumpon $dumplimit $dumpports $dumpportson $dumpportslimit $writeb $writeh $writeo $monitor $monitorb $monitorh $monitoro $writememb $dumpfile $dumpoff $dumpall $dumpflush $dumpportsoff $dumpportsall $dumpportsflush $fclose $fdisplay $fdisplayb $fdisplayh $fdisplayo $fstrobe $fstrobeb $fstrobeh $fstrobeo $swrite $swriteb $swriteh $swriteo $fscanf $fread $fseek $fflush $feof $fopen $fwrite $fwriteb $fwriteh $fwriteo $fmonitor $fmonitorb $fmonitorh $fmonitoro $sformat $sformatf $fgetc $ungetc $fgets $sscanf $rewind $ftell $ferror"},contains:[e.C_BLOCK_COMMENT_MODE,e.C_LINE_COMMENT_MODE,e.QUOTE_STRING_MODE,{className:"number",contains:[e.BACKSLASH_ESCAPE],variants:[{begin:"\\b((\\d+'(b|h|o|d|B|H|O|D))[0-9xzXZa-fA-F_]+)"},{begin:"\\B(('(b|h|o|d|B|H|O|D))[0-9xzXZa-fA-F_]+)"},{begin:"\\b([0-9_])+",relevance:0}]},{className:"variable",variants:[{begin:"#\\((?!parameter).+\\)"},{begin:"\\.\\w+",relevance:0}]},{className:"meta",begin:"`",end:"$",keywords:{"meta-keyword":"define __FILE__ __LINE__ begin_keywords celldefine default_nettype define else elsif end_keywords endcelldefine endif ifdef ifndef include line nounconnected_drive pragma resetall timescale unconnected_drive undef undefineall"},relevance:0}]}}JS.exports=nM});var aT=p((I7,tT)=>{function iM(e){let t="\\d(_|\\d)*",a="[eE][-+]?"+t,r=t+"(\\."+t+")?("+a+")?",n="\\w+",s="\\b("+(t+"#"+n+"(\\."+n+")?#("+a+")?")+"|"+r+")";return{name:"VHDL",case_insensitive:!0,keywords:{keyword:"abs access after alias all and architecture array assert assume assume_guarantee attribute begin block body buffer bus case component configuration constant context cover disconnect downto default else elsif end entity exit fairness file for force function generate generic group guarded if impure in inertial inout is label library linkage literal loop map mod nand new next nor not null of on open or others out package parameter port postponed procedure process property protected pure range record register reject release rem report restrict restrict_guarantee return rol ror select sequence severity shared signal sla sll sra srl strong subtype then to transport type unaffected units until use variable view vmode vprop vunit wait when while with xnor xor",built_in:"boolean bit character integer time delay_length natural positive string bit_vector file_open_kind file_open_status std_logic std_logic_vector unsigned signed boolean_vector integer_vector std_ulogic std_ulogic_vector unresolved_unsigned u_unsigned unresolved_signed u_signed real_vector time_vector",literal:"false true note warning error failure line text side width"},illegal:/\{/,contains:[e.C_BLOCK_COMMENT_MODE,e.COMMENT("--","$"),e.QUOTE_STRING_MODE,{className:"number",begin:s,relevance:0},{className:"string",begin:"'(U|X|0|1|Z|W|L|H|-)'",contains:[e.BACKSLASH_ESCAPE]},{className:"symbol",begin:"'[A-Za-z](_?[A-Za-z0-9])*",contains:[e.BACKSLASH_ESCAPE]}]}}tT.exports=iM});var nT=p((k7,rT)=>{function sM(e){return{name:"Vim Script",keywords:{$pattern:/[!#@\w]+/,keyword:"N|0 P|0 X|0 a|0 ab abc abo al am an|0 ar arga argd arge argdo argg argl argu as au aug aun b|0 bN ba bad bd be bel bf bl bm bn bo bp br brea breaka breakd breakl bro bufdo buffers bun bw c|0 cN cNf ca cabc caddb cad caddf cal cat cb cc ccl cd ce cex cf cfir cgetb cgete cg changes chd che checkt cl cla clo cm cmapc cme cn cnew cnf cno cnorea cnoreme co col colo com comc comp con conf cope cp cpf cq cr cs cst cu cuna cunme cw delm deb debugg delc delf dif diffg diffo diffp diffpu diffs diffthis dig di dl dell dj dli do doautoa dp dr ds dsp e|0 ea ec echoe echoh echom echon el elsei em en endfo endf endt endw ene ex exe exi exu f|0 files filet fin fina fini fir fix fo foldc foldd folddoc foldo for fu go gr grepa gu gv ha helpf helpg helpt hi hid his ia iabc if ij il im imapc ime ino inorea inoreme int is isp iu iuna iunme j|0 ju k|0 keepa kee keepj lN lNf l|0 lad laddb laddf la lan lat lb lc lch lcl lcs le lefta let lex lf lfir lgetb lgete lg lgr lgrepa lh ll lla lli lmak lm lmapc lne lnew lnf ln loadk lo loc lockv lol lope lp lpf lr ls lt lu lua luad luaf lv lvimgrepa lw m|0 ma mak map mapc marks mat me menut mes mk mks mksp mkv mkvie mod mz mzf nbc nb nbs new nm nmapc nme nn nnoreme noa no noh norea noreme norm nu nun nunme ol o|0 om omapc ome on ono onoreme opt ou ounme ow p|0 profd prof pro promptr pc ped pe perld po popu pp pre prev ps pt ptN ptf ptj ptl ptn ptp ptr pts pu pw py3 python3 py3d py3f py pyd pyf quita qa rec red redi redr redraws reg res ret retu rew ri rightb rub rubyd rubyf rund ru rv sN san sa sal sav sb sbN sba sbf sbl sbm sbn sbp sbr scrip scripte scs se setf setg setl sf sfir sh sim sig sil sl sla sm smap smapc sme sn sni sno snor snoreme sor so spelld spe spelli spellr spellu spellw sp spr sre st sta startg startr star stopi stj sts sun sunm sunme sus sv sw sy synti sync tN tabN tabc tabdo tabe tabf tabfir tabl tabm tabnew tabn tabo tabp tabr tabs tab ta tags tc tcld tclf te tf th tj tl tm tn to tp tr try ts tu u|0 undoj undol una unh unl unlo unm unme uns up ve verb vert vim vimgrepa vi viu vie vm vmapc vme vne vn vnoreme vs vu vunme windo w|0 wN wa wh wi winc winp wn wp wq wqa ws wu wv x|0 xa xmapc xm xme xn xnoreme xu xunme y|0 z|0 ~ Next Print append abbreviate abclear aboveleft all amenu anoremenu args argadd argdelete argedit argglobal arglocal argument ascii autocmd augroup aunmenu buffer bNext ball badd bdelete behave belowright bfirst blast bmodified bnext botright bprevious brewind break breakadd breakdel breaklist browse bunload bwipeout change cNext cNfile cabbrev cabclear caddbuffer caddexpr caddfile call catch cbuffer cclose center cexpr cfile cfirst cgetbuffer cgetexpr cgetfile chdir checkpath checktime clist clast close cmap cmapclear cmenu cnext cnewer cnfile cnoremap cnoreabbrev cnoremenu copy colder colorscheme command comclear compiler continue confirm copen cprevious cpfile cquit crewind cscope cstag cunmap cunabbrev cunmenu cwindow delete delmarks debug debuggreedy delcommand delfunction diffupdate diffget diffoff diffpatch diffput diffsplit digraphs display deletel djump dlist doautocmd doautoall deletep drop dsearch dsplit edit earlier echo echoerr echohl echomsg else elseif emenu endif endfor endfunction endtry endwhile enew execute exit exusage file filetype find finally finish first fixdel fold foldclose folddoopen folddoclosed foldopen function global goto grep grepadd gui gvim hardcopy help helpfind helpgrep helptags highlight hide history insert iabbrev iabclear ijump ilist imap imapclear imenu inoremap inoreabbrev inoremenu intro isearch isplit iunmap iunabbrev iunmenu join jumps keepalt keepmarks keepjumps lNext lNfile list laddexpr laddbuffer laddfile last language later lbuffer lcd lchdir lclose lcscope left leftabove lexpr lfile lfirst lgetbuffer lgetexpr lgetfile lgrep lgrepadd lhelpgrep llast llist lmake lmap lmapclear lnext lnewer lnfile lnoremap loadkeymap loadview lockmarks lockvar lolder lopen lprevious lpfile lrewind ltag lunmap luado luafile lvimgrep lvimgrepadd lwindow move mark make mapclear match menu menutranslate messages mkexrc mksession mkspell mkvimrc mkview mode mzscheme mzfile nbclose nbkey nbsart next nmap nmapclear nmenu nnoremap nnoremenu noautocmd noremap nohlsearch noreabbrev noremenu normal number nunmap nunmenu oldfiles open omap omapclear omenu only onoremap onoremenu options ounmap ounmenu ownsyntax print profdel profile promptfind promptrepl pclose pedit perl perldo pop popup ppop preserve previous psearch ptag ptNext ptfirst ptjump ptlast ptnext ptprevious ptrewind ptselect put pwd py3do py3file python pydo pyfile quit quitall qall read recover redo redir redraw redrawstatus registers resize retab return rewind right rightbelow ruby rubydo rubyfile rundo runtime rviminfo substitute sNext sandbox sargument sall saveas sbuffer sbNext sball sbfirst sblast sbmodified sbnext sbprevious sbrewind scriptnames scriptencoding scscope set setfiletype setglobal setlocal sfind sfirst shell simalt sign silent sleep slast smagic smapclear smenu snext sniff snomagic snoremap snoremenu sort source spelldump spellgood spellinfo spellrepall spellundo spellwrong split sprevious srewind stop stag startgreplace startreplace startinsert stopinsert stjump stselect sunhide sunmap sunmenu suspend sview swapname syntax syntime syncbind tNext tabNext tabclose tabedit tabfind tabfirst tablast tabmove tabnext tabonly tabprevious tabrewind tag tcl tcldo tclfile tearoff tfirst throw tjump tlast tmenu tnext topleft tprevious trewind tselect tunmenu undo undojoin undolist unabbreviate unhide unlet unlockvar unmap unmenu unsilent update vglobal version verbose vertical vimgrep vimgrepadd visual viusage view vmap vmapclear vmenu vnew vnoremap vnoremenu vsplit vunmap vunmenu write wNext wall while winsize wincmd winpos wnext wprevious wqall wsverb wundo wviminfo xit xall xmapclear xmap xmenu xnoremap xnoremenu xunmap xunmenu yank",built_in:"synIDtrans atan2 range matcharg did_filetype asin feedkeys xor argv complete_check add getwinposx getqflist getwinposy screencol clearmatches empty extend getcmdpos mzeval garbagecollect setreg ceil sqrt diff_hlID inputsecret get getfperm getpid filewritable shiftwidth max sinh isdirectory synID system inputrestore winline atan visualmode inputlist tabpagewinnr round getregtype mapcheck hasmapto histdel argidx findfile sha256 exists toupper getcmdline taglist string getmatches bufnr strftime winwidth bufexists strtrans tabpagebuflist setcmdpos remote_read printf setloclist getpos getline bufwinnr float2nr len getcmdtype diff_filler luaeval resolve libcallnr foldclosedend reverse filter has_key bufname str2float strlen setline getcharmod setbufvar index searchpos shellescape undofile foldclosed setqflist buflisted strchars str2nr virtcol floor remove undotree remote_expr winheight gettabwinvar reltime cursor tabpagenr finddir localtime acos getloclist search tanh matchend rename gettabvar strdisplaywidth type abs py3eval setwinvar tolower wildmenumode log10 spellsuggest bufloaded synconcealed nextnonblank server2client complete settabwinvar executable input wincol setmatches getftype hlID inputsave searchpair or screenrow line settabvar histadd deepcopy strpart remote_peek and eval getftime submatch screenchar winsaveview matchadd mkdir screenattr getfontname libcall reltimestr getfsize winnr invert pow getbufline byte2line soundfold repeat fnameescape tagfiles sin strwidth spellbadword trunc maparg log lispindent hostname setpos globpath remote_foreground getchar synIDattr fnamemodify cscope_connection stridx winbufnr indent min complete_add nr2char searchpairpos inputdialog values matchlist items hlexists strridx browsedir expand fmod pathshorten line2byte argc count getwinvar glob foldtextresult getreg foreground cosh matchdelete has char2nr simplify histget searchdecl iconv winrestcmd pumvisible writefile foldlevel haslocaldir keys cos matchstr foldtext histnr tan tempname getcwd byteidx getbufvar islocked escape eventhandler remote_send serverlist winrestview synstack pyeval prevnonblank readfile cindent filereadable changenr exp"},illegal:/;/,contains:[e.NUMBER_MODE,{className:"string",begin:"'",end:"'",illegal:"\\n"},{className:"string",begin:/"(\\"|\n\\|[^"\n])*"/},e.COMMENT('"',"$"),{className:"variable",begin:/[bwtglsav]:[\w\d_]*/},{className:"function",beginKeywords:"function function!",end:"$",relevance:0,contains:[e.TITLE_MODE,{className:"params",begin:"\\(",end:"\\)"}]},{className:"symbol",begin:/<[\w-]+>/}]}}rT.exports=sM});var sT=p((v7,iT)=>{function oM(e){return{name:"Intel x86 Assembly",case_insensitive:!0,keywords:{$pattern:"[.%]?"+e.IDENT_RE,keyword:"lock rep repe repz repne repnz xaquire xrelease bnd nobnd aaa aad aam aas adc add and arpl bb0_reset bb1_reset bound bsf bsr bswap bt btc btr bts call cbw cdq cdqe clc cld cli clts cmc cmp cmpsb cmpsd cmpsq cmpsw cmpxchg cmpxchg486 cmpxchg8b cmpxchg16b cpuid cpu_read cpu_write cqo cwd cwde daa das dec div dmint emms enter equ f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp femms feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisttp fisub fisubr fld fld1 fldcw fldenv fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnstcw fnstenv fnstsw fpatan fprem fprem1 fptan frndint frstor fsave fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomi fucomip fucomp fucompp fxam fxch fxtract fyl2x fyl2xp1 hlt ibts icebp idiv imul in inc incbin insb insd insw int int01 int1 int03 int3 into invd invpcid invlpg invlpga iret iretd iretq iretw jcxz jecxz jrcxz jmp jmpe lahf lar lds lea leave les lfence lfs lgdt lgs lidt lldt lmsw loadall loadall286 lodsb lodsd lodsq lodsw loop loope loopne loopnz loopz lsl lss ltr mfence monitor mov movd movq movsb movsd movsq movsw movsx movsxd movzx mul mwait neg nop not or out outsb outsd outsw packssdw packsswb packuswb paddb paddd paddsb paddsiw paddsw paddusb paddusw paddw pand pandn pause paveb pavgusb pcmpeqb pcmpeqd pcmpeqw pcmpgtb pcmpgtd pcmpgtw pdistib pf2id pfacc pfadd pfcmpeq pfcmpge pfcmpgt pfmax pfmin pfmul pfrcp pfrcpit1 pfrcpit2 pfrsqit1 pfrsqrt pfsub pfsubr pi2fd pmachriw pmaddwd pmagw pmulhriw pmulhrwa pmulhrwc pmulhw pmullw pmvgezb pmvlzb pmvnzb pmvzb pop popa popad popaw popf popfd popfq popfw por prefetch prefetchw pslld psllq psllw psrad psraw psrld psrlq psrlw psubb psubd psubsb psubsiw psubsw psubusb psubusw psubw punpckhbw punpckhdq punpckhwd punpcklbw punpckldq punpcklwd push pusha pushad pushaw pushf pushfd pushfq pushfw pxor rcl rcr rdshr rdmsr rdpmc rdtsc rdtscp ret retf retn rol ror rdm rsdc rsldt rsm rsts sahf sal salc sar sbb scasb scasd scasq scasw sfence sgdt shl shld shr shrd sidt sldt skinit smi smint smintold smsw stc std sti stosb stosd stosq stosw str sub svdc svldt svts swapgs syscall sysenter sysexit sysret test ud0 ud1 ud2b ud2 ud2a umov verr verw fwait wbinvd wrshr wrmsr xadd xbts xchg xlatb xlat xor cmove cmovz cmovne cmovnz cmova cmovnbe cmovae cmovnb cmovb cmovnae cmovbe cmovna cmovg cmovnle cmovge cmovnl cmovl cmovnge cmovle cmovng cmovc cmovnc cmovo cmovno cmovs cmovns cmovp cmovpe cmovnp cmovpo je jz jne jnz ja jnbe jae jnb jb jnae jbe jna jg jnle jge jnl jl jnge jle jng jc jnc jo jno js jns jpo jnp jpe jp sete setz setne setnz seta setnbe setae setnb setnc setb setnae setcset setbe setna setg setnle setge setnl setl setnge setle setng sets setns seto setno setpe setp setpo setnp addps addss andnps andps cmpeqps cmpeqss cmpleps cmpless cmpltps cmpltss cmpneqps cmpneqss cmpnleps cmpnless cmpnltps cmpnltss cmpordps cmpordss cmpunordps cmpunordss cmpps cmpss comiss cvtpi2ps cvtps2pi cvtsi2ss cvtss2si cvttps2pi cvttss2si divps divss ldmxcsr maxps maxss minps minss movaps movhps movlhps movlps movhlps movmskps movntps movss movups mulps mulss orps rcpps rcpss rsqrtps rsqrtss shufps sqrtps sqrtss stmxcsr subps subss ucomiss unpckhps unpcklps xorps fxrstor fxrstor64 fxsave fxsave64 xgetbv xsetbv xsave xsave64 xsaveopt xsaveopt64 xrstor xrstor64 prefetchnta prefetcht0 prefetcht1 prefetcht2 maskmovq movntq pavgb pavgw pextrw pinsrw pmaxsw pmaxub pminsw pminub pmovmskb pmulhuw psadbw pshufw pf2iw pfnacc pfpnacc pi2fw pswapd maskmovdqu clflush movntdq movnti movntpd movdqa movdqu movdq2q movq2dq paddq pmuludq pshufd pshufhw pshuflw pslldq psrldq psubq punpckhqdq punpcklqdq addpd addsd andnpd andpd cmpeqpd cmpeqsd cmplepd cmplesd cmpltpd cmpltsd cmpneqpd cmpneqsd cmpnlepd cmpnlesd cmpnltpd cmpnltsd cmpordpd cmpordsd cmpunordpd cmpunordsd cmppd comisd cvtdq2pd cvtdq2ps cvtpd2dq cvtpd2pi cvtpd2ps cvtpi2pd cvtps2dq cvtps2pd cvtsd2si cvtsd2ss cvtsi2sd cvtss2sd cvttpd2pi cvttpd2dq cvttps2dq cvttsd2si divpd divsd maxpd maxsd minpd minsd movapd movhpd movlpd movmskpd movupd mulpd mulsd orpd shufpd sqrtpd sqrtsd subpd subsd ucomisd unpckhpd unpcklpd xorpd addsubpd addsubps haddpd haddps hsubpd hsubps lddqu movddup movshdup movsldup clgi stgi vmcall vmclear vmfunc vmlaunch vmload vmmcall vmptrld vmptrst vmread vmresume vmrun vmsave vmwrite vmxoff vmxon invept invvpid pabsb pabsw pabsd palignr phaddw phaddd phaddsw phsubw phsubd phsubsw pmaddubsw pmulhrsw pshufb psignb psignw psignd extrq insertq movntsd movntss lzcnt blendpd blendps blendvpd blendvps dppd dpps extractps insertps movntdqa mpsadbw packusdw pblendvb pblendw pcmpeqq pextrb pextrd pextrq phminposuw pinsrb pinsrd pinsrq pmaxsb pmaxsd pmaxud pmaxuw pminsb pminsd pminud pminuw pmovsxbw pmovsxbd pmovsxbq pmovsxwd pmovsxwq pmovsxdq pmovzxbw pmovzxbd pmovzxbq pmovzxwd pmovzxwq pmovzxdq pmuldq pmulld ptest roundpd roundps roundsd roundss crc32 pcmpestri pcmpestrm pcmpistri pcmpistrm pcmpgtq popcnt getsec pfrcpv pfrsqrtv movbe aesenc aesenclast aesdec aesdeclast aesimc aeskeygenassist vaesenc vaesenclast vaesdec vaesdeclast vaesimc vaeskeygenassist vaddpd vaddps vaddsd vaddss vaddsubpd vaddsubps vandpd vandps vandnpd vandnps vblendpd vblendps vblendvpd vblendvps vbroadcastss vbroadcastsd vbroadcastf128 vcmpeq_ospd vcmpeqpd vcmplt_ospd vcmpltpd vcmple_ospd vcmplepd vcmpunord_qpd vcmpunordpd vcmpneq_uqpd vcmpneqpd vcmpnlt_uspd vcmpnltpd vcmpnle_uspd vcmpnlepd vcmpord_qpd vcmpordpd vcmpeq_uqpd vcmpnge_uspd vcmpngepd vcmpngt_uspd vcmpngtpd vcmpfalse_oqpd vcmpfalsepd vcmpneq_oqpd vcmpge_ospd vcmpgepd vcmpgt_ospd vcmpgtpd vcmptrue_uqpd vcmptruepd vcmplt_oqpd vcmple_oqpd vcmpunord_spd vcmpneq_uspd vcmpnlt_uqpd vcmpnle_uqpd vcmpord_spd vcmpeq_uspd vcmpnge_uqpd vcmpngt_uqpd vcmpfalse_ospd vcmpneq_ospd vcmpge_oqpd vcmpgt_oqpd vcmptrue_uspd vcmppd vcmpeq_osps vcmpeqps vcmplt_osps vcmpltps vcmple_osps vcmpleps vcmpunord_qps vcmpunordps vcmpneq_uqps vcmpneqps vcmpnlt_usps vcmpnltps vcmpnle_usps vcmpnleps vcmpord_qps vcmpordps vcmpeq_uqps vcmpnge_usps vcmpngeps vcmpngt_usps vcmpngtps vcmpfalse_oqps vcmpfalseps vcmpneq_oqps vcmpge_osps vcmpgeps vcmpgt_osps vcmpgtps vcmptrue_uqps vcmptrueps vcmplt_oqps vcmple_oqps vcmpunord_sps vcmpneq_usps vcmpnlt_uqps vcmpnle_uqps vcmpord_sps vcmpeq_usps vcmpnge_uqps vcmpngt_uqps vcmpfalse_osps vcmpneq_osps vcmpge_oqps vcmpgt_oqps vcmptrue_usps vcmpps vcmpeq_ossd vcmpeqsd vcmplt_ossd vcmpltsd vcmple_ossd vcmplesd vcmpunord_qsd vcmpunordsd vcmpneq_uqsd vcmpneqsd vcmpnlt_ussd vcmpnltsd vcmpnle_ussd vcmpnlesd vcmpord_qsd vcmpordsd vcmpeq_uqsd vcmpnge_ussd vcmpngesd vcmpngt_ussd vcmpngtsd vcmpfalse_oqsd vcmpfalsesd vcmpneq_oqsd vcmpge_ossd vcmpgesd vcmpgt_ossd vcmpgtsd vcmptrue_uqsd vcmptruesd vcmplt_oqsd vcmple_oqsd vcmpunord_ssd vcmpneq_ussd vcmpnlt_uqsd vcmpnle_uqsd vcmpord_ssd vcmpeq_ussd vcmpnge_uqsd vcmpngt_uqsd vcmpfalse_ossd vcmpneq_ossd vcmpge_oqsd vcmpgt_oqsd vcmptrue_ussd vcmpsd vcmpeq_osss vcmpeqss vcmplt_osss vcmpltss vcmple_osss vcmpless vcmpunord_qss vcmpunordss vcmpneq_uqss vcmpneqss vcmpnlt_usss vcmpnltss vcmpnle_usss vcmpnless vcmpord_qss vcmpordss vcmpeq_uqss vcmpnge_usss vcmpngess vcmpngt_usss vcmpngtss vcmpfalse_oqss vcmpfalsess vcmpneq_oqss vcmpge_osss vcmpgess vcmpgt_osss vcmpgtss vcmptrue_uqss vcmptruess vcmplt_oqss vcmple_oqss vcmpunord_sss vcmpneq_usss vcmpnlt_uqss vcmpnle_uqss vcmpord_sss vcmpeq_usss vcmpnge_uqss vcmpngt_uqss vcmpfalse_osss vcmpneq_osss vcmpge_oqss vcmpgt_oqss vcmptrue_usss vcmpss vcomisd vcomiss vcvtdq2pd vcvtdq2ps vcvtpd2dq vcvtpd2ps vcvtps2dq vcvtps2pd vcvtsd2si vcvtsd2ss vcvtsi2sd vcvtsi2ss vcvtss2sd vcvtss2si vcvttpd2dq vcvttps2dq vcvttsd2si vcvttss2si vdivpd vdivps vdivsd vdivss vdppd vdpps vextractf128 vextractps vhaddpd vhaddps vhsubpd vhsubps vinsertf128 vinsertps vlddqu vldqqu vldmxcsr vmaskmovdqu vmaskmovps vmaskmovpd vmaxpd vmaxps vmaxsd vmaxss vminpd vminps vminsd vminss vmovapd vmovaps vmovd vmovq vmovddup vmovdqa vmovqqa vmovdqu vmovqqu vmovhlps vmovhpd vmovhps vmovlhps vmovlpd vmovlps vmovmskpd vmovmskps vmovntdq vmovntqq vmovntdqa vmovntpd vmovntps vmovsd vmovshdup vmovsldup vmovss vmovupd vmovups vmpsadbw vmulpd vmulps vmulsd vmulss vorpd vorps vpabsb vpabsw vpabsd vpacksswb vpackssdw vpackuswb vpackusdw vpaddb vpaddw vpaddd vpaddq vpaddsb vpaddsw vpaddusb vpaddusw vpalignr vpand vpandn vpavgb vpavgw vpblendvb vpblendw vpcmpestri vpcmpestrm vpcmpistri vpcmpistrm vpcmpeqb vpcmpeqw vpcmpeqd vpcmpeqq vpcmpgtb vpcmpgtw vpcmpgtd vpcmpgtq vpermilpd vpermilps vperm2f128 vpextrb vpextrw vpextrd vpextrq vphaddw vphaddd vphaddsw vphminposuw vphsubw vphsubd vphsubsw vpinsrb vpinsrw vpinsrd vpinsrq vpmaddwd vpmaddubsw vpmaxsb vpmaxsw vpmaxsd vpmaxub vpmaxuw vpmaxud vpminsb vpminsw vpminsd vpminub vpminuw vpminud vpmovmskb vpmovsxbw vpmovsxbd vpmovsxbq vpmovsxwd vpmovsxwq vpmovsxdq vpmovzxbw vpmovzxbd vpmovzxbq vpmovzxwd vpmovzxwq vpmovzxdq vpmulhuw vpmulhrsw vpmulhw vpmullw vpmulld vpmuludq vpmuldq vpor vpsadbw vpshufb vpshufd vpshufhw vpshuflw vpsignb vpsignw vpsignd vpslldq vpsrldq vpsllw vpslld vpsllq vpsraw vpsrad vpsrlw vpsrld vpsrlq vptest vpsubb vpsubw vpsubd vpsubq vpsubsb vpsubsw vpsubusb vpsubusw vpunpckhbw vpunpckhwd vpunpckhdq vpunpckhqdq vpunpcklbw vpunpcklwd vpunpckldq vpunpcklqdq vpxor vrcpps vrcpss vrsqrtps vrsqrtss vroundpd vroundps vroundsd vroundss vshufpd vshufps vsqrtpd vsqrtps vsqrtsd vsqrtss vstmxcsr vsubpd vsubps vsubsd vsubss vtestps vtestpd vucomisd vucomiss vunpckhpd vunpckhps vunpcklpd vunpcklps vxorpd vxorps vzeroall vzeroupper pclmullqlqdq pclmulhqlqdq pclmullqhqdq pclmulhqhqdq pclmulqdq vpclmullqlqdq vpclmulhqlqdq vpclmullqhqdq vpclmulhqhqdq vpclmulqdq vfmadd132ps vfmadd132pd vfmadd312ps vfmadd312pd vfmadd213ps vfmadd213pd vfmadd123ps vfmadd123pd vfmadd231ps vfmadd231pd vfmadd321ps vfmadd321pd vfmaddsub132ps vfmaddsub132pd vfmaddsub312ps vfmaddsub312pd vfmaddsub213ps vfmaddsub213pd vfmaddsub123ps vfmaddsub123pd vfmaddsub231ps vfmaddsub231pd vfmaddsub321ps vfmaddsub321pd vfmsub132ps vfmsub132pd vfmsub312ps vfmsub312pd vfmsub213ps vfmsub213pd vfmsub123ps vfmsub123pd vfmsub231ps vfmsub231pd vfmsub321ps vfmsub321pd vfmsubadd132ps vfmsubadd132pd vfmsubadd312ps vfmsubadd312pd vfmsubadd213ps vfmsubadd213pd vfmsubadd123ps vfmsubadd123pd vfmsubadd231ps vfmsubadd231pd vfmsubadd321ps vfmsubadd321pd vfnmadd132ps vfnmadd132pd vfnmadd312ps vfnmadd312pd vfnmadd213ps vfnmadd213pd vfnmadd123ps vfnmadd123pd vfnmadd231ps vfnmadd231pd vfnmadd321ps vfnmadd321pd vfnmsub132ps vfnmsub132pd vfnmsub312ps vfnmsub312pd vfnmsub213ps vfnmsub213pd vfnmsub123ps vfnmsub123pd vfnmsub231ps vfnmsub231pd vfnmsub321ps vfnmsub321pd vfmadd132ss vfmadd132sd vfmadd312ss vfmadd312sd vfmadd213ss vfmadd213sd vfmadd123ss vfmadd123sd vfmadd231ss vfmadd231sd vfmadd321ss vfmadd321sd vfmsub132ss vfmsub132sd vfmsub312ss vfmsub312sd vfmsub213ss vfmsub213sd vfmsub123ss vfmsub123sd vfmsub231ss vfmsub231sd vfmsub321ss vfmsub321sd vfnmadd132ss vfnmadd132sd vfnmadd312ss vfnmadd312sd vfnmadd213ss vfnmadd213sd vfnmadd123ss vfnmadd123sd vfnmadd231ss vfnmadd231sd vfnmadd321ss vfnmadd321sd vfnmsub132ss vfnmsub132sd vfnmsub312ss vfnmsub312sd vfnmsub213ss vfnmsub213sd vfnmsub123ss vfnmsub123sd vfnmsub231ss vfnmsub231sd vfnmsub321ss vfnmsub321sd rdfsbase rdgsbase rdrand wrfsbase wrgsbase vcvtph2ps vcvtps2ph adcx adox rdseed clac stac xstore xcryptecb xcryptcbc xcryptctr xcryptcfb xcryptofb montmul xsha1 xsha256 llwpcb slwpcb lwpval lwpins vfmaddpd vfmaddps vfmaddsd vfmaddss vfmaddsubpd vfmaddsubps vfmsubaddpd vfmsubaddps vfmsubpd vfmsubps vfmsubsd vfmsubss vfnmaddpd vfnmaddps vfnmaddsd vfnmaddss vfnmsubpd vfnmsubps vfnmsubsd vfnmsubss vfrczpd vfrczps vfrczsd vfrczss vpcmov vpcomb vpcomd vpcomq vpcomub vpcomud vpcomuq vpcomuw vpcomw vphaddbd vphaddbq vphaddbw vphadddq vphaddubd vphaddubq vphaddubw vphaddudq vphadduwd vphadduwq vphaddwd vphaddwq vphsubbw vphsubdq vphsubwd vpmacsdd vpmacsdqh vpmacsdql vpmacssdd vpmacssdqh vpmacssdql vpmacsswd vpmacssww vpmacswd vpmacsww vpmadcsswd vpmadcswd vpperm vprotb vprotd vprotq vprotw vpshab vpshad vpshaq vpshaw vpshlb vpshld vpshlq vpshlw vbroadcasti128 vpblendd vpbroadcastb vpbroadcastw vpbroadcastd vpbroadcastq vpermd vpermpd vpermps vpermq vperm2i128 vextracti128 vinserti128 vpmaskmovd vpmaskmovq vpsllvd vpsllvq vpsravd vpsrlvd vpsrlvq vgatherdpd vgatherqpd vgatherdps vgatherqps vpgatherdd vpgatherqd vpgatherdq vpgatherqq xabort xbegin xend xtest andn bextr blci blcic blsi blsic blcfill blsfill blcmsk blsmsk blsr blcs bzhi mulx pdep pext rorx sarx shlx shrx tzcnt tzmsk t1mskc valignd valignq vblendmpd vblendmps vbroadcastf32x4 vbroadcastf64x4 vbroadcasti32x4 vbroadcasti64x4 vcompresspd vcompressps vcvtpd2udq vcvtps2udq vcvtsd2usi vcvtss2usi vcvttpd2udq vcvttps2udq vcvttsd2usi vcvttss2usi vcvtudq2pd vcvtudq2ps vcvtusi2sd vcvtusi2ss vexpandpd vexpandps vextractf32x4 vextractf64x4 vextracti32x4 vextracti64x4 vfixupimmpd vfixupimmps vfixupimmsd vfixupimmss vgetexppd vgetexpps vgetexpsd vgetexpss vgetmantpd vgetmantps vgetmantsd vgetmantss vinsertf32x4 vinsertf64x4 vinserti32x4 vinserti64x4 vmovdqa32 vmovdqa64 vmovdqu32 vmovdqu64 vpabsq vpandd vpandnd vpandnq vpandq vpblendmd vpblendmq vpcmpltd vpcmpled vpcmpneqd vpcmpnltd vpcmpnled vpcmpd vpcmpltq vpcmpleq vpcmpneqq vpcmpnltq vpcmpnleq vpcmpq vpcmpequd vpcmpltud vpcmpleud vpcmpnequd vpcmpnltud vpcmpnleud vpcmpud vpcmpequq vpcmpltuq vpcmpleuq vpcmpnequq vpcmpnltuq vpcmpnleuq vpcmpuq vpcompressd vpcompressq vpermi2d vpermi2pd vpermi2ps vpermi2q vpermt2d vpermt2pd vpermt2ps vpermt2q vpexpandd vpexpandq vpmaxsq vpmaxuq vpminsq vpminuq vpmovdb vpmovdw vpmovqb vpmovqd vpmovqw vpmovsdb vpmovsdw vpmovsqb vpmovsqd vpmovsqw vpmovusdb vpmovusdw vpmovusqb vpmovusqd vpmovusqw vpord vporq vprold vprolq vprolvd vprolvq vprord vprorq vprorvd vprorvq vpscatterdd vpscatterdq vpscatterqd vpscatterqq vpsraq vpsravq vpternlogd vpternlogq vptestmd vptestmq vptestnmd vptestnmq vpxord vpxorq vrcp14pd vrcp14ps vrcp14sd vrcp14ss vrndscalepd vrndscaleps vrndscalesd vrndscaless vrsqrt14pd vrsqrt14ps vrsqrt14sd vrsqrt14ss vscalefpd vscalefps vscalefsd vscalefss vscatterdpd vscatterdps vscatterqpd vscatterqps vshuff32x4 vshuff64x2 vshufi32x4 vshufi64x2 kandnw kandw kmovw knotw kortestw korw kshiftlw kshiftrw kunpckbw kxnorw kxorw vpbroadcastmb2q vpbroadcastmw2d vpconflictd vpconflictq vplzcntd vplzcntq vexp2pd vexp2ps vrcp28pd vrcp28ps vrcp28sd vrcp28ss vrsqrt28pd vrsqrt28ps vrsqrt28sd vrsqrt28ss vgatherpf0dpd vgatherpf0dps vgatherpf0qpd vgatherpf0qps vgatherpf1dpd vgatherpf1dps vgatherpf1qpd vgatherpf1qps vscatterpf0dpd vscatterpf0dps vscatterpf0qpd vscatterpf0qps vscatterpf1dpd vscatterpf1dps vscatterpf1qpd vscatterpf1qps prefetchwt1 bndmk bndcl bndcu bndcn bndmov bndldx bndstx sha1rnds4 sha1nexte sha1msg1 sha1msg2 sha256rnds2 sha256msg1 sha256msg2 hint_nop0 hint_nop1 hint_nop2 hint_nop3 hint_nop4 hint_nop5 hint_nop6 hint_nop7 hint_nop8 hint_nop9 hint_nop10 hint_nop11 hint_nop12 hint_nop13 hint_nop14 hint_nop15 hint_nop16 hint_nop17 hint_nop18 hint_nop19 hint_nop20 hint_nop21 hint_nop22 hint_nop23 hint_nop24 hint_nop25 hint_nop26 hint_nop27 hint_nop28 hint_nop29 hint_nop30 hint_nop31 hint_nop32 hint_nop33 hint_nop34 hint_nop35 hint_nop36 hint_nop37 hint_nop38 hint_nop39 hint_nop40 hint_nop41 hint_nop42 hint_nop43 hint_nop44 hint_nop45 hint_nop46 hint_nop47 hint_nop48 hint_nop49 hint_nop50 hint_nop51 hint_nop52 hint_nop53 hint_nop54 hint_nop55 hint_nop56 hint_nop57 hint_nop58 hint_nop59 hint_nop60 hint_nop61 hint_nop62 hint_nop63",built_in:"ip eip rip al ah bl bh cl ch dl dh sil dil bpl spl r8b r9b r10b r11b r12b r13b r14b r15b ax bx cx dx si di bp sp r8w r9w r10w r11w r12w r13w r14w r15w eax ebx ecx edx esi edi ebp esp eip r8d r9d r10d r11d r12d r13d r14d r15d rax rbx rcx rdx rsi rdi rbp rsp r8 r9 r10 r11 r12 r13 r14 r15 cs ds es fs gs ss st st0 st1 st2 st3 st4 st5 st6 st7 mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7 xmm8 xmm9 xmm10 xmm11 xmm12 xmm13 xmm14 xmm15 xmm16 xmm17 xmm18 xmm19 xmm20 xmm21 xmm22 xmm23 xmm24 xmm25 xmm26 xmm27 xmm28 xmm29 xmm30 xmm31 ymm0 ymm1 ymm2 ymm3 ymm4 ymm5 ymm6 ymm7 ymm8 ymm9 ymm10 ymm11 ymm12 ymm13 ymm14 ymm15 ymm16 ymm17 ymm18 ymm19 ymm20 ymm21 ymm22 ymm23 ymm24 ymm25 ymm26 ymm27 ymm28 ymm29 ymm30 ymm31 zmm0 zmm1 zmm2 zmm3 zmm4 zmm5 zmm6 zmm7 zmm8 zmm9 zmm10 zmm11 zmm12 zmm13 zmm14 zmm15 zmm16 zmm17 zmm18 zmm19 zmm20 zmm21 zmm22 zmm23 zmm24 zmm25 zmm26 zmm27 zmm28 zmm29 zmm30 zmm31 k0 k1 k2 k3 k4 k5 k6 k7 bnd0 bnd1 bnd2 bnd3 cr0 cr1 cr2 cr3 cr4 cr8 dr0 dr1 dr2 dr3 dr8 tr3 tr4 tr5 tr6 tr7 r0 r1 r2 r3 r4 r5 r6 r7 r0b r1b r2b r3b r4b r5b r6b r7b r0w r1w r2w r3w r4w r5w r6w r7w r0d r1d r2d r3d r4d r5d r6d r7d r0h r1h r2h r3h r0l r1l r2l r3l r4l r5l r6l r7l r8l r9l r10l r11l r12l r13l r14l r15l db dw dd dq dt ddq do dy dz resb resw resd resq rest resdq reso resy resz incbin equ times byte word dword qword nosplit rel abs seg wrt strict near far a32 ptr",meta:"%define %xdefine %+ %undef %defstr %deftok %assign %strcat %strlen %substr %rotate %elif %else %endif %if %ifmacro %ifctx %ifidn %ifidni %ifid %ifnum %ifstr %iftoken %ifempty %ifenv %error %warning %fatal %rep %endrep %include %push %pop %repl %pathsearch %depend %use %arg %stacksize %local %line %comment %endcomment .nolist __FILE__ __LINE__ __SECT__ __BITS__ __OUTPUT_FORMAT__ __DATE__ __TIME__ __DATE_NUM__ __TIME_NUM__ __UTC_DATE__ __UTC_TIME__ __UTC_DATE_NUM__ __UTC_TIME_NUM__ __PASS__ struc endstruc istruc at iend align alignb sectalign daz nodaz up down zero default option assume public bits use16 use32 use64 default section segment absolute extern global common cpu float __utf16__ __utf16le__ __utf16be__ __utf32__ __utf32le__ __utf32be__ __float8__ __float16__ __float32__ __float64__ __float80m__ __float80e__ __float128l__ __float128h__ __Infinity__ __QNaN__ __SNaN__ Inf NaN QNaN SNaN float8 float16 float32 float64 float80m float80e float128l float128h __FLOAT_DAZ__ __FLOAT_ROUND__ __FLOAT__"},contains:[e.COMMENT(";","$",{relevance:0}),{className:"number",variants:[{begin:"\\b(?:([0-9][0-9_]*)?\\.[0-9_]*(?:[eE][+-]?[0-9_]+)?|(0[Xx])?[0-9][0-9_]*(\\.[0-9_]*)?(?:[pP](?:[+-]?[0-9_]+)?)?)\\b",relevance:0},{begin:"\\$[0-9][0-9A-Fa-f]*",relevance:0},{begin:"\\b(?:[0-9A-Fa-f][0-9A-Fa-f_]*[Hh]|[0-9][0-9_]*[DdTt]?|[0-7][0-7_]*[QqOo]|[0-1][0-1_]*[BbYy])\\b"},{begin:"\\b(?:0[Xx][0-9A-Fa-f_]+|0[DdTt][0-9_]+|0[QqOo][0-7_]+|0[BbYy][0-1_]+)\\b"}]},e.QUOTE_STRING_MODE,{className:"string",variants:[{begin:"'",end:"[^\\\\]'"},{begin:"`",end:"[^\\\\]`"}],relevance:0},{className:"symbol",variants:[{begin:"^\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\s+label)"},{begin:"^\\s*%%[A-Za-z0-9_$#@~.?]*:"}],relevance:0},{className:"subst",begin:"%[0-9]+",relevance:0},{className:"subst",begin:"%!S+",relevance:0},{className:"meta",begin:/^\s*\.[\w_-]+/}]}}iT.exports=oM});var lT=p((w7,oT)=>{function lM(e){let a={$pattern:/[a-zA-Z][a-zA-Z0-9_?]*/,keyword:"if then else do while until for loop import with is as where when by data constant integer real text name boolean symbol infix prefix postfix block tree",literal:"true false nil",built_in:"in mod rem and or xor not abs sign floor ceil sqrt sin cos tan asin acos atan exp expm1 log log2 log10 log1p pi at text_length text_range text_find text_replace contains page slide basic_slide title_slide title subtitle fade_in fade_out fade_at clear_color color line_color line_width texture_wrap texture_transform texture scale_?x scale_?y scale_?z? translate_?x translate_?y translate_?z? rotate_?x rotate_?y rotate_?z? rectangle circle ellipse sphere path line_to move_to quad_to curve_to theme background contents locally time mouse_?x mouse_?y mouse_buttons "+"ObjectLoader Animate MovieCredits Slides Filters Shading Materials LensFlare Mapping VLCAudioVideo StereoDecoder PointCloud NetworkAccess RemoteControl RegExp ChromaKey Snowfall NodeJS Speech Charts"},r={className:"string",begin:'"',end:'"',illegal:"\\n"},n={className:"string",begin:"'",end:"'",illegal:"\\n"},i={className:"string",begin:"<<",end:">>"},s={className:"number",begin:"[0-9]+#[0-9A-Z_]+(\\.[0-9-A-Z_]+)?#?([Ee][+-]?[0-9]+)?"},o={beginKeywords:"import",end:"$",keywords:a,contains:[r]},c={className:"function",begin:/[a-z][^\n]*->/,returnBegin:!0,end:/->/,contains:[e.inherit(e.TITLE_MODE,{starts:{endsWithParent:!0,keywords:a}})]};return{name:"XL",aliases:["tao"],keywords:a,contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,r,n,i,c,o,s,e.NUMBER_MODE]}}oT.exports=lM});var _T=p((x7,cT)=>{function cM(e){return{name:"XQuery",aliases:["xpath","xq"],case_insensitive:!1,illegal:/(proc)|(abstract)|(extends)|(until)|(#)/,keywords:{$pattern:/[a-zA-Z$][a-zA-Z0-9_:-]*/,keyword:"module schema namespace boundary-space preserve no-preserve strip default collation base-uri ordering context decimal-format decimal-separator copy-namespaces empty-sequence except exponent-separator external grouping-separator inherit no-inherit lax minus-sign per-mille percent schema-attribute schema-element strict unordered zero-digit declare import option function validate variable for at in let where order group by return if then else tumbling sliding window start when only end previous next stable ascending descending allowing empty greatest least some every satisfies switch case typeswitch try catch and or to union intersect instance of treat as castable cast map array delete insert into replace value rename copy modify update",type:"item document-node node attribute document element comment namespace namespace-node processing-instruction text construction xs:anyAtomicType xs:untypedAtomic xs:duration xs:time xs:decimal xs:float xs:double xs:gYearMonth xs:gYear xs:gMonthDay xs:gMonth xs:gDay xs:boolean xs:base64Binary xs:hexBinary xs:anyURI xs:QName xs:NOTATION xs:dateTime xs:dateTimeStamp xs:date xs:string xs:normalizedString xs:token xs:language xs:NMTOKEN xs:Name xs:NCName xs:ID xs:IDREF xs:ENTITY xs:integer xs:nonPositiveInteger xs:negativeInteger xs:long xs:int xs:short xs:byte xs:nonNegativeInteger xs:unisignedLong xs:unsignedInt xs:unsignedShort xs:unsignedByte xs:positiveInteger xs:yearMonthDuration xs:dayTimeDuration",literal:"eq ne lt le gt ge is self:: child:: descendant:: descendant-or-self:: attribute:: following:: following-sibling:: parent:: ancestor:: ancestor-or-self:: preceding:: preceding-sibling:: NaN"},contains:[{className:"variable",begin:/[$][\w\-:]+/},{className:"built_in",variants:[{begin:/\barray:/,end:/(?:append|filter|flatten|fold-(?:left|right)|for-each(?:-pair)?|get|head|insert-before|join|put|remove|reverse|size|sort|subarray|tail)\b/},{begin:/\bmap:/,end:/(?:contains|entry|find|for-each|get|keys|merge|put|remove|size)\b/},{begin:/\bmath:/,end:/(?:a(?:cos|sin|tan[2]?)|cos|exp(?:10)?|log(?:10)?|pi|pow|sin|sqrt|tan)\b/},{begin:/\bop:/,end:/\(/,excludeEnd:!0},{begin:/\bfn:/,end:/\(/,excludeEnd:!0},{begin:/[^</$:'"-]\b(?:abs|accumulator-(?:after|before)|adjust-(?:date(?:Time)?|time)-to-timezone|analyze-string|apply|available-(?:environment-variables|system-properties)|avg|base-uri|boolean|ceiling|codepoints?-(?:equal|to-string)|collation-key|collection|compare|concat|contains(?:-token)?|copy-of|count|current(?:-)?(?:date(?:Time)?|time|group(?:ing-key)?|output-uri|merge-(?:group|key))?data|dateTime|days?-from-(?:date(?:Time)?|duration)|deep-equal|default-(?:collation|language)|distinct-values|document(?:-uri)?|doc(?:-available)?|element-(?:available|with-id)|empty|encode-for-uri|ends-with|environment-variable|error|escape-html-uri|exactly-one|exists|false|filter|floor|fold-(?:left|right)|for-each(?:-pair)?|format-(?:date(?:Time)?|time|integer|number)|function-(?:arity|available|lookup|name)|generate-id|has-children|head|hours-from-(?:dateTime|duration|time)|id(?:ref)?|implicit-timezone|in-scope-prefixes|index-of|innermost|insert-before|iri-to-uri|json-(?:doc|to-xml)|key|lang|last|load-xquery-module|local-name(?:-from-QName)?|(?:lower|upper)-case|matches|max|minutes-from-(?:dateTime|duration|time)|min|months?-from-(?:date(?:Time)?|duration)|name(?:space-uri-?(?:for-prefix|from-QName)?)?|nilled|node-name|normalize-(?:space|unicode)|not|number|one-or-more|outermost|parse-(?:ietf-date|json)|path|position|(?:prefix-from-)?QName|random-number-generator|regex-group|remove|replace|resolve-(?:QName|uri)|reverse|root|round(?:-half-to-even)?|seconds-from-(?:dateTime|duration|time)|snapshot|sort|starts-with|static-base-uri|stream-available|string-?(?:join|length|to-codepoints)?|subsequence|substring-?(?:after|before)?|sum|system-property|tail|timezone-from-(?:date(?:Time)?|time)|tokenize|trace|trans(?:form|late)|true|type-available|unordered|unparsed-(?:entity|text)?-?(?:public-id|uri|available|lines)?|uri-collection|xml-to-json|years?-from-(?:date(?:Time)?|duration)|zero-or-one)\b/},{begin:/\blocal:/,end:/\(/,excludeEnd:!0},{begin:/\bzip:/,end:/(?:zip-file|(?:xml|html|text|binary)-entry| (?:update-)?entries)\b/},{begin:/\b(?:util|db|functx|app|xdmp|xmldb):/,end:/\(/,excludeEnd:!0}]},{className:"string",variants:[{begin:/"/,end:/"/,contains:[{begin:/""/,relevance:0}]},{begin:/'/,end:/'/,contains:[{begin:/''/,relevance:0}]}]},{className:"number",begin:/(\b0[0-7_]+)|(\b0x[0-9a-fA-F_]+)|(\b[1-9][0-9_]*(\.[0-9_]+)?)|[0_]\b/,relevance:0},{className:"comment",begin:/\(:/,end:/:\)/,relevance:10,contains:[{className:"doctag",begin:/@\w+/}]},{className:"meta",begin:/%[\w\-:]+/},{className:"title",begin:/\bxquery version "[13]\.[01]"\s?(?:encoding ".+")?/,end:/;/},{beginKeywords:"element attribute comment document processing-instruction",end:/\{/,excludeEnd:!0},{begin:/<([\w._:-]+)(\s+\S*=('|").*('|"))?>/,end:/(\/[\w._:-]+>)/,subLanguage:"xml",contains:[{begin:/\{/,end:/\}/,subLanguage:"xquery"},"self"]}]}}cT.exports=cM});var uT=p((M7,dT)=>{function _M(e){let t={className:"string",contains:[e.BACKSLASH_ESCAPE],variants:[e.inherit(e.APOS_STRING_MODE,{illegal:null}),e.inherit(e.QUOTE_STRING_MODE,{illegal:null})]},a=e.UNDERSCORE_TITLE_MODE,r={variants:[e.BINARY_NUMBER_MODE,e.C_NUMBER_MODE]},n="namespace class interface use extends function return abstract final public protected private static deprecated throw try catch Exception echo empty isset instanceof unset let var new const self require if else elseif switch case default do while loop for continue break likely unlikely __LINE__ __FILE__ __DIR__ __FUNCTION__ __CLASS__ __TRAIT__ __METHOD__ __NAMESPACE__ array boolean float double integer object resource string char long unsigned bool int uint ulong uchar true false null undefined";return{name:"Zephir",aliases:["zep"],keywords:n,contains:[e.C_LINE_COMMENT_MODE,e.COMMENT(/\/\*/,/\*\//,{contains:[{className:"doctag",begin:/@[A-Za-z]+/}]}),{className:"string",begin:/<<<['"]?\w+['"]?$/,end:/^\w+;/,contains:[e.BACKSLASH_ESCAPE]},{begin:/(::|->)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/},{className:"function",beginKeywords:"function fn",end:/[;{]/,excludeEnd:!0,illegal:/\$|\[|%/,contains:[a,{className:"params",begin:/\(/,end:/\)/,keywords:n,contains:["self",e.C_BLOCK_COMMENT_MODE,t,r]}]},{className:"class",beginKeywords:"class interface",end:/\{/,excludeEnd:!0,illegal:/[:($"]/,contains:[{beginKeywords:"extends implements"},a]},{beginKeywords:"namespace",end:/;/,illegal:/[.']/,contains:[a]},{beginKeywords:"use",end:/;/,contains:[a]},{begin:/=>/},t,r]}}dT.exports=_M});var mT=p((L7,pT)=>{var T=Ap();T.registerLanguage("1c",Op());T.registerLanguage("abnf",Ip());T.registerLanguage("accesslog",wp());T.registerLanguage("actionscript",Mp());T.registerLanguage("ada",Pp());T.registerLanguage("angelscript",Up());T.registerLanguage("apache",Gp());T.registerLanguage("applescript",$p());T.registerLanguage("arcade",Kp());T.registerLanguage("arduino",Qp());T.registerLanguage("armasm",Xp());T.registerLanguage("xml",tm());T.registerLanguage("asciidoc",nm());T.registerLanguage("aspectj",sm());T.registerLanguage("autohotkey",lm());T.registerLanguage("autoit",_m());T.registerLanguage("avrasm",um());T.registerLanguage("awk",mm());T.registerLanguage("axapta",fm());T.registerLanguage("bash",hm());T.registerLanguage("basic",Tm());T.registerLanguage("bnf",bm());T.registerLanguage("brainfuck",Rm());T.registerLanguage("c-like",Nm());T.registerLanguage("c",Dm());T.registerLanguage("cal",km());T.registerLanguage("capnproto",wm());T.registerLanguage("ceylon",Mm());T.registerLanguage("clean",Pm());T.registerLanguage("clojure",Um());T.registerLanguage("clojure-repl",Gm());T.registerLanguage("cmake",Hm());T.registerLanguage("coffeescript",qm());T.registerLanguage("coq",Vm());T.registerLanguage("cos",Wm());T.registerLanguage("cpp",jm());T.registerLanguage("crmsh",Zm());T.registerLanguage("crystal",eg());T.registerLanguage("csharp",ag());T.registerLanguage("csp",ng());T.registerLanguage("css",sg());T.registerLanguage("d",lg());T.registerLanguage("markdown",_g());T.registerLanguage("dart",ug());T.registerLanguage("delphi",mg());T.registerLanguage("diff",fg());T.registerLanguage("django",hg());T.registerLanguage("dns",Tg());T.registerLanguage("dockerfile",bg());T.registerLanguage("dos",Rg());T.registerLanguage("dsconfig",Ng());T.registerLanguage("dts",Dg());T.registerLanguage("dust",kg());T.registerLanguage("ebnf",wg());T.registerLanguage("elixir",Mg());T.registerLanguage("elm",Pg());T.registerLanguage("ruby",Bg());T.registerLanguage("erb",zg());T.registerLanguage("erlang-repl",Yg());T.registerLanguage("erlang",$g());T.registerLanguage("excel",Kg());T.registerLanguage("fix",Qg());T.registerLanguage("flix",Xg());T.registerLanguage("fortran",Jg());T.registerLanguage("fsharp",tf());T.registerLanguage("gams",rf());T.registerLanguage("gauss",sf());T.registerLanguage("gcode",lf());T.registerLanguage("gherkin",_f());T.registerLanguage("glsl",uf());T.registerLanguage("gml",mf());T.registerLanguage("go",ff());T.registerLanguage("golo",hf());T.registerLanguage("gradle",Tf());T.registerLanguage("groovy",bf());T.registerLanguage("haml",Rf());T.registerLanguage("handlebars",Of());T.registerLanguage("haskell",If());T.registerLanguage("haxe",vf());T.registerLanguage("hsp",xf());T.registerLanguage("htmlbars",Pf());T.registerLanguage("http",Uf());T.registerLanguage("hy",Gf());T.registerLanguage("inform7",Hf());T.registerLanguage("ini",Vf());T.registerLanguage("irpf90",Wf());T.registerLanguage("isbl",jf());T.registerLanguage("java",Zf());T.registerLanguage("javascript",a1());T.registerLanguage("jboss-cli",n1());T.registerLanguage("json",s1());T.registerLanguage("julia",l1());T.registerLanguage("julia-repl",_1());T.registerLanguage("kotlin",u1());T.registerLanguage("lasso",m1());T.registerLanguage("latex",f1());T.registerLanguage("ldif",h1());T.registerLanguage("leaf",T1());T.registerLanguage("less",R1());T.registerLanguage("lisp",N1());T.registerLanguage("livecodeserver",D1());T.registerLanguage("livescript",k1());T.registerLanguage("llvm",w1());T.registerLanguage("lsl",M1());T.registerLanguage("lua",P1());T.registerLanguage("makefile",U1());T.registerLanguage("mathematica",Y1());T.registerLanguage("matlab",$1());T.registerLanguage("maxima",K1());T.registerLanguage("mel",Q1());T.registerLanguage("mercury",X1());T.registerLanguage("mipsasm",J1());T.registerLanguage("mizar",tE());T.registerLanguage("perl",iE());T.registerLanguage("mojolicious",oE());T.registerLanguage("monkey",cE());T.registerLanguage("moonscript",dE());T.registerLanguage("n1ql",pE());T.registerLanguage("nginx",gE());T.registerLanguage("nim",EE());T.registerLanguage("nix",SE());T.registerLanguage("node-repl",yE());T.registerLanguage("nsis",CE());T.registerLanguage("objectivec",AE());T.registerLanguage("ocaml",OE());T.registerLanguage("openscad",IE());T.registerLanguage("oxygene",vE());T.registerLanguage("parser3",xE());T.registerLanguage("pf",LE());T.registerLanguage("pgsql",FE());T.registerLanguage("php",BE());T.registerLanguage("php-template",zE());T.registerLanguage("plaintext",YE());T.registerLanguage("pony",$E());T.registerLanguage("powershell",KE());T.registerLanguage("processing",QE());T.registerLanguage("profile",XE());T.registerLanguage("prolog",JE());T.registerLanguage("properties",th());T.registerLanguage("protobuf",rh());T.registerLanguage("puppet",ih());T.registerLanguage("purebasic",oh());T.registerLanguage("python",ch());T.registerLanguage("python-repl",dh());T.registerLanguage("q",ph());T.registerLanguage("qml",gh());T.registerLanguage("r",Eh());T.registerLanguage("reasonml",Sh());T.registerLanguage("rib",yh());T.registerLanguage("roboconf",Ch());T.registerLanguage("routeros",Ah());T.registerLanguage("rsl",Oh());T.registerLanguage("ruleslanguage",Ih());T.registerLanguage("rust",vh());T.registerLanguage("sas",xh());T.registerLanguage("scala",Lh());T.registerLanguage("scheme",Fh());T.registerLanguage("scilab",Bh());T.registerLanguage("scss",zh());T.registerLanguage("shell",Yh());T.registerLanguage("smali",$h());T.registerLanguage("smalltalk",Kh());T.registerLanguage("sml",Qh());T.registerLanguage("sqf",Xh());T.registerLanguage("sql_more",Jh());T.registerLanguage("sql",aS());T.registerLanguage("stan",nS());T.registerLanguage("stata",sS());T.registerLanguage("step21",lS());T.registerLanguage("stylus",_S());T.registerLanguage("subunit",uS());T.registerLanguage("swift",yS());T.registerLanguage("taggerscript",CS());T.registerLanguage("yaml",AS());T.registerLanguage("tap",OS());T.registerLanguage("tcl",kS());T.registerLanguage("thrift",wS());T.registerLanguage("tp",MS());T.registerLanguage("twig",PS());T.registerLanguage("typescript",HS());T.registerLanguage("vala",qS());T.registerLanguage("vbnet",KS());T.registerLanguage("vbscript",jS());T.registerLanguage("vbscript-html",ZS());T.registerLanguage("verilog",eT());T.registerLanguage("vhdl",aT());T.registerLanguage("vim",nT());T.registerLanguage("x86asm",sT());T.registerLanguage("xl",lT());T.registerLanguage("xquery",_T());T.registerLanguage("zephir",uT());pT.exports=T});var ts=p(sa=>{"use strict";var dM=[65534,65535,131070,131071,196606,196607,262142,262143,327678,327679,393214,393215,458750,458751,524286,524287,589822,589823,655358,655359,720894,720895,786430,786431,851966,851967,917502,917503,983038,983039,1048574,1048575,1114110,1114111];sa.REPLACEMENT_CHARACTER="\uFFFD";sa.CODE_POINTS={EOF:-1,NULL:0,TABULATION:9,CARRIAGE_RETURN:13,LINE_FEED:10,FORM_FEED:12,SPACE:32,EXCLAMATION_MARK:33,QUOTATION_MARK:34,NUMBER_SIGN:35,AMPERSAND:38,APOSTROPHE:39,HYPHEN_MINUS:45,SOLIDUS:47,DIGIT_0:48,DIGIT_9:57,SEMICOLON:59,LESS_THAN_SIGN:60,EQUALS_SIGN:61,GREATER_THAN_SIGN:62,QUESTION_MARK:63,LATIN_CAPITAL_A:65,LATIN_CAPITAL_F:70,LATIN_CAPITAL_X:88,LATIN_CAPITAL_Z:90,RIGHT_SQUARE_BRACKET:93,GRAVE_ACCENT:96,LATIN_SMALL_A:97,LATIN_SMALL_F:102,LATIN_SMALL_X:120,LATIN_SMALL_Z:122,REPLACEMENT_CHARACTER:65533};sa.CODE_POINT_SEQUENCES={DASH_DASH_STRING:[45,45],DOCTYPE_STRING:[68,79,67,84,89,80,69],CDATA_START_STRING:[91,67,68,65,84,65,91],SCRIPT_STRING:[115,99,114,105,112,116],PUBLIC_STRING:[80,85,66,76,73,67],SYSTEM_STRING:[83,89,83,84,69,77]};sa.isSurrogate=function(e){return e>=55296&&e<=57343};sa.isSurrogatePair=function(e){return e>=56320&&e<=57343};sa.getSurrogatePairCodePoint=function(e,t){return(e-55296)*1024+9216+t};sa.isControlCodePoint=function(e){return e!==32&&e!==10&&e!==13&&e!==9&&e!==12&&e>=1&&e<=31||e>=127&&e<=159};sa.isUndefinedCodePoint=function(e){return e>=64976&&e<=65007||dM.indexOf(e)>-1}});var as=p((F7,gT)=>{"use strict";gT.exports={controlCharacterInInputStream:"control-character-in-input-stream",noncharacterInInputStream:"noncharacter-in-input-stream",surrogateInInputStream:"surrogate-in-input-stream",nonVoidHtmlElementStartTagWithTrailingSolidus:"non-void-html-element-start-tag-with-trailing-solidus",endTagWithAttributes:"end-tag-with-attributes",endTagWithTrailingSolidus:"end-tag-with-trailing-solidus",unexpectedSolidusInTag:"unexpected-solidus-in-tag",unexpectedNullCharacter:"unexpected-null-character",unexpectedQuestionMarkInsteadOfTagName:"unexpected-question-mark-instead-of-tag-name",invalidFirstCharacterOfTagName:"invalid-first-character-of-tag-name",unexpectedEqualsSignBeforeAttributeName:"unexpected-equals-sign-before-attribute-name",missingEndTagName:"missing-end-tag-name",unexpectedCharacterInAttributeName:"unexpected-character-in-attribute-name",unknownNamedCharacterReference:"unknown-named-character-reference",missingSemicolonAfterCharacterReference:"missing-semicolon-after-character-reference",unexpectedCharacterAfterDoctypeSystemIdentifier:"unexpected-character-after-doctype-system-identifier",unexpectedCharacterInUnquotedAttributeValue:"unexpected-character-in-unquoted-attribute-value",eofBeforeTagName:"eof-before-tag-name",eofInTag:"eof-in-tag",missingAttributeValue:"missing-attribute-value",missingWhitespaceBetweenAttributes:"missing-whitespace-between-attributes",missingWhitespaceAfterDoctypePublicKeyword:"missing-whitespace-after-doctype-public-keyword",missingWhitespaceBetweenDoctypePublicAndSystemIdentifiers:"missing-whitespace-between-doctype-public-and-system-identifiers",missingWhitespaceAfterDoctypeSystemKeyword:"missing-whitespace-after-doctype-system-keyword",missingQuoteBeforeDoctypePublicIdentifier:"missing-quote-before-doctype-public-identifier",missingQuoteBeforeDoctypeSystemIdentifier:"missing-quote-before-doctype-system-identifier",missingDoctypePublicIdentifier:"missing-doctype-public-identifier",missingDoctypeSystemIdentifier:"missing-doctype-system-identifier",abruptDoctypePublicIdentifier:"abrupt-doctype-public-identifier",abruptDoctypeSystemIdentifier:"abrupt-doctype-system-identifier",cdataInHtmlContent:"cdata-in-html-content",incorrectlyOpenedComment:"incorrectly-opened-comment",eofInScriptHtmlCommentLikeText:"eof-in-script-html-comment-like-text",eofInDoctype:"eof-in-doctype",nestedComment:"nested-comment",abruptClosingOfEmptyComment:"abrupt-closing-of-empty-comment",eofInComment:"eof-in-comment",incorrectlyClosedComment:"incorrectly-closed-comment",eofInCdata:"eof-in-cdata",absenceOfDigitsInNumericCharacterReference:"absence-of-digits-in-numeric-character-reference",nullCharacterReference:"null-character-reference",surrogateCharacterReference:"surrogate-character-reference",characterReferenceOutsideUnicodeRange:"character-reference-outside-unicode-range",controlCharacterReference:"control-character-reference",noncharacterCharacterReference:"noncharacter-character-reference",missingWhitespaceBeforeDoctypeName:"missing-whitespace-before-doctype-name",missingDoctypeName:"missing-doctype-name",invalidCharacterSequenceAfterDoctypeName:"invalid-character-sequence-after-doctype-name",duplicateAttribute:"duplicate-attribute",nonConformingDoctype:"non-conforming-doctype",missingDoctype:"missing-doctype",misplacedDoctype:"misplaced-doctype",endTagWithoutMatchingOpenElement:"end-tag-without-matching-open-element",closingOfElementWithOpenChildElements:"closing-of-element-with-open-child-elements",disallowedContentInNoscriptInHead:"disallowed-content-in-noscript-in-head",openElementsLeftAfterEof:"open-elements-left-after-eof",abandonedHeadElementChild:"abandoned-head-element-child",misplacedStartTagForHeadElement:"misplaced-start-tag-for-head-element",nestedNoscriptInHead:"nested-noscript-in-head",eofInElementThatCanContainOnlyText:"eof-in-element-that-can-contain-only-text"}});var ET=p((U7,fT)=>{"use strict";var Fr=ts(),Wl=as(),Qa=Fr.CODE_POINTS,uM=65536,Ql=class{constructor(){this.html=null,this.pos=-1,this.lastGapPos=-1,this.lastCharPos=-1,this.gapStack=[],this.skipNextNewLine=!1,this.lastChunkWritten=!1,this.endOfChunkHit=!1,this.bufferWaterline=uM}_err(){}_addGap(){this.gapStack.push(this.lastGapPos),this.lastGapPos=this.pos}_processSurrogate(t){if(this.pos!==this.lastCharPos){let a=this.html.charCodeAt(this.pos+1);if(Fr.isSurrogatePair(a))return this.pos++,this._addGap(),Fr.getSurrogatePairCodePoint(t,a)}else if(!this.lastChunkWritten)return this.endOfChunkHit=!0,Qa.EOF;return this._err(Wl.surrogateInInputStream),t}dropParsedChunk(){this.pos>this.bufferWaterline&&(this.lastCharPos-=this.pos,this.html=this.html.substring(this.pos),this.pos=0,this.lastGapPos=-1,this.gapStack=[])}write(t,a){this.html?this.html+=t:this.html=t,this.lastCharPos=this.html.length-1,this.endOfChunkHit=!1,this.lastChunkWritten=a}insertHtmlAtCurrentPos(t){this.html=this.html.substring(0,this.pos+1)+t+this.html.substring(this.pos+1,this.html.length),this.lastCharPos=this.html.length-1,this.endOfChunkHit=!1}advance(){if(this.pos++,this.pos>this.lastCharPos)return this.endOfChunkHit=!this.lastChunkWritten,Qa.EOF;let t=this.html.charCodeAt(this.pos);return this.skipNextNewLine&&t===Qa.LINE_FEED?(this.skipNextNewLine=!1,this._addGap(),this.advance()):t===Qa.CARRIAGE_RETURN?(this.skipNextNewLine=!0,Qa.LINE_FEED):(this.skipNextNewLine=!1,Fr.isSurrogate(t)&&(t=this._processSurrogate(t)),t>31&&t<127||t===Qa.LINE_FEED||t===Qa.CARRIAGE_RETURN||t>159&&t<64976||this._checkForProblematicCharacters(t),t)}_checkForProblematicCharacters(t){Fr.isControlCodePoint(t)?this._err(Wl.controlCharacterInInputStream):Fr.isUndefinedCodePoint(t)&&this._err(Wl.noncharacterInInputStream)}retreat(){this.pos===this.lastGapPos&&(this.lastGapPos=this.gapStack.pop(),this.pos--),this.pos--}};fT.exports=Ql});var ST=p((B7,hT)=>{"use strict";hT.exports=new Uint16Array([4,52,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,106,303,412,810,1432,1701,1796,1987,2114,2360,2420,2484,3170,3251,4140,4393,4575,4610,5106,5512,5728,6117,6274,6315,6345,6427,6516,7002,7910,8733,9323,9870,10170,10631,10893,11318,11386,11467,12773,13092,14474,14922,15448,15542,16419,17666,18166,18611,19004,19095,19298,19397,4,16,69,77,97,98,99,102,103,108,109,110,111,112,114,115,116,117,140,150,158,169,176,194,199,210,216,222,226,242,256,266,283,294,108,105,103,5,198,1,59,148,1,198,80,5,38,1,59,156,1,38,99,117,116,101,5,193,1,59,167,1,193,114,101,118,101,59,1,258,4,2,105,121,182,191,114,99,5,194,1,59,189,1,194,59,1,1040,114,59,3,55349,56580,114,97,118,101,5,192,1,59,208,1,192,112,104,97,59,1,913,97,99,114,59,1,256,100,59,1,10835,4,2,103,112,232,237,111,110,59,1,260,102,59,3,55349,56632,112,108,121,70,117,110,99,116,105,111,110,59,1,8289,105,110,103,5,197,1,59,264,1,197,4,2,99,115,272,277,114,59,3,55349,56476,105,103,110,59,1,8788,105,108,100,101,5,195,1,59,292,1,195,109,108,5,196,1,59,301,1,196,4,8,97,99,101,102,111,114,115,117,321,350,354,383,388,394,400,405,4,2,99,114,327,336,107,115,108,97,115,104,59,1,8726,4,2,118,119,342,345,59,1,10983,101,100,59,1,8966,121,59,1,1041,4,3,99,114,116,362,369,379,97,117,115,101,59,1,8757,110,111,117,108,108,105,115,59,1,8492,97,59,1,914,114,59,3,55349,56581,112,102,59,3,55349,56633,101,118,101,59,1,728,99,114,59,1,8492,109,112,101,113,59,1,8782,4,14,72,79,97,99,100,101,102,104,105,108,111,114,115,117,442,447,456,504,542,547,569,573,577,616,678,784,790,796,99,121,59,1,1063,80,89,5,169,1,59,454,1,169,4,3,99,112,121,464,470,497,117,116,101,59,1,262,4,2,59,105,476,478,1,8914,116,97,108,68,105,102,102,101,114,101,110,116,105,97,108,68,59,1,8517,108,101,121,115,59,1,8493,4,4,97,101,105,111,514,520,530,535,114,111,110,59,1,268,100,105,108,5,199,1,59,528,1,199,114,99,59,1,264,110,105,110,116,59,1,8752,111,116,59,1,266,4,2,100,110,553,560,105,108,108,97,59,1,184,116,101,114,68,111,116,59,1,183,114,59,1,8493,105,59,1,935,114,99,108,101,4,4,68,77,80,84,591,596,603,609,111,116,59,1,8857,105,110,117,115,59,1,8854,108,117,115,59,1,8853,105,109,101,115,59,1,8855,111,4,2,99,115,623,646,107,119,105,115,101,67,111,110,116,111,117,114,73,110,116,101,103,114,97,108,59,1,8754,101,67,117,114,108,121,4,2,68,81,658,671,111,117,98,108,101,81,117,111,116,101,59,1,8221,117,111,116,101,59,1,8217,4,4,108,110,112,117,688,701,736,753,111,110,4,2,59,101,696,698,1,8759,59,1,10868,4,3,103,105,116,709,717,722,114,117,101,110,116,59,1,8801,110,116,59,1,8751,111,117,114,73,110,116,101,103,114,97,108,59,1,8750,4,2,102,114,742,745,59,1,8450,111,100,117,99,116,59,1,8720,110,116,101,114,67,108,111,99,107,119,105,115,101,67,111,110,116,111,117,114,73,110,116,101,103,114,97,108,59,1,8755,111,115,115,59,1,10799,99,114,59,3,55349,56478,112,4,2,59,67,803,805,1,8915,97,112,59,1,8781,4,11,68,74,83,90,97,99,101,102,105,111,115,834,850,855,860,865,888,903,916,921,1011,1415,4,2,59,111,840,842,1,8517,116,114,97,104,100,59,1,10513,99,121,59,1,1026,99,121,59,1,1029,99,121,59,1,1039,4,3,103,114,115,873,879,883,103,101,114,59,1,8225,114,59,1,8609,104,118,59,1,10980,4,2,97,121,894,900,114,111,110,59,1,270,59,1,1044,108,4,2,59,116,910,912,1,8711,97,59,1,916,114,59,3,55349,56583,4,2,97,102,927,998,4,2,99,109,933,992,114,105,116,105,99,97,108,4,4,65,68,71,84,950,957,978,985,99,117,116,101,59,1,180,111,4,2,116,117,964,967,59,1,729,98,108,101,65,99,117,116,101,59,1,733,114,97,118,101,59,1,96,105,108,100,101,59,1,732,111,110,100,59,1,8900,102,101,114,101,110,116,105,97,108,68,59,1,8518,4,4,112,116,117,119,1021,1026,1048,1249,102,59,3,55349,56635,4,3,59,68,69,1034,1036,1041,1,168,111,116,59,1,8412,113,117,97,108,59,1,8784,98,108,101,4,6,67,68,76,82,85,86,1065,1082,1101,1189,1211,1236,111,110,116,111,117,114,73,110,116,101,103,114,97,108,59,1,8751,111,4,2,116,119,1089,1092,59,1,168,110,65,114,114,111,119,59,1,8659,4,2,101,111,1107,1141,102,116,4,3,65,82,84,1117,1124,1136,114,114,111,119,59,1,8656,105,103,104,116,65,114,114,111,119,59,1,8660,101,101,59,1,10980,110,103,4,2,76,82,1149,1177,101,102,116,4,2,65,82,1158,1165,114,114,111,119,59,1,10232,105,103,104,116,65,114,114,111,119,59,1,10234,105,103,104,116,65,114,114,111,119,59,1,10233,105,103,104,116,4,2,65,84,1199,1206,114,114,111,119,59,1,8658,101,101,59,1,8872,112,4,2,65,68,1218,1225,114,114,111,119,59,1,8657,111,119,110,65,114,114,111,119,59,1,8661,101,114,116,105,99,97,108,66,97,114,59,1,8741,110,4,6,65,66,76,82,84,97,1264,1292,1299,1352,1391,1408,114,114,111,119,4,3,59,66,85,1276,1278,1283,1,8595,97,114,59,1,10515,112,65,114,114,111,119,59,1,8693,114,101,118,101,59,1,785,101,102,116,4,3,82,84,86,1310,1323,1334,105,103,104,116,86,101,99,116,111,114,59,1,10576,101,101,86,101,99,116,111,114,59,1,10590,101,99,116,111,114,4,2,59,66,1345,1347,1,8637,97,114,59,1,10582,105,103,104,116,4,2,84,86,1362,1373,101,101,86,101,99,116,111,114,59,1,10591,101,99,116,111,114,4,2,59,66,1384,1386,1,8641,97,114,59,1,10583,101,101,4,2,59,65,1399,1401,1,8868,114,114,111,119,59,1,8615,114,114,111,119,59,1,8659,4,2,99,116,1421,1426,114,59,3,55349,56479,114,111,107,59,1,272,4,16,78,84,97,99,100,102,103,108,109,111,112,113,115,116,117,120,1466,1470,1478,1489,1515,1520,1525,1536,1544,1593,1609,1617,1650,1664,1668,1677,71,59,1,330,72,5,208,1,59,1476,1,208,99,117,116,101,5,201,1,59,1487,1,201,4,3,97,105,121,1497,1503,1512,114,111,110,59,1,282,114,99,5,202,1,59,1510,1,202,59,1,1069,111,116,59,1,278,114,59,3,55349,56584,114,97,118,101,5,200,1,59,1534,1,200,101,109,101,110,116,59,1,8712,4,2,97,112,1550,1555,99,114,59,1,274,116,121,4,2,83,86,1563,1576,109,97,108,108,83,113,117,97,114,101,59,1,9723,101,114,121,83,109,97,108,108,83,113,117,97,114,101,59,1,9643,4,2,103,112,1599,1604,111,110,59,1,280,102,59,3,55349,56636,115,105,108,111,110,59,1,917,117,4,2,97,105,1624,1640,108,4,2,59,84,1631,1633,1,10869,105,108,100,101,59,1,8770,108,105,98,114,105,117,109,59,1,8652,4,2,99,105,1656,1660,114,59,1,8496,109,59,1,10867,97,59,1,919,109,108,5,203,1,59,1675,1,203,4,2,105,112,1683,1689,115,116,115,59,1,8707,111,110,101,110,116,105,97,108,69,59,1,8519,4,5,99,102,105,111,115,1713,1717,1722,1762,1791,121,59,1,1060,114,59,3,55349,56585,108,108,101,100,4,2,83,86,1732,1745,109,97,108,108,83,113,117,97,114,101,59,1,9724,101,114,121,83,109,97,108,108,83,113,117,97,114,101,59,1,9642,4,3,112,114,117,1770,1775,1781,102,59,3,55349,56637,65,108,108,59,1,8704,114,105,101,114,116,114,102,59,1,8497,99,114,59,1,8497,4,12,74,84,97,98,99,100,102,103,111,114,115,116,1822,1827,1834,1848,1855,1877,1882,1887,1890,1896,1978,1984,99,121,59,1,1027,5,62,1,59,1832,1,62,109,109,97,4,2,59,100,1843,1845,1,915,59,1,988,114,101,118,101,59,1,286,4,3,101,105,121,1863,1869,1874,100,105,108,59,1,290,114,99,59,1,284,59,1,1043,111,116,59,1,288,114,59,3,55349,56586,59,1,8921,112,102,59,3,55349,56638,101,97,116,101,114,4,6,69,70,71,76,83,84,1915,1933,1944,1953,1959,1971,113,117,97,108,4,2,59,76,1925,1927,1,8805,101,115,115,59,1,8923,117,108,108,69,113,117,97,108,59,1,8807,114,101,97,116,101,114,59,1,10914,101,115,115,59,1,8823,108,97,110,116,69,113,117,97,108,59,1,10878,105,108,100,101,59,1,8819,99,114,59,3,55349,56482,59,1,8811,4,8,65,97,99,102,105,111,115,117,2005,2012,2026,2032,2036,2049,2073,2089,82,68,99,121,59,1,1066,4,2,99,116,2018,2023,101,107,59,1,711,59,1,94,105,114,99,59,1,292,114,59,1,8460,108,98,101,114,116,83,112,97,99,101,59,1,8459,4,2,112,114,2055,2059,102,59,1,8461,105,122,111,110,116,97,108,76,105,110,101,59,1,9472,4,2,99,116,2079,2083,114,59,1,8459,114,111,107,59,1,294,109,112,4,2,68,69,2097,2107,111,119,110,72,117,109,112,59,1,8782,113,117,97,108,59,1,8783,4,14,69,74,79,97,99,100,102,103,109,110,111,115,116,117,2144,2149,2155,2160,2171,2189,2194,2198,2209,2245,2307,2329,2334,2341,99,121,59,1,1045,108,105,103,59,1,306,99,121,59,1,1025,99,117,116,101,5,205,1,59,2169,1,205,4,2,105,121,2177,2186,114,99,5,206,1,59,2184,1,206,59,1,1048,111,116,59,1,304,114,59,1,8465,114,97,118,101,5,204,1,59,2207,1,204,4,3,59,97,112,2217,2219,2238,1,8465,4,2,99,103,2225,2229,114,59,1,298,105,110,97,114,121,73,59,1,8520,108,105,101,115,59,1,8658,4,2,116,118,2251,2281,4,2,59,101,2257,2259,1,8748,4,2,103,114,2265,2271,114,97,108,59,1,8747,115,101,99,116,105,111,110,59,1,8898,105,115,105,98,108,101,4,2,67,84,2293,2300,111,109,109,97,59,1,8291,105,109,101,115,59,1,8290,4,3,103,112,116,2315,2320,2325,111,110,59,1,302,102,59,3,55349,56640,97,59,1,921,99,114,59,1,8464,105,108,100,101,59,1,296,4,2,107,109,2347,2352,99,121,59,1,1030,108,5,207,1,59,2358,1,207,4,5,99,102,111,115,117,2372,2386,2391,2397,2414,4,2,105,121,2378,2383,114,99,59,1,308,59,1,1049,114,59,3,55349,56589,112,102,59,3,55349,56641,4,2,99,101,2403,2408,114,59,3,55349,56485,114,99,121,59,1,1032,107,99,121,59,1,1028,4,7,72,74,97,99,102,111,115,2436,2441,2446,2452,2467,2472,2478,99,121,59,1,1061,99,121,59,1,1036,112,112,97,59,1,922,4,2,101,121,2458,2464,100,105,108,59,1,310,59,1,1050,114,59,3,55349,56590,112,102,59,3,55349,56642,99,114,59,3,55349,56486,4,11,74,84,97,99,101,102,108,109,111,115,116,2508,2513,2520,2562,2585,2981,2986,3004,3011,3146,3167,99,121,59,1,1033,5,60,1,59,2518,1,60,4,5,99,109,110,112,114,2532,2538,2544,2548,2558,117,116,101,59,1,313,98,100,97,59,1,923,103,59,1,10218,108,97,99,101,116,114,102,59,1,8466,114,59,1,8606,4,3,97,101,121,2570,2576,2582,114,111,110,59,1,317,100,105,108,59,1,315,59,1,1051,4,2,102,115,2591,2907,116,4,10,65,67,68,70,82,84,85,86,97,114,2614,2663,2672,2728,2735,2760,2820,2870,2888,2895,4,2,110,114,2620,2633,103,108,101,66,114,97,99,107,101,116,59,1,10216,114,111,119,4,3,59,66,82,2644,2646,2651,1,8592,97,114,59,1,8676,105,103,104,116,65,114,114,111,119,59,1,8646,101,105,108,105,110,103,59,1,8968,111,4,2,117,119,2679,2692,98,108,101,66,114,97,99,107,101,116,59,1,10214,110,4,2,84,86,2699,2710,101,101,86,101,99,116,111,114,59,1,10593,101,99,116,111,114,4,2,59,66,2721,2723,1,8643,97,114,59,1,10585,108,111,111,114,59,1,8970,105,103,104,116,4,2,65,86,2745,2752,114,114,111,119,59,1,8596,101,99,116,111,114,59,1,10574,4,2,101,114,2766,2792,101,4,3,59,65,86,2775,2777,2784,1,8867,114,114,111,119,59,1,8612,101,99,116,111,114,59,1,10586,105,97,110,103,108,101,4,3,59,66,69,2806,2808,2813,1,8882,97,114,59,1,10703,113,117,97,108,59,1,8884,112,4,3,68,84,86,2829,2841,2852,111,119,110,86,101,99,116,111,114,59,1,10577,101,101,86,101,99,116,111,114,59,1,10592,101,99,116,111,114,4,2,59,66,2863,2865,1,8639,97,114,59,1,10584,101,99,116,111,114,4,2,59,66,2881,2883,1,8636,97,114,59,1,10578,114,114,111,119,59,1,8656,105,103,104,116,97,114,114,111,119,59,1,8660,115,4,6,69,70,71,76,83,84,2922,2936,2947,2956,2962,2974,113,117,97,108,71,114,101,97,116,101,114,59,1,8922,117,108,108,69,113,117,97,108,59,1,8806,114,101,97,116,101,114,59,1,8822,101,115,115,59,1,10913,108,97,110,116,69,113,117,97,108,59,1,10877,105,108,100,101,59,1,8818,114,59,3,55349,56591,4,2,59,101,2992,2994,1,8920,102,116,97,114,114,111,119,59,1,8666,105,100,111,116,59,1,319,4,3,110,112,119,3019,3110,3115,103,4,4,76,82,108,114,3030,3058,3070,3098,101,102,116,4,2,65,82,3039,3046,114,114,111,119,59,1,10229,105,103,104,116,65,114,114,111,119,59,1,10231,105,103,104,116,65,114,114,111,119,59,1,10230,101,102,116,4,2,97,114,3079,3086,114,114,111,119,59,1,10232,105,103,104,116,97,114,114,111,119,59,1,10234,105,103,104,116,97,114,114,111,119,59,1,10233,102,59,3,55349,56643,101,114,4,2,76,82,3123,3134,101,102,116,65,114,114,111,119,59,1,8601,105,103,104,116,65,114,114,111,119,59,1,8600,4,3,99,104,116,3154,3158,3161,114,59,1,8466,59,1,8624,114,111,107,59,1,321,59,1,8810,4,8,97,99,101,102,105,111,115,117,3188,3192,3196,3222,3227,3237,3243,3248,112,59,1,10501,121,59,1,1052,4,2,100,108,3202,3213,105,117,109,83,112,97,99,101,59,1,8287,108,105,110,116,114,102,59,1,8499,114,59,3,55349,56592,110,117,115,80,108,117,115,59,1,8723,112,102,59,3,55349,56644,99,114,59,1,8499,59,1,924,4,9,74,97,99,101,102,111,115,116,117,3271,3276,3283,3306,3422,3427,4120,4126,4137,99,121,59,1,1034,99,117,116,101,59,1,323,4,3,97,101,121,3291,3297,3303,114,111,110,59,1,327,100,105,108,59,1,325,59,1,1053,4,3,103,115,119,3314,3380,3415,97,116,105,118,101,4,3,77,84,86,3327,3340,3365,101,100,105,117,109,83,112,97,99,101,59,1,8203,104,105,4,2,99,110,3348,3357,107,83,112,97,99,101,59,1,8203,83,112,97,99,101,59,1,8203,101,114,121,84,104,105,110,83,112,97,99,101,59,1,8203,116,101,100,4,2,71,76,3389,3405,114,101,97,116,101,114,71,114,101,97,116,101,114,59,1,8811,101,115,115,76,101,115,115,59,1,8810,76,105,110,101,59,1,10,114,59,3,55349,56593,4,4,66,110,112,116,3437,3444,3460,3464,114,101,97,107,59,1,8288,66,114,101,97,107,105,110,103,83,112,97,99,101,59,1,160,102,59,1,8469,4,13,59,67,68,69,71,72,76,78,80,82,83,84,86,3492,3494,3517,3536,3578,3657,3685,3784,3823,3860,3915,4066,4107,1,10988,4,2,111,117,3500,3510,110,103,114,117,101,110,116,59,1,8802,112,67,97,112,59,1,8813,111,117,98,108,101,86,101,114,116,105,99,97,108,66,97,114,59,1,8742,4,3,108,113,120,3544,3552,3571,101,109,101,110,116,59,1,8713,117,97,108,4,2,59,84,3561,3563,1,8800,105,108,100,101,59,3,8770,824,105,115,116,115,59,1,8708,114,101,97,116,101,114,4,7,59,69,70,71,76,83,84,3600,3602,3609,3621,3631,3637,3650,1,8815,113,117,97,108,59,1,8817,117,108,108,69,113,117,97,108,59,3,8807,824,114,101,97,116,101,114,59,3,8811,824,101,115,115,59,1,8825,108,97,110,116,69,113,117,97,108,59,3,10878,824,105,108,100,101,59,1,8821,117,109,112,4,2,68,69,3666,3677,111,119,110,72,117,109,112,59,3,8782,824,113,117,97,108,59,3,8783,824,101,4,2,102,115,3692,3724,116,84,114,105,97,110,103,108,101,4,3,59,66,69,3709,3711,3717,1,8938,97,114,59,3,10703,824,113,117,97,108,59,1,8940,115,4,6,59,69,71,76,83,84,3739,3741,3748,3757,3764,3777,1,8814,113,117,97,108,59,1,8816,114,101,97,116,101,114,59,1,8824,101,115,115,59,3,8810,824,108,97,110,116,69,113,117,97,108,59,3,10877,824,105,108,100,101,59,1,8820,101,115,116,101,100,4,2,71,76,3795,3812,114,101,97,116,101,114,71,114,101,97,116,101,114,59,3,10914,824,101,115,115,76,101,115,115,59,3,10913,824,114,101,99,101,100,101,115,4,3,59,69,83,3838,3840,3848,1,8832,113,117,97,108,59,3,10927,824,108,97,110,116,69,113,117,97,108,59,1,8928,4,2,101,105,3866,3881,118,101,114,115,101,69,108,101,109,101,110,116,59,1,8716,103,104,116,84,114,105,97,110,103,108,101,4,3,59,66,69,3900,3902,3908,1,8939,97,114,59,3,10704,824,113,117,97,108,59,1,8941,4,2,113,117,3921,3973,117,97,114,101,83,117,4,2,98,112,3933,3952,115,101,116,4,2,59,69,3942,3945,3,8847,824,113,117,97,108,59,1,8930,101,114,115,101,116,4,2,59,69,3963,3966,3,8848,824,113,117,97,108,59,1,8931,4,3,98,99,112,3981,4e3,4045,115,101,116,4,2,59,69,3990,3993,3,8834,8402,113,117,97,108,59,1,8840,99,101,101,100,115,4,4,59,69,83,84,4015,4017,4025,4037,1,8833,113,117,97,108,59,3,10928,824,108,97,110,116,69,113,117,97,108,59,1,8929,105,108,100,101,59,3,8831,824,101,114,115,101,116,4,2,59,69,4056,4059,3,8835,8402,113,117,97,108,59,1,8841,105,108,100,101,4,4,59,69,70,84,4080,4082,4089,4100,1,8769,113,117,97,108,59,1,8772,117,108,108,69,113,117,97,108,59,1,8775,105,108,100,101,59,1,8777,101,114,116,105,99,97,108,66,97,114,59,1,8740,99,114,59,3,55349,56489,105,108,100,101,5,209,1,59,4135,1,209,59,1,925,4,14,69,97,99,100,102,103,109,111,112,114,115,116,117,118,4170,4176,4187,4205,4212,4217,4228,4253,4259,4292,4295,4316,4337,4346,108,105,103,59,1,338,99,117,116,101,5,211,1,59,4185,1,211,4,2,105,121,4193,4202,114,99,5,212,1,59,4200,1,212,59,1,1054,98,108,97,99,59,1,336,114,59,3,55349,56594,114,97,118,101,5,210,1,59,4226,1,210,4,3,97,101,105,4236,4241,4246,99,114,59,1,332,103,97,59,1,937,99,114,111,110,59,1,927,112,102,59,3,55349,56646,101,110,67,117,114,108,121,4,2,68,81,4272,4285,111,117,98,108,101,81,117,111,116,101,59,1,8220,117,111,116,101,59,1,8216,59,1,10836,4,2,99,108,4301,4306,114,59,3,55349,56490,97,115,104,5,216,1,59,4314,1,216,105,4,2,108,109,4323,4332,100,101,5,213,1,59,4330,1,213,101,115,59,1,10807,109,108,5,214,1,59,4344,1,214,101,114,4,2,66,80,4354,4380,4,2,97,114,4360,4364,114,59,1,8254,97,99,4,2,101,107,4372,4375,59,1,9182,101,116,59,1,9140,97,114,101,110,116,104,101,115,105,115,59,1,9180,4,9,97,99,102,104,105,108,111,114,115,4413,4422,4426,4431,4435,4438,4448,4471,4561,114,116,105,97,108,68,59,1,8706,121,59,1,1055,114,59,3,55349,56595,105,59,1,934,59,1,928,117,115,77,105,110,117,115,59,1,177,4,2,105,112,4454,4467,110,99,97,114,101,112,108,97,110,101,59,1,8460,102,59,1,8473,4,4,59,101,105,111,4481,4483,4526,4531,1,10939,99,101,100,101,115,4,4,59,69,83,84,4498,4500,4507,4519,1,8826,113,117,97,108,59,1,10927,108,97,110,116,69,113,117,97,108,59,1,8828,105,108,100,101,59,1,8830,109,101,59,1,8243,4,2,100,112,4537,4543,117,99,116,59,1,8719,111,114,116,105,111,110,4,2,59,97,4555,4557,1,8759,108,59,1,8733,4,2,99,105,4567,4572,114,59,3,55349,56491,59,1,936,4,4,85,102,111,115,4585,4594,4599,4604,79,84,5,34,1,59,4592,1,34,114,59,3,55349,56596,112,102,59,1,8474,99,114,59,3,55349,56492,4,12,66,69,97,99,101,102,104,105,111,114,115,117,4636,4642,4650,4681,4704,4763,4767,4771,5047,5069,5081,5094,97,114,114,59,1,10512,71,5,174,1,59,4648,1,174,4,3,99,110,114,4658,4664,4668,117,116,101,59,1,340,103,59,1,10219,114,4,2,59,116,4675,4677,1,8608,108,59,1,10518,4,3,97,101,121,4689,4695,4701,114,111,110,59,1,344,100,105,108,59,1,342,59,1,1056,4,2,59,118,4710,4712,1,8476,101,114,115,101,4,2,69,85,4722,4748,4,2,108,113,4728,4736,101,109,101,110,116,59,1,8715,117,105,108,105,98,114,105,117,109,59,1,8651,112,69,113,117,105,108,105,98,114,105,117,109,59,1,10607,114,59,1,8476,111,59,1,929,103,104,116,4,8,65,67,68,70,84,85,86,97,4792,4840,4849,4905,4912,4972,5022,5040,4,2,110,114,4798,4811,103,108,101,66,114,97,99,107,101,116,59,1,10217,114,111,119,4,3,59,66,76,4822,4824,4829,1,8594,97,114,59,1,8677,101,102,116,65,114,114,111,119,59,1,8644,101,105,108,105,110,103,59,1,8969,111,4,2,117,119,4856,4869,98,108,101,66,114,97,99,107,101,116,59,1,10215,110,4,2,84,86,4876,4887,101,101,86,101,99,116,111,114,59,1,10589,101,99,116,111,114,4,2,59,66,4898,4900,1,8642,97,114,59,1,10581,108,111,111,114,59,1,8971,4,2,101,114,4918,4944,101,4,3,59,65,86,4927,4929,4936,1,8866,114,114,111,119,59,1,8614,101,99,116,111,114,59,1,10587,105,97,110,103,108,101,4,3,59,66,69,4958,4960,4965,1,8883,97,114,59,1,10704,113,117,97,108,59,1,8885,112,4,3,68,84,86,4981,4993,5004,111,119,110,86,101,99,116,111,114,59,1,10575,101,101,86,101,99,116,111,114,59,1,10588,101,99,116,111,114,4,2,59,66,5015,5017,1,8638,97,114,59,1,10580,101,99,116,111,114,4,2,59,66,5033,5035,1,8640,97,114,59,1,10579,114,114,111,119,59,1,8658,4,2,112,117,5053,5057,102,59,1,8477,110,100,73,109,112,108,105,101,115,59,1,10608,105,103,104,116,97,114,114,111,119,59,1,8667,4,2,99,104,5087,5091,114,59,1,8475,59,1,8625,108,101,68,101,108,97,121,101,100,59,1,10740,4,13,72,79,97,99,102,104,105,109,111,113,115,116,117,5134,5150,5157,5164,5198,5203,5259,5265,5277,5283,5374,5380,5385,4,2,67,99,5140,5146,72,99,121,59,1,1065,121,59,1,1064,70,84,99,121,59,1,1068,99,117,116,101,59,1,346,4,5,59,97,101,105,121,5176,5178,5184,5190,5195,1,10940,114,111,110,59,1,352,100,105,108,59,1,350,114,99,59,1,348,59,1,1057,114,59,3,55349,56598,111,114,116,4,4,68,76,82,85,5216,5227,5238,5250,111,119,110,65,114,114,111,119,59,1,8595,101,102,116,65,114,114,111,119,59,1,8592,105,103,104,116,65,114,114,111,119,59,1,8594,112,65,114,114,111,119,59,1,8593,103,109,97,59,1,931,97,108,108,67,105,114,99,108,101,59,1,8728,112,102,59,3,55349,56650,4,2,114,117,5289,5293,116,59,1,8730,97,114,101,4,4,59,73,83,85,5306,5308,5322,5367,1,9633,110,116,101,114,115,101,99,116,105,111,110,59,1,8851,117,4,2,98,112,5329,5347,115,101,116,4,2,59,69,5338,5340,1,8847,113,117,97,108,59,1,8849,101,114,115,101,116,4,2,59,69,5358,5360,1,8848,113,117,97,108,59,1,8850,110,105,111,110,59,1,8852,99,114,59,3,55349,56494,97,114,59,1,8902,4,4,98,99,109,112,5395,5420,5475,5478,4,2,59,115,5401,5403,1,8912,101,116,4,2,59,69,5411,5413,1,8912,113,117,97,108,59,1,8838,4,2,99,104,5426,5468,101,101,100,115,4,4,59,69,83,84,5440,5442,5449,5461,1,8827,113,117,97,108,59,1,10928,108,97,110,116,69,113,117,97,108,59,1,8829,105,108,100,101,59,1,8831,84,104,97,116,59,1,8715,59,1,8721,4,3,59,101,115,5486,5488,5507,1,8913,114,115,101,116,4,2,59,69,5498,5500,1,8835,113,117,97,108,59,1,8839,101,116,59,1,8913,4,11,72,82,83,97,99,102,104,105,111,114,115,5536,5546,5552,5567,5579,5602,5607,5655,5695,5701,5711,79,82,78,5,222,1,59,5544,1,222,65,68,69,59,1,8482,4,2,72,99,5558,5563,99,121,59,1,1035,121,59,1,1062,4,2,98,117,5573,5576,59,1,9,59,1,932,4,3,97,101,121,5587,5593,5599,114,111,110,59,1,356,100,105,108,59,1,354,59,1,1058,114,59,3,55349,56599,4,2,101,105,5613,5631,4,2,114,116,5619,5627,101,102,111,114,101,59,1,8756,97,59,1,920,4,2,99,110,5637,5647,107,83,112,97,99,101,59,3,8287,8202,83,112,97,99,101,59,1,8201,108,100,101,4,4,59,69,70,84,5668,5670,5677,5688,1,8764,113,117,97,108,59,1,8771,117,108,108,69,113,117,97,108,59,1,8773,105,108,100,101,59,1,8776,112,102,59,3,55349,56651,105,112,108,101,68,111,116,59,1,8411,4,2,99,116,5717,5722,114,59,3,55349,56495,114,111,107,59,1,358,4,14,97,98,99,100,102,103,109,110,111,112,114,115,116,117,5758,5789,5805,5823,5830,5835,5846,5852,5921,5937,6089,6095,6101,6108,4,2,99,114,5764,5774,117,116,101,5,218,1,59,5772,1,218,114,4,2,59,111,5781,5783,1,8607,99,105,114,59,1,10569,114,4,2,99,101,5796,5800,121,59,1,1038,118,101,59,1,364,4,2,105,121,5811,5820,114,99,5,219,1,59,5818,1,219,59,1,1059,98,108,97,99,59,1,368,114,59,3,55349,56600,114,97,118,101,5,217,1,59,5844,1,217,97,99,114,59,1,362,4,2,100,105,5858,5905,101,114,4,2,66,80,5866,5892,4,2,97,114,5872,5876,114,59,1,95,97,99,4,2,101,107,5884,5887,59,1,9183,101,116,59,1,9141,97,114,101,110,116,104,101,115,105,115,59,1,9181,111,110,4,2,59,80,5913,5915,1,8899,108,117,115,59,1,8846,4,2,103,112,5927,5932,111,110,59,1,370,102,59,3,55349,56652,4,8,65,68,69,84,97,100,112,115,5955,5985,5996,6009,6026,6033,6044,6075,114,114,111,119,4,3,59,66,68,5967,5969,5974,1,8593,97,114,59,1,10514,111,119,110,65,114,114,111,119,59,1,8645,111,119,110,65,114,114,111,119,59,1,8597,113,117,105,108,105,98,114,105,117,109,59,1,10606,101,101,4,2,59,65,6017,6019,1,8869,114,114,111,119,59,1,8613,114,114,111,119,59,1,8657,111,119,110,97,114,114,111,119,59,1,8661,101,114,4,2,76,82,6052,6063,101,102,116,65,114,114,111,119,59,1,8598,105,103,104,116,65,114,114,111,119,59,1,8599,105,4,2,59,108,6082,6084,1,978,111,110,59,1,933,105,110,103,59,1,366,99,114,59,3,55349,56496,105,108,100,101,59,1,360,109,108,5,220,1,59,6115,1,220,4,9,68,98,99,100,101,102,111,115,118,6137,6143,6148,6152,6166,6250,6255,6261,6267,97,115,104,59,1,8875,97,114,59,1,10987,121,59,1,1042,97,115,104,4,2,59,108,6161,6163,1,8873,59,1,10982,4,2,101,114,6172,6175,59,1,8897,4,3,98,116,121,6183,6188,6238,97,114,59,1,8214,4,2,59,105,6194,6196,1,8214,99,97,108,4,4,66,76,83,84,6209,6214,6220,6231,97,114,59,1,8739,105,110,101,59,1,124,101,112,97,114,97,116,111,114,59,1,10072,105,108,100,101,59,1,8768,84,104,105,110,83,112,97,99,101,59,1,8202,114,59,3,55349,56601,112,102,59,3,55349,56653,99,114,59,3,55349,56497,100,97,115,104,59,1,8874,4,5,99,101,102,111,115,6286,6292,6298,6303,6309,105,114,99,59,1,372,100,103,101,59,1,8896,114,59,3,55349,56602,112,102,59,3,55349,56654,99,114,59,3,55349,56498,4,4,102,105,111,115,6325,6330,6333,6339,114,59,3,55349,56603,59,1,926,112,102,59,3,55349,56655,99,114,59,3,55349,56499,4,9,65,73,85,97,99,102,111,115,117,6365,6370,6375,6380,6391,6405,6410,6416,6422,99,121,59,1,1071,99,121,59,1,1031,99,121,59,1,1070,99,117,116,101,5,221,1,59,6389,1,221,4,2,105,121,6397,6402,114,99,59,1,374,59,1,1067,114,59,3,55349,56604,112,102,59,3,55349,56656,99,114,59,3,55349,56500,109,108,59,1,376,4,8,72,97,99,100,101,102,111,115,6445,6450,6457,6472,6477,6501,6505,6510,99,121,59,1,1046,99,117,116,101,59,1,377,4,2,97,121,6463,6469,114,111,110,59,1,381,59,1,1047,111,116,59,1,379,4,2,114,116,6483,6497,111,87,105,100,116,104,83,112,97,99,101,59,1,8203,97,59,1,918,114,59,1,8488,112,102,59,1,8484,99,114,59,3,55349,56501,4,16,97,98,99,101,102,103,108,109,110,111,112,114,115,116,117,119,6550,6561,6568,6612,6622,6634,6645,6672,6699,6854,6870,6923,6933,6963,6974,6983,99,117,116,101,5,225,1,59,6559,1,225,114,101,118,101,59,1,259,4,6,59,69,100,105,117,121,6582,6584,6588,6591,6600,6609,1,8766,59,3,8766,819,59,1,8767,114,99,5,226,1,59,6598,1,226,116,101,5,180,1,59,6607,1,180,59,1,1072,108,105,103,5,230,1,59,6620,1,230,4,2,59,114,6628,6630,1,8289,59,3,55349,56606,114,97,118,101,5,224,1,59,6643,1,224,4,2,101,112,6651,6667,4,2,102,112,6657,6663,115,121,109,59,1,8501,104,59,1,8501,104,97,59,1,945,4,2,97,112,6678,6692,4,2,99,108,6684,6688,114,59,1,257,103,59,1,10815,5,38,1,59,6697,1,38,4,2,100,103,6705,6737,4,5,59,97,100,115,118,6717,6719,6724,6727,6734,1,8743,110,100,59,1,10837,59,1,10844,108,111,112,101,59,1,10840,59,1,10842,4,7,59,101,108,109,114,115,122,6753,6755,6758,6762,6814,6835,6848,1,8736,59,1,10660,101,59,1,8736,115,100,4,2,59,97,6770,6772,1,8737,4,8,97,98,99,100,101,102,103,104,6790,6793,6796,6799,6802,6805,6808,6811,59,1,10664,59,1,10665,59,1,10666,59,1,10667,59,1,10668,59,1,10669,59,1,10670,59,1,10671,116,4,2,59,118,6821,6823,1,8735,98,4,2,59,100,6830,6832,1,8894,59,1,10653,4,2,112,116,6841,6845,104,59,1,8738,59,1,197,97,114,114,59,1,9084,4,2,103,112,6860,6865,111,110,59,1,261,102,59,3,55349,56658,4,7,59,69,97,101,105,111,112,6886,6888,6891,6897,6900,6904,6908,1,8776,59,1,10864,99,105,114,59,1,10863,59,1,8778,100,59,1,8779,115,59,1,39,114,111,120,4,2,59,101,6917,6919,1,8776,113,59,1,8778,105,110,103,5,229,1,59,6931,1,229,4,3,99,116,121,6941,6946,6949,114,59,3,55349,56502,59,1,42,109,112,4,2,59,101,6957,6959,1,8776,113,59,1,8781,105,108,100,101,5,227,1,59,6972,1,227,109,108,5,228,1,59,6981,1,228,4,2,99,105,6989,6997,111,110,105,110,116,59,1,8755,110,116,59,1,10769,4,16,78,97,98,99,100,101,102,105,107,108,110,111,112,114,115,117,7036,7041,7119,7135,7149,7155,7219,7224,7347,7354,7463,7489,7786,7793,7814,7866,111,116,59,1,10989,4,2,99,114,7047,7094,107,4,4,99,101,112,115,7058,7064,7073,7080,111,110,103,59,1,8780,112,115,105,108,111,110,59,1,1014,114,105,109,101,59,1,8245,105,109,4,2,59,101,7088,7090,1,8765,113,59,1,8909,4,2,118,119,7100,7105,101,101,59,1,8893,101,100,4,2,59,103,7113,7115,1,8965,101,59,1,8965,114,107,4,2,59,116,7127,7129,1,9141,98,114,107,59,1,9142,4,2,111,121,7141,7146,110,103,59,1,8780,59,1,1073,113,117,111,59,1,8222,4,5,99,109,112,114,116,7167,7181,7188,7193,7199,97,117,115,4,2,59,101,7176,7178,1,8757,59,1,8757,112,116,121,118,59,1,10672,115,105,59,1,1014,110,111,117,59,1,8492,4,3,97,104,119,7207,7210,7213,59,1,946,59,1,8502,101,101,110,59,1,8812,114,59,3,55349,56607,103,4,7,99,111,115,116,117,118,119,7241,7262,7288,7305,7328,7335,7340,4,3,97,105,117,7249,7253,7258,112,59,1,8898,114,99,59,1,9711,112,59,1,8899,4,3,100,112,116,7270,7275,7281,111,116,59,1,10752,108,117,115,59,1,10753,105,109,101,115,59,1,10754,4,2,113,116,7294,7300,99,117,112,59,1,10758,97,114,59,1,9733,114,105,97,110,103,108,101,4,2,100,117,7318,7324,111,119,110,59,1,9661,112,59,1,9651,112,108,117,115,59,1,10756,101,101,59,1,8897,101,100,103,101,59,1,8896,97,114,111,119,59,1,10509,4,3,97,107,111,7362,7436,7458,4,2,99,110,7368,7432,107,4,3,108,115,116,7377,7386,7394,111,122,101,110,103,101,59,1,10731,113,117,97,114,101,59,1,9642,114,105,97,110,103,108,101,4,4,59,100,108,114,7411,7413,7419,7425,1,9652,111,119,110,59,1,9662,101,102,116,59,1,9666,105,103,104,116,59,1,9656,107,59,1,9251,4,2,49,51,7442,7454,4,2,50,52,7448,7451,59,1,9618,59,1,9617,52,59,1,9619,99,107,59,1,9608,4,2,101,111,7469,7485,4,2,59,113,7475,7478,3,61,8421,117,105,118,59,3,8801,8421,116,59,1,8976,4,4,112,116,119,120,7499,7504,7517,7523,102,59,3,55349,56659,4,2,59,116,7510,7512,1,8869,111,109,59,1,8869,116,105,101,59,1,8904,4,12,68,72,85,86,98,100,104,109,112,116,117,118,7549,7571,7597,7619,7655,7660,7682,7708,7715,7721,7728,7750,4,4,76,82,108,114,7559,7562,7565,7568,59,1,9559,59,1,9556,59,1,9558,59,1,9555,4,5,59,68,85,100,117,7583,7585,7588,7591,7594,1,9552,59,1,9574,59,1,9577,59,1,9572,59,1,9575,4,4,76,82,108,114,7607,7610,7613,7616,59,1,9565,59,1,9562,59,1,9564,59,1,9561,4,7,59,72,76,82,104,108,114,7635,7637,7640,7643,7646,7649,7652,1,9553,59,1,9580,59,1,9571,59,1,9568,59,1,9579,59,1,9570,59,1,9567,111,120,59,1,10697,4,4,76,82,108,114,7670,7673,7676,7679,59,1,9557,59,1,9554,59,1,9488,59,1,9484,4,5,59,68,85,100,117,7694,7696,7699,7702,7705,1,9472,59,1,9573,59,1,9576,59,1,9516,59,1,9524,105,110,117,115,59,1,8863,108,117,115,59,1,8862,105,109,101,115,59,1,8864,4,4,76,82,108,114,7738,7741,7744,7747,59,1,9563,59,1,9560,59,1,9496,59,1,9492,4,7,59,72,76,82,104,108,114,7766,7768,7771,7774,7777,7780,7783,1,9474,59,1,9578,59,1,9569,59,1,9566,59,1,9532,59,1,9508,59,1,9500,114,105,109,101,59,1,8245,4,2,101,118,7799,7804,118,101,59,1,728,98,97,114,5,166,1,59,7812,1,166,4,4,99,101,105,111,7824,7829,7834,7846,114,59,3,55349,56503,109,105,59,1,8271,109,4,2,59,101,7841,7843,1,8765,59,1,8909,108,4,3,59,98,104,7855,7857,7860,1,92,59,1,10693,115,117,98,59,1,10184,4,2,108,109,7872,7885,108,4,2,59,101,7879,7881,1,8226,116,59,1,8226,112,4,3,59,69,101,7894,7896,7899,1,8782,59,1,10926,4,2,59,113,7905,7907,1,8783,59,1,8783,4,15,97,99,100,101,102,104,105,108,111,114,115,116,117,119,121,7942,8021,8075,8080,8121,8126,8157,8279,8295,8430,8446,8485,8491,8707,8726,4,3,99,112,114,7950,7956,8007,117,116,101,59,1,263,4,6,59,97,98,99,100,115,7970,7972,7977,7984,7998,8003,1,8745,110,100,59,1,10820,114,99,117,112,59,1,10825,4,2,97,117,7990,7994,112,59,1,10827,112,59,1,10823,111,116,59,1,10816,59,3,8745,65024,4,2,101,111,8013,8017,116,59,1,8257,110,59,1,711,4,4,97,101,105,117,8031,8046,8056,8061,4,2,112,114,8037,8041,115,59,1,10829,111,110,59,1,269,100,105,108,5,231,1,59,8054,1,231,114,99,59,1,265,112,115,4,2,59,115,8069,8071,1,10828,109,59,1,10832,111,116,59,1,267,4,3,100,109,110,8088,8097,8104,105,108,5,184,1,59,8095,1,184,112,116,121,118,59,1,10674,116,5,162,2,59,101,8112,8114,1,162,114,100,111,116,59,1,183,114,59,3,55349,56608,4,3,99,101,105,8134,8138,8154,121,59,1,1095,99,107,4,2,59,109,8146,8148,1,10003,97,114,107,59,1,10003,59,1,967,114,4,7,59,69,99,101,102,109,115,8174,8176,8179,8258,8261,8268,8273,1,9675,59,1,10691,4,3,59,101,108,8187,8189,8193,1,710,113,59,1,8791,101,4,2,97,100,8200,8223,114,114,111,119,4,2,108,114,8210,8216,101,102,116,59,1,8634,105,103,104,116,59,1,8635,4,5,82,83,97,99,100,8235,8238,8241,8246,8252,59,1,174,59,1,9416,115,116,59,1,8859,105,114,99,59,1,8858,97,115,104,59,1,8861,59,1,8791,110,105,110,116,59,1,10768,105,100,59,1,10991,99,105,114,59,1,10690,117,98,115,4,2,59,117,8288,8290,1,9827,105,116,59,1,9827,4,4,108,109,110,112,8305,8326,8376,8400,111,110,4,2,59,101,8313,8315,1,58,4,2,59,113,8321,8323,1,8788,59,1,8788,4,2,109,112,8332,8344,97,4,2,59,116,8339,8341,1,44,59,1,64,4,3,59,102,108,8352,8354,8358,1,8705,110,59,1,8728,101,4,2,109,120,8365,8371,101,110,116,59,1,8705,101,115,59,1,8450,4,2,103,105,8382,8395,4,2,59,100,8388,8390,1,8773,111,116,59,1,10861,110,116,59,1,8750,4,3,102,114,121,8408,8412,8417,59,3,55349,56660,111,100,59,1,8720,5,169,2,59,115,8424,8426,1,169,114,59,1,8471,4,2,97,111,8436,8441,114,114,59,1,8629,115,115,59,1,10007,4,2,99,117,8452,8457,114,59,3,55349,56504,4,2,98,112,8463,8474,4,2,59,101,8469,8471,1,10959,59,1,10961,4,2,59,101,8480,8482,1,10960,59,1,10962,100,111,116,59,1,8943,4,7,100,101,108,112,114,118,119,8507,8522,8536,8550,8600,8697,8702,97,114,114,4,2,108,114,8516,8519,59,1,10552,59,1,10549,4,2,112,115,8528,8532,114,59,1,8926,99,59,1,8927,97,114,114,4,2,59,112,8545,8547,1,8630,59,1,10557,4,6,59,98,99,100,111,115,8564,8566,8573,8587,8592,8596,1,8746,114,99,97,112,59,1,10824,4,2,97,117,8579,8583,112,59,1,10822,112,59,1,10826,111,116,59,1,8845,114,59,1,10821,59,3,8746,65024,4,4,97,108,114,118,8610,8623,8663,8672,114,114,4,2,59,109,8618,8620,1,8631,59,1,10556,121,4,3,101,118,119,8632,8651,8656,113,4,2,112,115,8639,8645,114,101,99,59,1,8926,117,99,99,59,1,8927,101,101,59,1,8910,101,100,103,101,59,1,8911,101,110,5,164,1,59,8670,1,164,101,97,114,114,111,119,4,2,108,114,8684,8690,101,102,116,59,1,8630,105,103,104,116,59,1,8631,101,101,59,1,8910,101,100,59,1,8911,4,2,99,105,8713,8721,111,110,105,110,116,59,1,8754,110,116,59,1,8753,108,99,116,121,59,1,9005,4,19,65,72,97,98,99,100,101,102,104,105,106,108,111,114,115,116,117,119,122,8773,8778,8783,8821,8839,8854,8887,8914,8930,8944,9036,9041,9058,9197,9227,9258,9281,9297,9305,114,114,59,1,8659,97,114,59,1,10597,4,4,103,108,114,115,8793,8799,8805,8809,103,101,114,59,1,8224,101,116,104,59,1,8504,114,59,1,8595,104,4,2,59,118,8816,8818,1,8208,59,1,8867,4,2,107,108,8827,8834,97,114,111,119,59,1,10511,97,99,59,1,733,4,2,97,121,8845,8851,114,111,110,59,1,271,59,1,1076,4,3,59,97,111,8862,8864,8880,1,8518,4,2,103,114,8870,8876,103,101,114,59,1,8225,114,59,1,8650,116,115,101,113,59,1,10871,4,3,103,108,109,8895,8902,8907,5,176,1,59,8900,1,176,116,97,59,1,948,112,116,121,118,59,1,10673,4,2,105,114,8920,8926,115,104,116,59,1,10623,59,3,55349,56609,97,114,4,2,108,114,8938,8941,59,1,8643,59,1,8642,4,5,97,101,103,115,118,8956,8986,8989,8996,9001,109,4,3,59,111,115,8965,8967,8983,1,8900,110,100,4,2,59,115,8975,8977,1,8900,117,105,116,59,1,9830,59,1,9830,59,1,168,97,109,109,97,59,1,989,105,110,59,1,8946,4,3,59,105,111,9009,9011,9031,1,247,100,101,5,247,2,59,111,9020,9022,1,247,110,116,105,109,101,115,59,1,8903,110,120,59,1,8903,99,121,59,1,1106,99,4,2,111,114,9048,9053,114,110,59,1,8990,111,112,59,1,8973,4,5,108,112,116,117,119,9070,9076,9081,9130,9144,108,97,114,59,1,36,102,59,3,55349,56661,4,5,59,101,109,112,115,9093,9095,9109,9116,9122,1,729,113,4,2,59,100,9102,9104,1,8784,111,116,59,1,8785,105,110,117,115,59,1,8760,108,117,115,59,1,8724,113,117,97,114,101,59,1,8865,98,108,101,98,97,114,119,101,100,103,101,59,1,8966,110,4,3,97,100,104,9153,9160,9172,114,114,111,119,59,1,8595,111,119,110,97,114,114,111,119,115,59,1,8650,97,114,112,111,111,110,4,2,108,114,9184,9190,101,102,116,59,1,8643,105,103,104,116,59,1,8642,4,2,98,99,9203,9211,107,97,114,111,119,59,1,10512,4,2,111,114,9217,9222,114,110,59,1,8991,111,112,59,1,8972,4,3,99,111,116,9235,9248,9252,4,2,114,121,9241,9245,59,3,55349,56505,59,1,1109,108,59,1,10742,114,111,107,59,1,273,4,2,100,114,9264,9269,111,116,59,1,8945,105,4,2,59,102,9276,9278,1,9663,59,1,9662,4,2,97,104,9287,9292,114,114,59,1,8693,97,114,59,1,10607,97,110,103,108,101,59,1,10662,4,2,99,105,9311,9315,121,59,1,1119,103,114,97,114,114,59,1,10239,4,18,68,97,99,100,101,102,103,108,109,110,111,112,113,114,115,116,117,120,9361,9376,9398,9439,9444,9447,9462,9495,9531,9585,9598,9614,9659,9755,9771,9792,9808,9826,4,2,68,111,9367,9372,111,116,59,1,10871,116,59,1,8785,4,2,99,115,9382,9392,117,116,101,5,233,1,59,9390,1,233,116,101,114,59,1,10862,4,4,97,105,111,121,9408,9414,9430,9436,114,111,110,59,1,283,114,4,2,59,99,9421,9423,1,8790,5,234,1,59,9428,1,234,108,111,110,59,1,8789,59,1,1101,111,116,59,1,279,59,1,8519,4,2,68,114,9453,9458,111,116,59,1,8786,59,3,55349,56610,4,3,59,114,115,9470,9472,9482,1,10906,97,118,101,5,232,1,59,9480,1,232,4,2,59,100,9488,9490,1,10902,111,116,59,1,10904,4,4,59,105,108,115,9505,9507,9515,9518,1,10905,110,116,101,114,115,59,1,9191,59,1,8467,4,2,59,100,9524,9526,1,10901,111,116,59,1,10903,4,3,97,112,115,9539,9544,9564,99,114,59,1,275,116,121,4,3,59,115,118,9554,9556,9561,1,8709,101,116,59,1,8709,59,1,8709,112,4,2,49,59,9571,9583,4,2,51,52,9577,9580,59,1,8196,59,1,8197,1,8195,4,2,103,115,9591,9594,59,1,331,112,59,1,8194,4,2,103,112,9604,9609,111,110,59,1,281,102,59,3,55349,56662,4,3,97,108,115,9622,9635,9640,114,4,2,59,115,9629,9631,1,8917,108,59,1,10723,117,115,59,1,10865,105,4,3,59,108,118,9649,9651,9656,1,949,111,110,59,1,949,59,1,1013,4,4,99,115,117,118,9669,9686,9716,9747,4,2,105,111,9675,9680,114,99,59,1,8790,108,111,110,59,1,8789,4,2,105,108,9692,9696,109,59,1,8770,97,110,116,4,2,103,108,9705,9710,116,114,59,1,10902,101,115,115,59,1,10901,4,3,97,101,105,9724,9729,9734,108,115,59,1,61,115,116,59,1,8799,118,4,2,59,68,9741,9743,1,8801,68,59,1,10872,112,97,114,115,108,59,1,10725,4,2,68,97,9761,9766,111,116,59,1,8787,114,114,59,1,10609,4,3,99,100,105,9779,9783,9788,114,59,1,8495,111,116,59,1,8784,109,59,1,8770,4,2,97,104,9798,9801,59,1,951,5,240,1,59,9806,1,240,4,2,109,114,9814,9822,108,5,235,1,59,9820,1,235,111,59,1,8364,4,3,99,105,112,9834,9838,9843,108,59,1,33,115,116,59,1,8707,4,2,101,111,9849,9859,99,116,97,116,105,111,110,59,1,8496,110,101,110,116,105,97,108,101,59,1,8519,4,12,97,99,101,102,105,106,108,110,111,112,114,115,9896,9910,9914,9921,9954,9960,9967,9989,9994,10027,10036,10164,108,108,105,110,103,100,111,116,115,101,113,59,1,8786,121,59,1,1092,109,97,108,101,59,1,9792,4,3,105,108,114,9929,9935,9950,108,105,103,59,1,64259,4,2,105,108,9941,9945,103,59,1,64256,105,103,59,1,64260,59,3,55349,56611,108,105,103,59,1,64257,108,105,103,59,3,102,106,4,3,97,108,116,9975,9979,9984,116,59,1,9837,105,103,59,1,64258,110,115,59,1,9649,111,102,59,1,402,4,2,112,114,1e4,10005,102,59,3,55349,56663,4,2,97,107,10011,10016,108,108,59,1,8704,4,2,59,118,10022,10024,1,8916,59,1,10969,97,114,116,105,110,116,59,1,10765,4,2,97,111,10042,10159,4,2,99,115,10048,10155,4,6,49,50,51,52,53,55,10062,10102,10114,10135,10139,10151,4,6,50,51,52,53,54,56,10076,10083,10086,10093,10096,10099,5,189,1,59,10081,1,189,59,1,8531,5,188,1,59,10091,1,188,59,1,8533,59,1,8537,59,1,8539,4,2,51,53,10108,10111,59,1,8532,59,1,8534,4,3,52,53,56,10122,10129,10132,5,190,1,59,10127,1,190,59,1,8535,59,1,8540,53,59,1,8536,4,2,54,56,10145,10148,59,1,8538,59,1,8541,56,59,1,8542,108,59,1,8260,119,110,59,1,8994,99,114,59,3,55349,56507,4,17,69,97,98,99,100,101,102,103,105,106,108,110,111,114,115,116,118,10206,10217,10247,10254,10268,10273,10358,10363,10374,10380,10385,10406,10458,10464,10470,10497,10610,4,2,59,108,10212,10214,1,8807,59,1,10892,4,3,99,109,112,10225,10231,10244,117,116,101,59,1,501,109,97,4,2,59,100,10239,10241,1,947,59,1,989,59,1,10886,114,101,118,101,59,1,287,4,2,105,121,10260,10265,114,99,59,1,285,59,1,1075,111,116,59,1,289,4,4,59,108,113,115,10283,10285,10288,10308,1,8805,59,1,8923,4,3,59,113,115,10296,10298,10301,1,8805,59,1,8807,108,97,110,116,59,1,10878,4,4,59,99,100,108,10318,10320,10324,10345,1,10878,99,59,1,10921,111,116,4,2,59,111,10332,10334,1,10880,4,2,59,108,10340,10342,1,10882,59,1,10884,4,2,59,101,10351,10354,3,8923,65024,115,59,1,10900,114,59,3,55349,56612,4,2,59,103,10369,10371,1,8811,59,1,8921,109,101,108,59,1,8503,99,121,59,1,1107,4,4,59,69,97,106,10395,10397,10400,10403,1,8823,59,1,10898,59,1,10917,59,1,10916,4,4,69,97,101,115,10416,10419,10434,10453,59,1,8809,112,4,2,59,112,10426,10428,1,10890,114,111,120,59,1,10890,4,2,59,113,10440,10442,1,10888,4,2,59,113,10448,10450,1,10888,59,1,8809,105,109,59,1,8935,112,102,59,3,55349,56664,97,118,101,59,1,96,4,2,99,105,10476,10480,114,59,1,8458,109,4,3,59,101,108,10489,10491,10494,1,8819,59,1,10894,59,1,10896,5,62,6,59,99,100,108,113,114,10512,10514,10527,10532,10538,10545,1,62,4,2,99,105,10520,10523,59,1,10919,114,59,1,10874,111,116,59,1,8919,80,97,114,59,1,10645,117,101,115,116,59,1,10876,4,5,97,100,101,108,115,10557,10574,10579,10599,10605,4,2,112,114,10563,10570,112,114,111,120,59,1,10886,114,59,1,10616,111,116,59,1,8919,113,4,2,108,113,10586,10592,101,115,115,59,1,8923,108,101,115,115,59,1,10892,101,115,115,59,1,8823,105,109,59,1,8819,4,2,101,110,10616,10626,114,116,110,101,113,113,59,3,8809,65024,69,59,3,8809,65024,4,10,65,97,98,99,101,102,107,111,115,121,10653,10658,10713,10718,10724,10760,10765,10786,10850,10875,114,114,59,1,8660,4,4,105,108,109,114,10668,10674,10678,10684,114,115,112,59,1,8202,102,59,1,189,105,108,116,59,1,8459,4,2,100,114,10690,10695,99,121,59,1,1098,4,3,59,99,119,10703,10705,10710,1,8596,105,114,59,1,10568,59,1,8621,97,114,59,1,8463,105,114,99,59,1,293,4,3,97,108,114,10732,10748,10754,114,116,115,4,2,59,117,10741,10743,1,9829,105,116,59,1,9829,108,105,112,59,1,8230,99,111,110,59,1,8889,114,59,3,55349,56613,115,4,2,101,119,10772,10779,97,114,111,119,59,1,10533,97,114,111,119,59,1,10534,4,5,97,109,111,112,114,10798,10803,10809,10839,10844,114,114,59,1,8703,116,104,116,59,1,8763,107,4,2,108,114,10816,10827,101,102,116,97,114,114,111,119,59,1,8617,105,103,104,116,97,114,114,111,119,59,1,8618,102,59,3,55349,56665,98,97,114,59,1,8213,4,3,99,108,116,10858,10863,10869,114,59,3,55349,56509,97,115,104,59,1,8463,114,111,107,59,1,295,4,2,98,112,10881,10887,117,108,108,59,1,8259,104,101,110,59,1,8208,4,15,97,99,101,102,103,105,106,109,110,111,112,113,115,116,117,10925,10936,10958,10977,10990,11001,11039,11045,11101,11192,11220,11226,11237,11285,11299,99,117,116,101,5,237,1,59,10934,1,237,4,3,59,105,121,10944,10946,10955,1,8291,114,99,5,238,1,59,10953,1,238,59,1,1080,4,2,99,120,10964,10968,121,59,1,1077,99,108,5,161,1,59,10975,1,161,4,2,102,114,10983,10986,59,1,8660,59,3,55349,56614,114,97,118,101,5,236,1,59,10999,1,236,4,4,59,105,110,111,11011,11013,11028,11034,1,8520,4,2,105,110,11019,11024,110,116,59,1,10764,116,59,1,8749,102,105,110,59,1,10716,116,97,59,1,8489,108,105,103,59,1,307,4,3,97,111,112,11053,11092,11096,4,3,99,103,116,11061,11065,11088,114,59,1,299,4,3,101,108,112,11073,11076,11082,59,1,8465,105,110,101,59,1,8464,97,114,116,59,1,8465,104,59,1,305,102,59,1,8887,101,100,59,1,437,4,5,59,99,102,111,116,11113,11115,11121,11136,11142,1,8712,97,114,101,59,1,8453,105,110,4,2,59,116,11129,11131,1,8734,105,101,59,1,10717,100,111,116,59,1,305,4,5,59,99,101,108,112,11154,11156,11161,11179,11186,1,8747,97,108,59,1,8890,4,2,103,114,11167,11173,101,114,115,59,1,8484,99,97,108,59,1,8890,97,114,104,107,59,1,10775,114,111,100,59,1,10812,4,4,99,103,112,116,11202,11206,11211,11216,121,59,1,1105,111,110,59,1,303,102,59,3,55349,56666,97,59,1,953,114,111,100,59,1,10812,117,101,115,116,5,191,1,59,11235,1,191,4,2,99,105,11243,11248,114,59,3,55349,56510,110,4,5,59,69,100,115,118,11261,11263,11266,11271,11282,1,8712,59,1,8953,111,116,59,1,8949,4,2,59,118,11277,11279,1,8948,59,1,8947,59,1,8712,4,2,59,105,11291,11293,1,8290,108,100,101,59,1,297,4,2,107,109,11305,11310,99,121,59,1,1110,108,5,239,1,59,11316,1,239,4,6,99,102,109,111,115,117,11332,11346,11351,11357,11363,11380,4,2,105,121,11338,11343,114,99,59,1,309,59,1,1081,114,59,3,55349,56615,97,116,104,59,1,567,112,102,59,3,55349,56667,4,2,99,101,11369,11374,114,59,3,55349,56511,114,99,121,59,1,1112,107,99,121,59,1,1108,4,8,97,99,102,103,104,106,111,115,11404,11418,11433,11438,11445,11450,11455,11461,112,112,97,4,2,59,118,11413,11415,1,954,59,1,1008,4,2,101,121,11424,11430,100,105,108,59,1,311,59,1,1082,114,59,3,55349,56616,114,101,101,110,59,1,312,99,121,59,1,1093,99,121,59,1,1116,112,102,59,3,55349,56668,99,114,59,3,55349,56512,4,23,65,66,69,72,97,98,99,100,101,102,103,104,106,108,109,110,111,112,114,115,116,117,118,11515,11538,11544,11555,11560,11721,11780,11818,11868,12136,12160,12171,12203,12208,12246,12275,12327,12509,12523,12569,12641,12732,12752,4,3,97,114,116,11523,11528,11532,114,114,59,1,8666,114,59,1,8656,97,105,108,59,1,10523,97,114,114,59,1,10510,4,2,59,103,11550,11552,1,8806,59,1,10891,97,114,59,1,10594,4,9,99,101,103,109,110,112,113,114,116,11580,11586,11594,11600,11606,11624,11627,11636,11694,117,116,101,59,1,314,109,112,116,121,118,59,1,10676,114,97,110,59,1,8466,98,100,97,59,1,955,103,4,3,59,100,108,11615,11617,11620,1,10216,59,1,10641,101,59,1,10216,59,1,10885,117,111,5,171,1,59,11634,1,171,114,4,8,59,98,102,104,108,112,115,116,11655,11657,11669,11673,11677,11681,11685,11690,1,8592,4,2,59,102,11663,11665,1,8676,115,59,1,10527,115,59,1,10525,107,59,1,8617,112,59,1,8619,108,59,1,10553,105,109,59,1,10611,108,59,1,8610,4,3,59,97,101,11702,11704,11709,1,10923,105,108,59,1,10521,4,2,59,115,11715,11717,1,10925,59,3,10925,65024,4,3,97,98,114,11729,11734,11739,114,114,59,1,10508,114,107,59,1,10098,4,2,97,107,11745,11758,99,4,2,101,107,11752,11755,59,1,123,59,1,91,4,2,101,115,11764,11767,59,1,10635,108,4,2,100,117,11774,11777,59,1,10639,59,1,10637,4,4,97,101,117,121,11790,11796,11811,11815,114,111,110,59,1,318,4,2,100,105,11802,11807,105,108,59,1,316,108,59,1,8968,98,59,1,123,59,1,1083,4,4,99,113,114,115,11828,11832,11845,11864,97,59,1,10550,117,111,4,2,59,114,11840,11842,1,8220,59,1,8222,4,2,100,117,11851,11857,104,97,114,59,1,10599,115,104,97,114,59,1,10571,104,59,1,8626,4,5,59,102,103,113,115,11880,11882,12008,12011,12031,1,8804,116,4,5,97,104,108,114,116,11895,11913,11935,11947,11996,114,114,111,119,4,2,59,116,11905,11907,1,8592,97,105,108,59,1,8610,97,114,112,111,111,110,4,2,100,117,11925,11931,111,119,110,59,1,8637,112,59,1,8636,101,102,116,97,114,114,111,119,115,59,1,8647,105,103,104,116,4,3,97,104,115,11959,11974,11984,114,114,111,119,4,2,59,115,11969,11971,1,8596,59,1,8646,97,114,112,111,111,110,115,59,1,8651,113,117,105,103,97,114,114,111,119,59,1,8621,104,114,101,101,116,105,109,101,115,59,1,8907,59,1,8922,4,3,59,113,115,12019,12021,12024,1,8804,59,1,8806,108,97,110,116,59,1,10877,4,5,59,99,100,103,115,12043,12045,12049,12070,12083,1,10877,99,59,1,10920,111,116,4,2,59,111,12057,12059,1,10879,4,2,59,114,12065,12067,1,10881,59,1,10883,4,2,59,101,12076,12079,3,8922,65024,115,59,1,10899,4,5,97,100,101,103,115,12095,12103,12108,12126,12131,112,112,114,111,120,59,1,10885,111,116,59,1,8918,113,4,2,103,113,12115,12120,116,114,59,1,8922,103,116,114,59,1,10891,116,114,59,1,8822,105,109,59,1,8818,4,3,105,108,114,12144,12150,12156,115,104,116,59,1,10620,111,111,114,59,1,8970,59,3,55349,56617,4,2,59,69,12166,12168,1,8822,59,1,10897,4,2,97,98,12177,12198,114,4,2,100,117,12184,12187,59,1,8637,4,2,59,108,12193,12195,1,8636,59,1,10602,108,107,59,1,9604,99,121,59,1,1113,4,5,59,97,99,104,116,12220,12222,12227,12235,12241,1,8810,114,114,59,1,8647,111,114,110,101,114,59,1,8990,97,114,100,59,1,10603,114,105,59,1,9722,4,2,105,111,12252,12258,100,111,116,59,1,320,117,115,116,4,2,59,97,12267,12269,1,9136,99,104,101,59,1,9136,4,4,69,97,101,115,12285,12288,12303,12322,59,1,8808,112,4,2,59,112,12295,12297,1,10889,114,111,120,59,1,10889,4,2,59,113,12309,12311,1,10887,4,2,59,113,12317,12319,1,10887,59,1,8808,105,109,59,1,8934,4,8,97,98,110,111,112,116,119,122,12345,12359,12364,12421,12446,12467,12474,12490,4,2,110,114,12351,12355,103,59,1,10220,114,59,1,8701,114,107,59,1,10214,103,4,3,108,109,114,12373,12401,12409,101,102,116,4,2,97,114,12382,12389,114,114,111,119,59,1,10229,105,103,104,116,97,114,114,111,119,59,1,10231,97,112,115,116,111,59,1,10236,105,103,104,116,97,114,114,111,119,59,1,10230,112,97,114,114,111,119,4,2,108,114,12433,12439,101,102,116,59,1,8619,105,103,104,116,59,1,8620,4,3,97,102,108,12454,12458,12462,114,59,1,10629,59,3,55349,56669,117,115,59,1,10797,105,109,101,115,59,1,10804,4,2,97,98,12480,12485,115,116,59,1,8727,97,114,59,1,95,4,3,59,101,102,12498,12500,12506,1,9674,110,103,101,59,1,9674,59,1,10731,97,114,4,2,59,108,12517,12519,1,40,116,59,1,10643,4,5,97,99,104,109,116,12535,12540,12548,12561,12564,114,114,59,1,8646,111,114,110,101,114,59,1,8991,97,114,4,2,59,100,12556,12558,1,8651,59,1,10605,59,1,8206,114,105,59,1,8895,4,6,97,99,104,105,113,116,12583,12589,12594,12597,12614,12635,113,117,111,59,1,8249,114,59,3,55349,56513,59,1,8624,109,4,3,59,101,103,12606,12608,12611,1,8818,59,1,10893,59,1,10895,4,2,98,117,12620,12623,59,1,91,111,4,2,59,114,12630,12632,1,8216,59,1,8218,114,111,107,59,1,322,5,60,8,59,99,100,104,105,108,113,114,12660,12662,12675,12680,12686,12692,12698,12705,1,60,4,2,99,105,12668,12671,59,1,10918,114,59,1,10873,111,116,59,1,8918,114,101,101,59,1,8907,109,101,115,59,1,8905,97,114,114,59,1,10614,117,101,115,116,59,1,10875,4,2,80,105,12711,12716,97,114,59,1,10646,4,3,59,101,102,12724,12726,12729,1,9667,59,1,8884,59,1,9666,114,4,2,100,117,12739,12746,115,104,97,114,59,1,10570,104,97,114,59,1,10598,4,2,101,110,12758,12768,114,116,110,101,113,113,59,3,8808,65024,69,59,3,8808,65024,4,14,68,97,99,100,101,102,104,105,108,110,111,112,115,117,12803,12809,12893,12908,12914,12928,12933,12937,13011,13025,13032,13049,13052,13069,68,111,116,59,1,8762,4,4,99,108,112,114,12819,12827,12849,12887,114,5,175,1,59,12825,1,175,4,2,101,116,12833,12836,59,1,9794,4,2,59,101,12842,12844,1,10016,115,101,59,1,10016,4,2,59,115,12855,12857,1,8614,116,111,4,4,59,100,108,117,12869,12871,12877,12883,1,8614,111,119,110,59,1,8615,101,102,116,59,1,8612,112,59,1,8613,107,101,114,59,1,9646,4,2,111,121,12899,12905,109,109,97,59,1,10793,59,1,1084,97,115,104,59,1,8212,97,115,117,114,101,100,97,110,103,108,101,59,1,8737,114,59,3,55349,56618,111,59,1,8487,4,3,99,100,110,12945,12954,12985,114,111,5,181,1,59,12952,1,181,4,4,59,97,99,100,12964,12966,12971,12976,1,8739,115,116,59,1,42,105,114,59,1,10992,111,116,5,183,1,59,12983,1,183,117,115,4,3,59,98,100,12995,12997,13e3,1,8722,59,1,8863,4,2,59,117,13006,13008,1,8760,59,1,10794,4,2,99,100,13017,13021,112,59,1,10971,114,59,1,8230,112,108,117,115,59,1,8723,4,2,100,112,13038,13044,101,108,115,59,1,8871,102,59,3,55349,56670,59,1,8723,4,2,99,116,13058,13063,114,59,3,55349,56514,112,111,115,59,1,8766,4,3,59,108,109,13077,13079,13087,1,956,116,105,109,97,112,59,1,8888,97,112,59,1,8888,4,24,71,76,82,86,97,98,99,100,101,102,103,104,105,106,108,109,111,112,114,115,116,117,118,119,13142,13165,13217,13229,13247,13330,13359,13414,13420,13508,13513,13579,13602,13626,13631,13762,13767,13855,13936,13995,14214,14285,14312,14432,4,2,103,116,13148,13152,59,3,8921,824,4,2,59,118,13158,13161,3,8811,8402,59,3,8811,824,4,3,101,108,116,13173,13200,13204,102,116,4,2,97,114,13181,13188,114,114,111,119,59,1,8653,105,103,104,116,97,114,114,111,119,59,1,8654,59,3,8920,824,4,2,59,118,13210,13213,3,8810,8402,59,3,8810,824,105,103,104,116,97,114,114,111,119,59,1,8655,4,2,68,100,13235,13241,97,115,104,59,1,8879,97,115,104,59,1,8878,4,5,98,99,110,112,116,13259,13264,13270,13275,13308,108,97,59,1,8711,117,116,101,59,1,324,103,59,3,8736,8402,4,5,59,69,105,111,112,13287,13289,13293,13298,13302,1,8777,59,3,10864,824,100,59,3,8779,824,115,59,1,329,114,111,120,59,1,8777,117,114,4,2,59,97,13316,13318,1,9838,108,4,2,59,115,13325,13327,1,9838,59,1,8469,4,2,115,117,13336,13344,112,5,160,1,59,13342,1,160,109,112,4,2,59,101,13352,13355,3,8782,824,59,3,8783,824,4,5,97,101,111,117,121,13371,13385,13391,13407,13411,4,2,112,114,13377,13380,59,1,10819,111,110,59,1,328,100,105,108,59,1,326,110,103,4,2,59,100,13399,13401,1,8775,111,116,59,3,10861,824,112,59,1,10818,59,1,1085,97,115,104,59,1,8211,4,7,59,65,97,100,113,115,120,13436,13438,13443,13466,13472,13478,13494,1,8800,114,114,59,1,8663,114,4,2,104,114,13450,13454,107,59,1,10532,4,2,59,111,13460,13462,1,8599,119,59,1,8599,111,116,59,3,8784,824,117,105,118,59,1,8802,4,2,101,105,13484,13489,97,114,59,1,10536,109,59,3,8770,824,105,115,116,4,2,59,115,13503,13505,1,8708,59,1,8708,114,59,3,55349,56619,4,4,69,101,115,116,13523,13527,13563,13568,59,3,8807,824,4,3,59,113,115,13535,13537,13559,1,8817,4,3,59,113,115,13545,13547,13551,1,8817,59,3,8807,824,108,97,110,116,59,3,10878,824,59,3,10878,824,105,109,59,1,8821,4,2,59,114,13574,13576,1,8815,59,1,8815,4,3,65,97,112,13587,13592,13597,114,114,59,1,8654,114,114,59,1,8622,97,114,59,1,10994,4,3,59,115,118,13610,13612,13623,1,8715,4,2,59,100,13618,13620,1,8956,59,1,8954,59,1,8715,99,121,59,1,1114,4,7,65,69,97,100,101,115,116,13647,13652,13656,13661,13665,13737,13742,114,114,59,1,8653,59,3,8806,824,114,114,59,1,8602,114,59,1,8229,4,4,59,102,113,115,13675,13677,13703,13725,1,8816,116,4,2,97,114,13684,13691,114,114,111,119,59,1,8602,105,103,104,116,97,114,114,111,119,59,1,8622,4,3,59,113,115,13711,13713,13717,1,8816,59,3,8806,824,108,97,110,116,59,3,10877,824,4,2,59,115,13731,13734,3,10877,824,59,1,8814,105,109,59,1,8820,4,2,59,114,13748,13750,1,8814,105,4,2,59,101,13757,13759,1,8938,59,1,8940,105,100,59,1,8740,4,2,112,116,13773,13778,102,59,3,55349,56671,5,172,3,59,105,110,13787,13789,13829,1,172,110,4,4,59,69,100,118,13800,13802,13806,13812,1,8713,59,3,8953,824,111,116,59,3,8949,824,4,3,97,98,99,13820,13823,13826,59,1,8713,59,1,8951,59,1,8950,105,4,2,59,118,13836,13838,1,8716,4,3,97,98,99,13846,13849,13852,59,1,8716,59,1,8958,59,1,8957,4,3,97,111,114,13863,13892,13899,114,4,4,59,97,115,116,13874,13876,13883,13888,1,8742,108,108,101,108,59,1,8742,108,59,3,11005,8421,59,3,8706,824,108,105,110,116,59,1,10772,4,3,59,99,101,13907,13909,13914,1,8832,117,101,59,1,8928,4,2,59,99,13920,13923,3,10927,824,4,2,59,101,13929,13931,1,8832,113,59,3,10927,824,4,4,65,97,105,116,13946,13951,13971,13982,114,114,59,1,8655,114,114,4,3,59,99,119,13961,13963,13967,1,8603,59,3,10547,824,59,3,8605,824,103,104,116,97,114,114,111,119,59,1,8603,114,105,4,2,59,101,13990,13992,1,8939,59,1,8941,4,7,99,104,105,109,112,113,117,14011,14036,14060,14080,14085,14090,14106,4,4,59,99,101,114,14021,14023,14028,14032,1,8833,117,101,59,1,8929,59,3,10928,824,59,3,55349,56515,111,114,116,4,2,109,112,14045,14050,105,100,59,1,8740,97,114,97,108,108,101,108,59,1,8742,109,4,2,59,101,14067,14069,1,8769,4,2,59,113,14075,14077,1,8772,59,1,8772,105,100,59,1,8740,97,114,59,1,8742,115,117,4,2,98,112,14098,14102,101,59,1,8930,101,59,1,8931,4,3,98,99,112,14114,14157,14171,4,4,59,69,101,115,14124,14126,14130,14133,1,8836,59,3,10949,824,59,1,8840,101,116,4,2,59,101,14141,14144,3,8834,8402,113,4,2,59,113,14151,14153,1,8840,59,3,10949,824,99,4,2,59,101,14164,14166,1,8833,113,59,3,10928,824,4,4,59,69,101,115,14181,14183,14187,14190,1,8837,59,3,10950,824,59,1,8841,101,116,4,2,59,101,14198,14201,3,8835,8402,113,4,2,59,113,14208,14210,1,8841,59,3,10950,824,4,4,103,105,108,114,14224,14228,14238,14242,108,59,1,8825,108,100,101,5,241,1,59,14236,1,241,103,59,1,8824,105,97,110,103,108,101,4,2,108,114,14254,14269,101,102,116,4,2,59,101,14263,14265,1,8938,113,59,1,8940,105,103,104,116,4,2,59,101,14279,14281,1,8939,113,59,1,8941,4,2,59,109,14291,14293,1,957,4,3,59,101,115,14301,14303,14308,1,35,114,111,59,1,8470,112,59,1,8199,4,9,68,72,97,100,103,105,108,114,115,14332,14338,14344,14349,14355,14369,14376,14408,14426,97,115,104,59,1,8877,97,114,114,59,1,10500,112,59,3,8781,8402,97,115,104,59,1,8876,4,2,101,116,14361,14365,59,3,8805,8402,59,3,62,8402,110,102,105,110,59,1,10718,4,3,65,101,116,14384,14389,14393,114,114,59,1,10498,59,3,8804,8402,4,2,59,114,14399,14402,3,60,8402,105,101,59,3,8884,8402,4,2,65,116,14414,14419,114,114,59,1,10499,114,105,101,59,3,8885,8402,105,109,59,3,8764,8402,4,3,65,97,110,14440,14445,14468,114,114,59,1,8662,114,4,2,104,114,14452,14456,107,59,1,10531,4,2,59,111,14462,14464,1,8598,119,59,1,8598,101,97,114,59,1,10535,4,18,83,97,99,100,101,102,103,104,105,108,109,111,112,114,115,116,117,118,14512,14515,14535,14560,14597,14603,14618,14643,14657,14662,14701,14741,14747,14769,14851,14877,14907,14916,59,1,9416,4,2,99,115,14521,14531,117,116,101,5,243,1,59,14529,1,243,116,59,1,8859,4,2,105,121,14541,14557,114,4,2,59,99,14548,14550,1,8858,5,244,1,59,14555,1,244,59,1,1086,4,5,97,98,105,111,115,14572,14577,14583,14587,14591,115,104,59,1,8861,108,97,99,59,1,337,118,59,1,10808,116,59,1,8857,111,108,100,59,1,10684,108,105,103,59,1,339,4,2,99,114,14609,14614,105,114,59,1,10687,59,3,55349,56620,4,3,111,114,116,14626,14630,14640,110,59,1,731,97,118,101,5,242,1,59,14638,1,242,59,1,10689,4,2,98,109,14649,14654,97,114,59,1,10677,59,1,937,110,116,59,1,8750,4,4,97,99,105,116,14672,14677,14693,14698,114,114,59,1,8634,4,2,105,114,14683,14687,114,59,1,10686,111,115,115,59,1,10683,110,101,59,1,8254,59,1,10688,4,3,97,101,105,14709,14714,14719,99,114,59,1,333,103,97,59,1,969,4,3,99,100,110,14727,14733,14736,114,111,110,59,1,959,59,1,10678,117,115,59,1,8854,112,102,59,3,55349,56672,4,3,97,101,108,14755,14759,14764,114,59,1,10679,114,112,59,1,10681,117,115,59,1,8853,4,7,59,97,100,105,111,115,118,14785,14787,14792,14831,14837,14841,14848,1,8744,114,114,59,1,8635,4,4,59,101,102,109,14802,14804,14817,14824,1,10845,114,4,2,59,111,14811,14813,1,8500,102,59,1,8500,5,170,1,59,14822,1,170,5,186,1,59,14829,1,186,103,111,102,59,1,8886,114,59,1,10838,108,111,112,101,59,1,10839,59,1,10843,4,3,99,108,111,14859,14863,14873,114,59,1,8500,97,115,104,5,248,1,59,14871,1,248,108,59,1,8856,105,4,2,108,109,14884,14893,100,101,5,245,1,59,14891,1,245,101,115,4,2,59,97,14901,14903,1,8855,115,59,1,10806,109,108,5,246,1,59,14914,1,246,98,97,114,59,1,9021,4,12,97,99,101,102,104,105,108,109,111,114,115,117,14948,14992,14996,15033,15038,15068,15090,15189,15192,15222,15427,15441,114,4,4,59,97,115,116,14959,14961,14976,14989,1,8741,5,182,2,59,108,14968,14970,1,182,108,101,108,59,1,8741,4,2,105,108,14982,14986,109,59,1,10995,59,1,11005,59,1,8706,121,59,1,1087,114,4,5,99,105,109,112,116,15009,15014,15019,15024,15027,110,116,59,1,37,111,100,59,1,46,105,108,59,1,8240,59,1,8869,101,110,107,59,1,8241,114,59,3,55349,56621,4,3,105,109,111,15046,15057,15063,4,2,59,118,15052,15054,1,966,59,1,981,109,97,116,59,1,8499,110,101,59,1,9742,4,3,59,116,118,15076,15078,15087,1,960,99,104,102,111,114,107,59,1,8916,59,1,982,4,2,97,117,15096,15119,110,4,2,99,107,15103,15115,107,4,2,59,104,15110,15112,1,8463,59,1,8462,118,59,1,8463,115,4,9,59,97,98,99,100,101,109,115,116,15140,15142,15148,15151,15156,15168,15171,15179,15184,1,43,99,105,114,59,1,10787,59,1,8862,105,114,59,1,10786,4,2,111,117,15162,15165,59,1,8724,59,1,10789,59,1,10866,110,5,177,1,59,15177,1,177,105,109,59,1,10790,119,111,59,1,10791,59,1,177,4,3,105,112,117,15200,15208,15213,110,116,105,110,116,59,1,10773,102,59,3,55349,56673,110,100,5,163,1,59,15220,1,163,4,10,59,69,97,99,101,105,110,111,115,117,15244,15246,15249,15253,15258,15334,15347,15367,15416,15421,1,8826,59,1,10931,112,59,1,10935,117,101,59,1,8828,4,2,59,99,15264,15266,1,10927,4,6,59,97,99,101,110,115,15280,15282,15290,15299,15303,15329,1,8826,112,112,114,111,120,59,1,10935,117,114,108,121,101,113,59,1,8828,113,59,1,10927,4,3,97,101,115,15311,15319,15324,112,112,114,111,120,59,1,10937,113,113,59,1,10933,105,109,59,1,8936,105,109,59,1,8830,109,101,4,2,59,115,15342,15344,1,8242,59,1,8473,4,3,69,97,115,15355,15358,15362,59,1,10933,112,59,1,10937,105,109,59,1,8936,4,3,100,102,112,15375,15378,15404,59,1,8719,4,3,97,108,115,15386,15392,15398,108,97,114,59,1,9006,105,110,101,59,1,8978,117,114,102,59,1,8979,4,2,59,116,15410,15412,1,8733,111,59,1,8733,105,109,59,1,8830,114,101,108,59,1,8880,4,2,99,105,15433,15438,114,59,3,55349,56517,59,1,968,110,99,115,112,59,1,8200,4,6,102,105,111,112,115,117,15462,15467,15472,15478,15485,15491,114,59,3,55349,56622,110,116,59,1,10764,112,102,59,3,55349,56674,114,105,109,101,59,1,8279,99,114,59,3,55349,56518,4,3,97,101,111,15499,15520,15534,116,4,2,101,105,15506,15515,114,110,105,111,110,115,59,1,8461,110,116,59,1,10774,115,116,4,2,59,101,15528,15530,1,63,113,59,1,8799,116,5,34,1,59,15540,1,34,4,21,65,66,72,97,98,99,100,101,102,104,105,108,109,110,111,112,114,115,116,117,120,15586,15609,15615,15620,15796,15855,15893,15931,15977,16001,16039,16183,16204,16222,16228,16285,16312,16318,16363,16408,16416,4,3,97,114,116,15594,15599,15603,114,114,59,1,8667,114,59,1,8658,97,105,108,59,1,10524,97,114,114,59,1,10511,97,114,59,1,10596,4,7,99,100,101,110,113,114,116,15636,15651,15656,15664,15687,15696,15770,4,2,101,117,15642,15646,59,3,8765,817,116,101,59,1,341,105,99,59,1,8730,109,112,116,121,118,59,1,10675,103,4,4,59,100,101,108,15675,15677,15680,15683,1,10217,59,1,10642,59,1,10661,101,59,1,10217,117,111,5,187,1,59,15694,1,187,114,4,11,59,97,98,99,102,104,108,112,115,116,119,15721,15723,15727,15739,15742,15746,15750,15754,15758,15763,15767,1,8594,112,59,1,10613,4,2,59,102,15733,15735,1,8677,115,59,1,10528,59,1,10547,115,59,1,10526,107,59,1,8618,112,59,1,8620,108,59,1,10565,105,109,59,1,10612,108,59,1,8611,59,1,8605,4,2,97,105,15776,15781,105,108,59,1,10522,111,4,2,59,110,15788,15790,1,8758,97,108,115,59,1,8474,4,3,97,98,114,15804,15809,15814,114,114,59,1,10509,114,107,59,1,10099,4,2,97,107,15820,15833,99,4,2,101,107,15827,15830,59,1,125,59,1,93,4,2,101,115,15839,15842,59,1,10636,108,4,2,100,117,15849,15852,59,1,10638,59,1,10640,4,4,97,101,117,121,15865,15871,15886,15890,114,111,110,59,1,345,4,2,100,105,15877,15882,105,108,59,1,343,108,59,1,8969,98,59,1,125,59,1,1088,4,4,99,108,113,115,15903,15907,15914,15927,97,59,1,10551,100,104,97,114,59,1,10601,117,111,4,2,59,114,15922,15924,1,8221,59,1,8221,104,59,1,8627,4,3,97,99,103,15939,15966,15970,108,4,4,59,105,112,115,15950,15952,15957,15963,1,8476,110,101,59,1,8475,97,114,116,59,1,8476,59,1,8477,116,59,1,9645,5,174,1,59,15975,1,174,4,3,105,108,114,15985,15991,15997,115,104,116,59,1,10621,111,111,114,59,1,8971,59,3,55349,56623,4,2,97,111,16007,16028,114,4,2,100,117,16014,16017,59,1,8641,4,2,59,108,16023,16025,1,8640,59,1,10604,4,2,59,118,16034,16036,1,961,59,1,1009,4,3,103,110,115,16047,16167,16171,104,116,4,6,97,104,108,114,115,116,16063,16081,16103,16130,16143,16155,114,114,111,119,4,2,59,116,16073,16075,1,8594,97,105,108,59,1,8611,97,114,112,111,111,110,4,2,100,117,16093,16099,111,119,110,59,1,8641,112,59,1,8640,101,102,116,4,2,97,104,16112,16120,114,114,111,119,115,59,1,8644,97,114,112,111,111,110,115,59,1,8652,105,103,104,116,97,114,114,111,119,115,59,1,8649,113,117,105,103,97,114,114,111,119,59,1,8605,104,114,101,101,116,105,109,101,115,59,1,8908,103,59,1,730,105,110,103,100,111,116,115,101,113,59,1,8787,4,3,97,104,109,16191,16196,16201,114,114,59,1,8644,97,114,59,1,8652,59,1,8207,111,117,115,116,4,2,59,97,16214,16216,1,9137,99,104,101,59,1,9137,109,105,100,59,1,10990,4,4,97,98,112,116,16238,16252,16257,16278,4,2,110,114,16244,16248,103,59,1,10221,114,59,1,8702,114,107,59,1,10215,4,3,97,102,108,16265,16269,16273,114,59,1,10630,59,3,55349,56675,117,115,59,1,10798,105,109,101,115,59,1,10805,4,2,97,112,16291,16304,114,4,2,59,103,16298,16300,1,41,116,59,1,10644,111,108,105,110,116,59,1,10770,97,114,114,59,1,8649,4,4,97,99,104,113,16328,16334,16339,16342,113,117,111,59,1,8250,114,59,3,55349,56519,59,1,8625,4,2,98,117,16348,16351,59,1,93,111,4,2,59,114,16358,16360,1,8217,59,1,8217,4,3,104,105,114,16371,16377,16383,114,101,101,59,1,8908,109,101,115,59,1,8906,105,4,4,59,101,102,108,16394,16396,16399,16402,1,9657,59,1,8885,59,1,9656,116,114,105,59,1,10702,108,117,104,97,114,59,1,10600,59,1,8478,4,19,97,98,99,100,101,102,104,105,108,109,111,112,113,114,115,116,117,119,122,16459,16466,16472,16572,16590,16672,16687,16746,16844,16850,16924,16963,16988,17115,17121,17154,17206,17614,17656,99,117,116,101,59,1,347,113,117,111,59,1,8218,4,10,59,69,97,99,101,105,110,112,115,121,16494,16496,16499,16513,16518,16531,16536,16556,16564,16569,1,8827,59,1,10932,4,2,112,114,16505,16508,59,1,10936,111,110,59,1,353,117,101,59,1,8829,4,2,59,100,16524,16526,1,10928,105,108,59,1,351,114,99,59,1,349,4,3,69,97,115,16544,16547,16551,59,1,10934,112,59,1,10938,105,109,59,1,8937,111,108,105,110,116,59,1,10771,105,109,59,1,8831,59,1,1089,111,116,4,3,59,98,101,16582,16584,16587,1,8901,59,1,8865,59,1,10854,4,7,65,97,99,109,115,116,120,16606,16611,16634,16642,16646,16652,16668,114,114,59,1,8664,114,4,2,104,114,16618,16622,107,59,1,10533,4,2,59,111,16628,16630,1,8600,119,59,1,8600,116,5,167,1,59,16640,1,167,105,59,1,59,119,97,114,59,1,10537,109,4,2,105,110,16659,16665,110,117,115,59,1,8726,59,1,8726,116,59,1,10038,114,4,2,59,111,16679,16682,3,55349,56624,119,110,59,1,8994,4,4,97,99,111,121,16697,16702,16716,16739,114,112,59,1,9839,4,2,104,121,16708,16713,99,121,59,1,1097,59,1,1096,114,116,4,2,109,112,16724,16729,105,100,59,1,8739,97,114,97,108,108,101,108,59,1,8741,5,173,1,59,16744,1,173,4,2,103,109,16752,16770,109,97,4,3,59,102,118,16762,16764,16767,1,963,59,1,962,59,1,962,4,8,59,100,101,103,108,110,112,114,16788,16790,16795,16806,16817,16828,16832,16838,1,8764,111,116,59,1,10858,4,2,59,113,16801,16803,1,8771,59,1,8771,4,2,59,69,16812,16814,1,10910,59,1,10912,4,2,59,69,16823,16825,1,10909,59,1,10911,101,59,1,8774,108,117,115,59,1,10788,97,114,114,59,1,10610,97,114,114,59,1,8592,4,4,97,101,105,116,16860,16883,16891,16904,4,2,108,115,16866,16878,108,115,101,116,109,105,110,117,115,59,1,8726,104,112,59,1,10803,112,97,114,115,108,59,1,10724,4,2,100,108,16897,16900,59,1,8739,101,59,1,8995,4,2,59,101,16910,16912,1,10922,4,2,59,115,16918,16920,1,10924,59,3,10924,65024,4,3,102,108,112,16932,16938,16958,116,99,121,59,1,1100,4,2,59,98,16944,16946,1,47,4,2,59,97,16952,16954,1,10692,114,59,1,9023,102,59,3,55349,56676,97,4,2,100,114,16970,16985,101,115,4,2,59,117,16978,16980,1,9824,105,116,59,1,9824,59,1,8741,4,3,99,115,117,16996,17028,17089,4,2,97,117,17002,17015,112,4,2,59,115,17009,17011,1,8851,59,3,8851,65024,112,4,2,59,115,17022,17024,1,8852,59,3,8852,65024,117,4,2,98,112,17035,17062,4,3,59,101,115,17043,17045,17048,1,8847,59,1,8849,101,116,4,2,59,101,17056,17058,1,8847,113,59,1,8849,4,3,59,101,115,17070,17072,17075,1,8848,59,1,8850,101,116,4,2,59,101,17083,17085,1,8848,113,59,1,8850,4,3,59,97,102,17097,17099,17112,1,9633,114,4,2,101,102,17106,17109,59,1,9633,59,1,9642,59,1,9642,97,114,114,59,1,8594,4,4,99,101,109,116,17131,17136,17142,17148,114,59,3,55349,56520,116,109,110,59,1,8726,105,108,101,59,1,8995,97,114,102,59,1,8902,4,2,97,114,17160,17172,114,4,2,59,102,17167,17169,1,9734,59,1,9733,4,2,97,110,17178,17202,105,103,104,116,4,2,101,112,17188,17197,112,115,105,108,111,110,59,1,1013,104,105,59,1,981,115,59,1,175,4,5,98,99,109,110,112,17218,17351,17420,17423,17427,4,9,59,69,100,101,109,110,112,114,115,17238,17240,17243,17248,17261,17267,17279,17285,17291,1,8834,59,1,10949,111,116,59,1,10941,4,2,59,100,17254,17256,1,8838,111,116,59,1,10947,117,108,116,59,1,10945,4,2,69,101,17273,17276,59,1,10955,59,1,8842,108,117,115,59,1,10943,97,114,114,59,1,10617,4,3,101,105,117,17299,17335,17339,116,4,3,59,101,110,17308,17310,17322,1,8834,113,4,2,59,113,17317,17319,1,8838,59,1,10949,101,113,4,2,59,113,17330,17332,1,8842,59,1,10955,109,59,1,10951,4,2,98,112,17345,17348,59,1,10965,59,1,10963,99,4,6,59,97,99,101,110,115,17366,17368,17376,17385,17389,17415,1,8827,112,112,114,111,120,59,1,10936,117,114,108,121,101,113,59,1,8829,113,59,1,10928,4,3,97,101,115,17397,17405,17410,112,112,114,111,120,59,1,10938,113,113,59,1,10934,105,109,59,1,8937,105,109,59,1,8831,59,1,8721,103,59,1,9834,4,13,49,50,51,59,69,100,101,104,108,109,110,112,115,17455,17462,17469,17476,17478,17481,17496,17509,17524,17530,17536,17548,17554,5,185,1,59,17460,1,185,5,178,1,59,17467,1,178,5,179,1,59,17474,1,179,1,8835,59,1,10950,4,2,111,115,17487,17491,116,59,1,10942,117,98,59,1,10968,4,2,59,100,17502,17504,1,8839,111,116,59,1,10948,115,4,2,111,117,17516,17520,108,59,1,10185,98,59,1,10967,97,114,114,59,1,10619,117,108,116,59,1,10946,4,2,69,101,17542,17545,59,1,10956,59,1,8843,108,117,115,59,1,10944,4,3,101,105,117,17562,17598,17602,116,4,3,59,101,110,17571,17573,17585,1,8835,113,4,2,59,113,17580,17582,1,8839,59,1,10950,101,113,4,2,59,113,17593,17595,1,8843,59,1,10956,109,59,1,10952,4,2,98,112,17608,17611,59,1,10964,59,1,10966,4,3,65,97,110,17622,17627,17650,114,114,59,1,8665,114,4,2,104,114,17634,17638,107,59,1,10534,4,2,59,111,17644,17646,1,8601,119,59,1,8601,119,97,114,59,1,10538,108,105,103,5,223,1,59,17664,1,223,4,13,97,98,99,100,101,102,104,105,111,112,114,115,119,17694,17709,17714,17737,17742,17749,17754,17860,17905,17957,17964,18090,18122,4,2,114,117,17700,17706,103,101,116,59,1,8982,59,1,964,114,107,59,1,9140,4,3,97,101,121,17722,17728,17734,114,111,110,59,1,357,100,105,108,59,1,355,59,1,1090,111,116,59,1,8411,108,114,101,99,59,1,8981,114,59,3,55349,56625,4,4,101,105,107,111,17764,17805,17836,17851,4,2,114,116,17770,17786,101,4,2,52,102,17777,17780,59,1,8756,111,114,101,59,1,8756,97,4,3,59,115,118,17795,17797,17802,1,952,121,109,59,1,977,59,1,977,4,2,99,110,17811,17831,107,4,2,97,115,17818,17826,112,112,114,111,120,59,1,8776,105,109,59,1,8764,115,112,59,1,8201,4,2,97,115,17842,17846,112,59,1,8776,105,109,59,1,8764,114,110,5,254,1,59,17858,1,254,4,3,108,109,110,17868,17873,17901,100,101,59,1,732,101,115,5,215,3,59,98,100,17884,17886,17898,1,215,4,2,59,97,17892,17894,1,8864,114,59,1,10801,59,1,10800,116,59,1,8749,4,3,101,112,115,17913,17917,17953,97,59,1,10536,4,4,59,98,99,102,17927,17929,17934,17939,1,8868,111,116,59,1,9014,105,114,59,1,10993,4,2,59,111,17945,17948,3,55349,56677,114,107,59,1,10970,97,59,1,10537,114,105,109,101,59,1,8244,4,3,97,105,112,17972,17977,18082,100,101,59,1,8482,4,7,97,100,101,109,112,115,116,17993,18051,18056,18059,18066,18072,18076,110,103,108,101,4,5,59,100,108,113,114,18009,18011,18017,18032,18035,1,9653,111,119,110,59,1,9663,101,102,116,4,2,59,101,18026,18028,1,9667,113,59,1,8884,59,1,8796,105,103,104,116,4,2,59,101,18045,18047,1,9657,113,59,1,8885,111,116,59,1,9708,59,1,8796,105,110,117,115,59,1,10810,108,117,115,59,1,10809,98,59,1,10701,105,109,101,59,1,10811,101,122,105,117,109,59,1,9186,4,3,99,104,116,18098,18111,18116,4,2,114,121,18104,18108,59,3,55349,56521,59,1,1094,99,121,59,1,1115,114,111,107,59,1,359,4,2,105,111,18128,18133,120,116,59,1,8812,104,101,97,100,4,2,108,114,18143,18154,101,102,116,97,114,114,111,119,59,1,8606,105,103,104,116,97,114,114,111,119,59,1,8608,4,18,65,72,97,98,99,100,102,103,104,108,109,111,112,114,115,116,117,119,18204,18209,18214,18234,18250,18268,18292,18308,18319,18343,18379,18397,18413,18504,18547,18553,18584,18603,114,114,59,1,8657,97,114,59,1,10595,4,2,99,114,18220,18230,117,116,101,5,250,1,59,18228,1,250,114,59,1,8593,114,4,2,99,101,18241,18245,121,59,1,1118,118,101,59,1,365,4,2,105,121,18256,18265,114,99,5,251,1,59,18263,1,251,59,1,1091,4,3,97,98,104,18276,18281,18287,114,114,59,1,8645,108,97,99,59,1,369,97,114,59,1,10606,4,2,105,114,18298,18304,115,104,116,59,1,10622,59,3,55349,56626,114,97,118,101,5,249,1,59,18317,1,249,4,2,97,98,18325,18338,114,4,2,108,114,18332,18335,59,1,8639,59,1,8638,108,107,59,1,9600,4,2,99,116,18349,18374,4,2,111,114,18355,18369,114,110,4,2,59,101,18363,18365,1,8988,114,59,1,8988,111,112,59,1,8975,114,105,59,1,9720,4,2,97,108,18385,18390,99,114,59,1,363,5,168,1,59,18395,1,168,4,2,103,112,18403,18408,111,110,59,1,371,102,59,3,55349,56678,4,6,97,100,104,108,115,117,18427,18434,18445,18470,18475,18494,114,114,111,119,59,1,8593,111,119,110,97,114,114,111,119,59,1,8597,97,114,112,111,111,110,4,2,108,114,18457,18463,101,102,116,59,1,8639,105,103,104,116,59,1,8638,117,115,59,1,8846,105,4,3,59,104,108,18484,18486,18489,1,965,59,1,978,111,110,59,1,965,112,97,114,114,111,119,115,59,1,8648,4,3,99,105,116,18512,18537,18542,4,2,111,114,18518,18532,114,110,4,2,59,101,18526,18528,1,8989,114,59,1,8989,111,112,59,1,8974,110,103,59,1,367,114,105,59,1,9721,99,114,59,3,55349,56522,4,3,100,105,114,18561,18566,18572,111,116,59,1,8944,108,100,101,59,1,361,105,4,2,59,102,18579,18581,1,9653,59,1,9652,4,2,97,109,18590,18595,114,114,59,1,8648,108,5,252,1,59,18601,1,252,97,110,103,108,101,59,1,10663,4,15,65,66,68,97,99,100,101,102,108,110,111,112,114,115,122,18643,18648,18661,18667,18847,18851,18857,18904,18909,18915,18931,18937,18943,18949,18996,114,114,59,1,8661,97,114,4,2,59,118,18656,18658,1,10984,59,1,10985,97,115,104,59,1,8872,4,2,110,114,18673,18679,103,114,116,59,1,10652,4,7,101,107,110,112,114,115,116,18695,18704,18711,18720,18742,18754,18810,112,115,105,108,111,110,59,1,1013,97,112,112,97,59,1,1008,111,116,104,105,110,103,59,1,8709,4,3,104,105,114,18728,18732,18735,105,59,1,981,59,1,982,111,112,116,111,59,1,8733,4,2,59,104,18748,18750,1,8597,111,59,1,1009,4,2,105,117,18760,18766,103,109,97,59,1,962,4,2,98,112,18772,18791,115,101,116,110,101,113,4,2,59,113,18784,18787,3,8842,65024,59,3,10955,65024,115,101,116,110,101,113,4,2,59,113,18803,18806,3,8843,65024,59,3,10956,65024,4,2,104,114,18816,18822,101,116,97,59,1,977,105,97,110,103,108,101,4,2,108,114,18834,18840,101,102,116,59,1,8882,105,103,104,116,59,1,8883,121,59,1,1074,97,115,104,59,1,8866,4,3,101,108,114,18865,18884,18890,4,3,59,98,101,18873,18875,18880,1,8744,97,114,59,1,8891,113,59,1,8794,108,105,112,59,1,8942,4,2,98,116,18896,18901,97,114,59,1,124,59,1,124,114,59,3,55349,56627,116,114,105,59,1,8882,115,117,4,2,98,112,18923,18927,59,3,8834,8402,59,3,8835,8402,112,102,59,3,55349,56679,114,111,112,59,1,8733,116,114,105,59,1,8883,4,2,99,117,18955,18960,114,59,3,55349,56523,4,2,98,112,18966,18981,110,4,2,69,101,18973,18977,59,3,10955,65024,59,3,8842,65024,110,4,2,69,101,18988,18992,59,3,10956,65024,59,3,8843,65024,105,103,122,97,103,59,1,10650,4,7,99,101,102,111,112,114,115,19020,19026,19061,19066,19072,19075,19089,105,114,99,59,1,373,4,2,100,105,19032,19055,4,2,98,103,19038,19043,97,114,59,1,10847,101,4,2,59,113,19050,19052,1,8743,59,1,8793,101,114,112,59,1,8472,114,59,3,55349,56628,112,102,59,3,55349,56680,59,1,8472,4,2,59,101,19081,19083,1,8768,97,116,104,59,1,8768,99,114,59,3,55349,56524,4,14,99,100,102,104,105,108,109,110,111,114,115,117,118,119,19125,19146,19152,19157,19173,19176,19192,19197,19202,19236,19252,19269,19286,19291,4,3,97,105,117,19133,19137,19142,112,59,1,8898,114,99,59,1,9711,112,59,1,8899,116,114,105,59,1,9661,114,59,3,55349,56629,4,2,65,97,19163,19168,114,114,59,1,10234,114,114,59,1,10231,59,1,958,4,2,65,97,19182,19187,114,114,59,1,10232,114,114,59,1,10229,97,112,59,1,10236,105,115,59,1,8955,4,3,100,112,116,19210,19215,19230,111,116,59,1,10752,4,2,102,108,19221,19225,59,3,55349,56681,117,115,59,1,10753,105,109,101,59,1,10754,4,2,65,97,19242,19247,114,114,59,1,10233,114,114,59,1,10230,4,2,99,113,19258,19263,114,59,3,55349,56525,99,117,112,59,1,10758,4,2,112,116,19275,19281,108,117,115,59,1,10756,114,105,59,1,9651,101,101,59,1,8897,101,100,103,101,59,1,8896,4,8,97,99,101,102,105,111,115,117,19316,19335,19349,19357,19362,19367,19373,19379,99,4,2,117,121,19323,19332,116,101,5,253,1,59,19330,1,253,59,1,1103,4,2,105,121,19341,19346,114,99,59,1,375,59,1,1099,110,5,165,1,59,19355,1,165,114,59,3,55349,56630,99,121,59,1,1111,112,102,59,3,55349,56682,99,114,59,3,55349,56526,4,2,99,109,19385,19389,121,59,1,1102,108,5,255,1,59,19395,1,255,4,10,97,99,100,101,102,104,105,111,115,119,19419,19426,19441,19446,19462,19467,19472,19480,19486,19492,99,117,116,101,59,1,378,4,2,97,121,19432,19438,114,111,110,59,1,382,59,1,1079,111,116,59,1,380,4,2,101,116,19452,19458,116,114,102,59,1,8488,97,59,1,950,114,59,3,55349,56631,99,121,59,1,1078,103,114,97,114,114,59,1,8669,112,102,59,3,55349,56683,99,114,59,3,55349,56527,4,2,106,110,19498,19501,59,1,8205,106,59,1,8204])});var Hn=p((G7,Ey)=>{"use strict";var pM=ET(),Ae=ts(),Za=ST(),R=as(),E=Ae.CODE_POINTS,ja=Ae.CODE_POINT_SEQUENCES,mM={128:8364,130:8218,131:402,132:8222,133:8230,134:8224,135:8225,136:710,137:8240,138:352,139:8249,140:338,142:381,145:8216,146:8217,147:8220,148:8221,149:8226,150:8211,151:8212,152:732,153:8482,154:353,155:8250,156:339,158:382,159:376},dy=1,uy=2,py=4,gM=dy|uy|py,ce="DATA_STATE",Br="RCDATA_STATE",Gn="RAWTEXT_STATE",ca="SCRIPT_DATA_STATE",my="PLAINTEXT_STATE",TT="TAG_OPEN_STATE",yT="END_TAG_OPEN_STATE",jl="TAG_NAME_STATE",bT="RCDATA_LESS_THAN_SIGN_STATE",CT="RCDATA_END_TAG_OPEN_STATE",RT="RCDATA_END_TAG_NAME_STATE",AT="RAWTEXT_LESS_THAN_SIGN_STATE",NT="RAWTEXT_END_TAG_OPEN_STATE",OT="RAWTEXT_END_TAG_NAME_STATE",DT="SCRIPT_DATA_LESS_THAN_SIGN_STATE",IT="SCRIPT_DATA_END_TAG_OPEN_STATE",kT="SCRIPT_DATA_END_TAG_NAME_STATE",vT="SCRIPT_DATA_ESCAPE_START_STATE",wT="SCRIPT_DATA_ESCAPE_START_DASH_STATE",Bt="SCRIPT_DATA_ESCAPED_STATE",xT="SCRIPT_DATA_ESCAPED_DASH_STATE",Xl="SCRIPT_DATA_ESCAPED_DASH_DASH_STATE",rs="SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN_STATE",MT="SCRIPT_DATA_ESCAPED_END_TAG_OPEN_STATE",LT="SCRIPT_DATA_ESCAPED_END_TAG_NAME_STATE",PT="SCRIPT_DATA_DOUBLE_ESCAPE_START_STATE",oa="SCRIPT_DATA_DOUBLE_ESCAPED_STATE",FT="SCRIPT_DATA_DOUBLE_ESCAPED_DASH_STATE",UT="SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH_STATE",ns="SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN_STATE",BT="SCRIPT_DATA_DOUBLE_ESCAPE_END_STATE",Vt="BEFORE_ATTRIBUTE_NAME_STATE",is="ATTRIBUTE_NAME_STATE",Zl="AFTER_ATTRIBUTE_NAME_STATE",Jl="BEFORE_ATTRIBUTE_VALUE_STATE",ss="ATTRIBUTE_VALUE_DOUBLE_QUOTED_STATE",os="ATTRIBUTE_VALUE_SINGLE_QUOTED_STATE",ls="ATTRIBUTE_VALUE_UNQUOTED_STATE",ec="AFTER_ATTRIBUTE_VALUE_QUOTED_STATE",Oa="SELF_CLOSING_START_TAG_STATE",Pn="BOGUS_COMMENT_STATE",GT="MARKUP_DECLARATION_OPEN_STATE",zT="COMMENT_START_STATE",HT="COMMENT_START_DASH_STATE",Da="COMMENT_STATE",YT="COMMENT_LESS_THAN_SIGN_STATE",qT="COMMENT_LESS_THAN_SIGN_BANG_STATE",$T="COMMENT_LESS_THAN_SIGN_BANG_DASH_STATE",VT="COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH_STATE",cs="COMMENT_END_DASH_STATE",_s="COMMENT_END_STATE",KT="COMMENT_END_BANG_STATE",WT="DOCTYPE_STATE",ds="BEFORE_DOCTYPE_NAME_STATE",us="DOCTYPE_NAME_STATE",QT="AFTER_DOCTYPE_NAME_STATE",jT="AFTER_DOCTYPE_PUBLIC_KEYWORD_STATE",XT="BEFORE_DOCTYPE_PUBLIC_IDENTIFIER_STATE",tc="DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED_STATE",ac="DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED_STATE",rc="AFTER_DOCTYPE_PUBLIC_IDENTIFIER_STATE",ZT="BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS_STATE",JT="AFTER_DOCTYPE_SYSTEM_KEYWORD_STATE",ey="BEFORE_DOCTYPE_SYSTEM_IDENTIFIER_STATE",Fn="DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED_STATE",Un="DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED_STATE",nc="AFTER_DOCTYPE_SYSTEM_IDENTIFIER_STATE",la="BOGUS_DOCTYPE_STATE",ps="CDATA_SECTION_STATE",ty="CDATA_SECTION_BRACKET_STATE",ay="CDATA_SECTION_END_STATE",Ur="CHARACTER_REFERENCE_STATE",ry="NAMED_CHARACTER_REFERENCE_STATE",ny="AMBIGUOS_AMPERSAND_STATE",iy="NUMERIC_CHARACTER_REFERENCE_STATE",sy="HEXADEMICAL_CHARACTER_REFERENCE_START_STATE",oy="DECIMAL_CHARACTER_REFERENCE_START_STATE",ly="HEXADEMICAL_CHARACTER_REFERENCE_STATE",cy="DECIMAL_CHARACTER_REFERENCE_STATE",Bn="NUMERIC_CHARACTER_REFERENCE_END_STATE";function xe(e){return e===E.SPACE||e===E.LINE_FEED||e===E.TABULATION||e===E.FORM_FEED}function zn(e){return e>=E.DIGIT_0&&e<=E.DIGIT_9}function Gt(e){return e>=E.LATIN_CAPITAL_A&&e<=E.LATIN_CAPITAL_Z}function Xa(e){return e>=E.LATIN_SMALL_A&&e<=E.LATIN_SMALL_Z}function ka(e){return Xa(e)||Gt(e)}function ic(e){return ka(e)||zn(e)}function gy(e){return e>=E.LATIN_CAPITAL_A&&e<=E.LATIN_CAPITAL_F}function fy(e){return e>=E.LATIN_SMALL_A&&e<=E.LATIN_SMALL_F}function fM(e){return zn(e)||gy(e)||fy(e)}function ms(e){return e+32}function Fe(e){return e<=65535?String.fromCharCode(e):(e-=65536,String.fromCharCode(e>>>10&1023|55296)+String.fromCharCode(56320|e&1023))}function Ia(e){return String.fromCharCode(ms(e))}function _y(e,t){let a=Za[++e],r=++e,n=r+a-1;for(;r<=n;){let i=r+n>>>1,s=Za[i];if(s<t)r=i+1;else if(s>t)n=i-1;else return Za[i+a]}return-1}var mt=class e{constructor(){this.preprocessor=new pM,this.tokenQueue=[],this.allowCDATA=!1,this.state=ce,this.returnState="",this.charRefCode=-1,this.tempBuff=[],this.lastStartTagName="",this.consumedAfterSnapshot=-1,this.active=!1,this.currentCharacterToken=null,this.currentToken=null,this.currentAttr=null}_err(){}_errOnNextCodePoint(t){this._consume(),this._err(t),this._unconsume()}getNextToken(){for(;!this.tokenQueue.length&&this.active;){this.consumedAfterSnapshot=0;let t=this._consume();this._ensureHibernation()||this[this.state](t)}return this.tokenQueue.shift()}write(t,a){this.active=!0,this.preprocessor.write(t,a)}insertHtmlAtCurrentPos(t){this.active=!0,this.preprocessor.insertHtmlAtCurrentPos(t)}_ensureHibernation(){if(this.preprocessor.endOfChunkHit){for(;this.consumedAfterSnapshot>0;this.consumedAfterSnapshot--)this.preprocessor.retreat();return this.active=!1,this.tokenQueue.push({type:e.HIBERNATION_TOKEN}),!0}return!1}_consume(){return this.consumedAfterSnapshot++,this.preprocessor.advance()}_unconsume(){this.consumedAfterSnapshot--,this.preprocessor.retreat()}_reconsumeInState(t){this.state=t,this._unconsume()}_consumeSequenceIfMatch(t,a,r){let n=0,i=!0,s=t.length,o=0,c=a,l;for(;o<s;o++){if(o>0&&(c=this._consume(),n++),c===E.EOF){i=!1;break}if(l=t[o],c!==l&&(r||c!==ms(l))){i=!1;break}}if(!i)for(;n--;)this._unconsume();return i}_isTempBufferEqualToScriptString(){if(this.tempBuff.length!==ja.SCRIPT_STRING.length)return!1;for(let t=0;t<this.tempBuff.length;t++)if(this.tempBuff[t]!==ja.SCRIPT_STRING[t])return!1;return!0}_createStartTagToken(){this.currentToken={type:e.START_TAG_TOKEN,tagName:"",selfClosing:!1,ackSelfClosing:!1,attrs:[]}}_createEndTagToken(){this.currentToken={type:e.END_TAG_TOKEN,tagName:"",selfClosing:!1,attrs:[]}}_createCommentToken(){this.currentToken={type:e.COMMENT_TOKEN,data:""}}_createDoctypeToken(t){this.currentToken={type:e.DOCTYPE_TOKEN,name:t,forceQuirks:!1,publicId:null,systemId:null}}_createCharacterToken(t,a){this.currentCharacterToken={type:t,chars:a}}_createEOFToken(){this.currentToken={type:e.EOF_TOKEN}}_createAttr(t){this.currentAttr={name:t,value:""}}_leaveAttrName(t){e.getTokenAttr(this.currentToken,this.currentAttr.name)===null?this.currentToken.attrs.push(this.currentAttr):this._err(R.duplicateAttribute),this.state=t}_leaveAttrValue(t){this.state=t}_emitCurrentToken(){this._emitCurrentCharacterToken();let t=this.currentToken;this.currentToken=null,t.type===e.START_TAG_TOKEN?this.lastStartTagName=t.tagName:t.type===e.END_TAG_TOKEN&&(t.attrs.length>0&&this._err(R.endTagWithAttributes),t.selfClosing&&this._err(R.endTagWithTrailingSolidus)),this.tokenQueue.push(t)}_emitCurrentCharacterToken(){this.currentCharacterToken&&(this.tokenQueue.push(this.currentCharacterToken),this.currentCharacterToken=null)}_emitEOFToken(){this._createEOFToken(),this._emitCurrentToken()}_appendCharToCurrentCharacterToken(t,a){this.currentCharacterToken&&this.currentCharacterToken.type!==t&&this._emitCurrentCharacterToken(),this.currentCharacterToken?this.currentCharacterToken.chars+=a:this._createCharacterToken(t,a)}_emitCodePoint(t){let a=e.CHARACTER_TOKEN;xe(t)?a=e.WHITESPACE_CHARACTER_TOKEN:t===E.NULL&&(a=e.NULL_CHARACTER_TOKEN),this._appendCharToCurrentCharacterToken(a,Fe(t))}_emitSeveralCodePoints(t){for(let a=0;a<t.length;a++)this._emitCodePoint(t[a])}_emitChars(t){this._appendCharToCurrentCharacterToken(e.CHARACTER_TOKEN,t)}_matchNamedCharacterReference(t){let a=null,r=1,n=_y(0,t);for(this.tempBuff.push(t);n>-1;){let i=Za[n],s=i<gM;s&&i&dy&&(a=i&uy?[Za[++n],Za[++n]]:[Za[++n]],r=0);let c=this._consume();if(this.tempBuff.push(c),r++,c===E.EOF)break;s?n=i&py?_y(n,c):-1:n=c===i?++n:-1}for(;r--;)this.tempBuff.pop(),this._unconsume();return a}_isCharacterReferenceInAttribute(){return this.returnState===ss||this.returnState===os||this.returnState===ls}_isCharacterReferenceAttributeQuirk(t){if(!t&&this._isCharacterReferenceInAttribute()){let a=this._consume();return this._unconsume(),a===E.EQUALS_SIGN||ic(a)}return!1}_flushCodePointsConsumedAsCharacterReference(){if(this._isCharacterReferenceInAttribute())for(let t=0;t<this.tempBuff.length;t++)this.currentAttr.value+=Fe(this.tempBuff[t]);else this._emitSeveralCodePoints(this.tempBuff);this.tempBuff=[]}[ce](t){this.preprocessor.dropParsedChunk(),t===E.LESS_THAN_SIGN?this.state=TT:t===E.AMPERSAND?(this.returnState=ce,this.state=Ur):t===E.NULL?(this._err(R.unexpectedNullCharacter),this._emitCodePoint(t)):t===E.EOF?this._emitEOFToken():this._emitCodePoint(t)}[Br](t){this.preprocessor.dropParsedChunk(),t===E.AMPERSAND?(this.returnState=Br,this.state=Ur):t===E.LESS_THAN_SIGN?this.state=bT:t===E.NULL?(this._err(R.unexpectedNullCharacter),this._emitChars(Ae.REPLACEMENT_CHARACTER)):t===E.EOF?this._emitEOFToken():this._emitCodePoint(t)}[Gn](t){this.preprocessor.dropParsedChunk(),t===E.LESS_THAN_SIGN?this.state=AT:t===E.NULL?(this._err(R.unexpectedNullCharacter),this._emitChars(Ae.REPLACEMENT_CHARACTER)):t===E.EOF?this._emitEOFToken():this._emitCodePoint(t)}[ca](t){this.preprocessor.dropParsedChunk(),t===E.LESS_THAN_SIGN?this.state=DT:t===E.NULL?(this._err(R.unexpectedNullCharacter),this._emitChars(Ae.REPLACEMENT_CHARACTER)):t===E.EOF?this._emitEOFToken():this._emitCodePoint(t)}[my](t){this.preprocessor.dropParsedChunk(),t===E.NULL?(this._err(R.unexpectedNullCharacter),this._emitChars(Ae.REPLACEMENT_CHARACTER)):t===E.EOF?this._emitEOFToken():this._emitCodePoint(t)}[TT](t){t===E.EXCLAMATION_MARK?this.state=GT:t===E.SOLIDUS?this.state=yT:ka(t)?(this._createStartTagToken(),this._reconsumeInState(jl)):t===E.QUESTION_MARK?(this._err(R.unexpectedQuestionMarkInsteadOfTagName),this._createCommentToken(),this._reconsumeInState(Pn)):t===E.EOF?(this._err(R.eofBeforeTagName),this._emitChars("<"),this._emitEOFToken()):(this._err(R.invalidFirstCharacterOfTagName),this._emitChars("<"),this._reconsumeInState(ce))}[yT](t){ka(t)?(this._createEndTagToken(),this._reconsumeInState(jl)):t===E.GREATER_THAN_SIGN?(this._err(R.missingEndTagName),this.state=ce):t===E.EOF?(this._err(R.eofBeforeTagName),this._emitChars("</"),this._emitEOFToken()):(this._err(R.invalidFirstCharacterOfTagName),this._createCommentToken(),this._reconsumeInState(Pn))}[jl](t){xe(t)?this.state=Vt:t===E.SOLIDUS?this.state=Oa:t===E.GREATER_THAN_SIGN?(this.state=ce,this._emitCurrentToken()):Gt(t)?this.currentToken.tagName+=Ia(t):t===E.NULL?(this._err(R.unexpectedNullCharacter),this.currentToken.tagName+=Ae.REPLACEMENT_CHARACTER):t===E.EOF?(this._err(R.eofInTag),this._emitEOFToken()):this.currentToken.tagName+=Fe(t)}[bT](t){t===E.SOLIDUS?(this.tempBuff=[],this.state=CT):(this._emitChars("<"),this._reconsumeInState(Br))}[CT](t){ka(t)?(this._createEndTagToken(),this._reconsumeInState(RT)):(this._emitChars("</"),this._reconsumeInState(Br))}[RT](t){if(Gt(t))this.currentToken.tagName+=Ia(t),this.tempBuff.push(t);else if(Xa(t))this.currentToken.tagName+=Fe(t),this.tempBuff.push(t);else{if(this.lastStartTagName===this.currentToken.tagName){if(xe(t)){this.state=Vt;return}if(t===E.SOLIDUS){this.state=Oa;return}if(t===E.GREATER_THAN_SIGN){this.state=ce,this._emitCurrentToken();return}}this._emitChars("</"),this._emitSeveralCodePoints(this.tempBuff),this._reconsumeInState(Br)}}[AT](t){t===E.SOLIDUS?(this.tempBuff=[],this.state=NT):(this._emitChars("<"),this._reconsumeInState(Gn))}[NT](t){ka(t)?(this._createEndTagToken(),this._reconsumeInState(OT)):(this._emitChars("</"),this._reconsumeInState(Gn))}[OT](t){if(Gt(t))this.currentToken.tagName+=Ia(t),this.tempBuff.push(t);else if(Xa(t))this.currentToken.tagName+=Fe(t),this.tempBuff.push(t);else{if(this.lastStartTagName===this.currentToken.tagName){if(xe(t)){this.state=Vt;return}if(t===E.SOLIDUS){this.state=Oa;return}if(t===E.GREATER_THAN_SIGN){this._emitCurrentToken(),this.state=ce;return}}this._emitChars("</"),this._emitSeveralCodePoints(this.tempBuff),this._reconsumeInState(Gn)}}[DT](t){t===E.SOLIDUS?(this.tempBuff=[],this.state=IT):t===E.EXCLAMATION_MARK?(this.state=vT,this._emitChars("<!")):(this._emitChars("<"),this._reconsumeInState(ca))}[IT](t){ka(t)?(this._createEndTagToken(),this._reconsumeInState(kT)):(this._emitChars("</"),this._reconsumeInState(ca))}[kT](t){if(Gt(t))this.currentToken.tagName+=Ia(t),this.tempBuff.push(t);else if(Xa(t))this.currentToken.tagName+=Fe(t),this.tempBuff.push(t);else{if(this.lastStartTagName===this.currentToken.tagName){if(xe(t)){this.state=Vt;return}else if(t===E.SOLIDUS){this.state=Oa;return}else if(t===E.GREATER_THAN_SIGN){this._emitCurrentToken(),this.state=ce;return}}this._emitChars("</"),this._emitSeveralCodePoints(this.tempBuff),this._reconsumeInState(ca)}}[vT](t){t===E.HYPHEN_MINUS?(this.state=wT,this._emitChars("-")):this._reconsumeInState(ca)}[wT](t){t===E.HYPHEN_MINUS?(this.state=Xl,this._emitChars("-")):this._reconsumeInState(ca)}[Bt](t){t===E.HYPHEN_MINUS?(this.state=xT,this._emitChars("-")):t===E.LESS_THAN_SIGN?this.state=rs:t===E.NULL?(this._err(R.unexpectedNullCharacter),this._emitChars(Ae.REPLACEMENT_CHARACTER)):t===E.EOF?(this._err(R.eofInScriptHtmlCommentLikeText),this._emitEOFToken()):this._emitCodePoint(t)}[xT](t){t===E.HYPHEN_MINUS?(this.state=Xl,this._emitChars("-")):t===E.LESS_THAN_SIGN?this.state=rs:t===E.NULL?(this._err(R.unexpectedNullCharacter),this.state=Bt,this._emitChars(Ae.REPLACEMENT_CHARACTER)):t===E.EOF?(this._err(R.eofInScriptHtmlCommentLikeText),this._emitEOFToken()):(this.state=Bt,this._emitCodePoint(t))}[Xl](t){t===E.HYPHEN_MINUS?this._emitChars("-"):t===E.LESS_THAN_SIGN?this.state=rs:t===E.GREATER_THAN_SIGN?(this.state=ca,this._emitChars(">")):t===E.NULL?(this._err(R.unexpectedNullCharacter),this.state=Bt,this._emitChars(Ae.REPLACEMENT_CHARACTER)):t===E.EOF?(this._err(R.eofInScriptHtmlCommentLikeText),this._emitEOFToken()):(this.state=Bt,this._emitCodePoint(t))}[rs](t){t===E.SOLIDUS?(this.tempBuff=[],this.state=MT):ka(t)?(this.tempBuff=[],this._emitChars("<"),this._reconsumeInState(PT)):(this._emitChars("<"),this._reconsumeInState(Bt))}[MT](t){ka(t)?(this._createEndTagToken(),this._reconsumeInState(LT)):(this._emitChars("</"),this._reconsumeInState(Bt))}[LT](t){if(Gt(t))this.currentToken.tagName+=Ia(t),this.tempBuff.push(t);else if(Xa(t))this.currentToken.tagName+=Fe(t),this.tempBuff.push(t);else{if(this.lastStartTagName===this.currentToken.tagName){if(xe(t)){this.state=Vt;return}if(t===E.SOLIDUS){this.state=Oa;return}if(t===E.GREATER_THAN_SIGN){this._emitCurrentToken(),this.state=ce;return}}this._emitChars("</"),this._emitSeveralCodePoints(this.tempBuff),this._reconsumeInState(Bt)}}[PT](t){xe(t)||t===E.SOLIDUS||t===E.GREATER_THAN_SIGN?(this.state=this._isTempBufferEqualToScriptString()?oa:Bt,this._emitCodePoint(t)):Gt(t)?(this.tempBuff.push(ms(t)),this._emitCodePoint(t)):Xa(t)?(this.tempBuff.push(t),this._emitCodePoint(t)):this._reconsumeInState(Bt)}[oa](t){t===E.HYPHEN_MINUS?(this.state=FT,this._emitChars("-")):t===E.LESS_THAN_SIGN?(this.state=ns,this._emitChars("<")):t===E.NULL?(this._err(R.unexpectedNullCharacter),this._emitChars(Ae.REPLACEMENT_CHARACTER)):t===E.EOF?(this._err(R.eofInScriptHtmlCommentLikeText),this._emitEOFToken()):this._emitCodePoint(t)}[FT](t){t===E.HYPHEN_MINUS?(this.state=UT,this._emitChars("-")):t===E.LESS_THAN_SIGN?(this.state=ns,this._emitChars("<")):t===E.NULL?(this._err(R.unexpectedNullCharacter),this.state=oa,this._emitChars(Ae.REPLACEMENT_CHARACTER)):t===E.EOF?(this._err(R.eofInScriptHtmlCommentLikeText),this._emitEOFToken()):(this.state=oa,this._emitCodePoint(t))}[UT](t){t===E.HYPHEN_MINUS?this._emitChars("-"):t===E.LESS_THAN_SIGN?(this.state=ns,this._emitChars("<")):t===E.GREATER_THAN_SIGN?(this.state=ca,this._emitChars(">")):t===E.NULL?(this._err(R.unexpectedNullCharacter),this.state=oa,this._emitChars(Ae.REPLACEMENT_CHARACTER)):t===E.EOF?(this._err(R.eofInScriptHtmlCommentLikeText),this._emitEOFToken()):(this.state=oa,this._emitCodePoint(t))}[ns](t){t===E.SOLIDUS?(this.tempBuff=[],this.state=BT,this._emitChars("/")):this._reconsumeInState(oa)}[BT](t){xe(t)||t===E.SOLIDUS||t===E.GREATER_THAN_SIGN?(this.state=this._isTempBufferEqualToScriptString()?Bt:oa,this._emitCodePoint(t)):Gt(t)?(this.tempBuff.push(ms(t)),this._emitCodePoint(t)):Xa(t)?(this.tempBuff.push(t),this._emitCodePoint(t)):this._reconsumeInState(oa)}[Vt](t){xe(t)||(t===E.SOLIDUS||t===E.GREATER_THAN_SIGN||t===E.EOF?this._reconsumeInState(Zl):t===E.EQUALS_SIGN?(this._err(R.unexpectedEqualsSignBeforeAttributeName),this._createAttr("="),this.state=is):(this._createAttr(""),this._reconsumeInState(is)))}[is](t){xe(t)||t===E.SOLIDUS||t===E.GREATER_THAN_SIGN||t===E.EOF?(this._leaveAttrName(Zl),this._unconsume()):t===E.EQUALS_SIGN?this._leaveAttrName(Jl):Gt(t)?this.currentAttr.name+=Ia(t):t===E.QUOTATION_MARK||t===E.APOSTROPHE||t===E.LESS_THAN_SIGN?(this._err(R.unexpectedCharacterInAttributeName),this.currentAttr.name+=Fe(t)):t===E.NULL?(this._err(R.unexpectedNullCharacter),this.currentAttr.name+=Ae.REPLACEMENT_CHARACTER):this.currentAttr.name+=Fe(t)}[Zl](t){xe(t)||(t===E.SOLIDUS?this.state=Oa:t===E.EQUALS_SIGN?this.state=Jl:t===E.GREATER_THAN_SIGN?(this.state=ce,this._emitCurrentToken()):t===E.EOF?(this._err(R.eofInTag),this._emitEOFToken()):(this._createAttr(""),this._reconsumeInState(is)))}[Jl](t){xe(t)||(t===E.QUOTATION_MARK?this.state=ss:t===E.APOSTROPHE?this.state=os:t===E.GREATER_THAN_SIGN?(this._err(R.missingAttributeValue),this.state=ce,this._emitCurrentToken()):this._reconsumeInState(ls))}[ss](t){t===E.QUOTATION_MARK?this.state=ec:t===E.AMPERSAND?(this.returnState=ss,this.state=Ur):t===E.NULL?(this._err(R.unexpectedNullCharacter),this.currentAttr.value+=Ae.REPLACEMENT_CHARACTER):t===E.EOF?(this._err(R.eofInTag),this._emitEOFToken()):this.currentAttr.value+=Fe(t)}[os](t){t===E.APOSTROPHE?this.state=ec:t===E.AMPERSAND?(this.returnState=os,this.state=Ur):t===E.NULL?(this._err(R.unexpectedNullCharacter),this.currentAttr.value+=Ae.REPLACEMENT_CHARACTER):t===E.EOF?(this._err(R.eofInTag),this._emitEOFToken()):this.currentAttr.value+=Fe(t)}[ls](t){xe(t)?this._leaveAttrValue(Vt):t===E.AMPERSAND?(this.returnState=ls,this.state=Ur):t===E.GREATER_THAN_SIGN?(this._leaveAttrValue(ce),this._emitCurrentToken()):t===E.NULL?(this._err(R.unexpectedNullCharacter),this.currentAttr.value+=Ae.REPLACEMENT_CHARACTER):t===E.QUOTATION_MARK||t===E.APOSTROPHE||t===E.LESS_THAN_SIGN||t===E.EQUALS_SIGN||t===E.GRAVE_ACCENT?(this._err(R.unexpectedCharacterInUnquotedAttributeValue),this.currentAttr.value+=Fe(t)):t===E.EOF?(this._err(R.eofInTag),this._emitEOFToken()):this.currentAttr.value+=Fe(t)}[ec](t){xe(t)?this._leaveAttrValue(Vt):t===E.SOLIDUS?this._leaveAttrValue(Oa):t===E.GREATER_THAN_SIGN?(this._leaveAttrValue(ce),this._emitCurrentToken()):t===E.EOF?(this._err(R.eofInTag),this._emitEOFToken()):(this._err(R.missingWhitespaceBetweenAttributes),this._reconsumeInState(Vt))}[Oa](t){t===E.GREATER_THAN_SIGN?(this.currentToken.selfClosing=!0,this.state=ce,this._emitCurrentToken()):t===E.EOF?(this._err(R.eofInTag),this._emitEOFToken()):(this._err(R.unexpectedSolidusInTag),this._reconsumeInState(Vt))}[Pn](t){t===E.GREATER_THAN_SIGN?(this.state=ce,this._emitCurrentToken()):t===E.EOF?(this._emitCurrentToken(),this._emitEOFToken()):t===E.NULL?(this._err(R.unexpectedNullCharacter),this.currentToken.data+=Ae.REPLACEMENT_CHARACTER):this.currentToken.data+=Fe(t)}[GT](t){this._consumeSequenceIfMatch(ja.DASH_DASH_STRING,t,!0)?(this._createCommentToken(),this.state=zT):this._consumeSequenceIfMatch(ja.DOCTYPE_STRING,t,!1)?this.state=WT:this._consumeSequenceIfMatch(ja.CDATA_START_STRING,t,!0)?this.allowCDATA?this.state=ps:(this._err(R.cdataInHtmlContent),this._createCommentToken(),this.currentToken.data="[CDATA[",this.state=Pn):this._ensureHibernation()||(this._err(R.incorrectlyOpenedComment),this._createCommentToken(),this._reconsumeInState(Pn))}[zT](t){t===E.HYPHEN_MINUS?this.state=HT:t===E.GREATER_THAN_SIGN?(this._err(R.abruptClosingOfEmptyComment),this.state=ce,this._emitCurrentToken()):this._reconsumeInState(Da)}[HT](t){t===E.HYPHEN_MINUS?this.state=_s:t===E.GREATER_THAN_SIGN?(this._err(R.abruptClosingOfEmptyComment),this.state=ce,this._emitCurrentToken()):t===E.EOF?(this._err(R.eofInComment),this._emitCurrentToken(),this._emitEOFToken()):(this.currentToken.data+="-",this._reconsumeInState(Da))}[Da](t){t===E.HYPHEN_MINUS?this.state=cs:t===E.LESS_THAN_SIGN?(this.currentToken.data+="<",this.state=YT):t===E.NULL?(this._err(R.unexpectedNullCharacter),this.currentToken.data+=Ae.REPLACEMENT_CHARACTER):t===E.EOF?(this._err(R.eofInComment),this._emitCurrentToken(),this._emitEOFToken()):this.currentToken.data+=Fe(t)}[YT](t){t===E.EXCLAMATION_MARK?(this.currentToken.data+="!",this.state=qT):t===E.LESS_THAN_SIGN?this.currentToken.data+="!":this._reconsumeInState(Da)}[qT](t){t===E.HYPHEN_MINUS?this.state=$T:this._reconsumeInState(Da)}[$T](t){t===E.HYPHEN_MINUS?this.state=VT:this._reconsumeInState(cs)}[VT](t){t!==E.GREATER_THAN_SIGN&&t!==E.EOF&&this._err(R.nestedComment),this._reconsumeInState(_s)}[cs](t){t===E.HYPHEN_MINUS?this.state=_s:t===E.EOF?(this._err(R.eofInComment),this._emitCurrentToken(),this._emitEOFToken()):(this.currentToken.data+="-",this._reconsumeInState(Da))}[_s](t){t===E.GREATER_THAN_SIGN?(this.state=ce,this._emitCurrentToken()):t===E.EXCLAMATION_MARK?this.state=KT:t===E.HYPHEN_MINUS?this.currentToken.data+="-":t===E.EOF?(this._err(R.eofInComment),this._emitCurrentToken(),this._emitEOFToken()):(this.currentToken.data+="--",this._reconsumeInState(Da))}[KT](t){t===E.HYPHEN_MINUS?(this.currentToken.data+="--!",this.state=cs):t===E.GREATER_THAN_SIGN?(this._err(R.incorrectlyClosedComment),this.state=ce,this._emitCurrentToken()):t===E.EOF?(this._err(R.eofInComment),this._emitCurrentToken(),this._emitEOFToken()):(this.currentToken.data+="--!",this._reconsumeInState(Da))}[WT](t){xe(t)?this.state=ds:t===E.GREATER_THAN_SIGN?this._reconsumeInState(ds):t===E.EOF?(this._err(R.eofInDoctype),this._createDoctypeToken(null),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):(this._err(R.missingWhitespaceBeforeDoctypeName),this._reconsumeInState(ds))}[ds](t){xe(t)||(Gt(t)?(this._createDoctypeToken(Ia(t)),this.state=us):t===E.NULL?(this._err(R.unexpectedNullCharacter),this._createDoctypeToken(Ae.REPLACEMENT_CHARACTER),this.state=us):t===E.GREATER_THAN_SIGN?(this._err(R.missingDoctypeName),this._createDoctypeToken(null),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this.state=ce):t===E.EOF?(this._err(R.eofInDoctype),this._createDoctypeToken(null),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):(this._createDoctypeToken(Fe(t)),this.state=us))}[us](t){xe(t)?this.state=QT:t===E.GREATER_THAN_SIGN?(this.state=ce,this._emitCurrentToken()):Gt(t)?this.currentToken.name+=Ia(t):t===E.NULL?(this._err(R.unexpectedNullCharacter),this.currentToken.name+=Ae.REPLACEMENT_CHARACTER):t===E.EOF?(this._err(R.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):this.currentToken.name+=Fe(t)}[QT](t){xe(t)||(t===E.GREATER_THAN_SIGN?(this.state=ce,this._emitCurrentToken()):t===E.EOF?(this._err(R.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):this._consumeSequenceIfMatch(ja.PUBLIC_STRING,t,!1)?this.state=jT:this._consumeSequenceIfMatch(ja.SYSTEM_STRING,t,!1)?this.state=JT:this._ensureHibernation()||(this._err(R.invalidCharacterSequenceAfterDoctypeName),this.currentToken.forceQuirks=!0,this._reconsumeInState(la)))}[jT](t){xe(t)?this.state=XT:t===E.QUOTATION_MARK?(this._err(R.missingWhitespaceAfterDoctypePublicKeyword),this.currentToken.publicId="",this.state=tc):t===E.APOSTROPHE?(this._err(R.missingWhitespaceAfterDoctypePublicKeyword),this.currentToken.publicId="",this.state=ac):t===E.GREATER_THAN_SIGN?(this._err(R.missingDoctypePublicIdentifier),this.currentToken.forceQuirks=!0,this.state=ce,this._emitCurrentToken()):t===E.EOF?(this._err(R.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):(this._err(R.missingQuoteBeforeDoctypePublicIdentifier),this.currentToken.forceQuirks=!0,this._reconsumeInState(la))}[XT](t){xe(t)||(t===E.QUOTATION_MARK?(this.currentToken.publicId="",this.state=tc):t===E.APOSTROPHE?(this.currentToken.publicId="",this.state=ac):t===E.GREATER_THAN_SIGN?(this._err(R.missingDoctypePublicIdentifier),this.currentToken.forceQuirks=!0,this.state=ce,this._emitCurrentToken()):t===E.EOF?(this._err(R.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):(this._err(R.missingQuoteBeforeDoctypePublicIdentifier),this.currentToken.forceQuirks=!0,this._reconsumeInState(la)))}[tc](t){t===E.QUOTATION_MARK?this.state=rc:t===E.NULL?(this._err(R.unexpectedNullCharacter),this.currentToken.publicId+=Ae.REPLACEMENT_CHARACTER):t===E.GREATER_THAN_SIGN?(this._err(R.abruptDoctypePublicIdentifier),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this.state=ce):t===E.EOF?(this._err(R.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):this.currentToken.publicId+=Fe(t)}[ac](t){t===E.APOSTROPHE?this.state=rc:t===E.NULL?(this._err(R.unexpectedNullCharacter),this.currentToken.publicId+=Ae.REPLACEMENT_CHARACTER):t===E.GREATER_THAN_SIGN?(this._err(R.abruptDoctypePublicIdentifier),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this.state=ce):t===E.EOF?(this._err(R.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):this.currentToken.publicId+=Fe(t)}[rc](t){xe(t)?this.state=ZT:t===E.GREATER_THAN_SIGN?(this.state=ce,this._emitCurrentToken()):t===E.QUOTATION_MARK?(this._err(R.missingWhitespaceBetweenDoctypePublicAndSystemIdentifiers),this.currentToken.systemId="",this.state=Fn):t===E.APOSTROPHE?(this._err(R.missingWhitespaceBetweenDoctypePublicAndSystemIdentifiers),this.currentToken.systemId="",this.state=Un):t===E.EOF?(this._err(R.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):(this._err(R.missingQuoteBeforeDoctypeSystemIdentifier),this.currentToken.forceQuirks=!0,this._reconsumeInState(la))}[ZT](t){xe(t)||(t===E.GREATER_THAN_SIGN?(this._emitCurrentToken(),this.state=ce):t===E.QUOTATION_MARK?(this.currentToken.systemId="",this.state=Fn):t===E.APOSTROPHE?(this.currentToken.systemId="",this.state=Un):t===E.EOF?(this._err(R.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):(this._err(R.missingQuoteBeforeDoctypeSystemIdentifier),this.currentToken.forceQuirks=!0,this._reconsumeInState(la)))}[JT](t){xe(t)?this.state=ey:t===E.QUOTATION_MARK?(this._err(R.missingWhitespaceAfterDoctypeSystemKeyword),this.currentToken.systemId="",this.state=Fn):t===E.APOSTROPHE?(this._err(R.missingWhitespaceAfterDoctypeSystemKeyword),this.currentToken.systemId="",this.state=Un):t===E.GREATER_THAN_SIGN?(this._err(R.missingDoctypeSystemIdentifier),this.currentToken.forceQuirks=!0,this.state=ce,this._emitCurrentToken()):t===E.EOF?(this._err(R.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):(this._err(R.missingQuoteBeforeDoctypeSystemIdentifier),this.currentToken.forceQuirks=!0,this._reconsumeInState(la))}[ey](t){xe(t)||(t===E.QUOTATION_MARK?(this.currentToken.systemId="",this.state=Fn):t===E.APOSTROPHE?(this.currentToken.systemId="",this.state=Un):t===E.GREATER_THAN_SIGN?(this._err(R.missingDoctypeSystemIdentifier),this.currentToken.forceQuirks=!0,this.state=ce,this._emitCurrentToken()):t===E.EOF?(this._err(R.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):(this._err(R.missingQuoteBeforeDoctypeSystemIdentifier),this.currentToken.forceQuirks=!0,this._reconsumeInState(la)))}[Fn](t){t===E.QUOTATION_MARK?this.state=nc:t===E.NULL?(this._err(R.unexpectedNullCharacter),this.currentToken.systemId+=Ae.REPLACEMENT_CHARACTER):t===E.GREATER_THAN_SIGN?(this._err(R.abruptDoctypeSystemIdentifier),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this.state=ce):t===E.EOF?(this._err(R.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):this.currentToken.systemId+=Fe(t)}[Un](t){t===E.APOSTROPHE?this.state=nc:t===E.NULL?(this._err(R.unexpectedNullCharacter),this.currentToken.systemId+=Ae.REPLACEMENT_CHARACTER):t===E.GREATER_THAN_SIGN?(this._err(R.abruptDoctypeSystemIdentifier),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this.state=ce):t===E.EOF?(this._err(R.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):this.currentToken.systemId+=Fe(t)}[nc](t){xe(t)||(t===E.GREATER_THAN_SIGN?(this._emitCurrentToken(),this.state=ce):t===E.EOF?(this._err(R.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):(this._err(R.unexpectedCharacterAfterDoctypeSystemIdentifier),this._reconsumeInState(la)))}[la](t){t===E.GREATER_THAN_SIGN?(this._emitCurrentToken(),this.state=ce):t===E.NULL?this._err(R.unexpectedNullCharacter):t===E.EOF&&(this._emitCurrentToken(),this._emitEOFToken())}[ps](t){t===E.RIGHT_SQUARE_BRACKET?this.state=ty:t===E.EOF?(this._err(R.eofInCdata),this._emitEOFToken()):this._emitCodePoint(t)}[ty](t){t===E.RIGHT_SQUARE_BRACKET?this.state=ay:(this._emitChars("]"),this._reconsumeInState(ps))}[ay](t){t===E.GREATER_THAN_SIGN?this.state=ce:t===E.RIGHT_SQUARE_BRACKET?this._emitChars("]"):(this._emitChars("]]"),this._reconsumeInState(ps))}[Ur](t){this.tempBuff=[E.AMPERSAND],t===E.NUMBER_SIGN?(this.tempBuff.push(t),this.state=iy):ic(t)?this._reconsumeInState(ry):(this._flushCodePointsConsumedAsCharacterReference(),this._reconsumeInState(this.returnState))}[ry](t){let a=this._matchNamedCharacterReference(t);if(this._ensureHibernation())this.tempBuff=[E.AMPERSAND];else if(a){let r=this.tempBuff[this.tempBuff.length-1]===E.SEMICOLON;this._isCharacterReferenceAttributeQuirk(r)||(r||this._errOnNextCodePoint(R.missingSemicolonAfterCharacterReference),this.tempBuff=a),this._flushCodePointsConsumedAsCharacterReference(),this.state=this.returnState}else this._flushCodePointsConsumedAsCharacterReference(),this.state=ny}[ny](t){ic(t)?this._isCharacterReferenceInAttribute()?this.currentAttr.value+=Fe(t):this._emitCodePoint(t):(t===E.SEMICOLON&&this._err(R.unknownNamedCharacterReference),this._reconsumeInState(this.returnState))}[iy](t){this.charRefCode=0,t===E.LATIN_SMALL_X||t===E.LATIN_CAPITAL_X?(this.tempBuff.push(t),this.state=sy):this._reconsumeInState(oy)}[sy](t){fM(t)?this._reconsumeInState(ly):(this._err(R.absenceOfDigitsInNumericCharacterReference),this._flushCodePointsConsumedAsCharacterReference(),this._reconsumeInState(this.returnState))}[oy](t){zn(t)?this._reconsumeInState(cy):(this._err(R.absenceOfDigitsInNumericCharacterReference),this._flushCodePointsConsumedAsCharacterReference(),this._reconsumeInState(this.returnState))}[ly](t){gy(t)?this.charRefCode=this.charRefCode*16+t-55:fy(t)?this.charRefCode=this.charRefCode*16+t-87:zn(t)?this.charRefCode=this.charRefCode*16+t-48:t===E.SEMICOLON?this.state=Bn:(this._err(R.missingSemicolonAfterCharacterReference),this._reconsumeInState(Bn))}[cy](t){zn(t)?this.charRefCode=this.charRefCode*10+t-48:t===E.SEMICOLON?this.state=Bn:(this._err(R.missingSemicolonAfterCharacterReference),this._reconsumeInState(Bn))}[Bn](){if(this.charRefCode===E.NULL)this._err(R.nullCharacterReference),this.charRefCode=E.REPLACEMENT_CHARACTER;else if(this.charRefCode>1114111)this._err(R.characterReferenceOutsideUnicodeRange),this.charRefCode=E.REPLACEMENT_CHARACTER;else if(Ae.isSurrogate(this.charRefCode))this._err(R.surrogateCharacterReference),this.charRefCode=E.REPLACEMENT_CHARACTER;else if(Ae.isUndefinedCodePoint(this.charRefCode))this._err(R.noncharacterCharacterReference);else if(Ae.isControlCodePoint(this.charRefCode)||this.charRefCode===E.CARRIAGE_RETURN){this._err(R.controlCharacterReference);let t=mM[this.charRefCode];t&&(this.charRefCode=t)}this.tempBuff=[this.charRefCode],this._flushCodePointsConsumedAsCharacterReference(),this._reconsumeInState(this.returnState)}};mt.CHARACTER_TOKEN="CHARACTER_TOKEN";mt.NULL_CHARACTER_TOKEN="NULL_CHARACTER_TOKEN";mt.WHITESPACE_CHARACTER_TOKEN="WHITESPACE_CHARACTER_TOKEN";mt.START_TAG_TOKEN="START_TAG_TOKEN";mt.END_TAG_TOKEN="END_TAG_TOKEN";mt.COMMENT_TOKEN="COMMENT_TOKEN";mt.DOCTYPE_TOKEN="DOCTYPE_TOKEN";mt.EOF_TOKEN="EOF_TOKEN";mt.HIBERNATION_TOKEN="HIBERNATION_TOKEN";mt.MODE={DATA:ce,RCDATA:Br,RAWTEXT:Gn,SCRIPT_DATA:ca,PLAINTEXT:my};mt.getTokenAttr=function(e,t){for(let a=e.attrs.length-1;a>=0;a--)if(e.attrs[a].name===t)return e.attrs[a].value;return null};Ey.exports=mt});var va=p(Gr=>{"use strict";var sc=Gr.NAMESPACES={HTML:"http://www.w3.org/1999/xhtml",MATHML:"http://www.w3.org/1998/Math/MathML",SVG:"http://www.w3.org/2000/svg",XLINK:"http://www.w3.org/1999/xlink",XML:"http://www.w3.org/XML/1998/namespace",XMLNS:"http://www.w3.org/2000/xmlns/"};Gr.ATTRS={TYPE:"type",ACTION:"action",ENCODING:"encoding",PROMPT:"prompt",NAME:"name",COLOR:"color",FACE:"face",SIZE:"size"};Gr.DOCUMENT_MODE={NO_QUIRKS:"no-quirks",QUIRKS:"quirks",LIMITED_QUIRKS:"limited-quirks"};var k=Gr.TAG_NAMES={A:"a",ADDRESS:"address",ANNOTATION_XML:"annotation-xml",APPLET:"applet",AREA:"area",ARTICLE:"article",ASIDE:"aside",B:"b",BASE:"base",BASEFONT:"basefont",BGSOUND:"bgsound",BIG:"big",BLOCKQUOTE:"blockquote",BODY:"body",BR:"br",BUTTON:"button",CAPTION:"caption",CENTER:"center",CODE:"code",COL:"col",COLGROUP:"colgroup",DD:"dd",DESC:"desc",DETAILS:"details",DIALOG:"dialog",DIR:"dir",DIV:"div",DL:"dl",DT:"dt",EM:"em",EMBED:"embed",FIELDSET:"fieldset",FIGCAPTION:"figcaption",FIGURE:"figure",FONT:"font",FOOTER:"footer",FOREIGN_OBJECT:"foreignObject",FORM:"form",FRAME:"frame",FRAMESET:"frameset",H1:"h1",H2:"h2",H3:"h3",H4:"h4",H5:"h5",H6:"h6",HEAD:"head",HEADER:"header",HGROUP:"hgroup",HR:"hr",HTML:"html",I:"i",IMG:"img",IMAGE:"image",INPUT:"input",IFRAME:"iframe",KEYGEN:"keygen",LABEL:"label",LI:"li",LINK:"link",LISTING:"listing",MAIN:"main",MALIGNMARK:"malignmark",MARQUEE:"marquee",MATH:"math",MENU:"menu",META:"meta",MGLYPH:"mglyph",MI:"mi",MO:"mo",MN:"mn",MS:"ms",MTEXT:"mtext",NAV:"nav",NOBR:"nobr",NOFRAMES:"noframes",NOEMBED:"noembed",NOSCRIPT:"noscript",OBJECT:"object",OL:"ol",OPTGROUP:"optgroup",OPTION:"option",P:"p",PARAM:"param",PLAINTEXT:"plaintext",PRE:"pre",RB:"rb",RP:"rp",RT:"rt",RTC:"rtc",RUBY:"ruby",S:"s",SCRIPT:"script",SECTION:"section",SELECT:"select",SOURCE:"source",SMALL:"small",SPAN:"span",STRIKE:"strike",STRONG:"strong",STYLE:"style",SUB:"sub",SUMMARY:"summary",SUP:"sup",TABLE:"table",TBODY:"tbody",TEMPLATE:"template",TEXTAREA:"textarea",TFOOT:"tfoot",TD:"td",TH:"th",THEAD:"thead",TITLE:"title",TR:"tr",TRACK:"track",TT:"tt",U:"u",UL:"ul",SVG:"svg",VAR:"var",WBR:"wbr",XMP:"xmp"};Gr.SPECIAL_ELEMENTS={[sc.HTML]:{[k.ADDRESS]:!0,[k.APPLET]:!0,[k.AREA]:!0,[k.ARTICLE]:!0,[k.ASIDE]:!0,[k.BASE]:!0,[k.BASEFONT]:!0,[k.BGSOUND]:!0,[k.BLOCKQUOTE]:!0,[k.BODY]:!0,[k.BR]:!0,[k.BUTTON]:!0,[k.CAPTION]:!0,[k.CENTER]:!0,[k.COL]:!0,[k.COLGROUP]:!0,[k.DD]:!0,[k.DETAILS]:!0,[k.DIR]:!0,[k.DIV]:!0,[k.DL]:!0,[k.DT]:!0,[k.EMBED]:!0,[k.FIELDSET]:!0,[k.FIGCAPTION]:!0,[k.FIGURE]:!0,[k.FOOTER]:!0,[k.FORM]:!0,[k.FRAME]:!0,[k.FRAMESET]:!0,[k.H1]:!0,[k.H2]:!0,[k.H3]:!0,[k.H4]:!0,[k.H5]:!0,[k.H6]:!0,[k.HEAD]:!0,[k.HEADER]:!0,[k.HGROUP]:!0,[k.HR]:!0,[k.HTML]:!0,[k.IFRAME]:!0,[k.IMG]:!0,[k.INPUT]:!0,[k.LI]:!0,[k.LINK]:!0,[k.LISTING]:!0,[k.MAIN]:!0,[k.MARQUEE]:!0,[k.MENU]:!0,[k.META]:!0,[k.NAV]:!0,[k.NOEMBED]:!0,[k.NOFRAMES]:!0,[k.NOSCRIPT]:!0,[k.OBJECT]:!0,[k.OL]:!0,[k.P]:!0,[k.PARAM]:!0,[k.PLAINTEXT]:!0,[k.PRE]:!0,[k.SCRIPT]:!0,[k.SECTION]:!0,[k.SELECT]:!0,[k.SOURCE]:!0,[k.STYLE]:!0,[k.SUMMARY]:!0,[k.TABLE]:!0,[k.TBODY]:!0,[k.TD]:!0,[k.TEMPLATE]:!0,[k.TEXTAREA]:!0,[k.TFOOT]:!0,[k.TH]:!0,[k.THEAD]:!0,[k.TITLE]:!0,[k.TR]:!0,[k.TRACK]:!0,[k.UL]:!0,[k.WBR]:!0,[k.XMP]:!0},[sc.MATHML]:{[k.MI]:!0,[k.MO]:!0,[k.MN]:!0,[k.MS]:!0,[k.MTEXT]:!0,[k.ANNOTATION_XML]:!0},[sc.SVG]:{[k.TITLE]:!0,[k.FOREIGN_OBJECT]:!0,[k.DESC]:!0}}});var yy=p((H7,Ty)=>{"use strict";var Sy=va(),w=Sy.TAG_NAMES,Ne=Sy.NAMESPACES;function hy(e){switch(e.length){case 1:return e===w.P;case 2:return e===w.RB||e===w.RP||e===w.RT||e===w.DD||e===w.DT||e===w.LI;case 3:return e===w.RTC;case 6:return e===w.OPTION;case 8:return e===w.OPTGROUP}return!1}function EM(e){switch(e.length){case 1:return e===w.P;case 2:return e===w.RB||e===w.RP||e===w.RT||e===w.DD||e===w.DT||e===w.LI||e===w.TD||e===w.TH||e===w.TR;case 3:return e===w.RTC;case 5:return e===w.TBODY||e===w.TFOOT||e===w.THEAD;case 6:return e===w.OPTION;case 7:return e===w.CAPTION;case 8:return e===w.OPTGROUP||e===w.COLGROUP}return!1}function gs(e,t){switch(e.length){case 2:if(e===w.TD||e===w.TH)return t===Ne.HTML;if(e===w.MI||e===w.MO||e===w.MN||e===w.MS)return t===Ne.MATHML;break;case 4:if(e===w.HTML)return t===Ne.HTML;if(e===w.DESC)return t===Ne.SVG;break;case 5:if(e===w.TABLE)return t===Ne.HTML;if(e===w.MTEXT)return t===Ne.MATHML;if(e===w.TITLE)return t===Ne.SVG;break;case 6:return(e===w.APPLET||e===w.OBJECT)&&t===Ne.HTML;case 7:return(e===w.CAPTION||e===w.MARQUEE)&&t===Ne.HTML;case 8:return e===w.TEMPLATE&&t===Ne.HTML;case 13:return e===w.FOREIGN_OBJECT&&t===Ne.SVG;case 14:return e===w.ANNOTATION_XML&&t===Ne.MATHML}return!1}var oc=class{constructor(t,a){this.stackTop=-1,this.items=[],this.current=t,this.currentTagName=null,this.currentTmplContent=null,this.tmplCount=0,this.treeAdapter=a}_indexOf(t){let a=-1;for(let r=this.stackTop;r>=0;r--)if(this.items[r]===t){a=r;break}return a}_isInTemplate(){return this.currentTagName===w.TEMPLATE&&this.treeAdapter.getNamespaceURI(this.current)===Ne.HTML}_updateCurrentElement(){this.current=this.items[this.stackTop],this.currentTagName=this.current&&this.treeAdapter.getTagName(this.current),this.currentTmplContent=this._isInTemplate()?this.treeAdapter.getTemplateContent(this.current):null}push(t){this.items[++this.stackTop]=t,this._updateCurrentElement(),this._isInTemplate()&&this.tmplCount++}pop(){this.stackTop--,this.tmplCount>0&&this._isInTemplate()&&this.tmplCount--,this._updateCurrentElement()}replace(t,a){let r=this._indexOf(t);this.items[r]=a,r===this.stackTop&&this._updateCurrentElement()}insertAfter(t,a){let r=this._indexOf(t)+1;this.items.splice(r,0,a),r===++this.stackTop&&this._updateCurrentElement()}popUntilTagNamePopped(t){for(;this.stackTop>-1;){let a=this.currentTagName,r=this.treeAdapter.getNamespaceURI(this.current);if(this.pop(),a===t&&r===Ne.HTML)break}}popUntilElementPopped(t){for(;this.stackTop>-1;){let a=this.current;if(this.pop(),a===t)break}}popUntilNumberedHeaderPopped(){for(;this.stackTop>-1;){let t=this.currentTagName,a=this.treeAdapter.getNamespaceURI(this.current);if(this.pop(),t===w.H1||t===w.H2||t===w.H3||t===w.H4||t===w.H5||t===w.H6&&a===Ne.HTML)break}}popUntilTableCellPopped(){for(;this.stackTop>-1;){let t=this.currentTagName,a=this.treeAdapter.getNamespaceURI(this.current);if(this.pop(),t===w.TD||t===w.TH&&a===Ne.HTML)break}}popAllUpToHtmlElement(){this.stackTop=0,this._updateCurrentElement()}clearBackToTableContext(){for(;this.currentTagName!==w.TABLE&&this.currentTagName!==w.TEMPLATE&&this.currentTagName!==w.HTML||this.treeAdapter.getNamespaceURI(this.current)!==Ne.HTML;)this.pop()}clearBackToTableBodyContext(){for(;this.currentTagName!==w.TBODY&&this.currentTagName!==w.TFOOT&&this.currentTagName!==w.THEAD&&this.currentTagName!==w.TEMPLATE&&this.currentTagName!==w.HTML||this.treeAdapter.getNamespaceURI(this.current)!==Ne.HTML;)this.pop()}clearBackToTableRowContext(){for(;this.currentTagName!==w.TR&&this.currentTagName!==w.TEMPLATE&&this.currentTagName!==w.HTML||this.treeAdapter.getNamespaceURI(this.current)!==Ne.HTML;)this.pop()}remove(t){for(let a=this.stackTop;a>=0;a--)if(this.items[a]===t){this.items.splice(a,1),this.stackTop--,this._updateCurrentElement();break}}tryPeekProperlyNestedBodyElement(){let t=this.items[1];return t&&this.treeAdapter.getTagName(t)===w.BODY?t:null}contains(t){return this._indexOf(t)>-1}getCommonAncestor(t){let a=this._indexOf(t);return--a>=0?this.items[a]:null}isRootHtmlElementCurrent(){return this.stackTop===0&&this.currentTagName===w.HTML}hasInScope(t){for(let a=this.stackTop;a>=0;a--){let r=this.treeAdapter.getTagName(this.items[a]),n=this.treeAdapter.getNamespaceURI(this.items[a]);if(r===t&&n===Ne.HTML)return!0;if(gs(r,n))return!1}return!0}hasNumberedHeaderInScope(){for(let t=this.stackTop;t>=0;t--){let a=this.treeAdapter.getTagName(this.items[t]),r=this.treeAdapter.getNamespaceURI(this.items[t]);if((a===w.H1||a===w.H2||a===w.H3||a===w.H4||a===w.H5||a===w.H6)&&r===Ne.HTML)return!0;if(gs(a,r))return!1}return!0}hasInListItemScope(t){for(let a=this.stackTop;a>=0;a--){let r=this.treeAdapter.getTagName(this.items[a]),n=this.treeAdapter.getNamespaceURI(this.items[a]);if(r===t&&n===Ne.HTML)return!0;if((r===w.UL||r===w.OL)&&n===Ne.HTML||gs(r,n))return!1}return!0}hasInButtonScope(t){for(let a=this.stackTop;a>=0;a--){let r=this.treeAdapter.getTagName(this.items[a]),n=this.treeAdapter.getNamespaceURI(this.items[a]);if(r===t&&n===Ne.HTML)return!0;if(r===w.BUTTON&&n===Ne.HTML||gs(r,n))return!1}return!0}hasInTableScope(t){for(let a=this.stackTop;a>=0;a--){let r=this.treeAdapter.getTagName(this.items[a]);if(this.treeAdapter.getNamespaceURI(this.items[a])===Ne.HTML){if(r===t)return!0;if(r===w.TABLE||r===w.TEMPLATE||r===w.HTML)return!1}}return!0}hasTableBodyContextInTableScope(){for(let t=this.stackTop;t>=0;t--){let a=this.treeAdapter.getTagName(this.items[t]);if(this.treeAdapter.getNamespaceURI(this.items[t])===Ne.HTML){if(a===w.TBODY||a===w.THEAD||a===w.TFOOT)return!0;if(a===w.TABLE||a===w.HTML)return!1}}return!0}hasInSelectScope(t){for(let a=this.stackTop;a>=0;a--){let r=this.treeAdapter.getTagName(this.items[a]);if(this.treeAdapter.getNamespaceURI(this.items[a])===Ne.HTML){if(r===t)return!0;if(r!==w.OPTION&&r!==w.OPTGROUP)return!1}}return!0}generateImpliedEndTags(){for(;hy(this.currentTagName);)this.pop()}generateImpliedEndTagsThoroughly(){for(;EM(this.currentTagName);)this.pop()}generateImpliedEndTagsWithExclusion(t){for(;hy(this.currentTagName)&&this.currentTagName!==t;)this.pop()}};Ty.exports=oc});var Cy=p((Y7,by)=>{"use strict";var Yn=class e{constructor(t){this.length=0,this.entries=[],this.treeAdapter=t,this.bookmark=null}_getNoahArkConditionCandidates(t){let a=[];if(this.length>=3){let r=this.treeAdapter.getAttrList(t).length,n=this.treeAdapter.getTagName(t),i=this.treeAdapter.getNamespaceURI(t);for(let s=this.length-1;s>=0;s--){let o=this.entries[s];if(o.type===e.MARKER_ENTRY)break;let c=o.element,l=this.treeAdapter.getAttrList(c);this.treeAdapter.getTagName(c)===n&&this.treeAdapter.getNamespaceURI(c)===i&&l.length===r&&a.push({idx:s,attrs:l})}}return a.length<3?[]:a}_ensureNoahArkCondition(t){let a=this._getNoahArkConditionCandidates(t),r=a.length;if(r){let n=this.treeAdapter.getAttrList(t),i=n.length,s=Object.create(null);for(let o=0;o<i;o++){let c=n[o];s[c.name]=c.value}for(let o=0;o<i;o++)for(let c=0;c<r;c++){let l=a[c].attrs[o];if(s[l.name]!==l.value&&(a.splice(c,1),r--),a.length<3)return}for(let o=r-1;o>=2;o--)this.entries.splice(a[o].idx,1),this.length--}}insertMarker(){this.entries.push({type:e.MARKER_ENTRY}),this.length++}pushElement(t,a){this._ensureNoahArkCondition(t),this.entries.push({type:e.ELEMENT_ENTRY,element:t,token:a}),this.length++}insertElementAfterBookmark(t,a){let r=this.length-1;for(;r>=0&&this.entries[r]!==this.bookmark;r--);this.entries.splice(r+1,0,{type:e.ELEMENT_ENTRY,element:t,token:a}),this.length++}removeEntry(t){for(let a=this.length-1;a>=0;a--)if(this.entries[a]===t){this.entries.splice(a,1),this.length--;break}}clearToLastMarker(){for(;this.length;){let t=this.entries.pop();if(this.length--,t.type===e.MARKER_ENTRY)break}}getElementEntryInScopeWithTagName(t){for(let a=this.length-1;a>=0;a--){let r=this.entries[a];if(r.type===e.MARKER_ENTRY)return null;if(this.treeAdapter.getTagName(r.element)===t)return r}return null}getElementEntry(t){for(let a=this.length-1;a>=0;a--){let r=this.entries[a];if(r.type===e.ELEMENT_ENTRY&&r.element===t)return r}return null}};Yn.MARKER_ENTRY="MARKER_ENTRY";Yn.ELEMENT_ENTRY="ELEMENT_ENTRY";by.exports=Yn});var Kt=p((q7,Ry)=>{"use strict";var fs=class{constructor(t){let a={},r=this._getOverriddenMethods(this,a);for(let n of Object.keys(r))typeof r[n]=="function"&&(a[n]=t[n],t[n]=r[n])}_getOverriddenMethods(){throw new Error("Not implemented")}};fs.install=function(e,t,a){e.__mixins||(e.__mixins=[]);for(let n=0;n<e.__mixins.length;n++)if(e.__mixins[n].constructor===t)return e.__mixins[n];let r=new t(e,a);return e.__mixins.push(r),r};Ry.exports=fs});var cc=p(($7,Ay)=>{"use strict";var hM=Kt(),lc=class extends hM{constructor(t){super(t),this.preprocessor=t,this.isEol=!1,this.lineStartPos=0,this.droppedBufferSize=0,this.offset=0,this.col=0,this.line=1}_getOverriddenMethods(t,a){return{advance(){let r=this.pos+1,n=this.html[r];return t.isEol&&(t.isEol=!1,t.line++,t.lineStartPos=r),(n===`
|
|
110
|
+
`},{className:"string",begin:"\\d{4}-\\d{2}-\\d{2}(\\s+)\\d{2}:\\d{2}:\\d{2}.\\d+Z"},{className:"string",begin:"(\\+|-)\\d+"},{className:"keyword",relevance:10,variants:[{begin:"^(test|testing|success|successful|failure|error|skip|xfail|uxsuccess)(:?)\\s+(test)?"},{begin:"^progress(:?)(\\s+)?(pop|push)?"},{begin:"^tags:"},{begin:"^time:"}]}]}}dS.exports=Ix});var yS=p((g7,TS)=>{function fS(e){return e?typeof e=="string"?e:e.source:null}function Pr(e){return De("(?=",e,")")}function De(...e){return e.map(a=>fS(a)).join("")}function _t(...e){return"("+e.map(a=>fS(a)).join("|")+")"}var $l=e=>De(/\b/,e,/\w$/.test(e)?/\b/:/\B/),pS=["Protocol","Type"].map($l),zl=["init","self"].map($l),kx=["Any","Self"],Hl=["associatedtype","async","await",/as\?/,/as!/,"as","break","case","catch","class","continue","convenience","default","defer","deinit","didSet","do","dynamic","else","enum","extension","fallthrough",/fileprivate\(set\)/,"fileprivate","final","for","func","get","guard","if","import","indirect","infix",/init\?/,/init!/,"inout",/internal\(set\)/,"internal","in","is","lazy","let","mutating","nonmutating",/open\(set\)/,"open","operator","optional","override","postfix","precedencegroup","prefix",/private\(set\)/,"private","protocol",/public\(set\)/,"public","repeat","required","rethrows","return","set","some","static","struct","subscript","super","switch","throws","throw",/try\?/,/try!/,"try","typealias",/unowned\(safe\)/,/unowned\(unsafe\)/,"unowned","var","weak","where","while","willSet"],mS=["false","nil","true"],vx=["assignment","associativity","higherThan","left","lowerThan","none","right"],wx=["#colorLiteral","#column","#dsohandle","#else","#elseif","#endif","#error","#file","#fileID","#fileLiteral","#filePath","#function","#if","#imageLiteral","#keyPath","#line","#selector","#sourceLocation","#warn_unqualified_access","#warning"],gS=["abs","all","any","assert","assertionFailure","debugPrint","dump","fatalError","getVaList","isKnownUniquelyReferenced","max","min","numericCast","pointwiseMax","pointwiseMin","precondition","preconditionFailure","print","readLine","repeatElement","sequence","stride","swap","swift_unboxFromSwiftValueWithType","transcode","type","unsafeBitCast","unsafeDowncast","withExtendedLifetime","withUnsafeMutablePointer","withUnsafePointer","withVaList","withoutActuallyEscaping","zip"],ES=_t(/[/=\-+!*%<>&|^~?]/,/[\u00A1-\u00A7]/,/[\u00A9\u00AB]/,/[\u00AC\u00AE]/,/[\u00B0\u00B1]/,/[\u00B6\u00BB\u00BF\u00D7\u00F7]/,/[\u2016-\u2017]/,/[\u2020-\u2027]/,/[\u2030-\u203E]/,/[\u2041-\u2053]/,/[\u2055-\u205E]/,/[\u2190-\u23FF]/,/[\u2500-\u2775]/,/[\u2794-\u2BFF]/,/[\u2E00-\u2E7F]/,/[\u3001-\u3003]/,/[\u3008-\u3020]/,/[\u3030]/),hS=_t(ES,/[\u0300-\u036F]/,/[\u1DC0-\u1DFF]/,/[\u20D0-\u20FF]/,/[\uFE00-\uFE0F]/,/[\uFE20-\uFE2F]/),Yl=De(ES,hS,"*"),SS=_t(/[a-zA-Z_]/,/[\u00A8\u00AA\u00AD\u00AF\u00B2-\u00B5\u00B7-\u00BA]/,/[\u00BC-\u00BE\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF]/,/[\u0100-\u02FF\u0370-\u167F\u1681-\u180D\u180F-\u1DBF]/,/[\u1E00-\u1FFF]/,/[\u200B-\u200D\u202A-\u202E\u203F-\u2040\u2054\u2060-\u206F]/,/[\u2070-\u20CF\u2100-\u218F\u2460-\u24FF\u2776-\u2793]/,/[\u2C00-\u2DFF\u2E80-\u2FFF]/,/[\u3004-\u3007\u3021-\u302F\u3031-\u303F\u3040-\uD7FF]/,/[\uF900-\uFD3D\uFD40-\uFDCF\uFDF0-\uFE1F\uFE30-\uFE44]/,/[\uFE47-\uFEFE\uFF00-\uFFFD]/),Zi=_t(SS,/\d/,/[\u0300-\u036F\u1DC0-\u1DFF\u20D0-\u20FF\uFE20-\uFE2F]/),ia=De(SS,Zi,"*"),ql=De(/[A-Z]/,Zi,"*"),xx=["autoclosure",De(/convention\(/,_t("swift","block","c"),/\)/),"discardableResult","dynamicCallable","dynamicMemberLookup","escaping","frozen","GKInspectable","IBAction","IBDesignable","IBInspectable","IBOutlet","IBSegueAction","inlinable","main","nonobjc","NSApplicationMain","NSCopying","NSManaged",De(/objc\(/,ia,/\)/),"objc","objcMembers","propertyWrapper","requires_stored_property_inits","testable","UIApplicationMain","unknown","usableFromInline"],Mx=["iOS","iOSApplicationExtension","macOS","macOSApplicationExtension","macCatalyst","macCatalystApplicationExtension","watchOS","watchOSApplicationExtension","tvOS","tvOSApplicationExtension","swift"];function Lx(e){let t={match:/\s+/,relevance:0},a=e.COMMENT("/\\*","\\*/",{contains:["self"]}),r=[e.C_LINE_COMMENT_MODE,a],n={className:"keyword",begin:De(/\./,Pr(_t(...pS,...zl))),end:_t(...pS,...zl),excludeBegin:!0},i={match:De(/\./,_t(...Hl)),relevance:0},s=Hl.filter(oe=>typeof oe=="string").concat(["_|0"]),o=Hl.filter(oe=>typeof oe!="string").concat(kx).map($l),c={variants:[{className:"keyword",match:_t(...o,...zl)}]},l={$pattern:_t(/\b\w+/,/#\w+/),keyword:s.concat(wx),literal:mS},d=[n,i,c],u={match:De(/\./,_t(...gS)),relevance:0},g={className:"built_in",match:De(/\b/,_t(...gS),/(?=\()/)},h=[u,g],m={match:/->/,relevance:0},y={className:"operator",relevance:0,variants:[{match:Yl},{match:`\\.(\\.|${hS})+`}]},b=[m,y],N="([0-9]_*)+",C="([0-9a-fA-F]_*)+",A={className:"number",relevance:0,variants:[{match:`\\b(${N})(\\.(${N}))?([eE][+-]?(${N}))?\\b`},{match:`\\b0x(${C})(\\.(${C}))?([pP][+-]?(${N}))?\\b`},{match:/\b0o([0-7]_*)+\b/},{match:/\b0b([01]_*)+\b/}]},I=(oe="")=>({className:"subst",variants:[{match:De(/\\/,oe,/[0\\tnr"']/)},{match:De(/\\/,oe,/u\{[0-9a-fA-F]{1,8}\}/)}]}),L=(oe="")=>({className:"subst",match:De(/\\/,oe,/[\t ]*(?:[\r\n]|\r\n)/)}),Y=(oe="")=>({className:"subst",label:"interpol",begin:De(/\\/,oe,/\(/),end:/\)/}),Z=(oe="")=>({begin:De(oe,/"""/),end:De(/"""/,oe),contains:[I(oe),L(oe),Y(oe)]}),Oe=(oe="")=>({begin:De(oe,/"/),end:De(/"/,oe),contains:[I(oe),Y(oe)]}),W={className:"string",variants:[Z(),Z("#"),Z("##"),Z("###"),Oe(),Oe("#"),Oe("##"),Oe("###")]},Be={match:De(/`/,ia,/`/)},dt={className:"variable",match:/\$\d+/},Ta={className:"variable",match:`\\$${Zi}+`},Pt=[Be,dt,Ta],Ve={match:/(@|#)available/,className:"keyword",starts:{contains:[{begin:/\(/,end:/\)/,keywords:Mx,contains:[...b,A,W]}]}},Qe={className:"keyword",match:De(/@/,_t(...xx))},F={className:"meta",match:De(/@/,ia)},X=[Ve,Qe,F],ze={match:Pr(/\b[A-Z]/),relevance:0,contains:[{className:"type",match:De(/(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)/,Zi,"+")},{className:"type",match:ql,relevance:0},{match:/[?!]+/,relevance:0},{match:/\.\.\./,relevance:0},{match:De(/\s+&\s+/,Pr(ql)),relevance:0}]},Jt={begin:/</,end:/>/,keywords:l,contains:[...r,...d,...X,m,ze]};ze.contains.push(Jt);let Ye={match:De(ia,/\s*:/),keywords:"_|0",relevance:0},tt={begin:/\(/,end:/\)/,relevance:0,keywords:l,contains:["self",Ye,...r,...d,...h,...b,A,W,...Pt,...X,ze]},yt={beginKeywords:"func",contains:[{className:"title",match:_t(Be.match,ia,Yl),endsParent:!0,relevance:0},t]},O={begin:/</,end:/>/,contains:[...r,ze]},U={begin:_t(Pr(De(ia,/\s*:/)),Pr(De(ia,/\s+/,ia,/\s*:/))),end:/:/,relevance:0,contains:[{className:"keyword",match:/\b_\b/},{className:"params",match:ia}]},ae={begin:/\(/,end:/\)/,keywords:l,contains:[U,...r,...d,...b,A,W,...X,ze,tt],endsParent:!0,illegal:/["']/},fe={className:"function",match:Pr(/\bfunc\b/),contains:[yt,O,ae,t],illegal:[/\[/,/%/]},we={className:"function",match:/\b(subscript|init[?!]?)\s*(?=[<(])/,keywords:{keyword:"subscript init init? init!",$pattern:/\w+[?!]?/},contains:[O,ae,t],illegal:/\[|%/},bt={beginKeywords:"operator",end:e.MATCH_NOTHING_RE,contains:[{className:"title",match:Yl,endsParent:!0,relevance:0}]},st={beginKeywords:"precedencegroup",end:e.MATCH_NOTHING_RE,contains:[{className:"title",match:ql,relevance:0},{begin:/{/,end:/}/,relevance:0,endsParent:!0,keywords:[...vx,...mS],contains:[ze]}]};for(let oe of W.variants){let ut=oe.contains.find(li=>li.label==="interpol");ut.keywords=l;let Ct=[...d,...h,...b,A,W,...Pt];ut.contains=[...Ct,{begin:/\(/,end:/\)/,contains:["self",...Ct]}]}return{name:"Swift",keywords:l,contains:[...r,fe,we,{className:"class",beginKeywords:"struct protocol class extension enum",end:"\\{",excludeEnd:!0,keywords:l,contains:[e.inherit(e.TITLE_MODE,{begin:/[A-Za-z$_][\u00C0-\u02B80-9A-Za-z$_]*/}),...d]},bt,st,{beginKeywords:"import",end:/$/,contains:[...r],relevance:0},...d,...h,...b,A,W,...Pt,...X,ze,tt]}}TS.exports=Lx});var CS=p((f7,bS)=>{function Px(e){return{name:"Tagger Script",contains:[{className:"comment",begin:/\$noop\(/,end:/\)/,contains:[{begin:/\(/,end:/\)/,contains:["self",{begin:/\\./}]}],relevance:10},{className:"keyword",begin:/\$(?!noop)[a-zA-Z][_a-zA-Z0-9]*/,end:/\(/,excludeEnd:!0},{className:"variable",begin:/%[_a-zA-Z0-9:]*/,end:"%"},{className:"symbol",begin:/\\./}]}}bS.exports=Px});var AS=p((E7,RS)=>{function Fx(e){var t="true false yes no null",a="[\\w#;/?:@&=+$,.~*'()[\\]]+",r={className:"attr",variants:[{begin:"\\w[\\w :\\/.-]*:(?=[ ]|$)"},{begin:'"\\w[\\w :\\/.-]*":(?=[ ]|$)'},{begin:"'\\w[\\w :\\/.-]*':(?=[ ]|$)"}]},n={className:"template-variable",variants:[{begin:/\{\{/,end:/\}\}/},{begin:/%\{/,end:/\}/}]},i={className:"string",relevance:0,variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/\S+/}],contains:[e.BACKSLASH_ESCAPE,n]},s=e.inherit(i,{variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/[^\s,{}[\]]+/}]}),o="[0-9]{4}(-[0-9][0-9]){0,2}",c="([Tt \\t][0-9][0-9]?(:[0-9][0-9]){2})?",l="(\\.[0-9]*)?",d="([ \\t])*(Z|[-+][0-9][0-9]?(:[0-9][0-9])?)?",u={className:"number",begin:"\\b"+o+c+l+d+"\\b"},g={end:",",endsWithParent:!0,excludeEnd:!0,keywords:t,relevance:0},h={begin:/\{/,end:/\}/,contains:[g],illegal:"\\n",relevance:0},m={begin:"\\[",end:"\\]",contains:[g],illegal:"\\n",relevance:0},y=[r,{className:"meta",begin:"^---\\s*$",relevance:10},{className:"string",begin:"[\\|>]([1-9]?[+-])?[ ]*\\n( +)[^ ][^\\n]*\\n(\\2[^\\n]+\\n?)*"},{begin:"<%[%=-]?",end:"[%-]?%>",subLanguage:"ruby",excludeBegin:!0,excludeEnd:!0,relevance:0},{className:"type",begin:"!\\w+!"+a},{className:"type",begin:"!<"+a+">"},{className:"type",begin:"!"+a},{className:"type",begin:"!!"+a},{className:"meta",begin:"&"+e.UNDERSCORE_IDENT_RE+"$"},{className:"meta",begin:"\\*"+e.UNDERSCORE_IDENT_RE+"$"},{className:"bullet",begin:"-(?=[ ]|$)",relevance:0},e.HASH_COMMENT_MODE,{beginKeywords:t,keywords:{literal:t}},u,{className:"number",begin:e.C_NUMBER_RE+"\\b",relevance:0},h,m,i],b=[...y];return b.pop(),b.push(s),g.contains=b,{name:"YAML",case_insensitive:!0,aliases:["yml"],contains:y}}RS.exports=Fx});var OS=p((h7,NS)=>{function Ux(e){return{name:"Test Anything Protocol",case_insensitive:!0,contains:[e.HASH_COMMENT_MODE,{className:"meta",variants:[{begin:"^TAP version (\\d+)$"},{begin:"^1\\.\\.(\\d+)$"}]},{begin:/---$/,end:"\\.\\.\\.$",subLanguage:"yaml",relevance:0},{className:"number",begin:" (\\d+) "},{className:"symbol",variants:[{begin:"^ok"},{begin:"^not ok"}]}]}}NS.exports=Ux});var kS=p((S7,IS)=>{function Bx(e){return e?typeof e=="string"?e:e.source:null}function Gx(e){return DS("(",e,")?")}function DS(...e){return e.map(a=>Bx(a)).join("")}function zx(e){let t=/[a-zA-Z_][a-zA-Z0-9_]*/,a={className:"number",variants:[e.BINARY_NUMBER_MODE,e.C_NUMBER_MODE]};return{name:"Tcl",aliases:["tk"],keywords:"after append apply array auto_execok auto_import auto_load auto_mkindex auto_mkindex_old auto_qualify auto_reset bgerror binary break catch cd chan clock close concat continue dde dict encoding eof error eval exec exit expr fblocked fconfigure fcopy file fileevent filename flush for foreach format gets glob global history http if incr info interp join lappend|10 lassign|10 lindex|10 linsert|10 list llength|10 load lrange|10 lrepeat|10 lreplace|10 lreverse|10 lsearch|10 lset|10 lsort|10 mathfunc mathop memory msgcat namespace open package parray pid pkg::create pkg_mkIndex platform platform::shell proc puts pwd read refchan regexp registry regsub|10 rename return safe scan seek set socket source split string subst switch tcl_endOfWord tcl_findLibrary tcl_startOfNextWord tcl_startOfPreviousWord tcl_wordBreakAfter tcl_wordBreakBefore tcltest tclvars tell time tm trace unknown unload unset update uplevel upvar variable vwait while",contains:[e.COMMENT(";[ \\t]*#","$"),e.COMMENT("^[ \\t]*#","$"),{beginKeywords:"proc",end:"[\\{]",excludeEnd:!0,contains:[{className:"title",begin:"[ \\t\\n\\r]+(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*",end:"[ \\t\\n\\r]",endsWithParent:!0,excludeEnd:!0}]},{className:"variable",variants:[{begin:DS(/\$/,Gx(/::/),t,"(::",t,")*")},{begin:"\\$\\{(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*",end:"\\}",contains:[a]}]},{className:"string",contains:[e.BACKSLASH_ESCAPE],variants:[e.inherit(e.QUOTE_STRING_MODE,{illegal:null})]},a]}}IS.exports=zx});var wS=p((T7,vS)=>{function Hx(e){let t="bool byte i16 i32 i64 double string binary";return{name:"Thrift",keywords:{keyword:"namespace const typedef struct enum service exception void oneway set list map required optional",built_in:t,literal:"true false"},contains:[e.QUOTE_STRING_MODE,e.NUMBER_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:"class",beginKeywords:"struct enum service exception",end:/\{/,illegal:/\n/,contains:[e.inherit(e.TITLE_MODE,{starts:{endsWithParent:!0,excludeEnd:!0}})]},{begin:"\\b(set|list|map)\\s*<",end:">",keywords:t,contains:["self"]}]}}vS.exports=Hx});var MS=p((y7,xS)=>{function Yx(e){let t={className:"number",begin:"[1-9][0-9]*",relevance:0},a={className:"symbol",begin:":[^\\]]+"},r={className:"built_in",begin:"(AR|P|PAYLOAD|PR|R|SR|RSR|LBL|VR|UALM|MESSAGE|UTOOL|UFRAME|TIMER|TIMER_OVERFLOW|JOINT_MAX_SPEED|RESUME_PROG|DIAG_REC)\\[",end:"\\]",contains:["self",t,a]},n={className:"built_in",begin:"(AI|AO|DI|DO|F|RI|RO|UI|UO|GI|GO|SI|SO)\\[",end:"\\]",contains:["self",t,e.QUOTE_STRING_MODE,a]};return{name:"TP",keywords:{keyword:"ABORT ACC ADJUST AND AP_LD BREAK CALL CNT COL CONDITION CONFIG DA DB DIV DETECT ELSE END ENDFOR ERR_NUM ERROR_PROG FINE FOR GP GUARD INC IF JMP LINEAR_MAX_SPEED LOCK MOD MONITOR OFFSET Offset OR OVERRIDE PAUSE PREG PTH RT_LD RUN SELECT SKIP Skip TA TB TO TOOL_OFFSET Tool_Offset UF UT UFRAME_NUM UTOOL_NUM UNLOCK WAIT X Y Z W P R STRLEN SUBSTR FINDSTR VOFFSET PROG ATTR MN POS",literal:"ON OFF max_speed LPOS JPOS ENABLE DISABLE START STOP RESET"},contains:[r,n,{className:"keyword",begin:"/(PROG|ATTR|MN|POS|END)\\b"},{className:"keyword",begin:"(CALL|RUN|POINT_LOGIC|LBL)\\b"},{className:"keyword",begin:"\\b(ACC|CNT|Skip|Offset|PSPD|RT_LD|AP_LD|Tool_Offset)"},{className:"number",begin:"\\d+(sec|msec|mm/sec|cm/min|inch/min|deg/sec|mm|in|cm)?\\b",relevance:0},e.COMMENT("//","[;$]"),e.COMMENT("!","[;$]"),e.COMMENT("--eg:","$"),e.QUOTE_STRING_MODE,{className:"string",begin:"'",end:"'"},e.C_NUMBER_MODE,{className:"variable",begin:"\\$[A-Za-z0-9_]+"}]}}xS.exports=Yx});var PS=p((b7,LS)=>{function qx(e){var t={className:"params",begin:"\\(",end:"\\)"},a="attribute block constant cycle date dump include max min parent random range source template_from_string",r={beginKeywords:a,keywords:{name:a},relevance:0,contains:[t]},n={begin:/\|[A-Za-z_]+:?/,keywords:"abs batch capitalize column convert_encoding date date_modify default escape filter first format inky_to_html inline_css join json_encode keys last length lower map markdown merge nl2br number_format raw reduce replace reverse round slice sort spaceless split striptags title trim upper url_encode",contains:[r]},i="apply autoescape block deprecated do embed extends filter flush for from if import include macro sandbox set use verbatim with";return i=i+" "+i.split(" ").map(function(s){return"end"+s}).join(" "),{name:"Twig",aliases:["craftcms"],case_insensitive:!0,subLanguage:"xml",contains:[e.COMMENT(/\{#/,/#\}/),{className:"template-tag",begin:/\{%/,end:/%\}/,contains:[{className:"name",begin:/\w+/,keywords:i,starts:{endsWithParent:!0,contains:[n,r],relevance:0}}]},{className:"template-variable",begin:/\{\{/,end:/\}\}/,contains:["self",n,r]}]}}LS.exports=qx});var HS=p((C7,zS)=>{var Ji="[A-Za-z$_][0-9A-Za-z$_]*",US=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends"],BS=["true","false","null","undefined","NaN","Infinity"],$x=["Intl","DataView","Number","Math","Date","String","RegExp","Object","Function","Boolean","Error","Symbol","Set","Map","WeakSet","WeakMap","Proxy","Reflect","JSON","Promise","Float64Array","Int16Array","Int32Array","Int8Array","Uint16Array","Uint32Array","Float32Array","Array","Uint8Array","Uint8ClampedArray","ArrayBuffer","BigInt64Array","BigUint64Array","BigInt"],Vx=["EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"],Kx=["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],Wx=["arguments","this","super","console","window","document","localStorage","module","global"],GS=[].concat(Kx,Wx,$x,Vx);function Qx(e){return e?typeof e=="string"?e:e.source:null}function FS(e){return Vl("(?=",e,")")}function Vl(...e){return e.map(a=>Qx(a)).join("")}function jx(e){let t=(I,{after:L})=>{let Y="</"+I[0].slice(1);return I.input.indexOf(Y,L)!==-1},a=Ji,r={begin:"<>",end:"</>"},n={begin:/<[A-Za-z0-9\\._:-]+/,end:/\/[A-Za-z0-9\\._:-]+>|\/>/,isTrulyOpeningTag:(I,L)=>{let Y=I[0].length+I.index,Z=I.input[Y];if(Z==="<"){L.ignoreMatch();return}Z===">"&&(t(I,{after:Y})||L.ignoreMatch())}},i={$pattern:Ji,keyword:US,literal:BS,built_in:GS},s="[0-9](_?[0-9])*",o=`\\.(${s})`,c="0|[1-9](_?[0-9])*|0[0-7]*[89][0-9]*",l={className:"number",variants:[{begin:`(\\b(${c})((${o})|\\.)?|(${o}))[eE][+-]?(${s})\\b`},{begin:`\\b(${c})\\b((${o})\\b|\\.)?|(${o})\\b`},{begin:"\\b(0|[1-9](_?[0-9])*)n\\b"},{begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*n?\\b"},{begin:"\\b0[bB][0-1](_?[0-1])*n?\\b"},{begin:"\\b0[oO][0-7](_?[0-7])*n?\\b"},{begin:"\\b0[0-7]+n?\\b"}],relevance:0},d={className:"subst",begin:"\\$\\{",end:"\\}",keywords:i,contains:[]},u={begin:"html`",end:"",starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,d],subLanguage:"xml"}},g={begin:"css`",end:"",starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,d],subLanguage:"css"}},h={className:"string",begin:"`",end:"`",contains:[e.BACKSLASH_ESCAPE,d]},y={className:"comment",variants:[e.COMMENT(/\/\*\*(?!\/)/,"\\*/",{relevance:0,contains:[{className:"doctag",begin:"@[A-Za-z]+",contains:[{className:"type",begin:"\\{",end:"\\}",relevance:0},{className:"variable",begin:a+"(?=\\s*(-)|$)",endsParent:!0,relevance:0},{begin:/(?=[^\n])\s/,relevance:0}]}]}),e.C_BLOCK_COMMENT_MODE,e.C_LINE_COMMENT_MODE]},b=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,u,g,h,l,e.REGEXP_MODE];d.contains=b.concat({begin:/\{/,end:/\}/,keywords:i,contains:["self"].concat(b)});let N=[].concat(y,d.contains),C=N.concat([{begin:/\(/,end:/\)/,keywords:i,contains:["self"].concat(N)}]),A={className:"params",begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:i,contains:C};return{name:"Javascript",aliases:["js","jsx","mjs","cjs"],keywords:i,exports:{PARAMS_CONTAINS:C},illegal:/#(?![$_A-z])/,contains:[e.SHEBANG({label:"shebang",binary:"node",relevance:5}),{label:"use_strict",className:"meta",relevance:10,begin:/^\s*['"]use (strict|asm)['"]/},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,u,g,h,y,l,{begin:Vl(/[{,\n]\s*/,FS(Vl(/(((\/\/.*$)|(\/\*(\*[^/]|[^*])*\*\/))\s*)*/,a+"\\s*:"))),relevance:0,contains:[{className:"attr",begin:a+FS("\\s*:"),relevance:0}]},{begin:"("+e.RE_STARTERS_RE+"|\\b(case|return|throw)\\b)\\s*",keywords:"return throw case",contains:[y,e.REGEXP_MODE,{className:"function",begin:"(\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)|"+e.UNDERSCORE_IDENT_RE+")\\s*=>",returnBegin:!0,end:"\\s*=>",contains:[{className:"params",variants:[{begin:e.UNDERSCORE_IDENT_RE,relevance:0},{className:null,begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:i,contains:C}]}]},{begin:/,/,relevance:0},{className:"",begin:/\s/,end:/\s*/,skip:!0},{variants:[{begin:r.begin,end:r.end},{begin:n.begin,"on:begin":n.isTrulyOpeningTag,end:n.end}],subLanguage:"xml",contains:[{begin:n.begin,end:n.end,skip:!0,contains:["self"]}]}],relevance:0},{className:"function",beginKeywords:"function",end:/[{;]/,excludeEnd:!0,keywords:i,contains:["self",e.inherit(e.TITLE_MODE,{begin:a}),A],illegal:/%/},{beginKeywords:"while if switch catch for"},{className:"function",begin:e.UNDERSCORE_IDENT_RE+"\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{",returnBegin:!0,contains:[A,e.inherit(e.TITLE_MODE,{begin:a})]},{variants:[{begin:"\\."+a},{begin:"\\$"+a}],relevance:0},{className:"class",beginKeywords:"class",end:/[{;=]/,excludeEnd:!0,illegal:/[:"[\]]/,contains:[{beginKeywords:"extends"},e.UNDERSCORE_TITLE_MODE]},{begin:/\b(?=constructor)/,end:/[{;]/,excludeEnd:!0,contains:[e.inherit(e.TITLE_MODE,{begin:a}),"self",A]},{begin:"(get|set)\\s+(?="+a+"\\()",end:/\{/,keywords:"get set",contains:[e.inherit(e.TITLE_MODE,{begin:a}),{begin:/\(\)/},A]},{begin:/\$[(.]/}]}}function Xx(e){let t=Ji,a={beginKeywords:"namespace",end:/\{/,excludeEnd:!0},r={beginKeywords:"interface",end:/\{/,excludeEnd:!0,keywords:"interface extends"},n={className:"meta",relevance:10,begin:/^\s*['"]use strict['"]/},i=["any","void","number","boolean","string","object","never","enum"],s=["type","namespace","typedef","interface","public","private","protected","implements","declare","abstract","readonly"],o={$pattern:Ji,keyword:US.concat(s),literal:BS,built_in:GS.concat(i)},c={className:"meta",begin:"@"+t},l=(g,h,m)=>{let y=g.contains.findIndex(b=>b.label===h);if(y===-1)throw new Error("can not find mode to replace");g.contains.splice(y,1,m)},d=jx(e);Object.assign(d.keywords,o),d.exports.PARAMS_CONTAINS.push(c),d.contains=d.contains.concat([c,a,r]),l(d,"shebang",e.SHEBANG()),l(d,"use_strict",n);let u=d.contains.find(g=>g.className==="function");return u.relevance=0,Object.assign(d,{name:"TypeScript",aliases:["ts","tsx"]}),d}zS.exports=Xx});var qS=p((R7,YS)=>{function Zx(e){return{name:"Vala",keywords:{keyword:"char uchar unichar int uint long ulong short ushort int8 int16 int32 int64 uint8 uint16 uint32 uint64 float double bool struct enum string void weak unowned owned async signal static abstract interface override virtual delegate if while do for foreach else switch case break default return try catch public private protected internal using new this get set const stdout stdin stderr var",built_in:"DBus GLib CCode Gee Object Gtk Posix",literal:"false true null"},contains:[{className:"class",beginKeywords:"class interface namespace",end:/\{/,excludeEnd:!0,illegal:"[^,:\\n\\s\\.]",contains:[e.UNDERSCORE_TITLE_MODE]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:"string",begin:'"""',end:'"""',relevance:5},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.C_NUMBER_MODE,{className:"meta",begin:"^#",end:"$",relevance:2}]}}YS.exports=Zx});var KS=p((A7,VS)=>{function $S(e){return e?typeof e=="string"?e:e.source:null}function es(...e){return e.map(a=>$S(a)).join("")}function Kl(...e){return"("+e.map(a=>$S(a)).join("|")+")"}function Jx(e){let t={className:"string",begin:/"(""|[^/n])"C\b/},a={className:"string",begin:/"/,end:/"/,illegal:/\n/,contains:[{begin:/""/}]},r=/\d{1,2}\/\d{1,2}\/\d{4}/,n=/\d{4}-\d{1,2}-\d{1,2}/,i=/(\d|1[012])(:\d+){0,2} *(AM|PM)/,s=/\d{1,2}(:\d{1,2}){1,2}/,o={className:"literal",variants:[{begin:es(/# */,Kl(n,r),/ *#/)},{begin:es(/# */,s,/ *#/)},{begin:es(/# */,i,/ *#/)},{begin:es(/# */,Kl(n,r),/ +/,Kl(i,s),/ *#/)}]},c={className:"number",relevance:0,variants:[{begin:/\b\d[\d_]*((\.[\d_]+(E[+-]?[\d_]+)?)|(E[+-]?[\d_]+))[RFD@!#]?/},{begin:/\b\d[\d_]*((U?[SIL])|[%&])?/},{begin:/&H[\dA-F_]+((U?[SIL])|[%&])?/},{begin:/&O[0-7_]+((U?[SIL])|[%&])?/},{begin:/&B[01_]+((U?[SIL])|[%&])?/}]},l={className:"label",begin:/^\w+:/},d=e.COMMENT(/'''/,/$/,{contains:[{className:"doctag",begin:/<\/?/,end:/>/}]}),u=e.COMMENT(null,/$/,{variants:[{begin:/'/},{begin:/([\t ]|^)REM(?=\s)/}]});return{name:"Visual Basic .NET",aliases:["vb"],case_insensitive:!0,classNameAliases:{label:"symbol"},keywords:{keyword:"addhandler alias aggregate ansi as async assembly auto binary by byref byval call case catch class compare const continue custom declare default delegate dim distinct do each equals else elseif end enum erase error event exit explicit finally for friend from function get global goto group handles if implements imports in inherits interface into iterator join key let lib loop me mid module mustinherit mustoverride mybase myclass namespace narrowing new next notinheritable notoverridable of off on operator option optional order overloads overridable overrides paramarray partial preserve private property protected public raiseevent readonly redim removehandler resume return select set shadows shared skip static step stop structure strict sub synclock take text then throw to try unicode until using when where while widening with withevents writeonly yield",built_in:"addressof and andalso await directcast gettype getxmlnamespace is isfalse isnot istrue like mod nameof new not or orelse trycast typeof xor cbool cbyte cchar cdate cdbl cdec cint clng cobj csbyte cshort csng cstr cuint culng cushort",type:"boolean byte char date decimal double integer long object sbyte short single string uinteger ulong ushort",literal:"true false nothing"},illegal:"//|\\{|\\}|endif|gosub|variant|wend|^\\$ ",contains:[t,a,o,c,l,d,u,{className:"meta",begin:/[\t ]*#(const|disable|else|elseif|enable|end|externalsource|if|region)\b/,end:/$/,keywords:{"meta-keyword":"const disable else elseif enable end externalsource if region then"},contains:[u]}]}}VS.exports=Jx});var jS=p((N7,QS)=>{function WS(e){return e?typeof e=="string"?e:e.source:null}function eM(...e){return e.map(a=>WS(a)).join("")}function tM(...e){return"("+e.map(a=>WS(a)).join("|")+")"}function aM(e){let t="lcase month vartype instrrev ubound setlocale getobject rgb getref string weekdayname rnd dateadd monthname now day minute isarray cbool round formatcurrency conversions csng timevalue second year space abs clng timeserial fixs len asc isempty maths dateserial atn timer isobject filter weekday datevalue ccur isdate instr datediff formatdatetime replace isnull right sgn array snumeric log cdbl hex chr lbound msgbox ucase getlocale cos cdate cbyte rtrim join hour oct typename trim strcomp int createobject loadpicture tan formatnumber mid split cint sin datepart ltrim sqr time derived eval date formatpercent exp inputbox left ascw chrw regexp cstr err".split(" "),a=["server","response","request","scriptengine","scriptenginebuildversion","scriptengineminorversion","scriptenginemajorversion"],r={begin:eM(tM(...t),"\\s*\\("),relevance:0,keywords:{built_in:t}};return{name:"VBScript",aliases:["vbs"],case_insensitive:!0,keywords:{keyword:"call class const dim do loop erase execute executeglobal exit for each next function if then else on error option explicit new private property let get public randomize redim rem select case set stop sub while wend with end to elseif is or xor and not class_initialize class_terminate default preserve in me byval byref step resume goto",built_in:a,literal:"true false null nothing empty"},illegal:"//",contains:[r,e.inherit(e.QUOTE_STRING_MODE,{contains:[{begin:'""'}]}),e.COMMENT(/'/,/$/,{relevance:0}),e.C_NUMBER_MODE]}}QS.exports=aM});var ZS=p((O7,XS)=>{function rM(e){return{name:"VBScript in HTML",subLanguage:"xml",contains:[{begin:"<%",end:"%>",subLanguage:"vbscript"}]}}XS.exports=rM});var eT=p((D7,JS)=>{function nM(e){return{name:"Verilog",aliases:["v","sv","svh"],case_insensitive:!1,keywords:{$pattern:/[\w\$]+/,keyword:"accept_on alias always always_comb always_ff always_latch and assert assign assume automatic before begin bind bins binsof bit break buf|0 bufif0 bufif1 byte case casex casez cell chandle checker class clocking cmos config const constraint context continue cover covergroup coverpoint cross deassign default defparam design disable dist do edge else end endcase endchecker endclass endclocking endconfig endfunction endgenerate endgroup endinterface endmodule endpackage endprimitive endprogram endproperty endspecify endsequence endtable endtask enum event eventually expect export extends extern final first_match for force foreach forever fork forkjoin function generate|5 genvar global highz0 highz1 if iff ifnone ignore_bins illegal_bins implements implies import incdir include initial inout input inside instance int integer interconnect interface intersect join join_any join_none large let liblist library local localparam logic longint macromodule matches medium modport module nand negedge nettype new nexttime nmos nor noshowcancelled not notif0 notif1 or output package packed parameter pmos posedge primitive priority program property protected pull0 pull1 pulldown pullup pulsestyle_ondetect pulsestyle_onevent pure rand randc randcase randsequence rcmos real realtime ref reg reject_on release repeat restrict return rnmos rpmos rtran rtranif0 rtranif1 s_always s_eventually s_nexttime s_until s_until_with scalared sequence shortint shortreal showcancelled signed small soft solve specify specparam static string strong strong0 strong1 struct super supply0 supply1 sync_accept_on sync_reject_on table tagged task this throughout time timeprecision timeunit tran tranif0 tranif1 tri tri0 tri1 triand trior trireg type typedef union unique unique0 unsigned until until_with untyped use uwire var vectored virtual void wait wait_order wand weak weak0 weak1 while wildcard wire with within wor xnor xor",literal:"null",built_in:"$finish $stop $exit $fatal $error $warning $info $realtime $time $printtimescale $bitstoreal $bitstoshortreal $itor $signed $cast $bits $stime $timeformat $realtobits $shortrealtobits $rtoi $unsigned $asserton $assertkill $assertpasson $assertfailon $assertnonvacuouson $assertoff $assertcontrol $assertpassoff $assertfailoff $assertvacuousoff $isunbounded $sampled $fell $changed $past_gclk $fell_gclk $changed_gclk $rising_gclk $steady_gclk $coverage_control $coverage_get $coverage_save $set_coverage_db_name $rose $stable $past $rose_gclk $stable_gclk $future_gclk $falling_gclk $changing_gclk $display $coverage_get_max $coverage_merge $get_coverage $load_coverage_db $typename $unpacked_dimensions $left $low $increment $clog2 $ln $log10 $exp $sqrt $pow $floor $ceil $sin $cos $tan $countbits $onehot $isunknown $fatal $warning $dimensions $right $high $size $asin $acos $atan $atan2 $hypot $sinh $cosh $tanh $asinh $acosh $atanh $countones $onehot0 $error $info $random $dist_chi_square $dist_erlang $dist_exponential $dist_normal $dist_poisson $dist_t $dist_uniform $q_initialize $q_remove $q_exam $async$and$array $async$nand$array $async$or$array $async$nor$array $sync$and$array $sync$nand$array $sync$or$array $sync$nor$array $q_add $q_full $psprintf $async$and$plane $async$nand$plane $async$or$plane $async$nor$plane $sync$and$plane $sync$nand$plane $sync$or$plane $sync$nor$plane $system $display $displayb $displayh $displayo $strobe $strobeb $strobeh $strobeo $write $readmemb $readmemh $writememh $value$plusargs $dumpvars $dumpon $dumplimit $dumpports $dumpportson $dumpportslimit $writeb $writeh $writeo $monitor $monitorb $monitorh $monitoro $writememb $dumpfile $dumpoff $dumpall $dumpflush $dumpportsoff $dumpportsall $dumpportsflush $fclose $fdisplay $fdisplayb $fdisplayh $fdisplayo $fstrobe $fstrobeb $fstrobeh $fstrobeo $swrite $swriteb $swriteh $swriteo $fscanf $fread $fseek $fflush $feof $fopen $fwrite $fwriteb $fwriteh $fwriteo $fmonitor $fmonitorb $fmonitorh $fmonitoro $sformat $sformatf $fgetc $ungetc $fgets $sscanf $rewind $ftell $ferror"},contains:[e.C_BLOCK_COMMENT_MODE,e.C_LINE_COMMENT_MODE,e.QUOTE_STRING_MODE,{className:"number",contains:[e.BACKSLASH_ESCAPE],variants:[{begin:"\\b((\\d+'(b|h|o|d|B|H|O|D))[0-9xzXZa-fA-F_]+)"},{begin:"\\B(('(b|h|o|d|B|H|O|D))[0-9xzXZa-fA-F_]+)"},{begin:"\\b([0-9_])+",relevance:0}]},{className:"variable",variants:[{begin:"#\\((?!parameter).+\\)"},{begin:"\\.\\w+",relevance:0}]},{className:"meta",begin:"`",end:"$",keywords:{"meta-keyword":"define __FILE__ __LINE__ begin_keywords celldefine default_nettype define else elsif end_keywords endcelldefine endif ifdef ifndef include line nounconnected_drive pragma resetall timescale unconnected_drive undef undefineall"},relevance:0}]}}JS.exports=nM});var aT=p((I7,tT)=>{function iM(e){let t="\\d(_|\\d)*",a="[eE][-+]?"+t,r=t+"(\\."+t+")?("+a+")?",n="\\w+",s="\\b("+(t+"#"+n+"(\\."+n+")?#("+a+")?")+"|"+r+")";return{name:"VHDL",case_insensitive:!0,keywords:{keyword:"abs access after alias all and architecture array assert assume assume_guarantee attribute begin block body buffer bus case component configuration constant context cover disconnect downto default else elsif end entity exit fairness file for force function generate generic group guarded if impure in inertial inout is label library linkage literal loop map mod nand new next nor not null of on open or others out package parameter port postponed procedure process property protected pure range record register reject release rem report restrict restrict_guarantee return rol ror select sequence severity shared signal sla sll sra srl strong subtype then to transport type unaffected units until use variable view vmode vprop vunit wait when while with xnor xor",built_in:"boolean bit character integer time delay_length natural positive string bit_vector file_open_kind file_open_status std_logic std_logic_vector unsigned signed boolean_vector integer_vector std_ulogic std_ulogic_vector unresolved_unsigned u_unsigned unresolved_signed u_signed real_vector time_vector",literal:"false true note warning error failure line text side width"},illegal:/\{/,contains:[e.C_BLOCK_COMMENT_MODE,e.COMMENT("--","$"),e.QUOTE_STRING_MODE,{className:"number",begin:s,relevance:0},{className:"string",begin:"'(U|X|0|1|Z|W|L|H|-)'",contains:[e.BACKSLASH_ESCAPE]},{className:"symbol",begin:"'[A-Za-z](_?[A-Za-z0-9])*",contains:[e.BACKSLASH_ESCAPE]}]}}tT.exports=iM});var nT=p((k7,rT)=>{function sM(e){return{name:"Vim Script",keywords:{$pattern:/[!#@\w]+/,keyword:"N|0 P|0 X|0 a|0 ab abc abo al am an|0 ar arga argd arge argdo argg argl argu as au aug aun b|0 bN ba bad bd be bel bf bl bm bn bo bp br brea breaka breakd breakl bro bufdo buffers bun bw c|0 cN cNf ca cabc caddb cad caddf cal cat cb cc ccl cd ce cex cf cfir cgetb cgete cg changes chd che checkt cl cla clo cm cmapc cme cn cnew cnf cno cnorea cnoreme co col colo com comc comp con conf cope cp cpf cq cr cs cst cu cuna cunme cw delm deb debugg delc delf dif diffg diffo diffp diffpu diffs diffthis dig di dl dell dj dli do doautoa dp dr ds dsp e|0 ea ec echoe echoh echom echon el elsei em en endfo endf endt endw ene ex exe exi exu f|0 files filet fin fina fini fir fix fo foldc foldd folddoc foldo for fu go gr grepa gu gv ha helpf helpg helpt hi hid his ia iabc if ij il im imapc ime ino inorea inoreme int is isp iu iuna iunme j|0 ju k|0 keepa kee keepj lN lNf l|0 lad laddb laddf la lan lat lb lc lch lcl lcs le lefta let lex lf lfir lgetb lgete lg lgr lgrepa lh ll lla lli lmak lm lmapc lne lnew lnf ln loadk lo loc lockv lol lope lp lpf lr ls lt lu lua luad luaf lv lvimgrepa lw m|0 ma mak map mapc marks mat me menut mes mk mks mksp mkv mkvie mod mz mzf nbc nb nbs new nm nmapc nme nn nnoreme noa no noh norea noreme norm nu nun nunme ol o|0 om omapc ome on ono onoreme opt ou ounme ow p|0 profd prof pro promptr pc ped pe perld po popu pp pre prev ps pt ptN ptf ptj ptl ptn ptp ptr pts pu pw py3 python3 py3d py3f py pyd pyf quita qa rec red redi redr redraws reg res ret retu rew ri rightb rub rubyd rubyf rund ru rv sN san sa sal sav sb sbN sba sbf sbl sbm sbn sbp sbr scrip scripte scs se setf setg setl sf sfir sh sim sig sil sl sla sm smap smapc sme sn sni sno snor snoreme sor so spelld spe spelli spellr spellu spellw sp spr sre st sta startg startr star stopi stj sts sun sunm sunme sus sv sw sy synti sync tN tabN tabc tabdo tabe tabf tabfir tabl tabm tabnew tabn tabo tabp tabr tabs tab ta tags tc tcld tclf te tf th tj tl tm tn to tp tr try ts tu u|0 undoj undol una unh unl unlo unm unme uns up ve verb vert vim vimgrepa vi viu vie vm vmapc vme vne vn vnoreme vs vu vunme windo w|0 wN wa wh wi winc winp wn wp wq wqa ws wu wv x|0 xa xmapc xm xme xn xnoreme xu xunme y|0 z|0 ~ Next Print append abbreviate abclear aboveleft all amenu anoremenu args argadd argdelete argedit argglobal arglocal argument ascii autocmd augroup aunmenu buffer bNext ball badd bdelete behave belowright bfirst blast bmodified bnext botright bprevious brewind break breakadd breakdel breaklist browse bunload bwipeout change cNext cNfile cabbrev cabclear caddbuffer caddexpr caddfile call catch cbuffer cclose center cexpr cfile cfirst cgetbuffer cgetexpr cgetfile chdir checkpath checktime clist clast close cmap cmapclear cmenu cnext cnewer cnfile cnoremap cnoreabbrev cnoremenu copy colder colorscheme command comclear compiler continue confirm copen cprevious cpfile cquit crewind cscope cstag cunmap cunabbrev cunmenu cwindow delete delmarks debug debuggreedy delcommand delfunction diffupdate diffget diffoff diffpatch diffput diffsplit digraphs display deletel djump dlist doautocmd doautoall deletep drop dsearch dsplit edit earlier echo echoerr echohl echomsg else elseif emenu endif endfor endfunction endtry endwhile enew execute exit exusage file filetype find finally finish first fixdel fold foldclose folddoopen folddoclosed foldopen function global goto grep grepadd gui gvim hardcopy help helpfind helpgrep helptags highlight hide history insert iabbrev iabclear ijump ilist imap imapclear imenu inoremap inoreabbrev inoremenu intro isearch isplit iunmap iunabbrev iunmenu join jumps keepalt keepmarks keepjumps lNext lNfile list laddexpr laddbuffer laddfile last language later lbuffer lcd lchdir lclose lcscope left leftabove lexpr lfile lfirst lgetbuffer lgetexpr lgetfile lgrep lgrepadd lhelpgrep llast llist lmake lmap lmapclear lnext lnewer lnfile lnoremap loadkeymap loadview lockmarks lockvar lolder lopen lprevious lpfile lrewind ltag lunmap luado luafile lvimgrep lvimgrepadd lwindow move mark make mapclear match menu menutranslate messages mkexrc mksession mkspell mkvimrc mkview mode mzscheme mzfile nbclose nbkey nbsart next nmap nmapclear nmenu nnoremap nnoremenu noautocmd noremap nohlsearch noreabbrev noremenu normal number nunmap nunmenu oldfiles open omap omapclear omenu only onoremap onoremenu options ounmap ounmenu ownsyntax print profdel profile promptfind promptrepl pclose pedit perl perldo pop popup ppop preserve previous psearch ptag ptNext ptfirst ptjump ptlast ptnext ptprevious ptrewind ptselect put pwd py3do py3file python pydo pyfile quit quitall qall read recover redo redir redraw redrawstatus registers resize retab return rewind right rightbelow ruby rubydo rubyfile rundo runtime rviminfo substitute sNext sandbox sargument sall saveas sbuffer sbNext sball sbfirst sblast sbmodified sbnext sbprevious sbrewind scriptnames scriptencoding scscope set setfiletype setglobal setlocal sfind sfirst shell simalt sign silent sleep slast smagic smapclear smenu snext sniff snomagic snoremap snoremenu sort source spelldump spellgood spellinfo spellrepall spellundo spellwrong split sprevious srewind stop stag startgreplace startreplace startinsert stopinsert stjump stselect sunhide sunmap sunmenu suspend sview swapname syntax syntime syncbind tNext tabNext tabclose tabedit tabfind tabfirst tablast tabmove tabnext tabonly tabprevious tabrewind tag tcl tcldo tclfile tearoff tfirst throw tjump tlast tmenu tnext topleft tprevious trewind tselect tunmenu undo undojoin undolist unabbreviate unhide unlet unlockvar unmap unmenu unsilent update vglobal version verbose vertical vimgrep vimgrepadd visual viusage view vmap vmapclear vmenu vnew vnoremap vnoremenu vsplit vunmap vunmenu write wNext wall while winsize wincmd winpos wnext wprevious wqall wsverb wundo wviminfo xit xall xmapclear xmap xmenu xnoremap xnoremenu xunmap xunmenu yank",built_in:"synIDtrans atan2 range matcharg did_filetype asin feedkeys xor argv complete_check add getwinposx getqflist getwinposy screencol clearmatches empty extend getcmdpos mzeval garbagecollect setreg ceil sqrt diff_hlID inputsecret get getfperm getpid filewritable shiftwidth max sinh isdirectory synID system inputrestore winline atan visualmode inputlist tabpagewinnr round getregtype mapcheck hasmapto histdel argidx findfile sha256 exists toupper getcmdline taglist string getmatches bufnr strftime winwidth bufexists strtrans tabpagebuflist setcmdpos remote_read printf setloclist getpos getline bufwinnr float2nr len getcmdtype diff_filler luaeval resolve libcallnr foldclosedend reverse filter has_key bufname str2float strlen setline getcharmod setbufvar index searchpos shellescape undofile foldclosed setqflist buflisted strchars str2nr virtcol floor remove undotree remote_expr winheight gettabwinvar reltime cursor tabpagenr finddir localtime acos getloclist search tanh matchend rename gettabvar strdisplaywidth type abs py3eval setwinvar tolower wildmenumode log10 spellsuggest bufloaded synconcealed nextnonblank server2client complete settabwinvar executable input wincol setmatches getftype hlID inputsave searchpair or screenrow line settabvar histadd deepcopy strpart remote_peek and eval getftime submatch screenchar winsaveview matchadd mkdir screenattr getfontname libcall reltimestr getfsize winnr invert pow getbufline byte2line soundfold repeat fnameescape tagfiles sin strwidth spellbadword trunc maparg log lispindent hostname setpos globpath remote_foreground getchar synIDattr fnamemodify cscope_connection stridx winbufnr indent min complete_add nr2char searchpairpos inputdialog values matchlist items hlexists strridx browsedir expand fmod pathshorten line2byte argc count getwinvar glob foldtextresult getreg foreground cosh matchdelete has char2nr simplify histget searchdecl iconv winrestcmd pumvisible writefile foldlevel haslocaldir keys cos matchstr foldtext histnr tan tempname getcwd byteidx getbufvar islocked escape eventhandler remote_send serverlist winrestview synstack pyeval prevnonblank readfile cindent filereadable changenr exp"},illegal:/;/,contains:[e.NUMBER_MODE,{className:"string",begin:"'",end:"'",illegal:"\\n"},{className:"string",begin:/"(\\"|\n\\|[^"\n])*"/},e.COMMENT('"',"$"),{className:"variable",begin:/[bwtglsav]:[\w\d_]*/},{className:"function",beginKeywords:"function function!",end:"$",relevance:0,contains:[e.TITLE_MODE,{className:"params",begin:"\\(",end:"\\)"}]},{className:"symbol",begin:/<[\w-]+>/}]}}rT.exports=sM});var sT=p((v7,iT)=>{function oM(e){return{name:"Intel x86 Assembly",case_insensitive:!0,keywords:{$pattern:"[.%]?"+e.IDENT_RE,keyword:"lock rep repe repz repne repnz xaquire xrelease bnd nobnd aaa aad aam aas adc add and arpl bb0_reset bb1_reset bound bsf bsr bswap bt btc btr bts call cbw cdq cdqe clc cld cli clts cmc cmp cmpsb cmpsd cmpsq cmpsw cmpxchg cmpxchg486 cmpxchg8b cmpxchg16b cpuid cpu_read cpu_write cqo cwd cwde daa das dec div dmint emms enter equ f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp femms feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisttp fisub fisubr fld fld1 fldcw fldenv fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnstcw fnstenv fnstsw fpatan fprem fprem1 fptan frndint frstor fsave fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomi fucomip fucomp fucompp fxam fxch fxtract fyl2x fyl2xp1 hlt ibts icebp idiv imul in inc incbin insb insd insw int int01 int1 int03 int3 into invd invpcid invlpg invlpga iret iretd iretq iretw jcxz jecxz jrcxz jmp jmpe lahf lar lds lea leave les lfence lfs lgdt lgs lidt lldt lmsw loadall loadall286 lodsb lodsd lodsq lodsw loop loope loopne loopnz loopz lsl lss ltr mfence monitor mov movd movq movsb movsd movsq movsw movsx movsxd movzx mul mwait neg nop not or out outsb outsd outsw packssdw packsswb packuswb paddb paddd paddsb paddsiw paddsw paddusb paddusw paddw pand pandn pause paveb pavgusb pcmpeqb pcmpeqd pcmpeqw pcmpgtb pcmpgtd pcmpgtw pdistib pf2id pfacc pfadd pfcmpeq pfcmpge pfcmpgt pfmax pfmin pfmul pfrcp pfrcpit1 pfrcpit2 pfrsqit1 pfrsqrt pfsub pfsubr pi2fd pmachriw pmaddwd pmagw pmulhriw pmulhrwa pmulhrwc pmulhw pmullw pmvgezb pmvlzb pmvnzb pmvzb pop popa popad popaw popf popfd popfq popfw por prefetch prefetchw pslld psllq psllw psrad psraw psrld psrlq psrlw psubb psubd psubsb psubsiw psubsw psubusb psubusw psubw punpckhbw punpckhdq punpckhwd punpcklbw punpckldq punpcklwd push pusha pushad pushaw pushf pushfd pushfq pushfw pxor rcl rcr rdshr rdmsr rdpmc rdtsc rdtscp ret retf retn rol ror rdm rsdc rsldt rsm rsts sahf sal salc sar sbb scasb scasd scasq scasw sfence sgdt shl shld shr shrd sidt sldt skinit smi smint smintold smsw stc std sti stosb stosd stosq stosw str sub svdc svldt svts swapgs syscall sysenter sysexit sysret test ud0 ud1 ud2b ud2 ud2a umov verr verw fwait wbinvd wrshr wrmsr xadd xbts xchg xlatb xlat xor cmove cmovz cmovne cmovnz cmova cmovnbe cmovae cmovnb cmovb cmovnae cmovbe cmovna cmovg cmovnle cmovge cmovnl cmovl cmovnge cmovle cmovng cmovc cmovnc cmovo cmovno cmovs cmovns cmovp cmovpe cmovnp cmovpo je jz jne jnz ja jnbe jae jnb jb jnae jbe jna jg jnle jge jnl jl jnge jle jng jc jnc jo jno js jns jpo jnp jpe jp sete setz setne setnz seta setnbe setae setnb setnc setb setnae setcset setbe setna setg setnle setge setnl setl setnge setle setng sets setns seto setno setpe setp setpo setnp addps addss andnps andps cmpeqps cmpeqss cmpleps cmpless cmpltps cmpltss cmpneqps cmpneqss cmpnleps cmpnless cmpnltps cmpnltss cmpordps cmpordss cmpunordps cmpunordss cmpps cmpss comiss cvtpi2ps cvtps2pi cvtsi2ss cvtss2si cvttps2pi cvttss2si divps divss ldmxcsr maxps maxss minps minss movaps movhps movlhps movlps movhlps movmskps movntps movss movups mulps mulss orps rcpps rcpss rsqrtps rsqrtss shufps sqrtps sqrtss stmxcsr subps subss ucomiss unpckhps unpcklps xorps fxrstor fxrstor64 fxsave fxsave64 xgetbv xsetbv xsave xsave64 xsaveopt xsaveopt64 xrstor xrstor64 prefetchnta prefetcht0 prefetcht1 prefetcht2 maskmovq movntq pavgb pavgw pextrw pinsrw pmaxsw pmaxub pminsw pminub pmovmskb pmulhuw psadbw pshufw pf2iw pfnacc pfpnacc pi2fw pswapd maskmovdqu clflush movntdq movnti movntpd movdqa movdqu movdq2q movq2dq paddq pmuludq pshufd pshufhw pshuflw pslldq psrldq psubq punpckhqdq punpcklqdq addpd addsd andnpd andpd cmpeqpd cmpeqsd cmplepd cmplesd cmpltpd cmpltsd cmpneqpd cmpneqsd cmpnlepd cmpnlesd cmpnltpd cmpnltsd cmpordpd cmpordsd cmpunordpd cmpunordsd cmppd comisd cvtdq2pd cvtdq2ps cvtpd2dq cvtpd2pi cvtpd2ps cvtpi2pd cvtps2dq cvtps2pd cvtsd2si cvtsd2ss cvtsi2sd cvtss2sd cvttpd2pi cvttpd2dq cvttps2dq cvttsd2si divpd divsd maxpd maxsd minpd minsd movapd movhpd movlpd movmskpd movupd mulpd mulsd orpd shufpd sqrtpd sqrtsd subpd subsd ucomisd unpckhpd unpcklpd xorpd addsubpd addsubps haddpd haddps hsubpd hsubps lddqu movddup movshdup movsldup clgi stgi vmcall vmclear vmfunc vmlaunch vmload vmmcall vmptrld vmptrst vmread vmresume vmrun vmsave vmwrite vmxoff vmxon invept invvpid pabsb pabsw pabsd palignr phaddw phaddd phaddsw phsubw phsubd phsubsw pmaddubsw pmulhrsw pshufb psignb psignw psignd extrq insertq movntsd movntss lzcnt blendpd blendps blendvpd blendvps dppd dpps extractps insertps movntdqa mpsadbw packusdw pblendvb pblendw pcmpeqq pextrb pextrd pextrq phminposuw pinsrb pinsrd pinsrq pmaxsb pmaxsd pmaxud pmaxuw pminsb pminsd pminud pminuw pmovsxbw pmovsxbd pmovsxbq pmovsxwd pmovsxwq pmovsxdq pmovzxbw pmovzxbd pmovzxbq pmovzxwd pmovzxwq pmovzxdq pmuldq pmulld ptest roundpd roundps roundsd roundss crc32 pcmpestri pcmpestrm pcmpistri pcmpistrm pcmpgtq popcnt getsec pfrcpv pfrsqrtv movbe aesenc aesenclast aesdec aesdeclast aesimc aeskeygenassist vaesenc vaesenclast vaesdec vaesdeclast vaesimc vaeskeygenassist vaddpd vaddps vaddsd vaddss vaddsubpd vaddsubps vandpd vandps vandnpd vandnps vblendpd vblendps vblendvpd vblendvps vbroadcastss vbroadcastsd vbroadcastf128 vcmpeq_ospd vcmpeqpd vcmplt_ospd vcmpltpd vcmple_ospd vcmplepd vcmpunord_qpd vcmpunordpd vcmpneq_uqpd vcmpneqpd vcmpnlt_uspd vcmpnltpd vcmpnle_uspd vcmpnlepd vcmpord_qpd vcmpordpd vcmpeq_uqpd vcmpnge_uspd vcmpngepd vcmpngt_uspd vcmpngtpd vcmpfalse_oqpd vcmpfalsepd vcmpneq_oqpd vcmpge_ospd vcmpgepd vcmpgt_ospd vcmpgtpd vcmptrue_uqpd vcmptruepd vcmplt_oqpd vcmple_oqpd vcmpunord_spd vcmpneq_uspd vcmpnlt_uqpd vcmpnle_uqpd vcmpord_spd vcmpeq_uspd vcmpnge_uqpd vcmpngt_uqpd vcmpfalse_ospd vcmpneq_ospd vcmpge_oqpd vcmpgt_oqpd vcmptrue_uspd vcmppd vcmpeq_osps vcmpeqps vcmplt_osps vcmpltps vcmple_osps vcmpleps vcmpunord_qps vcmpunordps vcmpneq_uqps vcmpneqps vcmpnlt_usps vcmpnltps vcmpnle_usps vcmpnleps vcmpord_qps vcmpordps vcmpeq_uqps vcmpnge_usps vcmpngeps vcmpngt_usps vcmpngtps vcmpfalse_oqps vcmpfalseps vcmpneq_oqps vcmpge_osps vcmpgeps vcmpgt_osps vcmpgtps vcmptrue_uqps vcmptrueps vcmplt_oqps vcmple_oqps vcmpunord_sps vcmpneq_usps vcmpnlt_uqps vcmpnle_uqps vcmpord_sps vcmpeq_usps vcmpnge_uqps vcmpngt_uqps vcmpfalse_osps vcmpneq_osps vcmpge_oqps vcmpgt_oqps vcmptrue_usps vcmpps vcmpeq_ossd vcmpeqsd vcmplt_ossd vcmpltsd vcmple_ossd vcmplesd vcmpunord_qsd vcmpunordsd vcmpneq_uqsd vcmpneqsd vcmpnlt_ussd vcmpnltsd vcmpnle_ussd vcmpnlesd vcmpord_qsd vcmpordsd vcmpeq_uqsd vcmpnge_ussd vcmpngesd vcmpngt_ussd vcmpngtsd vcmpfalse_oqsd vcmpfalsesd vcmpneq_oqsd vcmpge_ossd vcmpgesd vcmpgt_ossd vcmpgtsd vcmptrue_uqsd vcmptruesd vcmplt_oqsd vcmple_oqsd vcmpunord_ssd vcmpneq_ussd vcmpnlt_uqsd vcmpnle_uqsd vcmpord_ssd vcmpeq_ussd vcmpnge_uqsd vcmpngt_uqsd vcmpfalse_ossd vcmpneq_ossd vcmpge_oqsd vcmpgt_oqsd vcmptrue_ussd vcmpsd vcmpeq_osss vcmpeqss vcmplt_osss vcmpltss vcmple_osss vcmpless vcmpunord_qss vcmpunordss vcmpneq_uqss vcmpneqss vcmpnlt_usss vcmpnltss vcmpnle_usss vcmpnless vcmpord_qss vcmpordss vcmpeq_uqss vcmpnge_usss vcmpngess vcmpngt_usss vcmpngtss vcmpfalse_oqss vcmpfalsess vcmpneq_oqss vcmpge_osss vcmpgess vcmpgt_osss vcmpgtss vcmptrue_uqss vcmptruess vcmplt_oqss vcmple_oqss vcmpunord_sss vcmpneq_usss vcmpnlt_uqss vcmpnle_uqss vcmpord_sss vcmpeq_usss vcmpnge_uqss vcmpngt_uqss vcmpfalse_osss vcmpneq_osss vcmpge_oqss vcmpgt_oqss vcmptrue_usss vcmpss vcomisd vcomiss vcvtdq2pd vcvtdq2ps vcvtpd2dq vcvtpd2ps vcvtps2dq vcvtps2pd vcvtsd2si vcvtsd2ss vcvtsi2sd vcvtsi2ss vcvtss2sd vcvtss2si vcvttpd2dq vcvttps2dq vcvttsd2si vcvttss2si vdivpd vdivps vdivsd vdivss vdppd vdpps vextractf128 vextractps vhaddpd vhaddps vhsubpd vhsubps vinsertf128 vinsertps vlddqu vldqqu vldmxcsr vmaskmovdqu vmaskmovps vmaskmovpd vmaxpd vmaxps vmaxsd vmaxss vminpd vminps vminsd vminss vmovapd vmovaps vmovd vmovq vmovddup vmovdqa vmovqqa vmovdqu vmovqqu vmovhlps vmovhpd vmovhps vmovlhps vmovlpd vmovlps vmovmskpd vmovmskps vmovntdq vmovntqq vmovntdqa vmovntpd vmovntps vmovsd vmovshdup vmovsldup vmovss vmovupd vmovups vmpsadbw vmulpd vmulps vmulsd vmulss vorpd vorps vpabsb vpabsw vpabsd vpacksswb vpackssdw vpackuswb vpackusdw vpaddb vpaddw vpaddd vpaddq vpaddsb vpaddsw vpaddusb vpaddusw vpalignr vpand vpandn vpavgb vpavgw vpblendvb vpblendw vpcmpestri vpcmpestrm vpcmpistri vpcmpistrm vpcmpeqb vpcmpeqw vpcmpeqd vpcmpeqq vpcmpgtb vpcmpgtw vpcmpgtd vpcmpgtq vpermilpd vpermilps vperm2f128 vpextrb vpextrw vpextrd vpextrq vphaddw vphaddd vphaddsw vphminposuw vphsubw vphsubd vphsubsw vpinsrb vpinsrw vpinsrd vpinsrq vpmaddwd vpmaddubsw vpmaxsb vpmaxsw vpmaxsd vpmaxub vpmaxuw vpmaxud vpminsb vpminsw vpminsd vpminub vpminuw vpminud vpmovmskb vpmovsxbw vpmovsxbd vpmovsxbq vpmovsxwd vpmovsxwq vpmovsxdq vpmovzxbw vpmovzxbd vpmovzxbq vpmovzxwd vpmovzxwq vpmovzxdq vpmulhuw vpmulhrsw vpmulhw vpmullw vpmulld vpmuludq vpmuldq vpor vpsadbw vpshufb vpshufd vpshufhw vpshuflw vpsignb vpsignw vpsignd vpslldq vpsrldq vpsllw vpslld vpsllq vpsraw vpsrad vpsrlw vpsrld vpsrlq vptest vpsubb vpsubw vpsubd vpsubq vpsubsb vpsubsw vpsubusb vpsubusw vpunpckhbw vpunpckhwd vpunpckhdq vpunpckhqdq vpunpcklbw vpunpcklwd vpunpckldq vpunpcklqdq vpxor vrcpps vrcpss vrsqrtps vrsqrtss vroundpd vroundps vroundsd vroundss vshufpd vshufps vsqrtpd vsqrtps vsqrtsd vsqrtss vstmxcsr vsubpd vsubps vsubsd vsubss vtestps vtestpd vucomisd vucomiss vunpckhpd vunpckhps vunpcklpd vunpcklps vxorpd vxorps vzeroall vzeroupper pclmullqlqdq pclmulhqlqdq pclmullqhqdq pclmulhqhqdq pclmulqdq vpclmullqlqdq vpclmulhqlqdq vpclmullqhqdq vpclmulhqhqdq vpclmulqdq vfmadd132ps vfmadd132pd vfmadd312ps vfmadd312pd vfmadd213ps vfmadd213pd vfmadd123ps vfmadd123pd vfmadd231ps vfmadd231pd vfmadd321ps vfmadd321pd vfmaddsub132ps vfmaddsub132pd vfmaddsub312ps vfmaddsub312pd vfmaddsub213ps vfmaddsub213pd vfmaddsub123ps vfmaddsub123pd vfmaddsub231ps vfmaddsub231pd vfmaddsub321ps vfmaddsub321pd vfmsub132ps vfmsub132pd vfmsub312ps vfmsub312pd vfmsub213ps vfmsub213pd vfmsub123ps vfmsub123pd vfmsub231ps vfmsub231pd vfmsub321ps vfmsub321pd vfmsubadd132ps vfmsubadd132pd vfmsubadd312ps vfmsubadd312pd vfmsubadd213ps vfmsubadd213pd vfmsubadd123ps vfmsubadd123pd vfmsubadd231ps vfmsubadd231pd vfmsubadd321ps vfmsubadd321pd vfnmadd132ps vfnmadd132pd vfnmadd312ps vfnmadd312pd vfnmadd213ps vfnmadd213pd vfnmadd123ps vfnmadd123pd vfnmadd231ps vfnmadd231pd vfnmadd321ps vfnmadd321pd vfnmsub132ps vfnmsub132pd vfnmsub312ps vfnmsub312pd vfnmsub213ps vfnmsub213pd vfnmsub123ps vfnmsub123pd vfnmsub231ps vfnmsub231pd vfnmsub321ps vfnmsub321pd vfmadd132ss vfmadd132sd vfmadd312ss vfmadd312sd vfmadd213ss vfmadd213sd vfmadd123ss vfmadd123sd vfmadd231ss vfmadd231sd vfmadd321ss vfmadd321sd vfmsub132ss vfmsub132sd vfmsub312ss vfmsub312sd vfmsub213ss vfmsub213sd vfmsub123ss vfmsub123sd vfmsub231ss vfmsub231sd vfmsub321ss vfmsub321sd vfnmadd132ss vfnmadd132sd vfnmadd312ss vfnmadd312sd vfnmadd213ss vfnmadd213sd vfnmadd123ss vfnmadd123sd vfnmadd231ss vfnmadd231sd vfnmadd321ss vfnmadd321sd vfnmsub132ss vfnmsub132sd vfnmsub312ss vfnmsub312sd vfnmsub213ss vfnmsub213sd vfnmsub123ss vfnmsub123sd vfnmsub231ss vfnmsub231sd vfnmsub321ss vfnmsub321sd rdfsbase rdgsbase rdrand wrfsbase wrgsbase vcvtph2ps vcvtps2ph adcx adox rdseed clac stac xstore xcryptecb xcryptcbc xcryptctr xcryptcfb xcryptofb montmul xsha1 xsha256 llwpcb slwpcb lwpval lwpins vfmaddpd vfmaddps vfmaddsd vfmaddss vfmaddsubpd vfmaddsubps vfmsubaddpd vfmsubaddps vfmsubpd vfmsubps vfmsubsd vfmsubss vfnmaddpd vfnmaddps vfnmaddsd vfnmaddss vfnmsubpd vfnmsubps vfnmsubsd vfnmsubss vfrczpd vfrczps vfrczsd vfrczss vpcmov vpcomb vpcomd vpcomq vpcomub vpcomud vpcomuq vpcomuw vpcomw vphaddbd vphaddbq vphaddbw vphadddq vphaddubd vphaddubq vphaddubw vphaddudq vphadduwd vphadduwq vphaddwd vphaddwq vphsubbw vphsubdq vphsubwd vpmacsdd vpmacsdqh vpmacsdql vpmacssdd vpmacssdqh vpmacssdql vpmacsswd vpmacssww vpmacswd vpmacsww vpmadcsswd vpmadcswd vpperm vprotb vprotd vprotq vprotw vpshab vpshad vpshaq vpshaw vpshlb vpshld vpshlq vpshlw vbroadcasti128 vpblendd vpbroadcastb vpbroadcastw vpbroadcastd vpbroadcastq vpermd vpermpd vpermps vpermq vperm2i128 vextracti128 vinserti128 vpmaskmovd vpmaskmovq vpsllvd vpsllvq vpsravd vpsrlvd vpsrlvq vgatherdpd vgatherqpd vgatherdps vgatherqps vpgatherdd vpgatherqd vpgatherdq vpgatherqq xabort xbegin xend xtest andn bextr blci blcic blsi blsic blcfill blsfill blcmsk blsmsk blsr blcs bzhi mulx pdep pext rorx sarx shlx shrx tzcnt tzmsk t1mskc valignd valignq vblendmpd vblendmps vbroadcastf32x4 vbroadcastf64x4 vbroadcasti32x4 vbroadcasti64x4 vcompresspd vcompressps vcvtpd2udq vcvtps2udq vcvtsd2usi vcvtss2usi vcvttpd2udq vcvttps2udq vcvttsd2usi vcvttss2usi vcvtudq2pd vcvtudq2ps vcvtusi2sd vcvtusi2ss vexpandpd vexpandps vextractf32x4 vextractf64x4 vextracti32x4 vextracti64x4 vfixupimmpd vfixupimmps vfixupimmsd vfixupimmss vgetexppd vgetexpps vgetexpsd vgetexpss vgetmantpd vgetmantps vgetmantsd vgetmantss vinsertf32x4 vinsertf64x4 vinserti32x4 vinserti64x4 vmovdqa32 vmovdqa64 vmovdqu32 vmovdqu64 vpabsq vpandd vpandnd vpandnq vpandq vpblendmd vpblendmq vpcmpltd vpcmpled vpcmpneqd vpcmpnltd vpcmpnled vpcmpd vpcmpltq vpcmpleq vpcmpneqq vpcmpnltq vpcmpnleq vpcmpq vpcmpequd vpcmpltud vpcmpleud vpcmpnequd vpcmpnltud vpcmpnleud vpcmpud vpcmpequq vpcmpltuq vpcmpleuq vpcmpnequq vpcmpnltuq vpcmpnleuq vpcmpuq vpcompressd vpcompressq vpermi2d vpermi2pd vpermi2ps vpermi2q vpermt2d vpermt2pd vpermt2ps vpermt2q vpexpandd vpexpandq vpmaxsq vpmaxuq vpminsq vpminuq vpmovdb vpmovdw vpmovqb vpmovqd vpmovqw vpmovsdb vpmovsdw vpmovsqb vpmovsqd vpmovsqw vpmovusdb vpmovusdw vpmovusqb vpmovusqd vpmovusqw vpord vporq vprold vprolq vprolvd vprolvq vprord vprorq vprorvd vprorvq vpscatterdd vpscatterdq vpscatterqd vpscatterqq vpsraq vpsravq vpternlogd vpternlogq vptestmd vptestmq vptestnmd vptestnmq vpxord vpxorq vrcp14pd vrcp14ps vrcp14sd vrcp14ss vrndscalepd vrndscaleps vrndscalesd vrndscaless vrsqrt14pd vrsqrt14ps vrsqrt14sd vrsqrt14ss vscalefpd vscalefps vscalefsd vscalefss vscatterdpd vscatterdps vscatterqpd vscatterqps vshuff32x4 vshuff64x2 vshufi32x4 vshufi64x2 kandnw kandw kmovw knotw kortestw korw kshiftlw kshiftrw kunpckbw kxnorw kxorw vpbroadcastmb2q vpbroadcastmw2d vpconflictd vpconflictq vplzcntd vplzcntq vexp2pd vexp2ps vrcp28pd vrcp28ps vrcp28sd vrcp28ss vrsqrt28pd vrsqrt28ps vrsqrt28sd vrsqrt28ss vgatherpf0dpd vgatherpf0dps vgatherpf0qpd vgatherpf0qps vgatherpf1dpd vgatherpf1dps vgatherpf1qpd vgatherpf1qps vscatterpf0dpd vscatterpf0dps vscatterpf0qpd vscatterpf0qps vscatterpf1dpd vscatterpf1dps vscatterpf1qpd vscatterpf1qps prefetchwt1 bndmk bndcl bndcu bndcn bndmov bndldx bndstx sha1rnds4 sha1nexte sha1msg1 sha1msg2 sha256rnds2 sha256msg1 sha256msg2 hint_nop0 hint_nop1 hint_nop2 hint_nop3 hint_nop4 hint_nop5 hint_nop6 hint_nop7 hint_nop8 hint_nop9 hint_nop10 hint_nop11 hint_nop12 hint_nop13 hint_nop14 hint_nop15 hint_nop16 hint_nop17 hint_nop18 hint_nop19 hint_nop20 hint_nop21 hint_nop22 hint_nop23 hint_nop24 hint_nop25 hint_nop26 hint_nop27 hint_nop28 hint_nop29 hint_nop30 hint_nop31 hint_nop32 hint_nop33 hint_nop34 hint_nop35 hint_nop36 hint_nop37 hint_nop38 hint_nop39 hint_nop40 hint_nop41 hint_nop42 hint_nop43 hint_nop44 hint_nop45 hint_nop46 hint_nop47 hint_nop48 hint_nop49 hint_nop50 hint_nop51 hint_nop52 hint_nop53 hint_nop54 hint_nop55 hint_nop56 hint_nop57 hint_nop58 hint_nop59 hint_nop60 hint_nop61 hint_nop62 hint_nop63",built_in:"ip eip rip al ah bl bh cl ch dl dh sil dil bpl spl r8b r9b r10b r11b r12b r13b r14b r15b ax bx cx dx si di bp sp r8w r9w r10w r11w r12w r13w r14w r15w eax ebx ecx edx esi edi ebp esp eip r8d r9d r10d r11d r12d r13d r14d r15d rax rbx rcx rdx rsi rdi rbp rsp r8 r9 r10 r11 r12 r13 r14 r15 cs ds es fs gs ss st st0 st1 st2 st3 st4 st5 st6 st7 mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7 xmm8 xmm9 xmm10 xmm11 xmm12 xmm13 xmm14 xmm15 xmm16 xmm17 xmm18 xmm19 xmm20 xmm21 xmm22 xmm23 xmm24 xmm25 xmm26 xmm27 xmm28 xmm29 xmm30 xmm31 ymm0 ymm1 ymm2 ymm3 ymm4 ymm5 ymm6 ymm7 ymm8 ymm9 ymm10 ymm11 ymm12 ymm13 ymm14 ymm15 ymm16 ymm17 ymm18 ymm19 ymm20 ymm21 ymm22 ymm23 ymm24 ymm25 ymm26 ymm27 ymm28 ymm29 ymm30 ymm31 zmm0 zmm1 zmm2 zmm3 zmm4 zmm5 zmm6 zmm7 zmm8 zmm9 zmm10 zmm11 zmm12 zmm13 zmm14 zmm15 zmm16 zmm17 zmm18 zmm19 zmm20 zmm21 zmm22 zmm23 zmm24 zmm25 zmm26 zmm27 zmm28 zmm29 zmm30 zmm31 k0 k1 k2 k3 k4 k5 k6 k7 bnd0 bnd1 bnd2 bnd3 cr0 cr1 cr2 cr3 cr4 cr8 dr0 dr1 dr2 dr3 dr8 tr3 tr4 tr5 tr6 tr7 r0 r1 r2 r3 r4 r5 r6 r7 r0b r1b r2b r3b r4b r5b r6b r7b r0w r1w r2w r3w r4w r5w r6w r7w r0d r1d r2d r3d r4d r5d r6d r7d r0h r1h r2h r3h r0l r1l r2l r3l r4l r5l r6l r7l r8l r9l r10l r11l r12l r13l r14l r15l db dw dd dq dt ddq do dy dz resb resw resd resq rest resdq reso resy resz incbin equ times byte word dword qword nosplit rel abs seg wrt strict near far a32 ptr",meta:"%define %xdefine %+ %undef %defstr %deftok %assign %strcat %strlen %substr %rotate %elif %else %endif %if %ifmacro %ifctx %ifidn %ifidni %ifid %ifnum %ifstr %iftoken %ifempty %ifenv %error %warning %fatal %rep %endrep %include %push %pop %repl %pathsearch %depend %use %arg %stacksize %local %line %comment %endcomment .nolist __FILE__ __LINE__ __SECT__ __BITS__ __OUTPUT_FORMAT__ __DATE__ __TIME__ __DATE_NUM__ __TIME_NUM__ __UTC_DATE__ __UTC_TIME__ __UTC_DATE_NUM__ __UTC_TIME_NUM__ __PASS__ struc endstruc istruc at iend align alignb sectalign daz nodaz up down zero default option assume public bits use16 use32 use64 default section segment absolute extern global common cpu float __utf16__ __utf16le__ __utf16be__ __utf32__ __utf32le__ __utf32be__ __float8__ __float16__ __float32__ __float64__ __float80m__ __float80e__ __float128l__ __float128h__ __Infinity__ __QNaN__ __SNaN__ Inf NaN QNaN SNaN float8 float16 float32 float64 float80m float80e float128l float128h __FLOAT_DAZ__ __FLOAT_ROUND__ __FLOAT__"},contains:[e.COMMENT(";","$",{relevance:0}),{className:"number",variants:[{begin:"\\b(?:([0-9][0-9_]*)?\\.[0-9_]*(?:[eE][+-]?[0-9_]+)?|(0[Xx])?[0-9][0-9_]*(\\.[0-9_]*)?(?:[pP](?:[+-]?[0-9_]+)?)?)\\b",relevance:0},{begin:"\\$[0-9][0-9A-Fa-f]*",relevance:0},{begin:"\\b(?:[0-9A-Fa-f][0-9A-Fa-f_]*[Hh]|[0-9][0-9_]*[DdTt]?|[0-7][0-7_]*[QqOo]|[0-1][0-1_]*[BbYy])\\b"},{begin:"\\b(?:0[Xx][0-9A-Fa-f_]+|0[DdTt][0-9_]+|0[QqOo][0-7_]+|0[BbYy][0-1_]+)\\b"}]},e.QUOTE_STRING_MODE,{className:"string",variants:[{begin:"'",end:"[^\\\\]'"},{begin:"`",end:"[^\\\\]`"}],relevance:0},{className:"symbol",variants:[{begin:"^\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\s+label)"},{begin:"^\\s*%%[A-Za-z0-9_$#@~.?]*:"}],relevance:0},{className:"subst",begin:"%[0-9]+",relevance:0},{className:"subst",begin:"%!S+",relevance:0},{className:"meta",begin:/^\s*\.[\w_-]+/}]}}iT.exports=oM});var lT=p((w7,oT)=>{function lM(e){let a={$pattern:/[a-zA-Z][a-zA-Z0-9_?]*/,keyword:"if then else do while until for loop import with is as where when by data constant integer real text name boolean symbol infix prefix postfix block tree",literal:"true false nil",built_in:"in mod rem and or xor not abs sign floor ceil sqrt sin cos tan asin acos atan exp expm1 log log2 log10 log1p pi at text_length text_range text_find text_replace contains page slide basic_slide title_slide title subtitle fade_in fade_out fade_at clear_color color line_color line_width texture_wrap texture_transform texture scale_?x scale_?y scale_?z? translate_?x translate_?y translate_?z? rotate_?x rotate_?y rotate_?z? rectangle circle ellipse sphere path line_to move_to quad_to curve_to theme background contents locally time mouse_?x mouse_?y mouse_buttons "+"ObjectLoader Animate MovieCredits Slides Filters Shading Materials LensFlare Mapping VLCAudioVideo StereoDecoder PointCloud NetworkAccess RemoteControl RegExp ChromaKey Snowfall NodeJS Speech Charts"},r={className:"string",begin:'"',end:'"',illegal:"\\n"},n={className:"string",begin:"'",end:"'",illegal:"\\n"},i={className:"string",begin:"<<",end:">>"},s={className:"number",begin:"[0-9]+#[0-9A-Z_]+(\\.[0-9-A-Z_]+)?#?([Ee][+-]?[0-9]+)?"},o={beginKeywords:"import",end:"$",keywords:a,contains:[r]},c={className:"function",begin:/[a-z][^\n]*->/,returnBegin:!0,end:/->/,contains:[e.inherit(e.TITLE_MODE,{starts:{endsWithParent:!0,keywords:a}})]};return{name:"XL",aliases:["tao"],keywords:a,contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,r,n,i,c,o,s,e.NUMBER_MODE]}}oT.exports=lM});var _T=p((x7,cT)=>{function cM(e){return{name:"XQuery",aliases:["xpath","xq"],case_insensitive:!1,illegal:/(proc)|(abstract)|(extends)|(until)|(#)/,keywords:{$pattern:/[a-zA-Z$][a-zA-Z0-9_:-]*/,keyword:"module schema namespace boundary-space preserve no-preserve strip default collation base-uri ordering context decimal-format decimal-separator copy-namespaces empty-sequence except exponent-separator external grouping-separator inherit no-inherit lax minus-sign per-mille percent schema-attribute schema-element strict unordered zero-digit declare import option function validate variable for at in let where order group by return if then else tumbling sliding window start when only end previous next stable ascending descending allowing empty greatest least some every satisfies switch case typeswitch try catch and or to union intersect instance of treat as castable cast map array delete insert into replace value rename copy modify update",type:"item document-node node attribute document element comment namespace namespace-node processing-instruction text construction xs:anyAtomicType xs:untypedAtomic xs:duration xs:time xs:decimal xs:float xs:double xs:gYearMonth xs:gYear xs:gMonthDay xs:gMonth xs:gDay xs:boolean xs:base64Binary xs:hexBinary xs:anyURI xs:QName xs:NOTATION xs:dateTime xs:dateTimeStamp xs:date xs:string xs:normalizedString xs:token xs:language xs:NMTOKEN xs:Name xs:NCName xs:ID xs:IDREF xs:ENTITY xs:integer xs:nonPositiveInteger xs:negativeInteger xs:long xs:int xs:short xs:byte xs:nonNegativeInteger xs:unisignedLong xs:unsignedInt xs:unsignedShort xs:unsignedByte xs:positiveInteger xs:yearMonthDuration xs:dayTimeDuration",literal:"eq ne lt le gt ge is self:: child:: descendant:: descendant-or-self:: attribute:: following:: following-sibling:: parent:: ancestor:: ancestor-or-self:: preceding:: preceding-sibling:: NaN"},contains:[{className:"variable",begin:/[$][\w\-:]+/},{className:"built_in",variants:[{begin:/\barray:/,end:/(?:append|filter|flatten|fold-(?:left|right)|for-each(?:-pair)?|get|head|insert-before|join|put|remove|reverse|size|sort|subarray|tail)\b/},{begin:/\bmap:/,end:/(?:contains|entry|find|for-each|get|keys|merge|put|remove|size)\b/},{begin:/\bmath:/,end:/(?:a(?:cos|sin|tan[2]?)|cos|exp(?:10)?|log(?:10)?|pi|pow|sin|sqrt|tan)\b/},{begin:/\bop:/,end:/\(/,excludeEnd:!0},{begin:/\bfn:/,end:/\(/,excludeEnd:!0},{begin:/[^</$:'"-]\b(?:abs|accumulator-(?:after|before)|adjust-(?:date(?:Time)?|time)-to-timezone|analyze-string|apply|available-(?:environment-variables|system-properties)|avg|base-uri|boolean|ceiling|codepoints?-(?:equal|to-string)|collation-key|collection|compare|concat|contains(?:-token)?|copy-of|count|current(?:-)?(?:date(?:Time)?|time|group(?:ing-key)?|output-uri|merge-(?:group|key))?data|dateTime|days?-from-(?:date(?:Time)?|duration)|deep-equal|default-(?:collation|language)|distinct-values|document(?:-uri)?|doc(?:-available)?|element-(?:available|with-id)|empty|encode-for-uri|ends-with|environment-variable|error|escape-html-uri|exactly-one|exists|false|filter|floor|fold-(?:left|right)|for-each(?:-pair)?|format-(?:date(?:Time)?|time|integer|number)|function-(?:arity|available|lookup|name)|generate-id|has-children|head|hours-from-(?:dateTime|duration|time)|id(?:ref)?|implicit-timezone|in-scope-prefixes|index-of|innermost|insert-before|iri-to-uri|json-(?:doc|to-xml)|key|lang|last|load-xquery-module|local-name(?:-from-QName)?|(?:lower|upper)-case|matches|max|minutes-from-(?:dateTime|duration|time)|min|months?-from-(?:date(?:Time)?|duration)|name(?:space-uri-?(?:for-prefix|from-QName)?)?|nilled|node-name|normalize-(?:space|unicode)|not|number|one-or-more|outermost|parse-(?:ietf-date|json)|path|position|(?:prefix-from-)?QName|random-number-generator|regex-group|remove|replace|resolve-(?:QName|uri)|reverse|root|round(?:-half-to-even)?|seconds-from-(?:dateTime|duration|time)|snapshot|sort|starts-with|static-base-uri|stream-available|string-?(?:join|length|to-codepoints)?|subsequence|substring-?(?:after|before)?|sum|system-property|tail|timezone-from-(?:date(?:Time)?|time)|tokenize|trace|trans(?:form|late)|true|type-available|unordered|unparsed-(?:entity|text)?-?(?:public-id|uri|available|lines)?|uri-collection|xml-to-json|years?-from-(?:date(?:Time)?|duration)|zero-or-one)\b/},{begin:/\blocal:/,end:/\(/,excludeEnd:!0},{begin:/\bzip:/,end:/(?:zip-file|(?:xml|html|text|binary)-entry| (?:update-)?entries)\b/},{begin:/\b(?:util|db|functx|app|xdmp|xmldb):/,end:/\(/,excludeEnd:!0}]},{className:"string",variants:[{begin:/"/,end:/"/,contains:[{begin:/""/,relevance:0}]},{begin:/'/,end:/'/,contains:[{begin:/''/,relevance:0}]}]},{className:"number",begin:/(\b0[0-7_]+)|(\b0x[0-9a-fA-F_]+)|(\b[1-9][0-9_]*(\.[0-9_]+)?)|[0_]\b/,relevance:0},{className:"comment",begin:/\(:/,end:/:\)/,relevance:10,contains:[{className:"doctag",begin:/@\w+/}]},{className:"meta",begin:/%[\w\-:]+/},{className:"title",begin:/\bxquery version "[13]\.[01]"\s?(?:encoding ".+")?/,end:/;/},{beginKeywords:"element attribute comment document processing-instruction",end:/\{/,excludeEnd:!0},{begin:/<([\w._:-]+)(\s+\S*=('|").*('|"))?>/,end:/(\/[\w._:-]+>)/,subLanguage:"xml",contains:[{begin:/\{/,end:/\}/,subLanguage:"xquery"},"self"]}]}}cT.exports=cM});var uT=p((M7,dT)=>{function _M(e){let t={className:"string",contains:[e.BACKSLASH_ESCAPE],variants:[e.inherit(e.APOS_STRING_MODE,{illegal:null}),e.inherit(e.QUOTE_STRING_MODE,{illegal:null})]},a=e.UNDERSCORE_TITLE_MODE,r={variants:[e.BINARY_NUMBER_MODE,e.C_NUMBER_MODE]},n="namespace class interface use extends function return abstract final public protected private static deprecated throw try catch Exception echo empty isset instanceof unset let var new const self require if else elseif switch case default do while loop for continue break likely unlikely __LINE__ __FILE__ __DIR__ __FUNCTION__ __CLASS__ __TRAIT__ __METHOD__ __NAMESPACE__ array boolean float double integer object resource string char long unsigned bool int uint ulong uchar true false null undefined";return{name:"Zephir",aliases:["zep"],keywords:n,contains:[e.C_LINE_COMMENT_MODE,e.COMMENT(/\/\*/,/\*\//,{contains:[{className:"doctag",begin:/@[A-Za-z]+/}]}),{className:"string",begin:/<<<['"]?\w+['"]?$/,end:/^\w+;/,contains:[e.BACKSLASH_ESCAPE]},{begin:/(::|->)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/},{className:"function",beginKeywords:"function fn",end:/[;{]/,excludeEnd:!0,illegal:/\$|\[|%/,contains:[a,{className:"params",begin:/\(/,end:/\)/,keywords:n,contains:["self",e.C_BLOCK_COMMENT_MODE,t,r]}]},{className:"class",beginKeywords:"class interface",end:/\{/,excludeEnd:!0,illegal:/[:($"]/,contains:[{beginKeywords:"extends implements"},a]},{beginKeywords:"namespace",end:/;/,illegal:/[.']/,contains:[a]},{beginKeywords:"use",end:/;/,contains:[a]},{begin:/=>/},t,r]}}dT.exports=_M});var mT=p((L7,pT)=>{var T=Ap();T.registerLanguage("1c",Op());T.registerLanguage("abnf",Ip());T.registerLanguage("accesslog",wp());T.registerLanguage("actionscript",Mp());T.registerLanguage("ada",Pp());T.registerLanguage("angelscript",Up());T.registerLanguage("apache",Gp());T.registerLanguage("applescript",$p());T.registerLanguage("arcade",Kp());T.registerLanguage("arduino",Qp());T.registerLanguage("armasm",Xp());T.registerLanguage("xml",tm());T.registerLanguage("asciidoc",nm());T.registerLanguage("aspectj",sm());T.registerLanguage("autohotkey",lm());T.registerLanguage("autoit",_m());T.registerLanguage("avrasm",um());T.registerLanguage("awk",mm());T.registerLanguage("axapta",fm());T.registerLanguage("bash",hm());T.registerLanguage("basic",Tm());T.registerLanguage("bnf",bm());T.registerLanguage("brainfuck",Rm());T.registerLanguage("c-like",Nm());T.registerLanguage("c",Dm());T.registerLanguage("cal",km());T.registerLanguage("capnproto",wm());T.registerLanguage("ceylon",Mm());T.registerLanguage("clean",Pm());T.registerLanguage("clojure",Um());T.registerLanguage("clojure-repl",Gm());T.registerLanguage("cmake",Hm());T.registerLanguage("coffeescript",qm());T.registerLanguage("coq",Vm());T.registerLanguage("cos",Wm());T.registerLanguage("cpp",jm());T.registerLanguage("crmsh",Zm());T.registerLanguage("crystal",eg());T.registerLanguage("csharp",ag());T.registerLanguage("csp",ng());T.registerLanguage("css",sg());T.registerLanguage("d",lg());T.registerLanguage("markdown",_g());T.registerLanguage("dart",ug());T.registerLanguage("delphi",mg());T.registerLanguage("diff",fg());T.registerLanguage("django",hg());T.registerLanguage("dns",Tg());T.registerLanguage("dockerfile",bg());T.registerLanguage("dos",Rg());T.registerLanguage("dsconfig",Ng());T.registerLanguage("dts",Dg());T.registerLanguage("dust",kg());T.registerLanguage("ebnf",wg());T.registerLanguage("elixir",Mg());T.registerLanguage("elm",Pg());T.registerLanguage("ruby",Bg());T.registerLanguage("erb",zg());T.registerLanguage("erlang-repl",Yg());T.registerLanguage("erlang",$g());T.registerLanguage("excel",Kg());T.registerLanguage("fix",Qg());T.registerLanguage("flix",Xg());T.registerLanguage("fortran",Jg());T.registerLanguage("fsharp",tf());T.registerLanguage("gams",rf());T.registerLanguage("gauss",sf());T.registerLanguage("gcode",lf());T.registerLanguage("gherkin",_f());T.registerLanguage("glsl",uf());T.registerLanguage("gml",mf());T.registerLanguage("go",ff());T.registerLanguage("golo",hf());T.registerLanguage("gradle",Tf());T.registerLanguage("groovy",bf());T.registerLanguage("haml",Rf());T.registerLanguage("handlebars",Of());T.registerLanguage("haskell",If());T.registerLanguage("haxe",vf());T.registerLanguage("hsp",xf());T.registerLanguage("htmlbars",Pf());T.registerLanguage("http",Uf());T.registerLanguage("hy",Gf());T.registerLanguage("inform7",Hf());T.registerLanguage("ini",Vf());T.registerLanguage("irpf90",Wf());T.registerLanguage("isbl",jf());T.registerLanguage("java",Zf());T.registerLanguage("javascript",a1());T.registerLanguage("jboss-cli",n1());T.registerLanguage("json",s1());T.registerLanguage("julia",l1());T.registerLanguage("julia-repl",_1());T.registerLanguage("kotlin",u1());T.registerLanguage("lasso",m1());T.registerLanguage("latex",f1());T.registerLanguage("ldif",h1());T.registerLanguage("leaf",T1());T.registerLanguage("less",R1());T.registerLanguage("lisp",N1());T.registerLanguage("livecodeserver",D1());T.registerLanguage("livescript",k1());T.registerLanguage("llvm",w1());T.registerLanguage("lsl",M1());T.registerLanguage("lua",P1());T.registerLanguage("makefile",U1());T.registerLanguage("mathematica",Y1());T.registerLanguage("matlab",$1());T.registerLanguage("maxima",K1());T.registerLanguage("mel",Q1());T.registerLanguage("mercury",X1());T.registerLanguage("mipsasm",J1());T.registerLanguage("mizar",tE());T.registerLanguage("perl",iE());T.registerLanguage("mojolicious",oE());T.registerLanguage("monkey",cE());T.registerLanguage("moonscript",dE());T.registerLanguage("n1ql",pE());T.registerLanguage("nginx",gE());T.registerLanguage("nim",EE());T.registerLanguage("nix",SE());T.registerLanguage("node-repl",yE());T.registerLanguage("nsis",CE());T.registerLanguage("objectivec",AE());T.registerLanguage("ocaml",OE());T.registerLanguage("openscad",IE());T.registerLanguage("oxygene",vE());T.registerLanguage("parser3",xE());T.registerLanguage("pf",LE());T.registerLanguage("pgsql",FE());T.registerLanguage("php",BE());T.registerLanguage("php-template",zE());T.registerLanguage("plaintext",YE());T.registerLanguage("pony",$E());T.registerLanguage("powershell",KE());T.registerLanguage("processing",QE());T.registerLanguage("profile",XE());T.registerLanguage("prolog",JE());T.registerLanguage("properties",th());T.registerLanguage("protobuf",rh());T.registerLanguage("puppet",ih());T.registerLanguage("purebasic",oh());T.registerLanguage("python",ch());T.registerLanguage("python-repl",dh());T.registerLanguage("q",ph());T.registerLanguage("qml",gh());T.registerLanguage("r",Eh());T.registerLanguage("reasonml",Sh());T.registerLanguage("rib",yh());T.registerLanguage("roboconf",Ch());T.registerLanguage("routeros",Ah());T.registerLanguage("rsl",Oh());T.registerLanguage("ruleslanguage",Ih());T.registerLanguage("rust",vh());T.registerLanguage("sas",xh());T.registerLanguage("scala",Lh());T.registerLanguage("scheme",Fh());T.registerLanguage("scilab",Bh());T.registerLanguage("scss",zh());T.registerLanguage("shell",Yh());T.registerLanguage("smali",$h());T.registerLanguage("smalltalk",Kh());T.registerLanguage("sml",Qh());T.registerLanguage("sqf",Xh());T.registerLanguage("sql_more",Jh());T.registerLanguage("sql",aS());T.registerLanguage("stan",nS());T.registerLanguage("stata",sS());T.registerLanguage("step21",lS());T.registerLanguage("stylus",_S());T.registerLanguage("subunit",uS());T.registerLanguage("swift",yS());T.registerLanguage("taggerscript",CS());T.registerLanguage("yaml",AS());T.registerLanguage("tap",OS());T.registerLanguage("tcl",kS());T.registerLanguage("thrift",wS());T.registerLanguage("tp",MS());T.registerLanguage("twig",PS());T.registerLanguage("typescript",HS());T.registerLanguage("vala",qS());T.registerLanguage("vbnet",KS());T.registerLanguage("vbscript",jS());T.registerLanguage("vbscript-html",ZS());T.registerLanguage("verilog",eT());T.registerLanguage("vhdl",aT());T.registerLanguage("vim",nT());T.registerLanguage("x86asm",sT());T.registerLanguage("xl",lT());T.registerLanguage("xquery",_T());T.registerLanguage("zephir",uT());pT.exports=T});var ts=p(sa=>{"use strict";var dM=[65534,65535,131070,131071,196606,196607,262142,262143,327678,327679,393214,393215,458750,458751,524286,524287,589822,589823,655358,655359,720894,720895,786430,786431,851966,851967,917502,917503,983038,983039,1048574,1048575,1114110,1114111];sa.REPLACEMENT_CHARACTER="\uFFFD";sa.CODE_POINTS={EOF:-1,NULL:0,TABULATION:9,CARRIAGE_RETURN:13,LINE_FEED:10,FORM_FEED:12,SPACE:32,EXCLAMATION_MARK:33,QUOTATION_MARK:34,NUMBER_SIGN:35,AMPERSAND:38,APOSTROPHE:39,HYPHEN_MINUS:45,SOLIDUS:47,DIGIT_0:48,DIGIT_9:57,SEMICOLON:59,LESS_THAN_SIGN:60,EQUALS_SIGN:61,GREATER_THAN_SIGN:62,QUESTION_MARK:63,LATIN_CAPITAL_A:65,LATIN_CAPITAL_F:70,LATIN_CAPITAL_X:88,LATIN_CAPITAL_Z:90,RIGHT_SQUARE_BRACKET:93,GRAVE_ACCENT:96,LATIN_SMALL_A:97,LATIN_SMALL_F:102,LATIN_SMALL_X:120,LATIN_SMALL_Z:122,REPLACEMENT_CHARACTER:65533};sa.CODE_POINT_SEQUENCES={DASH_DASH_STRING:[45,45],DOCTYPE_STRING:[68,79,67,84,89,80,69],CDATA_START_STRING:[91,67,68,65,84,65,91],SCRIPT_STRING:[115,99,114,105,112,116],PUBLIC_STRING:[80,85,66,76,73,67],SYSTEM_STRING:[83,89,83,84,69,77]};sa.isSurrogate=function(e){return e>=55296&&e<=57343};sa.isSurrogatePair=function(e){return e>=56320&&e<=57343};sa.getSurrogatePairCodePoint=function(e,t){return(e-55296)*1024+9216+t};sa.isControlCodePoint=function(e){return e!==32&&e!==10&&e!==13&&e!==9&&e!==12&&e>=1&&e<=31||e>=127&&e<=159};sa.isUndefinedCodePoint=function(e){return e>=64976&&e<=65007||dM.indexOf(e)>-1}});var as=p((F7,gT)=>{"use strict";gT.exports={controlCharacterInInputStream:"control-character-in-input-stream",noncharacterInInputStream:"noncharacter-in-input-stream",surrogateInInputStream:"surrogate-in-input-stream",nonVoidHtmlElementStartTagWithTrailingSolidus:"non-void-html-element-start-tag-with-trailing-solidus",endTagWithAttributes:"end-tag-with-attributes",endTagWithTrailingSolidus:"end-tag-with-trailing-solidus",unexpectedSolidusInTag:"unexpected-solidus-in-tag",unexpectedNullCharacter:"unexpected-null-character",unexpectedQuestionMarkInsteadOfTagName:"unexpected-question-mark-instead-of-tag-name",invalidFirstCharacterOfTagName:"invalid-first-character-of-tag-name",unexpectedEqualsSignBeforeAttributeName:"unexpected-equals-sign-before-attribute-name",missingEndTagName:"missing-end-tag-name",unexpectedCharacterInAttributeName:"unexpected-character-in-attribute-name",unknownNamedCharacterReference:"unknown-named-character-reference",missingSemicolonAfterCharacterReference:"missing-semicolon-after-character-reference",unexpectedCharacterAfterDoctypeSystemIdentifier:"unexpected-character-after-doctype-system-identifier",unexpectedCharacterInUnquotedAttributeValue:"unexpected-character-in-unquoted-attribute-value",eofBeforeTagName:"eof-before-tag-name",eofInTag:"eof-in-tag",missingAttributeValue:"missing-attribute-value",missingWhitespaceBetweenAttributes:"missing-whitespace-between-attributes",missingWhitespaceAfterDoctypePublicKeyword:"missing-whitespace-after-doctype-public-keyword",missingWhitespaceBetweenDoctypePublicAndSystemIdentifiers:"missing-whitespace-between-doctype-public-and-system-identifiers",missingWhitespaceAfterDoctypeSystemKeyword:"missing-whitespace-after-doctype-system-keyword",missingQuoteBeforeDoctypePublicIdentifier:"missing-quote-before-doctype-public-identifier",missingQuoteBeforeDoctypeSystemIdentifier:"missing-quote-before-doctype-system-identifier",missingDoctypePublicIdentifier:"missing-doctype-public-identifier",missingDoctypeSystemIdentifier:"missing-doctype-system-identifier",abruptDoctypePublicIdentifier:"abrupt-doctype-public-identifier",abruptDoctypeSystemIdentifier:"abrupt-doctype-system-identifier",cdataInHtmlContent:"cdata-in-html-content",incorrectlyOpenedComment:"incorrectly-opened-comment",eofInScriptHtmlCommentLikeText:"eof-in-script-html-comment-like-text",eofInDoctype:"eof-in-doctype",nestedComment:"nested-comment",abruptClosingOfEmptyComment:"abrupt-closing-of-empty-comment",eofInComment:"eof-in-comment",incorrectlyClosedComment:"incorrectly-closed-comment",eofInCdata:"eof-in-cdata",absenceOfDigitsInNumericCharacterReference:"absence-of-digits-in-numeric-character-reference",nullCharacterReference:"null-character-reference",surrogateCharacterReference:"surrogate-character-reference",characterReferenceOutsideUnicodeRange:"character-reference-outside-unicode-range",controlCharacterReference:"control-character-reference",noncharacterCharacterReference:"noncharacter-character-reference",missingWhitespaceBeforeDoctypeName:"missing-whitespace-before-doctype-name",missingDoctypeName:"missing-doctype-name",invalidCharacterSequenceAfterDoctypeName:"invalid-character-sequence-after-doctype-name",duplicateAttribute:"duplicate-attribute",nonConformingDoctype:"non-conforming-doctype",missingDoctype:"missing-doctype",misplacedDoctype:"misplaced-doctype",endTagWithoutMatchingOpenElement:"end-tag-without-matching-open-element",closingOfElementWithOpenChildElements:"closing-of-element-with-open-child-elements",disallowedContentInNoscriptInHead:"disallowed-content-in-noscript-in-head",openElementsLeftAfterEof:"open-elements-left-after-eof",abandonedHeadElementChild:"abandoned-head-element-child",misplacedStartTagForHeadElement:"misplaced-start-tag-for-head-element",nestedNoscriptInHead:"nested-noscript-in-head",eofInElementThatCanContainOnlyText:"eof-in-element-that-can-contain-only-text"}});var ET=p((U7,fT)=>{"use strict";var Fr=ts(),Wl=as(),Qa=Fr.CODE_POINTS,uM=65536,Ql=class{constructor(){this.html=null,this.pos=-1,this.lastGapPos=-1,this.lastCharPos=-1,this.gapStack=[],this.skipNextNewLine=!1,this.lastChunkWritten=!1,this.endOfChunkHit=!1,this.bufferWaterline=uM}_err(){}_addGap(){this.gapStack.push(this.lastGapPos),this.lastGapPos=this.pos}_processSurrogate(t){if(this.pos!==this.lastCharPos){let a=this.html.charCodeAt(this.pos+1);if(Fr.isSurrogatePair(a))return this.pos++,this._addGap(),Fr.getSurrogatePairCodePoint(t,a)}else if(!this.lastChunkWritten)return this.endOfChunkHit=!0,Qa.EOF;return this._err(Wl.surrogateInInputStream),t}dropParsedChunk(){this.pos>this.bufferWaterline&&(this.lastCharPos-=this.pos,this.html=this.html.substring(this.pos),this.pos=0,this.lastGapPos=-1,this.gapStack=[])}write(t,a){this.html?this.html+=t:this.html=t,this.lastCharPos=this.html.length-1,this.endOfChunkHit=!1,this.lastChunkWritten=a}insertHtmlAtCurrentPos(t){this.html=this.html.substring(0,this.pos+1)+t+this.html.substring(this.pos+1,this.html.length),this.lastCharPos=this.html.length-1,this.endOfChunkHit=!1}advance(){if(this.pos++,this.pos>this.lastCharPos)return this.endOfChunkHit=!this.lastChunkWritten,Qa.EOF;let t=this.html.charCodeAt(this.pos);return this.skipNextNewLine&&t===Qa.LINE_FEED?(this.skipNextNewLine=!1,this._addGap(),this.advance()):t===Qa.CARRIAGE_RETURN?(this.skipNextNewLine=!0,Qa.LINE_FEED):(this.skipNextNewLine=!1,Fr.isSurrogate(t)&&(t=this._processSurrogate(t)),t>31&&t<127||t===Qa.LINE_FEED||t===Qa.CARRIAGE_RETURN||t>159&&t<64976||this._checkForProblematicCharacters(t),t)}_checkForProblematicCharacters(t){Fr.isControlCodePoint(t)?this._err(Wl.controlCharacterInInputStream):Fr.isUndefinedCodePoint(t)&&this._err(Wl.noncharacterInInputStream)}retreat(){this.pos===this.lastGapPos&&(this.lastGapPos=this.gapStack.pop(),this.pos--),this.pos--}};fT.exports=Ql});var ST=p((B7,hT)=>{"use strict";hT.exports=new Uint16Array([4,52,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,106,303,412,810,1432,1701,1796,1987,2114,2360,2420,2484,3170,3251,4140,4393,4575,4610,5106,5512,5728,6117,6274,6315,6345,6427,6516,7002,7910,8733,9323,9870,10170,10631,10893,11318,11386,11467,12773,13092,14474,14922,15448,15542,16419,17666,18166,18611,19004,19095,19298,19397,4,16,69,77,97,98,99,102,103,108,109,110,111,112,114,115,116,117,140,150,158,169,176,194,199,210,216,222,226,242,256,266,283,294,108,105,103,5,198,1,59,148,1,198,80,5,38,1,59,156,1,38,99,117,116,101,5,193,1,59,167,1,193,114,101,118,101,59,1,258,4,2,105,121,182,191,114,99,5,194,1,59,189,1,194,59,1,1040,114,59,3,55349,56580,114,97,118,101,5,192,1,59,208,1,192,112,104,97,59,1,913,97,99,114,59,1,256,100,59,1,10835,4,2,103,112,232,237,111,110,59,1,260,102,59,3,55349,56632,112,108,121,70,117,110,99,116,105,111,110,59,1,8289,105,110,103,5,197,1,59,264,1,197,4,2,99,115,272,277,114,59,3,55349,56476,105,103,110,59,1,8788,105,108,100,101,5,195,1,59,292,1,195,109,108,5,196,1,59,301,1,196,4,8,97,99,101,102,111,114,115,117,321,350,354,383,388,394,400,405,4,2,99,114,327,336,107,115,108,97,115,104,59,1,8726,4,2,118,119,342,345,59,1,10983,101,100,59,1,8966,121,59,1,1041,4,3,99,114,116,362,369,379,97,117,115,101,59,1,8757,110,111,117,108,108,105,115,59,1,8492,97,59,1,914,114,59,3,55349,56581,112,102,59,3,55349,56633,101,118,101,59,1,728,99,114,59,1,8492,109,112,101,113,59,1,8782,4,14,72,79,97,99,100,101,102,104,105,108,111,114,115,117,442,447,456,504,542,547,569,573,577,616,678,784,790,796,99,121,59,1,1063,80,89,5,169,1,59,454,1,169,4,3,99,112,121,464,470,497,117,116,101,59,1,262,4,2,59,105,476,478,1,8914,116,97,108,68,105,102,102,101,114,101,110,116,105,97,108,68,59,1,8517,108,101,121,115,59,1,8493,4,4,97,101,105,111,514,520,530,535,114,111,110,59,1,268,100,105,108,5,199,1,59,528,1,199,114,99,59,1,264,110,105,110,116,59,1,8752,111,116,59,1,266,4,2,100,110,553,560,105,108,108,97,59,1,184,116,101,114,68,111,116,59,1,183,114,59,1,8493,105,59,1,935,114,99,108,101,4,4,68,77,80,84,591,596,603,609,111,116,59,1,8857,105,110,117,115,59,1,8854,108,117,115,59,1,8853,105,109,101,115,59,1,8855,111,4,2,99,115,623,646,107,119,105,115,101,67,111,110,116,111,117,114,73,110,116,101,103,114,97,108,59,1,8754,101,67,117,114,108,121,4,2,68,81,658,671,111,117,98,108,101,81,117,111,116,101,59,1,8221,117,111,116,101,59,1,8217,4,4,108,110,112,117,688,701,736,753,111,110,4,2,59,101,696,698,1,8759,59,1,10868,4,3,103,105,116,709,717,722,114,117,101,110,116,59,1,8801,110,116,59,1,8751,111,117,114,73,110,116,101,103,114,97,108,59,1,8750,4,2,102,114,742,745,59,1,8450,111,100,117,99,116,59,1,8720,110,116,101,114,67,108,111,99,107,119,105,115,101,67,111,110,116,111,117,114,73,110,116,101,103,114,97,108,59,1,8755,111,115,115,59,1,10799,99,114,59,3,55349,56478,112,4,2,59,67,803,805,1,8915,97,112,59,1,8781,4,11,68,74,83,90,97,99,101,102,105,111,115,834,850,855,860,865,888,903,916,921,1011,1415,4,2,59,111,840,842,1,8517,116,114,97,104,100,59,1,10513,99,121,59,1,1026,99,121,59,1,1029,99,121,59,1,1039,4,3,103,114,115,873,879,883,103,101,114,59,1,8225,114,59,1,8609,104,118,59,1,10980,4,2,97,121,894,900,114,111,110,59,1,270,59,1,1044,108,4,2,59,116,910,912,1,8711,97,59,1,916,114,59,3,55349,56583,4,2,97,102,927,998,4,2,99,109,933,992,114,105,116,105,99,97,108,4,4,65,68,71,84,950,957,978,985,99,117,116,101,59,1,180,111,4,2,116,117,964,967,59,1,729,98,108,101,65,99,117,116,101,59,1,733,114,97,118,101,59,1,96,105,108,100,101,59,1,732,111,110,100,59,1,8900,102,101,114,101,110,116,105,97,108,68,59,1,8518,4,4,112,116,117,119,1021,1026,1048,1249,102,59,3,55349,56635,4,3,59,68,69,1034,1036,1041,1,168,111,116,59,1,8412,113,117,97,108,59,1,8784,98,108,101,4,6,67,68,76,82,85,86,1065,1082,1101,1189,1211,1236,111,110,116,111,117,114,73,110,116,101,103,114,97,108,59,1,8751,111,4,2,116,119,1089,1092,59,1,168,110,65,114,114,111,119,59,1,8659,4,2,101,111,1107,1141,102,116,4,3,65,82,84,1117,1124,1136,114,114,111,119,59,1,8656,105,103,104,116,65,114,114,111,119,59,1,8660,101,101,59,1,10980,110,103,4,2,76,82,1149,1177,101,102,116,4,2,65,82,1158,1165,114,114,111,119,59,1,10232,105,103,104,116,65,114,114,111,119,59,1,10234,105,103,104,116,65,114,114,111,119,59,1,10233,105,103,104,116,4,2,65,84,1199,1206,114,114,111,119,59,1,8658,101,101,59,1,8872,112,4,2,65,68,1218,1225,114,114,111,119,59,1,8657,111,119,110,65,114,114,111,119,59,1,8661,101,114,116,105,99,97,108,66,97,114,59,1,8741,110,4,6,65,66,76,82,84,97,1264,1292,1299,1352,1391,1408,114,114,111,119,4,3,59,66,85,1276,1278,1283,1,8595,97,114,59,1,10515,112,65,114,114,111,119,59,1,8693,114,101,118,101,59,1,785,101,102,116,4,3,82,84,86,1310,1323,1334,105,103,104,116,86,101,99,116,111,114,59,1,10576,101,101,86,101,99,116,111,114,59,1,10590,101,99,116,111,114,4,2,59,66,1345,1347,1,8637,97,114,59,1,10582,105,103,104,116,4,2,84,86,1362,1373,101,101,86,101,99,116,111,114,59,1,10591,101,99,116,111,114,4,2,59,66,1384,1386,1,8641,97,114,59,1,10583,101,101,4,2,59,65,1399,1401,1,8868,114,114,111,119,59,1,8615,114,114,111,119,59,1,8659,4,2,99,116,1421,1426,114,59,3,55349,56479,114,111,107,59,1,272,4,16,78,84,97,99,100,102,103,108,109,111,112,113,115,116,117,120,1466,1470,1478,1489,1515,1520,1525,1536,1544,1593,1609,1617,1650,1664,1668,1677,71,59,1,330,72,5,208,1,59,1476,1,208,99,117,116,101,5,201,1,59,1487,1,201,4,3,97,105,121,1497,1503,1512,114,111,110,59,1,282,114,99,5,202,1,59,1510,1,202,59,1,1069,111,116,59,1,278,114,59,3,55349,56584,114,97,118,101,5,200,1,59,1534,1,200,101,109,101,110,116,59,1,8712,4,2,97,112,1550,1555,99,114,59,1,274,116,121,4,2,83,86,1563,1576,109,97,108,108,83,113,117,97,114,101,59,1,9723,101,114,121,83,109,97,108,108,83,113,117,97,114,101,59,1,9643,4,2,103,112,1599,1604,111,110,59,1,280,102,59,3,55349,56636,115,105,108,111,110,59,1,917,117,4,2,97,105,1624,1640,108,4,2,59,84,1631,1633,1,10869,105,108,100,101,59,1,8770,108,105,98,114,105,117,109,59,1,8652,4,2,99,105,1656,1660,114,59,1,8496,109,59,1,10867,97,59,1,919,109,108,5,203,1,59,1675,1,203,4,2,105,112,1683,1689,115,116,115,59,1,8707,111,110,101,110,116,105,97,108,69,59,1,8519,4,5,99,102,105,111,115,1713,1717,1722,1762,1791,121,59,1,1060,114,59,3,55349,56585,108,108,101,100,4,2,83,86,1732,1745,109,97,108,108,83,113,117,97,114,101,59,1,9724,101,114,121,83,109,97,108,108,83,113,117,97,114,101,59,1,9642,4,3,112,114,117,1770,1775,1781,102,59,3,55349,56637,65,108,108,59,1,8704,114,105,101,114,116,114,102,59,1,8497,99,114,59,1,8497,4,12,74,84,97,98,99,100,102,103,111,114,115,116,1822,1827,1834,1848,1855,1877,1882,1887,1890,1896,1978,1984,99,121,59,1,1027,5,62,1,59,1832,1,62,109,109,97,4,2,59,100,1843,1845,1,915,59,1,988,114,101,118,101,59,1,286,4,3,101,105,121,1863,1869,1874,100,105,108,59,1,290,114,99,59,1,284,59,1,1043,111,116,59,1,288,114,59,3,55349,56586,59,1,8921,112,102,59,3,55349,56638,101,97,116,101,114,4,6,69,70,71,76,83,84,1915,1933,1944,1953,1959,1971,113,117,97,108,4,2,59,76,1925,1927,1,8805,101,115,115,59,1,8923,117,108,108,69,113,117,97,108,59,1,8807,114,101,97,116,101,114,59,1,10914,101,115,115,59,1,8823,108,97,110,116,69,113,117,97,108,59,1,10878,105,108,100,101,59,1,8819,99,114,59,3,55349,56482,59,1,8811,4,8,65,97,99,102,105,111,115,117,2005,2012,2026,2032,2036,2049,2073,2089,82,68,99,121,59,1,1066,4,2,99,116,2018,2023,101,107,59,1,711,59,1,94,105,114,99,59,1,292,114,59,1,8460,108,98,101,114,116,83,112,97,99,101,59,1,8459,4,2,112,114,2055,2059,102,59,1,8461,105,122,111,110,116,97,108,76,105,110,101,59,1,9472,4,2,99,116,2079,2083,114,59,1,8459,114,111,107,59,1,294,109,112,4,2,68,69,2097,2107,111,119,110,72,117,109,112,59,1,8782,113,117,97,108,59,1,8783,4,14,69,74,79,97,99,100,102,103,109,110,111,115,116,117,2144,2149,2155,2160,2171,2189,2194,2198,2209,2245,2307,2329,2334,2341,99,121,59,1,1045,108,105,103,59,1,306,99,121,59,1,1025,99,117,116,101,5,205,1,59,2169,1,205,4,2,105,121,2177,2186,114,99,5,206,1,59,2184,1,206,59,1,1048,111,116,59,1,304,114,59,1,8465,114,97,118,101,5,204,1,59,2207,1,204,4,3,59,97,112,2217,2219,2238,1,8465,4,2,99,103,2225,2229,114,59,1,298,105,110,97,114,121,73,59,1,8520,108,105,101,115,59,1,8658,4,2,116,118,2251,2281,4,2,59,101,2257,2259,1,8748,4,2,103,114,2265,2271,114,97,108,59,1,8747,115,101,99,116,105,111,110,59,1,8898,105,115,105,98,108,101,4,2,67,84,2293,2300,111,109,109,97,59,1,8291,105,109,101,115,59,1,8290,4,3,103,112,116,2315,2320,2325,111,110,59,1,302,102,59,3,55349,56640,97,59,1,921,99,114,59,1,8464,105,108,100,101,59,1,296,4,2,107,109,2347,2352,99,121,59,1,1030,108,5,207,1,59,2358,1,207,4,5,99,102,111,115,117,2372,2386,2391,2397,2414,4,2,105,121,2378,2383,114,99,59,1,308,59,1,1049,114,59,3,55349,56589,112,102,59,3,55349,56641,4,2,99,101,2403,2408,114,59,3,55349,56485,114,99,121,59,1,1032,107,99,121,59,1,1028,4,7,72,74,97,99,102,111,115,2436,2441,2446,2452,2467,2472,2478,99,121,59,1,1061,99,121,59,1,1036,112,112,97,59,1,922,4,2,101,121,2458,2464,100,105,108,59,1,310,59,1,1050,114,59,3,55349,56590,112,102,59,3,55349,56642,99,114,59,3,55349,56486,4,11,74,84,97,99,101,102,108,109,111,115,116,2508,2513,2520,2562,2585,2981,2986,3004,3011,3146,3167,99,121,59,1,1033,5,60,1,59,2518,1,60,4,5,99,109,110,112,114,2532,2538,2544,2548,2558,117,116,101,59,1,313,98,100,97,59,1,923,103,59,1,10218,108,97,99,101,116,114,102,59,1,8466,114,59,1,8606,4,3,97,101,121,2570,2576,2582,114,111,110,59,1,317,100,105,108,59,1,315,59,1,1051,4,2,102,115,2591,2907,116,4,10,65,67,68,70,82,84,85,86,97,114,2614,2663,2672,2728,2735,2760,2820,2870,2888,2895,4,2,110,114,2620,2633,103,108,101,66,114,97,99,107,101,116,59,1,10216,114,111,119,4,3,59,66,82,2644,2646,2651,1,8592,97,114,59,1,8676,105,103,104,116,65,114,114,111,119,59,1,8646,101,105,108,105,110,103,59,1,8968,111,4,2,117,119,2679,2692,98,108,101,66,114,97,99,107,101,116,59,1,10214,110,4,2,84,86,2699,2710,101,101,86,101,99,116,111,114,59,1,10593,101,99,116,111,114,4,2,59,66,2721,2723,1,8643,97,114,59,1,10585,108,111,111,114,59,1,8970,105,103,104,116,4,2,65,86,2745,2752,114,114,111,119,59,1,8596,101,99,116,111,114,59,1,10574,4,2,101,114,2766,2792,101,4,3,59,65,86,2775,2777,2784,1,8867,114,114,111,119,59,1,8612,101,99,116,111,114,59,1,10586,105,97,110,103,108,101,4,3,59,66,69,2806,2808,2813,1,8882,97,114,59,1,10703,113,117,97,108,59,1,8884,112,4,3,68,84,86,2829,2841,2852,111,119,110,86,101,99,116,111,114,59,1,10577,101,101,86,101,99,116,111,114,59,1,10592,101,99,116,111,114,4,2,59,66,2863,2865,1,8639,97,114,59,1,10584,101,99,116,111,114,4,2,59,66,2881,2883,1,8636,97,114,59,1,10578,114,114,111,119,59,1,8656,105,103,104,116,97,114,114,111,119,59,1,8660,115,4,6,69,70,71,76,83,84,2922,2936,2947,2956,2962,2974,113,117,97,108,71,114,101,97,116,101,114,59,1,8922,117,108,108,69,113,117,97,108,59,1,8806,114,101,97,116,101,114,59,1,8822,101,115,115,59,1,10913,108,97,110,116,69,113,117,97,108,59,1,10877,105,108,100,101,59,1,8818,114,59,3,55349,56591,4,2,59,101,2992,2994,1,8920,102,116,97,114,114,111,119,59,1,8666,105,100,111,116,59,1,319,4,3,110,112,119,3019,3110,3115,103,4,4,76,82,108,114,3030,3058,3070,3098,101,102,116,4,2,65,82,3039,3046,114,114,111,119,59,1,10229,105,103,104,116,65,114,114,111,119,59,1,10231,105,103,104,116,65,114,114,111,119,59,1,10230,101,102,116,4,2,97,114,3079,3086,114,114,111,119,59,1,10232,105,103,104,116,97,114,114,111,119,59,1,10234,105,103,104,116,97,114,114,111,119,59,1,10233,102,59,3,55349,56643,101,114,4,2,76,82,3123,3134,101,102,116,65,114,114,111,119,59,1,8601,105,103,104,116,65,114,114,111,119,59,1,8600,4,3,99,104,116,3154,3158,3161,114,59,1,8466,59,1,8624,114,111,107,59,1,321,59,1,8810,4,8,97,99,101,102,105,111,115,117,3188,3192,3196,3222,3227,3237,3243,3248,112,59,1,10501,121,59,1,1052,4,2,100,108,3202,3213,105,117,109,83,112,97,99,101,59,1,8287,108,105,110,116,114,102,59,1,8499,114,59,3,55349,56592,110,117,115,80,108,117,115,59,1,8723,112,102,59,3,55349,56644,99,114,59,1,8499,59,1,924,4,9,74,97,99,101,102,111,115,116,117,3271,3276,3283,3306,3422,3427,4120,4126,4137,99,121,59,1,1034,99,117,116,101,59,1,323,4,3,97,101,121,3291,3297,3303,114,111,110,59,1,327,100,105,108,59,1,325,59,1,1053,4,3,103,115,119,3314,3380,3415,97,116,105,118,101,4,3,77,84,86,3327,3340,3365,101,100,105,117,109,83,112,97,99,101,59,1,8203,104,105,4,2,99,110,3348,3357,107,83,112,97,99,101,59,1,8203,83,112,97,99,101,59,1,8203,101,114,121,84,104,105,110,83,112,97,99,101,59,1,8203,116,101,100,4,2,71,76,3389,3405,114,101,97,116,101,114,71,114,101,97,116,101,114,59,1,8811,101,115,115,76,101,115,115,59,1,8810,76,105,110,101,59,1,10,114,59,3,55349,56593,4,4,66,110,112,116,3437,3444,3460,3464,114,101,97,107,59,1,8288,66,114,101,97,107,105,110,103,83,112,97,99,101,59,1,160,102,59,1,8469,4,13,59,67,68,69,71,72,76,78,80,82,83,84,86,3492,3494,3517,3536,3578,3657,3685,3784,3823,3860,3915,4066,4107,1,10988,4,2,111,117,3500,3510,110,103,114,117,101,110,116,59,1,8802,112,67,97,112,59,1,8813,111,117,98,108,101,86,101,114,116,105,99,97,108,66,97,114,59,1,8742,4,3,108,113,120,3544,3552,3571,101,109,101,110,116,59,1,8713,117,97,108,4,2,59,84,3561,3563,1,8800,105,108,100,101,59,3,8770,824,105,115,116,115,59,1,8708,114,101,97,116,101,114,4,7,59,69,70,71,76,83,84,3600,3602,3609,3621,3631,3637,3650,1,8815,113,117,97,108,59,1,8817,117,108,108,69,113,117,97,108,59,3,8807,824,114,101,97,116,101,114,59,3,8811,824,101,115,115,59,1,8825,108,97,110,116,69,113,117,97,108,59,3,10878,824,105,108,100,101,59,1,8821,117,109,112,4,2,68,69,3666,3677,111,119,110,72,117,109,112,59,3,8782,824,113,117,97,108,59,3,8783,824,101,4,2,102,115,3692,3724,116,84,114,105,97,110,103,108,101,4,3,59,66,69,3709,3711,3717,1,8938,97,114,59,3,10703,824,113,117,97,108,59,1,8940,115,4,6,59,69,71,76,83,84,3739,3741,3748,3757,3764,3777,1,8814,113,117,97,108,59,1,8816,114,101,97,116,101,114,59,1,8824,101,115,115,59,3,8810,824,108,97,110,116,69,113,117,97,108,59,3,10877,824,105,108,100,101,59,1,8820,101,115,116,101,100,4,2,71,76,3795,3812,114,101,97,116,101,114,71,114,101,97,116,101,114,59,3,10914,824,101,115,115,76,101,115,115,59,3,10913,824,114,101,99,101,100,101,115,4,3,59,69,83,3838,3840,3848,1,8832,113,117,97,108,59,3,10927,824,108,97,110,116,69,113,117,97,108,59,1,8928,4,2,101,105,3866,3881,118,101,114,115,101,69,108,101,109,101,110,116,59,1,8716,103,104,116,84,114,105,97,110,103,108,101,4,3,59,66,69,3900,3902,3908,1,8939,97,114,59,3,10704,824,113,117,97,108,59,1,8941,4,2,113,117,3921,3973,117,97,114,101,83,117,4,2,98,112,3933,3952,115,101,116,4,2,59,69,3942,3945,3,8847,824,113,117,97,108,59,1,8930,101,114,115,101,116,4,2,59,69,3963,3966,3,8848,824,113,117,97,108,59,1,8931,4,3,98,99,112,3981,4e3,4045,115,101,116,4,2,59,69,3990,3993,3,8834,8402,113,117,97,108,59,1,8840,99,101,101,100,115,4,4,59,69,83,84,4015,4017,4025,4037,1,8833,113,117,97,108,59,3,10928,824,108,97,110,116,69,113,117,97,108,59,1,8929,105,108,100,101,59,3,8831,824,101,114,115,101,116,4,2,59,69,4056,4059,3,8835,8402,113,117,97,108,59,1,8841,105,108,100,101,4,4,59,69,70,84,4080,4082,4089,4100,1,8769,113,117,97,108,59,1,8772,117,108,108,69,113,117,97,108,59,1,8775,105,108,100,101,59,1,8777,101,114,116,105,99,97,108,66,97,114,59,1,8740,99,114,59,3,55349,56489,105,108,100,101,5,209,1,59,4135,1,209,59,1,925,4,14,69,97,99,100,102,103,109,111,112,114,115,116,117,118,4170,4176,4187,4205,4212,4217,4228,4253,4259,4292,4295,4316,4337,4346,108,105,103,59,1,338,99,117,116,101,5,211,1,59,4185,1,211,4,2,105,121,4193,4202,114,99,5,212,1,59,4200,1,212,59,1,1054,98,108,97,99,59,1,336,114,59,3,55349,56594,114,97,118,101,5,210,1,59,4226,1,210,4,3,97,101,105,4236,4241,4246,99,114,59,1,332,103,97,59,1,937,99,114,111,110,59,1,927,112,102,59,3,55349,56646,101,110,67,117,114,108,121,4,2,68,81,4272,4285,111,117,98,108,101,81,117,111,116,101,59,1,8220,117,111,116,101,59,1,8216,59,1,10836,4,2,99,108,4301,4306,114,59,3,55349,56490,97,115,104,5,216,1,59,4314,1,216,105,4,2,108,109,4323,4332,100,101,5,213,1,59,4330,1,213,101,115,59,1,10807,109,108,5,214,1,59,4344,1,214,101,114,4,2,66,80,4354,4380,4,2,97,114,4360,4364,114,59,1,8254,97,99,4,2,101,107,4372,4375,59,1,9182,101,116,59,1,9140,97,114,101,110,116,104,101,115,105,115,59,1,9180,4,9,97,99,102,104,105,108,111,114,115,4413,4422,4426,4431,4435,4438,4448,4471,4561,114,116,105,97,108,68,59,1,8706,121,59,1,1055,114,59,3,55349,56595,105,59,1,934,59,1,928,117,115,77,105,110,117,115,59,1,177,4,2,105,112,4454,4467,110,99,97,114,101,112,108,97,110,101,59,1,8460,102,59,1,8473,4,4,59,101,105,111,4481,4483,4526,4531,1,10939,99,101,100,101,115,4,4,59,69,83,84,4498,4500,4507,4519,1,8826,113,117,97,108,59,1,10927,108,97,110,116,69,113,117,97,108,59,1,8828,105,108,100,101,59,1,8830,109,101,59,1,8243,4,2,100,112,4537,4543,117,99,116,59,1,8719,111,114,116,105,111,110,4,2,59,97,4555,4557,1,8759,108,59,1,8733,4,2,99,105,4567,4572,114,59,3,55349,56491,59,1,936,4,4,85,102,111,115,4585,4594,4599,4604,79,84,5,34,1,59,4592,1,34,114,59,3,55349,56596,112,102,59,1,8474,99,114,59,3,55349,56492,4,12,66,69,97,99,101,102,104,105,111,114,115,117,4636,4642,4650,4681,4704,4763,4767,4771,5047,5069,5081,5094,97,114,114,59,1,10512,71,5,174,1,59,4648,1,174,4,3,99,110,114,4658,4664,4668,117,116,101,59,1,340,103,59,1,10219,114,4,2,59,116,4675,4677,1,8608,108,59,1,10518,4,3,97,101,121,4689,4695,4701,114,111,110,59,1,344,100,105,108,59,1,342,59,1,1056,4,2,59,118,4710,4712,1,8476,101,114,115,101,4,2,69,85,4722,4748,4,2,108,113,4728,4736,101,109,101,110,116,59,1,8715,117,105,108,105,98,114,105,117,109,59,1,8651,112,69,113,117,105,108,105,98,114,105,117,109,59,1,10607,114,59,1,8476,111,59,1,929,103,104,116,4,8,65,67,68,70,84,85,86,97,4792,4840,4849,4905,4912,4972,5022,5040,4,2,110,114,4798,4811,103,108,101,66,114,97,99,107,101,116,59,1,10217,114,111,119,4,3,59,66,76,4822,4824,4829,1,8594,97,114,59,1,8677,101,102,116,65,114,114,111,119,59,1,8644,101,105,108,105,110,103,59,1,8969,111,4,2,117,119,4856,4869,98,108,101,66,114,97,99,107,101,116,59,1,10215,110,4,2,84,86,4876,4887,101,101,86,101,99,116,111,114,59,1,10589,101,99,116,111,114,4,2,59,66,4898,4900,1,8642,97,114,59,1,10581,108,111,111,114,59,1,8971,4,2,101,114,4918,4944,101,4,3,59,65,86,4927,4929,4936,1,8866,114,114,111,119,59,1,8614,101,99,116,111,114,59,1,10587,105,97,110,103,108,101,4,3,59,66,69,4958,4960,4965,1,8883,97,114,59,1,10704,113,117,97,108,59,1,8885,112,4,3,68,84,86,4981,4993,5004,111,119,110,86,101,99,116,111,114,59,1,10575,101,101,86,101,99,116,111,114,59,1,10588,101,99,116,111,114,4,2,59,66,5015,5017,1,8638,97,114,59,1,10580,101,99,116,111,114,4,2,59,66,5033,5035,1,8640,97,114,59,1,10579,114,114,111,119,59,1,8658,4,2,112,117,5053,5057,102,59,1,8477,110,100,73,109,112,108,105,101,115,59,1,10608,105,103,104,116,97,114,114,111,119,59,1,8667,4,2,99,104,5087,5091,114,59,1,8475,59,1,8625,108,101,68,101,108,97,121,101,100,59,1,10740,4,13,72,79,97,99,102,104,105,109,111,113,115,116,117,5134,5150,5157,5164,5198,5203,5259,5265,5277,5283,5374,5380,5385,4,2,67,99,5140,5146,72,99,121,59,1,1065,121,59,1,1064,70,84,99,121,59,1,1068,99,117,116,101,59,1,346,4,5,59,97,101,105,121,5176,5178,5184,5190,5195,1,10940,114,111,110,59,1,352,100,105,108,59,1,350,114,99,59,1,348,59,1,1057,114,59,3,55349,56598,111,114,116,4,4,68,76,82,85,5216,5227,5238,5250,111,119,110,65,114,114,111,119,59,1,8595,101,102,116,65,114,114,111,119,59,1,8592,105,103,104,116,65,114,114,111,119,59,1,8594,112,65,114,114,111,119,59,1,8593,103,109,97,59,1,931,97,108,108,67,105,114,99,108,101,59,1,8728,112,102,59,3,55349,56650,4,2,114,117,5289,5293,116,59,1,8730,97,114,101,4,4,59,73,83,85,5306,5308,5322,5367,1,9633,110,116,101,114,115,101,99,116,105,111,110,59,1,8851,117,4,2,98,112,5329,5347,115,101,116,4,2,59,69,5338,5340,1,8847,113,117,97,108,59,1,8849,101,114,115,101,116,4,2,59,69,5358,5360,1,8848,113,117,97,108,59,1,8850,110,105,111,110,59,1,8852,99,114,59,3,55349,56494,97,114,59,1,8902,4,4,98,99,109,112,5395,5420,5475,5478,4,2,59,115,5401,5403,1,8912,101,116,4,2,59,69,5411,5413,1,8912,113,117,97,108,59,1,8838,4,2,99,104,5426,5468,101,101,100,115,4,4,59,69,83,84,5440,5442,5449,5461,1,8827,113,117,97,108,59,1,10928,108,97,110,116,69,113,117,97,108,59,1,8829,105,108,100,101,59,1,8831,84,104,97,116,59,1,8715,59,1,8721,4,3,59,101,115,5486,5488,5507,1,8913,114,115,101,116,4,2,59,69,5498,5500,1,8835,113,117,97,108,59,1,8839,101,116,59,1,8913,4,11,72,82,83,97,99,102,104,105,111,114,115,5536,5546,5552,5567,5579,5602,5607,5655,5695,5701,5711,79,82,78,5,222,1,59,5544,1,222,65,68,69,59,1,8482,4,2,72,99,5558,5563,99,121,59,1,1035,121,59,1,1062,4,2,98,117,5573,5576,59,1,9,59,1,932,4,3,97,101,121,5587,5593,5599,114,111,110,59,1,356,100,105,108,59,1,354,59,1,1058,114,59,3,55349,56599,4,2,101,105,5613,5631,4,2,114,116,5619,5627,101,102,111,114,101,59,1,8756,97,59,1,920,4,2,99,110,5637,5647,107,83,112,97,99,101,59,3,8287,8202,83,112,97,99,101,59,1,8201,108,100,101,4,4,59,69,70,84,5668,5670,5677,5688,1,8764,113,117,97,108,59,1,8771,117,108,108,69,113,117,97,108,59,1,8773,105,108,100,101,59,1,8776,112,102,59,3,55349,56651,105,112,108,101,68,111,116,59,1,8411,4,2,99,116,5717,5722,114,59,3,55349,56495,114,111,107,59,1,358,4,14,97,98,99,100,102,103,109,110,111,112,114,115,116,117,5758,5789,5805,5823,5830,5835,5846,5852,5921,5937,6089,6095,6101,6108,4,2,99,114,5764,5774,117,116,101,5,218,1,59,5772,1,218,114,4,2,59,111,5781,5783,1,8607,99,105,114,59,1,10569,114,4,2,99,101,5796,5800,121,59,1,1038,118,101,59,1,364,4,2,105,121,5811,5820,114,99,5,219,1,59,5818,1,219,59,1,1059,98,108,97,99,59,1,368,114,59,3,55349,56600,114,97,118,101,5,217,1,59,5844,1,217,97,99,114,59,1,362,4,2,100,105,5858,5905,101,114,4,2,66,80,5866,5892,4,2,97,114,5872,5876,114,59,1,95,97,99,4,2,101,107,5884,5887,59,1,9183,101,116,59,1,9141,97,114,101,110,116,104,101,115,105,115,59,1,9181,111,110,4,2,59,80,5913,5915,1,8899,108,117,115,59,1,8846,4,2,103,112,5927,5932,111,110,59,1,370,102,59,3,55349,56652,4,8,65,68,69,84,97,100,112,115,5955,5985,5996,6009,6026,6033,6044,6075,114,114,111,119,4,3,59,66,68,5967,5969,5974,1,8593,97,114,59,1,10514,111,119,110,65,114,114,111,119,59,1,8645,111,119,110,65,114,114,111,119,59,1,8597,113,117,105,108,105,98,114,105,117,109,59,1,10606,101,101,4,2,59,65,6017,6019,1,8869,114,114,111,119,59,1,8613,114,114,111,119,59,1,8657,111,119,110,97,114,114,111,119,59,1,8661,101,114,4,2,76,82,6052,6063,101,102,116,65,114,114,111,119,59,1,8598,105,103,104,116,65,114,114,111,119,59,1,8599,105,4,2,59,108,6082,6084,1,978,111,110,59,1,933,105,110,103,59,1,366,99,114,59,3,55349,56496,105,108,100,101,59,1,360,109,108,5,220,1,59,6115,1,220,4,9,68,98,99,100,101,102,111,115,118,6137,6143,6148,6152,6166,6250,6255,6261,6267,97,115,104,59,1,8875,97,114,59,1,10987,121,59,1,1042,97,115,104,4,2,59,108,6161,6163,1,8873,59,1,10982,4,2,101,114,6172,6175,59,1,8897,4,3,98,116,121,6183,6188,6238,97,114,59,1,8214,4,2,59,105,6194,6196,1,8214,99,97,108,4,4,66,76,83,84,6209,6214,6220,6231,97,114,59,1,8739,105,110,101,59,1,124,101,112,97,114,97,116,111,114,59,1,10072,105,108,100,101,59,1,8768,84,104,105,110,83,112,97,99,101,59,1,8202,114,59,3,55349,56601,112,102,59,3,55349,56653,99,114,59,3,55349,56497,100,97,115,104,59,1,8874,4,5,99,101,102,111,115,6286,6292,6298,6303,6309,105,114,99,59,1,372,100,103,101,59,1,8896,114,59,3,55349,56602,112,102,59,3,55349,56654,99,114,59,3,55349,56498,4,4,102,105,111,115,6325,6330,6333,6339,114,59,3,55349,56603,59,1,926,112,102,59,3,55349,56655,99,114,59,3,55349,56499,4,9,65,73,85,97,99,102,111,115,117,6365,6370,6375,6380,6391,6405,6410,6416,6422,99,121,59,1,1071,99,121,59,1,1031,99,121,59,1,1070,99,117,116,101,5,221,1,59,6389,1,221,4,2,105,121,6397,6402,114,99,59,1,374,59,1,1067,114,59,3,55349,56604,112,102,59,3,55349,56656,99,114,59,3,55349,56500,109,108,59,1,376,4,8,72,97,99,100,101,102,111,115,6445,6450,6457,6472,6477,6501,6505,6510,99,121,59,1,1046,99,117,116,101,59,1,377,4,2,97,121,6463,6469,114,111,110,59,1,381,59,1,1047,111,116,59,1,379,4,2,114,116,6483,6497,111,87,105,100,116,104,83,112,97,99,101,59,1,8203,97,59,1,918,114,59,1,8488,112,102,59,1,8484,99,114,59,3,55349,56501,4,16,97,98,99,101,102,103,108,109,110,111,112,114,115,116,117,119,6550,6561,6568,6612,6622,6634,6645,6672,6699,6854,6870,6923,6933,6963,6974,6983,99,117,116,101,5,225,1,59,6559,1,225,114,101,118,101,59,1,259,4,6,59,69,100,105,117,121,6582,6584,6588,6591,6600,6609,1,8766,59,3,8766,819,59,1,8767,114,99,5,226,1,59,6598,1,226,116,101,5,180,1,59,6607,1,180,59,1,1072,108,105,103,5,230,1,59,6620,1,230,4,2,59,114,6628,6630,1,8289,59,3,55349,56606,114,97,118,101,5,224,1,59,6643,1,224,4,2,101,112,6651,6667,4,2,102,112,6657,6663,115,121,109,59,1,8501,104,59,1,8501,104,97,59,1,945,4,2,97,112,6678,6692,4,2,99,108,6684,6688,114,59,1,257,103,59,1,10815,5,38,1,59,6697,1,38,4,2,100,103,6705,6737,4,5,59,97,100,115,118,6717,6719,6724,6727,6734,1,8743,110,100,59,1,10837,59,1,10844,108,111,112,101,59,1,10840,59,1,10842,4,7,59,101,108,109,114,115,122,6753,6755,6758,6762,6814,6835,6848,1,8736,59,1,10660,101,59,1,8736,115,100,4,2,59,97,6770,6772,1,8737,4,8,97,98,99,100,101,102,103,104,6790,6793,6796,6799,6802,6805,6808,6811,59,1,10664,59,1,10665,59,1,10666,59,1,10667,59,1,10668,59,1,10669,59,1,10670,59,1,10671,116,4,2,59,118,6821,6823,1,8735,98,4,2,59,100,6830,6832,1,8894,59,1,10653,4,2,112,116,6841,6845,104,59,1,8738,59,1,197,97,114,114,59,1,9084,4,2,103,112,6860,6865,111,110,59,1,261,102,59,3,55349,56658,4,7,59,69,97,101,105,111,112,6886,6888,6891,6897,6900,6904,6908,1,8776,59,1,10864,99,105,114,59,1,10863,59,1,8778,100,59,1,8779,115,59,1,39,114,111,120,4,2,59,101,6917,6919,1,8776,113,59,1,8778,105,110,103,5,229,1,59,6931,1,229,4,3,99,116,121,6941,6946,6949,114,59,3,55349,56502,59,1,42,109,112,4,2,59,101,6957,6959,1,8776,113,59,1,8781,105,108,100,101,5,227,1,59,6972,1,227,109,108,5,228,1,59,6981,1,228,4,2,99,105,6989,6997,111,110,105,110,116,59,1,8755,110,116,59,1,10769,4,16,78,97,98,99,100,101,102,105,107,108,110,111,112,114,115,117,7036,7041,7119,7135,7149,7155,7219,7224,7347,7354,7463,7489,7786,7793,7814,7866,111,116,59,1,10989,4,2,99,114,7047,7094,107,4,4,99,101,112,115,7058,7064,7073,7080,111,110,103,59,1,8780,112,115,105,108,111,110,59,1,1014,114,105,109,101,59,1,8245,105,109,4,2,59,101,7088,7090,1,8765,113,59,1,8909,4,2,118,119,7100,7105,101,101,59,1,8893,101,100,4,2,59,103,7113,7115,1,8965,101,59,1,8965,114,107,4,2,59,116,7127,7129,1,9141,98,114,107,59,1,9142,4,2,111,121,7141,7146,110,103,59,1,8780,59,1,1073,113,117,111,59,1,8222,4,5,99,109,112,114,116,7167,7181,7188,7193,7199,97,117,115,4,2,59,101,7176,7178,1,8757,59,1,8757,112,116,121,118,59,1,10672,115,105,59,1,1014,110,111,117,59,1,8492,4,3,97,104,119,7207,7210,7213,59,1,946,59,1,8502,101,101,110,59,1,8812,114,59,3,55349,56607,103,4,7,99,111,115,116,117,118,119,7241,7262,7288,7305,7328,7335,7340,4,3,97,105,117,7249,7253,7258,112,59,1,8898,114,99,59,1,9711,112,59,1,8899,4,3,100,112,116,7270,7275,7281,111,116,59,1,10752,108,117,115,59,1,10753,105,109,101,115,59,1,10754,4,2,113,116,7294,7300,99,117,112,59,1,10758,97,114,59,1,9733,114,105,97,110,103,108,101,4,2,100,117,7318,7324,111,119,110,59,1,9661,112,59,1,9651,112,108,117,115,59,1,10756,101,101,59,1,8897,101,100,103,101,59,1,8896,97,114,111,119,59,1,10509,4,3,97,107,111,7362,7436,7458,4,2,99,110,7368,7432,107,4,3,108,115,116,7377,7386,7394,111,122,101,110,103,101,59,1,10731,113,117,97,114,101,59,1,9642,114,105,97,110,103,108,101,4,4,59,100,108,114,7411,7413,7419,7425,1,9652,111,119,110,59,1,9662,101,102,116,59,1,9666,105,103,104,116,59,1,9656,107,59,1,9251,4,2,49,51,7442,7454,4,2,50,52,7448,7451,59,1,9618,59,1,9617,52,59,1,9619,99,107,59,1,9608,4,2,101,111,7469,7485,4,2,59,113,7475,7478,3,61,8421,117,105,118,59,3,8801,8421,116,59,1,8976,4,4,112,116,119,120,7499,7504,7517,7523,102,59,3,55349,56659,4,2,59,116,7510,7512,1,8869,111,109,59,1,8869,116,105,101,59,1,8904,4,12,68,72,85,86,98,100,104,109,112,116,117,118,7549,7571,7597,7619,7655,7660,7682,7708,7715,7721,7728,7750,4,4,76,82,108,114,7559,7562,7565,7568,59,1,9559,59,1,9556,59,1,9558,59,1,9555,4,5,59,68,85,100,117,7583,7585,7588,7591,7594,1,9552,59,1,9574,59,1,9577,59,1,9572,59,1,9575,4,4,76,82,108,114,7607,7610,7613,7616,59,1,9565,59,1,9562,59,1,9564,59,1,9561,4,7,59,72,76,82,104,108,114,7635,7637,7640,7643,7646,7649,7652,1,9553,59,1,9580,59,1,9571,59,1,9568,59,1,9579,59,1,9570,59,1,9567,111,120,59,1,10697,4,4,76,82,108,114,7670,7673,7676,7679,59,1,9557,59,1,9554,59,1,9488,59,1,9484,4,5,59,68,85,100,117,7694,7696,7699,7702,7705,1,9472,59,1,9573,59,1,9576,59,1,9516,59,1,9524,105,110,117,115,59,1,8863,108,117,115,59,1,8862,105,109,101,115,59,1,8864,4,4,76,82,108,114,7738,7741,7744,7747,59,1,9563,59,1,9560,59,1,9496,59,1,9492,4,7,59,72,76,82,104,108,114,7766,7768,7771,7774,7777,7780,7783,1,9474,59,1,9578,59,1,9569,59,1,9566,59,1,9532,59,1,9508,59,1,9500,114,105,109,101,59,1,8245,4,2,101,118,7799,7804,118,101,59,1,728,98,97,114,5,166,1,59,7812,1,166,4,4,99,101,105,111,7824,7829,7834,7846,114,59,3,55349,56503,109,105,59,1,8271,109,4,2,59,101,7841,7843,1,8765,59,1,8909,108,4,3,59,98,104,7855,7857,7860,1,92,59,1,10693,115,117,98,59,1,10184,4,2,108,109,7872,7885,108,4,2,59,101,7879,7881,1,8226,116,59,1,8226,112,4,3,59,69,101,7894,7896,7899,1,8782,59,1,10926,4,2,59,113,7905,7907,1,8783,59,1,8783,4,15,97,99,100,101,102,104,105,108,111,114,115,116,117,119,121,7942,8021,8075,8080,8121,8126,8157,8279,8295,8430,8446,8485,8491,8707,8726,4,3,99,112,114,7950,7956,8007,117,116,101,59,1,263,4,6,59,97,98,99,100,115,7970,7972,7977,7984,7998,8003,1,8745,110,100,59,1,10820,114,99,117,112,59,1,10825,4,2,97,117,7990,7994,112,59,1,10827,112,59,1,10823,111,116,59,1,10816,59,3,8745,65024,4,2,101,111,8013,8017,116,59,1,8257,110,59,1,711,4,4,97,101,105,117,8031,8046,8056,8061,4,2,112,114,8037,8041,115,59,1,10829,111,110,59,1,269,100,105,108,5,231,1,59,8054,1,231,114,99,59,1,265,112,115,4,2,59,115,8069,8071,1,10828,109,59,1,10832,111,116,59,1,267,4,3,100,109,110,8088,8097,8104,105,108,5,184,1,59,8095,1,184,112,116,121,118,59,1,10674,116,5,162,2,59,101,8112,8114,1,162,114,100,111,116,59,1,183,114,59,3,55349,56608,4,3,99,101,105,8134,8138,8154,121,59,1,1095,99,107,4,2,59,109,8146,8148,1,10003,97,114,107,59,1,10003,59,1,967,114,4,7,59,69,99,101,102,109,115,8174,8176,8179,8258,8261,8268,8273,1,9675,59,1,10691,4,3,59,101,108,8187,8189,8193,1,710,113,59,1,8791,101,4,2,97,100,8200,8223,114,114,111,119,4,2,108,114,8210,8216,101,102,116,59,1,8634,105,103,104,116,59,1,8635,4,5,82,83,97,99,100,8235,8238,8241,8246,8252,59,1,174,59,1,9416,115,116,59,1,8859,105,114,99,59,1,8858,97,115,104,59,1,8861,59,1,8791,110,105,110,116,59,1,10768,105,100,59,1,10991,99,105,114,59,1,10690,117,98,115,4,2,59,117,8288,8290,1,9827,105,116,59,1,9827,4,4,108,109,110,112,8305,8326,8376,8400,111,110,4,2,59,101,8313,8315,1,58,4,2,59,113,8321,8323,1,8788,59,1,8788,4,2,109,112,8332,8344,97,4,2,59,116,8339,8341,1,44,59,1,64,4,3,59,102,108,8352,8354,8358,1,8705,110,59,1,8728,101,4,2,109,120,8365,8371,101,110,116,59,1,8705,101,115,59,1,8450,4,2,103,105,8382,8395,4,2,59,100,8388,8390,1,8773,111,116,59,1,10861,110,116,59,1,8750,4,3,102,114,121,8408,8412,8417,59,3,55349,56660,111,100,59,1,8720,5,169,2,59,115,8424,8426,1,169,114,59,1,8471,4,2,97,111,8436,8441,114,114,59,1,8629,115,115,59,1,10007,4,2,99,117,8452,8457,114,59,3,55349,56504,4,2,98,112,8463,8474,4,2,59,101,8469,8471,1,10959,59,1,10961,4,2,59,101,8480,8482,1,10960,59,1,10962,100,111,116,59,1,8943,4,7,100,101,108,112,114,118,119,8507,8522,8536,8550,8600,8697,8702,97,114,114,4,2,108,114,8516,8519,59,1,10552,59,1,10549,4,2,112,115,8528,8532,114,59,1,8926,99,59,1,8927,97,114,114,4,2,59,112,8545,8547,1,8630,59,1,10557,4,6,59,98,99,100,111,115,8564,8566,8573,8587,8592,8596,1,8746,114,99,97,112,59,1,10824,4,2,97,117,8579,8583,112,59,1,10822,112,59,1,10826,111,116,59,1,8845,114,59,1,10821,59,3,8746,65024,4,4,97,108,114,118,8610,8623,8663,8672,114,114,4,2,59,109,8618,8620,1,8631,59,1,10556,121,4,3,101,118,119,8632,8651,8656,113,4,2,112,115,8639,8645,114,101,99,59,1,8926,117,99,99,59,1,8927,101,101,59,1,8910,101,100,103,101,59,1,8911,101,110,5,164,1,59,8670,1,164,101,97,114,114,111,119,4,2,108,114,8684,8690,101,102,116,59,1,8630,105,103,104,116,59,1,8631,101,101,59,1,8910,101,100,59,1,8911,4,2,99,105,8713,8721,111,110,105,110,116,59,1,8754,110,116,59,1,8753,108,99,116,121,59,1,9005,4,19,65,72,97,98,99,100,101,102,104,105,106,108,111,114,115,116,117,119,122,8773,8778,8783,8821,8839,8854,8887,8914,8930,8944,9036,9041,9058,9197,9227,9258,9281,9297,9305,114,114,59,1,8659,97,114,59,1,10597,4,4,103,108,114,115,8793,8799,8805,8809,103,101,114,59,1,8224,101,116,104,59,1,8504,114,59,1,8595,104,4,2,59,118,8816,8818,1,8208,59,1,8867,4,2,107,108,8827,8834,97,114,111,119,59,1,10511,97,99,59,1,733,4,2,97,121,8845,8851,114,111,110,59,1,271,59,1,1076,4,3,59,97,111,8862,8864,8880,1,8518,4,2,103,114,8870,8876,103,101,114,59,1,8225,114,59,1,8650,116,115,101,113,59,1,10871,4,3,103,108,109,8895,8902,8907,5,176,1,59,8900,1,176,116,97,59,1,948,112,116,121,118,59,1,10673,4,2,105,114,8920,8926,115,104,116,59,1,10623,59,3,55349,56609,97,114,4,2,108,114,8938,8941,59,1,8643,59,1,8642,4,5,97,101,103,115,118,8956,8986,8989,8996,9001,109,4,3,59,111,115,8965,8967,8983,1,8900,110,100,4,2,59,115,8975,8977,1,8900,117,105,116,59,1,9830,59,1,9830,59,1,168,97,109,109,97,59,1,989,105,110,59,1,8946,4,3,59,105,111,9009,9011,9031,1,247,100,101,5,247,2,59,111,9020,9022,1,247,110,116,105,109,101,115,59,1,8903,110,120,59,1,8903,99,121,59,1,1106,99,4,2,111,114,9048,9053,114,110,59,1,8990,111,112,59,1,8973,4,5,108,112,116,117,119,9070,9076,9081,9130,9144,108,97,114,59,1,36,102,59,3,55349,56661,4,5,59,101,109,112,115,9093,9095,9109,9116,9122,1,729,113,4,2,59,100,9102,9104,1,8784,111,116,59,1,8785,105,110,117,115,59,1,8760,108,117,115,59,1,8724,113,117,97,114,101,59,1,8865,98,108,101,98,97,114,119,101,100,103,101,59,1,8966,110,4,3,97,100,104,9153,9160,9172,114,114,111,119,59,1,8595,111,119,110,97,114,114,111,119,115,59,1,8650,97,114,112,111,111,110,4,2,108,114,9184,9190,101,102,116,59,1,8643,105,103,104,116,59,1,8642,4,2,98,99,9203,9211,107,97,114,111,119,59,1,10512,4,2,111,114,9217,9222,114,110,59,1,8991,111,112,59,1,8972,4,3,99,111,116,9235,9248,9252,4,2,114,121,9241,9245,59,3,55349,56505,59,1,1109,108,59,1,10742,114,111,107,59,1,273,4,2,100,114,9264,9269,111,116,59,1,8945,105,4,2,59,102,9276,9278,1,9663,59,1,9662,4,2,97,104,9287,9292,114,114,59,1,8693,97,114,59,1,10607,97,110,103,108,101,59,1,10662,4,2,99,105,9311,9315,121,59,1,1119,103,114,97,114,114,59,1,10239,4,18,68,97,99,100,101,102,103,108,109,110,111,112,113,114,115,116,117,120,9361,9376,9398,9439,9444,9447,9462,9495,9531,9585,9598,9614,9659,9755,9771,9792,9808,9826,4,2,68,111,9367,9372,111,116,59,1,10871,116,59,1,8785,4,2,99,115,9382,9392,117,116,101,5,233,1,59,9390,1,233,116,101,114,59,1,10862,4,4,97,105,111,121,9408,9414,9430,9436,114,111,110,59,1,283,114,4,2,59,99,9421,9423,1,8790,5,234,1,59,9428,1,234,108,111,110,59,1,8789,59,1,1101,111,116,59,1,279,59,1,8519,4,2,68,114,9453,9458,111,116,59,1,8786,59,3,55349,56610,4,3,59,114,115,9470,9472,9482,1,10906,97,118,101,5,232,1,59,9480,1,232,4,2,59,100,9488,9490,1,10902,111,116,59,1,10904,4,4,59,105,108,115,9505,9507,9515,9518,1,10905,110,116,101,114,115,59,1,9191,59,1,8467,4,2,59,100,9524,9526,1,10901,111,116,59,1,10903,4,3,97,112,115,9539,9544,9564,99,114,59,1,275,116,121,4,3,59,115,118,9554,9556,9561,1,8709,101,116,59,1,8709,59,1,8709,112,4,2,49,59,9571,9583,4,2,51,52,9577,9580,59,1,8196,59,1,8197,1,8195,4,2,103,115,9591,9594,59,1,331,112,59,1,8194,4,2,103,112,9604,9609,111,110,59,1,281,102,59,3,55349,56662,4,3,97,108,115,9622,9635,9640,114,4,2,59,115,9629,9631,1,8917,108,59,1,10723,117,115,59,1,10865,105,4,3,59,108,118,9649,9651,9656,1,949,111,110,59,1,949,59,1,1013,4,4,99,115,117,118,9669,9686,9716,9747,4,2,105,111,9675,9680,114,99,59,1,8790,108,111,110,59,1,8789,4,2,105,108,9692,9696,109,59,1,8770,97,110,116,4,2,103,108,9705,9710,116,114,59,1,10902,101,115,115,59,1,10901,4,3,97,101,105,9724,9729,9734,108,115,59,1,61,115,116,59,1,8799,118,4,2,59,68,9741,9743,1,8801,68,59,1,10872,112,97,114,115,108,59,1,10725,4,2,68,97,9761,9766,111,116,59,1,8787,114,114,59,1,10609,4,3,99,100,105,9779,9783,9788,114,59,1,8495,111,116,59,1,8784,109,59,1,8770,4,2,97,104,9798,9801,59,1,951,5,240,1,59,9806,1,240,4,2,109,114,9814,9822,108,5,235,1,59,9820,1,235,111,59,1,8364,4,3,99,105,112,9834,9838,9843,108,59,1,33,115,116,59,1,8707,4,2,101,111,9849,9859,99,116,97,116,105,111,110,59,1,8496,110,101,110,116,105,97,108,101,59,1,8519,4,12,97,99,101,102,105,106,108,110,111,112,114,115,9896,9910,9914,9921,9954,9960,9967,9989,9994,10027,10036,10164,108,108,105,110,103,100,111,116,115,101,113,59,1,8786,121,59,1,1092,109,97,108,101,59,1,9792,4,3,105,108,114,9929,9935,9950,108,105,103,59,1,64259,4,2,105,108,9941,9945,103,59,1,64256,105,103,59,1,64260,59,3,55349,56611,108,105,103,59,1,64257,108,105,103,59,3,102,106,4,3,97,108,116,9975,9979,9984,116,59,1,9837,105,103,59,1,64258,110,115,59,1,9649,111,102,59,1,402,4,2,112,114,1e4,10005,102,59,3,55349,56663,4,2,97,107,10011,10016,108,108,59,1,8704,4,2,59,118,10022,10024,1,8916,59,1,10969,97,114,116,105,110,116,59,1,10765,4,2,97,111,10042,10159,4,2,99,115,10048,10155,4,6,49,50,51,52,53,55,10062,10102,10114,10135,10139,10151,4,6,50,51,52,53,54,56,10076,10083,10086,10093,10096,10099,5,189,1,59,10081,1,189,59,1,8531,5,188,1,59,10091,1,188,59,1,8533,59,1,8537,59,1,8539,4,2,51,53,10108,10111,59,1,8532,59,1,8534,4,3,52,53,56,10122,10129,10132,5,190,1,59,10127,1,190,59,1,8535,59,1,8540,53,59,1,8536,4,2,54,56,10145,10148,59,1,8538,59,1,8541,56,59,1,8542,108,59,1,8260,119,110,59,1,8994,99,114,59,3,55349,56507,4,17,69,97,98,99,100,101,102,103,105,106,108,110,111,114,115,116,118,10206,10217,10247,10254,10268,10273,10358,10363,10374,10380,10385,10406,10458,10464,10470,10497,10610,4,2,59,108,10212,10214,1,8807,59,1,10892,4,3,99,109,112,10225,10231,10244,117,116,101,59,1,501,109,97,4,2,59,100,10239,10241,1,947,59,1,989,59,1,10886,114,101,118,101,59,1,287,4,2,105,121,10260,10265,114,99,59,1,285,59,1,1075,111,116,59,1,289,4,4,59,108,113,115,10283,10285,10288,10308,1,8805,59,1,8923,4,3,59,113,115,10296,10298,10301,1,8805,59,1,8807,108,97,110,116,59,1,10878,4,4,59,99,100,108,10318,10320,10324,10345,1,10878,99,59,1,10921,111,116,4,2,59,111,10332,10334,1,10880,4,2,59,108,10340,10342,1,10882,59,1,10884,4,2,59,101,10351,10354,3,8923,65024,115,59,1,10900,114,59,3,55349,56612,4,2,59,103,10369,10371,1,8811,59,1,8921,109,101,108,59,1,8503,99,121,59,1,1107,4,4,59,69,97,106,10395,10397,10400,10403,1,8823,59,1,10898,59,1,10917,59,1,10916,4,4,69,97,101,115,10416,10419,10434,10453,59,1,8809,112,4,2,59,112,10426,10428,1,10890,114,111,120,59,1,10890,4,2,59,113,10440,10442,1,10888,4,2,59,113,10448,10450,1,10888,59,1,8809,105,109,59,1,8935,112,102,59,3,55349,56664,97,118,101,59,1,96,4,2,99,105,10476,10480,114,59,1,8458,109,4,3,59,101,108,10489,10491,10494,1,8819,59,1,10894,59,1,10896,5,62,6,59,99,100,108,113,114,10512,10514,10527,10532,10538,10545,1,62,4,2,99,105,10520,10523,59,1,10919,114,59,1,10874,111,116,59,1,8919,80,97,114,59,1,10645,117,101,115,116,59,1,10876,4,5,97,100,101,108,115,10557,10574,10579,10599,10605,4,2,112,114,10563,10570,112,114,111,120,59,1,10886,114,59,1,10616,111,116,59,1,8919,113,4,2,108,113,10586,10592,101,115,115,59,1,8923,108,101,115,115,59,1,10892,101,115,115,59,1,8823,105,109,59,1,8819,4,2,101,110,10616,10626,114,116,110,101,113,113,59,3,8809,65024,69,59,3,8809,65024,4,10,65,97,98,99,101,102,107,111,115,121,10653,10658,10713,10718,10724,10760,10765,10786,10850,10875,114,114,59,1,8660,4,4,105,108,109,114,10668,10674,10678,10684,114,115,112,59,1,8202,102,59,1,189,105,108,116,59,1,8459,4,2,100,114,10690,10695,99,121,59,1,1098,4,3,59,99,119,10703,10705,10710,1,8596,105,114,59,1,10568,59,1,8621,97,114,59,1,8463,105,114,99,59,1,293,4,3,97,108,114,10732,10748,10754,114,116,115,4,2,59,117,10741,10743,1,9829,105,116,59,1,9829,108,105,112,59,1,8230,99,111,110,59,1,8889,114,59,3,55349,56613,115,4,2,101,119,10772,10779,97,114,111,119,59,1,10533,97,114,111,119,59,1,10534,4,5,97,109,111,112,114,10798,10803,10809,10839,10844,114,114,59,1,8703,116,104,116,59,1,8763,107,4,2,108,114,10816,10827,101,102,116,97,114,114,111,119,59,1,8617,105,103,104,116,97,114,114,111,119,59,1,8618,102,59,3,55349,56665,98,97,114,59,1,8213,4,3,99,108,116,10858,10863,10869,114,59,3,55349,56509,97,115,104,59,1,8463,114,111,107,59,1,295,4,2,98,112,10881,10887,117,108,108,59,1,8259,104,101,110,59,1,8208,4,15,97,99,101,102,103,105,106,109,110,111,112,113,115,116,117,10925,10936,10958,10977,10990,11001,11039,11045,11101,11192,11220,11226,11237,11285,11299,99,117,116,101,5,237,1,59,10934,1,237,4,3,59,105,121,10944,10946,10955,1,8291,114,99,5,238,1,59,10953,1,238,59,1,1080,4,2,99,120,10964,10968,121,59,1,1077,99,108,5,161,1,59,10975,1,161,4,2,102,114,10983,10986,59,1,8660,59,3,55349,56614,114,97,118,101,5,236,1,59,10999,1,236,4,4,59,105,110,111,11011,11013,11028,11034,1,8520,4,2,105,110,11019,11024,110,116,59,1,10764,116,59,1,8749,102,105,110,59,1,10716,116,97,59,1,8489,108,105,103,59,1,307,4,3,97,111,112,11053,11092,11096,4,3,99,103,116,11061,11065,11088,114,59,1,299,4,3,101,108,112,11073,11076,11082,59,1,8465,105,110,101,59,1,8464,97,114,116,59,1,8465,104,59,1,305,102,59,1,8887,101,100,59,1,437,4,5,59,99,102,111,116,11113,11115,11121,11136,11142,1,8712,97,114,101,59,1,8453,105,110,4,2,59,116,11129,11131,1,8734,105,101,59,1,10717,100,111,116,59,1,305,4,5,59,99,101,108,112,11154,11156,11161,11179,11186,1,8747,97,108,59,1,8890,4,2,103,114,11167,11173,101,114,115,59,1,8484,99,97,108,59,1,8890,97,114,104,107,59,1,10775,114,111,100,59,1,10812,4,4,99,103,112,116,11202,11206,11211,11216,121,59,1,1105,111,110,59,1,303,102,59,3,55349,56666,97,59,1,953,114,111,100,59,1,10812,117,101,115,116,5,191,1,59,11235,1,191,4,2,99,105,11243,11248,114,59,3,55349,56510,110,4,5,59,69,100,115,118,11261,11263,11266,11271,11282,1,8712,59,1,8953,111,116,59,1,8949,4,2,59,118,11277,11279,1,8948,59,1,8947,59,1,8712,4,2,59,105,11291,11293,1,8290,108,100,101,59,1,297,4,2,107,109,11305,11310,99,121,59,1,1110,108,5,239,1,59,11316,1,239,4,6,99,102,109,111,115,117,11332,11346,11351,11357,11363,11380,4,2,105,121,11338,11343,114,99,59,1,309,59,1,1081,114,59,3,55349,56615,97,116,104,59,1,567,112,102,59,3,55349,56667,4,2,99,101,11369,11374,114,59,3,55349,56511,114,99,121,59,1,1112,107,99,121,59,1,1108,4,8,97,99,102,103,104,106,111,115,11404,11418,11433,11438,11445,11450,11455,11461,112,112,97,4,2,59,118,11413,11415,1,954,59,1,1008,4,2,101,121,11424,11430,100,105,108,59,1,311,59,1,1082,114,59,3,55349,56616,114,101,101,110,59,1,312,99,121,59,1,1093,99,121,59,1,1116,112,102,59,3,55349,56668,99,114,59,3,55349,56512,4,23,65,66,69,72,97,98,99,100,101,102,103,104,106,108,109,110,111,112,114,115,116,117,118,11515,11538,11544,11555,11560,11721,11780,11818,11868,12136,12160,12171,12203,12208,12246,12275,12327,12509,12523,12569,12641,12732,12752,4,3,97,114,116,11523,11528,11532,114,114,59,1,8666,114,59,1,8656,97,105,108,59,1,10523,97,114,114,59,1,10510,4,2,59,103,11550,11552,1,8806,59,1,10891,97,114,59,1,10594,4,9,99,101,103,109,110,112,113,114,116,11580,11586,11594,11600,11606,11624,11627,11636,11694,117,116,101,59,1,314,109,112,116,121,118,59,1,10676,114,97,110,59,1,8466,98,100,97,59,1,955,103,4,3,59,100,108,11615,11617,11620,1,10216,59,1,10641,101,59,1,10216,59,1,10885,117,111,5,171,1,59,11634,1,171,114,4,8,59,98,102,104,108,112,115,116,11655,11657,11669,11673,11677,11681,11685,11690,1,8592,4,2,59,102,11663,11665,1,8676,115,59,1,10527,115,59,1,10525,107,59,1,8617,112,59,1,8619,108,59,1,10553,105,109,59,1,10611,108,59,1,8610,4,3,59,97,101,11702,11704,11709,1,10923,105,108,59,1,10521,4,2,59,115,11715,11717,1,10925,59,3,10925,65024,4,3,97,98,114,11729,11734,11739,114,114,59,1,10508,114,107,59,1,10098,4,2,97,107,11745,11758,99,4,2,101,107,11752,11755,59,1,123,59,1,91,4,2,101,115,11764,11767,59,1,10635,108,4,2,100,117,11774,11777,59,1,10639,59,1,10637,4,4,97,101,117,121,11790,11796,11811,11815,114,111,110,59,1,318,4,2,100,105,11802,11807,105,108,59,1,316,108,59,1,8968,98,59,1,123,59,1,1083,4,4,99,113,114,115,11828,11832,11845,11864,97,59,1,10550,117,111,4,2,59,114,11840,11842,1,8220,59,1,8222,4,2,100,117,11851,11857,104,97,114,59,1,10599,115,104,97,114,59,1,10571,104,59,1,8626,4,5,59,102,103,113,115,11880,11882,12008,12011,12031,1,8804,116,4,5,97,104,108,114,116,11895,11913,11935,11947,11996,114,114,111,119,4,2,59,116,11905,11907,1,8592,97,105,108,59,1,8610,97,114,112,111,111,110,4,2,100,117,11925,11931,111,119,110,59,1,8637,112,59,1,8636,101,102,116,97,114,114,111,119,115,59,1,8647,105,103,104,116,4,3,97,104,115,11959,11974,11984,114,114,111,119,4,2,59,115,11969,11971,1,8596,59,1,8646,97,114,112,111,111,110,115,59,1,8651,113,117,105,103,97,114,114,111,119,59,1,8621,104,114,101,101,116,105,109,101,115,59,1,8907,59,1,8922,4,3,59,113,115,12019,12021,12024,1,8804,59,1,8806,108,97,110,116,59,1,10877,4,5,59,99,100,103,115,12043,12045,12049,12070,12083,1,10877,99,59,1,10920,111,116,4,2,59,111,12057,12059,1,10879,4,2,59,114,12065,12067,1,10881,59,1,10883,4,2,59,101,12076,12079,3,8922,65024,115,59,1,10899,4,5,97,100,101,103,115,12095,12103,12108,12126,12131,112,112,114,111,120,59,1,10885,111,116,59,1,8918,113,4,2,103,113,12115,12120,116,114,59,1,8922,103,116,114,59,1,10891,116,114,59,1,8822,105,109,59,1,8818,4,3,105,108,114,12144,12150,12156,115,104,116,59,1,10620,111,111,114,59,1,8970,59,3,55349,56617,4,2,59,69,12166,12168,1,8822,59,1,10897,4,2,97,98,12177,12198,114,4,2,100,117,12184,12187,59,1,8637,4,2,59,108,12193,12195,1,8636,59,1,10602,108,107,59,1,9604,99,121,59,1,1113,4,5,59,97,99,104,116,12220,12222,12227,12235,12241,1,8810,114,114,59,1,8647,111,114,110,101,114,59,1,8990,97,114,100,59,1,10603,114,105,59,1,9722,4,2,105,111,12252,12258,100,111,116,59,1,320,117,115,116,4,2,59,97,12267,12269,1,9136,99,104,101,59,1,9136,4,4,69,97,101,115,12285,12288,12303,12322,59,1,8808,112,4,2,59,112,12295,12297,1,10889,114,111,120,59,1,10889,4,2,59,113,12309,12311,1,10887,4,2,59,113,12317,12319,1,10887,59,1,8808,105,109,59,1,8934,4,8,97,98,110,111,112,116,119,122,12345,12359,12364,12421,12446,12467,12474,12490,4,2,110,114,12351,12355,103,59,1,10220,114,59,1,8701,114,107,59,1,10214,103,4,3,108,109,114,12373,12401,12409,101,102,116,4,2,97,114,12382,12389,114,114,111,119,59,1,10229,105,103,104,116,97,114,114,111,119,59,1,10231,97,112,115,116,111,59,1,10236,105,103,104,116,97,114,114,111,119,59,1,10230,112,97,114,114,111,119,4,2,108,114,12433,12439,101,102,116,59,1,8619,105,103,104,116,59,1,8620,4,3,97,102,108,12454,12458,12462,114,59,1,10629,59,3,55349,56669,117,115,59,1,10797,105,109,101,115,59,1,10804,4,2,97,98,12480,12485,115,116,59,1,8727,97,114,59,1,95,4,3,59,101,102,12498,12500,12506,1,9674,110,103,101,59,1,9674,59,1,10731,97,114,4,2,59,108,12517,12519,1,40,116,59,1,10643,4,5,97,99,104,109,116,12535,12540,12548,12561,12564,114,114,59,1,8646,111,114,110,101,114,59,1,8991,97,114,4,2,59,100,12556,12558,1,8651,59,1,10605,59,1,8206,114,105,59,1,8895,4,6,97,99,104,105,113,116,12583,12589,12594,12597,12614,12635,113,117,111,59,1,8249,114,59,3,55349,56513,59,1,8624,109,4,3,59,101,103,12606,12608,12611,1,8818,59,1,10893,59,1,10895,4,2,98,117,12620,12623,59,1,91,111,4,2,59,114,12630,12632,1,8216,59,1,8218,114,111,107,59,1,322,5,60,8,59,99,100,104,105,108,113,114,12660,12662,12675,12680,12686,12692,12698,12705,1,60,4,2,99,105,12668,12671,59,1,10918,114,59,1,10873,111,116,59,1,8918,114,101,101,59,1,8907,109,101,115,59,1,8905,97,114,114,59,1,10614,117,101,115,116,59,1,10875,4,2,80,105,12711,12716,97,114,59,1,10646,4,3,59,101,102,12724,12726,12729,1,9667,59,1,8884,59,1,9666,114,4,2,100,117,12739,12746,115,104,97,114,59,1,10570,104,97,114,59,1,10598,4,2,101,110,12758,12768,114,116,110,101,113,113,59,3,8808,65024,69,59,3,8808,65024,4,14,68,97,99,100,101,102,104,105,108,110,111,112,115,117,12803,12809,12893,12908,12914,12928,12933,12937,13011,13025,13032,13049,13052,13069,68,111,116,59,1,8762,4,4,99,108,112,114,12819,12827,12849,12887,114,5,175,1,59,12825,1,175,4,2,101,116,12833,12836,59,1,9794,4,2,59,101,12842,12844,1,10016,115,101,59,1,10016,4,2,59,115,12855,12857,1,8614,116,111,4,4,59,100,108,117,12869,12871,12877,12883,1,8614,111,119,110,59,1,8615,101,102,116,59,1,8612,112,59,1,8613,107,101,114,59,1,9646,4,2,111,121,12899,12905,109,109,97,59,1,10793,59,1,1084,97,115,104,59,1,8212,97,115,117,114,101,100,97,110,103,108,101,59,1,8737,114,59,3,55349,56618,111,59,1,8487,4,3,99,100,110,12945,12954,12985,114,111,5,181,1,59,12952,1,181,4,4,59,97,99,100,12964,12966,12971,12976,1,8739,115,116,59,1,42,105,114,59,1,10992,111,116,5,183,1,59,12983,1,183,117,115,4,3,59,98,100,12995,12997,13e3,1,8722,59,1,8863,4,2,59,117,13006,13008,1,8760,59,1,10794,4,2,99,100,13017,13021,112,59,1,10971,114,59,1,8230,112,108,117,115,59,1,8723,4,2,100,112,13038,13044,101,108,115,59,1,8871,102,59,3,55349,56670,59,1,8723,4,2,99,116,13058,13063,114,59,3,55349,56514,112,111,115,59,1,8766,4,3,59,108,109,13077,13079,13087,1,956,116,105,109,97,112,59,1,8888,97,112,59,1,8888,4,24,71,76,82,86,97,98,99,100,101,102,103,104,105,106,108,109,111,112,114,115,116,117,118,119,13142,13165,13217,13229,13247,13330,13359,13414,13420,13508,13513,13579,13602,13626,13631,13762,13767,13855,13936,13995,14214,14285,14312,14432,4,2,103,116,13148,13152,59,3,8921,824,4,2,59,118,13158,13161,3,8811,8402,59,3,8811,824,4,3,101,108,116,13173,13200,13204,102,116,4,2,97,114,13181,13188,114,114,111,119,59,1,8653,105,103,104,116,97,114,114,111,119,59,1,8654,59,3,8920,824,4,2,59,118,13210,13213,3,8810,8402,59,3,8810,824,105,103,104,116,97,114,114,111,119,59,1,8655,4,2,68,100,13235,13241,97,115,104,59,1,8879,97,115,104,59,1,8878,4,5,98,99,110,112,116,13259,13264,13270,13275,13308,108,97,59,1,8711,117,116,101,59,1,324,103,59,3,8736,8402,4,5,59,69,105,111,112,13287,13289,13293,13298,13302,1,8777,59,3,10864,824,100,59,3,8779,824,115,59,1,329,114,111,120,59,1,8777,117,114,4,2,59,97,13316,13318,1,9838,108,4,2,59,115,13325,13327,1,9838,59,1,8469,4,2,115,117,13336,13344,112,5,160,1,59,13342,1,160,109,112,4,2,59,101,13352,13355,3,8782,824,59,3,8783,824,4,5,97,101,111,117,121,13371,13385,13391,13407,13411,4,2,112,114,13377,13380,59,1,10819,111,110,59,1,328,100,105,108,59,1,326,110,103,4,2,59,100,13399,13401,1,8775,111,116,59,3,10861,824,112,59,1,10818,59,1,1085,97,115,104,59,1,8211,4,7,59,65,97,100,113,115,120,13436,13438,13443,13466,13472,13478,13494,1,8800,114,114,59,1,8663,114,4,2,104,114,13450,13454,107,59,1,10532,4,2,59,111,13460,13462,1,8599,119,59,1,8599,111,116,59,3,8784,824,117,105,118,59,1,8802,4,2,101,105,13484,13489,97,114,59,1,10536,109,59,3,8770,824,105,115,116,4,2,59,115,13503,13505,1,8708,59,1,8708,114,59,3,55349,56619,4,4,69,101,115,116,13523,13527,13563,13568,59,3,8807,824,4,3,59,113,115,13535,13537,13559,1,8817,4,3,59,113,115,13545,13547,13551,1,8817,59,3,8807,824,108,97,110,116,59,3,10878,824,59,3,10878,824,105,109,59,1,8821,4,2,59,114,13574,13576,1,8815,59,1,8815,4,3,65,97,112,13587,13592,13597,114,114,59,1,8654,114,114,59,1,8622,97,114,59,1,10994,4,3,59,115,118,13610,13612,13623,1,8715,4,2,59,100,13618,13620,1,8956,59,1,8954,59,1,8715,99,121,59,1,1114,4,7,65,69,97,100,101,115,116,13647,13652,13656,13661,13665,13737,13742,114,114,59,1,8653,59,3,8806,824,114,114,59,1,8602,114,59,1,8229,4,4,59,102,113,115,13675,13677,13703,13725,1,8816,116,4,2,97,114,13684,13691,114,114,111,119,59,1,8602,105,103,104,116,97,114,114,111,119,59,1,8622,4,3,59,113,115,13711,13713,13717,1,8816,59,3,8806,824,108,97,110,116,59,3,10877,824,4,2,59,115,13731,13734,3,10877,824,59,1,8814,105,109,59,1,8820,4,2,59,114,13748,13750,1,8814,105,4,2,59,101,13757,13759,1,8938,59,1,8940,105,100,59,1,8740,4,2,112,116,13773,13778,102,59,3,55349,56671,5,172,3,59,105,110,13787,13789,13829,1,172,110,4,4,59,69,100,118,13800,13802,13806,13812,1,8713,59,3,8953,824,111,116,59,3,8949,824,4,3,97,98,99,13820,13823,13826,59,1,8713,59,1,8951,59,1,8950,105,4,2,59,118,13836,13838,1,8716,4,3,97,98,99,13846,13849,13852,59,1,8716,59,1,8958,59,1,8957,4,3,97,111,114,13863,13892,13899,114,4,4,59,97,115,116,13874,13876,13883,13888,1,8742,108,108,101,108,59,1,8742,108,59,3,11005,8421,59,3,8706,824,108,105,110,116,59,1,10772,4,3,59,99,101,13907,13909,13914,1,8832,117,101,59,1,8928,4,2,59,99,13920,13923,3,10927,824,4,2,59,101,13929,13931,1,8832,113,59,3,10927,824,4,4,65,97,105,116,13946,13951,13971,13982,114,114,59,1,8655,114,114,4,3,59,99,119,13961,13963,13967,1,8603,59,3,10547,824,59,3,8605,824,103,104,116,97,114,114,111,119,59,1,8603,114,105,4,2,59,101,13990,13992,1,8939,59,1,8941,4,7,99,104,105,109,112,113,117,14011,14036,14060,14080,14085,14090,14106,4,4,59,99,101,114,14021,14023,14028,14032,1,8833,117,101,59,1,8929,59,3,10928,824,59,3,55349,56515,111,114,116,4,2,109,112,14045,14050,105,100,59,1,8740,97,114,97,108,108,101,108,59,1,8742,109,4,2,59,101,14067,14069,1,8769,4,2,59,113,14075,14077,1,8772,59,1,8772,105,100,59,1,8740,97,114,59,1,8742,115,117,4,2,98,112,14098,14102,101,59,1,8930,101,59,1,8931,4,3,98,99,112,14114,14157,14171,4,4,59,69,101,115,14124,14126,14130,14133,1,8836,59,3,10949,824,59,1,8840,101,116,4,2,59,101,14141,14144,3,8834,8402,113,4,2,59,113,14151,14153,1,8840,59,3,10949,824,99,4,2,59,101,14164,14166,1,8833,113,59,3,10928,824,4,4,59,69,101,115,14181,14183,14187,14190,1,8837,59,3,10950,824,59,1,8841,101,116,4,2,59,101,14198,14201,3,8835,8402,113,4,2,59,113,14208,14210,1,8841,59,3,10950,824,4,4,103,105,108,114,14224,14228,14238,14242,108,59,1,8825,108,100,101,5,241,1,59,14236,1,241,103,59,1,8824,105,97,110,103,108,101,4,2,108,114,14254,14269,101,102,116,4,2,59,101,14263,14265,1,8938,113,59,1,8940,105,103,104,116,4,2,59,101,14279,14281,1,8939,113,59,1,8941,4,2,59,109,14291,14293,1,957,4,3,59,101,115,14301,14303,14308,1,35,114,111,59,1,8470,112,59,1,8199,4,9,68,72,97,100,103,105,108,114,115,14332,14338,14344,14349,14355,14369,14376,14408,14426,97,115,104,59,1,8877,97,114,114,59,1,10500,112,59,3,8781,8402,97,115,104,59,1,8876,4,2,101,116,14361,14365,59,3,8805,8402,59,3,62,8402,110,102,105,110,59,1,10718,4,3,65,101,116,14384,14389,14393,114,114,59,1,10498,59,3,8804,8402,4,2,59,114,14399,14402,3,60,8402,105,101,59,3,8884,8402,4,2,65,116,14414,14419,114,114,59,1,10499,114,105,101,59,3,8885,8402,105,109,59,3,8764,8402,4,3,65,97,110,14440,14445,14468,114,114,59,1,8662,114,4,2,104,114,14452,14456,107,59,1,10531,4,2,59,111,14462,14464,1,8598,119,59,1,8598,101,97,114,59,1,10535,4,18,83,97,99,100,101,102,103,104,105,108,109,111,112,114,115,116,117,118,14512,14515,14535,14560,14597,14603,14618,14643,14657,14662,14701,14741,14747,14769,14851,14877,14907,14916,59,1,9416,4,2,99,115,14521,14531,117,116,101,5,243,1,59,14529,1,243,116,59,1,8859,4,2,105,121,14541,14557,114,4,2,59,99,14548,14550,1,8858,5,244,1,59,14555,1,244,59,1,1086,4,5,97,98,105,111,115,14572,14577,14583,14587,14591,115,104,59,1,8861,108,97,99,59,1,337,118,59,1,10808,116,59,1,8857,111,108,100,59,1,10684,108,105,103,59,1,339,4,2,99,114,14609,14614,105,114,59,1,10687,59,3,55349,56620,4,3,111,114,116,14626,14630,14640,110,59,1,731,97,118,101,5,242,1,59,14638,1,242,59,1,10689,4,2,98,109,14649,14654,97,114,59,1,10677,59,1,937,110,116,59,1,8750,4,4,97,99,105,116,14672,14677,14693,14698,114,114,59,1,8634,4,2,105,114,14683,14687,114,59,1,10686,111,115,115,59,1,10683,110,101,59,1,8254,59,1,10688,4,3,97,101,105,14709,14714,14719,99,114,59,1,333,103,97,59,1,969,4,3,99,100,110,14727,14733,14736,114,111,110,59,1,959,59,1,10678,117,115,59,1,8854,112,102,59,3,55349,56672,4,3,97,101,108,14755,14759,14764,114,59,1,10679,114,112,59,1,10681,117,115,59,1,8853,4,7,59,97,100,105,111,115,118,14785,14787,14792,14831,14837,14841,14848,1,8744,114,114,59,1,8635,4,4,59,101,102,109,14802,14804,14817,14824,1,10845,114,4,2,59,111,14811,14813,1,8500,102,59,1,8500,5,170,1,59,14822,1,170,5,186,1,59,14829,1,186,103,111,102,59,1,8886,114,59,1,10838,108,111,112,101,59,1,10839,59,1,10843,4,3,99,108,111,14859,14863,14873,114,59,1,8500,97,115,104,5,248,1,59,14871,1,248,108,59,1,8856,105,4,2,108,109,14884,14893,100,101,5,245,1,59,14891,1,245,101,115,4,2,59,97,14901,14903,1,8855,115,59,1,10806,109,108,5,246,1,59,14914,1,246,98,97,114,59,1,9021,4,12,97,99,101,102,104,105,108,109,111,114,115,117,14948,14992,14996,15033,15038,15068,15090,15189,15192,15222,15427,15441,114,4,4,59,97,115,116,14959,14961,14976,14989,1,8741,5,182,2,59,108,14968,14970,1,182,108,101,108,59,1,8741,4,2,105,108,14982,14986,109,59,1,10995,59,1,11005,59,1,8706,121,59,1,1087,114,4,5,99,105,109,112,116,15009,15014,15019,15024,15027,110,116,59,1,37,111,100,59,1,46,105,108,59,1,8240,59,1,8869,101,110,107,59,1,8241,114,59,3,55349,56621,4,3,105,109,111,15046,15057,15063,4,2,59,118,15052,15054,1,966,59,1,981,109,97,116,59,1,8499,110,101,59,1,9742,4,3,59,116,118,15076,15078,15087,1,960,99,104,102,111,114,107,59,1,8916,59,1,982,4,2,97,117,15096,15119,110,4,2,99,107,15103,15115,107,4,2,59,104,15110,15112,1,8463,59,1,8462,118,59,1,8463,115,4,9,59,97,98,99,100,101,109,115,116,15140,15142,15148,15151,15156,15168,15171,15179,15184,1,43,99,105,114,59,1,10787,59,1,8862,105,114,59,1,10786,4,2,111,117,15162,15165,59,1,8724,59,1,10789,59,1,10866,110,5,177,1,59,15177,1,177,105,109,59,1,10790,119,111,59,1,10791,59,1,177,4,3,105,112,117,15200,15208,15213,110,116,105,110,116,59,1,10773,102,59,3,55349,56673,110,100,5,163,1,59,15220,1,163,4,10,59,69,97,99,101,105,110,111,115,117,15244,15246,15249,15253,15258,15334,15347,15367,15416,15421,1,8826,59,1,10931,112,59,1,10935,117,101,59,1,8828,4,2,59,99,15264,15266,1,10927,4,6,59,97,99,101,110,115,15280,15282,15290,15299,15303,15329,1,8826,112,112,114,111,120,59,1,10935,117,114,108,121,101,113,59,1,8828,113,59,1,10927,4,3,97,101,115,15311,15319,15324,112,112,114,111,120,59,1,10937,113,113,59,1,10933,105,109,59,1,8936,105,109,59,1,8830,109,101,4,2,59,115,15342,15344,1,8242,59,1,8473,4,3,69,97,115,15355,15358,15362,59,1,10933,112,59,1,10937,105,109,59,1,8936,4,3,100,102,112,15375,15378,15404,59,1,8719,4,3,97,108,115,15386,15392,15398,108,97,114,59,1,9006,105,110,101,59,1,8978,117,114,102,59,1,8979,4,2,59,116,15410,15412,1,8733,111,59,1,8733,105,109,59,1,8830,114,101,108,59,1,8880,4,2,99,105,15433,15438,114,59,3,55349,56517,59,1,968,110,99,115,112,59,1,8200,4,6,102,105,111,112,115,117,15462,15467,15472,15478,15485,15491,114,59,3,55349,56622,110,116,59,1,10764,112,102,59,3,55349,56674,114,105,109,101,59,1,8279,99,114,59,3,55349,56518,4,3,97,101,111,15499,15520,15534,116,4,2,101,105,15506,15515,114,110,105,111,110,115,59,1,8461,110,116,59,1,10774,115,116,4,2,59,101,15528,15530,1,63,113,59,1,8799,116,5,34,1,59,15540,1,34,4,21,65,66,72,97,98,99,100,101,102,104,105,108,109,110,111,112,114,115,116,117,120,15586,15609,15615,15620,15796,15855,15893,15931,15977,16001,16039,16183,16204,16222,16228,16285,16312,16318,16363,16408,16416,4,3,97,114,116,15594,15599,15603,114,114,59,1,8667,114,59,1,8658,97,105,108,59,1,10524,97,114,114,59,1,10511,97,114,59,1,10596,4,7,99,100,101,110,113,114,116,15636,15651,15656,15664,15687,15696,15770,4,2,101,117,15642,15646,59,3,8765,817,116,101,59,1,341,105,99,59,1,8730,109,112,116,121,118,59,1,10675,103,4,4,59,100,101,108,15675,15677,15680,15683,1,10217,59,1,10642,59,1,10661,101,59,1,10217,117,111,5,187,1,59,15694,1,187,114,4,11,59,97,98,99,102,104,108,112,115,116,119,15721,15723,15727,15739,15742,15746,15750,15754,15758,15763,15767,1,8594,112,59,1,10613,4,2,59,102,15733,15735,1,8677,115,59,1,10528,59,1,10547,115,59,1,10526,107,59,1,8618,112,59,1,8620,108,59,1,10565,105,109,59,1,10612,108,59,1,8611,59,1,8605,4,2,97,105,15776,15781,105,108,59,1,10522,111,4,2,59,110,15788,15790,1,8758,97,108,115,59,1,8474,4,3,97,98,114,15804,15809,15814,114,114,59,1,10509,114,107,59,1,10099,4,2,97,107,15820,15833,99,4,2,101,107,15827,15830,59,1,125,59,1,93,4,2,101,115,15839,15842,59,1,10636,108,4,2,100,117,15849,15852,59,1,10638,59,1,10640,4,4,97,101,117,121,15865,15871,15886,15890,114,111,110,59,1,345,4,2,100,105,15877,15882,105,108,59,1,343,108,59,1,8969,98,59,1,125,59,1,1088,4,4,99,108,113,115,15903,15907,15914,15927,97,59,1,10551,100,104,97,114,59,1,10601,117,111,4,2,59,114,15922,15924,1,8221,59,1,8221,104,59,1,8627,4,3,97,99,103,15939,15966,15970,108,4,4,59,105,112,115,15950,15952,15957,15963,1,8476,110,101,59,1,8475,97,114,116,59,1,8476,59,1,8477,116,59,1,9645,5,174,1,59,15975,1,174,4,3,105,108,114,15985,15991,15997,115,104,116,59,1,10621,111,111,114,59,1,8971,59,3,55349,56623,4,2,97,111,16007,16028,114,4,2,100,117,16014,16017,59,1,8641,4,2,59,108,16023,16025,1,8640,59,1,10604,4,2,59,118,16034,16036,1,961,59,1,1009,4,3,103,110,115,16047,16167,16171,104,116,4,6,97,104,108,114,115,116,16063,16081,16103,16130,16143,16155,114,114,111,119,4,2,59,116,16073,16075,1,8594,97,105,108,59,1,8611,97,114,112,111,111,110,4,2,100,117,16093,16099,111,119,110,59,1,8641,112,59,1,8640,101,102,116,4,2,97,104,16112,16120,114,114,111,119,115,59,1,8644,97,114,112,111,111,110,115,59,1,8652,105,103,104,116,97,114,114,111,119,115,59,1,8649,113,117,105,103,97,114,114,111,119,59,1,8605,104,114,101,101,116,105,109,101,115,59,1,8908,103,59,1,730,105,110,103,100,111,116,115,101,113,59,1,8787,4,3,97,104,109,16191,16196,16201,114,114,59,1,8644,97,114,59,1,8652,59,1,8207,111,117,115,116,4,2,59,97,16214,16216,1,9137,99,104,101,59,1,9137,109,105,100,59,1,10990,4,4,97,98,112,116,16238,16252,16257,16278,4,2,110,114,16244,16248,103,59,1,10221,114,59,1,8702,114,107,59,1,10215,4,3,97,102,108,16265,16269,16273,114,59,1,10630,59,3,55349,56675,117,115,59,1,10798,105,109,101,115,59,1,10805,4,2,97,112,16291,16304,114,4,2,59,103,16298,16300,1,41,116,59,1,10644,111,108,105,110,116,59,1,10770,97,114,114,59,1,8649,4,4,97,99,104,113,16328,16334,16339,16342,113,117,111,59,1,8250,114,59,3,55349,56519,59,1,8625,4,2,98,117,16348,16351,59,1,93,111,4,2,59,114,16358,16360,1,8217,59,1,8217,4,3,104,105,114,16371,16377,16383,114,101,101,59,1,8908,109,101,115,59,1,8906,105,4,4,59,101,102,108,16394,16396,16399,16402,1,9657,59,1,8885,59,1,9656,116,114,105,59,1,10702,108,117,104,97,114,59,1,10600,59,1,8478,4,19,97,98,99,100,101,102,104,105,108,109,111,112,113,114,115,116,117,119,122,16459,16466,16472,16572,16590,16672,16687,16746,16844,16850,16924,16963,16988,17115,17121,17154,17206,17614,17656,99,117,116,101,59,1,347,113,117,111,59,1,8218,4,10,59,69,97,99,101,105,110,112,115,121,16494,16496,16499,16513,16518,16531,16536,16556,16564,16569,1,8827,59,1,10932,4,2,112,114,16505,16508,59,1,10936,111,110,59,1,353,117,101,59,1,8829,4,2,59,100,16524,16526,1,10928,105,108,59,1,351,114,99,59,1,349,4,3,69,97,115,16544,16547,16551,59,1,10934,112,59,1,10938,105,109,59,1,8937,111,108,105,110,116,59,1,10771,105,109,59,1,8831,59,1,1089,111,116,4,3,59,98,101,16582,16584,16587,1,8901,59,1,8865,59,1,10854,4,7,65,97,99,109,115,116,120,16606,16611,16634,16642,16646,16652,16668,114,114,59,1,8664,114,4,2,104,114,16618,16622,107,59,1,10533,4,2,59,111,16628,16630,1,8600,119,59,1,8600,116,5,167,1,59,16640,1,167,105,59,1,59,119,97,114,59,1,10537,109,4,2,105,110,16659,16665,110,117,115,59,1,8726,59,1,8726,116,59,1,10038,114,4,2,59,111,16679,16682,3,55349,56624,119,110,59,1,8994,4,4,97,99,111,121,16697,16702,16716,16739,114,112,59,1,9839,4,2,104,121,16708,16713,99,121,59,1,1097,59,1,1096,114,116,4,2,109,112,16724,16729,105,100,59,1,8739,97,114,97,108,108,101,108,59,1,8741,5,173,1,59,16744,1,173,4,2,103,109,16752,16770,109,97,4,3,59,102,118,16762,16764,16767,1,963,59,1,962,59,1,962,4,8,59,100,101,103,108,110,112,114,16788,16790,16795,16806,16817,16828,16832,16838,1,8764,111,116,59,1,10858,4,2,59,113,16801,16803,1,8771,59,1,8771,4,2,59,69,16812,16814,1,10910,59,1,10912,4,2,59,69,16823,16825,1,10909,59,1,10911,101,59,1,8774,108,117,115,59,1,10788,97,114,114,59,1,10610,97,114,114,59,1,8592,4,4,97,101,105,116,16860,16883,16891,16904,4,2,108,115,16866,16878,108,115,101,116,109,105,110,117,115,59,1,8726,104,112,59,1,10803,112,97,114,115,108,59,1,10724,4,2,100,108,16897,16900,59,1,8739,101,59,1,8995,4,2,59,101,16910,16912,1,10922,4,2,59,115,16918,16920,1,10924,59,3,10924,65024,4,3,102,108,112,16932,16938,16958,116,99,121,59,1,1100,4,2,59,98,16944,16946,1,47,4,2,59,97,16952,16954,1,10692,114,59,1,9023,102,59,3,55349,56676,97,4,2,100,114,16970,16985,101,115,4,2,59,117,16978,16980,1,9824,105,116,59,1,9824,59,1,8741,4,3,99,115,117,16996,17028,17089,4,2,97,117,17002,17015,112,4,2,59,115,17009,17011,1,8851,59,3,8851,65024,112,4,2,59,115,17022,17024,1,8852,59,3,8852,65024,117,4,2,98,112,17035,17062,4,3,59,101,115,17043,17045,17048,1,8847,59,1,8849,101,116,4,2,59,101,17056,17058,1,8847,113,59,1,8849,4,3,59,101,115,17070,17072,17075,1,8848,59,1,8850,101,116,4,2,59,101,17083,17085,1,8848,113,59,1,8850,4,3,59,97,102,17097,17099,17112,1,9633,114,4,2,101,102,17106,17109,59,1,9633,59,1,9642,59,1,9642,97,114,114,59,1,8594,4,4,99,101,109,116,17131,17136,17142,17148,114,59,3,55349,56520,116,109,110,59,1,8726,105,108,101,59,1,8995,97,114,102,59,1,8902,4,2,97,114,17160,17172,114,4,2,59,102,17167,17169,1,9734,59,1,9733,4,2,97,110,17178,17202,105,103,104,116,4,2,101,112,17188,17197,112,115,105,108,111,110,59,1,1013,104,105,59,1,981,115,59,1,175,4,5,98,99,109,110,112,17218,17351,17420,17423,17427,4,9,59,69,100,101,109,110,112,114,115,17238,17240,17243,17248,17261,17267,17279,17285,17291,1,8834,59,1,10949,111,116,59,1,10941,4,2,59,100,17254,17256,1,8838,111,116,59,1,10947,117,108,116,59,1,10945,4,2,69,101,17273,17276,59,1,10955,59,1,8842,108,117,115,59,1,10943,97,114,114,59,1,10617,4,3,101,105,117,17299,17335,17339,116,4,3,59,101,110,17308,17310,17322,1,8834,113,4,2,59,113,17317,17319,1,8838,59,1,10949,101,113,4,2,59,113,17330,17332,1,8842,59,1,10955,109,59,1,10951,4,2,98,112,17345,17348,59,1,10965,59,1,10963,99,4,6,59,97,99,101,110,115,17366,17368,17376,17385,17389,17415,1,8827,112,112,114,111,120,59,1,10936,117,114,108,121,101,113,59,1,8829,113,59,1,10928,4,3,97,101,115,17397,17405,17410,112,112,114,111,120,59,1,10938,113,113,59,1,10934,105,109,59,1,8937,105,109,59,1,8831,59,1,8721,103,59,1,9834,4,13,49,50,51,59,69,100,101,104,108,109,110,112,115,17455,17462,17469,17476,17478,17481,17496,17509,17524,17530,17536,17548,17554,5,185,1,59,17460,1,185,5,178,1,59,17467,1,178,5,179,1,59,17474,1,179,1,8835,59,1,10950,4,2,111,115,17487,17491,116,59,1,10942,117,98,59,1,10968,4,2,59,100,17502,17504,1,8839,111,116,59,1,10948,115,4,2,111,117,17516,17520,108,59,1,10185,98,59,1,10967,97,114,114,59,1,10619,117,108,116,59,1,10946,4,2,69,101,17542,17545,59,1,10956,59,1,8843,108,117,115,59,1,10944,4,3,101,105,117,17562,17598,17602,116,4,3,59,101,110,17571,17573,17585,1,8835,113,4,2,59,113,17580,17582,1,8839,59,1,10950,101,113,4,2,59,113,17593,17595,1,8843,59,1,10956,109,59,1,10952,4,2,98,112,17608,17611,59,1,10964,59,1,10966,4,3,65,97,110,17622,17627,17650,114,114,59,1,8665,114,4,2,104,114,17634,17638,107,59,1,10534,4,2,59,111,17644,17646,1,8601,119,59,1,8601,119,97,114,59,1,10538,108,105,103,5,223,1,59,17664,1,223,4,13,97,98,99,100,101,102,104,105,111,112,114,115,119,17694,17709,17714,17737,17742,17749,17754,17860,17905,17957,17964,18090,18122,4,2,114,117,17700,17706,103,101,116,59,1,8982,59,1,964,114,107,59,1,9140,4,3,97,101,121,17722,17728,17734,114,111,110,59,1,357,100,105,108,59,1,355,59,1,1090,111,116,59,1,8411,108,114,101,99,59,1,8981,114,59,3,55349,56625,4,4,101,105,107,111,17764,17805,17836,17851,4,2,114,116,17770,17786,101,4,2,52,102,17777,17780,59,1,8756,111,114,101,59,1,8756,97,4,3,59,115,118,17795,17797,17802,1,952,121,109,59,1,977,59,1,977,4,2,99,110,17811,17831,107,4,2,97,115,17818,17826,112,112,114,111,120,59,1,8776,105,109,59,1,8764,115,112,59,1,8201,4,2,97,115,17842,17846,112,59,1,8776,105,109,59,1,8764,114,110,5,254,1,59,17858,1,254,4,3,108,109,110,17868,17873,17901,100,101,59,1,732,101,115,5,215,3,59,98,100,17884,17886,17898,1,215,4,2,59,97,17892,17894,1,8864,114,59,1,10801,59,1,10800,116,59,1,8749,4,3,101,112,115,17913,17917,17953,97,59,1,10536,4,4,59,98,99,102,17927,17929,17934,17939,1,8868,111,116,59,1,9014,105,114,59,1,10993,4,2,59,111,17945,17948,3,55349,56677,114,107,59,1,10970,97,59,1,10537,114,105,109,101,59,1,8244,4,3,97,105,112,17972,17977,18082,100,101,59,1,8482,4,7,97,100,101,109,112,115,116,17993,18051,18056,18059,18066,18072,18076,110,103,108,101,4,5,59,100,108,113,114,18009,18011,18017,18032,18035,1,9653,111,119,110,59,1,9663,101,102,116,4,2,59,101,18026,18028,1,9667,113,59,1,8884,59,1,8796,105,103,104,116,4,2,59,101,18045,18047,1,9657,113,59,1,8885,111,116,59,1,9708,59,1,8796,105,110,117,115,59,1,10810,108,117,115,59,1,10809,98,59,1,10701,105,109,101,59,1,10811,101,122,105,117,109,59,1,9186,4,3,99,104,116,18098,18111,18116,4,2,114,121,18104,18108,59,3,55349,56521,59,1,1094,99,121,59,1,1115,114,111,107,59,1,359,4,2,105,111,18128,18133,120,116,59,1,8812,104,101,97,100,4,2,108,114,18143,18154,101,102,116,97,114,114,111,119,59,1,8606,105,103,104,116,97,114,114,111,119,59,1,8608,4,18,65,72,97,98,99,100,102,103,104,108,109,111,112,114,115,116,117,119,18204,18209,18214,18234,18250,18268,18292,18308,18319,18343,18379,18397,18413,18504,18547,18553,18584,18603,114,114,59,1,8657,97,114,59,1,10595,4,2,99,114,18220,18230,117,116,101,5,250,1,59,18228,1,250,114,59,1,8593,114,4,2,99,101,18241,18245,121,59,1,1118,118,101,59,1,365,4,2,105,121,18256,18265,114,99,5,251,1,59,18263,1,251,59,1,1091,4,3,97,98,104,18276,18281,18287,114,114,59,1,8645,108,97,99,59,1,369,97,114,59,1,10606,4,2,105,114,18298,18304,115,104,116,59,1,10622,59,3,55349,56626,114,97,118,101,5,249,1,59,18317,1,249,4,2,97,98,18325,18338,114,4,2,108,114,18332,18335,59,1,8639,59,1,8638,108,107,59,1,9600,4,2,99,116,18349,18374,4,2,111,114,18355,18369,114,110,4,2,59,101,18363,18365,1,8988,114,59,1,8988,111,112,59,1,8975,114,105,59,1,9720,4,2,97,108,18385,18390,99,114,59,1,363,5,168,1,59,18395,1,168,4,2,103,112,18403,18408,111,110,59,1,371,102,59,3,55349,56678,4,6,97,100,104,108,115,117,18427,18434,18445,18470,18475,18494,114,114,111,119,59,1,8593,111,119,110,97,114,114,111,119,59,1,8597,97,114,112,111,111,110,4,2,108,114,18457,18463,101,102,116,59,1,8639,105,103,104,116,59,1,8638,117,115,59,1,8846,105,4,3,59,104,108,18484,18486,18489,1,965,59,1,978,111,110,59,1,965,112,97,114,114,111,119,115,59,1,8648,4,3,99,105,116,18512,18537,18542,4,2,111,114,18518,18532,114,110,4,2,59,101,18526,18528,1,8989,114,59,1,8989,111,112,59,1,8974,110,103,59,1,367,114,105,59,1,9721,99,114,59,3,55349,56522,4,3,100,105,114,18561,18566,18572,111,116,59,1,8944,108,100,101,59,1,361,105,4,2,59,102,18579,18581,1,9653,59,1,9652,4,2,97,109,18590,18595,114,114,59,1,8648,108,5,252,1,59,18601,1,252,97,110,103,108,101,59,1,10663,4,15,65,66,68,97,99,100,101,102,108,110,111,112,114,115,122,18643,18648,18661,18667,18847,18851,18857,18904,18909,18915,18931,18937,18943,18949,18996,114,114,59,1,8661,97,114,4,2,59,118,18656,18658,1,10984,59,1,10985,97,115,104,59,1,8872,4,2,110,114,18673,18679,103,114,116,59,1,10652,4,7,101,107,110,112,114,115,116,18695,18704,18711,18720,18742,18754,18810,112,115,105,108,111,110,59,1,1013,97,112,112,97,59,1,1008,111,116,104,105,110,103,59,1,8709,4,3,104,105,114,18728,18732,18735,105,59,1,981,59,1,982,111,112,116,111,59,1,8733,4,2,59,104,18748,18750,1,8597,111,59,1,1009,4,2,105,117,18760,18766,103,109,97,59,1,962,4,2,98,112,18772,18791,115,101,116,110,101,113,4,2,59,113,18784,18787,3,8842,65024,59,3,10955,65024,115,101,116,110,101,113,4,2,59,113,18803,18806,3,8843,65024,59,3,10956,65024,4,2,104,114,18816,18822,101,116,97,59,1,977,105,97,110,103,108,101,4,2,108,114,18834,18840,101,102,116,59,1,8882,105,103,104,116,59,1,8883,121,59,1,1074,97,115,104,59,1,8866,4,3,101,108,114,18865,18884,18890,4,3,59,98,101,18873,18875,18880,1,8744,97,114,59,1,8891,113,59,1,8794,108,105,112,59,1,8942,4,2,98,116,18896,18901,97,114,59,1,124,59,1,124,114,59,3,55349,56627,116,114,105,59,1,8882,115,117,4,2,98,112,18923,18927,59,3,8834,8402,59,3,8835,8402,112,102,59,3,55349,56679,114,111,112,59,1,8733,116,114,105,59,1,8883,4,2,99,117,18955,18960,114,59,3,55349,56523,4,2,98,112,18966,18981,110,4,2,69,101,18973,18977,59,3,10955,65024,59,3,8842,65024,110,4,2,69,101,18988,18992,59,3,10956,65024,59,3,8843,65024,105,103,122,97,103,59,1,10650,4,7,99,101,102,111,112,114,115,19020,19026,19061,19066,19072,19075,19089,105,114,99,59,1,373,4,2,100,105,19032,19055,4,2,98,103,19038,19043,97,114,59,1,10847,101,4,2,59,113,19050,19052,1,8743,59,1,8793,101,114,112,59,1,8472,114,59,3,55349,56628,112,102,59,3,55349,56680,59,1,8472,4,2,59,101,19081,19083,1,8768,97,116,104,59,1,8768,99,114,59,3,55349,56524,4,14,99,100,102,104,105,108,109,110,111,114,115,117,118,119,19125,19146,19152,19157,19173,19176,19192,19197,19202,19236,19252,19269,19286,19291,4,3,97,105,117,19133,19137,19142,112,59,1,8898,114,99,59,1,9711,112,59,1,8899,116,114,105,59,1,9661,114,59,3,55349,56629,4,2,65,97,19163,19168,114,114,59,1,10234,114,114,59,1,10231,59,1,958,4,2,65,97,19182,19187,114,114,59,1,10232,114,114,59,1,10229,97,112,59,1,10236,105,115,59,1,8955,4,3,100,112,116,19210,19215,19230,111,116,59,1,10752,4,2,102,108,19221,19225,59,3,55349,56681,117,115,59,1,10753,105,109,101,59,1,10754,4,2,65,97,19242,19247,114,114,59,1,10233,114,114,59,1,10230,4,2,99,113,19258,19263,114,59,3,55349,56525,99,117,112,59,1,10758,4,2,112,116,19275,19281,108,117,115,59,1,10756,114,105,59,1,9651,101,101,59,1,8897,101,100,103,101,59,1,8896,4,8,97,99,101,102,105,111,115,117,19316,19335,19349,19357,19362,19367,19373,19379,99,4,2,117,121,19323,19332,116,101,5,253,1,59,19330,1,253,59,1,1103,4,2,105,121,19341,19346,114,99,59,1,375,59,1,1099,110,5,165,1,59,19355,1,165,114,59,3,55349,56630,99,121,59,1,1111,112,102,59,3,55349,56682,99,114,59,3,55349,56526,4,2,99,109,19385,19389,121,59,1,1102,108,5,255,1,59,19395,1,255,4,10,97,99,100,101,102,104,105,111,115,119,19419,19426,19441,19446,19462,19467,19472,19480,19486,19492,99,117,116,101,59,1,378,4,2,97,121,19432,19438,114,111,110,59,1,382,59,1,1079,111,116,59,1,380,4,2,101,116,19452,19458,116,114,102,59,1,8488,97,59,1,950,114,59,3,55349,56631,99,121,59,1,1078,103,114,97,114,114,59,1,8669,112,102,59,3,55349,56683,99,114,59,3,55349,56527,4,2,106,110,19498,19501,59,1,8205,106,59,1,8204])});var Hn=p((G7,Ey)=>{"use strict";var pM=ET(),Ae=ts(),Za=ST(),R=as(),E=Ae.CODE_POINTS,ja=Ae.CODE_POINT_SEQUENCES,mM={128:8364,130:8218,131:402,132:8222,133:8230,134:8224,135:8225,136:710,137:8240,138:352,139:8249,140:338,142:381,145:8216,146:8217,147:8220,148:8221,149:8226,150:8211,151:8212,152:732,153:8482,154:353,155:8250,156:339,158:382,159:376},dy=1,uy=2,py=4,gM=dy|uy|py,_e="DATA_STATE",Br="RCDATA_STATE",Gn="RAWTEXT_STATE",ca="SCRIPT_DATA_STATE",my="PLAINTEXT_STATE",TT="TAG_OPEN_STATE",yT="END_TAG_OPEN_STATE",jl="TAG_NAME_STATE",bT="RCDATA_LESS_THAN_SIGN_STATE",CT="RCDATA_END_TAG_OPEN_STATE",RT="RCDATA_END_TAG_NAME_STATE",AT="RAWTEXT_LESS_THAN_SIGN_STATE",NT="RAWTEXT_END_TAG_OPEN_STATE",OT="RAWTEXT_END_TAG_NAME_STATE",DT="SCRIPT_DATA_LESS_THAN_SIGN_STATE",IT="SCRIPT_DATA_END_TAG_OPEN_STATE",kT="SCRIPT_DATA_END_TAG_NAME_STATE",vT="SCRIPT_DATA_ESCAPE_START_STATE",wT="SCRIPT_DATA_ESCAPE_START_DASH_STATE",Bt="SCRIPT_DATA_ESCAPED_STATE",xT="SCRIPT_DATA_ESCAPED_DASH_STATE",Xl="SCRIPT_DATA_ESCAPED_DASH_DASH_STATE",rs="SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN_STATE",MT="SCRIPT_DATA_ESCAPED_END_TAG_OPEN_STATE",LT="SCRIPT_DATA_ESCAPED_END_TAG_NAME_STATE",PT="SCRIPT_DATA_DOUBLE_ESCAPE_START_STATE",oa="SCRIPT_DATA_DOUBLE_ESCAPED_STATE",FT="SCRIPT_DATA_DOUBLE_ESCAPED_DASH_STATE",UT="SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH_STATE",ns="SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN_STATE",BT="SCRIPT_DATA_DOUBLE_ESCAPE_END_STATE",Vt="BEFORE_ATTRIBUTE_NAME_STATE",is="ATTRIBUTE_NAME_STATE",Zl="AFTER_ATTRIBUTE_NAME_STATE",Jl="BEFORE_ATTRIBUTE_VALUE_STATE",ss="ATTRIBUTE_VALUE_DOUBLE_QUOTED_STATE",os="ATTRIBUTE_VALUE_SINGLE_QUOTED_STATE",ls="ATTRIBUTE_VALUE_UNQUOTED_STATE",ec="AFTER_ATTRIBUTE_VALUE_QUOTED_STATE",Oa="SELF_CLOSING_START_TAG_STATE",Pn="BOGUS_COMMENT_STATE",GT="MARKUP_DECLARATION_OPEN_STATE",zT="COMMENT_START_STATE",HT="COMMENT_START_DASH_STATE",Da="COMMENT_STATE",YT="COMMENT_LESS_THAN_SIGN_STATE",qT="COMMENT_LESS_THAN_SIGN_BANG_STATE",$T="COMMENT_LESS_THAN_SIGN_BANG_DASH_STATE",VT="COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH_STATE",cs="COMMENT_END_DASH_STATE",_s="COMMENT_END_STATE",KT="COMMENT_END_BANG_STATE",WT="DOCTYPE_STATE",ds="BEFORE_DOCTYPE_NAME_STATE",us="DOCTYPE_NAME_STATE",QT="AFTER_DOCTYPE_NAME_STATE",jT="AFTER_DOCTYPE_PUBLIC_KEYWORD_STATE",XT="BEFORE_DOCTYPE_PUBLIC_IDENTIFIER_STATE",tc="DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED_STATE",ac="DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED_STATE",rc="AFTER_DOCTYPE_PUBLIC_IDENTIFIER_STATE",ZT="BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS_STATE",JT="AFTER_DOCTYPE_SYSTEM_KEYWORD_STATE",ey="BEFORE_DOCTYPE_SYSTEM_IDENTIFIER_STATE",Fn="DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED_STATE",Un="DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED_STATE",nc="AFTER_DOCTYPE_SYSTEM_IDENTIFIER_STATE",la="BOGUS_DOCTYPE_STATE",ps="CDATA_SECTION_STATE",ty="CDATA_SECTION_BRACKET_STATE",ay="CDATA_SECTION_END_STATE",Ur="CHARACTER_REFERENCE_STATE",ry="NAMED_CHARACTER_REFERENCE_STATE",ny="AMBIGUOS_AMPERSAND_STATE",iy="NUMERIC_CHARACTER_REFERENCE_STATE",sy="HEXADEMICAL_CHARACTER_REFERENCE_START_STATE",oy="DECIMAL_CHARACTER_REFERENCE_START_STATE",ly="HEXADEMICAL_CHARACTER_REFERENCE_STATE",cy="DECIMAL_CHARACTER_REFERENCE_STATE",Bn="NUMERIC_CHARACTER_REFERENCE_END_STATE";function xe(e){return e===E.SPACE||e===E.LINE_FEED||e===E.TABULATION||e===E.FORM_FEED}function zn(e){return e>=E.DIGIT_0&&e<=E.DIGIT_9}function Gt(e){return e>=E.LATIN_CAPITAL_A&&e<=E.LATIN_CAPITAL_Z}function Xa(e){return e>=E.LATIN_SMALL_A&&e<=E.LATIN_SMALL_Z}function ka(e){return Xa(e)||Gt(e)}function ic(e){return ka(e)||zn(e)}function gy(e){return e>=E.LATIN_CAPITAL_A&&e<=E.LATIN_CAPITAL_F}function fy(e){return e>=E.LATIN_SMALL_A&&e<=E.LATIN_SMALL_F}function fM(e){return zn(e)||gy(e)||fy(e)}function ms(e){return e+32}function Fe(e){return e<=65535?String.fromCharCode(e):(e-=65536,String.fromCharCode(e>>>10&1023|55296)+String.fromCharCode(56320|e&1023))}function Ia(e){return String.fromCharCode(ms(e))}function _y(e,t){let a=Za[++e],r=++e,n=r+a-1;for(;r<=n;){let i=r+n>>>1,s=Za[i];if(s<t)r=i+1;else if(s>t)n=i-1;else return Za[i+a]}return-1}var mt=class e{constructor(){this.preprocessor=new pM,this.tokenQueue=[],this.allowCDATA=!1,this.state=_e,this.returnState="",this.charRefCode=-1,this.tempBuff=[],this.lastStartTagName="",this.consumedAfterSnapshot=-1,this.active=!1,this.currentCharacterToken=null,this.currentToken=null,this.currentAttr=null}_err(){}_errOnNextCodePoint(t){this._consume(),this._err(t),this._unconsume()}getNextToken(){for(;!this.tokenQueue.length&&this.active;){this.consumedAfterSnapshot=0;let t=this._consume();this._ensureHibernation()||this[this.state](t)}return this.tokenQueue.shift()}write(t,a){this.active=!0,this.preprocessor.write(t,a)}insertHtmlAtCurrentPos(t){this.active=!0,this.preprocessor.insertHtmlAtCurrentPos(t)}_ensureHibernation(){if(this.preprocessor.endOfChunkHit){for(;this.consumedAfterSnapshot>0;this.consumedAfterSnapshot--)this.preprocessor.retreat();return this.active=!1,this.tokenQueue.push({type:e.HIBERNATION_TOKEN}),!0}return!1}_consume(){return this.consumedAfterSnapshot++,this.preprocessor.advance()}_unconsume(){this.consumedAfterSnapshot--,this.preprocessor.retreat()}_reconsumeInState(t){this.state=t,this._unconsume()}_consumeSequenceIfMatch(t,a,r){let n=0,i=!0,s=t.length,o=0,c=a,l;for(;o<s;o++){if(o>0&&(c=this._consume(),n++),c===E.EOF){i=!1;break}if(l=t[o],c!==l&&(r||c!==ms(l))){i=!1;break}}if(!i)for(;n--;)this._unconsume();return i}_isTempBufferEqualToScriptString(){if(this.tempBuff.length!==ja.SCRIPT_STRING.length)return!1;for(let t=0;t<this.tempBuff.length;t++)if(this.tempBuff[t]!==ja.SCRIPT_STRING[t])return!1;return!0}_createStartTagToken(){this.currentToken={type:e.START_TAG_TOKEN,tagName:"",selfClosing:!1,ackSelfClosing:!1,attrs:[]}}_createEndTagToken(){this.currentToken={type:e.END_TAG_TOKEN,tagName:"",selfClosing:!1,attrs:[]}}_createCommentToken(){this.currentToken={type:e.COMMENT_TOKEN,data:""}}_createDoctypeToken(t){this.currentToken={type:e.DOCTYPE_TOKEN,name:t,forceQuirks:!1,publicId:null,systemId:null}}_createCharacterToken(t,a){this.currentCharacterToken={type:t,chars:a}}_createEOFToken(){this.currentToken={type:e.EOF_TOKEN}}_createAttr(t){this.currentAttr={name:t,value:""}}_leaveAttrName(t){e.getTokenAttr(this.currentToken,this.currentAttr.name)===null?this.currentToken.attrs.push(this.currentAttr):this._err(R.duplicateAttribute),this.state=t}_leaveAttrValue(t){this.state=t}_emitCurrentToken(){this._emitCurrentCharacterToken();let t=this.currentToken;this.currentToken=null,t.type===e.START_TAG_TOKEN?this.lastStartTagName=t.tagName:t.type===e.END_TAG_TOKEN&&(t.attrs.length>0&&this._err(R.endTagWithAttributes),t.selfClosing&&this._err(R.endTagWithTrailingSolidus)),this.tokenQueue.push(t)}_emitCurrentCharacterToken(){this.currentCharacterToken&&(this.tokenQueue.push(this.currentCharacterToken),this.currentCharacterToken=null)}_emitEOFToken(){this._createEOFToken(),this._emitCurrentToken()}_appendCharToCurrentCharacterToken(t,a){this.currentCharacterToken&&this.currentCharacterToken.type!==t&&this._emitCurrentCharacterToken(),this.currentCharacterToken?this.currentCharacterToken.chars+=a:this._createCharacterToken(t,a)}_emitCodePoint(t){let a=e.CHARACTER_TOKEN;xe(t)?a=e.WHITESPACE_CHARACTER_TOKEN:t===E.NULL&&(a=e.NULL_CHARACTER_TOKEN),this._appendCharToCurrentCharacterToken(a,Fe(t))}_emitSeveralCodePoints(t){for(let a=0;a<t.length;a++)this._emitCodePoint(t[a])}_emitChars(t){this._appendCharToCurrentCharacterToken(e.CHARACTER_TOKEN,t)}_matchNamedCharacterReference(t){let a=null,r=1,n=_y(0,t);for(this.tempBuff.push(t);n>-1;){let i=Za[n],s=i<gM;s&&i&dy&&(a=i&uy?[Za[++n],Za[++n]]:[Za[++n]],r=0);let c=this._consume();if(this.tempBuff.push(c),r++,c===E.EOF)break;s?n=i&py?_y(n,c):-1:n=c===i?++n:-1}for(;r--;)this.tempBuff.pop(),this._unconsume();return a}_isCharacterReferenceInAttribute(){return this.returnState===ss||this.returnState===os||this.returnState===ls}_isCharacterReferenceAttributeQuirk(t){if(!t&&this._isCharacterReferenceInAttribute()){let a=this._consume();return this._unconsume(),a===E.EQUALS_SIGN||ic(a)}return!1}_flushCodePointsConsumedAsCharacterReference(){if(this._isCharacterReferenceInAttribute())for(let t=0;t<this.tempBuff.length;t++)this.currentAttr.value+=Fe(this.tempBuff[t]);else this._emitSeveralCodePoints(this.tempBuff);this.tempBuff=[]}[_e](t){this.preprocessor.dropParsedChunk(),t===E.LESS_THAN_SIGN?this.state=TT:t===E.AMPERSAND?(this.returnState=_e,this.state=Ur):t===E.NULL?(this._err(R.unexpectedNullCharacter),this._emitCodePoint(t)):t===E.EOF?this._emitEOFToken():this._emitCodePoint(t)}[Br](t){this.preprocessor.dropParsedChunk(),t===E.AMPERSAND?(this.returnState=Br,this.state=Ur):t===E.LESS_THAN_SIGN?this.state=bT:t===E.NULL?(this._err(R.unexpectedNullCharacter),this._emitChars(Ae.REPLACEMENT_CHARACTER)):t===E.EOF?this._emitEOFToken():this._emitCodePoint(t)}[Gn](t){this.preprocessor.dropParsedChunk(),t===E.LESS_THAN_SIGN?this.state=AT:t===E.NULL?(this._err(R.unexpectedNullCharacter),this._emitChars(Ae.REPLACEMENT_CHARACTER)):t===E.EOF?this._emitEOFToken():this._emitCodePoint(t)}[ca](t){this.preprocessor.dropParsedChunk(),t===E.LESS_THAN_SIGN?this.state=DT:t===E.NULL?(this._err(R.unexpectedNullCharacter),this._emitChars(Ae.REPLACEMENT_CHARACTER)):t===E.EOF?this._emitEOFToken():this._emitCodePoint(t)}[my](t){this.preprocessor.dropParsedChunk(),t===E.NULL?(this._err(R.unexpectedNullCharacter),this._emitChars(Ae.REPLACEMENT_CHARACTER)):t===E.EOF?this._emitEOFToken():this._emitCodePoint(t)}[TT](t){t===E.EXCLAMATION_MARK?this.state=GT:t===E.SOLIDUS?this.state=yT:ka(t)?(this._createStartTagToken(),this._reconsumeInState(jl)):t===E.QUESTION_MARK?(this._err(R.unexpectedQuestionMarkInsteadOfTagName),this._createCommentToken(),this._reconsumeInState(Pn)):t===E.EOF?(this._err(R.eofBeforeTagName),this._emitChars("<"),this._emitEOFToken()):(this._err(R.invalidFirstCharacterOfTagName),this._emitChars("<"),this._reconsumeInState(_e))}[yT](t){ka(t)?(this._createEndTagToken(),this._reconsumeInState(jl)):t===E.GREATER_THAN_SIGN?(this._err(R.missingEndTagName),this.state=_e):t===E.EOF?(this._err(R.eofBeforeTagName),this._emitChars("</"),this._emitEOFToken()):(this._err(R.invalidFirstCharacterOfTagName),this._createCommentToken(),this._reconsumeInState(Pn))}[jl](t){xe(t)?this.state=Vt:t===E.SOLIDUS?this.state=Oa:t===E.GREATER_THAN_SIGN?(this.state=_e,this._emitCurrentToken()):Gt(t)?this.currentToken.tagName+=Ia(t):t===E.NULL?(this._err(R.unexpectedNullCharacter),this.currentToken.tagName+=Ae.REPLACEMENT_CHARACTER):t===E.EOF?(this._err(R.eofInTag),this._emitEOFToken()):this.currentToken.tagName+=Fe(t)}[bT](t){t===E.SOLIDUS?(this.tempBuff=[],this.state=CT):(this._emitChars("<"),this._reconsumeInState(Br))}[CT](t){ka(t)?(this._createEndTagToken(),this._reconsumeInState(RT)):(this._emitChars("</"),this._reconsumeInState(Br))}[RT](t){if(Gt(t))this.currentToken.tagName+=Ia(t),this.tempBuff.push(t);else if(Xa(t))this.currentToken.tagName+=Fe(t),this.tempBuff.push(t);else{if(this.lastStartTagName===this.currentToken.tagName){if(xe(t)){this.state=Vt;return}if(t===E.SOLIDUS){this.state=Oa;return}if(t===E.GREATER_THAN_SIGN){this.state=_e,this._emitCurrentToken();return}}this._emitChars("</"),this._emitSeveralCodePoints(this.tempBuff),this._reconsumeInState(Br)}}[AT](t){t===E.SOLIDUS?(this.tempBuff=[],this.state=NT):(this._emitChars("<"),this._reconsumeInState(Gn))}[NT](t){ka(t)?(this._createEndTagToken(),this._reconsumeInState(OT)):(this._emitChars("</"),this._reconsumeInState(Gn))}[OT](t){if(Gt(t))this.currentToken.tagName+=Ia(t),this.tempBuff.push(t);else if(Xa(t))this.currentToken.tagName+=Fe(t),this.tempBuff.push(t);else{if(this.lastStartTagName===this.currentToken.tagName){if(xe(t)){this.state=Vt;return}if(t===E.SOLIDUS){this.state=Oa;return}if(t===E.GREATER_THAN_SIGN){this._emitCurrentToken(),this.state=_e;return}}this._emitChars("</"),this._emitSeveralCodePoints(this.tempBuff),this._reconsumeInState(Gn)}}[DT](t){t===E.SOLIDUS?(this.tempBuff=[],this.state=IT):t===E.EXCLAMATION_MARK?(this.state=vT,this._emitChars("<!")):(this._emitChars("<"),this._reconsumeInState(ca))}[IT](t){ka(t)?(this._createEndTagToken(),this._reconsumeInState(kT)):(this._emitChars("</"),this._reconsumeInState(ca))}[kT](t){if(Gt(t))this.currentToken.tagName+=Ia(t),this.tempBuff.push(t);else if(Xa(t))this.currentToken.tagName+=Fe(t),this.tempBuff.push(t);else{if(this.lastStartTagName===this.currentToken.tagName){if(xe(t)){this.state=Vt;return}else if(t===E.SOLIDUS){this.state=Oa;return}else if(t===E.GREATER_THAN_SIGN){this._emitCurrentToken(),this.state=_e;return}}this._emitChars("</"),this._emitSeveralCodePoints(this.tempBuff),this._reconsumeInState(ca)}}[vT](t){t===E.HYPHEN_MINUS?(this.state=wT,this._emitChars("-")):this._reconsumeInState(ca)}[wT](t){t===E.HYPHEN_MINUS?(this.state=Xl,this._emitChars("-")):this._reconsumeInState(ca)}[Bt](t){t===E.HYPHEN_MINUS?(this.state=xT,this._emitChars("-")):t===E.LESS_THAN_SIGN?this.state=rs:t===E.NULL?(this._err(R.unexpectedNullCharacter),this._emitChars(Ae.REPLACEMENT_CHARACTER)):t===E.EOF?(this._err(R.eofInScriptHtmlCommentLikeText),this._emitEOFToken()):this._emitCodePoint(t)}[xT](t){t===E.HYPHEN_MINUS?(this.state=Xl,this._emitChars("-")):t===E.LESS_THAN_SIGN?this.state=rs:t===E.NULL?(this._err(R.unexpectedNullCharacter),this.state=Bt,this._emitChars(Ae.REPLACEMENT_CHARACTER)):t===E.EOF?(this._err(R.eofInScriptHtmlCommentLikeText),this._emitEOFToken()):(this.state=Bt,this._emitCodePoint(t))}[Xl](t){t===E.HYPHEN_MINUS?this._emitChars("-"):t===E.LESS_THAN_SIGN?this.state=rs:t===E.GREATER_THAN_SIGN?(this.state=ca,this._emitChars(">")):t===E.NULL?(this._err(R.unexpectedNullCharacter),this.state=Bt,this._emitChars(Ae.REPLACEMENT_CHARACTER)):t===E.EOF?(this._err(R.eofInScriptHtmlCommentLikeText),this._emitEOFToken()):(this.state=Bt,this._emitCodePoint(t))}[rs](t){t===E.SOLIDUS?(this.tempBuff=[],this.state=MT):ka(t)?(this.tempBuff=[],this._emitChars("<"),this._reconsumeInState(PT)):(this._emitChars("<"),this._reconsumeInState(Bt))}[MT](t){ka(t)?(this._createEndTagToken(),this._reconsumeInState(LT)):(this._emitChars("</"),this._reconsumeInState(Bt))}[LT](t){if(Gt(t))this.currentToken.tagName+=Ia(t),this.tempBuff.push(t);else if(Xa(t))this.currentToken.tagName+=Fe(t),this.tempBuff.push(t);else{if(this.lastStartTagName===this.currentToken.tagName){if(xe(t)){this.state=Vt;return}if(t===E.SOLIDUS){this.state=Oa;return}if(t===E.GREATER_THAN_SIGN){this._emitCurrentToken(),this.state=_e;return}}this._emitChars("</"),this._emitSeveralCodePoints(this.tempBuff),this._reconsumeInState(Bt)}}[PT](t){xe(t)||t===E.SOLIDUS||t===E.GREATER_THAN_SIGN?(this.state=this._isTempBufferEqualToScriptString()?oa:Bt,this._emitCodePoint(t)):Gt(t)?(this.tempBuff.push(ms(t)),this._emitCodePoint(t)):Xa(t)?(this.tempBuff.push(t),this._emitCodePoint(t)):this._reconsumeInState(Bt)}[oa](t){t===E.HYPHEN_MINUS?(this.state=FT,this._emitChars("-")):t===E.LESS_THAN_SIGN?(this.state=ns,this._emitChars("<")):t===E.NULL?(this._err(R.unexpectedNullCharacter),this._emitChars(Ae.REPLACEMENT_CHARACTER)):t===E.EOF?(this._err(R.eofInScriptHtmlCommentLikeText),this._emitEOFToken()):this._emitCodePoint(t)}[FT](t){t===E.HYPHEN_MINUS?(this.state=UT,this._emitChars("-")):t===E.LESS_THAN_SIGN?(this.state=ns,this._emitChars("<")):t===E.NULL?(this._err(R.unexpectedNullCharacter),this.state=oa,this._emitChars(Ae.REPLACEMENT_CHARACTER)):t===E.EOF?(this._err(R.eofInScriptHtmlCommentLikeText),this._emitEOFToken()):(this.state=oa,this._emitCodePoint(t))}[UT](t){t===E.HYPHEN_MINUS?this._emitChars("-"):t===E.LESS_THAN_SIGN?(this.state=ns,this._emitChars("<")):t===E.GREATER_THAN_SIGN?(this.state=ca,this._emitChars(">")):t===E.NULL?(this._err(R.unexpectedNullCharacter),this.state=oa,this._emitChars(Ae.REPLACEMENT_CHARACTER)):t===E.EOF?(this._err(R.eofInScriptHtmlCommentLikeText),this._emitEOFToken()):(this.state=oa,this._emitCodePoint(t))}[ns](t){t===E.SOLIDUS?(this.tempBuff=[],this.state=BT,this._emitChars("/")):this._reconsumeInState(oa)}[BT](t){xe(t)||t===E.SOLIDUS||t===E.GREATER_THAN_SIGN?(this.state=this._isTempBufferEqualToScriptString()?Bt:oa,this._emitCodePoint(t)):Gt(t)?(this.tempBuff.push(ms(t)),this._emitCodePoint(t)):Xa(t)?(this.tempBuff.push(t),this._emitCodePoint(t)):this._reconsumeInState(oa)}[Vt](t){xe(t)||(t===E.SOLIDUS||t===E.GREATER_THAN_SIGN||t===E.EOF?this._reconsumeInState(Zl):t===E.EQUALS_SIGN?(this._err(R.unexpectedEqualsSignBeforeAttributeName),this._createAttr("="),this.state=is):(this._createAttr(""),this._reconsumeInState(is)))}[is](t){xe(t)||t===E.SOLIDUS||t===E.GREATER_THAN_SIGN||t===E.EOF?(this._leaveAttrName(Zl),this._unconsume()):t===E.EQUALS_SIGN?this._leaveAttrName(Jl):Gt(t)?this.currentAttr.name+=Ia(t):t===E.QUOTATION_MARK||t===E.APOSTROPHE||t===E.LESS_THAN_SIGN?(this._err(R.unexpectedCharacterInAttributeName),this.currentAttr.name+=Fe(t)):t===E.NULL?(this._err(R.unexpectedNullCharacter),this.currentAttr.name+=Ae.REPLACEMENT_CHARACTER):this.currentAttr.name+=Fe(t)}[Zl](t){xe(t)||(t===E.SOLIDUS?this.state=Oa:t===E.EQUALS_SIGN?this.state=Jl:t===E.GREATER_THAN_SIGN?(this.state=_e,this._emitCurrentToken()):t===E.EOF?(this._err(R.eofInTag),this._emitEOFToken()):(this._createAttr(""),this._reconsumeInState(is)))}[Jl](t){xe(t)||(t===E.QUOTATION_MARK?this.state=ss:t===E.APOSTROPHE?this.state=os:t===E.GREATER_THAN_SIGN?(this._err(R.missingAttributeValue),this.state=_e,this._emitCurrentToken()):this._reconsumeInState(ls))}[ss](t){t===E.QUOTATION_MARK?this.state=ec:t===E.AMPERSAND?(this.returnState=ss,this.state=Ur):t===E.NULL?(this._err(R.unexpectedNullCharacter),this.currentAttr.value+=Ae.REPLACEMENT_CHARACTER):t===E.EOF?(this._err(R.eofInTag),this._emitEOFToken()):this.currentAttr.value+=Fe(t)}[os](t){t===E.APOSTROPHE?this.state=ec:t===E.AMPERSAND?(this.returnState=os,this.state=Ur):t===E.NULL?(this._err(R.unexpectedNullCharacter),this.currentAttr.value+=Ae.REPLACEMENT_CHARACTER):t===E.EOF?(this._err(R.eofInTag),this._emitEOFToken()):this.currentAttr.value+=Fe(t)}[ls](t){xe(t)?this._leaveAttrValue(Vt):t===E.AMPERSAND?(this.returnState=ls,this.state=Ur):t===E.GREATER_THAN_SIGN?(this._leaveAttrValue(_e),this._emitCurrentToken()):t===E.NULL?(this._err(R.unexpectedNullCharacter),this.currentAttr.value+=Ae.REPLACEMENT_CHARACTER):t===E.QUOTATION_MARK||t===E.APOSTROPHE||t===E.LESS_THAN_SIGN||t===E.EQUALS_SIGN||t===E.GRAVE_ACCENT?(this._err(R.unexpectedCharacterInUnquotedAttributeValue),this.currentAttr.value+=Fe(t)):t===E.EOF?(this._err(R.eofInTag),this._emitEOFToken()):this.currentAttr.value+=Fe(t)}[ec](t){xe(t)?this._leaveAttrValue(Vt):t===E.SOLIDUS?this._leaveAttrValue(Oa):t===E.GREATER_THAN_SIGN?(this._leaveAttrValue(_e),this._emitCurrentToken()):t===E.EOF?(this._err(R.eofInTag),this._emitEOFToken()):(this._err(R.missingWhitespaceBetweenAttributes),this._reconsumeInState(Vt))}[Oa](t){t===E.GREATER_THAN_SIGN?(this.currentToken.selfClosing=!0,this.state=_e,this._emitCurrentToken()):t===E.EOF?(this._err(R.eofInTag),this._emitEOFToken()):(this._err(R.unexpectedSolidusInTag),this._reconsumeInState(Vt))}[Pn](t){t===E.GREATER_THAN_SIGN?(this.state=_e,this._emitCurrentToken()):t===E.EOF?(this._emitCurrentToken(),this._emitEOFToken()):t===E.NULL?(this._err(R.unexpectedNullCharacter),this.currentToken.data+=Ae.REPLACEMENT_CHARACTER):this.currentToken.data+=Fe(t)}[GT](t){this._consumeSequenceIfMatch(ja.DASH_DASH_STRING,t,!0)?(this._createCommentToken(),this.state=zT):this._consumeSequenceIfMatch(ja.DOCTYPE_STRING,t,!1)?this.state=WT:this._consumeSequenceIfMatch(ja.CDATA_START_STRING,t,!0)?this.allowCDATA?this.state=ps:(this._err(R.cdataInHtmlContent),this._createCommentToken(),this.currentToken.data="[CDATA[",this.state=Pn):this._ensureHibernation()||(this._err(R.incorrectlyOpenedComment),this._createCommentToken(),this._reconsumeInState(Pn))}[zT](t){t===E.HYPHEN_MINUS?this.state=HT:t===E.GREATER_THAN_SIGN?(this._err(R.abruptClosingOfEmptyComment),this.state=_e,this._emitCurrentToken()):this._reconsumeInState(Da)}[HT](t){t===E.HYPHEN_MINUS?this.state=_s:t===E.GREATER_THAN_SIGN?(this._err(R.abruptClosingOfEmptyComment),this.state=_e,this._emitCurrentToken()):t===E.EOF?(this._err(R.eofInComment),this._emitCurrentToken(),this._emitEOFToken()):(this.currentToken.data+="-",this._reconsumeInState(Da))}[Da](t){t===E.HYPHEN_MINUS?this.state=cs:t===E.LESS_THAN_SIGN?(this.currentToken.data+="<",this.state=YT):t===E.NULL?(this._err(R.unexpectedNullCharacter),this.currentToken.data+=Ae.REPLACEMENT_CHARACTER):t===E.EOF?(this._err(R.eofInComment),this._emitCurrentToken(),this._emitEOFToken()):this.currentToken.data+=Fe(t)}[YT](t){t===E.EXCLAMATION_MARK?(this.currentToken.data+="!",this.state=qT):t===E.LESS_THAN_SIGN?this.currentToken.data+="!":this._reconsumeInState(Da)}[qT](t){t===E.HYPHEN_MINUS?this.state=$T:this._reconsumeInState(Da)}[$T](t){t===E.HYPHEN_MINUS?this.state=VT:this._reconsumeInState(cs)}[VT](t){t!==E.GREATER_THAN_SIGN&&t!==E.EOF&&this._err(R.nestedComment),this._reconsumeInState(_s)}[cs](t){t===E.HYPHEN_MINUS?this.state=_s:t===E.EOF?(this._err(R.eofInComment),this._emitCurrentToken(),this._emitEOFToken()):(this.currentToken.data+="-",this._reconsumeInState(Da))}[_s](t){t===E.GREATER_THAN_SIGN?(this.state=_e,this._emitCurrentToken()):t===E.EXCLAMATION_MARK?this.state=KT:t===E.HYPHEN_MINUS?this.currentToken.data+="-":t===E.EOF?(this._err(R.eofInComment),this._emitCurrentToken(),this._emitEOFToken()):(this.currentToken.data+="--",this._reconsumeInState(Da))}[KT](t){t===E.HYPHEN_MINUS?(this.currentToken.data+="--!",this.state=cs):t===E.GREATER_THAN_SIGN?(this._err(R.incorrectlyClosedComment),this.state=_e,this._emitCurrentToken()):t===E.EOF?(this._err(R.eofInComment),this._emitCurrentToken(),this._emitEOFToken()):(this.currentToken.data+="--!",this._reconsumeInState(Da))}[WT](t){xe(t)?this.state=ds:t===E.GREATER_THAN_SIGN?this._reconsumeInState(ds):t===E.EOF?(this._err(R.eofInDoctype),this._createDoctypeToken(null),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):(this._err(R.missingWhitespaceBeforeDoctypeName),this._reconsumeInState(ds))}[ds](t){xe(t)||(Gt(t)?(this._createDoctypeToken(Ia(t)),this.state=us):t===E.NULL?(this._err(R.unexpectedNullCharacter),this._createDoctypeToken(Ae.REPLACEMENT_CHARACTER),this.state=us):t===E.GREATER_THAN_SIGN?(this._err(R.missingDoctypeName),this._createDoctypeToken(null),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this.state=_e):t===E.EOF?(this._err(R.eofInDoctype),this._createDoctypeToken(null),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):(this._createDoctypeToken(Fe(t)),this.state=us))}[us](t){xe(t)?this.state=QT:t===E.GREATER_THAN_SIGN?(this.state=_e,this._emitCurrentToken()):Gt(t)?this.currentToken.name+=Ia(t):t===E.NULL?(this._err(R.unexpectedNullCharacter),this.currentToken.name+=Ae.REPLACEMENT_CHARACTER):t===E.EOF?(this._err(R.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):this.currentToken.name+=Fe(t)}[QT](t){xe(t)||(t===E.GREATER_THAN_SIGN?(this.state=_e,this._emitCurrentToken()):t===E.EOF?(this._err(R.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):this._consumeSequenceIfMatch(ja.PUBLIC_STRING,t,!1)?this.state=jT:this._consumeSequenceIfMatch(ja.SYSTEM_STRING,t,!1)?this.state=JT:this._ensureHibernation()||(this._err(R.invalidCharacterSequenceAfterDoctypeName),this.currentToken.forceQuirks=!0,this._reconsumeInState(la)))}[jT](t){xe(t)?this.state=XT:t===E.QUOTATION_MARK?(this._err(R.missingWhitespaceAfterDoctypePublicKeyword),this.currentToken.publicId="",this.state=tc):t===E.APOSTROPHE?(this._err(R.missingWhitespaceAfterDoctypePublicKeyword),this.currentToken.publicId="",this.state=ac):t===E.GREATER_THAN_SIGN?(this._err(R.missingDoctypePublicIdentifier),this.currentToken.forceQuirks=!0,this.state=_e,this._emitCurrentToken()):t===E.EOF?(this._err(R.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):(this._err(R.missingQuoteBeforeDoctypePublicIdentifier),this.currentToken.forceQuirks=!0,this._reconsumeInState(la))}[XT](t){xe(t)||(t===E.QUOTATION_MARK?(this.currentToken.publicId="",this.state=tc):t===E.APOSTROPHE?(this.currentToken.publicId="",this.state=ac):t===E.GREATER_THAN_SIGN?(this._err(R.missingDoctypePublicIdentifier),this.currentToken.forceQuirks=!0,this.state=_e,this._emitCurrentToken()):t===E.EOF?(this._err(R.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):(this._err(R.missingQuoteBeforeDoctypePublicIdentifier),this.currentToken.forceQuirks=!0,this._reconsumeInState(la)))}[tc](t){t===E.QUOTATION_MARK?this.state=rc:t===E.NULL?(this._err(R.unexpectedNullCharacter),this.currentToken.publicId+=Ae.REPLACEMENT_CHARACTER):t===E.GREATER_THAN_SIGN?(this._err(R.abruptDoctypePublicIdentifier),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this.state=_e):t===E.EOF?(this._err(R.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):this.currentToken.publicId+=Fe(t)}[ac](t){t===E.APOSTROPHE?this.state=rc:t===E.NULL?(this._err(R.unexpectedNullCharacter),this.currentToken.publicId+=Ae.REPLACEMENT_CHARACTER):t===E.GREATER_THAN_SIGN?(this._err(R.abruptDoctypePublicIdentifier),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this.state=_e):t===E.EOF?(this._err(R.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):this.currentToken.publicId+=Fe(t)}[rc](t){xe(t)?this.state=ZT:t===E.GREATER_THAN_SIGN?(this.state=_e,this._emitCurrentToken()):t===E.QUOTATION_MARK?(this._err(R.missingWhitespaceBetweenDoctypePublicAndSystemIdentifiers),this.currentToken.systemId="",this.state=Fn):t===E.APOSTROPHE?(this._err(R.missingWhitespaceBetweenDoctypePublicAndSystemIdentifiers),this.currentToken.systemId="",this.state=Un):t===E.EOF?(this._err(R.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):(this._err(R.missingQuoteBeforeDoctypeSystemIdentifier),this.currentToken.forceQuirks=!0,this._reconsumeInState(la))}[ZT](t){xe(t)||(t===E.GREATER_THAN_SIGN?(this._emitCurrentToken(),this.state=_e):t===E.QUOTATION_MARK?(this.currentToken.systemId="",this.state=Fn):t===E.APOSTROPHE?(this.currentToken.systemId="",this.state=Un):t===E.EOF?(this._err(R.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):(this._err(R.missingQuoteBeforeDoctypeSystemIdentifier),this.currentToken.forceQuirks=!0,this._reconsumeInState(la)))}[JT](t){xe(t)?this.state=ey:t===E.QUOTATION_MARK?(this._err(R.missingWhitespaceAfterDoctypeSystemKeyword),this.currentToken.systemId="",this.state=Fn):t===E.APOSTROPHE?(this._err(R.missingWhitespaceAfterDoctypeSystemKeyword),this.currentToken.systemId="",this.state=Un):t===E.GREATER_THAN_SIGN?(this._err(R.missingDoctypeSystemIdentifier),this.currentToken.forceQuirks=!0,this.state=_e,this._emitCurrentToken()):t===E.EOF?(this._err(R.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):(this._err(R.missingQuoteBeforeDoctypeSystemIdentifier),this.currentToken.forceQuirks=!0,this._reconsumeInState(la))}[ey](t){xe(t)||(t===E.QUOTATION_MARK?(this.currentToken.systemId="",this.state=Fn):t===E.APOSTROPHE?(this.currentToken.systemId="",this.state=Un):t===E.GREATER_THAN_SIGN?(this._err(R.missingDoctypeSystemIdentifier),this.currentToken.forceQuirks=!0,this.state=_e,this._emitCurrentToken()):t===E.EOF?(this._err(R.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):(this._err(R.missingQuoteBeforeDoctypeSystemIdentifier),this.currentToken.forceQuirks=!0,this._reconsumeInState(la)))}[Fn](t){t===E.QUOTATION_MARK?this.state=nc:t===E.NULL?(this._err(R.unexpectedNullCharacter),this.currentToken.systemId+=Ae.REPLACEMENT_CHARACTER):t===E.GREATER_THAN_SIGN?(this._err(R.abruptDoctypeSystemIdentifier),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this.state=_e):t===E.EOF?(this._err(R.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):this.currentToken.systemId+=Fe(t)}[Un](t){t===E.APOSTROPHE?this.state=nc:t===E.NULL?(this._err(R.unexpectedNullCharacter),this.currentToken.systemId+=Ae.REPLACEMENT_CHARACTER):t===E.GREATER_THAN_SIGN?(this._err(R.abruptDoctypeSystemIdentifier),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this.state=_e):t===E.EOF?(this._err(R.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):this.currentToken.systemId+=Fe(t)}[nc](t){xe(t)||(t===E.GREATER_THAN_SIGN?(this._emitCurrentToken(),this.state=_e):t===E.EOF?(this._err(R.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):(this._err(R.unexpectedCharacterAfterDoctypeSystemIdentifier),this._reconsumeInState(la)))}[la](t){t===E.GREATER_THAN_SIGN?(this._emitCurrentToken(),this.state=_e):t===E.NULL?this._err(R.unexpectedNullCharacter):t===E.EOF&&(this._emitCurrentToken(),this._emitEOFToken())}[ps](t){t===E.RIGHT_SQUARE_BRACKET?this.state=ty:t===E.EOF?(this._err(R.eofInCdata),this._emitEOFToken()):this._emitCodePoint(t)}[ty](t){t===E.RIGHT_SQUARE_BRACKET?this.state=ay:(this._emitChars("]"),this._reconsumeInState(ps))}[ay](t){t===E.GREATER_THAN_SIGN?this.state=_e:t===E.RIGHT_SQUARE_BRACKET?this._emitChars("]"):(this._emitChars("]]"),this._reconsumeInState(ps))}[Ur](t){this.tempBuff=[E.AMPERSAND],t===E.NUMBER_SIGN?(this.tempBuff.push(t),this.state=iy):ic(t)?this._reconsumeInState(ry):(this._flushCodePointsConsumedAsCharacterReference(),this._reconsumeInState(this.returnState))}[ry](t){let a=this._matchNamedCharacterReference(t);if(this._ensureHibernation())this.tempBuff=[E.AMPERSAND];else if(a){let r=this.tempBuff[this.tempBuff.length-1]===E.SEMICOLON;this._isCharacterReferenceAttributeQuirk(r)||(r||this._errOnNextCodePoint(R.missingSemicolonAfterCharacterReference),this.tempBuff=a),this._flushCodePointsConsumedAsCharacterReference(),this.state=this.returnState}else this._flushCodePointsConsumedAsCharacterReference(),this.state=ny}[ny](t){ic(t)?this._isCharacterReferenceInAttribute()?this.currentAttr.value+=Fe(t):this._emitCodePoint(t):(t===E.SEMICOLON&&this._err(R.unknownNamedCharacterReference),this._reconsumeInState(this.returnState))}[iy](t){this.charRefCode=0,t===E.LATIN_SMALL_X||t===E.LATIN_CAPITAL_X?(this.tempBuff.push(t),this.state=sy):this._reconsumeInState(oy)}[sy](t){fM(t)?this._reconsumeInState(ly):(this._err(R.absenceOfDigitsInNumericCharacterReference),this._flushCodePointsConsumedAsCharacterReference(),this._reconsumeInState(this.returnState))}[oy](t){zn(t)?this._reconsumeInState(cy):(this._err(R.absenceOfDigitsInNumericCharacterReference),this._flushCodePointsConsumedAsCharacterReference(),this._reconsumeInState(this.returnState))}[ly](t){gy(t)?this.charRefCode=this.charRefCode*16+t-55:fy(t)?this.charRefCode=this.charRefCode*16+t-87:zn(t)?this.charRefCode=this.charRefCode*16+t-48:t===E.SEMICOLON?this.state=Bn:(this._err(R.missingSemicolonAfterCharacterReference),this._reconsumeInState(Bn))}[cy](t){zn(t)?this.charRefCode=this.charRefCode*10+t-48:t===E.SEMICOLON?this.state=Bn:(this._err(R.missingSemicolonAfterCharacterReference),this._reconsumeInState(Bn))}[Bn](){if(this.charRefCode===E.NULL)this._err(R.nullCharacterReference),this.charRefCode=E.REPLACEMENT_CHARACTER;else if(this.charRefCode>1114111)this._err(R.characterReferenceOutsideUnicodeRange),this.charRefCode=E.REPLACEMENT_CHARACTER;else if(Ae.isSurrogate(this.charRefCode))this._err(R.surrogateCharacterReference),this.charRefCode=E.REPLACEMENT_CHARACTER;else if(Ae.isUndefinedCodePoint(this.charRefCode))this._err(R.noncharacterCharacterReference);else if(Ae.isControlCodePoint(this.charRefCode)||this.charRefCode===E.CARRIAGE_RETURN){this._err(R.controlCharacterReference);let t=mM[this.charRefCode];t&&(this.charRefCode=t)}this.tempBuff=[this.charRefCode],this._flushCodePointsConsumedAsCharacterReference(),this._reconsumeInState(this.returnState)}};mt.CHARACTER_TOKEN="CHARACTER_TOKEN";mt.NULL_CHARACTER_TOKEN="NULL_CHARACTER_TOKEN";mt.WHITESPACE_CHARACTER_TOKEN="WHITESPACE_CHARACTER_TOKEN";mt.START_TAG_TOKEN="START_TAG_TOKEN";mt.END_TAG_TOKEN="END_TAG_TOKEN";mt.COMMENT_TOKEN="COMMENT_TOKEN";mt.DOCTYPE_TOKEN="DOCTYPE_TOKEN";mt.EOF_TOKEN="EOF_TOKEN";mt.HIBERNATION_TOKEN="HIBERNATION_TOKEN";mt.MODE={DATA:_e,RCDATA:Br,RAWTEXT:Gn,SCRIPT_DATA:ca,PLAINTEXT:my};mt.getTokenAttr=function(e,t){for(let a=e.attrs.length-1;a>=0;a--)if(e.attrs[a].name===t)return e.attrs[a].value;return null};Ey.exports=mt});var va=p(Gr=>{"use strict";var sc=Gr.NAMESPACES={HTML:"http://www.w3.org/1999/xhtml",MATHML:"http://www.w3.org/1998/Math/MathML",SVG:"http://www.w3.org/2000/svg",XLINK:"http://www.w3.org/1999/xlink",XML:"http://www.w3.org/XML/1998/namespace",XMLNS:"http://www.w3.org/2000/xmlns/"};Gr.ATTRS={TYPE:"type",ACTION:"action",ENCODING:"encoding",PROMPT:"prompt",NAME:"name",COLOR:"color",FACE:"face",SIZE:"size"};Gr.DOCUMENT_MODE={NO_QUIRKS:"no-quirks",QUIRKS:"quirks",LIMITED_QUIRKS:"limited-quirks"};var k=Gr.TAG_NAMES={A:"a",ADDRESS:"address",ANNOTATION_XML:"annotation-xml",APPLET:"applet",AREA:"area",ARTICLE:"article",ASIDE:"aside",B:"b",BASE:"base",BASEFONT:"basefont",BGSOUND:"bgsound",BIG:"big",BLOCKQUOTE:"blockquote",BODY:"body",BR:"br",BUTTON:"button",CAPTION:"caption",CENTER:"center",CODE:"code",COL:"col",COLGROUP:"colgroup",DD:"dd",DESC:"desc",DETAILS:"details",DIALOG:"dialog",DIR:"dir",DIV:"div",DL:"dl",DT:"dt",EM:"em",EMBED:"embed",FIELDSET:"fieldset",FIGCAPTION:"figcaption",FIGURE:"figure",FONT:"font",FOOTER:"footer",FOREIGN_OBJECT:"foreignObject",FORM:"form",FRAME:"frame",FRAMESET:"frameset",H1:"h1",H2:"h2",H3:"h3",H4:"h4",H5:"h5",H6:"h6",HEAD:"head",HEADER:"header",HGROUP:"hgroup",HR:"hr",HTML:"html",I:"i",IMG:"img",IMAGE:"image",INPUT:"input",IFRAME:"iframe",KEYGEN:"keygen",LABEL:"label",LI:"li",LINK:"link",LISTING:"listing",MAIN:"main",MALIGNMARK:"malignmark",MARQUEE:"marquee",MATH:"math",MENU:"menu",META:"meta",MGLYPH:"mglyph",MI:"mi",MO:"mo",MN:"mn",MS:"ms",MTEXT:"mtext",NAV:"nav",NOBR:"nobr",NOFRAMES:"noframes",NOEMBED:"noembed",NOSCRIPT:"noscript",OBJECT:"object",OL:"ol",OPTGROUP:"optgroup",OPTION:"option",P:"p",PARAM:"param",PLAINTEXT:"plaintext",PRE:"pre",RB:"rb",RP:"rp",RT:"rt",RTC:"rtc",RUBY:"ruby",S:"s",SCRIPT:"script",SECTION:"section",SELECT:"select",SOURCE:"source",SMALL:"small",SPAN:"span",STRIKE:"strike",STRONG:"strong",STYLE:"style",SUB:"sub",SUMMARY:"summary",SUP:"sup",TABLE:"table",TBODY:"tbody",TEMPLATE:"template",TEXTAREA:"textarea",TFOOT:"tfoot",TD:"td",TH:"th",THEAD:"thead",TITLE:"title",TR:"tr",TRACK:"track",TT:"tt",U:"u",UL:"ul",SVG:"svg",VAR:"var",WBR:"wbr",XMP:"xmp"};Gr.SPECIAL_ELEMENTS={[sc.HTML]:{[k.ADDRESS]:!0,[k.APPLET]:!0,[k.AREA]:!0,[k.ARTICLE]:!0,[k.ASIDE]:!0,[k.BASE]:!0,[k.BASEFONT]:!0,[k.BGSOUND]:!0,[k.BLOCKQUOTE]:!0,[k.BODY]:!0,[k.BR]:!0,[k.BUTTON]:!0,[k.CAPTION]:!0,[k.CENTER]:!0,[k.COL]:!0,[k.COLGROUP]:!0,[k.DD]:!0,[k.DETAILS]:!0,[k.DIR]:!0,[k.DIV]:!0,[k.DL]:!0,[k.DT]:!0,[k.EMBED]:!0,[k.FIELDSET]:!0,[k.FIGCAPTION]:!0,[k.FIGURE]:!0,[k.FOOTER]:!0,[k.FORM]:!0,[k.FRAME]:!0,[k.FRAMESET]:!0,[k.H1]:!0,[k.H2]:!0,[k.H3]:!0,[k.H4]:!0,[k.H5]:!0,[k.H6]:!0,[k.HEAD]:!0,[k.HEADER]:!0,[k.HGROUP]:!0,[k.HR]:!0,[k.HTML]:!0,[k.IFRAME]:!0,[k.IMG]:!0,[k.INPUT]:!0,[k.LI]:!0,[k.LINK]:!0,[k.LISTING]:!0,[k.MAIN]:!0,[k.MARQUEE]:!0,[k.MENU]:!0,[k.META]:!0,[k.NAV]:!0,[k.NOEMBED]:!0,[k.NOFRAMES]:!0,[k.NOSCRIPT]:!0,[k.OBJECT]:!0,[k.OL]:!0,[k.P]:!0,[k.PARAM]:!0,[k.PLAINTEXT]:!0,[k.PRE]:!0,[k.SCRIPT]:!0,[k.SECTION]:!0,[k.SELECT]:!0,[k.SOURCE]:!0,[k.STYLE]:!0,[k.SUMMARY]:!0,[k.TABLE]:!0,[k.TBODY]:!0,[k.TD]:!0,[k.TEMPLATE]:!0,[k.TEXTAREA]:!0,[k.TFOOT]:!0,[k.TH]:!0,[k.THEAD]:!0,[k.TITLE]:!0,[k.TR]:!0,[k.TRACK]:!0,[k.UL]:!0,[k.WBR]:!0,[k.XMP]:!0},[sc.MATHML]:{[k.MI]:!0,[k.MO]:!0,[k.MN]:!0,[k.MS]:!0,[k.MTEXT]:!0,[k.ANNOTATION_XML]:!0},[sc.SVG]:{[k.TITLE]:!0,[k.FOREIGN_OBJECT]:!0,[k.DESC]:!0}}});var yy=p((H7,Ty)=>{"use strict";var Sy=va(),w=Sy.TAG_NAMES,Ne=Sy.NAMESPACES;function hy(e){switch(e.length){case 1:return e===w.P;case 2:return e===w.RB||e===w.RP||e===w.RT||e===w.DD||e===w.DT||e===w.LI;case 3:return e===w.RTC;case 6:return e===w.OPTION;case 8:return e===w.OPTGROUP}return!1}function EM(e){switch(e.length){case 1:return e===w.P;case 2:return e===w.RB||e===w.RP||e===w.RT||e===w.DD||e===w.DT||e===w.LI||e===w.TD||e===w.TH||e===w.TR;case 3:return e===w.RTC;case 5:return e===w.TBODY||e===w.TFOOT||e===w.THEAD;case 6:return e===w.OPTION;case 7:return e===w.CAPTION;case 8:return e===w.OPTGROUP||e===w.COLGROUP}return!1}function gs(e,t){switch(e.length){case 2:if(e===w.TD||e===w.TH)return t===Ne.HTML;if(e===w.MI||e===w.MO||e===w.MN||e===w.MS)return t===Ne.MATHML;break;case 4:if(e===w.HTML)return t===Ne.HTML;if(e===w.DESC)return t===Ne.SVG;break;case 5:if(e===w.TABLE)return t===Ne.HTML;if(e===w.MTEXT)return t===Ne.MATHML;if(e===w.TITLE)return t===Ne.SVG;break;case 6:return(e===w.APPLET||e===w.OBJECT)&&t===Ne.HTML;case 7:return(e===w.CAPTION||e===w.MARQUEE)&&t===Ne.HTML;case 8:return e===w.TEMPLATE&&t===Ne.HTML;case 13:return e===w.FOREIGN_OBJECT&&t===Ne.SVG;case 14:return e===w.ANNOTATION_XML&&t===Ne.MATHML}return!1}var oc=class{constructor(t,a){this.stackTop=-1,this.items=[],this.current=t,this.currentTagName=null,this.currentTmplContent=null,this.tmplCount=0,this.treeAdapter=a}_indexOf(t){let a=-1;for(let r=this.stackTop;r>=0;r--)if(this.items[r]===t){a=r;break}return a}_isInTemplate(){return this.currentTagName===w.TEMPLATE&&this.treeAdapter.getNamespaceURI(this.current)===Ne.HTML}_updateCurrentElement(){this.current=this.items[this.stackTop],this.currentTagName=this.current&&this.treeAdapter.getTagName(this.current),this.currentTmplContent=this._isInTemplate()?this.treeAdapter.getTemplateContent(this.current):null}push(t){this.items[++this.stackTop]=t,this._updateCurrentElement(),this._isInTemplate()&&this.tmplCount++}pop(){this.stackTop--,this.tmplCount>0&&this._isInTemplate()&&this.tmplCount--,this._updateCurrentElement()}replace(t,a){let r=this._indexOf(t);this.items[r]=a,r===this.stackTop&&this._updateCurrentElement()}insertAfter(t,a){let r=this._indexOf(t)+1;this.items.splice(r,0,a),r===++this.stackTop&&this._updateCurrentElement()}popUntilTagNamePopped(t){for(;this.stackTop>-1;){let a=this.currentTagName,r=this.treeAdapter.getNamespaceURI(this.current);if(this.pop(),a===t&&r===Ne.HTML)break}}popUntilElementPopped(t){for(;this.stackTop>-1;){let a=this.current;if(this.pop(),a===t)break}}popUntilNumberedHeaderPopped(){for(;this.stackTop>-1;){let t=this.currentTagName,a=this.treeAdapter.getNamespaceURI(this.current);if(this.pop(),t===w.H1||t===w.H2||t===w.H3||t===w.H4||t===w.H5||t===w.H6&&a===Ne.HTML)break}}popUntilTableCellPopped(){for(;this.stackTop>-1;){let t=this.currentTagName,a=this.treeAdapter.getNamespaceURI(this.current);if(this.pop(),t===w.TD||t===w.TH&&a===Ne.HTML)break}}popAllUpToHtmlElement(){this.stackTop=0,this._updateCurrentElement()}clearBackToTableContext(){for(;this.currentTagName!==w.TABLE&&this.currentTagName!==w.TEMPLATE&&this.currentTagName!==w.HTML||this.treeAdapter.getNamespaceURI(this.current)!==Ne.HTML;)this.pop()}clearBackToTableBodyContext(){for(;this.currentTagName!==w.TBODY&&this.currentTagName!==w.TFOOT&&this.currentTagName!==w.THEAD&&this.currentTagName!==w.TEMPLATE&&this.currentTagName!==w.HTML||this.treeAdapter.getNamespaceURI(this.current)!==Ne.HTML;)this.pop()}clearBackToTableRowContext(){for(;this.currentTagName!==w.TR&&this.currentTagName!==w.TEMPLATE&&this.currentTagName!==w.HTML||this.treeAdapter.getNamespaceURI(this.current)!==Ne.HTML;)this.pop()}remove(t){for(let a=this.stackTop;a>=0;a--)if(this.items[a]===t){this.items.splice(a,1),this.stackTop--,this._updateCurrentElement();break}}tryPeekProperlyNestedBodyElement(){let t=this.items[1];return t&&this.treeAdapter.getTagName(t)===w.BODY?t:null}contains(t){return this._indexOf(t)>-1}getCommonAncestor(t){let a=this._indexOf(t);return--a>=0?this.items[a]:null}isRootHtmlElementCurrent(){return this.stackTop===0&&this.currentTagName===w.HTML}hasInScope(t){for(let a=this.stackTop;a>=0;a--){let r=this.treeAdapter.getTagName(this.items[a]),n=this.treeAdapter.getNamespaceURI(this.items[a]);if(r===t&&n===Ne.HTML)return!0;if(gs(r,n))return!1}return!0}hasNumberedHeaderInScope(){for(let t=this.stackTop;t>=0;t--){let a=this.treeAdapter.getTagName(this.items[t]),r=this.treeAdapter.getNamespaceURI(this.items[t]);if((a===w.H1||a===w.H2||a===w.H3||a===w.H4||a===w.H5||a===w.H6)&&r===Ne.HTML)return!0;if(gs(a,r))return!1}return!0}hasInListItemScope(t){for(let a=this.stackTop;a>=0;a--){let r=this.treeAdapter.getTagName(this.items[a]),n=this.treeAdapter.getNamespaceURI(this.items[a]);if(r===t&&n===Ne.HTML)return!0;if((r===w.UL||r===w.OL)&&n===Ne.HTML||gs(r,n))return!1}return!0}hasInButtonScope(t){for(let a=this.stackTop;a>=0;a--){let r=this.treeAdapter.getTagName(this.items[a]),n=this.treeAdapter.getNamespaceURI(this.items[a]);if(r===t&&n===Ne.HTML)return!0;if(r===w.BUTTON&&n===Ne.HTML||gs(r,n))return!1}return!0}hasInTableScope(t){for(let a=this.stackTop;a>=0;a--){let r=this.treeAdapter.getTagName(this.items[a]);if(this.treeAdapter.getNamespaceURI(this.items[a])===Ne.HTML){if(r===t)return!0;if(r===w.TABLE||r===w.TEMPLATE||r===w.HTML)return!1}}return!0}hasTableBodyContextInTableScope(){for(let t=this.stackTop;t>=0;t--){let a=this.treeAdapter.getTagName(this.items[t]);if(this.treeAdapter.getNamespaceURI(this.items[t])===Ne.HTML){if(a===w.TBODY||a===w.THEAD||a===w.TFOOT)return!0;if(a===w.TABLE||a===w.HTML)return!1}}return!0}hasInSelectScope(t){for(let a=this.stackTop;a>=0;a--){let r=this.treeAdapter.getTagName(this.items[a]);if(this.treeAdapter.getNamespaceURI(this.items[a])===Ne.HTML){if(r===t)return!0;if(r!==w.OPTION&&r!==w.OPTGROUP)return!1}}return!0}generateImpliedEndTags(){for(;hy(this.currentTagName);)this.pop()}generateImpliedEndTagsThoroughly(){for(;EM(this.currentTagName);)this.pop()}generateImpliedEndTagsWithExclusion(t){for(;hy(this.currentTagName)&&this.currentTagName!==t;)this.pop()}};Ty.exports=oc});var Cy=p((Y7,by)=>{"use strict";var Yn=class e{constructor(t){this.length=0,this.entries=[],this.treeAdapter=t,this.bookmark=null}_getNoahArkConditionCandidates(t){let a=[];if(this.length>=3){let r=this.treeAdapter.getAttrList(t).length,n=this.treeAdapter.getTagName(t),i=this.treeAdapter.getNamespaceURI(t);for(let s=this.length-1;s>=0;s--){let o=this.entries[s];if(o.type===e.MARKER_ENTRY)break;let c=o.element,l=this.treeAdapter.getAttrList(c);this.treeAdapter.getTagName(c)===n&&this.treeAdapter.getNamespaceURI(c)===i&&l.length===r&&a.push({idx:s,attrs:l})}}return a.length<3?[]:a}_ensureNoahArkCondition(t){let a=this._getNoahArkConditionCandidates(t),r=a.length;if(r){let n=this.treeAdapter.getAttrList(t),i=n.length,s=Object.create(null);for(let o=0;o<i;o++){let c=n[o];s[c.name]=c.value}for(let o=0;o<i;o++)for(let c=0;c<r;c++){let l=a[c].attrs[o];if(s[l.name]!==l.value&&(a.splice(c,1),r--),a.length<3)return}for(let o=r-1;o>=2;o--)this.entries.splice(a[o].idx,1),this.length--}}insertMarker(){this.entries.push({type:e.MARKER_ENTRY}),this.length++}pushElement(t,a){this._ensureNoahArkCondition(t),this.entries.push({type:e.ELEMENT_ENTRY,element:t,token:a}),this.length++}insertElementAfterBookmark(t,a){let r=this.length-1;for(;r>=0&&this.entries[r]!==this.bookmark;r--);this.entries.splice(r+1,0,{type:e.ELEMENT_ENTRY,element:t,token:a}),this.length++}removeEntry(t){for(let a=this.length-1;a>=0;a--)if(this.entries[a]===t){this.entries.splice(a,1),this.length--;break}}clearToLastMarker(){for(;this.length;){let t=this.entries.pop();if(this.length--,t.type===e.MARKER_ENTRY)break}}getElementEntryInScopeWithTagName(t){for(let a=this.length-1;a>=0;a--){let r=this.entries[a];if(r.type===e.MARKER_ENTRY)return null;if(this.treeAdapter.getTagName(r.element)===t)return r}return null}getElementEntry(t){for(let a=this.length-1;a>=0;a--){let r=this.entries[a];if(r.type===e.ELEMENT_ENTRY&&r.element===t)return r}return null}};Yn.MARKER_ENTRY="MARKER_ENTRY";Yn.ELEMENT_ENTRY="ELEMENT_ENTRY";by.exports=Yn});var Kt=p((q7,Ry)=>{"use strict";var fs=class{constructor(t){let a={},r=this._getOverriddenMethods(this,a);for(let n of Object.keys(r))typeof r[n]=="function"&&(a[n]=t[n],t[n]=r[n])}_getOverriddenMethods(){throw new Error("Not implemented")}};fs.install=function(e,t,a){e.__mixins||(e.__mixins=[]);for(let n=0;n<e.__mixins.length;n++)if(e.__mixins[n].constructor===t)return e.__mixins[n];let r=new t(e,a);return e.__mixins.push(r),r};Ry.exports=fs});var cc=p(($7,Ay)=>{"use strict";var hM=Kt(),lc=class extends hM{constructor(t){super(t),this.preprocessor=t,this.isEol=!1,this.lineStartPos=0,this.droppedBufferSize=0,this.offset=0,this.col=0,this.line=1}_getOverriddenMethods(t,a){return{advance(){let r=this.pos+1,n=this.html[r];return t.isEol&&(t.isEol=!1,t.line++,t.lineStartPos=r),(n===`
|
|
111
111
|
`||n==="\r"&&this.html[r+1]!==`
|
|
112
112
|
`)&&(t.isEol=!0),t.col=r-t.lineStartPos+1,t.offset=t.droppedBufferSize+r,a.advance.call(this)},retreat(){a.retreat.call(this),t.isEol=!1,t.col=this.pos-t.lineStartPos+1},dropParsedChunk(){let r=this.pos;a.dropParsedChunk.call(this);let n=r-this.pos;t.lineStartPos-=n,t.droppedBufferSize+=n,t.offset=t.droppedBufferSize+this.pos}}}};Ay.exports=lc});var uc=p((V7,Oy)=>{"use strict";var Ny=Kt(),_c=Hn(),SM=cc(),dc=class extends Ny{constructor(t){super(t),this.tokenizer=t,this.posTracker=Ny.install(t.preprocessor,SM),this.currentAttrLocation=null,this.ctLoc=null}_getCurrentLocation(){return{startLine:this.posTracker.line,startCol:this.posTracker.col,startOffset:this.posTracker.offset,endLine:-1,endCol:-1,endOffset:-1}}_attachCurrentAttrLocationInfo(){this.currentAttrLocation.endLine=this.posTracker.line,this.currentAttrLocation.endCol=this.posTracker.col,this.currentAttrLocation.endOffset=this.posTracker.offset;let t=this.tokenizer.currentToken,a=this.tokenizer.currentAttr;t.location.attrs||(t.location.attrs=Object.create(null)),t.location.attrs[a.name]=this.currentAttrLocation}_getOverriddenMethods(t,a){let r={_createStartTagToken(){a._createStartTagToken.call(this),this.currentToken.location=t.ctLoc},_createEndTagToken(){a._createEndTagToken.call(this),this.currentToken.location=t.ctLoc},_createCommentToken(){a._createCommentToken.call(this),this.currentToken.location=t.ctLoc},_createDoctypeToken(n){a._createDoctypeToken.call(this,n),this.currentToken.location=t.ctLoc},_createCharacterToken(n,i){a._createCharacterToken.call(this,n,i),this.currentCharacterToken.location=t.ctLoc},_createEOFToken(){a._createEOFToken.call(this),this.currentToken.location=t._getCurrentLocation()},_createAttr(n){a._createAttr.call(this,n),t.currentAttrLocation=t._getCurrentLocation()},_leaveAttrName(n){a._leaveAttrName.call(this,n),t._attachCurrentAttrLocationInfo()},_leaveAttrValue(n){a._leaveAttrValue.call(this,n),t._attachCurrentAttrLocationInfo()},_emitCurrentToken(){let n=this.currentToken.location;this.currentCharacterToken&&(this.currentCharacterToken.location.endLine=n.startLine,this.currentCharacterToken.location.endCol=n.startCol,this.currentCharacterToken.location.endOffset=n.startOffset),this.currentToken.type===_c.EOF_TOKEN?(n.endLine=n.startLine,n.endCol=n.startCol,n.endOffset=n.startOffset):(n.endLine=t.posTracker.line,n.endCol=t.posTracker.col+1,n.endOffset=t.posTracker.offset+1),a._emitCurrentToken.call(this)},_emitCurrentCharacterToken(){let n=this.currentCharacterToken&&this.currentCharacterToken.location;n&&n.endOffset===-1&&(n.endLine=t.posTracker.line,n.endCol=t.posTracker.col,n.endOffset=t.posTracker.offset),a._emitCurrentCharacterToken.call(this)}};return Object.keys(_c.MODE).forEach(n=>{let i=_c.MODE[n];r[i]=function(s){t.ctLoc=t._getCurrentLocation(),a[i].call(this,s)}}),r}};Oy.exports=dc});var Iy=p((K7,Dy)=>{"use strict";var TM=Kt(),pc=class extends TM{constructor(t,a){super(t),this.onItemPop=a.onItemPop}_getOverriddenMethods(t,a){return{pop(){t.onItemPop(this.current),a.pop.call(this)},popAllUpToHtmlElement(){for(let r=this.stackTop;r>0;r--)t.onItemPop(this.items[r]);a.popAllUpToHtmlElement.call(this)},remove(r){t.onItemPop(this.current),a.remove.call(this,r)}}}};Dy.exports=pc});var wy=p((W7,vy)=>{"use strict";var mc=Kt(),ky=Hn(),yM=uc(),bM=Iy(),CM=va(),gc=CM.TAG_NAMES,fc=class extends mc{constructor(t){super(t),this.parser=t,this.treeAdapter=this.parser.treeAdapter,this.posTracker=null,this.lastStartTagToken=null,this.lastFosterParentingLocation=null,this.currentToken=null}_setStartLocation(t){let a=null;this.lastStartTagToken&&(a=Object.assign({},this.lastStartTagToken.location),a.startTag=this.lastStartTagToken.location),this.treeAdapter.setNodeSourceCodeLocation(t,a)}_setEndLocation(t,a){let r=this.treeAdapter.getNodeSourceCodeLocation(t);if(r&&a.location){let n=a.location,i=this.treeAdapter.getTagName(t);a.type===ky.END_TAG_TOKEN&&i===a.tagName?(r.endTag=Object.assign({},n),r.endLine=n.endLine,r.endCol=n.endCol,r.endOffset=n.endOffset):(r.endLine=n.startLine,r.endCol=n.startCol,r.endOffset=n.startOffset)}}_getOverriddenMethods(t,a){return{_bootstrap(r,n){a._bootstrap.call(this,r,n),t.lastStartTagToken=null,t.lastFosterParentingLocation=null,t.currentToken=null;let i=mc.install(this.tokenizer,yM);t.posTracker=i.posTracker,mc.install(this.openElements,bM,{onItemPop:function(s){t._setEndLocation(s,t.currentToken)}})},_runParsingLoop(r){a._runParsingLoop.call(this,r);for(let n=this.openElements.stackTop;n>=0;n--)t._setEndLocation(this.openElements.items[n],t.currentToken)},_processTokenInForeignContent(r){t.currentToken=r,a._processTokenInForeignContent.call(this,r)},_processToken(r){if(t.currentToken=r,a._processToken.call(this,r),r.type===ky.END_TAG_TOKEN&&(r.tagName===gc.HTML||r.tagName===gc.BODY&&this.openElements.hasInScope(gc.BODY)))for(let i=this.openElements.stackTop;i>=0;i--){let s=this.openElements.items[i];if(this.treeAdapter.getTagName(s)===r.tagName){t._setEndLocation(s,r);break}}},_setDocumentType(r){a._setDocumentType.call(this,r);let n=this.treeAdapter.getChildNodes(this.document),i=n.length;for(let s=0;s<i;s++){let o=n[s];if(this.treeAdapter.isDocumentTypeNode(o)){this.treeAdapter.setNodeSourceCodeLocation(o,r.location);break}}},_attachElementToTree(r){t._setStartLocation(r),t.lastStartTagToken=null,a._attachElementToTree.call(this,r)},_appendElement(r,n){t.lastStartTagToken=r,a._appendElement.call(this,r,n)},_insertElement(r,n){t.lastStartTagToken=r,a._insertElement.call(this,r,n)},_insertTemplate(r){t.lastStartTagToken=r,a._insertTemplate.call(this,r);let n=this.treeAdapter.getTemplateContent(this.openElements.current);this.treeAdapter.setNodeSourceCodeLocation(n,null)},_insertFakeRootElement(){a._insertFakeRootElement.call(this),this.treeAdapter.setNodeSourceCodeLocation(this.openElements.current,null)},_appendCommentNode(r,n){a._appendCommentNode.call(this,r,n);let i=this.treeAdapter.getChildNodes(n),s=i[i.length-1];this.treeAdapter.setNodeSourceCodeLocation(s,r.location)},_findFosterParentingLocation(){return t.lastFosterParentingLocation=a._findFosterParentingLocation.call(this),t.lastFosterParentingLocation},_insertCharacters(r){a._insertCharacters.call(this,r);let n=this._shouldFosterParentOnInsertion(),i=n&&t.lastFosterParentingLocation.parent||this.openElements.currentTmplContent||this.openElements.current,s=this.treeAdapter.getChildNodes(i),o=n&&t.lastFosterParentingLocation.beforeElement?s.indexOf(t.lastFosterParentingLocation.beforeElement)-1:s.length-1,c=s[o],l=this.treeAdapter.getNodeSourceCodeLocation(c);l?(l.endLine=r.location.endLine,l.endCol=r.location.endCol,l.endOffset=r.location.endOffset):this.treeAdapter.setNodeSourceCodeLocation(c,r.location)}}}};vy.exports=fc});var Es=p((Q7,xy)=>{"use strict";var RM=Kt(),Ec=class extends RM{constructor(t,a){super(t),this.posTracker=null,this.onParseError=a.onParseError}_setErrorLocation(t){t.startLine=t.endLine=this.posTracker.line,t.startCol=t.endCol=this.posTracker.col,t.startOffset=t.endOffset=this.posTracker.offset}_reportError(t){let a={code:t,startLine:-1,startCol:-1,startOffset:-1,endLine:-1,endCol:-1,endOffset:-1};this._setErrorLocation(a),this.onParseError(a)}_getOverriddenMethods(t){return{_err(a){t._reportError(a)}}}};xy.exports=Ec});var Ly=p((j7,My)=>{"use strict";var AM=Es(),NM=cc(),OM=Kt(),hc=class extends AM{constructor(t,a){super(t,a),this.posTracker=OM.install(t,NM),this.lastErrOffset=-1}_reportError(t){this.lastErrOffset!==this.posTracker.offset&&(this.lastErrOffset=this.posTracker.offset,super._reportError(t))}};My.exports=hc});var Fy=p((X7,Py)=>{"use strict";var DM=Es(),IM=Ly(),kM=Kt(),Sc=class extends DM{constructor(t,a){super(t,a);let r=kM.install(t.preprocessor,IM,a);this.posTracker=r.posTracker}};Py.exports=Sc});var Gy=p((Z7,By)=>{"use strict";var vM=Es(),wM=Fy(),xM=uc(),Uy=Kt(),Tc=class extends vM{constructor(t,a){super(t,a),this.opts=a,this.ctLoc=null,this.locBeforeToken=!1}_setErrorLocation(t){this.ctLoc&&(t.startLine=this.ctLoc.startLine,t.startCol=this.ctLoc.startCol,t.startOffset=this.ctLoc.startOffset,t.endLine=this.locBeforeToken?this.ctLoc.startLine:this.ctLoc.endLine,t.endCol=this.locBeforeToken?this.ctLoc.startCol:this.ctLoc.endCol,t.endOffset=this.locBeforeToken?this.ctLoc.startOffset:this.ctLoc.endOffset)}_getOverriddenMethods(t,a){return{_bootstrap(r,n){a._bootstrap.call(this,r,n),Uy.install(this.tokenizer,wM,t.opts),Uy.install(this.tokenizer,xM)},_processInputToken(r){t.ctLoc=r.location,a._processInputToken.call(this,r)},_err(r,n){t.locBeforeToken=n&&n.beforeToken,t._reportError(r)}}}};By.exports=Tc});var yc=p(ge=>{"use strict";var{DOCUMENT_MODE:MM}=va();ge.createDocument=function(){return{nodeName:"#document",mode:MM.NO_QUIRKS,childNodes:[]}};ge.createDocumentFragment=function(){return{nodeName:"#document-fragment",childNodes:[]}};ge.createElement=function(e,t,a){return{nodeName:e,tagName:e,attrs:a,namespaceURI:t,childNodes:[],parentNode:null}};ge.createCommentNode=function(e){return{nodeName:"#comment",data:e,parentNode:null}};var zy=function(e){return{nodeName:"#text",value:e,parentNode:null}},Hy=ge.appendChild=function(e,t){e.childNodes.push(t),t.parentNode=e},LM=ge.insertBefore=function(e,t,a){let r=e.childNodes.indexOf(a);e.childNodes.splice(r,0,t),t.parentNode=e};ge.setTemplateContent=function(e,t){e.content=t};ge.getTemplateContent=function(e){return e.content};ge.setDocumentType=function(e,t,a,r){let n=null;for(let i=0;i<e.childNodes.length;i++)if(e.childNodes[i].nodeName==="#documentType"){n=e.childNodes[i];break}n?(n.name=t,n.publicId=a,n.systemId=r):Hy(e,{nodeName:"#documentType",name:t,publicId:a,systemId:r})};ge.setDocumentMode=function(e,t){e.mode=t};ge.getDocumentMode=function(e){return e.mode};ge.detachNode=function(e){if(e.parentNode){let t=e.parentNode.childNodes.indexOf(e);e.parentNode.childNodes.splice(t,1),e.parentNode=null}};ge.insertText=function(e,t){if(e.childNodes.length){let a=e.childNodes[e.childNodes.length-1];if(a.nodeName==="#text"){a.value+=t;return}}Hy(e,zy(t))};ge.insertTextBefore=function(e,t,a){let r=e.childNodes[e.childNodes.indexOf(a)-1];r&&r.nodeName==="#text"?r.value+=t:LM(e,zy(t),a)};ge.adoptAttributes=function(e,t){let a=[];for(let r=0;r<e.attrs.length;r++)a.push(e.attrs[r].name);for(let r=0;r<t.length;r++)a.indexOf(t[r].name)===-1&&e.attrs.push(t[r])};ge.getFirstChild=function(e){return e.childNodes[0]};ge.getChildNodes=function(e){return e.childNodes};ge.getParentNode=function(e){return e.parentNode};ge.getAttrList=function(e){return e.attrs};ge.getTagName=function(e){return e.tagName};ge.getNamespaceURI=function(e){return e.namespaceURI};ge.getTextNodeContent=function(e){return e.value};ge.getCommentNodeContent=function(e){return e.data};ge.getDocumentTypeNodeName=function(e){return e.name};ge.getDocumentTypeNodePublicId=function(e){return e.publicId};ge.getDocumentTypeNodeSystemId=function(e){return e.systemId};ge.isTextNode=function(e){return e.nodeName==="#text"};ge.isCommentNode=function(e){return e.nodeName==="#comment"};ge.isDocumentTypeNode=function(e){return e.nodeName==="#documentType"};ge.isElementNode=function(e){return!!e.tagName};ge.setNodeSourceCodeLocation=function(e,t){e.sourceCodeLocation=t};ge.getNodeSourceCodeLocation=function(e){return e.sourceCodeLocation}});var bc=p((eG,Yy)=>{"use strict";Yy.exports=function(t,a){return a=a||Object.create(null),[t,a].reduce((r,n)=>(Object.keys(n).forEach(i=>{r[i]=n[i]}),r),Object.create(null))}});var Cc=p(hs=>{"use strict";var{DOCUMENT_MODE:zr}=va(),Vy="html",PM="about:legacy-compat",FM="http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd",Ky=["+//silmaril//dtd html pro v0r11 19970101//","-//as//dtd html 3.0 aswedit + extensions//","-//advasoft ltd//dtd html 3.0 aswedit + extensions//","-//ietf//dtd html 2.0 level 1//","-//ietf//dtd html 2.0 level 2//","-//ietf//dtd html 2.0 strict level 1//","-//ietf//dtd html 2.0 strict level 2//","-//ietf//dtd html 2.0 strict//","-//ietf//dtd html 2.0//","-//ietf//dtd html 2.1e//","-//ietf//dtd html 3.0//","-//ietf//dtd html 3.2 final//","-//ietf//dtd html 3.2//","-//ietf//dtd html 3//","-//ietf//dtd html level 0//","-//ietf//dtd html level 1//","-//ietf//dtd html level 2//","-//ietf//dtd html level 3//","-//ietf//dtd html strict level 0//","-//ietf//dtd html strict level 1//","-//ietf//dtd html strict level 2//","-//ietf//dtd html strict level 3//","-//ietf//dtd html strict//","-//ietf//dtd html//","-//metrius//dtd metrius presentational//","-//microsoft//dtd internet explorer 2.0 html strict//","-//microsoft//dtd internet explorer 2.0 html//","-//microsoft//dtd internet explorer 2.0 tables//","-//microsoft//dtd internet explorer 3.0 html strict//","-//microsoft//dtd internet explorer 3.0 html//","-//microsoft//dtd internet explorer 3.0 tables//","-//netscape comm. corp.//dtd html//","-//netscape comm. corp.//dtd strict html//","-//o'reilly and associates//dtd html 2.0//","-//o'reilly and associates//dtd html extended 1.0//","-//o'reilly and associates//dtd html extended relaxed 1.0//","-//sq//dtd html 2.0 hotmetal + extensions//","-//softquad software//dtd hotmetal pro 6.0::19990601::extensions to html 4.0//","-//softquad//dtd hotmetal pro 4.0::19971010::extensions to html 4.0//","-//spyglass//dtd html 2.0 extended//","-//sun microsystems corp.//dtd hotjava html//","-//sun microsystems corp.//dtd hotjava strict html//","-//w3c//dtd html 3 1995-03-24//","-//w3c//dtd html 3.2 draft//","-//w3c//dtd html 3.2 final//","-//w3c//dtd html 3.2//","-//w3c//dtd html 3.2s draft//","-//w3c//dtd html 4.0 frameset//","-//w3c//dtd html 4.0 transitional//","-//w3c//dtd html experimental 19960712//","-//w3c//dtd html experimental 970421//","-//w3c//dtd w3 html//","-//w3o//dtd w3 html 3.0//","-//webtechs//dtd mozilla html 2.0//","-//webtechs//dtd mozilla html//"],UM=Ky.concat(["-//w3c//dtd html 4.01 frameset//","-//w3c//dtd html 4.01 transitional//"]),BM=["-//w3o//dtd w3 html strict 3.0//en//","-/w3c/dtd html 4.0 transitional/en","html"],Wy=["-//w3c//dtd xhtml 1.0 frameset//","-//w3c//dtd xhtml 1.0 transitional//"],GM=Wy.concat(["-//w3c//dtd html 4.01 frameset//","-//w3c//dtd html 4.01 transitional//"]);function qy(e){let t=e.indexOf('"')!==-1?"'":'"';return t+e+t}function $y(e,t){for(let a=0;a<t.length;a++)if(e.indexOf(t[a])===0)return!0;return!1}hs.isConforming=function(e){return e.name===Vy&&e.publicId===null&&(e.systemId===null||e.systemId===PM)};hs.getDocumentMode=function(e){if(e.name!==Vy)return zr.QUIRKS;let t=e.systemId;if(t&&t.toLowerCase()===FM)return zr.QUIRKS;let a=e.publicId;if(a!==null){if(a=a.toLowerCase(),BM.indexOf(a)>-1)return zr.QUIRKS;let r=t===null?UM:Ky;if($y(a,r))return zr.QUIRKS;if(r=t===null?Wy:GM,$y(a,r))return zr.LIMITED_QUIRKS}return zr.NO_QUIRKS};hs.serializeContent=function(e,t,a){let r="!DOCTYPE ";return e&&(r+=e),t?r+=" PUBLIC "+qy(t):a&&(r+=" SYSTEM"),a!==null&&(r+=" "+qy(a)),r}});var jy=p(wa=>{"use strict";var Rc=Hn(),Ac=va(),K=Ac.TAG_NAMES,Ze=Ac.NAMESPACES,Ss=Ac.ATTRS,Qy={TEXT_HTML:"text/html",APPLICATION_XML:"application/xhtml+xml"},zM="definitionurl",HM="definitionURL",YM={attributename:"attributeName",attributetype:"attributeType",basefrequency:"baseFrequency",baseprofile:"baseProfile",calcmode:"calcMode",clippathunits:"clipPathUnits",diffuseconstant:"diffuseConstant",edgemode:"edgeMode",filterunits:"filterUnits",glyphref:"glyphRef",gradienttransform:"gradientTransform",gradientunits:"gradientUnits",kernelmatrix:"kernelMatrix",kernelunitlength:"kernelUnitLength",keypoints:"keyPoints",keysplines:"keySplines",keytimes:"keyTimes",lengthadjust:"lengthAdjust",limitingconeangle:"limitingConeAngle",markerheight:"markerHeight",markerunits:"markerUnits",markerwidth:"markerWidth",maskcontentunits:"maskContentUnits",maskunits:"maskUnits",numoctaves:"numOctaves",pathlength:"pathLength",patterncontentunits:"patternContentUnits",patterntransform:"patternTransform",patternunits:"patternUnits",pointsatx:"pointsAtX",pointsaty:"pointsAtY",pointsatz:"pointsAtZ",preservealpha:"preserveAlpha",preserveaspectratio:"preserveAspectRatio",primitiveunits:"primitiveUnits",refx:"refX",refy:"refY",repeatcount:"repeatCount",repeatdur:"repeatDur",requiredextensions:"requiredExtensions",requiredfeatures:"requiredFeatures",specularconstant:"specularConstant",specularexponent:"specularExponent",spreadmethod:"spreadMethod",startoffset:"startOffset",stddeviation:"stdDeviation",stitchtiles:"stitchTiles",surfacescale:"surfaceScale",systemlanguage:"systemLanguage",tablevalues:"tableValues",targetx:"targetX",targety:"targetY",textlength:"textLength",viewbox:"viewBox",viewtarget:"viewTarget",xchannelselector:"xChannelSelector",ychannelselector:"yChannelSelector",zoomandpan:"zoomAndPan"},qM={"xlink:actuate":{prefix:"xlink",name:"actuate",namespace:Ze.XLINK},"xlink:arcrole":{prefix:"xlink",name:"arcrole",namespace:Ze.XLINK},"xlink:href":{prefix:"xlink",name:"href",namespace:Ze.XLINK},"xlink:role":{prefix:"xlink",name:"role",namespace:Ze.XLINK},"xlink:show":{prefix:"xlink",name:"show",namespace:Ze.XLINK},"xlink:title":{prefix:"xlink",name:"title",namespace:Ze.XLINK},"xlink:type":{prefix:"xlink",name:"type",namespace:Ze.XLINK},"xml:base":{prefix:"xml",name:"base",namespace:Ze.XML},"xml:lang":{prefix:"xml",name:"lang",namespace:Ze.XML},"xml:space":{prefix:"xml",name:"space",namespace:Ze.XML},xmlns:{prefix:"",name:"xmlns",namespace:Ze.XMLNS},"xmlns:xlink":{prefix:"xmlns",name:"xlink",namespace:Ze.XMLNS}},$M=wa.SVG_TAG_NAMES_ADJUSTMENT_MAP={altglyph:"altGlyph",altglyphdef:"altGlyphDef",altglyphitem:"altGlyphItem",animatecolor:"animateColor",animatemotion:"animateMotion",animatetransform:"animateTransform",clippath:"clipPath",feblend:"feBlend",fecolormatrix:"feColorMatrix",fecomponenttransfer:"feComponentTransfer",fecomposite:"feComposite",feconvolvematrix:"feConvolveMatrix",fediffuselighting:"feDiffuseLighting",fedisplacementmap:"feDisplacementMap",fedistantlight:"feDistantLight",feflood:"feFlood",fefunca:"feFuncA",fefuncb:"feFuncB",fefuncg:"feFuncG",fefuncr:"feFuncR",fegaussianblur:"feGaussianBlur",feimage:"feImage",femerge:"feMerge",femergenode:"feMergeNode",femorphology:"feMorphology",feoffset:"feOffset",fepointlight:"fePointLight",fespecularlighting:"feSpecularLighting",fespotlight:"feSpotLight",fetile:"feTile",feturbulence:"feTurbulence",foreignobject:"foreignObject",glyphref:"glyphRef",lineargradient:"linearGradient",radialgradient:"radialGradient",textpath:"textPath"},VM={[K.B]:!0,[K.BIG]:!0,[K.BLOCKQUOTE]:!0,[K.BODY]:!0,[K.BR]:!0,[K.CENTER]:!0,[K.CODE]:!0,[K.DD]:!0,[K.DIV]:!0,[K.DL]:!0,[K.DT]:!0,[K.EM]:!0,[K.EMBED]:!0,[K.H1]:!0,[K.H2]:!0,[K.H3]:!0,[K.H4]:!0,[K.H5]:!0,[K.H6]:!0,[K.HEAD]:!0,[K.HR]:!0,[K.I]:!0,[K.IMG]:!0,[K.LI]:!0,[K.LISTING]:!0,[K.MENU]:!0,[K.META]:!0,[K.NOBR]:!0,[K.OL]:!0,[K.P]:!0,[K.PRE]:!0,[K.RUBY]:!0,[K.S]:!0,[K.SMALL]:!0,[K.SPAN]:!0,[K.STRONG]:!0,[K.STRIKE]:!0,[K.SUB]:!0,[K.SUP]:!0,[K.TABLE]:!0,[K.TT]:!0,[K.U]:!0,[K.UL]:!0,[K.VAR]:!0};wa.causesExit=function(e){let t=e.tagName;return t===K.FONT&&(Rc.getTokenAttr(e,Ss.COLOR)!==null||Rc.getTokenAttr(e,Ss.SIZE)!==null||Rc.getTokenAttr(e,Ss.FACE)!==null)?!0:VM[t]};wa.adjustTokenMathMLAttrs=function(e){for(let t=0;t<e.attrs.length;t++)if(e.attrs[t].name===zM){e.attrs[t].name=HM;break}};wa.adjustTokenSVGAttrs=function(e){for(let t=0;t<e.attrs.length;t++){let a=YM[e.attrs[t].name];a&&(e.attrs[t].name=a)}};wa.adjustTokenXMLAttrs=function(e){for(let t=0;t<e.attrs.length;t++){let a=qM[e.attrs[t].name];a&&(e.attrs[t].prefix=a.prefix,e.attrs[t].name=a.name,e.attrs[t].namespace=a.namespace)}};wa.adjustTokenSVGTagName=function(e){let t=$M[e.tagName];t&&(e.tagName=t)};function KM(e,t){return t===Ze.MATHML&&(e===K.MI||e===K.MO||e===K.MN||e===K.MS||e===K.MTEXT)}function WM(e,t,a){if(t===Ze.MATHML&&e===K.ANNOTATION_XML){for(let r=0;r<a.length;r++)if(a[r].name===Ss.ENCODING){let n=a[r].value.toLowerCase();return n===Qy.TEXT_HTML||n===Qy.APPLICATION_XML}}return t===Ze.SVG&&(e===K.FOREIGN_OBJECT||e===K.DESC||e===K.TITLE)}wa.isIntegrationPoint=function(e,t,a,r){return!!((!r||r===Ze.HTML)&&WM(e,t,a)||(!r||r===Ze.MATHML)&&KM(e,t))}});var yb=p((rG,Tb)=>{"use strict";var S=Hn(),QM=yy(),Xy=Cy(),jM=wy(),XM=Gy(),Zy=Kt(),ZM=yc(),JM=bc(),Jy=Cc(),Wt=jy(),Je=as(),e9=ts(),er=va(),_=er.TAG_NAMES,B=er.NAMESPACES,cb=er.ATTRS,t9={scriptingEnabled:!0,sourceCodeLocationInfo:!1,onParseError:null,treeAdapter:ZM},_b="hidden",a9=8,r9=3,db="INITIAL_MODE",Oc="BEFORE_HTML_MODE",Os="BEFORE_HEAD_MODE",qr="IN_HEAD_MODE",ub="IN_HEAD_NO_SCRIPT_MODE",Ds="AFTER_HEAD_MODE",Qt="IN_BODY_MODE",Cs="TEXT_MODE",nt="IN_TABLE_MODE",pb="IN_TABLE_TEXT_MODE",Is="IN_CAPTION_MODE",Zn="IN_COLUMN_GROUP_MODE",kt="IN_TABLE_BODY_MODE",pa="IN_ROW_MODE",ks="IN_CELL_MODE",Dc="IN_SELECT_MODE",Ic="IN_SELECT_IN_TABLE_MODE",Rs="IN_TEMPLATE_MODE",kc="AFTER_BODY_MODE",vs="IN_FRAMESET_MODE",mb="AFTER_FRAMESET_MODE",gb="AFTER_AFTER_BODY_MODE",fb="AFTER_AFTER_FRAMESET_MODE",n9={[_.TR]:pa,[_.TBODY]:kt,[_.THEAD]:kt,[_.TFOOT]:kt,[_.CAPTION]:Is,[_.COLGROUP]:Zn,[_.TABLE]:nt,[_.BODY]:Qt,[_.FRAMESET]:vs},i9={[_.CAPTION]:nt,[_.COLGROUP]:nt,[_.TBODY]:nt,[_.TFOOT]:nt,[_.THEAD]:nt,[_.COL]:Zn,[_.TR]:kt,[_.TD]:pa,[_.TH]:pa},eb={[db]:{[S.CHARACTER_TOKEN]:$n,[S.NULL_CHARACTER_TOKEN]:$n,[S.WHITESPACE_CHARACTER_TOKEN]:ue,[S.COMMENT_TOKEN]:$e,[S.DOCTYPE_TOKEN]:p9,[S.START_TAG_TOKEN]:$n,[S.END_TAG_TOKEN]:$n,[S.EOF_TOKEN]:$n},[Oc]:{[S.CHARACTER_TOKEN]:Kn,[S.NULL_CHARACTER_TOKEN]:Kn,[S.WHITESPACE_CHARACTER_TOKEN]:ue,[S.COMMENT_TOKEN]:$e,[S.DOCTYPE_TOKEN]:ue,[S.START_TAG_TOKEN]:m9,[S.END_TAG_TOKEN]:g9,[S.EOF_TOKEN]:Kn},[Os]:{[S.CHARACTER_TOKEN]:Wn,[S.NULL_CHARACTER_TOKEN]:Wn,[S.WHITESPACE_CHARACTER_TOKEN]:ue,[S.COMMENT_TOKEN]:$e,[S.DOCTYPE_TOKEN]:Ts,[S.START_TAG_TOKEN]:f9,[S.END_TAG_TOKEN]:E9,[S.EOF_TOKEN]:Wn},[qr]:{[S.CHARACTER_TOKEN]:Qn,[S.NULL_CHARACTER_TOKEN]:Qn,[S.WHITESPACE_CHARACTER_TOKEN]:gt,[S.COMMENT_TOKEN]:$e,[S.DOCTYPE_TOKEN]:Ts,[S.START_TAG_TOKEN]:Ke,[S.END_TAG_TOKEN]:tr,[S.EOF_TOKEN]:Qn},[ub]:{[S.CHARACTER_TOKEN]:jn,[S.NULL_CHARACTER_TOKEN]:jn,[S.WHITESPACE_CHARACTER_TOKEN]:gt,[S.COMMENT_TOKEN]:$e,[S.DOCTYPE_TOKEN]:Ts,[S.START_TAG_TOKEN]:h9,[S.END_TAG_TOKEN]:S9,[S.EOF_TOKEN]:jn},[Ds]:{[S.CHARACTER_TOKEN]:Xn,[S.NULL_CHARACTER_TOKEN]:Xn,[S.WHITESPACE_CHARACTER_TOKEN]:gt,[S.COMMENT_TOKEN]:$e,[S.DOCTYPE_TOKEN]:Ts,[S.START_TAG_TOKEN]:T9,[S.END_TAG_TOKEN]:y9,[S.EOF_TOKEN]:Xn},[Qt]:{[S.CHARACTER_TOKEN]:ys,[S.NULL_CHARACTER_TOKEN]:ue,[S.WHITESPACE_CHARACTER_TOKEN]:Ja,[S.COMMENT_TOKEN]:$e,[S.DOCTYPE_TOKEN]:ue,[S.START_TAG_TOKEN]:ft,[S.END_TAG_TOKEN]:vc,[S.EOF_TOKEN]:da},[Cs]:{[S.CHARACTER_TOKEN]:gt,[S.NULL_CHARACTER_TOKEN]:gt,[S.WHITESPACE_CHARACTER_TOKEN]:gt,[S.COMMENT_TOKEN]:ue,[S.DOCTYPE_TOKEN]:ue,[S.START_TAG_TOKEN]:ue,[S.END_TAG_TOKEN]:Z9,[S.EOF_TOKEN]:J9},[nt]:{[S.CHARACTER_TOKEN]:ua,[S.NULL_CHARACTER_TOKEN]:ua,[S.WHITESPACE_CHARACTER_TOKEN]:ua,[S.COMMENT_TOKEN]:$e,[S.DOCTYPE_TOKEN]:ue,[S.START_TAG_TOKEN]:wc,[S.END_TAG_TOKEN]:xc,[S.EOF_TOKEN]:da},[pb]:{[S.CHARACTER_TOKEN]:cL,[S.NULL_CHARACTER_TOKEN]:ue,[S.WHITESPACE_CHARACTER_TOKEN]:lL,[S.COMMENT_TOKEN]:Vn,[S.DOCTYPE_TOKEN]:Vn,[S.START_TAG_TOKEN]:Vn,[S.END_TAG_TOKEN]:Vn,[S.EOF_TOKEN]:Vn},[Is]:{[S.CHARACTER_TOKEN]:ys,[S.NULL_CHARACTER_TOKEN]:ue,[S.WHITESPACE_CHARACTER_TOKEN]:Ja,[S.COMMENT_TOKEN]:$e,[S.DOCTYPE_TOKEN]:ue,[S.START_TAG_TOKEN]:_L,[S.END_TAG_TOKEN]:dL,[S.EOF_TOKEN]:da},[Zn]:{[S.CHARACTER_TOKEN]:As,[S.NULL_CHARACTER_TOKEN]:As,[S.WHITESPACE_CHARACTER_TOKEN]:gt,[S.COMMENT_TOKEN]:$e,[S.DOCTYPE_TOKEN]:ue,[S.START_TAG_TOKEN]:uL,[S.END_TAG_TOKEN]:pL,[S.EOF_TOKEN]:da},[kt]:{[S.CHARACTER_TOKEN]:ua,[S.NULL_CHARACTER_TOKEN]:ua,[S.WHITESPACE_CHARACTER_TOKEN]:ua,[S.COMMENT_TOKEN]:$e,[S.DOCTYPE_TOKEN]:ue,[S.START_TAG_TOKEN]:mL,[S.END_TAG_TOKEN]:gL,[S.EOF_TOKEN]:da},[pa]:{[S.CHARACTER_TOKEN]:ua,[S.NULL_CHARACTER_TOKEN]:ua,[S.WHITESPACE_CHARACTER_TOKEN]:ua,[S.COMMENT_TOKEN]:$e,[S.DOCTYPE_TOKEN]:ue,[S.START_TAG_TOKEN]:fL,[S.END_TAG_TOKEN]:EL,[S.EOF_TOKEN]:da},[ks]:{[S.CHARACTER_TOKEN]:ys,[S.NULL_CHARACTER_TOKEN]:ue,[S.WHITESPACE_CHARACTER_TOKEN]:Ja,[S.COMMENT_TOKEN]:$e,[S.DOCTYPE_TOKEN]:ue,[S.START_TAG_TOKEN]:hL,[S.END_TAG_TOKEN]:SL,[S.EOF_TOKEN]:da},[Dc]:{[S.CHARACTER_TOKEN]:gt,[S.NULL_CHARACTER_TOKEN]:ue,[S.WHITESPACE_CHARACTER_TOKEN]:gt,[S.COMMENT_TOKEN]:$e,[S.DOCTYPE_TOKEN]:ue,[S.START_TAG_TOKEN]:Eb,[S.END_TAG_TOKEN]:hb,[S.EOF_TOKEN]:da},[Ic]:{[S.CHARACTER_TOKEN]:gt,[S.NULL_CHARACTER_TOKEN]:ue,[S.WHITESPACE_CHARACTER_TOKEN]:gt,[S.COMMENT_TOKEN]:$e,[S.DOCTYPE_TOKEN]:ue,[S.START_TAG_TOKEN]:TL,[S.END_TAG_TOKEN]:yL,[S.EOF_TOKEN]:da},[Rs]:{[S.CHARACTER_TOKEN]:ys,[S.NULL_CHARACTER_TOKEN]:ue,[S.WHITESPACE_CHARACTER_TOKEN]:Ja,[S.COMMENT_TOKEN]:$e,[S.DOCTYPE_TOKEN]:ue,[S.START_TAG_TOKEN]:bL,[S.END_TAG_TOKEN]:CL,[S.EOF_TOKEN]:Sb},[kc]:{[S.CHARACTER_TOKEN]:Ns,[S.NULL_CHARACTER_TOKEN]:Ns,[S.WHITESPACE_CHARACTER_TOKEN]:Ja,[S.COMMENT_TOKEN]:u9,[S.DOCTYPE_TOKEN]:ue,[S.START_TAG_TOKEN]:RL,[S.END_TAG_TOKEN]:AL,[S.EOF_TOKEN]:qn},[vs]:{[S.CHARACTER_TOKEN]:ue,[S.NULL_CHARACTER_TOKEN]:ue,[S.WHITESPACE_CHARACTER_TOKEN]:gt,[S.COMMENT_TOKEN]:$e,[S.DOCTYPE_TOKEN]:ue,[S.START_TAG_TOKEN]:NL,[S.END_TAG_TOKEN]:OL,[S.EOF_TOKEN]:qn},[mb]:{[S.CHARACTER_TOKEN]:ue,[S.NULL_CHARACTER_TOKEN]:ue,[S.WHITESPACE_CHARACTER_TOKEN]:gt,[S.COMMENT_TOKEN]:$e,[S.DOCTYPE_TOKEN]:ue,[S.START_TAG_TOKEN]:DL,[S.END_TAG_TOKEN]:IL,[S.EOF_TOKEN]:qn},[gb]:{[S.CHARACTER_TOKEN]:bs,[S.NULL_CHARACTER_TOKEN]:bs,[S.WHITESPACE_CHARACTER_TOKEN]:Ja,[S.COMMENT_TOKEN]:tb,[S.DOCTYPE_TOKEN]:ue,[S.START_TAG_TOKEN]:kL,[S.END_TAG_TOKEN]:bs,[S.EOF_TOKEN]:qn},[fb]:{[S.CHARACTER_TOKEN]:ue,[S.NULL_CHARACTER_TOKEN]:ue,[S.WHITESPACE_CHARACTER_TOKEN]:Ja,[S.COMMENT_TOKEN]:tb,[S.DOCTYPE_TOKEN]:ue,[S.START_TAG_TOKEN]:vL,[S.END_TAG_TOKEN]:ue,[S.EOF_TOKEN]:qn}},Nc=class{constructor(t){this.options=JM(t9,t),this.treeAdapter=this.options.treeAdapter,this.pendingScript=null,this.options.sourceCodeLocationInfo&&Zy.install(this,jM),this.options.onParseError&&Zy.install(this,XM,{onParseError:this.options.onParseError})}parse(t){let a=this.treeAdapter.createDocument();return this._bootstrap(a,null),this.tokenizer.write(t,!0),this._runParsingLoop(null),a}parseFragment(t,a){a||(a=this.treeAdapter.createElement(_.TEMPLATE,B.HTML,[]));let r=this.treeAdapter.createElement("documentmock",B.HTML,[]);this._bootstrap(r,a),this.treeAdapter.getTagName(a)===_.TEMPLATE&&this._pushTmplInsertionMode(Rs),this._initTokenizerForFragmentParsing(),this._insertFakeRootElement(),this._resetInsertionMode(),this._findFormInFragmentContext(),this.tokenizer.write(t,!0),this._runParsingLoop(null);let n=this.treeAdapter.getFirstChild(r),i=this.treeAdapter.createDocumentFragment();return this._adoptNodes(n,i),i}_bootstrap(t,a){this.tokenizer=new S(this.options),this.stopped=!1,this.insertionMode=db,this.originalInsertionMode="",this.document=t,this.fragmentContext=a,this.headElement=null,this.formElement=null,this.openElements=new QM(this.document,this.treeAdapter),this.activeFormattingElements=new Xy(this.treeAdapter),this.tmplInsertionModeStack=[],this.tmplInsertionModeStackTop=-1,this.currentTmplInsertionMode=null,this.pendingCharacterTokens=[],this.hasNonWhitespacePendingCharacterToken=!1,this.framesetOk=!0,this.skipNextNewLine=!1,this.fosterParentingEnabled=!1}_err(){}_runParsingLoop(t){for(;!this.stopped;){this._setupTokenizerCDATAMode();let a=this.tokenizer.getNextToken();if(a.type===S.HIBERNATION_TOKEN)break;if(this.skipNextNewLine&&(this.skipNextNewLine=!1,a.type===S.WHITESPACE_CHARACTER_TOKEN&&a.chars[0]===`
|
|
113
113
|
`)){if(a.chars.length===1)continue;a.chars=a.chars.substr(1)}if(this._processInputToken(a),t&&this.pendingScript)break}}runParsingLoopForCurrentChunk(t,a){if(this._runParsingLoop(a),a&&this.pendingScript){let r=this.pendingScript;this.pendingScript=null,a(r);return}t&&t()}_setupTokenizerCDATAMode(){let t=this._getAdjustedCurrentElement();this.tokenizer.allowCDATA=t&&t!==this.document&&this.treeAdapter.getNamespaceURI(t)!==B.HTML&&!this._isIntegrationPoint(t)}_switchToTextParsing(t,a){this._insertElement(t,B.HTML),this.tokenizer.state=a,this.originalInsertionMode=this.insertionMode,this.insertionMode=Cs}switchToPlaintextParsing(){this.insertionMode=Cs,this.originalInsertionMode=Qt,this.tokenizer.state=S.MODE.PLAINTEXT}_getAdjustedCurrentElement(){return this.openElements.stackTop===0&&this.fragmentContext?this.fragmentContext:this.openElements.current}_findFormInFragmentContext(){let t=this.fragmentContext;do{if(this.treeAdapter.getTagName(t)===_.FORM){this.formElement=t;break}t=this.treeAdapter.getParentNode(t)}while(t)}_initTokenizerForFragmentParsing(){if(this.treeAdapter.getNamespaceURI(this.fragmentContext)===B.HTML){let t=this.treeAdapter.getTagName(this.fragmentContext);t===_.TITLE||t===_.TEXTAREA?this.tokenizer.state=S.MODE.RCDATA:t===_.STYLE||t===_.XMP||t===_.IFRAME||t===_.NOEMBED||t===_.NOFRAMES||t===_.NOSCRIPT?this.tokenizer.state=S.MODE.RAWTEXT:t===_.SCRIPT?this.tokenizer.state=S.MODE.SCRIPT_DATA:t===_.PLAINTEXT&&(this.tokenizer.state=S.MODE.PLAINTEXT)}}_setDocumentType(t){let a=t.name||"",r=t.publicId||"",n=t.systemId||"";this.treeAdapter.setDocumentType(this.document,a,r,n)}_attachElementToTree(t){if(this._shouldFosterParentOnInsertion())this._fosterParentElement(t);else{let a=this.openElements.currentTmplContent||this.openElements.current;this.treeAdapter.appendChild(a,t)}}_appendElement(t,a){let r=this.treeAdapter.createElement(t.tagName,a,t.attrs);this._attachElementToTree(r)}_insertElement(t,a){let r=this.treeAdapter.createElement(t.tagName,a,t.attrs);this._attachElementToTree(r),this.openElements.push(r)}_insertFakeElement(t){let a=this.treeAdapter.createElement(t,B.HTML,[]);this._attachElementToTree(a),this.openElements.push(a)}_insertTemplate(t){let a=this.treeAdapter.createElement(t.tagName,B.HTML,t.attrs),r=this.treeAdapter.createDocumentFragment();this.treeAdapter.setTemplateContent(a,r),this._attachElementToTree(a),this.openElements.push(a)}_insertFakeRootElement(){let t=this.treeAdapter.createElement(_.HTML,B.HTML,[]);this.treeAdapter.appendChild(this.openElements.current,t),this.openElements.push(t)}_appendCommentNode(t,a){let r=this.treeAdapter.createCommentNode(t.data);this.treeAdapter.appendChild(a,r)}_insertCharacters(t){if(this._shouldFosterParentOnInsertion())this._fosterParentText(t.chars);else{let a=this.openElements.currentTmplContent||this.openElements.current;this.treeAdapter.insertText(a,t.chars)}}_adoptNodes(t,a){for(let r=this.treeAdapter.getFirstChild(t);r;r=this.treeAdapter.getFirstChild(t))this.treeAdapter.detachNode(r),this.treeAdapter.appendChild(a,r)}_shouldProcessTokenInForeignContent(t){let a=this._getAdjustedCurrentElement();if(!a||a===this.document)return!1;let r=this.treeAdapter.getNamespaceURI(a);if(r===B.HTML||this.treeAdapter.getTagName(a)===_.ANNOTATION_XML&&r===B.MATHML&&t.type===S.START_TAG_TOKEN&&t.tagName===_.SVG)return!1;let n=t.type===S.CHARACTER_TOKEN||t.type===S.NULL_CHARACTER_TOKEN||t.type===S.WHITESPACE_CHARACTER_TOKEN;return(t.type===S.START_TAG_TOKEN&&t.tagName!==_.MGLYPH&&t.tagName!==_.MALIGNMARK||n)&&this._isIntegrationPoint(a,B.MATHML)||(t.type===S.START_TAG_TOKEN||n)&&this._isIntegrationPoint(a,B.HTML)?!1:t.type!==S.EOF_TOKEN}_processToken(t){eb[this.insertionMode][t.type](this,t)}_processTokenInBodyMode(t){eb[Qt][t.type](this,t)}_processTokenInForeignContent(t){t.type===S.CHARACTER_TOKEN?xL(this,t):t.type===S.NULL_CHARACTER_TOKEN?wL(this,t):t.type===S.WHITESPACE_CHARACTER_TOKEN?gt(this,t):t.type===S.COMMENT_TOKEN?$e(this,t):t.type===S.START_TAG_TOKEN?ML(this,t):t.type===S.END_TAG_TOKEN&&LL(this,t)}_processInputToken(t){this._shouldProcessTokenInForeignContent(t)?this._processTokenInForeignContent(t):this._processToken(t),t.type===S.START_TAG_TOKEN&&t.selfClosing&&!t.ackSelfClosing&&this._err(Je.nonVoidHtmlElementStartTagWithTrailingSolidus)}_isIntegrationPoint(t,a){let r=this.treeAdapter.getTagName(t),n=this.treeAdapter.getNamespaceURI(t),i=this.treeAdapter.getAttrList(t);return Wt.isIntegrationPoint(r,n,i,a)}_reconstructActiveFormattingElements(){let t=this.activeFormattingElements.length;if(t){let a=t,r=null;do if(a--,r=this.activeFormattingElements.entries[a],r.type===Xy.MARKER_ENTRY||this.openElements.contains(r.element)){a++;break}while(a>0);for(let n=a;n<t;n++)r=this.activeFormattingElements.entries[n],this._insertElement(r.token,this.treeAdapter.getNamespaceURI(r.element)),r.element=this.openElements.current}}_closeTableCell(){this.openElements.generateImpliedEndTags(),this.openElements.popUntilTableCellPopped(),this.activeFormattingElements.clearToLastMarker(),this.insertionMode=pa}_closePElement(){this.openElements.generateImpliedEndTagsWithExclusion(_.P),this.openElements.popUntilTagNamePopped(_.P)}_resetInsertionMode(){for(let t=this.openElements.stackTop,a=!1;t>=0;t--){let r=this.openElements.items[t];t===0&&(a=!0,this.fragmentContext&&(r=this.fragmentContext));let n=this.treeAdapter.getTagName(r),i=n9[n];if(i){this.insertionMode=i;break}else if(!a&&(n===_.TD||n===_.TH)){this.insertionMode=ks;break}else if(!a&&n===_.HEAD){this.insertionMode=qr;break}else if(n===_.SELECT){this._resetInsertionModeForSelect(t);break}else if(n===_.TEMPLATE){this.insertionMode=this.currentTmplInsertionMode;break}else if(n===_.HTML){this.insertionMode=this.headElement?Ds:Os;break}else if(a){this.insertionMode=Qt;break}}}_resetInsertionModeForSelect(t){if(t>0)for(let a=t-1;a>0;a--){let r=this.openElements.items[a],n=this.treeAdapter.getTagName(r);if(n===_.TEMPLATE)break;if(n===_.TABLE){this.insertionMode=Ic;return}}this.insertionMode=Dc}_pushTmplInsertionMode(t){this.tmplInsertionModeStack.push(t),this.tmplInsertionModeStackTop++,this.currentTmplInsertionMode=t}_popTmplInsertionMode(){this.tmplInsertionModeStack.pop(),this.tmplInsertionModeStackTop--,this.currentTmplInsertionMode=this.tmplInsertionModeStack[this.tmplInsertionModeStackTop]}_isElementCausesFosterParenting(t){let a=this.treeAdapter.getTagName(t);return a===_.TABLE||a===_.TBODY||a===_.TFOOT||a===_.THEAD||a===_.TR}_shouldFosterParentOnInsertion(){return this.fosterParentingEnabled&&this._isElementCausesFosterParenting(this.openElements.current)}_findFosterParentingLocation(){let t={parent:null,beforeElement:null};for(let a=this.openElements.stackTop;a>=0;a--){let r=this.openElements.items[a],n=this.treeAdapter.getTagName(r),i=this.treeAdapter.getNamespaceURI(r);if(n===_.TEMPLATE&&i===B.HTML){t.parent=this.treeAdapter.getTemplateContent(r);break}else if(n===_.TABLE){t.parent=this.treeAdapter.getParentNode(r),t.parent?t.beforeElement=r:t.parent=this.openElements.items[a-1];break}}return t.parent||(t.parent=this.openElements.items[0]),t}_fosterParentElement(t){let a=this._findFosterParentingLocation();a.beforeElement?this.treeAdapter.insertBefore(a.parent,t,a.beforeElement):this.treeAdapter.appendChild(a.parent,t)}_fosterParentText(t){let a=this._findFosterParentingLocation();a.beforeElement?this.treeAdapter.insertTextBefore(a.parent,t,a.beforeElement):this.treeAdapter.insertText(a.parent,t)}_isSpecialElement(t){let a=this.treeAdapter.getTagName(t),r=this.treeAdapter.getNamespaceURI(t);return er.SPECIAL_ELEMENTS[r][a]}};Tb.exports=Nc;function s9(e,t){let a=e.activeFormattingElements.getElementEntryInScopeWithTagName(t.tagName);return a?e.openElements.contains(a.element)?e.openElements.hasInScope(t.tagName)||(a=null):(e.activeFormattingElements.removeEntry(a),a=null):zt(e,t),a}function o9(e,t){let a=null;for(let r=e.openElements.stackTop;r>=0;r--){let n=e.openElements.items[r];if(n===t.element)break;e._isSpecialElement(n)&&(a=n)}return a||(e.openElements.popUntilElementPopped(t.element),e.activeFormattingElements.removeEntry(t)),a}function l9(e,t,a){let r=t,n=e.openElements.getCommonAncestor(t);for(let i=0,s=n;s!==a;i++,s=n){n=e.openElements.getCommonAncestor(s);let o=e.activeFormattingElements.getElementEntry(s),c=o&&i>=r9;!o||c?(c&&e.activeFormattingElements.removeEntry(o),e.openElements.remove(s)):(s=c9(e,o),r===t&&(e.activeFormattingElements.bookmark=o),e.treeAdapter.detachNode(r),e.treeAdapter.appendChild(s,r),r=s)}return r}function c9(e,t){let a=e.treeAdapter.getNamespaceURI(t.element),r=e.treeAdapter.createElement(t.token.tagName,a,t.token.attrs);return e.openElements.replace(t.element,r),t.element=r,r}function _9(e,t,a){if(e._isElementCausesFosterParenting(t))e._fosterParentElement(a);else{let r=e.treeAdapter.getTagName(t),n=e.treeAdapter.getNamespaceURI(t);r===_.TEMPLATE&&n===B.HTML&&(t=e.treeAdapter.getTemplateContent(t)),e.treeAdapter.appendChild(t,a)}}function d9(e,t,a){let r=e.treeAdapter.getNamespaceURI(a.element),n=a.token,i=e.treeAdapter.createElement(n.tagName,r,n.attrs);e._adoptNodes(t,i),e.treeAdapter.appendChild(t,i),e.activeFormattingElements.insertElementAfterBookmark(i,a.token),e.activeFormattingElements.removeEntry(a),e.openElements.remove(a.element),e.openElements.insertAfter(t,i)}function Ma(e,t){let a;for(let r=0;r<a9&&(a=s9(e,t,a),!!a);r++){let n=o9(e,a);if(!n)break;e.activeFormattingElements.bookmark=a;let i=l9(e,n,a.element),s=e.openElements.getCommonAncestor(a.element);e.treeAdapter.detachNode(i),_9(e,s,i),d9(e,n,a)}}function ue(){}function Ts(e){e._err(Je.misplacedDoctype)}function $e(e,t){e._appendCommentNode(t,e.openElements.currentTmplContent||e.openElements.current)}function u9(e,t){e._appendCommentNode(t,e.openElements.items[0])}function tb(e,t){e._appendCommentNode(t,e.document)}function gt(e,t){e._insertCharacters(t)}function qn(e){e.stopped=!0}function p9(e,t){e._setDocumentType(t);let a=t.forceQuirks?er.DOCUMENT_MODE.QUIRKS:Jy.getDocumentMode(t);Jy.isConforming(t)||e._err(Je.nonConformingDoctype),e.treeAdapter.setDocumentMode(e.document,a),e.insertionMode=Oc}function $n(e,t){e._err(Je.missingDoctype,{beforeToken:!0}),e.treeAdapter.setDocumentMode(e.document,er.DOCUMENT_MODE.QUIRKS),e.insertionMode=Oc,e._processToken(t)}function m9(e,t){t.tagName===_.HTML?(e._insertElement(t,B.HTML),e.insertionMode=Os):Kn(e,t)}function g9(e,t){let a=t.tagName;(a===_.HTML||a===_.HEAD||a===_.BODY||a===_.BR)&&Kn(e,t)}function Kn(e,t){e._insertFakeRootElement(),e.insertionMode=Os,e._processToken(t)}function f9(e,t){let a=t.tagName;a===_.HTML?ft(e,t):a===_.HEAD?(e._insertElement(t,B.HTML),e.headElement=e.openElements.current,e.insertionMode=qr):Wn(e,t)}function E9(e,t){let a=t.tagName;a===_.HEAD||a===_.BODY||a===_.HTML||a===_.BR?Wn(e,t):e._err(Je.endTagWithoutMatchingOpenElement)}function Wn(e,t){e._insertFakeElement(_.HEAD),e.headElement=e.openElements.current,e.insertionMode=qr,e._processToken(t)}function Ke(e,t){let a=t.tagName;a===_.HTML?ft(e,t):a===_.BASE||a===_.BASEFONT||a===_.BGSOUND||a===_.LINK||a===_.META?(e._appendElement(t,B.HTML),t.ackSelfClosing=!0):a===_.TITLE?e._switchToTextParsing(t,S.MODE.RCDATA):a===_.NOSCRIPT?e.options.scriptingEnabled?e._switchToTextParsing(t,S.MODE.RAWTEXT):(e._insertElement(t,B.HTML),e.insertionMode=ub):a===_.NOFRAMES||a===_.STYLE?e._switchToTextParsing(t,S.MODE.RAWTEXT):a===_.SCRIPT?e._switchToTextParsing(t,S.MODE.SCRIPT_DATA):a===_.TEMPLATE?(e._insertTemplate(t,B.HTML),e.activeFormattingElements.insertMarker(),e.framesetOk=!1,e.insertionMode=Rs,e._pushTmplInsertionMode(Rs)):a===_.HEAD?e._err(Je.misplacedStartTagForHeadElement):Qn(e,t)}function tr(e,t){let a=t.tagName;a===_.HEAD?(e.openElements.pop(),e.insertionMode=Ds):a===_.BODY||a===_.BR||a===_.HTML?Qn(e,t):a===_.TEMPLATE&&e.openElements.tmplCount>0?(e.openElements.generateImpliedEndTagsThoroughly(),e.openElements.currentTagName!==_.TEMPLATE&&e._err(Je.closingOfElementWithOpenChildElements),e.openElements.popUntilTagNamePopped(_.TEMPLATE),e.activeFormattingElements.clearToLastMarker(),e._popTmplInsertionMode(),e._resetInsertionMode()):e._err(Je.endTagWithoutMatchingOpenElement)}function Qn(e,t){e.openElements.pop(),e.insertionMode=Ds,e._processToken(t)}function h9(e,t){let a=t.tagName;a===_.HTML?ft(e,t):a===_.BASEFONT||a===_.BGSOUND||a===_.HEAD||a===_.LINK||a===_.META||a===_.NOFRAMES||a===_.STYLE?Ke(e,t):a===_.NOSCRIPT?e._err(Je.nestedNoscriptInHead):jn(e,t)}function S9(e,t){let a=t.tagName;a===_.NOSCRIPT?(e.openElements.pop(),e.insertionMode=qr):a===_.BR?jn(e,t):e._err(Je.endTagWithoutMatchingOpenElement)}function jn(e,t){let a=t.type===S.EOF_TOKEN?Je.openElementsLeftAfterEof:Je.disallowedContentInNoscriptInHead;e._err(a),e.openElements.pop(),e.insertionMode=qr,e._processToken(t)}function T9(e,t){let a=t.tagName;a===_.HTML?ft(e,t):a===_.BODY?(e._insertElement(t,B.HTML),e.framesetOk=!1,e.insertionMode=Qt):a===_.FRAMESET?(e._insertElement(t,B.HTML),e.insertionMode=vs):a===_.BASE||a===_.BASEFONT||a===_.BGSOUND||a===_.LINK||a===_.META||a===_.NOFRAMES||a===_.SCRIPT||a===_.STYLE||a===_.TEMPLATE||a===_.TITLE?(e._err(Je.abandonedHeadElementChild),e.openElements.push(e.headElement),Ke(e,t),e.openElements.remove(e.headElement)):a===_.HEAD?e._err(Je.misplacedStartTagForHeadElement):Xn(e,t)}function y9(e,t){let a=t.tagName;a===_.BODY||a===_.HTML||a===_.BR?Xn(e,t):a===_.TEMPLATE?tr(e,t):e._err(Je.endTagWithoutMatchingOpenElement)}function Xn(e,t){e._insertFakeElement(_.BODY),e.insertionMode=Qt,e._processToken(t)}function Ja(e,t){e._reconstructActiveFormattingElements(),e._insertCharacters(t)}function ys(e,t){e._reconstructActiveFormattingElements(),e._insertCharacters(t),e.framesetOk=!1}function b9(e,t){e.openElements.tmplCount===0&&e.treeAdapter.adoptAttributes(e.openElements.items[0],t.attrs)}function C9(e,t){let a=e.openElements.tryPeekProperlyNestedBodyElement();a&&e.openElements.tmplCount===0&&(e.framesetOk=!1,e.treeAdapter.adoptAttributes(a,t.attrs))}function R9(e,t){let a=e.openElements.tryPeekProperlyNestedBodyElement();e.framesetOk&&a&&(e.treeAdapter.detachNode(a),e.openElements.popAllUpToHtmlElement(),e._insertElement(t,B.HTML),e.insertionMode=vs)}function _a(e,t){e.openElements.hasInButtonScope(_.P)&&e._closePElement(),e._insertElement(t,B.HTML)}function A9(e,t){e.openElements.hasInButtonScope(_.P)&&e._closePElement();let a=e.openElements.currentTagName;(a===_.H1||a===_.H2||a===_.H3||a===_.H4||a===_.H5||a===_.H6)&&e.openElements.pop(),e._insertElement(t,B.HTML)}function ab(e,t){e.openElements.hasInButtonScope(_.P)&&e._closePElement(),e._insertElement(t,B.HTML),e.skipNextNewLine=!0,e.framesetOk=!1}function N9(e,t){let a=e.openElements.tmplCount>0;(!e.formElement||a)&&(e.openElements.hasInButtonScope(_.P)&&e._closePElement(),e._insertElement(t,B.HTML),a||(e.formElement=e.openElements.current))}function O9(e,t){e.framesetOk=!1;let a=t.tagName;for(let r=e.openElements.stackTop;r>=0;r--){let n=e.openElements.items[r],i=e.treeAdapter.getTagName(n),s=null;if(a===_.LI&&i===_.LI?s=_.LI:(a===_.DD||a===_.DT)&&(i===_.DD||i===_.DT)&&(s=i),s){e.openElements.generateImpliedEndTagsWithExclusion(s),e.openElements.popUntilTagNamePopped(s);break}if(i!==_.ADDRESS&&i!==_.DIV&&i!==_.P&&e._isSpecialElement(n))break}e.openElements.hasInButtonScope(_.P)&&e._closePElement(),e._insertElement(t,B.HTML)}function D9(e,t){e.openElements.hasInButtonScope(_.P)&&e._closePElement(),e._insertElement(t,B.HTML),e.tokenizer.state=S.MODE.PLAINTEXT}function I9(e,t){e.openElements.hasInScope(_.BUTTON)&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilTagNamePopped(_.BUTTON)),e._reconstructActiveFormattingElements(),e._insertElement(t,B.HTML),e.framesetOk=!1}function k9(e,t){let a=e.activeFormattingElements.getElementEntryInScopeWithTagName(_.A);a&&(Ma(e,t),e.openElements.remove(a.element),e.activeFormattingElements.removeEntry(a)),e._reconstructActiveFormattingElements(),e._insertElement(t,B.HTML),e.activeFormattingElements.pushElement(e.openElements.current,t)}function Hr(e,t){e._reconstructActiveFormattingElements(),e._insertElement(t,B.HTML),e.activeFormattingElements.pushElement(e.openElements.current,t)}function v9(e,t){e._reconstructActiveFormattingElements(),e.openElements.hasInScope(_.NOBR)&&(Ma(e,t),e._reconstructActiveFormattingElements()),e._insertElement(t,B.HTML),e.activeFormattingElements.pushElement(e.openElements.current,t)}function rb(e,t){e._reconstructActiveFormattingElements(),e._insertElement(t,B.HTML),e.activeFormattingElements.insertMarker(),e.framesetOk=!1}function w9(e,t){e.treeAdapter.getDocumentMode(e.document)!==er.DOCUMENT_MODE.QUIRKS&&e.openElements.hasInButtonScope(_.P)&&e._closePElement(),e._insertElement(t,B.HTML),e.framesetOk=!1,e.insertionMode=nt}function Yr(e,t){e._reconstructActiveFormattingElements(),e._appendElement(t,B.HTML),e.framesetOk=!1,t.ackSelfClosing=!0}function x9(e,t){e._reconstructActiveFormattingElements(),e._appendElement(t,B.HTML);let a=S.getTokenAttr(t,cb.TYPE);(!a||a.toLowerCase()!==_b)&&(e.framesetOk=!1),t.ackSelfClosing=!0}function nb(e,t){e._appendElement(t,B.HTML),t.ackSelfClosing=!0}function M9(e,t){e.openElements.hasInButtonScope(_.P)&&e._closePElement(),e._appendElement(t,B.HTML),e.framesetOk=!1,e.ackSelfClosing=!0}function L9(e,t){t.tagName=_.IMG,Yr(e,t)}function P9(e,t){e._insertElement(t,B.HTML),e.skipNextNewLine=!0,e.tokenizer.state=S.MODE.RCDATA,e.originalInsertionMode=e.insertionMode,e.framesetOk=!1,e.insertionMode=Cs}function F9(e,t){e.openElements.hasInButtonScope(_.P)&&e._closePElement(),e._reconstructActiveFormattingElements(),e.framesetOk=!1,e._switchToTextParsing(t,S.MODE.RAWTEXT)}function U9(e,t){e.framesetOk=!1,e._switchToTextParsing(t,S.MODE.RAWTEXT)}function ib(e,t){e._switchToTextParsing(t,S.MODE.RAWTEXT)}function B9(e,t){e._reconstructActiveFormattingElements(),e._insertElement(t,B.HTML),e.framesetOk=!1,e.insertionMode===nt||e.insertionMode===Is||e.insertionMode===kt||e.insertionMode===pa||e.insertionMode===ks?e.insertionMode=Ic:e.insertionMode=Dc}function sb(e,t){e.openElements.currentTagName===_.OPTION&&e.openElements.pop(),e._reconstructActiveFormattingElements(),e._insertElement(t,B.HTML)}function ob(e,t){e.openElements.hasInScope(_.RUBY)&&e.openElements.generateImpliedEndTags(),e._insertElement(t,B.HTML)}function G9(e,t){e.openElements.hasInScope(_.RUBY)&&e.openElements.generateImpliedEndTagsWithExclusion(_.RTC),e._insertElement(t,B.HTML)}function z9(e,t){e.openElements.hasInButtonScope(_.P)&&e._closePElement(),e._insertElement(t,B.HTML)}function H9(e,t){e._reconstructActiveFormattingElements(),Wt.adjustTokenMathMLAttrs(t),Wt.adjustTokenXMLAttrs(t),t.selfClosing?e._appendElement(t,B.MATHML):e._insertElement(t,B.MATHML),t.ackSelfClosing=!0}function Y9(e,t){e._reconstructActiveFormattingElements(),Wt.adjustTokenSVGAttrs(t),Wt.adjustTokenXMLAttrs(t),t.selfClosing?e._appendElement(t,B.SVG):e._insertElement(t,B.SVG),t.ackSelfClosing=!0}function Dt(e,t){e._reconstructActiveFormattingElements(),e._insertElement(t,B.HTML)}function ft(e,t){let a=t.tagName;switch(a.length){case 1:a===_.I||a===_.S||a===_.B||a===_.U?Hr(e,t):a===_.P?_a(e,t):a===_.A?k9(e,t):Dt(e,t);break;case 2:a===_.DL||a===_.OL||a===_.UL?_a(e,t):a===_.H1||a===_.H2||a===_.H3||a===_.H4||a===_.H5||a===_.H6?A9(e,t):a===_.LI||a===_.DD||a===_.DT?O9(e,t):a===_.EM||a===_.TT?Hr(e,t):a===_.BR?Yr(e,t):a===_.HR?M9(e,t):a===_.RB?ob(e,t):a===_.RT||a===_.RP?G9(e,t):a!==_.TH&&a!==_.TD&&a!==_.TR&&Dt(e,t);break;case 3:a===_.DIV||a===_.DIR||a===_.NAV?_a(e,t):a===_.PRE?ab(e,t):a===_.BIG?Hr(e,t):a===_.IMG||a===_.WBR?Yr(e,t):a===_.XMP?F9(e,t):a===_.SVG?Y9(e,t):a===_.RTC?ob(e,t):a!==_.COL&&Dt(e,t);break;case 4:a===_.HTML?b9(e,t):a===_.BASE||a===_.LINK||a===_.META?Ke(e,t):a===_.BODY?C9(e,t):a===_.MAIN||a===_.MENU?_a(e,t):a===_.FORM?N9(e,t):a===_.CODE||a===_.FONT?Hr(e,t):a===_.NOBR?v9(e,t):a===_.AREA?Yr(e,t):a===_.MATH?H9(e,t):a===_.MENU?z9(e,t):a!==_.HEAD&&Dt(e,t);break;case 5:a===_.STYLE||a===_.TITLE?Ke(e,t):a===_.ASIDE?_a(e,t):a===_.SMALL?Hr(e,t):a===_.TABLE?w9(e,t):a===_.EMBED?Yr(e,t):a===_.INPUT?x9(e,t):a===_.PARAM||a===_.TRACK?nb(e,t):a===_.IMAGE?L9(e,t):a!==_.FRAME&&a!==_.TBODY&&a!==_.TFOOT&&a!==_.THEAD&&Dt(e,t);break;case 6:a===_.SCRIPT?Ke(e,t):a===_.CENTER||a===_.FIGURE||a===_.FOOTER||a===_.HEADER||a===_.HGROUP||a===_.DIALOG?_a(e,t):a===_.BUTTON?I9(e,t):a===_.STRIKE||a===_.STRONG?Hr(e,t):a===_.APPLET||a===_.OBJECT?rb(e,t):a===_.KEYGEN?Yr(e,t):a===_.SOURCE?nb(e,t):a===_.IFRAME?U9(e,t):a===_.SELECT?B9(e,t):a===_.OPTION?sb(e,t):Dt(e,t);break;case 7:a===_.BGSOUND?Ke(e,t):a===_.DETAILS||a===_.ADDRESS||a===_.ARTICLE||a===_.SECTION||a===_.SUMMARY?_a(e,t):a===_.LISTING?ab(e,t):a===_.MARQUEE?rb(e,t):a===_.NOEMBED?ib(e,t):a!==_.CAPTION&&Dt(e,t);break;case 8:a===_.BASEFONT?Ke(e,t):a===_.FRAMESET?R9(e,t):a===_.FIELDSET?_a(e,t):a===_.TEXTAREA?P9(e,t):a===_.TEMPLATE?Ke(e,t):a===_.NOSCRIPT?e.options.scriptingEnabled?ib(e,t):Dt(e,t):a===_.OPTGROUP?sb(e,t):a!==_.COLGROUP&&Dt(e,t);break;case 9:a===_.PLAINTEXT?D9(e,t):Dt(e,t);break;case 10:a===_.BLOCKQUOTE||a===_.FIGCAPTION?_a(e,t):Dt(e,t);break;default:Dt(e,t)}}function q9(e){e.openElements.hasInScope(_.BODY)&&(e.insertionMode=kc)}function $9(e,t){e.openElements.hasInScope(_.BODY)&&(e.insertionMode=kc,e._processToken(t))}function xa(e,t){let a=t.tagName;e.openElements.hasInScope(a)&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilTagNamePopped(a))}function V9(e){let t=e.openElements.tmplCount>0,a=e.formElement;t||(e.formElement=null),(a||t)&&e.openElements.hasInScope(_.FORM)&&(e.openElements.generateImpliedEndTags(),t?e.openElements.popUntilTagNamePopped(_.FORM):e.openElements.remove(a))}function K9(e){e.openElements.hasInButtonScope(_.P)||e._insertFakeElement(_.P),e._closePElement()}function W9(e){e.openElements.hasInListItemScope(_.LI)&&(e.openElements.generateImpliedEndTagsWithExclusion(_.LI),e.openElements.popUntilTagNamePopped(_.LI))}function Q9(e,t){let a=t.tagName;e.openElements.hasInScope(a)&&(e.openElements.generateImpliedEndTagsWithExclusion(a),e.openElements.popUntilTagNamePopped(a))}function j9(e){e.openElements.hasNumberedHeaderInScope()&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilNumberedHeaderPopped())}function lb(e,t){let a=t.tagName;e.openElements.hasInScope(a)&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilTagNamePopped(a),e.activeFormattingElements.clearToLastMarker())}function X9(e){e._reconstructActiveFormattingElements(),e._insertFakeElement(_.BR),e.openElements.pop(),e.framesetOk=!1}function zt(e,t){let a=t.tagName;for(let r=e.openElements.stackTop;r>0;r--){let n=e.openElements.items[r];if(e.treeAdapter.getTagName(n)===a){e.openElements.generateImpliedEndTagsWithExclusion(a),e.openElements.popUntilElementPopped(n);break}if(e._isSpecialElement(n))break}}function vc(e,t){let a=t.tagName;switch(a.length){case 1:a===_.A||a===_.B||a===_.I||a===_.S||a===_.U?Ma(e,t):a===_.P?K9(e,t):zt(e,t);break;case 2:a===_.DL||a===_.UL||a===_.OL?xa(e,t):a===_.LI?W9(e,t):a===_.DD||a===_.DT?Q9(e,t):a===_.H1||a===_.H2||a===_.H3||a===_.H4||a===_.H5||a===_.H6?j9(e,t):a===_.BR?X9(e,t):a===_.EM||a===_.TT?Ma(e,t):zt(e,t);break;case 3:a===_.BIG?Ma(e,t):a===_.DIR||a===_.DIV||a===_.NAV||a===_.PRE?xa(e,t):zt(e,t);break;case 4:a===_.BODY?q9(e,t):a===_.HTML?$9(e,t):a===_.FORM?V9(e,t):a===_.CODE||a===_.FONT||a===_.NOBR?Ma(e,t):a===_.MAIN||a===_.MENU?xa(e,t):zt(e,t);break;case 5:a===_.ASIDE?xa(e,t):a===_.SMALL?Ma(e,t):zt(e,t);break;case 6:a===_.CENTER||a===_.FIGURE||a===_.FOOTER||a===_.HEADER||a===_.HGROUP||a===_.DIALOG?xa(e,t):a===_.APPLET||a===_.OBJECT?lb(e,t):a===_.STRIKE||a===_.STRONG?Ma(e,t):zt(e,t);break;case 7:a===_.ADDRESS||a===_.ARTICLE||a===_.DETAILS||a===_.SECTION||a===_.SUMMARY||a===_.LISTING?xa(e,t):a===_.MARQUEE?lb(e,t):zt(e,t);break;case 8:a===_.FIELDSET?xa(e,t):a===_.TEMPLATE?tr(e,t):zt(e,t);break;case 10:a===_.BLOCKQUOTE||a===_.FIGCAPTION?xa(e,t):zt(e,t);break;default:zt(e,t)}}function da(e,t){e.tmplInsertionModeStackTop>-1?Sb(e,t):e.stopped=!0}function Z9(e,t){t.tagName===_.SCRIPT&&(e.pendingScript=e.openElements.current),e.openElements.pop(),e.insertionMode=e.originalInsertionMode}function J9(e,t){e._err(Je.eofInElementThatCanContainOnlyText),e.openElements.pop(),e.insertionMode=e.originalInsertionMode,e._processToken(t)}function ua(e,t){let a=e.openElements.currentTagName;a===_.TABLE||a===_.TBODY||a===_.TFOOT||a===_.THEAD||a===_.TR?(e.pendingCharacterTokens=[],e.hasNonWhitespacePendingCharacterToken=!1,e.originalInsertionMode=e.insertionMode,e.insertionMode=pb,e._processToken(t)):It(e,t)}function eL(e,t){e.openElements.clearBackToTableContext(),e.activeFormattingElements.insertMarker(),e._insertElement(t,B.HTML),e.insertionMode=Is}function tL(e,t){e.openElements.clearBackToTableContext(),e._insertElement(t,B.HTML),e.insertionMode=Zn}function aL(e,t){e.openElements.clearBackToTableContext(),e._insertFakeElement(_.COLGROUP),e.insertionMode=Zn,e._processToken(t)}function rL(e,t){e.openElements.clearBackToTableContext(),e._insertElement(t,B.HTML),e.insertionMode=kt}function nL(e,t){e.openElements.clearBackToTableContext(),e._insertFakeElement(_.TBODY),e.insertionMode=kt,e._processToken(t)}function iL(e,t){e.openElements.hasInTableScope(_.TABLE)&&(e.openElements.popUntilTagNamePopped(_.TABLE),e._resetInsertionMode(),e._processToken(t))}function sL(e,t){let a=S.getTokenAttr(t,cb.TYPE);a&&a.toLowerCase()===_b?e._appendElement(t,B.HTML):It(e,t),t.ackSelfClosing=!0}function oL(e,t){!e.formElement&&e.openElements.tmplCount===0&&(e._insertElement(t,B.HTML),e.formElement=e.openElements.current,e.openElements.pop())}function wc(e,t){let a=t.tagName;switch(a.length){case 2:a===_.TD||a===_.TH||a===_.TR?nL(e,t):It(e,t);break;case 3:a===_.COL?aL(e,t):It(e,t);break;case 4:a===_.FORM?oL(e,t):It(e,t);break;case 5:a===_.TABLE?iL(e,t):a===_.STYLE?Ke(e,t):a===_.TBODY||a===_.TFOOT||a===_.THEAD?rL(e,t):a===_.INPUT?sL(e,t):It(e,t);break;case 6:a===_.SCRIPT?Ke(e,t):It(e,t);break;case 7:a===_.CAPTION?eL(e,t):It(e,t);break;case 8:a===_.COLGROUP?tL(e,t):a===_.TEMPLATE?Ke(e,t):It(e,t);break;default:It(e,t)}}function xc(e,t){let a=t.tagName;a===_.TABLE?e.openElements.hasInTableScope(_.TABLE)&&(e.openElements.popUntilTagNamePopped(_.TABLE),e._resetInsertionMode()):a===_.TEMPLATE?tr(e,t):a!==_.BODY&&a!==_.CAPTION&&a!==_.COL&&a!==_.COLGROUP&&a!==_.HTML&&a!==_.TBODY&&a!==_.TD&&a!==_.TFOOT&&a!==_.TH&&a!==_.THEAD&&a!==_.TR&&It(e,t)}function It(e,t){let a=e.fosterParentingEnabled;e.fosterParentingEnabled=!0,e._processTokenInBodyMode(t),e.fosterParentingEnabled=a}function lL(e,t){e.pendingCharacterTokens.push(t)}function cL(e,t){e.pendingCharacterTokens.push(t),e.hasNonWhitespacePendingCharacterToken=!0}function Vn(e,t){let a=0;if(e.hasNonWhitespacePendingCharacterToken)for(;a<e.pendingCharacterTokens.length;a++)It(e,e.pendingCharacterTokens[a]);else for(;a<e.pendingCharacterTokens.length;a++)e._insertCharacters(e.pendingCharacterTokens[a]);e.insertionMode=e.originalInsertionMode,e._processToken(t)}function _L(e,t){let a=t.tagName;a===_.CAPTION||a===_.COL||a===_.COLGROUP||a===_.TBODY||a===_.TD||a===_.TFOOT||a===_.TH||a===_.THEAD||a===_.TR?e.openElements.hasInTableScope(_.CAPTION)&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilTagNamePopped(_.CAPTION),e.activeFormattingElements.clearToLastMarker(),e.insertionMode=nt,e._processToken(t)):ft(e,t)}function dL(e,t){let a=t.tagName;a===_.CAPTION||a===_.TABLE?e.openElements.hasInTableScope(_.CAPTION)&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilTagNamePopped(_.CAPTION),e.activeFormattingElements.clearToLastMarker(),e.insertionMode=nt,a===_.TABLE&&e._processToken(t)):a!==_.BODY&&a!==_.COL&&a!==_.COLGROUP&&a!==_.HTML&&a!==_.TBODY&&a!==_.TD&&a!==_.TFOOT&&a!==_.TH&&a!==_.THEAD&&a!==_.TR&&vc(e,t)}function uL(e,t){let a=t.tagName;a===_.HTML?ft(e,t):a===_.COL?(e._appendElement(t,B.HTML),t.ackSelfClosing=!0):a===_.TEMPLATE?Ke(e,t):As(e,t)}function pL(e,t){let a=t.tagName;a===_.COLGROUP?e.openElements.currentTagName===_.COLGROUP&&(e.openElements.pop(),e.insertionMode=nt):a===_.TEMPLATE?tr(e,t):a!==_.COL&&As(e,t)}function As(e,t){e.openElements.currentTagName===_.COLGROUP&&(e.openElements.pop(),e.insertionMode=nt,e._processToken(t))}function mL(e,t){let a=t.tagName;a===_.TR?(e.openElements.clearBackToTableBodyContext(),e._insertElement(t,B.HTML),e.insertionMode=pa):a===_.TH||a===_.TD?(e.openElements.clearBackToTableBodyContext(),e._insertFakeElement(_.TR),e.insertionMode=pa,e._processToken(t)):a===_.CAPTION||a===_.COL||a===_.COLGROUP||a===_.TBODY||a===_.TFOOT||a===_.THEAD?e.openElements.hasTableBodyContextInTableScope()&&(e.openElements.clearBackToTableBodyContext(),e.openElements.pop(),e.insertionMode=nt,e._processToken(t)):wc(e,t)}function gL(e,t){let a=t.tagName;a===_.TBODY||a===_.TFOOT||a===_.THEAD?e.openElements.hasInTableScope(a)&&(e.openElements.clearBackToTableBodyContext(),e.openElements.pop(),e.insertionMode=nt):a===_.TABLE?e.openElements.hasTableBodyContextInTableScope()&&(e.openElements.clearBackToTableBodyContext(),e.openElements.pop(),e.insertionMode=nt,e._processToken(t)):(a!==_.BODY&&a!==_.CAPTION&&a!==_.COL&&a!==_.COLGROUP||a!==_.HTML&&a!==_.TD&&a!==_.TH&&a!==_.TR)&&xc(e,t)}function fL(e,t){let a=t.tagName;a===_.TH||a===_.TD?(e.openElements.clearBackToTableRowContext(),e._insertElement(t,B.HTML),e.insertionMode=ks,e.activeFormattingElements.insertMarker()):a===_.CAPTION||a===_.COL||a===_.COLGROUP||a===_.TBODY||a===_.TFOOT||a===_.THEAD||a===_.TR?e.openElements.hasInTableScope(_.TR)&&(e.openElements.clearBackToTableRowContext(),e.openElements.pop(),e.insertionMode=kt,e._processToken(t)):wc(e,t)}function EL(e,t){let a=t.tagName;a===_.TR?e.openElements.hasInTableScope(_.TR)&&(e.openElements.clearBackToTableRowContext(),e.openElements.pop(),e.insertionMode=kt):a===_.TABLE?e.openElements.hasInTableScope(_.TR)&&(e.openElements.clearBackToTableRowContext(),e.openElements.pop(),e.insertionMode=kt,e._processToken(t)):a===_.TBODY||a===_.TFOOT||a===_.THEAD?(e.openElements.hasInTableScope(a)||e.openElements.hasInTableScope(_.TR))&&(e.openElements.clearBackToTableRowContext(),e.openElements.pop(),e.insertionMode=kt,e._processToken(t)):(a!==_.BODY&&a!==_.CAPTION&&a!==_.COL&&a!==_.COLGROUP||a!==_.HTML&&a!==_.TD&&a!==_.TH)&&xc(e,t)}function hL(e,t){let a=t.tagName;a===_.CAPTION||a===_.COL||a===_.COLGROUP||a===_.TBODY||a===_.TD||a===_.TFOOT||a===_.TH||a===_.THEAD||a===_.TR?(e.openElements.hasInTableScope(_.TD)||e.openElements.hasInTableScope(_.TH))&&(e._closeTableCell(),e._processToken(t)):ft(e,t)}function SL(e,t){let a=t.tagName;a===_.TD||a===_.TH?e.openElements.hasInTableScope(a)&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilTagNamePopped(a),e.activeFormattingElements.clearToLastMarker(),e.insertionMode=pa):a===_.TABLE||a===_.TBODY||a===_.TFOOT||a===_.THEAD||a===_.TR?e.openElements.hasInTableScope(a)&&(e._closeTableCell(),e._processToken(t)):a!==_.BODY&&a!==_.CAPTION&&a!==_.COL&&a!==_.COLGROUP&&a!==_.HTML&&vc(e,t)}function Eb(e,t){let a=t.tagName;a===_.HTML?ft(e,t):a===_.OPTION?(e.openElements.currentTagName===_.OPTION&&e.openElements.pop(),e._insertElement(t,B.HTML)):a===_.OPTGROUP?(e.openElements.currentTagName===_.OPTION&&e.openElements.pop(),e.openElements.currentTagName===_.OPTGROUP&&e.openElements.pop(),e._insertElement(t,B.HTML)):a===_.INPUT||a===_.KEYGEN||a===_.TEXTAREA||a===_.SELECT?e.openElements.hasInSelectScope(_.SELECT)&&(e.openElements.popUntilTagNamePopped(_.SELECT),e._resetInsertionMode(),a!==_.SELECT&&e._processToken(t)):(a===_.SCRIPT||a===_.TEMPLATE)&&Ke(e,t)}function hb(e,t){let a=t.tagName;if(a===_.OPTGROUP){let r=e.openElements.items[e.openElements.stackTop-1],n=r&&e.treeAdapter.getTagName(r);e.openElements.currentTagName===_.OPTION&&n===_.OPTGROUP&&e.openElements.pop(),e.openElements.currentTagName===_.OPTGROUP&&e.openElements.pop()}else a===_.OPTION?e.openElements.currentTagName===_.OPTION&&e.openElements.pop():a===_.SELECT&&e.openElements.hasInSelectScope(_.SELECT)?(e.openElements.popUntilTagNamePopped(_.SELECT),e._resetInsertionMode()):a===_.TEMPLATE&&tr(e,t)}function TL(e,t){let a=t.tagName;a===_.CAPTION||a===_.TABLE||a===_.TBODY||a===_.TFOOT||a===_.THEAD||a===_.TR||a===_.TD||a===_.TH?(e.openElements.popUntilTagNamePopped(_.SELECT),e._resetInsertionMode(),e._processToken(t)):Eb(e,t)}function yL(e,t){let a=t.tagName;a===_.CAPTION||a===_.TABLE||a===_.TBODY||a===_.TFOOT||a===_.THEAD||a===_.TR||a===_.TD||a===_.TH?e.openElements.hasInTableScope(a)&&(e.openElements.popUntilTagNamePopped(_.SELECT),e._resetInsertionMode(),e._processToken(t)):hb(e,t)}function bL(e,t){let a=t.tagName;if(a===_.BASE||a===_.BASEFONT||a===_.BGSOUND||a===_.LINK||a===_.META||a===_.NOFRAMES||a===_.SCRIPT||a===_.STYLE||a===_.TEMPLATE||a===_.TITLE)Ke(e,t);else{let r=i9[a]||Qt;e._popTmplInsertionMode(),e._pushTmplInsertionMode(r),e.insertionMode=r,e._processToken(t)}}function CL(e,t){t.tagName===_.TEMPLATE&&tr(e,t)}function Sb(e,t){e.openElements.tmplCount>0?(e.openElements.popUntilTagNamePopped(_.TEMPLATE),e.activeFormattingElements.clearToLastMarker(),e._popTmplInsertionMode(),e._resetInsertionMode(),e._processToken(t)):e.stopped=!0}function RL(e,t){t.tagName===_.HTML?ft(e,t):Ns(e,t)}function AL(e,t){t.tagName===_.HTML?e.fragmentContext||(e.insertionMode=gb):Ns(e,t)}function Ns(e,t){e.insertionMode=Qt,e._processToken(t)}function NL(e,t){let a=t.tagName;a===_.HTML?ft(e,t):a===_.FRAMESET?e._insertElement(t,B.HTML):a===_.FRAME?(e._appendElement(t,B.HTML),t.ackSelfClosing=!0):a===_.NOFRAMES&&Ke(e,t)}function OL(e,t){t.tagName===_.FRAMESET&&!e.openElements.isRootHtmlElementCurrent()&&(e.openElements.pop(),!e.fragmentContext&&e.openElements.currentTagName!==_.FRAMESET&&(e.insertionMode=mb))}function DL(e,t){let a=t.tagName;a===_.HTML?ft(e,t):a===_.NOFRAMES&&Ke(e,t)}function IL(e,t){t.tagName===_.HTML&&(e.insertionMode=fb)}function kL(e,t){t.tagName===_.HTML?ft(e,t):bs(e,t)}function bs(e,t){e.insertionMode=Qt,e._processToken(t)}function vL(e,t){let a=t.tagName;a===_.HTML?ft(e,t):a===_.NOFRAMES&&Ke(e,t)}function wL(e,t){t.chars=e9.REPLACEMENT_CHARACTER,e._insertCharacters(t)}function xL(e,t){e._insertCharacters(t),e.framesetOk=!1}function ML(e,t){if(Wt.causesExit(t)&&!e.fragmentContext){for(;e.treeAdapter.getNamespaceURI(e.openElements.current)!==B.HTML&&!e._isIntegrationPoint(e.openElements.current);)e.openElements.pop();e._processToken(t)}else{let a=e._getAdjustedCurrentElement(),r=e.treeAdapter.getNamespaceURI(a);r===B.MATHML?Wt.adjustTokenMathMLAttrs(t):r===B.SVG&&(Wt.adjustTokenSVGTagName(t),Wt.adjustTokenSVGAttrs(t)),Wt.adjustTokenXMLAttrs(t),t.selfClosing?e._appendElement(t,r):e._insertElement(t,r),t.ackSelfClosing=!0}}function LL(e,t){for(let a=e.openElements.stackTop;a>0;a--){let r=e.openElements.items[a];if(e.treeAdapter.getNamespaceURI(r)===B.HTML){e._processToken(t);break}if(e.treeAdapter.getTagName(r).toLowerCase()===t.tagName){e.openElements.popUntilElementPopped(r);break}}}});var Rb=p((nG,Cb)=>{"use strict";var PL=yc(),FL=bc(),UL=Cc(),bb=va(),Ie=bb.TAG_NAMES,ws=bb.NAMESPACES,BL={treeAdapter:PL},GL=/&/g,zL=/\u00a0/g,HL=/"/g,YL=/</g,qL=/>/g,xs=class e{constructor(t,a){this.options=FL(BL,a),this.treeAdapter=this.options.treeAdapter,this.html="",this.startNode=t}serialize(){return this._serializeChildNodes(this.startNode),this.html}_serializeChildNodes(t){let a=this.treeAdapter.getChildNodes(t);if(a)for(let r=0,n=a.length;r<n;r++){let i=a[r];this.treeAdapter.isElementNode(i)?this._serializeElement(i):this.treeAdapter.isTextNode(i)?this._serializeTextNode(i):this.treeAdapter.isCommentNode(i)?this._serializeCommentNode(i):this.treeAdapter.isDocumentTypeNode(i)&&this._serializeDocumentTypeNode(i)}}_serializeElement(t){let a=this.treeAdapter.getTagName(t),r=this.treeAdapter.getNamespaceURI(t);if(this.html+="<"+a,this._serializeAttributes(t),this.html+=">",a!==Ie.AREA&&a!==Ie.BASE&&a!==Ie.BASEFONT&&a!==Ie.BGSOUND&&a!==Ie.BR&&a!==Ie.COL&&a!==Ie.EMBED&&a!==Ie.FRAME&&a!==Ie.HR&&a!==Ie.IMG&&a!==Ie.INPUT&&a!==Ie.KEYGEN&&a!==Ie.LINK&&a!==Ie.META&&a!==Ie.PARAM&&a!==Ie.SOURCE&&a!==Ie.TRACK&&a!==Ie.WBR){let n=a===Ie.TEMPLATE&&r===ws.HTML?this.treeAdapter.getTemplateContent(t):t;this._serializeChildNodes(n),this.html+="</"+a+">"}}_serializeAttributes(t){let a=this.treeAdapter.getAttrList(t);for(let r=0,n=a.length;r<n;r++){let i=a[r],s=e.escapeString(i.value,!0);this.html+=" ",i.namespace?i.namespace===ws.XML?this.html+="xml:"+i.name:i.namespace===ws.XMLNS?(i.name!=="xmlns"&&(this.html+="xmlns:"),this.html+=i.name):i.namespace===ws.XLINK?this.html+="xlink:"+i.name:this.html+=i.prefix+":"+i.name:this.html+=i.name,this.html+='="'+s+'"'}}_serializeTextNode(t){let a=this.treeAdapter.getTextNodeContent(t),r=this.treeAdapter.getParentNode(t),n;r&&this.treeAdapter.isElementNode(r)&&(n=this.treeAdapter.getTagName(r)),n===Ie.STYLE||n===Ie.SCRIPT||n===Ie.XMP||n===Ie.IFRAME||n===Ie.NOEMBED||n===Ie.NOFRAMES||n===Ie.PLAINTEXT||n===Ie.NOSCRIPT?this.html+=a:this.html+=e.escapeString(a,!1)}_serializeCommentNode(t){this.html+="<!--"+this.treeAdapter.getCommentNodeContent(t)+"-->"}_serializeDocumentTypeNode(t){let a=this.treeAdapter.getDocumentTypeNodeName(t);this.html+="<"+UL.serializeContent(a,null,null)+">"}};xs.escapeString=function(e,t){return e=e.replace(GL,"&").replace(zL," "),t?e=e.replace(HL,"""):e=e.replace(YL,"<").replace(qL,">"),e};Cb.exports=xs});var Nb=p(Ms=>{"use strict";var Ab=yb(),$L=Rb();Ms.parse=function(t,a){return new Ab(a).parse(t)};Ms.parseFragment=function(t,a,r){return typeof t=="string"&&(r=a,a=t,t=null),new Ab(r).parseFragment(a,t)};Ms.serialize=function(e,t){return new $L(e,t).serialize()}});var Lc=p($r=>{"use strict";var Mc=$r.NAMESPACES={HTML:"http://www.w3.org/1999/xhtml",MATHML:"http://www.w3.org/1998/Math/MathML",SVG:"http://www.w3.org/2000/svg",XLINK:"http://www.w3.org/1999/xlink",XML:"http://www.w3.org/XML/1998/namespace",XMLNS:"http://www.w3.org/2000/xmlns/"};$r.ATTRS={TYPE:"type",ACTION:"action",ENCODING:"encoding",PROMPT:"prompt",NAME:"name",COLOR:"color",FACE:"face",SIZE:"size"};$r.DOCUMENT_MODE={NO_QUIRKS:"no-quirks",QUIRKS:"quirks",LIMITED_QUIRKS:"limited-quirks"};var v=$r.TAG_NAMES={A:"a",ADDRESS:"address",ANNOTATION_XML:"annotation-xml",APPLET:"applet",AREA:"area",ARTICLE:"article",ASIDE:"aside",B:"b",BASE:"base",BASEFONT:"basefont",BGSOUND:"bgsound",BIG:"big",BLOCKQUOTE:"blockquote",BODY:"body",BR:"br",BUTTON:"button",CAPTION:"caption",CENTER:"center",CODE:"code",COL:"col",COLGROUP:"colgroup",DD:"dd",DESC:"desc",DETAILS:"details",DIALOG:"dialog",DIR:"dir",DIV:"div",DL:"dl",DT:"dt",EM:"em",EMBED:"embed",FIELDSET:"fieldset",FIGCAPTION:"figcaption",FIGURE:"figure",FONT:"font",FOOTER:"footer",FOREIGN_OBJECT:"foreignObject",FORM:"form",FRAME:"frame",FRAMESET:"frameset",H1:"h1",H2:"h2",H3:"h3",H4:"h4",H5:"h5",H6:"h6",HEAD:"head",HEADER:"header",HGROUP:"hgroup",HR:"hr",HTML:"html",I:"i",IMG:"img",IMAGE:"image",INPUT:"input",IFRAME:"iframe",KEYGEN:"keygen",LABEL:"label",LI:"li",LINK:"link",LISTING:"listing",MAIN:"main",MALIGNMARK:"malignmark",MARQUEE:"marquee",MATH:"math",MENU:"menu",META:"meta",MGLYPH:"mglyph",MI:"mi",MO:"mo",MN:"mn",MS:"ms",MTEXT:"mtext",NAV:"nav",NOBR:"nobr",NOFRAMES:"noframes",NOEMBED:"noembed",NOSCRIPT:"noscript",OBJECT:"object",OL:"ol",OPTGROUP:"optgroup",OPTION:"option",P:"p",PARAM:"param",PLAINTEXT:"plaintext",PRE:"pre",RB:"rb",RP:"rp",RT:"rt",RTC:"rtc",RUBY:"ruby",S:"s",SCRIPT:"script",SECTION:"section",SELECT:"select",SOURCE:"source",SMALL:"small",SPAN:"span",STRIKE:"strike",STRONG:"strong",STYLE:"style",SUB:"sub",SUMMARY:"summary",SUP:"sup",TABLE:"table",TBODY:"tbody",TEMPLATE:"template",TEXTAREA:"textarea",TFOOT:"tfoot",TD:"td",TH:"th",THEAD:"thead",TITLE:"title",TR:"tr",TRACK:"track",TT:"tt",U:"u",UL:"ul",SVG:"svg",VAR:"var",WBR:"wbr",XMP:"xmp"};$r.SPECIAL_ELEMENTS={[Mc.HTML]:{[v.ADDRESS]:!0,[v.APPLET]:!0,[v.AREA]:!0,[v.ARTICLE]:!0,[v.ASIDE]:!0,[v.BASE]:!0,[v.BASEFONT]:!0,[v.BGSOUND]:!0,[v.BLOCKQUOTE]:!0,[v.BODY]:!0,[v.BR]:!0,[v.BUTTON]:!0,[v.CAPTION]:!0,[v.CENTER]:!0,[v.COL]:!0,[v.COLGROUP]:!0,[v.DD]:!0,[v.DETAILS]:!0,[v.DIR]:!0,[v.DIV]:!0,[v.DL]:!0,[v.DT]:!0,[v.EMBED]:!0,[v.FIELDSET]:!0,[v.FIGCAPTION]:!0,[v.FIGURE]:!0,[v.FOOTER]:!0,[v.FORM]:!0,[v.FRAME]:!0,[v.FRAMESET]:!0,[v.H1]:!0,[v.H2]:!0,[v.H3]:!0,[v.H4]:!0,[v.H5]:!0,[v.H6]:!0,[v.HEAD]:!0,[v.HEADER]:!0,[v.HGROUP]:!0,[v.HR]:!0,[v.HTML]:!0,[v.IFRAME]:!0,[v.IMG]:!0,[v.INPUT]:!0,[v.LI]:!0,[v.LINK]:!0,[v.LISTING]:!0,[v.MAIN]:!0,[v.MARQUEE]:!0,[v.MENU]:!0,[v.META]:!0,[v.NAV]:!0,[v.NOEMBED]:!0,[v.NOFRAMES]:!0,[v.NOSCRIPT]:!0,[v.OBJECT]:!0,[v.OL]:!0,[v.P]:!0,[v.PARAM]:!0,[v.PLAINTEXT]:!0,[v.PRE]:!0,[v.SCRIPT]:!0,[v.SECTION]:!0,[v.SELECT]:!0,[v.SOURCE]:!0,[v.STYLE]:!0,[v.SUMMARY]:!0,[v.TABLE]:!0,[v.TBODY]:!0,[v.TD]:!0,[v.TEMPLATE]:!0,[v.TEXTAREA]:!0,[v.TFOOT]:!0,[v.TH]:!0,[v.THEAD]:!0,[v.TITLE]:!0,[v.TR]:!0,[v.TRACK]:!0,[v.UL]:!0,[v.WBR]:!0,[v.XMP]:!0},[Mc.MATHML]:{[v.MI]:!0,[v.MO]:!0,[v.MN]:!0,[v.MS]:!0,[v.MTEXT]:!0,[v.ANNOTATION_XML]:!0},[Mc.SVG]:{[v.TITLE]:!0,[v.FOREIGN_OBJECT]:!0,[v.DESC]:!0}}});var wb=p(Ls=>{"use strict";var{DOCUMENT_MODE:Vr}=Lc(),Ib="html",VL="about:legacy-compat",KL="http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd",kb=["+//silmaril//dtd html pro v0r11 19970101//","-//as//dtd html 3.0 aswedit + extensions//","-//advasoft ltd//dtd html 3.0 aswedit + extensions//","-//ietf//dtd html 2.0 level 1//","-//ietf//dtd html 2.0 level 2//","-//ietf//dtd html 2.0 strict level 1//","-//ietf//dtd html 2.0 strict level 2//","-//ietf//dtd html 2.0 strict//","-//ietf//dtd html 2.0//","-//ietf//dtd html 2.1e//","-//ietf//dtd html 3.0//","-//ietf//dtd html 3.2 final//","-//ietf//dtd html 3.2//","-//ietf//dtd html 3//","-//ietf//dtd html level 0//","-//ietf//dtd html level 1//","-//ietf//dtd html level 2//","-//ietf//dtd html level 3//","-//ietf//dtd html strict level 0//","-//ietf//dtd html strict level 1//","-//ietf//dtd html strict level 2//","-//ietf//dtd html strict level 3//","-//ietf//dtd html strict//","-//ietf//dtd html//","-//metrius//dtd metrius presentational//","-//microsoft//dtd internet explorer 2.0 html strict//","-//microsoft//dtd internet explorer 2.0 html//","-//microsoft//dtd internet explorer 2.0 tables//","-//microsoft//dtd internet explorer 3.0 html strict//","-//microsoft//dtd internet explorer 3.0 html//","-//microsoft//dtd internet explorer 3.0 tables//","-//netscape comm. corp.//dtd html//","-//netscape comm. corp.//dtd strict html//","-//o'reilly and associates//dtd html 2.0//","-//o'reilly and associates//dtd html extended 1.0//","-//o'reilly and associates//dtd html extended relaxed 1.0//","-//sq//dtd html 2.0 hotmetal + extensions//","-//softquad software//dtd hotmetal pro 6.0::19990601::extensions to html 4.0//","-//softquad//dtd hotmetal pro 4.0::19971010::extensions to html 4.0//","-//spyglass//dtd html 2.0 extended//","-//sun microsystems corp.//dtd hotjava html//","-//sun microsystems corp.//dtd hotjava strict html//","-//w3c//dtd html 3 1995-03-24//","-//w3c//dtd html 3.2 draft//","-//w3c//dtd html 3.2 final//","-//w3c//dtd html 3.2//","-//w3c//dtd html 3.2s draft//","-//w3c//dtd html 4.0 frameset//","-//w3c//dtd html 4.0 transitional//","-//w3c//dtd html experimental 19960712//","-//w3c//dtd html experimental 970421//","-//w3c//dtd w3 html//","-//w3o//dtd w3 html 3.0//","-//webtechs//dtd mozilla html 2.0//","-//webtechs//dtd mozilla html//"],WL=kb.concat(["-//w3c//dtd html 4.01 frameset//","-//w3c//dtd html 4.01 transitional//"]),QL=["-//w3o//dtd w3 html strict 3.0//en//","-/w3c/dtd html 4.0 transitional/en","html"],vb=["-//w3c//dtd xhtml 1.0 frameset//","-//w3c//dtd xhtml 1.0 transitional//"],jL=vb.concat(["-//w3c//dtd html 4.01 frameset//","-//w3c//dtd html 4.01 transitional//"]);function Ob(e){let t=e.indexOf('"')!==-1?"'":'"';return t+e+t}function Db(e,t){for(let a=0;a<t.length;a++)if(e.indexOf(t[a])===0)return!0;return!1}Ls.isConforming=function(e){return e.name===Ib&&e.publicId===null&&(e.systemId===null||e.systemId===VL)};Ls.getDocumentMode=function(e){if(e.name!==Ib)return Vr.QUIRKS;let t=e.systemId;if(t&&t.toLowerCase()===KL)return Vr.QUIRKS;let a=e.publicId;if(a!==null){if(a=a.toLowerCase(),QL.indexOf(a)>-1)return Vr.QUIRKS;let r=t===null?WL:kb;if(Db(a,r))return Vr.QUIRKS;if(r=t===null?vb:jL,Db(a,r))return Vr.LIMITED_QUIRKS}return Vr.NO_QUIRKS};Ls.serializeContent=function(e,t,a){let r="!DOCTYPE ";return e&&(r+=e),t?r+=" PUBLIC "+Ob(t):a&&(r+=" SYSTEM"),a!==null&&(r+=" "+Ob(a)),r}});var Pb=p(pe=>{"use strict";var XL=wb(),{DOCUMENT_MODE:ZL}=Lc(),xb={element:1,text:3,cdata:4,comment:8},Mb={tagName:"name",childNodes:"children",parentNode:"parent",previousSibling:"prev",nextSibling:"next",nodeValue:"data"},ma=class{constructor(t){for(let a of Object.keys(t))this[a]=t[a]}get firstChild(){let t=this.children;return t&&t[0]||null}get lastChild(){let t=this.children;return t&&t[t.length-1]||null}get nodeType(){return xb[this.type]||xb.element}};Object.keys(Mb).forEach(e=>{let t=Mb[e];Object.defineProperty(ma.prototype,e,{get:function(){return this[t]||null},set:function(a){return this[t]=a,a}})});pe.createDocument=function(){return new ma({type:"root",name:"root",parent:null,prev:null,next:null,children:[],"x-mode":ZL.NO_QUIRKS})};pe.createDocumentFragment=function(){return new ma({type:"root",name:"root",parent:null,prev:null,next:null,children:[]})};pe.createElement=function(e,t,a){let r=Object.create(null),n=Object.create(null),i=Object.create(null);for(let s=0;s<a.length;s++){let o=a[s].name;r[o]=a[s].value,n[o]=a[s].namespace,i[o]=a[s].prefix}return new ma({type:e==="script"||e==="style"?e:"tag",name:e,namespace:t,attribs:r,"x-attribsNamespace":n,"x-attribsPrefix":i,children:[],parent:null,prev:null,next:null})};pe.createCommentNode=function(e){return new ma({type:"comment",data:e,parent:null,prev:null,next:null})};var Lb=function(e){return new ma({type:"text",data:e,parent:null,prev:null,next:null})},Pc=pe.appendChild=function(e,t){let a=e.children[e.children.length-1];a&&(a.next=t,t.prev=a),e.children.push(t),t.parent=e},JL=pe.insertBefore=function(e,t,a){let r=e.children.indexOf(a),n=a.prev;n&&(n.next=t,t.prev=n),a.prev=t,t.next=a,e.children.splice(r,0,t),t.parent=e};pe.setTemplateContent=function(e,t){Pc(e,t)};pe.getTemplateContent=function(e){return e.children[0]};pe.setDocumentType=function(e,t,a,r){let n=XL.serializeContent(t,a,r),i=null;for(let s=0;s<e.children.length;s++)if(e.children[s].type==="directive"&&e.children[s].name==="!doctype"){i=e.children[s];break}i?(i.data=n,i["x-name"]=t,i["x-publicId"]=a,i["x-systemId"]=r):Pc(e,new ma({type:"directive",name:"!doctype",data:n,"x-name":t,"x-publicId":a,"x-systemId":r}))};pe.setDocumentMode=function(e,t){e["x-mode"]=t};pe.getDocumentMode=function(e){return e["x-mode"]};pe.detachNode=function(e){if(e.parent){let t=e.parent.children.indexOf(e),a=e.prev,r=e.next;e.prev=null,e.next=null,a&&(a.next=r),r&&(r.prev=a),e.parent.children.splice(t,1),e.parent=null}};pe.insertText=function(e,t){let a=e.children[e.children.length-1];a&&a.type==="text"?a.data+=t:Pc(e,Lb(t))};pe.insertTextBefore=function(e,t,a){let r=e.children[e.children.indexOf(a)-1];r&&r.type==="text"?r.data+=t:JL(e,Lb(t),a)};pe.adoptAttributes=function(e,t){for(let a=0;a<t.length;a++){let r=t[a].name;typeof e.attribs[r]>"u"&&(e.attribs[r]=t[a].value,e["x-attribsNamespace"][r]=t[a].namespace,e["x-attribsPrefix"][r]=t[a].prefix)}};pe.getFirstChild=function(e){return e.children[0]};pe.getChildNodes=function(e){return e.children};pe.getParentNode=function(e){return e.parent};pe.getAttrList=function(e){let t=[];for(let a in e.attribs)t.push({name:a,value:e.attribs[a],namespace:e["x-attribsNamespace"][a],prefix:e["x-attribsPrefix"][a]});return t};pe.getTagName=function(e){return e.name};pe.getNamespaceURI=function(e){return e.namespace};pe.getTextNodeContent=function(e){return e.data};pe.getCommentNodeContent=function(e){return e.data};pe.getDocumentTypeNodeName=function(e){return e["x-name"]};pe.getDocumentTypeNodePublicId=function(e){return e["x-publicId"]};pe.getDocumentTypeNodeSystemId=function(e){return e["x-systemId"]};pe.isTextNode=function(e){return e.type==="text"};pe.isCommentNode=function(e){return e.type==="comment"};pe.isDocumentTypeNode=function(e){return e.type==="directive"&&e.name==="!doctype"};pe.isElementNode=function(e){return!!e.attribs};pe.setNodeSourceCodeLocation=function(e,t){e.sourceCodeLocation=t};pe.getNodeSourceCodeLocation=function(e){return e.sourceCodeLocation};pe.updateNodeSourceCodeLocation=function(e,t){e.sourceCodeLocation=Object.assign(e.sourceCodeLocation,t)}});var Ub=p((cG,Fb)=>{"use strict";Fb.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 Fc=p((_G,Gb)=>{var Jn=Ub(),Bb={};for(let e of Object.keys(Jn))Bb[Jn[e]]=e;var z={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"]}};Gb.exports=z;for(let e of Object.keys(z)){if(!("channels"in z[e]))throw new Error("missing channels property: "+e);if(!("labels"in z[e]))throw new Error("missing channel labels property: "+e);if(z[e].labels.length!==z[e].channels)throw new Error("channel and label counts mismatch: "+e);let{channels:t,labels:a}=z[e];delete z[e].channels,delete z[e].labels,Object.defineProperty(z[e],"channels",{value:t}),Object.defineProperty(z[e],"labels",{value:a})}z.rgb.hsl=function(e){let t=e[0]/255,a=e[1]/255,r=e[2]/255,n=Math.min(t,a,r),i=Math.max(t,a,r),s=i-n,o,c;i===n?o=0:t===i?o=(a-r)/s:a===i?o=2+(r-t)/s:r===i&&(o=4+(t-a)/s),o=Math.min(o*60,360),o<0&&(o+=360);let l=(n+i)/2;return i===n?c=0:l<=.5?c=s/(i+n):c=s/(2-i-n),[o,c*100,l*100]};z.rgb.hsv=function(e){let t,a,r,n,i,s=e[0]/255,o=e[1]/255,c=e[2]/255,l=Math.max(s,o,c),d=l-Math.min(s,o,c),u=function(g){return(l-g)/6/d+1/2};return d===0?(n=0,i=0):(i=d/l,t=u(s),a=u(o),r=u(c),s===l?n=r-a:o===l?n=1/3+t-r:c===l&&(n=2/3+a-t),n<0?n+=1:n>1&&(n-=1)),[n*360,i*100,l*100]};z.rgb.hwb=function(e){let t=e[0],a=e[1],r=e[2],n=z.rgb.hsl(e)[0],i=1/255*Math.min(t,Math.min(a,r));return r=1-1/255*Math.max(t,Math.max(a,r)),[n,i*100,r*100]};z.rgb.cmyk=function(e){let t=e[0]/255,a=e[1]/255,r=e[2]/255,n=Math.min(1-t,1-a,1-r),i=(1-t-n)/(1-n)||0,s=(1-a-n)/(1-n)||0,o=(1-r-n)/(1-n)||0;return[i*100,s*100,o*100,n*100]};function e5(e,t){return(e[0]-t[0])**2+(e[1]-t[1])**2+(e[2]-t[2])**2}z.rgb.keyword=function(e){let t=Bb[e];if(t)return t;let a=1/0,r;for(let n of Object.keys(Jn)){let i=Jn[n],s=e5(e,i);s<a&&(a=s,r=n)}return r};z.keyword.rgb=function(e){return Jn[e]};z.rgb.xyz=function(e){let t=e[0]/255,a=e[1]/255,r=e[2]/255;t=t>.04045?((t+.055)/1.055)**2.4:t/12.92,a=a>.04045?((a+.055)/1.055)**2.4:a/12.92,r=r>.04045?((r+.055)/1.055)**2.4:r/12.92;let n=t*.4124+a*.3576+r*.1805,i=t*.2126+a*.7152+r*.0722,s=t*.0193+a*.1192+r*.9505;return[n*100,i*100,s*100]};z.rgb.lab=function(e){let t=z.rgb.xyz(e),a=t[0],r=t[1],n=t[2];a/=95.047,r/=100,n/=108.883,a=a>.008856?a**(1/3):7.787*a+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,s=500*(a-r),o=200*(r-n);return[i,s,o]};z.hsl.rgb=function(e){let t=e[0]/360,a=e[1]/100,r=e[2]/100,n,i,s;if(a===0)return s=r*255,[s,s,s];r<.5?n=r*(1+a):n=r+a-r*a;let o=2*r-n,c=[0,0,0];for(let l=0;l<3;l++)i=t+1/3*-(l-1),i<0&&i++,i>1&&i--,6*i<1?s=o+(n-o)*6*i:2*i<1?s=n:3*i<2?s=o+(n-o)*(2/3-i)*6:s=o,c[l]=s*255;return c};z.hsl.hsv=function(e){let t=e[0],a=e[1]/100,r=e[2]/100,n=a,i=Math.max(r,.01);r*=2,a*=r<=1?r:2-r,n*=i<=1?i:2-i;let s=(r+a)/2,o=r===0?2*n/(i+n):2*a/(r+a);return[t,o*100,s*100]};z.hsv.rgb=function(e){let t=e[0]/60,a=e[1]/100,r=e[2]/100,n=Math.floor(t)%6,i=t-Math.floor(t),s=255*r*(1-a),o=255*r*(1-a*i),c=255*r*(1-a*(1-i));switch(r*=255,n){case 0:return[r,c,s];case 1:return[o,r,s];case 2:return[s,r,c];case 3:return[s,o,r];case 4:return[c,s,r];case 5:return[r,s,o]}};z.hsv.hsl=function(e){let t=e[0],a=e[1]/100,r=e[2]/100,n=Math.max(r,.01),i,s;s=(2-a)*r;let o=(2-a)*n;return i=a*n,i/=o<=1?o:2-o,i=i||0,s/=2,[t,i*100,s*100]};z.hwb.rgb=function(e){let t=e[0]/360,a=e[1]/100,r=e[2]/100,n=a+r,i;n>1&&(a/=n,r/=n);let s=Math.floor(6*t),o=1-r;i=6*t-s,(s&1)!==0&&(i=1-i);let c=a+i*(o-a),l,d,u;switch(s){default:case 6:case 0:l=o,d=c,u=a;break;case 1:l=c,d=o,u=a;break;case 2:l=a,d=o,u=c;break;case 3:l=a,d=c,u=o;break;case 4:l=c,d=a,u=o;break;case 5:l=o,d=a,u=c;break}return[l*255,d*255,u*255]};z.cmyk.rgb=function(e){let t=e[0]/100,a=e[1]/100,r=e[2]/100,n=e[3]/100,i=1-Math.min(1,t*(1-n)+n),s=1-Math.min(1,a*(1-n)+n),o=1-Math.min(1,r*(1-n)+n);return[i*255,s*255,o*255]};z.xyz.rgb=function(e){let t=e[0]/100,a=e[1]/100,r=e[2]/100,n,i,s;return n=t*3.2406+a*-1.5372+r*-.4986,i=t*-.9689+a*1.8758+r*.0415,s=t*.0557+a*-.204+r*1.057,n=n>.0031308?1.055*n**(1/2.4)-.055:n*12.92,i=i>.0031308?1.055*i**(1/2.4)-.055:i*12.92,s=s>.0031308?1.055*s**(1/2.4)-.055:s*12.92,n=Math.min(Math.max(0,n),1),i=Math.min(Math.max(0,i),1),s=Math.min(Math.max(0,s),1),[n*255,i*255,s*255]};z.xyz.lab=function(e){let t=e[0],a=e[1],r=e[2];t/=95.047,a/=100,r/=108.883,t=t>.008856?t**(1/3):7.787*t+16/116,a=a>.008856?a**(1/3):7.787*a+16/116,r=r>.008856?r**(1/3):7.787*r+16/116;let n=116*a-16,i=500*(t-a),s=200*(a-r);return[n,i,s]};z.lab.xyz=function(e){let t=e[0],a=e[1],r=e[2],n,i,s;i=(t+16)/116,n=a/500+i,s=i-r/200;let o=i**3,c=n**3,l=s**3;return i=o>.008856?o:(i-16/116)/7.787,n=c>.008856?c:(n-16/116)/7.787,s=l>.008856?l:(s-16/116)/7.787,n*=95.047,i*=100,s*=108.883,[n,i,s]};z.lab.lch=function(e){let t=e[0],a=e[1],r=e[2],n;n=Math.atan2(r,a)*360/2/Math.PI,n<0&&(n+=360);let s=Math.sqrt(a*a+r*r);return[t,s,n]};z.lch.lab=function(e){let t=e[0],a=e[1],n=e[2]/360*2*Math.PI,i=a*Math.cos(n),s=a*Math.sin(n);return[t,i,s]};z.rgb.ansi16=function(e,t=null){let[a,r,n]=e,i=t===null?z.rgb.hsv(e)[2]:t;if(i=Math.round(i/50),i===0)return 30;let s=30+(Math.round(n/255)<<2|Math.round(r/255)<<1|Math.round(a/255));return i===2&&(s+=60),s};z.hsv.ansi16=function(e){return z.rgb.ansi16(z.hsv.rgb(e),e[2])};z.rgb.ansi256=function(e){let t=e[0],a=e[1],r=e[2];return t===a&&a===r?t<8?16:t>248?231:Math.round((t-8)/247*24)+232:16+36*Math.round(t/255*5)+6*Math.round(a/255*5)+Math.round(r/255*5)};z.ansi16.rgb=function(e){let t=e%10;if(t===0||t===7)return e>50&&(t+=3.5),t=t/10.5*255,[t,t,t];let a=(~~(e>50)+1)*.5,r=(t&1)*a*255,n=(t>>1&1)*a*255,i=(t>>2&1)*a*255;return[r,n,i]};z.ansi256.rgb=function(e){if(e>=232){let i=(e-232)*10+8;return[i,i,i]}e-=16;let t,a=Math.floor(e/36)/5*255,r=Math.floor((t=e%36)/6)/5*255,n=t%6/5*255;return[a,r,n]};z.rgb.hex=function(e){let a=(((Math.round(e[0])&255)<<16)+((Math.round(e[1])&255)<<8)+(Math.round(e[2])&255)).toString(16).toUpperCase();return"000000".substring(a.length)+a};z.hex.rgb=function(e){let t=e.toString(16).match(/[a-f0-9]{6}|[a-f0-9]{3}/i);if(!t)return[0,0,0];let a=t[0];t[0].length===3&&(a=a.split("").map(o=>o+o).join(""));let r=parseInt(a,16),n=r>>16&255,i=r>>8&255,s=r&255;return[n,i,s]};z.rgb.hcg=function(e){let t=e[0]/255,a=e[1]/255,r=e[2]/255,n=Math.max(Math.max(t,a),r),i=Math.min(Math.min(t,a),r),s=n-i,o,c;return s<1?o=i/(1-s):o=0,s<=0?c=0:n===t?c=(a-r)/s%6:n===a?c=2+(r-t)/s:c=4+(t-a)/s,c/=6,c%=1,[c*360,s*100,o*100]};z.hsl.hcg=function(e){let t=e[1]/100,a=e[2]/100,r=a<.5?2*t*a:2*t*(1-a),n=0;return r<1&&(n=(a-.5*r)/(1-r)),[e[0],r*100,n*100]};z.hsv.hcg=function(e){let t=e[1]/100,a=e[2]/100,r=t*a,n=0;return r<1&&(n=(a-r)/(1-r)),[e[0],r*100,n*100]};z.hcg.rgb=function(e){let t=e[0]/360,a=e[1]/100,r=e[2]/100;if(a===0)return[r*255,r*255,r*255];let n=[0,0,0],i=t%1*6,s=i%1,o=1-s,c=0;switch(Math.floor(i)){case 0:n[0]=1,n[1]=s,n[2]=0;break;case 1:n[0]=o,n[1]=1,n[2]=0;break;case 2:n[0]=0,n[1]=1,n[2]=s;break;case 3:n[0]=0,n[1]=o,n[2]=1;break;case 4:n[0]=s,n[1]=0,n[2]=1;break;default:n[0]=1,n[1]=0,n[2]=o}return c=(1-a)*r,[(a*n[0]+c)*255,(a*n[1]+c)*255,(a*n[2]+c)*255]};z.hcg.hsv=function(e){let t=e[1]/100,a=e[2]/100,r=t+a*(1-t),n=0;return r>0&&(n=t/r),[e[0],n*100,r*100]};z.hcg.hsl=function(e){let t=e[1]/100,r=e[2]/100*(1-t)+.5*t,n=0;return r>0&&r<.5?n=t/(2*r):r>=.5&&r<1&&(n=t/(2*(1-r))),[e[0],n*100,r*100]};z.hcg.hwb=function(e){let t=e[1]/100,a=e[2]/100,r=t+a*(1-t);return[e[0],(r-t)*100,(1-r)*100]};z.hwb.hcg=function(e){let t=e[1]/100,r=1-e[2]/100,n=r-t,i=0;return n<1&&(i=(r-n)/(1-n)),[e[0],n*100,i*100]};z.apple.rgb=function(e){return[e[0]/65535*255,e[1]/65535*255,e[2]/65535*255]};z.rgb.apple=function(e){return[e[0]/255*65535,e[1]/255*65535,e[2]/255*65535]};z.gray.rgb=function(e){return[e[0]/100*255,e[0]/100*255,e[0]/100*255]};z.gray.hsl=function(e){return[0,0,e[0]]};z.gray.hsv=z.gray.hsl;z.gray.hwb=function(e){return[0,100,e[0]]};z.gray.cmyk=function(e){return[0,0,0,e[0]]};z.gray.lab=function(e){return[e[0],0,0]};z.gray.hex=function(e){let t=Math.round(e[0]/100*255)&255,r=((t<<16)+(t<<8)+t).toString(16).toUpperCase();return"000000".substring(r.length)+r};z.rgb.gray=function(e){return[(e[0]+e[1]+e[2])/3/255*100]}});var Hb=p((dG,zb)=>{var Ps=Fc();function t5(){let e={},t=Object.keys(Ps);for(let a=t.length,r=0;r<a;r++)e[t[r]]={distance:-1,parent:null};return e}function a5(e){let t=t5(),a=[e];for(t[e].distance=0;a.length;){let r=a.pop(),n=Object.keys(Ps[r]);for(let i=n.length,s=0;s<i;s++){let o=n[s],c=t[o];c.distance===-1&&(c.distance=t[r].distance+1,c.parent=r,a.unshift(o))}}return t}function r5(e,t){return function(a){return t(e(a))}}function n5(e,t){let a=[t[e].parent,e],r=Ps[t[e].parent][e],n=t[e].parent;for(;t[n].parent;)a.unshift(t[n].parent),r=r5(Ps[t[n].parent][n],r),n=t[n].parent;return r.conversion=a,r}zb.exports=function(e){let t=a5(e),a={},r=Object.keys(t);for(let n=r.length,i=0;i<n;i++){let s=r[i];t[s].parent!==null&&(a[s]=n5(s,t))}return a}});var qb=p((uG,Yb)=>{var Uc=Fc(),i5=Hb(),Kr={},s5=Object.keys(Uc);function o5(e){let t=function(...a){let r=a[0];return r==null?r:(r.length>1&&(a=r),e(a))};return"conversion"in e&&(t.conversion=e.conversion),t}function l5(e){let t=function(...a){let r=a[0];if(r==null)return r;r.length>1&&(a=r);let n=e(a);if(typeof n=="object")for(let i=n.length,s=0;s<i;s++)n[s]=Math.round(n[s]);return n};return"conversion"in e&&(t.conversion=e.conversion),t}s5.forEach(e=>{Kr[e]={},Object.defineProperty(Kr[e],"channels",{value:Uc[e].channels}),Object.defineProperty(Kr[e],"labels",{value:Uc[e].labels});let t=i5(e);Object.keys(t).forEach(r=>{let n=t[r];Kr[e][r]=l5(n),Kr[e][r].raw=o5(n)})});Yb.exports=Kr});var jb=p((pG,Qb)=>{"use strict";var $b=(e,t)=>(...a)=>`\x1B[${e(...a)+t}m`,Vb=(e,t)=>(...a)=>{let r=e(...a);return`\x1B[${38+t};5;${r}m`},Kb=(e,t)=>(...a)=>{let r=e(...a);return`\x1B[${38+t};2;${r[0]};${r[1]};${r[2]}m`},Fs=e=>e,Wb=(e,t,a)=>[e,t,a],Wr=(e,t,a)=>{Object.defineProperty(e,t,{get:()=>{let r=a();return Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0}),r},enumerable:!0,configurable:!0})},Bc,Qr=(e,t,a,r)=>{Bc===void 0&&(Bc=qb());let n=r?10:0,i={};for(let[s,o]of Object.entries(Bc)){let c=s==="ansi16"?"ansi":s;s===t?i[c]=e(a,n):typeof o=="object"&&(i[c]=e(o[t],n))}return i};function c5(){let e=new Map,t={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]}};t.color.gray=t.color.blackBright,t.bgColor.bgGray=t.bgColor.bgBlackBright,t.color.grey=t.color.blackBright,t.bgColor.bgGrey=t.bgColor.bgBlackBright;for(let[a,r]of Object.entries(t)){for(let[n,i]of Object.entries(r))t[n]={open:`\x1B[${i[0]}m`,close:`\x1B[${i[1]}m`},r[n]=t[n],e.set(i[0],i[1]);Object.defineProperty(t,a,{value:r,enumerable:!1})}return Object.defineProperty(t,"codes",{value:e,enumerable:!1}),t.color.close="\x1B[39m",t.bgColor.close="\x1B[49m",Wr(t.color,"ansi",()=>Qr($b,"ansi16",Fs,!1)),Wr(t.color,"ansi256",()=>Qr(Vb,"ansi256",Fs,!1)),Wr(t.color,"ansi16m",()=>Qr(Kb,"rgb",Wb,!1)),Wr(t.bgColor,"ansi",()=>Qr($b,"ansi16",Fs,!0)),Wr(t.bgColor,"ansi256",()=>Qr(Vb,"ansi256",Fs,!0)),Wr(t.bgColor,"ansi16m",()=>Qr(Kb,"rgb",Wb,!0)),t}Object.defineProperty(Qb,"exports",{enumerable:!0,get:c5})});var Gc=p((mG,Xb)=>{"use strict";Xb.exports=(e,t=process.argv)=>{let a=e.startsWith("-")?"":e.length===1?"-":"--",r=t.indexOf(a+e),n=t.indexOf("--");return r!==-1&&(n===-1||r<n)}});var Yc=p((gG,Jb)=>{"use strict";var _5=ea("os"),Zb=ea("tty"),vt=Gc(),{env:We}=process,La;vt("no-color")||vt("no-colors")||vt("color=false")||vt("color=never")?La=0:(vt("color")||vt("colors")||vt("color=true")||vt("color=always"))&&(La=1);"FORCE_COLOR"in We&&(We.FORCE_COLOR==="true"?La=1:We.FORCE_COLOR==="false"?La=0:La=We.FORCE_COLOR.length===0?1:Math.min(parseInt(We.FORCE_COLOR,10),3));function zc(e){return e===0?!1:{level:e,hasBasic:!0,has256:e>=2,has16m:e>=3}}function Hc(e,t){if(La===0)return 0;if(vt("color=16m")||vt("color=full")||vt("color=truecolor"))return 3;if(vt("color=256"))return 2;if(e&&!t&&La===void 0)return 0;let a=La||0;if(We.TERM==="dumb")return a;if(process.platform==="win32"){let r=_5.release().split(".");return Number(r[0])>=10&&Number(r[2])>=10586?Number(r[2])>=14931?3:2:1}if("CI"in We)return["TRAVIS","CIRCLECI","APPVEYOR","GITLAB_CI","GITHUB_ACTIONS","BUILDKITE"].some(r=>r in We)||We.CI_NAME==="codeship"?1:a;if("TEAMCITY_VERSION"in We)return/^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(We.TEAMCITY_VERSION)?1:0;if(We.COLORTERM==="truecolor")return 3;if("TERM_PROGRAM"in We){let r=parseInt((We.TERM_PROGRAM_VERSION||"").split(".")[0],10);switch(We.TERM_PROGRAM){case"iTerm.app":return r>=3?3:2;case"Apple_Terminal":return 2}}return/-256(color)?$/i.test(We.TERM)?2:/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(We.TERM)||"COLORTERM"in We?1:a}function d5(e){let t=Hc(e,e&&e.isTTY);return zc(t)}Jb.exports={supportsColor:d5,stdout:zc(Hc(!0,Zb.isatty(1))),stderr:zc(Hc(!0,Zb.isatty(2)))}});var tC=p((fG,eC)=>{"use strict";var u5=(e,t,a)=>{let r=e.indexOf(t);if(r===-1)return e;let n=t.length,i=0,s="";do s+=e.substr(i,r-i)+t+a,i=r+n,r=e.indexOf(t,i);while(r!==-1);return s+=e.substr(i),s},p5=(e,t,a,r)=>{let n=0,i="";do{let s=e[r-1]==="\r";i+=e.substr(n,(s?r-1:r)-n)+t+(s?`\r
|
|
@@ -131,7 +131,7 @@ https://github.com/highlightjs/highlight.js/issues/2277`),bt=O,we=U);let st={cod
|
|
|
131
131
|
`+n_+t(e)};Pe.prototype.checkbox=function(e){return typeof e=="object"&&(e=e.checked),"["+(e?"X":" ")+"] "};Pe.prototype.paragraph=function(e){typeof e=="object"&&(e=this.parser.parseInline(e.tokens));var t=i_(this.o.paragraph,this.transform);return e=t(e),this.o.reflowText&&(e=dR(e,this.o.width,this.options.gfm)),rr(e)};Pe.prototype.table=function(e,t){if(typeof e=="object"){let r=e;e="";let n="";for(let i=0;i<r.header.length;i++)n+=this.tablecell(r.header[i]);e+=this.tablerow({text:n}),t="";for(let i=0;i<r.rows.length;i++){let s=r.rows[i];n="";for(let o=0;o<s.length;o++)n+=this.tablecell(s[o]);t+=this.tablerow({text:n})}}var a=new iR.default(Object.assign({},{head:nR(e)[0]},this.tableSettings));return nR(t,this.transform).forEach(function(r){a.push(r)}),rr(this.o.table(a.toString()))};Pe.prototype.tablerow=function(e){return typeof e=="object"&&(e=e.text),t_+e+t_+`
|
|
132
132
|
`};Pe.prototype.tablecell=function(e){return typeof e=="object"&&(e=this.parser.parseInline(e.tokens)),e+lR};Pe.prototype.strong=function(e){return typeof e=="object"&&(e=this.parser.parseInline(e.tokens)),this.o.strong(e)};Pe.prototype.em=function(e){return typeof e=="object"&&(e=this.parser.parseInline(e.tokens)),e=r_(e,this.o.reflowText),this.o.em(e)};Pe.prototype.codespan=function(e){return typeof e=="object"&&(e=e.text),e=r_(e,this.o.reflowText),this.o.codespan(e.replace(/:/g,cR))};Pe.prototype.br=function(){return this.o.reflowText?Ks:`
|
|
133
133
|
`};Pe.prototype.del=function(e){return typeof e=="object"&&(e=this.parser.parseInline(e.tokens)),this.o.del(e)};Pe.prototype.link=function(e,t,a){if(typeof e=="object"&&(t=e.title,a=this.parser.parseInline(e.tokens),e=e.href),this.options.sanitize){try{var r=decodeURIComponent(unescape(e)).replace(/[^\w:]/g,"").toLowerCase()}catch{return""}if(r.indexOf("javascript:")===0)return""}var n=a&&a!==e,i="";if(oR.default.stdout){let s="";a?s=this.o.href(this.emoji(a)):s=this.o.href(e),i=Vs.link(s,e.replace(/\+/g,"%20"))}else n&&(i+=this.emoji(a)+" ("),i+=this.o.href(e),n&&(i+=")");return this.o.link(i)};Pe.prototype.image=function(e,t,a){if(typeof e=="object"&&(t=e.title,a=e.text,e=e.href),typeof this.o.image=="function")return this.o.image(e,t,a);var r="
|
|
134
|
-
`};qP="\\*",$P="\\d+\\.",pR="(?:"+[qP,$P].join("|")+")";mR=function(e,t){return e.match("^(?:"+t+")*"+pR)};n_="* ";rR=function(e){return e+". "}});var _e,s_,P,jt,ni=Ce(()=>{(function(e){e.assertEqual=n=>{};function t(n){}e.assertIs=t;function a(n){throw new Error}e.assertNever=a,e.arrayToEnum=n=>{let i={};for(let s of n)i[s]=s;return i},e.getValidEnumValues=n=>{let i=e.objectKeys(n).filter(o=>typeof n[n[o]]!="number"),s={};for(let o of i)s[o]=n[o];return e.objectValues(s)},e.objectValues=n=>e.objectKeys(n).map(function(i){return n[i]}),e.objectKeys=typeof Object.keys=="function"?n=>Object.keys(n):n=>{let i=[];for(let s in n)Object.prototype.hasOwnProperty.call(n,s)&&i.push(s);return i},e.find=(n,i)=>{for(let s of n)if(i(s))return s},e.isInteger=typeof Number.isInteger=="function"?n=>Number.isInteger(n):n=>typeof n=="number"&&Number.isFinite(n)&&Math.floor(n)===n;function r(n,i=" | "){return n.map(s=>typeof s=="string"?`'${s}'`:s).join(i)}e.joinValues=r,e.jsonStringifyReplacer=(n,i)=>typeof i=="bigint"?i.toString():i})(_e||(_e={}));(function(e){e.mergeShapes=(t,a)=>({...t,...a})})(s_||(s_={}));P=_e.arrayToEnum(["string","nan","number","integer","float","boolean","date","bigint","symbol","function","undefined","null","array","object","unknown","promise","void","never","map","set"]),jt=e=>{switch(typeof e){case"undefined":return P.undefined;case"string":return P.string;case"number":return Number.isNaN(e)?P.nan:P.number;case"boolean":return P.boolean;case"function":return P.function;case"bigint":return P.bigint;case"symbol":return P.symbol;case"object":return Array.isArray(e)?P.array:e===null?P.null:e.then&&typeof e.then=="function"&&e.catch&&typeof e.catch=="function"?P.promise:typeof Map<"u"&&e instanceof Map?P.map:typeof Set<"u"&&e instanceof Set?P.set:typeof Date<"u"&&e instanceof Date?P.date:P.object;default:return P.unknown}}});var D,i2,Et,Ws=Ce(()=>{ni();D=_e.arrayToEnum(["invalid_type","invalid_literal","custom","invalid_union","invalid_union_discriminator","invalid_enum_value","unrecognized_keys","invalid_arguments","invalid_return_type","invalid_date","invalid_string","too_small","too_big","invalid_intersection_types","not_multiple_of","not_finite"]),i2=e=>JSON.stringify(e,null,2).replace(/"([^"]+)":/g,"$1:"),Et=class e extends Error{get errors(){return this.issues}constructor(t){super(),this.issues=[],this.addIssue=r=>{this.issues=[...this.issues,r]},this.addIssues=(r=[])=>{this.issues=[...this.issues,...r]};let a=new.target.prototype;Object.setPrototypeOf?Object.setPrototypeOf(this,a):this.__proto__=a,this.name="ZodError",this.issues=t}format(t){let a=t||function(i){return i.message},r={_errors:[]},n=i=>{for(let s of i.issues)if(s.code==="invalid_union")s.unionErrors.map(n);else if(s.code==="invalid_return_type")n(s.returnTypeError);else if(s.code==="invalid_arguments")n(s.argumentsError);else if(s.path.length===0)r._errors.push(a(s));else{let o=r,c=0;for(;c<s.path.length;){let l=s.path[c];c===s.path.length-1?(o[l]=o[l]||{_errors:[]},o[l]._errors.push(a(s))):o[l]=o[l]||{_errors:[]},o=o[l],c++}}};return n(this),r}static assert(t){if(!(t instanceof e))throw new Error(`Not a ZodError: ${t}`)}toString(){return this.message}get message(){return JSON.stringify(this.issues,_e.jsonStringifyReplacer,2)}get isEmpty(){return this.issues.length===0}flatten(t=a=>a.message){let a={},r=[];for(let n of this.issues)if(n.path.length>0){let i=n.path[0];a[i]=a[i]||[],a[i].push(t(n))}else r.push(t(n));return{formErrors:r,fieldErrors:a}}get formErrors(){return this.flatten()}};Et.create=e=>new Et(e)});var s2,fa,o_=Ce(()=>{Ws();ni();s2=(e,t)=>{let a;switch(e.code){case D.invalid_type:e.received===P.undefined?a="Required":a=`Expected ${e.expected}, received ${e.received}`;break;case D.invalid_literal:a=`Invalid literal value, expected ${JSON.stringify(e.expected,_e.jsonStringifyReplacer)}`;break;case D.unrecognized_keys:a=`Unrecognized key(s) in object: ${_e.joinValues(e.keys,", ")}`;break;case D.invalid_union:a="Invalid input";break;case D.invalid_union_discriminator:a=`Invalid discriminator value. Expected ${_e.joinValues(e.options)}`;break;case D.invalid_enum_value:a=`Invalid enum value. Expected ${_e.joinValues(e.options)}, received '${e.received}'`;break;case D.invalid_arguments:a="Invalid function arguments";break;case D.invalid_return_type:a="Invalid function return type";break;case D.invalid_date:a="Invalid date";break;case D.invalid_string:typeof e.validation=="object"?"includes"in e.validation?(a=`Invalid input: must include "${e.validation.includes}"`,typeof e.validation.position=="number"&&(a=`${a} at one or more positions greater than or equal to ${e.validation.position}`)):"startsWith"in e.validation?a=`Invalid input: must start with "${e.validation.startsWith}"`:"endsWith"in e.validation?a=`Invalid input: must end with "${e.validation.endsWith}"`:_e.assertNever(e.validation):e.validation!=="regex"?a=`Invalid ${e.validation}`:a="Invalid";break;case D.too_small:e.type==="array"?a=`Array must contain ${e.exact?"exactly":e.inclusive?"at least":"more than"} ${e.minimum} element(s)`:e.type==="string"?a=`String must contain ${e.exact?"exactly":e.inclusive?"at least":"over"} ${e.minimum} character(s)`:e.type==="number"?a=`Number must be ${e.exact?"exactly equal to ":e.inclusive?"greater than or equal to ":"greater than "}${e.minimum}`:e.type==="bigint"?a=`Number must be ${e.exact?"exactly equal to ":e.inclusive?"greater than or equal to ":"greater than "}${e.minimum}`:e.type==="date"?a=`Date must be ${e.exact?"exactly equal to ":e.inclusive?"greater than or equal to ":"greater than "}${new Date(Number(e.minimum))}`:a="Invalid input";break;case D.too_big:e.type==="array"?a=`Array must contain ${e.exact?"exactly":e.inclusive?"at most":"less than"} ${e.maximum} element(s)`:e.type==="string"?a=`String must contain ${e.exact?"exactly":e.inclusive?"at most":"under"} ${e.maximum} character(s)`:e.type==="number"?a=`Number must be ${e.exact?"exactly":e.inclusive?"less than or equal to":"less than"} ${e.maximum}`:e.type==="bigint"?a=`BigInt must be ${e.exact?"exactly":e.inclusive?"less than or equal to":"less than"} ${e.maximum}`:e.type==="date"?a=`Date must be ${e.exact?"exactly":e.inclusive?"smaller than or equal to":"smaller than"} ${new Date(Number(e.maximum))}`:a="Invalid input";break;case D.custom:a="Invalid input";break;case D.invalid_intersection_types:a="Intersection results could not be merged";break;case D.not_multiple_of:a=`Number must be a multiple of ${e.multipleOf}`;break;case D.not_finite:a="Number must be finite";break;default:a=t.defaultError,_e.assertNever(e)}return{message:a}},fa=s2});function o2(e){hR=e}function nn(){return hR}var hR,Qs=Ce(()=>{o_();hR=fa});function M(e,t){let a=nn(),r=ii({issueData:t,data:e.data,path:e.path,errorMaps:[e.common.contextualErrorMap,e.schemaErrorMap,a,a===fa?void 0:fa].filter(n=>!!n)});e.common.issues.push(r)}var ii,l2,et,j,nr,it,js,Xs,Pa,sn,l_=Ce(()=>{Qs();o_();ii=e=>{let{data:t,path:a,errorMaps:r,issueData:n}=e,i=[...a,...n.path||[]],s={...n,path:i};if(n.message!==void 0)return{...n,path:i,message:n.message};let o="",c=r.filter(l=>!!l).slice().reverse();for(let l of c)o=l(s,{data:t,defaultError:o}).message;return{...n,path:i,message:o}},l2=[];et=class e{constructor(){this.value="valid"}dirty(){this.value==="valid"&&(this.value="dirty")}abort(){this.value!=="aborted"&&(this.value="aborted")}static mergeArray(t,a){let r=[];for(let n of a){if(n.status==="aborted")return j;n.status==="dirty"&&t.dirty(),r.push(n.value)}return{status:t.value,value:r}}static async mergeObjectAsync(t,a){let r=[];for(let n of a){let i=await n.key,s=await n.value;r.push({key:i,value:s})}return e.mergeObjectSync(t,r)}static mergeObjectSync(t,a){let r={};for(let n of a){let{key:i,value:s}=n;if(i.status==="aborted"||s.status==="aborted")return j;i.status==="dirty"&&t.dirty(),s.status==="dirty"&&t.dirty(),i.value!=="__proto__"&&(typeof s.value<"u"||n.alwaysSet)&&(r[i.value]=s.value)}return{status:t.value,value:r}}},j=Object.freeze({status:"aborted"}),nr=e=>({status:"dirty",value:e}),it=e=>({status:"valid",value:e}),js=e=>e.status==="aborted",Xs=e=>e.status==="dirty",Pa=e=>e.status==="valid",sn=e=>typeof Promise<"u"&&e instanceof Promise});var SR=Ce(()=>{});var H,TR=Ce(()=>{(function(e){e.errToObj=t=>typeof t=="string"?{message:t}:t||{},e.toString=t=>typeof t=="string"?t:t?.message})(H||(H={}))});function te(e){if(!e)return{};let{errorMap:t,invalid_type_error:a,required_error:r,description:n}=e;if(t&&(a||r))throw new Error(`Can't use "invalid_type_error" or "required_error" in conjunction with custom error map.`);return t?{errorMap:t,description:n}:{errorMap:(s,o)=>{let{message:c}=e;return s.code==="invalid_enum_value"?{message:c??o.defaultError}:typeof o.data>"u"?{message:c??r??o.defaultError}:s.code!=="invalid_type"?{message:o.defaultError}:{message:c??a??o.defaultError}},description:n}}function RR(e){let t="[0-5]\\d";e.precision?t=`${t}\\.\\d{${e.precision}}`:e.precision==null&&(t=`${t}(\\.\\d+)?`);let a=e.precision?"+":"?";return`([01]\\d|2[0-3]):[0-5]\\d(:${t})${a}`}function A2(e){return new RegExp(`^${RR(e)}$`)}function AR(e){let t=`${CR}T${RR(e)}`,a=[];return a.push(e.local?"Z?":"Z"),e.offset&&a.push("([+-]\\d{2}:?\\d{2})"),t=`${t}(${a.join("|")})`,new RegExp(`^${t}$`)}function N2(e,t){return!!((t==="v4"||!t)&&h2.test(e)||(t==="v6"||!t)&&T2.test(e))}function O2(e,t){if(!m2.test(e))return!1;try{let[a]=e.split(".");if(!a)return!1;let r=a.replace(/-/g,"+").replace(/_/g,"/").padEnd(a.length+(4-a.length%4)%4,"="),n=JSON.parse(atob(r));return!(typeof n!="object"||n===null||"typ"in n&&n?.typ!=="JWT"||!n.alg||t&&n.alg!==t)}catch{return!1}}function D2(e,t){return!!((t==="v4"||!t)&&S2.test(e)||(t==="v6"||!t)&&y2.test(e))}function I2(e,t){let a=(e.toString().split(".")[1]||"").length,r=(t.toString().split(".")[1]||"").length,n=a>r?a:r,i=Number.parseInt(e.toFixed(n).replace(".","")),s=Number.parseInt(t.toFixed(n).replace(".",""));return i%s/10**n}function on(e){if(e instanceof ht){let t={};for(let a in e.shape){let r=e.shape[a];t[a]=wt.create(on(r))}return new ht({...e._def,shape:()=>t})}else return e instanceof Sa?new Sa({...e._def,type:on(e.element)}):e instanceof wt?wt.create(on(e.unwrap())):e instanceof Zt?Zt.create(on(e.unwrap())):e instanceof Xt?Xt.create(e.items.map(t=>on(t))):e}function __(e,t){let a=jt(e),r=jt(t);if(e===t)return{valid:!0,data:e};if(a===P.object&&r===P.object){let n=_e.objectKeys(t),i=_e.objectKeys(e).filter(o=>n.indexOf(o)!==-1),s={...e,...t};for(let o of i){let c=__(e[o],t[o]);if(!c.valid)return{valid:!1};s[o]=c.data}return{valid:!0,data:s}}else if(a===P.array&&r===P.array){if(e.length!==t.length)return{valid:!1};let n=[];for(let i=0;i<e.length;i++){let s=e[i],o=t[i],c=__(s,o);if(!c.valid)return{valid:!1};n.push(c.data)}return{valid:!0,data:n}}else return a===P.date&&r===P.date&&+e==+t?{valid:!0,data:e}:{valid:!1}}function NR(e,t){return new gr({values:e,typeName:J.ZodEnum,...te(t)})}function bR(e,t){let a=typeof e=="function"?e(t):typeof e=="string"?{message:e}:e;return typeof a=="string"?{message:a}:a}function OR(e,t={},a){return e?Ua.create().superRefine((r,n)=>{let i=e(r);if(i instanceof Promise)return i.then(s=>{if(!s){let o=bR(t,r),c=o.fatal??a??!0;n.addIssue({code:"custom",...o,fatal:c})}});if(!i){let s=bR(t,r),o=s.fatal??a??!0;n.addIssue({code:"custom",...s,fatal:o})}}):Ua.create()}var xt,yR,re,c2,_2,d2,u2,p2,m2,g2,f2,E2,c_,h2,S2,T2,y2,b2,C2,CR,R2,Fa,ir,sr,or,lr,ln,cr,_r,Ua,ha,Ht,cn,Sa,ht,dr,Ea,Zs,ur,Xt,Js,_n,dn,eo,pr,mr,gr,fr,Ba,Mt,wt,Zt,Er,hr,un,k2,si,oi,Sr,v2,J,w2,DR,IR,x2,M2,kR,L2,P2,F2,U2,B2,G2,z2,H2,Y2,q2,$2,V2,K2,W2,Q2,j2,X2,Z2,J2,e4,t4,a4,r4,n4,i4,s4,o4,l4,c4,_4,d4,u4,p4,m4,vR=Ce(()=>{Ws();Qs();TR();l_();ni();xt=class{constructor(t,a,r,n){this._cachedPath=[],this.parent=t,this.data=a,this._path=r,this._key=n}get path(){return this._cachedPath.length||(Array.isArray(this._key)?this._cachedPath.push(...this._path,...this._key):this._cachedPath.push(...this._path,this._key)),this._cachedPath}},yR=(e,t)=>{if(Pa(t))return{success:!0,data:t.value};if(!e.common.issues.length)throw new Error("Validation failed but no issues detected.");return{success:!1,get error(){if(this._error)return this._error;let a=new Et(e.common.issues);return this._error=a,this._error}}};re=class{get description(){return this._def.description}_getType(t){return jt(t.data)}_getOrReturnCtx(t,a){return a||{common:t.parent.common,data:t.data,parsedType:jt(t.data),schemaErrorMap:this._def.errorMap,path:t.path,parent:t.parent}}_processInputParams(t){return{status:new et,ctx:{common:t.parent.common,data:t.data,parsedType:jt(t.data),schemaErrorMap:this._def.errorMap,path:t.path,parent:t.parent}}}_parseSync(t){let a=this._parse(t);if(sn(a))throw new Error("Synchronous parse encountered promise.");return a}_parseAsync(t){let a=this._parse(t);return Promise.resolve(a)}parse(t,a){let r=this.safeParse(t,a);if(r.success)return r.data;throw r.error}safeParse(t,a){let r={common:{issues:[],async:a?.async??!1,contextualErrorMap:a?.errorMap},path:a?.path||[],schemaErrorMap:this._def.errorMap,parent:null,data:t,parsedType:jt(t)},n=this._parseSync({data:t,path:r.path,parent:r});return yR(r,n)}"~validate"(t){let a={common:{issues:[],async:!!this["~standard"].async},path:[],schemaErrorMap:this._def.errorMap,parent:null,data:t,parsedType:jt(t)};if(!this["~standard"].async)try{let r=this._parseSync({data:t,path:[],parent:a});return Pa(r)?{value:r.value}:{issues:a.common.issues}}catch(r){r?.message?.toLowerCase()?.includes("encountered")&&(this["~standard"].async=!0),a.common={issues:[],async:!0}}return this._parseAsync({data:t,path:[],parent:a}).then(r=>Pa(r)?{value:r.value}:{issues:a.common.issues})}async parseAsync(t,a){let r=await this.safeParseAsync(t,a);if(r.success)return r.data;throw r.error}async safeParseAsync(t,a){let r={common:{issues:[],contextualErrorMap:a?.errorMap,async:!0},path:a?.path||[],schemaErrorMap:this._def.errorMap,parent:null,data:t,parsedType:jt(t)},n=this._parse({data:t,path:r.path,parent:r}),i=await(sn(n)?n:Promise.resolve(n));return yR(r,i)}refine(t,a){let r=n=>typeof a=="string"||typeof a>"u"?{message:a}:typeof a=="function"?a(n):a;return this._refinement((n,i)=>{let s=t(n),o=()=>i.addIssue({code:D.custom,...r(n)});return typeof Promise<"u"&&s instanceof Promise?s.then(c=>c?!0:(o(),!1)):s?!0:(o(),!1)})}refinement(t,a){return this._refinement((r,n)=>t(r)?!0:(n.addIssue(typeof a=="function"?a(r,n):a),!1))}_refinement(t){return new Mt({schema:this,typeName:J.ZodEffects,effect:{type:"refinement",refinement:t}})}superRefine(t){return this._refinement(t)}constructor(t){this.spa=this.safeParseAsync,this._def=t,this.parse=this.parse.bind(this),this.safeParse=this.safeParse.bind(this),this.parseAsync=this.parseAsync.bind(this),this.safeParseAsync=this.safeParseAsync.bind(this),this.spa=this.spa.bind(this),this.refine=this.refine.bind(this),this.refinement=this.refinement.bind(this),this.superRefine=this.superRefine.bind(this),this.optional=this.optional.bind(this),this.nullable=this.nullable.bind(this),this.nullish=this.nullish.bind(this),this.array=this.array.bind(this),this.promise=this.promise.bind(this),this.or=this.or.bind(this),this.and=this.and.bind(this),this.transform=this.transform.bind(this),this.brand=this.brand.bind(this),this.default=this.default.bind(this),this.catch=this.catch.bind(this),this.describe=this.describe.bind(this),this.pipe=this.pipe.bind(this),this.readonly=this.readonly.bind(this),this.isNullable=this.isNullable.bind(this),this.isOptional=this.isOptional.bind(this),this["~standard"]={version:1,vendor:"zod",validate:a=>this["~validate"](a)}}optional(){return wt.create(this,this._def)}nullable(){return Zt.create(this,this._def)}nullish(){return this.nullable().optional()}array(){return Sa.create(this)}promise(){return Ba.create(this,this._def)}or(t){return dr.create([this,t],this._def)}and(t){return ur.create(this,t,this._def)}transform(t){return new Mt({...te(this._def),schema:this,typeName:J.ZodEffects,effect:{type:"transform",transform:t}})}default(t){let a=typeof t=="function"?t:()=>t;return new Er({...te(this._def),innerType:this,defaultValue:a,typeName:J.ZodDefault})}brand(){return new si({typeName:J.ZodBranded,type:this,...te(this._def)})}catch(t){let a=typeof t=="function"?t:()=>t;return new hr({...te(this._def),innerType:this,catchValue:a,typeName:J.ZodCatch})}describe(t){let a=this.constructor;return new a({...this._def,description:t})}pipe(t){return oi.create(this,t)}readonly(){return Sr.create(this)}isOptional(){return this.safeParse(void 0).success}isNullable(){return this.safeParse(null).success}},c2=/^c[^\s-]{8,}$/i,_2=/^[0-9a-z]+$/,d2=/^[0-9A-HJKMNP-TV-Z]{26}$/i,u2=/^[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}$/i,p2=/^[a-z0-9_-]{21}$/i,m2=/^[A-Za-z0-9-_]+\.[A-Za-z0-9-_]+\.[A-Za-z0-9-_]*$/,g2=/^[-+]?P(?!$)(?:(?:[-+]?\d+Y)|(?:[-+]?\d+[.,]\d+Y$))?(?:(?:[-+]?\d+M)|(?:[-+]?\d+[.,]\d+M$))?(?:(?:[-+]?\d+W)|(?:[-+]?\d+[.,]\d+W$))?(?:(?:[-+]?\d+D)|(?:[-+]?\d+[.,]\d+D$))?(?:T(?=[\d+-])(?:(?:[-+]?\d+H)|(?:[-+]?\d+[.,]\d+H$))?(?:(?:[-+]?\d+M)|(?:[-+]?\d+[.,]\d+M$))?(?:[-+]?\d+(?:[.,]\d+)?S)?)??$/,f2=/^(?!\.)(?!.*\.\.)([A-Z0-9_'+\-\.]*)[A-Z0-9_+-]@([A-Z0-9][A-Z0-9\-]*\.)+[A-Z]{2,}$/i,E2="^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$",h2=/^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])$/,S2=/^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\/(3[0-2]|[12]?[0-9])$/,T2=/^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))$/,y2=/^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))\/(12[0-8]|1[01][0-9]|[1-9]?[0-9])$/,b2=/^([0-9a-zA-Z+/]{4})*(([0-9a-zA-Z+/]{2}==)|([0-9a-zA-Z+/]{3}=))?$/,C2=/^([0-9a-zA-Z-_]{4})*(([0-9a-zA-Z-_]{2}(==)?)|([0-9a-zA-Z-_]{3}(=)?))?$/,CR="((\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-((0[13578]|1[02])-(0[1-9]|[12]\\d|3[01])|(0[469]|11)-(0[1-9]|[12]\\d|30)|(02)-(0[1-9]|1\\d|2[0-8])))",R2=new RegExp(`^${CR}$`);Fa=class e extends re{_parse(t){if(this._def.coerce&&(t.data=String(t.data)),this._getType(t)!==P.string){let i=this._getOrReturnCtx(t);return M(i,{code:D.invalid_type,expected:P.string,received:i.parsedType}),j}let r=new et,n;for(let i of this._def.checks)if(i.kind==="min")t.data.length<i.value&&(n=this._getOrReturnCtx(t,n),M(n,{code:D.too_small,minimum:i.value,type:"string",inclusive:!0,exact:!1,message:i.message}),r.dirty());else if(i.kind==="max")t.data.length>i.value&&(n=this._getOrReturnCtx(t,n),M(n,{code:D.too_big,maximum:i.value,type:"string",inclusive:!0,exact:!1,message:i.message}),r.dirty());else if(i.kind==="length"){let s=t.data.length>i.value,o=t.data.length<i.value;(s||o)&&(n=this._getOrReturnCtx(t,n),s?M(n,{code:D.too_big,maximum:i.value,type:"string",inclusive:!0,exact:!0,message:i.message}):o&&M(n,{code:D.too_small,minimum:i.value,type:"string",inclusive:!0,exact:!0,message:i.message}),r.dirty())}else if(i.kind==="email")f2.test(t.data)||(n=this._getOrReturnCtx(t,n),M(n,{validation:"email",code:D.invalid_string,message:i.message}),r.dirty());else if(i.kind==="emoji")c_||(c_=new RegExp(E2,"u")),c_.test(t.data)||(n=this._getOrReturnCtx(t,n),M(n,{validation:"emoji",code:D.invalid_string,message:i.message}),r.dirty());else if(i.kind==="uuid")u2.test(t.data)||(n=this._getOrReturnCtx(t,n),M(n,{validation:"uuid",code:D.invalid_string,message:i.message}),r.dirty());else if(i.kind==="nanoid")p2.test(t.data)||(n=this._getOrReturnCtx(t,n),M(n,{validation:"nanoid",code:D.invalid_string,message:i.message}),r.dirty());else if(i.kind==="cuid")c2.test(t.data)||(n=this._getOrReturnCtx(t,n),M(n,{validation:"cuid",code:D.invalid_string,message:i.message}),r.dirty());else if(i.kind==="cuid2")_2.test(t.data)||(n=this._getOrReturnCtx(t,n),M(n,{validation:"cuid2",code:D.invalid_string,message:i.message}),r.dirty());else if(i.kind==="ulid")d2.test(t.data)||(n=this._getOrReturnCtx(t,n),M(n,{validation:"ulid",code:D.invalid_string,message:i.message}),r.dirty());else if(i.kind==="url")try{new URL(t.data)}catch{n=this._getOrReturnCtx(t,n),M(n,{validation:"url",code:D.invalid_string,message:i.message}),r.dirty()}else i.kind==="regex"?(i.regex.lastIndex=0,i.regex.test(t.data)||(n=this._getOrReturnCtx(t,n),M(n,{validation:"regex",code:D.invalid_string,message:i.message}),r.dirty())):i.kind==="trim"?t.data=t.data.trim():i.kind==="includes"?t.data.includes(i.value,i.position)||(n=this._getOrReturnCtx(t,n),M(n,{code:D.invalid_string,validation:{includes:i.value,position:i.position},message:i.message}),r.dirty()):i.kind==="toLowerCase"?t.data=t.data.toLowerCase():i.kind==="toUpperCase"?t.data=t.data.toUpperCase():i.kind==="startsWith"?t.data.startsWith(i.value)||(n=this._getOrReturnCtx(t,n),M(n,{code:D.invalid_string,validation:{startsWith:i.value},message:i.message}),r.dirty()):i.kind==="endsWith"?t.data.endsWith(i.value)||(n=this._getOrReturnCtx(t,n),M(n,{code:D.invalid_string,validation:{endsWith:i.value},message:i.message}),r.dirty()):i.kind==="datetime"?AR(i).test(t.data)||(n=this._getOrReturnCtx(t,n),M(n,{code:D.invalid_string,validation:"datetime",message:i.message}),r.dirty()):i.kind==="date"?R2.test(t.data)||(n=this._getOrReturnCtx(t,n),M(n,{code:D.invalid_string,validation:"date",message:i.message}),r.dirty()):i.kind==="time"?A2(i).test(t.data)||(n=this._getOrReturnCtx(t,n),M(n,{code:D.invalid_string,validation:"time",message:i.message}),r.dirty()):i.kind==="duration"?g2.test(t.data)||(n=this._getOrReturnCtx(t,n),M(n,{validation:"duration",code:D.invalid_string,message:i.message}),r.dirty()):i.kind==="ip"?N2(t.data,i.version)||(n=this._getOrReturnCtx(t,n),M(n,{validation:"ip",code:D.invalid_string,message:i.message}),r.dirty()):i.kind==="jwt"?O2(t.data,i.alg)||(n=this._getOrReturnCtx(t,n),M(n,{validation:"jwt",code:D.invalid_string,message:i.message}),r.dirty()):i.kind==="cidr"?D2(t.data,i.version)||(n=this._getOrReturnCtx(t,n),M(n,{validation:"cidr",code:D.invalid_string,message:i.message}),r.dirty()):i.kind==="base64"?b2.test(t.data)||(n=this._getOrReturnCtx(t,n),M(n,{validation:"base64",code:D.invalid_string,message:i.message}),r.dirty()):i.kind==="base64url"?C2.test(t.data)||(n=this._getOrReturnCtx(t,n),M(n,{validation:"base64url",code:D.invalid_string,message:i.message}),r.dirty()):_e.assertNever(i);return{status:r.value,value:t.data}}_regex(t,a,r){return this.refinement(n=>t.test(n),{validation:a,code:D.invalid_string,...H.errToObj(r)})}_addCheck(t){return new e({...this._def,checks:[...this._def.checks,t]})}email(t){return this._addCheck({kind:"email",...H.errToObj(t)})}url(t){return this._addCheck({kind:"url",...H.errToObj(t)})}emoji(t){return this._addCheck({kind:"emoji",...H.errToObj(t)})}uuid(t){return this._addCheck({kind:"uuid",...H.errToObj(t)})}nanoid(t){return this._addCheck({kind:"nanoid",...H.errToObj(t)})}cuid(t){return this._addCheck({kind:"cuid",...H.errToObj(t)})}cuid2(t){return this._addCheck({kind:"cuid2",...H.errToObj(t)})}ulid(t){return this._addCheck({kind:"ulid",...H.errToObj(t)})}base64(t){return this._addCheck({kind:"base64",...H.errToObj(t)})}base64url(t){return this._addCheck({kind:"base64url",...H.errToObj(t)})}jwt(t){return this._addCheck({kind:"jwt",...H.errToObj(t)})}ip(t){return this._addCheck({kind:"ip",...H.errToObj(t)})}cidr(t){return this._addCheck({kind:"cidr",...H.errToObj(t)})}datetime(t){return typeof t=="string"?this._addCheck({kind:"datetime",precision:null,offset:!1,local:!1,message:t}):this._addCheck({kind:"datetime",precision:typeof t?.precision>"u"?null:t?.precision,offset:t?.offset??!1,local:t?.local??!1,...H.errToObj(t?.message)})}date(t){return this._addCheck({kind:"date",message:t})}time(t){return typeof t=="string"?this._addCheck({kind:"time",precision:null,message:t}):this._addCheck({kind:"time",precision:typeof t?.precision>"u"?null:t?.precision,...H.errToObj(t?.message)})}duration(t){return this._addCheck({kind:"duration",...H.errToObj(t)})}regex(t,a){return this._addCheck({kind:"regex",regex:t,...H.errToObj(a)})}includes(t,a){return this._addCheck({kind:"includes",value:t,position:a?.position,...H.errToObj(a?.message)})}startsWith(t,a){return this._addCheck({kind:"startsWith",value:t,...H.errToObj(a)})}endsWith(t,a){return this._addCheck({kind:"endsWith",value:t,...H.errToObj(a)})}min(t,a){return this._addCheck({kind:"min",value:t,...H.errToObj(a)})}max(t,a){return this._addCheck({kind:"max",value:t,...H.errToObj(a)})}length(t,a){return this._addCheck({kind:"length",value:t,...H.errToObj(a)})}nonempty(t){return this.min(1,H.errToObj(t))}trim(){return new e({...this._def,checks:[...this._def.checks,{kind:"trim"}]})}toLowerCase(){return new e({...this._def,checks:[...this._def.checks,{kind:"toLowerCase"}]})}toUpperCase(){return new e({...this._def,checks:[...this._def.checks,{kind:"toUpperCase"}]})}get isDatetime(){return!!this._def.checks.find(t=>t.kind==="datetime")}get isDate(){return!!this._def.checks.find(t=>t.kind==="date")}get isTime(){return!!this._def.checks.find(t=>t.kind==="time")}get isDuration(){return!!this._def.checks.find(t=>t.kind==="duration")}get isEmail(){return!!this._def.checks.find(t=>t.kind==="email")}get isURL(){return!!this._def.checks.find(t=>t.kind==="url")}get isEmoji(){return!!this._def.checks.find(t=>t.kind==="emoji")}get isUUID(){return!!this._def.checks.find(t=>t.kind==="uuid")}get isNANOID(){return!!this._def.checks.find(t=>t.kind==="nanoid")}get isCUID(){return!!this._def.checks.find(t=>t.kind==="cuid")}get isCUID2(){return!!this._def.checks.find(t=>t.kind==="cuid2")}get isULID(){return!!this._def.checks.find(t=>t.kind==="ulid")}get isIP(){return!!this._def.checks.find(t=>t.kind==="ip")}get isCIDR(){return!!this._def.checks.find(t=>t.kind==="cidr")}get isBase64(){return!!this._def.checks.find(t=>t.kind==="base64")}get isBase64url(){return!!this._def.checks.find(t=>t.kind==="base64url")}get minLength(){let t=null;for(let a of this._def.checks)a.kind==="min"&&(t===null||a.value>t)&&(t=a.value);return t}get maxLength(){let t=null;for(let a of this._def.checks)a.kind==="max"&&(t===null||a.value<t)&&(t=a.value);return t}};Fa.create=e=>new Fa({checks:[],typeName:J.ZodString,coerce:e?.coerce??!1,...te(e)});ir=class e extends re{constructor(){super(...arguments),this.min=this.gte,this.max=this.lte,this.step=this.multipleOf}_parse(t){if(this._def.coerce&&(t.data=Number(t.data)),this._getType(t)!==P.number){let i=this._getOrReturnCtx(t);return M(i,{code:D.invalid_type,expected:P.number,received:i.parsedType}),j}let r,n=new et;for(let i of this._def.checks)i.kind==="int"?_e.isInteger(t.data)||(r=this._getOrReturnCtx(t,r),M(r,{code:D.invalid_type,expected:"integer",received:"float",message:i.message}),n.dirty()):i.kind==="min"?(i.inclusive?t.data<i.value:t.data<=i.value)&&(r=this._getOrReturnCtx(t,r),M(r,{code:D.too_small,minimum:i.value,type:"number",inclusive:i.inclusive,exact:!1,message:i.message}),n.dirty()):i.kind==="max"?(i.inclusive?t.data>i.value:t.data>=i.value)&&(r=this._getOrReturnCtx(t,r),M(r,{code:D.too_big,maximum:i.value,type:"number",inclusive:i.inclusive,exact:!1,message:i.message}),n.dirty()):i.kind==="multipleOf"?I2(t.data,i.value)!==0&&(r=this._getOrReturnCtx(t,r),M(r,{code:D.not_multiple_of,multipleOf:i.value,message:i.message}),n.dirty()):i.kind==="finite"?Number.isFinite(t.data)||(r=this._getOrReturnCtx(t,r),M(r,{code:D.not_finite,message:i.message}),n.dirty()):_e.assertNever(i);return{status:n.value,value:t.data}}gte(t,a){return this.setLimit("min",t,!0,H.toString(a))}gt(t,a){return this.setLimit("min",t,!1,H.toString(a))}lte(t,a){return this.setLimit("max",t,!0,H.toString(a))}lt(t,a){return this.setLimit("max",t,!1,H.toString(a))}setLimit(t,a,r,n){return new e({...this._def,checks:[...this._def.checks,{kind:t,value:a,inclusive:r,message:H.toString(n)}]})}_addCheck(t){return new e({...this._def,checks:[...this._def.checks,t]})}int(t){return this._addCheck({kind:"int",message:H.toString(t)})}positive(t){return this._addCheck({kind:"min",value:0,inclusive:!1,message:H.toString(t)})}negative(t){return this._addCheck({kind:"max",value:0,inclusive:!1,message:H.toString(t)})}nonpositive(t){return this._addCheck({kind:"max",value:0,inclusive:!0,message:H.toString(t)})}nonnegative(t){return this._addCheck({kind:"min",value:0,inclusive:!0,message:H.toString(t)})}multipleOf(t,a){return this._addCheck({kind:"multipleOf",value:t,message:H.toString(a)})}finite(t){return this._addCheck({kind:"finite",message:H.toString(t)})}safe(t){return this._addCheck({kind:"min",inclusive:!0,value:Number.MIN_SAFE_INTEGER,message:H.toString(t)})._addCheck({kind:"max",inclusive:!0,value:Number.MAX_SAFE_INTEGER,message:H.toString(t)})}get minValue(){let t=null;for(let a of this._def.checks)a.kind==="min"&&(t===null||a.value>t)&&(t=a.value);return t}get maxValue(){let t=null;for(let a of this._def.checks)a.kind==="max"&&(t===null||a.value<t)&&(t=a.value);return t}get isInt(){return!!this._def.checks.find(t=>t.kind==="int"||t.kind==="multipleOf"&&_e.isInteger(t.value))}get isFinite(){let t=null,a=null;for(let r of this._def.checks){if(r.kind==="finite"||r.kind==="int"||r.kind==="multipleOf")return!0;r.kind==="min"?(a===null||r.value>a)&&(a=r.value):r.kind==="max"&&(t===null||r.value<t)&&(t=r.value)}return Number.isFinite(a)&&Number.isFinite(t)}};ir.create=e=>new ir({checks:[],typeName:J.ZodNumber,coerce:e?.coerce||!1,...te(e)});sr=class e extends re{constructor(){super(...arguments),this.min=this.gte,this.max=this.lte}_parse(t){if(this._def.coerce)try{t.data=BigInt(t.data)}catch{return this._getInvalidInput(t)}if(this._getType(t)!==P.bigint)return this._getInvalidInput(t);let r,n=new et;for(let i of this._def.checks)i.kind==="min"?(i.inclusive?t.data<i.value:t.data<=i.value)&&(r=this._getOrReturnCtx(t,r),M(r,{code:D.too_small,type:"bigint",minimum:i.value,inclusive:i.inclusive,message:i.message}),n.dirty()):i.kind==="max"?(i.inclusive?t.data>i.value:t.data>=i.value)&&(r=this._getOrReturnCtx(t,r),M(r,{code:D.too_big,type:"bigint",maximum:i.value,inclusive:i.inclusive,message:i.message}),n.dirty()):i.kind==="multipleOf"?t.data%i.value!==BigInt(0)&&(r=this._getOrReturnCtx(t,r),M(r,{code:D.not_multiple_of,multipleOf:i.value,message:i.message}),n.dirty()):_e.assertNever(i);return{status:n.value,value:t.data}}_getInvalidInput(t){let a=this._getOrReturnCtx(t);return M(a,{code:D.invalid_type,expected:P.bigint,received:a.parsedType}),j}gte(t,a){return this.setLimit("min",t,!0,H.toString(a))}gt(t,a){return this.setLimit("min",t,!1,H.toString(a))}lte(t,a){return this.setLimit("max",t,!0,H.toString(a))}lt(t,a){return this.setLimit("max",t,!1,H.toString(a))}setLimit(t,a,r,n){return new e({...this._def,checks:[...this._def.checks,{kind:t,value:a,inclusive:r,message:H.toString(n)}]})}_addCheck(t){return new e({...this._def,checks:[...this._def.checks,t]})}positive(t){return this._addCheck({kind:"min",value:BigInt(0),inclusive:!1,message:H.toString(t)})}negative(t){return this._addCheck({kind:"max",value:BigInt(0),inclusive:!1,message:H.toString(t)})}nonpositive(t){return this._addCheck({kind:"max",value:BigInt(0),inclusive:!0,message:H.toString(t)})}nonnegative(t){return this._addCheck({kind:"min",value:BigInt(0),inclusive:!0,message:H.toString(t)})}multipleOf(t,a){return this._addCheck({kind:"multipleOf",value:t,message:H.toString(a)})}get minValue(){let t=null;for(let a of this._def.checks)a.kind==="min"&&(t===null||a.value>t)&&(t=a.value);return t}get maxValue(){let t=null;for(let a of this._def.checks)a.kind==="max"&&(t===null||a.value<t)&&(t=a.value);return t}};sr.create=e=>new sr({checks:[],typeName:J.ZodBigInt,coerce:e?.coerce??!1,...te(e)});or=class extends re{_parse(t){if(this._def.coerce&&(t.data=!!t.data),this._getType(t)!==P.boolean){let r=this._getOrReturnCtx(t);return M(r,{code:D.invalid_type,expected:P.boolean,received:r.parsedType}),j}return it(t.data)}};or.create=e=>new or({typeName:J.ZodBoolean,coerce:e?.coerce||!1,...te(e)});lr=class e extends re{_parse(t){if(this._def.coerce&&(t.data=new Date(t.data)),this._getType(t)!==P.date){let i=this._getOrReturnCtx(t);return M(i,{code:D.invalid_type,expected:P.date,received:i.parsedType}),j}if(Number.isNaN(t.data.getTime())){let i=this._getOrReturnCtx(t);return M(i,{code:D.invalid_date}),j}let r=new et,n;for(let i of this._def.checks)i.kind==="min"?t.data.getTime()<i.value&&(n=this._getOrReturnCtx(t,n),M(n,{code:D.too_small,message:i.message,inclusive:!0,exact:!1,minimum:i.value,type:"date"}),r.dirty()):i.kind==="max"?t.data.getTime()>i.value&&(n=this._getOrReturnCtx(t,n),M(n,{code:D.too_big,message:i.message,inclusive:!0,exact:!1,maximum:i.value,type:"date"}),r.dirty()):_e.assertNever(i);return{status:r.value,value:new Date(t.data.getTime())}}_addCheck(t){return new e({...this._def,checks:[...this._def.checks,t]})}min(t,a){return this._addCheck({kind:"min",value:t.getTime(),message:H.toString(a)})}max(t,a){return this._addCheck({kind:"max",value:t.getTime(),message:H.toString(a)})}get minDate(){let t=null;for(let a of this._def.checks)a.kind==="min"&&(t===null||a.value>t)&&(t=a.value);return t!=null?new Date(t):null}get maxDate(){let t=null;for(let a of this._def.checks)a.kind==="max"&&(t===null||a.value<t)&&(t=a.value);return t!=null?new Date(t):null}};lr.create=e=>new lr({checks:[],coerce:e?.coerce||!1,typeName:J.ZodDate,...te(e)});ln=class extends re{_parse(t){if(this._getType(t)!==P.symbol){let r=this._getOrReturnCtx(t);return M(r,{code:D.invalid_type,expected:P.symbol,received:r.parsedType}),j}return it(t.data)}};ln.create=e=>new ln({typeName:J.ZodSymbol,...te(e)});cr=class extends re{_parse(t){if(this._getType(t)!==P.undefined){let r=this._getOrReturnCtx(t);return M(r,{code:D.invalid_type,expected:P.undefined,received:r.parsedType}),j}return it(t.data)}};cr.create=e=>new cr({typeName:J.ZodUndefined,...te(e)});_r=class extends re{_parse(t){if(this._getType(t)!==P.null){let r=this._getOrReturnCtx(t);return M(r,{code:D.invalid_type,expected:P.null,received:r.parsedType}),j}return it(t.data)}};_r.create=e=>new _r({typeName:J.ZodNull,...te(e)});Ua=class extends re{constructor(){super(...arguments),this._any=!0}_parse(t){return it(t.data)}};Ua.create=e=>new Ua({typeName:J.ZodAny,...te(e)});ha=class extends re{constructor(){super(...arguments),this._unknown=!0}_parse(t){return it(t.data)}};ha.create=e=>new ha({typeName:J.ZodUnknown,...te(e)});Ht=class extends re{_parse(t){let a=this._getOrReturnCtx(t);return M(a,{code:D.invalid_type,expected:P.never,received:a.parsedType}),j}};Ht.create=e=>new Ht({typeName:J.ZodNever,...te(e)});cn=class extends re{_parse(t){if(this._getType(t)!==P.undefined){let r=this._getOrReturnCtx(t);return M(r,{code:D.invalid_type,expected:P.void,received:r.parsedType}),j}return it(t.data)}};cn.create=e=>new cn({typeName:J.ZodVoid,...te(e)});Sa=class e extends re{_parse(t){let{ctx:a,status:r}=this._processInputParams(t),n=this._def;if(a.parsedType!==P.array)return M(a,{code:D.invalid_type,expected:P.array,received:a.parsedType}),j;if(n.exactLength!==null){let s=a.data.length>n.exactLength.value,o=a.data.length<n.exactLength.value;(s||o)&&(M(a,{code:s?D.too_big:D.too_small,minimum:o?n.exactLength.value:void 0,maximum:s?n.exactLength.value:void 0,type:"array",inclusive:!0,exact:!0,message:n.exactLength.message}),r.dirty())}if(n.minLength!==null&&a.data.length<n.minLength.value&&(M(a,{code:D.too_small,minimum:n.minLength.value,type:"array",inclusive:!0,exact:!1,message:n.minLength.message}),r.dirty()),n.maxLength!==null&&a.data.length>n.maxLength.value&&(M(a,{code:D.too_big,maximum:n.maxLength.value,type:"array",inclusive:!0,exact:!1,message:n.maxLength.message}),r.dirty()),a.common.async)return Promise.all([...a.data].map((s,o)=>n.type._parseAsync(new xt(a,s,a.path,o)))).then(s=>et.mergeArray(r,s));let i=[...a.data].map((s,o)=>n.type._parseSync(new xt(a,s,a.path,o)));return et.mergeArray(r,i)}get element(){return this._def.type}min(t,a){return new e({...this._def,minLength:{value:t,message:H.toString(a)}})}max(t,a){return new e({...this._def,maxLength:{value:t,message:H.toString(a)}})}length(t,a){return new e({...this._def,exactLength:{value:t,message:H.toString(a)}})}nonempty(t){return this.min(1,t)}};Sa.create=(e,t)=>new Sa({type:e,minLength:null,maxLength:null,exactLength:null,typeName:J.ZodArray,...te(t)});ht=class e extends re{constructor(){super(...arguments),this._cached=null,this.nonstrict=this.passthrough,this.augment=this.extend}_getCached(){if(this._cached!==null)return this._cached;let t=this._def.shape(),a=_e.objectKeys(t);return this._cached={shape:t,keys:a},this._cached}_parse(t){if(this._getType(t)!==P.object){let l=this._getOrReturnCtx(t);return M(l,{code:D.invalid_type,expected:P.object,received:l.parsedType}),j}let{status:r,ctx:n}=this._processInputParams(t),{shape:i,keys:s}=this._getCached(),o=[];if(!(this._def.catchall instanceof Ht&&this._def.unknownKeys==="strip"))for(let l in n.data)s.includes(l)||o.push(l);let c=[];for(let l of s){let d=i[l],u=n.data[l];c.push({key:{status:"valid",value:l},value:d._parse(new xt(n,u,n.path,l)),alwaysSet:l in n.data})}if(this._def.catchall instanceof Ht){let l=this._def.unknownKeys;if(l==="passthrough")for(let d of o)c.push({key:{status:"valid",value:d},value:{status:"valid",value:n.data[d]}});else if(l==="strict")o.length>0&&(M(n,{code:D.unrecognized_keys,keys:o}),r.dirty());else if(l!=="strip")throw new Error("Internal ZodObject error: invalid unknownKeys value.")}else{let l=this._def.catchall;for(let d of o){let u=n.data[d];c.push({key:{status:"valid",value:d},value:l._parse(new xt(n,u,n.path,d)),alwaysSet:d in n.data})}}return n.common.async?Promise.resolve().then(async()=>{let l=[];for(let d of c){let u=await d.key,g=await d.value;l.push({key:u,value:g,alwaysSet:d.alwaysSet})}return l}).then(l=>et.mergeObjectSync(r,l)):et.mergeObjectSync(r,c)}get shape(){return this._def.shape()}strict(t){return H.errToObj,new e({...this._def,unknownKeys:"strict",...t!==void 0?{errorMap:(a,r)=>{let n=this._def.errorMap?.(a,r).message??r.defaultError;return a.code==="unrecognized_keys"?{message:H.errToObj(t).message??n}:{message:n}}}:{}})}strip(){return new e({...this._def,unknownKeys:"strip"})}passthrough(){return new e({...this._def,unknownKeys:"passthrough"})}extend(t){return new e({...this._def,shape:()=>({...this._def.shape(),...t})})}merge(t){return new e({unknownKeys:t._def.unknownKeys,catchall:t._def.catchall,shape:()=>({...this._def.shape(),...t._def.shape()}),typeName:J.ZodObject})}setKey(t,a){return this.augment({[t]:a})}catchall(t){return new e({...this._def,catchall:t})}pick(t){let a={};for(let r of _e.objectKeys(t))t[r]&&this.shape[r]&&(a[r]=this.shape[r]);return new e({...this._def,shape:()=>a})}omit(t){let a={};for(let r of _e.objectKeys(this.shape))t[r]||(a[r]=this.shape[r]);return new e({...this._def,shape:()=>a})}deepPartial(){return on(this)}partial(t){let a={};for(let r of _e.objectKeys(this.shape)){let n=this.shape[r];t&&!t[r]?a[r]=n:a[r]=n.optional()}return new e({...this._def,shape:()=>a})}required(t){let a={};for(let r of _e.objectKeys(this.shape))if(t&&!t[r])a[r]=this.shape[r];else{let i=this.shape[r];for(;i instanceof wt;)i=i._def.innerType;a[r]=i}return new e({...this._def,shape:()=>a})}keyof(){return NR(_e.objectKeys(this.shape))}};ht.create=(e,t)=>new ht({shape:()=>e,unknownKeys:"strip",catchall:Ht.create(),typeName:J.ZodObject,...te(t)});ht.strictCreate=(e,t)=>new ht({shape:()=>e,unknownKeys:"strict",catchall:Ht.create(),typeName:J.ZodObject,...te(t)});ht.lazycreate=(e,t)=>new ht({shape:e,unknownKeys:"strip",catchall:Ht.create(),typeName:J.ZodObject,...te(t)});dr=class extends re{_parse(t){let{ctx:a}=this._processInputParams(t),r=this._def.options;function n(i){for(let o of i)if(o.result.status==="valid")return o.result;for(let o of i)if(o.result.status==="dirty")return a.common.issues.push(...o.ctx.common.issues),o.result;let s=i.map(o=>new Et(o.ctx.common.issues));return M(a,{code:D.invalid_union,unionErrors:s}),j}if(a.common.async)return Promise.all(r.map(async i=>{let s={...a,common:{...a.common,issues:[]},parent:null};return{result:await i._parseAsync({data:a.data,path:a.path,parent:s}),ctx:s}})).then(n);{let i,s=[];for(let c of r){let l={...a,common:{...a.common,issues:[]},parent:null},d=c._parseSync({data:a.data,path:a.path,parent:l});if(d.status==="valid")return d;d.status==="dirty"&&!i&&(i={result:d,ctx:l}),l.common.issues.length&&s.push(l.common.issues)}if(i)return a.common.issues.push(...i.ctx.common.issues),i.result;let o=s.map(c=>new Et(c));return M(a,{code:D.invalid_union,unionErrors:o}),j}}get options(){return this._def.options}};dr.create=(e,t)=>new dr({options:e,typeName:J.ZodUnion,...te(t)});Ea=e=>e instanceof pr?Ea(e.schema):e instanceof Mt?Ea(e.innerType()):e instanceof mr?[e.value]:e instanceof gr?e.options:e instanceof fr?_e.objectValues(e.enum):e instanceof Er?Ea(e._def.innerType):e instanceof cr?[void 0]:e instanceof _r?[null]:e instanceof wt?[void 0,...Ea(e.unwrap())]:e instanceof Zt?[null,...Ea(e.unwrap())]:e instanceof si||e instanceof Sr?Ea(e.unwrap()):e instanceof hr?Ea(e._def.innerType):[],Zs=class e extends re{_parse(t){let{ctx:a}=this._processInputParams(t);if(a.parsedType!==P.object)return M(a,{code:D.invalid_type,expected:P.object,received:a.parsedType}),j;let r=this.discriminator,n=a.data[r],i=this.optionsMap.get(n);return i?a.common.async?i._parseAsync({data:a.data,path:a.path,parent:a}):i._parseSync({data:a.data,path:a.path,parent:a}):(M(a,{code:D.invalid_union_discriminator,options:Array.from(this.optionsMap.keys()),path:[r]}),j)}get discriminator(){return this._def.discriminator}get options(){return this._def.options}get optionsMap(){return this._def.optionsMap}static create(t,a,r){let n=new Map;for(let i of a){let s=Ea(i.shape[t]);if(!s.length)throw new Error(`A discriminator value for key \`${t}\` could not be extracted from all schema options`);for(let o of s){if(n.has(o))throw new Error(`Discriminator property ${String(t)} has duplicate value ${String(o)}`);n.set(o,i)}}return new e({typeName:J.ZodDiscriminatedUnion,discriminator:t,options:a,optionsMap:n,...te(r)})}};ur=class extends re{_parse(t){let{status:a,ctx:r}=this._processInputParams(t),n=(i,s)=>{if(js(i)||js(s))return j;let o=__(i.value,s.value);return o.valid?((Xs(i)||Xs(s))&&a.dirty(),{status:a.value,value:o.data}):(M(r,{code:D.invalid_intersection_types}),j)};return r.common.async?Promise.all([this._def.left._parseAsync({data:r.data,path:r.path,parent:r}),this._def.right._parseAsync({data:r.data,path:r.path,parent:r})]).then(([i,s])=>n(i,s)):n(this._def.left._parseSync({data:r.data,path:r.path,parent:r}),this._def.right._parseSync({data:r.data,path:r.path,parent:r}))}};ur.create=(e,t,a)=>new ur({left:e,right:t,typeName:J.ZodIntersection,...te(a)});Xt=class e extends re{_parse(t){let{status:a,ctx:r}=this._processInputParams(t);if(r.parsedType!==P.array)return M(r,{code:D.invalid_type,expected:P.array,received:r.parsedType}),j;if(r.data.length<this._def.items.length)return M(r,{code:D.too_small,minimum:this._def.items.length,inclusive:!0,exact:!1,type:"array"}),j;!this._def.rest&&r.data.length>this._def.items.length&&(M(r,{code:D.too_big,maximum:this._def.items.length,inclusive:!0,exact:!1,type:"array"}),a.dirty());let i=[...r.data].map((s,o)=>{let c=this._def.items[o]||this._def.rest;return c?c._parse(new xt(r,s,r.path,o)):null}).filter(s=>!!s);return r.common.async?Promise.all(i).then(s=>et.mergeArray(a,s)):et.mergeArray(a,i)}get items(){return this._def.items}rest(t){return new e({...this._def,rest:t})}};Xt.create=(e,t)=>{if(!Array.isArray(e))throw new Error("You must pass an array of schemas to z.tuple([ ... ])");return new Xt({items:e,typeName:J.ZodTuple,rest:null,...te(t)})};Js=class e extends re{get keySchema(){return this._def.keyType}get valueSchema(){return this._def.valueType}_parse(t){let{status:a,ctx:r}=this._processInputParams(t);if(r.parsedType!==P.object)return M(r,{code:D.invalid_type,expected:P.object,received:r.parsedType}),j;let n=[],i=this._def.keyType,s=this._def.valueType;for(let o in r.data)n.push({key:i._parse(new xt(r,o,r.path,o)),value:s._parse(new xt(r,r.data[o],r.path,o)),alwaysSet:o in r.data});return r.common.async?et.mergeObjectAsync(a,n):et.mergeObjectSync(a,n)}get element(){return this._def.valueType}static create(t,a,r){return a instanceof re?new e({keyType:t,valueType:a,typeName:J.ZodRecord,...te(r)}):new e({keyType:Fa.create(),valueType:t,typeName:J.ZodRecord,...te(a)})}},_n=class extends re{get keySchema(){return this._def.keyType}get valueSchema(){return this._def.valueType}_parse(t){let{status:a,ctx:r}=this._processInputParams(t);if(r.parsedType!==P.map)return M(r,{code:D.invalid_type,expected:P.map,received:r.parsedType}),j;let n=this._def.keyType,i=this._def.valueType,s=[...r.data.entries()].map(([o,c],l)=>({key:n._parse(new xt(r,o,r.path,[l,"key"])),value:i._parse(new xt(r,c,r.path,[l,"value"]))}));if(r.common.async){let o=new Map;return Promise.resolve().then(async()=>{for(let c of s){let l=await c.key,d=await c.value;if(l.status==="aborted"||d.status==="aborted")return j;(l.status==="dirty"||d.status==="dirty")&&a.dirty(),o.set(l.value,d.value)}return{status:a.value,value:o}})}else{let o=new Map;for(let c of s){let l=c.key,d=c.value;if(l.status==="aborted"||d.status==="aborted")return j;(l.status==="dirty"||d.status==="dirty")&&a.dirty(),o.set(l.value,d.value)}return{status:a.value,value:o}}}};_n.create=(e,t,a)=>new _n({valueType:t,keyType:e,typeName:J.ZodMap,...te(a)});dn=class e extends re{_parse(t){let{status:a,ctx:r}=this._processInputParams(t);if(r.parsedType!==P.set)return M(r,{code:D.invalid_type,expected:P.set,received:r.parsedType}),j;let n=this._def;n.minSize!==null&&r.data.size<n.minSize.value&&(M(r,{code:D.too_small,minimum:n.minSize.value,type:"set",inclusive:!0,exact:!1,message:n.minSize.message}),a.dirty()),n.maxSize!==null&&r.data.size>n.maxSize.value&&(M(r,{code:D.too_big,maximum:n.maxSize.value,type:"set",inclusive:!0,exact:!1,message:n.maxSize.message}),a.dirty());let i=this._def.valueType;function s(c){let l=new Set;for(let d of c){if(d.status==="aborted")return j;d.status==="dirty"&&a.dirty(),l.add(d.value)}return{status:a.value,value:l}}let o=[...r.data.values()].map((c,l)=>i._parse(new xt(r,c,r.path,l)));return r.common.async?Promise.all(o).then(c=>s(c)):s(o)}min(t,a){return new e({...this._def,minSize:{value:t,message:H.toString(a)}})}max(t,a){return new e({...this._def,maxSize:{value:t,message:H.toString(a)}})}size(t,a){return this.min(t,a).max(t,a)}nonempty(t){return this.min(1,t)}};dn.create=(e,t)=>new dn({valueType:e,minSize:null,maxSize:null,typeName:J.ZodSet,...te(t)});eo=class e extends re{constructor(){super(...arguments),this.validate=this.implement}_parse(t){let{ctx:a}=this._processInputParams(t);if(a.parsedType!==P.function)return M(a,{code:D.invalid_type,expected:P.function,received:a.parsedType}),j;function r(o,c){return ii({data:o,path:a.path,errorMaps:[a.common.contextualErrorMap,a.schemaErrorMap,nn(),fa].filter(l=>!!l),issueData:{code:D.invalid_arguments,argumentsError:c}})}function n(o,c){return ii({data:o,path:a.path,errorMaps:[a.common.contextualErrorMap,a.schemaErrorMap,nn(),fa].filter(l=>!!l),issueData:{code:D.invalid_return_type,returnTypeError:c}})}let i={errorMap:a.common.contextualErrorMap},s=a.data;if(this._def.returns instanceof Ba){let o=this;return it(async function(...c){let l=new Et([]),d=await o._def.args.parseAsync(c,i).catch(h=>{throw l.addIssue(r(c,h)),l}),u=await Reflect.apply(s,this,d);return await o._def.returns._def.type.parseAsync(u,i).catch(h=>{throw l.addIssue(n(u,h)),l})})}else{let o=this;return it(function(...c){let l=o._def.args.safeParse(c,i);if(!l.success)throw new Et([r(c,l.error)]);let d=Reflect.apply(s,this,l.data),u=o._def.returns.safeParse(d,i);if(!u.success)throw new Et([n(d,u.error)]);return u.data})}}parameters(){return this._def.args}returnType(){return this._def.returns}args(...t){return new e({...this._def,args:Xt.create(t).rest(ha.create())})}returns(t){return new e({...this._def,returns:t})}implement(t){return this.parse(t)}strictImplement(t){return this.parse(t)}static create(t,a,r){return new e({args:t||Xt.create([]).rest(ha.create()),returns:a||ha.create(),typeName:J.ZodFunction,...te(r)})}},pr=class extends re{get schema(){return this._def.getter()}_parse(t){let{ctx:a}=this._processInputParams(t);return this._def.getter()._parse({data:a.data,path:a.path,parent:a})}};pr.create=(e,t)=>new pr({getter:e,typeName:J.ZodLazy,...te(t)});mr=class extends re{_parse(t){if(t.data!==this._def.value){let a=this._getOrReturnCtx(t);return M(a,{received:a.data,code:D.invalid_literal,expected:this._def.value}),j}return{status:"valid",value:t.data}}get value(){return this._def.value}};mr.create=(e,t)=>new mr({value:e,typeName:J.ZodLiteral,...te(t)});gr=class e extends re{_parse(t){if(typeof t.data!="string"){let a=this._getOrReturnCtx(t),r=this._def.values;return M(a,{expected:_e.joinValues(r),received:a.parsedType,code:D.invalid_type}),j}if(this._cache||(this._cache=new Set(this._def.values)),!this._cache.has(t.data)){let a=this._getOrReturnCtx(t),r=this._def.values;return M(a,{received:a.data,code:D.invalid_enum_value,options:r}),j}return it(t.data)}get options(){return this._def.values}get enum(){let t={};for(let a of this._def.values)t[a]=a;return t}get Values(){let t={};for(let a of this._def.values)t[a]=a;return t}get Enum(){let t={};for(let a of this._def.values)t[a]=a;return t}extract(t,a=this._def){return e.create(t,{...this._def,...a})}exclude(t,a=this._def){return e.create(this.options.filter(r=>!t.includes(r)),{...this._def,...a})}};gr.create=NR;fr=class extends re{_parse(t){let a=_e.getValidEnumValues(this._def.values),r=this._getOrReturnCtx(t);if(r.parsedType!==P.string&&r.parsedType!==P.number){let n=_e.objectValues(a);return M(r,{expected:_e.joinValues(n),received:r.parsedType,code:D.invalid_type}),j}if(this._cache||(this._cache=new Set(_e.getValidEnumValues(this._def.values))),!this._cache.has(t.data)){let n=_e.objectValues(a);return M(r,{received:r.data,code:D.invalid_enum_value,options:n}),j}return it(t.data)}get enum(){return this._def.values}};fr.create=(e,t)=>new fr({values:e,typeName:J.ZodNativeEnum,...te(t)});Ba=class extends re{unwrap(){return this._def.type}_parse(t){let{ctx:a}=this._processInputParams(t);if(a.parsedType!==P.promise&&a.common.async===!1)return M(a,{code:D.invalid_type,expected:P.promise,received:a.parsedType}),j;let r=a.parsedType===P.promise?a.data:Promise.resolve(a.data);return it(r.then(n=>this._def.type.parseAsync(n,{path:a.path,errorMap:a.common.contextualErrorMap})))}};Ba.create=(e,t)=>new Ba({type:e,typeName:J.ZodPromise,...te(t)});Mt=class extends re{innerType(){return this._def.schema}sourceType(){return this._def.schema._def.typeName===J.ZodEffects?this._def.schema.sourceType():this._def.schema}_parse(t){let{status:a,ctx:r}=this._processInputParams(t),n=this._def.effect||null,i={addIssue:s=>{M(r,s),s.fatal?a.abort():a.dirty()},get path(){return r.path}};if(i.addIssue=i.addIssue.bind(i),n.type==="preprocess"){let s=n.transform(r.data,i);if(r.common.async)return Promise.resolve(s).then(async o=>{if(a.value==="aborted")return j;let c=await this._def.schema._parseAsync({data:o,path:r.path,parent:r});return c.status==="aborted"?j:c.status==="dirty"?nr(c.value):a.value==="dirty"?nr(c.value):c});{if(a.value==="aborted")return j;let o=this._def.schema._parseSync({data:s,path:r.path,parent:r});return o.status==="aborted"?j:o.status==="dirty"?nr(o.value):a.value==="dirty"?nr(o.value):o}}if(n.type==="refinement"){let s=o=>{let c=n.refinement(o,i);if(r.common.async)return Promise.resolve(c);if(c instanceof Promise)throw new Error("Async refinement encountered during synchronous parse operation. Use .parseAsync instead.");return o};if(r.common.async===!1){let o=this._def.schema._parseSync({data:r.data,path:r.path,parent:r});return o.status==="aborted"?j:(o.status==="dirty"&&a.dirty(),s(o.value),{status:a.value,value:o.value})}else return this._def.schema._parseAsync({data:r.data,path:r.path,parent:r}).then(o=>o.status==="aborted"?j:(o.status==="dirty"&&a.dirty(),s(o.value).then(()=>({status:a.value,value:o.value}))))}if(n.type==="transform")if(r.common.async===!1){let s=this._def.schema._parseSync({data:r.data,path:r.path,parent:r});if(!Pa(s))return j;let o=n.transform(s.value,i);if(o instanceof Promise)throw new Error("Asynchronous transform encountered during synchronous parse operation. Use .parseAsync instead.");return{status:a.value,value:o}}else return this._def.schema._parseAsync({data:r.data,path:r.path,parent:r}).then(s=>Pa(s)?Promise.resolve(n.transform(s.value,i)).then(o=>({status:a.value,value:o})):j);_e.assertNever(n)}};Mt.create=(e,t,a)=>new Mt({schema:e,typeName:J.ZodEffects,effect:t,...te(a)});Mt.createWithPreprocess=(e,t,a)=>new Mt({schema:t,effect:{type:"preprocess",transform:e},typeName:J.ZodEffects,...te(a)});wt=class extends re{_parse(t){return this._getType(t)===P.undefined?it(void 0):this._def.innerType._parse(t)}unwrap(){return this._def.innerType}};wt.create=(e,t)=>new wt({innerType:e,typeName:J.ZodOptional,...te(t)});Zt=class extends re{_parse(t){return this._getType(t)===P.null?it(null):this._def.innerType._parse(t)}unwrap(){return this._def.innerType}};Zt.create=(e,t)=>new Zt({innerType:e,typeName:J.ZodNullable,...te(t)});Er=class extends re{_parse(t){let{ctx:a}=this._processInputParams(t),r=a.data;return a.parsedType===P.undefined&&(r=this._def.defaultValue()),this._def.innerType._parse({data:r,path:a.path,parent:a})}removeDefault(){return this._def.innerType}};Er.create=(e,t)=>new Er({innerType:e,typeName:J.ZodDefault,defaultValue:typeof t.default=="function"?t.default:()=>t.default,...te(t)});hr=class extends re{_parse(t){let{ctx:a}=this._processInputParams(t),r={...a,common:{...a.common,issues:[]}},n=this._def.innerType._parse({data:r.data,path:r.path,parent:{...r}});return sn(n)?n.then(i=>({status:"valid",value:i.status==="valid"?i.value:this._def.catchValue({get error(){return new Et(r.common.issues)},input:r.data})})):{status:"valid",value:n.status==="valid"?n.value:this._def.catchValue({get error(){return new Et(r.common.issues)},input:r.data})}}removeCatch(){return this._def.innerType}};hr.create=(e,t)=>new hr({innerType:e,typeName:J.ZodCatch,catchValue:typeof t.catch=="function"?t.catch:()=>t.catch,...te(t)});un=class extends re{_parse(t){if(this._getType(t)!==P.nan){let r=this._getOrReturnCtx(t);return M(r,{code:D.invalid_type,expected:P.nan,received:r.parsedType}),j}return{status:"valid",value:t.data}}};un.create=e=>new un({typeName:J.ZodNaN,...te(e)});k2=Symbol("zod_brand"),si=class extends re{_parse(t){let{ctx:a}=this._processInputParams(t),r=a.data;return this._def.type._parse({data:r,path:a.path,parent:a})}unwrap(){return this._def.type}},oi=class e extends re{_parse(t){let{status:a,ctx:r}=this._processInputParams(t);if(r.common.async)return(async()=>{let i=await this._def.in._parseAsync({data:r.data,path:r.path,parent:r});return i.status==="aborted"?j:i.status==="dirty"?(a.dirty(),nr(i.value)):this._def.out._parseAsync({data:i.value,path:r.path,parent:r})})();{let n=this._def.in._parseSync({data:r.data,path:r.path,parent:r});return n.status==="aborted"?j:n.status==="dirty"?(a.dirty(),{status:"dirty",value:n.value}):this._def.out._parseSync({data:n.value,path:r.path,parent:r})}}static create(t,a){return new e({in:t,out:a,typeName:J.ZodPipeline})}},Sr=class extends re{_parse(t){let a=this._def.innerType._parse(t),r=n=>(Pa(n)&&(n.value=Object.freeze(n.value)),n);return sn(a)?a.then(n=>r(n)):r(a)}unwrap(){return this._def.innerType}};Sr.create=(e,t)=>new Sr({innerType:e,typeName:J.ZodReadonly,...te(t)});v2={object:ht.lazycreate};(function(e){e.ZodString="ZodString",e.ZodNumber="ZodNumber",e.ZodNaN="ZodNaN",e.ZodBigInt="ZodBigInt",e.ZodBoolean="ZodBoolean",e.ZodDate="ZodDate",e.ZodSymbol="ZodSymbol",e.ZodUndefined="ZodUndefined",e.ZodNull="ZodNull",e.ZodAny="ZodAny",e.ZodUnknown="ZodUnknown",e.ZodNever="ZodNever",e.ZodVoid="ZodVoid",e.ZodArray="ZodArray",e.ZodObject="ZodObject",e.ZodUnion="ZodUnion",e.ZodDiscriminatedUnion="ZodDiscriminatedUnion",e.ZodIntersection="ZodIntersection",e.ZodTuple="ZodTuple",e.ZodRecord="ZodRecord",e.ZodMap="ZodMap",e.ZodSet="ZodSet",e.ZodFunction="ZodFunction",e.ZodLazy="ZodLazy",e.ZodLiteral="ZodLiteral",e.ZodEnum="ZodEnum",e.ZodEffects="ZodEffects",e.ZodNativeEnum="ZodNativeEnum",e.ZodOptional="ZodOptional",e.ZodNullable="ZodNullable",e.ZodDefault="ZodDefault",e.ZodCatch="ZodCatch",e.ZodPromise="ZodPromise",e.ZodBranded="ZodBranded",e.ZodPipeline="ZodPipeline",e.ZodReadonly="ZodReadonly"})(J||(J={}));w2=(e,t={message:`Input not instance of ${e.name}`})=>OR(a=>a instanceof e,t),DR=Fa.create,IR=ir.create,x2=un.create,M2=sr.create,kR=or.create,L2=lr.create,P2=ln.create,F2=cr.create,U2=_r.create,B2=Ua.create,G2=ha.create,z2=Ht.create,H2=cn.create,Y2=Sa.create,q2=ht.create,$2=ht.strictCreate,V2=dr.create,K2=Zs.create,W2=ur.create,Q2=Xt.create,j2=Js.create,X2=_n.create,Z2=dn.create,J2=eo.create,e4=pr.create,t4=mr.create,a4=gr.create,r4=fr.create,n4=Ba.create,i4=Mt.create,s4=wt.create,o4=Zt.create,l4=Mt.createWithPreprocess,c4=oi.create,_4=()=>DR().optional(),d4=()=>IR().optional(),u4=()=>kR().optional(),p4={string:(e=>Fa.create({...e,coerce:!0})),number:(e=>ir.create({...e,coerce:!0})),boolean:(e=>or.create({...e,coerce:!0})),bigint:(e=>sr.create({...e,coerce:!0})),date:(e=>lr.create({...e,coerce:!0}))},m4=j});var St={};Tr(St,{BRAND:()=>k2,DIRTY:()=>nr,EMPTY_PATH:()=>l2,INVALID:()=>j,NEVER:()=>m4,OK:()=>it,ParseStatus:()=>et,Schema:()=>re,ZodAny:()=>Ua,ZodArray:()=>Sa,ZodBigInt:()=>sr,ZodBoolean:()=>or,ZodBranded:()=>si,ZodCatch:()=>hr,ZodDate:()=>lr,ZodDefault:()=>Er,ZodDiscriminatedUnion:()=>Zs,ZodEffects:()=>Mt,ZodEnum:()=>gr,ZodError:()=>Et,ZodFirstPartyTypeKind:()=>J,ZodFunction:()=>eo,ZodIntersection:()=>ur,ZodIssueCode:()=>D,ZodLazy:()=>pr,ZodLiteral:()=>mr,ZodMap:()=>_n,ZodNaN:()=>un,ZodNativeEnum:()=>fr,ZodNever:()=>Ht,ZodNull:()=>_r,ZodNullable:()=>Zt,ZodNumber:()=>ir,ZodObject:()=>ht,ZodOptional:()=>wt,ZodParsedType:()=>P,ZodPipeline:()=>oi,ZodPromise:()=>Ba,ZodReadonly:()=>Sr,ZodRecord:()=>Js,ZodSchema:()=>re,ZodSet:()=>dn,ZodString:()=>Fa,ZodSymbol:()=>ln,ZodTransformer:()=>Mt,ZodTuple:()=>Xt,ZodType:()=>re,ZodUndefined:()=>cr,ZodUnion:()=>dr,ZodUnknown:()=>ha,ZodVoid:()=>cn,addIssueToContext:()=>M,any:()=>B2,array:()=>Y2,bigint:()=>M2,boolean:()=>kR,coerce:()=>p4,custom:()=>OR,date:()=>L2,datetimeRegex:()=>AR,defaultErrorMap:()=>fa,discriminatedUnion:()=>K2,effect:()=>i4,enum:()=>a4,function:()=>J2,getErrorMap:()=>nn,getParsedType:()=>jt,instanceof:()=>w2,intersection:()=>W2,isAborted:()=>js,isAsync:()=>sn,isDirty:()=>Xs,isValid:()=>Pa,late:()=>v2,lazy:()=>e4,literal:()=>t4,makeIssue:()=>ii,map:()=>X2,nan:()=>x2,nativeEnum:()=>r4,never:()=>z2,null:()=>U2,nullable:()=>o4,number:()=>IR,object:()=>q2,objectUtil:()=>s_,oboolean:()=>u4,onumber:()=>d4,optional:()=>s4,ostring:()=>_4,pipeline:()=>c4,preprocess:()=>l4,promise:()=>n4,quotelessJson:()=>i2,record:()=>j2,set:()=>Z2,setErrorMap:()=>o2,strictObject:()=>$2,string:()=>DR,symbol:()=>P2,transformer:()=>i4,tuple:()=>Q2,undefined:()=>F2,union:()=>V2,unknown:()=>G2,util:()=>_e,void:()=>H2});var d_=Ce(()=>{Qs();l_();SR();ni();vR();Ws()});var wR=Ce(()=>{d_();d_()});function xR(e){switch(e.type){case"string":{let t=St.string();return e.pattern&&(t=t.regex(new RegExp(e.pattern))),e.minLength&&(t=t.min(e.minLength)),e.maxLength&&(t=t.max(e.maxLength)),e.enum?St.enum(e.enum):t}case"integer":case"number":{let t=e.type==="integer"?St.coerce.number().int():St.coerce.number();return e.minimum!==void 0&&(t=t.min(e.minimum)),e.maximum!==void 0&&(t=t.max(e.maximum)),t}case"boolean":return St.preprocess(t=>t==="true"||t===!0?!0:t==="false"||t===!1?!1:t,St.boolean());case"array":return St.array(e.items?xR(e.items):St.any());case"object":return St.record(St.any());default:return St.any()}}function u_(e,t){let a=xR(t),r=a.safeParse(e);if(r.success)return r.data;if(t.type==="object"||t.type==="array")try{let n=JSON.parse(e);return a.parse(n)}catch{}return e}var MR=Ce(()=>{"use strict";wR()});import*as Ga from"node:fs";import*as Yt from"node:path";function f4(e){let t=Yt.extname(e).toLowerCase();return!!(g4.has(t)||t==="")}function LR(e){let t=Yt.resolve(e),a=Ga.readFileSync(t),r=Yt.relative(process.cwd(),t);if(f4(e))return{path:r,contents:a.toString("utf-8")};let n=Yt.extname(e).toLowerCase().slice(1)||"bin",s={png:"image/png",jpg:"image/jpeg",jpeg:"image/jpeg",gif:"image/gif",webp:"image/webp",ico:"image/x-icon",pdf:"application/pdf",zip:"application/zip",woff:"font/woff",woff2:"font/woff2",ttf:"font/ttf"}[n]||"application/octet-stream",o=a.toString("base64");return{path:r,contents:`data:${s};base64,${o}`}}function PR(e){let t=[];for(let a of e){let r=Yt.resolve(a);if(Ga.statSync(r).isDirectory()){let i=FR(r);for(let s of i)t.push(LR(s))}else t.push(LR(r))}return t}function FR(e){let t=[],a=Ga.readdirSync(e,{withFileTypes:!0});for(let r of a){let n=Yt.join(e,r.name);r.isDirectory()?t.push(...FR(n)):t.push(n)}return t}function UR(e){if(e.startsWith("-"))return!1;try{let t=Yt.resolve(e);return Ga.existsSync(t)}catch{return!1}}var g4,BR=Ce(()=>{"use strict";g4=new Set([".txt",".md",".html",".htm",".css",".js",".ts",".jsx",".tsx",".json",".xml",".yaml",".yml",".toml",".ini",".cfg",".conf",".sh",".bash",".zsh",".fish",".bat",".ps1",".py",".rb",".go",".rs",".java",".c",".cpp",".h",".hpp",".cs",".php",".swift",".kt",".scala",".r",".sql",".graphql",".proto",".env",".gitignore",".dockerignore",".editorconfig",".prettierrc",".eslintrc",".svg",".csv",".tsv",".log"])});var HR={};Tr(HR,{execute:()=>p_});import*as GR from"node:fs";import*as zR from"node:path";function E4(e){return he.use(_R()),he.parse(e).trimEnd()}function h4(e){try{let t=zR.join(process.cwd(),e),a=GR.readFileSync(t,"utf-8"),r=JSON.parse(a);if(r&&typeof r=="object"&&!Array.isArray(r))return r}catch{}return{}}function S4(e){return e.args?e.args:[...e.params.path.filter(t=>t.required),...e.params.query.filter(t=>t.required),...e.params.body.filter(t=>t.required)].map(t=>t.name)}async function p_(e,t,a,r,n){let i=n?.jsonMode??!1,s=await Aa(e),o=s.actions.find(F=>F.slug===t),c=s.actions.some(F=>F.slug.startsWith(t+"."));if(!o&&c)return Wo(e,t);if(!o){console.error(`\x1B[31mAction "${t}" not found.\x1B[0m`);let F=s.actions.filter(X=>X.slug.includes(t)).map(X=>X.slug);if(F.length>0){console.log(`
|
|
134
|
+
`};qP="\\*",$P="\\d+\\.",pR="(?:"+[qP,$P].join("|")+")";mR=function(e,t){return e.match("^(?:"+t+")*"+pR)};n_="* ";rR=function(e){return e+". "}});var de,s_,P,jt,ni=Ce(()=>{(function(e){e.assertEqual=n=>{};function t(n){}e.assertIs=t;function a(n){throw new Error}e.assertNever=a,e.arrayToEnum=n=>{let i={};for(let s of n)i[s]=s;return i},e.getValidEnumValues=n=>{let i=e.objectKeys(n).filter(o=>typeof n[n[o]]!="number"),s={};for(let o of i)s[o]=n[o];return e.objectValues(s)},e.objectValues=n=>e.objectKeys(n).map(function(i){return n[i]}),e.objectKeys=typeof Object.keys=="function"?n=>Object.keys(n):n=>{let i=[];for(let s in n)Object.prototype.hasOwnProperty.call(n,s)&&i.push(s);return i},e.find=(n,i)=>{for(let s of n)if(i(s))return s},e.isInteger=typeof Number.isInteger=="function"?n=>Number.isInteger(n):n=>typeof n=="number"&&Number.isFinite(n)&&Math.floor(n)===n;function r(n,i=" | "){return n.map(s=>typeof s=="string"?`'${s}'`:s).join(i)}e.joinValues=r,e.jsonStringifyReplacer=(n,i)=>typeof i=="bigint"?i.toString():i})(de||(de={}));(function(e){e.mergeShapes=(t,a)=>({...t,...a})})(s_||(s_={}));P=de.arrayToEnum(["string","nan","number","integer","float","boolean","date","bigint","symbol","function","undefined","null","array","object","unknown","promise","void","never","map","set"]),jt=e=>{switch(typeof e){case"undefined":return P.undefined;case"string":return P.string;case"number":return Number.isNaN(e)?P.nan:P.number;case"boolean":return P.boolean;case"function":return P.function;case"bigint":return P.bigint;case"symbol":return P.symbol;case"object":return Array.isArray(e)?P.array:e===null?P.null:e.then&&typeof e.then=="function"&&e.catch&&typeof e.catch=="function"?P.promise:typeof Map<"u"&&e instanceof Map?P.map:typeof Set<"u"&&e instanceof Set?P.set:typeof Date<"u"&&e instanceof Date?P.date:P.object;default:return P.unknown}}});var D,i2,Et,Ws=Ce(()=>{ni();D=de.arrayToEnum(["invalid_type","invalid_literal","custom","invalid_union","invalid_union_discriminator","invalid_enum_value","unrecognized_keys","invalid_arguments","invalid_return_type","invalid_date","invalid_string","too_small","too_big","invalid_intersection_types","not_multiple_of","not_finite"]),i2=e=>JSON.stringify(e,null,2).replace(/"([^"]+)":/g,"$1:"),Et=class e extends Error{get errors(){return this.issues}constructor(t){super(),this.issues=[],this.addIssue=r=>{this.issues=[...this.issues,r]},this.addIssues=(r=[])=>{this.issues=[...this.issues,...r]};let a=new.target.prototype;Object.setPrototypeOf?Object.setPrototypeOf(this,a):this.__proto__=a,this.name="ZodError",this.issues=t}format(t){let a=t||function(i){return i.message},r={_errors:[]},n=i=>{for(let s of i.issues)if(s.code==="invalid_union")s.unionErrors.map(n);else if(s.code==="invalid_return_type")n(s.returnTypeError);else if(s.code==="invalid_arguments")n(s.argumentsError);else if(s.path.length===0)r._errors.push(a(s));else{let o=r,c=0;for(;c<s.path.length;){let l=s.path[c];c===s.path.length-1?(o[l]=o[l]||{_errors:[]},o[l]._errors.push(a(s))):o[l]=o[l]||{_errors:[]},o=o[l],c++}}};return n(this),r}static assert(t){if(!(t instanceof e))throw new Error(`Not a ZodError: ${t}`)}toString(){return this.message}get message(){return JSON.stringify(this.issues,de.jsonStringifyReplacer,2)}get isEmpty(){return this.issues.length===0}flatten(t=a=>a.message){let a={},r=[];for(let n of this.issues)if(n.path.length>0){let i=n.path[0];a[i]=a[i]||[],a[i].push(t(n))}else r.push(t(n));return{formErrors:r,fieldErrors:a}}get formErrors(){return this.flatten()}};Et.create=e=>new Et(e)});var s2,fa,o_=Ce(()=>{Ws();ni();s2=(e,t)=>{let a;switch(e.code){case D.invalid_type:e.received===P.undefined?a="Required":a=`Expected ${e.expected}, received ${e.received}`;break;case D.invalid_literal:a=`Invalid literal value, expected ${JSON.stringify(e.expected,de.jsonStringifyReplacer)}`;break;case D.unrecognized_keys:a=`Unrecognized key(s) in object: ${de.joinValues(e.keys,", ")}`;break;case D.invalid_union:a="Invalid input";break;case D.invalid_union_discriminator:a=`Invalid discriminator value. Expected ${de.joinValues(e.options)}`;break;case D.invalid_enum_value:a=`Invalid enum value. Expected ${de.joinValues(e.options)}, received '${e.received}'`;break;case D.invalid_arguments:a="Invalid function arguments";break;case D.invalid_return_type:a="Invalid function return type";break;case D.invalid_date:a="Invalid date";break;case D.invalid_string:typeof e.validation=="object"?"includes"in e.validation?(a=`Invalid input: must include "${e.validation.includes}"`,typeof e.validation.position=="number"&&(a=`${a} at one or more positions greater than or equal to ${e.validation.position}`)):"startsWith"in e.validation?a=`Invalid input: must start with "${e.validation.startsWith}"`:"endsWith"in e.validation?a=`Invalid input: must end with "${e.validation.endsWith}"`:de.assertNever(e.validation):e.validation!=="regex"?a=`Invalid ${e.validation}`:a="Invalid";break;case D.too_small:e.type==="array"?a=`Array must contain ${e.exact?"exactly":e.inclusive?"at least":"more than"} ${e.minimum} element(s)`:e.type==="string"?a=`String must contain ${e.exact?"exactly":e.inclusive?"at least":"over"} ${e.minimum} character(s)`:e.type==="number"?a=`Number must be ${e.exact?"exactly equal to ":e.inclusive?"greater than or equal to ":"greater than "}${e.minimum}`:e.type==="bigint"?a=`Number must be ${e.exact?"exactly equal to ":e.inclusive?"greater than or equal to ":"greater than "}${e.minimum}`:e.type==="date"?a=`Date must be ${e.exact?"exactly equal to ":e.inclusive?"greater than or equal to ":"greater than "}${new Date(Number(e.minimum))}`:a="Invalid input";break;case D.too_big:e.type==="array"?a=`Array must contain ${e.exact?"exactly":e.inclusive?"at most":"less than"} ${e.maximum} element(s)`:e.type==="string"?a=`String must contain ${e.exact?"exactly":e.inclusive?"at most":"under"} ${e.maximum} character(s)`:e.type==="number"?a=`Number must be ${e.exact?"exactly":e.inclusive?"less than or equal to":"less than"} ${e.maximum}`:e.type==="bigint"?a=`BigInt must be ${e.exact?"exactly":e.inclusive?"less than or equal to":"less than"} ${e.maximum}`:e.type==="date"?a=`Date must be ${e.exact?"exactly":e.inclusive?"smaller than or equal to":"smaller than"} ${new Date(Number(e.maximum))}`:a="Invalid input";break;case D.custom:a="Invalid input";break;case D.invalid_intersection_types:a="Intersection results could not be merged";break;case D.not_multiple_of:a=`Number must be a multiple of ${e.multipleOf}`;break;case D.not_finite:a="Number must be finite";break;default:a=t.defaultError,de.assertNever(e)}return{message:a}},fa=s2});function o2(e){hR=e}function nn(){return hR}var hR,Qs=Ce(()=>{o_();hR=fa});function M(e,t){let a=nn(),r=ii({issueData:t,data:e.data,path:e.path,errorMaps:[e.common.contextualErrorMap,e.schemaErrorMap,a,a===fa?void 0:fa].filter(n=>!!n)});e.common.issues.push(r)}var ii,l2,et,j,nr,it,js,Xs,Pa,sn,l_=Ce(()=>{Qs();o_();ii=e=>{let{data:t,path:a,errorMaps:r,issueData:n}=e,i=[...a,...n.path||[]],s={...n,path:i};if(n.message!==void 0)return{...n,path:i,message:n.message};let o="",c=r.filter(l=>!!l).slice().reverse();for(let l of c)o=l(s,{data:t,defaultError:o}).message;return{...n,path:i,message:o}},l2=[];et=class e{constructor(){this.value="valid"}dirty(){this.value==="valid"&&(this.value="dirty")}abort(){this.value!=="aborted"&&(this.value="aborted")}static mergeArray(t,a){let r=[];for(let n of a){if(n.status==="aborted")return j;n.status==="dirty"&&t.dirty(),r.push(n.value)}return{status:t.value,value:r}}static async mergeObjectAsync(t,a){let r=[];for(let n of a){let i=await n.key,s=await n.value;r.push({key:i,value:s})}return e.mergeObjectSync(t,r)}static mergeObjectSync(t,a){let r={};for(let n of a){let{key:i,value:s}=n;if(i.status==="aborted"||s.status==="aborted")return j;i.status==="dirty"&&t.dirty(),s.status==="dirty"&&t.dirty(),i.value!=="__proto__"&&(typeof s.value<"u"||n.alwaysSet)&&(r[i.value]=s.value)}return{status:t.value,value:r}}},j=Object.freeze({status:"aborted"}),nr=e=>({status:"dirty",value:e}),it=e=>({status:"valid",value:e}),js=e=>e.status==="aborted",Xs=e=>e.status==="dirty",Pa=e=>e.status==="valid",sn=e=>typeof Promise<"u"&&e instanceof Promise});var SR=Ce(()=>{});var H,TR=Ce(()=>{(function(e){e.errToObj=t=>typeof t=="string"?{message:t}:t||{},e.toString=t=>typeof t=="string"?t:t?.message})(H||(H={}))});function te(e){if(!e)return{};let{errorMap:t,invalid_type_error:a,required_error:r,description:n}=e;if(t&&(a||r))throw new Error(`Can't use "invalid_type_error" or "required_error" in conjunction with custom error map.`);return t?{errorMap:t,description:n}:{errorMap:(s,o)=>{let{message:c}=e;return s.code==="invalid_enum_value"?{message:c??o.defaultError}:typeof o.data>"u"?{message:c??r??o.defaultError}:s.code!=="invalid_type"?{message:o.defaultError}:{message:c??a??o.defaultError}},description:n}}function RR(e){let t="[0-5]\\d";e.precision?t=`${t}\\.\\d{${e.precision}}`:e.precision==null&&(t=`${t}(\\.\\d+)?`);let a=e.precision?"+":"?";return`([01]\\d|2[0-3]):[0-5]\\d(:${t})${a}`}function A2(e){return new RegExp(`^${RR(e)}$`)}function AR(e){let t=`${CR}T${RR(e)}`,a=[];return a.push(e.local?"Z?":"Z"),e.offset&&a.push("([+-]\\d{2}:?\\d{2})"),t=`${t}(${a.join("|")})`,new RegExp(`^${t}$`)}function N2(e,t){return!!((t==="v4"||!t)&&h2.test(e)||(t==="v6"||!t)&&T2.test(e))}function O2(e,t){if(!m2.test(e))return!1;try{let[a]=e.split(".");if(!a)return!1;let r=a.replace(/-/g,"+").replace(/_/g,"/").padEnd(a.length+(4-a.length%4)%4,"="),n=JSON.parse(atob(r));return!(typeof n!="object"||n===null||"typ"in n&&n?.typ!=="JWT"||!n.alg||t&&n.alg!==t)}catch{return!1}}function D2(e,t){return!!((t==="v4"||!t)&&S2.test(e)||(t==="v6"||!t)&&y2.test(e))}function I2(e,t){let a=(e.toString().split(".")[1]||"").length,r=(t.toString().split(".")[1]||"").length,n=a>r?a:r,i=Number.parseInt(e.toFixed(n).replace(".","")),s=Number.parseInt(t.toFixed(n).replace(".",""));return i%s/10**n}function on(e){if(e instanceof ht){let t={};for(let a in e.shape){let r=e.shape[a];t[a]=wt.create(on(r))}return new ht({...e._def,shape:()=>t})}else return e instanceof Sa?new Sa({...e._def,type:on(e.element)}):e instanceof wt?wt.create(on(e.unwrap())):e instanceof Zt?Zt.create(on(e.unwrap())):e instanceof Xt?Xt.create(e.items.map(t=>on(t))):e}function __(e,t){let a=jt(e),r=jt(t);if(e===t)return{valid:!0,data:e};if(a===P.object&&r===P.object){let n=de.objectKeys(t),i=de.objectKeys(e).filter(o=>n.indexOf(o)!==-1),s={...e,...t};for(let o of i){let c=__(e[o],t[o]);if(!c.valid)return{valid:!1};s[o]=c.data}return{valid:!0,data:s}}else if(a===P.array&&r===P.array){if(e.length!==t.length)return{valid:!1};let n=[];for(let i=0;i<e.length;i++){let s=e[i],o=t[i],c=__(s,o);if(!c.valid)return{valid:!1};n.push(c.data)}return{valid:!0,data:n}}else return a===P.date&&r===P.date&&+e==+t?{valid:!0,data:e}:{valid:!1}}function NR(e,t){return new gr({values:e,typeName:J.ZodEnum,...te(t)})}function bR(e,t){let a=typeof e=="function"?e(t):typeof e=="string"?{message:e}:e;return typeof a=="string"?{message:a}:a}function OR(e,t={},a){return e?Ua.create().superRefine((r,n)=>{let i=e(r);if(i instanceof Promise)return i.then(s=>{if(!s){let o=bR(t,r),c=o.fatal??a??!0;n.addIssue({code:"custom",...o,fatal:c})}});if(!i){let s=bR(t,r),o=s.fatal??a??!0;n.addIssue({code:"custom",...s,fatal:o})}}):Ua.create()}var xt,yR,re,c2,_2,d2,u2,p2,m2,g2,f2,E2,c_,h2,S2,T2,y2,b2,C2,CR,R2,Fa,ir,sr,or,lr,ln,cr,_r,Ua,ha,Ht,cn,Sa,ht,dr,Ea,Zs,ur,Xt,Js,_n,dn,eo,pr,mr,gr,fr,Ba,Mt,wt,Zt,Er,hr,un,k2,si,oi,Sr,v2,J,w2,DR,IR,x2,M2,kR,L2,P2,F2,U2,B2,G2,z2,H2,Y2,q2,$2,V2,K2,W2,Q2,j2,X2,Z2,J2,e4,t4,a4,r4,n4,i4,s4,o4,l4,c4,_4,d4,u4,p4,m4,vR=Ce(()=>{Ws();Qs();TR();l_();ni();xt=class{constructor(t,a,r,n){this._cachedPath=[],this.parent=t,this.data=a,this._path=r,this._key=n}get path(){return this._cachedPath.length||(Array.isArray(this._key)?this._cachedPath.push(...this._path,...this._key):this._cachedPath.push(...this._path,this._key)),this._cachedPath}},yR=(e,t)=>{if(Pa(t))return{success:!0,data:t.value};if(!e.common.issues.length)throw new Error("Validation failed but no issues detected.");return{success:!1,get error(){if(this._error)return this._error;let a=new Et(e.common.issues);return this._error=a,this._error}}};re=class{get description(){return this._def.description}_getType(t){return jt(t.data)}_getOrReturnCtx(t,a){return a||{common:t.parent.common,data:t.data,parsedType:jt(t.data),schemaErrorMap:this._def.errorMap,path:t.path,parent:t.parent}}_processInputParams(t){return{status:new et,ctx:{common:t.parent.common,data:t.data,parsedType:jt(t.data),schemaErrorMap:this._def.errorMap,path:t.path,parent:t.parent}}}_parseSync(t){let a=this._parse(t);if(sn(a))throw new Error("Synchronous parse encountered promise.");return a}_parseAsync(t){let a=this._parse(t);return Promise.resolve(a)}parse(t,a){let r=this.safeParse(t,a);if(r.success)return r.data;throw r.error}safeParse(t,a){let r={common:{issues:[],async:a?.async??!1,contextualErrorMap:a?.errorMap},path:a?.path||[],schemaErrorMap:this._def.errorMap,parent:null,data:t,parsedType:jt(t)},n=this._parseSync({data:t,path:r.path,parent:r});return yR(r,n)}"~validate"(t){let a={common:{issues:[],async:!!this["~standard"].async},path:[],schemaErrorMap:this._def.errorMap,parent:null,data:t,parsedType:jt(t)};if(!this["~standard"].async)try{let r=this._parseSync({data:t,path:[],parent:a});return Pa(r)?{value:r.value}:{issues:a.common.issues}}catch(r){r?.message?.toLowerCase()?.includes("encountered")&&(this["~standard"].async=!0),a.common={issues:[],async:!0}}return this._parseAsync({data:t,path:[],parent:a}).then(r=>Pa(r)?{value:r.value}:{issues:a.common.issues})}async parseAsync(t,a){let r=await this.safeParseAsync(t,a);if(r.success)return r.data;throw r.error}async safeParseAsync(t,a){let r={common:{issues:[],contextualErrorMap:a?.errorMap,async:!0},path:a?.path||[],schemaErrorMap:this._def.errorMap,parent:null,data:t,parsedType:jt(t)},n=this._parse({data:t,path:r.path,parent:r}),i=await(sn(n)?n:Promise.resolve(n));return yR(r,i)}refine(t,a){let r=n=>typeof a=="string"||typeof a>"u"?{message:a}:typeof a=="function"?a(n):a;return this._refinement((n,i)=>{let s=t(n),o=()=>i.addIssue({code:D.custom,...r(n)});return typeof Promise<"u"&&s instanceof Promise?s.then(c=>c?!0:(o(),!1)):s?!0:(o(),!1)})}refinement(t,a){return this._refinement((r,n)=>t(r)?!0:(n.addIssue(typeof a=="function"?a(r,n):a),!1))}_refinement(t){return new Mt({schema:this,typeName:J.ZodEffects,effect:{type:"refinement",refinement:t}})}superRefine(t){return this._refinement(t)}constructor(t){this.spa=this.safeParseAsync,this._def=t,this.parse=this.parse.bind(this),this.safeParse=this.safeParse.bind(this),this.parseAsync=this.parseAsync.bind(this),this.safeParseAsync=this.safeParseAsync.bind(this),this.spa=this.spa.bind(this),this.refine=this.refine.bind(this),this.refinement=this.refinement.bind(this),this.superRefine=this.superRefine.bind(this),this.optional=this.optional.bind(this),this.nullable=this.nullable.bind(this),this.nullish=this.nullish.bind(this),this.array=this.array.bind(this),this.promise=this.promise.bind(this),this.or=this.or.bind(this),this.and=this.and.bind(this),this.transform=this.transform.bind(this),this.brand=this.brand.bind(this),this.default=this.default.bind(this),this.catch=this.catch.bind(this),this.describe=this.describe.bind(this),this.pipe=this.pipe.bind(this),this.readonly=this.readonly.bind(this),this.isNullable=this.isNullable.bind(this),this.isOptional=this.isOptional.bind(this),this["~standard"]={version:1,vendor:"zod",validate:a=>this["~validate"](a)}}optional(){return wt.create(this,this._def)}nullable(){return Zt.create(this,this._def)}nullish(){return this.nullable().optional()}array(){return Sa.create(this)}promise(){return Ba.create(this,this._def)}or(t){return dr.create([this,t],this._def)}and(t){return ur.create(this,t,this._def)}transform(t){return new Mt({...te(this._def),schema:this,typeName:J.ZodEffects,effect:{type:"transform",transform:t}})}default(t){let a=typeof t=="function"?t:()=>t;return new Er({...te(this._def),innerType:this,defaultValue:a,typeName:J.ZodDefault})}brand(){return new si({typeName:J.ZodBranded,type:this,...te(this._def)})}catch(t){let a=typeof t=="function"?t:()=>t;return new hr({...te(this._def),innerType:this,catchValue:a,typeName:J.ZodCatch})}describe(t){let a=this.constructor;return new a({...this._def,description:t})}pipe(t){return oi.create(this,t)}readonly(){return Sr.create(this)}isOptional(){return this.safeParse(void 0).success}isNullable(){return this.safeParse(null).success}},c2=/^c[^\s-]{8,}$/i,_2=/^[0-9a-z]+$/,d2=/^[0-9A-HJKMNP-TV-Z]{26}$/i,u2=/^[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}$/i,p2=/^[a-z0-9_-]{21}$/i,m2=/^[A-Za-z0-9-_]+\.[A-Za-z0-9-_]+\.[A-Za-z0-9-_]*$/,g2=/^[-+]?P(?!$)(?:(?:[-+]?\d+Y)|(?:[-+]?\d+[.,]\d+Y$))?(?:(?:[-+]?\d+M)|(?:[-+]?\d+[.,]\d+M$))?(?:(?:[-+]?\d+W)|(?:[-+]?\d+[.,]\d+W$))?(?:(?:[-+]?\d+D)|(?:[-+]?\d+[.,]\d+D$))?(?:T(?=[\d+-])(?:(?:[-+]?\d+H)|(?:[-+]?\d+[.,]\d+H$))?(?:(?:[-+]?\d+M)|(?:[-+]?\d+[.,]\d+M$))?(?:[-+]?\d+(?:[.,]\d+)?S)?)??$/,f2=/^(?!\.)(?!.*\.\.)([A-Z0-9_'+\-\.]*)[A-Z0-9_+-]@([A-Z0-9][A-Z0-9\-]*\.)+[A-Z]{2,}$/i,E2="^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$",h2=/^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])$/,S2=/^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\/(3[0-2]|[12]?[0-9])$/,T2=/^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))$/,y2=/^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))\/(12[0-8]|1[01][0-9]|[1-9]?[0-9])$/,b2=/^([0-9a-zA-Z+/]{4})*(([0-9a-zA-Z+/]{2}==)|([0-9a-zA-Z+/]{3}=))?$/,C2=/^([0-9a-zA-Z-_]{4})*(([0-9a-zA-Z-_]{2}(==)?)|([0-9a-zA-Z-_]{3}(=)?))?$/,CR="((\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-((0[13578]|1[02])-(0[1-9]|[12]\\d|3[01])|(0[469]|11)-(0[1-9]|[12]\\d|30)|(02)-(0[1-9]|1\\d|2[0-8])))",R2=new RegExp(`^${CR}$`);Fa=class e extends re{_parse(t){if(this._def.coerce&&(t.data=String(t.data)),this._getType(t)!==P.string){let i=this._getOrReturnCtx(t);return M(i,{code:D.invalid_type,expected:P.string,received:i.parsedType}),j}let r=new et,n;for(let i of this._def.checks)if(i.kind==="min")t.data.length<i.value&&(n=this._getOrReturnCtx(t,n),M(n,{code:D.too_small,minimum:i.value,type:"string",inclusive:!0,exact:!1,message:i.message}),r.dirty());else if(i.kind==="max")t.data.length>i.value&&(n=this._getOrReturnCtx(t,n),M(n,{code:D.too_big,maximum:i.value,type:"string",inclusive:!0,exact:!1,message:i.message}),r.dirty());else if(i.kind==="length"){let s=t.data.length>i.value,o=t.data.length<i.value;(s||o)&&(n=this._getOrReturnCtx(t,n),s?M(n,{code:D.too_big,maximum:i.value,type:"string",inclusive:!0,exact:!0,message:i.message}):o&&M(n,{code:D.too_small,minimum:i.value,type:"string",inclusive:!0,exact:!0,message:i.message}),r.dirty())}else if(i.kind==="email")f2.test(t.data)||(n=this._getOrReturnCtx(t,n),M(n,{validation:"email",code:D.invalid_string,message:i.message}),r.dirty());else if(i.kind==="emoji")c_||(c_=new RegExp(E2,"u")),c_.test(t.data)||(n=this._getOrReturnCtx(t,n),M(n,{validation:"emoji",code:D.invalid_string,message:i.message}),r.dirty());else if(i.kind==="uuid")u2.test(t.data)||(n=this._getOrReturnCtx(t,n),M(n,{validation:"uuid",code:D.invalid_string,message:i.message}),r.dirty());else if(i.kind==="nanoid")p2.test(t.data)||(n=this._getOrReturnCtx(t,n),M(n,{validation:"nanoid",code:D.invalid_string,message:i.message}),r.dirty());else if(i.kind==="cuid")c2.test(t.data)||(n=this._getOrReturnCtx(t,n),M(n,{validation:"cuid",code:D.invalid_string,message:i.message}),r.dirty());else if(i.kind==="cuid2")_2.test(t.data)||(n=this._getOrReturnCtx(t,n),M(n,{validation:"cuid2",code:D.invalid_string,message:i.message}),r.dirty());else if(i.kind==="ulid")d2.test(t.data)||(n=this._getOrReturnCtx(t,n),M(n,{validation:"ulid",code:D.invalid_string,message:i.message}),r.dirty());else if(i.kind==="url")try{new URL(t.data)}catch{n=this._getOrReturnCtx(t,n),M(n,{validation:"url",code:D.invalid_string,message:i.message}),r.dirty()}else i.kind==="regex"?(i.regex.lastIndex=0,i.regex.test(t.data)||(n=this._getOrReturnCtx(t,n),M(n,{validation:"regex",code:D.invalid_string,message:i.message}),r.dirty())):i.kind==="trim"?t.data=t.data.trim():i.kind==="includes"?t.data.includes(i.value,i.position)||(n=this._getOrReturnCtx(t,n),M(n,{code:D.invalid_string,validation:{includes:i.value,position:i.position},message:i.message}),r.dirty()):i.kind==="toLowerCase"?t.data=t.data.toLowerCase():i.kind==="toUpperCase"?t.data=t.data.toUpperCase():i.kind==="startsWith"?t.data.startsWith(i.value)||(n=this._getOrReturnCtx(t,n),M(n,{code:D.invalid_string,validation:{startsWith:i.value},message:i.message}),r.dirty()):i.kind==="endsWith"?t.data.endsWith(i.value)||(n=this._getOrReturnCtx(t,n),M(n,{code:D.invalid_string,validation:{endsWith:i.value},message:i.message}),r.dirty()):i.kind==="datetime"?AR(i).test(t.data)||(n=this._getOrReturnCtx(t,n),M(n,{code:D.invalid_string,validation:"datetime",message:i.message}),r.dirty()):i.kind==="date"?R2.test(t.data)||(n=this._getOrReturnCtx(t,n),M(n,{code:D.invalid_string,validation:"date",message:i.message}),r.dirty()):i.kind==="time"?A2(i).test(t.data)||(n=this._getOrReturnCtx(t,n),M(n,{code:D.invalid_string,validation:"time",message:i.message}),r.dirty()):i.kind==="duration"?g2.test(t.data)||(n=this._getOrReturnCtx(t,n),M(n,{validation:"duration",code:D.invalid_string,message:i.message}),r.dirty()):i.kind==="ip"?N2(t.data,i.version)||(n=this._getOrReturnCtx(t,n),M(n,{validation:"ip",code:D.invalid_string,message:i.message}),r.dirty()):i.kind==="jwt"?O2(t.data,i.alg)||(n=this._getOrReturnCtx(t,n),M(n,{validation:"jwt",code:D.invalid_string,message:i.message}),r.dirty()):i.kind==="cidr"?D2(t.data,i.version)||(n=this._getOrReturnCtx(t,n),M(n,{validation:"cidr",code:D.invalid_string,message:i.message}),r.dirty()):i.kind==="base64"?b2.test(t.data)||(n=this._getOrReturnCtx(t,n),M(n,{validation:"base64",code:D.invalid_string,message:i.message}),r.dirty()):i.kind==="base64url"?C2.test(t.data)||(n=this._getOrReturnCtx(t,n),M(n,{validation:"base64url",code:D.invalid_string,message:i.message}),r.dirty()):de.assertNever(i);return{status:r.value,value:t.data}}_regex(t,a,r){return this.refinement(n=>t.test(n),{validation:a,code:D.invalid_string,...H.errToObj(r)})}_addCheck(t){return new e({...this._def,checks:[...this._def.checks,t]})}email(t){return this._addCheck({kind:"email",...H.errToObj(t)})}url(t){return this._addCheck({kind:"url",...H.errToObj(t)})}emoji(t){return this._addCheck({kind:"emoji",...H.errToObj(t)})}uuid(t){return this._addCheck({kind:"uuid",...H.errToObj(t)})}nanoid(t){return this._addCheck({kind:"nanoid",...H.errToObj(t)})}cuid(t){return this._addCheck({kind:"cuid",...H.errToObj(t)})}cuid2(t){return this._addCheck({kind:"cuid2",...H.errToObj(t)})}ulid(t){return this._addCheck({kind:"ulid",...H.errToObj(t)})}base64(t){return this._addCheck({kind:"base64",...H.errToObj(t)})}base64url(t){return this._addCheck({kind:"base64url",...H.errToObj(t)})}jwt(t){return this._addCheck({kind:"jwt",...H.errToObj(t)})}ip(t){return this._addCheck({kind:"ip",...H.errToObj(t)})}cidr(t){return this._addCheck({kind:"cidr",...H.errToObj(t)})}datetime(t){return typeof t=="string"?this._addCheck({kind:"datetime",precision:null,offset:!1,local:!1,message:t}):this._addCheck({kind:"datetime",precision:typeof t?.precision>"u"?null:t?.precision,offset:t?.offset??!1,local:t?.local??!1,...H.errToObj(t?.message)})}date(t){return this._addCheck({kind:"date",message:t})}time(t){return typeof t=="string"?this._addCheck({kind:"time",precision:null,message:t}):this._addCheck({kind:"time",precision:typeof t?.precision>"u"?null:t?.precision,...H.errToObj(t?.message)})}duration(t){return this._addCheck({kind:"duration",...H.errToObj(t)})}regex(t,a){return this._addCheck({kind:"regex",regex:t,...H.errToObj(a)})}includes(t,a){return this._addCheck({kind:"includes",value:t,position:a?.position,...H.errToObj(a?.message)})}startsWith(t,a){return this._addCheck({kind:"startsWith",value:t,...H.errToObj(a)})}endsWith(t,a){return this._addCheck({kind:"endsWith",value:t,...H.errToObj(a)})}min(t,a){return this._addCheck({kind:"min",value:t,...H.errToObj(a)})}max(t,a){return this._addCheck({kind:"max",value:t,...H.errToObj(a)})}length(t,a){return this._addCheck({kind:"length",value:t,...H.errToObj(a)})}nonempty(t){return this.min(1,H.errToObj(t))}trim(){return new e({...this._def,checks:[...this._def.checks,{kind:"trim"}]})}toLowerCase(){return new e({...this._def,checks:[...this._def.checks,{kind:"toLowerCase"}]})}toUpperCase(){return new e({...this._def,checks:[...this._def.checks,{kind:"toUpperCase"}]})}get isDatetime(){return!!this._def.checks.find(t=>t.kind==="datetime")}get isDate(){return!!this._def.checks.find(t=>t.kind==="date")}get isTime(){return!!this._def.checks.find(t=>t.kind==="time")}get isDuration(){return!!this._def.checks.find(t=>t.kind==="duration")}get isEmail(){return!!this._def.checks.find(t=>t.kind==="email")}get isURL(){return!!this._def.checks.find(t=>t.kind==="url")}get isEmoji(){return!!this._def.checks.find(t=>t.kind==="emoji")}get isUUID(){return!!this._def.checks.find(t=>t.kind==="uuid")}get isNANOID(){return!!this._def.checks.find(t=>t.kind==="nanoid")}get isCUID(){return!!this._def.checks.find(t=>t.kind==="cuid")}get isCUID2(){return!!this._def.checks.find(t=>t.kind==="cuid2")}get isULID(){return!!this._def.checks.find(t=>t.kind==="ulid")}get isIP(){return!!this._def.checks.find(t=>t.kind==="ip")}get isCIDR(){return!!this._def.checks.find(t=>t.kind==="cidr")}get isBase64(){return!!this._def.checks.find(t=>t.kind==="base64")}get isBase64url(){return!!this._def.checks.find(t=>t.kind==="base64url")}get minLength(){let t=null;for(let a of this._def.checks)a.kind==="min"&&(t===null||a.value>t)&&(t=a.value);return t}get maxLength(){let t=null;for(let a of this._def.checks)a.kind==="max"&&(t===null||a.value<t)&&(t=a.value);return t}};Fa.create=e=>new Fa({checks:[],typeName:J.ZodString,coerce:e?.coerce??!1,...te(e)});ir=class e extends re{constructor(){super(...arguments),this.min=this.gte,this.max=this.lte,this.step=this.multipleOf}_parse(t){if(this._def.coerce&&(t.data=Number(t.data)),this._getType(t)!==P.number){let i=this._getOrReturnCtx(t);return M(i,{code:D.invalid_type,expected:P.number,received:i.parsedType}),j}let r,n=new et;for(let i of this._def.checks)i.kind==="int"?de.isInteger(t.data)||(r=this._getOrReturnCtx(t,r),M(r,{code:D.invalid_type,expected:"integer",received:"float",message:i.message}),n.dirty()):i.kind==="min"?(i.inclusive?t.data<i.value:t.data<=i.value)&&(r=this._getOrReturnCtx(t,r),M(r,{code:D.too_small,minimum:i.value,type:"number",inclusive:i.inclusive,exact:!1,message:i.message}),n.dirty()):i.kind==="max"?(i.inclusive?t.data>i.value:t.data>=i.value)&&(r=this._getOrReturnCtx(t,r),M(r,{code:D.too_big,maximum:i.value,type:"number",inclusive:i.inclusive,exact:!1,message:i.message}),n.dirty()):i.kind==="multipleOf"?I2(t.data,i.value)!==0&&(r=this._getOrReturnCtx(t,r),M(r,{code:D.not_multiple_of,multipleOf:i.value,message:i.message}),n.dirty()):i.kind==="finite"?Number.isFinite(t.data)||(r=this._getOrReturnCtx(t,r),M(r,{code:D.not_finite,message:i.message}),n.dirty()):de.assertNever(i);return{status:n.value,value:t.data}}gte(t,a){return this.setLimit("min",t,!0,H.toString(a))}gt(t,a){return this.setLimit("min",t,!1,H.toString(a))}lte(t,a){return this.setLimit("max",t,!0,H.toString(a))}lt(t,a){return this.setLimit("max",t,!1,H.toString(a))}setLimit(t,a,r,n){return new e({...this._def,checks:[...this._def.checks,{kind:t,value:a,inclusive:r,message:H.toString(n)}]})}_addCheck(t){return new e({...this._def,checks:[...this._def.checks,t]})}int(t){return this._addCheck({kind:"int",message:H.toString(t)})}positive(t){return this._addCheck({kind:"min",value:0,inclusive:!1,message:H.toString(t)})}negative(t){return this._addCheck({kind:"max",value:0,inclusive:!1,message:H.toString(t)})}nonpositive(t){return this._addCheck({kind:"max",value:0,inclusive:!0,message:H.toString(t)})}nonnegative(t){return this._addCheck({kind:"min",value:0,inclusive:!0,message:H.toString(t)})}multipleOf(t,a){return this._addCheck({kind:"multipleOf",value:t,message:H.toString(a)})}finite(t){return this._addCheck({kind:"finite",message:H.toString(t)})}safe(t){return this._addCheck({kind:"min",inclusive:!0,value:Number.MIN_SAFE_INTEGER,message:H.toString(t)})._addCheck({kind:"max",inclusive:!0,value:Number.MAX_SAFE_INTEGER,message:H.toString(t)})}get minValue(){let t=null;for(let a of this._def.checks)a.kind==="min"&&(t===null||a.value>t)&&(t=a.value);return t}get maxValue(){let t=null;for(let a of this._def.checks)a.kind==="max"&&(t===null||a.value<t)&&(t=a.value);return t}get isInt(){return!!this._def.checks.find(t=>t.kind==="int"||t.kind==="multipleOf"&&de.isInteger(t.value))}get isFinite(){let t=null,a=null;for(let r of this._def.checks){if(r.kind==="finite"||r.kind==="int"||r.kind==="multipleOf")return!0;r.kind==="min"?(a===null||r.value>a)&&(a=r.value):r.kind==="max"&&(t===null||r.value<t)&&(t=r.value)}return Number.isFinite(a)&&Number.isFinite(t)}};ir.create=e=>new ir({checks:[],typeName:J.ZodNumber,coerce:e?.coerce||!1,...te(e)});sr=class e extends re{constructor(){super(...arguments),this.min=this.gte,this.max=this.lte}_parse(t){if(this._def.coerce)try{t.data=BigInt(t.data)}catch{return this._getInvalidInput(t)}if(this._getType(t)!==P.bigint)return this._getInvalidInput(t);let r,n=new et;for(let i of this._def.checks)i.kind==="min"?(i.inclusive?t.data<i.value:t.data<=i.value)&&(r=this._getOrReturnCtx(t,r),M(r,{code:D.too_small,type:"bigint",minimum:i.value,inclusive:i.inclusive,message:i.message}),n.dirty()):i.kind==="max"?(i.inclusive?t.data>i.value:t.data>=i.value)&&(r=this._getOrReturnCtx(t,r),M(r,{code:D.too_big,type:"bigint",maximum:i.value,inclusive:i.inclusive,message:i.message}),n.dirty()):i.kind==="multipleOf"?t.data%i.value!==BigInt(0)&&(r=this._getOrReturnCtx(t,r),M(r,{code:D.not_multiple_of,multipleOf:i.value,message:i.message}),n.dirty()):de.assertNever(i);return{status:n.value,value:t.data}}_getInvalidInput(t){let a=this._getOrReturnCtx(t);return M(a,{code:D.invalid_type,expected:P.bigint,received:a.parsedType}),j}gte(t,a){return this.setLimit("min",t,!0,H.toString(a))}gt(t,a){return this.setLimit("min",t,!1,H.toString(a))}lte(t,a){return this.setLimit("max",t,!0,H.toString(a))}lt(t,a){return this.setLimit("max",t,!1,H.toString(a))}setLimit(t,a,r,n){return new e({...this._def,checks:[...this._def.checks,{kind:t,value:a,inclusive:r,message:H.toString(n)}]})}_addCheck(t){return new e({...this._def,checks:[...this._def.checks,t]})}positive(t){return this._addCheck({kind:"min",value:BigInt(0),inclusive:!1,message:H.toString(t)})}negative(t){return this._addCheck({kind:"max",value:BigInt(0),inclusive:!1,message:H.toString(t)})}nonpositive(t){return this._addCheck({kind:"max",value:BigInt(0),inclusive:!0,message:H.toString(t)})}nonnegative(t){return this._addCheck({kind:"min",value:BigInt(0),inclusive:!0,message:H.toString(t)})}multipleOf(t,a){return this._addCheck({kind:"multipleOf",value:t,message:H.toString(a)})}get minValue(){let t=null;for(let a of this._def.checks)a.kind==="min"&&(t===null||a.value>t)&&(t=a.value);return t}get maxValue(){let t=null;for(let a of this._def.checks)a.kind==="max"&&(t===null||a.value<t)&&(t=a.value);return t}};sr.create=e=>new sr({checks:[],typeName:J.ZodBigInt,coerce:e?.coerce??!1,...te(e)});or=class extends re{_parse(t){if(this._def.coerce&&(t.data=!!t.data),this._getType(t)!==P.boolean){let r=this._getOrReturnCtx(t);return M(r,{code:D.invalid_type,expected:P.boolean,received:r.parsedType}),j}return it(t.data)}};or.create=e=>new or({typeName:J.ZodBoolean,coerce:e?.coerce||!1,...te(e)});lr=class e extends re{_parse(t){if(this._def.coerce&&(t.data=new Date(t.data)),this._getType(t)!==P.date){let i=this._getOrReturnCtx(t);return M(i,{code:D.invalid_type,expected:P.date,received:i.parsedType}),j}if(Number.isNaN(t.data.getTime())){let i=this._getOrReturnCtx(t);return M(i,{code:D.invalid_date}),j}let r=new et,n;for(let i of this._def.checks)i.kind==="min"?t.data.getTime()<i.value&&(n=this._getOrReturnCtx(t,n),M(n,{code:D.too_small,message:i.message,inclusive:!0,exact:!1,minimum:i.value,type:"date"}),r.dirty()):i.kind==="max"?t.data.getTime()>i.value&&(n=this._getOrReturnCtx(t,n),M(n,{code:D.too_big,message:i.message,inclusive:!0,exact:!1,maximum:i.value,type:"date"}),r.dirty()):de.assertNever(i);return{status:r.value,value:new Date(t.data.getTime())}}_addCheck(t){return new e({...this._def,checks:[...this._def.checks,t]})}min(t,a){return this._addCheck({kind:"min",value:t.getTime(),message:H.toString(a)})}max(t,a){return this._addCheck({kind:"max",value:t.getTime(),message:H.toString(a)})}get minDate(){let t=null;for(let a of this._def.checks)a.kind==="min"&&(t===null||a.value>t)&&(t=a.value);return t!=null?new Date(t):null}get maxDate(){let t=null;for(let a of this._def.checks)a.kind==="max"&&(t===null||a.value<t)&&(t=a.value);return t!=null?new Date(t):null}};lr.create=e=>new lr({checks:[],coerce:e?.coerce||!1,typeName:J.ZodDate,...te(e)});ln=class extends re{_parse(t){if(this._getType(t)!==P.symbol){let r=this._getOrReturnCtx(t);return M(r,{code:D.invalid_type,expected:P.symbol,received:r.parsedType}),j}return it(t.data)}};ln.create=e=>new ln({typeName:J.ZodSymbol,...te(e)});cr=class extends re{_parse(t){if(this._getType(t)!==P.undefined){let r=this._getOrReturnCtx(t);return M(r,{code:D.invalid_type,expected:P.undefined,received:r.parsedType}),j}return it(t.data)}};cr.create=e=>new cr({typeName:J.ZodUndefined,...te(e)});_r=class extends re{_parse(t){if(this._getType(t)!==P.null){let r=this._getOrReturnCtx(t);return M(r,{code:D.invalid_type,expected:P.null,received:r.parsedType}),j}return it(t.data)}};_r.create=e=>new _r({typeName:J.ZodNull,...te(e)});Ua=class extends re{constructor(){super(...arguments),this._any=!0}_parse(t){return it(t.data)}};Ua.create=e=>new Ua({typeName:J.ZodAny,...te(e)});ha=class extends re{constructor(){super(...arguments),this._unknown=!0}_parse(t){return it(t.data)}};ha.create=e=>new ha({typeName:J.ZodUnknown,...te(e)});Ht=class extends re{_parse(t){let a=this._getOrReturnCtx(t);return M(a,{code:D.invalid_type,expected:P.never,received:a.parsedType}),j}};Ht.create=e=>new Ht({typeName:J.ZodNever,...te(e)});cn=class extends re{_parse(t){if(this._getType(t)!==P.undefined){let r=this._getOrReturnCtx(t);return M(r,{code:D.invalid_type,expected:P.void,received:r.parsedType}),j}return it(t.data)}};cn.create=e=>new cn({typeName:J.ZodVoid,...te(e)});Sa=class e extends re{_parse(t){let{ctx:a,status:r}=this._processInputParams(t),n=this._def;if(a.parsedType!==P.array)return M(a,{code:D.invalid_type,expected:P.array,received:a.parsedType}),j;if(n.exactLength!==null){let s=a.data.length>n.exactLength.value,o=a.data.length<n.exactLength.value;(s||o)&&(M(a,{code:s?D.too_big:D.too_small,minimum:o?n.exactLength.value:void 0,maximum:s?n.exactLength.value:void 0,type:"array",inclusive:!0,exact:!0,message:n.exactLength.message}),r.dirty())}if(n.minLength!==null&&a.data.length<n.minLength.value&&(M(a,{code:D.too_small,minimum:n.minLength.value,type:"array",inclusive:!0,exact:!1,message:n.minLength.message}),r.dirty()),n.maxLength!==null&&a.data.length>n.maxLength.value&&(M(a,{code:D.too_big,maximum:n.maxLength.value,type:"array",inclusive:!0,exact:!1,message:n.maxLength.message}),r.dirty()),a.common.async)return Promise.all([...a.data].map((s,o)=>n.type._parseAsync(new xt(a,s,a.path,o)))).then(s=>et.mergeArray(r,s));let i=[...a.data].map((s,o)=>n.type._parseSync(new xt(a,s,a.path,o)));return et.mergeArray(r,i)}get element(){return this._def.type}min(t,a){return new e({...this._def,minLength:{value:t,message:H.toString(a)}})}max(t,a){return new e({...this._def,maxLength:{value:t,message:H.toString(a)}})}length(t,a){return new e({...this._def,exactLength:{value:t,message:H.toString(a)}})}nonempty(t){return this.min(1,t)}};Sa.create=(e,t)=>new Sa({type:e,minLength:null,maxLength:null,exactLength:null,typeName:J.ZodArray,...te(t)});ht=class e extends re{constructor(){super(...arguments),this._cached=null,this.nonstrict=this.passthrough,this.augment=this.extend}_getCached(){if(this._cached!==null)return this._cached;let t=this._def.shape(),a=de.objectKeys(t);return this._cached={shape:t,keys:a},this._cached}_parse(t){if(this._getType(t)!==P.object){let l=this._getOrReturnCtx(t);return M(l,{code:D.invalid_type,expected:P.object,received:l.parsedType}),j}let{status:r,ctx:n}=this._processInputParams(t),{shape:i,keys:s}=this._getCached(),o=[];if(!(this._def.catchall instanceof Ht&&this._def.unknownKeys==="strip"))for(let l in n.data)s.includes(l)||o.push(l);let c=[];for(let l of s){let d=i[l],u=n.data[l];c.push({key:{status:"valid",value:l},value:d._parse(new xt(n,u,n.path,l)),alwaysSet:l in n.data})}if(this._def.catchall instanceof Ht){let l=this._def.unknownKeys;if(l==="passthrough")for(let d of o)c.push({key:{status:"valid",value:d},value:{status:"valid",value:n.data[d]}});else if(l==="strict")o.length>0&&(M(n,{code:D.unrecognized_keys,keys:o}),r.dirty());else if(l!=="strip")throw new Error("Internal ZodObject error: invalid unknownKeys value.")}else{let l=this._def.catchall;for(let d of o){let u=n.data[d];c.push({key:{status:"valid",value:d},value:l._parse(new xt(n,u,n.path,d)),alwaysSet:d in n.data})}}return n.common.async?Promise.resolve().then(async()=>{let l=[];for(let d of c){let u=await d.key,g=await d.value;l.push({key:u,value:g,alwaysSet:d.alwaysSet})}return l}).then(l=>et.mergeObjectSync(r,l)):et.mergeObjectSync(r,c)}get shape(){return this._def.shape()}strict(t){return H.errToObj,new e({...this._def,unknownKeys:"strict",...t!==void 0?{errorMap:(a,r)=>{let n=this._def.errorMap?.(a,r).message??r.defaultError;return a.code==="unrecognized_keys"?{message:H.errToObj(t).message??n}:{message:n}}}:{}})}strip(){return new e({...this._def,unknownKeys:"strip"})}passthrough(){return new e({...this._def,unknownKeys:"passthrough"})}extend(t){return new e({...this._def,shape:()=>({...this._def.shape(),...t})})}merge(t){return new e({unknownKeys:t._def.unknownKeys,catchall:t._def.catchall,shape:()=>({...this._def.shape(),...t._def.shape()}),typeName:J.ZodObject})}setKey(t,a){return this.augment({[t]:a})}catchall(t){return new e({...this._def,catchall:t})}pick(t){let a={};for(let r of de.objectKeys(t))t[r]&&this.shape[r]&&(a[r]=this.shape[r]);return new e({...this._def,shape:()=>a})}omit(t){let a={};for(let r of de.objectKeys(this.shape))t[r]||(a[r]=this.shape[r]);return new e({...this._def,shape:()=>a})}deepPartial(){return on(this)}partial(t){let a={};for(let r of de.objectKeys(this.shape)){let n=this.shape[r];t&&!t[r]?a[r]=n:a[r]=n.optional()}return new e({...this._def,shape:()=>a})}required(t){let a={};for(let r of de.objectKeys(this.shape))if(t&&!t[r])a[r]=this.shape[r];else{let i=this.shape[r];for(;i instanceof wt;)i=i._def.innerType;a[r]=i}return new e({...this._def,shape:()=>a})}keyof(){return NR(de.objectKeys(this.shape))}};ht.create=(e,t)=>new ht({shape:()=>e,unknownKeys:"strip",catchall:Ht.create(),typeName:J.ZodObject,...te(t)});ht.strictCreate=(e,t)=>new ht({shape:()=>e,unknownKeys:"strict",catchall:Ht.create(),typeName:J.ZodObject,...te(t)});ht.lazycreate=(e,t)=>new ht({shape:e,unknownKeys:"strip",catchall:Ht.create(),typeName:J.ZodObject,...te(t)});dr=class extends re{_parse(t){let{ctx:a}=this._processInputParams(t),r=this._def.options;function n(i){for(let o of i)if(o.result.status==="valid")return o.result;for(let o of i)if(o.result.status==="dirty")return a.common.issues.push(...o.ctx.common.issues),o.result;let s=i.map(o=>new Et(o.ctx.common.issues));return M(a,{code:D.invalid_union,unionErrors:s}),j}if(a.common.async)return Promise.all(r.map(async i=>{let s={...a,common:{...a.common,issues:[]},parent:null};return{result:await i._parseAsync({data:a.data,path:a.path,parent:s}),ctx:s}})).then(n);{let i,s=[];for(let c of r){let l={...a,common:{...a.common,issues:[]},parent:null},d=c._parseSync({data:a.data,path:a.path,parent:l});if(d.status==="valid")return d;d.status==="dirty"&&!i&&(i={result:d,ctx:l}),l.common.issues.length&&s.push(l.common.issues)}if(i)return a.common.issues.push(...i.ctx.common.issues),i.result;let o=s.map(c=>new Et(c));return M(a,{code:D.invalid_union,unionErrors:o}),j}}get options(){return this._def.options}};dr.create=(e,t)=>new dr({options:e,typeName:J.ZodUnion,...te(t)});Ea=e=>e instanceof pr?Ea(e.schema):e instanceof Mt?Ea(e.innerType()):e instanceof mr?[e.value]:e instanceof gr?e.options:e instanceof fr?de.objectValues(e.enum):e instanceof Er?Ea(e._def.innerType):e instanceof cr?[void 0]:e instanceof _r?[null]:e instanceof wt?[void 0,...Ea(e.unwrap())]:e instanceof Zt?[null,...Ea(e.unwrap())]:e instanceof si||e instanceof Sr?Ea(e.unwrap()):e instanceof hr?Ea(e._def.innerType):[],Zs=class e extends re{_parse(t){let{ctx:a}=this._processInputParams(t);if(a.parsedType!==P.object)return M(a,{code:D.invalid_type,expected:P.object,received:a.parsedType}),j;let r=this.discriminator,n=a.data[r],i=this.optionsMap.get(n);return i?a.common.async?i._parseAsync({data:a.data,path:a.path,parent:a}):i._parseSync({data:a.data,path:a.path,parent:a}):(M(a,{code:D.invalid_union_discriminator,options:Array.from(this.optionsMap.keys()),path:[r]}),j)}get discriminator(){return this._def.discriminator}get options(){return this._def.options}get optionsMap(){return this._def.optionsMap}static create(t,a,r){let n=new Map;for(let i of a){let s=Ea(i.shape[t]);if(!s.length)throw new Error(`A discriminator value for key \`${t}\` could not be extracted from all schema options`);for(let o of s){if(n.has(o))throw new Error(`Discriminator property ${String(t)} has duplicate value ${String(o)}`);n.set(o,i)}}return new e({typeName:J.ZodDiscriminatedUnion,discriminator:t,options:a,optionsMap:n,...te(r)})}};ur=class extends re{_parse(t){let{status:a,ctx:r}=this._processInputParams(t),n=(i,s)=>{if(js(i)||js(s))return j;let o=__(i.value,s.value);return o.valid?((Xs(i)||Xs(s))&&a.dirty(),{status:a.value,value:o.data}):(M(r,{code:D.invalid_intersection_types}),j)};return r.common.async?Promise.all([this._def.left._parseAsync({data:r.data,path:r.path,parent:r}),this._def.right._parseAsync({data:r.data,path:r.path,parent:r})]).then(([i,s])=>n(i,s)):n(this._def.left._parseSync({data:r.data,path:r.path,parent:r}),this._def.right._parseSync({data:r.data,path:r.path,parent:r}))}};ur.create=(e,t,a)=>new ur({left:e,right:t,typeName:J.ZodIntersection,...te(a)});Xt=class e extends re{_parse(t){let{status:a,ctx:r}=this._processInputParams(t);if(r.parsedType!==P.array)return M(r,{code:D.invalid_type,expected:P.array,received:r.parsedType}),j;if(r.data.length<this._def.items.length)return M(r,{code:D.too_small,minimum:this._def.items.length,inclusive:!0,exact:!1,type:"array"}),j;!this._def.rest&&r.data.length>this._def.items.length&&(M(r,{code:D.too_big,maximum:this._def.items.length,inclusive:!0,exact:!1,type:"array"}),a.dirty());let i=[...r.data].map((s,o)=>{let c=this._def.items[o]||this._def.rest;return c?c._parse(new xt(r,s,r.path,o)):null}).filter(s=>!!s);return r.common.async?Promise.all(i).then(s=>et.mergeArray(a,s)):et.mergeArray(a,i)}get items(){return this._def.items}rest(t){return new e({...this._def,rest:t})}};Xt.create=(e,t)=>{if(!Array.isArray(e))throw new Error("You must pass an array of schemas to z.tuple([ ... ])");return new Xt({items:e,typeName:J.ZodTuple,rest:null,...te(t)})};Js=class e extends re{get keySchema(){return this._def.keyType}get valueSchema(){return this._def.valueType}_parse(t){let{status:a,ctx:r}=this._processInputParams(t);if(r.parsedType!==P.object)return M(r,{code:D.invalid_type,expected:P.object,received:r.parsedType}),j;let n=[],i=this._def.keyType,s=this._def.valueType;for(let o in r.data)n.push({key:i._parse(new xt(r,o,r.path,o)),value:s._parse(new xt(r,r.data[o],r.path,o)),alwaysSet:o in r.data});return r.common.async?et.mergeObjectAsync(a,n):et.mergeObjectSync(a,n)}get element(){return this._def.valueType}static create(t,a,r){return a instanceof re?new e({keyType:t,valueType:a,typeName:J.ZodRecord,...te(r)}):new e({keyType:Fa.create(),valueType:t,typeName:J.ZodRecord,...te(a)})}},_n=class extends re{get keySchema(){return this._def.keyType}get valueSchema(){return this._def.valueType}_parse(t){let{status:a,ctx:r}=this._processInputParams(t);if(r.parsedType!==P.map)return M(r,{code:D.invalid_type,expected:P.map,received:r.parsedType}),j;let n=this._def.keyType,i=this._def.valueType,s=[...r.data.entries()].map(([o,c],l)=>({key:n._parse(new xt(r,o,r.path,[l,"key"])),value:i._parse(new xt(r,c,r.path,[l,"value"]))}));if(r.common.async){let o=new Map;return Promise.resolve().then(async()=>{for(let c of s){let l=await c.key,d=await c.value;if(l.status==="aborted"||d.status==="aborted")return j;(l.status==="dirty"||d.status==="dirty")&&a.dirty(),o.set(l.value,d.value)}return{status:a.value,value:o}})}else{let o=new Map;for(let c of s){let l=c.key,d=c.value;if(l.status==="aborted"||d.status==="aborted")return j;(l.status==="dirty"||d.status==="dirty")&&a.dirty(),o.set(l.value,d.value)}return{status:a.value,value:o}}}};_n.create=(e,t,a)=>new _n({valueType:t,keyType:e,typeName:J.ZodMap,...te(a)});dn=class e extends re{_parse(t){let{status:a,ctx:r}=this._processInputParams(t);if(r.parsedType!==P.set)return M(r,{code:D.invalid_type,expected:P.set,received:r.parsedType}),j;let n=this._def;n.minSize!==null&&r.data.size<n.minSize.value&&(M(r,{code:D.too_small,minimum:n.minSize.value,type:"set",inclusive:!0,exact:!1,message:n.minSize.message}),a.dirty()),n.maxSize!==null&&r.data.size>n.maxSize.value&&(M(r,{code:D.too_big,maximum:n.maxSize.value,type:"set",inclusive:!0,exact:!1,message:n.maxSize.message}),a.dirty());let i=this._def.valueType;function s(c){let l=new Set;for(let d of c){if(d.status==="aborted")return j;d.status==="dirty"&&a.dirty(),l.add(d.value)}return{status:a.value,value:l}}let o=[...r.data.values()].map((c,l)=>i._parse(new xt(r,c,r.path,l)));return r.common.async?Promise.all(o).then(c=>s(c)):s(o)}min(t,a){return new e({...this._def,minSize:{value:t,message:H.toString(a)}})}max(t,a){return new e({...this._def,maxSize:{value:t,message:H.toString(a)}})}size(t,a){return this.min(t,a).max(t,a)}nonempty(t){return this.min(1,t)}};dn.create=(e,t)=>new dn({valueType:e,minSize:null,maxSize:null,typeName:J.ZodSet,...te(t)});eo=class e extends re{constructor(){super(...arguments),this.validate=this.implement}_parse(t){let{ctx:a}=this._processInputParams(t);if(a.parsedType!==P.function)return M(a,{code:D.invalid_type,expected:P.function,received:a.parsedType}),j;function r(o,c){return ii({data:o,path:a.path,errorMaps:[a.common.contextualErrorMap,a.schemaErrorMap,nn(),fa].filter(l=>!!l),issueData:{code:D.invalid_arguments,argumentsError:c}})}function n(o,c){return ii({data:o,path:a.path,errorMaps:[a.common.contextualErrorMap,a.schemaErrorMap,nn(),fa].filter(l=>!!l),issueData:{code:D.invalid_return_type,returnTypeError:c}})}let i={errorMap:a.common.contextualErrorMap},s=a.data;if(this._def.returns instanceof Ba){let o=this;return it(async function(...c){let l=new Et([]),d=await o._def.args.parseAsync(c,i).catch(h=>{throw l.addIssue(r(c,h)),l}),u=await Reflect.apply(s,this,d);return await o._def.returns._def.type.parseAsync(u,i).catch(h=>{throw l.addIssue(n(u,h)),l})})}else{let o=this;return it(function(...c){let l=o._def.args.safeParse(c,i);if(!l.success)throw new Et([r(c,l.error)]);let d=Reflect.apply(s,this,l.data),u=o._def.returns.safeParse(d,i);if(!u.success)throw new Et([n(d,u.error)]);return u.data})}}parameters(){return this._def.args}returnType(){return this._def.returns}args(...t){return new e({...this._def,args:Xt.create(t).rest(ha.create())})}returns(t){return new e({...this._def,returns:t})}implement(t){return this.parse(t)}strictImplement(t){return this.parse(t)}static create(t,a,r){return new e({args:t||Xt.create([]).rest(ha.create()),returns:a||ha.create(),typeName:J.ZodFunction,...te(r)})}},pr=class extends re{get schema(){return this._def.getter()}_parse(t){let{ctx:a}=this._processInputParams(t);return this._def.getter()._parse({data:a.data,path:a.path,parent:a})}};pr.create=(e,t)=>new pr({getter:e,typeName:J.ZodLazy,...te(t)});mr=class extends re{_parse(t){if(t.data!==this._def.value){let a=this._getOrReturnCtx(t);return M(a,{received:a.data,code:D.invalid_literal,expected:this._def.value}),j}return{status:"valid",value:t.data}}get value(){return this._def.value}};mr.create=(e,t)=>new mr({value:e,typeName:J.ZodLiteral,...te(t)});gr=class e extends re{_parse(t){if(typeof t.data!="string"){let a=this._getOrReturnCtx(t),r=this._def.values;return M(a,{expected:de.joinValues(r),received:a.parsedType,code:D.invalid_type}),j}if(this._cache||(this._cache=new Set(this._def.values)),!this._cache.has(t.data)){let a=this._getOrReturnCtx(t),r=this._def.values;return M(a,{received:a.data,code:D.invalid_enum_value,options:r}),j}return it(t.data)}get options(){return this._def.values}get enum(){let t={};for(let a of this._def.values)t[a]=a;return t}get Values(){let t={};for(let a of this._def.values)t[a]=a;return t}get Enum(){let t={};for(let a of this._def.values)t[a]=a;return t}extract(t,a=this._def){return e.create(t,{...this._def,...a})}exclude(t,a=this._def){return e.create(this.options.filter(r=>!t.includes(r)),{...this._def,...a})}};gr.create=NR;fr=class extends re{_parse(t){let a=de.getValidEnumValues(this._def.values),r=this._getOrReturnCtx(t);if(r.parsedType!==P.string&&r.parsedType!==P.number){let n=de.objectValues(a);return M(r,{expected:de.joinValues(n),received:r.parsedType,code:D.invalid_type}),j}if(this._cache||(this._cache=new Set(de.getValidEnumValues(this._def.values))),!this._cache.has(t.data)){let n=de.objectValues(a);return M(r,{received:r.data,code:D.invalid_enum_value,options:n}),j}return it(t.data)}get enum(){return this._def.values}};fr.create=(e,t)=>new fr({values:e,typeName:J.ZodNativeEnum,...te(t)});Ba=class extends re{unwrap(){return this._def.type}_parse(t){let{ctx:a}=this._processInputParams(t);if(a.parsedType!==P.promise&&a.common.async===!1)return M(a,{code:D.invalid_type,expected:P.promise,received:a.parsedType}),j;let r=a.parsedType===P.promise?a.data:Promise.resolve(a.data);return it(r.then(n=>this._def.type.parseAsync(n,{path:a.path,errorMap:a.common.contextualErrorMap})))}};Ba.create=(e,t)=>new Ba({type:e,typeName:J.ZodPromise,...te(t)});Mt=class extends re{innerType(){return this._def.schema}sourceType(){return this._def.schema._def.typeName===J.ZodEffects?this._def.schema.sourceType():this._def.schema}_parse(t){let{status:a,ctx:r}=this._processInputParams(t),n=this._def.effect||null,i={addIssue:s=>{M(r,s),s.fatal?a.abort():a.dirty()},get path(){return r.path}};if(i.addIssue=i.addIssue.bind(i),n.type==="preprocess"){let s=n.transform(r.data,i);if(r.common.async)return Promise.resolve(s).then(async o=>{if(a.value==="aborted")return j;let c=await this._def.schema._parseAsync({data:o,path:r.path,parent:r});return c.status==="aborted"?j:c.status==="dirty"?nr(c.value):a.value==="dirty"?nr(c.value):c});{if(a.value==="aborted")return j;let o=this._def.schema._parseSync({data:s,path:r.path,parent:r});return o.status==="aborted"?j:o.status==="dirty"?nr(o.value):a.value==="dirty"?nr(o.value):o}}if(n.type==="refinement"){let s=o=>{let c=n.refinement(o,i);if(r.common.async)return Promise.resolve(c);if(c instanceof Promise)throw new Error("Async refinement encountered during synchronous parse operation. Use .parseAsync instead.");return o};if(r.common.async===!1){let o=this._def.schema._parseSync({data:r.data,path:r.path,parent:r});return o.status==="aborted"?j:(o.status==="dirty"&&a.dirty(),s(o.value),{status:a.value,value:o.value})}else return this._def.schema._parseAsync({data:r.data,path:r.path,parent:r}).then(o=>o.status==="aborted"?j:(o.status==="dirty"&&a.dirty(),s(o.value).then(()=>({status:a.value,value:o.value}))))}if(n.type==="transform")if(r.common.async===!1){let s=this._def.schema._parseSync({data:r.data,path:r.path,parent:r});if(!Pa(s))return j;let o=n.transform(s.value,i);if(o instanceof Promise)throw new Error("Asynchronous transform encountered during synchronous parse operation. Use .parseAsync instead.");return{status:a.value,value:o}}else return this._def.schema._parseAsync({data:r.data,path:r.path,parent:r}).then(s=>Pa(s)?Promise.resolve(n.transform(s.value,i)).then(o=>({status:a.value,value:o})):j);de.assertNever(n)}};Mt.create=(e,t,a)=>new Mt({schema:e,typeName:J.ZodEffects,effect:t,...te(a)});Mt.createWithPreprocess=(e,t,a)=>new Mt({schema:t,effect:{type:"preprocess",transform:e},typeName:J.ZodEffects,...te(a)});wt=class extends re{_parse(t){return this._getType(t)===P.undefined?it(void 0):this._def.innerType._parse(t)}unwrap(){return this._def.innerType}};wt.create=(e,t)=>new wt({innerType:e,typeName:J.ZodOptional,...te(t)});Zt=class extends re{_parse(t){return this._getType(t)===P.null?it(null):this._def.innerType._parse(t)}unwrap(){return this._def.innerType}};Zt.create=(e,t)=>new Zt({innerType:e,typeName:J.ZodNullable,...te(t)});Er=class extends re{_parse(t){let{ctx:a}=this._processInputParams(t),r=a.data;return a.parsedType===P.undefined&&(r=this._def.defaultValue()),this._def.innerType._parse({data:r,path:a.path,parent:a})}removeDefault(){return this._def.innerType}};Er.create=(e,t)=>new Er({innerType:e,typeName:J.ZodDefault,defaultValue:typeof t.default=="function"?t.default:()=>t.default,...te(t)});hr=class extends re{_parse(t){let{ctx:a}=this._processInputParams(t),r={...a,common:{...a.common,issues:[]}},n=this._def.innerType._parse({data:r.data,path:r.path,parent:{...r}});return sn(n)?n.then(i=>({status:"valid",value:i.status==="valid"?i.value:this._def.catchValue({get error(){return new Et(r.common.issues)},input:r.data})})):{status:"valid",value:n.status==="valid"?n.value:this._def.catchValue({get error(){return new Et(r.common.issues)},input:r.data})}}removeCatch(){return this._def.innerType}};hr.create=(e,t)=>new hr({innerType:e,typeName:J.ZodCatch,catchValue:typeof t.catch=="function"?t.catch:()=>t.catch,...te(t)});un=class extends re{_parse(t){if(this._getType(t)!==P.nan){let r=this._getOrReturnCtx(t);return M(r,{code:D.invalid_type,expected:P.nan,received:r.parsedType}),j}return{status:"valid",value:t.data}}};un.create=e=>new un({typeName:J.ZodNaN,...te(e)});k2=Symbol("zod_brand"),si=class extends re{_parse(t){let{ctx:a}=this._processInputParams(t),r=a.data;return this._def.type._parse({data:r,path:a.path,parent:a})}unwrap(){return this._def.type}},oi=class e extends re{_parse(t){let{status:a,ctx:r}=this._processInputParams(t);if(r.common.async)return(async()=>{let i=await this._def.in._parseAsync({data:r.data,path:r.path,parent:r});return i.status==="aborted"?j:i.status==="dirty"?(a.dirty(),nr(i.value)):this._def.out._parseAsync({data:i.value,path:r.path,parent:r})})();{let n=this._def.in._parseSync({data:r.data,path:r.path,parent:r});return n.status==="aborted"?j:n.status==="dirty"?(a.dirty(),{status:"dirty",value:n.value}):this._def.out._parseSync({data:n.value,path:r.path,parent:r})}}static create(t,a){return new e({in:t,out:a,typeName:J.ZodPipeline})}},Sr=class extends re{_parse(t){let a=this._def.innerType._parse(t),r=n=>(Pa(n)&&(n.value=Object.freeze(n.value)),n);return sn(a)?a.then(n=>r(n)):r(a)}unwrap(){return this._def.innerType}};Sr.create=(e,t)=>new Sr({innerType:e,typeName:J.ZodReadonly,...te(t)});v2={object:ht.lazycreate};(function(e){e.ZodString="ZodString",e.ZodNumber="ZodNumber",e.ZodNaN="ZodNaN",e.ZodBigInt="ZodBigInt",e.ZodBoolean="ZodBoolean",e.ZodDate="ZodDate",e.ZodSymbol="ZodSymbol",e.ZodUndefined="ZodUndefined",e.ZodNull="ZodNull",e.ZodAny="ZodAny",e.ZodUnknown="ZodUnknown",e.ZodNever="ZodNever",e.ZodVoid="ZodVoid",e.ZodArray="ZodArray",e.ZodObject="ZodObject",e.ZodUnion="ZodUnion",e.ZodDiscriminatedUnion="ZodDiscriminatedUnion",e.ZodIntersection="ZodIntersection",e.ZodTuple="ZodTuple",e.ZodRecord="ZodRecord",e.ZodMap="ZodMap",e.ZodSet="ZodSet",e.ZodFunction="ZodFunction",e.ZodLazy="ZodLazy",e.ZodLiteral="ZodLiteral",e.ZodEnum="ZodEnum",e.ZodEffects="ZodEffects",e.ZodNativeEnum="ZodNativeEnum",e.ZodOptional="ZodOptional",e.ZodNullable="ZodNullable",e.ZodDefault="ZodDefault",e.ZodCatch="ZodCatch",e.ZodPromise="ZodPromise",e.ZodBranded="ZodBranded",e.ZodPipeline="ZodPipeline",e.ZodReadonly="ZodReadonly"})(J||(J={}));w2=(e,t={message:`Input not instance of ${e.name}`})=>OR(a=>a instanceof e,t),DR=Fa.create,IR=ir.create,x2=un.create,M2=sr.create,kR=or.create,L2=lr.create,P2=ln.create,F2=cr.create,U2=_r.create,B2=Ua.create,G2=ha.create,z2=Ht.create,H2=cn.create,Y2=Sa.create,q2=ht.create,$2=ht.strictCreate,V2=dr.create,K2=Zs.create,W2=ur.create,Q2=Xt.create,j2=Js.create,X2=_n.create,Z2=dn.create,J2=eo.create,e4=pr.create,t4=mr.create,a4=gr.create,r4=fr.create,n4=Ba.create,i4=Mt.create,s4=wt.create,o4=Zt.create,l4=Mt.createWithPreprocess,c4=oi.create,_4=()=>DR().optional(),d4=()=>IR().optional(),u4=()=>kR().optional(),p4={string:(e=>Fa.create({...e,coerce:!0})),number:(e=>ir.create({...e,coerce:!0})),boolean:(e=>or.create({...e,coerce:!0})),bigint:(e=>sr.create({...e,coerce:!0})),date:(e=>lr.create({...e,coerce:!0}))},m4=j});var St={};Tr(St,{BRAND:()=>k2,DIRTY:()=>nr,EMPTY_PATH:()=>l2,INVALID:()=>j,NEVER:()=>m4,OK:()=>it,ParseStatus:()=>et,Schema:()=>re,ZodAny:()=>Ua,ZodArray:()=>Sa,ZodBigInt:()=>sr,ZodBoolean:()=>or,ZodBranded:()=>si,ZodCatch:()=>hr,ZodDate:()=>lr,ZodDefault:()=>Er,ZodDiscriminatedUnion:()=>Zs,ZodEffects:()=>Mt,ZodEnum:()=>gr,ZodError:()=>Et,ZodFirstPartyTypeKind:()=>J,ZodFunction:()=>eo,ZodIntersection:()=>ur,ZodIssueCode:()=>D,ZodLazy:()=>pr,ZodLiteral:()=>mr,ZodMap:()=>_n,ZodNaN:()=>un,ZodNativeEnum:()=>fr,ZodNever:()=>Ht,ZodNull:()=>_r,ZodNullable:()=>Zt,ZodNumber:()=>ir,ZodObject:()=>ht,ZodOptional:()=>wt,ZodParsedType:()=>P,ZodPipeline:()=>oi,ZodPromise:()=>Ba,ZodReadonly:()=>Sr,ZodRecord:()=>Js,ZodSchema:()=>re,ZodSet:()=>dn,ZodString:()=>Fa,ZodSymbol:()=>ln,ZodTransformer:()=>Mt,ZodTuple:()=>Xt,ZodType:()=>re,ZodUndefined:()=>cr,ZodUnion:()=>dr,ZodUnknown:()=>ha,ZodVoid:()=>cn,addIssueToContext:()=>M,any:()=>B2,array:()=>Y2,bigint:()=>M2,boolean:()=>kR,coerce:()=>p4,custom:()=>OR,date:()=>L2,datetimeRegex:()=>AR,defaultErrorMap:()=>fa,discriminatedUnion:()=>K2,effect:()=>i4,enum:()=>a4,function:()=>J2,getErrorMap:()=>nn,getParsedType:()=>jt,instanceof:()=>w2,intersection:()=>W2,isAborted:()=>js,isAsync:()=>sn,isDirty:()=>Xs,isValid:()=>Pa,late:()=>v2,lazy:()=>e4,literal:()=>t4,makeIssue:()=>ii,map:()=>X2,nan:()=>x2,nativeEnum:()=>r4,never:()=>z2,null:()=>U2,nullable:()=>o4,number:()=>IR,object:()=>q2,objectUtil:()=>s_,oboolean:()=>u4,onumber:()=>d4,optional:()=>s4,ostring:()=>_4,pipeline:()=>c4,preprocess:()=>l4,promise:()=>n4,quotelessJson:()=>i2,record:()=>j2,set:()=>Z2,setErrorMap:()=>o2,strictObject:()=>$2,string:()=>DR,symbol:()=>P2,transformer:()=>i4,tuple:()=>Q2,undefined:()=>F2,union:()=>V2,unknown:()=>G2,util:()=>de,void:()=>H2});var d_=Ce(()=>{Qs();l_();SR();ni();vR();Ws()});var wR=Ce(()=>{d_();d_()});function xR(e){switch(e.type){case"string":{let t=St.string();return e.pattern&&(t=t.regex(new RegExp(e.pattern))),e.minLength&&(t=t.min(e.minLength)),e.maxLength&&(t=t.max(e.maxLength)),e.enum?St.enum(e.enum):t}case"integer":case"number":{let t=e.type==="integer"?St.coerce.number().int():St.coerce.number();return e.minimum!==void 0&&(t=t.min(e.minimum)),e.maximum!==void 0&&(t=t.max(e.maximum)),t}case"boolean":return St.preprocess(t=>t==="true"||t===!0?!0:t==="false"||t===!1?!1:t,St.boolean());case"array":return St.array(e.items?xR(e.items):St.any());case"object":return St.record(St.any());default:return St.any()}}function u_(e,t){let a=xR(t),r=a.safeParse(e);if(r.success)return r.data;if(t.type==="object"||t.type==="array")try{let n=JSON.parse(e);return a.parse(n)}catch{}return e}var MR=Ce(()=>{"use strict";wR()});import*as Ga from"node:fs";import*as Yt from"node:path";function f4(e){let t=Yt.extname(e).toLowerCase();return!!(g4.has(t)||t==="")}function LR(e){let t=Yt.resolve(e),a=Ga.readFileSync(t),r=Yt.relative(process.cwd(),t);if(f4(e))return{path:r,contents:a.toString("utf-8")};let n=Yt.extname(e).toLowerCase().slice(1)||"bin",s={png:"image/png",jpg:"image/jpeg",jpeg:"image/jpeg",gif:"image/gif",webp:"image/webp",ico:"image/x-icon",pdf:"application/pdf",zip:"application/zip",woff:"font/woff",woff2:"font/woff2",ttf:"font/ttf"}[n]||"application/octet-stream",o=a.toString("base64");return{path:r,contents:`data:${s};base64,${o}`}}function PR(e){let t=[];for(let a of e){let r=Yt.resolve(a);if(Ga.statSync(r).isDirectory()){let i=FR(r);for(let s of i)t.push(LR(s))}else t.push(LR(r))}return t}function FR(e){let t=[],a=Ga.readdirSync(e,{withFileTypes:!0});for(let r of a){let n=Yt.join(e,r.name);r.isDirectory()?t.push(...FR(n)):t.push(n)}return t}function UR(e){if(e.startsWith("-"))return!1;try{let t=Yt.resolve(e);return Ga.existsSync(t)}catch{return!1}}var g4,BR=Ce(()=>{"use strict";g4=new Set([".txt",".md",".html",".htm",".css",".js",".ts",".jsx",".tsx",".json",".xml",".yaml",".yml",".toml",".ini",".cfg",".conf",".sh",".bash",".zsh",".fish",".bat",".ps1",".py",".rb",".go",".rs",".java",".c",".cpp",".h",".hpp",".cs",".php",".swift",".kt",".scala",".r",".sql",".graphql",".proto",".env",".gitignore",".dockerignore",".editorconfig",".prettierrc",".eslintrc",".svg",".csv",".tsv",".log"])});var HR={};Tr(HR,{execute:()=>p_});import*as GR from"node:fs";import*as zR from"node:path";function E4(e){return he.use(_R()),he.parse(e).trimEnd()}function h4(e){try{let t=zR.join(process.cwd(),e),a=GR.readFileSync(t,"utf-8"),r=JSON.parse(a);if(r&&typeof r=="object"&&!Array.isArray(r))return r}catch{}return{}}function S4(e){return e.args?e.args:[...e.params.path.filter(t=>t.required),...e.params.query.filter(t=>t.required),...e.params.body.filter(t=>t.required)].map(t=>t.name)}async function p_(e,t,a,r,n){let i=n?.jsonMode??!1,s=await Aa(e),o=s.actions.find(F=>F.slug===t),c=s.actions.some(F=>F.slug.startsWith(t+"."));if(!o&&c)return Wo(e,t);if(!o){console.error(`\x1B[31mAction "${t}" not found.\x1B[0m`);let F=s.actions.filter(X=>X.slug.includes(t)).map(X=>X.slug);if(F.length>0){console.log(`
|
|
135
135
|
Did you mean:`);for(let X of F)console.log(` \x1B[36m${X}\x1B[0m`)}process.exit(1)}let l=await Vo(e,t),d=[...l.params.path,...l.params.query,...l.params.body],u=new Map(d.map(F=>[F.name,F])),g=S4(l),h=new yi().exitOverride().name(t).description(l.description).allowUnknownOption(!1).configureOutput({writeOut:F=>process.stdout.write(F),writeErr:F=>process.stderr.write(F)});if(l.payment.mode!=="free"){let F=l.payment.description?`${l.payment.mode} \u2014 ${l.payment.description}`:l.payment.mode;h.addHelpText("after",`
|
|
136
136
|
\x1B[33mPayment: ${F}\x1B[0m`)}h.addHelpText("after",`
|
|
137
137
|
\x1B[90m${l.method} ${l.endpoint}\x1B[0m`),l.example&&h.addHelpText("after",`
|
|
@@ -145,19 +145,19 @@ ${$("botparty services")} \u2014 discover and manage BotParty-compatible service
|
|
|
145
145
|
${$("USAGE")}
|
|
146
146
|
botparty services <domain> [action] [--params]
|
|
147
147
|
|
|
148
|
-
Use a full domain or a shorthand \u2014 e.g. ${G('"mongo"')} resolves to ${
|
|
148
|
+
Use a full domain or a shorthand \u2014 e.g. ${G('"mongo"')} resolves to ${le("mongo.botparty.club")}.
|
|
149
149
|
Omit the action to list all available actions on a service.
|
|
150
150
|
|
|
151
151
|
${$("EXAMPLES")}
|
|
152
|
-
botparty services mongo ${
|
|
153
|
-
botparty services mongo databases.list ${
|
|
152
|
+
botparty services mongo ${le("List all actions on mongo.botparty.club")}
|
|
153
|
+
botparty services mongo databases.list ${le("List your MongoDB databases")}
|
|
154
154
|
botparty services mongo databases.create --slug my-db
|
|
155
155
|
botparty services deploy projects.deploy --projectName my-site --file ./dist/
|
|
156
|
-
botparty services example.com ${
|
|
156
|
+
botparty services example.com ${le("Discover actions on any domain")}
|
|
157
157
|
|
|
158
158
|
${$("BOTPARTY SERVICES")}
|
|
159
159
|
`);let e=Math.max(...YR.map(t=>t.shorthand.length));for(let t of YR){let a=t.shorthand.padEnd(e+2);console.log(` ${G(a)}${t.description}`)}console.log(`
|
|
160
|
-
Any domain that publishes ${
|
|
160
|
+
Any domain that publishes ${le("/.well-known/botparty/services.json")} is supported.
|
|
161
161
|
`)}function y4(e){return e.includes(".")?e:`${e}.botparty.club`}function qR(e){let t=[];for(let a=0;a<e.length;a++){let r=e[a];if(r.startsWith("--")){let n=r.slice(2).split("=")[0];if(C4.has(n))continue;if(b4.has(n)){!r.includes("=")&&a+1<e.length&&a++;continue}}t.push(r)}return t}async function g_(e,t){let a=process.argv.slice(2),r=a.findIndex(l=>l==="services"),n=qR(r>=0?a.slice(r+1):[]),i=n[0]&&!n[0].startsWith("-")?n[0]:void 0;if(!i){T4();return}let s=y4(i),o=n[1]&&!n[1].startsWith("-")?n[1]:void 0,c=n.slice(o?2:1);try{if(!o&&c.length===0)await Ko(s);else{let l=await Aa(s);!(o&&(l.actions.some(u=>u.slug===o)||l.actions.some(u=>u.slug.startsWith(o+"."))))&&l.defaultAction&&(c=n.slice(1),o=l.defaultAction),await p_(s,o,c,e,t)}}catch(l){l.code==="ENOTFOUND"||l.cause?.code==="ENOTFOUND"?console.error(`\x1B[31mError:\x1B[0m Could not connect to ${s}`):l.message?console.error(`\x1B[31mError:\x1B[0m ${l.message}`):console.error(l),process.exit(1)}}var YR,b4,C4,f_=Ce(()=>{"use strict";Ai();m_();Or();bi();YR=[{shorthand:"mongo",description:"MongoDB databases \u2014 create, manage credentials, backups"},{shorthand:"git",description:"Git repositories \u2014 create, push/pull, token management"},{shorthand:"s3",description:"S3 storage \u2014 buckets, presigned URLs, IAM credentials"},{shorthand:"deploy",description:"Deployments \u2014 deploy to Vercel with no account needed"},{shorthand:"domains",description:"Domains \u2014 register, configure DNS records"},{shorthand:"upstash",description:"Upstash \u2014 Redis, Vector indices, QStash queues"},{shorthand:"vps",description:"VPS \u2014 bare-metal servers, SSH sessions, command exec"},{shorthand:"vms",description:"VMs \u2014 Docker containers with persistent storage"},{shorthand:"email",description:"Email \u2014 inboxes, send/receive, threaded conversations"}];b4=new Set(["state-dir","server"]),C4=new Set(["json","help","h","version","v","yes"])});import{readFileSync as ed,writeFileSync as bo,mkdirSync as WA,existsSync as gi,unlinkSync as Co,statSync as QA,renameSync as td}from"node:fs";import{join as Ra}from"node:path";import{homedir as jA}from"node:os";import{randomBytes as ad}from"node:crypto";var G_=new TextEncoder,uo=new TextDecoder,cF=2**32;function oA(...e){let t=e.reduce((n,{length:i})=>n+i,0),a=new Uint8Array(t),r=0;for(let n of e)a.set(n,r),r+=n.length;return a}function io(e){let t=new Uint8Array(e.length);for(let a=0;a<e.length;a++){let r=e.charCodeAt(a);if(r>127)throw new TypeError("non-ASCII string encountered in encode()");t[a]=r}return t}function z_(e){if(Uint8Array.prototype.toBase64)return e.toBase64();let t=32768,a=[];for(let r=0;r<e.length;r+=t)a.push(String.fromCharCode.apply(null,e.subarray(r,r+t)));return btoa(a.join(""))}function H_(e){if(Uint8Array.fromBase64)return Uint8Array.fromBase64(e);let t=atob(e),a=new Uint8Array(t.length);for(let r=0;r<t.length;r++)a[r]=t.charCodeAt(r);return a}function Y_(e){if(Uint8Array.fromBase64)return Uint8Array.fromBase64(typeof e=="string"?e:uo.decode(e),{alphabet:"base64url"});let t=e;t instanceof Uint8Array&&(t=uo.decode(t)),t=t.replace(/-/g,"+").replace(/_/g,"/");try{return H_(t)}catch{throw new TypeError("The input to be decoded is not correctly encoded.")}}function so(e){let t=e;return typeof t=="string"&&(t=G_.encode(t)),Uint8Array.prototype.toBase64?t.toBase64({alphabet:"base64url",omitPadding:!0}):z_(t).replace(/=/g,"").replace(/\+/g,"-").replace(/\//g,"_")}var ba=(e,t="algorithm.name")=>new TypeError(`CryptoKey does not support this operation, its ${t} must be ${e}`),yr=(e,t)=>e.name===t;function lA(e){return parseInt(e.name.slice(4),10)}function oo(e,t){if(lA(e.hash)!==t)throw ba(`SHA-${t}`,"algorithm.hash")}function cA(e){switch(e){case"ES256":return"P-256";case"ES384":return"P-384";case"ES512":return"P-521";default:throw new Error("unreachable")}}function _A(e,t){if(t&&!e.usages.includes(t))throw new TypeError(`CryptoKey does not support this operation, its usages must include ${t}.`)}function dA(e,t,a){switch(t){case"HS256":case"HS384":case"HS512":{if(!yr(e.algorithm,"HMAC"))throw ba("HMAC");oo(e.algorithm,parseInt(t.slice(2),10));break}case"RS256":case"RS384":case"RS512":{if(!yr(e.algorithm,"RSASSA-PKCS1-v1_5"))throw ba("RSASSA-PKCS1-v1_5");oo(e.algorithm,parseInt(t.slice(2),10));break}case"PS256":case"PS384":case"PS512":{if(!yr(e.algorithm,"RSA-PSS"))throw ba("RSA-PSS");oo(e.algorithm,parseInt(t.slice(2),10));break}case"Ed25519":case"EdDSA":{if(!yr(e.algorithm,"Ed25519"))throw ba("Ed25519");break}case"ML-DSA-44":case"ML-DSA-65":case"ML-DSA-87":{if(!yr(e.algorithm,t))throw ba(t);break}case"ES256":case"ES384":case"ES512":{if(!yr(e.algorithm,"ECDSA"))throw ba("ECDSA");let r=cA(t);if(e.algorithm.namedCurve!==r)throw ba(r,"algorithm.namedCurve");break}default:throw new TypeError("CryptoKey does not support this operation")}_A(e,a)}function q_(e,t,...a){if(a=a.filter(Boolean),a.length>2){let r=a.pop();e+=`one of type ${a.join(", ")}, or ${r}.`}else a.length===2?e+=`one of type ${a[0]} or ${a[1]}.`:e+=`of type ${a[0]}.`;return t==null?e+=` Received ${t}`:typeof t=="function"&&t.name?e+=` Received function ${t.name}`:typeof t=="object"&&t!=null&&t.constructor?.name&&(e+=` Received an instance of ${t.constructor.name}`),e}var $_=(e,...t)=>q_("Key must be ",e,...t),V_=(e,t,...a)=>q_(`Key for the ${e} algorithm must be `,t,...a),fo=class extends Error{static code="ERR_JOSE_GENERIC";code="ERR_JOSE_GENERIC";constructor(e,t){super(e,t),this.name=this.constructor.name,Error.captureStackTrace?.(this,this.constructor)}},Rt=class extends fo{static code="ERR_JOSE_NOT_SUPPORTED";code="ERR_JOSE_NOT_SUPPORTED"},fn=class extends fo{static code="ERR_JWS_INVALID";code="ERR_JWS_INVALID"},Ca=class extends fo{static code="ERR_JWT_INVALID";code="ERR_JWT_INVALID"},Eo=e=>{if(e?.[Symbol.toStringTag]==="CryptoKey")return!0;try{return e instanceof CryptoKey}catch{return!1}},ho=e=>e?.[Symbol.toStringTag]==="KeyObject",K_=e=>Eo(e)||ho(e),_F=Symbol();function v_(e,t){if(e)throw new TypeError(`${t} can only be called once`)}var uA=e=>typeof e=="object"&&e!==null;function So(e){if(!uA(e)||Object.prototype.toString.call(e)!=="[object Object]")return!1;if(Object.getPrototypeOf(e)===null)return!0;let t=e;for(;Object.getPrototypeOf(t)!==null;)t=Object.getPrototypeOf(t);return Object.getPrototypeOf(e)===t}function pA(...e){let t=e.filter(Boolean);if(t.length===0||t.length===1)return!0;let a;for(let r of t){let n=Object.keys(r);if(!a||a.size===0){a=new Set(n);continue}for(let i of n){if(a.has(i))return!1;a.add(i)}}return!0}var To=e=>So(e)&&typeof e.kty=="string",mA=e=>e.kty!=="oct"&&(e.kty==="AKP"&&typeof e.priv=="string"||typeof e.d=="string"),gA=e=>e.kty!=="oct"&&e.d===void 0&&e.priv===void 0,fA=e=>e.kty==="oct"&&typeof e.k=="string";function EA(e,t){if(e.startsWith("RS")||e.startsWith("PS")){let{modulusLength:a}=t.algorithm;if(typeof a!="number"||a<2048)throw new TypeError(`${e} requires key modulusLength to be 2048 bits or larger`)}}function hA(e,t){let a=`SHA-${e.slice(-3)}`;switch(e){case"HS256":case"HS384":case"HS512":return{hash:a,name:"HMAC"};case"PS256":case"PS384":case"PS512":return{hash:a,name:"RSA-PSS",saltLength:parseInt(e.slice(-3),10)>>3};case"RS256":case"RS384":case"RS512":return{hash:a,name:"RSASSA-PKCS1-v1_5"};case"ES256":case"ES384":case"ES512":return{hash:a,name:"ECDSA",namedCurve:t.namedCurve};case"Ed25519":case"EdDSA":return{name:"Ed25519"};case"ML-DSA-44":case"ML-DSA-65":case"ML-DSA-87":return{name:e};default:throw new Rt(`alg ${e} is not supported either by JOSE or your javascript runtime`)}}async function SA(e,t,a){if(t instanceof Uint8Array){if(!e.startsWith("HS"))throw new TypeError($_(t,"CryptoKey","KeyObject","JSON Web Key"));return crypto.subtle.importKey("raw",t,{hash:`SHA-${e.slice(-3)}`,name:"HMAC"},!1,[a])}return dA(t,e,a),t}async function TA(e,t,a){let r=await SA(e,t,"sign");EA(e,r);let n=await crypto.subtle.sign(hA(e,r.algorithm),r,a);return new Uint8Array(n)}var pi='Invalid or unsupported JWK "alg" (Algorithm) Parameter value';function yA(e){let t,a;switch(e.kty){case"AKP":{switch(e.alg){case"ML-DSA-44":case"ML-DSA-65":case"ML-DSA-87":t={name:e.alg},a=e.priv?["sign"]:["verify"];break;default:throw new Rt(pi)}break}case"RSA":{switch(e.alg){case"PS256":case"PS384":case"PS512":t={name:"RSA-PSS",hash:`SHA-${e.alg.slice(-3)}`},a=e.d?["sign"]:["verify"];break;case"RS256":case"RS384":case"RS512":t={name:"RSASSA-PKCS1-v1_5",hash:`SHA-${e.alg.slice(-3)}`},a=e.d?["sign"]:["verify"];break;case"RSA-OAEP":case"RSA-OAEP-256":case"RSA-OAEP-384":case"RSA-OAEP-512":t={name:"RSA-OAEP",hash:`SHA-${parseInt(e.alg.slice(-3),10)||1}`},a=e.d?["decrypt","unwrapKey"]:["encrypt","wrapKey"];break;default:throw new Rt(pi)}break}case"EC":{switch(e.alg){case"ES256":case"ES384":case"ES512":t={name:"ECDSA",namedCurve:{ES256:"P-256",ES384:"P-384",ES512:"P-521"}[e.alg]},a=e.d?["sign"]:["verify"];break;case"ECDH-ES":case"ECDH-ES+A128KW":case"ECDH-ES+A192KW":case"ECDH-ES+A256KW":t={name:"ECDH",namedCurve:e.crv},a=e.d?["deriveBits"]:[];break;default:throw new Rt(pi)}break}case"OKP":{switch(e.alg){case"Ed25519":case"EdDSA":t={name:"Ed25519"},a=e.d?["sign"]:["verify"];break;case"ECDH-ES":case"ECDH-ES+A128KW":case"ECDH-ES+A192KW":case"ECDH-ES+A256KW":t={name:e.crv},a=e.d?["deriveBits"]:[];break;default:throw new Rt(pi)}break}default:throw new Rt('Invalid or unsupported JWK "kty" (Key Type) Parameter value')}return{algorithm:t,keyUsages:a}}async function bA(e){if(!e.alg)throw new TypeError('"alg" argument is required when "jwk.alg" is not present');let{algorithm:t,keyUsages:a}=yA(e),r={...e};return r.kty!=="AKP"&&delete r.alg,delete r.use,crypto.subtle.importKey("jwk",r,t,e.ext??!(e.d||e.priv),e.key_ops??a)}var br="given KeyObject instance cannot be used for this algorithm",Ar,w_=async(e,t,a,r=!1)=>{Ar||=new WeakMap;let n=Ar.get(e);if(n?.[a])return n[a];let i=await bA({...t,alg:a});return r&&Object.freeze(e),n?n[a]=i:Ar.set(e,{[a]:i}),i},CA=(e,t)=>{Ar||=new WeakMap;let a=Ar.get(e);if(a?.[t])return a[t];let r=e.type==="public",n=!!r,i;if(e.asymmetricKeyType==="x25519"){switch(t){case"ECDH-ES":case"ECDH-ES+A128KW":case"ECDH-ES+A192KW":case"ECDH-ES+A256KW":break;default:throw new TypeError(br)}i=e.toCryptoKey(e.asymmetricKeyType,n,r?[]:["deriveBits"])}if(e.asymmetricKeyType==="ed25519"){if(t!=="EdDSA"&&t!=="Ed25519")throw new TypeError(br);i=e.toCryptoKey(e.asymmetricKeyType,n,[r?"verify":"sign"])}switch(e.asymmetricKeyType){case"ml-dsa-44":case"ml-dsa-65":case"ml-dsa-87":{if(t!==e.asymmetricKeyType.toUpperCase())throw new TypeError(br);i=e.toCryptoKey(e.asymmetricKeyType,n,[r?"verify":"sign"])}}if(e.asymmetricKeyType==="rsa"){let s;switch(t){case"RSA-OAEP":s="SHA-1";break;case"RS256":case"PS256":case"RSA-OAEP-256":s="SHA-256";break;case"RS384":case"PS384":case"RSA-OAEP-384":s="SHA-384";break;case"RS512":case"PS512":case"RSA-OAEP-512":s="SHA-512";break;default:throw new TypeError(br)}if(t.startsWith("RSA-OAEP"))return e.toCryptoKey({name:"RSA-OAEP",hash:s},n,r?["encrypt"]:["decrypt"]);i=e.toCryptoKey({name:t.startsWith("PS")?"RSA-PSS":"RSASSA-PKCS1-v1_5",hash:s},n,[r?"verify":"sign"])}if(e.asymmetricKeyType==="ec"){let s=new Map([["prime256v1","P-256"],["secp384r1","P-384"],["secp521r1","P-521"]]).get(e.asymmetricKeyDetails?.namedCurve);if(!s)throw new TypeError(br);let o={ES256:"P-256",ES384:"P-384",ES512:"P-521"};o[t]&&s===o[t]&&(i=e.toCryptoKey({name:"ECDSA",namedCurve:s},n,[r?"verify":"sign"])),t.startsWith("ECDH-ES")&&(i=e.toCryptoKey({name:"ECDH",namedCurve:s},n,r?[]:["deriveBits"]))}if(!i)throw new TypeError(br);return a?a[t]=i:Ar.set(e,{[t]:i}),i};async function RA(e,t){if(e instanceof Uint8Array||Eo(e))return e;if(ho(e)){if(e.type==="secret")return e.export();if("toCryptoKey"in e&&typeof e.toCryptoKey=="function")try{return CA(e,t)}catch(r){if(r instanceof TypeError)throw r}let a=e.export({format:"jwk"});return w_(e,a,t)}if(To(e))return e.k?Y_(e.k):w_(e,e,t,!0);throw new Error("unreachable")}var AA=(e,t)=>{let a=(e.match(/.{1,64}/g)||[]).join(`
|
|
162
162
|
`);return`-----BEGIN ${t}-----
|
|
163
163
|
${a}
|
|
@@ -176,12 +176,12 @@ curl: try 'botparty curl --help' for more information
|
|
|
176
176
|
`),process.exit(26)}else A.append(Oe,W)};if(i.form)for(let L of i.form)I(L,!0);if(i.formString)for(let L of i.formString)I(L,!1);u=A}if(i.uploadFile&&!u)try{u=Ci(i.uploadFile,"utf-8")}catch{process.stderr.write(`curl: (26) Failed to open/read local data from file: ${i.uploadFile}
|
|
177
177
|
`),process.exit(26)}u&&!l["Content-Type"]&&!l["content-type"]&&(i.json&&i.json.length>0?l["Content-Type"]="application/json":l["Content-Type"]="application/x-www-form-urlencoded"),s={url:g,method:d,headers:l,body:typeof u=="string"?u:void 0};let h=Date.now(),m=!1;try{let A=new URL(s.url);m=await bd(A.hostname,o.stateDir)}catch{}let y=i.retry?parseInt(i.retry,10):0,b=i.retryDelay?parseInt(i.retryDelay,10)*1e3:1e3,N=null,C=null;for(let A=0;A<=y;A++)try{if(m){let I=await o.generateToken(),L=new Headers(s.headers);if(L.set("Authorization",`Bearer ${I}`),C=await fetch(s.url,{method:s.method,headers:L,body:s.body}),C.status===401){await o.keys.rotateCurrent();let Y=await o.generateToken(),Z=new Headers(s.headers);Z.set("Authorization",`Bearer ${Y}`),C=await fetch(s.url,{method:s.method,headers:Z,body:s.body})}}else C=await o.fetch(s.url,{method:s.method,headers:s.headers,body:s.body});if(C.status>=500&&A<y){N=new Error(`HTTP ${C.status}`),await new Promise(I=>setTimeout(I,b));continue}break}catch(I){if(N=I,A<y){await new Promise(L=>setTimeout(L,b));continue}throw I}if(!C)throw N;await Ad(C,i,s.method,s.url,s.headers,h)}catch(o){if(i.silent&&!i.showError&&process.exit(1),Nd(o)){if(i.waitOnAuthlink){process.stderr.write(`
|
|
178
178
|
`),process.stderr.write(` ${pt("Authorization required:")} ${o.message}
|
|
179
|
-
`),process.stderr.write(` ${
|
|
180
|
-
`),process.stderr.write(` ${
|
|
179
|
+
`),process.stderr.write(` ${le("Auth URL:")} ${G(o.actionUrl)}
|
|
180
|
+
`),process.stderr.write(` ${le("Open this link to authorize, then the request will retry.")}
|
|
181
181
|
`),process.stderr.write(`
|
|
182
182
|
${pt("Waiting for user to approve...")}
|
|
183
183
|
`);try{let c=i.waitTimeout?parseInt(i.waitTimeout,10)*1e3:void 0,l=2e3,d=c?Date.now()+c:1/0,u=0,g=!1;for(;Date.now()<d;){await new Promise(h=>setTimeout(h,l)),u++,u%30===0&&process.stderr.write(`
|
|
184
|
-
`),process.stderr.write(
|
|
184
|
+
`),process.stderr.write(le("."));try{let h=t();if(s){let m=await h.fetch(s.url,{method:s.method,headers:s.headers,body:s.body});process.stderr.write(`
|
|
185
185
|
|
|
186
186
|
${Re("\u2713")} Authorization approved!
|
|
187
187
|
|
|
@@ -215,34 +215,34 @@ Link a human account at:
|
|
|
215
215
|
${G(e.actionUrl)}`),process.exit(1)),e instanceof je&&(console.error(`
|
|
216
216
|
${ve(e.code)}: ${e.message}`),e.actionUrl&&console.error(`
|
|
217
217
|
${G(e.actionUrl)}`),process.exit(1)),e instanceof Error&&(console.error(`
|
|
218
|
-
${ve("error")}: ${e.message}`),process.exit(1)),console.error(e),process.exit(1)}var A4=new Set(["header","H"]);function N4(e){let t=e.slice(2),a=[],r={},n="help",i="",s=0;t[0]&&!t[0].startsWith("-")&&(n=t[0],s=1,["keys","connections","conn","invites","dependents","deps","orgs"].includes(n)&&t[1]&&!t[1].startsWith("-")&&(i=t[1],s=2));function o(c,l){if(A4.has(c)&&typeof l=="string"){let d=r[c];Array.isArray(d)?d.push(l):typeof d=="string"?r[c]=[d,l]:r[c]=[l]}else r[c]=l}for(let c=s;c<t.length;c++){let l=t[c];if(l.startsWith("--")){let d=l.indexOf("=");d>-1?o(l.slice(2,d),l.slice(d+1)):c+1<t.length&&!t[c+1].startsWith("-")?(o(l.slice(2),t[c+1]),c++):o(l.slice(2),!0)}else l.startsWith("-")&&l.length===2?c+1<t.length&&!t[c+1].startsWith("-")?(o(l.slice(1),t[c+1]),c++):o(l.slice(1),!0):a.push(l)}return{command:n,subcommand:i,positional:a,flags:r}}function Se(e){return new id({serverUrl:typeof e.server=="string"?e.server:void 0,stateDir:typeof e["state-dir"]=="string"?e["state-dir"]:void 0,inviteToken:typeof e["invite-token"]=="string"?e["invite-token"]:void 0,proxyUrl:typeof e["proxy-url"]=="string"?e["proxy-url"]:void 0})}function Lt(e){return new Date(e).toLocaleString()}function h_(e){let t=new Date(e).getTime()-Date.now();if(t<=0)return ve("expired");let a=Math.floor(t/6e4),r=Math.floor(t%6e4/1e3);return a>0?`${a}m ${r}s`:`${r}s`}async function O4(e,t){let a=Se(e);if(a.isRegistered()){let c=a.whoami();ee?ye({alreadyRegistered:!0,namespace:c.namespace,keyId:c.keyId,serverUrl:c.serverUrl}):(console.log(`Already registered as ${$(c.namespace)}`),console.log(` Key ID: ${c.keyId}`),console.log(` Server: ${
|
|
218
|
+
${ve("error")}: ${e.message}`),process.exit(1)),console.error(e),process.exit(1)}var A4=new Set(["header","H"]);function N4(e){let t=e.slice(2),a=[],r={},n="help",i="",s=0;t[0]&&!t[0].startsWith("-")&&(n=t[0],s=1,["keys","connections","conn","invites","dependents","deps","orgs"].includes(n)&&t[1]&&!t[1].startsWith("-")&&(i=t[1],s=2));function o(c,l){if(A4.has(c)&&typeof l=="string"){let d=r[c];Array.isArray(d)?d.push(l):typeof d=="string"?r[c]=[d,l]:r[c]=[l]}else r[c]=l}for(let c=s;c<t.length;c++){let l=t[c];if(l.startsWith("--")){let d=l.indexOf("=");d>-1?o(l.slice(2,d),l.slice(d+1)):c+1<t.length&&!t[c+1].startsWith("-")?(o(l.slice(2),t[c+1]),c++):o(l.slice(2),!0)}else l.startsWith("-")&&l.length===2?c+1<t.length&&!t[c+1].startsWith("-")?(o(l.slice(1),t[c+1]),c++):o(l.slice(1),!0):a.push(l)}return{command:n,subcommand:i,positional:a,flags:r}}function Se(e){return new id({serverUrl:typeof e.server=="string"?e.server:void 0,stateDir:typeof e["state-dir"]=="string"?e["state-dir"]:void 0,inviteToken:typeof e["invite-token"]=="string"?e["invite-token"]:void 0,proxyUrl:typeof e["proxy-url"]=="string"?e["proxy-url"]:void 0})}function Lt(e){return new Date(e).toLocaleString()}function h_(e){let t=new Date(e).getTime()-Date.now();if(t<=0)return ve("expired");let a=Math.floor(t/6e4),r=Math.floor(t%6e4/1e3);return a>0?`${a}m ${r}s`:`${r}s`}async function O4(e,t){let a=Se(e);if(a.isRegistered()){let c=a.whoami();ee?ye({alreadyRegistered:!0,namespace:c.namespace,keyId:c.keyId,serverUrl:c.serverUrl}):(console.log(`Already registered as ${$(c.namespace)}`),console.log(` Key ID: ${c.keyId}`),console.log(` Server: ${le(c.serverUrl)}`),console.log(`
|
|
219
219
|
Use ${G("botparty reset")} to clear and re-register.`));return}let r=t[0]||(typeof e.namespace=="string"?e.namespace:void 0),n=typeof e.name=="string"?e.name:void 0,i=typeof e.ttl=="string"?parseInt(e.ttl,10):void 0,s=typeof e["invite-token"]=="string"?e["invite-token"]:void 0;i&&(a.rotationTTL=i),ee||console.log("Registering namespace...");let o=await a.register(r,n,{inviteToken:s});ee?ye({namespace:o.namespace,keyId:o.keyId,role:o.role,rotationTTL:o.rotationTTL,...o.parentNamespace&&{parentNamespace:o.parentNamespace},...o.inheritedScopes&&{inheritedScopes:o.inheritedScopes}}):(console.log(`
|
|
220
220
|
${Re("Registered!")} ${$(o.namespace)}`),console.log(` Key ID: ${o.keyId}`),console.log(` Role: ${o.role}`),console.log(` Rotation TTL: ${o.rotationTTL} min`),o.parentNamespace&&console.log(` Parent: ${G(o.parentNamespace)}`),o.inheritedScopes&&console.log(` Inherited: ${o.inheritedScopes.join(", ")}`),console.log(`
|
|
221
|
-
Identity saved to ${
|
|
221
|
+
Identity saved to ${le("~/.botparty/")}`))}async function D4(e){let a=Se(e).whoami();a||V("Not registered. Run: botparty init"),ee?ye(a):(console.log($("Identity")),console.log(` Namespace: ${G(a.namespace)}`),console.log(` Key ID: ${a.keyId}`),console.log(` Algorithm: ${a.algorithm}`),console.log(` Rotation TTL: ${a.rotationTTL} min`),console.log(` Last rotated: ${Lt(a.rotatedAt)}`),console.log(` Stale at: ${Lt(a.staleAt)} (${h_(a.staleAt)})`),a.label&&console.log(` Label: ${a.label}`),a.actAs&&console.log(` Acting as: ${G(a.actAs)}`),console.log(` Server: ${le(a.serverUrl)}`))}async function I4(e,t){let a=Se(e),r=t[0]||a.getIdentity()?.namespace;r||V("Not registered and no namespace provided. Run: botparty init");let n=await a.info(r);ee?ye(n):(console.log($("Namespace Info")),console.log(` Namespace: ${G(n.namespace)}`),console.log(` Status: ${n.status==="active"?Re(n.status):ve(n.status)}`),console.log(` Linked: ${n.linked?Re("yes"):pt("no")}`),console.log(` Active keys: ${n.activeKeys}`),console.log(` Created: ${Lt(n.createdAt)}`),n.lockedAt&&console.log(` Locked at: ${ve(Lt(n.lockedAt))}`))}async function k4(e){let t=Se(e);t.isRegistered()||V("Not registered. Run: botparty init");let{url:a}=await t.link();ee?ye({url:a}):(console.log(`Share this link with your human to claim ownership:
|
|
222
222
|
`),console.log(` ${G(a)}`),console.log(`
|
|
223
|
-
${
|
|
224
|
-
`),console.log(`Re-run with ${G("--yes")} to confirm.`);return}await t.destroy(),ee?ye({namespace:a.namespace,destroyed:!0}):console.log(`${Re("Destroyed")} namespace ${$(a.namespace)}`)}async function w4(e){Se(e).reset(),ee?ye({reset:!0}):(console.log(`${Re("Local state cleared.")} The namespace still exists on the server.`),console.log(`Run ${G("botparty init")} to register a new namespace.`))}async function x4(e){let a=await Se(e).generateToken();ee?ye({token:a}):console.log(a)}async function M4(e){let t=process.argv.slice(2),a=t.findIndex(n=>n==="curl"||n==="fetch"),r=a>=0?t.slice(a+1):t.slice(1);await Dd(r,()=>Se(e))}async function L4(e){let t=Se(e),a=await t.keys.list();if(ee){ye({keys:a});return}if(a.length===0){console.log("No keys found.");return}let r=t.getIdentity();for(let n of a){let i=r&&n.id===r.keyId,s=[];n.isRoot&&s.push(G("root")),i&&s.push(Re("current"));let o=new Date(n.staleAt).getTime();Date.now()>o?s.push(ve("stale")):s.push(`stale in ${h_(n.staleAt)}`),console.log(`${$(n.id)} ${s.join(" | ")}`),console.log(` Fingerprint: ${
|
|
223
|
+
${le("The link expires in 5 minutes.")}`))}async function v4(e){let t=Se(e);t.isRegistered()||V("Not registered.");let a=t.whoami();if(e.yes!==!0&&e.y!==!0){ee&&V("--yes flag required to confirm destruction"),console.log(`${ve("WARNING")}: This will permanently destroy namespace ${$(a.namespace)}.`),console.log(`All keys, links, and data will be deleted.
|
|
224
|
+
`),console.log(`Re-run with ${G("--yes")} to confirm.`);return}await t.destroy(),ee?ye({namespace:a.namespace,destroyed:!0}):console.log(`${Re("Destroyed")} namespace ${$(a.namespace)}`)}async function w4(e){Se(e).reset(),ee?ye({reset:!0}):(console.log(`${Re("Local state cleared.")} The namespace still exists on the server.`),console.log(`Run ${G("botparty init")} to register a new namespace.`))}async function x4(e){let a=await Se(e).generateToken();ee?ye({token:a}):console.log(a)}async function M4(e){let t=process.argv.slice(2),a=t.findIndex(n=>n==="curl"||n==="fetch"),r=a>=0?t.slice(a+1):t.slice(1);await Dd(r,()=>Se(e))}async function L4(e){let t=Se(e),a=await t.keys.list();if(ee){ye({keys:a});return}if(a.length===0){console.log("No keys found.");return}let r=t.getIdentity();for(let n of a){let i=r&&n.id===r.keyId,s=[];n.isRoot&&s.push(G("root")),i&&s.push(Re("current"));let o=new Date(n.staleAt).getTime();Date.now()>o?s.push(ve("stale")):s.push(`stale in ${h_(n.staleAt)}`),console.log(`${$(n.id)} ${s.join(" | ")}`),console.log(` Fingerprint: ${le(n.fingerprint)}`),console.log(` Algorithm: ${n.algorithm}`),console.log(` Role: ${n.role}`),n.label&&console.log(` Label: ${n.label}`),console.log(` Scopes: ${n.scopes.join(", ")}`),console.log(` Rotation TTL: ${n.rotationTTL} min`),console.log(` Last rotated: ${Lt(n.rotatedAt)}`),n.expiresAt&&console.log(` Expires at: ${Lt(n.expiresAt)}`),n.lastUsedAt&&console.log(` Last used: ${Lt(n.lastUsedAt)} from ${n.lastUsedIp}`),console.log("")}}async function P4(e){let t=typeof e.label=="string"?e.label:void 0,a=typeof e.scopes=="string"?e.scopes.split(","):void 0,r=typeof e.ttl=="string"?parseInt(e.ttl,10):void 0,n=typeof e.expires=="string"?e.expires:void 0,i=typeof e["public-key"]=="string"?e["public-key"]:void 0;i||V("--public-key is required (PEM-encoded public key)"),a?.length||V("--scopes is required (comma-separated)"),r||V("--ttl is required (rotation TTL in minutes)");let o=await Se(e).keys.add({publicKey:i,label:t,scopes:a,rotationTTL:r,expiresAt:n});ee?ye(o):(console.log(`${Re("Key added")}`),console.log(` ID: ${$(o.id)}`),console.log(` Fingerprint: ${o.fingerprint}`),console.log(` Scopes: ${o.scopes.join(", ")}`),console.log(` Rotation TTL: ${o.rotationTTL} min`))}async function F4(e,t){let a=t[0]||void 0,r=Se(e);ee||console.log("Rotating key...");let n=await r.keys.rotate(a);ee?ye(n):(console.log(`
|
|
225
225
|
${Re("Key rotated")}`),console.log(` ID: ${$(n.id)}`),console.log(` Fingerprint: ${n.fingerprint}`),console.log(` Stale at: ${Lt(n.staleAt)} (${h_(n.staleAt)})`))}async function U4(e,t){let a=t[0];a||V("Usage: botparty keys delete <keyId>");let r=Se(e);if(e.yes!==!0&&e.y!==!0){ee&&V("--yes flag required to confirm deletion"),console.log(`${pt("WARNING")}: This will delete key ${$(a)} and all sub-keys.`),console.log(`Re-run with ${G("--yes")} to confirm.`);return}await r.keys.delete(a),ee?ye({keyId:a,deleted:!0}):console.log(`${Re("Deleted")} key ${$(a)}`)}async function B4(e,t){let a=t[0];a||V("Usage: botparty keys invalidate <keyId>");let r=typeof e.reason=="string"?e.reason:void 0,n=Se(e);if(e.yes!==!0&&e.y!==!0){ee&&V("--yes flag required to confirm invalidation"),console.log(`${ve("DANGER")}: This will invalidate key ${$(a)} and ${ve("LOCK THE ENTIRE NAMESPACE")}.`),console.log(`All JWTs will be rejected until a human unlocks it.
|
|
226
226
|
`),console.log(`Re-run with ${G("--yes")} to confirm.`);return}await n.keys.invalidate(a,r),ee?ye({keyId:a,invalidated:!0,namespaceLocked:!0}):(console.log(`${ve("Key invalidated")} \u2014 namespace is now ${ve("LOCKED")}.`),console.log("A human must unlock it at the BotParty web UI."))}async function G4(e){let t=Se(e);t.isRegistered()||V("Not registered. Run: botparty init");let a=await t.generateToken(),r=typeof e.scopes=="string"?e.scopes.split(","):void 0,n=typeof e.expires=="string"?e.expires:void 0,i=await fetch(`${t.serverUrl}/api/v1/namespaces/invites`,{method:"POST",headers:{"Content-Type":"application/json",Authorization:`Bearer ${a}`},body:JSON.stringify({scopes:r,expiresIn:n})});if(!i.ok){let o=await i.json().catch(()=>({error:i.statusText}));V(o.error||`HTTP ${i.status}`)}let s=await i.json();ee?ye(s):(console.log(`${Re("Invite created")}`),console.log(` Token ID: ${$(s.tokenId)}`),console.log(` Token: ${s.inviteToken}`),console.log(`
|
|
227
|
-
Share the token or set ${G("BOTPARTY_INVITE_TOKEN")} env var.`))}async function z4(e){let t=Se(e);t.isRegistered()||V("Not registered. Run: botparty init");let a=await t.generateToken(),r=typeof e.status=="string"?`?status=${e.status}`:"",n=await fetch(`${t.serverUrl}/api/v1/namespaces/invites${r}`,{headers:{Authorization:`Bearer ${a}`}});if(!n.ok){let s=await n.json().catch(()=>({error:n.statusText}));V(s.error||`HTTP ${n.status}`)}let{invites:i}=await n.json();if(ee){ye({invites:i});return}if(i.length===0){console.log(
|
|
227
|
+
Share the token or set ${G("BOTPARTY_INVITE_TOKEN")} env var.`))}async function z4(e){let t=Se(e);t.isRegistered()||V("Not registered. Run: botparty init");let a=await t.generateToken(),r=typeof e.status=="string"?`?status=${e.status}`:"",n=await fetch(`${t.serverUrl}/api/v1/namespaces/invites${r}`,{headers:{Authorization:`Bearer ${a}`}});if(!n.ok){let s=await n.json().catch(()=>({error:n.statusText}));V(s.error||`HTTP ${n.status}`)}let{invites:i}=await n.json();if(ee){ye({invites:i});return}if(i.length===0){console.log(le("No invites found."));return}console.log(`
|
|
228
228
|
${$("Invites")} (${i.length})
|
|
229
|
-
`);for(let s of i){let o=s.status==="active"?Re(s.status):s.status==="pending"?pt(s.status):ve(s.status);console.log(` ${$(s.tokenId)} ${o}`),console.log(` Scopes: ${s.scopes.join(", ")}`),s.childNamespace&&console.log(` Child: ${G(s.childNamespace)}`),console.log(` Created: ${Lt(s.createdAt)}`),console.log("")}}async function H4(e){let t=Se(e);t.isRegistered()||V("Not registered. Run: botparty init");let a=await t.generateToken(),r=await fetch(`${t.serverUrl}/api/v1/namespaces/dependents`,{headers:{Authorization:`Bearer ${a}`}});if(!r.ok){let i=await r.json().catch(()=>({error:r.statusText}));V(i.error||`HTTP ${r.status}`)}let{dependents:n}=await r.json();if(ee){ye({dependents:n});return}if(n.length===0){console.log(
|
|
229
|
+
`);for(let s of i){let o=s.status==="active"?Re(s.status):s.status==="pending"?pt(s.status):ve(s.status);console.log(` ${$(s.tokenId)} ${o}`),console.log(` Scopes: ${s.scopes.join(", ")}`),s.childNamespace&&console.log(` Child: ${G(s.childNamespace)}`),console.log(` Created: ${Lt(s.createdAt)}`),console.log("")}}async function H4(e){let t=Se(e);t.isRegistered()||V("Not registered. Run: botparty init");let a=await t.generateToken(),r=await fetch(`${t.serverUrl}/api/v1/namespaces/dependents`,{headers:{Authorization:`Bearer ${a}`}});if(!r.ok){let i=await r.json().catch(()=>({error:r.statusText}));V(i.error||`HTTP ${r.status}`)}let{dependents:n}=await r.json();if(ee){ye({dependents:n});return}if(n.length===0){console.log(le("No dependents found."));return}console.log(`
|
|
230
230
|
${$("Dependents")} (${n.length})
|
|
231
231
|
`);for(let i of n){let s=i.status==="active"?Re(i.status):i.status==="pending"?pt(i.status):ve(i.status);console.log(` ${$(i.tokenId)} ${s}`),i.childNamespace&&console.log(` Namespace: ${G(i.childNamespace)}`),console.log(` Scopes: ${i.scopes.join(", ")}`),console.log(` Created: ${Lt(i.createdAt)}`),i.revokedAt&&console.log(` Revoked: ${ve(Lt(i.revokedAt))}`),console.log("")}}async function Y4(e,t){let a=t[0];a||V("Usage: botparty dependents revoke <tokenId>");let r=Se(e);if(r.isRegistered()||V("Not registered. Run: botparty init"),e.yes!==!0&&e.y!==!0){ee&&V("--yes flag required to confirm revocation"),console.log(`${pt("WARNING")}: This will revoke access for the child namespace linked to token ${$(a)}.`),console.log(`The child namespace will be ${ve("LOCKED")}.`),console.log(`
|
|
232
|
-
Re-run with ${G("--yes")} to confirm.`);return}let n=await r.generateToken(),i=await fetch(`${r.serverUrl}/api/v1/namespaces/dependents?tokenId=${encodeURIComponent(a)}`,{method:"DELETE",headers:{Authorization:`Bearer ${n}`}});if(!i.ok){let o=await i.json().catch(()=>({error:i.statusText}));V(o.error||`HTTP ${i.status}`)}let s=await i.json();ee?ye({revoked:!0,tokenId:a,childNamespace:s.childNamespace}):(console.log(`${Re("Revoked")} token ${$(a)}`),s.childNamespace&&console.log(` Child namespace ${$(s.childNamespace)} is now ${ve("LOCKED")}.`))}async function E_(e,t,a){let r=await t.generateToken(),n=new Headers(a?.headers);return n.set("Authorization",`Bearer ${r}`),fetch(`${t.proxyUrl}${e}`,{...a,headers:n})}async function q4(e){let t=Se(e),a=new URLSearchParams;typeof e.provider=="string"&&a.set("provider",e.provider),typeof e.status=="string"&&a.set("status",e.status);let r=a.toString(),n=await E_(`/api/botparty/connections${r?`?${r}`:""}`,t);if(!n.ok){let o=await n.json().catch(()=>({error:n.statusText}));V(o.error||`HTTP ${n.status}`)}let s=(await n.json()).connections;if(ee){ye({connections:s});return}if(s.length===0){console.log(
|
|
232
|
+
Re-run with ${G("--yes")} to confirm.`);return}let n=await r.generateToken(),i=await fetch(`${r.serverUrl}/api/v1/namespaces/dependents?tokenId=${encodeURIComponent(a)}`,{method:"DELETE",headers:{Authorization:`Bearer ${n}`}});if(!i.ok){let o=await i.json().catch(()=>({error:i.statusText}));V(o.error||`HTTP ${i.status}`)}let s=await i.json();ee?ye({revoked:!0,tokenId:a,childNamespace:s.childNamespace}):(console.log(`${Re("Revoked")} token ${$(a)}`),s.childNamespace&&console.log(` Child namespace ${$(s.childNamespace)} is now ${ve("LOCKED")}.`))}async function E_(e,t,a){let r=await t.generateToken(),n=new Headers(a?.headers);return n.set("Authorization",`Bearer ${r}`),fetch(`${t.proxyUrl}${e}`,{...a,headers:n})}async function q4(e){let t=Se(e),a=new URLSearchParams;typeof e.provider=="string"&&a.set("provider",e.provider),typeof e.status=="string"&&a.set("status",e.status);let r=a.toString(),n=await E_(`/api/botparty/connections${r?`?${r}`:""}`,t);if(!n.ok){let o=await n.json().catch(()=>({error:n.statusText}));V(o.error||`HTTP ${n.status}`)}let s=(await n.json()).connections;if(ee){ye({connections:s});return}if(s.length===0){console.log(le("No connections found."));return}console.log(`
|
|
233
233
|
${$("Connections")} (${s.length})
|
|
234
|
-
`);for(let o of s){let c=o.status==="active"?Re("active"):pt(o.status),l=o.type==="api_key"?
|
|
235
|
-
`);for(let l of s){let d=l.accountLabel&&l.accountLabel!=="default"?
|
|
236
|
-
Specify the exact connection ID to delete.`),process.exit(1)}let o=s[0];e.yes!==!0&&e.y!==!0&&V(`This will permanently delete ${$(o.displayName||o.provider)} (${o.id}). Pass --yes to confirm.`);let c=await E_(`/api/botparty/connections?id=${encodeURIComponent(o.id)}`,r,{method:"DELETE"});if(!c.ok){let l=await c.json().catch(()=>({error:c.statusText}));V(l.error||`HTTP ${c.status}`)}ee?ye({deleted:!0,connectionId:o.id,provider:o.provider}):console.log(`${Re("Deleted")} ${$(o.displayName||o.provider)} (${o.id})`)}async function K4(e){let t=Se(e);t.isRegistered()||V("Not registered. Run: botparty init");let{organizations:a}=await t.listOrgs();if(ee){ye({organizations:a});return}if(a.length===0){console.log(
|
|
234
|
+
`);for(let o of s){let c=o.status==="active"?Re("active"):pt(o.status),l=o.type==="api_key"?le("[api_key]"):le("[oauth]"),d=o.accountLabel&&o.accountLabel!=="default"?le(` (${o.accountLabel})`):"",u=o.accountIdentifier?le(` \u2014 ${o.accountIdentifier}`):"";console.log(` ${$(o.displayName||o.provider)} ${l} ${c}${d}${u}`),console.log(` ${le("id:")} ${o.id}`),o.keyNames?.length&&console.log(` ${le("keys:")} ${o.keyNames.join(", ")}`),o.scopes?.length&&console.log(` ${le("scopes:")} ${o.scopes.join(", ")}`)}console.log("")}function $4(e,t){let a=t.toLowerCase();if(e.id===t||e.provider.toLowerCase()===a||e.displayName?.toLowerCase()===a||e.domain?.toLowerCase()===a)return!0;let r=e.domain?.toLowerCase().replace(/\.(com|io|dev|org|net|ai|club)$/,"");return!!(r&&r===a)}async function V4(e,t){let a=t[0];a||V("Usage: botparty connections delete <name|provider|id> [--yes]");let r=Se(e),n=await E_("/api/botparty/connections",r);if(!n.ok){let l=await n.json().catch(()=>({error:n.statusText}));V(l.error||`HTTP ${n.status}`)}let{connections:i}=await n.json(),s=i.filter(l=>$4(l,a));if(s.length===0&&V(`No connection found matching "${a}". Run: botparty connections list`),s.length>1){console.error(`${pt("Multiple connections match")} "${a}":
|
|
235
|
+
`);for(let l of s){let d=l.accountLabel&&l.accountLabel!=="default"?le(` (${l.accountLabel})`):"";console.error(` ${$(l.displayName||l.provider)}${d} ${le(l.id)}`)}console.error(`
|
|
236
|
+
Specify the exact connection ID to delete.`),process.exit(1)}let o=s[0];e.yes!==!0&&e.y!==!0&&V(`This will permanently delete ${$(o.displayName||o.provider)} (${o.id}). Pass --yes to confirm.`);let c=await E_(`/api/botparty/connections?id=${encodeURIComponent(o.id)}`,r,{method:"DELETE"});if(!c.ok){let l=await c.json().catch(()=>({error:c.statusText}));V(l.error||`HTTP ${c.status}`)}ee?ye({deleted:!0,connectionId:o.id,provider:o.provider}):console.log(`${Re("Deleted")} ${$(o.displayName||o.provider)} (${o.id})`)}async function K4(e){let t=Se(e);t.isRegistered()||V("Not registered. Run: botparty init");let{organizations:a}=await t.listOrgs();if(ee){ye({organizations:a});return}if(a.length===0){console.log(le("Not a member of any organizations."));return}console.log(`
|
|
237
237
|
${$("Organizations")} (${a.length})
|
|
238
|
-
`);for(let n of a){let i=n.role==="admin"?Re(n.role):
|
|
239
|
-
${
|
|
238
|
+
`);for(let n of a){let i=n.role==="admin"?Re(n.role):le(n.role);console.log(` ${$(n.id)} ${n.name} [${i}]`),n.description&&console.log(` ${le(n.description)}`)}let r=t.getActAs();r&&console.log(`
|
|
239
|
+
${le("Acting as:")} ${G(r)}`),console.log()}async function W4(e){let t=Se(e);t.isRegistered()||V("Not registered. Run: botparty init");let a=typeof e.name=="string"?e.name:void 0;a||V("--name is required");let r=typeof e.description=="string"?e.description:"",{organization:n}=await t.createOrg(a,r);ee?ye({organization:n}):(console.log(`${Re("Organization created")}`),console.log(` ID: ${$(n.id)}`),console.log(` Name: ${n.name}`),n.description&&console.log(` Description: ${n.description}`))}async function Q4(e,t){let a=Se(e);a.isRegistered()||V("Not registered. Run: botparty init");let r=t[0];if(r==="me"||r==="self"||r==="none"){a.setActAs(void 0),ee?ye({actAs:null}):console.log(`${Re("Switched")} to acting as ${$("yourself")}.`);return}if(r?.startsWith("org_")){a.setActAs(r),ee?ye({actAs:r}):console.log(`${Re("Switched")} to acting as ${$(r)}.`);return}let{organizations:n}=await a.listOrgs();n.length===0&&V("Not a member of any organizations."),ee&&V("Provide an org ID as argument: botparty orgs switch <org_id|me>"),console.log(`
|
|
240
240
|
${$("Select identity")}
|
|
241
241
|
`),console.log(` ${$("0)")} ${G("myself")} (${a.whoami().namespace})`);for(let i=0;i<n.length;i++){let s=n[i];console.log(` ${$(`${i+1})`)} ${s.name} (${G(s.id)})`)}console.log(`
|
|
242
242
|
Re-run with: ${G("botparty orgs switch <org_id>")} or ${G("botparty orgs switch me")}`)}async function j4(e,t){let a=Se(e);a.isRegistered()||V("Not registered. Run: botparty init");let r=t[0];r||V("Usage: botparty orgs quit <org_id>"),await a.quitOrg(r),a.getActAs()===r&&a.setActAs(void 0),ee?ye({quit:!0,orgId:r}):console.log(`${Re("Left")} organization ${$(r)}.`)}async function X4(e,t){let a=Se(e);a.isRegistered()||V("Not registered. Run: botparty init");let r=t[0];r||V("Usage: botparty orgs invite <org_id>");let n=typeof e.expires=="string"?e.expires:void 0,i=await a.createOrgInvite(r,n);ee?ye(i):(console.log(`${Re("Org invite created")}`),console.log(` Token ID: ${$(i.tokenId)}`),console.log(` Token: ${i.inviteToken}`),console.log(`
|
|
243
|
-
Share the token or set ${G("BOTPARTY_INVITE_TOKEN")} env var.`))}async function Z4(e,t){let a=Se(e);a.isRegistered()||V("Not registered. Run: botparty init");let r=t[0];r||V("Usage: botparty orgs members <org_id>");let{members:n}=await a.listOrgMembers(r);if(ee){ye({members:n});return}if(n.length===0){console.log(
|
|
243
|
+
Share the token or set ${G("BOTPARTY_INVITE_TOKEN")} env var.`))}async function Z4(e,t){let a=Se(e);a.isRegistered()||V("Not registered. Run: botparty init");let r=t[0];r||V("Usage: botparty orgs members <org_id>");let{members:n}=await a.listOrgMembers(r);if(ee){ye({members:n});return}if(n.length===0){console.log(le("No members."));return}console.log(`
|
|
244
244
|
${$("Members")} (${n.length})
|
|
245
|
-
`);for(let i of n){let s=i.role==="admin"?Re(i.role):
|
|
245
|
+
`);for(let i of n){let s=i.role==="admin"?Re(i.role):le(i.role),o=i.userId?le(` (user: ${i.userId})`):"";console.log(` ${$(i.namespace)} [${s}]${o} joined ${Lt(i.joinedAt)}`)}console.log()}async function J4(e,t){let a=Se(e);a.isRegistered()||V("Not registered. Run: botparty init");let r=t[0],n=t[1];(!r||!n)&&V("Usage: botparty orgs kick <org_id> <namespace>"),await a.removeOrgMember(r,n),ee?ye({removed:!0,orgId:r,namespace:n}):console.log(`${Re("Removed")} ${$(n)} from ${$(r)}.`)}async function e8(e,t){let a=Se(e);a.isRegistered()||V("Not registered. Run: botparty init");let r=t[0],n=t[1],i=t[2];(!r||!n||!i)&&V("Usage: botparty orgs role <org_id> <namespace> <admin|member>"),i!=="admin"&&i!=="member"&&V('Role must be "admin" or "member"');let s=await a.updateMemberRole(r,n,i);ee?ye(s):s.changed?console.log(`${Re("Updated")} ${$(n)} to ${$(i)} in ${$(r)}.`):console.log(`${le(`${n} is already ${i} in ${r}.`)}`)}async function t8(e,t){let a=Se(e);a.isRegistered()||V("Not registered. Run: botparty init");let r=t[0];r||V("Usage: botparty orgs delete <org_id> --yes"),e.yes!==!0&&V("This will permanently delete the organization and remove all members. Pass --yes to confirm.");let n=await a.deleteOrg(r);a.getActAs()===r&&a.setActAs(void 0),ee?ye({...n,orgId:r}):console.log(`${Re("Deleted")} organization ${$(r)}.`)}function a8(){console.log(`
|
|
246
246
|
${$("botparty")} \u2014 federated bot identity, authentication, and payments
|
|
247
247
|
|
|
248
248
|
${$("USAGE")}
|
|
@@ -337,5 +337,5 @@ ${$("EXAMPLES")}
|
|
|
337
337
|
botparty orgs list # List your organizations
|
|
338
338
|
botparty orgs switch org_abc123 # Act as an org
|
|
339
339
|
botparty link # Get link URL for human
|
|
340
|
-
`)}async function r8(){let{command:e,subcommand:t,positional:a,flags:r}=N4(process.argv);if(r.json===!0&&(ee=!0),r.version===!0||r.v===!0&&e!=="curl"&&e!=="fetch"||e==="version"){ee?ye({version:"0.0.1"}):console.log("botparty 0.0.1");return}if((r.help===!0||r.h===!0||e==="help")&&!["curl","fetch","services","svc"].includes(e)){let s=e.includes(".")?e:`${e}.botparty.club`;if(!(e!=="help"&&await Ri(s))){a8();return}}if(!new Set(["init","join","reset","help","version"]).has(e)){let i=Se(r);if(!i.isRegistered()){ee||console.log(
|
|
340
|
+
`)}async function r8(){let{command:e,subcommand:t,positional:a,flags:r}=N4(process.argv);if(r.json===!0&&(ee=!0),r.version===!0||r.v===!0&&e!=="curl"&&e!=="fetch"||e==="version"){ee?ye({version:"0.0.1"}):console.log("botparty 0.0.1");return}if((r.help===!0||r.h===!0||e==="help")&&!["curl","fetch","services","svc"].includes(e)){let s=e.includes(".")?e:`${e}.botparty.club`;if(!(e!=="help"&&await Ri(s))){a8();return}}if(!new Set(["init","join","reset","help","version"]).has(e)){let i=Se(r);if(!i.isRegistered()){ee||console.log(le("First run \u2014 registering with BotParty...")),await i.ensureRegistered();let s=i.whoami();ee||console.log(`${Re("Registered!")} ${$(s.namespace)}
|
|
341
341
|
`)}}try{switch(e){case"init":case"join":await O4(r,a);break;case"whoami":await D4(r);break;case"info":await I4(r,a);break;case"link":await k4(r);break;case"destroy":await v4(r);break;case"reset":await w4(r);break;case"token":await x4(r);break;case"curl":case"fetch":await M4(r);break;case"services":case"svc":await g_(()=>Se(r),{jsonMode:ee});break;case"keys":switch(t){case"list":case"ls":await L4(r);break;case"add":await P4(r);break;case"rotate":await F4(r,a);break;case"delete":case"rm":await U4(r,a);break;case"invalidate":case"panic":await B4(r,a);break;default:V(`Unknown keys subcommand: ${t||"(none)"}. Run: botparty keys list`)}break;case"invites":switch(t){case"create":await G4(r);break;case"list":case"ls":case"":await z4(r);break;default:V(`Unknown invites subcommand: ${t}. Try: botparty invites list`)}break;case"dependents":case"deps":switch(t){case"list":case"ls":case"":await H4(r);break;case"revoke":await Y4(r,a);break;default:V(`Unknown dependents subcommand: ${t}. Try: botparty dependents list`)}break;case"connections":case"conn":switch(t){case"list":case"ls":case"":await q4(r);break;case"delete":case"rm":await V4(r,a);break;default:V(`Unknown connections subcommand: ${t}. Run: botparty connections list`)}break;case"orgs":switch(t){case"list":case"ls":case"":await K4(r);break;case"create":await W4(r);break;case"switch":await Q4(r,a);break;case"quit":case"leave":await j4(r,a);break;case"invite":await X4(r,a);break;case"members":await Z4(r,a);break;case"kick":case"remove":await J4(r,a);break;case"role":case"permissions":await e8(r,a);break;case"delete":case"dissolve":await t8(r,a);break;default:V(`Unknown orgs subcommand: ${t||"(none)"}. Run: botparty orgs list`)}break;default:{let i=e.includes(".")?e:`${e}.botparty.club`;if(await Ri(i)){let{discover:o}=await Promise.resolve().then(()=>(Ai(),vd)),{execute:c}=await Promise.resolve().then(()=>(m_(),HR)),{fetchServicesIndex:l}=await Promise.resolve().then(()=>(Or(),Id)),{stripGlobalFlags:d}=await Promise.resolve().then(()=>(f_(),$R)),u=process.argv.slice(2),g=u.indexOf(e),h=d(g>=0?u.slice(g+1):[]),m=await l(i),y=h[0]&&!h[0].startsWith("-")?h[0]:void 0,b=h.slice(y?1:0),N=y&&(m.actions.some(L=>L.slug===y)||m.actions.some(L=>L.slug.startsWith(y+"."))),C=!N&&m.defaultAction?m.defaultAction:y,A=h.some(L=>!L.startsWith("-")),I=h.includes("--help")||h.includes("-h");if(m.cliPackage&&C&&A&&!I&&(!m.cliActions||m.cliActions.includes(C))){m.cliPackage.startsWith("@botparty/")||V(`Untrusted CLI package: ${m.cliPackage} (must start with @botparty/)`);let{spawn:Y}=await import("node:child_process"),Z=!N&&m.defaultAction?h:b,Oe=Y("npx",["-y",`${m.cliPackage}@latest`,...Z],{stdio:"inherit",shell:!0});Oe.on("close",W=>process.exit(W??0)),Oe.on("error",W=>{console.error(`${ve("error")}: Failed to run ${m.cliPackage}: ${W.message}`),process.exit(1)}),await new Promise(()=>{})}try{!y&&b.length===0?await o(i):(!N&&m.defaultAction&&(b=h,y=m.defaultAction),await c(i,y,b,()=>Se(r),{jsonMode:ee}))}catch(L){L.code==="ENOTFOUND"||L.cause?.code==="ENOTFOUND"?console.error(`${ve("error")}: Could not connect to ${i}`):console.error(`${ve("error")}: ${L.message||L}`),process.exit(1)}}else V(`Unknown command: ${e}. Run: botparty --help`);break}}}catch(i){R4(i)}}r8();
|