@kitelev/exocortex-cli 13.262.0 → 13.264.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +14 -14
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- // @kitelev/exocortex-cli v13.262.0
2
+ // @kitelev/exocortex-cli v13.264.0
3
3
  // CLI tool for Exocortex knowledge management system - SPARQL queries, task management, and more
4
4
  // License: MIT
5
5
 
@@ -28,7 +28,7 @@ Expecting one of '${r.join("', '")}'`);return this._lifeCycleHooks[e]?this._life
28
28
  `),this.outputHelp({error:!0}));let r=t||{},i=r.exitCode||1,s=r.code||"commander.error";this._exit(i,s,e)}_parseOptionsEnv(){this.options.forEach(e=>{if(e.envVar&&e.envVar in ze.env){let t=e.attributeName();(this.getOptionValue(t)===void 0||["default","config","env"].includes(this.getOptionValueSource(t)))&&(e.required||e.optional?this.emit(`optionEnv:${e.name()}`,ze.env[e.envVar]):this.emit(`optionEnv:${e.name()}`))}})}_parseOptionsImplied(){let e=new wA(this.options),t=o(r=>this.getOptionValue(r)!==void 0&&!["default","implied"].includes(this.getOptionValueSource(r)),"hasCustomOptionValue");this.options.filter(r=>r.implied!==void 0&&t(r.attributeName())&&e.valueFromOption(this.getOptionValue(r.attributeName()),r)).forEach(r=>{Object.keys(r.implied).filter(i=>!t(i)).forEach(i=>{this.setOptionValueWithSource(i,r.implied[i],"implied")})})}missingArgument(e){let t=`error: missing required argument '${e}'`;this.error(t,{code:"commander.missingArgument"})}optionMissingArgument(e){let t=`error: option '${e.flags}' argument missing`;this.error(t,{code:"commander.optionMissingArgument"})}missingMandatoryOptionValue(e){let t=`error: required option '${e.flags}' not specified`;this.error(t,{code:"commander.missingMandatoryOptionValue"})}_conflictingOption(e,t){let r=o(a=>{let c=a.attributeName(),u=this.getOptionValue(c),l=this.options.find(h=>h.negate&&c===h.attributeName()),f=this.options.find(h=>!h.negate&&c===h.attributeName());return l&&(l.presetArg===void 0&&u===!1||l.presetArg!==void 0&&u===l.presetArg)?l:f||a},"findBestOptionFromValue"),i=o(a=>{let c=r(a),u=c.attributeName();return this.getOptionValueSource(u)==="env"?`environment variable '${c.envVar}'`:`option '${c.flags}'`},"getErrorMessage"),s=`error: ${i(e)} cannot be used with ${i(t)}`;this.error(s,{code:"commander.conflictingOption"})}unknownOption(e){if(this._allowUnknownOption)return;let t="";if(e.startsWith("--")&&this._showSuggestionAfterError){let i=[],s=this;do{let a=s.createHelp().visibleOptions(s).filter(c=>c.long).map(c=>c.long);i=i.concat(a),s=s.parent}while(s&&!s._enablePositionalOptions);t=c2(e,i)}let r=`error: unknown option '${e}'${t}`;this.error(r,{code:"commander.unknownOption"})}_excessArguments(e){if(this._allowExcessArguments)return;let t=this.registeredArguments.length,r=t===1?"":"s",s=`error: too many arguments${this.parent?` for '${this.name()}'`:""}. Expected ${t} argument${r} but got ${e.length}.`;this.error(s,{code:"commander.excessArguments"})}unknownCommand(){let e=this.args[0],t="";if(this._showSuggestionAfterError){let i=[];this.createHelp().visibleCommands(this).forEach(s=>{i.push(s.name()),s.alias()&&i.push(s.alias())}),t=c2(e,i)}let r=`error: unknown command '${e}'${t}`;this.error(r,{code:"commander.unknownCommand"})}version(e,t,r){if(e===void 0)return this._version;this._version=e,t=t||"-V, --version",r=r||"output the version number";let i=this.createOption(t,r);return this._versionOptionName=i.attributeName(),this._registerOption(i),this.on("option:"+i.name(),()=>{this._outputConfiguration.writeOut(`${e}
29
29
  `),this._exit(0,"commander.version",e)}),this}description(e,t){return e===void 0&&t===void 0?this._description:(this._description=e,t&&(this._argsDescription=t),this)}summary(e){return e===void 0?this._summary:(this._summary=e,this)}alias(e){if(e===void 0)return this._aliases[0];let t=this;if(this.commands.length!==0&&this.commands[this.commands.length-1]._executableHandler&&(t=this.commands[this.commands.length-1]),e===t._name)throw new Error("Command alias can't be the same as its name");let r=this.parent?._findCommand(e);if(r){let i=[r.name()].concat(r.aliases()).join("|");throw new Error(`cannot add alias '${e}' to command '${this.name()}' as already have command '${i}'`)}return t._aliases.push(e),this}aliases(e){return e===void 0?this._aliases:(e.forEach(t=>this.alias(t)),this)}usage(e){if(e===void 0){if(this._usage)return this._usage;let t=this.registeredArguments.map(r=>vA(r));return[].concat(this.options.length||this._helpOption!==null?"[options]":[],this.commands.length?"[command]":[],this.registeredArguments.length?t:[]).join(" ")}return this._usage=e,this}name(e){return e===void 0?this._name:(this._name=e,this)}helpGroup(e){return e===void 0?this._helpGroupHeading??"":(this._helpGroupHeading=e,this)}commandsGroup(e){return e===void 0?this._defaultCommandGroup??"":(this._defaultCommandGroup=e,this)}optionsGroup(e){return e===void 0?this._defaultOptionGroup??"":(this._defaultOptionGroup=e,this)}_initOptionGroup(e){this._defaultOptionGroup&&!e.helpGroupHeading&&e.helpGroup(this._defaultOptionGroup)}_initCommandGroup(e){this._defaultCommandGroup&&!e.helpGroup()&&e.helpGroup(this._defaultCommandGroup)}nameFromFilename(e){return this._name=Si.basename(e,Si.extname(e)),this}executableDir(e){return e===void 0?this._executableDir:(this._executableDir=e,this)}helpInformation(e){let t=this.createHelp(),r=this._getOutputContext(e);t.prepareContext({error:r.error,helpWidth:r.helpWidth,outputHasColors:r.hasColors});let i=t.formatHelp(this,t);return r.hasColors?i:this._outputConfiguration.stripColor(i)}_getOutputContext(e){e=e||{};let t=!!e.error,r,i,s;return t?(r=o(c=>this._outputConfiguration.writeErr(c),"baseWrite"),i=this._outputConfiguration.getErrHasColors(),s=this._outputConfiguration.getErrHelpWidth()):(r=o(c=>this._outputConfiguration.writeOut(c),"baseWrite"),i=this._outputConfiguration.getOutHasColors(),s=this._outputConfiguration.getOutHelpWidth()),{error:t,write:o(c=>(i||(c=this._outputConfiguration.stripColor(c)),r(c)),"write"),hasColors:i,helpWidth:s}}outputHelp(e){let t;typeof e=="function"&&(t=e,e=void 0);let r=this._getOutputContext(e),i={error:r.error,write:r.write,command:this};this._getCommandAndAncestors().reverse().forEach(a=>a.emit("beforeAllHelp",i)),this.emit("beforeHelp",i);let s=this.helpInformation({error:r.error});if(t&&(s=t(s),typeof s!="string"&&!Buffer.isBuffer(s)))throw new Error("outputHelp callback must return a string or a Buffer");r.write(s),this._getHelpOption()?.long&&this.emit(this._getHelpOption().long),this.emit("afterHelp",i),this._getCommandAndAncestors().forEach(a=>a.emit("afterAllHelp",i))}helpOption(e,t){return typeof e=="boolean"?(e?(this._helpOption===null&&(this._helpOption=void 0),this._defaultOptionGroup&&this._initOptionGroup(this._getHelpOption())):this._helpOption=null,this):(this._helpOption=this.createOption(e??"-h, --help",t??"display help for command"),(e||t)&&this._initOptionGroup(this._helpOption),this)}_getHelpOption(){return this._helpOption===void 0&&this.helpOption(void 0,void 0),this._helpOption}addHelpOption(e){return this._helpOption=e,this._initOptionGroup(e),this}help(e){this.outputHelp(e);let t=Number(ze.exitCode??0);t===0&&e&&typeof e!="function"&&e.error&&(t=1),this._exit(t,"commander.help","(outputHelp)")}addHelpText(e,t){let r=["beforeAll","before","after","afterAll"];if(!r.includes(e))throw new Error(`Unexpected value for position to addHelpText.
30
30
  Expecting one of '${r.join("', '")}'`);let i=`${e}Help`;return this.on(i,s=>{let a;typeof t=="function"?a=t({error:s.error,command:s.command}):a=t,a&&s.write(`${a}
31
- `)}),this}_outputHelpIfRequested(e){let t=this._getHelpOption();t&&e.find(i=>t.is(i))&&(this.outputHelp(),this._exit(0,"commander.helpDisplayed","(outputHelp)"))}};function u2(n){return n.map(e=>{if(!e.startsWith("--inspect"))return e;let t,r="127.0.0.1",i="9229",s;return(s=e.match(/^(--inspect(-brk)?)$/))!==null?t=s[1]:(s=e.match(/^(--inspect(-brk|-port)?)=([^:]+)$/))!==null?(t=s[1],/^\d+$/.test(s[3])?i=s[3]:r=s[3]):(s=e.match(/^(--inspect(-brk|-port)?)=([^:]+):(\d+)$/))!==null&&(t=s[1],r=s[3],i=s[4]),t&&i!=="0"?`${t}=${r}:${parseInt(i)+1}`:e})}o(u2,"incrementNodeInspectorPort");function Nd(){if(ze.env.NO_COLOR||ze.env.FORCE_COLOR==="0"||ze.env.FORCE_COLOR==="false")return!1;if(ze.env.FORCE_COLOR||ze.env.CLICOLOR_FORCE!==void 0)return!0}o(Nd,"useColor");Ld.Command=Fd;Ld.useColor=Nd});var p2=v(Gr=>{var{Argument:f2}=Uu(),{Command:kd}=l2(),{CommanderError:bA,InvalidArgumentError:h2}=Jo(),{Help:EA}=Cd(),{Option:d2}=Pd();Gr.program=new kd;Gr.createCommand=n=>new kd(n);Gr.createOption=(n,e)=>new d2(n,e);Gr.createArgument=(n,e)=>new f2(n,e);Gr.Command=kd;Gr.Option=d2;Gr.Argument=f2;Gr.Help=EA;Gr.CommanderError=bA;Gr.InvalidArgumentError=h2;Gr.InvalidOptionArgumentError=h2});var Md=v(qu=>{"use strict";Object.defineProperty(qu,"__esModule",{value:!0});qu.AssetClass=void 0;var g2;(function(n){n.AREA="ems__Area",n.TASK="ems__Task",n.PROJECT="ems__Project",n.MEETING="ems__Meeting",n.INITIATIVE="ems__Initiative",n.TASK_PROTOTYPE="ems__TaskPrototype",n.MEETING_PROTOTYPE="ems__MeetingPrototype",n.EVENT_PROTOTYPE="exo__EventPrototype",n.PROJECT_PROTOTYPE="ems__ProjectPrototype",n.EVENT="exo__Event",n.DAILY_NOTE="pn__DailyNote",n.CONCEPT="ims__Concept",n.SESSION_START_EVENT="ems__SessionStartEvent",n.SESSION_END_EVENT="ems__SessionEndEvent",n.PROTOTYPE="exo__Prototype",n.CLASS="exo__Class"})(g2||(qu.AssetClass=g2={}))});var jd=v(Gu=>{"use strict";Object.defineProperty(Gu,"__esModule",{value:!0});Gu.EffortStatus=void 0;var y2;(function(n){n.DRAFT="ems__EffortStatusDraft",n.BACKLOG="ems__EffortStatusBacklog",n.ANALYSIS="ems__EffortStatusAnalysis",n.TODO="ems__EffortStatusToDo",n.DOING="ems__EffortStatusDoing",n.DONE="ems__EffortStatusDone",n.TRASHED="ems__EffortStatusTrashed"})(y2||(Gu.EffortStatus=y2={}))});var v2=v(Wu=>{"use strict";Object.defineProperty(Wu,"__esModule",{value:!0});Wu.hasPosition=TA;Wu.isFixed=AA;function TA(n){return typeof n.x=="number"&&typeof n.y=="number"}o(TA,"hasPosition");function AA(n){return n.fx!==null&&n.fx!==void 0&&n.fy!==null&&n.fy!==void 0}o(AA,"isFixed")});var S2=v(Hu=>{"use strict";Object.defineProperty(Hu,"__esModule",{value:!0});Hu.createEmptyGraphData=CA;Hu.mergeGraphData=xA;function CA(){return{nodes:[],edges:[],lastUpdated:Date.now(),version:0}}o(CA,"createEmptyGraphData");function xA(n,e){let t=new Map,r=new Set,i=[];for(let s of n.nodes)t.set(s.id,s);for(let s of e.nodes)t.set(s.id,s);for(let s of n.edges){let a=`${s.source}->${s.target}:${s.type}`;r.has(a)||(r.add(a),i.push(s))}for(let s of e.edges){let a=`${s.source}->${s.target}:${s.type}`;r.has(a)||(r.add(a),i.push(s))}return{nodes:Array.from(t.values()),edges:i,lastUpdated:Date.now(),version:Math.max(n.version??0,e.version??0)+1}}o(xA,"mergeGraphData")});var $d=v(zu=>{"use strict";Object.defineProperty(zu,"__esModule",{value:!0});zu.createEdgeId=OA;zu.edgesEqual=IA;function OA(n,e,t,r){let i=r?`|${r}`:"";return`${n}->${e}:${t}${i}`}o(OA,"createEdgeId");function IA(n,e){return n.source===e.source&&n.target===e.target&&n.type===e.type&&n.predicate===e.predicate}o(IA,"edgesEqual")});var Vd=v(mt=>{"use strict";Object.defineProperty(mt,"__esModule",{value:!0});mt.BUILT_IN_EDGE_STYLES=mt.BUILT_IN_NODE_STYLES=mt.DEFAULT_EDGE_STYLE=mt.DEFAULT_NODE_STYLE=mt.RDF_TYPE_PREDICATES=void 0;mt.mergeNodeStyles=PA;mt.mergeEdgeStyles=DA;mt.extractLocalName=RA;mt.isClassType=FA;mt.isTypePredicate=NA;mt.isSubClassPredicate=LA;mt.RDF_TYPE_PREDICATES={RDF_TYPE:"http://www.w3.org/1999/02/22-rdf-syntax-ns#type",RDFS_CLASS:"http://www.w3.org/2000/01/rdf-schema#Class",OWL_CLASS:"http://www.w3.org/2002/07/owl#Class",RDFS_SUBCLASS_OF:"http://www.w3.org/2000/01/rdf-schema#subClassOf",OWL_EQUIVALENT_CLASS:"http://www.w3.org/2002/07/owl#equivalentClass",RDFS_LABEL:"http://www.w3.org/2000/01/rdf-schema#label",RDFS_COMMENT:"http://www.w3.org/2000/01/rdf-schema#comment"};mt.DEFAULT_NODE_STYLE={color:"#6366f1",borderColor:"#4f46e5",borderWidth:2,size:30,shape:"circle",icon:"",opacity:1,shadow:!1,animation:"none"};mt.DEFAULT_EDGE_STYLE={color:"#9ca3af",width:1,lineStyle:"solid",arrow:"standard",curvature:0,opacity:.6,showLabel:!1,labelPosition:.5};mt.BUILT_IN_NODE_STYLES={"http://www.w3.org/2000/01/rdf-schema#Class":{color:"#f59e0b",shape:"diamond",size:40},"http://www.w3.org/2002/07/owl#Class":{color:"#f59e0b",shape:"diamond",size:40},ems__Task:{color:"#22c55e",shape:"circle"},ems__Project:{color:"#3b82f6",shape:"square"},ems__Area:{color:"#8b5cf6",shape:"hexagon",size:40},ems__Meeting:{color:"#ec4899",shape:"circle"},exo__Class:{color:"#f59e0b",shape:"diamond"},ims__Person:{color:"#06b6d4",shape:"circle"}};mt.BUILT_IN_EDGE_STYLES={"http://www.w3.org/1999/02/22-rdf-syntax-ns#type":{color:"#f59e0b",lineStyle:"dashed",arrow:"standard"},"http://www.w3.org/2000/01/rdf-schema#subClassOf":{color:"#8b5cf6",width:2,arrow:"triangle"},"https://exocortex.my/ontology/ems#Effort_parent":{color:"#6366f1",width:2,arrow:"standard"},"https://exocortex.my/ontology/exo#Asset_prototype":{color:"#f59e0b",lineStyle:"dashed",arrow:"circle"},"https://exocortex.my/ontology/exo#references":{color:"#22c55e",opacity:.4,arrow:"standard"}};function PA(n,e){return{...n,...Object.fromEntries(Object.entries(e).filter(([,t])=>t!==void 0))}}o(PA,"mergeNodeStyles");function DA(n,e){return{...n,...Object.fromEntries(Object.entries(e).filter(([,t])=>t!==void 0))}}o(DA,"mergeEdgeStyles");function RA(n){let e=n.lastIndexOf("#"),t=n.lastIndexOf("/"),r=Math.max(e,t);return r>=0?n.substring(r+1):n}o(RA,"extractLocalName");function FA(n){return n===mt.RDF_TYPE_PREDICATES.RDFS_CLASS||n===mt.RDF_TYPE_PREDICATES.OWL_CLASS}o(FA,"isClassType");function NA(n){return n===mt.RDF_TYPE_PREDICATES.RDF_TYPE}o(NA,"isTypePredicate");function LA(n){return n===mt.RDF_TYPE_PREDICATES.RDFS_SUBCLASS_OF}o(LA,"isSubClassPredicate")});var w2=v(_2=>{"use strict";Object.defineProperty(_2,"__esModule",{value:!0})});var Xe=v(Qu=>{"use strict";Object.defineProperty(Qu,"__esModule",{value:!0});Qu.IRI=void 0;var Ud=class n{static{o(this,"IRI")}constructor(e){let t=e.trim();if(t.length===0)throw new Error("IRI cannot be empty");if(!n.isValidIRI(t))throw new Error("Invalid IRI format");this._value=t}get value(){return this._value}equals(e){return this._value===e._value}toString(){return this._value}static isValidIRI(e){if(!e||e.trim().length===0||/\s/.test(e)||!/^[a-z][a-z0-9+.-]*:/i.test(e))return!1;let r=["http","https","ftp","ftps","file","mailto","tel","data","ws","wss","urn","obsidian"],i=e.match(/^([a-z][a-z0-9+.-]*?):/i);if(i){let s=i[1].toLowerCase();if(!r.includes(s))return!1}try{return new URL(e),!0}catch{return/^urn:[a-z0-9][a-z0-9-]{0,31}:[^\s]+$/i.test(e)}}};Qu.IRI=Ud});var ft=v(Cs=>{"use strict";Object.defineProperty(Cs,"__esModule",{value:!0});Cs.Literal=void 0;Cs.parseLanguageTag=b2;Cs.createDirectionalLiteral=MA;Cs.createLiteralFromLanguageTag=jA;var kA="http://www.w3.org/2001/XMLSchema#string",Zo=class{static{o(this,"Literal")}constructor(e,t,r,i){if(e.length===0)throw new Error("Literal value cannot be empty");if(t&&r)throw new Error("Literal cannot have both datatype and language tag");if(i&&!r)throw new Error("Literal cannot have direction without language tag");if(i&&i!=="ltr"&&i!=="rtl")throw new Error('Direction must be "ltr" or "rtl"');this._value=e,this._datatype=t,this._language=r?r.toLowerCase():void 0,this._direction=i}get value(){return this._value}get datatype(){return this._datatype}get language(){return this._language}get direction(){return this._direction}hasDirection(){return this._direction!==void 0}equals(e){if(this._value!==e._value||this._language!==e._language||this._direction!==e._direction)return!1;let t=this.normalizedDatatype(),r=e.normalizedDatatype();return t===r}normalizedDatatype(){return!this._datatype||this._datatype.value===kA?null:this._datatype.value}toString(){let e=`"${this._value}"`;return this._datatype?e+=`^^<${this._datatype.value}>`:this._language&&(e+=`@${this._language}`,this._direction&&(e+=`--${this._direction}`)),e}};Cs.Literal=Zo;function b2(n){let t=n.lastIndexOf("--");if(t===-1)return{language:n.toLowerCase()};let r=n.substring(t+2),i=n.substring(0,t);return r==="ltr"||r==="rtl"?{language:i.toLowerCase(),direction:r}:{language:n.toLowerCase()}}o(b2,"parseLanguageTag");function MA(n,e,t){return new Zo(n,void 0,e,t)}o(MA,"createDirectionalLiteral");function jA(n,e){let{language:t,direction:r}=b2(e);return new Zo(n,void 0,t,r)}o(jA,"createLiteralFromLanguageTag")});var Ut=v(Ku=>{"use strict";Object.defineProperty(Ku,"__esModule",{value:!0});Ku.BlankNode=void 0;var Yu=class n{static{o(this,"BlankNode")}constructor(e){let t=e.trim();if(t.length===0)throw new Error("BlankNode id cannot be empty");this._id=t}get id(){return this._id}equals(e){return this._id===e._id}toString(){return`_:${this._id}`}static generateId(){return`b${++n.counter}`}static create(){return new n(n.generateId())}};Ku.BlankNode=Yu;Yu.counter=0});var Wr=v(Xu=>{"use strict";Object.defineProperty(Xu,"__esModule",{value:!0});Xu.Namespace=void 0;var E2=Xe(),pr=class{static{o(this,"Namespace")}constructor(e,t){if(e.trim().length===0)throw new Error("Namespace prefix cannot be empty");this._prefix=e,this._iri=new E2.IRI(t)}get prefix(){return this._prefix}get iri(){return this._iri}term(e){return new E2.IRI(`${this._iri.value}${e}`)}expand(e){let t=e.split(":");if(t.length!==2)return null;let[r,i]=t;return r!==this._prefix?null:this.term(i)}};Xu.Namespace=pr;pr.RDF=new pr("rdf","http://www.w3.org/1999/02/22-rdf-syntax-ns#");pr.RDFS=new pr("rdfs","http://www.w3.org/2000/01/rdf-schema#");pr.OWL=new pr("owl","http://www.w3.org/2002/07/owl#");pr.XSD=new pr("xsd","http://www.w3.org/2001/XMLSchema#");pr.EXO=new pr("exo","https://exocortex.my/ontology/exo#");pr.EMS=new pr("ems","https://exocortex.my/ontology/ems#")});var ji=v(Ju=>{"use strict";Object.defineProperty(Ju,"__esModule",{value:!0});Ju.Triple=void 0;var Bd=Xe(),qd=ft(),Gd=Ut(),Wd=class{static{o(this,"Triple")}constructor(e,t,r){this._subject=e,this._predicate=t,this._object=r}get subject(){return this._subject}get predicate(){return this._predicate}get object(){return this._object}equals(e){return!(!this.equalsNode(this._subject,e._subject)||!this._predicate.equals(e._predicate)||!this.equalsNode(this._object,e._object))}equalsNode(e,t){return e instanceof Bd.IRI&&t instanceof Bd.IRI||e instanceof Gd.BlankNode&&t instanceof Gd.BlankNode||e instanceof qd.Literal&&t instanceof qd.Literal||this.isQuotedTriple(e)&&this.isQuotedTriple(t)?e.equals(t):!1}isQuotedTriple(e){return typeof e=="object"&&e!==null&&"termType"in e&&e.termType==="QuotedTriple"}toString(){let e=this.nodeToString(this._subject),t=`<${this._predicate.value}>`,r=this.nodeToString(this._object);return`${e} ${t} ${r} .`}nodeToString(e){return e instanceof Bd.IRI?`<${e.value}>`:e instanceof Gd.BlankNode||e instanceof qd.Literal||this.isQuotedTriple(e)?e.toString():""}};Ju.Triple=Wd});var ec=v(Zu=>{"use strict";Object.defineProperty(Zu,"__esModule",{value:!0});Zu.QuotedTriple=void 0;var Hd=Xe(),zd=ft(),Qd=Ut(),Yd=class n{static{o(this,"QuotedTriple")}constructor(e,t,r){this._subject=e,this._predicate=t,this._object=r}get subject(){return this._subject}get predicate(){return this._predicate}get object(){return this._object}equals(e){return!(!this.equalsNode(this._subject,e._subject)||!this._predicate.equals(e._predicate)||!this.equalsNode(this._object,e._object))}equalsNode(e,t){return e instanceof Hd.IRI&&t instanceof Hd.IRI||e instanceof Qd.BlankNode&&t instanceof Qd.BlankNode||e instanceof zd.Literal&&t instanceof zd.Literal||e instanceof n&&t instanceof n?e.equals(t):!1}get termType(){return"QuotedTriple"}toString(){let e=this.nodeToString(this._subject),t=`<${this._predicate.value}>`,r=this.nodeToString(this._object);return`<< ${e} ${t} ${r} >>`}nodeToString(e){return e instanceof Hd.IRI?`<${e.value}>`:e instanceof Qd.BlankNode||e instanceof zd.Literal||e instanceof n?e.toString():""}};Zu.QuotedTriple=Yd});var T2=v(bt=>{"use strict";Object.defineProperty(bt,"__esModule",{value:!0});bt.QuotedTriple=bt.Triple=bt.Namespace=bt.BlankNode=bt.createLiteralFromLanguageTag=bt.createDirectionalLiteral=bt.parseLanguageTag=bt.Literal=bt.IRI=void 0;var $A=Xe();Object.defineProperty(bt,"IRI",{enumerable:!0,get:o(function(){return $A.IRI},"get")});var el=ft();Object.defineProperty(bt,"Literal",{enumerable:!0,get:o(function(){return el.Literal},"get")});Object.defineProperty(bt,"parseLanguageTag",{enumerable:!0,get:o(function(){return el.parseLanguageTag},"get")});Object.defineProperty(bt,"createDirectionalLiteral",{enumerable:!0,get:o(function(){return el.createDirectionalLiteral},"get")});Object.defineProperty(bt,"createLiteralFromLanguageTag",{enumerable:!0,get:o(function(){return el.createLiteralFromLanguageTag},"get")});var VA=Ut();Object.defineProperty(bt,"BlankNode",{enumerable:!0,get:o(function(){return VA.BlankNode},"get")});var UA=Wr();Object.defineProperty(bt,"Namespace",{enumerable:!0,get:o(function(){return UA.Namespace},"get")});var BA=ji();Object.defineProperty(bt,"Triple",{enumerable:!0,get:o(function(){return BA.Triple},"get")});var qA=ec();Object.defineProperty(bt,"QuotedTriple",{enumerable:!0,get:o(function(){return qA.QuotedTriple},"get")})});var xs=v(rl=>{"use strict";Object.defineProperty(rl,"__esModule",{value:!0});rl.WikiLinkHelpers=void 0;var tl=class{static{o(this,"WikiLinkHelpers")}static normalize(e){return e?e.replace(this.WIKI_LINK_PATTERN,"").trim():""}static normalizeArray(e){return e?(Array.isArray(e)?e:[e]).map(r=>this.normalize(r)).filter(r=>r.length>0):[]}static equals(e,t){return this.normalize(e)===this.normalize(t)}static includes(e,t){let r=this.normalizeArray(e),i=this.normalize(t);return r.includes(i)}};rl.WikiLinkHelpers=tl;tl.WIKI_LINK_PATTERN=/\[\[|\]\]/g});var er=v(Ta=>{"use strict";Object.defineProperty(Ta,"__esModule",{value:!0});Ta.EffortStatus=Ta.AssetClass=void 0;var GA=Md();Object.defineProperty(Ta,"AssetClass",{enumerable:!0,get:o(function(){return GA.AssetClass},"get")});var WA=jd();Object.defineProperty(Ta,"EffortStatus",{enumerable:!0,get:o(function(){return WA.EffortStatus},"get")})});var $i=v(tr=>{"use strict";Object.defineProperty(tr,"__esModule",{value:!0});tr.hasClass=Is;tr.isAreaOrProject=HA;tr.isEffort=zA;tr.hasStatus=QA;tr.isAssetArchived=YA;tr.hasEmptyProperties=KA;tr.needsFolderRepair=XA;tr.getTodayDateString=Kd;tr.isPlannedForToday=JA;tr.hasPlannedStartTimestamp=ZA;tr.extractDailyNoteDate=eC;tr.isCurrentDateGteDay=tC;tr.inheritsFromPrototype=x2;tr.isPrototypeClass=nC;var C2=xs(),Os=er();function Is(n,e){return n?(Array.isArray(n)?n:[n]).some(r=>C2.WikiLinkHelpers.normalize(r)===e):!1}o(Is,"hasClass");function HA(n){return Is(n,Os.AssetClass.AREA)||Is(n,Os.AssetClass.PROJECT)}o(HA,"isAreaOrProject");function zA(n){return Is(n,Os.AssetClass.TASK)||Is(n,Os.AssetClass.PROJECT)||Is(n,Os.AssetClass.MEETING)}o(zA,"isEffort");function QA(n,e){if(!n)return!1;let t=Array.isArray(n)?n[0]:n;return t?C2.WikiLinkHelpers.normalize(t)===e:!1}o(QA,"hasStatus");function YA(n){if(n===!0||n===1)return!0;if(typeof n=="string"){let e=n.toLowerCase();return e==="true"||e==="yes"}return!1}o(YA,"isAssetArchived");function KA(n){return!n||Object.keys(n).length===0?!1:Object.values(n).some(e=>!!(e==null||typeof e=="string"&&e.trim()===""||Array.isArray(e)&&e.length===0||typeof e=="object"&&!Array.isArray(e)&&Object.keys(e).length===0))}o(KA,"hasEmptyProperties");function XA(n,e){if(!e)return!1;let t=n.replace(/\/$/,""),r=e.replace(/\/$/,"");return t!==r}o(XA,"needsFolderRepair");function Kd(){let n=new Date,e=n.getFullYear(),t=String(n.getMonth()+1).padStart(2,"0"),r=String(n.getDate()).padStart(2,"0");return`${e}-${t}-${r}`}o(Kd,"getTodayDateString");function JA(n){let e=n.ems__Effort_plannedStartTimestamp;if(!e)return!1;let t=Kd();return typeof e=="string"?e.split("T")[0]===t:Array.isArray(e)&&e.length>0?String(e[0]).split("T")[0]===t:!1}o(JA,"isPlannedForToday");function ZA(n){let e=n.ems__Effort_plannedStartTimestamp;return e?typeof e=="string"?e.trim().length>0:Array.isArray(e)&&e.length>0?String(e[0]).trim().length>0:!1:!1}o(ZA,"hasPlannedStartTimestamp");function eC(n){let e=n.pn__DailyNote_day;if(!e)return null;if(typeof e=="string"){let t=e.match(/\[\[([^\[\]]+)\]\]/);return t?t[1]:e}if(Array.isArray(e)&&e.length>0){let t=String(e[0]),r=t.match(/\[\[([^\[\]]+)\]\]/);return r?r[1]:t}return null}o(eC,"extractDailyNoteDate");function tC(n){return Kd()>=n}o(tC,"isCurrentDateGteDay");function A2(n){return n?n.replace(/^["']|["']$/g,"").replace(/\[\[|\]\]/g,"").trim():""}o(A2,"normalizeWithQuotes");var rC=10;function x2(n,e=rC){let t=n.exo__Class_superClass;if(!t)return!1;let r=new Set,i=[],s=Array.isArray(t)?t:[t];for(let a of s){let c=A2(a);c&&i.push({className:c,depth:0})}for(;i.length>0;){let a=i.shift();if(!a)continue;let{className:c,depth:u}=a;if(u>e)continue;if(c===Os.AssetClass.PROTOTYPE)return!0;if(r.has(c))continue;r.add(c);let l=`${c}__exo__Class_superClass`,f=n[l];if(f){let h=Array.isArray(f)?f:[f];for(let d of h){let p=A2(d);p&&!r.has(p)&&i.push({className:p,depth:u+1})}}}return!1}o(x2,"inheritsFromPrototype");function nC(n,e){return Is(n,Os.AssetClass.CLASS)?x2(e):!1}o(nC,"isPrototypeClass")});var I2=v(tc=>{"use strict";Object.defineProperty(tc,"__esModule",{value:!0});tc.canCreateTask=iC;tc.canCreateRelatedTask=sC;tc.canConvertTaskToProject=aC;var nl=$i(),O2=er();function iC(n){return(0,nl.isAreaOrProject)(n.instanceClass)}o(iC,"canCreateTask");function sC(n){return!(!(0,nl.hasClass)(n.instanceClass,O2.AssetClass.TASK)||(0,nl.isAssetArchived)(n.isArchived))}o(sC,"canCreateRelatedTask");function aC(n){return(0,nl.hasClass)(n.instanceClass,O2.AssetClass.TASK)}o(aC,"canConvertTaskToProject")});var P2=v(Aa=>{"use strict";Object.defineProperty(Aa,"__esModule",{value:!0});Aa.canCreateProject=oC;Aa.canMoveToAnalysis=cC;Aa.canMoveToToDo=uC;Aa.canConvertProjectToTask=lC;var Vi=$i(),Ui=er();function oC(n){return(0,Vi.hasClass)(n.instanceClass,Ui.AssetClass.AREA)||(0,Vi.hasClass)(n.instanceClass,Ui.AssetClass.INITIATIVE)||(0,Vi.hasClass)(n.instanceClass,Ui.AssetClass.PROJECT)}o(oC,"canCreateProject");function cC(n){return(0,Vi.hasClass)(n.instanceClass,Ui.AssetClass.PROJECT)?(0,Vi.hasStatus)(n.currentStatus,Ui.EffortStatus.BACKLOG):!1}o(cC,"canMoveToAnalysis");function uC(n){return(0,Vi.hasClass)(n.instanceClass,Ui.AssetClass.PROJECT)?(0,Vi.hasStatus)(n.currentStatus,Ui.EffortStatus.ANALYSIS):!1}o(uC,"canMoveToToDo");function lC(n){return(0,Vi.hasClass)(n.instanceClass,Ui.AssetClass.PROJECT)}o(lC,"canConvertProjectToTask")});var F2=v(il=>{"use strict";Object.defineProperty(il,"__esModule",{value:!0});il.canCreateChildArea=fC;il.canSetActiveFocus=hC;var D2=$i(),R2=er();function fC(n){return(0,D2.hasClass)(n.instanceClass,R2.AssetClass.AREA)}o(fC,"canCreateChildArea");function hC(n){return(0,D2.hasClass)(n.instanceClass,R2.AssetClass.AREA)}o(hC,"canSetActiveFocus")});var L2=v(xr=>{"use strict";Object.defineProperty(xr,"__esModule",{value:!0});xr.canPlanOnToday=dC;xr.canPlanForEvening=pC;xr.canShiftDayBackward=mC;xr.canShiftDayForward=gC;xr.canSetDraftStatus=yC;xr.canMoveToBacklog=vC;xr.canStartEffort=SC;xr.canMarkDone=_C;xr.canTrashEffort=wC;xr.canVoteOnEffort=bC;xr.canRollbackStatus=EC;xr.canArchiveTask=TC;var N2=xs(),at=$i(),Lr=er();function dC(n){return!(!(0,at.isEffort)(n.instanceClass)||(0,at.isPlannedForToday)(n.metadata))}o(dC,"canPlanOnToday");function pC(n){return!(0,at.hasClass)(n.instanceClass,Lr.AssetClass.TASK)&&!(0,at.hasClass)(n.instanceClass,Lr.AssetClass.MEETING)?!1:(0,at.hasStatus)(n.currentStatus,Lr.EffortStatus.BACKLOG)}o(pC,"canPlanForEvening");function mC(n){return(0,at.isEffort)(n.instanceClass)?(0,at.hasPlannedStartTimestamp)(n.metadata):!1}o(mC,"canShiftDayBackward");function gC(n){return(0,at.isEffort)(n.instanceClass)?(0,at.hasPlannedStartTimestamp)(n.metadata):!1}o(gC,"canShiftDayForward");function yC(n){return(0,at.isEffort)(n.instanceClass)?!n.currentStatus:!1}o(yC,"canSetDraftStatus");function vC(n){return(0,at.isEffort)(n.instanceClass)?(0,at.hasStatus)(n.currentStatus,Lr.EffortStatus.DRAFT):!1}o(vC,"canMoveToBacklog");function SC(n){return(0,at.isEffort)(n.instanceClass)?(0,at.hasClass)(n.instanceClass,Lr.AssetClass.TASK)||(0,at.hasClass)(n.instanceClass,Lr.AssetClass.MEETING)?(0,at.hasStatus)(n.currentStatus,Lr.EffortStatus.BACKLOG):(0,at.hasClass)(n.instanceClass,Lr.AssetClass.PROJECT)?(0,at.hasStatus)(n.currentStatus,Lr.EffortStatus.TODO):!1:!1}o(SC,"canStartEffort");function _C(n){return(0,at.isEffort)(n.instanceClass)?(0,at.hasStatus)(n.currentStatus,Lr.EffortStatus.DOING):!1}o(_C,"canMarkDone");function wC(n){return(0,at.isEffort)(n.instanceClass)?n.currentStatus?!(Array.isArray(n.currentStatus)?n.currentStatus:[n.currentStatus]).some(r=>{let i=N2.WikiLinkHelpers.normalize(r);return i===Lr.EffortStatus.TRASHED||i===Lr.EffortStatus.DONE}):!0:!1}o(wC,"canTrashEffort");function bC(n){return!(!(0,at.isEffort)(n.instanceClass)||(0,at.isAssetArchived)(n.isArchived))}o(bC,"canVoteOnEffort");function EC(n){if(!(0,at.isEffort)(n.instanceClass)||(0,at.isAssetArchived)(n.isArchived)||!n.currentStatus)return!1;let e=Array.isArray(n.currentStatus)?n.currentStatus[0]:n.currentStatus;return!(!e||N2.WikiLinkHelpers.normalize(e)===Lr.EffortStatus.TRASHED)}o(EC,"canRollbackStatus");function TC(n){return!(0,at.isAssetArchived)(n.isArchived)}o(TC,"canArchiveTask")});var k2=v(sn=>{"use strict";Object.defineProperty(sn,"__esModule",{value:!0});sn.canCreateEvent=AC;sn.canCreateInstance=CC;sn.canCleanProperties=xC;sn.canRepairFolder=OC;sn.canRenameToUid=IC;sn.canCopyLabelToAliases=PC;sn.canCreateNarrowerConcept=DC;sn.canCreateSubclass=RC;sn.canCreateTaskForDailyNote=FC;var kr=$i(),Ps=er();function AC(n){return(0,kr.isAreaOrProject)(n.instanceClass)}o(AC,"canCreateEvent");function CC(n){return(0,kr.hasClass)(n.instanceClass,Ps.AssetClass.TASK_PROTOTYPE)||(0,kr.hasClass)(n.instanceClass,Ps.AssetClass.MEETING_PROTOTYPE)||(0,kr.hasClass)(n.instanceClass,Ps.AssetClass.EVENT_PROTOTYPE)||(0,kr.hasClass)(n.instanceClass,Ps.AssetClass.PROJECT_PROTOTYPE)?!0:(0,kr.isPrototypeClass)(n.instanceClass,n.metadata)}o(CC,"canCreateInstance");function xC(n){return(0,kr.hasEmptyProperties)(n.metadata)}o(xC,"canCleanProperties");function OC(n){return(0,kr.needsFolderRepair)(n.currentFolder,n.expectedFolder)}o(OC,"canRepairFolder");function IC(n,e){let t=n.metadata.exo__Asset_uid;return t?e!==t:!1}o(IC,"canRenameToUid");function PC(n){let e=n.metadata.exo__Asset_label;if(!e||typeof e!="string"||e.trim()==="")return!1;let t=e.trim(),r=n.metadata.aliases;return!r||!Array.isArray(r)||r.length===0?!0:!r.some(i=>typeof i!="string"?!1:i.trim()===t)}o(PC,"canCopyLabelToAliases");function DC(n){return(0,kr.hasClass)(n.instanceClass,Ps.AssetClass.CONCEPT)}o(DC,"canCreateNarrowerConcept");function RC(n){return(0,kr.hasClass)(n.instanceClass,Ps.AssetClass.CLASS)}o(RC,"canCreateSubclass");function FC(n){if(!(0,kr.hasClass)(n.instanceClass,Ps.AssetClass.DAILY_NOTE)||n.isArchived)return!1;let e=(0,kr.extractDailyNoteDate)(n.metadata);return e?(0,kr.isCurrentDateGteDay)(e):!1}o(FC,"canCreateTaskForDailyNote")});var j2=v(N=>{"use strict";Object.defineProperty(N,"__esModule",{value:!0});N.canCreateTaskForDailyNote=N.canCreateSubclass=N.canCreateNarrowerConcept=N.canCopyLabelToAliases=N.canRenameToUid=N.canRepairFolder=N.canCleanProperties=N.canCreateInstance=N.canCreateEvent=N.canArchiveTask=N.canRollbackStatus=N.canVoteOnEffort=N.canTrashEffort=N.canMarkDone=N.canStartEffort=N.canMoveToBacklog=N.canSetDraftStatus=N.canShiftDayForward=N.canShiftDayBackward=N.canPlanForEvening=N.canPlanOnToday=N.canSetActiveFocus=N.canCreateChildArea=N.canConvertProjectToTask=N.canMoveToToDo=N.canMoveToAnalysis=N.canCreateProject=N.canConvertTaskToProject=N.canCreateRelatedTask=N.canCreateTask=N.isPrototypeClass=N.inheritsFromPrototype=N.isCurrentDateGteDay=N.extractDailyNoteDate=N.hasPlannedStartTimestamp=N.isPlannedForToday=N.getTodayDateString=N.needsFolderRepair=N.hasEmptyProperties=N.isAssetArchived=N.hasStatus=N.isEffort=N.isAreaOrProject=N.hasClass=void 0;var Or=$i();Object.defineProperty(N,"hasClass",{enumerable:!0,get:o(function(){return Or.hasClass},"get")});Object.defineProperty(N,"isAreaOrProject",{enumerable:!0,get:o(function(){return Or.isAreaOrProject},"get")});Object.defineProperty(N,"isEffort",{enumerable:!0,get:o(function(){return Or.isEffort},"get")});Object.defineProperty(N,"hasStatus",{enumerable:!0,get:o(function(){return Or.hasStatus},"get")});Object.defineProperty(N,"isAssetArchived",{enumerable:!0,get:o(function(){return Or.isAssetArchived},"get")});Object.defineProperty(N,"hasEmptyProperties",{enumerable:!0,get:o(function(){return Or.hasEmptyProperties},"get")});Object.defineProperty(N,"needsFolderRepair",{enumerable:!0,get:o(function(){return Or.needsFolderRepair},"get")});Object.defineProperty(N,"getTodayDateString",{enumerable:!0,get:o(function(){return Or.getTodayDateString},"get")});Object.defineProperty(N,"isPlannedForToday",{enumerable:!0,get:o(function(){return Or.isPlannedForToday},"get")});Object.defineProperty(N,"hasPlannedStartTimestamp",{enumerable:!0,get:o(function(){return Or.hasPlannedStartTimestamp},"get")});Object.defineProperty(N,"extractDailyNoteDate",{enumerable:!0,get:o(function(){return Or.extractDailyNoteDate},"get")});Object.defineProperty(N,"isCurrentDateGteDay",{enumerable:!0,get:o(function(){return Or.isCurrentDateGteDay},"get")});Object.defineProperty(N,"inheritsFromPrototype",{enumerable:!0,get:o(function(){return Or.inheritsFromPrototype},"get")});Object.defineProperty(N,"isPrototypeClass",{enumerable:!0,get:o(function(){return Or.isPrototypeClass},"get")});var Xd=I2();Object.defineProperty(N,"canCreateTask",{enumerable:!0,get:o(function(){return Xd.canCreateTask},"get")});Object.defineProperty(N,"canCreateRelatedTask",{enumerable:!0,get:o(function(){return Xd.canCreateRelatedTask},"get")});Object.defineProperty(N,"canConvertTaskToProject",{enumerable:!0,get:o(function(){return Xd.canConvertTaskToProject},"get")});var sl=P2();Object.defineProperty(N,"canCreateProject",{enumerable:!0,get:o(function(){return sl.canCreateProject},"get")});Object.defineProperty(N,"canMoveToAnalysis",{enumerable:!0,get:o(function(){return sl.canMoveToAnalysis},"get")});Object.defineProperty(N,"canMoveToToDo",{enumerable:!0,get:o(function(){return sl.canMoveToToDo},"get")});Object.defineProperty(N,"canConvertProjectToTask",{enumerable:!0,get:o(function(){return sl.canConvertProjectToTask},"get")});var M2=F2();Object.defineProperty(N,"canCreateChildArea",{enumerable:!0,get:o(function(){return M2.canCreateChildArea},"get")});Object.defineProperty(N,"canSetActiveFocus",{enumerable:!0,get:o(function(){return M2.canSetActiveFocus},"get")});var Hr=L2();Object.defineProperty(N,"canPlanOnToday",{enumerable:!0,get:o(function(){return Hr.canPlanOnToday},"get")});Object.defineProperty(N,"canPlanForEvening",{enumerable:!0,get:o(function(){return Hr.canPlanForEvening},"get")});Object.defineProperty(N,"canShiftDayBackward",{enumerable:!0,get:o(function(){return Hr.canShiftDayBackward},"get")});Object.defineProperty(N,"canShiftDayForward",{enumerable:!0,get:o(function(){return Hr.canShiftDayForward},"get")});Object.defineProperty(N,"canSetDraftStatus",{enumerable:!0,get:o(function(){return Hr.canSetDraftStatus},"get")});Object.defineProperty(N,"canMoveToBacklog",{enumerable:!0,get:o(function(){return Hr.canMoveToBacklog},"get")});Object.defineProperty(N,"canStartEffort",{enumerable:!0,get:o(function(){return Hr.canStartEffort},"get")});Object.defineProperty(N,"canMarkDone",{enumerable:!0,get:o(function(){return Hr.canMarkDone},"get")});Object.defineProperty(N,"canTrashEffort",{enumerable:!0,get:o(function(){return Hr.canTrashEffort},"get")});Object.defineProperty(N,"canVoteOnEffort",{enumerable:!0,get:o(function(){return Hr.canVoteOnEffort},"get")});Object.defineProperty(N,"canRollbackStatus",{enumerable:!0,get:o(function(){return Hr.canRollbackStatus},"get")});Object.defineProperty(N,"canArchiveTask",{enumerable:!0,get:o(function(){return Hr.canArchiveTask},"get")});var _i=k2();Object.defineProperty(N,"canCreateEvent",{enumerable:!0,get:o(function(){return _i.canCreateEvent},"get")});Object.defineProperty(N,"canCreateInstance",{enumerable:!0,get:o(function(){return _i.canCreateInstance},"get")});Object.defineProperty(N,"canCleanProperties",{enumerable:!0,get:o(function(){return _i.canCleanProperties},"get")});Object.defineProperty(N,"canRepairFolder",{enumerable:!0,get:o(function(){return _i.canRepairFolder},"get")});Object.defineProperty(N,"canRenameToUid",{enumerable:!0,get:o(function(){return _i.canRenameToUid},"get")});Object.defineProperty(N,"canCopyLabelToAliases",{enumerable:!0,get:o(function(){return _i.canCopyLabelToAliases},"get")});Object.defineProperty(N,"canCreateNarrowerConcept",{enumerable:!0,get:o(function(){return _i.canCreateNarrowerConcept},"get")});Object.defineProperty(N,"canCreateSubclass",{enumerable:!0,get:o(function(){return _i.canCreateSubclass},"get")});Object.defineProperty(N,"canCreateTaskForDailyNote",{enumerable:!0,get:o(function(){return _i.canCreateTaskForDailyNote},"get")})});var $2=v(Ds=>{"use strict";var NC=Ds&&Ds.__createBinding||(Object.create?(function(n,e,t,r){r===void 0&&(r=t);var i=Object.getOwnPropertyDescriptor(e,t);(!i||("get"in i?!e.__esModule:i.writable||i.configurable))&&(i={enumerable:!0,get:o(function(){return e[t]},"get")}),Object.defineProperty(n,r,i)}):(function(n,e,t,r){r===void 0&&(r=t),n[r]=e[t]})),LC=Ds&&Ds.__exportStar||function(n,e){for(var t in n)t!=="default"&&!Object.prototype.hasOwnProperty.call(e,t)&&NC(e,n,t)};Object.defineProperty(Ds,"__esModule",{value:!0});LC(j2(),Ds)});var Zd=v(rc=>{"use strict";Object.defineProperty(rc,"__esModule",{value:!0});rc.PropertyFieldType=void 0;rc.rangeToFieldType=jC;var Bt;(function(n){n.Text="text",n.Number="number",n.Date="date",n.DateTime="datetime",n.Boolean="boolean",n.Reference="reference",n.Enum="enum",n.StatusSelect="status-select",n.SizeSelect="size-select",n.Wikilink="wikilink",n.Timestamp="timestamp",n.Unknown="unknown"})(Bt||(rc.PropertyFieldType=Bt={}));var V2="http://www.w3.org/2001/XMLSchema#",kC="https://exocortex.my/ontology/exo#",MC="https://exocortex.my/ontology/ems#";function jC(n){if(!n)return Bt.Unknown;let e=n.trim();if(!e)return Bt.Unknown;if(e.startsWith(V2)){let t=e.substring(V2.length);return Jd(t)}if(e.startsWith("xsd:")){let t=e.substring(4);return Jd(t)}if(e.includes("XMLSchema#")){let t=e.indexOf("XMLSchema#"),r=e.substring(t+10);return Jd(r)}return e.startsWith(MC)||e.startsWith("ems:")?$C(e):e.startsWith(kC)||e.startsWith("exo:")||VC(e)?Bt.Reference:Bt.Text}o(jC,"rangeToFieldType");function Jd(n){switch(n.toLowerCase()){case"string":case"normalizedstring":case"token":case"language":case"nmtoken":case"name":case"ncname":case"anyuri":return Bt.Text;case"integer":case"int":case"long":case"short":case"byte":case"nonnegativeinteger":case"positiveinteger":case"nonpositiveinteger":case"negativeinteger":case"unsignedlong":case"unsignedint":case"unsignedshort":case"unsignedbyte":case"decimal":case"float":case"double":return Bt.Number;case"date":return Bt.Date;case"datetime":case"datetimestamp":return Bt.DateTime;case"boolean":return Bt.Boolean;case"time":return Bt.Timestamp;default:return Bt.Text}}o(Jd,"xsdTypeToFieldType");function $C(n){let e=n.toLowerCase();return e.includes("effortstatus")?Bt.StatusSelect:e.includes("tasksize")?Bt.SizeSelect:Bt.Reference}o($C,"emsTypeToFieldType");function VC(n){let e=n.toLowerCase();return e.includes("exocortex.my/ontology")?!0:["asset","task","project","area","effort","class","property","concept"].some(r=>e.includes(r))}o(VC,"isClassReference")});var B2=v(nc=>{"use strict";Object.defineProperty(nc,"__esModule",{value:!0});nc.propertyNameToUri=UC;nc.uriToPropertyName=U2;nc.extractPropertyLabel=BC;function UC(n){return n.replace(/^([a-z]+)__/,"$1:")}o(UC,"propertyNameToUri");function U2(n){if(n.startsWith("http://")||n.startsWith("https://")){let e=n.match(/\/([a-z]+)#([A-Za-z0-9_]+)$/);if(e)return`${e[1]}__${e[2]}`;let t=n.lastIndexOf("#"),r=n.lastIndexOf("/"),i=Math.max(t,r);return i>=0?n.substring(i+1):n}return n.replace(/^([a-z]+):/,"$1__")}o(U2,"uriToPropertyName");function BC(n){let r=(n.includes(":")?U2(n):n).replace(/^[a-z]+__/,"").split("_");return(r.length>1?r.slice(1).join(" "):r[0]).replace(/([a-z])([A-Z])/g,"$1 $2").replace(/^./,s=>s.toUpperCase())}o(BC,"extractPropertyLabel")});var al={};cA(al,{__assign:()=>tp,__asyncDelegator:()=>tx,__asyncGenerator:()=>ex,__asyncValues:()=>rx,__await:()=>ic,__awaiter:()=>QC,__classPrivateFieldGet:()=>ax,__classPrivateFieldSet:()=>ox,__createBinding:()=>KC,__decorate:()=>WC,__exportStar:()=>XC,__extends:()=>qC,__generator:()=>YC,__importDefault:()=>sx,__importStar:()=>ix,__makeTemplateObject:()=>nx,__metadata:()=>zC,__param:()=>HC,__read:()=>q2,__rest:()=>GC,__spread:()=>JC,__spreadArrays:()=>ZC,__values:()=>rp});function qC(n,e){ep(n,e);function t(){this.constructor=n}o(t,"__"),n.prototype=e===null?Object.create(e):(t.prototype=e.prototype,new t)}function GC(n,e){var t={};for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&e.indexOf(r)<0&&(t[r]=n[r]);if(n!=null&&typeof Object.getOwnPropertySymbols=="function")for(var i=0,r=Object.getOwnPropertySymbols(n);i<r.length;i++)e.indexOf(r[i])<0&&Object.prototype.propertyIsEnumerable.call(n,r[i])&&(t[r[i]]=n[r[i]]);return t}function WC(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s}function HC(n,e){return function(t,r){e(t,r,n)}}function zC(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)}function QC(n,e,t,r){function i(s){return s instanceof t?s:new t(function(a){a(s)})}return o(i,"adopt"),new(t||(t=Promise))(function(s,a){function c(f){try{l(r.next(f))}catch(h){a(h)}}o(c,"fulfilled");function u(f){try{l(r.throw(f))}catch(h){a(h)}}o(u,"rejected");function l(f){f.done?s(f.value):i(f.value).then(c,u)}o(l,"step"),l((r=r.apply(n,e||[])).next())})}function YC(n,e){var t={label:0,sent:o(function(){if(s[0]&1)throw s[1];return s[1]},"sent"),trys:[],ops:[]},r,i,s,a;return a={next:c(0),throw:c(1),return:c(2)},typeof Symbol=="function"&&(a[Symbol.iterator]=function(){return this}),a;function c(l){return function(f){return u([l,f])}}function u(l){if(r)throw new TypeError("Generator is already executing.");for(;t;)try{if(r=1,i&&(s=l[0]&2?i.return:l[0]?i.throw||((s=i.return)&&s.call(i),0):i.next)&&!(s=s.call(i,l[1])).done)return s;switch(i=0,s&&(l=[l[0]&2,s.value]),l[0]){case 0:case 1:s=l;break;case 4:return t.label++,{value:l[1],done:!1};case 5:t.label++,i=l[1],l=[0];continue;case 7:l=t.ops.pop(),t.trys.pop();continue;default:if(s=t.trys,!(s=s.length>0&&s[s.length-1])&&(l[0]===6||l[0]===2)){t=0;continue}if(l[0]===3&&(!s||l[1]>s[0]&&l[1]<s[3])){t.label=l[1];break}if(l[0]===6&&t.label<s[1]){t.label=s[1],s=l;break}if(s&&t.label<s[2]){t.label=s[2],t.ops.push(l);break}s[2]&&t.ops.pop(),t.trys.pop();continue}l=e.call(n,t)}catch(f){l=[6,f],i=0}finally{r=s=0}if(l[0]&5)throw l[1];return{value:l[0]?l[1]:void 0,done:!0}}}function KC(n,e,t,r){r===void 0&&(r=t),n[r]=e[t]}function XC(n,e){for(var t in n)t!=="default"&&!e.hasOwnProperty(t)&&(e[t]=n[t])}function rp(n){var e=typeof Symbol=="function"&&Symbol.iterator,t=e&&n[e],r=0;if(t)return t.call(n);if(n&&typeof n.length=="number")return{next:o(function(){return n&&r>=n.length&&(n=void 0),{value:n&&n[r++],done:!n}},"next")};throw new TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")}function q2(n,e){var t=typeof Symbol=="function"&&n[Symbol.iterator];if(!t)return n;var r=t.call(n),i,s=[],a;try{for(;(e===void 0||e-- >0)&&!(i=r.next()).done;)s.push(i.value)}catch(c){a={error:c}}finally{try{i&&!i.done&&(t=r.return)&&t.call(r)}finally{if(a)throw a.error}}return s}function JC(){for(var n=[],e=0;e<arguments.length;e++)n=n.concat(q2(arguments[e]));return n}function ZC(){for(var n=0,e=0,t=arguments.length;e<t;e++)n+=arguments[e].length;for(var r=Array(n),i=0,e=0;e<t;e++)for(var s=arguments[e],a=0,c=s.length;a<c;a++,i++)r[i]=s[a];return r}function ic(n){return this instanceof ic?(this.v=n,this):new ic(n)}function ex(n,e,t){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var r=t.apply(n,e||[]),i,s=[];return i={},a("next"),a("throw"),a("return"),i[Symbol.asyncIterator]=function(){return this},i;function a(d){r[d]&&(i[d]=function(p){return new Promise(function(S,w){s.push([d,p,S,w])>1||c(d,p)})})}function c(d,p){try{u(r[d](p))}catch(S){h(s[0][3],S)}}function u(d){d.value instanceof ic?Promise.resolve(d.value.v).then(l,f):h(s[0][2],d)}function l(d){c("next",d)}function f(d){c("throw",d)}function h(d,p){d(p),s.shift(),s.length&&c(s[0][0],s[0][1])}}function tx(n){var e,t;return e={},r("next"),r("throw",function(i){throw i}),r("return"),e[Symbol.iterator]=function(){return this},e;function r(i,s){e[i]=n[i]?function(a){return(t=!t)?{value:ic(n[i](a)),done:i==="return"}:s?s(a):a}:s}}function rx(n){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var e=n[Symbol.asyncIterator],t;return e?e.call(n):(n=typeof rp=="function"?rp(n):n[Symbol.iterator](),t={},r("next"),r("throw"),r("return"),t[Symbol.asyncIterator]=function(){return this},t);function r(s){t[s]=n[s]&&function(a){return new Promise(function(c,u){a=n[s](a),i(c,u,a.done,a.value)})}}function i(s,a,c,u){Promise.resolve(u).then(function(l){s({value:l,done:c})},a)}}function nx(n,e){return Object.defineProperty?Object.defineProperty(n,"raw",{value:e}):n.raw=e,n}function ix(n){if(n&&n.__esModule)return n;var e={};if(n!=null)for(var t in n)Object.hasOwnProperty.call(n,t)&&(e[t]=n[t]);return e.default=n,e}function sx(n){return n&&n.__esModule?n:{default:n}}function ax(n,e){if(!e.has(n))throw new TypeError("attempted to get private field on non-instance");return e.get(n)}function ox(n,e,t){if(!e.has(n))throw new TypeError("attempted to set private field on non-instance");return e.set(n,t),t}var ep,tp,ol=oA(()=>{ep=o(function(n,e){return ep=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,r){t.__proto__=r}||function(t,r){for(var i in r)r.hasOwnProperty(i)&&(t[i]=r[i])},ep(n,e)},"extendStatics");o(qC,"__extends");tp=o(function(){return tp=Object.assign||o(function(e){for(var t,r=1,i=arguments.length;r<i;r++){t=arguments[r];for(var s in t)Object.prototype.hasOwnProperty.call(t,s)&&(e[s]=t[s])}return e},"__assign"),tp.apply(this,arguments)},"__assign");o(GC,"__rest");o(WC,"__decorate");o(HC,"__param");o(zC,"__metadata");o(QC,"__awaiter");o(YC,"__generator");o(KC,"__createBinding");o(XC,"__exportStar");o(rp,"__values");o(q2,"__read");o(JC,"__spread");o(ZC,"__spreadArrays");o(ic,"__await");o(ex,"__asyncGenerator");o(tx,"__asyncDelegator");o(rx,"__asyncValues");o(nx,"__makeTemplateObject");o(ix,"__importStar");o(sx,"__importDefault");o(ax,"__classPrivateFieldGet");o(ox,"__classPrivateFieldSet")});var sp=v(ip=>{"use strict";Object.defineProperty(ip,"__esModule",{value:!0});var np;(function(n){n[n.Transient=0]="Transient",n[n.Singleton=1]="Singleton",n[n.ResolutionScoped=2]="ResolutionScoped",n[n.ContainerScoped=3]="ContainerScoped"})(np||(np={}));ip.default=np});var G2=v(ap=>{"use strict";Object.defineProperty(ap,"__esModule",{value:!0});var cx=sp();Object.defineProperty(ap,"Lifecycle",{enumerable:!0,get:o(function(){return cx.default},"get")})});var Rs=v(an=>{"use strict";Object.defineProperty(an,"__esModule",{value:!0});an.defineInjectionTokenMetadata=an.getParamInfo=an.INJECTION_TOKEN_METADATA_KEY=void 0;an.INJECTION_TOKEN_METADATA_KEY="injectionTokens";function ux(n){let e=Reflect.getMetadata("design:paramtypes",n)||[],t=Reflect.getOwnMetadata(an.INJECTION_TOKEN_METADATA_KEY,n)||{};return Object.keys(t).forEach(r=>{e[+r]=t[r]}),e}o(ux,"getParamInfo");an.getParamInfo=ux;function lx(n,e){return function(t,r,i){let s=Reflect.getOwnMetadata(an.INJECTION_TOKEN_METADATA_KEY,t)||{};s[i]=e?{token:n,transform:e.transformToken,transformArgs:e.args||[]}:n,Reflect.defineMetadata(an.INJECTION_TOKEN_METADATA_KEY,s,t)}}o(lx,"defineInjectionTokenMetadata");an.defineInjectionTokenMetadata=lx});var op=v(cl=>{"use strict";Object.defineProperty(cl,"__esModule",{value:!0});cl.isClassProvider=void 0;function fx(n){return!!n.useClass}o(fx,"isClassProvider");cl.isClassProvider=fx});var cp=v(ul=>{"use strict";Object.defineProperty(ul,"__esModule",{value:!0});ul.isFactoryProvider=void 0;function hx(n){return!!n.useFactory}o(hx,"isFactoryProvider");ul.isFactoryProvider=hx});var fl=v(Ca=>{"use strict";Object.defineProperty(Ca,"__esModule",{value:!0});Ca.delay=Ca.DelayedConstructor=void 0;var ll=class{static{o(this,"DelayedConstructor")}constructor(e){this.wrap=e,this.reflectMethods=["get","getPrototypeOf","setPrototypeOf","getOwnPropertyDescriptor","defineProperty","has","set","deleteProperty","apply","construct","ownKeys"]}createProxy(e){let t={},r=!1,i,s=o(()=>(r||(i=e(this.wrap()),r=!0),i),"delayedObject");return new Proxy(t,this.createHandler(s))}createHandler(e){let t={},r=o(i=>{t[i]=(...s)=>{s[0]=e();let a=Reflect[i];return a(...s)}},"install");return this.reflectMethods.forEach(r),t}};Ca.DelayedConstructor=ll;function dx(n){if(typeof n>"u")throw new Error("Attempt to `delay` undefined. Constructor must be wrapped in a callback");return new ll(n)}o(dx,"delay");Ca.delay=dx});var hl=v(zn=>{"use strict";Object.defineProperty(zn,"__esModule",{value:!0});zn.isConstructorToken=zn.isTransformDescriptor=zn.isTokenDescriptor=zn.isNormalToken=void 0;var px=fl();function mx(n){return typeof n=="string"||typeof n=="symbol"}o(mx,"isNormalToken");zn.isNormalToken=mx;function gx(n){return typeof n=="object"&&"token"in n&&"multiple"in n}o(gx,"isTokenDescriptor");zn.isTokenDescriptor=gx;function yx(n){return typeof n=="object"&&"token"in n&&"transform"in n}o(yx,"isTransformDescriptor");zn.isTransformDescriptor=yx;function vx(n){return typeof n=="function"||n instanceof px.DelayedConstructor}o(vx,"isConstructorToken");zn.isConstructorToken=vx});var up=v(dl=>{"use strict";Object.defineProperty(dl,"__esModule",{value:!0});dl.isTokenProvider=void 0;function Sx(n){return!!n.useToken}o(Sx,"isTokenProvider");dl.isTokenProvider=Sx});var lp=v(pl=>{"use strict";Object.defineProperty(pl,"__esModule",{value:!0});pl.isValueProvider=void 0;function _x(n){return n.useValue!=null}o(_x,"isValueProvider");pl.isValueProvider=_x});var fp=v(Fs=>{"use strict";Object.defineProperty(Fs,"__esModule",{value:!0});var wx=op();Object.defineProperty(Fs,"isClassProvider",{enumerable:!0,get:o(function(){return wx.isClassProvider},"get")});var bx=cp();Object.defineProperty(Fs,"isFactoryProvider",{enumerable:!0,get:o(function(){return bx.isFactoryProvider},"get")});var Ex=hl();Object.defineProperty(Fs,"isNormalToken",{enumerable:!0,get:o(function(){return Ex.isNormalToken},"get")});var Tx=up();Object.defineProperty(Fs,"isTokenProvider",{enumerable:!0,get:o(function(){return Tx.isTokenProvider},"get")});var Ax=lp();Object.defineProperty(Fs,"isValueProvider",{enumerable:!0,get:o(function(){return Ax.isValueProvider},"get")})});var W2=v(ml=>{"use strict";Object.defineProperty(ml,"__esModule",{value:!0});ml.isProvider=void 0;var Cx=op(),xx=lp(),Ox=up(),Ix=cp();function Px(n){return Cx.isClassProvider(n)||xx.isValueProvider(n)||Ox.isTokenProvider(n)||Ix.isFactoryProvider(n)}o(Px,"isProvider");ml.isProvider=Px});var pp=v(dp=>{"use strict";Object.defineProperty(dp,"__esModule",{value:!0});var hp=class{static{o(this,"RegistryBase")}constructor(){this._registryMap=new Map}entries(){return this._registryMap.entries()}getAll(e){return this.ensure(e),this._registryMap.get(e)}get(e){this.ensure(e);let t=this._registryMap.get(e);return t[t.length-1]||null}set(e,t){this.ensure(e),this._registryMap.get(e).push(t)}setAll(e,t){this._registryMap.set(e,t)}has(e){return this.ensure(e),this._registryMap.get(e).length>0}clear(){this._registryMap.clear()}ensure(e){this._registryMap.has(e)||this._registryMap.set(e,[])}};dp.default=hp});var H2=v(gp=>{"use strict";Object.defineProperty(gp,"__esModule",{value:!0});var Dx=pp(),mp=class extends Dx.default{static{o(this,"Registry")}};gp.default=mp});var z2=v(vp=>{"use strict";Object.defineProperty(vp,"__esModule",{value:!0});var yp=class{static{o(this,"ResolutionContext")}constructor(){this.scopedResolutions=new Map}};vp.default=yp});var Sp=v(gl=>{"use strict";Object.defineProperty(gl,"__esModule",{value:!0});gl.formatErrorCtor=void 0;function Rx(n,e){return n===null?`at position #${e}`:`"${n.split(",")[e].trim()}" at position #${e}`}o(Rx,"formatDependency");function Fx(n,e,t=" "){return[n,...e.message.split(`
31
+ `)}),this}_outputHelpIfRequested(e){let t=this._getHelpOption();t&&e.find(i=>t.is(i))&&(this.outputHelp(),this._exit(0,"commander.helpDisplayed","(outputHelp)"))}};function u2(n){return n.map(e=>{if(!e.startsWith("--inspect"))return e;let t,r="127.0.0.1",i="9229",s;return(s=e.match(/^(--inspect(-brk)?)$/))!==null?t=s[1]:(s=e.match(/^(--inspect(-brk|-port)?)=([^:]+)$/))!==null?(t=s[1],/^\d+$/.test(s[3])?i=s[3]:r=s[3]):(s=e.match(/^(--inspect(-brk|-port)?)=([^:]+):(\d+)$/))!==null&&(t=s[1],r=s[3],i=s[4]),t&&i!=="0"?`${t}=${r}:${parseInt(i)+1}`:e})}o(u2,"incrementNodeInspectorPort");function Nd(){if(ze.env.NO_COLOR||ze.env.FORCE_COLOR==="0"||ze.env.FORCE_COLOR==="false")return!1;if(ze.env.FORCE_COLOR||ze.env.CLICOLOR_FORCE!==void 0)return!0}o(Nd,"useColor");Ld.Command=Fd;Ld.useColor=Nd});var p2=v(qr=>{var{Argument:f2}=Uu(),{Command:kd}=l2(),{CommanderError:bA,InvalidArgumentError:h2}=Jo(),{Help:EA}=Cd(),{Option:d2}=Pd();qr.program=new kd;qr.createCommand=n=>new kd(n);qr.createOption=(n,e)=>new d2(n,e);qr.createArgument=(n,e)=>new f2(n,e);qr.Command=kd;qr.Option=d2;qr.Argument=f2;qr.Help=EA;qr.CommanderError=bA;qr.InvalidArgumentError=h2;qr.InvalidOptionArgumentError=h2});var Md=v(qu=>{"use strict";Object.defineProperty(qu,"__esModule",{value:!0});qu.AssetClass=void 0;var g2;(function(n){n.AREA="ems__Area",n.TASK="ems__Task",n.PROJECT="ems__Project",n.MEETING="ems__Meeting",n.INITIATIVE="ems__Initiative",n.TASK_PROTOTYPE="ems__TaskPrototype",n.MEETING_PROTOTYPE="ems__MeetingPrototype",n.EVENT_PROTOTYPE="exo__EventPrototype",n.PROJECT_PROTOTYPE="ems__ProjectPrototype",n.EVENT="exo__Event",n.DAILY_NOTE="pn__DailyNote",n.CONCEPT="ims__Concept",n.SESSION_START_EVENT="ems__SessionStartEvent",n.SESSION_END_EVENT="ems__SessionEndEvent",n.PROTOTYPE="exo__Prototype",n.CLASS="exo__Class"})(g2||(qu.AssetClass=g2={}))});var jd=v(Gu=>{"use strict";Object.defineProperty(Gu,"__esModule",{value:!0});Gu.EffortStatus=void 0;var y2;(function(n){n.DRAFT="ems__EffortStatusDraft",n.BACKLOG="ems__EffortStatusBacklog",n.ANALYSIS="ems__EffortStatusAnalysis",n.TODO="ems__EffortStatusToDo",n.DOING="ems__EffortStatusDoing",n.DONE="ems__EffortStatusDone",n.TRASHED="ems__EffortStatusTrashed"})(y2||(Gu.EffortStatus=y2={}))});var v2=v(Wu=>{"use strict";Object.defineProperty(Wu,"__esModule",{value:!0});Wu.hasPosition=TA;Wu.isFixed=AA;function TA(n){return typeof n.x=="number"&&typeof n.y=="number"}o(TA,"hasPosition");function AA(n){return n.fx!==null&&n.fx!==void 0&&n.fy!==null&&n.fy!==void 0}o(AA,"isFixed")});var S2=v(Hu=>{"use strict";Object.defineProperty(Hu,"__esModule",{value:!0});Hu.createEmptyGraphData=CA;Hu.mergeGraphData=xA;function CA(){return{nodes:[],edges:[],lastUpdated:Date.now(),version:0}}o(CA,"createEmptyGraphData");function xA(n,e){let t=new Map,r=new Set,i=[];for(let s of n.nodes)t.set(s.id,s);for(let s of e.nodes)t.set(s.id,s);for(let s of n.edges){let a=`${s.source}->${s.target}:${s.type}`;r.has(a)||(r.add(a),i.push(s))}for(let s of e.edges){let a=`${s.source}->${s.target}:${s.type}`;r.has(a)||(r.add(a),i.push(s))}return{nodes:Array.from(t.values()),edges:i,lastUpdated:Date.now(),version:Math.max(n.version??0,e.version??0)+1}}o(xA,"mergeGraphData")});var $d=v(zu=>{"use strict";Object.defineProperty(zu,"__esModule",{value:!0});zu.createEdgeId=OA;zu.edgesEqual=IA;function OA(n,e,t,r){let i=r?`|${r}`:"";return`${n}->${e}:${t}${i}`}o(OA,"createEdgeId");function IA(n,e){return n.source===e.source&&n.target===e.target&&n.type===e.type&&n.predicate===e.predicate}o(IA,"edgesEqual")});var Vd=v(mt=>{"use strict";Object.defineProperty(mt,"__esModule",{value:!0});mt.BUILT_IN_EDGE_STYLES=mt.BUILT_IN_NODE_STYLES=mt.DEFAULT_EDGE_STYLE=mt.DEFAULT_NODE_STYLE=mt.RDF_TYPE_PREDICATES=void 0;mt.mergeNodeStyles=PA;mt.mergeEdgeStyles=DA;mt.extractLocalName=RA;mt.isClassType=FA;mt.isTypePredicate=NA;mt.isSubClassPredicate=LA;mt.RDF_TYPE_PREDICATES={RDF_TYPE:"http://www.w3.org/1999/02/22-rdf-syntax-ns#type",RDFS_CLASS:"http://www.w3.org/2000/01/rdf-schema#Class",OWL_CLASS:"http://www.w3.org/2002/07/owl#Class",RDFS_SUBCLASS_OF:"http://www.w3.org/2000/01/rdf-schema#subClassOf",OWL_EQUIVALENT_CLASS:"http://www.w3.org/2002/07/owl#equivalentClass",RDFS_LABEL:"http://www.w3.org/2000/01/rdf-schema#label",RDFS_COMMENT:"http://www.w3.org/2000/01/rdf-schema#comment"};mt.DEFAULT_NODE_STYLE={color:"#6366f1",borderColor:"#4f46e5",borderWidth:2,size:30,shape:"circle",icon:"",opacity:1,shadow:!1,animation:"none"};mt.DEFAULT_EDGE_STYLE={color:"#9ca3af",width:1,lineStyle:"solid",arrow:"standard",curvature:0,opacity:.6,showLabel:!1,labelPosition:.5};mt.BUILT_IN_NODE_STYLES={"http://www.w3.org/2000/01/rdf-schema#Class":{color:"#f59e0b",shape:"diamond",size:40},"http://www.w3.org/2002/07/owl#Class":{color:"#f59e0b",shape:"diamond",size:40},ems__Task:{color:"#22c55e",shape:"circle"},ems__Project:{color:"#3b82f6",shape:"square"},ems__Area:{color:"#8b5cf6",shape:"hexagon",size:40},ems__Meeting:{color:"#ec4899",shape:"circle"},exo__Class:{color:"#f59e0b",shape:"diamond"},ims__Person:{color:"#06b6d4",shape:"circle"}};mt.BUILT_IN_EDGE_STYLES={"http://www.w3.org/1999/02/22-rdf-syntax-ns#type":{color:"#f59e0b",lineStyle:"dashed",arrow:"standard"},"http://www.w3.org/2000/01/rdf-schema#subClassOf":{color:"#8b5cf6",width:2,arrow:"triangle"},"https://exocortex.my/ontology/ems#Effort_parent":{color:"#6366f1",width:2,arrow:"standard"},"https://exocortex.my/ontology/exo#Asset_prototype":{color:"#f59e0b",lineStyle:"dashed",arrow:"circle"},"https://exocortex.my/ontology/exo#references":{color:"#22c55e",opacity:.4,arrow:"standard"}};function PA(n,e){return{...n,...Object.fromEntries(Object.entries(e).filter(([,t])=>t!==void 0))}}o(PA,"mergeNodeStyles");function DA(n,e){return{...n,...Object.fromEntries(Object.entries(e).filter(([,t])=>t!==void 0))}}o(DA,"mergeEdgeStyles");function RA(n){let e=n.lastIndexOf("#"),t=n.lastIndexOf("/"),r=Math.max(e,t);return r>=0?n.substring(r+1):n}o(RA,"extractLocalName");function FA(n){return n===mt.RDF_TYPE_PREDICATES.RDFS_CLASS||n===mt.RDF_TYPE_PREDICATES.OWL_CLASS}o(FA,"isClassType");function NA(n){return n===mt.RDF_TYPE_PREDICATES.RDF_TYPE}o(NA,"isTypePredicate");function LA(n){return n===mt.RDF_TYPE_PREDICATES.RDFS_SUBCLASS_OF}o(LA,"isSubClassPredicate")});var w2=v(_2=>{"use strict";Object.defineProperty(_2,"__esModule",{value:!0})});var Xe=v(Qu=>{"use strict";Object.defineProperty(Qu,"__esModule",{value:!0});Qu.IRI=void 0;var Ud=class n{static{o(this,"IRI")}constructor(e){let t=e.trim();if(t.length===0)throw new Error("IRI cannot be empty");if(!n.isValidIRI(t))throw new Error("Invalid IRI format");this._value=t}get value(){return this._value}equals(e){return this._value===e._value}toString(){return this._value}static isValidIRI(e){if(!e||e.trim().length===0||/\s/.test(e)||!/^[a-z][a-z0-9+.-]*:/i.test(e))return!1;let r=["http","https","ftp","ftps","file","mailto","tel","data","ws","wss","urn","obsidian"],i=e.match(/^([a-z][a-z0-9+.-]*?):/i);if(i){let s=i[1].toLowerCase();if(!r.includes(s))return!1}try{return new URL(e),!0}catch{return/^urn:[a-z0-9][a-z0-9-]{0,31}:[^\s]+$/i.test(e)}}};Qu.IRI=Ud});var ft=v(Cs=>{"use strict";Object.defineProperty(Cs,"__esModule",{value:!0});Cs.Literal=void 0;Cs.parseLanguageTag=b2;Cs.createDirectionalLiteral=MA;Cs.createLiteralFromLanguageTag=jA;var kA="http://www.w3.org/2001/XMLSchema#string",Zo=class{static{o(this,"Literal")}constructor(e,t,r,i){if(e.length===0)throw new Error("Literal value cannot be empty");if(t&&r)throw new Error("Literal cannot have both datatype and language tag");if(i&&!r)throw new Error("Literal cannot have direction without language tag");if(i&&i!=="ltr"&&i!=="rtl")throw new Error('Direction must be "ltr" or "rtl"');this._value=e,this._datatype=t,this._language=r?r.toLowerCase():void 0,this._direction=i}get value(){return this._value}get datatype(){return this._datatype}get language(){return this._language}get direction(){return this._direction}hasDirection(){return this._direction!==void 0}equals(e){if(this._value!==e._value||this._language!==e._language||this._direction!==e._direction)return!1;let t=this.normalizedDatatype(),r=e.normalizedDatatype();return t===r}normalizedDatatype(){return!this._datatype||this._datatype.value===kA?null:this._datatype.value}toString(){let e=`"${this._value}"`;return this._datatype?e+=`^^<${this._datatype.value}>`:this._language&&(e+=`@${this._language}`,this._direction&&(e+=`--${this._direction}`)),e}};Cs.Literal=Zo;function b2(n){let t=n.lastIndexOf("--");if(t===-1)return{language:n.toLowerCase()};let r=n.substring(t+2),i=n.substring(0,t);return r==="ltr"||r==="rtl"?{language:i.toLowerCase(),direction:r}:{language:n.toLowerCase()}}o(b2,"parseLanguageTag");function MA(n,e,t){return new Zo(n,void 0,e,t)}o(MA,"createDirectionalLiteral");function jA(n,e){let{language:t,direction:r}=b2(e);return new Zo(n,void 0,t,r)}o(jA,"createLiteralFromLanguageTag")});var Ut=v(Ku=>{"use strict";Object.defineProperty(Ku,"__esModule",{value:!0});Ku.BlankNode=void 0;var Yu=class n{static{o(this,"BlankNode")}constructor(e){let t=e.trim();if(t.length===0)throw new Error("BlankNode id cannot be empty");this._id=t}get id(){return this._id}equals(e){return this._id===e._id}toString(){return`_:${this._id}`}static generateId(){return`b${++n.counter}`}static create(){return new n(n.generateId())}};Ku.BlankNode=Yu;Yu.counter=0});var Gr=v(Xu=>{"use strict";Object.defineProperty(Xu,"__esModule",{value:!0});Xu.Namespace=void 0;var E2=Xe(),pr=class{static{o(this,"Namespace")}constructor(e,t){if(e.trim().length===0)throw new Error("Namespace prefix cannot be empty");this._prefix=e,this._iri=new E2.IRI(t)}get prefix(){return this._prefix}get iri(){return this._iri}term(e){return new E2.IRI(`${this._iri.value}${e}`)}expand(e){let t=e.split(":");if(t.length!==2)return null;let[r,i]=t;return r!==this._prefix?null:this.term(i)}};Xu.Namespace=pr;pr.RDF=new pr("rdf","http://www.w3.org/1999/02/22-rdf-syntax-ns#");pr.RDFS=new pr("rdfs","http://www.w3.org/2000/01/rdf-schema#");pr.OWL=new pr("owl","http://www.w3.org/2002/07/owl#");pr.XSD=new pr("xsd","http://www.w3.org/2001/XMLSchema#");pr.EXO=new pr("exo","https://exocortex.my/ontology/exo#");pr.EMS=new pr("ems","https://exocortex.my/ontology/ems#")});var ji=v(Ju=>{"use strict";Object.defineProperty(Ju,"__esModule",{value:!0});Ju.Triple=void 0;var Bd=Xe(),qd=ft(),Gd=Ut(),Wd=class{static{o(this,"Triple")}constructor(e,t,r){this._subject=e,this._predicate=t,this._object=r}get subject(){return this._subject}get predicate(){return this._predicate}get object(){return this._object}equals(e){return!(!this.equalsNode(this._subject,e._subject)||!this._predicate.equals(e._predicate)||!this.equalsNode(this._object,e._object))}equalsNode(e,t){return e instanceof Bd.IRI&&t instanceof Bd.IRI||e instanceof Gd.BlankNode&&t instanceof Gd.BlankNode||e instanceof qd.Literal&&t instanceof qd.Literal||this.isQuotedTriple(e)&&this.isQuotedTriple(t)?e.equals(t):!1}isQuotedTriple(e){return typeof e=="object"&&e!==null&&"termType"in e&&e.termType==="QuotedTriple"}toString(){let e=this.nodeToString(this._subject),t=`<${this._predicate.value}>`,r=this.nodeToString(this._object);return`${e} ${t} ${r} .`}nodeToString(e){return e instanceof Bd.IRI?`<${e.value}>`:e instanceof Gd.BlankNode||e instanceof qd.Literal||this.isQuotedTriple(e)?e.toString():""}};Ju.Triple=Wd});var ec=v(Zu=>{"use strict";Object.defineProperty(Zu,"__esModule",{value:!0});Zu.QuotedTriple=void 0;var Hd=Xe(),zd=ft(),Qd=Ut(),Yd=class n{static{o(this,"QuotedTriple")}constructor(e,t,r){this._subject=e,this._predicate=t,this._object=r}get subject(){return this._subject}get predicate(){return this._predicate}get object(){return this._object}equals(e){return!(!this.equalsNode(this._subject,e._subject)||!this._predicate.equals(e._predicate)||!this.equalsNode(this._object,e._object))}equalsNode(e,t){return e instanceof Hd.IRI&&t instanceof Hd.IRI||e instanceof Qd.BlankNode&&t instanceof Qd.BlankNode||e instanceof zd.Literal&&t instanceof zd.Literal||e instanceof n&&t instanceof n?e.equals(t):!1}get termType(){return"QuotedTriple"}toString(){let e=this.nodeToString(this._subject),t=`<${this._predicate.value}>`,r=this.nodeToString(this._object);return`<< ${e} ${t} ${r} >>`}nodeToString(e){return e instanceof Hd.IRI?`<${e.value}>`:e instanceof Qd.BlankNode||e instanceof zd.Literal||e instanceof n?e.toString():""}};Zu.QuotedTriple=Yd});var T2=v(bt=>{"use strict";Object.defineProperty(bt,"__esModule",{value:!0});bt.QuotedTriple=bt.Triple=bt.Namespace=bt.BlankNode=bt.createLiteralFromLanguageTag=bt.createDirectionalLiteral=bt.parseLanguageTag=bt.Literal=bt.IRI=void 0;var $A=Xe();Object.defineProperty(bt,"IRI",{enumerable:!0,get:o(function(){return $A.IRI},"get")});var el=ft();Object.defineProperty(bt,"Literal",{enumerable:!0,get:o(function(){return el.Literal},"get")});Object.defineProperty(bt,"parseLanguageTag",{enumerable:!0,get:o(function(){return el.parseLanguageTag},"get")});Object.defineProperty(bt,"createDirectionalLiteral",{enumerable:!0,get:o(function(){return el.createDirectionalLiteral},"get")});Object.defineProperty(bt,"createLiteralFromLanguageTag",{enumerable:!0,get:o(function(){return el.createLiteralFromLanguageTag},"get")});var VA=Ut();Object.defineProperty(bt,"BlankNode",{enumerable:!0,get:o(function(){return VA.BlankNode},"get")});var UA=Gr();Object.defineProperty(bt,"Namespace",{enumerable:!0,get:o(function(){return UA.Namespace},"get")});var BA=ji();Object.defineProperty(bt,"Triple",{enumerable:!0,get:o(function(){return BA.Triple},"get")});var qA=ec();Object.defineProperty(bt,"QuotedTriple",{enumerable:!0,get:o(function(){return qA.QuotedTriple},"get")})});var xs=v(rl=>{"use strict";Object.defineProperty(rl,"__esModule",{value:!0});rl.WikiLinkHelpers=void 0;var tl=class{static{o(this,"WikiLinkHelpers")}static normalize(e){return e?e.replace(this.WIKI_LINK_PATTERN,"").trim():""}static normalizeArray(e){return e?(Array.isArray(e)?e:[e]).map(r=>this.normalize(r)).filter(r=>r.length>0):[]}static equals(e,t){return this.normalize(e)===this.normalize(t)}static includes(e,t){let r=this.normalizeArray(e),i=this.normalize(t);return r.includes(i)}};rl.WikiLinkHelpers=tl;tl.WIKI_LINK_PATTERN=/\[\[|\]\]/g});var er=v(Ta=>{"use strict";Object.defineProperty(Ta,"__esModule",{value:!0});Ta.EffortStatus=Ta.AssetClass=void 0;var GA=Md();Object.defineProperty(Ta,"AssetClass",{enumerable:!0,get:o(function(){return GA.AssetClass},"get")});var WA=jd();Object.defineProperty(Ta,"EffortStatus",{enumerable:!0,get:o(function(){return WA.EffortStatus},"get")})});var $i=v(tr=>{"use strict";Object.defineProperty(tr,"__esModule",{value:!0});tr.hasClass=Is;tr.isAreaOrProject=HA;tr.isEffort=zA;tr.hasStatus=QA;tr.isAssetArchived=YA;tr.hasEmptyProperties=KA;tr.needsFolderRepair=XA;tr.getTodayDateString=Kd;tr.isPlannedForToday=JA;tr.hasPlannedStartTimestamp=ZA;tr.extractDailyNoteDate=eC;tr.isCurrentDateGteDay=tC;tr.inheritsFromPrototype=x2;tr.isPrototypeClass=nC;var C2=xs(),Os=er();function Is(n,e){return n?(Array.isArray(n)?n:[n]).some(r=>C2.WikiLinkHelpers.normalize(r)===e):!1}o(Is,"hasClass");function HA(n){return Is(n,Os.AssetClass.AREA)||Is(n,Os.AssetClass.PROJECT)}o(HA,"isAreaOrProject");function zA(n){return Is(n,Os.AssetClass.TASK)||Is(n,Os.AssetClass.PROJECT)||Is(n,Os.AssetClass.MEETING)}o(zA,"isEffort");function QA(n,e){if(!n)return!1;let t=Array.isArray(n)?n[0]:n;return t?C2.WikiLinkHelpers.normalize(t)===e:!1}o(QA,"hasStatus");function YA(n){if(n===!0||n===1)return!0;if(typeof n=="string"){let e=n.toLowerCase();return e==="true"||e==="yes"}return!1}o(YA,"isAssetArchived");function KA(n){return!n||Object.keys(n).length===0?!1:Object.values(n).some(e=>!!(e==null||typeof e=="string"&&e.trim()===""||Array.isArray(e)&&e.length===0||typeof e=="object"&&!Array.isArray(e)&&Object.keys(e).length===0))}o(KA,"hasEmptyProperties");function XA(n,e){if(!e)return!1;let t=n.replace(/\/$/,""),r=e.replace(/\/$/,"");return t!==r}o(XA,"needsFolderRepair");function Kd(){let n=new Date,e=n.getFullYear(),t=String(n.getMonth()+1).padStart(2,"0"),r=String(n.getDate()).padStart(2,"0");return`${e}-${t}-${r}`}o(Kd,"getTodayDateString");function JA(n){let e=n.ems__Effort_plannedStartTimestamp;if(!e)return!1;let t=Kd();return typeof e=="string"?e.split("T")[0]===t:Array.isArray(e)&&e.length>0?String(e[0]).split("T")[0]===t:!1}o(JA,"isPlannedForToday");function ZA(n){let e=n.ems__Effort_plannedStartTimestamp;return e?typeof e=="string"?e.trim().length>0:Array.isArray(e)&&e.length>0?String(e[0]).trim().length>0:!1:!1}o(ZA,"hasPlannedStartTimestamp");function eC(n){let e=n.pn__DailyNote_day;if(!e)return null;if(typeof e=="string"){let t=e.match(/\[\[([^\[\]]+)\]\]/);return t?t[1]:e}if(Array.isArray(e)&&e.length>0){let t=String(e[0]),r=t.match(/\[\[([^\[\]]+)\]\]/);return r?r[1]:t}return null}o(eC,"extractDailyNoteDate");function tC(n){return Kd()>=n}o(tC,"isCurrentDateGteDay");function A2(n){return n?n.replace(/^["']|["']$/g,"").replace(/\[\[|\]\]/g,"").trim():""}o(A2,"normalizeWithQuotes");var rC=10;function x2(n,e=rC){let t=n.exo__Class_superClass;if(!t)return!1;let r=new Set,i=[],s=Array.isArray(t)?t:[t];for(let a of s){let c=A2(a);c&&i.push({className:c,depth:0})}for(;i.length>0;){let a=i.shift();if(!a)continue;let{className:c,depth:u}=a;if(u>e)continue;if(c===Os.AssetClass.PROTOTYPE)return!0;if(r.has(c))continue;r.add(c);let l=`${c}__exo__Class_superClass`,f=n[l];if(f){let h=Array.isArray(f)?f:[f];for(let d of h){let p=A2(d);p&&!r.has(p)&&i.push({className:p,depth:u+1})}}}return!1}o(x2,"inheritsFromPrototype");function nC(n,e){return Is(n,Os.AssetClass.CLASS)?x2(e):!1}o(nC,"isPrototypeClass")});var I2=v(tc=>{"use strict";Object.defineProperty(tc,"__esModule",{value:!0});tc.canCreateTask=iC;tc.canCreateRelatedTask=sC;tc.canConvertTaskToProject=aC;var nl=$i(),O2=er();function iC(n){return(0,nl.isAreaOrProject)(n.instanceClass)}o(iC,"canCreateTask");function sC(n){return!(!(0,nl.hasClass)(n.instanceClass,O2.AssetClass.TASK)||(0,nl.isAssetArchived)(n.isArchived))}o(sC,"canCreateRelatedTask");function aC(n){return(0,nl.hasClass)(n.instanceClass,O2.AssetClass.TASK)}o(aC,"canConvertTaskToProject")});var P2=v(Aa=>{"use strict";Object.defineProperty(Aa,"__esModule",{value:!0});Aa.canCreateProject=oC;Aa.canMoveToAnalysis=cC;Aa.canMoveToToDo=uC;Aa.canConvertProjectToTask=lC;var Vi=$i(),Ui=er();function oC(n){return(0,Vi.hasClass)(n.instanceClass,Ui.AssetClass.AREA)||(0,Vi.hasClass)(n.instanceClass,Ui.AssetClass.INITIATIVE)||(0,Vi.hasClass)(n.instanceClass,Ui.AssetClass.PROJECT)}o(oC,"canCreateProject");function cC(n){return(0,Vi.hasClass)(n.instanceClass,Ui.AssetClass.PROJECT)?(0,Vi.hasStatus)(n.currentStatus,Ui.EffortStatus.BACKLOG):!1}o(cC,"canMoveToAnalysis");function uC(n){return(0,Vi.hasClass)(n.instanceClass,Ui.AssetClass.PROJECT)?(0,Vi.hasStatus)(n.currentStatus,Ui.EffortStatus.ANALYSIS):!1}o(uC,"canMoveToToDo");function lC(n){return(0,Vi.hasClass)(n.instanceClass,Ui.AssetClass.PROJECT)}o(lC,"canConvertProjectToTask")});var F2=v(il=>{"use strict";Object.defineProperty(il,"__esModule",{value:!0});il.canCreateChildArea=fC;il.canSetActiveFocus=hC;var D2=$i(),R2=er();function fC(n){return(0,D2.hasClass)(n.instanceClass,R2.AssetClass.AREA)}o(fC,"canCreateChildArea");function hC(n){return(0,D2.hasClass)(n.instanceClass,R2.AssetClass.AREA)}o(hC,"canSetActiveFocus")});var L2=v(xr=>{"use strict";Object.defineProperty(xr,"__esModule",{value:!0});xr.canPlanOnToday=dC;xr.canPlanForEvening=pC;xr.canShiftDayBackward=mC;xr.canShiftDayForward=gC;xr.canSetDraftStatus=yC;xr.canMoveToBacklog=vC;xr.canStartEffort=SC;xr.canMarkDone=_C;xr.canTrashEffort=wC;xr.canVoteOnEffort=bC;xr.canRollbackStatus=EC;xr.canArchiveTask=TC;var N2=xs(),at=$i(),Lr=er();function dC(n){return!(!(0,at.isEffort)(n.instanceClass)||(0,at.isPlannedForToday)(n.metadata))}o(dC,"canPlanOnToday");function pC(n){return!(0,at.hasClass)(n.instanceClass,Lr.AssetClass.TASK)&&!(0,at.hasClass)(n.instanceClass,Lr.AssetClass.MEETING)?!1:(0,at.hasStatus)(n.currentStatus,Lr.EffortStatus.BACKLOG)}o(pC,"canPlanForEvening");function mC(n){return(0,at.isEffort)(n.instanceClass)?(0,at.hasPlannedStartTimestamp)(n.metadata):!1}o(mC,"canShiftDayBackward");function gC(n){return(0,at.isEffort)(n.instanceClass)?(0,at.hasPlannedStartTimestamp)(n.metadata):!1}o(gC,"canShiftDayForward");function yC(n){return(0,at.isEffort)(n.instanceClass)?!n.currentStatus:!1}o(yC,"canSetDraftStatus");function vC(n){return(0,at.isEffort)(n.instanceClass)?(0,at.hasStatus)(n.currentStatus,Lr.EffortStatus.DRAFT):!1}o(vC,"canMoveToBacklog");function SC(n){return(0,at.isEffort)(n.instanceClass)?(0,at.hasClass)(n.instanceClass,Lr.AssetClass.TASK)||(0,at.hasClass)(n.instanceClass,Lr.AssetClass.MEETING)?(0,at.hasStatus)(n.currentStatus,Lr.EffortStatus.BACKLOG):(0,at.hasClass)(n.instanceClass,Lr.AssetClass.PROJECT)?(0,at.hasStatus)(n.currentStatus,Lr.EffortStatus.TODO):!1:!1}o(SC,"canStartEffort");function _C(n){return(0,at.isEffort)(n.instanceClass)?(0,at.hasStatus)(n.currentStatus,Lr.EffortStatus.DOING):!1}o(_C,"canMarkDone");function wC(n){return(0,at.isEffort)(n.instanceClass)?n.currentStatus?!(Array.isArray(n.currentStatus)?n.currentStatus:[n.currentStatus]).some(r=>{let i=N2.WikiLinkHelpers.normalize(r);return i===Lr.EffortStatus.TRASHED||i===Lr.EffortStatus.DONE}):!0:!1}o(wC,"canTrashEffort");function bC(n){return!(!(0,at.isEffort)(n.instanceClass)||(0,at.isAssetArchived)(n.isArchived))}o(bC,"canVoteOnEffort");function EC(n){if(!(0,at.isEffort)(n.instanceClass)||(0,at.isAssetArchived)(n.isArchived)||!n.currentStatus)return!1;let e=Array.isArray(n.currentStatus)?n.currentStatus[0]:n.currentStatus;return!(!e||N2.WikiLinkHelpers.normalize(e)===Lr.EffortStatus.TRASHED)}o(EC,"canRollbackStatus");function TC(n){return!(0,at.isAssetArchived)(n.isArchived)}o(TC,"canArchiveTask")});var k2=v(sn=>{"use strict";Object.defineProperty(sn,"__esModule",{value:!0});sn.canCreateEvent=AC;sn.canCreateInstance=CC;sn.canCleanProperties=xC;sn.canRepairFolder=OC;sn.canRenameToUid=IC;sn.canCopyLabelToAliases=PC;sn.canCreateNarrowerConcept=DC;sn.canCreateSubclass=RC;sn.canCreateTaskForDailyNote=FC;var Wr=$i(),Ps=er();function AC(n){return(0,Wr.isAreaOrProject)(n.instanceClass)}o(AC,"canCreateEvent");function CC(n){return(0,Wr.hasClass)(n.instanceClass,Ps.AssetClass.TASK_PROTOTYPE)||(0,Wr.hasClass)(n.instanceClass,Ps.AssetClass.MEETING_PROTOTYPE)||(0,Wr.hasClass)(n.instanceClass,Ps.AssetClass.EVENT_PROTOTYPE)||(0,Wr.hasClass)(n.instanceClass,Ps.AssetClass.PROJECT_PROTOTYPE)?!0:(0,Wr.isPrototypeClass)(n.instanceClass,n.metadata)}o(CC,"canCreateInstance");function xC(n){return(0,Wr.hasEmptyProperties)(n.metadata)}o(xC,"canCleanProperties");function OC(n){return(0,Wr.needsFolderRepair)(n.currentFolder,n.expectedFolder)}o(OC,"canRepairFolder");function IC(n,e){let t=n.metadata.exo__Asset_uid;return t?e!==t:!1}o(IC,"canRenameToUid");function PC(n){let e=n.metadata.exo__Asset_label;if(!e||typeof e!="string"||e.trim()==="")return!1;let t=e.trim(),r=n.metadata.aliases;return!r||!Array.isArray(r)||r.length===0?!0:!r.some(i=>typeof i!="string"?!1:i.trim()===t)}o(PC,"canCopyLabelToAliases");function DC(n){return(0,Wr.hasClass)(n.instanceClass,Ps.AssetClass.CONCEPT)}o(DC,"canCreateNarrowerConcept");function RC(n){return(0,Wr.hasClass)(n.instanceClass,Ps.AssetClass.CLASS)}o(RC,"canCreateSubclass");function FC(n){return!(!(0,Wr.hasClass)(n.instanceClass,Ps.AssetClass.DAILY_NOTE)||n.isArchived||!(0,Wr.extractDailyNoteDate)(n.metadata))}o(FC,"canCreateTaskForDailyNote")});var j2=v(N=>{"use strict";Object.defineProperty(N,"__esModule",{value:!0});N.canCreateTaskForDailyNote=N.canCreateSubclass=N.canCreateNarrowerConcept=N.canCopyLabelToAliases=N.canRenameToUid=N.canRepairFolder=N.canCleanProperties=N.canCreateInstance=N.canCreateEvent=N.canArchiveTask=N.canRollbackStatus=N.canVoteOnEffort=N.canTrashEffort=N.canMarkDone=N.canStartEffort=N.canMoveToBacklog=N.canSetDraftStatus=N.canShiftDayForward=N.canShiftDayBackward=N.canPlanForEvening=N.canPlanOnToday=N.canSetActiveFocus=N.canCreateChildArea=N.canConvertProjectToTask=N.canMoveToToDo=N.canMoveToAnalysis=N.canCreateProject=N.canConvertTaskToProject=N.canCreateRelatedTask=N.canCreateTask=N.isPrototypeClass=N.inheritsFromPrototype=N.isCurrentDateGteDay=N.extractDailyNoteDate=N.hasPlannedStartTimestamp=N.isPlannedForToday=N.getTodayDateString=N.needsFolderRepair=N.hasEmptyProperties=N.isAssetArchived=N.hasStatus=N.isEffort=N.isAreaOrProject=N.hasClass=void 0;var Or=$i();Object.defineProperty(N,"hasClass",{enumerable:!0,get:o(function(){return Or.hasClass},"get")});Object.defineProperty(N,"isAreaOrProject",{enumerable:!0,get:o(function(){return Or.isAreaOrProject},"get")});Object.defineProperty(N,"isEffort",{enumerable:!0,get:o(function(){return Or.isEffort},"get")});Object.defineProperty(N,"hasStatus",{enumerable:!0,get:o(function(){return Or.hasStatus},"get")});Object.defineProperty(N,"isAssetArchived",{enumerable:!0,get:o(function(){return Or.isAssetArchived},"get")});Object.defineProperty(N,"hasEmptyProperties",{enumerable:!0,get:o(function(){return Or.hasEmptyProperties},"get")});Object.defineProperty(N,"needsFolderRepair",{enumerable:!0,get:o(function(){return Or.needsFolderRepair},"get")});Object.defineProperty(N,"getTodayDateString",{enumerable:!0,get:o(function(){return Or.getTodayDateString},"get")});Object.defineProperty(N,"isPlannedForToday",{enumerable:!0,get:o(function(){return Or.isPlannedForToday},"get")});Object.defineProperty(N,"hasPlannedStartTimestamp",{enumerable:!0,get:o(function(){return Or.hasPlannedStartTimestamp},"get")});Object.defineProperty(N,"extractDailyNoteDate",{enumerable:!0,get:o(function(){return Or.extractDailyNoteDate},"get")});Object.defineProperty(N,"isCurrentDateGteDay",{enumerable:!0,get:o(function(){return Or.isCurrentDateGteDay},"get")});Object.defineProperty(N,"inheritsFromPrototype",{enumerable:!0,get:o(function(){return Or.inheritsFromPrototype},"get")});Object.defineProperty(N,"isPrototypeClass",{enumerable:!0,get:o(function(){return Or.isPrototypeClass},"get")});var Xd=I2();Object.defineProperty(N,"canCreateTask",{enumerable:!0,get:o(function(){return Xd.canCreateTask},"get")});Object.defineProperty(N,"canCreateRelatedTask",{enumerable:!0,get:o(function(){return Xd.canCreateRelatedTask},"get")});Object.defineProperty(N,"canConvertTaskToProject",{enumerable:!0,get:o(function(){return Xd.canConvertTaskToProject},"get")});var sl=P2();Object.defineProperty(N,"canCreateProject",{enumerable:!0,get:o(function(){return sl.canCreateProject},"get")});Object.defineProperty(N,"canMoveToAnalysis",{enumerable:!0,get:o(function(){return sl.canMoveToAnalysis},"get")});Object.defineProperty(N,"canMoveToToDo",{enumerable:!0,get:o(function(){return sl.canMoveToToDo},"get")});Object.defineProperty(N,"canConvertProjectToTask",{enumerable:!0,get:o(function(){return sl.canConvertProjectToTask},"get")});var M2=F2();Object.defineProperty(N,"canCreateChildArea",{enumerable:!0,get:o(function(){return M2.canCreateChildArea},"get")});Object.defineProperty(N,"canSetActiveFocus",{enumerable:!0,get:o(function(){return M2.canSetActiveFocus},"get")});var Hr=L2();Object.defineProperty(N,"canPlanOnToday",{enumerable:!0,get:o(function(){return Hr.canPlanOnToday},"get")});Object.defineProperty(N,"canPlanForEvening",{enumerable:!0,get:o(function(){return Hr.canPlanForEvening},"get")});Object.defineProperty(N,"canShiftDayBackward",{enumerable:!0,get:o(function(){return Hr.canShiftDayBackward},"get")});Object.defineProperty(N,"canShiftDayForward",{enumerable:!0,get:o(function(){return Hr.canShiftDayForward},"get")});Object.defineProperty(N,"canSetDraftStatus",{enumerable:!0,get:o(function(){return Hr.canSetDraftStatus},"get")});Object.defineProperty(N,"canMoveToBacklog",{enumerable:!0,get:o(function(){return Hr.canMoveToBacklog},"get")});Object.defineProperty(N,"canStartEffort",{enumerable:!0,get:o(function(){return Hr.canStartEffort},"get")});Object.defineProperty(N,"canMarkDone",{enumerable:!0,get:o(function(){return Hr.canMarkDone},"get")});Object.defineProperty(N,"canTrashEffort",{enumerable:!0,get:o(function(){return Hr.canTrashEffort},"get")});Object.defineProperty(N,"canVoteOnEffort",{enumerable:!0,get:o(function(){return Hr.canVoteOnEffort},"get")});Object.defineProperty(N,"canRollbackStatus",{enumerable:!0,get:o(function(){return Hr.canRollbackStatus},"get")});Object.defineProperty(N,"canArchiveTask",{enumerable:!0,get:o(function(){return Hr.canArchiveTask},"get")});var _i=k2();Object.defineProperty(N,"canCreateEvent",{enumerable:!0,get:o(function(){return _i.canCreateEvent},"get")});Object.defineProperty(N,"canCreateInstance",{enumerable:!0,get:o(function(){return _i.canCreateInstance},"get")});Object.defineProperty(N,"canCleanProperties",{enumerable:!0,get:o(function(){return _i.canCleanProperties},"get")});Object.defineProperty(N,"canRepairFolder",{enumerable:!0,get:o(function(){return _i.canRepairFolder},"get")});Object.defineProperty(N,"canRenameToUid",{enumerable:!0,get:o(function(){return _i.canRenameToUid},"get")});Object.defineProperty(N,"canCopyLabelToAliases",{enumerable:!0,get:o(function(){return _i.canCopyLabelToAliases},"get")});Object.defineProperty(N,"canCreateNarrowerConcept",{enumerable:!0,get:o(function(){return _i.canCreateNarrowerConcept},"get")});Object.defineProperty(N,"canCreateSubclass",{enumerable:!0,get:o(function(){return _i.canCreateSubclass},"get")});Object.defineProperty(N,"canCreateTaskForDailyNote",{enumerable:!0,get:o(function(){return _i.canCreateTaskForDailyNote},"get")})});var $2=v(Ds=>{"use strict";var NC=Ds&&Ds.__createBinding||(Object.create?(function(n,e,t,r){r===void 0&&(r=t);var i=Object.getOwnPropertyDescriptor(e,t);(!i||("get"in i?!e.__esModule:i.writable||i.configurable))&&(i={enumerable:!0,get:o(function(){return e[t]},"get")}),Object.defineProperty(n,r,i)}):(function(n,e,t,r){r===void 0&&(r=t),n[r]=e[t]})),LC=Ds&&Ds.__exportStar||function(n,e){for(var t in n)t!=="default"&&!Object.prototype.hasOwnProperty.call(e,t)&&NC(e,n,t)};Object.defineProperty(Ds,"__esModule",{value:!0});LC(j2(),Ds)});var Zd=v(rc=>{"use strict";Object.defineProperty(rc,"__esModule",{value:!0});rc.PropertyFieldType=void 0;rc.rangeToFieldType=jC;var Bt;(function(n){n.Text="text",n.Number="number",n.Date="date",n.DateTime="datetime",n.Boolean="boolean",n.Reference="reference",n.Enum="enum",n.StatusSelect="status-select",n.SizeSelect="size-select",n.Wikilink="wikilink",n.Timestamp="timestamp",n.Unknown="unknown"})(Bt||(rc.PropertyFieldType=Bt={}));var V2="http://www.w3.org/2001/XMLSchema#",kC="https://exocortex.my/ontology/exo#",MC="https://exocortex.my/ontology/ems#";function jC(n){if(!n)return Bt.Unknown;let e=n.trim();if(!e)return Bt.Unknown;if(e.startsWith(V2)){let t=e.substring(V2.length);return Jd(t)}if(e.startsWith("xsd:")){let t=e.substring(4);return Jd(t)}if(e.includes("XMLSchema#")){let t=e.indexOf("XMLSchema#"),r=e.substring(t+10);return Jd(r)}return e.startsWith(MC)||e.startsWith("ems:")?$C(e):e.startsWith(kC)||e.startsWith("exo:")||VC(e)?Bt.Reference:Bt.Text}o(jC,"rangeToFieldType");function Jd(n){switch(n.toLowerCase()){case"string":case"normalizedstring":case"token":case"language":case"nmtoken":case"name":case"ncname":case"anyuri":return Bt.Text;case"integer":case"int":case"long":case"short":case"byte":case"nonnegativeinteger":case"positiveinteger":case"nonpositiveinteger":case"negativeinteger":case"unsignedlong":case"unsignedint":case"unsignedshort":case"unsignedbyte":case"decimal":case"float":case"double":return Bt.Number;case"date":return Bt.Date;case"datetime":case"datetimestamp":return Bt.DateTime;case"boolean":return Bt.Boolean;case"time":return Bt.Timestamp;default:return Bt.Text}}o(Jd,"xsdTypeToFieldType");function $C(n){let e=n.toLowerCase();return e.includes("effortstatus")?Bt.StatusSelect:e.includes("tasksize")?Bt.SizeSelect:Bt.Reference}o($C,"emsTypeToFieldType");function VC(n){let e=n.toLowerCase();return e.includes("exocortex.my/ontology")?!0:["asset","task","project","area","effort","class","property","concept"].some(r=>e.includes(r))}o(VC,"isClassReference")});var B2=v(nc=>{"use strict";Object.defineProperty(nc,"__esModule",{value:!0});nc.propertyNameToUri=UC;nc.uriToPropertyName=U2;nc.extractPropertyLabel=BC;function UC(n){return n.replace(/^([a-z]+)__/,"$1:")}o(UC,"propertyNameToUri");function U2(n){if(n.startsWith("http://")||n.startsWith("https://")){let e=n.match(/\/([a-z]+)#([A-Za-z0-9_]+)$/);if(e)return`${e[1]}__${e[2]}`;let t=n.lastIndexOf("#"),r=n.lastIndexOf("/"),i=Math.max(t,r);return i>=0?n.substring(i+1):n}return n.replace(/^([a-z]+):/,"$1__")}o(U2,"uriToPropertyName");function BC(n){let r=(n.includes(":")?U2(n):n).replace(/^[a-z]+__/,"").split("_");return(r.length>1?r.slice(1).join(" "):r[0]).replace(/([a-z])([A-Z])/g,"$1 $2").replace(/^./,s=>s.toUpperCase())}o(BC,"extractPropertyLabel")});var al={};cA(al,{__assign:()=>tp,__asyncDelegator:()=>tx,__asyncGenerator:()=>ex,__asyncValues:()=>rx,__await:()=>ic,__awaiter:()=>QC,__classPrivateFieldGet:()=>ax,__classPrivateFieldSet:()=>ox,__createBinding:()=>KC,__decorate:()=>WC,__exportStar:()=>XC,__extends:()=>qC,__generator:()=>YC,__importDefault:()=>sx,__importStar:()=>ix,__makeTemplateObject:()=>nx,__metadata:()=>zC,__param:()=>HC,__read:()=>q2,__rest:()=>GC,__spread:()=>JC,__spreadArrays:()=>ZC,__values:()=>rp});function qC(n,e){ep(n,e);function t(){this.constructor=n}o(t,"__"),n.prototype=e===null?Object.create(e):(t.prototype=e.prototype,new t)}function GC(n,e){var t={};for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&e.indexOf(r)<0&&(t[r]=n[r]);if(n!=null&&typeof Object.getOwnPropertySymbols=="function")for(var i=0,r=Object.getOwnPropertySymbols(n);i<r.length;i++)e.indexOf(r[i])<0&&Object.prototype.propertyIsEnumerable.call(n,r[i])&&(t[r[i]]=n[r[i]]);return t}function WC(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s}function HC(n,e){return function(t,r){e(t,r,n)}}function zC(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)}function QC(n,e,t,r){function i(s){return s instanceof t?s:new t(function(a){a(s)})}return o(i,"adopt"),new(t||(t=Promise))(function(s,a){function c(f){try{l(r.next(f))}catch(h){a(h)}}o(c,"fulfilled");function u(f){try{l(r.throw(f))}catch(h){a(h)}}o(u,"rejected");function l(f){f.done?s(f.value):i(f.value).then(c,u)}o(l,"step"),l((r=r.apply(n,e||[])).next())})}function YC(n,e){var t={label:0,sent:o(function(){if(s[0]&1)throw s[1];return s[1]},"sent"),trys:[],ops:[]},r,i,s,a;return a={next:c(0),throw:c(1),return:c(2)},typeof Symbol=="function"&&(a[Symbol.iterator]=function(){return this}),a;function c(l){return function(f){return u([l,f])}}function u(l){if(r)throw new TypeError("Generator is already executing.");for(;t;)try{if(r=1,i&&(s=l[0]&2?i.return:l[0]?i.throw||((s=i.return)&&s.call(i),0):i.next)&&!(s=s.call(i,l[1])).done)return s;switch(i=0,s&&(l=[l[0]&2,s.value]),l[0]){case 0:case 1:s=l;break;case 4:return t.label++,{value:l[1],done:!1};case 5:t.label++,i=l[1],l=[0];continue;case 7:l=t.ops.pop(),t.trys.pop();continue;default:if(s=t.trys,!(s=s.length>0&&s[s.length-1])&&(l[0]===6||l[0]===2)){t=0;continue}if(l[0]===3&&(!s||l[1]>s[0]&&l[1]<s[3])){t.label=l[1];break}if(l[0]===6&&t.label<s[1]){t.label=s[1],s=l;break}if(s&&t.label<s[2]){t.label=s[2],t.ops.push(l);break}s[2]&&t.ops.pop(),t.trys.pop();continue}l=e.call(n,t)}catch(f){l=[6,f],i=0}finally{r=s=0}if(l[0]&5)throw l[1];return{value:l[0]?l[1]:void 0,done:!0}}}function KC(n,e,t,r){r===void 0&&(r=t),n[r]=e[t]}function XC(n,e){for(var t in n)t!=="default"&&!e.hasOwnProperty(t)&&(e[t]=n[t])}function rp(n){var e=typeof Symbol=="function"&&Symbol.iterator,t=e&&n[e],r=0;if(t)return t.call(n);if(n&&typeof n.length=="number")return{next:o(function(){return n&&r>=n.length&&(n=void 0),{value:n&&n[r++],done:!n}},"next")};throw new TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")}function q2(n,e){var t=typeof Symbol=="function"&&n[Symbol.iterator];if(!t)return n;var r=t.call(n),i,s=[],a;try{for(;(e===void 0||e-- >0)&&!(i=r.next()).done;)s.push(i.value)}catch(c){a={error:c}}finally{try{i&&!i.done&&(t=r.return)&&t.call(r)}finally{if(a)throw a.error}}return s}function JC(){for(var n=[],e=0;e<arguments.length;e++)n=n.concat(q2(arguments[e]));return n}function ZC(){for(var n=0,e=0,t=arguments.length;e<t;e++)n+=arguments[e].length;for(var r=Array(n),i=0,e=0;e<t;e++)for(var s=arguments[e],a=0,c=s.length;a<c;a++,i++)r[i]=s[a];return r}function ic(n){return this instanceof ic?(this.v=n,this):new ic(n)}function ex(n,e,t){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var r=t.apply(n,e||[]),i,s=[];return i={},a("next"),a("throw"),a("return"),i[Symbol.asyncIterator]=function(){return this},i;function a(d){r[d]&&(i[d]=function(p){return new Promise(function(S,w){s.push([d,p,S,w])>1||c(d,p)})})}function c(d,p){try{u(r[d](p))}catch(S){h(s[0][3],S)}}function u(d){d.value instanceof ic?Promise.resolve(d.value.v).then(l,f):h(s[0][2],d)}function l(d){c("next",d)}function f(d){c("throw",d)}function h(d,p){d(p),s.shift(),s.length&&c(s[0][0],s[0][1])}}function tx(n){var e,t;return e={},r("next"),r("throw",function(i){throw i}),r("return"),e[Symbol.iterator]=function(){return this},e;function r(i,s){e[i]=n[i]?function(a){return(t=!t)?{value:ic(n[i](a)),done:i==="return"}:s?s(a):a}:s}}function rx(n){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var e=n[Symbol.asyncIterator],t;return e?e.call(n):(n=typeof rp=="function"?rp(n):n[Symbol.iterator](),t={},r("next"),r("throw"),r("return"),t[Symbol.asyncIterator]=function(){return this},t);function r(s){t[s]=n[s]&&function(a){return new Promise(function(c,u){a=n[s](a),i(c,u,a.done,a.value)})}}function i(s,a,c,u){Promise.resolve(u).then(function(l){s({value:l,done:c})},a)}}function nx(n,e){return Object.defineProperty?Object.defineProperty(n,"raw",{value:e}):n.raw=e,n}function ix(n){if(n&&n.__esModule)return n;var e={};if(n!=null)for(var t in n)Object.hasOwnProperty.call(n,t)&&(e[t]=n[t]);return e.default=n,e}function sx(n){return n&&n.__esModule?n:{default:n}}function ax(n,e){if(!e.has(n))throw new TypeError("attempted to get private field on non-instance");return e.get(n)}function ox(n,e,t){if(!e.has(n))throw new TypeError("attempted to set private field on non-instance");return e.set(n,t),t}var ep,tp,ol=oA(()=>{ep=o(function(n,e){return ep=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,r){t.__proto__=r}||function(t,r){for(var i in r)r.hasOwnProperty(i)&&(t[i]=r[i])},ep(n,e)},"extendStatics");o(qC,"__extends");tp=o(function(){return tp=Object.assign||o(function(e){for(var t,r=1,i=arguments.length;r<i;r++){t=arguments[r];for(var s in t)Object.prototype.hasOwnProperty.call(t,s)&&(e[s]=t[s])}return e},"__assign"),tp.apply(this,arguments)},"__assign");o(GC,"__rest");o(WC,"__decorate");o(HC,"__param");o(zC,"__metadata");o(QC,"__awaiter");o(YC,"__generator");o(KC,"__createBinding");o(XC,"__exportStar");o(rp,"__values");o(q2,"__read");o(JC,"__spread");o(ZC,"__spreadArrays");o(ic,"__await");o(ex,"__asyncGenerator");o(tx,"__asyncDelegator");o(rx,"__asyncValues");o(nx,"__makeTemplateObject");o(ix,"__importStar");o(sx,"__importDefault");o(ax,"__classPrivateFieldGet");o(ox,"__classPrivateFieldSet")});var sp=v(ip=>{"use strict";Object.defineProperty(ip,"__esModule",{value:!0});var np;(function(n){n[n.Transient=0]="Transient",n[n.Singleton=1]="Singleton",n[n.ResolutionScoped=2]="ResolutionScoped",n[n.ContainerScoped=3]="ContainerScoped"})(np||(np={}));ip.default=np});var G2=v(ap=>{"use strict";Object.defineProperty(ap,"__esModule",{value:!0});var cx=sp();Object.defineProperty(ap,"Lifecycle",{enumerable:!0,get:o(function(){return cx.default},"get")})});var Rs=v(an=>{"use strict";Object.defineProperty(an,"__esModule",{value:!0});an.defineInjectionTokenMetadata=an.getParamInfo=an.INJECTION_TOKEN_METADATA_KEY=void 0;an.INJECTION_TOKEN_METADATA_KEY="injectionTokens";function ux(n){let e=Reflect.getMetadata("design:paramtypes",n)||[],t=Reflect.getOwnMetadata(an.INJECTION_TOKEN_METADATA_KEY,n)||{};return Object.keys(t).forEach(r=>{e[+r]=t[r]}),e}o(ux,"getParamInfo");an.getParamInfo=ux;function lx(n,e){return function(t,r,i){let s=Reflect.getOwnMetadata(an.INJECTION_TOKEN_METADATA_KEY,t)||{};s[i]=e?{token:n,transform:e.transformToken,transformArgs:e.args||[]}:n,Reflect.defineMetadata(an.INJECTION_TOKEN_METADATA_KEY,s,t)}}o(lx,"defineInjectionTokenMetadata");an.defineInjectionTokenMetadata=lx});var op=v(cl=>{"use strict";Object.defineProperty(cl,"__esModule",{value:!0});cl.isClassProvider=void 0;function fx(n){return!!n.useClass}o(fx,"isClassProvider");cl.isClassProvider=fx});var cp=v(ul=>{"use strict";Object.defineProperty(ul,"__esModule",{value:!0});ul.isFactoryProvider=void 0;function hx(n){return!!n.useFactory}o(hx,"isFactoryProvider");ul.isFactoryProvider=hx});var fl=v(Ca=>{"use strict";Object.defineProperty(Ca,"__esModule",{value:!0});Ca.delay=Ca.DelayedConstructor=void 0;var ll=class{static{o(this,"DelayedConstructor")}constructor(e){this.wrap=e,this.reflectMethods=["get","getPrototypeOf","setPrototypeOf","getOwnPropertyDescriptor","defineProperty","has","set","deleteProperty","apply","construct","ownKeys"]}createProxy(e){let t={},r=!1,i,s=o(()=>(r||(i=e(this.wrap()),r=!0),i),"delayedObject");return new Proxy(t,this.createHandler(s))}createHandler(e){let t={},r=o(i=>{t[i]=(...s)=>{s[0]=e();let a=Reflect[i];return a(...s)}},"install");return this.reflectMethods.forEach(r),t}};Ca.DelayedConstructor=ll;function dx(n){if(typeof n>"u")throw new Error("Attempt to `delay` undefined. Constructor must be wrapped in a callback");return new ll(n)}o(dx,"delay");Ca.delay=dx});var hl=v(zn=>{"use strict";Object.defineProperty(zn,"__esModule",{value:!0});zn.isConstructorToken=zn.isTransformDescriptor=zn.isTokenDescriptor=zn.isNormalToken=void 0;var px=fl();function mx(n){return typeof n=="string"||typeof n=="symbol"}o(mx,"isNormalToken");zn.isNormalToken=mx;function gx(n){return typeof n=="object"&&"token"in n&&"multiple"in n}o(gx,"isTokenDescriptor");zn.isTokenDescriptor=gx;function yx(n){return typeof n=="object"&&"token"in n&&"transform"in n}o(yx,"isTransformDescriptor");zn.isTransformDescriptor=yx;function vx(n){return typeof n=="function"||n instanceof px.DelayedConstructor}o(vx,"isConstructorToken");zn.isConstructorToken=vx});var up=v(dl=>{"use strict";Object.defineProperty(dl,"__esModule",{value:!0});dl.isTokenProvider=void 0;function Sx(n){return!!n.useToken}o(Sx,"isTokenProvider");dl.isTokenProvider=Sx});var lp=v(pl=>{"use strict";Object.defineProperty(pl,"__esModule",{value:!0});pl.isValueProvider=void 0;function _x(n){return n.useValue!=null}o(_x,"isValueProvider");pl.isValueProvider=_x});var fp=v(Fs=>{"use strict";Object.defineProperty(Fs,"__esModule",{value:!0});var wx=op();Object.defineProperty(Fs,"isClassProvider",{enumerable:!0,get:o(function(){return wx.isClassProvider},"get")});var bx=cp();Object.defineProperty(Fs,"isFactoryProvider",{enumerable:!0,get:o(function(){return bx.isFactoryProvider},"get")});var Ex=hl();Object.defineProperty(Fs,"isNormalToken",{enumerable:!0,get:o(function(){return Ex.isNormalToken},"get")});var Tx=up();Object.defineProperty(Fs,"isTokenProvider",{enumerable:!0,get:o(function(){return Tx.isTokenProvider},"get")});var Ax=lp();Object.defineProperty(Fs,"isValueProvider",{enumerable:!0,get:o(function(){return Ax.isValueProvider},"get")})});var W2=v(ml=>{"use strict";Object.defineProperty(ml,"__esModule",{value:!0});ml.isProvider=void 0;var Cx=op(),xx=lp(),Ox=up(),Ix=cp();function Px(n){return Cx.isClassProvider(n)||xx.isValueProvider(n)||Ox.isTokenProvider(n)||Ix.isFactoryProvider(n)}o(Px,"isProvider");ml.isProvider=Px});var pp=v(dp=>{"use strict";Object.defineProperty(dp,"__esModule",{value:!0});var hp=class{static{o(this,"RegistryBase")}constructor(){this._registryMap=new Map}entries(){return this._registryMap.entries()}getAll(e){return this.ensure(e),this._registryMap.get(e)}get(e){this.ensure(e);let t=this._registryMap.get(e);return t[t.length-1]||null}set(e,t){this.ensure(e),this._registryMap.get(e).push(t)}setAll(e,t){this._registryMap.set(e,t)}has(e){return this.ensure(e),this._registryMap.get(e).length>0}clear(){this._registryMap.clear()}ensure(e){this._registryMap.has(e)||this._registryMap.set(e,[])}};dp.default=hp});var H2=v(gp=>{"use strict";Object.defineProperty(gp,"__esModule",{value:!0});var Dx=pp(),mp=class extends Dx.default{static{o(this,"Registry")}};gp.default=mp});var z2=v(vp=>{"use strict";Object.defineProperty(vp,"__esModule",{value:!0});var yp=class{static{o(this,"ResolutionContext")}constructor(){this.scopedResolutions=new Map}};vp.default=yp});var Sp=v(gl=>{"use strict";Object.defineProperty(gl,"__esModule",{value:!0});gl.formatErrorCtor=void 0;function Rx(n,e){return n===null?`at position #${e}`:`"${n.split(",")[e].trim()}" at position #${e}`}o(Rx,"formatDependency");function Fx(n,e,t=" "){return[n,...e.message.split(`
32
32
  `).map(r=>t+r)].join(`
33
33
  `)}o(Fx,"composeErrorMessage");function Nx(n,e,t){let[,r=null]=n.toString().match(/constructor\(([\w, ]+)\)/)||[],i=Rx(r,e);return Fx(`Cannot inject the dependency ${i} of "${n.name}" constructor. Reason:`,t)}o(Nx,"formatErrorCtor");gl.formatErrorCtor=Nx});var Q2=v(yl=>{"use strict";Object.defineProperty(yl,"__esModule",{value:!0});yl.isDisposable=void 0;function Lx(n){return!(typeof n.dispose!="function"||n.dispose.length>0)}o(Lx,"isDisposable");yl.isDisposable=Lx});var K2=v(Ns=>{"use strict";Object.defineProperty(Ns,"__esModule",{value:!0});Ns.PostResolutionInterceptors=Ns.PreResolutionInterceptors=void 0;var Y2=pp(),vl=class extends Y2.default{static{o(this,"PreResolutionInterceptors")}};Ns.PreResolutionInterceptors=vl;var Sl=class extends Y2.default{static{o(this,"PostResolutionInterceptors")}};Ns.PostResolutionInterceptors=Sl;var _p=class{static{o(this,"Interceptors")}constructor(){this.preResolution=new vl,this.postResolution=new Sl}};Ns.default=_p});var Bi=v(wi=>{"use strict";Object.defineProperty(wi,"__esModule",{value:!0});wi.instance=wi.typeInfo=void 0;var kx=(ol(),Sd(al)),mr=fp(),Mx=W2(),_l=hl(),jx=H2(),Ir=sp(),wl=z2(),$x=Sp(),Vx=fl(),Ux=Q2(),Bx=K2();wi.typeInfo=new Map;var wp=class n{static{o(this,"InternalDependencyContainer")}constructor(e){this.parent=e,this._registry=new jx.default,this.interceptors=new Bx.default,this.disposed=!1,this.disposables=new Set}register(e,t,r={lifecycle:Ir.default.Transient}){this.ensureNotDisposed();let i;if(Mx.isProvider(t)?i=t:i={useClass:t},mr.isTokenProvider(i)){let s=[e],a=i;for(;a!=null;){let c=a.useToken;if(s.includes(c))throw new Error(`Token registration cycle detected! ${[...s,c].join(" -> ")}`);s.push(c);let u=this._registry.get(c);u&&mr.isTokenProvider(u.provider)?a=u.provider:a=null}}if((r.lifecycle===Ir.default.Singleton||r.lifecycle==Ir.default.ContainerScoped||r.lifecycle==Ir.default.ResolutionScoped)&&(mr.isValueProvider(i)||mr.isFactoryProvider(i)))throw new Error(`Cannot use lifecycle "${Ir.default[r.lifecycle]}" with ValueProviders or FactoryProviders`);return this._registry.set(e,{provider:i,options:r}),this}registerType(e,t){return this.ensureNotDisposed(),mr.isNormalToken(t)?this.register(e,{useToken:t}):this.register(e,{useClass:t})}registerInstance(e,t){return this.ensureNotDisposed(),this.register(e,{useValue:t})}registerSingleton(e,t){if(this.ensureNotDisposed(),mr.isNormalToken(e)){if(mr.isNormalToken(t))return this.register(e,{useToken:t},{lifecycle:Ir.default.Singleton});if(t)return this.register(e,{useClass:t},{lifecycle:Ir.default.Singleton});throw new Error('Cannot register a type name as a singleton without a "to" token')}let r=e;return t&&!mr.isNormalToken(t)&&(r=t),this.register(e,{useClass:r},{lifecycle:Ir.default.Singleton})}resolve(e,t=new wl.default,r=!1){this.ensureNotDisposed();let i=this.getRegistration(e);if(!i&&mr.isNormalToken(e)){if(r)return;throw new Error(`Attempted to resolve unregistered dependency token: "${e.toString()}"`)}if(this.executePreResolutionInterceptor(e,"Single"),i){let s=this.resolveRegistration(i,t);return this.executePostResolutionInterceptor(e,s,"Single"),s}if(_l.isConstructorToken(e)){let s=this.construct(e,t);return this.executePostResolutionInterceptor(e,s,"Single"),s}throw new Error("Attempted to construct an undefined constructor. Could mean a circular dependency problem. Try using `delay` function.")}executePreResolutionInterceptor(e,t){if(this.interceptors.preResolution.has(e)){let r=[];for(let i of this.interceptors.preResolution.getAll(e))i.options.frequency!="Once"&&r.push(i),i.callback(e,t);this.interceptors.preResolution.setAll(e,r)}}executePostResolutionInterceptor(e,t,r){if(this.interceptors.postResolution.has(e)){let i=[];for(let s of this.interceptors.postResolution.getAll(e))s.options.frequency!="Once"&&i.push(s),s.callback(e,t,r);this.interceptors.postResolution.setAll(e,i)}}resolveRegistration(e,t){if(this.ensureNotDisposed(),e.options.lifecycle===Ir.default.ResolutionScoped&&t.scopedResolutions.has(e))return t.scopedResolutions.get(e);let r=e.options.lifecycle===Ir.default.Singleton,i=e.options.lifecycle===Ir.default.ContainerScoped,s=r||i,a;return mr.isValueProvider(e.provider)?a=e.provider.useValue:mr.isTokenProvider(e.provider)?a=s?e.instance||(e.instance=this.resolve(e.provider.useToken,t)):this.resolve(e.provider.useToken,t):mr.isClassProvider(e.provider)?a=s?e.instance||(e.instance=this.construct(e.provider.useClass,t)):this.construct(e.provider.useClass,t):mr.isFactoryProvider(e.provider)?a=e.provider.useFactory(this):a=this.construct(e.provider,t),e.options.lifecycle===Ir.default.ResolutionScoped&&t.scopedResolutions.set(e,a),a}resolveAll(e,t=new wl.default,r=!1){this.ensureNotDisposed();let i=this.getAllRegistrations(e);if(!i&&mr.isNormalToken(e)){if(r)return[];throw new Error(`Attempted to resolve unregistered dependency token: "${e.toString()}"`)}if(this.executePreResolutionInterceptor(e,"All"),i){let a=i.map(c=>this.resolveRegistration(c,t));return this.executePostResolutionInterceptor(e,a,"All"),a}let s=[this.construct(e,t)];return this.executePostResolutionInterceptor(e,s,"All"),s}isRegistered(e,t=!1){return this.ensureNotDisposed(),this._registry.has(e)||t&&(this.parent||!1)&&this.parent.isRegistered(e,!0)}reset(){this.ensureNotDisposed(),this._registry.clear(),this.interceptors.preResolution.clear(),this.interceptors.postResolution.clear()}clearInstances(){this.ensureNotDisposed();for(let[e,t]of this._registry.entries())this._registry.setAll(e,t.filter(r=>!mr.isValueProvider(r.provider)).map(r=>(r.instance=void 0,r)))}createChildContainer(){this.ensureNotDisposed();let e=new n(this);for(let[t,r]of this._registry.entries())r.some(({options:i})=>i.lifecycle===Ir.default.ContainerScoped)&&e._registry.setAll(t,r.map(i=>i.options.lifecycle===Ir.default.ContainerScoped?{provider:i.provider,options:i.options}:i));return e}beforeResolution(e,t,r={frequency:"Always"}){this.interceptors.preResolution.set(e,{callback:t,options:r})}afterResolution(e,t,r={frequency:"Always"}){this.interceptors.postResolution.set(e,{callback:t,options:r})}dispose(){return kx.__awaiter(this,void 0,void 0,function*(){this.disposed=!0;let e=[];this.disposables.forEach(t=>{let r=t.dispose();r&&e.push(r)}),yield Promise.all(e)})}getRegistration(e){return this.isRegistered(e)?this._registry.get(e):this.parent?this.parent.getRegistration(e):null}getAllRegistrations(e){return this.isRegistered(e)?this._registry.getAll(e):this.parent?this.parent.getAllRegistrations(e):null}construct(e,t){if(e instanceof Vx.DelayedConstructor)return e.createProxy(i=>this.resolve(i,t));let r=(()=>{let i=wi.typeInfo.get(e);if(!i||i.length===0){if(e.length===0)return new e;throw new Error(`TypeInfo not known for "${e.name}"`)}let s=i.map(this.resolveParams(t,e));return new e(...s)})();return Ux.isDisposable(r)&&this.disposables.add(r),r}resolveParams(e,t){return(r,i)=>{try{return _l.isTokenDescriptor(r)?_l.isTransformDescriptor(r)?r.multiple?this.resolve(r.transform).transform(this.resolveAll(r.token,new wl.default,r.isOptional),...r.transformArgs):this.resolve(r.transform).transform(this.resolve(r.token,e,r.isOptional),...r.transformArgs):r.multiple?this.resolveAll(r.token,new wl.default,r.isOptional):this.resolve(r.token,e,r.isOptional):_l.isTransformDescriptor(r)?this.resolve(r.transform,e).transform(this.resolve(r.token,e),...r.transformArgs):this.resolve(r,e)}catch(s){throw new Error($x.formatErrorCtor(t,i,s))}}}ensureNotDisposed(){if(this.disposed)throw new Error("This container has been disposed, you cannot interact with a disposed container")}};wi.instance=new wp;wi.default=wi.instance});var X2=v(Ep=>{"use strict";Object.defineProperty(Ep,"__esModule",{value:!0});var qx=Rs(),bi=Bi(),bp=hl(),Gx=Sp();function Wx(){return function(n){let e=qx.getParamInfo(n);return class extends n{constructor(...t){super(...t.concat(e.slice(t.length).map((r,i)=>{try{return bp.isTokenDescriptor(r)?bp.isTransformDescriptor(r)?r.multiple?bi.instance.resolve(r.transform).transform(bi.instance.resolveAll(r.token),...r.transformArgs):bi.instance.resolve(r.transform).transform(bi.instance.resolve(r.token),...r.transformArgs):r.multiple?bi.instance.resolveAll(r.token):bi.instance.resolve(r.token):bp.isTransformDescriptor(r)?bi.instance.resolve(r.transform).transform(bi.instance.resolve(r.token),...r.transformArgs):bi.instance.resolve(r)}catch(s){let a=i+t.length;throw new Error(Gx.formatErrorCtor(n,a,s))}})))}}}}o(Wx,"autoInjectable");Ep.default=Wx});var J2=v(Tp=>{"use strict";Object.defineProperty(Tp,"__esModule",{value:!0});var Hx=Rs();function zx(n,e){let t={token:n,multiple:!1,isOptional:e&&e.isOptional};return Hx.defineInjectionTokenMetadata(t)}o(zx,"inject");Tp.default=zx});var bl=v(Ap=>{"use strict";Object.defineProperty(Ap,"__esModule",{value:!0});var Qx=Rs(),Yx=Bi(),Z2=Bi();function Kx(n){return function(e){Yx.typeInfo.set(e,Qx.getParamInfo(e)),n&&n.token&&(Array.isArray(n.token)?n.token.forEach(t=>{Z2.instance.register(t,e)}):Z2.instance.register(n.token,e))}}o(Kx,"injectable");Ap.default=Kx});var ev=v(Cp=>{"use strict";Object.defineProperty(Cp,"__esModule",{value:!0});var Xx=(ol(),Sd(al)),Jx=Bi();function Zx(n=[]){return function(e){return n.forEach(t=>{var{token:r,options:i}=t,s=Xx.__rest(t,["token","options"]);return Jx.instance.register(r,s,i)}),e}}o(Zx,"registry");Cp.default=Zx});var tv=v(xp=>{"use strict";Object.defineProperty(xp,"__esModule",{value:!0});var eO=bl(),tO=Bi();function rO(){return function(n){eO.default()(n),tO.instance.registerSingleton(n)}}o(rO,"singleton");xp.default=rO});var rv=v(Op=>{"use strict";Object.defineProperty(Op,"__esModule",{value:!0});var nO=Rs();function iO(n,e){let t={token:n,multiple:!0,isOptional:e&&e.isOptional};return nO.defineInjectionTokenMetadata(t)}o(iO,"injectAll");Op.default=iO});var nv=v(Ip=>{"use strict";Object.defineProperty(Ip,"__esModule",{value:!0});var sO=Rs();function aO(n,e,...t){let r={token:n,multiple:!0,transform:e,transformArgs:t};return sO.defineInjectionTokenMetadata(r)}o(aO,"injectAllWithTransform");Ip.default=aO});var iv=v(Pp=>{"use strict";Object.defineProperty(Pp,"__esModule",{value:!0});var oO=Rs();function cO(n,e,...t){return oO.defineInjectionTokenMetadata(n,{transformToken:e,args:t})}o(cO,"injectWithTransform");Pp.default=cO});var sv=v(Dp=>{"use strict";Object.defineProperty(Dp,"__esModule",{value:!0});var uO=bl(),lO=Bi();function fO(n,e){return function(t){uO.default()(t),lO.instance.register(e||t,t,{lifecycle:n})}}o(fO,"scoped");Dp.default=fO});var av=v(on=>{"use strict";Object.defineProperty(on,"__esModule",{value:!0});var hO=X2();Object.defineProperty(on,"autoInjectable",{enumerable:!0,get:o(function(){return hO.default},"get")});var dO=J2();Object.defineProperty(on,"inject",{enumerable:!0,get:o(function(){return dO.default},"get")});var pO=bl();Object.defineProperty(on,"injectable",{enumerable:!0,get:o(function(){return pO.default},"get")});var mO=ev();Object.defineProperty(on,"registry",{enumerable:!0,get:o(function(){return mO.default},"get")});var gO=tv();Object.defineProperty(on,"singleton",{enumerable:!0,get:o(function(){return gO.default},"get")});var yO=rv();Object.defineProperty(on,"injectAll",{enumerable:!0,get:o(function(){return yO.default},"get")});var vO=nv();Object.defineProperty(on,"injectAllWithTransform",{enumerable:!0,get:o(function(){return vO.default},"get")});var SO=iv();Object.defineProperty(on,"injectWithTransform",{enumerable:!0,get:o(function(){return SO.default},"get")});var _O=sv();Object.defineProperty(on,"scoped",{enumerable:!0,get:o(function(){return _O.default},"get")})});var ov=v(Rp=>{"use strict";Object.defineProperty(Rp,"__esModule",{value:!0});function wO(n){let e;return t=>(e==null&&(e=n(t)),e)}o(wO,"instanceCachingFactory");Rp.default=wO});var cv=v(Fp=>{"use strict";Object.defineProperty(Fp,"__esModule",{value:!0});function bO(n){let e=new WeakMap;return t=>{let r=e.get(t);return r==null&&(r=n(t),e.set(t,r)),r}}o(bO,"instancePerContainerCachingFactory");Fp.default=bO});var uv=v(Np=>{"use strict";Object.defineProperty(Np,"__esModule",{value:!0});function EO(n,e,t,r=!0){let i,s;return a=>{let c=n(a);return(!r||s!==c)&&((s=c)?i=a.resolve(e):i=a.resolve(t)),i}}o(EO,"predicateAwareClassFactory");Np.default=EO});var lv=v(sc=>{"use strict";Object.defineProperty(sc,"__esModule",{value:!0});var TO=ov();Object.defineProperty(sc,"instanceCachingFactory",{enumerable:!0,get:o(function(){return TO.default},"get")});var AO=cv();Object.defineProperty(sc,"instancePerContainerCachingFactory",{enumerable:!0,get:o(function(){return AO.default},"get")});var CO=uv();Object.defineProperty(sc,"predicateAwareClassFactory",{enumerable:!0,get:o(function(){return CO.default},"get")})});var Le=v(qi=>{"use strict";Object.defineProperty(qi,"__esModule",{value:!0});var Lp=(ol(),Sd(al));if(typeof Reflect>"u"||!Reflect.getMetadata)throw new Error(`tsyringe requires a reflect polyfill. Please add 'import "reflect-metadata"' to the top of your entry point.`);var xO=G2();Object.defineProperty(qi,"Lifecycle",{enumerable:!0,get:o(function(){return xO.Lifecycle},"get")});Lp.__exportStar(av(),qi);Lp.__exportStar(lv(),qi);Lp.__exportStar(fp(),qi);var OO=fl();Object.defineProperty(qi,"delay",{enumerable:!0,get:o(function(){return OO.delay},"get")});var IO=Bi();Object.defineProperty(qi,"container",{enumerable:!0,get:o(function(){return IO.instance},"get")})});var fv=v(kp=>{"use strict";Object.defineProperty(kp,"__esModule",{value:!0});kp.default="ffffffff-ffff-ffff-ffff-ffffffffffff"});var hv=v(Mp=>{"use strict";Object.defineProperty(Mp,"__esModule",{value:!0});Mp.default="00000000-0000-0000-0000-000000000000"});var dv=v(jp=>{"use strict";Object.defineProperty(jp,"__esModule",{value:!0});jp.default=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-8][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$/i});var ac=v($p=>{"use strict";Object.defineProperty($p,"__esModule",{value:!0});var PO=dv();function DO(n){return typeof n=="string"&&PO.default.test(n)}o(DO,"validate");$p.default=DO});var oc=v(Vp=>{"use strict";Object.defineProperty(Vp,"__esModule",{value:!0});var RO=ac();function FO(n){if(!(0,RO.default)(n))throw TypeError("Invalid UUID");let e;return Uint8Array.of((e=parseInt(n.slice(0,8),16))>>>24,e>>>16&255,e>>>8&255,e&255,(e=parseInt(n.slice(9,13),16))>>>8,e&255,(e=parseInt(n.slice(14,18),16))>>>8,e&255,(e=parseInt(n.slice(19,23),16))>>>8,e&255,(e=parseInt(n.slice(24,36),16))/1099511627776&255,e/4294967296&255,e>>>24&255,e>>>16&255,e>>>8&255,e&255)}o(FO,"parse");Vp.default=FO});var Ei=v(cc=>{"use strict";Object.defineProperty(cc,"__esModule",{value:!0});cc.unsafeStringify=void 0;var NO=ac(),qt=[];for(let n=0;n<256;++n)qt.push((n+256).toString(16).slice(1));function pv(n,e=0){return(qt[n[e+0]]+qt[n[e+1]]+qt[n[e+2]]+qt[n[e+3]]+"-"+qt[n[e+4]]+qt[n[e+5]]+"-"+qt[n[e+6]]+qt[n[e+7]]+"-"+qt[n[e+8]]+qt[n[e+9]]+"-"+qt[n[e+10]]+qt[n[e+11]]+qt[n[e+12]]+qt[n[e+13]]+qt[n[e+14]]+qt[n[e+15]]).toLowerCase()}o(pv,"unsafeStringify");cc.unsafeStringify=pv;function LO(n,e=0){let t=pv(n,e);if(!(0,NO.default)(t))throw TypeError("Stringified UUID is invalid");return t}o(LO,"stringify");cc.default=LO});var Al=v(Up=>{"use strict";Object.defineProperty(Up,"__esModule",{value:!0});var kO=require("crypto"),Tl=new Uint8Array(256),El=Tl.length;function MO(){return El>Tl.length-16&&((0,kO.randomFillSync)(Tl),El=0),Tl.slice(El,El+=16)}o(MO,"rng");Up.default=MO});var Bp=v(lc=>{"use strict";Object.defineProperty(lc,"__esModule",{value:!0});lc.updateV1State=void 0;var mv=Al(),jO=Ei(),uc={};function $O(n,e,t){let r,i=n?._v6??!1;if(n){let s=Object.keys(n);s.length===1&&s[0]==="_v6"&&(n=void 0)}if(n)r=gv(n.random??n.rng?.()??(0,mv.default)(),n.msecs,n.nsecs,n.clockseq,n.node,e,t);else{let s=Date.now(),a=(0,mv.default)();yv(uc,s,a),r=gv(a,uc.msecs,uc.nsecs,i?void 0:uc.clockseq,i?void 0:uc.node,e,t)}return e??(0,jO.unsafeStringify)(r)}o($O,"v1");function yv(n,e,t){return n.msecs??=-1/0,n.nsecs??=0,e===n.msecs?(n.nsecs++,n.nsecs>=1e4&&(n.node=void 0,n.nsecs=0)):e>n.msecs?n.nsecs=0:e<n.msecs&&(n.node=void 0),n.node||(n.node=t.slice(10,16),n.node[0]|=1,n.clockseq=(t[8]<<8|t[9])&16383),n.msecs=e,n}o(yv,"updateV1State");lc.updateV1State=yv;function gv(n,e,t,r,i,s,a=0){if(n.length<16)throw new Error("Random bytes length must be >= 16");if(!s)s=new Uint8Array(16),a=0;else if(a<0||a+16>s.length)throw new RangeError(`UUID byte range ${a}:${a+15} is out of buffer bounds`);e??=Date.now(),t??=0,r??=(n[8]<<8|n[9])&16383,i??=n.slice(10,16),e+=122192928e5;let c=((e&268435455)*1e4+t)%4294967296;s[a++]=c>>>24&255,s[a++]=c>>>16&255,s[a++]=c>>>8&255,s[a++]=c&255;let u=e/4294967296*1e4&268435455;s[a++]=u>>>8&255,s[a++]=u&255,s[a++]=u>>>24&15|16,s[a++]=u>>>16&255,s[a++]=r>>>8|128,s[a++]=r&255;for(let l=0;l<6;++l)s[a++]=i[l];return s}o(gv,"v1Bytes");lc.default=$O});var Gp=v(qp=>{"use strict";Object.defineProperty(qp,"__esModule",{value:!0});var VO=oc(),UO=Ei();function BO(n){let e=typeof n=="string"?(0,VO.default)(n):n,t=qO(e);return typeof n=="string"?(0,UO.unsafeStringify)(t):t}o(BO,"v1ToV6");qp.default=BO;function qO(n){return Uint8Array.of((n[6]&15)<<4|n[7]>>4&15,(n[7]&15)<<4|(n[4]&240)>>4,(n[4]&15)<<4|(n[5]&240)>>4,(n[5]&15)<<4|(n[0]&240)>>4,(n[0]&15)<<4|(n[1]&240)>>4,(n[1]&15)<<4|(n[2]&240)>>4,96|n[2]&15,n[3],n[8],n[9],n[10],n[11],n[12],n[13],n[14],n[15])}o(qO,"_v1ToV6")});var vv=v(Wp=>{"use strict";Object.defineProperty(Wp,"__esModule",{value:!0});var GO=require("crypto");function WO(n){return Array.isArray(n)?n=Buffer.from(n):typeof n=="string"&&(n=Buffer.from(n,"utf8")),(0,GO.createHash)("md5").update(n).digest()}o(WO,"md5");Wp.default=WO});var fc=v(Ti=>{"use strict";Object.defineProperty(Ti,"__esModule",{value:!0});Ti.URL=Ti.DNS=Ti.stringToBytes=void 0;var Sv=oc(),HO=Ei();function _v(n){n=unescape(encodeURIComponent(n));let e=new Uint8Array(n.length);for(let t=0;t<n.length;++t)e[t]=n.charCodeAt(t);return e}o(_v,"stringToBytes");Ti.stringToBytes=_v;Ti.DNS="6ba7b810-9dad-11d1-80b4-00c04fd430c8";Ti.URL="6ba7b811-9dad-11d1-80b4-00c04fd430c8";function zO(n,e,t,r,i,s){let a=typeof t=="string"?_v(t):t,c=typeof r=="string"?(0,Sv.default)(r):r;if(typeof r=="string"&&(r=(0,Sv.default)(r)),r?.length!==16)throw TypeError("Namespace must be array-like (16 iterable integer values, 0-255)");let u=new Uint8Array(16+a.length);if(u.set(c),u.set(a,c.length),u=e(u),u[6]=u[6]&15|n,u[8]=u[8]&63|128,i){s=s||0;for(let l=0;l<16;++l)i[s+l]=u[l];return i}return(0,HO.unsafeStringify)(u)}o(zO,"v35");Ti.default=zO});var bv=v(Ls=>{"use strict";Object.defineProperty(Ls,"__esModule",{value:!0});Ls.URL=Ls.DNS=void 0;var QO=vv(),Hp=fc(),wv=fc();Object.defineProperty(Ls,"DNS",{enumerable:!0,get:o(function(){return wv.DNS},"get")});Object.defineProperty(Ls,"URL",{enumerable:!0,get:o(function(){return wv.URL},"get")});function zp(n,e,t,r){return(0,Hp.default)(48,QO.default,n,e,t,r)}o(zp,"v3");zp.DNS=Hp.DNS;zp.URL=Hp.URL;Ls.default=zp});var Ev=v(Qp=>{"use strict";Object.defineProperty(Qp,"__esModule",{value:!0});var YO=require("crypto");Qp.default={randomUUID:YO.randomUUID}});var Av=v(Yp=>{"use strict";Object.defineProperty(Yp,"__esModule",{value:!0});var Tv=Ev(),KO=Al(),XO=Ei();function JO(n,e,t){if(Tv.default.randomUUID&&!e&&!n)return Tv.default.randomUUID();n=n||{};let r=n.random??n.rng?.()??(0,KO.default)();if(r.length<16)throw new Error("Random bytes length must be >= 16");if(r[6]=r[6]&15|64,r[8]=r[8]&63|128,e){if(t=t||0,t<0||t+16>e.length)throw new RangeError(`UUID byte range ${t}:${t+15} is out of buffer bounds`);for(let i=0;i<16;++i)e[t+i]=r[i];return e}return(0,XO.unsafeStringify)(r)}o(JO,"v4");Yp.default=JO});var Cv=v(Kp=>{"use strict";Object.defineProperty(Kp,"__esModule",{value:!0});var ZO=require("crypto");function eI(n){return Array.isArray(n)?n=Buffer.from(n):typeof n=="string"&&(n=Buffer.from(n,"utf8")),(0,ZO.createHash)("sha1").update(n).digest()}o(eI,"sha1");Kp.default=eI});var Ov=v(ks=>{"use strict";Object.defineProperty(ks,"__esModule",{value:!0});ks.URL=ks.DNS=void 0;var tI=Cv(),Xp=fc(),xv=fc();Object.defineProperty(ks,"DNS",{enumerable:!0,get:o(function(){return xv.DNS},"get")});Object.defineProperty(ks,"URL",{enumerable:!0,get:o(function(){return xv.URL},"get")});function Jp(n,e,t,r){return(0,Xp.default)(80,tI.default,n,e,t,r)}o(Jp,"v5");Jp.DNS=Xp.DNS;Jp.URL=Xp.URL;ks.default=Jp});var Iv=v(Zp=>{"use strict";Object.defineProperty(Zp,"__esModule",{value:!0});var rI=Ei(),nI=Bp(),iI=Gp();function sI(n,e,t){n??={},t??=0;let r=(0,nI.default)({...n,_v6:!0},new Uint8Array(16));if(r=(0,iI.default)(r),e){for(let i=0;i<16;i++)e[t+i]=r[i];return e}return(0,rI.unsafeStringify)(r)}o(sI,"v6");Zp.default=sI});var Pv=v(em=>{"use strict";Object.defineProperty(em,"__esModule",{value:!0});var aI=oc(),oI=Ei();function cI(n){let e=typeof n=="string"?(0,aI.default)(n):n,t=uI(e);return typeof n=="string"?(0,oI.unsafeStringify)(t):t}o(cI,"v6ToV1");em.default=cI;function uI(n){return Uint8Array.of((n[3]&15)<<4|n[4]>>4&15,(n[4]&15)<<4|(n[5]&240)>>4,(n[5]&15)<<4|n[6]&15,n[7],(n[1]&15)<<4|(n[2]&240)>>4,(n[2]&15)<<4|(n[3]&240)>>4,16|(n[0]&240)>>4,(n[0]&15)<<4|(n[1]&240)>>4,n[8],n[9],n[10],n[11],n[12],n[13],n[14],n[15])}o(uI,"_v6ToV1")});var Nv=v(hc=>{"use strict";Object.defineProperty(hc,"__esModule",{value:!0});hc.updateV7State=void 0;var Dv=Al(),lI=Ei(),tm={};function fI(n,e,t){let r;if(n)r=Rv(n.random??n.rng?.()??(0,Dv.default)(),n.msecs,n.seq,e,t);else{let i=Date.now(),s=(0,Dv.default)();Fv(tm,i,s),r=Rv(s,tm.msecs,tm.seq,e,t)}return e??(0,lI.unsafeStringify)(r)}o(fI,"v7");function Fv(n,e,t){return n.msecs??=-1/0,n.seq??=0,e>n.msecs?(n.seq=t[6]<<23|t[7]<<16|t[8]<<8|t[9],n.msecs=e):(n.seq=n.seq+1|0,n.seq===0&&n.msecs++),n}o(Fv,"updateV7State");hc.updateV7State=Fv;function Rv(n,e,t,r,i=0){if(n.length<16)throw new Error("Random bytes length must be >= 16");if(!r)r=new Uint8Array(16),i=0;else if(i<0||i+16>r.length)throw new RangeError(`UUID byte range ${i}:${i+15} is out of buffer bounds`);return e??=Date.now(),t??=n[6]*127<<24|n[7]<<16|n[8]<<8|n[9],r[i++]=e/1099511627776&255,r[i++]=e/4294967296&255,r[i++]=e/16777216&255,r[i++]=e/65536&255,r[i++]=e/256&255,r[i++]=e&255,r[i++]=112|t>>>28&15,r[i++]=t>>>20&255,r[i++]=128|t>>>14&63,r[i++]=t>>>6&255,r[i++]=t<<2&255|n[10]&3,r[i++]=n[11],r[i++]=n[12],r[i++]=n[13],r[i++]=n[14],r[i++]=n[15],r}o(Rv,"v7Bytes");hc.default=fI});var Lv=v(rm=>{"use strict";Object.defineProperty(rm,"__esModule",{value:!0});var hI=ac();function dI(n){if(!(0,hI.default)(n))throw TypeError("Invalid UUID");return parseInt(n.slice(14,15),16)}o(dI,"version");rm.default=dI});var Pr=v(Je=>{"use strict";Object.defineProperty(Je,"__esModule",{value:!0});Je.version=Je.validate=Je.v7=Je.v6ToV1=Je.v6=Je.v5=Je.v4=Je.v3=Je.v1ToV6=Je.v1=Je.stringify=Je.parse=Je.NIL=Je.MAX=void 0;var pI=fv();Object.defineProperty(Je,"MAX",{enumerable:!0,get:o(function(){return pI.default},"get")});var mI=hv();Object.defineProperty(Je,"NIL",{enumerable:!0,get:o(function(){return mI.default},"get")});var gI=oc();Object.defineProperty(Je,"parse",{enumerable:!0,get:o(function(){return gI.default},"get")});var yI=Ei();Object.defineProperty(Je,"stringify",{enumerable:!0,get:o(function(){return yI.default},"get")});var vI=Bp();Object.defineProperty(Je,"v1",{enumerable:!0,get:o(function(){return vI.default},"get")});var SI=Gp();Object.defineProperty(Je,"v1ToV6",{enumerable:!0,get:o(function(){return SI.default},"get")});var _I=bv();Object.defineProperty(Je,"v3",{enumerable:!0,get:o(function(){return _I.default},"get")});var wI=Av();Object.defineProperty(Je,"v4",{enumerable:!0,get:o(function(){return wI.default},"get")});var bI=Ov();Object.defineProperty(Je,"v5",{enumerable:!0,get:o(function(){return bI.default},"get")});var EI=Iv();Object.defineProperty(Je,"v6",{enumerable:!0,get:o(function(){return EI.default},"get")});var TI=Pv();Object.defineProperty(Je,"v6ToV1",{enumerable:!0,get:o(function(){return TI.default},"get")});var AI=Nv();Object.defineProperty(Je,"v7",{enumerable:!0,get:o(function(){return AI.default},"get")});var CI=ac();Object.defineProperty(Je,"validate",{enumerable:!0,get:o(function(){return CI.default},"get")});var xI=Lv();Object.defineProperty(Je,"version",{enumerable:!0,get:o(function(){return xI.default},"get")})});var zr=v(Cl=>{"use strict";Object.defineProperty(Cl,"__esModule",{value:!0});Cl.MetadataHelpers=void 0;var nm=class{static{o(this,"MetadataHelpers")}static findAllReferencingProperties(e,t){let r=[];for(let[i,s]of Object.entries(e))this.containsReference(s,t)&&r.push(i);return r}static findReferencingProperty(e,t){for(let[r,i]of Object.entries(e))if(this.containsReference(i,t))return r}static containsReference(e,t){if(!e)return!1;let r=t.replace(/\.md$/,"");if(typeof e=="string"){let i=/\[\[([^\[\]]+)\]\]/g,s;for(;(s=i.exec(e))!==null;){let c=s[1].split("|")[0].trim();if(c===r||c.endsWith(`/${r}`))return!0}return!1}return Array.isArray(e)?e.some(i=>this.containsReference(i,t)):!1}static isAssetArchived(e){let t=e?.exo__Asset_isArchived;if(t!=null){if(t===!0||t===1)return!0;if(typeof t=="string"){let i=t.toLowerCase().trim();if(i==="true"||i==="yes"||i==="1")return!0}if(typeof t=="boolean")return t}let r=e?.archived;if(r==null)return!1;if(typeof r=="boolean")return r;if(typeof r=="number")return r!==0;if(typeof r=="string"){let i=r.toLowerCase().trim();return i==="true"||i==="yes"||i==="1"}return!1}static getPropertyValue(e,t){return t==="Name"||t==="title"?e.title:t==="created"?e.created:t==="modified"?e.modified:t==="path"?e.path:e.metadata?.[t]}static ensureQuoted(e){return!e||e==='""'?'""':e.startsWith('"')&&e.endsWith('"')?e:`"${e}"`}static buildFileContent(e,t){let r=Object.entries(e).map(([s,a])=>{if(Array.isArray(a)){let c=a.map(u=>` - ${u}`).join(`
34
34
  `);return`${s}:
@@ -58,7 +58,7 @@ ${Object.entries(t).map(([a,c])=>`${a}: ${c}`).join(`
58
58
  `)}
59
59
  ---`,s=e.startsWith(`
60
60
  `)?"":`
61
- `;return`${i}${s}${e}`}getPropertyValue(e,t){let r=new RegExp(`${this.escapeRegex(t)}:\\s*(.*)$`,"m"),i=e.match(r);return i?i[1].trim():null}escapeRegex(e){return e.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}};Nl.FrontmatterService=Fl;Fl.FRONTMATTER_REGEX=/^---\n([\s\S]*?)\n---/});var Ll=v($s=>{"use strict";var rP=$s&&$s.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s};Object.defineProperty($s,"__esModule",{value:!0});$s.EffortStatusWorkflow=void 0;var nP=Le(),Mr=er(),dm=class{static{o(this,"EffortStatusWorkflow")}getPreviousStatus(e,t){let r=this.normalizeStatus(e);if(r===Mr.EffortStatus.DRAFT)return null;if(r===Mr.EffortStatus.BACKLOG)return this.wrapStatus(Mr.EffortStatus.DRAFT);if(r===Mr.EffortStatus.ANALYSIS)return this.wrapStatus(Mr.EffortStatus.BACKLOG);if(r===Mr.EffortStatus.TODO)return this.wrapStatus(Mr.EffortStatus.ANALYSIS);if(r===Mr.EffortStatus.DOING)return this.hasInstanceClass(t,Mr.AssetClass.PROJECT)?this.wrapStatus(Mr.EffortStatus.TODO):this.wrapStatus(Mr.EffortStatus.BACKLOG);if(r===Mr.EffortStatus.DONE)return this.wrapStatus(Mr.EffortStatus.DOING)}normalizeStatus(e){return e.replace(/["'[\]]/g,"").trim()}wrapStatus(e){return`"[[${e}]]"`}hasInstanceClass(e,t){return e?(Array.isArray(e)?e:[e]).some(i=>i.replace(/["'[\]]/g,"").trim()===t):!1}};$s.EffortStatusWorkflow=dm;$s.EffortStatusWorkflow=dm=rP([(0,nP.injectable)()],dm)});var kl=v(un=>{"use strict";var iP=un&&un.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},sP=un&&un.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)},aP=un&&un.__param||function(n,e){return function(t,r){e(t,r,n)}};Object.defineProperty(un,"__esModule",{value:!0});un.StatusTimestampService=void 0;var zv=Le(),oP=Gi(),pc=Gt(),cP=ot(),pm=class{static{o(this,"StatusTimestampService")}constructor(e){this.vault=e,this.frontmatterService=new oP.FrontmatterService}async addStartTimestamp(e){let t=await this.vault.read(e),r=pc.DateFormatter.toLocalTimestamp(new Date),i=this.frontmatterService.updateProperty(t,"ems__Effort_startTimestamp",r);await this.vault.modify(e,i)}async addEndTimestamp(e,t){let r=await this.vault.read(e),i=t||new Date,s=pc.DateFormatter.toLocalTimestamp(i),a=this.frontmatterService.updateProperty(r,"ems__Effort_endTimestamp",s);await this.vault.modify(e,a)}async addResolutionTimestamp(e){let t=await this.vault.read(e),r=pc.DateFormatter.toLocalTimestamp(new Date),i=this.frontmatterService.updateProperty(t,"ems__Effort_resolutionTimestamp",r);await this.vault.modify(e,i)}async addEndAndResolutionTimestamps(e,t){let r=await this.vault.read(e),i=t||new Date,s=pc.DateFormatter.toLocalTimestamp(i),a=this.frontmatterService.updateProperty(r,"ems__Effort_endTimestamp",s);a=this.frontmatterService.updateProperty(a,"ems__Effort_resolutionTimestamp",s),await this.vault.modify(e,a)}async removeStartTimestamp(e){let t=await this.vault.read(e),r=this.frontmatterService.removeProperty(t,"ems__Effort_startTimestamp");await this.vault.modify(e,r)}async removeEndTimestamp(e){let t=await this.vault.read(e),r=this.frontmatterService.removeProperty(t,"ems__Effort_endTimestamp");await this.vault.modify(e,r)}async removeResolutionTimestamp(e){let t=await this.vault.read(e),r=this.frontmatterService.removeProperty(t,"ems__Effort_resolutionTimestamp");await this.vault.modify(e,r)}async removeEndAndResolutionTimestamps(e){let t=await this.vault.read(e),r=this.frontmatterService.removeProperty(t,"ems__Effort_endTimestamp");r=this.frontmatterService.removeProperty(r,"ems__Effort_resolutionTimestamp"),await this.vault.modify(e,r)}async shiftPlannedEndTimestamp(e,t){let r=await this.vault.read(e),i=this.frontmatterService.parse(r);if(!i.exists)return;let s=this.frontmatterService.getPropertyValue(i.content,"ems__Effort_plannedEndTimestamp");if(!s)return;let a=new Date(s.replace(/["']/g,""));if(isNaN(a.getTime()))return;let c=new Date(a.getTime()+t),u=pc.DateFormatter.toLocalTimestamp(c),l=this.frontmatterService.updateProperty(r,"ems__Effort_plannedEndTimestamp",u);await this.vault.modify(e,l)}};un.StatusTimestampService=pm;un.StatusTimestampService=pm=iP([(0,zv.injectable)(),aP(0,(0,zv.inject)(cP.DI_TOKENS.IVaultAdapter)),sP("design:paramtypes",[Object])],pm)});var gm=v(ln=>{"use strict";var uP=ln&&ln.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},lP=ln&&ln.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)},fP=ln&&ln.__param||function(n,e){return function(t,r){e(t,r,n)}};Object.defineProperty(ln,"__esModule",{value:!0});ln.TaskStatusService=void 0;var Qv=Le(),hP=Gi(),Vs=Gt(),dP=Ll(),pP=kl(),mP=ot(),mm=class{static{o(this,"TaskStatusService")}constructor(e,t,r){this.vault=e,this.workflow=t,this.timestampService=r,this.frontmatterService=new hP.FrontmatterService}async setDraftStatus(e){await this.updateStatus(e,"ems__EffortStatusDraft")}async moveToBacklog(e){await this.updateStatus(e,"ems__EffortStatusBacklog")}async moveToAnalysis(e){await this.updateStatus(e,"ems__EffortStatusAnalysis")}async moveToToDo(e){await this.updateStatus(e,"ems__EffortStatusToDo")}async startEffort(e){let t=await this.vault.read(e),r=Vs.DateFormatter.toLocalTimestamp(new Date),i=this.frontmatterService.updateProperty(t,"ems__Effort_status",'"[[ems__EffortStatusDoing]]"');i=this.frontmatterService.updateProperty(i,"ems__Effort_startTimestamp",r),await this.vault.modify(e,i)}async markTaskAsDone(e){let t=await this.vault.read(e),r=Vs.DateFormatter.toLocalTimestamp(new Date),i=this.frontmatterService.updateProperty(t,"ems__Effort_status",'"[[ems__EffortStatusDone]]"');i=this.frontmatterService.updateProperty(i,"ems__Effort_endTimestamp",r),i=this.frontmatterService.updateProperty(i,"ems__Effort_resolutionTimestamp",r),await this.vault.modify(e,i)}async syncEffortEndTimestamp(e,t){await this.timestampService.addEndAndResolutionTimestamps(e,t)}async shiftPlannedEndTimestamp(e,t){await this.timestampService.shiftPlannedEndTimestamp(e,t)}async trashEffort(e,t){let r=await this.vault.read(e),i=Vs.DateFormatter.toLocalTimestamp(new Date),s=this.frontmatterService.updateProperty(r,"ems__Effort_status",'"[[ems__EffortStatusTrashed]]"');s=this.frontmatterService.updateProperty(s,"ems__Effort_resolutionTimestamp",i),t&&(s=this.appendTrashReason(s,t)),await this.vault.modify(e,s)}appendTrashReason(e,t){let r=`
61
+ `;return`${i}${s}${e}`}getPropertyValue(e,t){let r=new RegExp(`${this.escapeRegex(t)}:\\s*(.*)$`,"m"),i=e.match(r);return i?i[1].trim():null}escapeRegex(e){return e.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}};Nl.FrontmatterService=Fl;Fl.FRONTMATTER_REGEX=/^---\n([\s\S]*?)\n---/});var Ll=v($s=>{"use strict";var rP=$s&&$s.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s};Object.defineProperty($s,"__esModule",{value:!0});$s.EffortStatusWorkflow=void 0;var nP=Le(),kr=er(),dm=class{static{o(this,"EffortStatusWorkflow")}getPreviousStatus(e,t){let r=this.normalizeStatus(e);if(r===kr.EffortStatus.DRAFT)return null;if(r===kr.EffortStatus.BACKLOG)return this.wrapStatus(kr.EffortStatus.DRAFT);if(r===kr.EffortStatus.ANALYSIS)return this.wrapStatus(kr.EffortStatus.BACKLOG);if(r===kr.EffortStatus.TODO)return this.wrapStatus(kr.EffortStatus.ANALYSIS);if(r===kr.EffortStatus.DOING)return this.hasInstanceClass(t,kr.AssetClass.PROJECT)?this.wrapStatus(kr.EffortStatus.TODO):this.wrapStatus(kr.EffortStatus.BACKLOG);if(r===kr.EffortStatus.DONE)return this.wrapStatus(kr.EffortStatus.DOING)}normalizeStatus(e){return e.replace(/["'[\]]/g,"").trim()}wrapStatus(e){return`"[[${e}]]"`}hasInstanceClass(e,t){return e?(Array.isArray(e)?e:[e]).some(i=>i.replace(/["'[\]]/g,"").trim()===t):!1}};$s.EffortStatusWorkflow=dm;$s.EffortStatusWorkflow=dm=rP([(0,nP.injectable)()],dm)});var kl=v(un=>{"use strict";var iP=un&&un.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},sP=un&&un.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)},aP=un&&un.__param||function(n,e){return function(t,r){e(t,r,n)}};Object.defineProperty(un,"__esModule",{value:!0});un.StatusTimestampService=void 0;var zv=Le(),oP=Gi(),pc=Gt(),cP=ot(),pm=class{static{o(this,"StatusTimestampService")}constructor(e){this.vault=e,this.frontmatterService=new oP.FrontmatterService}async addStartTimestamp(e){let t=await this.vault.read(e),r=pc.DateFormatter.toLocalTimestamp(new Date),i=this.frontmatterService.updateProperty(t,"ems__Effort_startTimestamp",r);await this.vault.modify(e,i)}async addEndTimestamp(e,t){let r=await this.vault.read(e),i=t||new Date,s=pc.DateFormatter.toLocalTimestamp(i),a=this.frontmatterService.updateProperty(r,"ems__Effort_endTimestamp",s);await this.vault.modify(e,a)}async addResolutionTimestamp(e){let t=await this.vault.read(e),r=pc.DateFormatter.toLocalTimestamp(new Date),i=this.frontmatterService.updateProperty(t,"ems__Effort_resolutionTimestamp",r);await this.vault.modify(e,i)}async addEndAndResolutionTimestamps(e,t){let r=await this.vault.read(e),i=t||new Date,s=pc.DateFormatter.toLocalTimestamp(i),a=this.frontmatterService.updateProperty(r,"ems__Effort_endTimestamp",s);a=this.frontmatterService.updateProperty(a,"ems__Effort_resolutionTimestamp",s),await this.vault.modify(e,a)}async removeStartTimestamp(e){let t=await this.vault.read(e),r=this.frontmatterService.removeProperty(t,"ems__Effort_startTimestamp");await this.vault.modify(e,r)}async removeEndTimestamp(e){let t=await this.vault.read(e),r=this.frontmatterService.removeProperty(t,"ems__Effort_endTimestamp");await this.vault.modify(e,r)}async removeResolutionTimestamp(e){let t=await this.vault.read(e),r=this.frontmatterService.removeProperty(t,"ems__Effort_resolutionTimestamp");await this.vault.modify(e,r)}async removeEndAndResolutionTimestamps(e){let t=await this.vault.read(e),r=this.frontmatterService.removeProperty(t,"ems__Effort_endTimestamp");r=this.frontmatterService.removeProperty(r,"ems__Effort_resolutionTimestamp"),await this.vault.modify(e,r)}async shiftPlannedEndTimestamp(e,t){let r=await this.vault.read(e),i=this.frontmatterService.parse(r);if(!i.exists)return;let s=this.frontmatterService.getPropertyValue(i.content,"ems__Effort_plannedEndTimestamp");if(!s)return;let a=new Date(s.replace(/["']/g,""));if(isNaN(a.getTime()))return;let c=new Date(a.getTime()+t),u=pc.DateFormatter.toLocalTimestamp(c),l=this.frontmatterService.updateProperty(r,"ems__Effort_plannedEndTimestamp",u);await this.vault.modify(e,l)}};un.StatusTimestampService=pm;un.StatusTimestampService=pm=iP([(0,zv.injectable)(),aP(0,(0,zv.inject)(cP.DI_TOKENS.IVaultAdapter)),sP("design:paramtypes",[Object])],pm)});var gm=v(ln=>{"use strict";var uP=ln&&ln.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},lP=ln&&ln.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)},fP=ln&&ln.__param||function(n,e){return function(t,r){e(t,r,n)}};Object.defineProperty(ln,"__esModule",{value:!0});ln.TaskStatusService=void 0;var Qv=Le(),hP=Gi(),Vs=Gt(),dP=Ll(),pP=kl(),mP=ot(),mm=class{static{o(this,"TaskStatusService")}constructor(e,t,r){this.vault=e,this.workflow=t,this.timestampService=r,this.frontmatterService=new hP.FrontmatterService}async setDraftStatus(e){await this.updateStatus(e,"ems__EffortStatusDraft")}async moveToBacklog(e){await this.updateStatus(e,"ems__EffortStatusBacklog")}async moveToAnalysis(e){await this.updateStatus(e,"ems__EffortStatusAnalysis")}async moveToToDo(e){await this.updateStatus(e,"ems__EffortStatusToDo")}async startEffort(e){let t=await this.vault.read(e),r=Vs.DateFormatter.toLocalTimestamp(new Date),i=this.frontmatterService.updateProperty(t,"ems__Effort_status",'"[[ems__EffortStatusDoing]]"');i=this.frontmatterService.updateProperty(i,"ems__Effort_startTimestamp",r),await this.vault.modify(e,i)}async markTaskAsDone(e){let t=await this.vault.read(e),r=Vs.DateFormatter.toLocalTimestamp(new Date),i=this.frontmatterService.updateProperty(t,"ems__Effort_status",'"[[ems__EffortStatusDone]]"');i=this.frontmatterService.updateProperty(i,"ems__Effort_endTimestamp",r),i=this.frontmatterService.updateProperty(i,"ems__Effort_resolutionTimestamp",r),await this.vault.modify(e,i)}async syncEffortEndTimestamp(e,t){await this.timestampService.addEndAndResolutionTimestamps(e,t)}async shiftPlannedEndTimestamp(e,t){await this.timestampService.shiftPlannedEndTimestamp(e,t)}async trashEffort(e,t){let r=await this.vault.read(e),i=Vs.DateFormatter.toLocalTimestamp(new Date),s=this.frontmatterService.updateProperty(r,"ems__Effort_status",'"[[ems__EffortStatusTrashed]]"');s=this.frontmatterService.updateProperty(s,"ems__Effort_resolutionTimestamp",i),t&&(s=this.appendTrashReason(s,t)),await this.vault.modify(e,s)}appendTrashReason(e,t){let r=`
62
62
 
63
63
  ## Trash Reason
64
64
 
@@ -103,7 +103,7 @@ ${i}
103
103
 
104
104
  `)}cleanMarkdownContent(e){let t=e.replace(/^---[\s\S]*?---\n*/m,"").replace(/```[\s\S]*?```/g,r=>r.replace(/```\w*\n?|\n?```/g,"")).replace(/`([^`]+)`/g,"$1").replace(/\[\[([^\]|]+)(?:\|([^\]]+))?\]\]/g,(r,i,s)=>s||i).replace(/\[([^\]]+)\]\([^)]+\)/g,"$1").replace(/!\[[^\]]*\]\([^)]+\)/g,"").replace(/^---+$/gm,"");return t=this.removeHtmlTags(t),t.replace(/\n{3,}/g,`
105
105
 
106
- `).trim()}removeHtmlTags(e){let t=/<[^>]*>/g,r=e,i;do i=r,r=r.replace(t,"");while(r!==i);return r}cleanWikiLink(e){return e.replace(/^\[\[/,"").replace(/\]\]$/,"").replace(/^"/,"").replace(/"$/,"")}getStats(){return{requestCount:this.requestCount,tokenCount:this.tokenCount}}resetStats(){this.requestCount=0,this.tokenCount=0}};Qr.EmbeddingService=Zm;Qr.EmbeddingService=Zm=JD([(0,eR.injectable)(),ZD("design:paramtypes",[Object])],Zm)});var ng=v(Yr=>{"use strict";var tR=Yr&&Yr.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},rR=Yr&&Yr.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)};Object.defineProperty(Yr,"__esModule",{value:!0});Yr.VectorStore=Yr.DEFAULT_VECTOR_STORE_CONFIG=void 0;var nR=Le(),tg=Wi();Yr.DEFAULT_VECTOR_STORE_CONFIG={maxEntries:0,similarityThreshold:.7};var rg=class{static{o(this,"VectorStore")}constructor(e={}){this.entries=new Map,this.createdAt=new Date,this.updatedAt=new Date,this.config={...Yr.DEFAULT_VECTOR_STORE_CONFIG,...e}}setConfig(e){this.config={...this.config,...e}}upsert(e){if(!e.vector||e.vector.length===0)throw new Error("Vector cannot be empty");let t=this.entries.values().next().value;if(t&&t.vector.length!==e.vector.length)throw new Error(`Vector dimension mismatch: expected ${t.vector.length}, got ${e.vector.length}`);if(this.config.maxEntries&&this.config.maxEntries>0&&!this.entries.has(e.id)&&this.entries.size>=this.config.maxEntries){let r=null,i=1/0;for(let[s,a]of this.entries)a.timestamp<i&&(i=a.timestamp,r=s);r&&(this.entries.delete(r),tg.LoggingService.debug(`VectorStore: Evicted oldest entry ${r}`))}this.entries.set(e.id,e),this.updatedAt=new Date}remove(e){let t=this.entries.delete(e);return t&&(this.updatedAt=new Date),t}get(e){return this.entries.get(e)}has(e){return this.entries.has(e)}needsUpdate(e,t){let r=this.entries.get(e);return r?r.contentHash!==t:!0}getAllIds(){return Array.from(this.entries.keys())}size(){return this.entries.size}clear(){this.entries.clear(),this.updatedAt=new Date}search(e,t=10){if(this.entries.size===0)return[];let r=this.entries.values().next().value;if(r&&r.vector.length!==e.length)throw new Error(`Query vector dimension mismatch: expected ${r.vector.length}, got ${e.length}`);let i=[],s=this.config.similarityThreshold??.7;for(let a of this.entries.values()){let c=this.cosineSimilarity(e,a.vector);c>=s&&i.push({entry:a,score:c})}return i.sort((a,c)=>c.score-a.score),i.slice(0,t)}findSimilar(e,t=10){let r=this.entries.get(e);return r?this.search(r.vector,t+1).filter(s=>s.entry.id!==e).slice(0,t):[]}cosineSimilarity(e,t){if(e.length!==t.length)throw new Error("Vectors must have the same dimension");let r=0,i=0,s=0;for(let a=0;a<e.length;a++)r+=e[a]*t[a],i+=e[a]*e[a],s+=t[a]*t[a];return i=Math.sqrt(i),s=Math.sqrt(s),i===0||s===0?0:r/(i*s)}serialize(){return{version:1,entries:Array.from(this.entries.values()).map(e=>({id:e.id,vector:e.vector,metadata:e.metadata,timestamp:e.timestamp,contentHash:e.contentHash})),createdAt:this.createdAt.toISOString(),updatedAt:this.updatedAt.toISOString()}}deserialize(e){if(e.version!==1)throw new Error(`Unsupported VectorStore version: ${e.version}`);this.entries.clear();for(let t of e.entries)this.entries.set(t.id,{id:t.id,vector:t.vector,metadata:t.metadata,timestamp:t.timestamp,contentHash:t.contentHash});this.createdAt=new Date(e.createdAt),this.updatedAt=new Date(e.updatedAt),tg.LoggingService.debug(`VectorStore: Loaded ${this.entries.size} entries from persistence`)}getStats(){let t=this.entries.values().next().value?.vector.length??null,i=(t?this.entries.size*t*8:0)/(1024*1024);return{entryCount:this.entries.size,dimension:t,createdAt:this.createdAt.toISOString(),updatedAt:this.updatedAt.toISOString(),estimatedMemoryMB:Math.round(i*100)/100}}pruneInvalidEntries(e){let t=[];for(let r of this.entries.keys())e.has(r)||t.push(r);for(let r of t)this.entries.delete(r);return t.length>0&&(this.updatedAt=new Date,tg.LoggingService.debug(`VectorStore: Pruned ${t.length} invalid entries`)),t.length}};Yr.VectorStore=rg;Yr.VectorStore=rg=tR([(0,nR.injectable)(),rR("design:paramtypes",[Object])],rg)});var _S=v(Kr=>{"use strict";var iR=Kr&&Kr.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},sR=Kr&&Kr.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)};Object.defineProperty(Kr,"__esModule",{value:!0});Kr.SemanticSearchService=Kr.DEFAULT_SEMANTIC_SEARCH_CONFIG=void 0;var aR=Le(),vc=Wi(),SS=eg(),oR=ng();Kr.DEFAULT_SEMANTIC_SEARCH_CONFIG={embedding:SS.DEFAULT_EMBEDDING_CONFIG,maxResults:10,minSimilarity:.7,autoEmbed:!0,batchSize:20};var ig=class{static{o(this,"SemanticSearchService")}constructor(e={}){this.indexingStatus={isIndexing:!1,totalFiles:0,indexedFiles:0,failedFiles:0,progress:0},this.abortController=null,this.config={...Kr.DEFAULT_SEMANTIC_SEARCH_CONFIG,...e},this.embeddingService=new SS.EmbeddingService(this.config.embedding),this.vectorStore=new oR.VectorStore({similarityThreshold:this.config.minSimilarity})}setConfig(e){this.config={...this.config,...e},e.embedding&&this.embeddingService.setConfig(e.embedding),e.minSimilarity!==void 0&&this.vectorStore.setConfig({similarityThreshold:e.minSimilarity})}getConfig(){return{...this.config,embedding:this.embeddingService.getConfig()}}isConfigured(){return this.embeddingService.isConfigured()}getIndexingStatus(){return{...this.indexingStatus}}async search(e,t){if(!this.isConfigured())throw new Error("SemanticSearchService is not properly configured");if(!e.trim())return[];let r=await this.embeddingService.generateEmbedding(e),i=t??this.config.maxResults;return this.vectorStore.search(r.embedding,i).map(a=>this.toSearchResult(a))}async findSimilar(e,t){let r=t??this.config.maxResults;return this.vectorStore.findSimilar(e,r).map(s=>this.toSearchResult(s))}toSearchResult(e){let t=e.entry.metadata??{};return{path:e.entry.id,score:e.score,label:t.exo__Asset_label,instanceClass:this.extractInstanceClass(t),metadata:t}}extractInstanceClass(e){let t=e.exo__Instance_class;if(t){if(Array.isArray(t)){let r=t[0];return typeof r=="string"?this.cleanWikiLink(r):void 0}return typeof t=="string"?this.cleanWikiLink(t):void 0}}cleanWikiLink(e){return e.replace(/^\[\[/,"").replace(/\]\]$/,"").replace(/^"/,"").replace(/"$/,"")}async indexFile(e,t,r){if(!this.isConfigured())return!1;try{let i=await this.hashContent(t);if(!this.vectorStore.needsUpdate(e,i))return!0;let s=this.embeddingService.prepareTextForEmbedding(t,r),a=await this.embeddingService.generateEmbedding(s);return this.vectorStore.upsert({id:e,vector:a.embedding,metadata:r,timestamp:Date.now(),contentHash:i}),vc.LoggingService.debug(`Indexed file: ${e}`),!0}catch(i){return vc.LoggingService.warn(`Failed to index file ${e}: ${i instanceof Error?i.message:"Unknown error"}`),!1}}removeFromIndex(e){return this.vectorStore.remove(e)}async indexBatch(e){if(!this.isConfigured())return{indexed:0,failed:e.length};let t=[],r=new Map;for(let c of e){let u=await this.hashContent(c.content);if(!this.vectorStore.needsUpdate(c.path,u))continue;let l=this.embeddingService.prepareTextForEmbedding(c.content,c.metadata);t.push({id:c.path,text:l}),r.set(c.path,{content:c.content,metadata:c.metadata,contentHash:u})}if(t.length===0)return{indexed:0,failed:0};let i=await this.embeddingService.generateBatchEmbeddings(t),s=0,a=0;for(let c of i){let u=r.get(c.id);u&&(c.result?(this.vectorStore.upsert({id:c.id,vector:c.result.embedding,metadata:u.metadata,timestamp:Date.now(),contentHash:u.contentHash}),s++):(a++,vc.LoggingService.warn(`Failed to embed ${c.id}: ${c.error||"Unknown error"}`)))}return{indexed:s,failed:a}}async indexAll(e,t,r){if(!this.isConfigured())throw new Error("SemanticSearchService is not properly configured");if(this.indexingStatus.isIndexing)throw new Error("Indexing is already in progress");this.abortController=new AbortController,this.indexingStatus={isIndexing:!0,totalFiles:e.length,indexedFiles:0,failedFiles:0,progress:0};let i=0,s=0,a=!1;try{for(let c=0;c<e.length;c+=this.config.batchSize){if(this.abortController.signal.aborted){a=!0;break}let u=e.slice(c,c+this.config.batchSize),l=[];for(let h of u){if(this.abortController.signal.aborted){a=!0;break}let d=await t(h);d?l.push({path:h,content:d.content,metadata:d.metadata}):s++}if(a)break;let f=await this.indexBatch(l);i+=f.indexed,s+=f.failed,this.indexingStatus.indexedFiles=c+u.length,this.indexingStatus.failedFiles=s,this.indexingStatus.progress=Math.round(this.indexingStatus.indexedFiles/e.length*100),r&&r({...this.indexingStatus})}}finally{this.indexingStatus.isIndexing=!1,this.abortController=null}return{indexed:i,failed:s,aborted:a}}abortIndexing(){this.abortController&&(this.abortController.abort(),vc.LoggingService.debug("Indexing aborted by user"))}isIndexed(e){return this.vectorStore.has(e)}getIndexedPaths(){return this.vectorStore.getAllIds()}getIndexedCount(){return this.vectorStore.size()}clearIndex(){this.vectorStore.clear(),vc.LoggingService.debug("Semantic search index cleared")}pruneDeletedFiles(e){return this.vectorStore.pruneInvalidEntries(e)}serializeIndex(){return this.vectorStore.serialize()}deserializeIndex(e){this.vectorStore.deserialize(e)}getStats(){return{indexStats:this.vectorStore.getStats(),embeddingStats:this.embeddingService.getStats()}}async hashContent(e){let r=new TextEncoder().encode(e),i=await crypto.subtle.digest("SHA-256",r);return Array.from(new Uint8Array(i)).map(a=>a.toString(16).padStart(2,"0")).join("")}};Kr.SemanticSearchService=ig;Kr.SemanticSearchService=ig=iR([(0,aR.injectable)(),sR("design:paramtypes",[Object])],ig)});var wS=v(Vl=>{"use strict";Object.defineProperty(Vl,"__esModule",{value:!0});Vl.GraphQueryService=void 0;var Sc=Xe(),cR=ft(),Hi=Wr(),uR=$d(),Yn={INSTANCE_CLASS:Hi.Namespace.EXO.term("Instance_class"),ASSET_LABEL:Hi.Namespace.EXO.term("Asset_label"),ASSET_PROTOTYPE:Hi.Namespace.EXO.term("Asset_prototype"),ASSET_IS_ARCHIVED:Hi.Namespace.EXO.term("Asset_isArchived"),EFFORT_PARENT:Hi.Namespace.EMS.term("Effort_parent"),REFERENCES:Hi.Namespace.EXO.term("references"),REFERENCED_BY:Hi.Namespace.EXO.term("referencedBy"),RDF_TYPE:Hi.Namespace.RDF.term("type")},sg=class{static{o(this,"GraphQueryService")}constructor(e,t={}){this.subscribers=new Set,this.nodeCache=new Map,this.lastCacheUpdate=0,this.tripleStore=e,this.config={defaultLimit:t.defaultLimit??100,maxLimit:t.maxLimit??1e4,defaultDepth:t.defaultDepth??2,maxDepth:t.maxDepth??10,includeArchivedByDefault:t.includeArchivedByDefault??!1,cacheTTL:t.cacheTTL??3e4}}async loadGraphData(e={}){let t=Date.now(),r=await this.loadNodes(e),i=await this.loadEdges(r,e),s=this.computeStats(r,i),a=Date.now()-t;return a>100&&r.length>0&&console.debug(`GraphQueryService: loaded ${r.length} nodes in ${a}ms (${(a/r.length).toFixed(2)}ms/node)`),{nodes:r,edges:i,stats:s,lastUpdated:Date.now(),version:1}}async loadNodesIncremental(e={}){let t=Math.min(e.limit??this.config.defaultLimit,this.config.maxLimit),r=e.offset??0,i=await this.loadNodes({...e,limit:t+1,offset:r}),s=i.length>t,a=s?i.slice(0,t):i,c=await this.loadEdges(a,e);return{nodes:a,edges:c,hasMore:s,totalCount:void 0,cursor:s?String(r+t):void 0}}async loadConnectedNodes(e,t={}){let r=Math.min(t.depth??this.config.defaultDepth,this.config.maxDepth),i=Math.min(t.limit??this.config.maxLimit,this.config.maxLimit),s=new Set,a=[{id:e,currentDepth:0}],c=[];for(;a.length>0&&c.length<i;){let{id:l,currentDepth:f}=a.shift();if(s.has(l))continue;s.add(l);let h=await this.getNodeById(l,t);if(h&&(c.push(h),f<r)){let d=await this.getConnectedNodeIds(l);for(let p of d)s.has(p)||a.push({id:p,currentDepth:f+1})}}let u=await this.loadEdges(c,t);return{nodes:c,edges:u,hasMore:a.length>0,totalCount:s.size+a.length}}async getNodeById(e,t={}){let r=this.getCachedNode(e);if(r)return{...r};let i=this.idToIRI(e),s=await this.tripleStore.match(i,void 0,void 0);if(s.length===0)return null;let a=this.triplesToNode(e,s,t);return a&&this.cacheNode(a),a}subscribe(e){return this.subscribers.add(e),{unsubscribe:o(()=>{this.subscribers.delete(e)},"unsubscribe")}}notifyChange(e){for(let t of this.subscribers)try{t(e)}catch(r){console.error("GraphQueryService: error in subscriber callback",r)}this.invalidateCache()}async getStats(){let e=await this.loadNodes({includeArchived:!0}),t=await this.loadEdges(e,{});return this.computeStats(e,t)}clearCache(){this.nodeCache.clear(),this.lastCacheUpdate=0}async loadNodes(e){let t=e.includeArchived??this.config.includeArchivedByDefault,r=e.limit??this.config.maxLimit,i=e.offset??0,s=await this.tripleStore.match(void 0,Yn.INSTANCE_CLASS,void 0),a=s;if(e.classes&&e.classes.length>0){let p=new Set(e.classes);a=s.filter(S=>{let w=this.getObjectValue(S.object);return w&&p.has(w)})}let c=new Set;for(let p of a)c.add(this.subjectToId(p.subject));let f=Array.from(c).slice(i,i+r).map(p=>this.getNodeById(p,e));return(await Promise.all(f)).filter(p=>!(!p||!t&&p.isArchived))}async loadEdges(e,t){let r=new Set(e.map(a=>a.id)),i=[],s=new Set;for(let a of e){let c=this.idToIRI(a.id),u=await this.tripleStore.match(c,void 0,void 0);for(let l of u){let f=this.tripleToEdge(a.id,l,r);f&&!s.has(f.id)&&(!t.edgeTypes||t.edgeTypes.includes(f.type))&&(s.add(f.id),i.push(f))}}return i}async getConnectedNodeIds(e){let t=this.idToIRI(e),r=[],i=await this.tripleStore.match(t,void 0,void 0);for(let a of i){let c=this.objectToId(a.object);c&&r.push(c)}let s=await this.tripleStore.match(void 0,void 0,t);for(let a of s)r.push(this.subjectToId(a.subject));return[...new Set(r)]}triplesToNode(e,t,r){let i={},s,a,c,u,l=!1;for(let d of t){let p=d.predicate.value,S=this.getObjectValue(d.object);if(p===Yn.INSTANCE_CLASS.value)s=S;else if(p===Yn.ASSET_LABEL.value)a=S;else if(p===Yn.ASSET_PROTOTYPE.value)c=this.objectToId(d.object)??S;else if(p===Yn.EFFORT_PARENT.value)u=this.objectToId(d.object)??S;else if(p===Yn.ASSET_IS_ARCHIVED.value)l=S==="true"||S==="1";else{let w=this.predicateToPropertyName(p);w&&(i[w]=S)}}if(l&&!(r.includeArchived??this.config.includeArchivedByDefault))return null;let f=this.idToPath(e),h=a??this.pathToTitle(f);return{id:e,path:f,title:h,label:h,assetClass:s,isArchived:l,uri:e.startsWith("http")?e:void 0,prototype:c,parent:u,properties:Object.keys(i).length>0?i:void 0}}tripleToEdge(e,t,r){let i=t.predicate.value,s=this.objectToId(t.object);if(!s||!r.has(s)||s===e)return null;let a=this.predicateToEdgeType(i);if(!a)return null;let c=(0,uR.createEdgeId)(e,s,a,i),u=this.predicateToLabel(i);return{id:c,source:e,target:s,type:a,predicate:i,label:u}}predicateToEdgeType(e){return e===Yn.EFFORT_PARENT.value?"hierarchy":e===Yn.ASSET_PROTOTYPE.value?"prototype":e===Yn.REFERENCES.value?"forward-link":e===Yn.REFERENCED_BY.value?"backlink":e.includes("Asset_")||e.includes("Instance_")?null:"semantic"}predicateToLabel(e){let t=e.lastIndexOf("#"),r=e.lastIndexOf("/"),i=Math.max(t,r);return i>=0?e.substring(i+1):e}predicateToPropertyName(e){return this.predicateToLabel(e).replace(/_/g,"__").replace(/#/g,"_")}computeStats(e,t){let r={},i={backlink:0,"forward-link":0,hierarchy:0,prototype:0,semantic:0,reference:0};for(let c of e){let u=c.assetClass??"unknown";r[u]=(r[u]??0)+1}for(let c of t)i[c.type]=(i[c.type]??0)+1;let s=new Map,a=new Map;for(let c of t)a.set(c.source,(a.get(c.source)??0)+1),s.set(c.target,(s.get(c.target)??0)+1);for(let c of e)c.inDegree=s.get(c.id)??0,c.outDegree=a.get(c.id)??0,c.weight=c.inDegree+c.outDegree;return{nodeCount:e.length,edgeCount:t.length,nodesByClass:r,edgesByType:i,computedAt:Date.now()}}idToIRI(e){return e.startsWith("http://")||e.startsWith("https://")?new Sc.IRI(e):new Sc.IRI(`obsidian://vault/${encodeURIComponent(e)}`)}subjectToId(e){if(e instanceof Sc.IRI){let t=e.value;return t.startsWith("obsidian://vault/")?decodeURIComponent(t.replace("obsidian://vault/","")):t}return e.toString()}objectToId(e){if(e instanceof Sc.IRI){let t=e.value;return t.startsWith("obsidian://vault/")?decodeURIComponent(t.replace("obsidian://vault/","")):t}return null}getObjectValue(e){if(e instanceof cR.Literal||e instanceof Sc.IRI)return e.value}idToPath(e){if(e.startsWith("obsidian://vault/"))return decodeURIComponent(e.replace("obsidian://vault/",""));if(e.startsWith("http://")||e.startsWith("https://")){let t=e.match(/\/([^/]+\.md)$/);if(t)return t[1]}return e}pathToTitle(e){return(e.split("/").pop()??e).replace(/\.md$/,"")}getCachedNode(e){return Date.now()-this.lastCacheUpdate>this.config.cacheTTL?(this.clearCache(),null):this.nodeCache.get(e)??null}cacheNode(e){this.nodeCache.set(e.id,e),this.lastCacheUpdate===0&&(this.lastCacheUpdate=Date.now())}invalidateCache(){this.clearCache()}};Vl.GraphQueryService=sg});var ES=v(Ul=>{"use strict";Object.defineProperty(Ul,"__esModule",{value:!0});Ul.TypeRegistry=void 0;var Kn=Xe(),bS=Ut(),lR=ft(),et=Vd(),ag=class{static{o(this,"TypeRegistry")}constructor(e=null,t={}){this.nodeTypes=new Map,this.edgeTypes=new Map,this.typeHierarchy=new Map,this.subscribers=new Set,this.discoveryComplete=!1,this.tripleStore=e,this.config={autoDiscoverTypes:t.autoDiscoverTypes??!0,includeBuiltInStyles:t.includeBuiltInStyles??!0,styleResolution:t.styleResolution??{mergeStyles:!0,inheritParentStyles:!0,defaultNodeStyle:et.DEFAULT_NODE_STYLE,defaultEdgeStyle:et.DEFAULT_EDGE_STYLE},maxInheritanceDepth:t.maxInheritanceDepth??10},this.config.includeBuiltInStyles&&this.registerBuiltInTypes()}registerNodeType(e){let r=this.nodeTypes.get(e.uri)?"type-updated":"type-added";this.nodeTypes.set(e.uri,e),e.parentTypes&&e.parentTypes.length>0&&this.typeHierarchy.set(e.uri,e.parentTypes),this.emit({type:r,typeUri:e.uri,definition:e})}registerEdgeType(e){let r=this.edgeTypes.get(e.uri)?"type-updated":"type-added";this.edgeTypes.set(e.uri,e),this.emit({type:r,typeUri:e.uri,definition:e})}unregisterType(e){let t=this.nodeTypes.delete(e),r=this.edgeTypes.delete(e);this.typeHierarchy.delete(e),(t||r)&&this.emit({type:"type-removed",typeUri:e})}getNodeType(e){return this.nodeTypes.get(e)}getEdgeType(e){return this.edgeTypes.get(e)}getAllNodeTypes(){return Array.from(this.nodeTypes.values())}getAllEdgeTypes(){return Array.from(this.edgeTypes.values())}getParentTypes(e,t=this.config.maxInheritanceDepth){let r=[],i=new Set,s=[{uri:e,currentDepth:0}];for(;s.length>0;){let{uri:a,currentDepth:c}=s.shift();if(i.has(a)||(i.add(a),c>=t))continue;let u=this.typeHierarchy.get(a)??[];for(let l of u)i.has(l)||(r.push(l),s.push({uri:l,currentDepth:c+1}))}return r}getChildTypes(e){let t=[];for(let[r,i]of this.typeHierarchy)i.includes(e)&&t.push(r);return t}isSubtypeOf(e,t){return e===t?!0:this.getParentTypes(e).includes(t)}resolveNodeType(e){let t=[],r="unknown",i="custom";if(e.assetClass){let c=this.normalizeTypeUri(e.assetClass);t.push(c),r=c,i="exo:Instance_class"}let s=e.properties?.[et.RDF_TYPE_PREDICATES.RDF_TYPE];s&&!t.includes(s)&&(t.push(s),r==="unknown"&&(r=s,i="rdf:type"));for(let c of[...t]){let u=this.getParentTypes(c);for(let l of u)t.includes(l)||t.push(l)}let a=this.resolveNodeStyle(t);return{primaryType:r,types:t,resolvedStyle:a,source:i}}resolveEdgeType(e){let t=e.predicate??e.type,r=e.predicate?"rdf:type":"custom",i=this.resolveEdgeStyle(t);return{primaryType:t,resolvedStyle:i,source:r}}resolveNodeStyle(e){let{mergeStyles:t,defaultNodeStyle:r}=this.config.styleResolution,i={...r},s=[];for(let a of e){let c=this.nodeTypes.get(a);c&&s.push(c)}if(s.sort((a,c)=>a.priority-c.priority),t)for(let a of s)i=(0,et.mergeNodeStyles)(i,a.style);else if(s.length>0){let a=s[s.length-1];i=(0,et.mergeNodeStyles)(i,a.style)}return i}resolveEdgeStyle(e){let{defaultEdgeStyle:t}=this.config.styleResolution,r={...t},i=this.edgeTypes.get(e);return i&&(r=(0,et.mergeEdgeStyles)(r,i.style)),r}filterNodes(e,t){return e.filter(r=>{let i=this.resolveNodeType(r);return!(t.includeNodeTypes&&t.includeNodeTypes.length>0&&!t.includeNodeTypes.some(a=>i.types.includes(a)||t.includeInferred&&this.isSubtypeOf(i.primaryType,a))||t.excludeNodeTypes&&t.excludeNodeTypes.length>0&&t.excludeNodeTypes.some(a=>i.types.includes(a)||t.includeInferred&&this.isSubtypeOf(i.primaryType,a))||!t.includeDeprecated&&this.nodeTypes.get(i.primaryType)?.deprecated)})}filterEdges(e,t){return e.filter(r=>{let i=r.predicate??r.type;return!(t.includeEdgeTypes&&t.includeEdgeTypes.length>0&&!t.includeEdgeTypes.includes(i)||t.excludeEdgeTypes&&t.excludeEdgeTypes.length>0&&t.excludeEdgeTypes.includes(i))})}groupNodesByType(e,t,r={}){let{groupByNodeType:i=!0,groupByParentType:s=!1,groupLevel:a=0,maxGroups:c=20,customGroupFn:u}=r,l=new Map;for(let d of e){let p=this.resolveNodeType(d),S;if(u?S=u(p.types):s&&p.types.length>a?S=p.types[a]??p.primaryType:i?S=p.primaryType:S="all",!l.has(S)){let T=this.nodeTypes.get(S)?.label??(0,et.extractLocalName)(S);l.set(S,{nodeIds:new Set,label:T})}l.get(S).nodeIds.add(d.id)}let f=Array.from(l.entries()).map(([d,p])=>({id:d,label:p.label,nodeIds:Array.from(p.nodeIds)}));if(f.length>c){f.sort((S,w)=>w.nodeIds.length-S.nodeIds.length);let d=f.slice(0,c-1),p=f.slice(c-1).flatMap(S=>S.nodeIds);d.push({id:"other",label:"Other",nodeIds:p}),f=d}let h=new Map;for(let d of f)for(let p of d.nodeIds)h.set(p,d.id);return f.map((d,p)=>{let S=new Set(d.nodeIds),w=[],T=[];for(let L of t){let M=S.has(L.source),G=S.has(L.target);M&&G?L.id&&w.push(L.id):(M||G)&&L.id&&T.push(L.id)}let I=`hsl(${p*137.5%360}, 70%, 50%)`;return{id:d.id,label:d.label,nodeIds:d.nodeIds,internalEdgeIds:w,externalEdgeIds:T,color:I,stats:{nodeCount:d.nodeIds.length,internalEdgeCount:w.length,externalEdgeCount:T.length}}})}validateTypes(e,t){let r=[],i=[];for(let s of e){let a=this.resolveNodeType(s);if(a.primaryType!=="unknown"){let c=this.nodeTypes.get(a.primaryType);!c&&a.source!=="inferred"&&i.push({code:"UNREGISTERED_NODE_TYPE",message:`Node type "${a.primaryType}" is not registered`,elementId:s.id,suggestion:"Register the type with registerNodeType()"}),c?.deprecated&&i.push({code:"DEPRECATED_NODE_TYPE",message:`Node uses deprecated type "${a.primaryType}"`,elementId:s.id,suggestion:"Migrate to a non-deprecated type"})}else i.push({code:"MISSING_NODE_TYPE",message:"Node has no type information",elementId:s.id,suggestion:"Add exo:Instance_class or rdf:type to the node"})}for(let s of t){let a=s.predicate??s.type,c=this.edgeTypes.get(a);if(c?.domain&&c.domain.length>0){let u=e.find(l=>l.id===s.source);if(u){let l=this.resolveNodeType(u);c.domain.some(h=>l.types.includes(h))||r.push({code:"DOMAIN_VIOLATION",message:"Edge source does not match expected domain",elementId:s.id,expected:c.domain,actual:l.types})}}if(c?.range&&c.range.length>0){let u=e.find(l=>l.id===s.target);if(u){let l=this.resolveNodeType(u);c.range.some(h=>l.types.includes(h))||r.push({code:"RANGE_VIOLATION",message:"Edge target does not match expected range",elementId:s.id,expected:c.range,actual:l.types})}}}return{valid:r.length===0,errors:r,warnings:i}}async discoverTypes(){if(!this.tripleStore||this.discoveryComplete)return;let e=await this.tripleStore.match(void 0,new Kn.IRI(et.RDF_TYPE_PREDICATES.RDF_TYPE),void 0);for(let r of e){let i=this.getObjectValue(r.object);if(i&&(0,et.isClassType)(i)){let s=this.getSubjectValue(r.subject);s&&await this.discoverNodeType(s)}}let t=await this.tripleStore.match(void 0,new Kn.IRI(et.RDF_TYPE_PREDICATES.RDFS_SUBCLASS_OF),void 0);for(let r of t){let i=this.getSubjectValue(r.subject),s=this.getObjectValue(r.object);if(i&&s){let a=this.typeHierarchy.get(i)??[];if(!a.includes(s)){a.push(s),this.typeHierarchy.set(i,a);let c=this.nodeTypes.get(i);c&&(c.parentTypes=a)}}}this.discoveryComplete=!0,this.emit({type:"hierarchy-updated",rootTypes:this.getRootTypes()})}subscribe(e){return this.subscribers.add(e),()=>this.subscribers.delete(e)}clear(){this.nodeTypes.clear(),this.edgeTypes.clear(),this.typeHierarchy.clear(),this.discoveryComplete=!1,this.config.includeBuiltInStyles&&this.registerBuiltInTypes()}registerBuiltInTypes(){for(let[e,t]of Object.entries(et.BUILT_IN_NODE_STYLES))this.nodeTypes.set(e,{uri:e,label:(0,et.extractLocalName)(e),source:"custom",style:(0,et.mergeNodeStyles)(et.DEFAULT_NODE_STYLE,t),priority:1});for(let[e,t]of Object.entries(et.BUILT_IN_EDGE_STYLES))this.edgeTypes.set(e,{uri:e,label:(0,et.extractLocalName)(e),source:"custom",style:(0,et.mergeEdgeStyles)(et.DEFAULT_EDGE_STYLE,t),priority:1})}async discoverNodeType(e){if(this.nodeTypes.has(e)||!this.tripleStore)return;let t=await this.tripleStore.match(new Kn.IRI(e),new Kn.IRI(et.RDF_TYPE_PREDICATES.RDFS_LABEL),void 0),r=await this.tripleStore.match(new Kn.IRI(e),new Kn.IRI(et.RDF_TYPE_PREDICATES.RDFS_COMMENT),void 0),i=t.length>0?this.getObjectValue(t[0].object)??(0,et.extractLocalName)(e):(0,et.extractLocalName)(e),s=r.length>0?this.getObjectValue(r[0].object):void 0,a="rdfs:Class",c=await this.tripleStore.match(new Kn.IRI(e),new Kn.IRI(et.RDF_TYPE_PREDICATES.RDF_TYPE),void 0);for(let f of c)if(this.getObjectValue(f.object)===et.RDF_TYPE_PREDICATES.OWL_CLASS){a="owl:Class";break}let u=et.BUILT_IN_NODE_STYLES[e]??et.BUILT_IN_NODE_STYLES[(0,et.extractLocalName)(e)],l={uri:e,label:i,description:s,source:a,style:(0,et.mergeNodeStyles)(et.DEFAULT_NODE_STYLE,u??{}),priority:1};this.registerNodeType(l)}normalizeTypeUri(e){let t=e.match(/^\[\[(.+?)\]\]$/);return t?t[1]:e}getSubjectValue(e){if(e instanceof Kn.IRI)return e.value;if(e instanceof bS.BlankNode)return`_:${e.id}`;if(typeof e=="object"&&e!==null&&"termType"in e)return e.toString()}getObjectValue(e){if(e instanceof lR.Literal||e instanceof Kn.IRI)return e.value;if(e instanceof bS.BlankNode)return`_:${e.id}`}getRootTypes(){let e=new Set;for(let r of this.typeHierarchy.values())for(let i of r)e.add(i);let t=[];for(let r of this.nodeTypes.keys())(!this.typeHierarchy.has(r)||this.typeHierarchy.get(r).length===0)&&e.has(r)&&t.push(r);return t}emit(e){for(let t of this.subscribers)try{t(e)}catch(r){console.error("TypeRegistry: error in subscriber callback",r)}}};Ul.TypeRegistry=ag});var og=v(B=>{"use strict";Object.defineProperty(B,"__esModule",{value:!0});B.SPARQL_TEMPLATES=B.KNOWN_PROTOTYPES=B.EFFORT_STATUSES=B.ASSET_CLASSES=B.PREDICATES=B.SPARQL_PREFIXES=void 0;B.getTemplateByName=fR;B.findMatchingTemplates=hR;B.fillTemplate=dR;B.validateParameters=pR;B.SPARQL_PREFIXES=`PREFIX exo: <https://exocortex.my/ontology/exo#>
106
+ `).trim()}removeHtmlTags(e){let t=/<[^>]*>/g,r=e,i;do i=r,r=r.replace(t,"");while(r!==i);return r}cleanWikiLink(e){return e.replace(/^\[\[/,"").replace(/\]\]$/,"").replace(/^"/,"").replace(/"$/,"")}getStats(){return{requestCount:this.requestCount,tokenCount:this.tokenCount}}resetStats(){this.requestCount=0,this.tokenCount=0}};Qr.EmbeddingService=Zm;Qr.EmbeddingService=Zm=JD([(0,eR.injectable)(),ZD("design:paramtypes",[Object])],Zm)});var ng=v(Yr=>{"use strict";var tR=Yr&&Yr.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},rR=Yr&&Yr.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)};Object.defineProperty(Yr,"__esModule",{value:!0});Yr.VectorStore=Yr.DEFAULT_VECTOR_STORE_CONFIG=void 0;var nR=Le(),tg=Wi();Yr.DEFAULT_VECTOR_STORE_CONFIG={maxEntries:0,similarityThreshold:.7};var rg=class{static{o(this,"VectorStore")}constructor(e={}){this.entries=new Map,this.createdAt=new Date,this.updatedAt=new Date,this.config={...Yr.DEFAULT_VECTOR_STORE_CONFIG,...e}}setConfig(e){this.config={...this.config,...e}}upsert(e){if(!e.vector||e.vector.length===0)throw new Error("Vector cannot be empty");let t=this.entries.values().next().value;if(t&&t.vector.length!==e.vector.length)throw new Error(`Vector dimension mismatch: expected ${t.vector.length}, got ${e.vector.length}`);if(this.config.maxEntries&&this.config.maxEntries>0&&!this.entries.has(e.id)&&this.entries.size>=this.config.maxEntries){let r=null,i=1/0;for(let[s,a]of this.entries)a.timestamp<i&&(i=a.timestamp,r=s);r&&(this.entries.delete(r),tg.LoggingService.debug(`VectorStore: Evicted oldest entry ${r}`))}this.entries.set(e.id,e),this.updatedAt=new Date}remove(e){let t=this.entries.delete(e);return t&&(this.updatedAt=new Date),t}get(e){return this.entries.get(e)}has(e){return this.entries.has(e)}needsUpdate(e,t){let r=this.entries.get(e);return r?r.contentHash!==t:!0}getAllIds(){return Array.from(this.entries.keys())}size(){return this.entries.size}clear(){this.entries.clear(),this.updatedAt=new Date}search(e,t=10){if(this.entries.size===0)return[];let r=this.entries.values().next().value;if(r&&r.vector.length!==e.length)throw new Error(`Query vector dimension mismatch: expected ${r.vector.length}, got ${e.length}`);let i=[],s=this.config.similarityThreshold??.7;for(let a of this.entries.values()){let c=this.cosineSimilarity(e,a.vector);c>=s&&i.push({entry:a,score:c})}return i.sort((a,c)=>c.score-a.score),i.slice(0,t)}findSimilar(e,t=10){let r=this.entries.get(e);return r?this.search(r.vector,t+1).filter(s=>s.entry.id!==e).slice(0,t):[]}cosineSimilarity(e,t){if(e.length!==t.length)throw new Error("Vectors must have the same dimension");let r=0,i=0,s=0;for(let a=0;a<e.length;a++)r+=e[a]*t[a],i+=e[a]*e[a],s+=t[a]*t[a];return i=Math.sqrt(i),s=Math.sqrt(s),i===0||s===0?0:r/(i*s)}serialize(){return{version:1,entries:Array.from(this.entries.values()).map(e=>({id:e.id,vector:e.vector,metadata:e.metadata,timestamp:e.timestamp,contentHash:e.contentHash})),createdAt:this.createdAt.toISOString(),updatedAt:this.updatedAt.toISOString()}}deserialize(e){if(e.version!==1)throw new Error(`Unsupported VectorStore version: ${e.version}`);this.entries.clear();for(let t of e.entries)this.entries.set(t.id,{id:t.id,vector:t.vector,metadata:t.metadata,timestamp:t.timestamp,contentHash:t.contentHash});this.createdAt=new Date(e.createdAt),this.updatedAt=new Date(e.updatedAt),tg.LoggingService.debug(`VectorStore: Loaded ${this.entries.size} entries from persistence`)}getStats(){let t=this.entries.values().next().value?.vector.length??null,i=(t?this.entries.size*t*8:0)/(1024*1024);return{entryCount:this.entries.size,dimension:t,createdAt:this.createdAt.toISOString(),updatedAt:this.updatedAt.toISOString(),estimatedMemoryMB:Math.round(i*100)/100}}pruneInvalidEntries(e){let t=[];for(let r of this.entries.keys())e.has(r)||t.push(r);for(let r of t)this.entries.delete(r);return t.length>0&&(this.updatedAt=new Date,tg.LoggingService.debug(`VectorStore: Pruned ${t.length} invalid entries`)),t.length}};Yr.VectorStore=rg;Yr.VectorStore=rg=tR([(0,nR.injectable)(),rR("design:paramtypes",[Object])],rg)});var _S=v(Kr=>{"use strict";var iR=Kr&&Kr.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},sR=Kr&&Kr.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)};Object.defineProperty(Kr,"__esModule",{value:!0});Kr.SemanticSearchService=Kr.DEFAULT_SEMANTIC_SEARCH_CONFIG=void 0;var aR=Le(),vc=Wi(),SS=eg(),oR=ng();Kr.DEFAULT_SEMANTIC_SEARCH_CONFIG={embedding:SS.DEFAULT_EMBEDDING_CONFIG,maxResults:10,minSimilarity:.7,autoEmbed:!0,batchSize:20};var ig=class{static{o(this,"SemanticSearchService")}constructor(e={}){this.indexingStatus={isIndexing:!1,totalFiles:0,indexedFiles:0,failedFiles:0,progress:0},this.abortController=null,this.config={...Kr.DEFAULT_SEMANTIC_SEARCH_CONFIG,...e},this.embeddingService=new SS.EmbeddingService(this.config.embedding),this.vectorStore=new oR.VectorStore({similarityThreshold:this.config.minSimilarity})}setConfig(e){this.config={...this.config,...e},e.embedding&&this.embeddingService.setConfig(e.embedding),e.minSimilarity!==void 0&&this.vectorStore.setConfig({similarityThreshold:e.minSimilarity})}getConfig(){return{...this.config,embedding:this.embeddingService.getConfig()}}isConfigured(){return this.embeddingService.isConfigured()}getIndexingStatus(){return{...this.indexingStatus}}async search(e,t){if(!this.isConfigured())throw new Error("SemanticSearchService is not properly configured");if(!e.trim())return[];let r=await this.embeddingService.generateEmbedding(e),i=t??this.config.maxResults;return this.vectorStore.search(r.embedding,i).map(a=>this.toSearchResult(a))}async findSimilar(e,t){let r=t??this.config.maxResults;return this.vectorStore.findSimilar(e,r).map(s=>this.toSearchResult(s))}toSearchResult(e){let t=e.entry.metadata??{};return{path:e.entry.id,score:e.score,label:t.exo__Asset_label,instanceClass:this.extractInstanceClass(t),metadata:t}}extractInstanceClass(e){let t=e.exo__Instance_class;if(t){if(Array.isArray(t)){let r=t[0];return typeof r=="string"?this.cleanWikiLink(r):void 0}return typeof t=="string"?this.cleanWikiLink(t):void 0}}cleanWikiLink(e){return e.replace(/^\[\[/,"").replace(/\]\]$/,"").replace(/^"/,"").replace(/"$/,"")}async indexFile(e,t,r){if(!this.isConfigured())return!1;try{let i=await this.hashContent(t);if(!this.vectorStore.needsUpdate(e,i))return!0;let s=this.embeddingService.prepareTextForEmbedding(t,r),a=await this.embeddingService.generateEmbedding(s);return this.vectorStore.upsert({id:e,vector:a.embedding,metadata:r,timestamp:Date.now(),contentHash:i}),vc.LoggingService.debug(`Indexed file: ${e}`),!0}catch(i){return vc.LoggingService.warn(`Failed to index file ${e}: ${i instanceof Error?i.message:"Unknown error"}`),!1}}removeFromIndex(e){return this.vectorStore.remove(e)}async indexBatch(e){if(!this.isConfigured())return{indexed:0,failed:e.length};let t=[],r=new Map;for(let c of e){let u=await this.hashContent(c.content);if(!this.vectorStore.needsUpdate(c.path,u))continue;let l=this.embeddingService.prepareTextForEmbedding(c.content,c.metadata);t.push({id:c.path,text:l}),r.set(c.path,{content:c.content,metadata:c.metadata,contentHash:u})}if(t.length===0)return{indexed:0,failed:0};let i=await this.embeddingService.generateBatchEmbeddings(t),s=0,a=0;for(let c of i){let u=r.get(c.id);u&&(c.result?(this.vectorStore.upsert({id:c.id,vector:c.result.embedding,metadata:u.metadata,timestamp:Date.now(),contentHash:u.contentHash}),s++):(a++,vc.LoggingService.warn(`Failed to embed ${c.id}: ${c.error||"Unknown error"}`)))}return{indexed:s,failed:a}}async indexAll(e,t,r){if(!this.isConfigured())throw new Error("SemanticSearchService is not properly configured");if(this.indexingStatus.isIndexing)throw new Error("Indexing is already in progress");this.abortController=new AbortController,this.indexingStatus={isIndexing:!0,totalFiles:e.length,indexedFiles:0,failedFiles:0,progress:0};let i=0,s=0,a=!1;try{for(let c=0;c<e.length;c+=this.config.batchSize){if(this.abortController.signal.aborted){a=!0;break}let u=e.slice(c,c+this.config.batchSize),l=[];for(let h of u){if(this.abortController.signal.aborted){a=!0;break}let d=await t(h);d?l.push({path:h,content:d.content,metadata:d.metadata}):s++}if(a)break;let f=await this.indexBatch(l);i+=f.indexed,s+=f.failed,this.indexingStatus.indexedFiles=c+u.length,this.indexingStatus.failedFiles=s,this.indexingStatus.progress=Math.round(this.indexingStatus.indexedFiles/e.length*100),r&&r({...this.indexingStatus})}}finally{this.indexingStatus.isIndexing=!1,this.abortController=null}return{indexed:i,failed:s,aborted:a}}abortIndexing(){this.abortController&&(this.abortController.abort(),vc.LoggingService.debug("Indexing aborted by user"))}isIndexed(e){return this.vectorStore.has(e)}getIndexedPaths(){return this.vectorStore.getAllIds()}getIndexedCount(){return this.vectorStore.size()}clearIndex(){this.vectorStore.clear(),vc.LoggingService.debug("Semantic search index cleared")}pruneDeletedFiles(e){return this.vectorStore.pruneInvalidEntries(e)}serializeIndex(){return this.vectorStore.serialize()}deserializeIndex(e){this.vectorStore.deserialize(e)}getStats(){return{indexStats:this.vectorStore.getStats(),embeddingStats:this.embeddingService.getStats()}}async hashContent(e){let r=new TextEncoder().encode(e),i=await crypto.subtle.digest("SHA-256",r);return Array.from(new Uint8Array(i)).map(a=>a.toString(16).padStart(2,"0")).join("")}};Kr.SemanticSearchService=ig;Kr.SemanticSearchService=ig=iR([(0,aR.injectable)(),sR("design:paramtypes",[Object])],ig)});var wS=v(Vl=>{"use strict";Object.defineProperty(Vl,"__esModule",{value:!0});Vl.GraphQueryService=void 0;var Sc=Xe(),cR=ft(),Hi=Gr(),uR=$d(),Yn={INSTANCE_CLASS:Hi.Namespace.EXO.term("Instance_class"),ASSET_LABEL:Hi.Namespace.EXO.term("Asset_label"),ASSET_PROTOTYPE:Hi.Namespace.EXO.term("Asset_prototype"),ASSET_IS_ARCHIVED:Hi.Namespace.EXO.term("Asset_isArchived"),EFFORT_PARENT:Hi.Namespace.EMS.term("Effort_parent"),REFERENCES:Hi.Namespace.EXO.term("references"),REFERENCED_BY:Hi.Namespace.EXO.term("referencedBy"),RDF_TYPE:Hi.Namespace.RDF.term("type")},sg=class{static{o(this,"GraphQueryService")}constructor(e,t={}){this.subscribers=new Set,this.nodeCache=new Map,this.lastCacheUpdate=0,this.tripleStore=e,this.config={defaultLimit:t.defaultLimit??100,maxLimit:t.maxLimit??1e4,defaultDepth:t.defaultDepth??2,maxDepth:t.maxDepth??10,includeArchivedByDefault:t.includeArchivedByDefault??!1,cacheTTL:t.cacheTTL??3e4}}async loadGraphData(e={}){let t=Date.now(),r=await this.loadNodes(e),i=await this.loadEdges(r,e),s=this.computeStats(r,i),a=Date.now()-t;return a>100&&r.length>0&&console.debug(`GraphQueryService: loaded ${r.length} nodes in ${a}ms (${(a/r.length).toFixed(2)}ms/node)`),{nodes:r,edges:i,stats:s,lastUpdated:Date.now(),version:1}}async loadNodesIncremental(e={}){let t=Math.min(e.limit??this.config.defaultLimit,this.config.maxLimit),r=e.offset??0,i=await this.loadNodes({...e,limit:t+1,offset:r}),s=i.length>t,a=s?i.slice(0,t):i,c=await this.loadEdges(a,e);return{nodes:a,edges:c,hasMore:s,totalCount:void 0,cursor:s?String(r+t):void 0}}async loadConnectedNodes(e,t={}){let r=Math.min(t.depth??this.config.defaultDepth,this.config.maxDepth),i=Math.min(t.limit??this.config.maxLimit,this.config.maxLimit),s=new Set,a=[{id:e,currentDepth:0}],c=[];for(;a.length>0&&c.length<i;){let{id:l,currentDepth:f}=a.shift();if(s.has(l))continue;s.add(l);let h=await this.getNodeById(l,t);if(h&&(c.push(h),f<r)){let d=await this.getConnectedNodeIds(l);for(let p of d)s.has(p)||a.push({id:p,currentDepth:f+1})}}let u=await this.loadEdges(c,t);return{nodes:c,edges:u,hasMore:a.length>0,totalCount:s.size+a.length}}async getNodeById(e,t={}){let r=this.getCachedNode(e);if(r)return{...r};let i=this.idToIRI(e),s=await this.tripleStore.match(i,void 0,void 0);if(s.length===0)return null;let a=this.triplesToNode(e,s,t);return a&&this.cacheNode(a),a}subscribe(e){return this.subscribers.add(e),{unsubscribe:o(()=>{this.subscribers.delete(e)},"unsubscribe")}}notifyChange(e){for(let t of this.subscribers)try{t(e)}catch(r){console.error("GraphQueryService: error in subscriber callback",r)}this.invalidateCache()}async getStats(){let e=await this.loadNodes({includeArchived:!0}),t=await this.loadEdges(e,{});return this.computeStats(e,t)}clearCache(){this.nodeCache.clear(),this.lastCacheUpdate=0}async loadNodes(e){let t=e.includeArchived??this.config.includeArchivedByDefault,r=e.limit??this.config.maxLimit,i=e.offset??0,s=await this.tripleStore.match(void 0,Yn.INSTANCE_CLASS,void 0),a=s;if(e.classes&&e.classes.length>0){let p=new Set(e.classes);a=s.filter(S=>{let w=this.getObjectValue(S.object);return w&&p.has(w)})}let c=new Set;for(let p of a)c.add(this.subjectToId(p.subject));let f=Array.from(c).slice(i,i+r).map(p=>this.getNodeById(p,e));return(await Promise.all(f)).filter(p=>!(!p||!t&&p.isArchived))}async loadEdges(e,t){let r=new Set(e.map(a=>a.id)),i=[],s=new Set;for(let a of e){let c=this.idToIRI(a.id),u=await this.tripleStore.match(c,void 0,void 0);for(let l of u){let f=this.tripleToEdge(a.id,l,r);f&&!s.has(f.id)&&(!t.edgeTypes||t.edgeTypes.includes(f.type))&&(s.add(f.id),i.push(f))}}return i}async getConnectedNodeIds(e){let t=this.idToIRI(e),r=[],i=await this.tripleStore.match(t,void 0,void 0);for(let a of i){let c=this.objectToId(a.object);c&&r.push(c)}let s=await this.tripleStore.match(void 0,void 0,t);for(let a of s)r.push(this.subjectToId(a.subject));return[...new Set(r)]}triplesToNode(e,t,r){let i={},s,a,c,u,l=!1;for(let d of t){let p=d.predicate.value,S=this.getObjectValue(d.object);if(p===Yn.INSTANCE_CLASS.value)s=S;else if(p===Yn.ASSET_LABEL.value)a=S;else if(p===Yn.ASSET_PROTOTYPE.value)c=this.objectToId(d.object)??S;else if(p===Yn.EFFORT_PARENT.value)u=this.objectToId(d.object)??S;else if(p===Yn.ASSET_IS_ARCHIVED.value)l=S==="true"||S==="1";else{let w=this.predicateToPropertyName(p);w&&(i[w]=S)}}if(l&&!(r.includeArchived??this.config.includeArchivedByDefault))return null;let f=this.idToPath(e),h=a??this.pathToTitle(f);return{id:e,path:f,title:h,label:h,assetClass:s,isArchived:l,uri:e.startsWith("http")?e:void 0,prototype:c,parent:u,properties:Object.keys(i).length>0?i:void 0}}tripleToEdge(e,t,r){let i=t.predicate.value,s=this.objectToId(t.object);if(!s||!r.has(s)||s===e)return null;let a=this.predicateToEdgeType(i);if(!a)return null;let c=(0,uR.createEdgeId)(e,s,a,i),u=this.predicateToLabel(i);return{id:c,source:e,target:s,type:a,predicate:i,label:u}}predicateToEdgeType(e){return e===Yn.EFFORT_PARENT.value?"hierarchy":e===Yn.ASSET_PROTOTYPE.value?"prototype":e===Yn.REFERENCES.value?"forward-link":e===Yn.REFERENCED_BY.value?"backlink":e.includes("Asset_")||e.includes("Instance_")?null:"semantic"}predicateToLabel(e){let t=e.lastIndexOf("#"),r=e.lastIndexOf("/"),i=Math.max(t,r);return i>=0?e.substring(i+1):e}predicateToPropertyName(e){return this.predicateToLabel(e).replace(/_/g,"__").replace(/#/g,"_")}computeStats(e,t){let r={},i={backlink:0,"forward-link":0,hierarchy:0,prototype:0,semantic:0,reference:0};for(let c of e){let u=c.assetClass??"unknown";r[u]=(r[u]??0)+1}for(let c of t)i[c.type]=(i[c.type]??0)+1;let s=new Map,a=new Map;for(let c of t)a.set(c.source,(a.get(c.source)??0)+1),s.set(c.target,(s.get(c.target)??0)+1);for(let c of e)c.inDegree=s.get(c.id)??0,c.outDegree=a.get(c.id)??0,c.weight=c.inDegree+c.outDegree;return{nodeCount:e.length,edgeCount:t.length,nodesByClass:r,edgesByType:i,computedAt:Date.now()}}idToIRI(e){return e.startsWith("http://")||e.startsWith("https://")?new Sc.IRI(e):new Sc.IRI(`obsidian://vault/${encodeURIComponent(e)}`)}subjectToId(e){if(e instanceof Sc.IRI){let t=e.value;return t.startsWith("obsidian://vault/")?decodeURIComponent(t.replace("obsidian://vault/","")):t}return e.toString()}objectToId(e){if(e instanceof Sc.IRI){let t=e.value;return t.startsWith("obsidian://vault/")?decodeURIComponent(t.replace("obsidian://vault/","")):t}return null}getObjectValue(e){if(e instanceof cR.Literal||e instanceof Sc.IRI)return e.value}idToPath(e){if(e.startsWith("obsidian://vault/"))return decodeURIComponent(e.replace("obsidian://vault/",""));if(e.startsWith("http://")||e.startsWith("https://")){let t=e.match(/\/([^/]+\.md)$/);if(t)return t[1]}return e}pathToTitle(e){return(e.split("/").pop()??e).replace(/\.md$/,"")}getCachedNode(e){return Date.now()-this.lastCacheUpdate>this.config.cacheTTL?(this.clearCache(),null):this.nodeCache.get(e)??null}cacheNode(e){this.nodeCache.set(e.id,e),this.lastCacheUpdate===0&&(this.lastCacheUpdate=Date.now())}invalidateCache(){this.clearCache()}};Vl.GraphQueryService=sg});var ES=v(Ul=>{"use strict";Object.defineProperty(Ul,"__esModule",{value:!0});Ul.TypeRegistry=void 0;var Kn=Xe(),bS=Ut(),lR=ft(),et=Vd(),ag=class{static{o(this,"TypeRegistry")}constructor(e=null,t={}){this.nodeTypes=new Map,this.edgeTypes=new Map,this.typeHierarchy=new Map,this.subscribers=new Set,this.discoveryComplete=!1,this.tripleStore=e,this.config={autoDiscoverTypes:t.autoDiscoverTypes??!0,includeBuiltInStyles:t.includeBuiltInStyles??!0,styleResolution:t.styleResolution??{mergeStyles:!0,inheritParentStyles:!0,defaultNodeStyle:et.DEFAULT_NODE_STYLE,defaultEdgeStyle:et.DEFAULT_EDGE_STYLE},maxInheritanceDepth:t.maxInheritanceDepth??10},this.config.includeBuiltInStyles&&this.registerBuiltInTypes()}registerNodeType(e){let r=this.nodeTypes.get(e.uri)?"type-updated":"type-added";this.nodeTypes.set(e.uri,e),e.parentTypes&&e.parentTypes.length>0&&this.typeHierarchy.set(e.uri,e.parentTypes),this.emit({type:r,typeUri:e.uri,definition:e})}registerEdgeType(e){let r=this.edgeTypes.get(e.uri)?"type-updated":"type-added";this.edgeTypes.set(e.uri,e),this.emit({type:r,typeUri:e.uri,definition:e})}unregisterType(e){let t=this.nodeTypes.delete(e),r=this.edgeTypes.delete(e);this.typeHierarchy.delete(e),(t||r)&&this.emit({type:"type-removed",typeUri:e})}getNodeType(e){return this.nodeTypes.get(e)}getEdgeType(e){return this.edgeTypes.get(e)}getAllNodeTypes(){return Array.from(this.nodeTypes.values())}getAllEdgeTypes(){return Array.from(this.edgeTypes.values())}getParentTypes(e,t=this.config.maxInheritanceDepth){let r=[],i=new Set,s=[{uri:e,currentDepth:0}];for(;s.length>0;){let{uri:a,currentDepth:c}=s.shift();if(i.has(a)||(i.add(a),c>=t))continue;let u=this.typeHierarchy.get(a)??[];for(let l of u)i.has(l)||(r.push(l),s.push({uri:l,currentDepth:c+1}))}return r}getChildTypes(e){let t=[];for(let[r,i]of this.typeHierarchy)i.includes(e)&&t.push(r);return t}isSubtypeOf(e,t){return e===t?!0:this.getParentTypes(e).includes(t)}resolveNodeType(e){let t=[],r="unknown",i="custom";if(e.assetClass){let c=this.normalizeTypeUri(e.assetClass);t.push(c),r=c,i="exo:Instance_class"}let s=e.properties?.[et.RDF_TYPE_PREDICATES.RDF_TYPE];s&&!t.includes(s)&&(t.push(s),r==="unknown"&&(r=s,i="rdf:type"));for(let c of[...t]){let u=this.getParentTypes(c);for(let l of u)t.includes(l)||t.push(l)}let a=this.resolveNodeStyle(t);return{primaryType:r,types:t,resolvedStyle:a,source:i}}resolveEdgeType(e){let t=e.predicate??e.type,r=e.predicate?"rdf:type":"custom",i=this.resolveEdgeStyle(t);return{primaryType:t,resolvedStyle:i,source:r}}resolveNodeStyle(e){let{mergeStyles:t,defaultNodeStyle:r}=this.config.styleResolution,i={...r},s=[];for(let a of e){let c=this.nodeTypes.get(a);c&&s.push(c)}if(s.sort((a,c)=>a.priority-c.priority),t)for(let a of s)i=(0,et.mergeNodeStyles)(i,a.style);else if(s.length>0){let a=s[s.length-1];i=(0,et.mergeNodeStyles)(i,a.style)}return i}resolveEdgeStyle(e){let{defaultEdgeStyle:t}=this.config.styleResolution,r={...t},i=this.edgeTypes.get(e);return i&&(r=(0,et.mergeEdgeStyles)(r,i.style)),r}filterNodes(e,t){return e.filter(r=>{let i=this.resolveNodeType(r);return!(t.includeNodeTypes&&t.includeNodeTypes.length>0&&!t.includeNodeTypes.some(a=>i.types.includes(a)||t.includeInferred&&this.isSubtypeOf(i.primaryType,a))||t.excludeNodeTypes&&t.excludeNodeTypes.length>0&&t.excludeNodeTypes.some(a=>i.types.includes(a)||t.includeInferred&&this.isSubtypeOf(i.primaryType,a))||!t.includeDeprecated&&this.nodeTypes.get(i.primaryType)?.deprecated)})}filterEdges(e,t){return e.filter(r=>{let i=r.predicate??r.type;return!(t.includeEdgeTypes&&t.includeEdgeTypes.length>0&&!t.includeEdgeTypes.includes(i)||t.excludeEdgeTypes&&t.excludeEdgeTypes.length>0&&t.excludeEdgeTypes.includes(i))})}groupNodesByType(e,t,r={}){let{groupByNodeType:i=!0,groupByParentType:s=!1,groupLevel:a=0,maxGroups:c=20,customGroupFn:u}=r,l=new Map;for(let d of e){let p=this.resolveNodeType(d),S;if(u?S=u(p.types):s&&p.types.length>a?S=p.types[a]??p.primaryType:i?S=p.primaryType:S="all",!l.has(S)){let T=this.nodeTypes.get(S)?.label??(0,et.extractLocalName)(S);l.set(S,{nodeIds:new Set,label:T})}l.get(S).nodeIds.add(d.id)}let f=Array.from(l.entries()).map(([d,p])=>({id:d,label:p.label,nodeIds:Array.from(p.nodeIds)}));if(f.length>c){f.sort((S,w)=>w.nodeIds.length-S.nodeIds.length);let d=f.slice(0,c-1),p=f.slice(c-1).flatMap(S=>S.nodeIds);d.push({id:"other",label:"Other",nodeIds:p}),f=d}let h=new Map;for(let d of f)for(let p of d.nodeIds)h.set(p,d.id);return f.map((d,p)=>{let S=new Set(d.nodeIds),w=[],T=[];for(let L of t){let M=S.has(L.source),G=S.has(L.target);M&&G?L.id&&w.push(L.id):(M||G)&&L.id&&T.push(L.id)}let I=`hsl(${p*137.5%360}, 70%, 50%)`;return{id:d.id,label:d.label,nodeIds:d.nodeIds,internalEdgeIds:w,externalEdgeIds:T,color:I,stats:{nodeCount:d.nodeIds.length,internalEdgeCount:w.length,externalEdgeCount:T.length}}})}validateTypes(e,t){let r=[],i=[];for(let s of e){let a=this.resolveNodeType(s);if(a.primaryType!=="unknown"){let c=this.nodeTypes.get(a.primaryType);!c&&a.source!=="inferred"&&i.push({code:"UNREGISTERED_NODE_TYPE",message:`Node type "${a.primaryType}" is not registered`,elementId:s.id,suggestion:"Register the type with registerNodeType()"}),c?.deprecated&&i.push({code:"DEPRECATED_NODE_TYPE",message:`Node uses deprecated type "${a.primaryType}"`,elementId:s.id,suggestion:"Migrate to a non-deprecated type"})}else i.push({code:"MISSING_NODE_TYPE",message:"Node has no type information",elementId:s.id,suggestion:"Add exo:Instance_class or rdf:type to the node"})}for(let s of t){let a=s.predicate??s.type,c=this.edgeTypes.get(a);if(c?.domain&&c.domain.length>0){let u=e.find(l=>l.id===s.source);if(u){let l=this.resolveNodeType(u);c.domain.some(h=>l.types.includes(h))||r.push({code:"DOMAIN_VIOLATION",message:"Edge source does not match expected domain",elementId:s.id,expected:c.domain,actual:l.types})}}if(c?.range&&c.range.length>0){let u=e.find(l=>l.id===s.target);if(u){let l=this.resolveNodeType(u);c.range.some(h=>l.types.includes(h))||r.push({code:"RANGE_VIOLATION",message:"Edge target does not match expected range",elementId:s.id,expected:c.range,actual:l.types})}}}return{valid:r.length===0,errors:r,warnings:i}}async discoverTypes(){if(!this.tripleStore||this.discoveryComplete)return;let e=await this.tripleStore.match(void 0,new Kn.IRI(et.RDF_TYPE_PREDICATES.RDF_TYPE),void 0);for(let r of e){let i=this.getObjectValue(r.object);if(i&&(0,et.isClassType)(i)){let s=this.getSubjectValue(r.subject);s&&await this.discoverNodeType(s)}}let t=await this.tripleStore.match(void 0,new Kn.IRI(et.RDF_TYPE_PREDICATES.RDFS_SUBCLASS_OF),void 0);for(let r of t){let i=this.getSubjectValue(r.subject),s=this.getObjectValue(r.object);if(i&&s){let a=this.typeHierarchy.get(i)??[];if(!a.includes(s)){a.push(s),this.typeHierarchy.set(i,a);let c=this.nodeTypes.get(i);c&&(c.parentTypes=a)}}}this.discoveryComplete=!0,this.emit({type:"hierarchy-updated",rootTypes:this.getRootTypes()})}subscribe(e){return this.subscribers.add(e),()=>this.subscribers.delete(e)}clear(){this.nodeTypes.clear(),this.edgeTypes.clear(),this.typeHierarchy.clear(),this.discoveryComplete=!1,this.config.includeBuiltInStyles&&this.registerBuiltInTypes()}registerBuiltInTypes(){for(let[e,t]of Object.entries(et.BUILT_IN_NODE_STYLES))this.nodeTypes.set(e,{uri:e,label:(0,et.extractLocalName)(e),source:"custom",style:(0,et.mergeNodeStyles)(et.DEFAULT_NODE_STYLE,t),priority:1});for(let[e,t]of Object.entries(et.BUILT_IN_EDGE_STYLES))this.edgeTypes.set(e,{uri:e,label:(0,et.extractLocalName)(e),source:"custom",style:(0,et.mergeEdgeStyles)(et.DEFAULT_EDGE_STYLE,t),priority:1})}async discoverNodeType(e){if(this.nodeTypes.has(e)||!this.tripleStore)return;let t=await this.tripleStore.match(new Kn.IRI(e),new Kn.IRI(et.RDF_TYPE_PREDICATES.RDFS_LABEL),void 0),r=await this.tripleStore.match(new Kn.IRI(e),new Kn.IRI(et.RDF_TYPE_PREDICATES.RDFS_COMMENT),void 0),i=t.length>0?this.getObjectValue(t[0].object)??(0,et.extractLocalName)(e):(0,et.extractLocalName)(e),s=r.length>0?this.getObjectValue(r[0].object):void 0,a="rdfs:Class",c=await this.tripleStore.match(new Kn.IRI(e),new Kn.IRI(et.RDF_TYPE_PREDICATES.RDF_TYPE),void 0);for(let f of c)if(this.getObjectValue(f.object)===et.RDF_TYPE_PREDICATES.OWL_CLASS){a="owl:Class";break}let u=et.BUILT_IN_NODE_STYLES[e]??et.BUILT_IN_NODE_STYLES[(0,et.extractLocalName)(e)],l={uri:e,label:i,description:s,source:a,style:(0,et.mergeNodeStyles)(et.DEFAULT_NODE_STYLE,u??{}),priority:1};this.registerNodeType(l)}normalizeTypeUri(e){let t=e.match(/^\[\[(.+?)\]\]$/);return t?t[1]:e}getSubjectValue(e){if(e instanceof Kn.IRI)return e.value;if(e instanceof bS.BlankNode)return`_:${e.id}`;if(typeof e=="object"&&e!==null&&"termType"in e)return e.toString()}getObjectValue(e){if(e instanceof lR.Literal||e instanceof Kn.IRI)return e.value;if(e instanceof bS.BlankNode)return`_:${e.id}`}getRootTypes(){let e=new Set;for(let r of this.typeHierarchy.values())for(let i of r)e.add(i);let t=[];for(let r of this.nodeTypes.keys())(!this.typeHierarchy.has(r)||this.typeHierarchy.get(r).length===0)&&e.has(r)&&t.push(r);return t}emit(e){for(let t of this.subscribers)try{t(e)}catch(r){console.error("TypeRegistry: error in subscriber callback",r)}}};Ul.TypeRegistry=ag});var og=v(B=>{"use strict";Object.defineProperty(B,"__esModule",{value:!0});B.SPARQL_TEMPLATES=B.KNOWN_PROTOTYPES=B.EFFORT_STATUSES=B.ASSET_CLASSES=B.PREDICATES=B.SPARQL_PREFIXES=void 0;B.getTemplateByName=fR;B.findMatchingTemplates=hR;B.fillTemplate=dR;B.validateParameters=pR;B.SPARQL_PREFIXES=`PREFIX exo: <https://exocortex.my/ontology/exo#>
107
107
  PREFIX ems: <https://exocortex.my/ontology/ems#>
108
108
  PREFIX ims: <https://exocortex.my/ontology/ims#>
109
109
  PREFIX gtd: <https://exocortex.my/ontology/gtd#>
@@ -235,20 +235,20 @@ SELECT ?s ?label ?class WHERE {
235
235
  }
236
236
  ORDER BY ?label
237
237
  LIMIT ${this.config.defaultLimit}`,s="\u041D\u0435 \u0443\u0434\u0430\u043B\u043E\u0441\u044C \u0442\u043E\u0447\u043D\u043E \u043E\u043F\u0440\u0435\u0434\u0435\u043B\u0438\u0442\u044C \u0442\u0438\u043F \u0437\u0430\u043F\u0440\u043E\u0441\u0430. \u0412\u044B\u043F\u043E\u043B\u043D\u044F\u0435\u0442\u0441\u044F \u043F\u043E\u0438\u0441\u043A \u043F\u043E \u043A\u043B\u044E\u0447\u0435\u0432\u043E\u043C\u0443 \u0441\u043B\u043E\u0432\u0443.";return t?.template&&t?.missingParams&&(s+=` \u0414\u043B\u044F \u0448\u0430\u0431\u043B\u043E\u043D\u0430 "${t.template.name}" \u043D\u0435 \u0445\u0432\u0430\u0442\u0430\u0435\u0442 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u043E\u0432: ${t.missingParams.join(", ")}.`),{query:i,templateName:null,parameters:{keyword:r},confidence:.3,explanation:s,isFallback:!0,alternatives:[]}}calculateConfidence(e,t,r){let i=.5;for(let c of t.keywords)e.includes(c.toLowerCase())&&(i+=.1);let s=t.parameters.filter(c=>c.required),a=s.filter(c=>r[c.name]&&r[c.name].length>0);s.length>0?i+=a.length/s.length*.2:i+=.2;for(let[c]of Object.entries(this.prototypeMapping))if(e.includes(c)){i+=.1;break}return Math.min(i,1)}generateExplanation(e,t){let r=e.description;return Object.keys(t).length>0&&(r+=". \u041F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u044B: ",r+=Object.entries(t).filter(([,i])=>i&&i.length>0).map(([i,s])=>`${i}="${s}"`).join(", ")),r}getAvailableTemplates(){return[...vt.SPARQL_TEMPLATES]}getTemplate(e){return(0,vt.getTemplateByName)(e)}setConfig(e){this.config={...this.config,...e}}getConfig(){return{...this.config}}addTemplate(e){vt.SPARQL_TEMPLATES.push(e),vR.LoggingService.debug(`Added custom template: ${e.name}`)}getSuggestions(e){let t=[];return(e.includes("\u0441\u043A\u043E\u043B\u044C\u043A\u043E")||e.includes("\u0441\u0440\u0435\u0434\u043D")||e.includes("\u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A"))&&!e.match(/\b20\d{2}\b/)&&!this.containsMonth(e)&&t.push("\u0414\u043E\u0431\u0430\u0432\u044C\u0442\u0435 \u043F\u0435\u0440\u0438\u043E\u0434 \u0432\u0440\u0435\u043C\u0435\u043D\u0438 (\u043D\u0430\u043F\u0440\u0438\u043C\u0435\u0440: '\u0437\u0430 \u0434\u0435\u043A\u0430\u0431\u0440\u044C' \u0438\u043B\u0438 '\u0437\u0430 2025-12')"),(e.includes("\u0437\u0430\u0434\u0430\u0447")||e.includes("\u0430\u043A\u0442\u0438\u0432\u043D\u043E\u0441\u0442"))&&t.push("\u0414\u043B\u044F \u0442\u043E\u0447\u043D\u043E\u0433\u043E \u043F\u043E\u0438\u0441\u043A\u0430 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0439\u0442\u0435 UUID \u043F\u0440\u043E\u0442\u043E\u0442\u0438\u043F\u0430 \u0432\u043C\u0435\u0441\u0442\u043E \u043D\u0430\u0437\u0432\u0430\u043D\u0438\u044F"),e.length<10&&t.push("\u0423\u0442\u043E\u0447\u043D\u0438\u0442\u0435 \u0437\u0430\u043F\u0440\u043E\u0441: \u0434\u043E\u0431\u0430\u0432\u044C\u0442\u0435 \u043D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u0430\u043A\u0442\u0438\u0432\u043D\u043E\u0441\u0442\u0438 \u0438\u043B\u0438 \u0442\u0438\u043F \u0434\u0430\u043D\u043D\u044B\u0445"),t}containsMonth(e){return Object.keys(this.monthNames).some(t=>e.includes(t))}};Xr.NLToSPARQLService=cg;Xr.NLToSPARQLService=cg=mR([(0,yR.injectable)(),gR("design:paramtypes",[Object])],cg)});var CS=v(xn=>{"use strict";var SR=xn&&xn.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},_R=xn&&xn.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)},wR=xn&&xn.__param||function(n,e){return function(t,r){e(t,r,n)}};Object.defineProperty(xn,"__esModule",{value:!0});xn.AnalyticsService=void 0;var AS=Le(),bR=ot(),ER=Gt(),TR=Gi(),ug=class{static{o(this,"AnalyticsService")}constructor(e){this.vault=e,this.frontmatterService=new TR.FrontmatterService}getDefaultPeriod(){let e=new Date,t=new Date;return t.setDate(t.getDate()-30),{startDate:t,endDate:e}}async getEffortsInPeriod(e,t){let i=this.vault.getAllFiles().filter(a=>a.path.endsWith(".md")),s=[];for(let a of i)try{let c=await this.vault.read(a),u=this.extractEffortData(a,c);if(!u)continue;if(u.startTimestamp){if(u.startTimestamp<e.startDate||u.startTimestamp>e.endDate)continue}else continue;if(t?.prototypeUri&&u.prototypeUri!==t.prototypeUri||t?.labelContains&&!u.label.toLowerCase().includes(t.labelContains.toLowerCase())||t?.status&&u.status&&!t.status.includes(u.status))continue;s.push(u)}catch{continue}return s}extractEffortData(e,t){let r=this.frontmatterService.parse(t);if(!r.exists)return null;let i=this.frontmatterService.getPropertyValue(r.content,"exo__Asset_label");if(!i)return null;let s=this.frontmatterService.getPropertyValue(r.content,"ems__Effort_status"),a=this.frontmatterService.getPropertyValue(r.content,"ems__Effort_startTimestamp"),c=this.frontmatterService.getPropertyValue(r.content,"ems__Effort_endTimestamp"),u=this.frontmatterService.getPropertyValue(r.content,"exo__Asset_prototype"),l=this.extractInstanceClass(r.content);return{path:e.path,label:this.cleanWikiLink(i),status:s?this.cleanWikiLink(s):null,startTimestamp:a?this.parseTimestamp(a):null,endTimestamp:c?this.parseTimestamp(c):null,prototypeUri:u?this.cleanWikiLink(u):null,instanceClass:l}}extractInstanceClass(e){let t=e.match(/exo__Instance_class:\s*\n((?:\s*-\s*.*\n?)+)/);if(t)return t[1].split(`
238
- `).filter(s=>s.trim()).map(s=>this.cleanWikiLink(s.replace(/^\s*-\s*/,"").trim()));let r=this.frontmatterService.getPropertyValue(e,"exo__Instance_class");return r?this.cleanWikiLink(r):null}cleanWikiLink(e){return e.replace(/^\[\[/,"").replace(/\]\]$/,"").replace(/^"/,"").replace(/"$/,"")}parseTimestamp(e){if(!e)return null;let t=e.replace(/^"/,"").replace(/"$/,""),r=new Date(t);return isNaN(r.getTime())?null:r}calculateDurationStats(e){let t=e.filter(f=>f.startTimestamp&&f.endTimestamp).map(f=>(f.endTimestamp.getTime()-f.startTimestamp.getTime())/6e4).filter(f=>f>0);if(t.length===0)return{count:0,totalMinutes:0,averageMinutes:0,minMinutes:0,maxMinutes:0,stdDevMinutes:0};let r=t.reduce((f,h)=>f+h,0),i=r/t.length,s=Math.min(...t),a=Math.max(...t),u=t.map(f=>Math.pow(f-i,2)).reduce((f,h)=>f+h,0)/t.length,l=Math.sqrt(u);return{count:t.length,totalMinutes:Math.round(r),averageMinutes:Math.round(i*10)/10,minMinutes:Math.round(s),maxMinutes:Math.round(a),stdDevMinutes:Math.round(l*10)/10}}calculateDailyAggregates(e){let t=new Map;for(let r of e){if(!r.startTimestamp)continue;let i=ER.DateFormatter.toDateString(r.startTimestamp);t.has(i)||t.set(i,{count:0,totalMinutes:0});let s=t.get(i);if(s.count++,r.endTimestamp){let a=r.endTimestamp.getTime()-r.startTimestamp.getTime();s.totalMinutes+=a/6e4}}return Array.from(t.entries()).map(([r,i])=>({date:r,count:i.count,totalMinutes:Math.round(i.totalMinutes),averageMinutes:i.count>0?Math.round(i.totalMinutes/i.count*10)/10:0})).sort((r,i)=>r.date.localeCompare(i.date))}calculateHourlyDistribution(e){let t=new Array(24).fill(0);for(let i of e){if(!i.startTimestamp)continue;let s=i.startTimestamp.getHours();t[s]++}let r=t.reduce((i,s)=>i+s,0);return t.map((i,s)=>({hour:s,count:i,percentage:r>0?Math.round(i/r*1e3)/10:0}))}calculateWeekdayDistribution(e){let t=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],r=new Array(7).fill(0);for(let s of e){if(!s.startTimestamp)continue;let a=s.startTimestamp.getDay();r[a]++}let i=r.reduce((s,a)=>s+a,0);return r.map((s,a)=>({dayOfWeek:a,dayName:t[a],count:s,percentage:i>0?Math.round(s/i*1e3)/10:0}))}async analyzeSleep(e=this.getDefaultPeriod()){let t=await this.getEffortsInPeriod(e,{labelContains:"\u041F\u043E\u0441\u043F\u0430\u0442\u044C"}),r=this.calculateDurationStats(t),i=this.calculateDailyAggregates(t),s=[],a=[];for(let h of t){if(h.startTimestamp){let d=h.startTimestamp.getHours()*60+h.startTimestamp.getMinutes();s.push(d<360?d+1440:d)}if(h.endTimestamp){let d=h.endTimestamp.getHours()*60+h.endTimestamp.getMinutes();a.push(d)}}let c=s.length>0?s.reduce((h,d)=>h+d,0)/s.length:0,u=a.length>0?a.reduce((h,d)=>h+d,0)/a.length:0,l=s.length>1?Math.sqrt(s.map(h=>Math.pow(h-c,2)).reduce((h,d)=>h+d,0)/s.length):0,f=a.length>1?Math.sqrt(a.map(h=>Math.pow(h-u,2)).reduce((h,d)=>h+d,0)/a.length):0;return{period:e,stats:r,dailyData:i,averageBedtime:this.minutesToTimeString(c%1440),averageWakeTime:this.minutesToTimeString(u),bedtimeVariabilityMinutes:Math.round(l),wakeTimeVariabilityMinutes:Math.round(f)}}minutesToTimeString(e){let t=Math.floor(e/60),r=Math.round(e%60);return`${String(t).padStart(2,"0")}:${String(r).padStart(2,"0")}`}async analyzeTaskCompletion(e=this.getDefaultPeriod()){let r=(await this.getEffortsInPeriod(e)).filter(l=>Array.isArray(l.instanceClass)?l.instanceClass.some(f=>f.includes("ems__Task")):l.instanceClass?.includes("ems__Task")??!1),i=r.filter(l=>l.status?.includes("ems__EffortStatusDone")),s=r.filter(l=>l.status?.includes("ems__EffortStatusTrashed")),a=i.filter(l=>l.startTimestamp&&l.endTimestamp).map(l=>(l.endTimestamp.getTime()-l.startTimestamp.getTime())/6e4),c=a.length>0?a.reduce((l,f)=>l+f,0)/a.length:0,u=this.calculateDailyAggregates(i);return{period:e,totalTasks:r.length,completedTasks:i.length,trashedTasks:s.length,completionRate:r.length>0?Math.round(i.length/r.length*1e3)/10:0,averageCompletionTimeMinutes:Math.round(c*10)/10,dailyCompletions:u}}async analyzeActivityFrequency(e,t=this.getDefaultPeriod()){let r=await this.getEffortsInPeriod(t,{labelContains:e}),i=this.calculateDurationStats(r),s=this.calculateDailyAggregates(r),a=this.calculateHourlyDistribution(r),c=this.calculateWeekdayDistribution(r);return{activityLabel:e,period:t,stats:i,dailyData:s,hourlyDistribution:a,weekdayDistribution:c}}async getActivitySummary(e=this.getDefaultPeriod()){let t=await this.getEffortsInPeriod(e),r=new Map;for(let s of t){let a=s.label.split(" ")[0];r.has(a)||r.set(a,[]),r.get(a).push(s)}let i=new Map;for(let[s,a]of r)i.set(s,this.calculateDurationStats(a));return i}};xn.AnalyticsService=ug;xn.AnalyticsService=ug=SR([(0,AS.injectable)(),wR(0,(0,AS.inject)(bR.DI_TOKENS.IVaultAdapter)),_R("design:paramtypes",[Object])],ug)});var xS=v(qs=>{"use strict";var AR=qs&&qs.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s};Object.defineProperty(qs,"__esModule",{value:!0});qs.TrendDetectionService=void 0;var CR=Le(),lg=class{static{o(this,"TrendDetectionService")}constructor(){this.TREND_THRESHOLD=.05,this.ANOMALY_THRESHOLD_STD=2,this.STRONG_CORRELATION_THRESHOLD=.7,this.MODERATE_CORRELATION_THRESHOLD=.4}analyzeTrend(e,t="averageMinutes"){if(e.length<3)return{direction:"stable",strength:"none",slope:0,rSquared:0,changePercentage:0,insight:"Insufficient data for trend analysis (need at least 3 data points)"};let r=e.map(d=>d[t]),{slope:i,rSquared:s}=this.linearRegression(r),a=r[0]||1,u=((r[r.length-1]||0)-a)/a*100,l;Math.abs(u)<this.TREND_THRESHOLD*100?l="stable":i>0?l="increasing":l="decreasing";let f;s>=.7?f="strong":s>=.4?f="moderate":s>=.2?f="weak":f="none";let h=this.generateTrendInsight(l,f,u);return{direction:l,strength:f,slope:Math.round(i*100)/100,rSquared:Math.round(s*100)/100,changePercentage:Math.round(u*10)/10,insight:h}}linearRegression(e){let t=e.length;if(t===0)return{slope:0,intercept:0,rSquared:0};let r=(t-1)/2,i=e.reduce((d,p)=>d+p,0)/t,s=0,a=0;for(let d=0;d<t;d++)s+=(d-r)*(e[d]-i),a+=Math.pow(d-r,2);let c=a!==0?s/a:0,u=i-c*r,l=0,f=0;for(let d=0;d<t;d++){let p=u+c*d;l+=Math.pow(e[d]-p,2),f+=Math.pow(e[d]-i,2)}let h=f!==0?1-l/f:0;return{slope:c,intercept:u,rSquared:Math.max(0,h)}}generateTrendInsight(e,t,r){if(t==="none"||e==="stable")return"Metric is relatively stable with no significant trend.";let i=t==="strong"?"clearly":t==="moderate"?"moderately":"slightly",s=e==="increasing"?"increasing":"decreasing",a=`${Math.abs(Math.round(r))}%`;return`Metric is ${i} ${s} (${a} change over the period).`}detectAnomalies(e,t="averageMinutes"){if(e.length<5)return[];let r=e.map(c=>c[t]),{mean:i,stdDev:s}=this.calculateStats(r),a=[];for(let c=0;c<e.length;c++){let u=r[c],l=(u-i)/(s||1);if(Math.abs(l)>=this.ANOMALY_THRESHOLD_STD){let f=this.determineAnomalySeverity(l),h=this.determineAnomalyType(l,u,i);a.push({date:e[c].date,value:u,expectedValue:Math.round(i*10)/10,deviation:Math.round(l*100)/100,severity:f,type:h,description:this.generateAnomalyDescription(h,f,l,u,i)})}}return a}calculateStats(e){if(e.length===0)return{mean:0,stdDev:0};let t=e.reduce((a,c)=>a+c,0)/e.length,i=e.map(a=>Math.pow(a-t,2)).reduce((a,c)=>a+c,0)/e.length,s=Math.sqrt(i);return{mean:t,stdDev:s}}determineAnomalySeverity(e){let t=Math.abs(e);return t>=3?"critical":t>=2.5?"warning":"info"}determineAnomalyType(e,t,r){return t>r&&e>0?"spike":t<r&&e<0?"drop":"outlier"}generateAnomalyDescription(e,t,r,i,s){let a=t==="critical"?"Significant":t==="warning"?"Notable":"Minor",c=e==="spike"?"spike":e==="drop"?"drop":"unusual value",u=Math.round((i-s)/s*100);return`${a} ${c} detected: ${Math.round(i)} (${u>0?"+":""}${u}% from average of ${Math.round(s)}, ${r.toFixed(1)}\u03C3 from mean).`}calculateCorrelation(e,t,r,i){let s=Math.min(e.length,t.length);if(s<5)return{metric1:r,metric2:i,coefficient:0,strength:"none",direction:"none",insight:"Insufficient data for correlation analysis."};let{mean:a,stdDev:c}=this.calculateStats(e.slice(0,s)),{mean:u,stdDev:l}=this.calculateStats(t.slice(0,s));if(c===0||l===0)return{metric1:r,metric2:i,coefficient:0,strength:"none",direction:"none",insight:"One or both metrics have no variation."};let f=0;for(let T=0;T<s;T++)f+=(e[T]-a)/c*((t[T]-u)/l);let h=f/s,d=Math.abs(h),p;d>=this.STRONG_CORRELATION_THRESHOLD?p="strong":d>=this.MODERATE_CORRELATION_THRESHOLD?p="moderate":d>=.2?p="weak":p="none";let S=p==="none"?"none":h>0?"positive":"negative",w=this.generateCorrelationInsight(r,i,h,p,S);return{metric1:r,metric2:i,coefficient:Math.round(h*100)/100,strength:p,direction:S,insight:w}}generateCorrelationInsight(e,t,r,i,s){if(i==="none")return`No significant correlation found between ${e} and ${t}.`;let a=i==="strong"?"strongly":i==="moderate"?"moderately":"weakly",c=s==="positive"?"When one increases, the other tends to increase":"When one increases, the other tends to decrease";return`${e} and ${t} are ${a} ${s}ly correlated (r=${r.toFixed(2)}). ${c}.`}analyzeWeeklyPattern(e,t="averageMinutes"){let r=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],i={};for(let u of e){let f=new Date(u.date).getDay();i[f]||(i[f]=[]),i[f].push(u[t])}let s=[],a=0,c=1/0;for(let u=0;u<7;u++){let l=i[u]||[],{mean:f,stdDev:h}=this.calculateStats(l);f>a&&(a=f),f<c&&l.length>0&&(c=f),s.push({dayOfWeek:u,dayName:r[u],averageValue:Math.round(f*10)/10,deviation:Math.round(h*10)/10,isHighPoint:!1,isLowPoint:!1})}for(let u of s)u.averageValue===a&&a>0&&(u.isHighPoint=!0),u.averageValue===c&&c!==1/0&&(u.isLowPoint=!0);return s}generateInsights(e,t,r,i,s){let a=[];t.strength!=="none"&&t.direction!=="stable"&&a.push({type:"trend",severity:t.direction==="decreasing"?"warning":"info",title:`${s} is ${t.direction}`,description:t.insight,metric:s,value:t.changePercentage,actionable:t.direction==="decreasing"});let c=r.filter(f=>f.severity==="critical");if(c.length>0)for(let f of c)a.push({type:"anomaly",severity:"critical",title:`Unusual ${f.type} detected on ${f.date}`,description:f.description,metric:s,value:f.value,actionable:!0});let u=i.filter(f=>f.isHighPoint).map(f=>f.dayName),l=i.filter(f=>f.isLowPoint).map(f=>f.dayName);return u.length>0&&l.length>0&&a.push({type:"pattern",severity:"info",title:"Weekly pattern detected",description:`${s} tends to be highest on ${u.join(", ")} and lowest on ${l.join(", ")}.`,metric:s,actionable:!1}),e.stdDevMinutes>e.averageMinutes*.5&&a.push({type:"recommendation",severity:"warning",title:"High variability detected",description:`${s} shows high variability (std dev: ${e.stdDevMinutes} min). Consider maintaining a more consistent schedule.`,metric:s,value:e.stdDevMinutes,actionable:!0}),a}detectSuddenChanges(e,t="averageMinutes",r=50){let i=[];for(let s=1;s<e.length;s++){let a=e[s-1][t],c=e[s][t];if(a===0)continue;let u=(c-a)/a*100;Math.abs(u)>=r&&i.push({date:e[s].date,previousValue:a,currentValue:c,changePercent:Math.round(u*10)/10})}return i}};qs.TrendDetectionService=lg;qs.TrendDetectionService=lg=AR([(0,CR.injectable)()],lg)});var IS=v(Gs=>{"use strict";Object.defineProperty(Gs,"__esModule",{value:!0});Gs.AutocompleteService=Gs.DEFAULT_AUTOCOMPLETE_CONFIG=void 0;var Bl=Wr(),_c=Xe(),OS=ft();Gs.DEFAULT_AUTOCOMPLETE_CONFIG={limit:10,activeBoost:20,recencyBoost:10,recencyDays:7};var fg=class{static{o(this,"AutocompleteService")}constructor(e,t){this.tripleStore=e,this.config={...Gs.DEFAULT_AUTOCOMPLETE_CONFIG,...t}}async getSuggestions(e,t,r){let i={...this.config,...r},s=await this.getPropertyRange(e);if(s.length===0){let u=this.inferClassFromProperty(e);u&&s.push(u)}let a=[];for(let u of s){let l=await this.getAssetsOfClass(u);a.push(...l)}return a.map(u=>({...u,matchScore:this.calculateMatchScore(u,t,i)})).filter(u=>u.matchScore>0).sort((u,l)=>l.matchScore-u.matchScore).slice(0,i.limit)}async getSuggestionsByClass(e,t,r){let i={...this.config,...r},s=[];for(let c of e){let u=await this.getAssetsOfClass(c);s.push(...u)}return s.map(c=>({...c,matchScore:this.calculateMatchScore(c,t,i)})).filter(c=>c.matchScore>0).sort((c,u)=>u.matchScore-c.matchScore).slice(0,i.limit)}async getPropertyRange(e){let t=this.toFullIri(e),r=[],i=await this.tripleStore.match(new _c.IRI(t),Bl.Namespace.RDFS.term("range"),void 0);for(let s of i)if(s.object instanceof _c.IRI){let a=this.toClassName(s.object.value);a&&r.push(a)}return r}async getAssetsOfClass(e){let t=this.toFullIri(e),r=[],i=await this.tripleStore.match(void 0,Bl.Namespace.RDF.term("type"),new _c.IRI(t));for(let s of i)if(s.subject instanceof _c.IRI){let a=await this.buildSuggestion(s.subject,e);a&&r.push(a)}return r}async buildSuggestion(e,t){let r=await this.tripleStore.match(e,Bl.Namespace.EXO.term("Asset_label"),void 0),i="";for(let c of r)if(c.object instanceof OS.Literal){i=c.object.value;break}if(i||(i=this.extractLabelFromUri(e.value)),!i)return null;let s=await this.checkIfActive(e),a=this.extractPathFromUri(e.value);return{label:i,uri:e.value,path:a,assetClass:t,isActive:s,matchScore:0}}async checkIfActive(e){let t=await this.tripleStore.match(e,Bl.Namespace.EMS.term("Effort_status"),void 0);for(let r of t){let i=r.object instanceof OS.Literal||r.object instanceof _c.IRI?r.object.value:"";if(i.includes("Active")||i.includes("EffortStatus_Active"))return!0}return!1}calculateMatchScore(e,t,r){if(!t||t.length===0)return e.isActive?100+r.activeBoost:100;let i=e.label.toLowerCase(),s=t.toLowerCase(),a=0;if(i===s)a=100;else if(i.startsWith(s))a=80;else if(i.includes(s))a=60;else if(this.fuzzyMatch(s,i))a=40;else return 0;if(e.isActive&&(a+=r.activeBoost),e.lastModified){let c=(Date.now()-e.lastModified)/864e5;c<=r.recencyDays&&(a+=r.recencyBoost*(1-c/r.recencyDays))}return a}fuzzyMatch(e,t){let r=0;for(let i=0;i<t.length&&r<e.length;i++)t[i]===e[r]&&r++;return r===e.length}inferClassFromProperty(e){let t=e.toLowerCase();return t.includes("project")?"ems__Project":t.includes("area")?"ems__Area":t.includes("task")?"ems__Task":t.includes("effort")?"ems__Effort":null}toFullIri(e){if(e.startsWith("http://")||e.startsWith("https://"))return e;let t=e.match(/^([a-z]+)__(.+)$/);if(t){let[,r,i]=t;switch(r){case"ems":return`https://exocortex.my/ontology/ems#${i}`;case"exo":return`https://exocortex.my/ontology/exo#${i}`;default:return`https://exocortex.my/ontology/${r}#${i}`}}return e}toClassName(e){let t=e.match(/https:\/\/exocortex\.my\/ontology\/([a-z]+)#(.+)$/);if(t){let[,r,i]=t;return`${r}__${i}`}return null}extractLabelFromUri(e){if(e.startsWith("obsidian://")){let r=decodeURIComponent(e),i=r.lastIndexOf("/");if(i>=0){let s=r.substring(i+1);return s.endsWith(".md")&&(s=s.substring(0,s.length-3)),s}}let t=e.lastIndexOf("/");if(t>=0){let r=e.substring(t+1);return r.endsWith(".md")&&(r=r.substring(0,r.length-3)),r}return""}extractPathFromUri(e){if(e.startsWith("obsidian://vault/")){let t=decodeURIComponent(e.substring(17)),r=t.indexOf("/");return r>=0?t.substring(r+1):t}return e}};Gs.AutocompleteService=fg});var DS=v(On=>{"use strict";var xR=On&&On.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},OR=On&&On.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)},IR=On&&On.__param||function(n,e){return function(t,r){e(t,r,n)}};Object.defineProperty(On,"__esModule",{value:!0});On.DailyReviewService=void 0;var PS=Le(),PR=ot(),Oa=Gt(),DR=Gi(),RR=Pr(),hg=class{static{o(this,"DailyReviewService")}constructor(e){this.vault=e,this.frontmatterService=new DR.FrontmatterService}async getPractices(){let e=this.vault.getAllFiles(),t=[],r=Oa.DateFormatter.toDateString(new Date);for(let i of e)if(i.path.endsWith(".md"))try{let s=await this.vault.read(i),a=this.frontmatterService.parse(s);if(!a.exists)continue;let c=this.frontmatterService.getPropertyValue(a.content,"exo__Instance_class");if(!this.isTaskPrototype(c))continue;let u=this.frontmatterService.getPropertyValue(a.content,"exo__Asset_uid");if(!u)continue;let l=u.replace(/"/g,""),f=this.frontmatterService.getPropertyValue(a.content,"exo__Asset_label");if(!f)continue;let h=f.replace(/"/g,""),p=this.frontmatterService.getPropertyValue(a.content,"ems__Recurring_rule")?.replace(/"/g,"")||null,S=this.frontmatterService.getPropertyValue(a.content,"ems__Task_estimatedDuration"),w=null;if(S){let O=parseInt(S,10);isNaN(O)||(w=O)}let T=await this.findTodayInstance(l,r);t.push({uid:l,label:h,path:i.path,recurringRule:p,estimatedDuration:w,doneToday:T?.status==="done",inProgressToday:T?.status==="doing",todayInstancePath:T?.path||null})}catch{continue}return t.sort((i,s)=>i.label.localeCompare(s.label))}async getDailyReviewSummary(e){let t=e||new Date,r=Oa.DateFormatter.toDateString(t),i=new Date(t);i.setHours(0,0,0,0);let s=new Date(t);s.setHours(23,59,59,999);let a=this.vault.getAllFiles(),c=0,u=0,l=0,f=0;for(let S of a)if(S.path.endsWith(".md"))try{let w=await this.vault.read(S),T=this.frontmatterService.parse(w);if(!T.exists)continue;let O=this.frontmatterService.getPropertyValue(T.content,"exo__Instance_class");if(!this.isTask(O))continue;let I=this.frontmatterService.getPropertyValue(T.content,"ems__Effort_plannedStartTimestamp"),L=this.frontmatterService.getPropertyValue(T.content,"ems__Effort_startTimestamp"),M=L?new Date(L):null,G=I?new Date(I):null;if(!(G&&G>=i&&G<=s||M&&M>=i&&M<=s))continue;c++;let je=this.frontmatterService.getPropertyValue(T.content,"ems__Effort_status");if(this.isDoneStatus(je)){u++;let Me=this.frontmatterService.getPropertyValue(T.content,"ems__Effort_endTimestamp");if(L&&Me){let q=this.calculateDurationMinutes(L,Me);f+=q}}else this.isDoingStatus(je)&&l++}catch{continue}let d=(await this.getPractices()).filter(S=>!S.doneToday&&S.recurringRule),p=c>0?Math.round(u/c*100):0;return{date:r,plannedCount:c,completedCount:u,inProgressCount:l,practicesDue:d,completionPercentage:p,totalTimeMinutes:Math.round(f)}}async quickCapture(e,t=!0,r){let i=(0,RR.v4)(),s=Oa.DateFormatter.toISOTimestamp(new Date),a=`${i}.md`,c="03 Knowledge/kitelev",u=["---",`exo__Asset_uid: "${i}"`,`exo__Asset_label: "${e}"`,'exo__Instance_class: "[[ems__Task]]"'];if(r?.prototypeUid){let h=this.buildPrototypeUri(r.prototypeUid);u.push(`exo__Asset_prototype: "${h}"`)}if(r?.areaUid){let h=this.buildAssetUri(r.areaUid);u.push(`ems__Effort_area: "${h}"`)}if(r?.parentUid){let h=this.buildAssetUri(r.parentUid);u.push(`ems__Effort_parent: "${h}"`)}t?(u.push('ems__Effort_status: "[[ems__EffortStatusDoing]]"'),u.push(`ems__Effort_startTimestamp: ${s}`)):u.push('ems__Effort_status: "[[ems__EffortStatusBacklog]]"'),u.push("---","","");let l=u.join(`
238
+ `).filter(s=>s.trim()).map(s=>this.cleanWikiLink(s.replace(/^\s*-\s*/,"").trim()));let r=this.frontmatterService.getPropertyValue(e,"exo__Instance_class");return r?this.cleanWikiLink(r):null}cleanWikiLink(e){return e.replace(/^\[\[/,"").replace(/\]\]$/,"").replace(/^"/,"").replace(/"$/,"")}parseTimestamp(e){if(!e)return null;let t=e.replace(/^"/,"").replace(/"$/,""),r=new Date(t);return isNaN(r.getTime())?null:r}calculateDurationStats(e){let t=e.filter(f=>f.startTimestamp&&f.endTimestamp).map(f=>(f.endTimestamp.getTime()-f.startTimestamp.getTime())/6e4).filter(f=>f>0);if(t.length===0)return{count:0,totalMinutes:0,averageMinutes:0,minMinutes:0,maxMinutes:0,stdDevMinutes:0};let r=t.reduce((f,h)=>f+h,0),i=r/t.length,s=Math.min(...t),a=Math.max(...t),u=t.map(f=>Math.pow(f-i,2)).reduce((f,h)=>f+h,0)/t.length,l=Math.sqrt(u);return{count:t.length,totalMinutes:Math.round(r),averageMinutes:Math.round(i*10)/10,minMinutes:Math.round(s),maxMinutes:Math.round(a),stdDevMinutes:Math.round(l*10)/10}}calculateDailyAggregates(e){let t=new Map;for(let r of e){if(!r.startTimestamp)continue;let i=ER.DateFormatter.toDateString(r.startTimestamp);t.has(i)||t.set(i,{count:0,totalMinutes:0});let s=t.get(i);if(s.count++,r.endTimestamp){let a=r.endTimestamp.getTime()-r.startTimestamp.getTime();s.totalMinutes+=a/6e4}}return Array.from(t.entries()).map(([r,i])=>({date:r,count:i.count,totalMinutes:Math.round(i.totalMinutes),averageMinutes:i.count>0?Math.round(i.totalMinutes/i.count*10)/10:0})).sort((r,i)=>r.date.localeCompare(i.date))}calculateHourlyDistribution(e){let t=new Array(24).fill(0);for(let i of e){if(!i.startTimestamp)continue;let s=i.startTimestamp.getHours();t[s]++}let r=t.reduce((i,s)=>i+s,0);return t.map((i,s)=>({hour:s,count:i,percentage:r>0?Math.round(i/r*1e3)/10:0}))}calculateWeekdayDistribution(e){let t=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],r=new Array(7).fill(0);for(let s of e){if(!s.startTimestamp)continue;let a=s.startTimestamp.getDay();r[a]++}let i=r.reduce((s,a)=>s+a,0);return r.map((s,a)=>({dayOfWeek:a,dayName:t[a],count:s,percentage:i>0?Math.round(s/i*1e3)/10:0}))}async analyzeSleep(e=this.getDefaultPeriod()){let t=await this.getEffortsInPeriod(e,{labelContains:"\u041F\u043E\u0441\u043F\u0430\u0442\u044C"}),r=this.calculateDurationStats(t),i=this.calculateDailyAggregates(t),s=[],a=[];for(let h of t){if(h.startTimestamp){let d=h.startTimestamp.getHours()*60+h.startTimestamp.getMinutes();s.push(d<360?d+1440:d)}if(h.endTimestamp){let d=h.endTimestamp.getHours()*60+h.endTimestamp.getMinutes();a.push(d)}}let c=s.length>0?s.reduce((h,d)=>h+d,0)/s.length:0,u=a.length>0?a.reduce((h,d)=>h+d,0)/a.length:0,l=s.length>1?Math.sqrt(s.map(h=>Math.pow(h-c,2)).reduce((h,d)=>h+d,0)/s.length):0,f=a.length>1?Math.sqrt(a.map(h=>Math.pow(h-u,2)).reduce((h,d)=>h+d,0)/a.length):0;return{period:e,stats:r,dailyData:i,averageBedtime:this.minutesToTimeString(c%1440),averageWakeTime:this.minutesToTimeString(u),bedtimeVariabilityMinutes:Math.round(l),wakeTimeVariabilityMinutes:Math.round(f)}}minutesToTimeString(e){let t=Math.floor(e/60),r=Math.round(e%60);return`${String(t).padStart(2,"0")}:${String(r).padStart(2,"0")}`}async analyzeTaskCompletion(e=this.getDefaultPeriod()){let r=(await this.getEffortsInPeriod(e)).filter(l=>Array.isArray(l.instanceClass)?l.instanceClass.some(f=>f.includes("ems__Task")):l.instanceClass?.includes("ems__Task")??!1),i=r.filter(l=>l.status?.includes("ems__EffortStatusDone")),s=r.filter(l=>l.status?.includes("ems__EffortStatusTrashed")),a=i.filter(l=>l.startTimestamp&&l.endTimestamp).map(l=>(l.endTimestamp.getTime()-l.startTimestamp.getTime())/6e4),c=a.length>0?a.reduce((l,f)=>l+f,0)/a.length:0,u=this.calculateDailyAggregates(i);return{period:e,totalTasks:r.length,completedTasks:i.length,trashedTasks:s.length,completionRate:r.length>0?Math.round(i.length/r.length*1e3)/10:0,averageCompletionTimeMinutes:Math.round(c*10)/10,dailyCompletions:u}}async analyzeActivityFrequency(e,t=this.getDefaultPeriod()){let r=await this.getEffortsInPeriod(t,{labelContains:e}),i=this.calculateDurationStats(r),s=this.calculateDailyAggregates(r),a=this.calculateHourlyDistribution(r),c=this.calculateWeekdayDistribution(r);return{activityLabel:e,period:t,stats:i,dailyData:s,hourlyDistribution:a,weekdayDistribution:c}}async getActivitySummary(e=this.getDefaultPeriod()){let t=await this.getEffortsInPeriod(e),r=new Map;for(let s of t){let a=s.label.split(" ")[0];r.has(a)||r.set(a,[]),r.get(a).push(s)}let i=new Map;for(let[s,a]of r)i.set(s,this.calculateDurationStats(a));return i}};xn.AnalyticsService=ug;xn.AnalyticsService=ug=SR([(0,AS.injectable)(),wR(0,(0,AS.inject)(bR.DI_TOKENS.IVaultAdapter)),_R("design:paramtypes",[Object])],ug)});var xS=v(qs=>{"use strict";var AR=qs&&qs.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s};Object.defineProperty(qs,"__esModule",{value:!0});qs.TrendDetectionService=void 0;var CR=Le(),lg=class{static{o(this,"TrendDetectionService")}constructor(){this.TREND_THRESHOLD=.05,this.ANOMALY_THRESHOLD_STD=2,this.STRONG_CORRELATION_THRESHOLD=.7,this.MODERATE_CORRELATION_THRESHOLD=.4}analyzeTrend(e,t="averageMinutes"){if(e.length<3)return{direction:"stable",strength:"none",slope:0,rSquared:0,changePercentage:0,insight:"Insufficient data for trend analysis (need at least 3 data points)"};let r=e.map(d=>d[t]),{slope:i,rSquared:s}=this.linearRegression(r),a=r[0]||1,u=((r[r.length-1]||0)-a)/a*100,l;Math.abs(u)<this.TREND_THRESHOLD*100?l="stable":i>0?l="increasing":l="decreasing";let f;s>=.7?f="strong":s>=.4?f="moderate":s>=.2?f="weak":f="none";let h=this.generateTrendInsight(l,f,u);return{direction:l,strength:f,slope:Math.round(i*100)/100,rSquared:Math.round(s*100)/100,changePercentage:Math.round(u*10)/10,insight:h}}linearRegression(e){let t=e.length;if(t===0)return{slope:0,intercept:0,rSquared:0};let r=(t-1)/2,i=e.reduce((d,p)=>d+p,0)/t,s=0,a=0;for(let d=0;d<t;d++)s+=(d-r)*(e[d]-i),a+=Math.pow(d-r,2);let c=a!==0?s/a:0,u=i-c*r,l=0,f=0;for(let d=0;d<t;d++){let p=u+c*d;l+=Math.pow(e[d]-p,2),f+=Math.pow(e[d]-i,2)}let h=f!==0?1-l/f:0;return{slope:c,intercept:u,rSquared:Math.max(0,h)}}generateTrendInsight(e,t,r){if(t==="none"||e==="stable")return"Metric is relatively stable with no significant trend.";let i=t==="strong"?"clearly":t==="moderate"?"moderately":"slightly",s=e==="increasing"?"increasing":"decreasing",a=`${Math.abs(Math.round(r))}%`;return`Metric is ${i} ${s} (${a} change over the period).`}detectAnomalies(e,t="averageMinutes"){if(e.length<5)return[];let r=e.map(c=>c[t]),{mean:i,stdDev:s}=this.calculateStats(r),a=[];for(let c=0;c<e.length;c++){let u=r[c],l=(u-i)/(s||1);if(Math.abs(l)>=this.ANOMALY_THRESHOLD_STD){let f=this.determineAnomalySeverity(l),h=this.determineAnomalyType(l,u,i);a.push({date:e[c].date,value:u,expectedValue:Math.round(i*10)/10,deviation:Math.round(l*100)/100,severity:f,type:h,description:this.generateAnomalyDescription(h,f,l,u,i)})}}return a}calculateStats(e){if(e.length===0)return{mean:0,stdDev:0};let t=e.reduce((a,c)=>a+c,0)/e.length,i=e.map(a=>Math.pow(a-t,2)).reduce((a,c)=>a+c,0)/e.length,s=Math.sqrt(i);return{mean:t,stdDev:s}}determineAnomalySeverity(e){let t=Math.abs(e);return t>=3?"critical":t>=2.5?"warning":"info"}determineAnomalyType(e,t,r){return t>r&&e>0?"spike":t<r&&e<0?"drop":"outlier"}generateAnomalyDescription(e,t,r,i,s){let a=t==="critical"?"Significant":t==="warning"?"Notable":"Minor",c=e==="spike"?"spike":e==="drop"?"drop":"unusual value",u=Math.round((i-s)/s*100);return`${a} ${c} detected: ${Math.round(i)} (${u>0?"+":""}${u}% from average of ${Math.round(s)}, ${r.toFixed(1)}\u03C3 from mean).`}calculateCorrelation(e,t,r,i){let s=Math.min(e.length,t.length);if(s<5)return{metric1:r,metric2:i,coefficient:0,strength:"none",direction:"none",insight:"Insufficient data for correlation analysis."};let{mean:a,stdDev:c}=this.calculateStats(e.slice(0,s)),{mean:u,stdDev:l}=this.calculateStats(t.slice(0,s));if(c===0||l===0)return{metric1:r,metric2:i,coefficient:0,strength:"none",direction:"none",insight:"One or both metrics have no variation."};let f=0;for(let T=0;T<s;T++)f+=(e[T]-a)/c*((t[T]-u)/l);let h=f/s,d=Math.abs(h),p;d>=this.STRONG_CORRELATION_THRESHOLD?p="strong":d>=this.MODERATE_CORRELATION_THRESHOLD?p="moderate":d>=.2?p="weak":p="none";let S=p==="none"?"none":h>0?"positive":"negative",w=this.generateCorrelationInsight(r,i,h,p,S);return{metric1:r,metric2:i,coefficient:Math.round(h*100)/100,strength:p,direction:S,insight:w}}generateCorrelationInsight(e,t,r,i,s){if(i==="none")return`No significant correlation found between ${e} and ${t}.`;let a=i==="strong"?"strongly":i==="moderate"?"moderately":"weakly",c=s==="positive"?"When one increases, the other tends to increase":"When one increases, the other tends to decrease";return`${e} and ${t} are ${a} ${s}ly correlated (r=${r.toFixed(2)}). ${c}.`}analyzeWeeklyPattern(e,t="averageMinutes"){let r=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],i={};for(let u of e){let f=new Date(u.date).getDay();i[f]||(i[f]=[]),i[f].push(u[t])}let s=[],a=0,c=1/0;for(let u=0;u<7;u++){let l=i[u]||[],{mean:f,stdDev:h}=this.calculateStats(l);f>a&&(a=f),f<c&&l.length>0&&(c=f),s.push({dayOfWeek:u,dayName:r[u],averageValue:Math.round(f*10)/10,deviation:Math.round(h*10)/10,isHighPoint:!1,isLowPoint:!1})}for(let u of s)u.averageValue===a&&a>0&&(u.isHighPoint=!0),u.averageValue===c&&c!==1/0&&(u.isLowPoint=!0);return s}generateInsights(e,t,r,i,s){let a=[];t.strength!=="none"&&t.direction!=="stable"&&a.push({type:"trend",severity:t.direction==="decreasing"?"warning":"info",title:`${s} is ${t.direction}`,description:t.insight,metric:s,value:t.changePercentage,actionable:t.direction==="decreasing"});let c=r.filter(f=>f.severity==="critical");if(c.length>0)for(let f of c)a.push({type:"anomaly",severity:"critical",title:`Unusual ${f.type} detected on ${f.date}`,description:f.description,metric:s,value:f.value,actionable:!0});let u=i.filter(f=>f.isHighPoint).map(f=>f.dayName),l=i.filter(f=>f.isLowPoint).map(f=>f.dayName);return u.length>0&&l.length>0&&a.push({type:"pattern",severity:"info",title:"Weekly pattern detected",description:`${s} tends to be highest on ${u.join(", ")} and lowest on ${l.join(", ")}.`,metric:s,actionable:!1}),e.stdDevMinutes>e.averageMinutes*.5&&a.push({type:"recommendation",severity:"warning",title:"High variability detected",description:`${s} shows high variability (std dev: ${e.stdDevMinutes} min). Consider maintaining a more consistent schedule.`,metric:s,value:e.stdDevMinutes,actionable:!0}),a}detectSuddenChanges(e,t="averageMinutes",r=50){let i=[];for(let s=1;s<e.length;s++){let a=e[s-1][t],c=e[s][t];if(a===0)continue;let u=(c-a)/a*100;Math.abs(u)>=r&&i.push({date:e[s].date,previousValue:a,currentValue:c,changePercent:Math.round(u*10)/10})}return i}};qs.TrendDetectionService=lg;qs.TrendDetectionService=lg=AR([(0,CR.injectable)()],lg)});var IS=v(Gs=>{"use strict";Object.defineProperty(Gs,"__esModule",{value:!0});Gs.AutocompleteService=Gs.DEFAULT_AUTOCOMPLETE_CONFIG=void 0;var Bl=Gr(),_c=Xe(),OS=ft();Gs.DEFAULT_AUTOCOMPLETE_CONFIG={limit:10,activeBoost:20,recencyBoost:10,recencyDays:7};var fg=class{static{o(this,"AutocompleteService")}constructor(e,t){this.tripleStore=e,this.config={...Gs.DEFAULT_AUTOCOMPLETE_CONFIG,...t}}async getSuggestions(e,t,r){let i={...this.config,...r},s=await this.getPropertyRange(e);if(s.length===0){let u=this.inferClassFromProperty(e);u&&s.push(u)}let a=[];for(let u of s){let l=await this.getAssetsOfClass(u);a.push(...l)}return a.map(u=>({...u,matchScore:this.calculateMatchScore(u,t,i)})).filter(u=>u.matchScore>0).sort((u,l)=>l.matchScore-u.matchScore).slice(0,i.limit)}async getSuggestionsByClass(e,t,r){let i={...this.config,...r},s=[];for(let c of e){let u=await this.getAssetsOfClass(c);s.push(...u)}return s.map(c=>({...c,matchScore:this.calculateMatchScore(c,t,i)})).filter(c=>c.matchScore>0).sort((c,u)=>u.matchScore-c.matchScore).slice(0,i.limit)}async getPropertyRange(e){let t=this.toFullIri(e),r=[],i=await this.tripleStore.match(new _c.IRI(t),Bl.Namespace.RDFS.term("range"),void 0);for(let s of i)if(s.object instanceof _c.IRI){let a=this.toClassName(s.object.value);a&&r.push(a)}return r}async getAssetsOfClass(e){let t=this.toFullIri(e),r=[],i=await this.tripleStore.match(void 0,Bl.Namespace.RDF.term("type"),new _c.IRI(t));for(let s of i)if(s.subject instanceof _c.IRI){let a=await this.buildSuggestion(s.subject,e);a&&r.push(a)}return r}async buildSuggestion(e,t){let r=await this.tripleStore.match(e,Bl.Namespace.EXO.term("Asset_label"),void 0),i="";for(let c of r)if(c.object instanceof OS.Literal){i=c.object.value;break}if(i||(i=this.extractLabelFromUri(e.value)),!i)return null;let s=await this.checkIfActive(e),a=this.extractPathFromUri(e.value);return{label:i,uri:e.value,path:a,assetClass:t,isActive:s,matchScore:0}}async checkIfActive(e){let t=await this.tripleStore.match(e,Bl.Namespace.EMS.term("Effort_status"),void 0);for(let r of t){let i=r.object instanceof OS.Literal||r.object instanceof _c.IRI?r.object.value:"";if(i.includes("Active")||i.includes("EffortStatus_Active"))return!0}return!1}calculateMatchScore(e,t,r){if(!t||t.length===0)return e.isActive?100+r.activeBoost:100;let i=e.label.toLowerCase(),s=t.toLowerCase(),a=0;if(i===s)a=100;else if(i.startsWith(s))a=80;else if(i.includes(s))a=60;else if(this.fuzzyMatch(s,i))a=40;else return 0;if(e.isActive&&(a+=r.activeBoost),e.lastModified){let c=(Date.now()-e.lastModified)/864e5;c<=r.recencyDays&&(a+=r.recencyBoost*(1-c/r.recencyDays))}return a}fuzzyMatch(e,t){let r=0;for(let i=0;i<t.length&&r<e.length;i++)t[i]===e[r]&&r++;return r===e.length}inferClassFromProperty(e){let t=e.toLowerCase();return t.includes("project")?"ems__Project":t.includes("area")?"ems__Area":t.includes("task")?"ems__Task":t.includes("effort")?"ems__Effort":null}toFullIri(e){if(e.startsWith("http://")||e.startsWith("https://"))return e;let t=e.match(/^([a-z]+)__(.+)$/);if(t){let[,r,i]=t;switch(r){case"ems":return`https://exocortex.my/ontology/ems#${i}`;case"exo":return`https://exocortex.my/ontology/exo#${i}`;default:return`https://exocortex.my/ontology/${r}#${i}`}}return e}toClassName(e){let t=e.match(/https:\/\/exocortex\.my\/ontology\/([a-z]+)#(.+)$/);if(t){let[,r,i]=t;return`${r}__${i}`}return null}extractLabelFromUri(e){if(e.startsWith("obsidian://")){let r=decodeURIComponent(e),i=r.lastIndexOf("/");if(i>=0){let s=r.substring(i+1);return s.endsWith(".md")&&(s=s.substring(0,s.length-3)),s}}let t=e.lastIndexOf("/");if(t>=0){let r=e.substring(t+1);return r.endsWith(".md")&&(r=r.substring(0,r.length-3)),r}return""}extractPathFromUri(e){if(e.startsWith("obsidian://vault/")){let t=decodeURIComponent(e.substring(17)),r=t.indexOf("/");return r>=0?t.substring(r+1):t}return e}};Gs.AutocompleteService=fg});var DS=v(On=>{"use strict";var xR=On&&On.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},OR=On&&On.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)},IR=On&&On.__param||function(n,e){return function(t,r){e(t,r,n)}};Object.defineProperty(On,"__esModule",{value:!0});On.DailyReviewService=void 0;var PS=Le(),PR=ot(),Oa=Gt(),DR=Gi(),RR=Pr(),hg=class{static{o(this,"DailyReviewService")}constructor(e){this.vault=e,this.frontmatterService=new DR.FrontmatterService}async getPractices(){let e=this.vault.getAllFiles(),t=[],r=Oa.DateFormatter.toDateString(new Date);for(let i of e)if(i.path.endsWith(".md"))try{let s=await this.vault.read(i),a=this.frontmatterService.parse(s);if(!a.exists)continue;let c=this.frontmatterService.getPropertyValue(a.content,"exo__Instance_class");if(!this.isTaskPrototype(c))continue;let u=this.frontmatterService.getPropertyValue(a.content,"exo__Asset_uid");if(!u)continue;let l=u.replace(/"/g,""),f=this.frontmatterService.getPropertyValue(a.content,"exo__Asset_label");if(!f)continue;let h=f.replace(/"/g,""),p=this.frontmatterService.getPropertyValue(a.content,"ems__Recurring_rule")?.replace(/"/g,"")||null,S=this.frontmatterService.getPropertyValue(a.content,"ems__Task_estimatedDuration"),w=null;if(S){let O=parseInt(S,10);isNaN(O)||(w=O)}let T=await this.findTodayInstance(l,r);t.push({uid:l,label:h,path:i.path,recurringRule:p,estimatedDuration:w,doneToday:T?.status==="done",inProgressToday:T?.status==="doing",todayInstancePath:T?.path||null})}catch{continue}return t.sort((i,s)=>i.label.localeCompare(s.label))}async getDailyReviewSummary(e){let t=e||new Date,r=Oa.DateFormatter.toDateString(t),i=new Date(t);i.setHours(0,0,0,0);let s=new Date(t);s.setHours(23,59,59,999);let a=this.vault.getAllFiles(),c=0,u=0,l=0,f=0;for(let S of a)if(S.path.endsWith(".md"))try{let w=await this.vault.read(S),T=this.frontmatterService.parse(w);if(!T.exists)continue;let O=this.frontmatterService.getPropertyValue(T.content,"exo__Instance_class");if(!this.isTask(O))continue;let I=this.frontmatterService.getPropertyValue(T.content,"ems__Effort_plannedStartTimestamp"),L=this.frontmatterService.getPropertyValue(T.content,"ems__Effort_startTimestamp"),M=L?new Date(L):null,G=I?new Date(I):null;if(!(G&&G>=i&&G<=s||M&&M>=i&&M<=s))continue;c++;let je=this.frontmatterService.getPropertyValue(T.content,"ems__Effort_status");if(this.isDoneStatus(je)){u++;let Me=this.frontmatterService.getPropertyValue(T.content,"ems__Effort_endTimestamp");if(L&&Me){let q=this.calculateDurationMinutes(L,Me);f+=q}}else this.isDoingStatus(je)&&l++}catch{continue}let d=(await this.getPractices()).filter(S=>!S.doneToday&&S.recurringRule),p=c>0?Math.round(u/c*100):0;return{date:r,plannedCount:c,completedCount:u,inProgressCount:l,practicesDue:d,completionPercentage:p,totalTimeMinutes:Math.round(f)}}async quickCapture(e,t=!0,r){let i=(0,RR.v4)(),s=Oa.DateFormatter.toISOTimestamp(new Date),a=`${i}.md`,c="03 Knowledge/kitelev",u=["---",`exo__Asset_uid: "${i}"`,`exo__Asset_label: "${e}"`,'exo__Instance_class: "[[ems__Task]]"'];if(r?.prototypeUid){let h=this.buildPrototypeUri(r.prototypeUid);u.push(`exo__Asset_prototype: "${h}"`)}if(r?.areaUid){let h=this.buildAssetUri(r.areaUid);u.push(`ems__Effort_area: "${h}"`)}if(r?.parentUid){let h=this.buildAssetUri(r.parentUid);u.push(`ems__Effort_parent: "${h}"`)}t?(u.push('ems__Effort_status: "[[ems__EffortStatusDoing]]"'),u.push(`ems__Effort_startTimestamp: ${s}`)):u.push('ems__Effort_status: "[[ems__EffortStatusBacklog]]"'),u.push("---","","");let l=u.join(`
239
239
  `),f=`${c}/${a}`;return await this.vault.create(f,l),{path:f,uid:i,label:e,started:t}}async createFromPractice(e){let r=(await this.getPractices()).find(a=>a.uid===e.prototypeUid);if(!r)throw new Error(`Practice not found: ${e.prototypeUid}`);if(r.doneToday)throw new Error(`Practice "${r.label}" already completed today`);if(r.inProgressToday&&r.todayInstancePath)return{path:r.todayInstancePath,uid:e.prototypeUid,label:r.label,started:!0};let i=Oa.DateFormatter.toDateString(new Date),s=e.label||`${r.label} ${i}`;return this.quickCapture(s,e.startImmediately??!0,{prototypeUid:e.prototypeUid,areaUid:e.areaUid,parentUid:e.parentUid})}async markPracticeDone(e){let r=(await this.getPractices()).find(l=>l.uid===e);if(!r)throw new Error(`Practice not found: ${e}`);if(r.doneToday)return;if(!r.todayInstancePath)throw new Error(`No active instance for practice "${r.label}" today`);let i=this.vault.getAbstractFileByPath(r.todayInstancePath);if(!i||!("basename"in i))throw new Error(`File not found: ${r.todayInstancePath}`);let s=i,a=await this.vault.read(s),c=Oa.DateFormatter.toISOTimestamp(new Date),u=this.frontmatterService.updateProperty(a,"ems__Effort_status",'"[[ems__EffortStatusDone]]"');u=this.frontmatterService.updateProperty(u,"ems__Effort_endTimestamp",c),u=this.frontmatterService.updateProperty(u,"ems__Effort_resolutionTimestamp",c),await this.vault.modify(s,u)}async findTodayInstance(e,t){let r=this.vault.getAllFiles();for(let i of r)if(i.path.endsWith(".md"))try{let s=await this.vault.read(i),a=this.frontmatterService.parse(s);if(!a.exists)continue;let c=this.frontmatterService.getPropertyValue(a.content,"exo__Asset_prototype");if(!c||!c.includes(e))continue;let u=this.frontmatterService.getPropertyValue(a.content,"exo__Asset_label"),l=this.frontmatterService.getPropertyValue(a.content,"ems__Effort_startTimestamp"),f=u?.includes(t),h=l?new Date(l):null,d=h&&Oa.DateFormatter.toDateString(h)===t;if(!f&&!d)continue;let p=this.frontmatterService.getPropertyValue(a.content,"ems__Effort_status");return this.isDoneStatus(p)?{path:i.path,status:"done"}:this.isDoingStatus(p)?{path:i.path,status:"doing"}:{path:i.path,status:"other"}}catch{continue}return null}isTaskPrototype(e){return e?e.includes("ems__TaskPrototype")||e.includes("TaskPrototype"):!1}isTask(e){return e?(e.includes("ems__Task")||e.includes("[[ems__Task]]"))&&!e.includes("Prototype"):!1}isDoneStatus(e){return e?e.includes("Done")||e.includes("EffortStatusDone"):!1}isDoingStatus(e){return e?e.includes("Doing")||e.includes("EffortStatusDoing"):!1}calculateDurationMinutes(e,t){let r=new Date(e);return(new Date(t).getTime()-r.getTime())/1e3/60}buildPrototypeUri(e){return`obsidian://vault/03%20Knowledge%2Fkitelev%2F${e}.md`}buildAssetUri(e){return`obsidian://vault/03%20Knowledge%2Fkitelev%2F${e}.md`}};On.DailyReviewService=hg;On.DailyReviewService=hg=xR([(0,PS.injectable)(),IR(0,(0,PS.inject)(PR.DI_TOKENS.IVaultAdapter)),OR("design:paramtypes",[Object])],hg)});var RS=v(ql=>{"use strict";Object.defineProperty(ql,"__esModule",{value:!0});ql.EffortSortingHelpers=void 0;var dg=class n{static{o(this,"EffortSortingHelpers")}static getTimeFromTimestamp(e){if(!e)return"00:00:00";let t=new Date(e);if(isNaN(t.getTime()))return"00:00:00";let r=String(t.getHours()).padStart(2,"0"),i=String(t.getMinutes()).padStart(2,"0"),s=String(t.getSeconds()).padStart(2,"0");return`${r}:${i}:${s}`}static sortByStartTime(e,t){let r=n.getTimeFromTimestamp(e.startTimestamp),i=n.getTimeFromTimestamp(t.startTimestamp),s=r==="00:00:00",a=i==="00:00:00";return s&&!a?1:!s&&a?-1:r.localeCompare(i)}static sortByPriority(e,t){if(e.isTrashed!==t.isTrashed)return e.isTrashed?1:-1;if(e.isDone!==t.isDone)return e.isDone?1:-1;let r=typeof e.metadata.ems__Effort_votes=="number"?e.metadata.ems__Effort_votes:0,i=typeof t.metadata.ems__Effort_votes=="number"?t.metadata.ems__Effort_votes:0;return r!==i?i-r:e.startTime&&t.startTime?e.startTime.localeCompare(t.startTime):e.startTime?-1:t.startTime?1:0}};ql.EffortSortingHelpers=dg});var FS=v(Gl=>{"use strict";Object.defineProperty(Gl,"__esModule",{value:!0});Gl.FilenameValidator=void 0;var Ws=class{static{o(this,"FilenameValidator")}static validate(e,t={}){let{maxLength:r=this.DEFAULT_MAX_LENGTH,replacementChar:i=this.DEFAULT_REPLACEMENT,allowEmpty:s=!1}=t,a=[];if(!e||e.trim().length===0)return s||a.push("Filename cannot be empty"),{valid:a.length===0,sanitized:"",errors:a};e.endsWith(" ")&&a.push("Filename should not end with a space");let c=e.trim();this.INVALID_CHARS_PATTERN.test(c)&&a.push('Filename contains invalid characters: / \\ : * ? " < > |');let u=this.getBaseName(c);this.RESERVED_NAMES.has(u.toUpperCase())&&a.push(`"${u}" is a reserved filename on Windows`),c.length>r&&a.push(`Filename exceeds maximum length of ${r} characters`),c.startsWith(".")&&a.push("Filename should not start with a dot"),c.endsWith(".")&&a.push("Filename should not end with a dot");let l=this.sanitize(e,{maxLength:r,replacementChar:i});return{valid:a.length===0,sanitized:l,errors:a}}static sanitize(e,t={}){let{maxLength:r=this.DEFAULT_MAX_LENGTH,replacementChar:i=this.DEFAULT_REPLACEMENT}=t;if(!e||e.trim().length===0)return"";let s=e.trim();for(s=s.replace(this.INVALID_CHARS_PATTERN,i);s.startsWith(".")&&s.length>1;)s=s.substring(1);for(;s.length>0&&(s.endsWith(".")||s.endsWith(" "));)s=s.slice(0,-1);for(s.includes(i)&&(s=s.split(i).filter(l=>l!=="").join(i));s.startsWith(i);)s=s.slice(i.length);for(;s.endsWith(i);)s=s.slice(0,-i.length);let a=this.getBaseName(s);if(this.RESERVED_NAMES.has(a.toUpperCase())){let c=this.getExtension(s);s=a+i+c}if(s.length>r)for(s=s.slice(0,r);s.endsWith(i);)s=s.slice(0,-i.length);return s}static hasInvalidChars(e){return this.INVALID_CHARS_PATTERN.test(e)}static getInvalidChars(e){let t=e.match(this.INVALID_CHARS_PATTERN);return t?[...new Set(t)]:[]}static getBaseName(e){let t=e.lastIndexOf(".");return t===-1||t===0?e:e.substring(0,t)}static getExtension(e){let t=e.lastIndexOf(".");return t===-1||t===0?"":e.substring(t)}};Gl.FilenameValidator=Ws;Ws.INVALID_CHARS_PATTERN=/[/\\:*?"<>|\x00-\x1F]/g;Ws.RESERVED_NAMES=new Set(["CON","PRN","AUX","NUL","COM1","COM2","COM3","COM4","COM5","COM6","COM7","COM8","COM9","LPT1","LPT2","LPT3","LPT4","LPT5","LPT6","LPT7","LPT8","LPT9"]);Ws.DEFAULT_MAX_LENGTH=200;Ws.DEFAULT_REPLACEMENT="_"});var mg=v(Wl=>{"use strict";Object.defineProperty(Wl,"__esModule",{value:!0});Wl.NTriplesSerializer=void 0;var pg=class{static{o(this,"NTriplesSerializer")}serialize(e,t={}){let r=t.newline??`
240
- `;return e.length===0?"":e.map(i=>i.toString()).join(r)+r}serializeChunk(e,t){return e.length===0?"":e.map(r=>r.toString()).join(t)+t}};Wl.NTriplesSerializer=pg});var NS=v(Hl=>{"use strict";Object.defineProperty(Hl,"__esModule",{value:!0});Hl.TurtleSerializer=void 0;var Ia=Wr(),FR=mg(),NR={rdf:Ia.Namespace.RDF.iri.value,rdfs:Ia.Namespace.RDFS.iri.value,owl:Ia.Namespace.OWL.iri.value,xsd:Ia.Namespace.XSD.iri.value,exo:Ia.Namespace.EXO.iri.value,ems:Ia.Namespace.EMS.iri.value},gg=class{static{o(this,"TurtleSerializer")}constructor(){this.nTriplesSerializer=new FR.NTriplesSerializer}serialize(e,t={}){let r=t.newline??`
241
- `,i=this.composePrefixes(t),s=this.serializePrefixes(i,r),a=this.nTriplesSerializer.serialize(e,{newline:r}).trimEnd();return s?a?`${s}${r}${r}${a}${r}`:`${s}${r}`:a?`${a}${r}`:""}serializePrefixes(e,t){let r=Object.entries(e);return r.length===0?"":r.map(([i,s])=>`@prefix ${i}: <${s}> .`).join(t)}composePrefixes(e){return e.includeDefaultPrefixes??!0?{...NR,...e.prefixes??{}}:{...e.prefixes??{}}}serializeTriplesOnly(e,t){return this.nTriplesSerializer.serializeChunk(e,t).trimEnd()}};Hl.TurtleSerializer=gg});var MS=v(zl=>{"use strict";Object.defineProperty(zl,"__esModule",{value:!0});zl.JSONLDSerializer=void 0;var LS=Xe(),kS=Ut(),LR=ft(),Pa=Wr(),kR={rdf:Pa.Namespace.RDF.iri.value,rdfs:Pa.Namespace.RDFS.iri.value,owl:Pa.Namespace.OWL.iri.value,xsd:Pa.Namespace.XSD.iri.value,exo:Pa.Namespace.EXO.iri.value,ems:Pa.Namespace.EMS.iri.value},yg=class{static{o(this,"JSONLDSerializer")}toDocument(e,t={}){let r={...kR,...t.context??{}},i=new Map;for(let s of e){let a=this.subjectToId(s.subject),c=this.compactIri(s.predicate.value,r),u=this.objectToJSONLD(s.object,r),l=i.get(a)??{"@id":a},f=l[c];f===void 0?l[c]=u:Array.isArray(f)?f.push(u):l[c]=[f,u],i.set(a,l)}return{"@context":r,"@graph":Array.from(i.values())}}serialize(e,t={}){let r=this.toDocument(e,t),i=t.pretty?t.indent??2:void 0;return JSON.stringify(r,null,i)}subjectToId(e){return e instanceof LS.IRI?e.value:e instanceof kS.BlankNode?`_:${e.id}`:String(e)}compactIri(e,t){for(let[r,i]of Object.entries(t))if(e.startsWith(i)){let s=e.slice(i.length);if(s.length>0)return`${r}:${s}`}return e}objectToJSONLD(e,t){if(e instanceof LS.IRI)return{"@id":e.value};if(e instanceof kS.BlankNode)return{"@id":`_:${e.id}`};if(e instanceof LR.Literal){let r={"@value":e.value};return e.datatype?r["@type"]=this.compactIri(e.datatype.value,t):e.language&&(r["@language"]=e.language,e.hasDirection()&&e.direction&&(r["@direction"]=e.direction)),r}return e}};zl.JSONLDSerializer=yg});var _g=v(Ql=>{"use strict";Object.defineProperty(Ql,"__esModule",{value:!0});Ql.NTriplesParser=void 0;var MR=ji(),jS=Xe(),vg=ft(),jR=Ut(),Da=Wr(),$R={rdf:Da.Namespace.RDF.iri.value,rdfs:Da.Namespace.RDFS.iri.value,owl:Da.Namespace.OWL.iri.value,xsd:Da.Namespace.XSD.iri.value,exo:Da.Namespace.EXO.iri.value,ems:Da.Namespace.EMS.iri.value},Sg=class{static{o(this,"NTriplesParser")}parse(e,t={}){let r={prefixes:{...$R,...t.prefixes??{}},strict:t.strict??!1},i=[];return e.split(/\r?\n/).forEach((a,c)=>{let u=a.trim();!u||u.startsWith("#")||i.push(this.parseLine(u,c+1,r))}),i}parseLine(e,t,r){if(!e.endsWith("."))throw new Error(`Invalid RDF statement at line ${t}: missing '.' terminator`);let s=e.slice(0,-1).trim(),a=this.parseSubject(s,t,r);s=a.rest.trim();let c=this.parsePredicate(s,t,r);s=c.rest.trim();let u=this.parseObject(s,t,r);if(s=u.rest.trim(),s.length>0)throw new Error(`Unexpected tokens after object at line ${t}`);return new MR.Triple(a.node,c.node,u.node)}parseSubject(e,t,r){return e.startsWith("<")?this.consumeIRI(e,t,r):e.startsWith("_:")?this.consumeBlankNode(e,t):this.consumePrefixedName(e,t,r)}parsePredicate(e,t,r){return e.startsWith("<")?this.consumeIRI(e,t,r):this.consumePrefixedName(e,t,r)}parseObject(e,t,r){return e.startsWith("<")?this.consumeIRI(e,t,r):e.startsWith("_:")?this.consumeBlankNode(e,t):e.startsWith('"')?this.consumeLiteral(e,t,r):this.consumePrefixedName(e,t,r)}consumePrefixedName(e,t,r){let i=e.match(/^([a-zA-Z_][\w-]*):([^\s]+)(?:\s+(.*))?$/);if(!i)throw new Error(`Invalid token at line ${t}: ${e}`);let[,s,a,c]=i,u=r.prefixes[s];if(!u)throw new Error(`Unknown prefix "${s}" at line ${t}`);return{node:new jS.IRI(`${u}${a}`),rest:(c??"").trimStart()}}consumeIRI(e,t,r){let i=this.findClosingBracket(e,"<",">");if(i===-1)throw new Error(`Invalid IRI at line ${t}`);let s=e.slice(1,i),a=new jS.IRI(s),c=e.slice(i+1).trimStart();return{node:a,rest:c}}consumeBlankNode(e,t){let r=e.match(/^_:(\w+)(?:\s+(.*))?$/);if(!r)throw new Error(`Invalid blank node identifier at line ${t}`);let[,i,s]=r;return{node:new jR.BlankNode(i),rest:(s??"").trimStart()}}consumeLiteral(e,t,r){let{value:i,rest:s}=this.consumeQuotedString(e,t),a=s.trimStart();if(a.startsWith("^^")){a=a.slice(2).trimStart();let c=a.startsWith("<")?this.consumeIRI(a,t,r):this.consumePrefixedName(a,t,r);return{node:new vg.Literal(i,c.node),rest:c.rest}}if(a.startsWith("@")){let c=a.match(/^@([a-zA-Z-]+)(?:\s+(.*))?$/);if(!c)throw new Error(`Invalid language tag at line ${t}`);let[,u,l]=c;return{node:new vg.Literal(i,void 0,u),rest:(l??"").trimStart()}}return{node:new vg.Literal(i),rest:a}}consumeQuotedString(e,t){if(!e.startsWith('"'))throw new Error(`Expected quoted string at line ${t}`);let r="";for(let i=1;i<e.length;i++){let s=e[i];if(s==="\\"){if(i+1>=e.length)throw new Error(`Invalid escape sequence at line ${t}`);let a=e[i+1];switch(a){case"t":r+=" ",i+=1;break;case"b":r+="\b",i+=1;break;case"n":r+=`
242
- `,i+=1;break;case"r":r+="\r",i+=1;break;case"f":r+="\f",i+=1;break;case'"':r+='"',i+=1;break;case"\\":r+="\\",i+=1;break;case"u":{let c=e.slice(i+2,i+6);if(c.length!==4||!/^[0-9a-fA-F]{4}$/.test(c))throw new Error(`Invalid \\u escape at line ${t}`);r+=String.fromCharCode(parseInt(c,16)),i+=5;break}case"U":{let c=e.slice(i+2,i+10);if(c.length!==8||!/^[0-9a-fA-F]{8}$/.test(c))throw new Error(`Invalid \\U escape at line ${t}`);r+=String.fromCodePoint(parseInt(c,16)),i+=9;break}default:throw new Error(`Unknown escape sequence \\${a} at line ${t}`)}continue}if(s==='"'){let a=e.slice(i+1);return{value:r,rest:a}}r+=s}throw new Error(`Unterminated string literal at line ${t}`)}findClosingBracket(e,t,r){let i=0;for(let s=0;s<e.length;s++){let a=e[s];if(a===t){i++;continue}if(a===r&&(i--,i===0))return s}return-1}};Ql.NTriplesParser=Sg});var $S=v(Yl=>{"use strict";Object.defineProperty(Yl,"__esModule",{value:!0});Yl.TurtleParser=void 0;var Ra=Wr(),VR=_g(),UR={rdf:Ra.Namespace.RDF.iri.value,rdfs:Ra.Namespace.RDFS.iri.value,owl:Ra.Namespace.OWL.iri.value,xsd:Ra.Namespace.XSD.iri.value,exo:Ra.Namespace.EXO.iri.value,ems:Ra.Namespace.EMS.iri.value},BR=/^@prefix\s+([a-zA-Z_][\w-]*):\s*<([^>]+)>\s*\.$/,wg=class{static{o(this,"TurtleParser")}constructor(){this.nTriplesParser=new VR.NTriplesParser}parse(e,t={}){let r={...UR,...t.prefixes??{}},i=this.collectStatements(e),s=[];return i.forEach(({statement:a,lineNumber:c})=>{if(this.isPrefixStatement(a)){let l=a.match(BR);if(!l)throw new Error(`Invalid prefix declaration at line ${c}`);let[,f,h]=l;r[f]=h;return}if(a.includes(";")||a.includes(","))throw new Error(`Complex Turtle statements with ';' or ',' are not supported (line ${c})`);let u=this.normalizeShortcuts(a);s.push(this.nTriplesParser.parseLine(u,c,{prefixes:r,strict:!1}))}),s}collectStatements(e){let t=e.split(/\r?\n/),r=[],i="",s=0;if(t.forEach((a,c)=>{let u=a.trim();!u||u.startsWith("#")||(i||(s=c+1),i=i?`${i} ${u}`:u,u.endsWith(".")&&(r.push({statement:i,lineNumber:s}),i=""))}),i)throw new Error(`Unterminated Turtle statement near line ${s}`);return r}isPrefixStatement(e){return e.startsWith("@prefix")}normalizeShortcuts(e){return e.includes(" a ")?e.replace(/\sa\s/g," rdf:type "):e}};Yl.TurtleParser=wg});var VS=v(Kl=>{"use strict";Object.defineProperty(Kl,"__esModule",{value:!0});Kl.RDFSerializer=void 0;var Fa=ji(),Hs=Xe(),zs=ft(),bg=Ut(),Xn=Wr(),qR=NS(),GR=mg(),WR=MS(),HR=$S(),zR=_g(),QR=1024,YR=`
240
+ `;return e.length===0?"":e.map(i=>i.toString()).join(r)+r}serializeChunk(e,t){return e.length===0?"":e.map(r=>r.toString()).join(t)+t}};Wl.NTriplesSerializer=pg});var NS=v(Hl=>{"use strict";Object.defineProperty(Hl,"__esModule",{value:!0});Hl.TurtleSerializer=void 0;var Ia=Gr(),FR=mg(),NR={rdf:Ia.Namespace.RDF.iri.value,rdfs:Ia.Namespace.RDFS.iri.value,owl:Ia.Namespace.OWL.iri.value,xsd:Ia.Namespace.XSD.iri.value,exo:Ia.Namespace.EXO.iri.value,ems:Ia.Namespace.EMS.iri.value},gg=class{static{o(this,"TurtleSerializer")}constructor(){this.nTriplesSerializer=new FR.NTriplesSerializer}serialize(e,t={}){let r=t.newline??`
241
+ `,i=this.composePrefixes(t),s=this.serializePrefixes(i,r),a=this.nTriplesSerializer.serialize(e,{newline:r}).trimEnd();return s?a?`${s}${r}${r}${a}${r}`:`${s}${r}`:a?`${a}${r}`:""}serializePrefixes(e,t){let r=Object.entries(e);return r.length===0?"":r.map(([i,s])=>`@prefix ${i}: <${s}> .`).join(t)}composePrefixes(e){return e.includeDefaultPrefixes??!0?{...NR,...e.prefixes??{}}:{...e.prefixes??{}}}serializeTriplesOnly(e,t){return this.nTriplesSerializer.serializeChunk(e,t).trimEnd()}};Hl.TurtleSerializer=gg});var MS=v(zl=>{"use strict";Object.defineProperty(zl,"__esModule",{value:!0});zl.JSONLDSerializer=void 0;var LS=Xe(),kS=Ut(),LR=ft(),Pa=Gr(),kR={rdf:Pa.Namespace.RDF.iri.value,rdfs:Pa.Namespace.RDFS.iri.value,owl:Pa.Namespace.OWL.iri.value,xsd:Pa.Namespace.XSD.iri.value,exo:Pa.Namespace.EXO.iri.value,ems:Pa.Namespace.EMS.iri.value},yg=class{static{o(this,"JSONLDSerializer")}toDocument(e,t={}){let r={...kR,...t.context??{}},i=new Map;for(let s of e){let a=this.subjectToId(s.subject),c=this.compactIri(s.predicate.value,r),u=this.objectToJSONLD(s.object,r),l=i.get(a)??{"@id":a},f=l[c];f===void 0?l[c]=u:Array.isArray(f)?f.push(u):l[c]=[f,u],i.set(a,l)}return{"@context":r,"@graph":Array.from(i.values())}}serialize(e,t={}){let r=this.toDocument(e,t),i=t.pretty?t.indent??2:void 0;return JSON.stringify(r,null,i)}subjectToId(e){return e instanceof LS.IRI?e.value:e instanceof kS.BlankNode?`_:${e.id}`:String(e)}compactIri(e,t){for(let[r,i]of Object.entries(t))if(e.startsWith(i)){let s=e.slice(i.length);if(s.length>0)return`${r}:${s}`}return e}objectToJSONLD(e,t){if(e instanceof LS.IRI)return{"@id":e.value};if(e instanceof kS.BlankNode)return{"@id":`_:${e.id}`};if(e instanceof LR.Literal){let r={"@value":e.value};return e.datatype?r["@type"]=this.compactIri(e.datatype.value,t):e.language&&(r["@language"]=e.language,e.hasDirection()&&e.direction&&(r["@direction"]=e.direction)),r}return e}};zl.JSONLDSerializer=yg});var _g=v(Ql=>{"use strict";Object.defineProperty(Ql,"__esModule",{value:!0});Ql.NTriplesParser=void 0;var MR=ji(),jS=Xe(),vg=ft(),jR=Ut(),Da=Gr(),$R={rdf:Da.Namespace.RDF.iri.value,rdfs:Da.Namespace.RDFS.iri.value,owl:Da.Namespace.OWL.iri.value,xsd:Da.Namespace.XSD.iri.value,exo:Da.Namespace.EXO.iri.value,ems:Da.Namespace.EMS.iri.value},Sg=class{static{o(this,"NTriplesParser")}parse(e,t={}){let r={prefixes:{...$R,...t.prefixes??{}},strict:t.strict??!1},i=[];return e.split(/\r?\n/).forEach((a,c)=>{let u=a.trim();!u||u.startsWith("#")||i.push(this.parseLine(u,c+1,r))}),i}parseLine(e,t,r){if(!e.endsWith("."))throw new Error(`Invalid RDF statement at line ${t}: missing '.' terminator`);let s=e.slice(0,-1).trim(),a=this.parseSubject(s,t,r);s=a.rest.trim();let c=this.parsePredicate(s,t,r);s=c.rest.trim();let u=this.parseObject(s,t,r);if(s=u.rest.trim(),s.length>0)throw new Error(`Unexpected tokens after object at line ${t}`);return new MR.Triple(a.node,c.node,u.node)}parseSubject(e,t,r){return e.startsWith("<")?this.consumeIRI(e,t,r):e.startsWith("_:")?this.consumeBlankNode(e,t):this.consumePrefixedName(e,t,r)}parsePredicate(e,t,r){return e.startsWith("<")?this.consumeIRI(e,t,r):this.consumePrefixedName(e,t,r)}parseObject(e,t,r){return e.startsWith("<")?this.consumeIRI(e,t,r):e.startsWith("_:")?this.consumeBlankNode(e,t):e.startsWith('"')?this.consumeLiteral(e,t,r):this.consumePrefixedName(e,t,r)}consumePrefixedName(e,t,r){let i=e.match(/^([a-zA-Z_][\w-]*):([^\s]+)(?:\s+(.*))?$/);if(!i)throw new Error(`Invalid token at line ${t}: ${e}`);let[,s,a,c]=i,u=r.prefixes[s];if(!u)throw new Error(`Unknown prefix "${s}" at line ${t}`);return{node:new jS.IRI(`${u}${a}`),rest:(c??"").trimStart()}}consumeIRI(e,t,r){let i=this.findClosingBracket(e,"<",">");if(i===-1)throw new Error(`Invalid IRI at line ${t}`);let s=e.slice(1,i),a=new jS.IRI(s),c=e.slice(i+1).trimStart();return{node:a,rest:c}}consumeBlankNode(e,t){let r=e.match(/^_:(\w+)(?:\s+(.*))?$/);if(!r)throw new Error(`Invalid blank node identifier at line ${t}`);let[,i,s]=r;return{node:new jR.BlankNode(i),rest:(s??"").trimStart()}}consumeLiteral(e,t,r){let{value:i,rest:s}=this.consumeQuotedString(e,t),a=s.trimStart();if(a.startsWith("^^")){a=a.slice(2).trimStart();let c=a.startsWith("<")?this.consumeIRI(a,t,r):this.consumePrefixedName(a,t,r);return{node:new vg.Literal(i,c.node),rest:c.rest}}if(a.startsWith("@")){let c=a.match(/^@([a-zA-Z-]+)(?:\s+(.*))?$/);if(!c)throw new Error(`Invalid language tag at line ${t}`);let[,u,l]=c;return{node:new vg.Literal(i,void 0,u),rest:(l??"").trimStart()}}return{node:new vg.Literal(i),rest:a}}consumeQuotedString(e,t){if(!e.startsWith('"'))throw new Error(`Expected quoted string at line ${t}`);let r="";for(let i=1;i<e.length;i++){let s=e[i];if(s==="\\"){if(i+1>=e.length)throw new Error(`Invalid escape sequence at line ${t}`);let a=e[i+1];switch(a){case"t":r+=" ",i+=1;break;case"b":r+="\b",i+=1;break;case"n":r+=`
242
+ `,i+=1;break;case"r":r+="\r",i+=1;break;case"f":r+="\f",i+=1;break;case'"':r+='"',i+=1;break;case"\\":r+="\\",i+=1;break;case"u":{let c=e.slice(i+2,i+6);if(c.length!==4||!/^[0-9a-fA-F]{4}$/.test(c))throw new Error(`Invalid \\u escape at line ${t}`);r+=String.fromCharCode(parseInt(c,16)),i+=5;break}case"U":{let c=e.slice(i+2,i+10);if(c.length!==8||!/^[0-9a-fA-F]{8}$/.test(c))throw new Error(`Invalid \\U escape at line ${t}`);r+=String.fromCodePoint(parseInt(c,16)),i+=9;break}default:throw new Error(`Unknown escape sequence \\${a} at line ${t}`)}continue}if(s==='"'){let a=e.slice(i+1);return{value:r,rest:a}}r+=s}throw new Error(`Unterminated string literal at line ${t}`)}findClosingBracket(e,t,r){let i=0;for(let s=0;s<e.length;s++){let a=e[s];if(a===t){i++;continue}if(a===r&&(i--,i===0))return s}return-1}};Ql.NTriplesParser=Sg});var $S=v(Yl=>{"use strict";Object.defineProperty(Yl,"__esModule",{value:!0});Yl.TurtleParser=void 0;var Ra=Gr(),VR=_g(),UR={rdf:Ra.Namespace.RDF.iri.value,rdfs:Ra.Namespace.RDFS.iri.value,owl:Ra.Namespace.OWL.iri.value,xsd:Ra.Namespace.XSD.iri.value,exo:Ra.Namespace.EXO.iri.value,ems:Ra.Namespace.EMS.iri.value},BR=/^@prefix\s+([a-zA-Z_][\w-]*):\s*<([^>]+)>\s*\.$/,wg=class{static{o(this,"TurtleParser")}constructor(){this.nTriplesParser=new VR.NTriplesParser}parse(e,t={}){let r={...UR,...t.prefixes??{}},i=this.collectStatements(e),s=[];return i.forEach(({statement:a,lineNumber:c})=>{if(this.isPrefixStatement(a)){let l=a.match(BR);if(!l)throw new Error(`Invalid prefix declaration at line ${c}`);let[,f,h]=l;r[f]=h;return}if(a.includes(";")||a.includes(","))throw new Error(`Complex Turtle statements with ';' or ',' are not supported (line ${c})`);let u=this.normalizeShortcuts(a);s.push(this.nTriplesParser.parseLine(u,c,{prefixes:r,strict:!1}))}),s}collectStatements(e){let t=e.split(/\r?\n/),r=[],i="",s=0;if(t.forEach((a,c)=>{let u=a.trim();!u||u.startsWith("#")||(i||(s=c+1),i=i?`${i} ${u}`:u,u.endsWith(".")&&(r.push({statement:i,lineNumber:s}),i=""))}),i)throw new Error(`Unterminated Turtle statement near line ${s}`);return r}isPrefixStatement(e){return e.startsWith("@prefix")}normalizeShortcuts(e){return e.includes(" a ")?e.replace(/\sa\s/g," rdf:type "):e}};Yl.TurtleParser=wg});var VS=v(Kl=>{"use strict";Object.defineProperty(Kl,"__esModule",{value:!0});Kl.RDFSerializer=void 0;var Fa=ji(),Hs=Xe(),zs=ft(),bg=Ut(),Xn=Gr(),qR=NS(),GR=mg(),WR=MS(),HR=$S(),zR=_g(),QR=1024,YR=`
243
243
  `,KR={rdf:Xn.Namespace.RDF.iri.value,rdfs:Xn.Namespace.RDFS.iri.value,owl:Xn.Namespace.OWL.iri.value,xsd:Xn.Namespace.XSD.iri.value,exo:Xn.Namespace.EXO.iri.value,ems:Xn.Namespace.EMS.iri.value},Eg=class{static{o(this,"RDFSerializer")}constructor(e){this.store=e,this.turtleSerializer=new qR.TurtleSerializer,this.nTriplesSerializer=new GR.NTriplesSerializer,this.jsonldSerializer=new WR.JSONLDSerializer,this.turtleParser=new HR.TurtleParser,this.nTriplesParser=new zR.NTriplesParser}async serialize(e,t={}){let r=await this.store.match();return this.serializeTriples(r,e,t)}serializeTriples(e,t,r={}){switch(t){case"turtle":return this.turtleSerializer.serialize(e,{prefixes:r.prefixes,includeDefaultPrefixes:r.includeDefaultPrefixes,newline:r.newline});case"n-triples":return this.nTriplesSerializer.serialize(e,{newline:r.newline});case"json-ld":return this.jsonldSerializer.serialize(e,{context:r.prefixes,pretty:r.pretty,indent:r.indent});default:throw new Error(`Unsupported serialization format: ${t}`)}}stream(e,t={}){let r=t.newline??YR,i=t.batchSize??QR,s=t.includeDefaultPrefixes,a=t.prefixes,c=this,u=!1,l=[],f=[],h=0,d=o(async()=>{if(!u){if(f=await c.store.match(),e==="json-ld"){let S=c.jsonldSerializer.toDocument(f,{context:a,pretty:!1});l.push(...c.buildJsonLdChunks(S))}else if(e==="turtle"){let S=c.turtleSerializer.serializePrefixes(c.composePrefixes(a,s),r);S&&l.push(`${S}${r}${r}`)}u=!0}},"ensureInitialized");return{async next(){if(await d(),l.length>0)return{value:l.shift(),done:!1};if(e==="json-ld")return{value:void 0,done:!0};if(h>=f.length)return{value:void 0,done:!0};let S=f.slice(h,h+i);h+=S.length;let w="";if(e==="turtle"){let T=c.turtleSerializer.serializeTriplesOnly(S,r);T&&(w=`${T}${r}`)}else e==="n-triples"&&(w=c.nTriplesSerializer.serializeChunk(S,r));return w?{value:w,done:!1}:this.next()},async return(){return l=[],f=[],h=0,{value:void 0,done:!0}},[Symbol.asyncIterator](){return this}}}async load(e,t,r={}){let i=this.parse(e,t,r);return r.mode!=="append"&&await this.store.clear(),await this.store.addAll(i),i.length}parse(e,t,r={}){switch(t){case"turtle":return this.turtleParser.parse(e,this.buildTurtleParseOptions(r));case"n-triples":return this.nTriplesParser.parse(e,this.buildNTriplesParseOptions(r));case"json-ld":return this.parseJsonLd(e,r);default:throw new Error(`Unsupported serialization format: ${t}`)}}buildTurtleParseOptions(e){return{prefixes:this.composePrefixes(e.prefixes,!0),strict:e.strict}}buildNTriplesParseOptions(e){return{prefixes:this.composePrefixes(e.prefixes,!0),strict:e.strict}}composePrefixes(e,t){return t??!0?{...KR,...e??{}}:{...e??{}}}parseJsonLd(e,t){let r;try{r=JSON.parse(e)}catch(l){throw new Error(`Invalid JSON-LD document: ${l.message}`)}let i=this.composePrefixes(t.prefixes,!0),s=this.extractContext(r),a={...i,...s},c=this.extractGraph(r),u=[];return c.forEach((l,f)=>{if(!l||typeof l!="object"||Array.isArray(l))throw new Error(`Invalid JSON-LD node at index ${f}`);let h=this.parseSubjectFromNode(l,a,f),d=Object.entries(l);for(let[p,S]of d){if(p==="@id"||p==="@context")continue;if(p==="@type"){this.collectTypeTriples(h,S,u,a);continue}let w=this.expandTerm(p,a),T=new Hs.IRI(w);this.collectTriplesForValue(h,T,S,u,a)}}),u}extractContext(e){if(!e||typeof e!="object"||Array.isArray(e))return{};let t=e["@context"];if(!t||typeof t!="object"||Array.isArray(t))return{};let r={};return Object.entries(t).forEach(([i,s])=>{typeof s=="string"&&(r[i]=s)}),r}extractGraph(e){if(Array.isArray(e))return e;if(!e||typeof e!="object")return[];let t=e["@graph"];return Array.isArray(t)?t:[e]}parseSubjectFromNode(e,t,r){let i=e["@id"];if(typeof i=="string"){if(i.startsWith("_:"))return new bg.BlankNode(i.slice(2));if(this.isAbsoluteIri(i))return new Hs.IRI(i);let s=this.expandTerm(i,t);return new Hs.IRI(s)}return new bg.BlankNode(`jsonld_${r}`)}collectTypeTriples(e,t,r,i){let s=Xn.Namespace.RDF.term("type");(Array.isArray(t)?t:[t]).forEach(c=>{if(typeof c!="string")throw new Error("Invalid @type value in JSON-LD node");let u=this.expandTerm(c,i);r.push(new Fa.Triple(e,s,new Hs.IRI(u)))})}collectTriplesForValue(e,t,r,i,s){if(r!=null){if(Array.isArray(r)){r.forEach(a=>this.collectTriplesForValue(e,t,a,i,s));return}if(typeof r=="object"){let a=r;if(typeof a["@id"]=="string"){let c=this.parseIdNode(a["@id"],s);i.push(new Fa.Triple(e,t,c));return}if(a["@value"]!==void 0){let c=this.parseLiteralObject(a,s);i.push(new Fa.Triple(e,t,c));return}}if(typeof r=="string"){i.push(new Fa.Triple(e,t,new zs.Literal(r)));return}if(typeof r=="number"){let a=Number.isInteger(r)?Xn.Namespace.XSD.term("integer"):Xn.Namespace.XSD.term("decimal");i.push(new Fa.Triple(e,t,new zs.Literal(r.toString(),a)));return}if(typeof r=="boolean"){let a=Xn.Namespace.XSD.term("boolean");i.push(new Fa.Triple(e,t,new zs.Literal(r.toString(),a)));return}throw new Error("Unsupported JSON-LD value encountered")}}parseIdNode(e,t){if(e.startsWith("_:"))return new bg.BlankNode(e.slice(2));if(this.isAbsoluteIri(e))return new Hs.IRI(e);let r=this.expandTerm(e,t);return new Hs.IRI(r)}parseLiteralObject(e,t){let r=e["@value"];if(typeof r!="string")throw new Error("JSON-LD literal values must be strings");if(typeof e["@language"]=="string"){let i=e["@direction"];return i==="ltr"||i==="rtl"?new zs.Literal(r,void 0,e["@language"],i):new zs.Literal(r,void 0,e["@language"])}if(typeof e["@type"]=="string"){let i=this.expandTerm(e["@type"],t);return new zs.Literal(r,new Hs.IRI(i))}return new zs.Literal(r)}expandTerm(e,t){if(this.isAbsoluteIri(e))return e;let r=e.indexOf(":");if(r>0){let s=e.slice(0,r),a=e.slice(r+1),c=t[s];if(!c)throw new Error(`Unknown prefix "${s}" in JSON-LD document`);return`${c}${a}`}let i=t["@vocab"];if(i)return`${i}${e}`;throw new Error(`Unable to expand JSON-LD term "${e}"`)}isAbsoluteIri(e){return/^[a-z][a-z0-9+.-]*:/i.test(e)}buildJsonLdChunks(e){let t=[],r=JSON.stringify(e["@context"]);return t.push(`{"@context":${r},"@graph":[`),e["@graph"].forEach((i,s)=>{let a=JSON.stringify(i);s>0?t.push(`,${a}`):t.push(a)}),t.push(`]}
244
- `),t}};Kl.RDFSerializer=Eg});var xg=v(zi=>{"use strict";Object.defineProperty(zi,"__esModule",{value:!0});zi.TransactionError=zi.TripleNotFoundError=zi.TripleAlreadyExistsError=void 0;var Tg=class extends Error{static{o(this,"TripleAlreadyExistsError")}constructor(e){super(`Triple already exists: ${e.toString()}`),this.name="TripleAlreadyExistsError"}};zi.TripleAlreadyExistsError=Tg;var Ag=class extends Error{static{o(this,"TripleNotFoundError")}constructor(e){super(`Triple not found: ${e.toString()}`),this.name="TripleNotFoundError"}};zi.TripleNotFoundError=Ag;var Cg=class extends Error{static{o(this,"TransactionError")}constructor(e){super(e),this.name="TransactionError"}};zi.TransactionError=Cg});var Jl=v(Xl=>{"use strict";Object.defineProperty(Xl,"__esModule",{value:!0});Xl.LRUCache=void 0;var Og=class{static{o(this,"LRUCache")}constructor(e){this.maxSize=e,this.cache=new Map}get(e){let t=this.cache.get(e);return t!==void 0&&(this.cache.delete(e),this.cache.set(e,t)),t}set(e,t){if(this.cache.has(e))this.cache.delete(e);else if(this.cache.size>=this.maxSize){let r=this.cache.keys().next().value;r!==void 0&&this.cache.delete(r)}this.cache.set(e,t)}clear(){this.cache.clear()}size(){return this.cache.size}};Xl.LRUCache=Og});var US=v(ef=>{"use strict";Object.defineProperty(ef,"__esModule",{value:!0});ef.InMemoryTripleStore=void 0;var Qi=xg(),Zl=Xe(),XR=Ut(),JR=ft(),ZR=Wr(),eF=Jl(),tF=ZR.Namespace.XSD.term("string").value,rF=/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/gi,Na="__default__",Ig=class n{static{o(this,"InMemoryTripleStore")}constructor(){this.triples=new Map,this.spo=new Map,this.sop=new Map,this.pso=new Map,this.pos=new Map,this.osp=new Map,this.ops=new Map,this.queryCache=new eF.LRUCache(1e3),this.uuidIndex=new Map,this.namedGraphs=new Map}async add(e){let t=this.getTripleKey(e);if(this.triples.has(t))return;this.triples.set(t,e);let r=this.getNodeKey(e.subject),i=this.getNodeKey(e.predicate),s=this.getNodeKey(e.object);this.addToIndex(this.spo,r,i,s),this.addToIndex(this.sop,r,s,i),this.addToIndex(this.pso,i,r,s),this.addToIndex(this.pos,i,s,r),this.addToIndex(this.osp,s,r,i),this.addToIndex(this.ops,s,i,r),this.addToUUIDIndex(e.subject),this.queryCache.clear()}async remove(e){let t=this.getTripleKey(e);if(!this.triples.has(t))return!1;this.triples.delete(t);let r=this.getNodeKey(e.subject),i=this.getNodeKey(e.predicate),s=this.getNodeKey(e.object);return this.removeFromIndex(this.spo,r,i,s),this.removeFromIndex(this.sop,r,s,i),this.removeFromIndex(this.pso,i,r,s),this.removeFromIndex(this.pos,i,s,r),this.removeFromIndex(this.osp,s,r,i),this.removeFromIndex(this.ops,s,i,r),this.queryCache.clear(),!0}async has(e){let t=this.getTripleKey(e);return this.triples.has(t)}async match(e,t,r){let i=this.getMatchCacheKey(e,t,r),s=this.queryCache.get(i);if(s!==void 0)return s;let a;return!e&&!t&&!r?a=Array.from(this.triples.values()):e&&t&&r?a=this.matchSPO(e,t,r):e&&t?a=this.matchSP(e,t):e&&r?a=this.matchSO(e,r):t&&r?a=this.matchPO(t,r):e?a=this.matchS(e):t?a=this.matchP(t):r?a=this.matchO(r):a=[],this.queryCache.set(i,a),a}async addAll(e){for(let t of e)await this.add(t)}async removeAll(e){let t=0;for(let r of e)await this.remove(r)&&t++;return t}async clear(){this.triples.clear(),this.spo.clear(),this.sop.clear(),this.pso.clear(),this.pos.clear(),this.osp.clear(),this.ops.clear(),this.uuidIndex.clear(),this.queryCache.clear()}async count(){return this.triples.size}async subjects(){let e=new Set;for(let t of this.triples.values())e.add(t.subject);return Array.from(e)}async predicates(){let e=new Set;for(let t of this.triples.values())e.add(t.predicate);return Array.from(e)}async objects(){let e=new Set;for(let t of this.triples.values())e.add(t.object);return Array.from(e)}async beginTransaction(){return new Pg(this)}async findSubjectsByUUID(e){return this.findSubjectsByUUIDSync(e)}findSubjectsByUUIDSync(e){let t=e.toLowerCase(),r=this.uuidIndex.get(t);if(!r||r.size===0)return[];let i=[];for(let s of r)this.spo.has(`i:${s}`)&&i.push(new Zl.IRI(s));return i}addToUUIDIndex(e){if(!(e instanceof Zl.IRI))return;let t=e.value,r=t.match(rF);if(r)for(let i of r){let s=i.toLowerCase();this.uuidIndex.has(s)||this.uuidIndex.set(s,new Set),this.uuidIndex.get(s).add(t)}}matchSPO(e,t,r){let i=this.getNodeKey(e),s=this.getNodeKey(t),a=this.getNodeKey(r),c=this.spo.get(i);if(!c)return[];let u=c.get(s);if(!u)return[];if(u.has(a)){let l=this.buildTripleKey(i,s,a),f=this.triples.get(l);return f?[f]:[]}return[]}matchSP(e,t){let r=this.getNodeKey(e),i=this.getNodeKey(t),s=this.spo.get(r);if(!s)return[];let a=s.get(i);return a?this.getTriplesByKeys(Array.from(a).map(c=>this.buildTripleKey(r,i,c))):[]}matchSO(e,t){let r=this.getNodeKey(e),i=this.getNodeKey(t),s=this.sop.get(r);if(!s)return[];let a=s.get(i);return a?this.getTriplesByKeys(Array.from(a).map(c=>this.buildTripleKey(r,c,i))):[]}matchPO(e,t){let r=this.getNodeKey(e),i=this.getNodeKey(t),s=this.pos.get(r);if(!s)return[];let a=s.get(i);return a?this.getTriplesByKeys(Array.from(a).map(c=>this.buildTripleKey(c,r,i))):[]}matchS(e){let t=this.getNodeKey(e),r=this.spo.get(t);if(!r)return[];let i=[];for(let[s,a]of r.entries())for(let c of a)i.push(this.buildTripleKey(t,s,c));return this.getTriplesByKeys(i)}matchP(e){let t=this.getNodeKey(e),r=this.pso.get(t);if(!r)return[];let i=[];for(let[s,a]of r.entries())for(let c of a)i.push(this.buildTripleKey(s,t,c));return this.getTriplesByKeys(i)}matchO(e){let t=this.getNodeKey(e),r=this.osp.get(t);if(!r)return[];let i=[];for(let[s,a]of r.entries())for(let c of a)i.push(this.buildTripleKey(s,c,t));return this.getTriplesByKeys(i)}getTriplesByKeys(e){let t=[];for(let r of e){let i=this.triples.get(r);i&&t.push(i)}return t}addToIndex(e,t,r,i){e.has(t)||e.set(t,new Map);let s=e.get(t);s.has(r)||s.set(r,new Set),s.get(r).add(i)}removeFromIndex(e,t,r,i){let s=e.get(t);if(!s)return;let a=s.get(r);a&&(a.delete(i),a.size===0&&s.delete(r),s.size===0&&e.delete(t))}getTripleKey(e){let t=this.getNodeKey(e.subject),r=this.getNodeKey(e.predicate),i=this.getNodeKey(e.object);return this.buildTripleKey(t,r,i)}buildTripleKey(e,t,r){return`${e}|${t}|${r}`}getNodeKey(e){if(e instanceof Zl.IRI)return`i:${e.value}`;if(e instanceof XR.BlankNode)return`b:${e.id}`;if(e instanceof JR.Literal){let t=`l:${e.value}`;return e.datatype&&e.datatype.value!==tF?t+=`^^${e.datatype.value}`:e.language&&(t+=`@${e.language}`),t}return""}getMatchCacheKey(e,t,r){let i=e?this.getNodeKey(e):"?",s=t?this.getNodeKey(t):"?",a=r?this.getNodeKey(r):"?";return`${i}|${s}|${a}`}getGraphKey(e){return e?e.value:Na}getOrCreateGraphStore(e){let t=this.getGraphKey(e);return t===Na?this:(this.namedGraphs.has(t)||this.namedGraphs.set(t,new n),this.namedGraphs.get(t))}async addToGraph(e,t){await this.getOrCreateGraphStore(t).add(e)}async removeFromGraph(e,t){let r=this.getGraphKey(t);if(r===Na)return this.remove(e);let i=this.namedGraphs.get(r);return i?i.remove(e):!1}async matchInGraph(e,t,r,i){let s=this.getGraphKey(i);if(s===Na)return this.match(e,t,r);let a=this.namedGraphs.get(s);return a?a.match(e,t,r):[]}async getNamedGraphs(){return Array.from(this.namedGraphs.keys()).map(e=>new Zl.IRI(e))}async hasGraph(e){let t=this.namedGraphs.get(e.value);return t?await t.count()>0:!1}async clearGraph(e){let t=this.getGraphKey(e);if(t===Na){await this.clear();return}let r=this.namedGraphs.get(t);r&&(await r.clear(),this.namedGraphs.delete(t))}async countInGraph(e){let t=this.getGraphKey(e);if(t===Na)return this.count();let r=this.namedGraphs.get(t);return r?r.count():0}};ef.InMemoryTripleStore=Ig;var Pg=class{static{o(this,"InMemoryTransaction")}constructor(e){this.store=e,this.operations=[],this.committed=!1,this.rolledBack=!1}async add(e){if(this.committed)throw new Qi.TransactionError("Transaction already committed");if(this.rolledBack)throw new Qi.TransactionError("Transaction already rolled back");this.operations.push({type:"add",triple:e})}async remove(e){if(this.committed)throw new Qi.TransactionError("Transaction already committed");if(this.rolledBack)throw new Qi.TransactionError("Transaction already rolled back");return this.operations.push({type:"remove",triple:e}),!0}async commit(){if(this.committed)throw new Qi.TransactionError("Transaction already committed");if(this.rolledBack)throw new Qi.TransactionError("Transaction already rolled back");for(let e of this.operations)e.type==="add"?await this.store.add(e.triple):await this.store.remove(e.triple);this.committed=!0,this.operations=[]}async rollback(){if(this.committed)throw new Qi.TransactionError("Transaction already committed");if(this.rolledBack)throw new Qi.TransactionError("Transaction already rolled back");this.operations=[],this.rolledBack=!0}}});var Rg=v(tf=>{"use strict";Object.defineProperty(tf,"__esModule",{value:!0});tf.RDFVocabularyMapper=void 0;var jr=ji(),BS=Xe(),ye=Wr(),Dg=class{static{o(this,"RDFVocabularyMapper")}constructor(){this.propertyMappings=new Map([["exo__Instance_class",ye.Namespace.RDF.term("type")],["exo__Asset_isDefinedBy",ye.Namespace.RDFS.term("isDefinedBy")],["exo__Class_superClass",ye.Namespace.RDFS.term("subClassOf")],["exo__Property_range",ye.Namespace.RDFS.term("range")],["exo__Property_domain",ye.Namespace.RDFS.term("domain")],["exo__Property_superProperty",ye.Namespace.RDFS.term("subPropertyOf")]])}generateClassHierarchyTriples(){let e=[];return e.push(new jr.Triple(ye.Namespace.EXO.term("Asset"),ye.Namespace.RDFS.term("subClassOf"),ye.Namespace.RDFS.term("Resource"))),e.push(new jr.Triple(ye.Namespace.EXO.term("Class"),ye.Namespace.RDFS.term("subClassOf"),ye.Namespace.RDFS.term("Class"))),e.push(new jr.Triple(ye.Namespace.EXO.term("Property"),ye.Namespace.RDFS.term("subClassOf"),ye.Namespace.RDF.term("Property"))),e.push(new jr.Triple(ye.Namespace.EMS.term("Task"),ye.Namespace.RDFS.term("subClassOf"),ye.Namespace.EXO.term("Asset"))),e.push(new jr.Triple(ye.Namespace.EMS.term("Project"),ye.Namespace.RDFS.term("subClassOf"),ye.Namespace.EXO.term("Asset"))),e.push(new jr.Triple(ye.Namespace.EMS.term("Area"),ye.Namespace.RDFS.term("subClassOf"),ye.Namespace.EXO.term("Asset"))),e}generatePropertyHierarchyTriples(){let e=[];return e.push(new jr.Triple(ye.Namespace.EXO.term("Instance_class"),ye.Namespace.RDFS.term("subPropertyOf"),ye.Namespace.RDF.term("type"))),e.push(new jr.Triple(ye.Namespace.EXO.term("Asset_isDefinedBy"),ye.Namespace.RDFS.term("subPropertyOf"),ye.Namespace.RDFS.term("isDefinedBy"))),e.push(new jr.Triple(ye.Namespace.EXO.term("Class_superClass"),ye.Namespace.RDFS.term("subPropertyOf"),ye.Namespace.RDFS.term("subClassOf"))),e.push(new jr.Triple(ye.Namespace.EXO.term("Property_range"),ye.Namespace.RDFS.term("subPropertyOf"),ye.Namespace.RDFS.term("range"))),e.push(new jr.Triple(ye.Namespace.EXO.term("Property_domain"),ye.Namespace.RDFS.term("subPropertyOf"),ye.Namespace.RDFS.term("domain"))),e.push(new jr.Triple(ye.Namespace.EXO.term("Property_superProperty"),ye.Namespace.RDFS.term("subPropertyOf"),ye.Namespace.RDFS.term("subPropertyOf"))),e}generateMappedTriple(e,t,r){let i=this.propertyMappings.get(t);if(!i)return null;let s;if(r instanceof BS.IRI)s=r;else{let a=r.match(/^(ems|exo)__(.+)$/);if(a){let[,c,u]=a;s=(c==="ems"?ye.Namespace.EMS:ye.Namespace.EXO).term(u)}else s=new BS.IRI(r)}return new jr.Triple(e,i,s)}hasMappingFor(e){return this.propertyMappings.has(e)}};tf.RDFVocabularyMapper=Dg});var Ng=v(In=>{"use strict";var nF=In&&In.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},iF=In&&In.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)},sF=In&&In.__param||function(n,e){return function(t,r){e(t,r,n)}};Object.defineProperty(In,"__esModule",{value:!0});In.NoteToRDFConverter=void 0;var qS=Le(),Yi=ji(),GS=Xe(),Jr=ft(),Jn=Wr(),aF=ot(),oF=Rg(),Fg=class{static{o(this,"NoteToRDFConverter")}constructor(e){this.vault=e,this.OBSIDIAN_VAULT_SCHEME="obsidian://vault/",this.BODY_WIKILINK_PATTERN=/(?<!!)\[\[([^\]|]+)(?:\|[^\]]+)?\]\]/g,this.vocabularyMapper=new oF.RDFVocabularyMapper}async convertNote(e){let t=this.vault.getFrontmatter(e);if(!t)return[];let r=[],i=this.notePathToIRI(e.path),s=Jn.Namespace.EXO.term("Asset_fileName");r.push(new Yi.Triple(i,s,new Jr.Literal(e.basename)));for(let[c,u]of Object.entries(t)){if(!this.isExocortexProperty(c))continue;let l=this.propertyKeyToIRI(c),f=Array.isArray(u)?u:[u];for(let h of f)if(c==="exo__Instance_class"){let d=this.valueToClassURI(h);r.push(new Yi.Triple(i,l,d))}else{let d=await this.valueToRDFObject(h,e);if(r.push(new Yi.Triple(i,l,d)),this.vocabularyMapper.hasMappingFor(c)&&d instanceof GS.IRI){let p=this.vocabularyMapper.generateMappedTriple(i,c,d);p&&r.push(p)}}if(c==="exo__Instance_class")for(let h of f){let d=this.expandClassValue(h);if(d){let p=Jn.Namespace.RDF.term("type");r.push(new Yi.Triple(i,p,d))}}}let a=await this.convertBodyWikilinks(e,i);return r.push(...a),r}async convertVault(){let e=this.vault.getAllFiles(),t=[];for(let r of e)try{let i=await this.convertNote(r);t.push(...i)}catch(i){console.warn(`\u26A0\uFE0F Skipping file with invalid IRI: ${r.path}`),console.warn(` Reason: ${i instanceof Error?i.message:String(i)}`);continue}return t}notePathToIRI(e){let t=encodeURI(e);return new GS.IRI(`${this.OBSIDIAN_VAULT_SCHEME}${t}`)}isExocortexProperty(e){return e.startsWith("exo__")||e.startsWith("ems__")}propertyKeyToIRI(e){if(e.startsWith("exo__")){let t=e.substring(5);return Jn.Namespace.EXO.term(t)}if(e.startsWith("ems__")){let t=e.substring(5);return Jn.Namespace.EMS.term(t)}throw new Error(`Invalid property key: ${e}`)}async valueToRDFObject(e,t){if(typeof e=="string"){let r=this.removeQuotes(e),i=this.extractWikilink(r);if(i){let s=this.vault.getFirstLinkpathDest(i,t.path);if(s)return this.notePathToIRI(s.path);if(this.isClassReference(i)){let a=this.expandClassValue(i);if(a)return a}return new Jr.Literal(r)}if(this.isClassReference(r)){let s=this.expandClassValue(r);if(s)return s}return this.isISO8601DateTime(r)?new Jr.Literal(r,Jn.Namespace.XSD.term("dateTime")):new Jr.Literal(r)}return typeof e=="boolean"?new Jr.Literal(e.toString()):typeof e=="number"?new Jr.Literal(e.toString(),Jn.Namespace.XSD.term("decimal")):e instanceof Date?new Jr.Literal(e.toISOString(),Jn.Namespace.XSD.term("dateTime")):new Jr.Literal(String(e))}isISO8601DateTime(e){return/^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(\.\d{1,3})?(Z|[+-]\d{2}:\d{2})?$/.test(e)}removeQuotes(e){let t=e.trim();return t.startsWith('"')&&t.endsWith('"')||t.startsWith("'")&&t.endsWith("'")?t.substring(1,t.length-1):e}extractWikilink(e){let t=e.match(/^\[\[([^\]]+)\]\]$/);return t?t[1]:null}valueToClassURI(e){if(typeof e!="string")return new Jr.Literal(String(e));let t=this.removeQuotes(e),i=this.extractWikilink(t)||t,s=this.expandClassValue(i);return s||new Jr.Literal(t)}isClassReference(e){return(e.startsWith("ems__")||e.startsWith("exo__"))&&!/\s/.test(e)}expandClassValue(e){let t=this.removeQuotes(e);if(t.startsWith("ems__")){let r=t.substring(5);return Jn.Namespace.EMS.term(r)}if(t.startsWith("exo__")){let r=t.substring(5);return Jn.Namespace.EXO.term(r)}return null}extractBodyContent(e){let t=/^---\r?\n[\s\S]*?\r?\n---\r?\n?/;return e.replace(t,"")}extractBodyWikilinks(e){let t=new Set,r,i=new RegExp(this.BODY_WIKILINK_PATTERN.source,"g");for(;(r=i.exec(e))!==null;)r[1]&&t.add(r[1]);return Array.from(t)}async convertBodyWikilinks(e,t){let r=[];try{let i=await this.vault.read(e),s=this.extractBodyContent(i),a=this.extractBodyWikilinks(s),c=Jn.Namespace.EXO.term("Asset_bodyLink");for(let u of a){let l=this.vault.getFirstLinkpathDest(u,e.path);if(l){let f=this.notePathToIRI(l.path);r.push(new Yi.Triple(t,c,f))}else if(this.isClassReference(u)){let f=this.expandClassValue(u);f?r.push(new Yi.Triple(t,c,f)):r.push(new Yi.Triple(t,c,new Jr.Literal(u)))}else r.push(new Yi.Triple(t,c,new Jr.Literal(u)))}}catch{}return r}};In.NoteToRDFConverter=Fg;In.NoteToRDFConverter=Fg=nF([(0,qS.injectable)(),sF(0,(0,qS.inject)(aF.DI_TOKENS.IVaultAdapter)),iF("design:paramtypes",[Object])],Fg)});var Lg=v((DB,WS)=>{var La=class{static{o(this,"Wildcard")}constructor(){return cF||this}equals(e){return e&&this.termType===e.termType}};Object.defineProperty(La.prototype,"value",{enumerable:!0,value:"*"});Object.defineProperty(La.prototype,"termType",{enumerable:!0,value:"Wildcard"});var cF=new La;WS.exports.Wildcard=La});var zS=v((FB,HS)=>{var uF=(function(){var n=o(function(C,A,P,F){for(P=P||{},F=C.length;F--;P[C[F]]=A);return P},"o"),e=[6,12,13,15,16,24,32,36,41,45,100,110,113,115,116,123,126,131,197,224,229,308,329,330,331,332,333],t=[2,247],r=[100,110,113,115,116,123,126,131,329,330,331,332,333],i=[2,409],s=[1,18],a=[1,27],c=[13,16,45,197,224,229,308],u=[28,29,53],l=[28,53],f=[1,42],h=[1,45],d=[1,41],p=[1,44],S=[123,126],w=[1,67],T=[39,45,87],O=[13,16,45,197,224,308],I=[1,87],L=[2,281],M=[1,86],G=[13,16,45,82,87,89,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312],Ee=[6,28,29,53,63,70,73,81,83,85],je=[6,13,16,28,29,53,63,70,73,81,83,85,87,308],Me=[6,13,16,28,29,45,53,63,70,73,81,82,83,85,87,89,197,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,314],q=[6,13,16,28,29,31,39,45,47,48,53,63,70,73,81,82,83,85,87,89,109,112,121,123,126,128,159,160,161,163,164,174,193,197,224,229,231,232,242,246,250,263,265,272,290,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,314,317,318,335,337,338,340,341,342,343,344,345,346],ie=[13,16,308],Se=[112,132,327,334],rt=[13,16,112,132,308],Ye=[1,111],st=[1,117],Ue=[112,132,327,328,334],Be=[13,16,112,132,308,328],ke=[28,29,45,53,87],Q=[1,138],k=[1,151],qe=[1,128],Ke=[1,127],V=[1,129],me=[1,140],Oe=[1,141],z=[1,142],Ie=[1,143],Pe=[1,144],Te=[1,145],De=[1,147],he=[1,148],Ae=[2,457],ge=[1,158],Ce=[1,159],Re=[1,160],Z=[1,152],se=[1,153],ae=[1,156],ee=[1,171],te=[1,172],re=[1,173],ne=[1,174],oe=[1,175],ce=[1,176],ue=[1,167],le=[1,168],X=[1,169],fe=[1,170],$e=[1,157],Fe=[1,166],we=[1,161],b=[1,162],E=[1,163],_=[1,164],x=[1,165],W=[6,13,16,29,31,45,82,85,87,89,112,159,160,161,163,164,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,335],nt=[1,195],ct=[6,31,73,81,83,85],be=[2,285],j=[1,199],$=[1,201],U=[6,31,70,73,81,83,85],H=[2,283],ve=[1,207],Ge=[1,218],We=[1,223],jt=[1,219],Ar=[1,225],Nr=[1,226],lr=[1,224],d1=[6,63,70,73,81,83,85],p1=[1,236],m1=[2,334],g1=[1,243],y1=[1,241],$t=[6,193],yu=[2,349],v1=[2,339],Li=[28,128],S1=[47,48,193,272],vu=[47,48,193,242,272],da=[47,48,193,242,246,272],pa=[47,48,193,242,246,250,263,265,272,290,297,298,299,300,301,302,341,342,343,344,345,346],Dt=[39,47,48,193,242,246,250,263,265,272,290,297,298,299,300,301,302,338,341,342,343,344,345,346],_1=[1,271],w1=[1,270],_t=[6,13,16,29,31,39,45,47,48,70,73,76,78,81,82,83,85,87,89,112,159,160,161,163,164,193,231,242,246,250,263,265,268,269,270,271,272,273,274,276,277,279,280,283,285,290,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,335,338,341,342,343,344,345,346,347,348,349,350,351],b1=[1,281],E1=[1,280],fr=[13,16,29,31,39,45,47,48,82,85,87,89,112,159,160,161,163,164,174,193,197,224,229,231,232,242,246,250,263,265,272,290,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,314,317,318,335,338,341,342,343,344,345,346],Uo=[45,89],Su=[13,16,29,31,39,45,47,48,82,85,87,89,112,159,160,161,163,164,174,193,197,224,229,231,232,242,246,250,263,265,272,290,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,314,317,318,335,338,341,342,343,344,345,346],_u=[13,16,31,82,174,294,295,296,297,298,299,300,301,302,303,304,305,306,308,312],wu=[31,89],bu=[48,87],gs=[6,13,16,45,48,82,87,89,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,337,338],Un=[6,13,16,39,45,48,82,87,89,231,263,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,337,338,340],T1=[1,313],ma=[6,85],Jh=[6,31,81,83,85],A1=[2,361],fi=[2,353],ys=[1,343],Bo=[31,112,335],hi=[13,16,29,31,45,48,82,85,87,89,112,159,160,161,163,164,193,197,224,229,231,232,272,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,317,318,335],Zh=[13,16,29,31,45,48,82,85,87,89,112,159,160,161,163,164,193,197,224,229,231,232,272,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,314,317,318,335],C1=[6,109,193],vs=[31,112],wt=[13,16,45,82,87,224,263,265,268,269,270,271,273,274,276,277,279,280,283,285,294,295,296,297,298,299,300,301,302,303,304,305,306,308,312,346,347,348,349,350,351],ed=[1,390],td=[1,391],ki=[13,16,87,197,308,314],x1=[13,16,39,45,82,87,224,263,265,268,269,270,271,273,274,276,277,279,280,283,285,294,295,296,297,298,299,300,301,302,303,304,305,306,308,312,346,347,348,349,350,351],Eu=[1,417],Tu=[1,418],O1=[13,16,48,197,229,308],Mi=[6,31,85],I1=[6,13,16,31,45,73,81,83,85,268,269,270,271,273,274,276,277,279,280,283,285,308,346,347,348,349,350,351],rd=[6,13,16,29,31,45,73,76,78,81,82,83,85,87,89,112,159,160,161,163,164,231,268,269,270,271,273,274,276,277,279,280,283,285,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,335,346,347,348,349,350,351],Ss=[29,31,85,112,159,160,161,163,164],Au=[1,443],Cu=[1,444],P1=[1,449],_s=[31,112,193,232,318,335],xu=[13,16,45,48,82,87,89,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312],D1=[13,16,31,45,48,82,87,89,112,193,231,232,272,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,317,318,335],nd=[13,16,29,31,45,48,82,85,87,89,112,159,160,161,163,164,193,231,232,272,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,317,318,335],qo=[13,16,31,48,82,174,294,295,296,297,298,299,300,301,302,303,304,305,306,308,312],Go=[31,45],R1=[1,507],F1=[1,508],N1=[6,13,16,29,31,39,45,47,48,63,70,73,76,78,81,82,83,85,87,89,112,159,160,161,163,164,193,231,242,246,250,263,265,268,269,270,271,272,273,274,276,277,279,280,283,285,290,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,335,336,338,341,342,343,344,345,346,347,348,349,350,351],Ou=[29,31,85,112,159,160,161,163,164,335],ws=[6,13,16,31,45,70,73,81,83,85,87,268,269,270,271,273,274,276,277,279,280,283,285,308,346,347,348,349,350,351],L1=[13,16,31,45,48,82,87,89,112,193,197,231,232,272,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,317,318,335],k1=[2,352],id=[13,16,197,308,314],M1=[1,565],ga=[6,13,16,31,45,76,78,81,83,85,87,268,269,270,271,273,274,276,277,279,280,283,285,308,346,347,348,349,350,351],j1=[13,16,29,31,45,82,85,87,89,112,159,160,161,163,164,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312],di=[13,16,29,31,45,82,85,87,89,112,159,160,161,163,164,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,335],$1=[13,16,87,308],pi=[2,364],ya=[29,31,85,112,159,160,161,163,164,193,232,318,335],Iu=[31,112,193,232,272,318,335],mi=[2,359],V1=[13,16,48,82,174,294,295,296,297,298,299,300,301,302,303,304,305,306,308,312],Pu=[29,31,85,112,159,160,161,163,164,193,232,272,318,335],U1=[13,16,31,45,82,87,89,112,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312],B1=[2,347],sd={trace:o(function(){},"trace"),yy:{},symbols_:{error:2,QueryOrUpdate:3,Prologue:4,QueryOrUpdate_group0:5,EOF:6,Query:7,Qry:8,Query_option0:9,Prologue_repetition0:10,BaseDecl:11,BASE:12,IRIREF:13,PrefixDecl:14,PREFIX:15,PNAME_NS:16,SelectClauseWildcard:17,Qry_repetition0:18,WhereClause:19,SolutionModifierNoGroup:20,SelectClauseVars:21,Qry_repetition1:22,SolutionModifier:23,CONSTRUCT:24,ConstructTemplate:25,Qry_repetition2:26,Qry_repetition3:27,WHERE:28,"{":29,Qry_option0:30,"}":31,DESCRIBE:32,Qry_group0:33,Qry_repetition4:34,Qry_option1:35,ASK:36,Qry_repetition5:37,SelectClauseBase:38,"*":39,SelectClauseVars_repetition_plus0:40,SELECT:41,SelectClauseBase_option0:42,SelectClauseItem:43,Var:44,"(":45,Expression:46,AS:47,")":48,SubSelect:49,SubSelect_option0:50,SubSelect_option1:51,DatasetClause:52,FROM:53,DatasetClause_option0:54,iri:55,WhereClause_option0:56,GroupGraphPattern:57,SolutionModifier_option0:58,SolutionModifierNoGroup_option0:59,SolutionModifierNoGroup_option1:60,SolutionModifierNoGroup_option2:61,GroupClause:62,GROUP:63,BY:64,GroupClause_repetition_plus0:65,GroupCondition:66,BuiltInCall:67,FunctionCall:68,HavingClause:69,HAVING:70,HavingClause_repetition_plus0:71,OrderClause:72,ORDER:73,OrderClause_repetition_plus0:74,OrderCondition:75,ASC:76,BrackettedExpression:77,DESC:78,Constraint:79,LimitOffsetClauses:80,LIMIT:81,INTEGER:82,OFFSET:83,ValuesClause:84,VALUES:85,InlineData:86,VAR:87,InlineData_repetition0:88,NIL:89,InlineData_repetition1:90,InlineData_repetition_plus2:91,InlineData_repetition3:92,DataBlock:93,DataBlockValueList:94,DataBlockValueList_repetition_plus0:95,Update:96,Update_repetition0:97,Update1:98,Update_option0:99,LOAD:100,Update1_option0:101,Update1_option1:102,Update1_group0:103,Update1_option2:104,GraphRefAll:105,Update1_group1:106,Update1_option3:107,GraphOrDefault:108,TO:109,CREATE:110,Update1_option4:111,GRAPH:112,INSERTDATA:113,QuadPattern:114,DELETEDATA:115,DELETEWHERE:116,Update1_option5:117,InsertDeleteClause:118,Update1_repetition0:119,IntoGraphClause:120,INTO:121,GraphRef:122,DELETE:123,InsertDeleteClause_option0:124,InsertClause:125,INSERT:126,UsingClause:127,USING:128,UsingClause_option0:129,WithClause:130,WITH:131,DEFAULT:132,GraphOrDefault_option0:133,GraphRefAll_group0:134,Quads:135,Quads_option0:136,Quads_repetition0:137,QuadsNotTriples:138,VarOrIri:139,QuadsNotTriples_option0:140,QuadsNotTriples_option1:141,QuadsNotTriples_option2:142,TriplesTemplate:143,TriplesTemplate_repetition0:144,TriplesSameSubject:145,TriplesTemplate_option0:146,GroupGraphPatternSub:147,GroupGraphPatternSub_option0:148,GroupGraphPatternSub_repetition0:149,GroupGraphPatternSubTail:150,GraphPatternNotTriples:151,GroupGraphPatternSubTail_option0:152,GroupGraphPatternSubTail_option1:153,TriplesBlock:154,TriplesBlock_repetition0:155,TriplesSameSubjectPath:156,TriplesBlock_option0:157,GroupOrUnionGraphPattern:158,OPTIONAL:159,MINUS:160,SERVICE:161,GraphPatternNotTriples_option0:162,FILTER:163,BIND:164,InlineDataOneVar:165,InlineDataFull:166,InlineDataOneVar_repetition0:167,InlineDataFull_repetition0:168,InlineDataFull_repetition_plus1:169,InlineDataFull_repetition2:170,DataBlockValue:171,Literal:172,QuotedTriple:173,UNDEF:174,GroupOrUnionGraphPattern_repetition0:175,ArgList:176,ArgList_option0:177,ArgList_repetition0:178,ExpressionList:179,ExpressionList_repetition0:180,ConstructTemplate_option0:181,ConstructTriples:182,ConstructTriples_repetition0:183,ConstructTriples_option0:184,VarOrTermOrQuotedTP:185,PropertyListNotEmpty:186,TriplesNode:187,PropertyList:188,PropertyList_option0:189,VerbObjectList:190,PropertyListNotEmpty_repetition0:191,SemiOptionalVerbObjectList:192,";":193,SemiOptionalVerbObjectList_option0:194,Verb:195,ObjectList:196,a:197,ObjectList_repetition0:198,Object:199,GraphNode:200,Object_option0:201,PropertyListPathNotEmpty:202,TriplesNodePath:203,TriplesSameSubjectPath_option0:204,O:205,PropertyListPathNotEmpty_repetition0:206,PropertyListPathNotEmptyTail:207,O_group0:208,ObjectListPath:209,ObjectListPath_repetition0:210,ObjectPath:211,GraphNodePath:212,ObjectPath_option0:213,Path:214,Path_repetition0:215,PathSequence:216,PathSequence_repetition0:217,PathEltOrInverse:218,PathElt:219,PathPrimary:220,PathElt_option0:221,PathEltOrInverse_option0:222,IriOrA:223,"!":224,PathNegatedPropertySet:225,PathOneInPropertySet:226,PathNegatedPropertySet_repetition0:227,PathNegatedPropertySet_option0:228,"^":229,TriplesNode_repetition_plus0:230,"[":231,"]":232,TriplesNodePath_repetition_plus0:233,VarOrTermOrQuotedTPExpr:234,VarOrTerm:235,GraphTerm:236,BlankNode:237,ConditionalOrExpression:238,ConditionalAndExpression:239,ConditionalOrExpression_repetition0:240,ConditionalOrExpressionTail:241,"||":242,RelationalExpression:243,ConditionalAndExpression_repetition0:244,ConditionalAndExpressionTail:245,"&&":246,NumericExpression:247,RelationalExpression_group0:248,RelationalExpression_option0:249,IN:250,MultiplicativeExpression:251,NumericExpression_repetition0:252,AdditiveExpressionTail:253,AdditiveExpressionTail_group0:254,NumericLiteralPositive:255,AdditiveExpressionTail_repetition0:256,NumericLiteralNegative:257,AdditiveExpressionTail_repetition1:258,UnaryExpression:259,MultiplicativeExpression_repetition0:260,MultiplicativeExpressionTail:261,MultiplicativeExpressionTail_group0:262,"+":263,PrimaryExpression:264,"-":265,ExprQuotedTP:266,Aggregate:267,FUNC_ARITY0:268,FUNC_ARITY1:269,FUNC_ARITY1_SPARQL_STAR:270,FUNC_ARITY2:271,",":272,FUNC_ARITY3:273,FUNC_ARITY3_SPARQL_STAR:274,BuiltInCall_group0:275,BOUND:276,BNODE:277,BuiltInCall_option0:278,EXISTS:279,COUNT:280,Aggregate_option0:281,Aggregate_group0:282,FUNC_AGGREGATE:283,Aggregate_option1:284,GROUP_CONCAT:285,Aggregate_option2:286,Aggregate_option3:287,GroupConcatSeparator:288,SEPARATOR:289,"=":290,String:291,LANGTAG:292,"^^":293,DECIMAL:294,DOUBLE:295,BOOLEAN:296,INTEGER_POSITIVE:297,DECIMAL_POSITIVE:298,DOUBLE_POSITIVE:299,INTEGER_NEGATIVE:300,DECIMAL_NEGATIVE:301,DOUBLE_NEGATIVE:302,STRING_LITERAL1:303,STRING_LITERAL2:304,STRING_LITERAL_LONG1:305,STRING_LITERAL_LONG2:306,PrefixedName:307,PNAME_LN:308,BLANK_NODE_LABEL:309,ANON:310,QuotedTP:311,"<<":312,qtSubjectOrObject:313,">>":314,DataValueTerm:315,AnnotationPattern:316,"{|":317,"|}":318,AnnotationPatternPath:319,ExprVarOrTerm:320,QueryOrUpdate_group0_option0:321,Prologue_repetition0_group0:322,Qry_group0_repetition_plus0:323,SelectClauseBase_option0_group0:324,DISTINCT:325,REDUCED:326,NAMED:327,SILENT:328,CLEAR:329,DROP:330,ADD:331,MOVE:332,COPY:333,ALL:334,".":335,UNION:336,"|":337,"/":338,PathElt_option0_group0:339,"?":340,"!=":341,"<":342,">":343,"<=":344,">=":345,NOT:346,CONCAT:347,COALESCE:348,SUBSTR:349,REGEX:350,REPLACE:351,$accept:0,$end:1},terminals_:{2:"error",6:"EOF",12:"BASE",13:"IRIREF",15:"PREFIX",16:"PNAME_NS",24:"CONSTRUCT",28:"WHERE",29:"{",31:"}",32:"DESCRIBE",36:"ASK",39:"*",41:"SELECT",45:"(",47:"AS",48:")",53:"FROM",63:"GROUP",64:"BY",70:"HAVING",73:"ORDER",76:"ASC",78:"DESC",81:"LIMIT",82:"INTEGER",83:"OFFSET",85:"VALUES",87:"VAR",89:"NIL",100:"LOAD",109:"TO",110:"CREATE",112:"GRAPH",113:"INSERTDATA",115:"DELETEDATA",116:"DELETEWHERE",121:"INTO",123:"DELETE",126:"INSERT",128:"USING",131:"WITH",132:"DEFAULT",159:"OPTIONAL",160:"MINUS",161:"SERVICE",163:"FILTER",164:"BIND",174:"UNDEF",193:";",197:"a",224:"!",229:"^",231:"[",232:"]",242:"||",246:"&&",250:"IN",263:"+",265:"-",268:"FUNC_ARITY0",269:"FUNC_ARITY1",270:"FUNC_ARITY1_SPARQL_STAR",271:"FUNC_ARITY2",272:",",273:"FUNC_ARITY3",274:"FUNC_ARITY3_SPARQL_STAR",276:"BOUND",277:"BNODE",279:"EXISTS",280:"COUNT",283:"FUNC_AGGREGATE",285:"GROUP_CONCAT",289:"SEPARATOR",290:"=",292:"LANGTAG",293:"^^",294:"DECIMAL",295:"DOUBLE",296:"BOOLEAN",297:"INTEGER_POSITIVE",298:"DECIMAL_POSITIVE",299:"DOUBLE_POSITIVE",300:"INTEGER_NEGATIVE",301:"DECIMAL_NEGATIVE",302:"DOUBLE_NEGATIVE",303:"STRING_LITERAL1",304:"STRING_LITERAL2",305:"STRING_LITERAL_LONG1",306:"STRING_LITERAL_LONG2",308:"PNAME_LN",309:"BLANK_NODE_LABEL",310:"ANON",312:"<<",314:">>",317:"{|",318:"|}",325:"DISTINCT",326:"REDUCED",327:"NAMED",328:"SILENT",329:"CLEAR",330:"DROP",331:"ADD",332:"MOVE",333:"COPY",334:"ALL",335:".",336:"UNION",337:"|",338:"/",340:"?",341:"!=",342:"<",343:">",344:"<=",345:">=",346:"NOT",347:"CONCAT",348:"COALESCE",349:"SUBSTR",350:"REGEX",351:"REPLACE"},productions_:[0,[3,3],[7,2],[4,1],[11,2],[14,3],[8,4],[8,4],[8,5],[8,7],[8,5],[8,4],[17,2],[21,2],[38,2],[43,1],[43,5],[49,4],[49,4],[52,3],[19,2],[23,2],[20,3],[62,3],[66,1],[66,1],[66,3],[66,5],[66,1],[69,2],[72,3],[75,2],[75,2],[75,1],[75,1],[80,2],[80,2],[80,4],[80,4],[84,2],[86,4],[86,4],[86,6],[86,2],[94,3],[96,3],[98,4],[98,3],[98,5],[98,4],[98,2],[98,2],[98,2],[98,5],[120,2],[118,3],[118,1],[125,2],[127,3],[130,2],[108,1],[108,2],[122,2],[105,1],[105,1],[114,3],[135,2],[138,7],[143,3],[57,3],[57,3],[147,2],[150,3],[154,3],[151,1],[151,2],[151,2],[151,3],[151,4],[151,2],[151,6],[151,1],[93,1],[93,1],[165,4],[166,4],[166,6],[171,1],[171,1],[171,1],[171,1],[158,2],[79,1],[79,1],[79,1],[68,2],[176,1],[176,5],[179,1],[179,4],[25,3],[182,3],[145,2],[145,2],[188,1],[186,2],[192,2],[190,2],[195,1],[195,1],[196,2],[199,2],[156,2],[156,2],[202,2],[207,1],[207,2],[205,2],[209,2],[211,2],[214,2],[216,2],[219,2],[218,2],[220,1],[220,2],[220,3],[225,1],[225,1],[225,4],[226,1],[226,2],[187,3],[187,3],[203,3],[203,3],[200,1],[200,1],[212,1],[212,1],[234,1],[235,1],[235,1],[139,1],[139,1],[44,1],[236,1],[236,1],[236,1],[236,1],[46,1],[238,2],[241,2],[239,2],[245,2],[243,1],[243,3],[243,4],[247,2],[253,2],[253,2],[253,2],[251,2],[261,2],[259,2],[259,2],[259,2],[259,1],[264,1],[264,1],[264,1],[264,1],[264,1],[264,1],[264,1],[77,3],[67,1],[67,2],[67,4],[67,4],[67,6],[67,8],[67,8],[67,2],[67,4],[67,2],[67,4],[67,3],[267,5],[267,5],[267,6],[288,4],[172,1],[172,2],[172,3],[172,1],[172,1],[172,1],[172,1],[172,1],[172,1],[255,1],[255,1],[255,1],[257,1],[257,1],[257,1],[291,1],[291,1],[291,1],[291,1],[55,1],[55,1],[307,1],[307,1],[237,1],[237,1],[311,5],[173,5],[313,1],[313,1],[313,1],[313,1],[313,1],[315,1],[315,1],[315,1],[185,1],[185,1],[185,1],[316,3],[319,3],[266,5],[320,1],[320,1],[320,1],[223,1],[223,1],[321,0],[321,1],[5,1],[5,1],[5,1],[9,0],[9,1],[322,1],[322,1],[10,0],[10,2],[18,0],[18,2],[22,0],[22,2],[26,0],[26,2],[27,0],[27,2],[30,0],[30,1],[323,1],[323,2],[33,1],[33,1],[34,0],[34,2],[35,0],[35,1],[37,0],[37,2],[40,1],[40,2],[324,1],[324,1],[42,0],[42,1],[50,0],[50,1],[51,0],[51,1],[54,0],[54,1],[56,0],[56,1],[58,0],[58,1],[59,0],[59,1],[60,0],[60,1],[61,0],[61,1],[65,1],[65,2],[71,1],[71,2],[74,1],[74,2],[88,0],[88,2],[90,0],[90,2],[91,1],[91,2],[92,0],[92,2],[95,1],[95,2],[97,0],[97,4],[99,0],[99,2],[101,0],[101,1],[102,0],[102,1],[103,1],[103,1],[104,0],[104,1],[106,1],[106,1],[106,1],[107,0],[107,1],[111,0],[111,1],[117,0],[117,1],[119,0],[119,2],[124,0],[124,1],[129,0],[129,1],[133,0],[133,1],[134,1],[134,1],[134,1],[136,0],[136,1],[137,0],[137,2],[140,0],[140,1],[141,0],[141,1],[142,0],[142,1],[144,0],[144,3],[146,0],[146,1],[148,0],[148,1],[149,0],[149,2],[152,0],[152,1],[153,0],[153,1],[155,0],[155,3],[157,0],[157,1],[162,0],[162,1],[167,0],[167,2],[168,0],[168,2],[169,1],[169,2],[170,0],[170,2],[175,0],[175,3],[177,0],[177,1],[178,0],[178,3],[180,0],[180,3],[181,0],[181,1],[183,0],[183,3],[184,0],[184,1],[189,0],[189,1],[191,0],[191,2],[194,0],[194,1],[198,0],[198,3],[201,0],[201,1],[204,0],[204,1],[206,0],[206,2],[208,1],[208,1],[210,0],[210,3],[213,0],[213,1],[215,0],[215,3],[217,0],[217,3],[339,1],[339,1],[339,1],[221,0],[221,1],[222,0],[222,1],[227,0],[227,3],[228,0],[228,1],[230,1],[230,2],[233,1],[233,2],[240,0],[240,2],[244,0],[244,2],[248,1],[248,1],[248,1],[248,1],[248,1],[248,1],[249,0],[249,1],[252,0],[252,2],[254,1],[254,1],[256,0],[256,2],[258,0],[258,2],[260,0],[260,2],[262,1],[262,1],[275,1],[275,1],[275,1],[275,1],[275,1],[278,0],[278,1],[281,0],[281,1],[282,1],[282,1],[284,0],[284,1],[286,0],[286,1],[287,0],[287,1]],performAction:o(function(A,P,F,Y,_e,m,dr){var g=m.length-1;switch(_e){case 1:if(m[g-1]=m[g-1]||{},xe.base&&(m[g-1].base=xe.base),xe.base="",m[g-1].prefixes=xe.prefixes,xe.prefixes=null,xe.pathOnly){if(m[g-1].type==="path"||"termType"in m[g-1])return m[g-1];throw new Error("Received full SPARQL query in path only mode")}else if(m[g-1].type==="path"||"termType"in m[g-1])throw new Error("Received only path in full SPARQL mode");if(m[g-1].type==="update"){let it={};for(let ht of m[g-1].updates)if(ht.updateType==="insert"){let He={};for(let Ze of ht.insert)if(Ze.type==="bgp"||Ze.type==="graph")for(let Cr of Ze.triples)Cr.subject.termType==="BlankNode"&&(He[Cr.subject.value]=!0),Cr.predicate.termType==="BlankNode"&&(He[Cr.predicate.value]=!0),Cr.object.termType==="BlankNode"&&(He[Cr.object.value]=!0);for(let Ze of Object.keys(He)){if(it[Ze])throw new Error("Detected reuse blank node across different INSERT DATA clauses");it[Ze]=!0}}}return m[g-1];case 2:this.$={...m[g-1],...m[g],type:"query"};break;case 4:xe.base=Wo(m[g]);break;case 5:xe.prefixes||(xe.prefixes={}),m[g-1]=m[g-1].substr(0,m[g-1].length-1),m[g]=Wo(m[g]),xe.prefixes[m[g-1]]=m[g];break;case 6:this.$={...m[g-3],...Ts(m[g-2]),...m[g-1],...m[g]};break;case 7:if(!xe.skipValidation&&(dd(m[g-3].variables.map(ht=>hd(ht.expression))).some(ht=>ht.aggregation==="count"&&!(ht.expression instanceof Du))||m[g].group)){for(let ht of m[g-3].variables)if(ht.termType==="Variable"){if(!m[g].group||!m[g].group.map(He=>wa(He)).includes(wa(ht)))throw Error("Projection of ungrouped variable (?"+wa(ht)+")")}else if(hd(ht.expression).length===0){let He=ZT(ht.expression);for(let Ze of He)if(!m[g].group||!m[g].group.map||!m[g].group.map(Cr=>wa(Cr)).includes(wa(Ze)))throw Error("Use of ungrouped variable in projection of operation (?"+wa(Ze)+")")}}let Wn=m[g-1].where.filter(it=>it.type==="query");if(Wn.length>0){let it=m[g-3].variables.filter(He=>He.variable&&He.variable.value).map(He=>He.variable.value),ht=dd(Wn.map(He=>He.variables)).map(He=>He.value||He.variable.value);for(let He of it)if(ht.indexOf(He)>=0)throw Error("Target id of 'AS' (?"+He+") already used in subquery")}this.$=gt(m[g-3],Ts(m[g-2]),m[g-1],m[g]);break;case 8:this.$=gt({queryType:"CONSTRUCT",template:m[g-3]},Ts(m[g-2]),m[g-1],m[g]);break;case 9:this.$=gt({queryType:"CONSTRUCT",template:m[g-2]=m[g-2]?m[g-2].triples:[]},Ts(m[g-5]),{where:[{type:"bgp",triples:Es([],m[g-2])}]},m[g]);break;case 10:this.$=gt({queryType:"DESCRIBE",variables:m[g-3]==="*"?[new Du]:m[g-3]},Ts(m[g-2]),m[g-1],m[g]);break;case 11:this.$=gt({queryType:"ASK"},Ts(m[g-2]),m[g-1],m[g]);break;case 12:this.$=gt(m[g-1],{variables:[new Du]});break;case 13:let Ko=m[g].map(it=>it.value||it.variable.value),ba=eA(Ko);if(ba.length>0)throw Error("Two or more of the resulting columns have the same name (?"+ba[0]+")");this.$=gt(m[g-1],{variables:m[g]});break;case 14:this.$=gt({queryType:"SELECT"},m[g]&&(m[g-1]=hr(m[g]),m[g]={},m[g][m[g-1]]=!0,m[g]));break;case 16:case 27:this.$=va(m[g-3],{variable:m[g-1]});break;case 17:case 18:this.$=gt(m[g-3],m[g-2],m[g-1],m[g],{type:"query"});break;case 19:case 58:this.$={iri:m[g],named:!!m[g-1]};break;case 20:this.$={where:m[g].patterns};break;case 21:this.$=gt(m[g-1],m[g]);break;case 22:this.$=gt(m[g-2],m[g-1],m[g]);break;case 23:this.$={group:m[g]};break;case 24:case 25:case 28:case 31:case 33:case 34:this.$=va(m[g]);break;case 26:this.$=va(m[g-1]);break;case 29:this.$={having:m[g]};break;case 30:this.$={order:m[g]};break;case 32:this.$=va(m[g],{descending:!0});break;case 35:this.$={limit:_a(m[g])};break;case 36:this.$={offset:_a(m[g])};break;case 37:this.$={limit:_a(m[g-2]),offset:_a(m[g])};break;case 38:this.$={limit:_a(m[g]),offset:_a(m[g-2])};break;case 39:case 43:this.$={type:"values",values:m[g]};break;case 40:case 84:this.$=m[g-1].map(it=>({[m[g-3]]:it}));break;case 41:case 85:this.$=m[g-1].map(()=>({}));break;case 42:case 86:var Gn=m[g-4].length;m[g-4]=m[g-4].map(ad),this.$=m[g-1].map(function(it){if(it.length!==Gn)throw Error("Inconsistent VALUES length");for(var ht={},He=0;He<Gn;He++)ht["?"+m[g-4][He].value]=it[He];return ht});break;case 44:case 65:case 100:case 126:case 175:this.$=m[g-1];break;case 45:this.$={type:"update",updates:gi(m[g-2],m[g-1])};break;case 46:this.$=gt({type:"load",silent:!!m[g-2],source:m[g-1]},m[g]&&{destination:m[g]});break;case 47:this.$={type:hr(m[g-2]),silent:!!m[g-1],graph:m[g]};break;case 48:this.$={type:hr(m[g-4]),silent:!!m[g-3],source:m[g-2],destination:m[g]};break;case 49:this.$={type:"create",silent:!!m[g-2],graph:{type:"graph",name:m[g]}};break;case 50:this.$={updateType:"insert",insert:Z1(m[g])};break;case 51:this.$={updateType:"delete",delete:gd(Z1(m[g]))};break;case 52:this.$={updateType:"deletewhere",delete:gd(m[g])};break;case 53:this.$={updateType:"insertdelete",...m[g-4],...m[g-3],...Ts(m[g-2],"using"),where:m[g].patterns};break;case 54:case 57:case 62:case 167:case 191:case 236:this.$=m[g];break;case 55:this.$={delete:gd(m[g-1]),insert:m[g]||[]};break;case 56:this.$={delete:[],insert:m[g]};break;case 59:this.$={graph:m[g]};break;case 60:this.$={type:"graph",default:!0};break;case 61:case 63:this.$={type:"graph",name:m[g]};break;case 64:this.$={[hr(m[g])]:!0};break;case 66:this.$=m[g-1]?Bn(m[g],[m[g-1]]):Bn(m[g]);break;case 67:var Qo=gt(m[g-3]||{triples:[]},{type:"graph",name:m[g-5]});this.$=m[g]?[Qo,m[g]]:[Qo];break;case 68:case 73:this.$={type:"bgp",triples:Bn(m[g-2],[m[g-1]])};break;case 69:this.$={type:"group",patterns:[m[g-1]]};break;case 70:for(let it of m[g-1].filter(ht=>ht.type==="bind")){let ht=m[g-1].indexOf(it),He=new Set;for(let Ze of m[g-1].slice(0,ht))(Ze.type==="group"||Ze.type==="bgp")&&X1(Ze).forEach(Cr=>He.add(Cr));if(He.has(it.variable.value))throw Error("Variable used to bind is already bound (?"+it.variable.value+")")}this.$={type:"group",patterns:m[g-1]};break;case 71:this.$=m[g-1]?Bn([m[g-1]],m[g]):Bn(m[g]);break;case 72:this.$=m[g]?[m[g-2],m[g]]:m[g-2];break;case 75:this.$=gt(m[g],{type:"optional"});break;case 76:this.$=gt(m[g],{type:"minus"});break;case 77:this.$=gt(m[g],{type:"graph",name:m[g-1]});break;case 78:this.$=gt(m[g],{type:"service",name:m[g-1],silent:!!m[g-2]});break;case 79:this.$={type:"filter",expression:m[g]};break;case 80:this.$={type:"bind",variable:m[g-1],expression:m[g-3]};break;case 89:this.$=zo(m[g]);break;case 90:this.$=void 0;break;case 91:this.$=m[g-1].length?{type:"union",patterns:Bn(m[g-1].map(cd),[cd(m[g])])}:m[g];break;case 95:this.$={...m[g],function:m[g-1]};break;case 96:this.$={type:"functionCall",args:[]};break;case 97:this.$={type:"functionCall",args:gi(m[g-2],m[g-1]),distinct:!!m[g-3]};break;case 98:case 115:case 128:case 247:case 249:case 251:case 253:case 255:case 263:case 267:case 297:case 299:case 303:case 307:case 328:case 341:case 349:case 355:case 361:case 367:case 369:case 373:case 375:case 379:case 381:case 385:case 391:case 395:case 401:case 405:case 409:case 411:case 420:case 428:case 430:case 440:case 444:case 446:case 448:this.$=[];break;case 99:this.$=gi(m[g-2],m[g-1]);break;case 101:this.$=Bn(m[g-2],[m[g-1]]);break;case 102:case 112:this.$=md(m[g].map(it=>gt(yi(m[g-1]),it)));break;case 103:this.$=md(Es(m[g].map(it=>gt(yi(m[g-1].entity),it)),m[g-1].triples));break;case 105:this.$=Bn([m[g-1]],m[g]);break;case 106:this.$=Bn(m[g]);break;case 107:this.$=fd(m[g-1],m[g]);break;case 109:case 237:this.$=xe.factory.namedNode(qT);break;case 110:case 118:this.$=gi(m[g-1],m[g]);break;case 111:this.$=m[g]?{annotation:m[g],object:m[g-1]}:m[g-1];break;case 113:this.$=m[g]?md(Es(m[g].map(it=>gt(yi(m[g-1].entity),it)),m[g-1].triples)):m[g-1].triples;break;case 114:this.$=fd(...m[g-1],m[g]);break;case 116:this.$=fd(...m[g]);break;case 117:case 159:case 163:this.$=[m[g-1],m[g]];break;case 119:this.$=m[g]?{object:m[g-1],annotation:m[g]}:m[g-1];break;case 120:this.$=m[g-1].length?Sa("|",gi(m[g-1],m[g])):m[g];break;case 121:this.$=m[g-1].length?Sa("/",gi(m[g-1],m[g])):m[g];break;case 122:this.$=m[g]?Sa(m[g],[m[g-1]]):m[g-1];break;case 123:this.$=m[g-1]?Sa(m[g-1],[m[g]]):m[g];break;case 125:case 131:this.$=Sa(m[g-1],[m[g]]);break;case 129:this.$=Sa("|",gi(m[g-2],m[g-1]));break;case 132:case 134:this.$=XT(m[g-1]);break;case 133:case 135:this.$=JT(m[g-1]);break;case 140:this.$={entity:m[g],triples:[]};break;case 145:this.$=ad(m[g]);break;case 149:this.$=xe.factory.namedNode(q1);break;case 151:case 153:case 158:case 162:this.$=od(m[g-1],m[g]);break;case 152:this.$=["||",m[g]];break;case 154:this.$=["&&",m[g]];break;case 156:this.$=Vt(m[g-1],[m[g-2],m[g]]);break;case 157:this.$=Vt(m[g-2]?"notin":"in",[m[g-3],m[g]]);break;case 160:this.$=["+",od(m[g-1],m[g])];break;case 161:var Nu=qn(m[g-1].value.replace("-",""),m[g-1].datatype);this.$=["-",od(Nu,m[g])];break;case 164:this.$=Vt("UPLUS",[m[g]]);break;case 165:this.$=Vt(m[g-1],[m[g]]);break;case 166:this.$=Vt("UMINUS",[m[g]]);break;case 177:this.$=Vt(hr(m[g-1]));break;case 178:this.$=Vt(hr(m[g-3]),[m[g-1]]);break;case 179:this.$=zo(Vt(hr(m[g-3]),[m[g-1]]));break;case 180:this.$=Vt(hr(m[g-5]),[m[g-3],m[g-1]]);break;case 181:this.$=Vt(hr(m[g-7]),[m[g-5],m[g-3],m[g-1]]);break;case 182:this.$=zo(Vt(hr(m[g-7]),[m[g-5],m[g-3],m[g-1]]));break;case 183:this.$=Vt(hr(m[g-1]),m[g]);break;case 184:this.$=Vt("bound",[ad(m[g-1])]);break;case 185:this.$=Vt(m[g-1],[]);break;case 186:this.$=Vt(m[g-3],[m[g-1]]);break;case 187:this.$=Vt(m[g-2]?"notexists":"exists",[cd(m[g])]);break;case 188:case 189:this.$=va(m[g-1],{type:"aggregate",aggregation:hr(m[g-4]),distinct:!!m[g-2]});break;case 190:this.$=va(m[g-2],{type:"aggregate",aggregation:hr(m[g-5]),distinct:!!m[g-3],separator:typeof m[g-1]=="string"?m[g-1]:" "});break;case 192:this.$=qn(m[g]);break;case 193:this.$=zT(m[g-1],hr(m[g].substr(1)));break;case 194:this.$=qn(m[g-2],m[g]);break;case 195:case 204:this.$=qn(m[g],G1);break;case 196:case 205:this.$=qn(m[g],W1);break;case 197:case 206:this.$=qn(hr(m[g]),H1);break;case 200:this.$=qn(m[g].toLowerCase(),HT);break;case 201:this.$=qn(m[g].substr(1),G1);break;case 202:this.$=qn(m[g].substr(1),W1);break;case 203:this.$=qn(m[g].substr(1).toLowerCase(),H1);break;case 207:case 208:this.$=K1(m[g],1);break;case 209:case 210:this.$=K1(m[g],3);break;case 211:this.$=xe.factory.namedNode(Wo(m[g]));break;case 213:var Lu=m[g].indexOf(":"),Yo=m[g].substr(0,Lu),ku=xe.prefixes[Yo];if(!ku)throw new Error("Unknown prefix: "+Yo);var pt=Wo(ku+m[g].substr(Lu+1));this.$=xe.factory.namedNode(pt);break;case 214:if(m[g]=m[g].substr(0,m[g].length-1),!(m[g]in xe.prefixes))throw new Error("Unknown prefix: "+m[g]);var pt=Wo(xe.prefixes[m[g]]);this.$=xe.factory.namedNode(pt);break;case 215:this.$=Ho(m[g].replace(/^(_:)/,""));break;case 216:this.$=Ho();break;case 217:case 218:case 232:this.$=zo(ud(m[g-3],m[g-2],m[g-1]));break;case 230:case 231:this.$=zo(m[g-1]);break;case 248:case 250:case 252:case 254:case 256:case 260:case 264:case 268:case 270:case 292:case 294:case 296:case 298:case 300:case 302:case 304:case 306:case 329:case 342:case 356:case 368:case 370:case 372:case 374:case 392:case 402:case 425:case 427:case 429:case 431:case 441:case 445:case 447:case 449:m[g-1].push(m[g]);break;case 259:case 269:case 291:case 293:case 295:case 301:case 305:case 371:case 424:case 426:this.$=[m[g]];break;case 308:m[g-3].push(m[g-2]);break;case 350:case 362:case 376:case 380:case 382:case 386:case 396:case 406:case 410:case 412:case 421:m[g-2].push(m[g-1]);break}},"anonymous"),table:[n(e,t,{3:1,4:2,10:3}),{1:[3]},n(r,[2,307],{5:4,7:5,321:6,214:7,8:8,96:9,215:10,17:11,21:12,97:16,38:17,6:[2,238],13:i,16:i,45:i,197:i,224:i,229:i,308:i,24:[1,13],32:[1,14],36:[1,15],41:s}),n([6,13,16,24,32,36,41,45,100,110,113,115,116,123,126,131,197,224,229,308,329,330,331,332,333],[2,3],{322:19,11:20,14:21,12:[1,22],15:[1,23]}),{6:[1,24]},{6:[2,240]},{6:[2,241]},{6:[2,242]},{6:[2,243],9:25,84:26,85:a},{6:[2,239]},n(c,[2,411],{216:28,217:29}),n(u,[2,249],{18:30}),n(u,[2,251],{22:31}),n(l,[2,255],{25:32,27:33,29:[1,34]}),{13:f,16:h,33:35,39:[1,37],44:39,55:40,87:d,139:38,307:43,308:p,323:36},n(u,[2,267],{37:46}),n(S,[2,326],{98:47,103:49,106:50,117:55,130:61,100:[1,48],110:[1,51],113:[1,52],115:[1,53],116:[1,54],131:[1,62],329:[1,56],330:[1,57],331:[1,58],332:[1,59],333:[1,60]}),{39:[1,63],40:64,43:65,44:66,45:w,87:d},n(T,[2,273],{42:68,324:69,325:[1,70],326:[1,71]}),n(e,[2,248]),n(e,[2,245]),n(e,[2,246]),{13:[1,72]},{16:[1,73]},{1:[2,1]},{6:[2,2]},{6:[2,244]},{45:[1,77],85:[1,78],86:74,87:[1,75],89:[1,76]},n([6,13,16,45,48,82,87,89,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312],[2,120],{337:[1,79]}),n(O,[2,418],{218:80,222:81,229:[1,82]}),{19:83,28:I,29:L,52:84,53:M,56:85},{19:88,28:I,29:L,52:89,53:M,56:85},n(u,[2,253],{26:90}),{28:[1,91],52:92,53:M},n(G,[2,385],{181:93,182:94,183:95,31:[2,383]}),n(Ee,[2,263],{34:96}),n(Ee,[2,261],{44:39,55:40,307:43,139:97,13:f,16:h,87:d,308:p}),n(Ee,[2,262]),n(je,[2,259]),n(Me,[2,143]),n(Me,[2,144]),n([6,13,16,28,29,31,39,45,47,48,53,63,70,73,76,78,81,82,83,85,87,89,112,159,160,161,163,164,193,197,224,229,231,232,242,246,250,263,265,268,269,270,271,272,273,274,276,277,279,280,283,285,290,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,314,317,318,335,338,341,342,343,344,345,346,347,348,349,350,351],[2,145]),n(q,[2,211]),n(q,[2,212]),n(q,[2,213]),n(q,[2,214]),{19:98,28:I,29:L,52:99,53:M,56:85},{6:[2,309],99:100,193:[1,101]},n(ie,[2,311],{101:102,328:[1,103]}),n(Se,[2,317],{104:104,328:[1,105]}),n(rt,[2,322],{107:106,328:[1,107]}),{111:108,112:[2,324],328:[1,109]},{29:Ye,114:110},{29:Ye,114:112},{29:Ye,114:113},{118:114,123:[1,115],125:116,126:st},n(Ue,[2,315]),n(Ue,[2,316]),n(Be,[2,319]),n(Be,[2,320]),n(Be,[2,321]),n(S,[2,327]),{13:f,16:h,55:118,307:43,308:p},n(u,[2,12]),n(u,[2,13],{44:66,43:119,45:w,87:d}),n(ke,[2,269]),n(ke,[2,15]),{13:f,16:h,44:136,45:Q,46:120,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},n(T,[2,14]),n(T,[2,274]),n(T,[2,271]),n(T,[2,272]),n(e,[2,4]),{13:[1,177]},n(W,[2,39]),{29:[1,178]},{29:[1,179]},{87:[1,181],91:180},{45:[1,187],87:[1,185],89:[1,186],93:182,165:183,166:184},n(c,[2,410]),n([6,13,16,45,48,82,87,89,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,337],[2,121],{338:[1,188]}),{13:f,16:h,45:[1,193],55:194,197:nt,219:189,220:190,223:191,224:[1,192],307:43,308:p},n(O,[2,419]),n(ct,be,{20:196,59:197,69:198,70:j}),n(u,[2,250]),{29:$,57:200},n(ie,[2,279],{54:202,327:[1,203]}),{29:[2,282]},n(U,H,{23:204,58:205,62:206,63:ve}),n(u,[2,252]),{19:208,28:I,29:L,52:209,53:M,56:85},{29:[1,210]},n(l,[2,256]),{31:[1,211]},{31:[2,384]},{13:f,16:h,44:215,45:Ge,55:220,82:k,87:d,89:We,145:212,172:221,185:213,187:214,231:jt,236:216,237:222,255:154,257:155,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,309:Ar,310:Nr,311:217,312:lr},n(d1,[2,265],{56:85,35:227,52:228,19:229,28:I,29:L,53:M}),n(je,[2,260]),n(U,H,{58:205,62:206,23:230,63:ve}),n(u,[2,268]),{6:[2,45]},n(e,t,{10:3,4:231}),{13:f,16:h,55:232,307:43,308:p},n(ie,[2,312]),{105:233,112:p1,122:234,132:[1,237],134:235,327:[1,238],334:[1,239]},n(Se,[2,318]),n(ie,m1,{108:240,133:242,112:g1,132:y1}),n(rt,[2,323]),{112:[1,244]},{112:[2,325]},n($t,[2,50]),n(G,yu,{135:245,136:246,143:247,144:248,31:v1,112:v1}),n($t,[2,51]),n($t,[2,52]),n(Li,[2,328],{119:249}),{29:Ye,114:250},n(Li,[2,56]),{29:Ye,114:251},n(S,[2,59]),n(ke,[2,270]),{47:[1,252]},n(S1,[2,150]),n(vu,[2,428],{240:253}),n(da,[2,430],{244:254}),n(da,[2,155],{248:255,249:256,250:[2,438],290:[1,257],341:[1,258],342:[1,259],343:[1,260],344:[1,261],345:[1,262],346:[1,263]}),n(pa,[2,440],{252:264}),n(Dt,[2,448],{260:265}),{13:f,16:h,44:136,45:Q,55:133,67:132,68:134,77:131,82:k,87:d,172:135,255:154,257:155,264:266,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},{13:f,16:h,44:136,45:Q,55:133,67:132,68:134,77:131,82:k,87:d,172:135,255:154,257:155,264:267,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},{13:f,16:h,44:136,45:Q,55:133,67:132,68:134,77:131,82:k,87:d,172:135,255:154,257:155,264:268,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},n(Dt,[2,167]),n(Dt,[2,168]),n(Dt,[2,169]),n(Dt,[2,170],{176:269,45:_1,89:w1}),n(Dt,[2,171]),n(Dt,[2,172]),n(Dt,[2,173]),n(Dt,[2,174]),{13:f,16:h,44:136,45:Q,46:272,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},n(_t,[2,176]),{89:[1,273]},{45:[1,274]},{45:[1,275]},{45:[1,276]},{45:[1,277]},{45:[1,278]},{45:b1,89:E1,179:279},{45:[1,282]},{45:[1,284],89:[1,283]},{279:[1,285]},n(fr,[2,192],{292:[1,286],293:[1,287]}),n(fr,[2,195]),n(fr,[2,196]),n(fr,[2,197]),n(fr,[2,198]),n(fr,[2,199]),n(fr,[2,200]),{13:f,16:h,44:39,55:40,82:k,87:d,139:289,172:291,255:154,257:155,266:290,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,320:288},{45:[1,292]},{45:[1,293]},{45:[1,294]},n(Uo,[2,452]),n(Uo,[2,453]),n(Uo,[2,454]),n(Uo,[2,455]),n(Uo,[2,456]),{279:[2,458]},n(Su,[2,207]),n(Su,[2,208]),n(Su,[2,209]),n(Su,[2,210]),n(fr,[2,201]),n(fr,[2,202]),n(fr,[2,203]),n(fr,[2,204]),n(fr,[2,205]),n(fr,[2,206]),n(e,[2,5]),n(_u,[2,297],{88:295}),n(wu,[2,299],{90:296}),{48:[1,297],87:[1,298]},n(bu,[2,301]),n(W,[2,43]),n(W,[2,82]),n(W,[2,83]),{29:[1,299]},{29:[1,300]},{87:[1,302],169:301},n(c,[2,412]),n(gs,[2,123]),n(gs,[2,416],{221:303,339:304,39:[1,306],263:[1,307],340:[1,305]}),n(Un,[2,124]),{13:f,16:h,45:[1,311],55:194,89:[1,310],197:nt,223:312,225:308,226:309,229:T1,307:43,308:p},n(c,i,{215:10,214:314}),n(Un,[2,236]),n(Un,[2,237]),n(ma,[2,6]),n(Jh,[2,287],{60:315,72:316,73:[1,317]}),n(ct,[2,286]),{13:f,16:h,45:Q,55:323,67:321,68:322,71:318,77:320,79:319,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,307:43,308:p,346:Fe,347:we,348:b,349:E,350:_,351:x},n([6,31,63,70,73,81,83,85],[2,20]),n(G,A1,{38:17,49:324,147:325,17:326,21:327,148:328,154:329,155:330,29:fi,31:fi,85:fi,112:fi,159:fi,160:fi,161:fi,163:fi,164:fi,41:s}),{13:f,16:h,55:331,307:43,308:p},n(ie,[2,280]),n(ma,[2,7]),n(ct,be,{59:197,69:198,20:332,70:j}),n(U,[2,284]),{64:[1,333]},n(U,H,{58:205,62:206,23:334,63:ve}),n(u,[2,254]),n(G,yu,{144:248,30:335,143:336,31:[2,257]}),n(u,[2,100]),{31:[2,387],184:337,335:[1,338]},{13:f,16:h,44:39,55:40,87:d,139:342,186:339,190:340,195:341,197:ys,307:43,308:p},n(Bo,[2,389],{44:39,55:40,307:43,190:340,195:341,139:342,188:344,189:345,186:346,13:f,16:h,87:d,197:ys,308:p}),n(hi,[2,227]),n(hi,[2,228]),n(hi,[2,229]),{13:f,16:h,44:215,45:Ge,55:220,82:k,87:d,89:We,172:221,185:351,187:350,200:348,230:347,231:jt,234:349,236:216,237:222,255:154,257:155,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,309:Ar,310:Nr,311:217,312:lr},{13:f,16:h,44:39,55:40,87:d,139:342,186:352,190:340,195:341,197:ys,307:43,308:p},n(hi,[2,146]),n(hi,[2,147]),n(hi,[2,148]),n(hi,[2,149]),{13:f,16:h,44:354,55:355,82:k,87:d,172:357,237:356,255:154,257:155,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,309:Ar,310:Nr,311:358,312:lr,313:353},n(Zh,[2,215]),n(Zh,[2,216]),n(U,H,{58:205,62:206,23:359,63:ve}),n(Ee,[2,264]),n(d1,[2,266]),n(ma,[2,11]),n(r,[2,308],{6:[2,310]}),n($t,[2,313],{102:360,120:361,121:[1,362]}),n($t,[2,47]),n($t,[2,63]),n($t,[2,64]),{13:f,16:h,55:363,307:43,308:p},n($t,[2,336]),n($t,[2,337]),n($t,[2,338]),{109:[1,364]},n(C1,[2,60]),{13:f,16:h,55:365,307:43,308:p},n(ie,[2,335]),{13:f,16:h,55:366,307:43,308:p},{31:[1,367]},n(vs,[2,341],{137:368}),n(vs,[2,340]),{13:f,16:h,44:215,45:Ge,55:220,82:k,87:d,89:We,145:369,172:221,185:213,187:214,231:jt,236:216,237:222,255:154,257:155,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,309:Ar,310:Nr,311:217,312:lr},{28:[1,370],127:371,128:[1,372]},n(Li,[2,330],{124:373,125:374,126:st}),n(Li,[2,57]),{44:375,87:d},n(S1,[2,151],{241:376,242:[1,377]}),n(vu,[2,153],{245:378,246:[1,379]}),{13:f,16:h,44:136,45:Q,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,247:380,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},{250:[1,381]},n(wt,[2,432]),n(wt,[2,433]),n(wt,[2,434]),n(wt,[2,435]),n(wt,[2,436]),n(wt,[2,437]),{250:[2,439]},n([47,48,193,242,246,250,272,290,341,342,343,344,345,346],[2,158],{253:382,254:383,255:384,257:385,263:[1,386],265:[1,387],297:ee,298:te,299:re,300:ne,301:oe,302:ce}),n(pa,[2,162],{261:388,262:389,39:ed,338:td}),n(Dt,[2,164]),n(Dt,[2,165]),n(Dt,[2,166]),n(_t,[2,95]),n(_t,[2,96]),n(wt,[2,377],{177:392,325:[1,393]}),{48:[1,394]},n(_t,[2,177]),{13:f,16:h,44:136,45:Q,46:395,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},{13:f,16:h,44:136,45:Q,46:396,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},{13:f,16:h,44:136,45:Q,46:397,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},{13:f,16:h,44:136,45:Q,46:398,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},{13:f,16:h,44:136,45:Q,46:399,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},n(_t,[2,183]),n(_t,[2,98]),n(wt,[2,381],{180:400}),{87:[1,401]},n(_t,[2,185]),{13:f,16:h,44:136,45:Q,46:402,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},{29:$,57:403},n(fr,[2,193]),{13:f,16:h,55:404,307:43,308:p},{13:f,16:h,44:39,55:40,87:d,139:342,195:405,197:ys,307:43,308:p},n(ki,[2,233]),n(ki,[2,234]),n(ki,[2,235]),n(x1,[2,459],{281:406,325:[1,407]}),n(wt,[2,463],{284:408,325:[1,409]}),n(wt,[2,465],{286:410,325:[1,411]}),{13:f,16:h,31:[1,412],55:414,82:k,171:413,172:415,173:416,174:Eu,255:154,257:155,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:Tu},{31:[1,419],89:[1,420]},{29:[1,421]},n(bu,[2,302]),n(_u,[2,367],{167:422}),n(wu,[2,369],{168:423}),{48:[1,424],87:[1,425]},n(bu,[2,371]),n(gs,[2,122]),n(gs,[2,417]),n(gs,[2,413]),n(gs,[2,414]),n(gs,[2,415]),n(Un,[2,125]),n(Un,[2,127]),n(Un,[2,128]),n(O1,[2,420],{227:426}),n(Un,[2,130]),{13:f,16:h,55:194,197:nt,223:427,307:43,308:p},{48:[1,428]},n(Mi,[2,289],{61:429,80:430,81:[1,431],83:[1,432]}),n(Jh,[2,288]),{64:[1,433]},n(ct,[2,29],{307:43,267:139,275:146,278:149,77:320,67:321,68:322,55:323,79:434,13:f,16:h,45:Q,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,276:De,277:he,279:Ae,280:ge,283:Ce,285:Re,308:p,346:Fe,347:we,348:b,349:E,350:_,351:x}),n(I1,[2,293]),n(rd,[2,92]),n(rd,[2,93]),n(rd,[2,94]),{45:_1,89:w1,176:269},{31:[1,435]},{31:[1,436]},{19:437,28:I,29:L,56:85},{19:438,28:I,29:L,56:85},n(Ss,[2,355],{149:439}),n(Ss,[2,354]),{13:f,16:h,44:215,45:Au,55:220,82:k,87:d,89:We,156:440,172:221,185:441,203:442,231:Cu,236:216,237:222,255:154,257:155,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,309:Ar,310:Nr,311:217,312:lr},n(Ee,[2,19]),n(Mi,[2,21]),{13:f,16:h,44:450,45:P1,55:323,65:445,66:446,67:447,68:448,87:d,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,307:43,308:p,346:Fe,347:we,348:b,349:E,350:_,351:x},n(ma,[2,8]),{31:[1,451]},{31:[2,258]},{31:[2,101]},n(G,[2,386],{31:[2,388]}),n(Bo,[2,102]),n(_s,[2,391],{191:452}),n(G,[2,395],{196:453,198:454}),n(G,[2,108]),n(G,[2,109]),n(Bo,[2,103]),n(Bo,[2,104]),n(Bo,[2,390]),{13:f,16:h,44:215,45:Ge,48:[1,455],55:220,82:k,87:d,89:We,172:221,185:351,187:350,200:456,231:jt,234:349,236:216,237:222,255:154,257:155,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,309:Ar,310:Nr,311:217,312:lr},n(xu,[2,424]),n(D1,[2,136]),n(D1,[2,137]),n(nd,[2,140]),{232:[1,457]},{13:f,16:h,44:39,55:40,87:d,139:342,195:458,197:ys,307:43,308:p},n(ki,[2,219]),n(ki,[2,220]),n(ki,[2,221]),n(ki,[2,222]),n(ki,[2,223]),n(ma,[2,10]),n($t,[2,46]),n($t,[2,314]),{112:p1,122:459},n($t,[2,62]),n(ie,m1,{133:242,108:460,112:g1,132:y1}),n(C1,[2,61]),n($t,[2,49]),n([6,28,126,128,193],[2,65]),{31:[2,66],112:[1,462],138:461},n(vs,[2,351],{146:463,335:[1,464]}),{29:$,57:465},n(Li,[2,329]),n(ie,[2,332],{129:466,327:[1,467]}),n(Li,[2,55]),n(Li,[2,331]),{48:[1,468]},n(vu,[2,429]),{13:f,16:h,44:136,45:Q,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,239:469,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},n(da,[2,431]),{13:f,16:h,44:136,45:Q,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,243:470,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},n(da,[2,156]),{45:b1,89:E1,179:471},n(pa,[2,441]),{13:f,16:h,44:136,45:Q,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,251:472,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},n(Dt,[2,444],{256:473}),n(Dt,[2,446],{258:474}),n(wt,[2,442]),n(wt,[2,443]),n(Dt,[2,449]),{13:f,16:h,44:136,45:Q,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,255:154,257:155,259:475,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},n(wt,[2,450]),n(wt,[2,451]),n(wt,[2,379],{178:476}),n(wt,[2,378]),n([6,13,16,29,31,39,45,47,48,73,76,78,81,82,83,85,87,89,112,159,160,161,163,164,193,231,242,246,250,263,265,268,269,270,271,272,273,274,276,277,279,280,283,285,290,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,335,338,341,342,343,344,345,346,347,348,349,350,351],[2,175]),{48:[1,477]},{48:[1,478]},{272:[1,479]},{272:[1,480]},{272:[1,481]},{13:f,16:h,44:136,45:Q,46:482,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},{48:[1,483]},{48:[1,484]},n(_t,[2,187]),n(fr,[2,194]),{13:f,16:h,44:39,55:40,82:k,87:d,139:289,172:291,255:154,257:155,266:290,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,320:485},{13:f,16:h,39:[1,487],44:136,45:Q,46:488,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,282:486,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},n(x1,[2,460]),{13:f,16:h,44:136,45:Q,46:489,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},n(wt,[2,464]),{13:f,16:h,44:136,45:Q,46:490,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},n(wt,[2,466]),n(W,[2,40]),n(_u,[2,298]),n(qo,[2,87]),n(qo,[2,88]),n(qo,[2,89]),n(qo,[2,90]),{13:f,16:h,55:492,82:k,172:493,255:154,257:155,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,311:494,312:lr,315:491},n(W,[2,41]),n(wu,[2,300]),n(Go,[2,303],{92:495}),{13:f,16:h,31:[1,496],55:414,82:k,171:497,172:415,173:416,174:Eu,255:154,257:155,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:Tu},{31:[1,498],89:[1,499]},{29:[1,500]},n(bu,[2,372]),{13:f,16:h,48:[2,422],55:194,197:nt,223:312,226:502,228:501,229:T1,307:43,308:p},n(Un,[2,131]),n(Un,[2,126]),n(Mi,[2,22]),n(Mi,[2,290]),{82:[1,503]},{82:[1,504]},{13:f,16:h,44:510,45:Q,55:323,67:321,68:322,74:505,75:506,76:R1,77:320,78:F1,79:509,87:d,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,307:43,308:p,346:Fe,347:we,348:b,349:E,350:_,351:x},n(I1,[2,294]),n(N1,[2,69]),n(N1,[2,70]),n(ct,be,{59:197,69:198,20:511,70:j}),n(U,H,{58:205,62:206,23:512,63:ve}),{29:[2,375],31:[2,71],84:522,85:a,112:[1,518],150:513,151:514,158:515,159:[1,516],160:[1,517],161:[1,519],163:[1,520],164:[1,521],175:523},n(Ss,[2,363],{157:524,335:[1,525]}),n(c,i,{215:10,202:526,205:527,208:528,214:529,44:530,87:d}),n(Ou,[2,399],{215:10,205:527,208:528,214:529,44:530,204:531,202:532,13:i,16:i,45:i,197:i,224:i,229:i,308:i,87:d}),{13:f,16:h,44:215,45:Au,55:220,82:k,87:d,89:We,172:221,185:351,203:536,212:534,231:Cu,233:533,234:535,236:216,237:222,255:154,257:155,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,309:Ar,310:Nr,311:217,312:lr},n(c,i,{215:10,205:527,208:528,214:529,44:530,202:537,87:d}),n(U,[2,23],{307:43,267:139,275:146,278:149,55:323,67:447,68:448,44:450,66:538,13:f,16:h,45:P1,87:d,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,276:De,277:he,279:Ae,280:ge,283:Ce,285:Re,308:p,346:Fe,347:we,348:b,349:E,350:_,351:x}),n(ws,[2,291]),n(ws,[2,24]),n(ws,[2,25]),{13:f,16:h,44:136,45:Q,46:539,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},n(ws,[2,28]),n(U,H,{58:205,62:206,23:540,63:ve}),n([31,112,232,318,335],[2,105],{192:541,193:[1,542]}),n(_s,[2,107]),{13:f,16:h,44:215,45:Ge,55:220,82:k,87:d,89:We,172:221,185:351,187:350,199:543,200:544,231:jt,234:349,236:216,237:222,255:154,257:155,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,309:Ar,310:Nr,311:217,312:lr},n(L1,[2,132]),n(xu,[2,425]),n(L1,[2,133]),{13:f,16:h,44:354,55:355,82:k,87:d,172:357,237:356,255:154,257:155,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,309:Ar,310:Nr,311:358,312:lr,313:545},n($t,[2,54]),n($t,[2,48]),n(vs,[2,342]),{13:f,16:h,44:39,55:40,87:d,139:546,307:43,308:p},n(vs,[2,68]),n(G,[2,350],{31:k1,112:k1}),n($t,[2,53]),{13:f,16:h,55:547,307:43,308:p},n(ie,[2,333]),n(ke,[2,16]),n(vu,[2,152]),n(da,[2,154]),n(da,[2,157]),n(pa,[2,159]),n(pa,[2,160],{262:389,261:548,39:ed,338:td}),n(pa,[2,161],{262:389,261:549,39:ed,338:td}),n(Dt,[2,163]),{13:f,16:h,44:136,45:Q,46:550,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},n(_t,[2,178]),n(_t,[2,179]),{13:f,16:h,44:136,45:Q,46:551,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},{13:f,16:h,44:136,45:Q,46:552,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},{13:f,16:h,44:136,45:Q,46:553,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},{48:[1,554],272:[1,555]},n(_t,[2,184]),n(_t,[2,186]),{314:[1,556]},{48:[1,557]},{48:[2,461]},{48:[2,462]},{48:[1,558]},{48:[2,467],193:[1,561],287:559,288:560},{13:f,16:h,55:194,197:nt,223:562,307:43,308:p},n(id,[2,224]),n(id,[2,225]),n(id,[2,226]),{31:[1,563],45:M1,94:564},n(W,[2,84]),n(_u,[2,368]),n(W,[2,85]),n(wu,[2,370]),n(Go,[2,373],{170:566}),{48:[1,567]},{48:[2,423],337:[1,568]},n(Mi,[2,35],{83:[1,569]}),n(Mi,[2,36],{81:[1,570]}),n(Jh,[2,30],{307:43,267:139,275:146,278:149,77:320,67:321,68:322,55:323,79:509,44:510,75:571,13:f,16:h,45:Q,76:R1,78:F1,87:d,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,276:De,277:he,279:Ae,280:ge,283:Ce,285:Re,308:p,346:Fe,347:we,348:b,349:E,350:_,351:x}),n(ga,[2,295]),{45:Q,77:572},{45:Q,77:573},n(ga,[2,33]),n(ga,[2,34]),{31:[2,275],50:574,84:575,85:a},{31:[2,277],51:576,84:577,85:a},n(Ss,[2,356]),n(j1,[2,357],{152:578,335:[1,579]}),n(di,[2,74]),{29:$,57:580},{29:$,57:581},{13:f,16:h,44:39,55:40,87:d,139:582,307:43,308:p},n($1,[2,365],{162:583,328:[1,584]}),{13:f,16:h,45:Q,55:323,67:321,68:322,77:320,79:585,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,307:43,308:p,346:Fe,347:we,348:b,349:E,350:_,351:x},{45:[1,586]},n(di,[2,81]),{29:$,57:587},n(Ss,[2,73]),n(G,[2,362],{29:pi,31:pi,85:pi,112:pi,159:pi,160:pi,161:pi,163:pi,164:pi}),n(Ou,[2,112]),n(ya,[2,401],{206:588}),n(G,[2,405],{209:589,210:590}),n(G,[2,403]),n(G,[2,404]),n(Ou,[2,113]),n(Ou,[2,400]),{13:f,16:h,44:215,45:Au,48:[1,591],55:220,82:k,87:d,89:We,172:221,185:351,203:536,212:592,231:Cu,234:535,236:216,237:222,255:154,257:155,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,309:Ar,310:Nr,311:217,312:lr},n(xu,[2,426]),n(nd,[2,138]),n(nd,[2,139]),{232:[1,593]},n(ws,[2,292]),{47:[1,595],48:[1,594]},n(ma,[2,9]),n(_s,[2,392]),n(_s,[2,393],{44:39,55:40,307:43,195:341,139:342,194:596,190:597,13:f,16:h,87:d,197:ys,308:p}),n(_s,[2,110],{272:[1,598]}),n(Iu,[2,397],{201:599,316:600,317:[1,601]}),{314:[1,602]},{29:[1,603]},n(Li,[2,58]),n(Dt,[2,445]),n(Dt,[2,447]),{48:[1,604],272:[1,605]},{48:[1,606]},{272:[1,607]},{272:[1,608]},n(_t,[2,99]),n(wt,[2,382]),n([13,16,39,47,48,87,193,197,242,246,250,263,265,272,290,297,298,299,300,301,302,308,314,338,341,342,343,344,345,346],[2,232]),n(_t,[2,188]),n(_t,[2,189]),{48:[1,609]},{48:[2,468]},{289:[1,610]},{13:f,16:h,55:492,82:k,172:493,255:154,257:155,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,311:494,312:lr,315:611},n(W,[2,42]),n(Go,[2,304]),{13:f,16:h,55:414,82:k,95:612,171:613,172:415,173:416,174:Eu,255:154,257:155,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:Tu},{31:[1,614],45:M1,94:615},n(Un,[2,129]),n(O1,[2,421]),{82:[1,616]},{82:[1,617]},n(ga,[2,296]),n(ga,[2,31]),n(ga,[2,32]),{31:[2,17]},{31:[2,276]},{31:[2,18]},{31:[2,278]},n(G,A1,{155:330,153:618,154:619,29:mi,31:mi,85:mi,112:mi,159:mi,160:mi,161:mi,163:mi,164:mi}),n(j1,[2,358]),n(di,[2,75]),n(di,[2,76]),{29:$,57:620},{13:f,16:h,44:39,55:40,87:d,139:621,307:43,308:p},n($1,[2,366]),n(di,[2,79]),{13:f,16:h,44:136,45:Q,46:622,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},n(di,[2,91],{336:[1,623]}),n([29,31,85,112,159,160,161,163,164,232,318,335],[2,114],{207:624,193:[1,625]}),n(ya,[2,117]),{13:f,16:h,44:215,45:Au,55:220,82:k,87:d,89:We,172:221,185:351,203:536,211:626,212:627,231:Cu,234:535,236:216,237:222,255:154,257:155,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,309:Ar,310:Nr,311:217,312:lr},n(hi,[2,134]),n(xu,[2,427]),n(hi,[2,135]),n(ws,[2,26]),{44:628,87:d},n(_s,[2,106]),n(_s,[2,394]),n(G,[2,396]),n(Iu,[2,111]),n(Iu,[2,398]),{13:f,16:h,44:39,55:40,87:d,139:342,186:629,190:340,195:341,197:ys,307:43,308:p},n(Zh,[2,217]),n(G,yu,{144:248,140:630,143:631,31:[2,343]}),n(_t,[2,97]),n(wt,[2,380]),n(_t,[2,180]),{13:f,16:h,44:136,45:Q,46:632,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},{13:f,16:h,44:136,45:Q,46:633,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},n(_t,[2,190]),{290:[1,634]},{314:[1,635]},{13:f,16:h,48:[1,636],55:414,82:k,171:637,172:415,173:416,174:Eu,255:154,257:155,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:Tu},n(V1,[2,305]),n(W,[2,86]),n(Go,[2,374]),n(Mi,[2,37]),n(Mi,[2,38]),n(Ss,[2,72]),n(Ss,[2,360]),n(di,[2,77]),{29:$,57:638},{47:[1,639]},{29:[2,376]},n(ya,[2,402]),n(ya,[2,115],{215:10,208:528,214:529,44:530,205:640,13:i,16:i,45:i,197:i,224:i,229:i,308:i,87:d}),n(ya,[2,118],{272:[1,641]}),n(Pu,[2,407],{213:642,319:643,317:[1,644]}),{48:[1,645]},{318:[1,646]},{31:[1,647]},{31:[2,344]},{48:[1,648]},{48:[1,649]},{291:650,303:ue,304:le,305:X,306:fe},n(qo,[2,218]),n(Go,[2,44]),n(V1,[2,306]),n(di,[2,78]),{44:651,87:d},n(ya,[2,116]),n(G,[2,406]),n(Pu,[2,119]),n(Pu,[2,408]),n(c,i,{215:10,205:527,208:528,214:529,44:530,202:652,87:d}),n(ws,[2,27]),n(Iu,[2,230]),n(U1,[2,345],{141:653,335:[1,654]}),n(_t,[2,181]),n(_t,[2,182]),{48:[2,191]},{48:[1,655]},{318:[1,656]},n(G,yu,{144:248,142:657,143:658,31:B1,112:B1}),n(U1,[2,346]),n(di,[2,80]),n(Pu,[2,231]),n(vs,[2,67]),n(vs,[2,348])],defaultActions:{5:[2,240],6:[2,241],7:[2,242],9:[2,239],24:[2,1],25:[2,2],26:[2,244],87:[2,282],94:[2,384],100:[2,45],109:[2,325],166:[2,458],263:[2,439],336:[2,258],337:[2,101],487:[2,461],488:[2,462],560:[2,468],574:[2,17],575:[2,276],576:[2,18],577:[2,278],623:[2,376],631:[2,344],650:[2,191]},parseError:o(function(A,P){if(P.recoverable)this.trace(A);else{var F=new Error(A);throw F.hash=P,F}},"parseError"),parse:o(function(A){var P=this,F=[0],Y=[],_e=[null],m=[],dr=this.table,g="",Gn=0,Qo=0,Nu=0,Lu=2,Yo=1,ku=m.slice.call(arguments,1),pt=Object.create(this.lexer),Wn={yy:{}};for(var Ko in this.yy)Object.prototype.hasOwnProperty.call(this.yy,Ko)&&(Wn.yy[Ko]=this.yy[Ko]);pt.setInput(A,Wn.yy),Wn.yy.lexer=pt,Wn.yy.parser=this,typeof pt.yylloc>"u"&&(pt.yylloc={});var ba=pt.yylloc;m.push(ba);var it=pt.options&&pt.options.ranges;typeof Wn.yy.parseError=="function"?this.parseError=Wn.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function ht(Hn){F.length=F.length-2*Hn,_e.length=_e.length-Hn,m.length=m.length-Hn}o(ht,"popStack");for(var He=o(function(){var Hn;return Hn=pt.lex()||Yo,typeof Hn!="number"&&(Hn=P.symbols_[Hn]||Hn),Hn},"lex"),Ze,Cr,As,qr,OM,yd,Ea={},Mu,vi,e2,ju;;){if(As=F[F.length-1],this.defaultActions[As]?qr=this.defaultActions[As]:((Ze===null||typeof Ze>"u")&&(Ze=He()),qr=dr[As]&&dr[As][Ze]),typeof qr>"u"||!qr.length||!qr[0]){var vd="";ju=[];for(Mu in dr[As])this.terminals_[Mu]&&Mu>Lu&&ju.push("'"+this.terminals_[Mu]+"'");pt.showPosition?vd="Parse error on line "+(Gn+1)+`:
244
+ `),t}};Kl.RDFSerializer=Eg});var xg=v(zi=>{"use strict";Object.defineProperty(zi,"__esModule",{value:!0});zi.TransactionError=zi.TripleNotFoundError=zi.TripleAlreadyExistsError=void 0;var Tg=class extends Error{static{o(this,"TripleAlreadyExistsError")}constructor(e){super(`Triple already exists: ${e.toString()}`),this.name="TripleAlreadyExistsError"}};zi.TripleAlreadyExistsError=Tg;var Ag=class extends Error{static{o(this,"TripleNotFoundError")}constructor(e){super(`Triple not found: ${e.toString()}`),this.name="TripleNotFoundError"}};zi.TripleNotFoundError=Ag;var Cg=class extends Error{static{o(this,"TransactionError")}constructor(e){super(e),this.name="TransactionError"}};zi.TransactionError=Cg});var Jl=v(Xl=>{"use strict";Object.defineProperty(Xl,"__esModule",{value:!0});Xl.LRUCache=void 0;var Og=class{static{o(this,"LRUCache")}constructor(e){this.maxSize=e,this.cache=new Map}get(e){let t=this.cache.get(e);return t!==void 0&&(this.cache.delete(e),this.cache.set(e,t)),t}set(e,t){if(this.cache.has(e))this.cache.delete(e);else if(this.cache.size>=this.maxSize){let r=this.cache.keys().next().value;r!==void 0&&this.cache.delete(r)}this.cache.set(e,t)}clear(){this.cache.clear()}size(){return this.cache.size}};Xl.LRUCache=Og});var US=v(ef=>{"use strict";Object.defineProperty(ef,"__esModule",{value:!0});ef.InMemoryTripleStore=void 0;var Qi=xg(),Zl=Xe(),XR=Ut(),JR=ft(),ZR=Gr(),eF=Jl(),tF=ZR.Namespace.XSD.term("string").value,rF=/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/gi,Na="__default__",Ig=class n{static{o(this,"InMemoryTripleStore")}constructor(){this.triples=new Map,this.spo=new Map,this.sop=new Map,this.pso=new Map,this.pos=new Map,this.osp=new Map,this.ops=new Map,this.queryCache=new eF.LRUCache(1e3),this.uuidIndex=new Map,this.namedGraphs=new Map}async add(e){let t=this.getTripleKey(e);if(this.triples.has(t))return;this.triples.set(t,e);let r=this.getNodeKey(e.subject),i=this.getNodeKey(e.predicate),s=this.getNodeKey(e.object);this.addToIndex(this.spo,r,i,s),this.addToIndex(this.sop,r,s,i),this.addToIndex(this.pso,i,r,s),this.addToIndex(this.pos,i,s,r),this.addToIndex(this.osp,s,r,i),this.addToIndex(this.ops,s,i,r),this.addToUUIDIndex(e.subject),this.queryCache.clear()}async remove(e){let t=this.getTripleKey(e);if(!this.triples.has(t))return!1;this.triples.delete(t);let r=this.getNodeKey(e.subject),i=this.getNodeKey(e.predicate),s=this.getNodeKey(e.object);return this.removeFromIndex(this.spo,r,i,s),this.removeFromIndex(this.sop,r,s,i),this.removeFromIndex(this.pso,i,r,s),this.removeFromIndex(this.pos,i,s,r),this.removeFromIndex(this.osp,s,r,i),this.removeFromIndex(this.ops,s,i,r),this.queryCache.clear(),!0}async has(e){let t=this.getTripleKey(e);return this.triples.has(t)}async match(e,t,r){let i=this.getMatchCacheKey(e,t,r),s=this.queryCache.get(i);if(s!==void 0)return s;let a;return!e&&!t&&!r?a=Array.from(this.triples.values()):e&&t&&r?a=this.matchSPO(e,t,r):e&&t?a=this.matchSP(e,t):e&&r?a=this.matchSO(e,r):t&&r?a=this.matchPO(t,r):e?a=this.matchS(e):t?a=this.matchP(t):r?a=this.matchO(r):a=[],this.queryCache.set(i,a),a}async addAll(e){for(let t of e)await this.add(t)}async removeAll(e){let t=0;for(let r of e)await this.remove(r)&&t++;return t}async clear(){this.triples.clear(),this.spo.clear(),this.sop.clear(),this.pso.clear(),this.pos.clear(),this.osp.clear(),this.ops.clear(),this.uuidIndex.clear(),this.queryCache.clear()}async count(){return this.triples.size}async subjects(){let e=new Set;for(let t of this.triples.values())e.add(t.subject);return Array.from(e)}async predicates(){let e=new Set;for(let t of this.triples.values())e.add(t.predicate);return Array.from(e)}async objects(){let e=new Set;for(let t of this.triples.values())e.add(t.object);return Array.from(e)}async beginTransaction(){return new Pg(this)}async findSubjectsByUUID(e){return this.findSubjectsByUUIDSync(e)}findSubjectsByUUIDSync(e){let t=e.toLowerCase(),r=this.uuidIndex.get(t);if(!r||r.size===0)return[];let i=[];for(let s of r)this.spo.has(`i:${s}`)&&i.push(new Zl.IRI(s));return i}addToUUIDIndex(e){if(!(e instanceof Zl.IRI))return;let t=e.value,r=t.match(rF);if(r)for(let i of r){let s=i.toLowerCase();this.uuidIndex.has(s)||this.uuidIndex.set(s,new Set),this.uuidIndex.get(s).add(t)}}matchSPO(e,t,r){let i=this.getNodeKey(e),s=this.getNodeKey(t),a=this.getNodeKey(r),c=this.spo.get(i);if(!c)return[];let u=c.get(s);if(!u)return[];if(u.has(a)){let l=this.buildTripleKey(i,s,a),f=this.triples.get(l);return f?[f]:[]}return[]}matchSP(e,t){let r=this.getNodeKey(e),i=this.getNodeKey(t),s=this.spo.get(r);if(!s)return[];let a=s.get(i);return a?this.getTriplesByKeys(Array.from(a).map(c=>this.buildTripleKey(r,i,c))):[]}matchSO(e,t){let r=this.getNodeKey(e),i=this.getNodeKey(t),s=this.sop.get(r);if(!s)return[];let a=s.get(i);return a?this.getTriplesByKeys(Array.from(a).map(c=>this.buildTripleKey(r,c,i))):[]}matchPO(e,t){let r=this.getNodeKey(e),i=this.getNodeKey(t),s=this.pos.get(r);if(!s)return[];let a=s.get(i);return a?this.getTriplesByKeys(Array.from(a).map(c=>this.buildTripleKey(c,r,i))):[]}matchS(e){let t=this.getNodeKey(e),r=this.spo.get(t);if(!r)return[];let i=[];for(let[s,a]of r.entries())for(let c of a)i.push(this.buildTripleKey(t,s,c));return this.getTriplesByKeys(i)}matchP(e){let t=this.getNodeKey(e),r=this.pso.get(t);if(!r)return[];let i=[];for(let[s,a]of r.entries())for(let c of a)i.push(this.buildTripleKey(s,t,c));return this.getTriplesByKeys(i)}matchO(e){let t=this.getNodeKey(e),r=this.osp.get(t);if(!r)return[];let i=[];for(let[s,a]of r.entries())for(let c of a)i.push(this.buildTripleKey(s,c,t));return this.getTriplesByKeys(i)}getTriplesByKeys(e){let t=[];for(let r of e){let i=this.triples.get(r);i&&t.push(i)}return t}addToIndex(e,t,r,i){e.has(t)||e.set(t,new Map);let s=e.get(t);s.has(r)||s.set(r,new Set),s.get(r).add(i)}removeFromIndex(e,t,r,i){let s=e.get(t);if(!s)return;let a=s.get(r);a&&(a.delete(i),a.size===0&&s.delete(r),s.size===0&&e.delete(t))}getTripleKey(e){let t=this.getNodeKey(e.subject),r=this.getNodeKey(e.predicate),i=this.getNodeKey(e.object);return this.buildTripleKey(t,r,i)}buildTripleKey(e,t,r){return`${e}|${t}|${r}`}getNodeKey(e){if(e instanceof Zl.IRI)return`i:${e.value}`;if(e instanceof XR.BlankNode)return`b:${e.id}`;if(e instanceof JR.Literal){let t=`l:${e.value}`;return e.datatype&&e.datatype.value!==tF?t+=`^^${e.datatype.value}`:e.language&&(t+=`@${e.language}`),t}return""}getMatchCacheKey(e,t,r){let i=e?this.getNodeKey(e):"?",s=t?this.getNodeKey(t):"?",a=r?this.getNodeKey(r):"?";return`${i}|${s}|${a}`}getGraphKey(e){return e?e.value:Na}getOrCreateGraphStore(e){let t=this.getGraphKey(e);return t===Na?this:(this.namedGraphs.has(t)||this.namedGraphs.set(t,new n),this.namedGraphs.get(t))}async addToGraph(e,t){await this.getOrCreateGraphStore(t).add(e)}async removeFromGraph(e,t){let r=this.getGraphKey(t);if(r===Na)return this.remove(e);let i=this.namedGraphs.get(r);return i?i.remove(e):!1}async matchInGraph(e,t,r,i){let s=this.getGraphKey(i);if(s===Na)return this.match(e,t,r);let a=this.namedGraphs.get(s);return a?a.match(e,t,r):[]}async getNamedGraphs(){return Array.from(this.namedGraphs.keys()).map(e=>new Zl.IRI(e))}async hasGraph(e){let t=this.namedGraphs.get(e.value);return t?await t.count()>0:!1}async clearGraph(e){let t=this.getGraphKey(e);if(t===Na){await this.clear();return}let r=this.namedGraphs.get(t);r&&(await r.clear(),this.namedGraphs.delete(t))}async countInGraph(e){let t=this.getGraphKey(e);if(t===Na)return this.count();let r=this.namedGraphs.get(t);return r?r.count():0}};ef.InMemoryTripleStore=Ig;var Pg=class{static{o(this,"InMemoryTransaction")}constructor(e){this.store=e,this.operations=[],this.committed=!1,this.rolledBack=!1}async add(e){if(this.committed)throw new Qi.TransactionError("Transaction already committed");if(this.rolledBack)throw new Qi.TransactionError("Transaction already rolled back");this.operations.push({type:"add",triple:e})}async remove(e){if(this.committed)throw new Qi.TransactionError("Transaction already committed");if(this.rolledBack)throw new Qi.TransactionError("Transaction already rolled back");return this.operations.push({type:"remove",triple:e}),!0}async commit(){if(this.committed)throw new Qi.TransactionError("Transaction already committed");if(this.rolledBack)throw new Qi.TransactionError("Transaction already rolled back");for(let e of this.operations)e.type==="add"?await this.store.add(e.triple):await this.store.remove(e.triple);this.committed=!0,this.operations=[]}async rollback(){if(this.committed)throw new Qi.TransactionError("Transaction already committed");if(this.rolledBack)throw new Qi.TransactionError("Transaction already rolled back");this.operations=[],this.rolledBack=!0}}});var Rg=v(tf=>{"use strict";Object.defineProperty(tf,"__esModule",{value:!0});tf.RDFVocabularyMapper=void 0;var Mr=ji(),BS=Xe(),ye=Gr(),Dg=class{static{o(this,"RDFVocabularyMapper")}constructor(){this.propertyMappings=new Map([["exo__Instance_class",ye.Namespace.RDF.term("type")],["exo__Asset_isDefinedBy",ye.Namespace.RDFS.term("isDefinedBy")],["exo__Class_superClass",ye.Namespace.RDFS.term("subClassOf")],["exo__Property_range",ye.Namespace.RDFS.term("range")],["exo__Property_domain",ye.Namespace.RDFS.term("domain")],["exo__Property_superProperty",ye.Namespace.RDFS.term("subPropertyOf")]])}generateClassHierarchyTriples(){let e=[];return e.push(new Mr.Triple(ye.Namespace.EXO.term("Asset"),ye.Namespace.RDFS.term("subClassOf"),ye.Namespace.RDFS.term("Resource"))),e.push(new Mr.Triple(ye.Namespace.EXO.term("Class"),ye.Namespace.RDFS.term("subClassOf"),ye.Namespace.RDFS.term("Class"))),e.push(new Mr.Triple(ye.Namespace.EXO.term("Property"),ye.Namespace.RDFS.term("subClassOf"),ye.Namespace.RDF.term("Property"))),e.push(new Mr.Triple(ye.Namespace.EMS.term("Task"),ye.Namespace.RDFS.term("subClassOf"),ye.Namespace.EXO.term("Asset"))),e.push(new Mr.Triple(ye.Namespace.EMS.term("Project"),ye.Namespace.RDFS.term("subClassOf"),ye.Namespace.EXO.term("Asset"))),e.push(new Mr.Triple(ye.Namespace.EMS.term("Area"),ye.Namespace.RDFS.term("subClassOf"),ye.Namespace.EXO.term("Asset"))),e}generatePropertyHierarchyTriples(){let e=[];return e.push(new Mr.Triple(ye.Namespace.EXO.term("Instance_class"),ye.Namespace.RDFS.term("subPropertyOf"),ye.Namespace.RDF.term("type"))),e.push(new Mr.Triple(ye.Namespace.EXO.term("Asset_isDefinedBy"),ye.Namespace.RDFS.term("subPropertyOf"),ye.Namespace.RDFS.term("isDefinedBy"))),e.push(new Mr.Triple(ye.Namespace.EXO.term("Class_superClass"),ye.Namespace.RDFS.term("subPropertyOf"),ye.Namespace.RDFS.term("subClassOf"))),e.push(new Mr.Triple(ye.Namespace.EXO.term("Property_range"),ye.Namespace.RDFS.term("subPropertyOf"),ye.Namespace.RDFS.term("range"))),e.push(new Mr.Triple(ye.Namespace.EXO.term("Property_domain"),ye.Namespace.RDFS.term("subPropertyOf"),ye.Namespace.RDFS.term("domain"))),e.push(new Mr.Triple(ye.Namespace.EXO.term("Property_superProperty"),ye.Namespace.RDFS.term("subPropertyOf"),ye.Namespace.RDFS.term("subPropertyOf"))),e}generateMappedTriple(e,t,r){let i=this.propertyMappings.get(t);if(!i)return null;let s;if(r instanceof BS.IRI)s=r;else{let a=r.match(/^(ems|exo)__(.+)$/);if(a){let[,c,u]=a;s=(c==="ems"?ye.Namespace.EMS:ye.Namespace.EXO).term(u)}else s=new BS.IRI(r)}return new Mr.Triple(e,i,s)}hasMappingFor(e){return this.propertyMappings.has(e)}};tf.RDFVocabularyMapper=Dg});var Ng=v(In=>{"use strict";var nF=In&&In.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},iF=In&&In.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)},sF=In&&In.__param||function(n,e){return function(t,r){e(t,r,n)}};Object.defineProperty(In,"__esModule",{value:!0});In.NoteToRDFConverter=void 0;var qS=Le(),Yi=ji(),GS=Xe(),Jr=ft(),Jn=Gr(),aF=ot(),oF=Rg(),Fg=class{static{o(this,"NoteToRDFConverter")}constructor(e){this.vault=e,this.OBSIDIAN_VAULT_SCHEME="obsidian://vault/",this.BODY_WIKILINK_PATTERN=/(?<!!)\[\[([^\]|]+)(?:\|[^\]]+)?\]\]/g,this.vocabularyMapper=new oF.RDFVocabularyMapper}async convertNote(e){let t=this.vault.getFrontmatter(e);if(!t)return[];let r=[],i=this.notePathToIRI(e.path),s=Jn.Namespace.EXO.term("Asset_fileName");r.push(new Yi.Triple(i,s,new Jr.Literal(e.basename)));for(let[c,u]of Object.entries(t)){if(!this.isExocortexProperty(c))continue;let l=this.propertyKeyToIRI(c),f=Array.isArray(u)?u:[u];for(let h of f)if(c==="exo__Instance_class"){let d=this.valueToClassURI(h);r.push(new Yi.Triple(i,l,d))}else{let d=await this.valueToRDFObject(h,e);if(r.push(new Yi.Triple(i,l,d)),this.vocabularyMapper.hasMappingFor(c)&&d instanceof GS.IRI){let p=this.vocabularyMapper.generateMappedTriple(i,c,d);p&&r.push(p)}}if(c==="exo__Instance_class")for(let h of f){let d=this.expandClassValue(h);if(d){let p=Jn.Namespace.RDF.term("type");r.push(new Yi.Triple(i,p,d))}}}let a=await this.convertBodyWikilinks(e,i);return r.push(...a),r}async convertVault(){let e=this.vault.getAllFiles(),t=[];for(let r of e)try{let i=await this.convertNote(r);t.push(...i)}catch(i){console.warn(`\u26A0\uFE0F Skipping file with invalid IRI: ${r.path}`),console.warn(` Reason: ${i instanceof Error?i.message:String(i)}`);continue}return t}notePathToIRI(e){let t=encodeURI(e);return new GS.IRI(`${this.OBSIDIAN_VAULT_SCHEME}${t}`)}isExocortexProperty(e){return e.startsWith("exo__")||e.startsWith("ems__")}propertyKeyToIRI(e){if(e.startsWith("exo__")){let t=e.substring(5);return Jn.Namespace.EXO.term(t)}if(e.startsWith("ems__")){let t=e.substring(5);return Jn.Namespace.EMS.term(t)}throw new Error(`Invalid property key: ${e}`)}async valueToRDFObject(e,t){if(typeof e=="string"){let r=this.removeQuotes(e),i=this.extractWikilink(r);if(i){let s=this.vault.getFirstLinkpathDest(i,t.path);if(s)return this.notePathToIRI(s.path);if(this.isClassReference(i)){let a=this.expandClassValue(i);if(a)return a}return new Jr.Literal(r)}if(this.isClassReference(r)){let s=this.expandClassValue(r);if(s)return s}return this.isISO8601DateTime(r)?new Jr.Literal(r,Jn.Namespace.XSD.term("dateTime")):new Jr.Literal(r)}return typeof e=="boolean"?new Jr.Literal(e.toString()):typeof e=="number"?new Jr.Literal(e.toString(),Jn.Namespace.XSD.term("decimal")):e instanceof Date?new Jr.Literal(e.toISOString(),Jn.Namespace.XSD.term("dateTime")):new Jr.Literal(String(e))}isISO8601DateTime(e){return/^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(\.\d{1,3})?(Z|[+-]\d{2}:\d{2})?$/.test(e)}removeQuotes(e){let t=e.trim();return t.startsWith('"')&&t.endsWith('"')||t.startsWith("'")&&t.endsWith("'")?t.substring(1,t.length-1):e}extractWikilink(e){let t=e.match(/^\[\[([^\]]+)\]\]$/);return t?t[1]:null}valueToClassURI(e){if(typeof e!="string")return new Jr.Literal(String(e));let t=this.removeQuotes(e),i=this.extractWikilink(t)||t,s=this.expandClassValue(i);return s||new Jr.Literal(t)}isClassReference(e){return(e.startsWith("ems__")||e.startsWith("exo__"))&&!/\s/.test(e)}expandClassValue(e){let t=this.removeQuotes(e);if(t.startsWith("ems__")){let r=t.substring(5);return Jn.Namespace.EMS.term(r)}if(t.startsWith("exo__")){let r=t.substring(5);return Jn.Namespace.EXO.term(r)}return null}extractBodyContent(e){let t=/^---\r?\n[\s\S]*?\r?\n---\r?\n?/;return e.replace(t,"")}extractBodyWikilinks(e){let t=new Set,r,i=new RegExp(this.BODY_WIKILINK_PATTERN.source,"g");for(;(r=i.exec(e))!==null;)r[1]&&t.add(r[1]);return Array.from(t)}async convertBodyWikilinks(e,t){let r=[];try{let i=await this.vault.read(e),s=this.extractBodyContent(i),a=this.extractBodyWikilinks(s),c=Jn.Namespace.EXO.term("Asset_bodyLink");for(let u of a){let l=this.vault.getFirstLinkpathDest(u,e.path);if(l){let f=this.notePathToIRI(l.path);r.push(new Yi.Triple(t,c,f))}else if(this.isClassReference(u)){let f=this.expandClassValue(u);f?r.push(new Yi.Triple(t,c,f)):r.push(new Yi.Triple(t,c,new Jr.Literal(u)))}else r.push(new Yi.Triple(t,c,new Jr.Literal(u)))}}catch{}return r}};In.NoteToRDFConverter=Fg;In.NoteToRDFConverter=Fg=nF([(0,qS.injectable)(),sF(0,(0,qS.inject)(aF.DI_TOKENS.IVaultAdapter)),iF("design:paramtypes",[Object])],Fg)});var Lg=v((DB,WS)=>{var La=class{static{o(this,"Wildcard")}constructor(){return cF||this}equals(e){return e&&this.termType===e.termType}};Object.defineProperty(La.prototype,"value",{enumerable:!0,value:"*"});Object.defineProperty(La.prototype,"termType",{enumerable:!0,value:"Wildcard"});var cF=new La;WS.exports.Wildcard=La});var zS=v((FB,HS)=>{var uF=(function(){var n=o(function(C,A,P,F){for(P=P||{},F=C.length;F--;P[C[F]]=A);return P},"o"),e=[6,12,13,15,16,24,32,36,41,45,100,110,113,115,116,123,126,131,197,224,229,308,329,330,331,332,333],t=[2,247],r=[100,110,113,115,116,123,126,131,329,330,331,332,333],i=[2,409],s=[1,18],a=[1,27],c=[13,16,45,197,224,229,308],u=[28,29,53],l=[28,53],f=[1,42],h=[1,45],d=[1,41],p=[1,44],S=[123,126],w=[1,67],T=[39,45,87],O=[13,16,45,197,224,308],I=[1,87],L=[2,281],M=[1,86],G=[13,16,45,82,87,89,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312],Ee=[6,28,29,53,63,70,73,81,83,85],je=[6,13,16,28,29,53,63,70,73,81,83,85,87,308],Me=[6,13,16,28,29,45,53,63,70,73,81,82,83,85,87,89,197,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,314],q=[6,13,16,28,29,31,39,45,47,48,53,63,70,73,81,82,83,85,87,89,109,112,121,123,126,128,159,160,161,163,164,174,193,197,224,229,231,232,242,246,250,263,265,272,290,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,314,317,318,335,337,338,340,341,342,343,344,345,346],ie=[13,16,308],Se=[112,132,327,334],rt=[13,16,112,132,308],Ye=[1,111],st=[1,117],Ue=[112,132,327,328,334],Be=[13,16,112,132,308,328],ke=[28,29,45,53,87],Q=[1,138],k=[1,151],qe=[1,128],Ke=[1,127],V=[1,129],me=[1,140],Oe=[1,141],z=[1,142],Ie=[1,143],Pe=[1,144],Te=[1,145],De=[1,147],he=[1,148],Ae=[2,457],ge=[1,158],Ce=[1,159],Re=[1,160],Z=[1,152],se=[1,153],ae=[1,156],ee=[1,171],te=[1,172],re=[1,173],ne=[1,174],oe=[1,175],ce=[1,176],ue=[1,167],le=[1,168],X=[1,169],fe=[1,170],$e=[1,157],Fe=[1,166],we=[1,161],b=[1,162],E=[1,163],_=[1,164],x=[1,165],W=[6,13,16,29,31,45,82,85,87,89,112,159,160,161,163,164,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,335],nt=[1,195],ct=[6,31,73,81,83,85],be=[2,285],j=[1,199],$=[1,201],U=[6,31,70,73,81,83,85],H=[2,283],ve=[1,207],Ge=[1,218],We=[1,223],jt=[1,219],Ar=[1,225],Nr=[1,226],lr=[1,224],d1=[6,63,70,73,81,83,85],p1=[1,236],m1=[2,334],g1=[1,243],y1=[1,241],$t=[6,193],yu=[2,349],v1=[2,339],Li=[28,128],S1=[47,48,193,272],vu=[47,48,193,242,272],da=[47,48,193,242,246,272],pa=[47,48,193,242,246,250,263,265,272,290,297,298,299,300,301,302,341,342,343,344,345,346],Dt=[39,47,48,193,242,246,250,263,265,272,290,297,298,299,300,301,302,338,341,342,343,344,345,346],_1=[1,271],w1=[1,270],_t=[6,13,16,29,31,39,45,47,48,70,73,76,78,81,82,83,85,87,89,112,159,160,161,163,164,193,231,242,246,250,263,265,268,269,270,271,272,273,274,276,277,279,280,283,285,290,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,335,338,341,342,343,344,345,346,347,348,349,350,351],b1=[1,281],E1=[1,280],fr=[13,16,29,31,39,45,47,48,82,85,87,89,112,159,160,161,163,164,174,193,197,224,229,231,232,242,246,250,263,265,272,290,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,314,317,318,335,338,341,342,343,344,345,346],Uo=[45,89],Su=[13,16,29,31,39,45,47,48,82,85,87,89,112,159,160,161,163,164,174,193,197,224,229,231,232,242,246,250,263,265,272,290,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,314,317,318,335,338,341,342,343,344,345,346],_u=[13,16,31,82,174,294,295,296,297,298,299,300,301,302,303,304,305,306,308,312],wu=[31,89],bu=[48,87],gs=[6,13,16,45,48,82,87,89,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,337,338],Un=[6,13,16,39,45,48,82,87,89,231,263,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,337,338,340],T1=[1,313],ma=[6,85],Jh=[6,31,81,83,85],A1=[2,361],fi=[2,353],ys=[1,343],Bo=[31,112,335],hi=[13,16,29,31,45,48,82,85,87,89,112,159,160,161,163,164,193,197,224,229,231,232,272,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,317,318,335],Zh=[13,16,29,31,45,48,82,85,87,89,112,159,160,161,163,164,193,197,224,229,231,232,272,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,314,317,318,335],C1=[6,109,193],vs=[31,112],wt=[13,16,45,82,87,224,263,265,268,269,270,271,273,274,276,277,279,280,283,285,294,295,296,297,298,299,300,301,302,303,304,305,306,308,312,346,347,348,349,350,351],ed=[1,390],td=[1,391],ki=[13,16,87,197,308,314],x1=[13,16,39,45,82,87,224,263,265,268,269,270,271,273,274,276,277,279,280,283,285,294,295,296,297,298,299,300,301,302,303,304,305,306,308,312,346,347,348,349,350,351],Eu=[1,417],Tu=[1,418],O1=[13,16,48,197,229,308],Mi=[6,31,85],I1=[6,13,16,31,45,73,81,83,85,268,269,270,271,273,274,276,277,279,280,283,285,308,346,347,348,349,350,351],rd=[6,13,16,29,31,45,73,76,78,81,82,83,85,87,89,112,159,160,161,163,164,231,268,269,270,271,273,274,276,277,279,280,283,285,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,335,346,347,348,349,350,351],Ss=[29,31,85,112,159,160,161,163,164],Au=[1,443],Cu=[1,444],P1=[1,449],_s=[31,112,193,232,318,335],xu=[13,16,45,48,82,87,89,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312],D1=[13,16,31,45,48,82,87,89,112,193,231,232,272,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,317,318,335],nd=[13,16,29,31,45,48,82,85,87,89,112,159,160,161,163,164,193,231,232,272,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,317,318,335],qo=[13,16,31,48,82,174,294,295,296,297,298,299,300,301,302,303,304,305,306,308,312],Go=[31,45],R1=[1,507],F1=[1,508],N1=[6,13,16,29,31,39,45,47,48,63,70,73,76,78,81,82,83,85,87,89,112,159,160,161,163,164,193,231,242,246,250,263,265,268,269,270,271,272,273,274,276,277,279,280,283,285,290,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,335,336,338,341,342,343,344,345,346,347,348,349,350,351],Ou=[29,31,85,112,159,160,161,163,164,335],ws=[6,13,16,31,45,70,73,81,83,85,87,268,269,270,271,273,274,276,277,279,280,283,285,308,346,347,348,349,350,351],L1=[13,16,31,45,48,82,87,89,112,193,197,231,232,272,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,317,318,335],k1=[2,352],id=[13,16,197,308,314],M1=[1,565],ga=[6,13,16,31,45,76,78,81,83,85,87,268,269,270,271,273,274,276,277,279,280,283,285,308,346,347,348,349,350,351],j1=[13,16,29,31,45,82,85,87,89,112,159,160,161,163,164,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312],di=[13,16,29,31,45,82,85,87,89,112,159,160,161,163,164,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,335],$1=[13,16,87,308],pi=[2,364],ya=[29,31,85,112,159,160,161,163,164,193,232,318,335],Iu=[31,112,193,232,272,318,335],mi=[2,359],V1=[13,16,48,82,174,294,295,296,297,298,299,300,301,302,303,304,305,306,308,312],Pu=[29,31,85,112,159,160,161,163,164,193,232,272,318,335],U1=[13,16,31,45,82,87,89,112,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312],B1=[2,347],sd={trace:o(function(){},"trace"),yy:{},symbols_:{error:2,QueryOrUpdate:3,Prologue:4,QueryOrUpdate_group0:5,EOF:6,Query:7,Qry:8,Query_option0:9,Prologue_repetition0:10,BaseDecl:11,BASE:12,IRIREF:13,PrefixDecl:14,PREFIX:15,PNAME_NS:16,SelectClauseWildcard:17,Qry_repetition0:18,WhereClause:19,SolutionModifierNoGroup:20,SelectClauseVars:21,Qry_repetition1:22,SolutionModifier:23,CONSTRUCT:24,ConstructTemplate:25,Qry_repetition2:26,Qry_repetition3:27,WHERE:28,"{":29,Qry_option0:30,"}":31,DESCRIBE:32,Qry_group0:33,Qry_repetition4:34,Qry_option1:35,ASK:36,Qry_repetition5:37,SelectClauseBase:38,"*":39,SelectClauseVars_repetition_plus0:40,SELECT:41,SelectClauseBase_option0:42,SelectClauseItem:43,Var:44,"(":45,Expression:46,AS:47,")":48,SubSelect:49,SubSelect_option0:50,SubSelect_option1:51,DatasetClause:52,FROM:53,DatasetClause_option0:54,iri:55,WhereClause_option0:56,GroupGraphPattern:57,SolutionModifier_option0:58,SolutionModifierNoGroup_option0:59,SolutionModifierNoGroup_option1:60,SolutionModifierNoGroup_option2:61,GroupClause:62,GROUP:63,BY:64,GroupClause_repetition_plus0:65,GroupCondition:66,BuiltInCall:67,FunctionCall:68,HavingClause:69,HAVING:70,HavingClause_repetition_plus0:71,OrderClause:72,ORDER:73,OrderClause_repetition_plus0:74,OrderCondition:75,ASC:76,BrackettedExpression:77,DESC:78,Constraint:79,LimitOffsetClauses:80,LIMIT:81,INTEGER:82,OFFSET:83,ValuesClause:84,VALUES:85,InlineData:86,VAR:87,InlineData_repetition0:88,NIL:89,InlineData_repetition1:90,InlineData_repetition_plus2:91,InlineData_repetition3:92,DataBlock:93,DataBlockValueList:94,DataBlockValueList_repetition_plus0:95,Update:96,Update_repetition0:97,Update1:98,Update_option0:99,LOAD:100,Update1_option0:101,Update1_option1:102,Update1_group0:103,Update1_option2:104,GraphRefAll:105,Update1_group1:106,Update1_option3:107,GraphOrDefault:108,TO:109,CREATE:110,Update1_option4:111,GRAPH:112,INSERTDATA:113,QuadPattern:114,DELETEDATA:115,DELETEWHERE:116,Update1_option5:117,InsertDeleteClause:118,Update1_repetition0:119,IntoGraphClause:120,INTO:121,GraphRef:122,DELETE:123,InsertDeleteClause_option0:124,InsertClause:125,INSERT:126,UsingClause:127,USING:128,UsingClause_option0:129,WithClause:130,WITH:131,DEFAULT:132,GraphOrDefault_option0:133,GraphRefAll_group0:134,Quads:135,Quads_option0:136,Quads_repetition0:137,QuadsNotTriples:138,VarOrIri:139,QuadsNotTriples_option0:140,QuadsNotTriples_option1:141,QuadsNotTriples_option2:142,TriplesTemplate:143,TriplesTemplate_repetition0:144,TriplesSameSubject:145,TriplesTemplate_option0:146,GroupGraphPatternSub:147,GroupGraphPatternSub_option0:148,GroupGraphPatternSub_repetition0:149,GroupGraphPatternSubTail:150,GraphPatternNotTriples:151,GroupGraphPatternSubTail_option0:152,GroupGraphPatternSubTail_option1:153,TriplesBlock:154,TriplesBlock_repetition0:155,TriplesSameSubjectPath:156,TriplesBlock_option0:157,GroupOrUnionGraphPattern:158,OPTIONAL:159,MINUS:160,SERVICE:161,GraphPatternNotTriples_option0:162,FILTER:163,BIND:164,InlineDataOneVar:165,InlineDataFull:166,InlineDataOneVar_repetition0:167,InlineDataFull_repetition0:168,InlineDataFull_repetition_plus1:169,InlineDataFull_repetition2:170,DataBlockValue:171,Literal:172,QuotedTriple:173,UNDEF:174,GroupOrUnionGraphPattern_repetition0:175,ArgList:176,ArgList_option0:177,ArgList_repetition0:178,ExpressionList:179,ExpressionList_repetition0:180,ConstructTemplate_option0:181,ConstructTriples:182,ConstructTriples_repetition0:183,ConstructTriples_option0:184,VarOrTermOrQuotedTP:185,PropertyListNotEmpty:186,TriplesNode:187,PropertyList:188,PropertyList_option0:189,VerbObjectList:190,PropertyListNotEmpty_repetition0:191,SemiOptionalVerbObjectList:192,";":193,SemiOptionalVerbObjectList_option0:194,Verb:195,ObjectList:196,a:197,ObjectList_repetition0:198,Object:199,GraphNode:200,Object_option0:201,PropertyListPathNotEmpty:202,TriplesNodePath:203,TriplesSameSubjectPath_option0:204,O:205,PropertyListPathNotEmpty_repetition0:206,PropertyListPathNotEmptyTail:207,O_group0:208,ObjectListPath:209,ObjectListPath_repetition0:210,ObjectPath:211,GraphNodePath:212,ObjectPath_option0:213,Path:214,Path_repetition0:215,PathSequence:216,PathSequence_repetition0:217,PathEltOrInverse:218,PathElt:219,PathPrimary:220,PathElt_option0:221,PathEltOrInverse_option0:222,IriOrA:223,"!":224,PathNegatedPropertySet:225,PathOneInPropertySet:226,PathNegatedPropertySet_repetition0:227,PathNegatedPropertySet_option0:228,"^":229,TriplesNode_repetition_plus0:230,"[":231,"]":232,TriplesNodePath_repetition_plus0:233,VarOrTermOrQuotedTPExpr:234,VarOrTerm:235,GraphTerm:236,BlankNode:237,ConditionalOrExpression:238,ConditionalAndExpression:239,ConditionalOrExpression_repetition0:240,ConditionalOrExpressionTail:241,"||":242,RelationalExpression:243,ConditionalAndExpression_repetition0:244,ConditionalAndExpressionTail:245,"&&":246,NumericExpression:247,RelationalExpression_group0:248,RelationalExpression_option0:249,IN:250,MultiplicativeExpression:251,NumericExpression_repetition0:252,AdditiveExpressionTail:253,AdditiveExpressionTail_group0:254,NumericLiteralPositive:255,AdditiveExpressionTail_repetition0:256,NumericLiteralNegative:257,AdditiveExpressionTail_repetition1:258,UnaryExpression:259,MultiplicativeExpression_repetition0:260,MultiplicativeExpressionTail:261,MultiplicativeExpressionTail_group0:262,"+":263,PrimaryExpression:264,"-":265,ExprQuotedTP:266,Aggregate:267,FUNC_ARITY0:268,FUNC_ARITY1:269,FUNC_ARITY1_SPARQL_STAR:270,FUNC_ARITY2:271,",":272,FUNC_ARITY3:273,FUNC_ARITY3_SPARQL_STAR:274,BuiltInCall_group0:275,BOUND:276,BNODE:277,BuiltInCall_option0:278,EXISTS:279,COUNT:280,Aggregate_option0:281,Aggregate_group0:282,FUNC_AGGREGATE:283,Aggregate_option1:284,GROUP_CONCAT:285,Aggregate_option2:286,Aggregate_option3:287,GroupConcatSeparator:288,SEPARATOR:289,"=":290,String:291,LANGTAG:292,"^^":293,DECIMAL:294,DOUBLE:295,BOOLEAN:296,INTEGER_POSITIVE:297,DECIMAL_POSITIVE:298,DOUBLE_POSITIVE:299,INTEGER_NEGATIVE:300,DECIMAL_NEGATIVE:301,DOUBLE_NEGATIVE:302,STRING_LITERAL1:303,STRING_LITERAL2:304,STRING_LITERAL_LONG1:305,STRING_LITERAL_LONG2:306,PrefixedName:307,PNAME_LN:308,BLANK_NODE_LABEL:309,ANON:310,QuotedTP:311,"<<":312,qtSubjectOrObject:313,">>":314,DataValueTerm:315,AnnotationPattern:316,"{|":317,"|}":318,AnnotationPatternPath:319,ExprVarOrTerm:320,QueryOrUpdate_group0_option0:321,Prologue_repetition0_group0:322,Qry_group0_repetition_plus0:323,SelectClauseBase_option0_group0:324,DISTINCT:325,REDUCED:326,NAMED:327,SILENT:328,CLEAR:329,DROP:330,ADD:331,MOVE:332,COPY:333,ALL:334,".":335,UNION:336,"|":337,"/":338,PathElt_option0_group0:339,"?":340,"!=":341,"<":342,">":343,"<=":344,">=":345,NOT:346,CONCAT:347,COALESCE:348,SUBSTR:349,REGEX:350,REPLACE:351,$accept:0,$end:1},terminals_:{2:"error",6:"EOF",12:"BASE",13:"IRIREF",15:"PREFIX",16:"PNAME_NS",24:"CONSTRUCT",28:"WHERE",29:"{",31:"}",32:"DESCRIBE",36:"ASK",39:"*",41:"SELECT",45:"(",47:"AS",48:")",53:"FROM",63:"GROUP",64:"BY",70:"HAVING",73:"ORDER",76:"ASC",78:"DESC",81:"LIMIT",82:"INTEGER",83:"OFFSET",85:"VALUES",87:"VAR",89:"NIL",100:"LOAD",109:"TO",110:"CREATE",112:"GRAPH",113:"INSERTDATA",115:"DELETEDATA",116:"DELETEWHERE",121:"INTO",123:"DELETE",126:"INSERT",128:"USING",131:"WITH",132:"DEFAULT",159:"OPTIONAL",160:"MINUS",161:"SERVICE",163:"FILTER",164:"BIND",174:"UNDEF",193:";",197:"a",224:"!",229:"^",231:"[",232:"]",242:"||",246:"&&",250:"IN",263:"+",265:"-",268:"FUNC_ARITY0",269:"FUNC_ARITY1",270:"FUNC_ARITY1_SPARQL_STAR",271:"FUNC_ARITY2",272:",",273:"FUNC_ARITY3",274:"FUNC_ARITY3_SPARQL_STAR",276:"BOUND",277:"BNODE",279:"EXISTS",280:"COUNT",283:"FUNC_AGGREGATE",285:"GROUP_CONCAT",289:"SEPARATOR",290:"=",292:"LANGTAG",293:"^^",294:"DECIMAL",295:"DOUBLE",296:"BOOLEAN",297:"INTEGER_POSITIVE",298:"DECIMAL_POSITIVE",299:"DOUBLE_POSITIVE",300:"INTEGER_NEGATIVE",301:"DECIMAL_NEGATIVE",302:"DOUBLE_NEGATIVE",303:"STRING_LITERAL1",304:"STRING_LITERAL2",305:"STRING_LITERAL_LONG1",306:"STRING_LITERAL_LONG2",308:"PNAME_LN",309:"BLANK_NODE_LABEL",310:"ANON",312:"<<",314:">>",317:"{|",318:"|}",325:"DISTINCT",326:"REDUCED",327:"NAMED",328:"SILENT",329:"CLEAR",330:"DROP",331:"ADD",332:"MOVE",333:"COPY",334:"ALL",335:".",336:"UNION",337:"|",338:"/",340:"?",341:"!=",342:"<",343:">",344:"<=",345:">=",346:"NOT",347:"CONCAT",348:"COALESCE",349:"SUBSTR",350:"REGEX",351:"REPLACE"},productions_:[0,[3,3],[7,2],[4,1],[11,2],[14,3],[8,4],[8,4],[8,5],[8,7],[8,5],[8,4],[17,2],[21,2],[38,2],[43,1],[43,5],[49,4],[49,4],[52,3],[19,2],[23,2],[20,3],[62,3],[66,1],[66,1],[66,3],[66,5],[66,1],[69,2],[72,3],[75,2],[75,2],[75,1],[75,1],[80,2],[80,2],[80,4],[80,4],[84,2],[86,4],[86,4],[86,6],[86,2],[94,3],[96,3],[98,4],[98,3],[98,5],[98,4],[98,2],[98,2],[98,2],[98,5],[120,2],[118,3],[118,1],[125,2],[127,3],[130,2],[108,1],[108,2],[122,2],[105,1],[105,1],[114,3],[135,2],[138,7],[143,3],[57,3],[57,3],[147,2],[150,3],[154,3],[151,1],[151,2],[151,2],[151,3],[151,4],[151,2],[151,6],[151,1],[93,1],[93,1],[165,4],[166,4],[166,6],[171,1],[171,1],[171,1],[171,1],[158,2],[79,1],[79,1],[79,1],[68,2],[176,1],[176,5],[179,1],[179,4],[25,3],[182,3],[145,2],[145,2],[188,1],[186,2],[192,2],[190,2],[195,1],[195,1],[196,2],[199,2],[156,2],[156,2],[202,2],[207,1],[207,2],[205,2],[209,2],[211,2],[214,2],[216,2],[219,2],[218,2],[220,1],[220,2],[220,3],[225,1],[225,1],[225,4],[226,1],[226,2],[187,3],[187,3],[203,3],[203,3],[200,1],[200,1],[212,1],[212,1],[234,1],[235,1],[235,1],[139,1],[139,1],[44,1],[236,1],[236,1],[236,1],[236,1],[46,1],[238,2],[241,2],[239,2],[245,2],[243,1],[243,3],[243,4],[247,2],[253,2],[253,2],[253,2],[251,2],[261,2],[259,2],[259,2],[259,2],[259,1],[264,1],[264,1],[264,1],[264,1],[264,1],[264,1],[264,1],[77,3],[67,1],[67,2],[67,4],[67,4],[67,6],[67,8],[67,8],[67,2],[67,4],[67,2],[67,4],[67,3],[267,5],[267,5],[267,6],[288,4],[172,1],[172,2],[172,3],[172,1],[172,1],[172,1],[172,1],[172,1],[172,1],[255,1],[255,1],[255,1],[257,1],[257,1],[257,1],[291,1],[291,1],[291,1],[291,1],[55,1],[55,1],[307,1],[307,1],[237,1],[237,1],[311,5],[173,5],[313,1],[313,1],[313,1],[313,1],[313,1],[315,1],[315,1],[315,1],[185,1],[185,1],[185,1],[316,3],[319,3],[266,5],[320,1],[320,1],[320,1],[223,1],[223,1],[321,0],[321,1],[5,1],[5,1],[5,1],[9,0],[9,1],[322,1],[322,1],[10,0],[10,2],[18,0],[18,2],[22,0],[22,2],[26,0],[26,2],[27,0],[27,2],[30,0],[30,1],[323,1],[323,2],[33,1],[33,1],[34,0],[34,2],[35,0],[35,1],[37,0],[37,2],[40,1],[40,2],[324,1],[324,1],[42,0],[42,1],[50,0],[50,1],[51,0],[51,1],[54,0],[54,1],[56,0],[56,1],[58,0],[58,1],[59,0],[59,1],[60,0],[60,1],[61,0],[61,1],[65,1],[65,2],[71,1],[71,2],[74,1],[74,2],[88,0],[88,2],[90,0],[90,2],[91,1],[91,2],[92,0],[92,2],[95,1],[95,2],[97,0],[97,4],[99,0],[99,2],[101,0],[101,1],[102,0],[102,1],[103,1],[103,1],[104,0],[104,1],[106,1],[106,1],[106,1],[107,0],[107,1],[111,0],[111,1],[117,0],[117,1],[119,0],[119,2],[124,0],[124,1],[129,0],[129,1],[133,0],[133,1],[134,1],[134,1],[134,1],[136,0],[136,1],[137,0],[137,2],[140,0],[140,1],[141,0],[141,1],[142,0],[142,1],[144,0],[144,3],[146,0],[146,1],[148,0],[148,1],[149,0],[149,2],[152,0],[152,1],[153,0],[153,1],[155,0],[155,3],[157,0],[157,1],[162,0],[162,1],[167,0],[167,2],[168,0],[168,2],[169,1],[169,2],[170,0],[170,2],[175,0],[175,3],[177,0],[177,1],[178,0],[178,3],[180,0],[180,3],[181,0],[181,1],[183,0],[183,3],[184,0],[184,1],[189,0],[189,1],[191,0],[191,2],[194,0],[194,1],[198,0],[198,3],[201,0],[201,1],[204,0],[204,1],[206,0],[206,2],[208,1],[208,1],[210,0],[210,3],[213,0],[213,1],[215,0],[215,3],[217,0],[217,3],[339,1],[339,1],[339,1],[221,0],[221,1],[222,0],[222,1],[227,0],[227,3],[228,0],[228,1],[230,1],[230,2],[233,1],[233,2],[240,0],[240,2],[244,0],[244,2],[248,1],[248,1],[248,1],[248,1],[248,1],[248,1],[249,0],[249,1],[252,0],[252,2],[254,1],[254,1],[256,0],[256,2],[258,0],[258,2],[260,0],[260,2],[262,1],[262,1],[275,1],[275,1],[275,1],[275,1],[275,1],[278,0],[278,1],[281,0],[281,1],[282,1],[282,1],[284,0],[284,1],[286,0],[286,1],[287,0],[287,1]],performAction:o(function(A,P,F,Y,_e,m,dr){var g=m.length-1;switch(_e){case 1:if(m[g-1]=m[g-1]||{},xe.base&&(m[g-1].base=xe.base),xe.base="",m[g-1].prefixes=xe.prefixes,xe.prefixes=null,xe.pathOnly){if(m[g-1].type==="path"||"termType"in m[g-1])return m[g-1];throw new Error("Received full SPARQL query in path only mode")}else if(m[g-1].type==="path"||"termType"in m[g-1])throw new Error("Received only path in full SPARQL mode");if(m[g-1].type==="update"){let it={};for(let ht of m[g-1].updates)if(ht.updateType==="insert"){let He={};for(let Ze of ht.insert)if(Ze.type==="bgp"||Ze.type==="graph")for(let Cr of Ze.triples)Cr.subject.termType==="BlankNode"&&(He[Cr.subject.value]=!0),Cr.predicate.termType==="BlankNode"&&(He[Cr.predicate.value]=!0),Cr.object.termType==="BlankNode"&&(He[Cr.object.value]=!0);for(let Ze of Object.keys(He)){if(it[Ze])throw new Error("Detected reuse blank node across different INSERT DATA clauses");it[Ze]=!0}}}return m[g-1];case 2:this.$={...m[g-1],...m[g],type:"query"};break;case 4:xe.base=Wo(m[g]);break;case 5:xe.prefixes||(xe.prefixes={}),m[g-1]=m[g-1].substr(0,m[g-1].length-1),m[g]=Wo(m[g]),xe.prefixes[m[g-1]]=m[g];break;case 6:this.$={...m[g-3],...Ts(m[g-2]),...m[g-1],...m[g]};break;case 7:if(!xe.skipValidation&&(dd(m[g-3].variables.map(ht=>hd(ht.expression))).some(ht=>ht.aggregation==="count"&&!(ht.expression instanceof Du))||m[g].group)){for(let ht of m[g-3].variables)if(ht.termType==="Variable"){if(!m[g].group||!m[g].group.map(He=>wa(He)).includes(wa(ht)))throw Error("Projection of ungrouped variable (?"+wa(ht)+")")}else if(hd(ht.expression).length===0){let He=ZT(ht.expression);for(let Ze of He)if(!m[g].group||!m[g].group.map||!m[g].group.map(Cr=>wa(Cr)).includes(wa(Ze)))throw Error("Use of ungrouped variable in projection of operation (?"+wa(Ze)+")")}}let Wn=m[g-1].where.filter(it=>it.type==="query");if(Wn.length>0){let it=m[g-3].variables.filter(He=>He.variable&&He.variable.value).map(He=>He.variable.value),ht=dd(Wn.map(He=>He.variables)).map(He=>He.value||He.variable.value);for(let He of it)if(ht.indexOf(He)>=0)throw Error("Target id of 'AS' (?"+He+") already used in subquery")}this.$=gt(m[g-3],Ts(m[g-2]),m[g-1],m[g]);break;case 8:this.$=gt({queryType:"CONSTRUCT",template:m[g-3]},Ts(m[g-2]),m[g-1],m[g]);break;case 9:this.$=gt({queryType:"CONSTRUCT",template:m[g-2]=m[g-2]?m[g-2].triples:[]},Ts(m[g-5]),{where:[{type:"bgp",triples:Es([],m[g-2])}]},m[g]);break;case 10:this.$=gt({queryType:"DESCRIBE",variables:m[g-3]==="*"?[new Du]:m[g-3]},Ts(m[g-2]),m[g-1],m[g]);break;case 11:this.$=gt({queryType:"ASK"},Ts(m[g-2]),m[g-1],m[g]);break;case 12:this.$=gt(m[g-1],{variables:[new Du]});break;case 13:let Ko=m[g].map(it=>it.value||it.variable.value),ba=eA(Ko);if(ba.length>0)throw Error("Two or more of the resulting columns have the same name (?"+ba[0]+")");this.$=gt(m[g-1],{variables:m[g]});break;case 14:this.$=gt({queryType:"SELECT"},m[g]&&(m[g-1]=hr(m[g]),m[g]={},m[g][m[g-1]]=!0,m[g]));break;case 16:case 27:this.$=va(m[g-3],{variable:m[g-1]});break;case 17:case 18:this.$=gt(m[g-3],m[g-2],m[g-1],m[g],{type:"query"});break;case 19:case 58:this.$={iri:m[g],named:!!m[g-1]};break;case 20:this.$={where:m[g].patterns};break;case 21:this.$=gt(m[g-1],m[g]);break;case 22:this.$=gt(m[g-2],m[g-1],m[g]);break;case 23:this.$={group:m[g]};break;case 24:case 25:case 28:case 31:case 33:case 34:this.$=va(m[g]);break;case 26:this.$=va(m[g-1]);break;case 29:this.$={having:m[g]};break;case 30:this.$={order:m[g]};break;case 32:this.$=va(m[g],{descending:!0});break;case 35:this.$={limit:_a(m[g])};break;case 36:this.$={offset:_a(m[g])};break;case 37:this.$={limit:_a(m[g-2]),offset:_a(m[g])};break;case 38:this.$={limit:_a(m[g]),offset:_a(m[g-2])};break;case 39:case 43:this.$={type:"values",values:m[g]};break;case 40:case 84:this.$=m[g-1].map(it=>({[m[g-3]]:it}));break;case 41:case 85:this.$=m[g-1].map(()=>({}));break;case 42:case 86:var Gn=m[g-4].length;m[g-4]=m[g-4].map(ad),this.$=m[g-1].map(function(it){if(it.length!==Gn)throw Error("Inconsistent VALUES length");for(var ht={},He=0;He<Gn;He++)ht["?"+m[g-4][He].value]=it[He];return ht});break;case 44:case 65:case 100:case 126:case 175:this.$=m[g-1];break;case 45:this.$={type:"update",updates:gi(m[g-2],m[g-1])};break;case 46:this.$=gt({type:"load",silent:!!m[g-2],source:m[g-1]},m[g]&&{destination:m[g]});break;case 47:this.$={type:hr(m[g-2]),silent:!!m[g-1],graph:m[g]};break;case 48:this.$={type:hr(m[g-4]),silent:!!m[g-3],source:m[g-2],destination:m[g]};break;case 49:this.$={type:"create",silent:!!m[g-2],graph:{type:"graph",name:m[g]}};break;case 50:this.$={updateType:"insert",insert:Z1(m[g])};break;case 51:this.$={updateType:"delete",delete:gd(Z1(m[g]))};break;case 52:this.$={updateType:"deletewhere",delete:gd(m[g])};break;case 53:this.$={updateType:"insertdelete",...m[g-4],...m[g-3],...Ts(m[g-2],"using"),where:m[g].patterns};break;case 54:case 57:case 62:case 167:case 191:case 236:this.$=m[g];break;case 55:this.$={delete:gd(m[g-1]),insert:m[g]||[]};break;case 56:this.$={delete:[],insert:m[g]};break;case 59:this.$={graph:m[g]};break;case 60:this.$={type:"graph",default:!0};break;case 61:case 63:this.$={type:"graph",name:m[g]};break;case 64:this.$={[hr(m[g])]:!0};break;case 66:this.$=m[g-1]?Bn(m[g],[m[g-1]]):Bn(m[g]);break;case 67:var Qo=gt(m[g-3]||{triples:[]},{type:"graph",name:m[g-5]});this.$=m[g]?[Qo,m[g]]:[Qo];break;case 68:case 73:this.$={type:"bgp",triples:Bn(m[g-2],[m[g-1]])};break;case 69:this.$={type:"group",patterns:[m[g-1]]};break;case 70:for(let it of m[g-1].filter(ht=>ht.type==="bind")){let ht=m[g-1].indexOf(it),He=new Set;for(let Ze of m[g-1].slice(0,ht))(Ze.type==="group"||Ze.type==="bgp")&&X1(Ze).forEach(Cr=>He.add(Cr));if(He.has(it.variable.value))throw Error("Variable used to bind is already bound (?"+it.variable.value+")")}this.$={type:"group",patterns:m[g-1]};break;case 71:this.$=m[g-1]?Bn([m[g-1]],m[g]):Bn(m[g]);break;case 72:this.$=m[g]?[m[g-2],m[g]]:m[g-2];break;case 75:this.$=gt(m[g],{type:"optional"});break;case 76:this.$=gt(m[g],{type:"minus"});break;case 77:this.$=gt(m[g],{type:"graph",name:m[g-1]});break;case 78:this.$=gt(m[g],{type:"service",name:m[g-1],silent:!!m[g-2]});break;case 79:this.$={type:"filter",expression:m[g]};break;case 80:this.$={type:"bind",variable:m[g-1],expression:m[g-3]};break;case 89:this.$=zo(m[g]);break;case 90:this.$=void 0;break;case 91:this.$=m[g-1].length?{type:"union",patterns:Bn(m[g-1].map(cd),[cd(m[g])])}:m[g];break;case 95:this.$={...m[g],function:m[g-1]};break;case 96:this.$={type:"functionCall",args:[]};break;case 97:this.$={type:"functionCall",args:gi(m[g-2],m[g-1]),distinct:!!m[g-3]};break;case 98:case 115:case 128:case 247:case 249:case 251:case 253:case 255:case 263:case 267:case 297:case 299:case 303:case 307:case 328:case 341:case 349:case 355:case 361:case 367:case 369:case 373:case 375:case 379:case 381:case 385:case 391:case 395:case 401:case 405:case 409:case 411:case 420:case 428:case 430:case 440:case 444:case 446:case 448:this.$=[];break;case 99:this.$=gi(m[g-2],m[g-1]);break;case 101:this.$=Bn(m[g-2],[m[g-1]]);break;case 102:case 112:this.$=md(m[g].map(it=>gt(yi(m[g-1]),it)));break;case 103:this.$=md(Es(m[g].map(it=>gt(yi(m[g-1].entity),it)),m[g-1].triples));break;case 105:this.$=Bn([m[g-1]],m[g]);break;case 106:this.$=Bn(m[g]);break;case 107:this.$=fd(m[g-1],m[g]);break;case 109:case 237:this.$=xe.factory.namedNode(qT);break;case 110:case 118:this.$=gi(m[g-1],m[g]);break;case 111:this.$=m[g]?{annotation:m[g],object:m[g-1]}:m[g-1];break;case 113:this.$=m[g]?md(Es(m[g].map(it=>gt(yi(m[g-1].entity),it)),m[g-1].triples)):m[g-1].triples;break;case 114:this.$=fd(...m[g-1],m[g]);break;case 116:this.$=fd(...m[g]);break;case 117:case 159:case 163:this.$=[m[g-1],m[g]];break;case 119:this.$=m[g]?{object:m[g-1],annotation:m[g]}:m[g-1];break;case 120:this.$=m[g-1].length?Sa("|",gi(m[g-1],m[g])):m[g];break;case 121:this.$=m[g-1].length?Sa("/",gi(m[g-1],m[g])):m[g];break;case 122:this.$=m[g]?Sa(m[g],[m[g-1]]):m[g-1];break;case 123:this.$=m[g-1]?Sa(m[g-1],[m[g]]):m[g];break;case 125:case 131:this.$=Sa(m[g-1],[m[g]]);break;case 129:this.$=Sa("|",gi(m[g-2],m[g-1]));break;case 132:case 134:this.$=XT(m[g-1]);break;case 133:case 135:this.$=JT(m[g-1]);break;case 140:this.$={entity:m[g],triples:[]};break;case 145:this.$=ad(m[g]);break;case 149:this.$=xe.factory.namedNode(q1);break;case 151:case 153:case 158:case 162:this.$=od(m[g-1],m[g]);break;case 152:this.$=["||",m[g]];break;case 154:this.$=["&&",m[g]];break;case 156:this.$=Vt(m[g-1],[m[g-2],m[g]]);break;case 157:this.$=Vt(m[g-2]?"notin":"in",[m[g-3],m[g]]);break;case 160:this.$=["+",od(m[g-1],m[g])];break;case 161:var Nu=qn(m[g-1].value.replace("-",""),m[g-1].datatype);this.$=["-",od(Nu,m[g])];break;case 164:this.$=Vt("UPLUS",[m[g]]);break;case 165:this.$=Vt(m[g-1],[m[g]]);break;case 166:this.$=Vt("UMINUS",[m[g]]);break;case 177:this.$=Vt(hr(m[g-1]));break;case 178:this.$=Vt(hr(m[g-3]),[m[g-1]]);break;case 179:this.$=zo(Vt(hr(m[g-3]),[m[g-1]]));break;case 180:this.$=Vt(hr(m[g-5]),[m[g-3],m[g-1]]);break;case 181:this.$=Vt(hr(m[g-7]),[m[g-5],m[g-3],m[g-1]]);break;case 182:this.$=zo(Vt(hr(m[g-7]),[m[g-5],m[g-3],m[g-1]]));break;case 183:this.$=Vt(hr(m[g-1]),m[g]);break;case 184:this.$=Vt("bound",[ad(m[g-1])]);break;case 185:this.$=Vt(m[g-1],[]);break;case 186:this.$=Vt(m[g-3],[m[g-1]]);break;case 187:this.$=Vt(m[g-2]?"notexists":"exists",[cd(m[g])]);break;case 188:case 189:this.$=va(m[g-1],{type:"aggregate",aggregation:hr(m[g-4]),distinct:!!m[g-2]});break;case 190:this.$=va(m[g-2],{type:"aggregate",aggregation:hr(m[g-5]),distinct:!!m[g-3],separator:typeof m[g-1]=="string"?m[g-1]:" "});break;case 192:this.$=qn(m[g]);break;case 193:this.$=zT(m[g-1],hr(m[g].substr(1)));break;case 194:this.$=qn(m[g-2],m[g]);break;case 195:case 204:this.$=qn(m[g],G1);break;case 196:case 205:this.$=qn(m[g],W1);break;case 197:case 206:this.$=qn(hr(m[g]),H1);break;case 200:this.$=qn(m[g].toLowerCase(),HT);break;case 201:this.$=qn(m[g].substr(1),G1);break;case 202:this.$=qn(m[g].substr(1),W1);break;case 203:this.$=qn(m[g].substr(1).toLowerCase(),H1);break;case 207:case 208:this.$=K1(m[g],1);break;case 209:case 210:this.$=K1(m[g],3);break;case 211:this.$=xe.factory.namedNode(Wo(m[g]));break;case 213:var Lu=m[g].indexOf(":"),Yo=m[g].substr(0,Lu),ku=xe.prefixes[Yo];if(!ku)throw new Error("Unknown prefix: "+Yo);var pt=Wo(ku+m[g].substr(Lu+1));this.$=xe.factory.namedNode(pt);break;case 214:if(m[g]=m[g].substr(0,m[g].length-1),!(m[g]in xe.prefixes))throw new Error("Unknown prefix: "+m[g]);var pt=Wo(xe.prefixes[m[g]]);this.$=xe.factory.namedNode(pt);break;case 215:this.$=Ho(m[g].replace(/^(_:)/,""));break;case 216:this.$=Ho();break;case 217:case 218:case 232:this.$=zo(ud(m[g-3],m[g-2],m[g-1]));break;case 230:case 231:this.$=zo(m[g-1]);break;case 248:case 250:case 252:case 254:case 256:case 260:case 264:case 268:case 270:case 292:case 294:case 296:case 298:case 300:case 302:case 304:case 306:case 329:case 342:case 356:case 368:case 370:case 372:case 374:case 392:case 402:case 425:case 427:case 429:case 431:case 441:case 445:case 447:case 449:m[g-1].push(m[g]);break;case 259:case 269:case 291:case 293:case 295:case 301:case 305:case 371:case 424:case 426:this.$=[m[g]];break;case 308:m[g-3].push(m[g-2]);break;case 350:case 362:case 376:case 380:case 382:case 386:case 396:case 406:case 410:case 412:case 421:m[g-2].push(m[g-1]);break}},"anonymous"),table:[n(e,t,{3:1,4:2,10:3}),{1:[3]},n(r,[2,307],{5:4,7:5,321:6,214:7,8:8,96:9,215:10,17:11,21:12,97:16,38:17,6:[2,238],13:i,16:i,45:i,197:i,224:i,229:i,308:i,24:[1,13],32:[1,14],36:[1,15],41:s}),n([6,13,16,24,32,36,41,45,100,110,113,115,116,123,126,131,197,224,229,308,329,330,331,332,333],[2,3],{322:19,11:20,14:21,12:[1,22],15:[1,23]}),{6:[1,24]},{6:[2,240]},{6:[2,241]},{6:[2,242]},{6:[2,243],9:25,84:26,85:a},{6:[2,239]},n(c,[2,411],{216:28,217:29}),n(u,[2,249],{18:30}),n(u,[2,251],{22:31}),n(l,[2,255],{25:32,27:33,29:[1,34]}),{13:f,16:h,33:35,39:[1,37],44:39,55:40,87:d,139:38,307:43,308:p,323:36},n(u,[2,267],{37:46}),n(S,[2,326],{98:47,103:49,106:50,117:55,130:61,100:[1,48],110:[1,51],113:[1,52],115:[1,53],116:[1,54],131:[1,62],329:[1,56],330:[1,57],331:[1,58],332:[1,59],333:[1,60]}),{39:[1,63],40:64,43:65,44:66,45:w,87:d},n(T,[2,273],{42:68,324:69,325:[1,70],326:[1,71]}),n(e,[2,248]),n(e,[2,245]),n(e,[2,246]),{13:[1,72]},{16:[1,73]},{1:[2,1]},{6:[2,2]},{6:[2,244]},{45:[1,77],85:[1,78],86:74,87:[1,75],89:[1,76]},n([6,13,16,45,48,82,87,89,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312],[2,120],{337:[1,79]}),n(O,[2,418],{218:80,222:81,229:[1,82]}),{19:83,28:I,29:L,52:84,53:M,56:85},{19:88,28:I,29:L,52:89,53:M,56:85},n(u,[2,253],{26:90}),{28:[1,91],52:92,53:M},n(G,[2,385],{181:93,182:94,183:95,31:[2,383]}),n(Ee,[2,263],{34:96}),n(Ee,[2,261],{44:39,55:40,307:43,139:97,13:f,16:h,87:d,308:p}),n(Ee,[2,262]),n(je,[2,259]),n(Me,[2,143]),n(Me,[2,144]),n([6,13,16,28,29,31,39,45,47,48,53,63,70,73,76,78,81,82,83,85,87,89,112,159,160,161,163,164,193,197,224,229,231,232,242,246,250,263,265,268,269,270,271,272,273,274,276,277,279,280,283,285,290,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,314,317,318,335,338,341,342,343,344,345,346,347,348,349,350,351],[2,145]),n(q,[2,211]),n(q,[2,212]),n(q,[2,213]),n(q,[2,214]),{19:98,28:I,29:L,52:99,53:M,56:85},{6:[2,309],99:100,193:[1,101]},n(ie,[2,311],{101:102,328:[1,103]}),n(Se,[2,317],{104:104,328:[1,105]}),n(rt,[2,322],{107:106,328:[1,107]}),{111:108,112:[2,324],328:[1,109]},{29:Ye,114:110},{29:Ye,114:112},{29:Ye,114:113},{118:114,123:[1,115],125:116,126:st},n(Ue,[2,315]),n(Ue,[2,316]),n(Be,[2,319]),n(Be,[2,320]),n(Be,[2,321]),n(S,[2,327]),{13:f,16:h,55:118,307:43,308:p},n(u,[2,12]),n(u,[2,13],{44:66,43:119,45:w,87:d}),n(ke,[2,269]),n(ke,[2,15]),{13:f,16:h,44:136,45:Q,46:120,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},n(T,[2,14]),n(T,[2,274]),n(T,[2,271]),n(T,[2,272]),n(e,[2,4]),{13:[1,177]},n(W,[2,39]),{29:[1,178]},{29:[1,179]},{87:[1,181],91:180},{45:[1,187],87:[1,185],89:[1,186],93:182,165:183,166:184},n(c,[2,410]),n([6,13,16,45,48,82,87,89,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,337],[2,121],{338:[1,188]}),{13:f,16:h,45:[1,193],55:194,197:nt,219:189,220:190,223:191,224:[1,192],307:43,308:p},n(O,[2,419]),n(ct,be,{20:196,59:197,69:198,70:j}),n(u,[2,250]),{29:$,57:200},n(ie,[2,279],{54:202,327:[1,203]}),{29:[2,282]},n(U,H,{23:204,58:205,62:206,63:ve}),n(u,[2,252]),{19:208,28:I,29:L,52:209,53:M,56:85},{29:[1,210]},n(l,[2,256]),{31:[1,211]},{31:[2,384]},{13:f,16:h,44:215,45:Ge,55:220,82:k,87:d,89:We,145:212,172:221,185:213,187:214,231:jt,236:216,237:222,255:154,257:155,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,309:Ar,310:Nr,311:217,312:lr},n(d1,[2,265],{56:85,35:227,52:228,19:229,28:I,29:L,53:M}),n(je,[2,260]),n(U,H,{58:205,62:206,23:230,63:ve}),n(u,[2,268]),{6:[2,45]},n(e,t,{10:3,4:231}),{13:f,16:h,55:232,307:43,308:p},n(ie,[2,312]),{105:233,112:p1,122:234,132:[1,237],134:235,327:[1,238],334:[1,239]},n(Se,[2,318]),n(ie,m1,{108:240,133:242,112:g1,132:y1}),n(rt,[2,323]),{112:[1,244]},{112:[2,325]},n($t,[2,50]),n(G,yu,{135:245,136:246,143:247,144:248,31:v1,112:v1}),n($t,[2,51]),n($t,[2,52]),n(Li,[2,328],{119:249}),{29:Ye,114:250},n(Li,[2,56]),{29:Ye,114:251},n(S,[2,59]),n(ke,[2,270]),{47:[1,252]},n(S1,[2,150]),n(vu,[2,428],{240:253}),n(da,[2,430],{244:254}),n(da,[2,155],{248:255,249:256,250:[2,438],290:[1,257],341:[1,258],342:[1,259],343:[1,260],344:[1,261],345:[1,262],346:[1,263]}),n(pa,[2,440],{252:264}),n(Dt,[2,448],{260:265}),{13:f,16:h,44:136,45:Q,55:133,67:132,68:134,77:131,82:k,87:d,172:135,255:154,257:155,264:266,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},{13:f,16:h,44:136,45:Q,55:133,67:132,68:134,77:131,82:k,87:d,172:135,255:154,257:155,264:267,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},{13:f,16:h,44:136,45:Q,55:133,67:132,68:134,77:131,82:k,87:d,172:135,255:154,257:155,264:268,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},n(Dt,[2,167]),n(Dt,[2,168]),n(Dt,[2,169]),n(Dt,[2,170],{176:269,45:_1,89:w1}),n(Dt,[2,171]),n(Dt,[2,172]),n(Dt,[2,173]),n(Dt,[2,174]),{13:f,16:h,44:136,45:Q,46:272,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},n(_t,[2,176]),{89:[1,273]},{45:[1,274]},{45:[1,275]},{45:[1,276]},{45:[1,277]},{45:[1,278]},{45:b1,89:E1,179:279},{45:[1,282]},{45:[1,284],89:[1,283]},{279:[1,285]},n(fr,[2,192],{292:[1,286],293:[1,287]}),n(fr,[2,195]),n(fr,[2,196]),n(fr,[2,197]),n(fr,[2,198]),n(fr,[2,199]),n(fr,[2,200]),{13:f,16:h,44:39,55:40,82:k,87:d,139:289,172:291,255:154,257:155,266:290,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,320:288},{45:[1,292]},{45:[1,293]},{45:[1,294]},n(Uo,[2,452]),n(Uo,[2,453]),n(Uo,[2,454]),n(Uo,[2,455]),n(Uo,[2,456]),{279:[2,458]},n(Su,[2,207]),n(Su,[2,208]),n(Su,[2,209]),n(Su,[2,210]),n(fr,[2,201]),n(fr,[2,202]),n(fr,[2,203]),n(fr,[2,204]),n(fr,[2,205]),n(fr,[2,206]),n(e,[2,5]),n(_u,[2,297],{88:295}),n(wu,[2,299],{90:296}),{48:[1,297],87:[1,298]},n(bu,[2,301]),n(W,[2,43]),n(W,[2,82]),n(W,[2,83]),{29:[1,299]},{29:[1,300]},{87:[1,302],169:301},n(c,[2,412]),n(gs,[2,123]),n(gs,[2,416],{221:303,339:304,39:[1,306],263:[1,307],340:[1,305]}),n(Un,[2,124]),{13:f,16:h,45:[1,311],55:194,89:[1,310],197:nt,223:312,225:308,226:309,229:T1,307:43,308:p},n(c,i,{215:10,214:314}),n(Un,[2,236]),n(Un,[2,237]),n(ma,[2,6]),n(Jh,[2,287],{60:315,72:316,73:[1,317]}),n(ct,[2,286]),{13:f,16:h,45:Q,55:323,67:321,68:322,71:318,77:320,79:319,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,307:43,308:p,346:Fe,347:we,348:b,349:E,350:_,351:x},n([6,31,63,70,73,81,83,85],[2,20]),n(G,A1,{38:17,49:324,147:325,17:326,21:327,148:328,154:329,155:330,29:fi,31:fi,85:fi,112:fi,159:fi,160:fi,161:fi,163:fi,164:fi,41:s}),{13:f,16:h,55:331,307:43,308:p},n(ie,[2,280]),n(ma,[2,7]),n(ct,be,{59:197,69:198,20:332,70:j}),n(U,[2,284]),{64:[1,333]},n(U,H,{58:205,62:206,23:334,63:ve}),n(u,[2,254]),n(G,yu,{144:248,30:335,143:336,31:[2,257]}),n(u,[2,100]),{31:[2,387],184:337,335:[1,338]},{13:f,16:h,44:39,55:40,87:d,139:342,186:339,190:340,195:341,197:ys,307:43,308:p},n(Bo,[2,389],{44:39,55:40,307:43,190:340,195:341,139:342,188:344,189:345,186:346,13:f,16:h,87:d,197:ys,308:p}),n(hi,[2,227]),n(hi,[2,228]),n(hi,[2,229]),{13:f,16:h,44:215,45:Ge,55:220,82:k,87:d,89:We,172:221,185:351,187:350,200:348,230:347,231:jt,234:349,236:216,237:222,255:154,257:155,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,309:Ar,310:Nr,311:217,312:lr},{13:f,16:h,44:39,55:40,87:d,139:342,186:352,190:340,195:341,197:ys,307:43,308:p},n(hi,[2,146]),n(hi,[2,147]),n(hi,[2,148]),n(hi,[2,149]),{13:f,16:h,44:354,55:355,82:k,87:d,172:357,237:356,255:154,257:155,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,309:Ar,310:Nr,311:358,312:lr,313:353},n(Zh,[2,215]),n(Zh,[2,216]),n(U,H,{58:205,62:206,23:359,63:ve}),n(Ee,[2,264]),n(d1,[2,266]),n(ma,[2,11]),n(r,[2,308],{6:[2,310]}),n($t,[2,313],{102:360,120:361,121:[1,362]}),n($t,[2,47]),n($t,[2,63]),n($t,[2,64]),{13:f,16:h,55:363,307:43,308:p},n($t,[2,336]),n($t,[2,337]),n($t,[2,338]),{109:[1,364]},n(C1,[2,60]),{13:f,16:h,55:365,307:43,308:p},n(ie,[2,335]),{13:f,16:h,55:366,307:43,308:p},{31:[1,367]},n(vs,[2,341],{137:368}),n(vs,[2,340]),{13:f,16:h,44:215,45:Ge,55:220,82:k,87:d,89:We,145:369,172:221,185:213,187:214,231:jt,236:216,237:222,255:154,257:155,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,309:Ar,310:Nr,311:217,312:lr},{28:[1,370],127:371,128:[1,372]},n(Li,[2,330],{124:373,125:374,126:st}),n(Li,[2,57]),{44:375,87:d},n(S1,[2,151],{241:376,242:[1,377]}),n(vu,[2,153],{245:378,246:[1,379]}),{13:f,16:h,44:136,45:Q,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,247:380,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},{250:[1,381]},n(wt,[2,432]),n(wt,[2,433]),n(wt,[2,434]),n(wt,[2,435]),n(wt,[2,436]),n(wt,[2,437]),{250:[2,439]},n([47,48,193,242,246,250,272,290,341,342,343,344,345,346],[2,158],{253:382,254:383,255:384,257:385,263:[1,386],265:[1,387],297:ee,298:te,299:re,300:ne,301:oe,302:ce}),n(pa,[2,162],{261:388,262:389,39:ed,338:td}),n(Dt,[2,164]),n(Dt,[2,165]),n(Dt,[2,166]),n(_t,[2,95]),n(_t,[2,96]),n(wt,[2,377],{177:392,325:[1,393]}),{48:[1,394]},n(_t,[2,177]),{13:f,16:h,44:136,45:Q,46:395,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},{13:f,16:h,44:136,45:Q,46:396,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},{13:f,16:h,44:136,45:Q,46:397,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},{13:f,16:h,44:136,45:Q,46:398,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},{13:f,16:h,44:136,45:Q,46:399,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},n(_t,[2,183]),n(_t,[2,98]),n(wt,[2,381],{180:400}),{87:[1,401]},n(_t,[2,185]),{13:f,16:h,44:136,45:Q,46:402,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},{29:$,57:403},n(fr,[2,193]),{13:f,16:h,55:404,307:43,308:p},{13:f,16:h,44:39,55:40,87:d,139:342,195:405,197:ys,307:43,308:p},n(ki,[2,233]),n(ki,[2,234]),n(ki,[2,235]),n(x1,[2,459],{281:406,325:[1,407]}),n(wt,[2,463],{284:408,325:[1,409]}),n(wt,[2,465],{286:410,325:[1,411]}),{13:f,16:h,31:[1,412],55:414,82:k,171:413,172:415,173:416,174:Eu,255:154,257:155,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:Tu},{31:[1,419],89:[1,420]},{29:[1,421]},n(bu,[2,302]),n(_u,[2,367],{167:422}),n(wu,[2,369],{168:423}),{48:[1,424],87:[1,425]},n(bu,[2,371]),n(gs,[2,122]),n(gs,[2,417]),n(gs,[2,413]),n(gs,[2,414]),n(gs,[2,415]),n(Un,[2,125]),n(Un,[2,127]),n(Un,[2,128]),n(O1,[2,420],{227:426}),n(Un,[2,130]),{13:f,16:h,55:194,197:nt,223:427,307:43,308:p},{48:[1,428]},n(Mi,[2,289],{61:429,80:430,81:[1,431],83:[1,432]}),n(Jh,[2,288]),{64:[1,433]},n(ct,[2,29],{307:43,267:139,275:146,278:149,77:320,67:321,68:322,55:323,79:434,13:f,16:h,45:Q,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,276:De,277:he,279:Ae,280:ge,283:Ce,285:Re,308:p,346:Fe,347:we,348:b,349:E,350:_,351:x}),n(I1,[2,293]),n(rd,[2,92]),n(rd,[2,93]),n(rd,[2,94]),{45:_1,89:w1,176:269},{31:[1,435]},{31:[1,436]},{19:437,28:I,29:L,56:85},{19:438,28:I,29:L,56:85},n(Ss,[2,355],{149:439}),n(Ss,[2,354]),{13:f,16:h,44:215,45:Au,55:220,82:k,87:d,89:We,156:440,172:221,185:441,203:442,231:Cu,236:216,237:222,255:154,257:155,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,309:Ar,310:Nr,311:217,312:lr},n(Ee,[2,19]),n(Mi,[2,21]),{13:f,16:h,44:450,45:P1,55:323,65:445,66:446,67:447,68:448,87:d,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,307:43,308:p,346:Fe,347:we,348:b,349:E,350:_,351:x},n(ma,[2,8]),{31:[1,451]},{31:[2,258]},{31:[2,101]},n(G,[2,386],{31:[2,388]}),n(Bo,[2,102]),n(_s,[2,391],{191:452}),n(G,[2,395],{196:453,198:454}),n(G,[2,108]),n(G,[2,109]),n(Bo,[2,103]),n(Bo,[2,104]),n(Bo,[2,390]),{13:f,16:h,44:215,45:Ge,48:[1,455],55:220,82:k,87:d,89:We,172:221,185:351,187:350,200:456,231:jt,234:349,236:216,237:222,255:154,257:155,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,309:Ar,310:Nr,311:217,312:lr},n(xu,[2,424]),n(D1,[2,136]),n(D1,[2,137]),n(nd,[2,140]),{232:[1,457]},{13:f,16:h,44:39,55:40,87:d,139:342,195:458,197:ys,307:43,308:p},n(ki,[2,219]),n(ki,[2,220]),n(ki,[2,221]),n(ki,[2,222]),n(ki,[2,223]),n(ma,[2,10]),n($t,[2,46]),n($t,[2,314]),{112:p1,122:459},n($t,[2,62]),n(ie,m1,{133:242,108:460,112:g1,132:y1}),n(C1,[2,61]),n($t,[2,49]),n([6,28,126,128,193],[2,65]),{31:[2,66],112:[1,462],138:461},n(vs,[2,351],{146:463,335:[1,464]}),{29:$,57:465},n(Li,[2,329]),n(ie,[2,332],{129:466,327:[1,467]}),n(Li,[2,55]),n(Li,[2,331]),{48:[1,468]},n(vu,[2,429]),{13:f,16:h,44:136,45:Q,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,239:469,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},n(da,[2,431]),{13:f,16:h,44:136,45:Q,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,243:470,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},n(da,[2,156]),{45:b1,89:E1,179:471},n(pa,[2,441]),{13:f,16:h,44:136,45:Q,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,251:472,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},n(Dt,[2,444],{256:473}),n(Dt,[2,446],{258:474}),n(wt,[2,442]),n(wt,[2,443]),n(Dt,[2,449]),{13:f,16:h,44:136,45:Q,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,255:154,257:155,259:475,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},n(wt,[2,450]),n(wt,[2,451]),n(wt,[2,379],{178:476}),n(wt,[2,378]),n([6,13,16,29,31,39,45,47,48,73,76,78,81,82,83,85,87,89,112,159,160,161,163,164,193,231,242,246,250,263,265,268,269,270,271,272,273,274,276,277,279,280,283,285,290,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,335,338,341,342,343,344,345,346,347,348,349,350,351],[2,175]),{48:[1,477]},{48:[1,478]},{272:[1,479]},{272:[1,480]},{272:[1,481]},{13:f,16:h,44:136,45:Q,46:482,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},{48:[1,483]},{48:[1,484]},n(_t,[2,187]),n(fr,[2,194]),{13:f,16:h,44:39,55:40,82:k,87:d,139:289,172:291,255:154,257:155,266:290,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,320:485},{13:f,16:h,39:[1,487],44:136,45:Q,46:488,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,282:486,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},n(x1,[2,460]),{13:f,16:h,44:136,45:Q,46:489,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},n(wt,[2,464]),{13:f,16:h,44:136,45:Q,46:490,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},n(wt,[2,466]),n(W,[2,40]),n(_u,[2,298]),n(qo,[2,87]),n(qo,[2,88]),n(qo,[2,89]),n(qo,[2,90]),{13:f,16:h,55:492,82:k,172:493,255:154,257:155,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,311:494,312:lr,315:491},n(W,[2,41]),n(wu,[2,300]),n(Go,[2,303],{92:495}),{13:f,16:h,31:[1,496],55:414,82:k,171:497,172:415,173:416,174:Eu,255:154,257:155,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:Tu},{31:[1,498],89:[1,499]},{29:[1,500]},n(bu,[2,372]),{13:f,16:h,48:[2,422],55:194,197:nt,223:312,226:502,228:501,229:T1,307:43,308:p},n(Un,[2,131]),n(Un,[2,126]),n(Mi,[2,22]),n(Mi,[2,290]),{82:[1,503]},{82:[1,504]},{13:f,16:h,44:510,45:Q,55:323,67:321,68:322,74:505,75:506,76:R1,77:320,78:F1,79:509,87:d,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,307:43,308:p,346:Fe,347:we,348:b,349:E,350:_,351:x},n(I1,[2,294]),n(N1,[2,69]),n(N1,[2,70]),n(ct,be,{59:197,69:198,20:511,70:j}),n(U,H,{58:205,62:206,23:512,63:ve}),{29:[2,375],31:[2,71],84:522,85:a,112:[1,518],150:513,151:514,158:515,159:[1,516],160:[1,517],161:[1,519],163:[1,520],164:[1,521],175:523},n(Ss,[2,363],{157:524,335:[1,525]}),n(c,i,{215:10,202:526,205:527,208:528,214:529,44:530,87:d}),n(Ou,[2,399],{215:10,205:527,208:528,214:529,44:530,204:531,202:532,13:i,16:i,45:i,197:i,224:i,229:i,308:i,87:d}),{13:f,16:h,44:215,45:Au,55:220,82:k,87:d,89:We,172:221,185:351,203:536,212:534,231:Cu,233:533,234:535,236:216,237:222,255:154,257:155,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,309:Ar,310:Nr,311:217,312:lr},n(c,i,{215:10,205:527,208:528,214:529,44:530,202:537,87:d}),n(U,[2,23],{307:43,267:139,275:146,278:149,55:323,67:447,68:448,44:450,66:538,13:f,16:h,45:P1,87:d,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,276:De,277:he,279:Ae,280:ge,283:Ce,285:Re,308:p,346:Fe,347:we,348:b,349:E,350:_,351:x}),n(ws,[2,291]),n(ws,[2,24]),n(ws,[2,25]),{13:f,16:h,44:136,45:Q,46:539,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},n(ws,[2,28]),n(U,H,{58:205,62:206,23:540,63:ve}),n([31,112,232,318,335],[2,105],{192:541,193:[1,542]}),n(_s,[2,107]),{13:f,16:h,44:215,45:Ge,55:220,82:k,87:d,89:We,172:221,185:351,187:350,199:543,200:544,231:jt,234:349,236:216,237:222,255:154,257:155,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,309:Ar,310:Nr,311:217,312:lr},n(L1,[2,132]),n(xu,[2,425]),n(L1,[2,133]),{13:f,16:h,44:354,55:355,82:k,87:d,172:357,237:356,255:154,257:155,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,309:Ar,310:Nr,311:358,312:lr,313:545},n($t,[2,54]),n($t,[2,48]),n(vs,[2,342]),{13:f,16:h,44:39,55:40,87:d,139:546,307:43,308:p},n(vs,[2,68]),n(G,[2,350],{31:k1,112:k1}),n($t,[2,53]),{13:f,16:h,55:547,307:43,308:p},n(ie,[2,333]),n(ke,[2,16]),n(vu,[2,152]),n(da,[2,154]),n(da,[2,157]),n(pa,[2,159]),n(pa,[2,160],{262:389,261:548,39:ed,338:td}),n(pa,[2,161],{262:389,261:549,39:ed,338:td}),n(Dt,[2,163]),{13:f,16:h,44:136,45:Q,46:550,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},n(_t,[2,178]),n(_t,[2,179]),{13:f,16:h,44:136,45:Q,46:551,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},{13:f,16:h,44:136,45:Q,46:552,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},{13:f,16:h,44:136,45:Q,46:553,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},{48:[1,554],272:[1,555]},n(_t,[2,184]),n(_t,[2,186]),{314:[1,556]},{48:[1,557]},{48:[2,461]},{48:[2,462]},{48:[1,558]},{48:[2,467],193:[1,561],287:559,288:560},{13:f,16:h,55:194,197:nt,223:562,307:43,308:p},n(id,[2,224]),n(id,[2,225]),n(id,[2,226]),{31:[1,563],45:M1,94:564},n(W,[2,84]),n(_u,[2,368]),n(W,[2,85]),n(wu,[2,370]),n(Go,[2,373],{170:566}),{48:[1,567]},{48:[2,423],337:[1,568]},n(Mi,[2,35],{83:[1,569]}),n(Mi,[2,36],{81:[1,570]}),n(Jh,[2,30],{307:43,267:139,275:146,278:149,77:320,67:321,68:322,55:323,79:509,44:510,75:571,13:f,16:h,45:Q,76:R1,78:F1,87:d,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,276:De,277:he,279:Ae,280:ge,283:Ce,285:Re,308:p,346:Fe,347:we,348:b,349:E,350:_,351:x}),n(ga,[2,295]),{45:Q,77:572},{45:Q,77:573},n(ga,[2,33]),n(ga,[2,34]),{31:[2,275],50:574,84:575,85:a},{31:[2,277],51:576,84:577,85:a},n(Ss,[2,356]),n(j1,[2,357],{152:578,335:[1,579]}),n(di,[2,74]),{29:$,57:580},{29:$,57:581},{13:f,16:h,44:39,55:40,87:d,139:582,307:43,308:p},n($1,[2,365],{162:583,328:[1,584]}),{13:f,16:h,45:Q,55:323,67:321,68:322,77:320,79:585,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,307:43,308:p,346:Fe,347:we,348:b,349:E,350:_,351:x},{45:[1,586]},n(di,[2,81]),{29:$,57:587},n(Ss,[2,73]),n(G,[2,362],{29:pi,31:pi,85:pi,112:pi,159:pi,160:pi,161:pi,163:pi,164:pi}),n(Ou,[2,112]),n(ya,[2,401],{206:588}),n(G,[2,405],{209:589,210:590}),n(G,[2,403]),n(G,[2,404]),n(Ou,[2,113]),n(Ou,[2,400]),{13:f,16:h,44:215,45:Au,48:[1,591],55:220,82:k,87:d,89:We,172:221,185:351,203:536,212:592,231:Cu,234:535,236:216,237:222,255:154,257:155,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,309:Ar,310:Nr,311:217,312:lr},n(xu,[2,426]),n(nd,[2,138]),n(nd,[2,139]),{232:[1,593]},n(ws,[2,292]),{47:[1,595],48:[1,594]},n(ma,[2,9]),n(_s,[2,392]),n(_s,[2,393],{44:39,55:40,307:43,195:341,139:342,194:596,190:597,13:f,16:h,87:d,197:ys,308:p}),n(_s,[2,110],{272:[1,598]}),n(Iu,[2,397],{201:599,316:600,317:[1,601]}),{314:[1,602]},{29:[1,603]},n(Li,[2,58]),n(Dt,[2,445]),n(Dt,[2,447]),{48:[1,604],272:[1,605]},{48:[1,606]},{272:[1,607]},{272:[1,608]},n(_t,[2,99]),n(wt,[2,382]),n([13,16,39,47,48,87,193,197,242,246,250,263,265,272,290,297,298,299,300,301,302,308,314,338,341,342,343,344,345,346],[2,232]),n(_t,[2,188]),n(_t,[2,189]),{48:[1,609]},{48:[2,468]},{289:[1,610]},{13:f,16:h,55:492,82:k,172:493,255:154,257:155,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,311:494,312:lr,315:611},n(W,[2,42]),n(Go,[2,304]),{13:f,16:h,55:414,82:k,95:612,171:613,172:415,173:416,174:Eu,255:154,257:155,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:Tu},{31:[1,614],45:M1,94:615},n(Un,[2,129]),n(O1,[2,421]),{82:[1,616]},{82:[1,617]},n(ga,[2,296]),n(ga,[2,31]),n(ga,[2,32]),{31:[2,17]},{31:[2,276]},{31:[2,18]},{31:[2,278]},n(G,A1,{155:330,153:618,154:619,29:mi,31:mi,85:mi,112:mi,159:mi,160:mi,161:mi,163:mi,164:mi}),n(j1,[2,358]),n(di,[2,75]),n(di,[2,76]),{29:$,57:620},{13:f,16:h,44:39,55:40,87:d,139:621,307:43,308:p},n($1,[2,366]),n(di,[2,79]),{13:f,16:h,44:136,45:Q,46:622,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},n(di,[2,91],{336:[1,623]}),n([29,31,85,112,159,160,161,163,164,232,318,335],[2,114],{207:624,193:[1,625]}),n(ya,[2,117]),{13:f,16:h,44:215,45:Au,55:220,82:k,87:d,89:We,172:221,185:351,203:536,211:626,212:627,231:Cu,234:535,236:216,237:222,255:154,257:155,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,309:Ar,310:Nr,311:217,312:lr},n(hi,[2,134]),n(xu,[2,427]),n(hi,[2,135]),n(ws,[2,26]),{44:628,87:d},n(_s,[2,106]),n(_s,[2,394]),n(G,[2,396]),n(Iu,[2,111]),n(Iu,[2,398]),{13:f,16:h,44:39,55:40,87:d,139:342,186:629,190:340,195:341,197:ys,307:43,308:p},n(Zh,[2,217]),n(G,yu,{144:248,140:630,143:631,31:[2,343]}),n(_t,[2,97]),n(wt,[2,380]),n(_t,[2,180]),{13:f,16:h,44:136,45:Q,46:632,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},{13:f,16:h,44:136,45:Q,46:633,55:133,67:132,68:134,77:131,82:k,87:d,172:135,224:qe,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:Ke,264:130,265:V,266:137,267:139,268:me,269:Oe,270:z,271:Ie,273:Pe,274:Te,275:146,276:De,277:he,278:149,279:Ae,280:ge,283:Ce,285:Re,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:$e,346:Fe,347:we,348:b,349:E,350:_,351:x},n(_t,[2,190]),{290:[1,634]},{314:[1,635]},{13:f,16:h,48:[1,636],55:414,82:k,171:637,172:415,173:416,174:Eu,255:154,257:155,291:150,294:Z,295:se,296:ae,297:ee,298:te,299:re,300:ne,301:oe,302:ce,303:ue,304:le,305:X,306:fe,307:43,308:p,312:Tu},n(V1,[2,305]),n(W,[2,86]),n(Go,[2,374]),n(Mi,[2,37]),n(Mi,[2,38]),n(Ss,[2,72]),n(Ss,[2,360]),n(di,[2,77]),{29:$,57:638},{47:[1,639]},{29:[2,376]},n(ya,[2,402]),n(ya,[2,115],{215:10,208:528,214:529,44:530,205:640,13:i,16:i,45:i,197:i,224:i,229:i,308:i,87:d}),n(ya,[2,118],{272:[1,641]}),n(Pu,[2,407],{213:642,319:643,317:[1,644]}),{48:[1,645]},{318:[1,646]},{31:[1,647]},{31:[2,344]},{48:[1,648]},{48:[1,649]},{291:650,303:ue,304:le,305:X,306:fe},n(qo,[2,218]),n(Go,[2,44]),n(V1,[2,306]),n(di,[2,78]),{44:651,87:d},n(ya,[2,116]),n(G,[2,406]),n(Pu,[2,119]),n(Pu,[2,408]),n(c,i,{215:10,205:527,208:528,214:529,44:530,202:652,87:d}),n(ws,[2,27]),n(Iu,[2,230]),n(U1,[2,345],{141:653,335:[1,654]}),n(_t,[2,181]),n(_t,[2,182]),{48:[2,191]},{48:[1,655]},{318:[1,656]},n(G,yu,{144:248,142:657,143:658,31:B1,112:B1}),n(U1,[2,346]),n(di,[2,80]),n(Pu,[2,231]),n(vs,[2,67]),n(vs,[2,348])],defaultActions:{5:[2,240],6:[2,241],7:[2,242],9:[2,239],24:[2,1],25:[2,2],26:[2,244],87:[2,282],94:[2,384],100:[2,45],109:[2,325],166:[2,458],263:[2,439],336:[2,258],337:[2,101],487:[2,461],488:[2,462],560:[2,468],574:[2,17],575:[2,276],576:[2,18],577:[2,278],623:[2,376],631:[2,344],650:[2,191]},parseError:o(function(A,P){if(P.recoverable)this.trace(A);else{var F=new Error(A);throw F.hash=P,F}},"parseError"),parse:o(function(A){var P=this,F=[0],Y=[],_e=[null],m=[],dr=this.table,g="",Gn=0,Qo=0,Nu=0,Lu=2,Yo=1,ku=m.slice.call(arguments,1),pt=Object.create(this.lexer),Wn={yy:{}};for(var Ko in this.yy)Object.prototype.hasOwnProperty.call(this.yy,Ko)&&(Wn.yy[Ko]=this.yy[Ko]);pt.setInput(A,Wn.yy),Wn.yy.lexer=pt,Wn.yy.parser=this,typeof pt.yylloc>"u"&&(pt.yylloc={});var ba=pt.yylloc;m.push(ba);var it=pt.options&&pt.options.ranges;typeof Wn.yy.parseError=="function"?this.parseError=Wn.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function ht(Hn){F.length=F.length-2*Hn,_e.length=_e.length-Hn,m.length=m.length-Hn}o(ht,"popStack");for(var He=o(function(){var Hn;return Hn=pt.lex()||Yo,typeof Hn!="number"&&(Hn=P.symbols_[Hn]||Hn),Hn},"lex"),Ze,Cr,As,Br,OM,yd,Ea={},Mu,vi,e2,ju;;){if(As=F[F.length-1],this.defaultActions[As]?Br=this.defaultActions[As]:((Ze===null||typeof Ze>"u")&&(Ze=He()),Br=dr[As]&&dr[As][Ze]),typeof Br>"u"||!Br.length||!Br[0]){var vd="";ju=[];for(Mu in dr[As])this.terminals_[Mu]&&Mu>Lu&&ju.push("'"+this.terminals_[Mu]+"'");pt.showPosition?vd="Parse error on line "+(Gn+1)+`:
245
245
  `+pt.showPosition()+`
246
- Expecting `+ju.join(", ")+", got '"+(this.terminals_[Ze]||Ze)+"'":vd="Parse error on line "+(Gn+1)+": Unexpected "+(Ze==Yo?"end of input":"'"+(this.terminals_[Ze]||Ze)+"'"),this.parseError(vd,{text:pt.match,token:this.terminals_[Ze]||Ze,line:pt.yylineno,loc:ba,expected:ju})}if(qr[0]instanceof Array&&qr.length>1)throw new Error("Parse Error: multiple actions possible at state: "+As+", token: "+Ze);switch(qr[0]){case 1:F.push(Ze),_e.push(pt.yytext),m.push(pt.yylloc),F.push(qr[1]),Ze=null,Cr?(Ze=Cr,Cr=null):(Qo=pt.yyleng,g=pt.yytext,Gn=pt.yylineno,ba=pt.yylloc,Nu>0&&Nu--);break;case 2:if(vi=this.productions_[qr[1]][1],Ea.$=_e[_e.length-vi],Ea._$={first_line:m[m.length-(vi||1)].first_line,last_line:m[m.length-1].last_line,first_column:m[m.length-(vi||1)].first_column,last_column:m[m.length-1].last_column},it&&(Ea._$.range=[m[m.length-(vi||1)].range[0],m[m.length-1].range[1]]),yd=this.performAction.apply(Ea,[g,Qo,Gn,Wn.yy,qr[1],_e,m].concat(ku)),typeof yd<"u")return yd;vi&&(F=F.slice(0,-1*vi*2),_e=_e.slice(0,-1*vi),m=m.slice(0,-1*vi)),F.push(this.productions_[qr[1]][0]),_e.push(Ea.$),m.push(Ea._$),e2=dr[F[F.length-2]][F[F.length-1]],F.push(e2);break;case 3:return!0}}return!0},"parse")},Du=Lg().Wildcard,Ru="http://www.w3.org/1999/02/22-rdf-syntax-ns#",qT=Ru+"type",GT=Ru+"first",WT=Ru+"rest",q1=Ru+"nil",Fu="http://www.w3.org/2001/XMLSchema#",G1=Fu+"integer",W1=Fu+"decimal",H1=Fu+"double",HT=Fu+"boolean",bs="",z1="",Q1="";function hr(C){return C.toLowerCase()}o(hr,"lowercase");function gi(C,A){return C.push(A),C}o(gi,"appendTo");function Es(C,A){return C.push.apply(C,A),C}o(Es,"appendAllTo");function gt(C){C||(C={});for(var A=1,P=arguments.length,F;A<P&&(F=arguments[A]||{});A++)for(var Y in F)C[Y]=F[Y];return C}o(gt,"extend");function Bn(){for(var C=[],A=0,P=arguments.length;A<P;A++)C=C.concat.apply(C,arguments[A]);return C}o(Bn,"unionAll");function Wo(C){if(C[0]==="<"&&(C=C.substring(1,C.length-1)),/^[a-z][a-z0-9.+-]*:/i.test(C))return C;if(!xe.base)throw new Error("Cannot resolve relative IRI "+C+" because no base IRI was set.");switch(bs!==xe.base&&(bs=xe.base,z1=bs.replace(/[^\/:]*$/,""),Q1=bs.match(/^(?:[a-z]+:\/*)?[^\/]*/)[0]),C[0]){case void 0:return bs;case"#":return bs+C;case"?":return bs.replace(/(?:\?.*)?$/,C);case"/":return Q1+C;default:return z1+C}}o(Wo,"resolveIRI");function ad(C){if(C){var A=C[0];if(A==="?"||A==="$")return xe.factory.variable(C.substr(1))}return C}o(ad,"toVar");function Vt(C,A){return{type:"operation",operator:C,args:A||[]}}o(Vt,"operation");function va(C,A){var P={expression:C==="*"?new Du:C};if(A)for(var F in A)P[F]=A[F];return P}o(va,"expression");function Sa(C,A){return{type:"path",pathType:C,items:A}}o(Sa,"path");function od(C,A){for(var P=0,F=A.length,Y;P<F&&(Y=A[P]);P++)C=Vt(Y[0],[C,Y[1]]);return C}o(od,"createOperationTree");function Ts(C,A){var P=[],F=[],Y=C.length,_e,m={};if(!Y)return null;for(var dr=0;dr<Y&&(_e=C[dr]);dr++)(_e.named?F:P).push(_e.iri);return m[A||"from"]={default:P,named:F},m}o(Ts,"groupDatasets");function _a(C){return parseInt(C,10)}o(_a,"toInt");function cd(C){return C.type==="group"&&C.patterns.length===1?C.patterns[0]:C}o(cd,"degroupSingle");function qn(C,A){return A&&A.termType!=="NamedNode"&&(A=xe.factory.namedNode(A)),xe.factory.literal(C,A)}o(qn,"createTypedLiteral");function zT(C,A){return xe.factory.literal(C,A)}o(zT,"createLangLiteral");function ud(C,A,P){if(!("termType"in A))throw new Error("Nested triples cannot contain paths");return xe.factory.quad(C,A,P)}o(ud,"nestedTriple");function yi(C,A,P,F){var Y={};return C!=null&&(Y.subject=C),A!=null&&(Y.predicate=A),P!=null&&(Y.object=P),F!=null&&(Y.annotations=F),Y}o(yi,"triple");function Ho(C){return typeof C=="string"?C.startsWith("e_")?xe.factory.blankNode(C):xe.factory.blankNode("e_"+C):xe.factory.blankNode("g_"+Y1++)}o(Ho,"blank");var Y1=0;xe._resetBlanks=function(){Y1=0};var QT=/\\u([a-fA-F0-9]{4})|\\U([a-fA-F0-9]{8})|\\(.)/g,YT={"\\":"\\","'":"'",'"':'"',t:" ",b:"\b",n:`
246
+ Expecting `+ju.join(", ")+", got '"+(this.terminals_[Ze]||Ze)+"'":vd="Parse error on line "+(Gn+1)+": Unexpected "+(Ze==Yo?"end of input":"'"+(this.terminals_[Ze]||Ze)+"'"),this.parseError(vd,{text:pt.match,token:this.terminals_[Ze]||Ze,line:pt.yylineno,loc:ba,expected:ju})}if(Br[0]instanceof Array&&Br.length>1)throw new Error("Parse Error: multiple actions possible at state: "+As+", token: "+Ze);switch(Br[0]){case 1:F.push(Ze),_e.push(pt.yytext),m.push(pt.yylloc),F.push(Br[1]),Ze=null,Cr?(Ze=Cr,Cr=null):(Qo=pt.yyleng,g=pt.yytext,Gn=pt.yylineno,ba=pt.yylloc,Nu>0&&Nu--);break;case 2:if(vi=this.productions_[Br[1]][1],Ea.$=_e[_e.length-vi],Ea._$={first_line:m[m.length-(vi||1)].first_line,last_line:m[m.length-1].last_line,first_column:m[m.length-(vi||1)].first_column,last_column:m[m.length-1].last_column},it&&(Ea._$.range=[m[m.length-(vi||1)].range[0],m[m.length-1].range[1]]),yd=this.performAction.apply(Ea,[g,Qo,Gn,Wn.yy,Br[1],_e,m].concat(ku)),typeof yd<"u")return yd;vi&&(F=F.slice(0,-1*vi*2),_e=_e.slice(0,-1*vi),m=m.slice(0,-1*vi)),F.push(this.productions_[Br[1]][0]),_e.push(Ea.$),m.push(Ea._$),e2=dr[F[F.length-2]][F[F.length-1]],F.push(e2);break;case 3:return!0}}return!0},"parse")},Du=Lg().Wildcard,Ru="http://www.w3.org/1999/02/22-rdf-syntax-ns#",qT=Ru+"type",GT=Ru+"first",WT=Ru+"rest",q1=Ru+"nil",Fu="http://www.w3.org/2001/XMLSchema#",G1=Fu+"integer",W1=Fu+"decimal",H1=Fu+"double",HT=Fu+"boolean",bs="",z1="",Q1="";function hr(C){return C.toLowerCase()}o(hr,"lowercase");function gi(C,A){return C.push(A),C}o(gi,"appendTo");function Es(C,A){return C.push.apply(C,A),C}o(Es,"appendAllTo");function gt(C){C||(C={});for(var A=1,P=arguments.length,F;A<P&&(F=arguments[A]||{});A++)for(var Y in F)C[Y]=F[Y];return C}o(gt,"extend");function Bn(){for(var C=[],A=0,P=arguments.length;A<P;A++)C=C.concat.apply(C,arguments[A]);return C}o(Bn,"unionAll");function Wo(C){if(C[0]==="<"&&(C=C.substring(1,C.length-1)),/^[a-z][a-z0-9.+-]*:/i.test(C))return C;if(!xe.base)throw new Error("Cannot resolve relative IRI "+C+" because no base IRI was set.");switch(bs!==xe.base&&(bs=xe.base,z1=bs.replace(/[^\/:]*$/,""),Q1=bs.match(/^(?:[a-z]+:\/*)?[^\/]*/)[0]),C[0]){case void 0:return bs;case"#":return bs+C;case"?":return bs.replace(/(?:\?.*)?$/,C);case"/":return Q1+C;default:return z1+C}}o(Wo,"resolveIRI");function ad(C){if(C){var A=C[0];if(A==="?"||A==="$")return xe.factory.variable(C.substr(1))}return C}o(ad,"toVar");function Vt(C,A){return{type:"operation",operator:C,args:A||[]}}o(Vt,"operation");function va(C,A){var P={expression:C==="*"?new Du:C};if(A)for(var F in A)P[F]=A[F];return P}o(va,"expression");function Sa(C,A){return{type:"path",pathType:C,items:A}}o(Sa,"path");function od(C,A){for(var P=0,F=A.length,Y;P<F&&(Y=A[P]);P++)C=Vt(Y[0],[C,Y[1]]);return C}o(od,"createOperationTree");function Ts(C,A){var P=[],F=[],Y=C.length,_e,m={};if(!Y)return null;for(var dr=0;dr<Y&&(_e=C[dr]);dr++)(_e.named?F:P).push(_e.iri);return m[A||"from"]={default:P,named:F},m}o(Ts,"groupDatasets");function _a(C){return parseInt(C,10)}o(_a,"toInt");function cd(C){return C.type==="group"&&C.patterns.length===1?C.patterns[0]:C}o(cd,"degroupSingle");function qn(C,A){return A&&A.termType!=="NamedNode"&&(A=xe.factory.namedNode(A)),xe.factory.literal(C,A)}o(qn,"createTypedLiteral");function zT(C,A){return xe.factory.literal(C,A)}o(zT,"createLangLiteral");function ud(C,A,P){if(!("termType"in A))throw new Error("Nested triples cannot contain paths");return xe.factory.quad(C,A,P)}o(ud,"nestedTriple");function yi(C,A,P,F){var Y={};return C!=null&&(Y.subject=C),A!=null&&(Y.predicate=A),P!=null&&(Y.object=P),F!=null&&(Y.annotations=F),Y}o(yi,"triple");function Ho(C){return typeof C=="string"?C.startsWith("e_")?xe.factory.blankNode(C):xe.factory.blankNode("e_"+C):xe.factory.blankNode("g_"+Y1++)}o(Ho,"blank");var Y1=0;xe._resetBlanks=function(){Y1=0};var QT=/\\u([a-fA-F0-9]{4})|\\U([a-fA-F0-9]{8})|\\(.)/g,YT={"\\":"\\","'":"'",'"':'"',t:" ",b:"\b",n:`
247
247
  `,r:"\r",f:"\f"},KT=/[\uD800-\uDBFF]([^\uDC00-\uDFFF]|$)/,ld=String.fromCharCode;function K1(C,A){C=C.substring(A,C.length-A);try{C=C.replace(QT,function(P,F,Y,_e){var m;if(F){if(m=parseInt(F,16),isNaN(m))throw new Error;return ld(m)}else if(Y){if(m=parseInt(Y,16),isNaN(m))throw new Error;return m<65535?ld(m):ld(55296+((m-=65536)>>10),56320+(m&1023))}else{var dr=YT[_e];if(!dr)throw new Error;return dr}})}catch{return""}if(KT.exec(C))throw new Error("Invalid unicode codepoint of surrogate pair without corresponding codepoint in "+C);return C}o(K1,"unescapeString");function XT(C){var A=Ho(),P=A,F=[],Y,_e=[];C.forEach(function(Gn){F.push(Gn.entity),Es(_e,Gn.triples)});for(var m=0,dr=0,g=F.length,Y=Array(g*2);m<g;)Y[dr++]=yi(P,xe.factory.namedNode(GT),F[m]),Y[dr++]=yi(P,xe.factory.namedNode(WT),P=++m<g?Ho():xe.factory.namedNode(q1));return{entity:A,triples:Es(Y,_e)}}o(XT,"createList");function JT(C){var A=Ho();return{entity:A,triples:C.map(function(P){return gt(yi(A),P)})}}o(JT,"createAnonymousObject");function fd(C,A,P){var F=[],Y=[];return A.forEach(function(_e){let m=null;_e.annotation&&(m=_e.annotation,_e=_e.object),F.push(yi(null,C,_e.entity,m)),Es(Y,_e.triples)}),Bn(F,P||[],Y)}o(fd,"objectListToTriples");function CM(C){for(var A=[],P,F=0,Y;Y=C[F];F++)switch(Y.type){case"bgp":Y.triples.length&&(P?Es(P.triples,Y.triples):gi(A,P=Y));break;default:(!Y.patterns||Y.patterns.length>0)&&(gi(A,Y),P=null)}return A}o(CM,"mergeAdjacentBGPs");function wa(C){return C.variable?C.variable.value:C.value||C.expression.value}o(wa,"getExpressionId");function hd(C){if(!C)return[];if(C.type==="aggregate")return[C];if(C.type==="operation"){let A=[];for(let P of C.args)A.push(...hd(P));return A}return[]}o(hd,"getAggregatesOfExpression");function ZT(C){let A=new Set,P=o(function(F){F&&(F.termType==="Variable"?A.add(F):F.type==="operation"&&F.args.forEach(P))},"visitExpression");return P(C),A}o(ZT,"getVariablesFromExpression");function dd(C,A=1,P=[]){for(let F of C)A>0&&F instanceof Array?dd(F,A-1,P):P.push(F);return P}o(dd,"flatten");function pd(C){return C.termType==="Variable"}o(pd,"isVariable");function X1(C){if(C.triples){let A=[];for(let P of C.triples)pd(P.subject)&&A.push(P.subject.value),pd(P.predicate)&&A.push(P.predicate.value),pd(P.object)&&A.push(P.object.value);return A}else if(C.patterns){let A=[];for(let P of C.patterns)A.push(...X1(P));return A}return[]}o(X1,"getBoundVarsFromGroupGraphPattern");function eA(C){let A=C.slice().sort(),P=[];for(let F=0;F<A.length-1;F++)A[F+1]==A[F]&&P.push(A[F]);return P}o(eA,"getDuplicatesInArray");function zo(C){if(!xe.sparqlStar)throw new Error("SPARQL-star support is not enabled");return C}o(zo,"ensureSparqlStar");function J1(C,A,P){for(let F of A){let Y=yi("subject"in F?F.subject:C,F.predicate,F.object);P.push(Y),F.annotations&&J1(ud(C,F.predicate,F.object),F.annotations,P)}}o(J1,"_applyAnnotations");function md(C){if(xe.sparqlStar){let A=[];return C.forEach(P=>{let F=yi(P.subject,P.predicate,P.object);A.push(F),P.annotations&&J1(ud(P.subject,P.predicate,P.object),P.annotations,A)}),A}return C}o(md,"applyAnnotations");function xM(C){if(!xe.sparqlStarNestedQuads)throw new Error("Lenient SPARQL-star support with nested quads is not enabled");return C}o(xM,"ensureSparqlStarNestedQuads");function Z1(C){for(let A of C){if(A.type==="graph"&&A.name.termType==="Variable")throw new Error("Detected illegal variable in GRAPH");if(A.type==="bgp"||A.type==="graph"){for(let P of A.triples)if(P.subject.termType==="Variable"||P.predicate.termType==="Variable"||P.object.termType==="Variable")throw new Error("Detected illegal variable in BGP")}}return C}o(Z1,"ensureNoVariables");function gd(C){for(let A of C)if(A.type==="bgp"){for(let P of A.triples)if(P.subject.termType==="BlankNode"||P.predicate.termType==="BlankNode"||P.object.termType==="BlankNode")throw new Error("Detected illegal blank node in BGP")}return C}o(gd,"ensureNoBnodes");var tA=(function(){var C={EOF:1,parseError:o(function(P,F){if(this.yy.parser)this.yy.parser.parseError(P,F);else throw new Error(P)},"parseError"),setInput:o(function(A,P){return this.yy=P||this.yy||{},this._input=A,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:o(function(){var A=this._input[0];this.yytext+=A,this.yyleng++,this.offset++,this.match+=A,this.matched+=A;var P=A.match(/(?:\r\n?|\n).*/g);return P?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),A},"input"),unput:o(function(A){var P=A.length,F=A.split(/(?:\r\n?|\n)/g);this._input=A+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-P),this.offset-=P;var Y=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),F.length-1&&(this.yylineno-=F.length-1);var _e=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:F?(F.length===Y.length?this.yylloc.first_column:0)+Y[Y.length-F.length].length-F[0].length:this.yylloc.first_column-P},this.options.ranges&&(this.yylloc.range=[_e[0],_e[0]+this.yyleng-P]),this.yyleng=this.yytext.length,this},"unput"),more:o(function(){return this._more=!0,this},"more"),reject:o(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).
248
248
  `+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},"reject"),less:o(function(A){this.unput(this.match.slice(A))},"less"),pastInput:o(function(){var A=this.matched.substr(0,this.matched.length-this.match.length);return(A.length>20?"...":"")+A.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:o(function(){var A=this.match;return A.length<20&&(A+=this._input.substr(0,20-A.length)),(A.substr(0,20)+(A.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:o(function(){var A=this.pastInput(),P=new Array(A.length+1).join("-");return A+this.upcomingInput()+`
249
249
  `+P+"^"},"showPosition"),test_match:o(function(A,P){var F,Y,_e;if(this.options.backtrack_lexer&&(_e={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(_e.yylloc.range=this.yylloc.range.slice(0))),Y=A[0].match(/(?:\r\n?|\n).*/g),Y&&(this.yylineno+=Y.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:Y?Y[Y.length-1].length-Y[Y.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+A[0].length},this.yytext+=A[0],this.match+=A[0],this.matches=A,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(A[0].length),this.matched+=A[0],F=this.performAction.call(this,this.yy,this,P,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),F)return F;if(this._backtrack){for(var m in _e)this[m]=_e[m];return!1}return!1},"test_match"),next:o(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var A,P,F,Y;this._more||(this.yytext="",this.match="");for(var _e=this._currentRules(),m=0;m<_e.length;m++)if(F=this._input.match(this.rules[_e[m]]),F&&(!P||F[0].length>P[0].length)){if(P=F,Y=m,this.options.backtrack_lexer){if(A=this.test_match(F,_e[m]),A!==!1)return A;if(this._backtrack){P=!1;continue}else return!1}else if(!this.options.flex)break}return P?(A=this.test_match(P,_e[Y]),A!==!1?A:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text.
250
250
  `+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:o(function(){var P=this.next();return P||this.lex()},"lex"),begin:o(function(P){this.conditionStack.push(P)},"begin"),popState:o(function(){var P=this.conditionStack.length-1;return P>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:o(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:o(function(P){return P=this.conditionStack.length-1-Math.abs(P||0),P>=0?this.conditionStack[P]:"INITIAL"},"topState"),pushState:o(function(P){this.begin(P)},"pushState"),stateStackSize:o(function(){return this.conditionStack.length},"stateStackSize"),options:{flex:!0,"case-insensitive":!0},performAction:o(function(P,F,Y,_e){var m=_e;switch(Y){case 0:break;case 1:return 12;case 2:return 15;case 3:return 41;case 4:return 325;case 5:return 326;case 6:return 45;case 7:return 47;case 8:return 48;case 9:return 39;case 10:return 24;case 11:return 28;case 12:return 29;case 13:return 31;case 14:return 32;case 15:return 36;case 16:return 53;case 17:return 327;case 18:return 63;case 19:return 64;case 20:return 70;case 21:return 73;case 22:return 76;case 23:return 78;case 24:return 81;case 25:return 83;case 26:return 85;case 27:return 193;case 28:return 100;case 29:return 328;case 30:return 121;case 31:return 329;case 32:return 330;case 33:return 110;case 34:return 331;case 35:return 109;case 36:return 332;case 37:return 333;case 38:return 113;case 39:return 115;case 40:return 116;case 41:return 131;case 42:return 123;case 43:return 126;case 44:return 128;case 45:return 132;case 46:return 112;case 47:return 334;case 48:return 335;case 49:return 159;case 50:return 161;case 51:return 164;case 52:return 174;case 53:return 160;case 54:return 336;case 55:return 163;case 56:return 312;case 57:return 314;case 58:return 317;case 59:return 318;case 60:return 272;case 61:return 197;case 62:return 337;case 63:return 338;case 64:return 229;case 65:return 340;case 66:return 263;case 67:return 224;case 68:return 231;case 69:return 232;case 70:return 242;case 71:return 246;case 72:return 290;case 73:return 341;case 74:return 342;case 75:return 343;case 76:return 344;case 77:return 345;case 78:return 250;case 79:return 346;case 80:return 265;case 81:return 276;case 82:return 277;case 83:return 268;case 84:return 269;case 85:return 270;case 86:return 271;case 87:return 347;case 88:return 348;case 89:return 273;case 90:return 274;case 91:return 350;case 92:return 349;case 93:return 351;case 94:return 279;case 95:return 280;case 96:return 283;case 97:return 285;case 98:return 289;case 99:return 293;case 100:return 296;case 101:return 13;case 102:return 16;case 103:return 308;case 104:return 309;case 105:return 87;case 106:return 292;case 107:return 82;case 108:return 294;case 109:return 295;case 110:return 297;case 111:return 298;case 112:return 299;case 113:return 300;case 114:return 301;case 115:return 302;case 116:return"EXPONENT";case 117:return 303;case 118:return 304;case 119:return 305;case 120:return 306;case 121:return 89;case 122:return 310;case 123:return 6;case 124:return"INVALID";case 125:console.log(F.yytext);break}},"anonymous"),rules:[/^(?:\s+|(#[^\n\r]*))/i,/^(?:BASE)/i,/^(?:PREFIX)/i,/^(?:SELECT)/i,/^(?:DISTINCT)/i,/^(?:REDUCED)/i,/^(?:\()/i,/^(?:AS)/i,/^(?:\))/i,/^(?:\*)/i,/^(?:CONSTRUCT)/i,/^(?:WHERE)/i,/^(?:\{)/i,/^(?:\})/i,/^(?:DESCRIBE)/i,/^(?:ASK)/i,/^(?:FROM)/i,/^(?:NAMED)/i,/^(?:GROUP)/i,/^(?:BY)/i,/^(?:HAVING)/i,/^(?:ORDER)/i,/^(?:ASC)/i,/^(?:DESC)/i,/^(?:LIMIT)/i,/^(?:OFFSET)/i,/^(?:VALUES)/i,/^(?:;)/i,/^(?:LOAD)/i,/^(?:SILENT)/i,/^(?:INTO)/i,/^(?:CLEAR)/i,/^(?:DROP)/i,/^(?:CREATE)/i,/^(?:ADD)/i,/^(?:TO)/i,/^(?:MOVE)/i,/^(?:COPY)/i,/^(?:INSERT((\s+|(#[^\n\r]*)\n\r?)+)DATA)/i,/^(?:DELETE((\s+|(#[^\n\r]*)\n\r?)+)DATA)/i,/^(?:DELETE((\s+|(#[^\n\r]*)\n\r?)+)WHERE)/i,/^(?:WITH)/i,/^(?:DELETE)/i,/^(?:INSERT)/i,/^(?:USING)/i,/^(?:DEFAULT)/i,/^(?:GRAPH)/i,/^(?:ALL)/i,/^(?:\.)/i,/^(?:OPTIONAL)/i,/^(?:SERVICE)/i,/^(?:BIND)/i,/^(?:UNDEF)/i,/^(?:MINUS)/i,/^(?:UNION)/i,/^(?:FILTER)/i,/^(?:<<)/i,/^(?:>>)/i,/^(?:\{\|)/i,/^(?:\|\})/i,/^(?:,)/i,/^(?:a)/i,/^(?:\|)/i,/^(?:\/)/i,/^(?:\^)/i,/^(?:\?)/i,/^(?:\+)/i,/^(?:!)/i,/^(?:\[)/i,/^(?:\])/i,/^(?:\|\|)/i,/^(?:&&)/i,/^(?:=)/i,/^(?:!=)/i,/^(?:<)/i,/^(?:>)/i,/^(?:<=)/i,/^(?:>=)/i,/^(?:IN)/i,/^(?:NOT)/i,/^(?:-)/i,/^(?:BOUND)/i,/^(?:BNODE)/i,/^(?:(RAND|NOW|UUID|STRUUID))/i,/^(?:(LANG|DATATYPE|IRI|URI|ABS|CEIL|FLOOR|ROUND|STRLEN|STR|UCASE|LCASE|ENCODE_FOR_URI|YEAR|MONTH|DAY|HOURS|MINUTES|SECONDS|TIMEZONE|TZ|MD5|SHA1|SHA256|SHA384|SHA512|isIRI|isURI|isBLANK|isLITERAL|isNUMERIC))/i,/^(?:(SUBJECT|PREDICATE|OBJECT|isTRIPLE))/i,/^(?:(LANGMATCHES|CONTAINS|STRSTARTS|STRENDS|STRBEFORE|STRAFTER|STRLANG|STRDT|sameTerm))/i,/^(?:CONCAT)/i,/^(?:COALESCE)/i,/^(?:IF)/i,/^(?:TRIPLE)/i,/^(?:REGEX)/i,/^(?:SUBSTR)/i,/^(?:REPLACE)/i,/^(?:EXISTS)/i,/^(?:COUNT)/i,/^(?:SUM|MIN|MAX|AVG|SAMPLE)/i,/^(?:GROUP_CONCAT)/i,/^(?:SEPARATOR)/i,/^(?:\^\^)/i,/^(?:true|false)/i,/^(?:(<(?:[^<>\"\{\}\|\^`\\\u0000-\u0020])*>))/i,/^(?:((([A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])(?:(?:(((?:([A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])|_))|-|[0-9]|\u00B7|[\u0300-\u036F\u203F-\u2040])|\.)*(((?:([A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])|_))|-|[0-9]|\u00B7|[\u0300-\u036F\u203F-\u2040]))?)?:))/i,/^(?:(((([A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])(?:(?:(((?:([A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])|_))|-|[0-9]|\u00B7|[\u0300-\u036F\u203F-\u2040])|\.)*(((?:([A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])|_))|-|[0-9]|\u00B7|[\u0300-\u036F\u203F-\u2040]))?)?:)((?:((?:([A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])|_))|:|[0-9]|((%([0-9A-Fa-f])([0-9A-Fa-f]))|(\\(_|~|\.|-|!|\$|&|'|\(|\)|\*|\+|,|;|=|\/|\?|#|@|%))))(?:(?:(((?:([A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])|_))|-|[0-9]|\u00B7|[\u0300-\u036F\u203F-\u2040])|\.|:|((%([0-9A-Fa-f])([0-9A-Fa-f]))|(\\(_|~|\.|-|!|\$|&|'|\(|\)|\*|\+|,|;|=|\/|\?|#|@|%))))*(?:(((?:([A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])|_))|-|[0-9]|\u00B7|[\u0300-\u036F\u203F-\u2040])|:|((%([0-9A-Fa-f])([0-9A-Fa-f]))|(\\(_|~|\.|-|!|\$|&|'|\(|\)|\*|\+|,|;|=|\/|\?|#|@|%)))))?)))/i,/^(?:(_:(?:((?:([A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])|_))|[0-9])(?:(?:(((?:([A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])|_))|-|[0-9]|\u00B7|[\u0300-\u036F\u203F-\u2040])|\.)*(((?:([A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])|_))|-|[0-9]|\u00B7|[\u0300-\u036F\u203F-\u2040]))?))/i,/^(?:([\?\$]((?:((?:([A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])|_))|[0-9])(?:((?:([A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])|_))|[0-9]|\u00B7|[\u0300-\u036F\u203F-\u2040])*)))/i,/^(?:(@[a-zA-Z]+(?:-[a-zA-Z0-9]+)*))/i,/^(?:([0-9]+))/i,/^(?:([0-9]*\.[0-9]+))/i,/^(?:([0-9]+\.[0-9]*([eE][+-]?[0-9]+)|\.([0-9])+([eE][+-]?[0-9]+)|([0-9])+([eE][+-]?[0-9]+)))/i,/^(?:(\+([0-9]+)))/i,/^(?:(\+([0-9]*\.[0-9]+)))/i,/^(?:(\+([0-9]+\.[0-9]*([eE][+-]?[0-9]+)|\.([0-9])+([eE][+-]?[0-9]+)|([0-9])+([eE][+-]?[0-9]+))))/i,/^(?:(-([0-9]+)))/i,/^(?:(-([0-9]*\.[0-9]+)))/i,/^(?:(-([0-9]+\.[0-9]*([eE][+-]?[0-9]+)|\.([0-9])+([eE][+-]?[0-9]+)|([0-9])+([eE][+-]?[0-9]+))))/i,/^(?:([eE][+-]?[0-9]+))/i,/^(?:('(?:(?:[^\u0027\u005C\u000A\u000D])|(\\[tbnrf\\\"']|\\u([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])|\\U([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])))*'))/i,/^(?:("(?:(?:[^\u0022\u005C\u000A\u000D])|(\\[tbnrf\\\"']|\\u([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])|\\U([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])))*"))/i,/^(?:('''(?:(?:'|'')?(?:[^'\\]|(\\[tbnrf\\\"']|\\u([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])|\\U([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f]))))*'''))/i,/^(?:("""(?:(?:"|"")?(?:[^\"\\]|(\\[tbnrf\\\"']|\\u([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])|\\U([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f]))))*"""))/i,/^(?:(\((\u0020|\u0009|\u000D|\u000A)*\)))/i,/^(?:(\[(\u0020|\u0009|\u000D|\u000A)*\]))/i,/^(?:$)/i,/^(?:.)/i,/^(?:.)/i],conditions:{INITIAL:{rules:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,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,91,92,93,94,95,96,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,123,124,125],inclusive:!0}}};return C})();sd.lexer=tA;function xe(){this.yy={}}return o(xe,"Parser"),xe.prototype=sd,sd.Parser=xe,new xe})();HS.exports=uF});var XS=v((LB,KS)=>{var lF="http://www.w3.org/2001/XMLSchema#integer",fF="http://www.w3.org/2001/XMLSchema#string";function ut(n){this._options=n=n||{};var e=n.prefixes||{};this._prefixByIri={};var t=[];for(var r in e){var i=e[r];wc(i)&&(this._prefixByIri[i]=r,t.push(i))}var s=t.join("|").replace(/[\]\/\(\)\*\+\?\.\\\$]/g,"\\$&");this._prefixRegex=new RegExp("^("+s+")([a-zA-Z][\\-_a-zA-Z0-9]*)$"),this._usedPrefixes={},this._sparqlStar=n.sparqlStar,this._indent=wc(n.indent)?n.indent:" ",this._newline=wc(n.newline)?n.newline:`
251
- `,this._explicitDatatype=!!n.explicitDatatype}o(ut,"Generator");ut.prototype.toQuery=function(n){var e="";return n.queryType&&(e+=n.queryType.toUpperCase()+" "),n.reduced&&(e+="REDUCED "),n.distinct&&(e+="DISTINCT "),n.variables?e+=$r(n.variables,void 0,function(t){return/^[?$]/.test(t)?t:Ki(t)?this.toEntity(t):"("+this.toExpression(t.expression)+" AS "+rf(t.variable)+")"},this)+" ":n.template&&(e+=this.group(n.template,!0)+this._newline),n.from&&(e+=this.graphs("FROM ",n.from.default)+this.graphs("FROM NAMED ",n.from.named)),n.where&&(e+="WHERE "+this.group(n.where,!0)+this._newline),n.updates&&(e+=$r(n.updates,";"+this._newline,this.toUpdate,this)),n.group&&(e+="GROUP BY "+$r(n.group,void 0,function(t){var r=Ki(t.expression)?this.toEntity(t.expression):"("+this.toExpression(t.expression)+")";return t.variable?"("+r+" AS "+rf(t.variable)+")":r},this)+this._newline),n.having&&(e+="HAVING ("+$r(n.having,void 0,this.toExpression,this)+")"+this._newline),n.order&&(e+="ORDER BY "+$r(n.order,void 0,function(t){var r="("+this.toExpression(t.expression)+")";return t.descending?"DESC "+r:r},this)+this._newline),n.offset&&(e+="OFFSET "+n.offset+this._newline),n.limit&&(e+="LIMIT "+n.limit+this._newline),n.values&&(e+=this.values(n)),e=this.baseAndPrefixes(n)+e,e.trim()};ut.prototype.baseAndPrefixes=function(n){var e=n.base?"BASE <"+n.base+">"+this._newline:"",t="";for(var r in n.prefixes)(this._options.allPrefixes||this._usedPrefixes[r])&&(t+="PREFIX "+r+": <"+n.prefixes[r]+">"+this._newline);return e+t};ut.prototype.toPattern=function(n){var e=n.type||n instanceof Array&&"array"||(n.subject&&n.predicate&&n.object?"triple":"");if(!(e in this))throw new Error("Unknown entry type: "+e);return this[e](n)};ut.prototype.triple=function(n){return this.toEntity(n.subject)+" "+this.toEntity(n.predicate)+" "+this.toEntity(n.object)+"."};ut.prototype.array=function(n){return $r(n,this._newline,this.toPattern,this)};ut.prototype.bgp=function(n){return this.encodeTriples(n.triples)};ut.prototype.encodeTriples=function(n){if(!n.length)return"";for(var e=[],t=void 0,r=void 0,i=0;i<n.length;i++){var s=n[i];Qs(s.subject,t)?Qs(s.predicate,r)?e.push(","):(r=s.predicate,e.push(";"+this._newline,this._indent,this.toEntity(r))):(t&&e.push("."+this._newline),t=s.subject,r=s.predicate,e.push(this.toEntity(t)," ",this.toEntity(r))),e.push(" ",this.toEntity(s.object))}return e.push("."),e.join("")};ut.prototype.graph=function(n){return"GRAPH "+this.toEntity(n.name)+" "+this.group(n)};ut.prototype.graphs=function(n,e){return!e||e.length===0?"":$r(e,"",function(t){return n+this.toEntity(t)+this._newline},this)};ut.prototype.group=function(n,e){return n=e!==!0?this.array(n.patterns||n.triples):this.toPattern(n.type!=="group"?n:n.patterns),n.indexOf(this._newline)===-1?"{ "+n+" }":"{"+this._newline+this.indent(n)+this._newline+"}"};ut.prototype.query=function(n){return this.toQuery(n)};ut.prototype.filter=function(n){return"FILTER("+this.toExpression(n.expression)+")"};ut.prototype.bind=function(n){return"BIND("+this.toExpression(n.expression)+" AS "+rf(n.variable)+")"};ut.prototype.optional=function(n){return"OPTIONAL "+this.group(n)};ut.prototype.union=function(n){return $r(n.patterns,this._newline+"UNION"+this._newline,function(e){return this.group(e,!0)},this)};ut.prototype.minus=function(n){return"MINUS "+this.group(n)};ut.prototype.values=function(n){var e=Object.keys(n.values.reduce(function(i,s){for(var a in s)i[a]=!0;return i},{})),t,r;return e.length===1?t=r="":(t="(",r=")"),"VALUES "+t+e.join(" ")+r+" {"+this._newline+$r(n.values,this._newline,function(i){return" "+t+$r(e,void 0,function(s){return i[s]?this.toEntity(i[s]):"UNDEF"},this)+r},this)+this._newline+"}"};ut.prototype.service=function(n){return"SERVICE "+(n.silent?"SILENT ":"")+this.toEntity(n.name)+" "+this.group(n)};ut.prototype.toExpression=function(n){if(Ki(n))return this.toEntity(n);switch(n.type.toLowerCase()){case"aggregate":return n.aggregation.toUpperCase()+"("+(n.distinct?"DISTINCT ":"")+this.toExpression(n.expression)+(typeof n.separator=="string"?'; SEPARATOR = "'+n.separator.replace(QS,YS)+'"':"")+")";case"functioncall":return this.toEntity(n.function)+"("+$r(n.args,", ",this.toExpression,this)+")";case"operation":var e=n.operator.toUpperCase(),t=n.args||[];switch(n.operator.toLowerCase()){case"<":case">":case">=":case"<=":case"&&":case"||":case"=":case"!=":case"+":case"-":case"*":case"/":return(Ki(t[0])?this.toEntity(t[0]):"("+this.toExpression(t[0])+")")+" "+e+" "+(Ki(t[1])?this.toEntity(t[1]):"("+this.toExpression(t[1])+")");case"!":return"!("+this.toExpression(t[0])+")";case"uplus":return"+("+this.toExpression(t[0])+")";case"uminus":return"-("+this.toExpression(t[0])+")";case"notin":e="NOT IN";case"in":return this.toExpression(t[0])+" "+e+"("+(wc(t[1])?t[1]:$r(t[1],", ",this.toExpression,this))+")";case"notexists":e="NOT EXISTS";case"exists":return e+" "+this.group(t[0],!0);default:return e+"("+$r(t,", ",this.toExpression,this)+")"}default:throw new Error("Unknown expression type: "+n.type)}};ut.prototype.toEntity=function(n){if(Ki(n))switch(n.termType){case"Wildcard":return"*";case"Variable":return rf(n);case"BlankNode":return"_:"+n.value;case"Literal":var e=n.value||"",t=n.language||"",r=n.datatype;if(n='"'+e.replace(QS,YS)+'"',t)n+="@"+t;else if(r){if(!this._explicitDatatype)switch(r.value){case fF:return n;case lF:if(/^\d+$/.test(e))return e+" "}n+="^^"+this.encodeIRI(r.value)}return n;case"Quad":if(!this._sparqlStar)throw new Error("SPARQL* support is not enabled");return n.graph&&n.graph.termType!=="DefaultGraph"?"<< GRAPH "+this.toEntity(n.graph)+" { "+this.toEntity(n.subject)+" "+this.toEntity(n.predicate)+" "+this.toEntity(n.object)+" } >>":"<< "+this.toEntity(n.subject)+" "+this.toEntity(n.predicate)+" "+this.toEntity(n.object)+" >>";default:return this.encodeIRI(n.value)}else{var i=n.items.map(this.toEntity,this),s=n.pathType;switch(s){case"^":case"!":return s+i[0];case"*":case"+":case"?":return"("+i[0]+s+")";default:return"("+i.join(s)+")"}}};var QS=/["\\\t\n\r\b\f]/g,YS=o(function(n){return hF[n]},"escapeReplacer"),hF={"\\":"\\\\",'"':'\\"'," ":"\\t","\n":"\\n","\r":"\\r","\b":"\\b","\f":"\\f"};ut.prototype.encodeIRI=function(n){var e=this._prefixRegex.exec(n);if(e){var t=this._prefixByIri[e[1]];return this._usedPrefixes[t]=!0,t+":"+e[2]}return"<"+n+">"};ut.prototype.toUpdate=function(n){switch(n.type||n.updateType){case"load":return"LOAD"+(n.source?" "+this.toEntity(n.source):"")+(n.destination?" INTO GRAPH "+this.toEntity(n.destination):"");case"insert":return"INSERT DATA "+this.group(n.insert,!0);case"delete":return"DELETE DATA "+this.group(n.delete,!0);case"deletewhere":return"DELETE WHERE "+this.group(n.delete,!0);case"insertdelete":return(n.graph?"WITH "+this.toEntity(n.graph)+this._newline:"")+(n.delete.length?"DELETE "+this.group(n.delete,!0)+this._newline:"")+(n.insert.length?"INSERT "+this.group(n.insert,!0)+this._newline:"")+(n.using?this.graphs("USING ",n.using.default):"")+(n.using?this.graphs("USING NAMED ",n.using.named):"")+"WHERE "+this.group(n.where,!0);case"add":case"copy":case"move":return n.type.toUpperCase()+" "+(n.silent?"SILENT ":"")+(n.source.default?"DEFAULT":this.toEntity(n.source.name))+" TO "+this.toEntity(n.destination.name);case"create":case"clear":case"drop":return n.type.toUpperCase()+(n.silent?" SILENT ":" ")+(n.graph.default?"DEFAULT":n.graph.named?"NAMED":n.graph.all?"ALL":"GRAPH "+this.toEntity(n.graph.name));default:throw new Error("Unknown update query type: "+n.type)}};ut.prototype.indent=function(n){return n.replace(/^/gm,this._indent)};function rf(n){return"?"+n.value}o(rf,"variableToString");function wc(n){return typeof n=="string"}o(wc,"isString");function Ki(n){return typeof n.termType=="string"}o(Ki,"isTerm");function Qs(n,e){if(!n||!Ki(n)||!e||!Ki(e)||n.termType!==e.termType)return!1;switch(n.termType){case"Literal":return n.value===e.value&&n.language===e.language&&Qs(n.datatype,e.datatype);case"Quad":return Qs(n.subject,e.subject)&&Qs(n.predicate,e.predicate)&&Qs(n.object,e.object)&&Qs(n.graph,e.graph);default:return n.value===e.value}}o(Qs,"equalTerms");function $r(n,e,t,r){return n.map(t,r).join(wc(e)?e:" ")}o($r,"mapJoin");function dF(n={}){return{stringify:o(function(e){var t=Object.create(n);return t.prefixes=e.prefixes,new ut(t).toQuery(e)},"stringify"),createGenerator:o(function(){return new ut(n)},"createGenerator")}}o(dF,"_Generator");KS.exports={Generator:dF}});var Mg=v(nf=>{"use strict";Object.defineProperty(nf,"__esModule",{value:!0});nf.BlankNode=void 0;var kg=class{static{o(this,"BlankNode")}constructor(e){this.termType="BlankNode",this.value=e}equals(e){return!!e&&e.termType==="BlankNode"&&e.value===this.value}};nf.BlankNode=kg});var jg=v(sf=>{"use strict";Object.defineProperty(sf,"__esModule",{value:!0});sf.DefaultGraph=void 0;var bc=class{static{o(this,"DefaultGraph")}constructor(){this.termType="DefaultGraph",this.value=""}equals(e){return!!e&&e.termType==="DefaultGraph"}};sf.DefaultGraph=bc;bc.INSTANCE=new bc});var of=v(af=>{"use strict";Object.defineProperty(af,"__esModule",{value:!0});af.NamedNode=void 0;var $g=class{static{o(this,"NamedNode")}constructor(e){this.termType="NamedNode",this.value=e}equals(e){return!!e&&e.termType==="NamedNode"&&e.value===this.value}};af.NamedNode=$g});var Vg=v(cf=>{"use strict";Object.defineProperty(cf,"__esModule",{value:!0});cf.Literal=void 0;var JS=of(),Ec=class n{static{o(this,"Literal")}constructor(e,t){this.termType="Literal",this.value=e,typeof t=="string"?(this.language=t,this.datatype=n.RDF_LANGUAGE_STRING):t?(this.language="",this.datatype=t):(this.language="",this.datatype=n.XSD_STRING)}equals(e){return!!e&&e.termType==="Literal"&&e.value===this.value&&e.language===this.language&&this.datatype.equals(e.datatype)}};cf.Literal=Ec;Ec.RDF_LANGUAGE_STRING=new JS.NamedNode("http://www.w3.org/1999/02/22-rdf-syntax-ns#langString");Ec.XSD_STRING=new JS.NamedNode("http://www.w3.org/2001/XMLSchema#string")});var Bg=v(uf=>{"use strict";Object.defineProperty(uf,"__esModule",{value:!0});uf.Quad=void 0;var Ug=class{static{o(this,"Quad")}constructor(e,t,r,i){this.termType="Quad",this.value="",this.subject=e,this.predicate=t,this.object=r,this.graph=i}equals(e){return!!e&&(e.termType==="Quad"||!e.termType)&&this.subject.equals(e.subject)&&this.predicate.equals(e.predicate)&&this.object.equals(e.object)&&this.graph.equals(e.graph)}};uf.Quad=Ug});var Gg=v(lf=>{"use strict";Object.defineProperty(lf,"__esModule",{value:!0});lf.Variable=void 0;var qg=class{static{o(this,"Variable")}constructor(e){this.termType="Variable",this.value=e}equals(e){return!!e&&e.termType==="Variable"&&e.value===this.value}};lf.Variable=qg});var e_=v(ff=>{"use strict";Object.defineProperty(ff,"__esModule",{value:!0});ff.DataFactory=void 0;var pF=Mg(),mF=jg(),ZS=Vg(),gF=of(),yF=Bg(),vF=Gg(),SF=0,Wg=class{static{o(this,"DataFactory")}constructor(e){this.blankNodeCounter=0,e=e||{},this.blankNodePrefix=e.blankNodePrefix||`df_${SF++}_`}namedNode(e){return new gF.NamedNode(e)}blankNode(e){return new pF.BlankNode(e||`${this.blankNodePrefix}${this.blankNodeCounter++}`)}literal(e,t){return new ZS.Literal(e,t)}variable(e){return new vF.Variable(e)}defaultGraph(){return mF.DefaultGraph.INSTANCE}quad(e,t,r,i){return new yF.Quad(e,t,r,i||this.defaultGraph())}fromTerm(e){switch(e.termType){case"NamedNode":return this.namedNode(e.value);case"BlankNode":return this.blankNode(e.value);case"Literal":return e.language?this.literal(e.value,e.language):e.datatype.equals(ZS.Literal.XSD_STRING)?this.literal(e.value):this.literal(e.value,this.fromTerm(e.datatype));case"Variable":return this.variable(e.value);case"DefaultGraph":return this.defaultGraph();case"Quad":return this.quad(this.fromTerm(e.subject),this.fromTerm(e.predicate),this.fromTerm(e.object),this.fromTerm(e.graph))}}fromQuad(e){return this.fromTerm(e)}resetBlankNodeCounter(){this.blankNodeCounter=0}};ff.DataFactory=Wg});var t_=v(Vr=>{"use strict";var _F=Vr&&Vr.__createBinding||(Object.create?(function(n,e,t,r){r===void 0&&(r=t);var i=Object.getOwnPropertyDescriptor(e,t);(!i||("get"in i?!e.__esModule:i.writable||i.configurable))&&(i={enumerable:!0,get:o(function(){return e[t]},"get")}),Object.defineProperty(n,r,i)}):(function(n,e,t,r){r===void 0&&(r=t),n[r]=e[t]})),Ys=Vr&&Vr.__exportStar||function(n,e){for(var t in n)t!=="default"&&!Object.prototype.hasOwnProperty.call(e,t)&&_F(e,n,t)};Object.defineProperty(Vr,"__esModule",{value:!0});Ys(Mg(),Vr);Ys(e_(),Vr);Ys(jg(),Vr);Ys(Vg(),Vr);Ys(of(),Vr);Ys(Bg(),Vr);Ys(Gg(),Vr)});var n_=v((ZB,r_)=>{var{Parser:Ai}=zS(),{Generator:wF}=XS(),{Wildcard:bF}=Lg(),{DataFactory:EF}=t_();function TF({prefixes:n,baseIRI:e,factory:t,pathOnly:r,sparqlStar:i,skipValidation:s,skipUngroupedVariableCheck:a}={}){let c={};for(let l in n??{})c[l]=n[l];let u=new Ai;return u.parse=function(){return Ai.base=e||"",Ai.prefixes=Object.create(c),Ai.factory=t||new EF,Ai.sparqlStar=!!i,Ai.pathOnly=!!r,Ai.skipValidation=!!s||!!a,Ai.prototype.parse.apply(u,arguments)},u._resetBlanks=Ai._resetBlanks,u}o(TF,"_Parser");r_.exports={Parser:TF,Generator:wF,Wildcard:bF}});var zg=v(ka=>{"use strict";Object.defineProperty(ka,"__esModule",{value:!0});ka.CaseWhenTransformerError=ka.CaseWhenTransformer=void 0;var Hg=class{static{o(this,"CaseWhenTransformer")}transform(e){let t=e,r,i=0,s=100;do if(r=t,t=this.transformSinglePass(t),i++,i>s)throw new Ci("Too many nested CASE expressions (max 100 iterations)");while(t!==r);return t}transformSinglePass(e){let t=this.findCasePositions(e);if(t.length===0)return e;let r=e;for(let i=t.length-1;i>=0;i--){let s=t[i],a=this.extractCaseExpression(r,s);if(a){let c=this.convertCaseToIf(a.content);r=r.substring(0,s)+c+r.substring(s+a.length)}}return r}findCasePositions(e){let t=[],r=e.toUpperCase(),i=0;for(;i<e.length;){if(e[i]==="'"||e[i]==='"'){let s=e[i];for(i++;i<e.length&&e[i]!==s;)e[i]==="\\"&&i++,i++;i++;continue}if(r.substring(i,i+4)==="CASE"&&this.isWordBoundary(e,i,4)){t.push(i),i+=4;continue}i++}return t}extractCaseExpression(e,t){let r=1,i=t+4,s=e.toUpperCase();for(;i<e.length&&r>0;){if(e[i]==="'"||e[i]==='"'){let a=e[i];for(i++;i<e.length&&e[i]!==a;)e[i]==="\\"&&i++,i++;i++;continue}if(s.substring(i,i+4)==="CASE"&&this.isWordBoundary(e,i,4)){r++,i+=4;continue}if(s.substring(i,i+3)==="END"&&this.isWordBoundary(e,i,3)){if(r--,r===0){let a=e.substring(t,i+3);return{content:a,length:a.length}}i+=3;continue}i++}if(r>0)throw new Ci(`Unclosed CASE expression at position ${t}`);return null}isWordBoundary(e,t,r){let i=t>0?e[t-1]:"",s=t===0||!/[a-zA-Z0-9_?$]/.test(i),a=t+r<e.length?e[t+r]:"",c=t+r>=e.length||!/[a-zA-Z0-9_]/.test(a);return s&&c}convertCaseToIf(e){let t=this.extractWhenClauses(e),r=this.extractElseClause(e);if(t.length===0)throw new Ci("CASE expression must have at least one WHEN clause");let i=r!==null?r:'""';for(let s=t.length-1;s>=0;s--){let{condition:a,result:c}=t[s];i=`IF(${a}, ${c}, ${i})`}return i}extractWhenClauses(e){let t=[],r=e.replace(/^\s*CASE\s+/i,"").replace(/\s*END\s*$/i,""),i=this.findKeywordPositions(r,"WHEN"),s=this.findKeywordPositions(r,"ELSE"),a=s.length>0?s[0]:r.length;for(let c=0;c<i.length;c++){let u=i[c]+4,l=c+1<i.length?i[c+1]:a,f=r.substring(u,l).trim(),h=this.parseWhenClause(f);h&&t.push(h)}return t}findKeywordPositions(e,t){let r=[],i=e.toUpperCase(),s=0,a=0;for(;s<e.length;){let c=e[s];if(c==="'"||c==='"'){let u=c;for(s++;s<e.length&&e[s]!==u;)e[s]==="\\"&&s++,s++;s++;continue}if(c==="("){a++,s++;continue}if(c===")"){a--,s++;continue}if(a===0&&i.substring(s,s+t.length)===t&&this.isWordBoundary(e,s,t.length)){r.push(s),s+=t.length;continue}s++}return r}parseWhenClause(e){let t=this.findKeywordPositions(e,"THEN");if(t.length===0)throw new Ci(`WHEN clause missing THEN keyword: ${e.substring(0,50)}...`);let r=t[0],i=e.substring(0,r).trim(),s=e.substring(r+4).trim();if(!i)throw new Ci("WHEN clause has empty condition");if(!s)throw new Ci("WHEN clause has empty result");return{condition:i,result:s}}extractElseClause(e){let t=e.replace(/^\s*CASE\s+/i,"").replace(/\s*END\s*$/i,""),r=this.findKeywordPositions(t,"ELSE");if(r.length>0){let i=r[0];return t.substring(i+4).trim()}return null}};ka.CaseWhenTransformer=Hg;var Ci=class extends Error{static{o(this,"CaseWhenTransformerError")}constructor(e){super(`CASE WHEN transformation error: ${e}`),this.name="CaseWhenTransformerError"}};ka.CaseWhenTransformerError=Ci});var Qg=v(Ma=>{"use strict";Object.defineProperty(Ma,"__esModule",{value:!0});Ma.LateralTransformerError=Ma.LateralTransformer=void 0;var hf=class n{static{o(this,"LateralTransformer")}transform(e){let t=e,r,i=0,s=100;do if(r=t,t=this.transformSinglePass(t),i++,i>s)throw new Xi("Too many nested LATERAL joins (max 100 iterations)");while(t!==r);return t}hasLateral(e){return this.findLateralPositions(e).length>0}static isLateralJoin(e){if(e.type==="group"&&e.patterns){for(let t of e.patterns)if(t.type==="query"&&t.queryType==="SELECT"&&t.variables&&Array.isArray(t.variables)){for(let r of t.variables)if(r.termType==="Variable"&&r.value===n.LATERAL_MARKER)return!0}}if(e.type==="query"&&e.queryType==="SELECT"&&e.variables&&Array.isArray(e.variables)){for(let t of e.variables)if(t.termType==="Variable"&&t.value===n.LATERAL_MARKER)return!0}return!1}transformSinglePass(e){let t=this.findLateralPositions(e);if(t.length===0)return e;let r=e;for(let i=t.length-1;i>=0;i--){let s=t[i],a=this.extractLateralExpression(r,s);if(a){let c=this.transformLateral(a.content);r=r.substring(0,s)+c+r.substring(s+a.length)}}return r}findLateralPositions(e){let t=[],r=e.toUpperCase(),i=0;for(;i<e.length;){if(e[i]==="'"||e[i]==='"'){let s=e[i];for(i++;i<e.length&&e[i]!==s;)e[i]==="\\"&&i++,i++;i++;continue}if(e[i]==="#"){for(;i<e.length&&e[i]!==`
251
+ `,this._explicitDatatype=!!n.explicitDatatype}o(ut,"Generator");ut.prototype.toQuery=function(n){var e="";return n.queryType&&(e+=n.queryType.toUpperCase()+" "),n.reduced&&(e+="REDUCED "),n.distinct&&(e+="DISTINCT "),n.variables?e+=jr(n.variables,void 0,function(t){return/^[?$]/.test(t)?t:Ki(t)?this.toEntity(t):"("+this.toExpression(t.expression)+" AS "+rf(t.variable)+")"},this)+" ":n.template&&(e+=this.group(n.template,!0)+this._newline),n.from&&(e+=this.graphs("FROM ",n.from.default)+this.graphs("FROM NAMED ",n.from.named)),n.where&&(e+="WHERE "+this.group(n.where,!0)+this._newline),n.updates&&(e+=jr(n.updates,";"+this._newline,this.toUpdate,this)),n.group&&(e+="GROUP BY "+jr(n.group,void 0,function(t){var r=Ki(t.expression)?this.toEntity(t.expression):"("+this.toExpression(t.expression)+")";return t.variable?"("+r+" AS "+rf(t.variable)+")":r},this)+this._newline),n.having&&(e+="HAVING ("+jr(n.having,void 0,this.toExpression,this)+")"+this._newline),n.order&&(e+="ORDER BY "+jr(n.order,void 0,function(t){var r="("+this.toExpression(t.expression)+")";return t.descending?"DESC "+r:r},this)+this._newline),n.offset&&(e+="OFFSET "+n.offset+this._newline),n.limit&&(e+="LIMIT "+n.limit+this._newline),n.values&&(e+=this.values(n)),e=this.baseAndPrefixes(n)+e,e.trim()};ut.prototype.baseAndPrefixes=function(n){var e=n.base?"BASE <"+n.base+">"+this._newline:"",t="";for(var r in n.prefixes)(this._options.allPrefixes||this._usedPrefixes[r])&&(t+="PREFIX "+r+": <"+n.prefixes[r]+">"+this._newline);return e+t};ut.prototype.toPattern=function(n){var e=n.type||n instanceof Array&&"array"||(n.subject&&n.predicate&&n.object?"triple":"");if(!(e in this))throw new Error("Unknown entry type: "+e);return this[e](n)};ut.prototype.triple=function(n){return this.toEntity(n.subject)+" "+this.toEntity(n.predicate)+" "+this.toEntity(n.object)+"."};ut.prototype.array=function(n){return jr(n,this._newline,this.toPattern,this)};ut.prototype.bgp=function(n){return this.encodeTriples(n.triples)};ut.prototype.encodeTriples=function(n){if(!n.length)return"";for(var e=[],t=void 0,r=void 0,i=0;i<n.length;i++){var s=n[i];Qs(s.subject,t)?Qs(s.predicate,r)?e.push(","):(r=s.predicate,e.push(";"+this._newline,this._indent,this.toEntity(r))):(t&&e.push("."+this._newline),t=s.subject,r=s.predicate,e.push(this.toEntity(t)," ",this.toEntity(r))),e.push(" ",this.toEntity(s.object))}return e.push("."),e.join("")};ut.prototype.graph=function(n){return"GRAPH "+this.toEntity(n.name)+" "+this.group(n)};ut.prototype.graphs=function(n,e){return!e||e.length===0?"":jr(e,"",function(t){return n+this.toEntity(t)+this._newline},this)};ut.prototype.group=function(n,e){return n=e!==!0?this.array(n.patterns||n.triples):this.toPattern(n.type!=="group"?n:n.patterns),n.indexOf(this._newline)===-1?"{ "+n+" }":"{"+this._newline+this.indent(n)+this._newline+"}"};ut.prototype.query=function(n){return this.toQuery(n)};ut.prototype.filter=function(n){return"FILTER("+this.toExpression(n.expression)+")"};ut.prototype.bind=function(n){return"BIND("+this.toExpression(n.expression)+" AS "+rf(n.variable)+")"};ut.prototype.optional=function(n){return"OPTIONAL "+this.group(n)};ut.prototype.union=function(n){return jr(n.patterns,this._newline+"UNION"+this._newline,function(e){return this.group(e,!0)},this)};ut.prototype.minus=function(n){return"MINUS "+this.group(n)};ut.prototype.values=function(n){var e=Object.keys(n.values.reduce(function(i,s){for(var a in s)i[a]=!0;return i},{})),t,r;return e.length===1?t=r="":(t="(",r=")"),"VALUES "+t+e.join(" ")+r+" {"+this._newline+jr(n.values,this._newline,function(i){return" "+t+jr(e,void 0,function(s){return i[s]?this.toEntity(i[s]):"UNDEF"},this)+r},this)+this._newline+"}"};ut.prototype.service=function(n){return"SERVICE "+(n.silent?"SILENT ":"")+this.toEntity(n.name)+" "+this.group(n)};ut.prototype.toExpression=function(n){if(Ki(n))return this.toEntity(n);switch(n.type.toLowerCase()){case"aggregate":return n.aggregation.toUpperCase()+"("+(n.distinct?"DISTINCT ":"")+this.toExpression(n.expression)+(typeof n.separator=="string"?'; SEPARATOR = "'+n.separator.replace(QS,YS)+'"':"")+")";case"functioncall":return this.toEntity(n.function)+"("+jr(n.args,", ",this.toExpression,this)+")";case"operation":var e=n.operator.toUpperCase(),t=n.args||[];switch(n.operator.toLowerCase()){case"<":case">":case">=":case"<=":case"&&":case"||":case"=":case"!=":case"+":case"-":case"*":case"/":return(Ki(t[0])?this.toEntity(t[0]):"("+this.toExpression(t[0])+")")+" "+e+" "+(Ki(t[1])?this.toEntity(t[1]):"("+this.toExpression(t[1])+")");case"!":return"!("+this.toExpression(t[0])+")";case"uplus":return"+("+this.toExpression(t[0])+")";case"uminus":return"-("+this.toExpression(t[0])+")";case"notin":e="NOT IN";case"in":return this.toExpression(t[0])+" "+e+"("+(wc(t[1])?t[1]:jr(t[1],", ",this.toExpression,this))+")";case"notexists":e="NOT EXISTS";case"exists":return e+" "+this.group(t[0],!0);default:return e+"("+jr(t,", ",this.toExpression,this)+")"}default:throw new Error("Unknown expression type: "+n.type)}};ut.prototype.toEntity=function(n){if(Ki(n))switch(n.termType){case"Wildcard":return"*";case"Variable":return rf(n);case"BlankNode":return"_:"+n.value;case"Literal":var e=n.value||"",t=n.language||"",r=n.datatype;if(n='"'+e.replace(QS,YS)+'"',t)n+="@"+t;else if(r){if(!this._explicitDatatype)switch(r.value){case fF:return n;case lF:if(/^\d+$/.test(e))return e+" "}n+="^^"+this.encodeIRI(r.value)}return n;case"Quad":if(!this._sparqlStar)throw new Error("SPARQL* support is not enabled");return n.graph&&n.graph.termType!=="DefaultGraph"?"<< GRAPH "+this.toEntity(n.graph)+" { "+this.toEntity(n.subject)+" "+this.toEntity(n.predicate)+" "+this.toEntity(n.object)+" } >>":"<< "+this.toEntity(n.subject)+" "+this.toEntity(n.predicate)+" "+this.toEntity(n.object)+" >>";default:return this.encodeIRI(n.value)}else{var i=n.items.map(this.toEntity,this),s=n.pathType;switch(s){case"^":case"!":return s+i[0];case"*":case"+":case"?":return"("+i[0]+s+")";default:return"("+i.join(s)+")"}}};var QS=/["\\\t\n\r\b\f]/g,YS=o(function(n){return hF[n]},"escapeReplacer"),hF={"\\":"\\\\",'"':'\\"'," ":"\\t","\n":"\\n","\r":"\\r","\b":"\\b","\f":"\\f"};ut.prototype.encodeIRI=function(n){var e=this._prefixRegex.exec(n);if(e){var t=this._prefixByIri[e[1]];return this._usedPrefixes[t]=!0,t+":"+e[2]}return"<"+n+">"};ut.prototype.toUpdate=function(n){switch(n.type||n.updateType){case"load":return"LOAD"+(n.source?" "+this.toEntity(n.source):"")+(n.destination?" INTO GRAPH "+this.toEntity(n.destination):"");case"insert":return"INSERT DATA "+this.group(n.insert,!0);case"delete":return"DELETE DATA "+this.group(n.delete,!0);case"deletewhere":return"DELETE WHERE "+this.group(n.delete,!0);case"insertdelete":return(n.graph?"WITH "+this.toEntity(n.graph)+this._newline:"")+(n.delete.length?"DELETE "+this.group(n.delete,!0)+this._newline:"")+(n.insert.length?"INSERT "+this.group(n.insert,!0)+this._newline:"")+(n.using?this.graphs("USING ",n.using.default):"")+(n.using?this.graphs("USING NAMED ",n.using.named):"")+"WHERE "+this.group(n.where,!0);case"add":case"copy":case"move":return n.type.toUpperCase()+" "+(n.silent?"SILENT ":"")+(n.source.default?"DEFAULT":this.toEntity(n.source.name))+" TO "+this.toEntity(n.destination.name);case"create":case"clear":case"drop":return n.type.toUpperCase()+(n.silent?" SILENT ":" ")+(n.graph.default?"DEFAULT":n.graph.named?"NAMED":n.graph.all?"ALL":"GRAPH "+this.toEntity(n.graph.name));default:throw new Error("Unknown update query type: "+n.type)}};ut.prototype.indent=function(n){return n.replace(/^/gm,this._indent)};function rf(n){return"?"+n.value}o(rf,"variableToString");function wc(n){return typeof n=="string"}o(wc,"isString");function Ki(n){return typeof n.termType=="string"}o(Ki,"isTerm");function Qs(n,e){if(!n||!Ki(n)||!e||!Ki(e)||n.termType!==e.termType)return!1;switch(n.termType){case"Literal":return n.value===e.value&&n.language===e.language&&Qs(n.datatype,e.datatype);case"Quad":return Qs(n.subject,e.subject)&&Qs(n.predicate,e.predicate)&&Qs(n.object,e.object)&&Qs(n.graph,e.graph);default:return n.value===e.value}}o(Qs,"equalTerms");function jr(n,e,t,r){return n.map(t,r).join(wc(e)?e:" ")}o(jr,"mapJoin");function dF(n={}){return{stringify:o(function(e){var t=Object.create(n);return t.prefixes=e.prefixes,new ut(t).toQuery(e)},"stringify"),createGenerator:o(function(){return new ut(n)},"createGenerator")}}o(dF,"_Generator");KS.exports={Generator:dF}});var Mg=v(nf=>{"use strict";Object.defineProperty(nf,"__esModule",{value:!0});nf.BlankNode=void 0;var kg=class{static{o(this,"BlankNode")}constructor(e){this.termType="BlankNode",this.value=e}equals(e){return!!e&&e.termType==="BlankNode"&&e.value===this.value}};nf.BlankNode=kg});var jg=v(sf=>{"use strict";Object.defineProperty(sf,"__esModule",{value:!0});sf.DefaultGraph=void 0;var bc=class{static{o(this,"DefaultGraph")}constructor(){this.termType="DefaultGraph",this.value=""}equals(e){return!!e&&e.termType==="DefaultGraph"}};sf.DefaultGraph=bc;bc.INSTANCE=new bc});var of=v(af=>{"use strict";Object.defineProperty(af,"__esModule",{value:!0});af.NamedNode=void 0;var $g=class{static{o(this,"NamedNode")}constructor(e){this.termType="NamedNode",this.value=e}equals(e){return!!e&&e.termType==="NamedNode"&&e.value===this.value}};af.NamedNode=$g});var Vg=v(cf=>{"use strict";Object.defineProperty(cf,"__esModule",{value:!0});cf.Literal=void 0;var JS=of(),Ec=class n{static{o(this,"Literal")}constructor(e,t){this.termType="Literal",this.value=e,typeof t=="string"?(this.language=t,this.datatype=n.RDF_LANGUAGE_STRING):t?(this.language="",this.datatype=t):(this.language="",this.datatype=n.XSD_STRING)}equals(e){return!!e&&e.termType==="Literal"&&e.value===this.value&&e.language===this.language&&this.datatype.equals(e.datatype)}};cf.Literal=Ec;Ec.RDF_LANGUAGE_STRING=new JS.NamedNode("http://www.w3.org/1999/02/22-rdf-syntax-ns#langString");Ec.XSD_STRING=new JS.NamedNode("http://www.w3.org/2001/XMLSchema#string")});var Bg=v(uf=>{"use strict";Object.defineProperty(uf,"__esModule",{value:!0});uf.Quad=void 0;var Ug=class{static{o(this,"Quad")}constructor(e,t,r,i){this.termType="Quad",this.value="",this.subject=e,this.predicate=t,this.object=r,this.graph=i}equals(e){return!!e&&(e.termType==="Quad"||!e.termType)&&this.subject.equals(e.subject)&&this.predicate.equals(e.predicate)&&this.object.equals(e.object)&&this.graph.equals(e.graph)}};uf.Quad=Ug});var Gg=v(lf=>{"use strict";Object.defineProperty(lf,"__esModule",{value:!0});lf.Variable=void 0;var qg=class{static{o(this,"Variable")}constructor(e){this.termType="Variable",this.value=e}equals(e){return!!e&&e.termType==="Variable"&&e.value===this.value}};lf.Variable=qg});var e_=v(ff=>{"use strict";Object.defineProperty(ff,"__esModule",{value:!0});ff.DataFactory=void 0;var pF=Mg(),mF=jg(),ZS=Vg(),gF=of(),yF=Bg(),vF=Gg(),SF=0,Wg=class{static{o(this,"DataFactory")}constructor(e){this.blankNodeCounter=0,e=e||{},this.blankNodePrefix=e.blankNodePrefix||`df_${SF++}_`}namedNode(e){return new gF.NamedNode(e)}blankNode(e){return new pF.BlankNode(e||`${this.blankNodePrefix}${this.blankNodeCounter++}`)}literal(e,t){return new ZS.Literal(e,t)}variable(e){return new vF.Variable(e)}defaultGraph(){return mF.DefaultGraph.INSTANCE}quad(e,t,r,i){return new yF.Quad(e,t,r,i||this.defaultGraph())}fromTerm(e){switch(e.termType){case"NamedNode":return this.namedNode(e.value);case"BlankNode":return this.blankNode(e.value);case"Literal":return e.language?this.literal(e.value,e.language):e.datatype.equals(ZS.Literal.XSD_STRING)?this.literal(e.value):this.literal(e.value,this.fromTerm(e.datatype));case"Variable":return this.variable(e.value);case"DefaultGraph":return this.defaultGraph();case"Quad":return this.quad(this.fromTerm(e.subject),this.fromTerm(e.predicate),this.fromTerm(e.object),this.fromTerm(e.graph))}}fromQuad(e){return this.fromTerm(e)}resetBlankNodeCounter(){this.blankNodeCounter=0}};ff.DataFactory=Wg});var t_=v($r=>{"use strict";var _F=$r&&$r.__createBinding||(Object.create?(function(n,e,t,r){r===void 0&&(r=t);var i=Object.getOwnPropertyDescriptor(e,t);(!i||("get"in i?!e.__esModule:i.writable||i.configurable))&&(i={enumerable:!0,get:o(function(){return e[t]},"get")}),Object.defineProperty(n,r,i)}):(function(n,e,t,r){r===void 0&&(r=t),n[r]=e[t]})),Ys=$r&&$r.__exportStar||function(n,e){for(var t in n)t!=="default"&&!Object.prototype.hasOwnProperty.call(e,t)&&_F(e,n,t)};Object.defineProperty($r,"__esModule",{value:!0});Ys(Mg(),$r);Ys(e_(),$r);Ys(jg(),$r);Ys(Vg(),$r);Ys(of(),$r);Ys(Bg(),$r);Ys(Gg(),$r)});var n_=v((ZB,r_)=>{var{Parser:Ai}=zS(),{Generator:wF}=XS(),{Wildcard:bF}=Lg(),{DataFactory:EF}=t_();function TF({prefixes:n,baseIRI:e,factory:t,pathOnly:r,sparqlStar:i,skipValidation:s,skipUngroupedVariableCheck:a}={}){let c={};for(let l in n??{})c[l]=n[l];let u=new Ai;return u.parse=function(){return Ai.base=e||"",Ai.prefixes=Object.create(c),Ai.factory=t||new EF,Ai.sparqlStar=!!i,Ai.pathOnly=!!r,Ai.skipValidation=!!s||!!a,Ai.prototype.parse.apply(u,arguments)},u._resetBlanks=Ai._resetBlanks,u}o(TF,"_Parser");r_.exports={Parser:TF,Generator:wF,Wildcard:bF}});var zg=v(ka=>{"use strict";Object.defineProperty(ka,"__esModule",{value:!0});ka.CaseWhenTransformerError=ka.CaseWhenTransformer=void 0;var Hg=class{static{o(this,"CaseWhenTransformer")}transform(e){let t=e,r,i=0,s=100;do if(r=t,t=this.transformSinglePass(t),i++,i>s)throw new Ci("Too many nested CASE expressions (max 100 iterations)");while(t!==r);return t}transformSinglePass(e){let t=this.findCasePositions(e);if(t.length===0)return e;let r=e;for(let i=t.length-1;i>=0;i--){let s=t[i],a=this.extractCaseExpression(r,s);if(a){let c=this.convertCaseToIf(a.content);r=r.substring(0,s)+c+r.substring(s+a.length)}}return r}findCasePositions(e){let t=[],r=e.toUpperCase(),i=0;for(;i<e.length;){if(e[i]==="'"||e[i]==='"'){let s=e[i];for(i++;i<e.length&&e[i]!==s;)e[i]==="\\"&&i++,i++;i++;continue}if(r.substring(i,i+4)==="CASE"&&this.isWordBoundary(e,i,4)){t.push(i),i+=4;continue}i++}return t}extractCaseExpression(e,t){let r=1,i=t+4,s=e.toUpperCase();for(;i<e.length&&r>0;){if(e[i]==="'"||e[i]==='"'){let a=e[i];for(i++;i<e.length&&e[i]!==a;)e[i]==="\\"&&i++,i++;i++;continue}if(s.substring(i,i+4)==="CASE"&&this.isWordBoundary(e,i,4)){r++,i+=4;continue}if(s.substring(i,i+3)==="END"&&this.isWordBoundary(e,i,3)){if(r--,r===0){let a=e.substring(t,i+3);return{content:a,length:a.length}}i+=3;continue}i++}if(r>0)throw new Ci(`Unclosed CASE expression at position ${t}`);return null}isWordBoundary(e,t,r){let i=t>0?e[t-1]:"",s=t===0||!/[a-zA-Z0-9_?$]/.test(i),a=t+r<e.length?e[t+r]:"",c=t+r>=e.length||!/[a-zA-Z0-9_]/.test(a);return s&&c}convertCaseToIf(e){let t=this.extractWhenClauses(e),r=this.extractElseClause(e);if(t.length===0)throw new Ci("CASE expression must have at least one WHEN clause");let i=r!==null?r:'""';for(let s=t.length-1;s>=0;s--){let{condition:a,result:c}=t[s];i=`IF(${a}, ${c}, ${i})`}return i}extractWhenClauses(e){let t=[],r=e.replace(/^\s*CASE\s+/i,"").replace(/\s*END\s*$/i,""),i=this.findKeywordPositions(r,"WHEN"),s=this.findKeywordPositions(r,"ELSE"),a=s.length>0?s[0]:r.length;for(let c=0;c<i.length;c++){let u=i[c]+4,l=c+1<i.length?i[c+1]:a,f=r.substring(u,l).trim(),h=this.parseWhenClause(f);h&&t.push(h)}return t}findKeywordPositions(e,t){let r=[],i=e.toUpperCase(),s=0,a=0;for(;s<e.length;){let c=e[s];if(c==="'"||c==='"'){let u=c;for(s++;s<e.length&&e[s]!==u;)e[s]==="\\"&&s++,s++;s++;continue}if(c==="("){a++,s++;continue}if(c===")"){a--,s++;continue}if(a===0&&i.substring(s,s+t.length)===t&&this.isWordBoundary(e,s,t.length)){r.push(s),s+=t.length;continue}s++}return r}parseWhenClause(e){let t=this.findKeywordPositions(e,"THEN");if(t.length===0)throw new Ci(`WHEN clause missing THEN keyword: ${e.substring(0,50)}...`);let r=t[0],i=e.substring(0,r).trim(),s=e.substring(r+4).trim();if(!i)throw new Ci("WHEN clause has empty condition");if(!s)throw new Ci("WHEN clause has empty result");return{condition:i,result:s}}extractElseClause(e){let t=e.replace(/^\s*CASE\s+/i,"").replace(/\s*END\s*$/i,""),r=this.findKeywordPositions(t,"ELSE");if(r.length>0){let i=r[0];return t.substring(i+4).trim()}return null}};ka.CaseWhenTransformer=Hg;var Ci=class extends Error{static{o(this,"CaseWhenTransformerError")}constructor(e){super(`CASE WHEN transformation error: ${e}`),this.name="CaseWhenTransformerError"}};ka.CaseWhenTransformerError=Ci});var Qg=v(Ma=>{"use strict";Object.defineProperty(Ma,"__esModule",{value:!0});Ma.LateralTransformerError=Ma.LateralTransformer=void 0;var hf=class n{static{o(this,"LateralTransformer")}transform(e){let t=e,r,i=0,s=100;do if(r=t,t=this.transformSinglePass(t),i++,i>s)throw new Xi("Too many nested LATERAL joins (max 100 iterations)");while(t!==r);return t}hasLateral(e){return this.findLateralPositions(e).length>0}static isLateralJoin(e){if(e.type==="group"&&e.patterns){for(let t of e.patterns)if(t.type==="query"&&t.queryType==="SELECT"&&t.variables&&Array.isArray(t.variables)){for(let r of t.variables)if(r.termType==="Variable"&&r.value===n.LATERAL_MARKER)return!0}}if(e.type==="query"&&e.queryType==="SELECT"&&e.variables&&Array.isArray(e.variables)){for(let t of e.variables)if(t.termType==="Variable"&&t.value===n.LATERAL_MARKER)return!0}return!1}transformSinglePass(e){let t=this.findLateralPositions(e);if(t.length===0)return e;let r=e;for(let i=t.length-1;i>=0;i--){let s=t[i],a=this.extractLateralExpression(r,s);if(a){let c=this.transformLateral(a.content);r=r.substring(0,s)+c+r.substring(s+a.length)}}return r}findLateralPositions(e){let t=[],r=e.toUpperCase(),i=0;for(;i<e.length;){if(e[i]==="'"||e[i]==='"'){let s=e[i];for(i++;i<e.length&&e[i]!==s;)e[i]==="\\"&&i++,i++;i++;continue}if(e[i]==="#"){for(;i<e.length&&e[i]!==`
252
252
  `;)i++;continue}if(r.substring(i,i+7)==="LATERAL"&&this.isWordBoundary(e,i,7)){t.push(i),i+=7;continue}i++}return t}extractLateralExpression(e,t){let r=t+7;for(;r<e.length&&/\s/.test(e[r]);)r++;if(e[r]!=="{")throw new Xi(`Expected '{' after LATERAL keyword at position ${t}`);let i=1;for(r++;r<e.length&&i>0;){if(e[r]==="'"||e[r]==='"'){let s=e[r];for(r++;r<e.length&&e[r]!==s;)e[r]==="\\"&&r++,r++;r++;continue}if(e[r]==="#"){for(;r<e.length&&e[r]!==`
253
253
  `;)r++;continue}if(e[r]==="{"){i++,r++;continue}if(e[r]==="}"){if(i--,i===0){let s=e.substring(t,r+1);return{content:s,length:s.length}}r++;continue}r++}if(i>0)throw new Xi(`Unclosed LATERAL block at position ${t}`);return null}transformLateral(e){let t=e.indexOf("{");if(t===-1)throw new Xi("LATERAL expression missing opening brace");let r=e.substring(t+1,e.length-1).trim();if(!r.toUpperCase().trim().startsWith("SELECT"))throw new Xi("LATERAL block must contain a SELECT subquery");let a=r.toUpperCase().indexOf("SELECT")+6;for(;a<r.length&&/\s/.test(r[a]);)a++;let c=r.substring(a).toUpperCase();return c.startsWith("DISTINCT")?a+=8:c.startsWith("REDUCED")&&(a+=7),`{ ${r.substring(0,a)+` ?${n.LATERAL_MARKER}`+r.substring(a)} }`}isWordBoundary(e,t,r){let i=t>0?e[t-1]:"",s=t===0||!/[a-zA-Z0-9_]/.test(i),a=t+r<e.length?e[t+r]:"",c=t+r>=e.length||!/[a-zA-Z0-9_]/.test(a);return s&&c}};Ma.LateralTransformer=hf;hf.LATERAL_MARKER="__LATERAL_JOIN__";var Xi=class extends Error{static{o(this,"LateralTransformerError")}constructor(e){super(`LATERAL transformation error: ${e}`),this.name="LateralTransformerError"}};Ma.LateralTransformerError=Xi});var i_=v(Ji=>{"use strict";Object.defineProperty(Ji,"__esModule",{value:!0});Ji.PrefixStarTransformerError=Ji.PrefixStarTransformer=Ji.WellKnownPrefixResolver=void 0;var df=class{static{o(this,"WellKnownPrefixResolver")}constructor(){this.wellKnownPrefixes=new Map;let e=new Map;e.set("schema","http://schema.org/"),this.wellKnownPrefixes.set("http://schema.org/",e);let t=new Map;t.set("foaf","http://xmlns.com/foaf/0.1/"),this.wellKnownPrefixes.set("http://xmlns.com/foaf/0.1/",t);let r=new Map;r.set("dc","http://purl.org/dc/elements/1.1/"),r.set("dcterms","http://purl.org/dc/terms/"),this.wellKnownPrefixes.set("http://purl.org/dc/elements/1.1/",r),this.wellKnownPrefixes.set("http://purl.org/dc/terms/",r);let i=new Map;i.set("rdf","http://www.w3.org/1999/02/22-rdf-syntax-ns#"),i.set("rdfs","http://www.w3.org/2000/01/rdf-schema#"),this.wellKnownPrefixes.set("http://www.w3.org/1999/02/22-rdf-syntax-ns#",i),this.wellKnownPrefixes.set("http://www.w3.org/2000/01/rdf-schema#",i);let s=new Map;s.set("owl","http://www.w3.org/2002/07/owl#"),this.wellKnownPrefixes.set("http://www.w3.org/2002/07/owl#",s);let a=new Map;a.set("xsd","http://www.w3.org/2001/XMLSchema#"),this.wellKnownPrefixes.set("http://www.w3.org/2001/XMLSchema#",a);let c=new Map;c.set("skos","http://www.w3.org/2004/02/skos/core#"),this.wellKnownPrefixes.set("http://www.w3.org/2004/02/skos/core#",c);let u=new Map;u.set("prov","http://www.w3.org/ns/prov#"),this.wellKnownPrefixes.set("http://www.w3.org/ns/prov#",u);let l=new Map;l.set("geo","http://www.w3.org/2003/01/geo/wgs84_pos#"),this.wellKnownPrefixes.set("http://www.w3.org/2003/01/geo/wgs84_pos#",l);let f=new Map;f.set("dcat","http://www.w3.org/ns/dcat#"),this.wellKnownPrefixes.set("http://www.w3.org/ns/dcat#",f)}async resolve(e){let t=e.endsWith("#")||e.endsWith("/")?e:e+(e.includes("#")?"":"/"),r=this.wellKnownPrefixes.get(t);if(r)return r;let i=t.slice(0,-1),s=this.wellKnownPrefixes.get(i);return s||new Map}addVocabulary(e,t){this.wellKnownPrefixes.set(e,t)}};Ji.WellKnownPrefixResolver=df;var Yg=class{static{o(this,"PrefixStarTransformer")}constructor(e){this.resolver=e??new df}async transform(e){let t=this.findPrefixStarDeclarations(e);if(t.length===0)return e;let r=[],i=[];for(let a of t)try{let c=await this.resolver.resolve(a.uri);for(let[u,l]of c)r.push(`PREFIX ${u}: <${l}>`);if(c.size===0){let u=this.extractPrefixFromUri(a.uri);u&&r.push(`PREFIX ${u}: <${a.uri}>`)}}catch(c){let u=c instanceof Error?c.message:String(c);i.push(`Failed to resolve vocabulary ${a.uri}: ${u}`)}if(r.length===0&&i.length>0)throw new ja(i.join("; "));let s=e;for(let a=t.length-1;a>=0;a--){let c=t[a];s=s.substring(0,c.startPos)+s.substring(c.endPos)}return r.length>0&&(s=r.join(`
254
254
  `)+`
@@ -418,9 +418,9 @@ Check:
418
418
  `),I.length>0?J7(I,e.format):console.log("No triples generated."),e.stats&&(console.log(`
419
419
  \u{1F4CA} Execution Statistics:`),console.log(` Vault loading: ${h}ms`),console.log(` Query execution: ${L}ms`),console.log(` Total time: ${M}ms`),console.log(` Triples scanned: ${l.length}`),console.log(` Triples generated: ${I.length}`))}else{let I=await O.executeAll(w),L=Date.now()-T,M=Date.now()-r;if(t==="json"){let G=I.map(Me=>Me.toJSON()),Ee={query:i,count:I.length,bindings:G},je=Qe.success(Ee,{durationMs:M,itemCount:I.length,loadDurationMs:h,execDurationMs:L,triplesScanned:l.length});console.log(JSON.stringify(je,null,2))}else console.log(`\u2705 Found ${I.length} result(s) in ${L}ms
420
420
  `),I.length>0?X7(I,e.format):console.log("No results found."),e.stats&&(console.log(`
421
- \u{1F4CA} Execution Statistics:`),console.log(` Vault loading: ${h}ms`),console.log(` Query execution: ${L}ms`),console.log(` Total time: ${M}ms`),console.log(` Triples scanned: ${l.length}`),console.log(` Results returned: ${I.length}`))}}catch(r){K.handle(r)}})}o(S3,"sparqlQueryCommand");function K7(n){if(n.includes("SELECT")||n.includes("CONSTRUCT"))return n;let e=(0,M0.resolve)(n);return(0,zc.existsSync)(e)?(0,zc.readFileSync)(e,"utf-8"):n}o(K7,"loadQuery");function X7(n,e){switch(e){case"json":let t=new Eo;console.log(t.format(n));break;case"table":default:let r=new bo;console.log(r.format(n));break}}o(X7,"formatSelectResults");function J7(n,e){let t=new Wc;switch(e){case"json":console.log(t.formatJson(n));break;case"ntriples":console.log(t.formatNTriples(n));break;case"table":default:console.log(t.formatTable(n));break}}o(J7,"formatConstructResults");var AT=require("path");var Pt=Ne(yo()),hs=Ne(require("path"));var V3=Ne(R3(),1);var Yc=o(n=>{if(typeof n!="string")throw new TypeError("invalid pattern");if(n.length>65536)throw new TypeError("pattern is too long")},"assertValidPattern");var ak={"[:alnum:]":["\\p{L}\\p{Nl}\\p{Nd}",!0],"[:alpha:]":["\\p{L}\\p{Nl}",!0],"[:ascii:]":["\\x00-\\x7f",!1],"[:blank:]":["\\p{Zs}\\t",!0],"[:cntrl:]":["\\p{Cc}",!0],"[:digit:]":["\\p{Nd}",!0],"[:graph:]":["\\p{Z}\\p{C}",!0,!0],"[:lower:]":["\\p{Ll}",!0],"[:print:]":["\\p{C}",!0],"[:punct:]":["\\p{P}",!0],"[:space:]":["\\p{Z}\\t\\r\\n\\v\\f",!0],"[:upper:]":["\\p{Lu}",!0],"[:word:]":["\\p{L}\\p{Nl}\\p{Nd}\\p{Pc}",!0],"[:xdigit:]":["A-Fa-f0-9",!1]},Kc=o(n=>n.replace(/[[\]\\-]/g,"\\$&"),"braceEscape"),ok=o(n=>n.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&"),"regexpEscape"),F3=o(n=>n.join(""),"rangesToString"),N3=o((n,e)=>{let t=e;if(n.charAt(t)!=="[")throw new Error("not in a brace expression");let r=[],i=[],s=t+1,a=!1,c=!1,u=!1,l=!1,f=t,h="";e:for(;s<n.length;){let w=n.charAt(s);if((w==="!"||w==="^")&&s===t+1){l=!0,s++;continue}if(w==="]"&&a&&!u){f=s+1;break}if(a=!0,w==="\\"&&!u){u=!0,s++;continue}if(w==="["&&!u){for(let[T,[O,I,L]]of Object.entries(ak))if(n.startsWith(T,s)){if(h)return["$.",!1,n.length-t,!0];s+=T.length,L?i.push(O):r.push(O),c=c||I;continue e}}if(u=!1,h){w>h?r.push(Kc(h)+"-"+Kc(w)):w===h&&r.push(Kc(w)),h="",s++;continue}if(n.startsWith("-]",s+1)){r.push(Kc(w+"-")),s+=2;continue}if(n.startsWith("-",s+1)){h=w,s+=2;continue}r.push(Kc(w)),s++}if(f<s)return["",!1,0,!1];if(!r.length&&!i.length)return["$.",!1,n.length-t,!0];if(i.length===0&&r.length===1&&/^\\?.$/.test(r[0])&&!l){let w=r[0].length===2?r[0].slice(-1):r[0];return[ok(w),!1,f-t,!1]}let d="["+(l?"^":"")+F3(r)+"]",p="["+(l?"":"^")+F3(i)+"]";return[r.length&&i.length?"("+d+"|"+p+")":r.length?d:p,c,f-t,!0]},"parseClass");var Nn=o((n,{windowsPathsNoEscape:e=!1}={})=>e?n.replace(/\[([^\/\\])\]/g,"$1"):n.replace(/((?!\\).|^)\[([^\/\\])\]/g,"$1$2").replace(/\\([^\/])/g,"$1"),"unescape");var ck=new Set(["!","?","+","*","@"]),L3=o(n=>ck.has(n),"isExtglobType"),uk="(?!(?:^|/)\\.\\.?(?:$|/))",_h="(?!\\.)",lk=new Set(["[","."]),fk=new Set(["..","."]),hk=new Set("().*{}+?[]^$\\!"),dk=o(n=>n.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&"),"regExpEscape"),V0="[^/]",k3=V0+"*?",M3=V0+"+?",To=class n{static{o(this,"AST")}type;#e;#t;#s=!1;#n=[];#a;#_;#u;#f=!1;#o;#c;#i=!1;constructor(e,t,r={}){this.type=e,e&&(this.#t=!0),this.#a=t,this.#e=this.#a?this.#a.#e:this,this.#o=this.#e===this?r:this.#e.#o,this.#u=this.#e===this?[]:this.#e.#u,e==="!"&&!this.#e.#f&&this.#u.push(this),this.#_=this.#a?this.#a.#n.length:0}get hasMagic(){if(this.#t!==void 0)return this.#t;for(let e of this.#n)if(typeof e!="string"&&(e.type||e.hasMagic))return this.#t=!0;return this.#t}toString(){return this.#c!==void 0?this.#c:this.type?this.#c=this.type+"("+this.#n.map(e=>String(e)).join("|")+")":this.#c=this.#n.map(e=>String(e)).join("")}#g(){if(this!==this.#e)throw new Error("should only call on root");if(this.#f)return this;this.toString(),this.#f=!0;let e;for(;e=this.#u.pop();){if(e.type!=="!")continue;let t=e,r=t.#a;for(;r;){for(let i=t.#_+1;!r.type&&i<r.#n.length;i++)for(let s of e.#n){if(typeof s=="string")throw new Error("string part in extglob AST??");s.copyIn(r.#n[i])}t=r,r=t.#a}}return this}push(...e){for(let t of e)if(t!==""){if(typeof t!="string"&&!(t instanceof n&&t.#a===this))throw new Error("invalid part: "+t);this.#n.push(t)}}toJSON(){let e=this.type===null?this.#n.slice().map(t=>typeof t=="string"?t:t.toJSON()):[this.type,...this.#n.map(t=>t.toJSON())];return this.isStart()&&!this.type&&e.unshift([]),this.isEnd()&&(this===this.#e||this.#e.#f&&this.#a?.type==="!")&&e.push({}),e}isStart(){if(this.#e===this)return!0;if(!this.#a?.isStart())return!1;if(this.#_===0)return!0;let e=this.#a;for(let t=0;t<this.#_;t++){let r=e.#n[t];if(!(r instanceof n&&r.type==="!"))return!1}return!0}isEnd(){if(this.#e===this||this.#a?.type==="!")return!0;if(!this.#a?.isEnd())return!1;if(!this.type)return this.#a?.isEnd();let e=this.#a?this.#a.#n.length:0;return this.#_===e-1}copyIn(e){typeof e=="string"?this.push(e):this.push(e.clone(this))}clone(e){let t=new n(this.type,e);for(let r of this.#n)t.copyIn(r);return t}static#y(e,t,r,i){let s=!1,a=!1,c=-1,u=!1;if(t.type===null){let p=r,S="";for(;p<e.length;){let w=e.charAt(p++);if(s||w==="\\"){s=!s,S+=w;continue}if(a){p===c+1?(w==="^"||w==="!")&&(u=!0):w==="]"&&!(p===c+2&&u)&&(a=!1),S+=w;continue}else if(w==="["){a=!0,c=p,u=!1,S+=w;continue}if(!i.noext&&L3(w)&&e.charAt(p)==="("){t.push(S),S="";let T=new n(w,t);p=n.#y(e,T,p,i),t.push(T);continue}S+=w}return t.push(S),p}let l=r+1,f=new n(null,t),h=[],d="";for(;l<e.length;){let p=e.charAt(l++);if(s||p==="\\"){s=!s,d+=p;continue}if(a){l===c+1?(p==="^"||p==="!")&&(u=!0):p==="]"&&!(l===c+2&&u)&&(a=!1),d+=p;continue}else if(p==="["){a=!0,c=l,u=!1,d+=p;continue}if(L3(p)&&e.charAt(l)==="("){f.push(d),d="";let S=new n(p,f);f.push(S),l=n.#y(e,S,l,i);continue}if(p==="|"){f.push(d),d="",h.push(f),f=new n(null,t);continue}if(p===")")return d===""&&t.#n.length===0&&(t.#i=!0),f.push(d),d="",t.push(...h,f),l;d+=p}return t.type=null,t.#t=void 0,t.#n=[e.substring(r-1)],l}static fromGlob(e,t={}){let r=new n(null,void 0,t);return n.#y(e,r,0,t),r}toMMPattern(){if(this!==this.#e)return this.#e.toMMPattern();let e=this.toString(),[t,r,i,s]=this.toRegExpSource();if(!(i||this.#t||this.#o.nocase&&!this.#o.nocaseMagicOnly&&e.toUpperCase()!==e.toLowerCase()))return r;let c=(this.#o.nocase?"i":"")+(s?"u":"");return Object.assign(new RegExp(`^${t}$`,c),{_src:t,_glob:e})}get options(){return this.#o}toRegExpSource(e){let t=e??!!this.#o.dot;if(this.#e===this&&this.#g(),!this.type){let u=this.isStart()&&this.isEnd(),l=this.#n.map(p=>{let[S,w,T,O]=typeof p=="string"?n.#h(p,this.#t,u):p.toRegExpSource(e);return this.#t=this.#t||T,this.#s=this.#s||O,S}).join(""),f="";if(this.isStart()&&typeof this.#n[0]=="string"&&!(this.#n.length===1&&fk.has(this.#n[0]))){let S=lk,w=t&&S.has(l.charAt(0))||l.startsWith("\\.")&&S.has(l.charAt(2))||l.startsWith("\\.\\.")&&S.has(l.charAt(4)),T=!t&&!e&&S.has(l.charAt(0));f=w?uk:T?_h:""}let h="";return this.isEnd()&&this.#e.#f&&this.#a?.type==="!"&&(h="(?:$|\\/)"),[f+l+h,Nn(l),this.#t=!!this.#t,this.#s]}let r=this.type==="*"||this.type==="+",i=this.type==="!"?"(?:(?!(?:":"(?:",s=this.#d(t);if(this.isStart()&&this.isEnd()&&!s&&this.type!=="!"){let u=this.toString();return this.#n=[u],this.type=null,this.#t=void 0,[u,Nn(this.toString()),!1,!1]}let a=!r||e||t||!_h?"":this.#d(!0);a===s&&(a=""),a&&(s=`(?:${s})(?:${a})*?`);let c="";if(this.type==="!"&&this.#i)c=(this.isStart()&&!t?_h:"")+M3;else{let u=this.type==="!"?"))"+(this.isStart()&&!t&&!e?_h:"")+k3+")":this.type==="@"?")":this.type==="?"?")?":this.type==="+"&&a?")":this.type==="*"&&a?")?":`)${this.type}`;c=i+s+u}return[c,Nn(s),this.#t=!!this.#t,this.#s]}#d(e){return this.#n.map(t=>{if(typeof t=="string")throw new Error("string type in extglob ast??");let[r,i,s,a]=t.toRegExpSource(e);return this.#s=this.#s||a,r}).filter(t=>!(this.isStart()&&this.isEnd())||!!t).join("|")}static#h(e,t,r=!1){let i=!1,s="",a=!1;for(let c=0;c<e.length;c++){let u=e.charAt(c);if(i){i=!1,s+=(hk.has(u)?"\\":"")+u;continue}if(u==="\\"){c===e.length-1?s+="\\\\":i=!0;continue}if(u==="["){let[l,f,h,d]=N3(e,c);if(h){s+=l,a=a||f,c+=h-1,t=t||d;continue}}if(u==="*"){r&&e==="*"?s+=M3:s+=k3,t=!0;continue}if(u==="?"){s+=V0,t=!0;continue}s+=dk(u)}return[s,Nn(e),!!t,a]}};var Ao=o((n,{windowsPathsNoEscape:e=!1}={})=>e?n.replace(/[?*()[\]]/g,"[$&]"):n.replace(/[?*()[\]\\]/g,"\\$&"),"escape");var Xt=o((n,e,t={})=>(Yc(e),!t.nocomment&&e.charAt(0)==="#"?!1:new Ur(e,t).match(n)),"minimatch"),pk=/^\*+([^+@!?\*\[\(]*)$/,mk=o(n=>e=>!e.startsWith(".")&&e.endsWith(n),"starDotExtTest"),gk=o(n=>e=>e.endsWith(n),"starDotExtTestDot"),yk=o(n=>(n=n.toLowerCase(),e=>!e.startsWith(".")&&e.toLowerCase().endsWith(n)),"starDotExtTestNocase"),vk=o(n=>(n=n.toLowerCase(),e=>e.toLowerCase().endsWith(n)),"starDotExtTestNocaseDot"),Sk=/^\*+\.\*+$/,_k=o(n=>!n.startsWith(".")&&n.includes("."),"starDotStarTest"),wk=o(n=>n!=="."&&n!==".."&&n.includes("."),"starDotStarTestDot"),bk=/^\.\*+$/,Ek=o(n=>n!=="."&&n!==".."&&n.startsWith("."),"dotStarTest"),Tk=/^\*+$/,Ak=o(n=>n.length!==0&&!n.startsWith("."),"starTest"),Ck=o(n=>n.length!==0&&n!=="."&&n!=="..","starTestDot"),xk=/^\?+([^+@!?\*\[\(]*)?$/,Ok=o(([n,e=""])=>{let t=U3([n]);return e?(e=e.toLowerCase(),r=>t(r)&&r.toLowerCase().endsWith(e)):t},"qmarksTestNocase"),Ik=o(([n,e=""])=>{let t=B3([n]);return e?(e=e.toLowerCase(),r=>t(r)&&r.toLowerCase().endsWith(e)):t},"qmarksTestNocaseDot"),Pk=o(([n,e=""])=>{let t=B3([n]);return e?r=>t(r)&&r.endsWith(e):t},"qmarksTestDot"),Dk=o(([n,e=""])=>{let t=U3([n]);return e?r=>t(r)&&r.endsWith(e):t},"qmarksTest"),U3=o(([n])=>{let e=n.length;return t=>t.length===e&&!t.startsWith(".")},"qmarksTestNoExt"),B3=o(([n])=>{let e=n.length;return t=>t.length===e&&t!=="."&&t!==".."},"qmarksTestNoExtDot"),q3=typeof process=="object"&&process?typeof process.env=="object"&&process.env&&process.env.__MINIMATCH_TESTING_PLATFORM__||process.platform:"posix",j3={win32:{sep:"\\"},posix:{sep:"/"}},Rk=q3==="win32"?j3.win32.sep:j3.posix.sep;Xt.sep=Rk;var Kt=Symbol("globstar **");Xt.GLOBSTAR=Kt;var Fk="[^/]",Nk=Fk+"*?",Lk="(?:(?!(?:\\/|^)(?:\\.{1,2})($|\\/)).)*?",kk="(?:(?!(?:\\/|^)\\.).)*?",Mk=o((n,e={})=>t=>Xt(t,n,e),"filter");Xt.filter=Mk;var tn=o((n,e={})=>Object.assign({},n,e),"ext"),jk=o(n=>{if(!n||typeof n!="object"||!Object.keys(n).length)return Xt;let e=Xt;return Object.assign(o((r,i,s={})=>e(r,i,tn(n,s)),"m"),{Minimatch:class extends e.Minimatch{static{o(this,"Minimatch")}constructor(i,s={}){super(i,tn(n,s))}static defaults(i){return e.defaults(tn(n,i)).Minimatch}},AST:class extends e.AST{static{o(this,"AST")}constructor(i,s,a={}){super(i,s,tn(n,a))}static fromGlob(i,s={}){return e.AST.fromGlob(i,tn(n,s))}},unescape:o((r,i={})=>e.unescape(r,tn(n,i)),"unescape"),escape:o((r,i={})=>e.escape(r,tn(n,i)),"escape"),filter:o((r,i={})=>e.filter(r,tn(n,i)),"filter"),defaults:o(r=>e.defaults(tn(n,r)),"defaults"),makeRe:o((r,i={})=>e.makeRe(r,tn(n,i)),"makeRe"),braceExpand:o((r,i={})=>e.braceExpand(r,tn(n,i)),"braceExpand"),match:o((r,i,s={})=>e.match(r,i,tn(n,s)),"match"),sep:e.sep,GLOBSTAR:Kt})},"defaults");Xt.defaults=jk;var G3=o((n,e={})=>(Yc(n),e.nobrace||!/\{(?:(?!\{).)*\}/.test(n)?[n]:(0,V3.default)(n)),"braceExpand");Xt.braceExpand=G3;var $k=o((n,e={})=>new Ur(n,e).makeRe(),"makeRe");Xt.makeRe=$k;var Vk=o((n,e,t={})=>{let r=new Ur(e,t);return n=n.filter(i=>r.match(i)),r.options.nonull&&!n.length&&n.push(e),n},"match");Xt.match=Vk;var $3=/[?*]|[+@!]\(.*?\)|\[|\]/,Uk=o(n=>n.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&"),"regExpEscape"),Ur=class{static{o(this,"Minimatch")}options;set;pattern;windowsPathsNoEscape;nonegate;negate;comment;empty;preserveMultipleSlashes;partial;globSet;globParts;nocase;isWindows;platform;windowsNoMagicRoot;regexp;constructor(e,t={}){Yc(e),t=t||{},this.options=t,this.pattern=e,this.platform=t.platform||q3,this.isWindows=this.platform==="win32",this.windowsPathsNoEscape=!!t.windowsPathsNoEscape||t.allowWindowsEscape===!1,this.windowsPathsNoEscape&&(this.pattern=this.pattern.replace(/\\/g,"/")),this.preserveMultipleSlashes=!!t.preserveMultipleSlashes,this.regexp=null,this.negate=!1,this.nonegate=!!t.nonegate,this.comment=!1,this.empty=!1,this.partial=!!t.partial,this.nocase=!!this.options.nocase,this.windowsNoMagicRoot=t.windowsNoMagicRoot!==void 0?t.windowsNoMagicRoot:!!(this.isWindows&&this.nocase),this.globSet=[],this.globParts=[],this.set=[],this.make()}hasMagic(){if(this.options.magicalBraces&&this.set.length>1)return!0;for(let e of this.set)for(let t of e)if(typeof t!="string")return!0;return!1}debug(...e){}make(){let e=this.pattern,t=this.options;if(!t.nocomment&&e.charAt(0)==="#"){this.comment=!0;return}if(!e){this.empty=!0;return}this.parseNegate(),this.globSet=[...new Set(this.braceExpand())],t.debug&&(this.debug=(...s)=>console.error(...s)),this.debug(this.pattern,this.globSet);let r=this.globSet.map(s=>this.slashSplit(s));this.globParts=this.preprocess(r),this.debug(this.pattern,this.globParts);let i=this.globParts.map((s,a,c)=>{if(this.isWindows&&this.windowsNoMagicRoot){let u=s[0]===""&&s[1]===""&&(s[2]==="?"||!$3.test(s[2]))&&!$3.test(s[3]),l=/^[a-z]:/i.test(s[0]);if(u)return[...s.slice(0,4),...s.slice(4).map(f=>this.parse(f))];if(l)return[s[0],...s.slice(1).map(f=>this.parse(f))]}return s.map(u=>this.parse(u))});if(this.debug(this.pattern,i),this.set=i.filter(s=>s.indexOf(!1)===-1),this.isWindows)for(let s=0;s<this.set.length;s++){let a=this.set[s];a[0]===""&&a[1]===""&&this.globParts[s][2]==="?"&&typeof a[3]=="string"&&/^[a-z]:$/i.test(a[3])&&(a[2]="?")}this.debug(this.pattern,this.set)}preprocess(e){if(this.options.noglobstar)for(let r=0;r<e.length;r++)for(let i=0;i<e[r].length;i++)e[r][i]==="**"&&(e[r][i]="*");let{optimizationLevel:t=1}=this.options;return t>=2?(e=this.firstPhasePreProcess(e),e=this.secondPhasePreProcess(e)):t>=1?e=this.levelOneOptimize(e):e=this.adjascentGlobstarOptimize(e),e}adjascentGlobstarOptimize(e){return e.map(t=>{let r=-1;for(;(r=t.indexOf("**",r+1))!==-1;){let i=r;for(;t[i+1]==="**";)i++;i!==r&&t.splice(r,i-r)}return t})}levelOneOptimize(e){return e.map(t=>(t=t.reduce((r,i)=>{let s=r[r.length-1];return i==="**"&&s==="**"?r:i===".."&&s&&s!==".."&&s!=="."&&s!=="**"?(r.pop(),r):(r.push(i),r)},[]),t.length===0?[""]:t))}levelTwoFileOptimize(e){Array.isArray(e)||(e=this.slashSplit(e));let t=!1;do{if(t=!1,!this.preserveMultipleSlashes){for(let i=1;i<e.length-1;i++){let s=e[i];i===1&&s===""&&e[0]===""||(s==="."||s==="")&&(t=!0,e.splice(i,1),i--)}e[0]==="."&&e.length===2&&(e[1]==="."||e[1]==="")&&(t=!0,e.pop())}let r=0;for(;(r=e.indexOf("..",r+1))!==-1;){let i=e[r-1];i&&i!=="."&&i!==".."&&i!=="**"&&(t=!0,e.splice(r-1,2),r-=2)}}while(t);return e.length===0?[""]:e}firstPhasePreProcess(e){let t=!1;do{t=!1;for(let r of e){let i=-1;for(;(i=r.indexOf("**",i+1))!==-1;){let a=i;for(;r[a+1]==="**";)a++;a>i&&r.splice(i+1,a-i);let c=r[i+1],u=r[i+2],l=r[i+3];if(c!==".."||!u||u==="."||u===".."||!l||l==="."||l==="..")continue;t=!0,r.splice(i,1);let f=r.slice(0);f[i]="**",e.push(f),i--}if(!this.preserveMultipleSlashes){for(let a=1;a<r.length-1;a++){let c=r[a];a===1&&c===""&&r[0]===""||(c==="."||c==="")&&(t=!0,r.splice(a,1),a--)}r[0]==="."&&r.length===2&&(r[1]==="."||r[1]==="")&&(t=!0,r.pop())}let s=0;for(;(s=r.indexOf("..",s+1))!==-1;){let a=r[s-1];if(a&&a!=="."&&a!==".."&&a!=="**"){t=!0;let u=s===1&&r[s+1]==="**"?["."]:[];r.splice(s-1,2,...u),r.length===0&&r.push(""),s-=2}}}}while(t);return e}secondPhasePreProcess(e){for(let t=0;t<e.length-1;t++)for(let r=t+1;r<e.length;r++){let i=this.partsMatch(e[t],e[r],!this.preserveMultipleSlashes);if(i){e[t]=[],e[r]=i;break}}return e.filter(t=>t.length)}partsMatch(e,t,r=!1){let i=0,s=0,a=[],c="";for(;i<e.length&&s<t.length;)if(e[i]===t[s])a.push(c==="b"?t[s]:e[i]),i++,s++;else if(r&&e[i]==="**"&&t[s]===e[i+1])a.push(e[i]),i++;else if(r&&t[s]==="**"&&e[i]===t[s+1])a.push(t[s]),s++;else if(e[i]==="*"&&t[s]&&(this.options.dot||!t[s].startsWith("."))&&t[s]!=="**"){if(c==="b")return!1;c="a",a.push(e[i]),i++,s++}else if(t[s]==="*"&&e[i]&&(this.options.dot||!e[i].startsWith("."))&&e[i]!=="**"){if(c==="a")return!1;c="b",a.push(t[s]),i++,s++}else return!1;return e.length===t.length&&a}parseNegate(){if(this.nonegate)return;let e=this.pattern,t=!1,r=0;for(let i=0;i<e.length&&e.charAt(i)==="!";i++)t=!t,r++;r&&(this.pattern=e.slice(r)),this.negate=t}matchOne(e,t,r=!1){let i=this.options;if(this.isWindows){let w=typeof e[0]=="string"&&/^[a-z]:$/i.test(e[0]),T=!w&&e[0]===""&&e[1]===""&&e[2]==="?"&&/^[a-z]:$/i.test(e[3]),O=typeof t[0]=="string"&&/^[a-z]:$/i.test(t[0]),I=!O&&t[0]===""&&t[1]===""&&t[2]==="?"&&typeof t[3]=="string"&&/^[a-z]:$/i.test(t[3]),L=T?3:w?0:void 0,M=I?3:O?0:void 0;if(typeof L=="number"&&typeof M=="number"){let[G,Ee]=[e[L],t[M]];G.toLowerCase()===Ee.toLowerCase()&&(t[M]=G,M>L?t=t.slice(M):L>M&&(e=e.slice(L)))}}let{optimizationLevel:s=1}=this.options;s>=2&&(e=this.levelTwoFileOptimize(e)),this.debug("matchOne",this,{file:e,pattern:t}),this.debug("matchOne",e.length,t.length);for(var a=0,c=0,u=e.length,l=t.length;a<u&&c<l;a++,c++){this.debug("matchOne loop");var f=t[c],h=e[a];if(this.debug(t,f,h),f===!1)return!1;if(f===Kt){this.debug("GLOBSTAR",[t,f,h]);var d=a,p=c+1;if(p===l){for(this.debug("** at the end");a<u;a++)if(e[a]==="."||e[a]===".."||!i.dot&&e[a].charAt(0)===".")return!1;return!0}for(;d<u;){var S=e[d];if(this.debug(`
421
+ \u{1F4CA} Execution Statistics:`),console.log(` Vault loading: ${h}ms`),console.log(` Query execution: ${L}ms`),console.log(` Total time: ${M}ms`),console.log(` Triples scanned: ${l.length}`),console.log(` Results returned: ${I.length}`))}}catch(r){K.handle(r)}})}o(S3,"sparqlQueryCommand");function K7(n){if(n.includes("SELECT")||n.includes("CONSTRUCT"))return n;let e=(0,M0.resolve)(n);return(0,zc.existsSync)(e)?(0,zc.readFileSync)(e,"utf-8"):n}o(K7,"loadQuery");function X7(n,e){switch(e){case"json":let t=new Eo;console.log(t.format(n));break;case"table":default:let r=new bo;console.log(r.format(n));break}}o(X7,"formatSelectResults");function J7(n,e){let t=new Wc;switch(e){case"json":console.log(t.formatJson(n));break;case"ntriples":console.log(t.formatNTriples(n));break;case"table":default:console.log(t.formatTable(n));break}}o(J7,"formatConstructResults");var AT=require("path");var Pt=Ne(yo()),hs=Ne(require("path"));var V3=Ne(R3(),1);var Yc=o(n=>{if(typeof n!="string")throw new TypeError("invalid pattern");if(n.length>65536)throw new TypeError("pattern is too long")},"assertValidPattern");var ak={"[:alnum:]":["\\p{L}\\p{Nl}\\p{Nd}",!0],"[:alpha:]":["\\p{L}\\p{Nl}",!0],"[:ascii:]":["\\x00-\\x7f",!1],"[:blank:]":["\\p{Zs}\\t",!0],"[:cntrl:]":["\\p{Cc}",!0],"[:digit:]":["\\p{Nd}",!0],"[:graph:]":["\\p{Z}\\p{C}",!0,!0],"[:lower:]":["\\p{Ll}",!0],"[:print:]":["\\p{C}",!0],"[:punct:]":["\\p{P}",!0],"[:space:]":["\\p{Z}\\t\\r\\n\\v\\f",!0],"[:upper:]":["\\p{Lu}",!0],"[:word:]":["\\p{L}\\p{Nl}\\p{Nd}\\p{Pc}",!0],"[:xdigit:]":["A-Fa-f0-9",!1]},Kc=o(n=>n.replace(/[[\]\\-]/g,"\\$&"),"braceEscape"),ok=o(n=>n.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&"),"regexpEscape"),F3=o(n=>n.join(""),"rangesToString"),N3=o((n,e)=>{let t=e;if(n.charAt(t)!=="[")throw new Error("not in a brace expression");let r=[],i=[],s=t+1,a=!1,c=!1,u=!1,l=!1,f=t,h="";e:for(;s<n.length;){let w=n.charAt(s);if((w==="!"||w==="^")&&s===t+1){l=!0,s++;continue}if(w==="]"&&a&&!u){f=s+1;break}if(a=!0,w==="\\"&&!u){u=!0,s++;continue}if(w==="["&&!u){for(let[T,[O,I,L]]of Object.entries(ak))if(n.startsWith(T,s)){if(h)return["$.",!1,n.length-t,!0];s+=T.length,L?i.push(O):r.push(O),c=c||I;continue e}}if(u=!1,h){w>h?r.push(Kc(h)+"-"+Kc(w)):w===h&&r.push(Kc(w)),h="",s++;continue}if(n.startsWith("-]",s+1)){r.push(Kc(w+"-")),s+=2;continue}if(n.startsWith("-",s+1)){h=w,s+=2;continue}r.push(Kc(w)),s++}if(f<s)return["",!1,0,!1];if(!r.length&&!i.length)return["$.",!1,n.length-t,!0];if(i.length===0&&r.length===1&&/^\\?.$/.test(r[0])&&!l){let w=r[0].length===2?r[0].slice(-1):r[0];return[ok(w),!1,f-t,!1]}let d="["+(l?"^":"")+F3(r)+"]",p="["+(l?"":"^")+F3(i)+"]";return[r.length&&i.length?"("+d+"|"+p+")":r.length?d:p,c,f-t,!0]},"parseClass");var Nn=o((n,{windowsPathsNoEscape:e=!1}={})=>e?n.replace(/\[([^\/\\])\]/g,"$1"):n.replace(/((?!\\).|^)\[([^\/\\])\]/g,"$1$2").replace(/\\([^\/])/g,"$1"),"unescape");var ck=new Set(["!","?","+","*","@"]),L3=o(n=>ck.has(n),"isExtglobType"),uk="(?!(?:^|/)\\.\\.?(?:$|/))",_h="(?!\\.)",lk=new Set(["[","."]),fk=new Set(["..","."]),hk=new Set("().*{}+?[]^$\\!"),dk=o(n=>n.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&"),"regExpEscape"),V0="[^/]",k3=V0+"*?",M3=V0+"+?",To=class n{static{o(this,"AST")}type;#e;#t;#s=!1;#n=[];#a;#_;#u;#f=!1;#o;#c;#i=!1;constructor(e,t,r={}){this.type=e,e&&(this.#t=!0),this.#a=t,this.#e=this.#a?this.#a.#e:this,this.#o=this.#e===this?r:this.#e.#o,this.#u=this.#e===this?[]:this.#e.#u,e==="!"&&!this.#e.#f&&this.#u.push(this),this.#_=this.#a?this.#a.#n.length:0}get hasMagic(){if(this.#t!==void 0)return this.#t;for(let e of this.#n)if(typeof e!="string"&&(e.type||e.hasMagic))return this.#t=!0;return this.#t}toString(){return this.#c!==void 0?this.#c:this.type?this.#c=this.type+"("+this.#n.map(e=>String(e)).join("|")+")":this.#c=this.#n.map(e=>String(e)).join("")}#g(){if(this!==this.#e)throw new Error("should only call on root");if(this.#f)return this;this.toString(),this.#f=!0;let e;for(;e=this.#u.pop();){if(e.type!=="!")continue;let t=e,r=t.#a;for(;r;){for(let i=t.#_+1;!r.type&&i<r.#n.length;i++)for(let s of e.#n){if(typeof s=="string")throw new Error("string part in extglob AST??");s.copyIn(r.#n[i])}t=r,r=t.#a}}return this}push(...e){for(let t of e)if(t!==""){if(typeof t!="string"&&!(t instanceof n&&t.#a===this))throw new Error("invalid part: "+t);this.#n.push(t)}}toJSON(){let e=this.type===null?this.#n.slice().map(t=>typeof t=="string"?t:t.toJSON()):[this.type,...this.#n.map(t=>t.toJSON())];return this.isStart()&&!this.type&&e.unshift([]),this.isEnd()&&(this===this.#e||this.#e.#f&&this.#a?.type==="!")&&e.push({}),e}isStart(){if(this.#e===this)return!0;if(!this.#a?.isStart())return!1;if(this.#_===0)return!0;let e=this.#a;for(let t=0;t<this.#_;t++){let r=e.#n[t];if(!(r instanceof n&&r.type==="!"))return!1}return!0}isEnd(){if(this.#e===this||this.#a?.type==="!")return!0;if(!this.#a?.isEnd())return!1;if(!this.type)return this.#a?.isEnd();let e=this.#a?this.#a.#n.length:0;return this.#_===e-1}copyIn(e){typeof e=="string"?this.push(e):this.push(e.clone(this))}clone(e){let t=new n(this.type,e);for(let r of this.#n)t.copyIn(r);return t}static#y(e,t,r,i){let s=!1,a=!1,c=-1,u=!1;if(t.type===null){let p=r,S="";for(;p<e.length;){let w=e.charAt(p++);if(s||w==="\\"){s=!s,S+=w;continue}if(a){p===c+1?(w==="^"||w==="!")&&(u=!0):w==="]"&&!(p===c+2&&u)&&(a=!1),S+=w;continue}else if(w==="["){a=!0,c=p,u=!1,S+=w;continue}if(!i.noext&&L3(w)&&e.charAt(p)==="("){t.push(S),S="";let T=new n(w,t);p=n.#y(e,T,p,i),t.push(T);continue}S+=w}return t.push(S),p}let l=r+1,f=new n(null,t),h=[],d="";for(;l<e.length;){let p=e.charAt(l++);if(s||p==="\\"){s=!s,d+=p;continue}if(a){l===c+1?(p==="^"||p==="!")&&(u=!0):p==="]"&&!(l===c+2&&u)&&(a=!1),d+=p;continue}else if(p==="["){a=!0,c=l,u=!1,d+=p;continue}if(L3(p)&&e.charAt(l)==="("){f.push(d),d="";let S=new n(p,f);f.push(S),l=n.#y(e,S,l,i);continue}if(p==="|"){f.push(d),d="",h.push(f),f=new n(null,t);continue}if(p===")")return d===""&&t.#n.length===0&&(t.#i=!0),f.push(d),d="",t.push(...h,f),l;d+=p}return t.type=null,t.#t=void 0,t.#n=[e.substring(r-1)],l}static fromGlob(e,t={}){let r=new n(null,void 0,t);return n.#y(e,r,0,t),r}toMMPattern(){if(this!==this.#e)return this.#e.toMMPattern();let e=this.toString(),[t,r,i,s]=this.toRegExpSource();if(!(i||this.#t||this.#o.nocase&&!this.#o.nocaseMagicOnly&&e.toUpperCase()!==e.toLowerCase()))return r;let c=(this.#o.nocase?"i":"")+(s?"u":"");return Object.assign(new RegExp(`^${t}$`,c),{_src:t,_glob:e})}get options(){return this.#o}toRegExpSource(e){let t=e??!!this.#o.dot;if(this.#e===this&&this.#g(),!this.type){let u=this.isStart()&&this.isEnd(),l=this.#n.map(p=>{let[S,w,T,O]=typeof p=="string"?n.#h(p,this.#t,u):p.toRegExpSource(e);return this.#t=this.#t||T,this.#s=this.#s||O,S}).join(""),f="";if(this.isStart()&&typeof this.#n[0]=="string"&&!(this.#n.length===1&&fk.has(this.#n[0]))){let S=lk,w=t&&S.has(l.charAt(0))||l.startsWith("\\.")&&S.has(l.charAt(2))||l.startsWith("\\.\\.")&&S.has(l.charAt(4)),T=!t&&!e&&S.has(l.charAt(0));f=w?uk:T?_h:""}let h="";return this.isEnd()&&this.#e.#f&&this.#a?.type==="!"&&(h="(?:$|\\/)"),[f+l+h,Nn(l),this.#t=!!this.#t,this.#s]}let r=this.type==="*"||this.type==="+",i=this.type==="!"?"(?:(?!(?:":"(?:",s=this.#d(t);if(this.isStart()&&this.isEnd()&&!s&&this.type!=="!"){let u=this.toString();return this.#n=[u],this.type=null,this.#t=void 0,[u,Nn(this.toString()),!1,!1]}let a=!r||e||t||!_h?"":this.#d(!0);a===s&&(a=""),a&&(s=`(?:${s})(?:${a})*?`);let c="";if(this.type==="!"&&this.#i)c=(this.isStart()&&!t?_h:"")+M3;else{let u=this.type==="!"?"))"+(this.isStart()&&!t&&!e?_h:"")+k3+")":this.type==="@"?")":this.type==="?"?")?":this.type==="+"&&a?")":this.type==="*"&&a?")?":`)${this.type}`;c=i+s+u}return[c,Nn(s),this.#t=!!this.#t,this.#s]}#d(e){return this.#n.map(t=>{if(typeof t=="string")throw new Error("string type in extglob ast??");let[r,i,s,a]=t.toRegExpSource(e);return this.#s=this.#s||a,r}).filter(t=>!(this.isStart()&&this.isEnd())||!!t).join("|")}static#h(e,t,r=!1){let i=!1,s="",a=!1;for(let c=0;c<e.length;c++){let u=e.charAt(c);if(i){i=!1,s+=(hk.has(u)?"\\":"")+u;continue}if(u==="\\"){c===e.length-1?s+="\\\\":i=!0;continue}if(u==="["){let[l,f,h,d]=N3(e,c);if(h){s+=l,a=a||f,c+=h-1,t=t||d;continue}}if(u==="*"){r&&e==="*"?s+=M3:s+=k3,t=!0;continue}if(u==="?"){s+=V0,t=!0;continue}s+=dk(u)}return[s,Nn(e),!!t,a]}};var Ao=o((n,{windowsPathsNoEscape:e=!1}={})=>e?n.replace(/[?*()[\]]/g,"[$&]"):n.replace(/[?*()[\]\\]/g,"\\$&"),"escape");var Xt=o((n,e,t={})=>(Yc(e),!t.nocomment&&e.charAt(0)==="#"?!1:new Vr(e,t).match(n)),"minimatch"),pk=/^\*+([^+@!?\*\[\(]*)$/,mk=o(n=>e=>!e.startsWith(".")&&e.endsWith(n),"starDotExtTest"),gk=o(n=>e=>e.endsWith(n),"starDotExtTestDot"),yk=o(n=>(n=n.toLowerCase(),e=>!e.startsWith(".")&&e.toLowerCase().endsWith(n)),"starDotExtTestNocase"),vk=o(n=>(n=n.toLowerCase(),e=>e.toLowerCase().endsWith(n)),"starDotExtTestNocaseDot"),Sk=/^\*+\.\*+$/,_k=o(n=>!n.startsWith(".")&&n.includes("."),"starDotStarTest"),wk=o(n=>n!=="."&&n!==".."&&n.includes("."),"starDotStarTestDot"),bk=/^\.\*+$/,Ek=o(n=>n!=="."&&n!==".."&&n.startsWith("."),"dotStarTest"),Tk=/^\*+$/,Ak=o(n=>n.length!==0&&!n.startsWith("."),"starTest"),Ck=o(n=>n.length!==0&&n!=="."&&n!=="..","starTestDot"),xk=/^\?+([^+@!?\*\[\(]*)?$/,Ok=o(([n,e=""])=>{let t=U3([n]);return e?(e=e.toLowerCase(),r=>t(r)&&r.toLowerCase().endsWith(e)):t},"qmarksTestNocase"),Ik=o(([n,e=""])=>{let t=B3([n]);return e?(e=e.toLowerCase(),r=>t(r)&&r.toLowerCase().endsWith(e)):t},"qmarksTestNocaseDot"),Pk=o(([n,e=""])=>{let t=B3([n]);return e?r=>t(r)&&r.endsWith(e):t},"qmarksTestDot"),Dk=o(([n,e=""])=>{let t=U3([n]);return e?r=>t(r)&&r.endsWith(e):t},"qmarksTest"),U3=o(([n])=>{let e=n.length;return t=>t.length===e&&!t.startsWith(".")},"qmarksTestNoExt"),B3=o(([n])=>{let e=n.length;return t=>t.length===e&&t!=="."&&t!==".."},"qmarksTestNoExtDot"),q3=typeof process=="object"&&process?typeof process.env=="object"&&process.env&&process.env.__MINIMATCH_TESTING_PLATFORM__||process.platform:"posix",j3={win32:{sep:"\\"},posix:{sep:"/"}},Rk=q3==="win32"?j3.win32.sep:j3.posix.sep;Xt.sep=Rk;var Kt=Symbol("globstar **");Xt.GLOBSTAR=Kt;var Fk="[^/]",Nk=Fk+"*?",Lk="(?:(?!(?:\\/|^)(?:\\.{1,2})($|\\/)).)*?",kk="(?:(?!(?:\\/|^)\\.).)*?",Mk=o((n,e={})=>t=>Xt(t,n,e),"filter");Xt.filter=Mk;var tn=o((n,e={})=>Object.assign({},n,e),"ext"),jk=o(n=>{if(!n||typeof n!="object"||!Object.keys(n).length)return Xt;let e=Xt;return Object.assign(o((r,i,s={})=>e(r,i,tn(n,s)),"m"),{Minimatch:class extends e.Minimatch{static{o(this,"Minimatch")}constructor(i,s={}){super(i,tn(n,s))}static defaults(i){return e.defaults(tn(n,i)).Minimatch}},AST:class extends e.AST{static{o(this,"AST")}constructor(i,s,a={}){super(i,s,tn(n,a))}static fromGlob(i,s={}){return e.AST.fromGlob(i,tn(n,s))}},unescape:o((r,i={})=>e.unescape(r,tn(n,i)),"unescape"),escape:o((r,i={})=>e.escape(r,tn(n,i)),"escape"),filter:o((r,i={})=>e.filter(r,tn(n,i)),"filter"),defaults:o(r=>e.defaults(tn(n,r)),"defaults"),makeRe:o((r,i={})=>e.makeRe(r,tn(n,i)),"makeRe"),braceExpand:o((r,i={})=>e.braceExpand(r,tn(n,i)),"braceExpand"),match:o((r,i,s={})=>e.match(r,i,tn(n,s)),"match"),sep:e.sep,GLOBSTAR:Kt})},"defaults");Xt.defaults=jk;var G3=o((n,e={})=>(Yc(n),e.nobrace||!/\{(?:(?!\{).)*\}/.test(n)?[n]:(0,V3.default)(n)),"braceExpand");Xt.braceExpand=G3;var $k=o((n,e={})=>new Vr(n,e).makeRe(),"makeRe");Xt.makeRe=$k;var Vk=o((n,e,t={})=>{let r=new Vr(e,t);return n=n.filter(i=>r.match(i)),r.options.nonull&&!n.length&&n.push(e),n},"match");Xt.match=Vk;var $3=/[?*]|[+@!]\(.*?\)|\[|\]/,Uk=o(n=>n.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&"),"regExpEscape"),Vr=class{static{o(this,"Minimatch")}options;set;pattern;windowsPathsNoEscape;nonegate;negate;comment;empty;preserveMultipleSlashes;partial;globSet;globParts;nocase;isWindows;platform;windowsNoMagicRoot;regexp;constructor(e,t={}){Yc(e),t=t||{},this.options=t,this.pattern=e,this.platform=t.platform||q3,this.isWindows=this.platform==="win32",this.windowsPathsNoEscape=!!t.windowsPathsNoEscape||t.allowWindowsEscape===!1,this.windowsPathsNoEscape&&(this.pattern=this.pattern.replace(/\\/g,"/")),this.preserveMultipleSlashes=!!t.preserveMultipleSlashes,this.regexp=null,this.negate=!1,this.nonegate=!!t.nonegate,this.comment=!1,this.empty=!1,this.partial=!!t.partial,this.nocase=!!this.options.nocase,this.windowsNoMagicRoot=t.windowsNoMagicRoot!==void 0?t.windowsNoMagicRoot:!!(this.isWindows&&this.nocase),this.globSet=[],this.globParts=[],this.set=[],this.make()}hasMagic(){if(this.options.magicalBraces&&this.set.length>1)return!0;for(let e of this.set)for(let t of e)if(typeof t!="string")return!0;return!1}debug(...e){}make(){let e=this.pattern,t=this.options;if(!t.nocomment&&e.charAt(0)==="#"){this.comment=!0;return}if(!e){this.empty=!0;return}this.parseNegate(),this.globSet=[...new Set(this.braceExpand())],t.debug&&(this.debug=(...s)=>console.error(...s)),this.debug(this.pattern,this.globSet);let r=this.globSet.map(s=>this.slashSplit(s));this.globParts=this.preprocess(r),this.debug(this.pattern,this.globParts);let i=this.globParts.map((s,a,c)=>{if(this.isWindows&&this.windowsNoMagicRoot){let u=s[0]===""&&s[1]===""&&(s[2]==="?"||!$3.test(s[2]))&&!$3.test(s[3]),l=/^[a-z]:/i.test(s[0]);if(u)return[...s.slice(0,4),...s.slice(4).map(f=>this.parse(f))];if(l)return[s[0],...s.slice(1).map(f=>this.parse(f))]}return s.map(u=>this.parse(u))});if(this.debug(this.pattern,i),this.set=i.filter(s=>s.indexOf(!1)===-1),this.isWindows)for(let s=0;s<this.set.length;s++){let a=this.set[s];a[0]===""&&a[1]===""&&this.globParts[s][2]==="?"&&typeof a[3]=="string"&&/^[a-z]:$/i.test(a[3])&&(a[2]="?")}this.debug(this.pattern,this.set)}preprocess(e){if(this.options.noglobstar)for(let r=0;r<e.length;r++)for(let i=0;i<e[r].length;i++)e[r][i]==="**"&&(e[r][i]="*");let{optimizationLevel:t=1}=this.options;return t>=2?(e=this.firstPhasePreProcess(e),e=this.secondPhasePreProcess(e)):t>=1?e=this.levelOneOptimize(e):e=this.adjascentGlobstarOptimize(e),e}adjascentGlobstarOptimize(e){return e.map(t=>{let r=-1;for(;(r=t.indexOf("**",r+1))!==-1;){let i=r;for(;t[i+1]==="**";)i++;i!==r&&t.splice(r,i-r)}return t})}levelOneOptimize(e){return e.map(t=>(t=t.reduce((r,i)=>{let s=r[r.length-1];return i==="**"&&s==="**"?r:i===".."&&s&&s!==".."&&s!=="."&&s!=="**"?(r.pop(),r):(r.push(i),r)},[]),t.length===0?[""]:t))}levelTwoFileOptimize(e){Array.isArray(e)||(e=this.slashSplit(e));let t=!1;do{if(t=!1,!this.preserveMultipleSlashes){for(let i=1;i<e.length-1;i++){let s=e[i];i===1&&s===""&&e[0]===""||(s==="."||s==="")&&(t=!0,e.splice(i,1),i--)}e[0]==="."&&e.length===2&&(e[1]==="."||e[1]==="")&&(t=!0,e.pop())}let r=0;for(;(r=e.indexOf("..",r+1))!==-1;){let i=e[r-1];i&&i!=="."&&i!==".."&&i!=="**"&&(t=!0,e.splice(r-1,2),r-=2)}}while(t);return e.length===0?[""]:e}firstPhasePreProcess(e){let t=!1;do{t=!1;for(let r of e){let i=-1;for(;(i=r.indexOf("**",i+1))!==-1;){let a=i;for(;r[a+1]==="**";)a++;a>i&&r.splice(i+1,a-i);let c=r[i+1],u=r[i+2],l=r[i+3];if(c!==".."||!u||u==="."||u===".."||!l||l==="."||l==="..")continue;t=!0,r.splice(i,1);let f=r.slice(0);f[i]="**",e.push(f),i--}if(!this.preserveMultipleSlashes){for(let a=1;a<r.length-1;a++){let c=r[a];a===1&&c===""&&r[0]===""||(c==="."||c==="")&&(t=!0,r.splice(a,1),a--)}r[0]==="."&&r.length===2&&(r[1]==="."||r[1]==="")&&(t=!0,r.pop())}let s=0;for(;(s=r.indexOf("..",s+1))!==-1;){let a=r[s-1];if(a&&a!=="."&&a!==".."&&a!=="**"){t=!0;let u=s===1&&r[s+1]==="**"?["."]:[];r.splice(s-1,2,...u),r.length===0&&r.push(""),s-=2}}}}while(t);return e}secondPhasePreProcess(e){for(let t=0;t<e.length-1;t++)for(let r=t+1;r<e.length;r++){let i=this.partsMatch(e[t],e[r],!this.preserveMultipleSlashes);if(i){e[t]=[],e[r]=i;break}}return e.filter(t=>t.length)}partsMatch(e,t,r=!1){let i=0,s=0,a=[],c="";for(;i<e.length&&s<t.length;)if(e[i]===t[s])a.push(c==="b"?t[s]:e[i]),i++,s++;else if(r&&e[i]==="**"&&t[s]===e[i+1])a.push(e[i]),i++;else if(r&&t[s]==="**"&&e[i]===t[s+1])a.push(t[s]),s++;else if(e[i]==="*"&&t[s]&&(this.options.dot||!t[s].startsWith("."))&&t[s]!=="**"){if(c==="b")return!1;c="a",a.push(e[i]),i++,s++}else if(t[s]==="*"&&e[i]&&(this.options.dot||!e[i].startsWith("."))&&e[i]!=="**"){if(c==="a")return!1;c="b",a.push(t[s]),i++,s++}else return!1;return e.length===t.length&&a}parseNegate(){if(this.nonegate)return;let e=this.pattern,t=!1,r=0;for(let i=0;i<e.length&&e.charAt(i)==="!";i++)t=!t,r++;r&&(this.pattern=e.slice(r)),this.negate=t}matchOne(e,t,r=!1){let i=this.options;if(this.isWindows){let w=typeof e[0]=="string"&&/^[a-z]:$/i.test(e[0]),T=!w&&e[0]===""&&e[1]===""&&e[2]==="?"&&/^[a-z]:$/i.test(e[3]),O=typeof t[0]=="string"&&/^[a-z]:$/i.test(t[0]),I=!O&&t[0]===""&&t[1]===""&&t[2]==="?"&&typeof t[3]=="string"&&/^[a-z]:$/i.test(t[3]),L=T?3:w?0:void 0,M=I?3:O?0:void 0;if(typeof L=="number"&&typeof M=="number"){let[G,Ee]=[e[L],t[M]];G.toLowerCase()===Ee.toLowerCase()&&(t[M]=G,M>L?t=t.slice(M):L>M&&(e=e.slice(L)))}}let{optimizationLevel:s=1}=this.options;s>=2&&(e=this.levelTwoFileOptimize(e)),this.debug("matchOne",this,{file:e,pattern:t}),this.debug("matchOne",e.length,t.length);for(var a=0,c=0,u=e.length,l=t.length;a<u&&c<l;a++,c++){this.debug("matchOne loop");var f=t[c],h=e[a];if(this.debug(t,f,h),f===!1)return!1;if(f===Kt){this.debug("GLOBSTAR",[t,f,h]);var d=a,p=c+1;if(p===l){for(this.debug("** at the end");a<u;a++)if(e[a]==="."||e[a]===".."||!i.dot&&e[a].charAt(0)===".")return!1;return!0}for(;d<u;){var S=e[d];if(this.debug(`
422
422
  globstar while`,e,d,t,p,S),this.matchOne(e.slice(d),t.slice(p),r))return this.debug("globstar found match!",d,u,S),!0;if(S==="."||S===".."||!i.dot&&S.charAt(0)==="."){this.debug("dot detected!",e,d,t,p);break}this.debug("globstar swallow a segment, and continue"),d++}return!!(r&&(this.debug(`
423
- >>> no match, partial?`,e,d,t,p),d===u))}let w;if(typeof f=="string"?(w=h===f,this.debug("string match",f,h,w)):(w=f.test(h),this.debug("pattern match",f,h,w)),!w)return!1}if(a===u&&c===l)return!0;if(a===u)return r;if(c===l)return a===u-1&&e[a]==="";throw new Error("wtf?")}braceExpand(){return G3(this.pattern,this.options)}parse(e){Yc(e);let t=this.options;if(e==="**")return Kt;if(e==="")return"";let r,i=null;(r=e.match(Tk))?i=t.dot?Ck:Ak:(r=e.match(pk))?i=(t.nocase?t.dot?vk:yk:t.dot?gk:mk)(r[1]):(r=e.match(xk))?i=(t.nocase?t.dot?Ik:Ok:t.dot?Pk:Dk)(r):(r=e.match(Sk))?i=t.dot?wk:_k:(r=e.match(bk))&&(i=Ek);let s=To.fromGlob(e,this.options).toMMPattern();return i&&typeof s=="object"&&Reflect.defineProperty(s,"test",{value:i}),s}makeRe(){if(this.regexp||this.regexp===!1)return this.regexp;let e=this.set;if(!e.length)return this.regexp=!1,this.regexp;let t=this.options,r=t.noglobstar?Nk:t.dot?Lk:kk,i=new Set(t.nocase?["i"]:[]),s=e.map(u=>{let l=u.map(f=>{if(f instanceof RegExp)for(let h of f.flags.split(""))i.add(h);return typeof f=="string"?Uk(f):f===Kt?Kt:f._src});return l.forEach((f,h)=>{let d=l[h+1],p=l[h-1];f!==Kt||p===Kt||(p===void 0?d!==void 0&&d!==Kt?l[h+1]="(?:\\/|"+r+"\\/)?"+d:l[h]=r:d===void 0?l[h-1]=p+"(?:\\/|"+r+")?":d!==Kt&&(l[h-1]=p+"(?:\\/|\\/"+r+"\\/)"+d,l[h+1]=Kt))}),l.filter(f=>f!==Kt).join("/")}).join("|"),[a,c]=e.length>1?["(?:",")"]:["",""];s="^"+a+s+c+"$",this.negate&&(s="^(?!"+s+").+$");try{this.regexp=new RegExp(s,[...i].join(""))}catch{this.regexp=!1}return this.regexp}slashSplit(e){return this.preserveMultipleSlashes?e.split("/"):this.isWindows&&/^\/\/[^\/]+/.test(e)?["",...e.split(/\/+/)]:e.split(/\/+/)}match(e,t=this.partial){if(this.debug("match",e,this.pattern),this.comment)return!1;if(this.empty)return e==="";if(e==="/"&&t)return!0;let r=this.options;this.isWindows&&(e=e.split("\\").join("/"));let i=this.slashSplit(e);this.debug(this.pattern,"split",i);let s=this.set;this.debug(this.pattern,"set",s);let a=i[i.length-1];if(!a)for(let c=i.length-2;!a&&c>=0;c--)a=i[c];for(let c=0;c<s.length;c++){let u=s[c],l=i;if(r.matchBase&&u.length===1&&(l=[a]),this.matchOne(l,u,t))return r.flipNegate?!0:!this.negate}return r.flipNegate?!1:this.negate}static defaults(e){return Xt.defaults(e).Minimatch}};Xt.AST=To;Xt.Minimatch=Ur;Xt.escape=Ao;Xt.unescape=Nn;var pT=require("node:url");var Co=typeof performance=="object"&&performance&&typeof performance.now=="function"?performance:Date,H3=new Set,U0=typeof process=="object"&&process?process:{},z3=o((n,e,t,r)=>{typeof U0.emitWarning=="function"?U0.emitWarning(n,e,t,r):console.error(`[${t}] ${e}: ${n}`)},"emitWarning"),wh=globalThis.AbortController,W3=globalThis.AbortSignal;if(typeof wh>"u"){W3=class{static{o(this,"AbortSignal")}onabort;_onabort=[];reason;aborted=!1;addEventListener(r,i){this._onabort.push(i)}},wh=class{static{o(this,"AbortController")}constructor(){e()}signal=new W3;abort(r){if(!this.signal.aborted){this.signal.reason=r,this.signal.aborted=!0;for(let i of this.signal._onabort)i(r);this.signal.onabort?.(r)}}};let n=U0.env?.LRU_CACHE_IGNORE_AC_WARNING!=="1",e=o(()=>{n&&(n=!1,z3("AbortController is not defined. If using lru-cache in node 14, load an AbortController polyfill from the `node-abort-controller` package. A minimal polyfill is provided for use by LRUCache.fetch(), but it should not be relied upon in other contexts (eg, passing it to other APIs that use AbortController/AbortSignal might have undesirable effects). You may disable this with LRU_CACHE_IGNORE_AC_WARNING=1 in the env.","NO_ABORT_CONTROLLER","ENOTSUP",e))},"warnACPolyfill")}var Bk=o(n=>!H3.has(n),"shouldWarn");var cs=o(n=>n&&n===Math.floor(n)&&n>0&&isFinite(n),"isPosInt"),Q3=o(n=>cs(n)?n<=Math.pow(2,8)?Uint8Array:n<=Math.pow(2,16)?Uint16Array:n<=Math.pow(2,32)?Uint32Array:n<=Number.MAX_SAFE_INTEGER?xo:null:null,"getUintArray"),xo=class extends Array{static{o(this,"ZeroArray")}constructor(e){super(e),this.fill(0)}},B0=class n{static{o(this,"Stack")}heap;length;static#e=!1;static create(e){let t=Q3(e);if(!t)return[];n.#e=!0;let r=new n(e,t);return n.#e=!1,r}constructor(e,t){if(!n.#e)throw new TypeError("instantiate Stack using Stack.create(n)");this.heap=new t(e),this.length=0}push(e){this.heap[this.length++]=e}pop(){return this.heap[--this.length]}},Xc=class n{static{o(this,"LRUCache")}#e;#t;#s;#n;#a;#_;ttl;ttlResolution;ttlAutopurge;updateAgeOnGet;updateAgeOnHas;allowStale;noDisposeOnSet;noUpdateTTL;maxEntrySize;sizeCalculation;noDeleteOnFetchRejection;noDeleteOnStaleGet;allowStaleOnFetchAbort;allowStaleOnFetchRejection;ignoreFetchAbort;#u;#f;#o;#c;#i;#g;#y;#d;#h;#E;#m;#T;#A;#S;#w;#b;#p;static unsafeExposeInternals(e){return{starts:e.#A,ttls:e.#S,sizes:e.#T,keyMap:e.#o,keyList:e.#c,valList:e.#i,next:e.#g,prev:e.#y,get head(){return e.#d},get tail(){return e.#h},free:e.#E,isBackgroundFetch:o(t=>e.#l(t),"isBackgroundFetch"),backgroundFetch:o((t,r,i,s)=>e.#j(t,r,i,s),"backgroundFetch"),moveToTail:o(t=>e.#V(t),"moveToTail"),indexes:o(t=>e.#x(t),"indexes"),rindexes:o(t=>e.#O(t),"rindexes"),isStale:o(t=>e.#v(t),"isStale")}}get max(){return this.#e}get maxSize(){return this.#t}get calculatedSize(){return this.#f}get size(){return this.#u}get fetchMethod(){return this.#a}get memoMethod(){return this.#_}get dispose(){return this.#s}get disposeAfter(){return this.#n}constructor(e){let{max:t=0,ttl:r,ttlResolution:i=1,ttlAutopurge:s,updateAgeOnGet:a,updateAgeOnHas:c,allowStale:u,dispose:l,disposeAfter:f,noDisposeOnSet:h,noUpdateTTL:d,maxSize:p=0,maxEntrySize:S=0,sizeCalculation:w,fetchMethod:T,memoMethod:O,noDeleteOnFetchRejection:I,noDeleteOnStaleGet:L,allowStaleOnFetchRejection:M,allowStaleOnFetchAbort:G,ignoreFetchAbort:Ee}=e;if(t!==0&&!cs(t))throw new TypeError("max option must be a nonnegative integer");let je=t?Q3(t):Array;if(!je)throw new Error("invalid max value: "+t);if(this.#e=t,this.#t=p,this.maxEntrySize=S||this.#t,this.sizeCalculation=w,this.sizeCalculation){if(!this.#t&&!this.maxEntrySize)throw new TypeError("cannot set sizeCalculation without setting maxSize or maxEntrySize");if(typeof this.sizeCalculation!="function")throw new TypeError("sizeCalculation set to non-function")}if(O!==void 0&&typeof O!="function")throw new TypeError("memoMethod must be a function if defined");if(this.#_=O,T!==void 0&&typeof T!="function")throw new TypeError("fetchMethod must be a function if specified");if(this.#a=T,this.#b=!!T,this.#o=new Map,this.#c=new Array(t).fill(void 0),this.#i=new Array(t).fill(void 0),this.#g=new je(t),this.#y=new je(t),this.#d=0,this.#h=0,this.#E=B0.create(t),this.#u=0,this.#f=0,typeof l=="function"&&(this.#s=l),typeof f=="function"?(this.#n=f,this.#m=[]):(this.#n=void 0,this.#m=void 0),this.#w=!!this.#s,this.#p=!!this.#n,this.noDisposeOnSet=!!h,this.noUpdateTTL=!!d,this.noDeleteOnFetchRejection=!!I,this.allowStaleOnFetchRejection=!!M,this.allowStaleOnFetchAbort=!!G,this.ignoreFetchAbort=!!Ee,this.maxEntrySize!==0){if(this.#t!==0&&!cs(this.#t))throw new TypeError("maxSize must be a positive integer if specified");if(!cs(this.maxEntrySize))throw new TypeError("maxEntrySize must be a positive integer if specified");this.#P()}if(this.allowStale=!!u,this.noDeleteOnStaleGet=!!L,this.updateAgeOnGet=!!a,this.updateAgeOnHas=!!c,this.ttlResolution=cs(i)||i===0?i:1,this.ttlAutopurge=!!s,this.ttl=r||0,this.ttl){if(!cs(this.ttl))throw new TypeError("ttl must be a positive integer if specified");this.#I()}if(this.#e===0&&this.ttl===0&&this.#t===0)throw new TypeError("At least one of max, maxSize, or ttl is required");if(!this.ttlAutopurge&&!this.#e&&!this.#t){let Me="LRU_CACHE_UNBOUNDED";Bk(Me)&&(H3.add(Me),z3("TTL caching without ttlAutopurge, max, or maxSize can result in unbounded memory consumption.","UnboundedCacheWarning",Me,n))}}getRemainingTTL(e){return this.#o.has(e)?1/0:0}#I(){let e=new xo(this.#e),t=new xo(this.#e);this.#S=e,this.#A=t,this.#R=(s,a,c=Co.now())=>{if(t[s]=a!==0?c:0,e[s]=a,a!==0&&this.ttlAutopurge){let u=setTimeout(()=>{this.#v(s)&&this.#D(this.#c[s],"expire")},a+1);u.unref&&u.unref()}},this.#C=s=>{t[s]=e[s]!==0?Co.now():0},this.#r=(s,a)=>{if(e[a]){let c=e[a],u=t[a];if(!c||!u)return;s.ttl=c,s.start=u,s.now=r||i();let l=s.now-u;s.remainingTTL=c-l}};let r=0,i=o(()=>{let s=Co.now();if(this.ttlResolution>0){r=s;let a=setTimeout(()=>r=0,this.ttlResolution);a.unref&&a.unref()}return s},"getNow");this.getRemainingTTL=s=>{let a=this.#o.get(s);if(a===void 0)return 0;let c=e[a],u=t[a];if(!c||!u)return 1/0;let l=(r||i())-u;return c-l},this.#v=s=>{let a=t[s],c=e[s];return!!c&&!!a&&(r||i())-a>c}}#C=o(()=>{},"#updateItemAge");#r=o(()=>{},"#statusTTL");#R=o(()=>{},"#setItemTTL");#v=o(()=>!1,"#isStale");#P(){let e=new xo(this.#e);this.#f=0,this.#T=e,this.#F=t=>{this.#f-=e[t],e[t]=0},this.#L=(t,r,i,s)=>{if(this.#l(r))return 0;if(!cs(i))if(s){if(typeof s!="function")throw new TypeError("sizeCalculation must be a function");if(i=s(r,t),!cs(i))throw new TypeError("sizeCalculation return invalid (expect positive integer)")}else throw new TypeError("invalid size value (must be positive integer). When maxSize or maxEntrySize is used, sizeCalculation or size must be set.");return i},this.#N=(t,r,i)=>{if(e[t]=r,this.#t){let s=this.#t-e[t];for(;this.#f>s;)this.#M(!0)}this.#f+=e[t],i&&(i.entrySize=r,i.totalCalculatedSize=this.#f)}}#F=o(e=>{},"#removeItemSize");#N=o((e,t,r)=>{},"#addItemSize");#L=o((e,t,r,i)=>{if(r||i)throw new TypeError("cannot set size without setting maxSize or maxEntrySize on cache");return 0},"#requireSize");*#x({allowStale:e=this.allowStale}={}){if(this.#u)for(let t=this.#h;!(!this.#k(t)||((e||!this.#v(t))&&(yield t),t===this.#d));)t=this.#y[t]}*#O({allowStale:e=this.allowStale}={}){if(this.#u)for(let t=this.#d;!(!this.#k(t)||((e||!this.#v(t))&&(yield t),t===this.#h));)t=this.#g[t]}#k(e){return e!==void 0&&this.#o.get(this.#c[e])===e}*entries(){for(let e of this.#x())this.#i[e]!==void 0&&this.#c[e]!==void 0&&!this.#l(this.#i[e])&&(yield[this.#c[e],this.#i[e]])}*rentries(){for(let e of this.#O())this.#i[e]!==void 0&&this.#c[e]!==void 0&&!this.#l(this.#i[e])&&(yield[this.#c[e],this.#i[e]])}*keys(){for(let e of this.#x()){let t=this.#c[e];t!==void 0&&!this.#l(this.#i[e])&&(yield t)}}*rkeys(){for(let e of this.#O()){let t=this.#c[e];t!==void 0&&!this.#l(this.#i[e])&&(yield t)}}*values(){for(let e of this.#x())this.#i[e]!==void 0&&!this.#l(this.#i[e])&&(yield this.#i[e])}*rvalues(){for(let e of this.#O())this.#i[e]!==void 0&&!this.#l(this.#i[e])&&(yield this.#i[e])}[Symbol.iterator](){return this.entries()}[Symbol.toStringTag]="LRUCache";find(e,t={}){for(let r of this.#x()){let i=this.#i[r],s=this.#l(i)?i.__staleWhileFetching:i;if(s!==void 0&&e(s,this.#c[r],this))return this.get(this.#c[r],t)}}forEach(e,t=this){for(let r of this.#x()){let i=this.#i[r],s=this.#l(i)?i.__staleWhileFetching:i;s!==void 0&&e.call(t,s,this.#c[r],this)}}rforEach(e,t=this){for(let r of this.#O()){let i=this.#i[r],s=this.#l(i)?i.__staleWhileFetching:i;s!==void 0&&e.call(t,s,this.#c[r],this)}}purgeStale(){let e=!1;for(let t of this.#O({allowStale:!0}))this.#v(t)&&(this.#D(this.#c[t],"expire"),e=!0);return e}info(e){let t=this.#o.get(e);if(t===void 0)return;let r=this.#i[t],i=this.#l(r)?r.__staleWhileFetching:r;if(i===void 0)return;let s={value:i};if(this.#S&&this.#A){let a=this.#S[t],c=this.#A[t];if(a&&c){let u=a-(Co.now()-c);s.ttl=u,s.start=Date.now()}}return this.#T&&(s.size=this.#T[t]),s}dump(){let e=[];for(let t of this.#x({allowStale:!0})){let r=this.#c[t],i=this.#i[t],s=this.#l(i)?i.__staleWhileFetching:i;if(s===void 0||r===void 0)continue;let a={value:s};if(this.#S&&this.#A){a.ttl=this.#S[t];let c=Co.now()-this.#A[t];a.start=Math.floor(Date.now()-c)}this.#T&&(a.size=this.#T[t]),e.unshift([r,a])}return e}load(e){this.clear();for(let[t,r]of e){if(r.start){let i=Date.now()-r.start;r.start=Co.now()-i}this.set(t,r.value,r)}}set(e,t,r={}){if(t===void 0)return this.delete(e),this;let{ttl:i=this.ttl,start:s,noDisposeOnSet:a=this.noDisposeOnSet,sizeCalculation:c=this.sizeCalculation,status:u}=r,{noUpdateTTL:l=this.noUpdateTTL}=r,f=this.#L(e,t,r.size||0,c);if(this.maxEntrySize&&f>this.maxEntrySize)return u&&(u.set="miss",u.maxEntrySizeExceeded=!0),this.#D(e,"set"),this;let h=this.#u===0?void 0:this.#o.get(e);if(h===void 0)h=this.#u===0?this.#h:this.#E.length!==0?this.#E.pop():this.#u===this.#e?this.#M(!1):this.#u,this.#c[h]=e,this.#i[h]=t,this.#o.set(e,h),this.#g[this.#h]=h,this.#y[h]=this.#h,this.#h=h,this.#u++,this.#N(h,f,u),u&&(u.set="add"),l=!1;else{this.#V(h);let d=this.#i[h];if(t!==d){if(this.#b&&this.#l(d)){d.__abortController.abort(new Error("replaced"));let{__staleWhileFetching:p}=d;p!==void 0&&!a&&(this.#w&&this.#s?.(p,e,"set"),this.#p&&this.#m?.push([p,e,"set"]))}else a||(this.#w&&this.#s?.(d,e,"set"),this.#p&&this.#m?.push([d,e,"set"]));if(this.#F(h),this.#N(h,f,u),this.#i[h]=t,u){u.set="replace";let p=d&&this.#l(d)?d.__staleWhileFetching:d;p!==void 0&&(u.oldValue=p)}}else u&&(u.set="update")}if(i!==0&&!this.#S&&this.#I(),this.#S&&(l||this.#R(h,i,s),u&&this.#r(u,h)),!a&&this.#p&&this.#m){let d=this.#m,p;for(;p=d?.shift();)this.#n?.(...p)}return this}pop(){try{for(;this.#u;){let e=this.#i[this.#d];if(this.#M(!0),this.#l(e)){if(e.__staleWhileFetching)return e.__staleWhileFetching}else if(e!==void 0)return e}}finally{if(this.#p&&this.#m){let e=this.#m,t;for(;t=e?.shift();)this.#n?.(...t)}}}#M(e){let t=this.#d,r=this.#c[t],i=this.#i[t];return this.#b&&this.#l(i)?i.__abortController.abort(new Error("evicted")):(this.#w||this.#p)&&(this.#w&&this.#s?.(i,r,"evict"),this.#p&&this.#m?.push([i,r,"evict"])),this.#F(t),e&&(this.#c[t]=void 0,this.#i[t]=void 0,this.#E.push(t)),this.#u===1?(this.#d=this.#h=0,this.#E.length=0):this.#d=this.#g[t],this.#o.delete(r),this.#u--,t}has(e,t={}){let{updateAgeOnHas:r=this.updateAgeOnHas,status:i}=t,s=this.#o.get(e);if(s!==void 0){let a=this.#i[s];if(this.#l(a)&&a.__staleWhileFetching===void 0)return!1;if(this.#v(s))i&&(i.has="stale",this.#r(i,s));else return r&&this.#C(s),i&&(i.has="hit",this.#r(i,s)),!0}else i&&(i.has="miss");return!1}peek(e,t={}){let{allowStale:r=this.allowStale}=t,i=this.#o.get(e);if(i===void 0||!r&&this.#v(i))return;let s=this.#i[i];return this.#l(s)?s.__staleWhileFetching:s}#j(e,t,r,i){let s=t===void 0?void 0:this.#i[t];if(this.#l(s))return s;let a=new wh,{signal:c}=r;c?.addEventListener("abort",()=>a.abort(c.reason),{signal:a.signal});let u={signal:a.signal,options:r,context:i},l=o((w,T=!1)=>{let{aborted:O}=a.signal,I=r.ignoreFetchAbort&&w!==void 0;if(r.status&&(O&&!T?(r.status.fetchAborted=!0,r.status.fetchError=a.signal.reason,I&&(r.status.fetchAbortIgnored=!0)):r.status.fetchResolved=!0),O&&!I&&!T)return h(a.signal.reason);let L=p;return this.#i[t]===p&&(w===void 0?L.__staleWhileFetching?this.#i[t]=L.__staleWhileFetching:this.#D(e,"fetch"):(r.status&&(r.status.fetchUpdated=!0),this.set(e,w,u.options))),w},"cb"),f=o(w=>(r.status&&(r.status.fetchRejected=!0,r.status.fetchError=w),h(w)),"eb"),h=o(w=>{let{aborted:T}=a.signal,O=T&&r.allowStaleOnFetchAbort,I=O||r.allowStaleOnFetchRejection,L=I||r.noDeleteOnFetchRejection,M=p;if(this.#i[t]===p&&(!L||M.__staleWhileFetching===void 0?this.#D(e,"fetch"):O||(this.#i[t]=M.__staleWhileFetching)),I)return r.status&&M.__staleWhileFetching!==void 0&&(r.status.returnedStale=!0),M.__staleWhileFetching;if(M.__returned===M)throw w},"fetchFail"),d=o((w,T)=>{let O=this.#a?.(e,s,u);O&&O instanceof Promise&&O.then(I=>w(I===void 0?void 0:I),T),a.signal.addEventListener("abort",()=>{(!r.ignoreFetchAbort||r.allowStaleOnFetchAbort)&&(w(void 0),r.allowStaleOnFetchAbort&&(w=o(I=>l(I,!0),"res")))})},"pcall");r.status&&(r.status.fetchDispatched=!0);let p=new Promise(d).then(l,f),S=Object.assign(p,{__abortController:a,__staleWhileFetching:s,__returned:void 0});return t===void 0?(this.set(e,S,{...u.options,status:void 0}),t=this.#o.get(e)):this.#i[t]=S,S}#l(e){if(!this.#b)return!1;let t=e;return!!t&&t instanceof Promise&&t.hasOwnProperty("__staleWhileFetching")&&t.__abortController instanceof wh}async fetch(e,t={}){let{allowStale:r=this.allowStale,updateAgeOnGet:i=this.updateAgeOnGet,noDeleteOnStaleGet:s=this.noDeleteOnStaleGet,ttl:a=this.ttl,noDisposeOnSet:c=this.noDisposeOnSet,size:u=0,sizeCalculation:l=this.sizeCalculation,noUpdateTTL:f=this.noUpdateTTL,noDeleteOnFetchRejection:h=this.noDeleteOnFetchRejection,allowStaleOnFetchRejection:d=this.allowStaleOnFetchRejection,ignoreFetchAbort:p=this.ignoreFetchAbort,allowStaleOnFetchAbort:S=this.allowStaleOnFetchAbort,context:w,forceRefresh:T=!1,status:O,signal:I}=t;if(!this.#b)return O&&(O.fetch="get"),this.get(e,{allowStale:r,updateAgeOnGet:i,noDeleteOnStaleGet:s,status:O});let L={allowStale:r,updateAgeOnGet:i,noDeleteOnStaleGet:s,ttl:a,noDisposeOnSet:c,size:u,sizeCalculation:l,noUpdateTTL:f,noDeleteOnFetchRejection:h,allowStaleOnFetchRejection:d,allowStaleOnFetchAbort:S,ignoreFetchAbort:p,status:O,signal:I},M=this.#o.get(e);if(M===void 0){O&&(O.fetch="miss");let G=this.#j(e,M,L,w);return G.__returned=G}else{let G=this.#i[M];if(this.#l(G)){let ie=r&&G.__staleWhileFetching!==void 0;return O&&(O.fetch="inflight",ie&&(O.returnedStale=!0)),ie?G.__staleWhileFetching:G.__returned=G}let Ee=this.#v(M);if(!T&&!Ee)return O&&(O.fetch="hit"),this.#V(M),i&&this.#C(M),O&&this.#r(O,M),G;let je=this.#j(e,M,L,w),q=je.__staleWhileFetching!==void 0&&r;return O&&(O.fetch=Ee?"stale":"refresh",q&&Ee&&(O.returnedStale=!0)),q?je.__staleWhileFetching:je.__returned=je}}async forceFetch(e,t={}){let r=await this.fetch(e,t);if(r===void 0)throw new Error("fetch() returned undefined");return r}memo(e,t={}){let r=this.#_;if(!r)throw new Error("no memoMethod provided to constructor");let{context:i,forceRefresh:s,...a}=t,c=this.get(e,a);if(!s&&c!==void 0)return c;let u=r(e,c,{options:a,context:i});return this.set(e,u,a),u}get(e,t={}){let{allowStale:r=this.allowStale,updateAgeOnGet:i=this.updateAgeOnGet,noDeleteOnStaleGet:s=this.noDeleteOnStaleGet,status:a}=t,c=this.#o.get(e);if(c!==void 0){let u=this.#i[c],l=this.#l(u);return a&&this.#r(a,c),this.#v(c)?(a&&(a.get="stale"),l?(a&&r&&u.__staleWhileFetching!==void 0&&(a.returnedStale=!0),r?u.__staleWhileFetching:void 0):(s||this.#D(e,"expire"),a&&r&&(a.returnedStale=!0),r?u:void 0)):(a&&(a.get="hit"),l?u.__staleWhileFetching:(this.#V(c),i&&this.#C(c),u))}else a&&(a.get="miss")}#$(e,t){this.#y[t]=e,this.#g[e]=t}#V(e){e!==this.#h&&(e===this.#d?this.#d=this.#g[e]:this.#$(this.#y[e],this.#g[e]),this.#$(this.#h,e),this.#h=e)}delete(e){return this.#D(e,"delete")}#D(e,t){let r=!1;if(this.#u!==0){let i=this.#o.get(e);if(i!==void 0)if(r=!0,this.#u===1)this.#U(t);else{this.#F(i);let s=this.#i[i];if(this.#l(s)?s.__abortController.abort(new Error("deleted")):(this.#w||this.#p)&&(this.#w&&this.#s?.(s,e,t),this.#p&&this.#m?.push([s,e,t])),this.#o.delete(e),this.#c[i]=void 0,this.#i[i]=void 0,i===this.#h)this.#h=this.#y[i];else if(i===this.#d)this.#d=this.#g[i];else{let a=this.#y[i];this.#g[a]=this.#g[i];let c=this.#g[i];this.#y[c]=this.#y[i]}this.#u--,this.#E.push(i)}}if(this.#p&&this.#m?.length){let i=this.#m,s;for(;s=i?.shift();)this.#n?.(...s)}return r}clear(){return this.#U("delete")}#U(e){for(let t of this.#O({allowStale:!0})){let r=this.#i[t];if(this.#l(r))r.__abortController.abort(new Error("deleted"));else{let i=this.#c[t];this.#w&&this.#s?.(r,i,e),this.#p&&this.#m?.push([r,i,e])}}if(this.#o.clear(),this.#i.fill(void 0),this.#c.fill(void 0),this.#S&&this.#A&&(this.#S.fill(0),this.#A.fill(0)),this.#T&&this.#T.fill(0),this.#d=0,this.#h=0,this.#E.length=0,this.#f=0,this.#u=0,this.#p&&this.#m){let t=this.#m,r;for(;r=t?.shift();)this.#n?.(...r)}}};var Po=require("node:path"),iT=require("node:url"),ui=require("fs"),Jk=Ne(require("node:fs"),1),fs=require("node:fs/promises");var Oh=require("node:events"),Y0=Ne(require("node:stream"),1),Z3=require("node:string_decoder");var Y3=typeof process=="object"&&process?process:{stdout:null,stderr:null},qk=o(n=>!!n&&typeof n=="object"&&(n instanceof ls||n instanceof Y0.default||Gk(n)||Wk(n)),"isStream"),Gk=o(n=>!!n&&typeof n=="object"&&n instanceof Oh.EventEmitter&&typeof n.pipe=="function"&&n.pipe!==Y0.default.Writable.prototype.pipe,"isReadable"),Wk=o(n=>!!n&&typeof n=="object"&&n instanceof Oh.EventEmitter&&typeof n.write=="function"&&typeof n.end=="function","isWritable"),Ri=Symbol("EOF"),Fi=Symbol("maybeEmitEnd"),us=Symbol("emittedEnd"),bh=Symbol("emittingEnd"),Jc=Symbol("emittedError"),Eh=Symbol("closed"),K3=Symbol("read"),Th=Symbol("flush"),X3=Symbol("flushChunk"),Ln=Symbol("encoding"),Oo=Symbol("decoder"),Lt=Symbol("flowing"),Zc=Symbol("paused"),Io=Symbol("resume"),kt=Symbol("buffer"),Tr=Symbol("pipes"),Mt=Symbol("bufferLength"),q0=Symbol("bufferPush"),Ah=Symbol("bufferShift"),cr=Symbol("objectMode"),St=Symbol("destroyed"),G0=Symbol("error"),W0=Symbol("emitData"),J3=Symbol("emitEnd"),H0=Symbol("emitEnd2"),oi=Symbol("async"),z0=Symbol("abort"),Ch=Symbol("aborted"),eu=Symbol("signal"),aa=Symbol("dataListeners"),Br=Symbol("discarded"),tu=o(n=>Promise.resolve().then(n),"defer"),Hk=o(n=>n(),"nodefer"),zk=o(n=>n==="end"||n==="finish"||n==="prefinish","isEndish"),Qk=o(n=>n instanceof ArrayBuffer||!!n&&typeof n=="object"&&n.constructor&&n.constructor.name==="ArrayBuffer"&&n.byteLength>=0,"isArrayBufferLike"),Yk=o(n=>!Buffer.isBuffer(n)&&ArrayBuffer.isView(n),"isArrayBufferView"),xh=class{static{o(this,"Pipe")}src;dest;opts;ondrain;constructor(e,t,r){this.src=e,this.dest=t,this.opts=r,this.ondrain=()=>e[Io](),this.dest.on("drain",this.ondrain)}unpipe(){this.dest.removeListener("drain",this.ondrain)}proxyErrors(e){}end(){this.unpipe(),this.opts.end&&this.dest.end()}},Q0=class extends xh{static{o(this,"PipeProxyErrors")}unpipe(){this.src.removeListener("error",this.proxyErrors),super.unpipe()}constructor(e,t,r){super(e,t,r),this.proxyErrors=i=>t.emit("error",i),e.on("error",this.proxyErrors)}},Kk=o(n=>!!n.objectMode,"isObjectModeOptions"),Xk=o(n=>!n.objectMode&&!!n.encoding&&n.encoding!=="buffer","isEncodingOptions"),ls=class extends Oh.EventEmitter{static{o(this,"Minipass")}[Lt]=!1;[Zc]=!1;[Tr]=[];[kt]=[];[cr];[Ln];[oi];[Oo];[Ri]=!1;[us]=!1;[bh]=!1;[Eh]=!1;[Jc]=null;[Mt]=0;[St]=!1;[eu];[Ch]=!1;[aa]=0;[Br]=!1;writable=!0;readable=!0;constructor(...e){let t=e[0]||{};if(super(),t.objectMode&&typeof t.encoding=="string")throw new TypeError("Encoding and objectMode may not be used together");Kk(t)?(this[cr]=!0,this[Ln]=null):Xk(t)?(this[Ln]=t.encoding,this[cr]=!1):(this[cr]=!1,this[Ln]=null),this[oi]=!!t.async,this[Oo]=this[Ln]?new Z3.StringDecoder(this[Ln]):null,t&&t.debugExposeBuffer===!0&&Object.defineProperty(this,"buffer",{get:o(()=>this[kt],"get")}),t&&t.debugExposePipes===!0&&Object.defineProperty(this,"pipes",{get:o(()=>this[Tr],"get")});let{signal:r}=t;r&&(this[eu]=r,r.aborted?this[z0]():r.addEventListener("abort",()=>this[z0]()))}get bufferLength(){return this[Mt]}get encoding(){return this[Ln]}set encoding(e){throw new Error("Encoding must be set at instantiation time")}setEncoding(e){throw new Error("Encoding must be set at instantiation time")}get objectMode(){return this[cr]}set objectMode(e){throw new Error("objectMode must be set at instantiation time")}get async(){return this[oi]}set async(e){this[oi]=this[oi]||!!e}[z0](){this[Ch]=!0,this.emit("abort",this[eu]?.reason),this.destroy(this[eu]?.reason)}get aborted(){return this[Ch]}set aborted(e){}write(e,t,r){if(this[Ch])return!1;if(this[Ri])throw new Error("write after end");if(this[St])return this.emit("error",Object.assign(new Error("Cannot call write after a stream was destroyed"),{code:"ERR_STREAM_DESTROYED"})),!0;typeof t=="function"&&(r=t,t="utf8"),t||(t="utf8");let i=this[oi]?tu:Hk;if(!this[cr]&&!Buffer.isBuffer(e)){if(Yk(e))e=Buffer.from(e.buffer,e.byteOffset,e.byteLength);else if(Qk(e))e=Buffer.from(e);else if(typeof e!="string")throw new Error("Non-contiguous data written to non-objectMode stream")}return this[cr]?(this[Lt]&&this[Mt]!==0&&this[Th](!0),this[Lt]?this.emit("data",e):this[q0](e),this[Mt]!==0&&this.emit("readable"),r&&i(r),this[Lt]):e.length?(typeof e=="string"&&!(t===this[Ln]&&!this[Oo]?.lastNeed)&&(e=Buffer.from(e,t)),Buffer.isBuffer(e)&&this[Ln]&&(e=this[Oo].write(e)),this[Lt]&&this[Mt]!==0&&this[Th](!0),this[Lt]?this.emit("data",e):this[q0](e),this[Mt]!==0&&this.emit("readable"),r&&i(r),this[Lt]):(this[Mt]!==0&&this.emit("readable"),r&&i(r),this[Lt])}read(e){if(this[St])return null;if(this[Br]=!1,this[Mt]===0||e===0||e&&e>this[Mt])return this[Fi](),null;this[cr]&&(e=null),this[kt].length>1&&!this[cr]&&(this[kt]=[this[Ln]?this[kt].join(""):Buffer.concat(this[kt],this[Mt])]);let t=this[K3](e||null,this[kt][0]);return this[Fi](),t}[K3](e,t){if(this[cr])this[Ah]();else{let r=t;e===r.length||e===null?this[Ah]():typeof r=="string"?(this[kt][0]=r.slice(e),t=r.slice(0,e),this[Mt]-=e):(this[kt][0]=r.subarray(e),t=r.subarray(0,e),this[Mt]-=e)}return this.emit("data",t),!this[kt].length&&!this[Ri]&&this.emit("drain"),t}end(e,t,r){return typeof e=="function"&&(r=e,e=void 0),typeof t=="function"&&(r=t,t="utf8"),e!==void 0&&this.write(e,t),r&&this.once("end",r),this[Ri]=!0,this.writable=!1,(this[Lt]||!this[Zc])&&this[Fi](),this}[Io](){this[St]||(!this[aa]&&!this[Tr].length&&(this[Br]=!0),this[Zc]=!1,this[Lt]=!0,this.emit("resume"),this[kt].length?this[Th]():this[Ri]?this[Fi]():this.emit("drain"))}resume(){return this[Io]()}pause(){this[Lt]=!1,this[Zc]=!0,this[Br]=!1}get destroyed(){return this[St]}get flowing(){return this[Lt]}get paused(){return this[Zc]}[q0](e){this[cr]?this[Mt]+=1:this[Mt]+=e.length,this[kt].push(e)}[Ah](){return this[cr]?this[Mt]-=1:this[Mt]-=this[kt][0].length,this[kt].shift()}[Th](e=!1){do;while(this[X3](this[Ah]())&&this[kt].length);!e&&!this[kt].length&&!this[Ri]&&this.emit("drain")}[X3](e){return this.emit("data",e),this[Lt]}pipe(e,t){if(this[St])return e;this[Br]=!1;let r=this[us];return t=t||{},e===Y3.stdout||e===Y3.stderr?t.end=!1:t.end=t.end!==!1,t.proxyErrors=!!t.proxyErrors,r?t.end&&e.end():(this[Tr].push(t.proxyErrors?new Q0(this,e,t):new xh(this,e,t)),this[oi]?tu(()=>this[Io]()):this[Io]()),e}unpipe(e){let t=this[Tr].find(r=>r.dest===e);t&&(this[Tr].length===1?(this[Lt]&&this[aa]===0&&(this[Lt]=!1),this[Tr]=[]):this[Tr].splice(this[Tr].indexOf(t),1),t.unpipe())}addListener(e,t){return this.on(e,t)}on(e,t){let r=super.on(e,t);if(e==="data")this[Br]=!1,this[aa]++,!this[Tr].length&&!this[Lt]&&this[Io]();else if(e==="readable"&&this[Mt]!==0)super.emit("readable");else if(zk(e)&&this[us])super.emit(e),this.removeAllListeners(e);else if(e==="error"&&this[Jc]){let i=t;this[oi]?tu(()=>i.call(this,this[Jc])):i.call(this,this[Jc])}return r}removeListener(e,t){return this.off(e,t)}off(e,t){let r=super.off(e,t);return e==="data"&&(this[aa]=this.listeners("data").length,this[aa]===0&&!this[Br]&&!this[Tr].length&&(this[Lt]=!1)),r}removeAllListeners(e){let t=super.removeAllListeners(e);return(e==="data"||e===void 0)&&(this[aa]=0,!this[Br]&&!this[Tr].length&&(this[Lt]=!1)),t}get emittedEnd(){return this[us]}[Fi](){!this[bh]&&!this[us]&&!this[St]&&this[kt].length===0&&this[Ri]&&(this[bh]=!0,this.emit("end"),this.emit("prefinish"),this.emit("finish"),this[Eh]&&this.emit("close"),this[bh]=!1)}emit(e,...t){let r=t[0];if(e!=="error"&&e!=="close"&&e!==St&&this[St])return!1;if(e==="data")return!this[cr]&&!r?!1:this[oi]?(tu(()=>this[W0](r)),!0):this[W0](r);if(e==="end")return this[J3]();if(e==="close"){if(this[Eh]=!0,!this[us]&&!this[St])return!1;let s=super.emit("close");return this.removeAllListeners("close"),s}else if(e==="error"){this[Jc]=r,super.emit(G0,r);let s=!this[eu]||this.listeners("error").length?super.emit("error",r):!1;return this[Fi](),s}else if(e==="resume"){let s=super.emit("resume");return this[Fi](),s}else if(e==="finish"||e==="prefinish"){let s=super.emit(e);return this.removeAllListeners(e),s}let i=super.emit(e,...t);return this[Fi](),i}[W0](e){for(let r of this[Tr])r.dest.write(e)===!1&&this.pause();let t=this[Br]?!1:super.emit("data",e);return this[Fi](),t}[J3](){return this[us]?!1:(this[us]=!0,this.readable=!1,this[oi]?(tu(()=>this[H0]()),!0):this[H0]())}[H0](){if(this[Oo]){let t=this[Oo].end();if(t){for(let r of this[Tr])r.dest.write(t);this[Br]||super.emit("data",t)}}for(let t of this[Tr])t.end();let e=super.emit("end");return this.removeAllListeners("end"),e}async collect(){let e=Object.assign([],{dataLength:0});this[cr]||(e.dataLength=0);let t=this.promise();return this.on("data",r=>{e.push(r),this[cr]||(e.dataLength+=r.length)}),await t,e}async concat(){if(this[cr])throw new Error("cannot concat in objectMode");let e=await this.collect();return this[Ln]?e.join(""):Buffer.concat(e,e.dataLength)}async promise(){return new Promise((e,t)=>{this.on(St,()=>t(new Error("stream destroyed"))),this.on("error",r=>t(r)),this.on("end",()=>e())})}[Symbol.asyncIterator](){this[Br]=!1;let e=!1,t=o(async()=>(this.pause(),e=!0,{value:void 0,done:!0}),"stop");return{next:o(()=>{if(e)return t();let i=this.read();if(i!==null)return Promise.resolve({done:!1,value:i});if(this[Ri])return t();let s,a,c=o(h=>{this.off("data",u),this.off("end",l),this.off(St,f),t(),a(h)},"onerr"),u=o(h=>{this.off("error",c),this.off("end",l),this.off(St,f),this.pause(),s({value:h,done:!!this[Ri]})},"ondata"),l=o(()=>{this.off("error",c),this.off("data",u),this.off(St,f),t(),s({done:!0,value:void 0})},"onend"),f=o(()=>c(new Error("stream destroyed")),"ondestroy");return new Promise((h,d)=>{a=d,s=h,this.once(St,f),this.once("error",c),this.once("end",l),this.once("data",u)})},"next"),throw:t,return:t,[Symbol.asyncIterator](){return this}}}[Symbol.iterator](){this[Br]=!1;let e=!1,t=o(()=>(this.pause(),this.off(G0,t),this.off(St,t),this.off("end",t),e=!0,{done:!0,value:void 0}),"stop"),r=o(()=>{if(e)return t();let i=this.read();return i===null?t():{done:!1,value:i}},"next");return this.once("end",t),this.once(G0,t),this.once(St,t),{next:r,throw:t,return:t,[Symbol.iterator](){return this}}}destroy(e){if(this[St])return e?this.emit("error",e):this.emit(St),this;this[St]=!0,this[Br]=!0,this[kt].length=0,this[Mt]=0;let t=this;return typeof t.close=="function"&&!this[Eh]&&t.close(),e?this.emit("error",e):this.emit(St),this}static get isStream(){return qk}};var Zk=ui.realpathSync.native,nu={lstatSync:ui.lstatSync,readdir:ui.readdir,readdirSync:ui.readdirSync,readlinkSync:ui.readlinkSync,realpathSync:Zk,promises:{lstat:fs.lstat,readdir:fs.readdir,readlink:fs.readlink,realpath:fs.realpath}},sT=o(n=>!n||n===nu||n===Jk?nu:{...nu,...n,promises:{...nu.promises,...n.promises||{}}},"fsFromOption"),aT=/^\\\\\?\\([a-z]:)\\?$/i,eM=o(n=>n.replace(/\//g,"\\").replace(aT,"$1\\"),"uncToDrive"),tM=/[\\\/]/,nn=0,oT=1,cT=2,ci=4,uT=6,lT=8,oa=10,fT=12,rn=15,ru=~rn,K0=16,eT=32,iu=64,kn=128,Ih=256,Dh=512,tT=iu|kn|Dh,rM=1023,X0=o(n=>n.isFile()?lT:n.isDirectory()?ci:n.isSymbolicLink()?oa:n.isCharacterDevice()?cT:n.isBlockDevice()?uT:n.isSocket()?fT:n.isFIFO()?oT:nn,"entToType"),rT=new Map,su=o(n=>{let e=rT.get(n);if(e)return e;let t=n.normalize("NFKD");return rT.set(n,t),t},"normalize"),nT=new Map,Ph=o(n=>{let e=nT.get(n);if(e)return e;let t=su(n.toLowerCase());return nT.set(n,t),t},"normalizeNocase"),Rh=class extends Xc{static{o(this,"ResolveCache")}constructor(){super({max:256})}},J0=class extends Xc{static{o(this,"ChildrenCache")}constructor(e=16*1024){super({maxSize:e,sizeCalculation:o(t=>t.length+1,"sizeCalculation")})}},hT=Symbol("PathScurry setAsCwd"),ur=class{static{o(this,"PathBase")}name;root;roots;parent;nocase;isCWD=!1;#e;#t;get dev(){return this.#t}#s;get mode(){return this.#s}#n;get nlink(){return this.#n}#a;get uid(){return this.#a}#_;get gid(){return this.#_}#u;get rdev(){return this.#u}#f;get blksize(){return this.#f}#o;get ino(){return this.#o}#c;get size(){return this.#c}#i;get blocks(){return this.#i}#g;get atimeMs(){return this.#g}#y;get mtimeMs(){return this.#y}#d;get ctimeMs(){return this.#d}#h;get birthtimeMs(){return this.#h}#E;get atime(){return this.#E}#m;get mtime(){return this.#m}#T;get ctime(){return this.#T}#A;get birthtime(){return this.#A}#S;#w;#b;#p;#I;#C;#r;#R;#v;#P;get parentPath(){return(this.parent||this).fullpath()}get path(){return this.parentPath}constructor(e,t=nn,r,i,s,a,c){this.name=e,this.#S=s?Ph(e):su(e),this.#r=t&rM,this.nocase=s,this.roots=i,this.root=r||this,this.#R=a,this.#b=c.fullpath,this.#I=c.relative,this.#C=c.relativePosix,this.parent=c.parent,this.parent?this.#e=this.parent.#e:this.#e=sT(c.fs)}depth(){return this.#w!==void 0?this.#w:this.parent?this.#w=this.parent.depth()+1:this.#w=0}childrenCache(){return this.#R}resolve(e){if(!e)return this;let t=this.getRootString(e),i=e.substring(t.length).split(this.splitSep);return t?this.getRoot(t).#F(i):this.#F(i)}#F(e){let t=this;for(let r of e)t=t.child(r);return t}children(){let e=this.#R.get(this);if(e)return e;let t=Object.assign([],{provisional:0});return this.#R.set(this,t),this.#r&=~K0,t}child(e,t){if(e===""||e===".")return this;if(e==="..")return this.parent||this;let r=this.children(),i=this.nocase?Ph(e):su(e);for(let u of r)if(u.#S===i)return u;let s=this.parent?this.sep:"",a=this.#b?this.#b+s+e:void 0,c=this.newChild(e,nn,{...t,parent:this,fullpath:a});return this.canReaddir()||(c.#r|=kn),r.push(c),c}relative(){if(this.isCWD)return"";if(this.#I!==void 0)return this.#I;let e=this.name,t=this.parent;if(!t)return this.#I=this.name;let r=t.relative();return r+(!r||!t.parent?"":this.sep)+e}relativePosix(){if(this.sep==="/")return this.relative();if(this.isCWD)return"";if(this.#C!==void 0)return this.#C;let e=this.name,t=this.parent;if(!t)return this.#C=this.fullpathPosix();let r=t.relativePosix();return r+(!r||!t.parent?"":"/")+e}fullpath(){if(this.#b!==void 0)return this.#b;let e=this.name,t=this.parent;if(!t)return this.#b=this.name;let i=t.fullpath()+(t.parent?this.sep:"")+e;return this.#b=i}fullpathPosix(){if(this.#p!==void 0)return this.#p;if(this.sep==="/")return this.#p=this.fullpath();if(!this.parent){let i=this.fullpath().replace(/\\/g,"/");return/^[a-z]:\//i.test(i)?this.#p=`//?/${i}`:this.#p=i}let e=this.parent,t=e.fullpathPosix(),r=t+(!t||!e.parent?"":"/")+this.name;return this.#p=r}isUnknown(){return(this.#r&rn)===nn}isType(e){return this[`is${e}`]()}getType(){return this.isUnknown()?"Unknown":this.isDirectory()?"Directory":this.isFile()?"File":this.isSymbolicLink()?"SymbolicLink":this.isFIFO()?"FIFO":this.isCharacterDevice()?"CharacterDevice":this.isBlockDevice()?"BlockDevice":this.isSocket()?"Socket":"Unknown"}isFile(){return(this.#r&rn)===lT}isDirectory(){return(this.#r&rn)===ci}isCharacterDevice(){return(this.#r&rn)===cT}isBlockDevice(){return(this.#r&rn)===uT}isFIFO(){return(this.#r&rn)===oT}isSocket(){return(this.#r&rn)===fT}isSymbolicLink(){return(this.#r&oa)===oa}lstatCached(){return this.#r&eT?this:void 0}readlinkCached(){return this.#v}realpathCached(){return this.#P}readdirCached(){let e=this.children();return e.slice(0,e.provisional)}canReadlink(){if(this.#v)return!0;if(!this.parent)return!1;let e=this.#r&rn;return!(e!==nn&&e!==oa||this.#r&Ih||this.#r&kn)}calledReaddir(){return!!(this.#r&K0)}isENOENT(){return!!(this.#r&kn)}isNamed(e){return this.nocase?this.#S===Ph(e):this.#S===su(e)}async readlink(){let e=this.#v;if(e)return e;if(this.canReadlink()&&this.parent)try{let t=await this.#e.promises.readlink(this.fullpath()),r=(await this.parent.realpath())?.resolve(t);if(r)return this.#v=r}catch(t){this.#l(t.code);return}}readlinkSync(){let e=this.#v;if(e)return e;if(this.canReadlink()&&this.parent)try{let t=this.#e.readlinkSync(this.fullpath()),r=this.parent.realpathSync()?.resolve(t);if(r)return this.#v=r}catch(t){this.#l(t.code);return}}#N(e){this.#r|=K0;for(let t=e.provisional;t<e.length;t++){let r=e[t];r&&r.#L()}}#L(){this.#r&kn||(this.#r=(this.#r|kn)&ru,this.#x())}#x(){let e=this.children();e.provisional=0;for(let t of e)t.#L()}#O(){this.#r|=Dh,this.#k()}#k(){if(this.#r&iu)return;let e=this.#r;(e&rn)===ci&&(e&=ru),this.#r=e|iu,this.#x()}#M(e=""){e==="ENOTDIR"||e==="EPERM"?this.#k():e==="ENOENT"?this.#L():this.children().provisional=0}#j(e=""){e==="ENOTDIR"?this.parent.#k():e==="ENOENT"&&this.#L()}#l(e=""){let t=this.#r;t|=Ih,e==="ENOENT"&&(t|=kn),(e==="EINVAL"||e==="UNKNOWN")&&(t&=ru),this.#r=t,e==="ENOTDIR"&&this.parent&&this.parent.#k()}#$(e,t){return this.#D(e,t)||this.#V(e,t)}#V(e,t){let r=X0(e),i=this.newChild(e.name,r,{parent:this}),s=i.#r&rn;return s!==ci&&s!==oa&&s!==nn&&(i.#r|=iu),t.unshift(i),t.provisional++,i}#D(e,t){for(let r=t.provisional;r<t.length;r++){let i=t[r];if((this.nocase?Ph(e.name):su(e.name))===i.#S)return this.#U(e,i,r,t)}}#U(e,t,r,i){let s=t.name;return t.#r=t.#r&ru|X0(e),s!==e.name&&(t.name=e.name),r!==i.provisional&&(r===i.length-1?i.pop():i.splice(r,1),i.unshift(t)),i.provisional++,t}async lstat(){if((this.#r&kn)===0)try{return this.#W(await this.#e.promises.lstat(this.fullpath())),this}catch(e){this.#j(e.code)}}lstatSync(){if((this.#r&kn)===0)try{return this.#W(this.#e.lstatSync(this.fullpath())),this}catch(e){this.#j(e.code)}}#W(e){let{atime:t,atimeMs:r,birthtime:i,birthtimeMs:s,blksize:a,blocks:c,ctime:u,ctimeMs:l,dev:f,gid:h,ino:d,mode:p,mtime:S,mtimeMs:w,nlink:T,rdev:O,size:I,uid:L}=e;this.#E=t,this.#g=r,this.#A=i,this.#h=s,this.#f=a,this.#i=c,this.#T=u,this.#d=l,this.#t=f,this.#_=h,this.#o=d,this.#s=p,this.#m=S,this.#y=w,this.#n=T,this.#u=O,this.#c=I,this.#a=L;let M=X0(e);this.#r=this.#r&ru|M|eT,M!==nn&&M!==ci&&M!==oa&&(this.#r|=iu)}#q=[];#G=!1;#H(e){this.#G=!1;let t=this.#q.slice();this.#q.length=0,t.forEach(r=>r(null,e))}readdirCB(e,t=!1){if(!this.canReaddir()){t?e(null,[]):queueMicrotask(()=>e(null,[]));return}let r=this.children();if(this.calledReaddir()){let s=r.slice(0,r.provisional);t?e(null,s):queueMicrotask(()=>e(null,s));return}if(this.#q.push(e),this.#G)return;this.#G=!0;let i=this.fullpath();this.#e.readdir(i,{withFileTypes:!0},(s,a)=>{if(s)this.#M(s.code),r.provisional=0;else{for(let c of a)this.#$(c,r);this.#N(r)}this.#H(r.slice(0,r.provisional))})}#B;async readdir(){if(!this.canReaddir())return[];let e=this.children();if(this.calledReaddir())return e.slice(0,e.provisional);let t=this.fullpath();if(this.#B)await this.#B;else{let r=o(()=>{},"resolve");this.#B=new Promise(i=>r=i);try{for(let i of await this.#e.promises.readdir(t,{withFileTypes:!0}))this.#$(i,e);this.#N(e)}catch(i){this.#M(i.code),e.provisional=0}this.#B=void 0,r()}return e.slice(0,e.provisional)}readdirSync(){if(!this.canReaddir())return[];let e=this.children();if(this.calledReaddir())return e.slice(0,e.provisional);let t=this.fullpath();try{for(let r of this.#e.readdirSync(t,{withFileTypes:!0}))this.#$(r,e);this.#N(e)}catch(r){this.#M(r.code),e.provisional=0}return e.slice(0,e.provisional)}canReaddir(){if(this.#r&tT)return!1;let e=rn&this.#r;return e===nn||e===ci||e===oa}shouldWalk(e,t){return(this.#r&ci)===ci&&!(this.#r&tT)&&!e.has(this)&&(!t||t(this))}async realpath(){if(this.#P)return this.#P;if(!((Dh|Ih|kn)&this.#r))try{let e=await this.#e.promises.realpath(this.fullpath());return this.#P=this.resolve(e)}catch{this.#O()}}realpathSync(){if(this.#P)return this.#P;if(!((Dh|Ih|kn)&this.#r))try{let e=this.#e.realpathSync(this.fullpath());return this.#P=this.resolve(e)}catch{this.#O()}}[hT](e){if(e===this)return;e.isCWD=!1,this.isCWD=!0;let t=new Set([]),r=[],i=this;for(;i&&i.parent;)t.add(i),i.#I=r.join(this.sep),i.#C=r.join("/"),i=i.parent,r.push("..");for(i=e;i&&i.parent&&!t.has(i);)i.#I=void 0,i.#C=void 0,i=i.parent}},Fh=class n extends ur{static{o(this,"PathWin32")}sep="\\";splitSep=tM;constructor(e,t=nn,r,i,s,a,c){super(e,t,r,i,s,a,c)}newChild(e,t=nn,r={}){return new n(e,t,this.root,this.roots,this.nocase,this.childrenCache(),r)}getRootString(e){return Po.win32.parse(e).root}getRoot(e){if(e=eM(e.toUpperCase()),e===this.root.name)return this.root;for(let[t,r]of Object.entries(this.roots))if(this.sameRoot(e,t))return this.roots[e]=r;return this.roots[e]=new Do(e,this).root}sameRoot(e,t=this.root.name){return e=e.toUpperCase().replace(/\//g,"\\").replace(aT,"$1\\"),e===t}},Nh=class n extends ur{static{o(this,"PathPosix")}splitSep="/";sep="/";constructor(e,t=nn,r,i,s,a,c){super(e,t,r,i,s,a,c)}getRootString(e){return e.startsWith("/")?"/":""}getRoot(e){return this.root}newChild(e,t=nn,r={}){return new n(e,t,this.root,this.roots,this.nocase,this.childrenCache(),r)}},Lh=class{static{o(this,"PathScurryBase")}root;rootPath;roots;cwd;#e;#t;#s;nocase;#n;constructor(e=process.cwd(),t,r,{nocase:i,childrenCacheSize:s=16*1024,fs:a=nu}={}){this.#n=sT(a),(e instanceof URL||e.startsWith("file://"))&&(e=(0,iT.fileURLToPath)(e));let c=t.resolve(e);this.roots=Object.create(null),this.rootPath=this.parseRootPath(c),this.#e=new Rh,this.#t=new Rh,this.#s=new J0(s);let u=c.substring(this.rootPath.length).split(r);if(u.length===1&&!u[0]&&u.pop(),i===void 0)throw new TypeError("must provide nocase setting to PathScurryBase ctor");this.nocase=i,this.root=this.newRoot(this.#n),this.roots[this.rootPath]=this.root;let l=this.root,f=u.length-1,h=t.sep,d=this.rootPath,p=!1;for(let S of u){let w=f--;l=l.child(S,{relative:new Array(w).fill("..").join(h),relativePosix:new Array(w).fill("..").join("/"),fullpath:d+=(p?"":h)+S}),p=!0}this.cwd=l}depth(e=this.cwd){return typeof e=="string"&&(e=this.cwd.resolve(e)),e.depth()}childrenCache(){return this.#s}resolve(...e){let t="";for(let s=e.length-1;s>=0;s--){let a=e[s];if(!(!a||a===".")&&(t=t?`${a}/${t}`:a,this.isAbsolute(a)))break}let r=this.#e.get(t);if(r!==void 0)return r;let i=this.cwd.resolve(t).fullpath();return this.#e.set(t,i),i}resolvePosix(...e){let t="";for(let s=e.length-1;s>=0;s--){let a=e[s];if(!(!a||a===".")&&(t=t?`${a}/${t}`:a,this.isAbsolute(a)))break}let r=this.#t.get(t);if(r!==void 0)return r;let i=this.cwd.resolve(t).fullpathPosix();return this.#t.set(t,i),i}relative(e=this.cwd){return typeof e=="string"&&(e=this.cwd.resolve(e)),e.relative()}relativePosix(e=this.cwd){return typeof e=="string"&&(e=this.cwd.resolve(e)),e.relativePosix()}basename(e=this.cwd){return typeof e=="string"&&(e=this.cwd.resolve(e)),e.name}dirname(e=this.cwd){return typeof e=="string"&&(e=this.cwd.resolve(e)),(e.parent||e).fullpath()}async readdir(e=this.cwd,t={withFileTypes:!0}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof ur||(t=e,e=this.cwd);let{withFileTypes:r}=t;if(e.canReaddir()){let i=await e.readdir();return r?i:i.map(s=>s.name)}else return[]}readdirSync(e=this.cwd,t={withFileTypes:!0}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof ur||(t=e,e=this.cwd);let{withFileTypes:r=!0}=t;return e.canReaddir()?r?e.readdirSync():e.readdirSync().map(i=>i.name):[]}async lstat(e=this.cwd){return typeof e=="string"&&(e=this.cwd.resolve(e)),e.lstat()}lstatSync(e=this.cwd){return typeof e=="string"&&(e=this.cwd.resolve(e)),e.lstatSync()}async readlink(e=this.cwd,{withFileTypes:t}={withFileTypes:!1}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof ur||(t=e.withFileTypes,e=this.cwd);let r=await e.readlink();return t?r:r?.fullpath()}readlinkSync(e=this.cwd,{withFileTypes:t}={withFileTypes:!1}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof ur||(t=e.withFileTypes,e=this.cwd);let r=e.readlinkSync();return t?r:r?.fullpath()}async realpath(e=this.cwd,{withFileTypes:t}={withFileTypes:!1}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof ur||(t=e.withFileTypes,e=this.cwd);let r=await e.realpath();return t?r:r?.fullpath()}realpathSync(e=this.cwd,{withFileTypes:t}={withFileTypes:!1}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof ur||(t=e.withFileTypes,e=this.cwd);let r=e.realpathSync();return t?r:r?.fullpath()}async walk(e=this.cwd,t={}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof ur||(t=e,e=this.cwd);let{withFileTypes:r=!0,follow:i=!1,filter:s,walkFilter:a}=t,c=[];(!s||s(e))&&c.push(r?e:e.fullpath());let u=new Set,l=o((h,d)=>{u.add(h),h.readdirCB((p,S)=>{if(p)return d(p);let w=S.length;if(!w)return d();let T=o(()=>{--w===0&&d()},"next");for(let O of S)(!s||s(O))&&c.push(r?O:O.fullpath()),i&&O.isSymbolicLink()?O.realpath().then(I=>I?.isUnknown()?I.lstat():I).then(I=>I?.shouldWalk(u,a)?l(I,T):T()):O.shouldWalk(u,a)?l(O,T):T()},!0)},"walk"),f=e;return new Promise((h,d)=>{l(f,p=>{if(p)return d(p);h(c)})})}walkSync(e=this.cwd,t={}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof ur||(t=e,e=this.cwd);let{withFileTypes:r=!0,follow:i=!1,filter:s,walkFilter:a}=t,c=[];(!s||s(e))&&c.push(r?e:e.fullpath());let u=new Set([e]);for(let l of u){let f=l.readdirSync();for(let h of f){(!s||s(h))&&c.push(r?h:h.fullpath());let d=h;if(h.isSymbolicLink()){if(!(i&&(d=h.realpathSync())))continue;d.isUnknown()&&d.lstatSync()}d.shouldWalk(u,a)&&u.add(d)}}return c}[Symbol.asyncIterator](){return this.iterate()}iterate(e=this.cwd,t={}){return typeof e=="string"?e=this.cwd.resolve(e):e instanceof ur||(t=e,e=this.cwd),this.stream(e,t)[Symbol.asyncIterator]()}[Symbol.iterator](){return this.iterateSync()}*iterateSync(e=this.cwd,t={}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof ur||(t=e,e=this.cwd);let{withFileTypes:r=!0,follow:i=!1,filter:s,walkFilter:a}=t;(!s||s(e))&&(yield r?e:e.fullpath());let c=new Set([e]);for(let u of c){let l=u.readdirSync();for(let f of l){(!s||s(f))&&(yield r?f:f.fullpath());let h=f;if(f.isSymbolicLink()){if(!(i&&(h=f.realpathSync())))continue;h.isUnknown()&&h.lstatSync()}h.shouldWalk(c,a)&&c.add(h)}}}stream(e=this.cwd,t={}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof ur||(t=e,e=this.cwd);let{withFileTypes:r=!0,follow:i=!1,filter:s,walkFilter:a}=t,c=new ls({objectMode:!0});(!s||s(e))&&c.write(r?e:e.fullpath());let u=new Set,l=[e],f=0,h=o(()=>{let d=!1;for(;!d;){let p=l.shift();if(!p){f===0&&c.end();return}f++,u.add(p);let S=o((T,O,I=!1)=>{if(T)return c.emit("error",T);if(i&&!I){let L=[];for(let M of O)M.isSymbolicLink()&&L.push(M.realpath().then(G=>G?.isUnknown()?G.lstat():G));if(L.length){Promise.all(L).then(()=>S(null,O,!0));return}}for(let L of O)L&&(!s||s(L))&&(c.write(r?L:L.fullpath())||(d=!0));f--;for(let L of O){let M=L.realpathCached()||L;M.shouldWalk(u,a)&&l.push(M)}d&&!c.flowing?c.once("drain",h):w||h()},"onReaddir"),w=!0;p.readdirCB(S,!0),w=!1}},"process");return h(),c}streamSync(e=this.cwd,t={}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof ur||(t=e,e=this.cwd);let{withFileTypes:r=!0,follow:i=!1,filter:s,walkFilter:a}=t,c=new ls({objectMode:!0}),u=new Set;(!s||s(e))&&c.write(r?e:e.fullpath());let l=[e],f=0,h=o(()=>{let d=!1;for(;!d;){let p=l.shift();if(!p){f===0&&c.end();return}f++,u.add(p);let S=p.readdirSync();for(let w of S)(!s||s(w))&&(c.write(r?w:w.fullpath())||(d=!0));f--;for(let w of S){let T=w;if(w.isSymbolicLink()){if(!(i&&(T=w.realpathSync())))continue;T.isUnknown()&&T.lstatSync()}T.shouldWalk(u,a)&&l.push(T)}}d&&!c.flowing&&c.once("drain",h)},"process");return h(),c}chdir(e=this.cwd){let t=this.cwd;this.cwd=typeof e=="string"?this.cwd.resolve(e):e,this.cwd[hT](t)}},Do=class extends Lh{static{o(this,"PathScurryWin32")}sep="\\";constructor(e=process.cwd(),t={}){let{nocase:r=!0}=t;super(e,Po.win32,"\\",{...t,nocase:r}),this.nocase=r;for(let i=this.cwd;i;i=i.parent)i.nocase=this.nocase}parseRootPath(e){return Po.win32.parse(e).root.toUpperCase()}newRoot(e){return new Fh(this.rootPath,ci,void 0,this.roots,this.nocase,this.childrenCache(),{fs:e})}isAbsolute(e){return e.startsWith("/")||e.startsWith("\\")||/^[a-z]:(\/|\\)/i.test(e)}},Ro=class extends Lh{static{o(this,"PathScurryPosix")}sep="/";constructor(e=process.cwd(),t={}){let{nocase:r=!1}=t;super(e,Po.posix,"/",{...t,nocase:r}),this.nocase=r}parseRootPath(e){return"/"}newRoot(e){return new Nh(this.rootPath,ci,void 0,this.roots,this.nocase,this.childrenCache(),{fs:e})}isAbsolute(e){return e.startsWith("/")}},au=class extends Ro{static{o(this,"PathScurryDarwin")}constructor(e=process.cwd(),t={}){let{nocase:r=!0}=t;super(e,{...t,nocase:r})}},TQ=process.platform==="win32"?Fh:Nh,dT=process.platform==="win32"?Do:process.platform==="darwin"?au:Ro;var nM=o(n=>n.length>=1,"isPatternList"),iM=o(n=>n.length>=1,"isGlobList"),Fo=class n{static{o(this,"Pattern")}#e;#t;#s;length;#n;#a;#_;#u;#f;#o;#c=!0;constructor(e,t,r,i){if(!nM(e))throw new TypeError("empty pattern list");if(!iM(t))throw new TypeError("empty glob list");if(t.length!==e.length)throw new TypeError("mismatched pattern list and glob list lengths");if(this.length=e.length,r<0||r>=this.length)throw new TypeError("index out of range");if(this.#e=e,this.#t=t,this.#s=r,this.#n=i,this.#s===0){if(this.isUNC()){let[s,a,c,u,...l]=this.#e,[f,h,d,p,...S]=this.#t;l[0]===""&&(l.shift(),S.shift());let w=[s,a,c,u,""].join("/"),T=[f,h,d,p,""].join("/");this.#e=[w,...l],this.#t=[T,...S],this.length=this.#e.length}else if(this.isDrive()||this.isAbsolute()){let[s,...a]=this.#e,[c,...u]=this.#t;a[0]===""&&(a.shift(),u.shift());let l=s+"/",f=c+"/";this.#e=[l,...a],this.#t=[f,...u],this.length=this.#e.length}}}pattern(){return this.#e[this.#s]}isString(){return typeof this.#e[this.#s]=="string"}isGlobstar(){return this.#e[this.#s]===Kt}isRegExp(){return this.#e[this.#s]instanceof RegExp}globString(){return this.#_=this.#_||(this.#s===0?this.isAbsolute()?this.#t[0]+this.#t.slice(1).join("/"):this.#t.join("/"):this.#t.slice(this.#s).join("/"))}hasMore(){return this.length>this.#s+1}rest(){return this.#a!==void 0?this.#a:this.hasMore()?(this.#a=new n(this.#e,this.#t,this.#s+1,this.#n),this.#a.#o=this.#o,this.#a.#f=this.#f,this.#a.#u=this.#u,this.#a):this.#a=null}isUNC(){let e=this.#e;return this.#f!==void 0?this.#f:this.#f=this.#n==="win32"&&this.#s===0&&e[0]===""&&e[1]===""&&typeof e[2]=="string"&&!!e[2]&&typeof e[3]=="string"&&!!e[3]}isDrive(){let e=this.#e;return this.#u!==void 0?this.#u:this.#u=this.#n==="win32"&&this.#s===0&&this.length>1&&typeof e[0]=="string"&&/^[a-z]:$/i.test(e[0])}isAbsolute(){let e=this.#e;return this.#o!==void 0?this.#o:this.#o=e[0]===""&&e.length>1||this.isDrive()||this.isUNC()}root(){let e=this.#e[0];return typeof e=="string"&&this.isAbsolute()&&this.#s===0?e:""}checkFollowGlobstar(){return!(this.#s===0||!this.isGlobstar()||!this.#c)}markFollowGlobstar(){return this.#s===0||!this.isGlobstar()||!this.#c?!1:(this.#c=!1,!0)}};var sM=typeof process=="object"&&process&&typeof process.platform=="string"?process.platform:"linux",No=class{static{o(this,"Ignore")}relative;relativeChildren;absolute;absoluteChildren;platform;mmopts;constructor(e,{nobrace:t,nocase:r,noext:i,noglobstar:s,platform:a=sM}){this.relative=[],this.absolute=[],this.relativeChildren=[],this.absoluteChildren=[],this.platform=a,this.mmopts={dot:!0,nobrace:t,nocase:r,noext:i,noglobstar:s,optimizationLevel:2,platform:a,nocomment:!0,nonegate:!0};for(let c of e)this.add(c)}add(e){let t=new Ur(e,this.mmopts);for(let r=0;r<t.set.length;r++){let i=t.set[r],s=t.globParts[r];if(!i||!s)throw new Error("invalid pattern object");for(;i[0]==="."&&s[0]===".";)i.shift(),s.shift();let a=new Fo(i,s,0,this.platform),c=new Ur(a.globString(),this.mmopts),u=s[s.length-1]==="**",l=a.isAbsolute();l?this.absolute.push(c):this.relative.push(c),u&&(l?this.absoluteChildren.push(c):this.relativeChildren.push(c))}}ignored(e){let t=e.fullpath(),r=`${t}/`,i=e.relative()||".",s=`${i}/`;for(let a of this.relative)if(a.match(i)||a.match(s))return!0;for(let a of this.absolute)if(a.match(t)||a.match(r))return!0;return!1}childrenIgnored(e){let t=e.fullpath()+"/",r=(e.relative()||".")+"/";for(let i of this.relativeChildren)if(i.match(r))return!0;for(let i of this.absoluteChildren)if(i.match(t))return!0;return!1}};var Z0=class n{static{o(this,"HasWalkedCache")}store;constructor(e=new Map){this.store=e}copy(){return new n(new Map(this.store))}hasWalked(e,t){return this.store.get(e.fullpath())?.has(t.globString())}storeWalked(e,t){let r=e.fullpath(),i=this.store.get(r);i?i.add(t.globString()):this.store.set(r,new Set([t.globString()]))}},e1=class{static{o(this,"MatchRecord")}store=new Map;add(e,t,r){let i=(t?2:0)|(r?1:0),s=this.store.get(e);this.store.set(e,s===void 0?i:i&s)}entries(){return[...this.store.entries()].map(([e,t])=>[e,!!(t&2),!!(t&1)])}},t1=class{static{o(this,"SubWalks")}store=new Map;add(e,t){if(!e.canReaddir())return;let r=this.store.get(e);r?r.find(i=>i.globString()===t.globString())||r.push(t):this.store.set(e,[t])}get(e){let t=this.store.get(e);if(!t)throw new Error("attempting to walk unknown path");return t}entries(){return this.keys().map(e=>[e,this.store.get(e)])}keys(){return[...this.store.keys()].filter(e=>e.canReaddir())}},ou=class n{static{o(this,"Processor")}hasWalkedCache;matches=new e1;subwalks=new t1;patterns;follow;dot;opts;constructor(e,t){this.opts=e,this.follow=!!e.follow,this.dot=!!e.dot,this.hasWalkedCache=t?t.copy():new Z0}processPatterns(e,t){this.patterns=t;let r=t.map(i=>[e,i]);for(let[i,s]of r){this.hasWalkedCache.storeWalked(i,s);let a=s.root(),c=s.isAbsolute()&&this.opts.absolute!==!1;if(a){i=i.resolve(a==="/"&&this.opts.root!==void 0?this.opts.root:a);let h=s.rest();if(h)s=h;else{this.matches.add(i,!0,!1);continue}}if(i.isENOENT())continue;let u,l,f=!1;for(;typeof(u=s.pattern())=="string"&&(l=s.rest());)i=i.resolve(u),s=l,f=!0;if(u=s.pattern(),l=s.rest(),f){if(this.hasWalkedCache.hasWalked(i,s))continue;this.hasWalkedCache.storeWalked(i,s)}if(typeof u=="string"){let h=u===".."||u===""||u===".";this.matches.add(i.resolve(u),c,h);continue}else if(u===Kt){(!i.isSymbolicLink()||this.follow||s.checkFollowGlobstar())&&this.subwalks.add(i,s);let h=l?.pattern(),d=l?.rest();if(!l||(h===""||h===".")&&!d)this.matches.add(i,c,h===""||h===".");else if(h===".."){let p=i.parent||i;d?this.hasWalkedCache.hasWalked(p,d)||this.subwalks.add(p,d):this.matches.add(p,c,!0)}}else u instanceof RegExp&&this.subwalks.add(i,s)}return this}subwalkTargets(){return this.subwalks.keys()}child(){return new n(this.opts,this.hasWalkedCache)}filterEntries(e,t){let r=this.subwalks.get(e),i=this.child();for(let s of t)for(let a of r){let c=a.isAbsolute(),u=a.pattern(),l=a.rest();u===Kt?i.testGlobstar(s,a,l,c):u instanceof RegExp?i.testRegExp(s,u,l,c):i.testString(s,u,l,c)}return i}testGlobstar(e,t,r,i){if((this.dot||!e.name.startsWith("."))&&(t.hasMore()||this.matches.add(e,i,!1),e.canReaddir()&&(this.follow||!e.isSymbolicLink()?this.subwalks.add(e,t):e.isSymbolicLink()&&(r&&t.checkFollowGlobstar()?this.subwalks.add(e,r):t.markFollowGlobstar()&&this.subwalks.add(e,t)))),r){let s=r.pattern();if(typeof s=="string"&&s!==".."&&s!==""&&s!==".")this.testString(e,s,r.rest(),i);else if(s===".."){let a=e.parent||e;this.subwalks.add(a,r)}else s instanceof RegExp&&this.testRegExp(e,s,r.rest(),i)}}testRegExp(e,t,r,i){t.test(e.name)&&(r?this.subwalks.add(e,r):this.matches.add(e,i,!1))}testString(e,t,r,i){e.isNamed(t)&&(r?this.subwalks.add(e,r):this.matches.add(e,i,!1))}};var aM=o((n,e)=>typeof n=="string"?new No([n],e):Array.isArray(n)?new No(n,e):n,"makeIgnore"),kh=class{static{o(this,"GlobUtil")}path;patterns;opts;seen=new Set;paused=!1;aborted=!1;#e=[];#t;#s;signal;maxDepth;includeChildMatches;constructor(e,t,r){if(this.patterns=e,this.path=t,this.opts=r,this.#s=!r.posix&&r.platform==="win32"?"\\":"/",this.includeChildMatches=r.includeChildMatches!==!1,(r.ignore||!this.includeChildMatches)&&(this.#t=aM(r.ignore??[],r),!this.includeChildMatches&&typeof this.#t.add!="function")){let i="cannot ignore child matches, ignore lacks add() method.";throw new Error(i)}this.maxDepth=r.maxDepth||1/0,r.signal&&(this.signal=r.signal,this.signal.addEventListener("abort",()=>{this.#e.length=0}))}#n(e){return this.seen.has(e)||!!this.#t?.ignored?.(e)}#a(e){return!!this.#t?.childrenIgnored?.(e)}pause(){this.paused=!0}resume(){if(this.signal?.aborted)return;this.paused=!1;let e;for(;!this.paused&&(e=this.#e.shift());)e()}onResume(e){this.signal?.aborted||(this.paused?this.#e.push(e):e())}async matchCheck(e,t){if(t&&this.opts.nodir)return;let r;if(this.opts.realpath){if(r=e.realpathCached()||await e.realpath(),!r)return;e=r}let s=e.isUnknown()||this.opts.stat?await e.lstat():e;if(this.opts.follow&&this.opts.nodir&&s?.isSymbolicLink()){let a=await s.realpath();a&&(a.isUnknown()||this.opts.stat)&&await a.lstat()}return this.matchCheckTest(s,t)}matchCheckTest(e,t){return e&&(this.maxDepth===1/0||e.depth()<=this.maxDepth)&&(!t||e.canReaddir())&&(!this.opts.nodir||!e.isDirectory())&&(!this.opts.nodir||!this.opts.follow||!e.isSymbolicLink()||!e.realpathCached()?.isDirectory())&&!this.#n(e)?e:void 0}matchCheckSync(e,t){if(t&&this.opts.nodir)return;let r;if(this.opts.realpath){if(r=e.realpathCached()||e.realpathSync(),!r)return;e=r}let s=e.isUnknown()||this.opts.stat?e.lstatSync():e;if(this.opts.follow&&this.opts.nodir&&s?.isSymbolicLink()){let a=s.realpathSync();a&&(a?.isUnknown()||this.opts.stat)&&a.lstatSync()}return this.matchCheckTest(s,t)}matchFinish(e,t){if(this.#n(e))return;if(!this.includeChildMatches&&this.#t?.add){let s=`${e.relativePosix()}/**`;this.#t.add(s)}let r=this.opts.absolute===void 0?t:this.opts.absolute;this.seen.add(e);let i=this.opts.mark&&e.isDirectory()?this.#s:"";if(this.opts.withFileTypes)this.matchEmit(e);else if(r){let s=this.opts.posix?e.fullpathPosix():e.fullpath();this.matchEmit(s+i)}else{let s=this.opts.posix?e.relativePosix():e.relative(),a=this.opts.dotRelative&&!s.startsWith(".."+this.#s)?"."+this.#s:"";this.matchEmit(s?a+s+i:"."+i)}}async match(e,t,r){let i=await this.matchCheck(e,r);i&&this.matchFinish(i,t)}matchSync(e,t,r){let i=this.matchCheckSync(e,r);i&&this.matchFinish(i,t)}walkCB(e,t,r){this.signal?.aborted&&r(),this.walkCB2(e,t,new ou(this.opts),r)}walkCB2(e,t,r,i){if(this.#a(e))return i();if(this.signal?.aborted&&i(),this.paused){this.onResume(()=>this.walkCB2(e,t,r,i));return}r.processPatterns(e,t);let s=1,a=o(()=>{--s===0&&i()},"next");for(let[c,u,l]of r.matches.entries())this.#n(c)||(s++,this.match(c,u,l).then(()=>a()));for(let c of r.subwalkTargets()){if(this.maxDepth!==1/0&&c.depth()>=this.maxDepth)continue;s++;let u=c.readdirCached();c.calledReaddir()?this.walkCB3(c,u,r,a):c.readdirCB((l,f)=>this.walkCB3(c,f,r,a),!0)}a()}walkCB3(e,t,r,i){r=r.filterEntries(e,t);let s=1,a=o(()=>{--s===0&&i()},"next");for(let[c,u,l]of r.matches.entries())this.#n(c)||(s++,this.match(c,u,l).then(()=>a()));for(let[c,u]of r.subwalks.entries())s++,this.walkCB2(c,u,r.child(),a);a()}walkCBSync(e,t,r){this.signal?.aborted&&r(),this.walkCB2Sync(e,t,new ou(this.opts),r)}walkCB2Sync(e,t,r,i){if(this.#a(e))return i();if(this.signal?.aborted&&i(),this.paused){this.onResume(()=>this.walkCB2Sync(e,t,r,i));return}r.processPatterns(e,t);let s=1,a=o(()=>{--s===0&&i()},"next");for(let[c,u,l]of r.matches.entries())this.#n(c)||this.matchSync(c,u,l);for(let c of r.subwalkTargets()){if(this.maxDepth!==1/0&&c.depth()>=this.maxDepth)continue;s++;let u=c.readdirSync();this.walkCB3Sync(c,u,r,a)}a()}walkCB3Sync(e,t,r,i){r=r.filterEntries(e,t);let s=1,a=o(()=>{--s===0&&i()},"next");for(let[c,u,l]of r.matches.entries())this.#n(c)||this.matchSync(c,u,l);for(let[c,u]of r.subwalks.entries())s++,this.walkCB2Sync(c,u,r.child(),a);a()}},cu=class extends kh{static{o(this,"GlobWalker")}matches=new Set;constructor(e,t,r){super(e,t,r)}matchEmit(e){this.matches.add(e)}async walk(){if(this.signal?.aborted)throw this.signal.reason;return this.path.isUnknown()&&await this.path.lstat(),await new Promise((e,t)=>{this.walkCB(this.path,this.patterns,()=>{this.signal?.aborted?t(this.signal.reason):e(this.matches)})}),this.matches}walkSync(){if(this.signal?.aborted)throw this.signal.reason;return this.path.isUnknown()&&this.path.lstatSync(),this.walkCBSync(this.path,this.patterns,()=>{if(this.signal?.aborted)throw this.signal.reason}),this.matches}},uu=class extends kh{static{o(this,"GlobStream")}results;constructor(e,t,r){super(e,t,r),this.results=new ls({signal:this.signal,objectMode:!0}),this.results.on("drain",()=>this.resume()),this.results.on("resume",()=>this.resume())}matchEmit(e){this.results.write(e),this.results.flowing||this.pause()}stream(){let e=this.path;return e.isUnknown()?e.lstat().then(()=>{this.walkCB(e,this.patterns,()=>this.results.end())}):this.walkCB(e,this.patterns,()=>this.results.end()),this.results}streamSync(){return this.path.isUnknown()&&this.path.lstatSync(),this.walkCBSync(this.path,this.patterns,()=>this.results.end()),this.results}};var oM=typeof process=="object"&&process&&typeof process.platform=="string"?process.platform:"linux",Mn=class{static{o(this,"Glob")}absolute;cwd;root;dot;dotRelative;follow;ignore;magicalBraces;mark;matchBase;maxDepth;nobrace;nocase;nodir;noext;noglobstar;pattern;platform;realpath;scurry;stat;signal;windowsPathsNoEscape;withFileTypes;includeChildMatches;opts;patterns;constructor(e,t){if(!t)throw new TypeError("glob options required");if(this.withFileTypes=!!t.withFileTypes,this.signal=t.signal,this.follow=!!t.follow,this.dot=!!t.dot,this.dotRelative=!!t.dotRelative,this.nodir=!!t.nodir,this.mark=!!t.mark,t.cwd?(t.cwd instanceof URL||t.cwd.startsWith("file://"))&&(t.cwd=(0,pT.fileURLToPath)(t.cwd)):this.cwd="",this.cwd=t.cwd||"",this.root=t.root,this.magicalBraces=!!t.magicalBraces,this.nobrace=!!t.nobrace,this.noext=!!t.noext,this.realpath=!!t.realpath,this.absolute=t.absolute,this.includeChildMatches=t.includeChildMatches!==!1,this.noglobstar=!!t.noglobstar,this.matchBase=!!t.matchBase,this.maxDepth=typeof t.maxDepth=="number"?t.maxDepth:1/0,this.stat=!!t.stat,this.ignore=t.ignore,this.withFileTypes&&this.absolute!==void 0)throw new Error("cannot set absolute and withFileTypes:true");if(typeof e=="string"&&(e=[e]),this.windowsPathsNoEscape=!!t.windowsPathsNoEscape||t.allowWindowsEscape===!1,this.windowsPathsNoEscape&&(e=e.map(u=>u.replace(/\\/g,"/"))),this.matchBase){if(t.noglobstar)throw new TypeError("base matching requires globstar");e=e.map(u=>u.includes("/")?u:`./**/${u}`)}if(this.pattern=e,this.platform=t.platform||oM,this.opts={...t,platform:this.platform},t.scurry){if(this.scurry=t.scurry,t.nocase!==void 0&&t.nocase!==t.scurry.nocase)throw new Error("nocase option contradicts provided scurry option")}else{let u=t.platform==="win32"?Do:t.platform==="darwin"?au:t.platform?Ro:dT;this.scurry=new u(this.cwd,{nocase:t.nocase,fs:t.fs})}this.nocase=this.scurry.nocase;let r=this.platform==="darwin"||this.platform==="win32",i={...t,dot:this.dot,matchBase:this.matchBase,nobrace:this.nobrace,nocase:this.nocase,nocaseMagicOnly:r,nocomment:!0,noext:this.noext,nonegate:!0,optimizationLevel:2,platform:this.platform,windowsPathsNoEscape:this.windowsPathsNoEscape,debug:!!this.opts.debug},s=this.pattern.map(u=>new Ur(u,i)),[a,c]=s.reduce((u,l)=>(u[0].push(...l.set),u[1].push(...l.globParts),u),[[],[]]);this.patterns=a.map((u,l)=>{let f=c[l];if(!f)throw new Error("invalid pattern object");return new Fo(u,f,0,this.platform)})}async walk(){return[...await new cu(this.patterns,this.scurry.cwd,{...this.opts,maxDepth:this.maxDepth!==1/0?this.maxDepth+this.scurry.cwd.depth():1/0,platform:this.platform,nocase:this.nocase,includeChildMatches:this.includeChildMatches}).walk()]}walkSync(){return[...new cu(this.patterns,this.scurry.cwd,{...this.opts,maxDepth:this.maxDepth!==1/0?this.maxDepth+this.scurry.cwd.depth():1/0,platform:this.platform,nocase:this.nocase,includeChildMatches:this.includeChildMatches}).walkSync()]}stream(){return new uu(this.patterns,this.scurry.cwd,{...this.opts,maxDepth:this.maxDepth!==1/0?this.maxDepth+this.scurry.cwd.depth():1/0,platform:this.platform,nocase:this.nocase,includeChildMatches:this.includeChildMatches}).stream()}streamSync(){return new uu(this.patterns,this.scurry.cwd,{...this.opts,maxDepth:this.maxDepth!==1/0?this.maxDepth+this.scurry.cwd.depth():1/0,platform:this.platform,nocase:this.nocase,includeChildMatches:this.includeChildMatches}).streamSync()}iterateSync(){return this.streamSync()[Symbol.iterator]()}[Symbol.iterator](){return this.iterateSync()}iterate(){return this.stream()[Symbol.asyncIterator]()}[Symbol.asyncIterator](){return this.iterate()}};var r1=o((n,e={})=>{Array.isArray(n)||(n=[n]);for(let t of n)if(new Ur(t,e).hasMagic())return!0;return!1},"hasMagic");function jh(n,e={}){return new Mn(n,e).streamSync()}o(jh,"globStreamSync");function gT(n,e={}){return new Mn(n,e).stream()}o(gT,"globStream");function yT(n,e={}){return new Mn(n,e).walkSync()}o(yT,"globSync");async function mT(n,e={}){return new Mn(n,e).walk()}o(mT,"glob_");function $h(n,e={}){return new Mn(n,e).iterateSync()}o($h,"globIterateSync");function vT(n,e={}){return new Mn(n,e).iterate()}o(vT,"globIterate");var cM=jh,uM=Object.assign(gT,{sync:jh}),lM=$h,fM=Object.assign(vT,{sync:$h}),hM=Object.assign(yT,{stream:jh,iterate:$h}),Mh=Object.assign(mT,{glob:mT,globSync:yT,sync:hM,globStream:gT,stream:uM,globStreamSync:jh,streamSync:cM,globIterate:vT,iterate:fM,globIterateSync:$h,iterateSync:lM,Glob:Mn,hasMagic:r1,escape:Ao,unescape:Nn});Mh.glob=Mh;var ca=Ne(Rn());var ds=class{constructor(e){this.rootPath=e}static{o(this,"NodeFsAdapter")}async readFile(e){let t=this.resolvePath(e);if(!await Pt.default.pathExists(t))throw new ca.FileNotFoundError(e);return Pt.default.readFile(t,"utf-8")}async fileExists(e){let t=this.resolvePath(e);return Pt.default.pathExists(t)}async getFileMetadata(e){let t=await this.readFile(e);return this.extractFrontmatter(t)}async createFile(e,t){let r=this.resolvePath(e);if(await Pt.default.pathExists(r))throw new ca.FileAlreadyExistsError(e);return await Pt.default.ensureDir(hs.default.dirname(r)),await Pt.default.writeFile(r,t,"utf-8"),e}async updateFile(e,t){let r=this.resolvePath(e);if(!await Pt.default.pathExists(r))throw new ca.FileNotFoundError(e);await Pt.default.writeFile(r,t,"utf-8")}async writeFile(e,t){let r=this.resolvePath(e);await Pt.default.ensureDir(hs.default.dirname(r)),await Pt.default.writeFile(r,t,"utf-8")}async deleteFile(e){let t=this.resolvePath(e);if(!await Pt.default.pathExists(t))throw new ca.FileNotFoundError(e);await Pt.default.remove(t)}async renameFile(e,t){let r=this.resolvePath(e),i=this.resolvePath(t);if(!await Pt.default.pathExists(r))throw new ca.FileNotFoundError(e);await Pt.default.ensureDir(hs.default.dirname(i)),await Pt.default.move(r,i)}async createDirectory(e){let t=this.resolvePath(e);await Pt.default.ensureDir(t)}async directoryExists(e){let t=this.resolvePath(e);return await Pt.default.pathExists(t)?(await Pt.default.stat(t)).isDirectory():!1}async getMarkdownFiles(e){let t=e?this.resolvePath(e):this.rootPath,r=hs.default.join(t,"**/*.md");return(await Mh(r,{nodir:!0})).map(a=>hs.default.relative(this.rootPath,a))}async findFilesByMetadata(e){let t=await this.getMarkdownFiles(),r=[];for(let i of t)try{let s=await this.getFileMetadata(i);this.matchesQuery(s,e)&&r.push(i)}catch{continue}return r}async findFileByUID(e){let t=await this.findFilesByMetadata({exo__Asset_uid:e});return t.length>0?t[0]:null}resolvePath(e){return hs.default.isAbsolute(e)?e:hs.default.join(this.rootPath,e)}extractFrontmatter(e){let t=/^---\n([\s\S]*?)\n---/,r=e.match(t);if(!r)return{};try{let i=Gc.load(r[1]);return typeof i=="object"&&i!==null?i:{}}catch{return{}}}matchesQuery(e,t){for(let[r,i]of Object.entries(t)){let s=e[r];if(Array.isArray(s)){if(!s.some(a=>this.normalizeValue(a)===this.normalizeValue(i)))return!1}else if(this.normalizeValue(s)!==this.normalizeValue(i))return!1}return!0}normalizeValue(e){return e==null?"":String(e).replace(/["'[\]]/g,"").trim()}};var lu=Ne(require("path")),n1=Ne(yo());var Lo=class{constructor(e){this.vaultRoot=e}static{o(this,"PathResolver")}resolve(e){if(!lu.default.isAbsolute(e))return lu.default.resolve(this.vaultRoot,e);let t=lu.default.resolve(e),r=lu.default.resolve(this.vaultRoot);if(!t.startsWith(r))throw new tt(`File path ${e} is outside vault root ${this.vaultRoot}`,"Provide a file path within the vault directory.",{filepath:e,vaultRoot:this.vaultRoot});return t}validate(e){if(!n1.default.existsSync(e))throw new Hc(e);if(!n1.default.statSync(e).isFile())throw new tt(`Not a file: ${e}`,"Provide a path to a file, not a directory.",{filepath:e});if(!e.endsWith(".md"))throw new tt(`Not a Markdown file: ${e}`,"Provide a path to a .md file.",{filepath:e})}getVaultRoot(){return this.vaultRoot}};var TT=Ne(Rn());var ST=Ne(Rn());var jn=class{static{o(this,"BaseCommandExecutor")}constructor(e){this.pathResolver=e.pathResolver,this.fsAdapter=e.fsAdapter,this.frontmatterService=e.frontmatterService,this.dryRun=e.dryRun}resolveAndValidate(e){let t=this.pathResolver.resolve(e);this.pathResolver.validate(t);let r=t.replace(this.pathResolver.getVaultRoot()+"/","");return{resolvedPath:t,relativePath:r}}getCurrentTimestamp(){return ST.DateFormatter.toLocalTimestamp(new Date)}isAssetArchived(e){if(e?.exo__Asset_isArchived===!0)return!0;let t=e?.archived;if(t==null)return!1;if(typeof t=="boolean")return t;if(typeof t=="number")return t!==0;if(typeof t=="string"){let r=t.toLowerCase().trim();return r==="true"||r==="yes"||r==="1"}return!1}extractAliasesFromFrontmatter(e){let t=e.match(/aliases:\s*\n((?: - .*\n?)*)/);return t?t[1].split(`
423
+ >>> no match, partial?`,e,d,t,p),d===u))}let w;if(typeof f=="string"?(w=h===f,this.debug("string match",f,h,w)):(w=f.test(h),this.debug("pattern match",f,h,w)),!w)return!1}if(a===u&&c===l)return!0;if(a===u)return r;if(c===l)return a===u-1&&e[a]==="";throw new Error("wtf?")}braceExpand(){return G3(this.pattern,this.options)}parse(e){Yc(e);let t=this.options;if(e==="**")return Kt;if(e==="")return"";let r,i=null;(r=e.match(Tk))?i=t.dot?Ck:Ak:(r=e.match(pk))?i=(t.nocase?t.dot?vk:yk:t.dot?gk:mk)(r[1]):(r=e.match(xk))?i=(t.nocase?t.dot?Ik:Ok:t.dot?Pk:Dk)(r):(r=e.match(Sk))?i=t.dot?wk:_k:(r=e.match(bk))&&(i=Ek);let s=To.fromGlob(e,this.options).toMMPattern();return i&&typeof s=="object"&&Reflect.defineProperty(s,"test",{value:i}),s}makeRe(){if(this.regexp||this.regexp===!1)return this.regexp;let e=this.set;if(!e.length)return this.regexp=!1,this.regexp;let t=this.options,r=t.noglobstar?Nk:t.dot?Lk:kk,i=new Set(t.nocase?["i"]:[]),s=e.map(u=>{let l=u.map(f=>{if(f instanceof RegExp)for(let h of f.flags.split(""))i.add(h);return typeof f=="string"?Uk(f):f===Kt?Kt:f._src});return l.forEach((f,h)=>{let d=l[h+1],p=l[h-1];f!==Kt||p===Kt||(p===void 0?d!==void 0&&d!==Kt?l[h+1]="(?:\\/|"+r+"\\/)?"+d:l[h]=r:d===void 0?l[h-1]=p+"(?:\\/|"+r+")?":d!==Kt&&(l[h-1]=p+"(?:\\/|\\/"+r+"\\/)"+d,l[h+1]=Kt))}),l.filter(f=>f!==Kt).join("/")}).join("|"),[a,c]=e.length>1?["(?:",")"]:["",""];s="^"+a+s+c+"$",this.negate&&(s="^(?!"+s+").+$");try{this.regexp=new RegExp(s,[...i].join(""))}catch{this.regexp=!1}return this.regexp}slashSplit(e){return this.preserveMultipleSlashes?e.split("/"):this.isWindows&&/^\/\/[^\/]+/.test(e)?["",...e.split(/\/+/)]:e.split(/\/+/)}match(e,t=this.partial){if(this.debug("match",e,this.pattern),this.comment)return!1;if(this.empty)return e==="";if(e==="/"&&t)return!0;let r=this.options;this.isWindows&&(e=e.split("\\").join("/"));let i=this.slashSplit(e);this.debug(this.pattern,"split",i);let s=this.set;this.debug(this.pattern,"set",s);let a=i[i.length-1];if(!a)for(let c=i.length-2;!a&&c>=0;c--)a=i[c];for(let c=0;c<s.length;c++){let u=s[c],l=i;if(r.matchBase&&u.length===1&&(l=[a]),this.matchOne(l,u,t))return r.flipNegate?!0:!this.negate}return r.flipNegate?!1:this.negate}static defaults(e){return Xt.defaults(e).Minimatch}};Xt.AST=To;Xt.Minimatch=Vr;Xt.escape=Ao;Xt.unescape=Nn;var pT=require("node:url");var Co=typeof performance=="object"&&performance&&typeof performance.now=="function"?performance:Date,H3=new Set,U0=typeof process=="object"&&process?process:{},z3=o((n,e,t,r)=>{typeof U0.emitWarning=="function"?U0.emitWarning(n,e,t,r):console.error(`[${t}] ${e}: ${n}`)},"emitWarning"),wh=globalThis.AbortController,W3=globalThis.AbortSignal;if(typeof wh>"u"){W3=class{static{o(this,"AbortSignal")}onabort;_onabort=[];reason;aborted=!1;addEventListener(r,i){this._onabort.push(i)}},wh=class{static{o(this,"AbortController")}constructor(){e()}signal=new W3;abort(r){if(!this.signal.aborted){this.signal.reason=r,this.signal.aborted=!0;for(let i of this.signal._onabort)i(r);this.signal.onabort?.(r)}}};let n=U0.env?.LRU_CACHE_IGNORE_AC_WARNING!=="1",e=o(()=>{n&&(n=!1,z3("AbortController is not defined. If using lru-cache in node 14, load an AbortController polyfill from the `node-abort-controller` package. A minimal polyfill is provided for use by LRUCache.fetch(), but it should not be relied upon in other contexts (eg, passing it to other APIs that use AbortController/AbortSignal might have undesirable effects). You may disable this with LRU_CACHE_IGNORE_AC_WARNING=1 in the env.","NO_ABORT_CONTROLLER","ENOTSUP",e))},"warnACPolyfill")}var Bk=o(n=>!H3.has(n),"shouldWarn");var cs=o(n=>n&&n===Math.floor(n)&&n>0&&isFinite(n),"isPosInt"),Q3=o(n=>cs(n)?n<=Math.pow(2,8)?Uint8Array:n<=Math.pow(2,16)?Uint16Array:n<=Math.pow(2,32)?Uint32Array:n<=Number.MAX_SAFE_INTEGER?xo:null:null,"getUintArray"),xo=class extends Array{static{o(this,"ZeroArray")}constructor(e){super(e),this.fill(0)}},B0=class n{static{o(this,"Stack")}heap;length;static#e=!1;static create(e){let t=Q3(e);if(!t)return[];n.#e=!0;let r=new n(e,t);return n.#e=!1,r}constructor(e,t){if(!n.#e)throw new TypeError("instantiate Stack using Stack.create(n)");this.heap=new t(e),this.length=0}push(e){this.heap[this.length++]=e}pop(){return this.heap[--this.length]}},Xc=class n{static{o(this,"LRUCache")}#e;#t;#s;#n;#a;#_;ttl;ttlResolution;ttlAutopurge;updateAgeOnGet;updateAgeOnHas;allowStale;noDisposeOnSet;noUpdateTTL;maxEntrySize;sizeCalculation;noDeleteOnFetchRejection;noDeleteOnStaleGet;allowStaleOnFetchAbort;allowStaleOnFetchRejection;ignoreFetchAbort;#u;#f;#o;#c;#i;#g;#y;#d;#h;#E;#m;#T;#A;#S;#w;#b;#p;static unsafeExposeInternals(e){return{starts:e.#A,ttls:e.#S,sizes:e.#T,keyMap:e.#o,keyList:e.#c,valList:e.#i,next:e.#g,prev:e.#y,get head(){return e.#d},get tail(){return e.#h},free:e.#E,isBackgroundFetch:o(t=>e.#l(t),"isBackgroundFetch"),backgroundFetch:o((t,r,i,s)=>e.#j(t,r,i,s),"backgroundFetch"),moveToTail:o(t=>e.#V(t),"moveToTail"),indexes:o(t=>e.#x(t),"indexes"),rindexes:o(t=>e.#O(t),"rindexes"),isStale:o(t=>e.#v(t),"isStale")}}get max(){return this.#e}get maxSize(){return this.#t}get calculatedSize(){return this.#f}get size(){return this.#u}get fetchMethod(){return this.#a}get memoMethod(){return this.#_}get dispose(){return this.#s}get disposeAfter(){return this.#n}constructor(e){let{max:t=0,ttl:r,ttlResolution:i=1,ttlAutopurge:s,updateAgeOnGet:a,updateAgeOnHas:c,allowStale:u,dispose:l,disposeAfter:f,noDisposeOnSet:h,noUpdateTTL:d,maxSize:p=0,maxEntrySize:S=0,sizeCalculation:w,fetchMethod:T,memoMethod:O,noDeleteOnFetchRejection:I,noDeleteOnStaleGet:L,allowStaleOnFetchRejection:M,allowStaleOnFetchAbort:G,ignoreFetchAbort:Ee}=e;if(t!==0&&!cs(t))throw new TypeError("max option must be a nonnegative integer");let je=t?Q3(t):Array;if(!je)throw new Error("invalid max value: "+t);if(this.#e=t,this.#t=p,this.maxEntrySize=S||this.#t,this.sizeCalculation=w,this.sizeCalculation){if(!this.#t&&!this.maxEntrySize)throw new TypeError("cannot set sizeCalculation without setting maxSize or maxEntrySize");if(typeof this.sizeCalculation!="function")throw new TypeError("sizeCalculation set to non-function")}if(O!==void 0&&typeof O!="function")throw new TypeError("memoMethod must be a function if defined");if(this.#_=O,T!==void 0&&typeof T!="function")throw new TypeError("fetchMethod must be a function if specified");if(this.#a=T,this.#b=!!T,this.#o=new Map,this.#c=new Array(t).fill(void 0),this.#i=new Array(t).fill(void 0),this.#g=new je(t),this.#y=new je(t),this.#d=0,this.#h=0,this.#E=B0.create(t),this.#u=0,this.#f=0,typeof l=="function"&&(this.#s=l),typeof f=="function"?(this.#n=f,this.#m=[]):(this.#n=void 0,this.#m=void 0),this.#w=!!this.#s,this.#p=!!this.#n,this.noDisposeOnSet=!!h,this.noUpdateTTL=!!d,this.noDeleteOnFetchRejection=!!I,this.allowStaleOnFetchRejection=!!M,this.allowStaleOnFetchAbort=!!G,this.ignoreFetchAbort=!!Ee,this.maxEntrySize!==0){if(this.#t!==0&&!cs(this.#t))throw new TypeError("maxSize must be a positive integer if specified");if(!cs(this.maxEntrySize))throw new TypeError("maxEntrySize must be a positive integer if specified");this.#P()}if(this.allowStale=!!u,this.noDeleteOnStaleGet=!!L,this.updateAgeOnGet=!!a,this.updateAgeOnHas=!!c,this.ttlResolution=cs(i)||i===0?i:1,this.ttlAutopurge=!!s,this.ttl=r||0,this.ttl){if(!cs(this.ttl))throw new TypeError("ttl must be a positive integer if specified");this.#I()}if(this.#e===0&&this.ttl===0&&this.#t===0)throw new TypeError("At least one of max, maxSize, or ttl is required");if(!this.ttlAutopurge&&!this.#e&&!this.#t){let Me="LRU_CACHE_UNBOUNDED";Bk(Me)&&(H3.add(Me),z3("TTL caching without ttlAutopurge, max, or maxSize can result in unbounded memory consumption.","UnboundedCacheWarning",Me,n))}}getRemainingTTL(e){return this.#o.has(e)?1/0:0}#I(){let e=new xo(this.#e),t=new xo(this.#e);this.#S=e,this.#A=t,this.#R=(s,a,c=Co.now())=>{if(t[s]=a!==0?c:0,e[s]=a,a!==0&&this.ttlAutopurge){let u=setTimeout(()=>{this.#v(s)&&this.#D(this.#c[s],"expire")},a+1);u.unref&&u.unref()}},this.#C=s=>{t[s]=e[s]!==0?Co.now():0},this.#r=(s,a)=>{if(e[a]){let c=e[a],u=t[a];if(!c||!u)return;s.ttl=c,s.start=u,s.now=r||i();let l=s.now-u;s.remainingTTL=c-l}};let r=0,i=o(()=>{let s=Co.now();if(this.ttlResolution>0){r=s;let a=setTimeout(()=>r=0,this.ttlResolution);a.unref&&a.unref()}return s},"getNow");this.getRemainingTTL=s=>{let a=this.#o.get(s);if(a===void 0)return 0;let c=e[a],u=t[a];if(!c||!u)return 1/0;let l=(r||i())-u;return c-l},this.#v=s=>{let a=t[s],c=e[s];return!!c&&!!a&&(r||i())-a>c}}#C=o(()=>{},"#updateItemAge");#r=o(()=>{},"#statusTTL");#R=o(()=>{},"#setItemTTL");#v=o(()=>!1,"#isStale");#P(){let e=new xo(this.#e);this.#f=0,this.#T=e,this.#F=t=>{this.#f-=e[t],e[t]=0},this.#L=(t,r,i,s)=>{if(this.#l(r))return 0;if(!cs(i))if(s){if(typeof s!="function")throw new TypeError("sizeCalculation must be a function");if(i=s(r,t),!cs(i))throw new TypeError("sizeCalculation return invalid (expect positive integer)")}else throw new TypeError("invalid size value (must be positive integer). When maxSize or maxEntrySize is used, sizeCalculation or size must be set.");return i},this.#N=(t,r,i)=>{if(e[t]=r,this.#t){let s=this.#t-e[t];for(;this.#f>s;)this.#M(!0)}this.#f+=e[t],i&&(i.entrySize=r,i.totalCalculatedSize=this.#f)}}#F=o(e=>{},"#removeItemSize");#N=o((e,t,r)=>{},"#addItemSize");#L=o((e,t,r,i)=>{if(r||i)throw new TypeError("cannot set size without setting maxSize or maxEntrySize on cache");return 0},"#requireSize");*#x({allowStale:e=this.allowStale}={}){if(this.#u)for(let t=this.#h;!(!this.#k(t)||((e||!this.#v(t))&&(yield t),t===this.#d));)t=this.#y[t]}*#O({allowStale:e=this.allowStale}={}){if(this.#u)for(let t=this.#d;!(!this.#k(t)||((e||!this.#v(t))&&(yield t),t===this.#h));)t=this.#g[t]}#k(e){return e!==void 0&&this.#o.get(this.#c[e])===e}*entries(){for(let e of this.#x())this.#i[e]!==void 0&&this.#c[e]!==void 0&&!this.#l(this.#i[e])&&(yield[this.#c[e],this.#i[e]])}*rentries(){for(let e of this.#O())this.#i[e]!==void 0&&this.#c[e]!==void 0&&!this.#l(this.#i[e])&&(yield[this.#c[e],this.#i[e]])}*keys(){for(let e of this.#x()){let t=this.#c[e];t!==void 0&&!this.#l(this.#i[e])&&(yield t)}}*rkeys(){for(let e of this.#O()){let t=this.#c[e];t!==void 0&&!this.#l(this.#i[e])&&(yield t)}}*values(){for(let e of this.#x())this.#i[e]!==void 0&&!this.#l(this.#i[e])&&(yield this.#i[e])}*rvalues(){for(let e of this.#O())this.#i[e]!==void 0&&!this.#l(this.#i[e])&&(yield this.#i[e])}[Symbol.iterator](){return this.entries()}[Symbol.toStringTag]="LRUCache";find(e,t={}){for(let r of this.#x()){let i=this.#i[r],s=this.#l(i)?i.__staleWhileFetching:i;if(s!==void 0&&e(s,this.#c[r],this))return this.get(this.#c[r],t)}}forEach(e,t=this){for(let r of this.#x()){let i=this.#i[r],s=this.#l(i)?i.__staleWhileFetching:i;s!==void 0&&e.call(t,s,this.#c[r],this)}}rforEach(e,t=this){for(let r of this.#O()){let i=this.#i[r],s=this.#l(i)?i.__staleWhileFetching:i;s!==void 0&&e.call(t,s,this.#c[r],this)}}purgeStale(){let e=!1;for(let t of this.#O({allowStale:!0}))this.#v(t)&&(this.#D(this.#c[t],"expire"),e=!0);return e}info(e){let t=this.#o.get(e);if(t===void 0)return;let r=this.#i[t],i=this.#l(r)?r.__staleWhileFetching:r;if(i===void 0)return;let s={value:i};if(this.#S&&this.#A){let a=this.#S[t],c=this.#A[t];if(a&&c){let u=a-(Co.now()-c);s.ttl=u,s.start=Date.now()}}return this.#T&&(s.size=this.#T[t]),s}dump(){let e=[];for(let t of this.#x({allowStale:!0})){let r=this.#c[t],i=this.#i[t],s=this.#l(i)?i.__staleWhileFetching:i;if(s===void 0||r===void 0)continue;let a={value:s};if(this.#S&&this.#A){a.ttl=this.#S[t];let c=Co.now()-this.#A[t];a.start=Math.floor(Date.now()-c)}this.#T&&(a.size=this.#T[t]),e.unshift([r,a])}return e}load(e){this.clear();for(let[t,r]of e){if(r.start){let i=Date.now()-r.start;r.start=Co.now()-i}this.set(t,r.value,r)}}set(e,t,r={}){if(t===void 0)return this.delete(e),this;let{ttl:i=this.ttl,start:s,noDisposeOnSet:a=this.noDisposeOnSet,sizeCalculation:c=this.sizeCalculation,status:u}=r,{noUpdateTTL:l=this.noUpdateTTL}=r,f=this.#L(e,t,r.size||0,c);if(this.maxEntrySize&&f>this.maxEntrySize)return u&&(u.set="miss",u.maxEntrySizeExceeded=!0),this.#D(e,"set"),this;let h=this.#u===0?void 0:this.#o.get(e);if(h===void 0)h=this.#u===0?this.#h:this.#E.length!==0?this.#E.pop():this.#u===this.#e?this.#M(!1):this.#u,this.#c[h]=e,this.#i[h]=t,this.#o.set(e,h),this.#g[this.#h]=h,this.#y[h]=this.#h,this.#h=h,this.#u++,this.#N(h,f,u),u&&(u.set="add"),l=!1;else{this.#V(h);let d=this.#i[h];if(t!==d){if(this.#b&&this.#l(d)){d.__abortController.abort(new Error("replaced"));let{__staleWhileFetching:p}=d;p!==void 0&&!a&&(this.#w&&this.#s?.(p,e,"set"),this.#p&&this.#m?.push([p,e,"set"]))}else a||(this.#w&&this.#s?.(d,e,"set"),this.#p&&this.#m?.push([d,e,"set"]));if(this.#F(h),this.#N(h,f,u),this.#i[h]=t,u){u.set="replace";let p=d&&this.#l(d)?d.__staleWhileFetching:d;p!==void 0&&(u.oldValue=p)}}else u&&(u.set="update")}if(i!==0&&!this.#S&&this.#I(),this.#S&&(l||this.#R(h,i,s),u&&this.#r(u,h)),!a&&this.#p&&this.#m){let d=this.#m,p;for(;p=d?.shift();)this.#n?.(...p)}return this}pop(){try{for(;this.#u;){let e=this.#i[this.#d];if(this.#M(!0),this.#l(e)){if(e.__staleWhileFetching)return e.__staleWhileFetching}else if(e!==void 0)return e}}finally{if(this.#p&&this.#m){let e=this.#m,t;for(;t=e?.shift();)this.#n?.(...t)}}}#M(e){let t=this.#d,r=this.#c[t],i=this.#i[t];return this.#b&&this.#l(i)?i.__abortController.abort(new Error("evicted")):(this.#w||this.#p)&&(this.#w&&this.#s?.(i,r,"evict"),this.#p&&this.#m?.push([i,r,"evict"])),this.#F(t),e&&(this.#c[t]=void 0,this.#i[t]=void 0,this.#E.push(t)),this.#u===1?(this.#d=this.#h=0,this.#E.length=0):this.#d=this.#g[t],this.#o.delete(r),this.#u--,t}has(e,t={}){let{updateAgeOnHas:r=this.updateAgeOnHas,status:i}=t,s=this.#o.get(e);if(s!==void 0){let a=this.#i[s];if(this.#l(a)&&a.__staleWhileFetching===void 0)return!1;if(this.#v(s))i&&(i.has="stale",this.#r(i,s));else return r&&this.#C(s),i&&(i.has="hit",this.#r(i,s)),!0}else i&&(i.has="miss");return!1}peek(e,t={}){let{allowStale:r=this.allowStale}=t,i=this.#o.get(e);if(i===void 0||!r&&this.#v(i))return;let s=this.#i[i];return this.#l(s)?s.__staleWhileFetching:s}#j(e,t,r,i){let s=t===void 0?void 0:this.#i[t];if(this.#l(s))return s;let a=new wh,{signal:c}=r;c?.addEventListener("abort",()=>a.abort(c.reason),{signal:a.signal});let u={signal:a.signal,options:r,context:i},l=o((w,T=!1)=>{let{aborted:O}=a.signal,I=r.ignoreFetchAbort&&w!==void 0;if(r.status&&(O&&!T?(r.status.fetchAborted=!0,r.status.fetchError=a.signal.reason,I&&(r.status.fetchAbortIgnored=!0)):r.status.fetchResolved=!0),O&&!I&&!T)return h(a.signal.reason);let L=p;return this.#i[t]===p&&(w===void 0?L.__staleWhileFetching?this.#i[t]=L.__staleWhileFetching:this.#D(e,"fetch"):(r.status&&(r.status.fetchUpdated=!0),this.set(e,w,u.options))),w},"cb"),f=o(w=>(r.status&&(r.status.fetchRejected=!0,r.status.fetchError=w),h(w)),"eb"),h=o(w=>{let{aborted:T}=a.signal,O=T&&r.allowStaleOnFetchAbort,I=O||r.allowStaleOnFetchRejection,L=I||r.noDeleteOnFetchRejection,M=p;if(this.#i[t]===p&&(!L||M.__staleWhileFetching===void 0?this.#D(e,"fetch"):O||(this.#i[t]=M.__staleWhileFetching)),I)return r.status&&M.__staleWhileFetching!==void 0&&(r.status.returnedStale=!0),M.__staleWhileFetching;if(M.__returned===M)throw w},"fetchFail"),d=o((w,T)=>{let O=this.#a?.(e,s,u);O&&O instanceof Promise&&O.then(I=>w(I===void 0?void 0:I),T),a.signal.addEventListener("abort",()=>{(!r.ignoreFetchAbort||r.allowStaleOnFetchAbort)&&(w(void 0),r.allowStaleOnFetchAbort&&(w=o(I=>l(I,!0),"res")))})},"pcall");r.status&&(r.status.fetchDispatched=!0);let p=new Promise(d).then(l,f),S=Object.assign(p,{__abortController:a,__staleWhileFetching:s,__returned:void 0});return t===void 0?(this.set(e,S,{...u.options,status:void 0}),t=this.#o.get(e)):this.#i[t]=S,S}#l(e){if(!this.#b)return!1;let t=e;return!!t&&t instanceof Promise&&t.hasOwnProperty("__staleWhileFetching")&&t.__abortController instanceof wh}async fetch(e,t={}){let{allowStale:r=this.allowStale,updateAgeOnGet:i=this.updateAgeOnGet,noDeleteOnStaleGet:s=this.noDeleteOnStaleGet,ttl:a=this.ttl,noDisposeOnSet:c=this.noDisposeOnSet,size:u=0,sizeCalculation:l=this.sizeCalculation,noUpdateTTL:f=this.noUpdateTTL,noDeleteOnFetchRejection:h=this.noDeleteOnFetchRejection,allowStaleOnFetchRejection:d=this.allowStaleOnFetchRejection,ignoreFetchAbort:p=this.ignoreFetchAbort,allowStaleOnFetchAbort:S=this.allowStaleOnFetchAbort,context:w,forceRefresh:T=!1,status:O,signal:I}=t;if(!this.#b)return O&&(O.fetch="get"),this.get(e,{allowStale:r,updateAgeOnGet:i,noDeleteOnStaleGet:s,status:O});let L={allowStale:r,updateAgeOnGet:i,noDeleteOnStaleGet:s,ttl:a,noDisposeOnSet:c,size:u,sizeCalculation:l,noUpdateTTL:f,noDeleteOnFetchRejection:h,allowStaleOnFetchRejection:d,allowStaleOnFetchAbort:S,ignoreFetchAbort:p,status:O,signal:I},M=this.#o.get(e);if(M===void 0){O&&(O.fetch="miss");let G=this.#j(e,M,L,w);return G.__returned=G}else{let G=this.#i[M];if(this.#l(G)){let ie=r&&G.__staleWhileFetching!==void 0;return O&&(O.fetch="inflight",ie&&(O.returnedStale=!0)),ie?G.__staleWhileFetching:G.__returned=G}let Ee=this.#v(M);if(!T&&!Ee)return O&&(O.fetch="hit"),this.#V(M),i&&this.#C(M),O&&this.#r(O,M),G;let je=this.#j(e,M,L,w),q=je.__staleWhileFetching!==void 0&&r;return O&&(O.fetch=Ee?"stale":"refresh",q&&Ee&&(O.returnedStale=!0)),q?je.__staleWhileFetching:je.__returned=je}}async forceFetch(e,t={}){let r=await this.fetch(e,t);if(r===void 0)throw new Error("fetch() returned undefined");return r}memo(e,t={}){let r=this.#_;if(!r)throw new Error("no memoMethod provided to constructor");let{context:i,forceRefresh:s,...a}=t,c=this.get(e,a);if(!s&&c!==void 0)return c;let u=r(e,c,{options:a,context:i});return this.set(e,u,a),u}get(e,t={}){let{allowStale:r=this.allowStale,updateAgeOnGet:i=this.updateAgeOnGet,noDeleteOnStaleGet:s=this.noDeleteOnStaleGet,status:a}=t,c=this.#o.get(e);if(c!==void 0){let u=this.#i[c],l=this.#l(u);return a&&this.#r(a,c),this.#v(c)?(a&&(a.get="stale"),l?(a&&r&&u.__staleWhileFetching!==void 0&&(a.returnedStale=!0),r?u.__staleWhileFetching:void 0):(s||this.#D(e,"expire"),a&&r&&(a.returnedStale=!0),r?u:void 0)):(a&&(a.get="hit"),l?u.__staleWhileFetching:(this.#V(c),i&&this.#C(c),u))}else a&&(a.get="miss")}#$(e,t){this.#y[t]=e,this.#g[e]=t}#V(e){e!==this.#h&&(e===this.#d?this.#d=this.#g[e]:this.#$(this.#y[e],this.#g[e]),this.#$(this.#h,e),this.#h=e)}delete(e){return this.#D(e,"delete")}#D(e,t){let r=!1;if(this.#u!==0){let i=this.#o.get(e);if(i!==void 0)if(r=!0,this.#u===1)this.#U(t);else{this.#F(i);let s=this.#i[i];if(this.#l(s)?s.__abortController.abort(new Error("deleted")):(this.#w||this.#p)&&(this.#w&&this.#s?.(s,e,t),this.#p&&this.#m?.push([s,e,t])),this.#o.delete(e),this.#c[i]=void 0,this.#i[i]=void 0,i===this.#h)this.#h=this.#y[i];else if(i===this.#d)this.#d=this.#g[i];else{let a=this.#y[i];this.#g[a]=this.#g[i];let c=this.#g[i];this.#y[c]=this.#y[i]}this.#u--,this.#E.push(i)}}if(this.#p&&this.#m?.length){let i=this.#m,s;for(;s=i?.shift();)this.#n?.(...s)}return r}clear(){return this.#U("delete")}#U(e){for(let t of this.#O({allowStale:!0})){let r=this.#i[t];if(this.#l(r))r.__abortController.abort(new Error("deleted"));else{let i=this.#c[t];this.#w&&this.#s?.(r,i,e),this.#p&&this.#m?.push([r,i,e])}}if(this.#o.clear(),this.#i.fill(void 0),this.#c.fill(void 0),this.#S&&this.#A&&(this.#S.fill(0),this.#A.fill(0)),this.#T&&this.#T.fill(0),this.#d=0,this.#h=0,this.#E.length=0,this.#f=0,this.#u=0,this.#p&&this.#m){let t=this.#m,r;for(;r=t?.shift();)this.#n?.(...r)}}};var Po=require("node:path"),iT=require("node:url"),ui=require("fs"),Jk=Ne(require("node:fs"),1),fs=require("node:fs/promises");var Oh=require("node:events"),Y0=Ne(require("node:stream"),1),Z3=require("node:string_decoder");var Y3=typeof process=="object"&&process?process:{stdout:null,stderr:null},qk=o(n=>!!n&&typeof n=="object"&&(n instanceof ls||n instanceof Y0.default||Gk(n)||Wk(n)),"isStream"),Gk=o(n=>!!n&&typeof n=="object"&&n instanceof Oh.EventEmitter&&typeof n.pipe=="function"&&n.pipe!==Y0.default.Writable.prototype.pipe,"isReadable"),Wk=o(n=>!!n&&typeof n=="object"&&n instanceof Oh.EventEmitter&&typeof n.write=="function"&&typeof n.end=="function","isWritable"),Ri=Symbol("EOF"),Fi=Symbol("maybeEmitEnd"),us=Symbol("emittedEnd"),bh=Symbol("emittingEnd"),Jc=Symbol("emittedError"),Eh=Symbol("closed"),K3=Symbol("read"),Th=Symbol("flush"),X3=Symbol("flushChunk"),Ln=Symbol("encoding"),Oo=Symbol("decoder"),Lt=Symbol("flowing"),Zc=Symbol("paused"),Io=Symbol("resume"),kt=Symbol("buffer"),Tr=Symbol("pipes"),Mt=Symbol("bufferLength"),q0=Symbol("bufferPush"),Ah=Symbol("bufferShift"),cr=Symbol("objectMode"),St=Symbol("destroyed"),G0=Symbol("error"),W0=Symbol("emitData"),J3=Symbol("emitEnd"),H0=Symbol("emitEnd2"),oi=Symbol("async"),z0=Symbol("abort"),Ch=Symbol("aborted"),eu=Symbol("signal"),aa=Symbol("dataListeners"),Ur=Symbol("discarded"),tu=o(n=>Promise.resolve().then(n),"defer"),Hk=o(n=>n(),"nodefer"),zk=o(n=>n==="end"||n==="finish"||n==="prefinish","isEndish"),Qk=o(n=>n instanceof ArrayBuffer||!!n&&typeof n=="object"&&n.constructor&&n.constructor.name==="ArrayBuffer"&&n.byteLength>=0,"isArrayBufferLike"),Yk=o(n=>!Buffer.isBuffer(n)&&ArrayBuffer.isView(n),"isArrayBufferView"),xh=class{static{o(this,"Pipe")}src;dest;opts;ondrain;constructor(e,t,r){this.src=e,this.dest=t,this.opts=r,this.ondrain=()=>e[Io](),this.dest.on("drain",this.ondrain)}unpipe(){this.dest.removeListener("drain",this.ondrain)}proxyErrors(e){}end(){this.unpipe(),this.opts.end&&this.dest.end()}},Q0=class extends xh{static{o(this,"PipeProxyErrors")}unpipe(){this.src.removeListener("error",this.proxyErrors),super.unpipe()}constructor(e,t,r){super(e,t,r),this.proxyErrors=i=>t.emit("error",i),e.on("error",this.proxyErrors)}},Kk=o(n=>!!n.objectMode,"isObjectModeOptions"),Xk=o(n=>!n.objectMode&&!!n.encoding&&n.encoding!=="buffer","isEncodingOptions"),ls=class extends Oh.EventEmitter{static{o(this,"Minipass")}[Lt]=!1;[Zc]=!1;[Tr]=[];[kt]=[];[cr];[Ln];[oi];[Oo];[Ri]=!1;[us]=!1;[bh]=!1;[Eh]=!1;[Jc]=null;[Mt]=0;[St]=!1;[eu];[Ch]=!1;[aa]=0;[Ur]=!1;writable=!0;readable=!0;constructor(...e){let t=e[0]||{};if(super(),t.objectMode&&typeof t.encoding=="string")throw new TypeError("Encoding and objectMode may not be used together");Kk(t)?(this[cr]=!0,this[Ln]=null):Xk(t)?(this[Ln]=t.encoding,this[cr]=!1):(this[cr]=!1,this[Ln]=null),this[oi]=!!t.async,this[Oo]=this[Ln]?new Z3.StringDecoder(this[Ln]):null,t&&t.debugExposeBuffer===!0&&Object.defineProperty(this,"buffer",{get:o(()=>this[kt],"get")}),t&&t.debugExposePipes===!0&&Object.defineProperty(this,"pipes",{get:o(()=>this[Tr],"get")});let{signal:r}=t;r&&(this[eu]=r,r.aborted?this[z0]():r.addEventListener("abort",()=>this[z0]()))}get bufferLength(){return this[Mt]}get encoding(){return this[Ln]}set encoding(e){throw new Error("Encoding must be set at instantiation time")}setEncoding(e){throw new Error("Encoding must be set at instantiation time")}get objectMode(){return this[cr]}set objectMode(e){throw new Error("objectMode must be set at instantiation time")}get async(){return this[oi]}set async(e){this[oi]=this[oi]||!!e}[z0](){this[Ch]=!0,this.emit("abort",this[eu]?.reason),this.destroy(this[eu]?.reason)}get aborted(){return this[Ch]}set aborted(e){}write(e,t,r){if(this[Ch])return!1;if(this[Ri])throw new Error("write after end");if(this[St])return this.emit("error",Object.assign(new Error("Cannot call write after a stream was destroyed"),{code:"ERR_STREAM_DESTROYED"})),!0;typeof t=="function"&&(r=t,t="utf8"),t||(t="utf8");let i=this[oi]?tu:Hk;if(!this[cr]&&!Buffer.isBuffer(e)){if(Yk(e))e=Buffer.from(e.buffer,e.byteOffset,e.byteLength);else if(Qk(e))e=Buffer.from(e);else if(typeof e!="string")throw new Error("Non-contiguous data written to non-objectMode stream")}return this[cr]?(this[Lt]&&this[Mt]!==0&&this[Th](!0),this[Lt]?this.emit("data",e):this[q0](e),this[Mt]!==0&&this.emit("readable"),r&&i(r),this[Lt]):e.length?(typeof e=="string"&&!(t===this[Ln]&&!this[Oo]?.lastNeed)&&(e=Buffer.from(e,t)),Buffer.isBuffer(e)&&this[Ln]&&(e=this[Oo].write(e)),this[Lt]&&this[Mt]!==0&&this[Th](!0),this[Lt]?this.emit("data",e):this[q0](e),this[Mt]!==0&&this.emit("readable"),r&&i(r),this[Lt]):(this[Mt]!==0&&this.emit("readable"),r&&i(r),this[Lt])}read(e){if(this[St])return null;if(this[Ur]=!1,this[Mt]===0||e===0||e&&e>this[Mt])return this[Fi](),null;this[cr]&&(e=null),this[kt].length>1&&!this[cr]&&(this[kt]=[this[Ln]?this[kt].join(""):Buffer.concat(this[kt],this[Mt])]);let t=this[K3](e||null,this[kt][0]);return this[Fi](),t}[K3](e,t){if(this[cr])this[Ah]();else{let r=t;e===r.length||e===null?this[Ah]():typeof r=="string"?(this[kt][0]=r.slice(e),t=r.slice(0,e),this[Mt]-=e):(this[kt][0]=r.subarray(e),t=r.subarray(0,e),this[Mt]-=e)}return this.emit("data",t),!this[kt].length&&!this[Ri]&&this.emit("drain"),t}end(e,t,r){return typeof e=="function"&&(r=e,e=void 0),typeof t=="function"&&(r=t,t="utf8"),e!==void 0&&this.write(e,t),r&&this.once("end",r),this[Ri]=!0,this.writable=!1,(this[Lt]||!this[Zc])&&this[Fi](),this}[Io](){this[St]||(!this[aa]&&!this[Tr].length&&(this[Ur]=!0),this[Zc]=!1,this[Lt]=!0,this.emit("resume"),this[kt].length?this[Th]():this[Ri]?this[Fi]():this.emit("drain"))}resume(){return this[Io]()}pause(){this[Lt]=!1,this[Zc]=!0,this[Ur]=!1}get destroyed(){return this[St]}get flowing(){return this[Lt]}get paused(){return this[Zc]}[q0](e){this[cr]?this[Mt]+=1:this[Mt]+=e.length,this[kt].push(e)}[Ah](){return this[cr]?this[Mt]-=1:this[Mt]-=this[kt][0].length,this[kt].shift()}[Th](e=!1){do;while(this[X3](this[Ah]())&&this[kt].length);!e&&!this[kt].length&&!this[Ri]&&this.emit("drain")}[X3](e){return this.emit("data",e),this[Lt]}pipe(e,t){if(this[St])return e;this[Ur]=!1;let r=this[us];return t=t||{},e===Y3.stdout||e===Y3.stderr?t.end=!1:t.end=t.end!==!1,t.proxyErrors=!!t.proxyErrors,r?t.end&&e.end():(this[Tr].push(t.proxyErrors?new Q0(this,e,t):new xh(this,e,t)),this[oi]?tu(()=>this[Io]()):this[Io]()),e}unpipe(e){let t=this[Tr].find(r=>r.dest===e);t&&(this[Tr].length===1?(this[Lt]&&this[aa]===0&&(this[Lt]=!1),this[Tr]=[]):this[Tr].splice(this[Tr].indexOf(t),1),t.unpipe())}addListener(e,t){return this.on(e,t)}on(e,t){let r=super.on(e,t);if(e==="data")this[Ur]=!1,this[aa]++,!this[Tr].length&&!this[Lt]&&this[Io]();else if(e==="readable"&&this[Mt]!==0)super.emit("readable");else if(zk(e)&&this[us])super.emit(e),this.removeAllListeners(e);else if(e==="error"&&this[Jc]){let i=t;this[oi]?tu(()=>i.call(this,this[Jc])):i.call(this,this[Jc])}return r}removeListener(e,t){return this.off(e,t)}off(e,t){let r=super.off(e,t);return e==="data"&&(this[aa]=this.listeners("data").length,this[aa]===0&&!this[Ur]&&!this[Tr].length&&(this[Lt]=!1)),r}removeAllListeners(e){let t=super.removeAllListeners(e);return(e==="data"||e===void 0)&&(this[aa]=0,!this[Ur]&&!this[Tr].length&&(this[Lt]=!1)),t}get emittedEnd(){return this[us]}[Fi](){!this[bh]&&!this[us]&&!this[St]&&this[kt].length===0&&this[Ri]&&(this[bh]=!0,this.emit("end"),this.emit("prefinish"),this.emit("finish"),this[Eh]&&this.emit("close"),this[bh]=!1)}emit(e,...t){let r=t[0];if(e!=="error"&&e!=="close"&&e!==St&&this[St])return!1;if(e==="data")return!this[cr]&&!r?!1:this[oi]?(tu(()=>this[W0](r)),!0):this[W0](r);if(e==="end")return this[J3]();if(e==="close"){if(this[Eh]=!0,!this[us]&&!this[St])return!1;let s=super.emit("close");return this.removeAllListeners("close"),s}else if(e==="error"){this[Jc]=r,super.emit(G0,r);let s=!this[eu]||this.listeners("error").length?super.emit("error",r):!1;return this[Fi](),s}else if(e==="resume"){let s=super.emit("resume");return this[Fi](),s}else if(e==="finish"||e==="prefinish"){let s=super.emit(e);return this.removeAllListeners(e),s}let i=super.emit(e,...t);return this[Fi](),i}[W0](e){for(let r of this[Tr])r.dest.write(e)===!1&&this.pause();let t=this[Ur]?!1:super.emit("data",e);return this[Fi](),t}[J3](){return this[us]?!1:(this[us]=!0,this.readable=!1,this[oi]?(tu(()=>this[H0]()),!0):this[H0]())}[H0](){if(this[Oo]){let t=this[Oo].end();if(t){for(let r of this[Tr])r.dest.write(t);this[Ur]||super.emit("data",t)}}for(let t of this[Tr])t.end();let e=super.emit("end");return this.removeAllListeners("end"),e}async collect(){let e=Object.assign([],{dataLength:0});this[cr]||(e.dataLength=0);let t=this.promise();return this.on("data",r=>{e.push(r),this[cr]||(e.dataLength+=r.length)}),await t,e}async concat(){if(this[cr])throw new Error("cannot concat in objectMode");let e=await this.collect();return this[Ln]?e.join(""):Buffer.concat(e,e.dataLength)}async promise(){return new Promise((e,t)=>{this.on(St,()=>t(new Error("stream destroyed"))),this.on("error",r=>t(r)),this.on("end",()=>e())})}[Symbol.asyncIterator](){this[Ur]=!1;let e=!1,t=o(async()=>(this.pause(),e=!0,{value:void 0,done:!0}),"stop");return{next:o(()=>{if(e)return t();let i=this.read();if(i!==null)return Promise.resolve({done:!1,value:i});if(this[Ri])return t();let s,a,c=o(h=>{this.off("data",u),this.off("end",l),this.off(St,f),t(),a(h)},"onerr"),u=o(h=>{this.off("error",c),this.off("end",l),this.off(St,f),this.pause(),s({value:h,done:!!this[Ri]})},"ondata"),l=o(()=>{this.off("error",c),this.off("data",u),this.off(St,f),t(),s({done:!0,value:void 0})},"onend"),f=o(()=>c(new Error("stream destroyed")),"ondestroy");return new Promise((h,d)=>{a=d,s=h,this.once(St,f),this.once("error",c),this.once("end",l),this.once("data",u)})},"next"),throw:t,return:t,[Symbol.asyncIterator](){return this}}}[Symbol.iterator](){this[Ur]=!1;let e=!1,t=o(()=>(this.pause(),this.off(G0,t),this.off(St,t),this.off("end",t),e=!0,{done:!0,value:void 0}),"stop"),r=o(()=>{if(e)return t();let i=this.read();return i===null?t():{done:!1,value:i}},"next");return this.once("end",t),this.once(G0,t),this.once(St,t),{next:r,throw:t,return:t,[Symbol.iterator](){return this}}}destroy(e){if(this[St])return e?this.emit("error",e):this.emit(St),this;this[St]=!0,this[Ur]=!0,this[kt].length=0,this[Mt]=0;let t=this;return typeof t.close=="function"&&!this[Eh]&&t.close(),e?this.emit("error",e):this.emit(St),this}static get isStream(){return qk}};var Zk=ui.realpathSync.native,nu={lstatSync:ui.lstatSync,readdir:ui.readdir,readdirSync:ui.readdirSync,readlinkSync:ui.readlinkSync,realpathSync:Zk,promises:{lstat:fs.lstat,readdir:fs.readdir,readlink:fs.readlink,realpath:fs.realpath}},sT=o(n=>!n||n===nu||n===Jk?nu:{...nu,...n,promises:{...nu.promises,...n.promises||{}}},"fsFromOption"),aT=/^\\\\\?\\([a-z]:)\\?$/i,eM=o(n=>n.replace(/\//g,"\\").replace(aT,"$1\\"),"uncToDrive"),tM=/[\\\/]/,nn=0,oT=1,cT=2,ci=4,uT=6,lT=8,oa=10,fT=12,rn=15,ru=~rn,K0=16,eT=32,iu=64,kn=128,Ih=256,Dh=512,tT=iu|kn|Dh,rM=1023,X0=o(n=>n.isFile()?lT:n.isDirectory()?ci:n.isSymbolicLink()?oa:n.isCharacterDevice()?cT:n.isBlockDevice()?uT:n.isSocket()?fT:n.isFIFO()?oT:nn,"entToType"),rT=new Map,su=o(n=>{let e=rT.get(n);if(e)return e;let t=n.normalize("NFKD");return rT.set(n,t),t},"normalize"),nT=new Map,Ph=o(n=>{let e=nT.get(n);if(e)return e;let t=su(n.toLowerCase());return nT.set(n,t),t},"normalizeNocase"),Rh=class extends Xc{static{o(this,"ResolveCache")}constructor(){super({max:256})}},J0=class extends Xc{static{o(this,"ChildrenCache")}constructor(e=16*1024){super({maxSize:e,sizeCalculation:o(t=>t.length+1,"sizeCalculation")})}},hT=Symbol("PathScurry setAsCwd"),ur=class{static{o(this,"PathBase")}name;root;roots;parent;nocase;isCWD=!1;#e;#t;get dev(){return this.#t}#s;get mode(){return this.#s}#n;get nlink(){return this.#n}#a;get uid(){return this.#a}#_;get gid(){return this.#_}#u;get rdev(){return this.#u}#f;get blksize(){return this.#f}#o;get ino(){return this.#o}#c;get size(){return this.#c}#i;get blocks(){return this.#i}#g;get atimeMs(){return this.#g}#y;get mtimeMs(){return this.#y}#d;get ctimeMs(){return this.#d}#h;get birthtimeMs(){return this.#h}#E;get atime(){return this.#E}#m;get mtime(){return this.#m}#T;get ctime(){return this.#T}#A;get birthtime(){return this.#A}#S;#w;#b;#p;#I;#C;#r;#R;#v;#P;get parentPath(){return(this.parent||this).fullpath()}get path(){return this.parentPath}constructor(e,t=nn,r,i,s,a,c){this.name=e,this.#S=s?Ph(e):su(e),this.#r=t&rM,this.nocase=s,this.roots=i,this.root=r||this,this.#R=a,this.#b=c.fullpath,this.#I=c.relative,this.#C=c.relativePosix,this.parent=c.parent,this.parent?this.#e=this.parent.#e:this.#e=sT(c.fs)}depth(){return this.#w!==void 0?this.#w:this.parent?this.#w=this.parent.depth()+1:this.#w=0}childrenCache(){return this.#R}resolve(e){if(!e)return this;let t=this.getRootString(e),i=e.substring(t.length).split(this.splitSep);return t?this.getRoot(t).#F(i):this.#F(i)}#F(e){let t=this;for(let r of e)t=t.child(r);return t}children(){let e=this.#R.get(this);if(e)return e;let t=Object.assign([],{provisional:0});return this.#R.set(this,t),this.#r&=~K0,t}child(e,t){if(e===""||e===".")return this;if(e==="..")return this.parent||this;let r=this.children(),i=this.nocase?Ph(e):su(e);for(let u of r)if(u.#S===i)return u;let s=this.parent?this.sep:"",a=this.#b?this.#b+s+e:void 0,c=this.newChild(e,nn,{...t,parent:this,fullpath:a});return this.canReaddir()||(c.#r|=kn),r.push(c),c}relative(){if(this.isCWD)return"";if(this.#I!==void 0)return this.#I;let e=this.name,t=this.parent;if(!t)return this.#I=this.name;let r=t.relative();return r+(!r||!t.parent?"":this.sep)+e}relativePosix(){if(this.sep==="/")return this.relative();if(this.isCWD)return"";if(this.#C!==void 0)return this.#C;let e=this.name,t=this.parent;if(!t)return this.#C=this.fullpathPosix();let r=t.relativePosix();return r+(!r||!t.parent?"":"/")+e}fullpath(){if(this.#b!==void 0)return this.#b;let e=this.name,t=this.parent;if(!t)return this.#b=this.name;let i=t.fullpath()+(t.parent?this.sep:"")+e;return this.#b=i}fullpathPosix(){if(this.#p!==void 0)return this.#p;if(this.sep==="/")return this.#p=this.fullpath();if(!this.parent){let i=this.fullpath().replace(/\\/g,"/");return/^[a-z]:\//i.test(i)?this.#p=`//?/${i}`:this.#p=i}let e=this.parent,t=e.fullpathPosix(),r=t+(!t||!e.parent?"":"/")+this.name;return this.#p=r}isUnknown(){return(this.#r&rn)===nn}isType(e){return this[`is${e}`]()}getType(){return this.isUnknown()?"Unknown":this.isDirectory()?"Directory":this.isFile()?"File":this.isSymbolicLink()?"SymbolicLink":this.isFIFO()?"FIFO":this.isCharacterDevice()?"CharacterDevice":this.isBlockDevice()?"BlockDevice":this.isSocket()?"Socket":"Unknown"}isFile(){return(this.#r&rn)===lT}isDirectory(){return(this.#r&rn)===ci}isCharacterDevice(){return(this.#r&rn)===cT}isBlockDevice(){return(this.#r&rn)===uT}isFIFO(){return(this.#r&rn)===oT}isSocket(){return(this.#r&rn)===fT}isSymbolicLink(){return(this.#r&oa)===oa}lstatCached(){return this.#r&eT?this:void 0}readlinkCached(){return this.#v}realpathCached(){return this.#P}readdirCached(){let e=this.children();return e.slice(0,e.provisional)}canReadlink(){if(this.#v)return!0;if(!this.parent)return!1;let e=this.#r&rn;return!(e!==nn&&e!==oa||this.#r&Ih||this.#r&kn)}calledReaddir(){return!!(this.#r&K0)}isENOENT(){return!!(this.#r&kn)}isNamed(e){return this.nocase?this.#S===Ph(e):this.#S===su(e)}async readlink(){let e=this.#v;if(e)return e;if(this.canReadlink()&&this.parent)try{let t=await this.#e.promises.readlink(this.fullpath()),r=(await this.parent.realpath())?.resolve(t);if(r)return this.#v=r}catch(t){this.#l(t.code);return}}readlinkSync(){let e=this.#v;if(e)return e;if(this.canReadlink()&&this.parent)try{let t=this.#e.readlinkSync(this.fullpath()),r=this.parent.realpathSync()?.resolve(t);if(r)return this.#v=r}catch(t){this.#l(t.code);return}}#N(e){this.#r|=K0;for(let t=e.provisional;t<e.length;t++){let r=e[t];r&&r.#L()}}#L(){this.#r&kn||(this.#r=(this.#r|kn)&ru,this.#x())}#x(){let e=this.children();e.provisional=0;for(let t of e)t.#L()}#O(){this.#r|=Dh,this.#k()}#k(){if(this.#r&iu)return;let e=this.#r;(e&rn)===ci&&(e&=ru),this.#r=e|iu,this.#x()}#M(e=""){e==="ENOTDIR"||e==="EPERM"?this.#k():e==="ENOENT"?this.#L():this.children().provisional=0}#j(e=""){e==="ENOTDIR"?this.parent.#k():e==="ENOENT"&&this.#L()}#l(e=""){let t=this.#r;t|=Ih,e==="ENOENT"&&(t|=kn),(e==="EINVAL"||e==="UNKNOWN")&&(t&=ru),this.#r=t,e==="ENOTDIR"&&this.parent&&this.parent.#k()}#$(e,t){return this.#D(e,t)||this.#V(e,t)}#V(e,t){let r=X0(e),i=this.newChild(e.name,r,{parent:this}),s=i.#r&rn;return s!==ci&&s!==oa&&s!==nn&&(i.#r|=iu),t.unshift(i),t.provisional++,i}#D(e,t){for(let r=t.provisional;r<t.length;r++){let i=t[r];if((this.nocase?Ph(e.name):su(e.name))===i.#S)return this.#U(e,i,r,t)}}#U(e,t,r,i){let s=t.name;return t.#r=t.#r&ru|X0(e),s!==e.name&&(t.name=e.name),r!==i.provisional&&(r===i.length-1?i.pop():i.splice(r,1),i.unshift(t)),i.provisional++,t}async lstat(){if((this.#r&kn)===0)try{return this.#W(await this.#e.promises.lstat(this.fullpath())),this}catch(e){this.#j(e.code)}}lstatSync(){if((this.#r&kn)===0)try{return this.#W(this.#e.lstatSync(this.fullpath())),this}catch(e){this.#j(e.code)}}#W(e){let{atime:t,atimeMs:r,birthtime:i,birthtimeMs:s,blksize:a,blocks:c,ctime:u,ctimeMs:l,dev:f,gid:h,ino:d,mode:p,mtime:S,mtimeMs:w,nlink:T,rdev:O,size:I,uid:L}=e;this.#E=t,this.#g=r,this.#A=i,this.#h=s,this.#f=a,this.#i=c,this.#T=u,this.#d=l,this.#t=f,this.#_=h,this.#o=d,this.#s=p,this.#m=S,this.#y=w,this.#n=T,this.#u=O,this.#c=I,this.#a=L;let M=X0(e);this.#r=this.#r&ru|M|eT,M!==nn&&M!==ci&&M!==oa&&(this.#r|=iu)}#q=[];#G=!1;#H(e){this.#G=!1;let t=this.#q.slice();this.#q.length=0,t.forEach(r=>r(null,e))}readdirCB(e,t=!1){if(!this.canReaddir()){t?e(null,[]):queueMicrotask(()=>e(null,[]));return}let r=this.children();if(this.calledReaddir()){let s=r.slice(0,r.provisional);t?e(null,s):queueMicrotask(()=>e(null,s));return}if(this.#q.push(e),this.#G)return;this.#G=!0;let i=this.fullpath();this.#e.readdir(i,{withFileTypes:!0},(s,a)=>{if(s)this.#M(s.code),r.provisional=0;else{for(let c of a)this.#$(c,r);this.#N(r)}this.#H(r.slice(0,r.provisional))})}#B;async readdir(){if(!this.canReaddir())return[];let e=this.children();if(this.calledReaddir())return e.slice(0,e.provisional);let t=this.fullpath();if(this.#B)await this.#B;else{let r=o(()=>{},"resolve");this.#B=new Promise(i=>r=i);try{for(let i of await this.#e.promises.readdir(t,{withFileTypes:!0}))this.#$(i,e);this.#N(e)}catch(i){this.#M(i.code),e.provisional=0}this.#B=void 0,r()}return e.slice(0,e.provisional)}readdirSync(){if(!this.canReaddir())return[];let e=this.children();if(this.calledReaddir())return e.slice(0,e.provisional);let t=this.fullpath();try{for(let r of this.#e.readdirSync(t,{withFileTypes:!0}))this.#$(r,e);this.#N(e)}catch(r){this.#M(r.code),e.provisional=0}return e.slice(0,e.provisional)}canReaddir(){if(this.#r&tT)return!1;let e=rn&this.#r;return e===nn||e===ci||e===oa}shouldWalk(e,t){return(this.#r&ci)===ci&&!(this.#r&tT)&&!e.has(this)&&(!t||t(this))}async realpath(){if(this.#P)return this.#P;if(!((Dh|Ih|kn)&this.#r))try{let e=await this.#e.promises.realpath(this.fullpath());return this.#P=this.resolve(e)}catch{this.#O()}}realpathSync(){if(this.#P)return this.#P;if(!((Dh|Ih|kn)&this.#r))try{let e=this.#e.realpathSync(this.fullpath());return this.#P=this.resolve(e)}catch{this.#O()}}[hT](e){if(e===this)return;e.isCWD=!1,this.isCWD=!0;let t=new Set([]),r=[],i=this;for(;i&&i.parent;)t.add(i),i.#I=r.join(this.sep),i.#C=r.join("/"),i=i.parent,r.push("..");for(i=e;i&&i.parent&&!t.has(i);)i.#I=void 0,i.#C=void 0,i=i.parent}},Fh=class n extends ur{static{o(this,"PathWin32")}sep="\\";splitSep=tM;constructor(e,t=nn,r,i,s,a,c){super(e,t,r,i,s,a,c)}newChild(e,t=nn,r={}){return new n(e,t,this.root,this.roots,this.nocase,this.childrenCache(),r)}getRootString(e){return Po.win32.parse(e).root}getRoot(e){if(e=eM(e.toUpperCase()),e===this.root.name)return this.root;for(let[t,r]of Object.entries(this.roots))if(this.sameRoot(e,t))return this.roots[e]=r;return this.roots[e]=new Do(e,this).root}sameRoot(e,t=this.root.name){return e=e.toUpperCase().replace(/\//g,"\\").replace(aT,"$1\\"),e===t}},Nh=class n extends ur{static{o(this,"PathPosix")}splitSep="/";sep="/";constructor(e,t=nn,r,i,s,a,c){super(e,t,r,i,s,a,c)}getRootString(e){return e.startsWith("/")?"/":""}getRoot(e){return this.root}newChild(e,t=nn,r={}){return new n(e,t,this.root,this.roots,this.nocase,this.childrenCache(),r)}},Lh=class{static{o(this,"PathScurryBase")}root;rootPath;roots;cwd;#e;#t;#s;nocase;#n;constructor(e=process.cwd(),t,r,{nocase:i,childrenCacheSize:s=16*1024,fs:a=nu}={}){this.#n=sT(a),(e instanceof URL||e.startsWith("file://"))&&(e=(0,iT.fileURLToPath)(e));let c=t.resolve(e);this.roots=Object.create(null),this.rootPath=this.parseRootPath(c),this.#e=new Rh,this.#t=new Rh,this.#s=new J0(s);let u=c.substring(this.rootPath.length).split(r);if(u.length===1&&!u[0]&&u.pop(),i===void 0)throw new TypeError("must provide nocase setting to PathScurryBase ctor");this.nocase=i,this.root=this.newRoot(this.#n),this.roots[this.rootPath]=this.root;let l=this.root,f=u.length-1,h=t.sep,d=this.rootPath,p=!1;for(let S of u){let w=f--;l=l.child(S,{relative:new Array(w).fill("..").join(h),relativePosix:new Array(w).fill("..").join("/"),fullpath:d+=(p?"":h)+S}),p=!0}this.cwd=l}depth(e=this.cwd){return typeof e=="string"&&(e=this.cwd.resolve(e)),e.depth()}childrenCache(){return this.#s}resolve(...e){let t="";for(let s=e.length-1;s>=0;s--){let a=e[s];if(!(!a||a===".")&&(t=t?`${a}/${t}`:a,this.isAbsolute(a)))break}let r=this.#e.get(t);if(r!==void 0)return r;let i=this.cwd.resolve(t).fullpath();return this.#e.set(t,i),i}resolvePosix(...e){let t="";for(let s=e.length-1;s>=0;s--){let a=e[s];if(!(!a||a===".")&&(t=t?`${a}/${t}`:a,this.isAbsolute(a)))break}let r=this.#t.get(t);if(r!==void 0)return r;let i=this.cwd.resolve(t).fullpathPosix();return this.#t.set(t,i),i}relative(e=this.cwd){return typeof e=="string"&&(e=this.cwd.resolve(e)),e.relative()}relativePosix(e=this.cwd){return typeof e=="string"&&(e=this.cwd.resolve(e)),e.relativePosix()}basename(e=this.cwd){return typeof e=="string"&&(e=this.cwd.resolve(e)),e.name}dirname(e=this.cwd){return typeof e=="string"&&(e=this.cwd.resolve(e)),(e.parent||e).fullpath()}async readdir(e=this.cwd,t={withFileTypes:!0}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof ur||(t=e,e=this.cwd);let{withFileTypes:r}=t;if(e.canReaddir()){let i=await e.readdir();return r?i:i.map(s=>s.name)}else return[]}readdirSync(e=this.cwd,t={withFileTypes:!0}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof ur||(t=e,e=this.cwd);let{withFileTypes:r=!0}=t;return e.canReaddir()?r?e.readdirSync():e.readdirSync().map(i=>i.name):[]}async lstat(e=this.cwd){return typeof e=="string"&&(e=this.cwd.resolve(e)),e.lstat()}lstatSync(e=this.cwd){return typeof e=="string"&&(e=this.cwd.resolve(e)),e.lstatSync()}async readlink(e=this.cwd,{withFileTypes:t}={withFileTypes:!1}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof ur||(t=e.withFileTypes,e=this.cwd);let r=await e.readlink();return t?r:r?.fullpath()}readlinkSync(e=this.cwd,{withFileTypes:t}={withFileTypes:!1}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof ur||(t=e.withFileTypes,e=this.cwd);let r=e.readlinkSync();return t?r:r?.fullpath()}async realpath(e=this.cwd,{withFileTypes:t}={withFileTypes:!1}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof ur||(t=e.withFileTypes,e=this.cwd);let r=await e.realpath();return t?r:r?.fullpath()}realpathSync(e=this.cwd,{withFileTypes:t}={withFileTypes:!1}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof ur||(t=e.withFileTypes,e=this.cwd);let r=e.realpathSync();return t?r:r?.fullpath()}async walk(e=this.cwd,t={}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof ur||(t=e,e=this.cwd);let{withFileTypes:r=!0,follow:i=!1,filter:s,walkFilter:a}=t,c=[];(!s||s(e))&&c.push(r?e:e.fullpath());let u=new Set,l=o((h,d)=>{u.add(h),h.readdirCB((p,S)=>{if(p)return d(p);let w=S.length;if(!w)return d();let T=o(()=>{--w===0&&d()},"next");for(let O of S)(!s||s(O))&&c.push(r?O:O.fullpath()),i&&O.isSymbolicLink()?O.realpath().then(I=>I?.isUnknown()?I.lstat():I).then(I=>I?.shouldWalk(u,a)?l(I,T):T()):O.shouldWalk(u,a)?l(O,T):T()},!0)},"walk"),f=e;return new Promise((h,d)=>{l(f,p=>{if(p)return d(p);h(c)})})}walkSync(e=this.cwd,t={}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof ur||(t=e,e=this.cwd);let{withFileTypes:r=!0,follow:i=!1,filter:s,walkFilter:a}=t,c=[];(!s||s(e))&&c.push(r?e:e.fullpath());let u=new Set([e]);for(let l of u){let f=l.readdirSync();for(let h of f){(!s||s(h))&&c.push(r?h:h.fullpath());let d=h;if(h.isSymbolicLink()){if(!(i&&(d=h.realpathSync())))continue;d.isUnknown()&&d.lstatSync()}d.shouldWalk(u,a)&&u.add(d)}}return c}[Symbol.asyncIterator](){return this.iterate()}iterate(e=this.cwd,t={}){return typeof e=="string"?e=this.cwd.resolve(e):e instanceof ur||(t=e,e=this.cwd),this.stream(e,t)[Symbol.asyncIterator]()}[Symbol.iterator](){return this.iterateSync()}*iterateSync(e=this.cwd,t={}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof ur||(t=e,e=this.cwd);let{withFileTypes:r=!0,follow:i=!1,filter:s,walkFilter:a}=t;(!s||s(e))&&(yield r?e:e.fullpath());let c=new Set([e]);for(let u of c){let l=u.readdirSync();for(let f of l){(!s||s(f))&&(yield r?f:f.fullpath());let h=f;if(f.isSymbolicLink()){if(!(i&&(h=f.realpathSync())))continue;h.isUnknown()&&h.lstatSync()}h.shouldWalk(c,a)&&c.add(h)}}}stream(e=this.cwd,t={}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof ur||(t=e,e=this.cwd);let{withFileTypes:r=!0,follow:i=!1,filter:s,walkFilter:a}=t,c=new ls({objectMode:!0});(!s||s(e))&&c.write(r?e:e.fullpath());let u=new Set,l=[e],f=0,h=o(()=>{let d=!1;for(;!d;){let p=l.shift();if(!p){f===0&&c.end();return}f++,u.add(p);let S=o((T,O,I=!1)=>{if(T)return c.emit("error",T);if(i&&!I){let L=[];for(let M of O)M.isSymbolicLink()&&L.push(M.realpath().then(G=>G?.isUnknown()?G.lstat():G));if(L.length){Promise.all(L).then(()=>S(null,O,!0));return}}for(let L of O)L&&(!s||s(L))&&(c.write(r?L:L.fullpath())||(d=!0));f--;for(let L of O){let M=L.realpathCached()||L;M.shouldWalk(u,a)&&l.push(M)}d&&!c.flowing?c.once("drain",h):w||h()},"onReaddir"),w=!0;p.readdirCB(S,!0),w=!1}},"process");return h(),c}streamSync(e=this.cwd,t={}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof ur||(t=e,e=this.cwd);let{withFileTypes:r=!0,follow:i=!1,filter:s,walkFilter:a}=t,c=new ls({objectMode:!0}),u=new Set;(!s||s(e))&&c.write(r?e:e.fullpath());let l=[e],f=0,h=o(()=>{let d=!1;for(;!d;){let p=l.shift();if(!p){f===0&&c.end();return}f++,u.add(p);let S=p.readdirSync();for(let w of S)(!s||s(w))&&(c.write(r?w:w.fullpath())||(d=!0));f--;for(let w of S){let T=w;if(w.isSymbolicLink()){if(!(i&&(T=w.realpathSync())))continue;T.isUnknown()&&T.lstatSync()}T.shouldWalk(u,a)&&l.push(T)}}d&&!c.flowing&&c.once("drain",h)},"process");return h(),c}chdir(e=this.cwd){let t=this.cwd;this.cwd=typeof e=="string"?this.cwd.resolve(e):e,this.cwd[hT](t)}},Do=class extends Lh{static{o(this,"PathScurryWin32")}sep="\\";constructor(e=process.cwd(),t={}){let{nocase:r=!0}=t;super(e,Po.win32,"\\",{...t,nocase:r}),this.nocase=r;for(let i=this.cwd;i;i=i.parent)i.nocase=this.nocase}parseRootPath(e){return Po.win32.parse(e).root.toUpperCase()}newRoot(e){return new Fh(this.rootPath,ci,void 0,this.roots,this.nocase,this.childrenCache(),{fs:e})}isAbsolute(e){return e.startsWith("/")||e.startsWith("\\")||/^[a-z]:(\/|\\)/i.test(e)}},Ro=class extends Lh{static{o(this,"PathScurryPosix")}sep="/";constructor(e=process.cwd(),t={}){let{nocase:r=!1}=t;super(e,Po.posix,"/",{...t,nocase:r}),this.nocase=r}parseRootPath(e){return"/"}newRoot(e){return new Nh(this.rootPath,ci,void 0,this.roots,this.nocase,this.childrenCache(),{fs:e})}isAbsolute(e){return e.startsWith("/")}},au=class extends Ro{static{o(this,"PathScurryDarwin")}constructor(e=process.cwd(),t={}){let{nocase:r=!0}=t;super(e,{...t,nocase:r})}},TQ=process.platform==="win32"?Fh:Nh,dT=process.platform==="win32"?Do:process.platform==="darwin"?au:Ro;var nM=o(n=>n.length>=1,"isPatternList"),iM=o(n=>n.length>=1,"isGlobList"),Fo=class n{static{o(this,"Pattern")}#e;#t;#s;length;#n;#a;#_;#u;#f;#o;#c=!0;constructor(e,t,r,i){if(!nM(e))throw new TypeError("empty pattern list");if(!iM(t))throw new TypeError("empty glob list");if(t.length!==e.length)throw new TypeError("mismatched pattern list and glob list lengths");if(this.length=e.length,r<0||r>=this.length)throw new TypeError("index out of range");if(this.#e=e,this.#t=t,this.#s=r,this.#n=i,this.#s===0){if(this.isUNC()){let[s,a,c,u,...l]=this.#e,[f,h,d,p,...S]=this.#t;l[0]===""&&(l.shift(),S.shift());let w=[s,a,c,u,""].join("/"),T=[f,h,d,p,""].join("/");this.#e=[w,...l],this.#t=[T,...S],this.length=this.#e.length}else if(this.isDrive()||this.isAbsolute()){let[s,...a]=this.#e,[c,...u]=this.#t;a[0]===""&&(a.shift(),u.shift());let l=s+"/",f=c+"/";this.#e=[l,...a],this.#t=[f,...u],this.length=this.#e.length}}}pattern(){return this.#e[this.#s]}isString(){return typeof this.#e[this.#s]=="string"}isGlobstar(){return this.#e[this.#s]===Kt}isRegExp(){return this.#e[this.#s]instanceof RegExp}globString(){return this.#_=this.#_||(this.#s===0?this.isAbsolute()?this.#t[0]+this.#t.slice(1).join("/"):this.#t.join("/"):this.#t.slice(this.#s).join("/"))}hasMore(){return this.length>this.#s+1}rest(){return this.#a!==void 0?this.#a:this.hasMore()?(this.#a=new n(this.#e,this.#t,this.#s+1,this.#n),this.#a.#o=this.#o,this.#a.#f=this.#f,this.#a.#u=this.#u,this.#a):this.#a=null}isUNC(){let e=this.#e;return this.#f!==void 0?this.#f:this.#f=this.#n==="win32"&&this.#s===0&&e[0]===""&&e[1]===""&&typeof e[2]=="string"&&!!e[2]&&typeof e[3]=="string"&&!!e[3]}isDrive(){let e=this.#e;return this.#u!==void 0?this.#u:this.#u=this.#n==="win32"&&this.#s===0&&this.length>1&&typeof e[0]=="string"&&/^[a-z]:$/i.test(e[0])}isAbsolute(){let e=this.#e;return this.#o!==void 0?this.#o:this.#o=e[0]===""&&e.length>1||this.isDrive()||this.isUNC()}root(){let e=this.#e[0];return typeof e=="string"&&this.isAbsolute()&&this.#s===0?e:""}checkFollowGlobstar(){return!(this.#s===0||!this.isGlobstar()||!this.#c)}markFollowGlobstar(){return this.#s===0||!this.isGlobstar()||!this.#c?!1:(this.#c=!1,!0)}};var sM=typeof process=="object"&&process&&typeof process.platform=="string"?process.platform:"linux",No=class{static{o(this,"Ignore")}relative;relativeChildren;absolute;absoluteChildren;platform;mmopts;constructor(e,{nobrace:t,nocase:r,noext:i,noglobstar:s,platform:a=sM}){this.relative=[],this.absolute=[],this.relativeChildren=[],this.absoluteChildren=[],this.platform=a,this.mmopts={dot:!0,nobrace:t,nocase:r,noext:i,noglobstar:s,optimizationLevel:2,platform:a,nocomment:!0,nonegate:!0};for(let c of e)this.add(c)}add(e){let t=new Vr(e,this.mmopts);for(let r=0;r<t.set.length;r++){let i=t.set[r],s=t.globParts[r];if(!i||!s)throw new Error("invalid pattern object");for(;i[0]==="."&&s[0]===".";)i.shift(),s.shift();let a=new Fo(i,s,0,this.platform),c=new Vr(a.globString(),this.mmopts),u=s[s.length-1]==="**",l=a.isAbsolute();l?this.absolute.push(c):this.relative.push(c),u&&(l?this.absoluteChildren.push(c):this.relativeChildren.push(c))}}ignored(e){let t=e.fullpath(),r=`${t}/`,i=e.relative()||".",s=`${i}/`;for(let a of this.relative)if(a.match(i)||a.match(s))return!0;for(let a of this.absolute)if(a.match(t)||a.match(r))return!0;return!1}childrenIgnored(e){let t=e.fullpath()+"/",r=(e.relative()||".")+"/";for(let i of this.relativeChildren)if(i.match(r))return!0;for(let i of this.absoluteChildren)if(i.match(t))return!0;return!1}};var Z0=class n{static{o(this,"HasWalkedCache")}store;constructor(e=new Map){this.store=e}copy(){return new n(new Map(this.store))}hasWalked(e,t){return this.store.get(e.fullpath())?.has(t.globString())}storeWalked(e,t){let r=e.fullpath(),i=this.store.get(r);i?i.add(t.globString()):this.store.set(r,new Set([t.globString()]))}},e1=class{static{o(this,"MatchRecord")}store=new Map;add(e,t,r){let i=(t?2:0)|(r?1:0),s=this.store.get(e);this.store.set(e,s===void 0?i:i&s)}entries(){return[...this.store.entries()].map(([e,t])=>[e,!!(t&2),!!(t&1)])}},t1=class{static{o(this,"SubWalks")}store=new Map;add(e,t){if(!e.canReaddir())return;let r=this.store.get(e);r?r.find(i=>i.globString()===t.globString())||r.push(t):this.store.set(e,[t])}get(e){let t=this.store.get(e);if(!t)throw new Error("attempting to walk unknown path");return t}entries(){return this.keys().map(e=>[e,this.store.get(e)])}keys(){return[...this.store.keys()].filter(e=>e.canReaddir())}},ou=class n{static{o(this,"Processor")}hasWalkedCache;matches=new e1;subwalks=new t1;patterns;follow;dot;opts;constructor(e,t){this.opts=e,this.follow=!!e.follow,this.dot=!!e.dot,this.hasWalkedCache=t?t.copy():new Z0}processPatterns(e,t){this.patterns=t;let r=t.map(i=>[e,i]);for(let[i,s]of r){this.hasWalkedCache.storeWalked(i,s);let a=s.root(),c=s.isAbsolute()&&this.opts.absolute!==!1;if(a){i=i.resolve(a==="/"&&this.opts.root!==void 0?this.opts.root:a);let h=s.rest();if(h)s=h;else{this.matches.add(i,!0,!1);continue}}if(i.isENOENT())continue;let u,l,f=!1;for(;typeof(u=s.pattern())=="string"&&(l=s.rest());)i=i.resolve(u),s=l,f=!0;if(u=s.pattern(),l=s.rest(),f){if(this.hasWalkedCache.hasWalked(i,s))continue;this.hasWalkedCache.storeWalked(i,s)}if(typeof u=="string"){let h=u===".."||u===""||u===".";this.matches.add(i.resolve(u),c,h);continue}else if(u===Kt){(!i.isSymbolicLink()||this.follow||s.checkFollowGlobstar())&&this.subwalks.add(i,s);let h=l?.pattern(),d=l?.rest();if(!l||(h===""||h===".")&&!d)this.matches.add(i,c,h===""||h===".");else if(h===".."){let p=i.parent||i;d?this.hasWalkedCache.hasWalked(p,d)||this.subwalks.add(p,d):this.matches.add(p,c,!0)}}else u instanceof RegExp&&this.subwalks.add(i,s)}return this}subwalkTargets(){return this.subwalks.keys()}child(){return new n(this.opts,this.hasWalkedCache)}filterEntries(e,t){let r=this.subwalks.get(e),i=this.child();for(let s of t)for(let a of r){let c=a.isAbsolute(),u=a.pattern(),l=a.rest();u===Kt?i.testGlobstar(s,a,l,c):u instanceof RegExp?i.testRegExp(s,u,l,c):i.testString(s,u,l,c)}return i}testGlobstar(e,t,r,i){if((this.dot||!e.name.startsWith("."))&&(t.hasMore()||this.matches.add(e,i,!1),e.canReaddir()&&(this.follow||!e.isSymbolicLink()?this.subwalks.add(e,t):e.isSymbolicLink()&&(r&&t.checkFollowGlobstar()?this.subwalks.add(e,r):t.markFollowGlobstar()&&this.subwalks.add(e,t)))),r){let s=r.pattern();if(typeof s=="string"&&s!==".."&&s!==""&&s!==".")this.testString(e,s,r.rest(),i);else if(s===".."){let a=e.parent||e;this.subwalks.add(a,r)}else s instanceof RegExp&&this.testRegExp(e,s,r.rest(),i)}}testRegExp(e,t,r,i){t.test(e.name)&&(r?this.subwalks.add(e,r):this.matches.add(e,i,!1))}testString(e,t,r,i){e.isNamed(t)&&(r?this.subwalks.add(e,r):this.matches.add(e,i,!1))}};var aM=o((n,e)=>typeof n=="string"?new No([n],e):Array.isArray(n)?new No(n,e):n,"makeIgnore"),kh=class{static{o(this,"GlobUtil")}path;patterns;opts;seen=new Set;paused=!1;aborted=!1;#e=[];#t;#s;signal;maxDepth;includeChildMatches;constructor(e,t,r){if(this.patterns=e,this.path=t,this.opts=r,this.#s=!r.posix&&r.platform==="win32"?"\\":"/",this.includeChildMatches=r.includeChildMatches!==!1,(r.ignore||!this.includeChildMatches)&&(this.#t=aM(r.ignore??[],r),!this.includeChildMatches&&typeof this.#t.add!="function")){let i="cannot ignore child matches, ignore lacks add() method.";throw new Error(i)}this.maxDepth=r.maxDepth||1/0,r.signal&&(this.signal=r.signal,this.signal.addEventListener("abort",()=>{this.#e.length=0}))}#n(e){return this.seen.has(e)||!!this.#t?.ignored?.(e)}#a(e){return!!this.#t?.childrenIgnored?.(e)}pause(){this.paused=!0}resume(){if(this.signal?.aborted)return;this.paused=!1;let e;for(;!this.paused&&(e=this.#e.shift());)e()}onResume(e){this.signal?.aborted||(this.paused?this.#e.push(e):e())}async matchCheck(e,t){if(t&&this.opts.nodir)return;let r;if(this.opts.realpath){if(r=e.realpathCached()||await e.realpath(),!r)return;e=r}let s=e.isUnknown()||this.opts.stat?await e.lstat():e;if(this.opts.follow&&this.opts.nodir&&s?.isSymbolicLink()){let a=await s.realpath();a&&(a.isUnknown()||this.opts.stat)&&await a.lstat()}return this.matchCheckTest(s,t)}matchCheckTest(e,t){return e&&(this.maxDepth===1/0||e.depth()<=this.maxDepth)&&(!t||e.canReaddir())&&(!this.opts.nodir||!e.isDirectory())&&(!this.opts.nodir||!this.opts.follow||!e.isSymbolicLink()||!e.realpathCached()?.isDirectory())&&!this.#n(e)?e:void 0}matchCheckSync(e,t){if(t&&this.opts.nodir)return;let r;if(this.opts.realpath){if(r=e.realpathCached()||e.realpathSync(),!r)return;e=r}let s=e.isUnknown()||this.opts.stat?e.lstatSync():e;if(this.opts.follow&&this.opts.nodir&&s?.isSymbolicLink()){let a=s.realpathSync();a&&(a?.isUnknown()||this.opts.stat)&&a.lstatSync()}return this.matchCheckTest(s,t)}matchFinish(e,t){if(this.#n(e))return;if(!this.includeChildMatches&&this.#t?.add){let s=`${e.relativePosix()}/**`;this.#t.add(s)}let r=this.opts.absolute===void 0?t:this.opts.absolute;this.seen.add(e);let i=this.opts.mark&&e.isDirectory()?this.#s:"";if(this.opts.withFileTypes)this.matchEmit(e);else if(r){let s=this.opts.posix?e.fullpathPosix():e.fullpath();this.matchEmit(s+i)}else{let s=this.opts.posix?e.relativePosix():e.relative(),a=this.opts.dotRelative&&!s.startsWith(".."+this.#s)?"."+this.#s:"";this.matchEmit(s?a+s+i:"."+i)}}async match(e,t,r){let i=await this.matchCheck(e,r);i&&this.matchFinish(i,t)}matchSync(e,t,r){let i=this.matchCheckSync(e,r);i&&this.matchFinish(i,t)}walkCB(e,t,r){this.signal?.aborted&&r(),this.walkCB2(e,t,new ou(this.opts),r)}walkCB2(e,t,r,i){if(this.#a(e))return i();if(this.signal?.aborted&&i(),this.paused){this.onResume(()=>this.walkCB2(e,t,r,i));return}r.processPatterns(e,t);let s=1,a=o(()=>{--s===0&&i()},"next");for(let[c,u,l]of r.matches.entries())this.#n(c)||(s++,this.match(c,u,l).then(()=>a()));for(let c of r.subwalkTargets()){if(this.maxDepth!==1/0&&c.depth()>=this.maxDepth)continue;s++;let u=c.readdirCached();c.calledReaddir()?this.walkCB3(c,u,r,a):c.readdirCB((l,f)=>this.walkCB3(c,f,r,a),!0)}a()}walkCB3(e,t,r,i){r=r.filterEntries(e,t);let s=1,a=o(()=>{--s===0&&i()},"next");for(let[c,u,l]of r.matches.entries())this.#n(c)||(s++,this.match(c,u,l).then(()=>a()));for(let[c,u]of r.subwalks.entries())s++,this.walkCB2(c,u,r.child(),a);a()}walkCBSync(e,t,r){this.signal?.aborted&&r(),this.walkCB2Sync(e,t,new ou(this.opts),r)}walkCB2Sync(e,t,r,i){if(this.#a(e))return i();if(this.signal?.aborted&&i(),this.paused){this.onResume(()=>this.walkCB2Sync(e,t,r,i));return}r.processPatterns(e,t);let s=1,a=o(()=>{--s===0&&i()},"next");for(let[c,u,l]of r.matches.entries())this.#n(c)||this.matchSync(c,u,l);for(let c of r.subwalkTargets()){if(this.maxDepth!==1/0&&c.depth()>=this.maxDepth)continue;s++;let u=c.readdirSync();this.walkCB3Sync(c,u,r,a)}a()}walkCB3Sync(e,t,r,i){r=r.filterEntries(e,t);let s=1,a=o(()=>{--s===0&&i()},"next");for(let[c,u,l]of r.matches.entries())this.#n(c)||this.matchSync(c,u,l);for(let[c,u]of r.subwalks.entries())s++,this.walkCB2Sync(c,u,r.child(),a);a()}},cu=class extends kh{static{o(this,"GlobWalker")}matches=new Set;constructor(e,t,r){super(e,t,r)}matchEmit(e){this.matches.add(e)}async walk(){if(this.signal?.aborted)throw this.signal.reason;return this.path.isUnknown()&&await this.path.lstat(),await new Promise((e,t)=>{this.walkCB(this.path,this.patterns,()=>{this.signal?.aborted?t(this.signal.reason):e(this.matches)})}),this.matches}walkSync(){if(this.signal?.aborted)throw this.signal.reason;return this.path.isUnknown()&&this.path.lstatSync(),this.walkCBSync(this.path,this.patterns,()=>{if(this.signal?.aborted)throw this.signal.reason}),this.matches}},uu=class extends kh{static{o(this,"GlobStream")}results;constructor(e,t,r){super(e,t,r),this.results=new ls({signal:this.signal,objectMode:!0}),this.results.on("drain",()=>this.resume()),this.results.on("resume",()=>this.resume())}matchEmit(e){this.results.write(e),this.results.flowing||this.pause()}stream(){let e=this.path;return e.isUnknown()?e.lstat().then(()=>{this.walkCB(e,this.patterns,()=>this.results.end())}):this.walkCB(e,this.patterns,()=>this.results.end()),this.results}streamSync(){return this.path.isUnknown()&&this.path.lstatSync(),this.walkCBSync(this.path,this.patterns,()=>this.results.end()),this.results}};var oM=typeof process=="object"&&process&&typeof process.platform=="string"?process.platform:"linux",Mn=class{static{o(this,"Glob")}absolute;cwd;root;dot;dotRelative;follow;ignore;magicalBraces;mark;matchBase;maxDepth;nobrace;nocase;nodir;noext;noglobstar;pattern;platform;realpath;scurry;stat;signal;windowsPathsNoEscape;withFileTypes;includeChildMatches;opts;patterns;constructor(e,t){if(!t)throw new TypeError("glob options required");if(this.withFileTypes=!!t.withFileTypes,this.signal=t.signal,this.follow=!!t.follow,this.dot=!!t.dot,this.dotRelative=!!t.dotRelative,this.nodir=!!t.nodir,this.mark=!!t.mark,t.cwd?(t.cwd instanceof URL||t.cwd.startsWith("file://"))&&(t.cwd=(0,pT.fileURLToPath)(t.cwd)):this.cwd="",this.cwd=t.cwd||"",this.root=t.root,this.magicalBraces=!!t.magicalBraces,this.nobrace=!!t.nobrace,this.noext=!!t.noext,this.realpath=!!t.realpath,this.absolute=t.absolute,this.includeChildMatches=t.includeChildMatches!==!1,this.noglobstar=!!t.noglobstar,this.matchBase=!!t.matchBase,this.maxDepth=typeof t.maxDepth=="number"?t.maxDepth:1/0,this.stat=!!t.stat,this.ignore=t.ignore,this.withFileTypes&&this.absolute!==void 0)throw new Error("cannot set absolute and withFileTypes:true");if(typeof e=="string"&&(e=[e]),this.windowsPathsNoEscape=!!t.windowsPathsNoEscape||t.allowWindowsEscape===!1,this.windowsPathsNoEscape&&(e=e.map(u=>u.replace(/\\/g,"/"))),this.matchBase){if(t.noglobstar)throw new TypeError("base matching requires globstar");e=e.map(u=>u.includes("/")?u:`./**/${u}`)}if(this.pattern=e,this.platform=t.platform||oM,this.opts={...t,platform:this.platform},t.scurry){if(this.scurry=t.scurry,t.nocase!==void 0&&t.nocase!==t.scurry.nocase)throw new Error("nocase option contradicts provided scurry option")}else{let u=t.platform==="win32"?Do:t.platform==="darwin"?au:t.platform?Ro:dT;this.scurry=new u(this.cwd,{nocase:t.nocase,fs:t.fs})}this.nocase=this.scurry.nocase;let r=this.platform==="darwin"||this.platform==="win32",i={...t,dot:this.dot,matchBase:this.matchBase,nobrace:this.nobrace,nocase:this.nocase,nocaseMagicOnly:r,nocomment:!0,noext:this.noext,nonegate:!0,optimizationLevel:2,platform:this.platform,windowsPathsNoEscape:this.windowsPathsNoEscape,debug:!!this.opts.debug},s=this.pattern.map(u=>new Vr(u,i)),[a,c]=s.reduce((u,l)=>(u[0].push(...l.set),u[1].push(...l.globParts),u),[[],[]]);this.patterns=a.map((u,l)=>{let f=c[l];if(!f)throw new Error("invalid pattern object");return new Fo(u,f,0,this.platform)})}async walk(){return[...await new cu(this.patterns,this.scurry.cwd,{...this.opts,maxDepth:this.maxDepth!==1/0?this.maxDepth+this.scurry.cwd.depth():1/0,platform:this.platform,nocase:this.nocase,includeChildMatches:this.includeChildMatches}).walk()]}walkSync(){return[...new cu(this.patterns,this.scurry.cwd,{...this.opts,maxDepth:this.maxDepth!==1/0?this.maxDepth+this.scurry.cwd.depth():1/0,platform:this.platform,nocase:this.nocase,includeChildMatches:this.includeChildMatches}).walkSync()]}stream(){return new uu(this.patterns,this.scurry.cwd,{...this.opts,maxDepth:this.maxDepth!==1/0?this.maxDepth+this.scurry.cwd.depth():1/0,platform:this.platform,nocase:this.nocase,includeChildMatches:this.includeChildMatches}).stream()}streamSync(){return new uu(this.patterns,this.scurry.cwd,{...this.opts,maxDepth:this.maxDepth!==1/0?this.maxDepth+this.scurry.cwd.depth():1/0,platform:this.platform,nocase:this.nocase,includeChildMatches:this.includeChildMatches}).streamSync()}iterateSync(){return this.streamSync()[Symbol.iterator]()}[Symbol.iterator](){return this.iterateSync()}iterate(){return this.stream()[Symbol.asyncIterator]()}[Symbol.asyncIterator](){return this.iterate()}};var r1=o((n,e={})=>{Array.isArray(n)||(n=[n]);for(let t of n)if(new Vr(t,e).hasMagic())return!0;return!1},"hasMagic");function jh(n,e={}){return new Mn(n,e).streamSync()}o(jh,"globStreamSync");function gT(n,e={}){return new Mn(n,e).stream()}o(gT,"globStream");function yT(n,e={}){return new Mn(n,e).walkSync()}o(yT,"globSync");async function mT(n,e={}){return new Mn(n,e).walk()}o(mT,"glob_");function $h(n,e={}){return new Mn(n,e).iterateSync()}o($h,"globIterateSync");function vT(n,e={}){return new Mn(n,e).iterate()}o(vT,"globIterate");var cM=jh,uM=Object.assign(gT,{sync:jh}),lM=$h,fM=Object.assign(vT,{sync:$h}),hM=Object.assign(yT,{stream:jh,iterate:$h}),Mh=Object.assign(mT,{glob:mT,globSync:yT,sync:hM,globStream:gT,stream:uM,globStreamSync:jh,streamSync:cM,globIterate:vT,iterate:fM,globIterateSync:$h,iterateSync:lM,Glob:Mn,hasMagic:r1,escape:Ao,unescape:Nn});Mh.glob=Mh;var ca=Ne(Rn());var ds=class{constructor(e){this.rootPath=e}static{o(this,"NodeFsAdapter")}async readFile(e){let t=this.resolvePath(e);if(!await Pt.default.pathExists(t))throw new ca.FileNotFoundError(e);return Pt.default.readFile(t,"utf-8")}async fileExists(e){let t=this.resolvePath(e);return Pt.default.pathExists(t)}async getFileMetadata(e){let t=await this.readFile(e);return this.extractFrontmatter(t)}async createFile(e,t){let r=this.resolvePath(e);if(await Pt.default.pathExists(r))throw new ca.FileAlreadyExistsError(e);return await Pt.default.ensureDir(hs.default.dirname(r)),await Pt.default.writeFile(r,t,"utf-8"),e}async updateFile(e,t){let r=this.resolvePath(e);if(!await Pt.default.pathExists(r))throw new ca.FileNotFoundError(e);await Pt.default.writeFile(r,t,"utf-8")}async writeFile(e,t){let r=this.resolvePath(e);await Pt.default.ensureDir(hs.default.dirname(r)),await Pt.default.writeFile(r,t,"utf-8")}async deleteFile(e){let t=this.resolvePath(e);if(!await Pt.default.pathExists(t))throw new ca.FileNotFoundError(e);await Pt.default.remove(t)}async renameFile(e,t){let r=this.resolvePath(e),i=this.resolvePath(t);if(!await Pt.default.pathExists(r))throw new ca.FileNotFoundError(e);await Pt.default.ensureDir(hs.default.dirname(i)),await Pt.default.move(r,i)}async createDirectory(e){let t=this.resolvePath(e);await Pt.default.ensureDir(t)}async directoryExists(e){let t=this.resolvePath(e);return await Pt.default.pathExists(t)?(await Pt.default.stat(t)).isDirectory():!1}async getMarkdownFiles(e){let t=e?this.resolvePath(e):this.rootPath,r=hs.default.join(t,"**/*.md");return(await Mh(r,{nodir:!0})).map(a=>hs.default.relative(this.rootPath,a))}async findFilesByMetadata(e){let t=await this.getMarkdownFiles(),r=[];for(let i of t)try{let s=await this.getFileMetadata(i);this.matchesQuery(s,e)&&r.push(i)}catch{continue}return r}async findFileByUID(e){let t=await this.findFilesByMetadata({exo__Asset_uid:e});return t.length>0?t[0]:null}resolvePath(e){return hs.default.isAbsolute(e)?e:hs.default.join(this.rootPath,e)}extractFrontmatter(e){let t=/^---\n([\s\S]*?)\n---/,r=e.match(t);if(!r)return{};try{let i=Gc.load(r[1]);return typeof i=="object"&&i!==null?i:{}}catch{return{}}}matchesQuery(e,t){for(let[r,i]of Object.entries(t)){let s=e[r];if(Array.isArray(s)){if(!s.some(a=>this.normalizeValue(a)===this.normalizeValue(i)))return!1}else if(this.normalizeValue(s)!==this.normalizeValue(i))return!1}return!0}normalizeValue(e){return e==null?"":String(e).replace(/["'[\]]/g,"").trim()}};var lu=Ne(require("path")),n1=Ne(yo());var Lo=class{constructor(e){this.vaultRoot=e}static{o(this,"PathResolver")}resolve(e){if(!lu.default.isAbsolute(e))return lu.default.resolve(this.vaultRoot,e);let t=lu.default.resolve(e),r=lu.default.resolve(this.vaultRoot);if(!t.startsWith(r))throw new tt(`File path ${e} is outside vault root ${this.vaultRoot}`,"Provide a file path within the vault directory.",{filepath:e,vaultRoot:this.vaultRoot});return t}validate(e){if(!n1.default.existsSync(e))throw new Hc(e);if(!n1.default.statSync(e).isFile())throw new tt(`Not a file: ${e}`,"Provide a path to a file, not a directory.",{filepath:e});if(!e.endsWith(".md"))throw new tt(`Not a Markdown file: ${e}`,"Provide a path to a .md file.",{filepath:e})}getVaultRoot(){return this.vaultRoot}};var TT=Ne(Rn());var ST=Ne(Rn());var jn=class{static{o(this,"BaseCommandExecutor")}constructor(e){this.pathResolver=e.pathResolver,this.fsAdapter=e.fsAdapter,this.frontmatterService=e.frontmatterService,this.dryRun=e.dryRun}resolveAndValidate(e){let t=this.pathResolver.resolve(e);this.pathResolver.validate(t);let r=t.replace(this.pathResolver.getVaultRoot()+"/","");return{resolvedPath:t,relativePath:r}}getCurrentTimestamp(){return ST.DateFormatter.toLocalTimestamp(new Date)}isAssetArchived(e){if(e?.exo__Asset_isArchived===!0)return!0;let t=e?.archived;if(t==null)return!1;if(typeof t=="boolean")return t;if(typeof t=="number")return t!==0;if(typeof t=="string"){let r=t.toLowerCase().trim();return r==="true"||r==="yes"||r==="1"}return!1}extractAliasesFromFrontmatter(e){let t=e.match(/aliases:\s*\n((?: - .*\n?)*)/);return t?t[1].split(`
424
424
  `).filter(i=>i.trim()).map(i=>i.replace(/^\s*-\s*/,"").trim()):[]}};var fu=class extends jn{static{o(this,"StatusCommandExecutor")}constructor(e){super(e)}async executeStart(e){try{let{relativePath:t}=this.resolveAndValidate(e),r=await this.fsAdapter.readFile(t),i=this.getCurrentTimestamp(),s=this.frontmatterService.updateProperty(r,"ems__Effort_status",'"[[ems__EffortStatusDoing]]"');s=this.frontmatterService.updateProperty(s,"ems__Effort_startTimestamp",i),await this.fsAdapter.updateFile(t,s),console.log(`\u2705 Started: ${e}`),console.log(" Status: Doing"),console.log(` Start time: ${i}`),process.exit(0)}catch(t){K.handle(t)}}async executeComplete(e){try{let{relativePath:t}=this.resolveAndValidate(e),r=await this.fsAdapter.readFile(t),i=this.getCurrentTimestamp(),s=this.frontmatterService.updateProperty(r,"ems__Effort_status",'"[[ems__EffortStatusDone]]"');s=this.frontmatterService.updateProperty(s,"ems__Effort_endTimestamp",i),s=this.frontmatterService.updateProperty(s,"ems__Effort_resolutionTimestamp",i),await this.fsAdapter.updateFile(t,s),console.log(`\u2705 Completed: ${e}`),console.log(" Status: Done"),console.log(` Completion time: ${i}`),process.exit(0)}catch(t){K.handle(t)}}async executeTrash(e){try{let{relativePath:t}=this.resolveAndValidate(e),r=await this.fsAdapter.readFile(t),i=this.getCurrentTimestamp(),s=this.frontmatterService.updateProperty(r,"ems__Effort_status",'"[[ems__EffortStatusTrashed]]"');s=this.frontmatterService.updateProperty(s,"ems__Effort_resolutionTimestamp",i),await this.fsAdapter.updateFile(t,s),console.log(`\u2705 Trashed: ${e}`),console.log(" Status: Trashed"),console.log(` Resolution time: ${i}`),process.exit(0)}catch(t){K.handle(t)}}async executeArchive(e){try{let{relativePath:t}=this.resolveAndValidate(e),r=await this.fsAdapter.readFile(t),i=this.frontmatterService.updateProperty(r,"archived","true");i=this.frontmatterService.removeProperty(i,"aliases"),await this.fsAdapter.updateFile(t,i),console.log(`\u2705 Archived: ${e}`),console.log(" Archived: true"),console.log(" Aliases removed"),process.exit(0)}catch(t){K.handle(t)}}async executeMoveToBacklog(e){try{await this.updateStatus(e,"ems__EffortStatusBacklog","Backlog"),process.exit(0)}catch(t){K.handle(t)}}async executeMoveToAnalysis(e){try{await this.updateStatus(e,"ems__EffortStatusAnalysis","Analysis"),process.exit(0)}catch(t){K.handle(t)}}async executeMoveToToDo(e){try{await this.updateStatus(e,"ems__EffortStatusToDo","ToDo"),process.exit(0)}catch(t){K.handle(t)}}async updateStatus(e,t,r){let{relativePath:i}=this.resolveAndValidate(e),s=await this.fsAdapter.readFile(i),a=this.frontmatterService.updateProperty(s,"ems__Effort_status",`"[[${t}]]"`);await this.fsAdapter.updateFile(i,a),console.log(`\u2705 Moved to ${r}: ${e}`),console.log(` Status: ${r}`)}};var Jt=[];for(let n=0;n<256;++n)Jt.push((n+256).toString(16).slice(1));function _T(n,e=0){return(Jt[n[e+0]]+Jt[n[e+1]]+Jt[n[e+2]]+Jt[n[e+3]]+"-"+Jt[n[e+4]]+Jt[n[e+5]]+"-"+Jt[n[e+6]]+Jt[n[e+7]]+"-"+Jt[n[e+8]]+Jt[n[e+9]]+"-"+Jt[n[e+10]]+Jt[n[e+11]]+Jt[n[e+12]]+Jt[n[e+13]]+Jt[n[e+14]]+Jt[n[e+15]]).toLowerCase()}o(_T,"unsafeStringify");var wT=require("node:crypto");var Uh=new Uint8Array(256),Vh=Uh.length;function i1(){return Vh>Uh.length-16&&((0,wT.randomFillSync)(Uh),Vh=0),Uh.slice(Vh,Vh+=16)}o(i1,"rng");var bT=require("node:crypto"),s1={randomUUID:bT.randomUUID};function pM(n,e,t){n=n||{};let r=n.random??n.rng?.()??i1();if(r.length<16)throw new Error("Random bytes length must be >= 16");if(r[6]=r[6]&15|64,r[8]=r[8]&63|128,e){if(t=t||0,t<0||t+16>e.length)throw new RangeError(`UUID byte range ${t}:${t+15} is out of buffer bounds`);for(let i=0;i<16;++i)e[t+i]=r[i];return e}return _T(r)}o(pM,"_v4");function mM(n,e,t){return s1.randomUUID&&!e&&!n?s1.randomUUID():pM(n,e,t)}o(mM,"v4");var a1=mM;var ko=Ne(Rn());var hu=class extends jn{static{o(this,"AssetCreationExecutor")}constructor(e){super(e)}async executeCreateTask(e,t,r={}){try{await this.createAsset(e,t,"ems__Task",r),process.exit(0)}catch(i){K.handle(i)}}async executeCreateMeeting(e,t,r={}){try{await this.createAsset(e,t,"ems__Meeting",r),process.exit(0)}catch(i){K.handle(i)}}async executeCreateProject(e,t,r={}){try{await this.createAsset(e,t,"ems__Project",r),process.exit(0)}catch(i){K.handle(i)}}async executeCreateArea(e,t,r={}){try{await this.createAsset(e,t,"ems__Area",r),process.exit(0)}catch(i){K.handle(i)}}async createAsset(e,t,r,i={}){if(!t||t.trim().length===0)throw new Error("Label cannot be empty");let s=t.trim(),{relativePath:a}=this.resolveAndValidate(e);if(await this.fsAdapter.fileExists(a))throw new ko.FileAlreadyExistsError(e);let u=a1(),l=this.buildAssetFrontmatter(r,u,s,i),f=ko.MetadataHelpers.buildFileContent(l);await this.fsAdapter.createFile(a,f),console.log(`\u2705 Created ${this.getAssetTypeName(r)}: ${e}`),console.log(` UID: ${u}`),console.log(` Label: ${s}`),console.log(` Class: ${r}`)}buildAssetFrontmatter(e,t,r,i={}){let s=ko.DateFormatter.toLocalTimestamp(new Date),a={exo__Asset_isDefinedBy:'"[[Ontology/EMS]]"',exo__Asset_uid:t,exo__Asset_label:r,exo__Asset_createdAt:s,exo__Instance_class:[`"[[${e}]]"`],aliases:[r]};return(e==="ems__Task"||e==="ems__Project"||e==="ems__Meeting")&&(a.ems__Effort_status='"[[ems__EffortStatusDraft]]"'),i.prototype&&(a.ems__Effort_prototype=`"[[${i.prototype}]]"`),i.area&&(a.ems__Effort_area=`"[[${i.area}]]"`),i.parent&&(a.ems__Effort_parent=`"[[${i.parent}]]"`),a}getAssetTypeName(e){return{ems__Task:"task",ems__Meeting:"meeting",ems__Project:"project",ems__Area:"area"}[e]||"asset"}};var o1=Ne(require("path"));var ET=Ne(Rn());var du=class extends jn{static{o(this,"PropertyCommandExecutor")}constructor(e){super(e)}async executeRenameToUid(e){try{let{relativePath:t}=this.resolveAndValidate(e),r=await this.fsAdapter.getFileMetadata(t);if(!r.exo__Asset_uid)throw new Error("Asset missing exo__Asset_uid property");let i=o1.default.basename(t,".md"),s=r.exo__Asset_uid;if(i===s&&(console.log(`\u2705 Already renamed: ${e}`),console.log(` Current filename matches UID: ${s}.md`),process.exit(0)),!r.exo__Asset_label||r.exo__Asset_label.trim()===""){let u=await this.fsAdapter.readFile(t),l=this.frontmatterService.updateProperty(u,"exo__Asset_label",i),f=this.isAssetArchived(r),h=l;f||(h=this.frontmatterService.updateProperty(l,"aliases",`
425
425
  - ${i}`)),await this.fsAdapter.updateFile(t,h),console.log(` Updated label: "${i}"`)}let a=o1.default.dirname(t),c=a!=="."?`${a}/${s}.md`:`${s}.md`;await this.fsAdapter.renameFile(t,c),console.log("\u2705 Renamed to UID format"),console.log(` Old: ${t}`),console.log(` New: ${c}`),process.exit(0)}catch(t){K.handle(t)}}async executeUpdateLabel(e,t){try{if(!t||t.trim().length===0)throw new Error("Label cannot be empty");let r=t.trim(),{relativePath:i}=this.resolveAndValidate(e),s=await this.fsAdapter.readFile(i),a=this.frontmatterService.updateProperty(s,"exo__Asset_label",r),c=this.frontmatterService.parse(a),u=this.extractAliasesFromFrontmatter(c.content);if(u.includes(r)||(u.length===0?a=this.frontmatterService.updateProperty(a,"aliases",`
426
426
  - ${r}`):a=this.frontmatterService.updateProperty(a,"aliases",`${u.map(l=>`
@@ -446,7 +446,7 @@ globstar while`,e,d,t,p,S),this.matchOne(e.slice(d),t.slice(p),r))return this.de
446
446
  ${t}
447
447
  Continue? (y/n): `,s=>{r.close(),i(s.toLowerCase()==="y"||s.toLowerCase()==="yes")})})}};var Xh=class{static{o(this,"CLIContainer")}static setup(){jo.container.register(mu.DI_TOKENS.ILogger,{useFactory:o(()=>new Hh("exocortex-cli"),"useFactory")}),jo.container.register(mu.DI_TOKENS.IEventBus,{useClass:zh}),jo.container.register(mu.DI_TOKENS.IConfiguration,{useClass:Qh}),jo.container.register(mu.DI_TOKENS.INotificationService,{useClass:Kh})}static reset(){jo.container.clearInstances()}};function gu(n){Xh.setup(),ha.container.register(ms.DI_TOKENS.IVaultAdapter,{useFactory:o(()=>new os(n),"useFactory")})}o(gu,"setupContainer");function TM(n){if(n.length===0)return"No practices found.";let e=[];for(let t of n){let r="\u2B1C";t.doneToday?r="\u2705":t.inProgressToday&&(r="\u{1F504}");let i=t.estimatedDuration?` (${t.estimatedDuration}m)`:"";e.push(`${r} ${t.label}${i}`)}return e.join(`
448
448
  `)}o(TM,"formatPractices");function AM(n){let e=[`\u{1F4C5} Daily Review: ${n.date}`,"","\u{1F4CA} Tasks:",` Planned: ${n.plannedCount}`,` Completed: ${n.completedCount}`,` In Progress: ${n.inProgressCount}`,` Progress: ${n.completionPercentage}%`,"",`\u23F1\uFE0F Total time: ${Math.round(n.totalTimeMinutes)} minutes`];if(n.practicesDue.length>0){e.push(""),e.push(`\u{1F4CB} Practices due (${n.practicesDue.length}):`);for(let t of n.practicesDue){let r=t.estimatedDuration?` (${t.estimatedDuration}m)`:"";e.push(` \u2B1C ${t.label}${r}`)}}return e.join(`
449
- `)}o(AM,"formatSummary");function BT(){let n=new Rt("daily").description("Daily review operations for mobile-friendly workflow");return n.command("practices").description("List today's practices (recurring tasks)").option("--vault <path>","Path to Obsidian vault",process.cwd()).option("--format <type>","Output format: text|json","text").action(async e=>{let t=e.format||"text";K.setFormat(t);try{let r=(0,$o.resolve)(e.vault);if(!(0,Vo.existsSync)(r))throw new Yt(r);gu(r);let s=await ha.container.resolve(ms.DailyReviewService).getPractices();if(t==="json"){let a=Qe.success({practices:s,count:s.length});console.log(JSON.stringify(a,null,2))}else console.log(TM(s))}catch(r){K.handle(r)}}),n.command("summary").description("Show today's daily review summary").option("--vault <path>","Path to Obsidian vault",process.cwd()).option("--format <type>","Output format: text|json","text").option("--date <value>","Date in YYYY-MM-DD format (default: today)").action(async e=>{let t=e.format||"text";K.setFormat(t);try{let r=(0,$o.resolve)(e.vault);if(!(0,Vo.existsSync)(r))throw new Yt(r);gu(r);let i=ha.container.resolve(ms.DailyReviewService),s;if(e.date&&(s=new Date(e.date),isNaN(s.getTime())))throw new tt(`Invalid date format: ${e.date}`,"exocortex daily summary --date YYYY-MM-DD",{date:e.date});let a=await i.getDailyReviewSummary(s);if(t==="json"){let c=Qe.success(a);console.log(JSON.stringify(c,null,2))}else console.log(AM(a))}catch(r){K.handle(r)}}),n.command("log").description("Quick capture an activity").argument("<label>","Activity label/description").option("--vault <path>","Path to Obsidian vault",process.cwd()).option("--format <type>","Output format: text|json","text").option("--start","Start the task immediately (default: true)").option("--no-start","Don't start the task immediately").action(async(e,t)=>{let r=t.format||"text";K.setFormat(r);try{let i=(0,$o.resolve)(t.vault);if(!(0,Vo.existsSync)(i))throw new Yt(i);gu(i);let s=ha.container.resolve(ms.DailyReviewService),a=t.start!==!1,c=await s.quickCapture(e,a);if(r==="json"){let u=Qe.success(c);console.log(JSON.stringify(u,null,2))}else{let u=c.started?"\u{1F504}":"\u2B1C";console.log(`${u} Created: ${c.label}`),console.log(` Path: ${c.path}`)}}catch(i){K.handle(i)}}),n.command("start").description("Start a practice (create task instance from prototype)").argument("<prototype-uid>","Practice/prototype UID to start").option("--vault <path>","Path to Obsidian vault",process.cwd()).option("--format <type>","Output format: text|json","text").action(async(e,t)=>{let r=t.format||"text";K.setFormat(r);try{let i=(0,$o.resolve)(t.vault);if(!(0,Vo.existsSync)(i))throw new Yt(i);gu(i);let a=await ha.container.resolve(ms.DailyReviewService).createFromPractice({prototypeUid:e,startImmediately:!0});if(r==="json"){let c=Qe.success(a);console.log(JSON.stringify(c,null,2))}else console.log(`\u{1F504} Started: ${a.label}`),console.log(` Path: ${a.path}`)}catch(i){K.handle(i)}}),n.command("done").description("Mark a practice as done").argument("<prototype-uid>","Practice/prototype UID to mark as done").option("--vault <path>","Path to Obsidian vault",process.cwd()).option("--format <type>","Output format: text|json","text").action(async(e,t)=>{let r=t.format||"text";K.setFormat(r);try{let i=(0,$o.resolve)(t.vault);if(!(0,Vo.existsSync)(i))throw new Yt(i);if(gu(i),await ha.container.resolve(ms.DailyReviewService).markPracticeDone(e),r==="json"){let a=Qe.success({prototypeUid:e,status:"done"});console.log(JSON.stringify(a,null,2))}else console.log(`\u2705 Marked as done: ${e}`)}catch(i){K.handle(i)}}),n}o(BT,"dailyReviewCommand");var li=new Rt;li.name("exocortex").description("CLI tool for Exocortex knowledge management system").version("13.262.0");li.command("sparql").description("SPARQL query execution").addCommand(S3());li.addCommand(CT());li.addCommand(IT());li.addCommand(PT());li.addCommand(RT());li.addCommand(FT());li.addCommand(jT());li.addCommand(BT());li.parse();
449
+ `)}o(AM,"formatSummary");function BT(){let n=new Rt("daily").description("Daily review operations for mobile-friendly workflow");return n.command("practices").description("List today's practices (recurring tasks)").option("--vault <path>","Path to Obsidian vault",process.cwd()).option("--format <type>","Output format: text|json","text").action(async e=>{let t=e.format||"text";K.setFormat(t);try{let r=(0,$o.resolve)(e.vault);if(!(0,Vo.existsSync)(r))throw new Yt(r);gu(r);let s=await ha.container.resolve(ms.DailyReviewService).getPractices();if(t==="json"){let a=Qe.success({practices:s,count:s.length});console.log(JSON.stringify(a,null,2))}else console.log(TM(s))}catch(r){K.handle(r)}}),n.command("summary").description("Show today's daily review summary").option("--vault <path>","Path to Obsidian vault",process.cwd()).option("--format <type>","Output format: text|json","text").option("--date <value>","Date in YYYY-MM-DD format (default: today)").action(async e=>{let t=e.format||"text";K.setFormat(t);try{let r=(0,$o.resolve)(e.vault);if(!(0,Vo.existsSync)(r))throw new Yt(r);gu(r);let i=ha.container.resolve(ms.DailyReviewService),s;if(e.date&&(s=new Date(e.date),isNaN(s.getTime())))throw new tt(`Invalid date format: ${e.date}`,"exocortex daily summary --date YYYY-MM-DD",{date:e.date});let a=await i.getDailyReviewSummary(s);if(t==="json"){let c=Qe.success(a);console.log(JSON.stringify(c,null,2))}else console.log(AM(a))}catch(r){K.handle(r)}}),n.command("log").description("Quick capture an activity").argument("<label>","Activity label/description").option("--vault <path>","Path to Obsidian vault",process.cwd()).option("--format <type>","Output format: text|json","text").option("--start","Start the task immediately (default: true)").option("--no-start","Don't start the task immediately").action(async(e,t)=>{let r=t.format||"text";K.setFormat(r);try{let i=(0,$o.resolve)(t.vault);if(!(0,Vo.existsSync)(i))throw new Yt(i);gu(i);let s=ha.container.resolve(ms.DailyReviewService),a=t.start!==!1,c=await s.quickCapture(e,a);if(r==="json"){let u=Qe.success(c);console.log(JSON.stringify(u,null,2))}else{let u=c.started?"\u{1F504}":"\u2B1C";console.log(`${u} Created: ${c.label}`),console.log(` Path: ${c.path}`)}}catch(i){K.handle(i)}}),n.command("start").description("Start a practice (create task instance from prototype)").argument("<prototype-uid>","Practice/prototype UID to start").option("--vault <path>","Path to Obsidian vault",process.cwd()).option("--format <type>","Output format: text|json","text").action(async(e,t)=>{let r=t.format||"text";K.setFormat(r);try{let i=(0,$o.resolve)(t.vault);if(!(0,Vo.existsSync)(i))throw new Yt(i);gu(i);let a=await ha.container.resolve(ms.DailyReviewService).createFromPractice({prototypeUid:e,startImmediately:!0});if(r==="json"){let c=Qe.success(a);console.log(JSON.stringify(c,null,2))}else console.log(`\u{1F504} Started: ${a.label}`),console.log(` Path: ${a.path}`)}catch(i){K.handle(i)}}),n.command("done").description("Mark a practice as done").argument("<prototype-uid>","Practice/prototype UID to mark as done").option("--vault <path>","Path to Obsidian vault",process.cwd()).option("--format <type>","Output format: text|json","text").action(async(e,t)=>{let r=t.format||"text";K.setFormat(r);try{let i=(0,$o.resolve)(t.vault);if(!(0,Vo.existsSync)(i))throw new Yt(i);if(gu(i),await ha.container.resolve(ms.DailyReviewService).markPracticeDone(e),r==="json"){let a=Qe.success({prototypeUid:e,status:"done"});console.log(JSON.stringify(a,null,2))}else console.log(`\u2705 Marked as done: ${e}`)}catch(i){K.handle(i)}}),n}o(BT,"dailyReviewCommand");var li=new Rt;li.name("exocortex").description("CLI tool for Exocortex knowledge management system").version("13.264.0");li.command("sparql").description("SPARQL query execution").addCommand(S3());li.addCommand(CT());li.addCommand(IT());li.addCommand(PT());li.addCommand(RT());li.addCommand(FT());li.addCommand(jT());li.addCommand(BT());li.parse();
450
450
  /*! Bundled license information:
451
451
 
452
452
  reflect-metadata/Reflect.js: