@serverless-devs/s 2.0.91-alpha.2 → 2.0.93-alpha.3

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 (100) hide show
  1. package/CONTRIBUTORS.md +2 -0
  2. package/bin/s-component +2 -0
  3. package/docs/readme.md +94 -0
  4. package/docs/zh/awesome.md +296 -0
  5. package/docs/zh/cicd.md +200 -0
  6. package/docs/zh/cli_design.md +100 -0
  7. package/docs/zh/command/clean.md +62 -0
  8. package/docs/zh/command/cli.md +91 -0
  9. package/docs/zh/command/component.md +75 -0
  10. package/docs/zh/command/config.md +278 -0
  11. package/docs/zh/command/custom.md +73 -0
  12. package/docs/zh/command/init.md +148 -0
  13. package/docs/zh/command/readme.md +75 -0
  14. package/docs/zh/command/set.md +195 -0
  15. package/docs/zh/default_provider_config/alibabacloud.md +82 -0
  16. package/docs/zh/default_provider_config/aws.md +12 -0
  17. package/docs/zh/default_provider_config/azure.md +9 -0
  18. package/docs/zh/default_provider_config/baiducloud.md +8 -0
  19. package/docs/zh/default_provider_config/gcp.md +21 -0
  20. package/docs/zh/default_provider_config/huaweicloud.md +52 -0
  21. package/docs/zh/default_provider_config/readme.md +9 -0
  22. package/docs/zh/default_provider_config/tencentcloud.md +41 -0
  23. package/docs/zh/install.md +52 -0
  24. package/docs/zh/package_dev.md +142 -0
  25. package/docs/zh/quick_start.md +297 -0
  26. package/docs/zh/readme.md +90 -0
  27. package/docs/zh/tool.md +80 -0
  28. package/docs/zh/yaml.md +203 -0
  29. package/docs/zh/yaml_and_cli.md +67 -0
  30. package/lib/clean/index.js +42 -35
  31. package/lib/cli/cli-manager.js +33 -22
  32. package/lib/cli/index.js +59 -62
  33. package/lib/component/index.d.ts +1 -0
  34. package/lib/component/index.js +160 -0
  35. package/lib/config/add/index.js +39 -39
  36. package/lib/config/delete/index.js +48 -60
  37. package/lib/config/get/index.d.ts +0 -1
  38. package/lib/config/get/index.js +44 -51
  39. package/lib/config/index.js +36 -35
  40. package/lib/constants/index.d.ts +0 -1
  41. package/lib/constants/index.js +1 -5
  42. package/lib/core/command/command-manager.js +37 -43
  43. package/lib/core/component/index.d.ts +14 -7
  44. package/lib/core/component/index.js +78 -52
  45. package/lib/core/plugin/index.js +4 -3
  46. package/lib/daemon/template.js +2 -4
  47. package/lib/error/human-error.d.ts +12 -2
  48. package/lib/error/human-error.js +63 -28
  49. package/lib/error/human-warning.d.ts +8 -0
  50. package/lib/error/human-warning.js +19 -0
  51. package/lib/error/index.d.ts +10 -1
  52. package/lib/error/index.js +74 -27
  53. package/lib/index.js +91 -97
  54. package/lib/init/index.js +74 -77
  55. package/lib/init/init-config.js +3 -5
  56. package/lib/init/init-manager.js +3 -4
  57. package/lib/init/update-template.js +3 -5
  58. package/lib/onboarding/index.js +5 -5
  59. package/lib/set/analysis/index.js +39 -37
  60. package/lib/set/index.js +34 -33
  61. package/lib/set/locale/index.js +52 -53
  62. package/lib/set/registry/index.js +50 -52
  63. package/lib/specification/parse.js +9 -6
  64. package/lib/update-notifier/index.js +19 -19
  65. package/lib/utils/command-util.d.ts +0 -2
  66. package/lib/utils/command-util.js +2 -42
  67. package/lib/utils/common.d.ts +1 -0
  68. package/lib/utils/common.js +100 -20
  69. package/lib/utils/core.js +3 -3
  70. package/lib/utils/handler-set-config.d.ts +1 -1
  71. package/lib/utils/handler-set-config.js +6 -7
  72. package/lib/utils/i18n/en.js +4 -4
  73. package/lib/utils/i18n/index.js +3 -3
  74. package/lib/utils/i18n/zh.js +3 -3
  75. package/lib/utils/storage.js +3 -4
  76. package/package.json +2 -2
  77. package/readme.md +64 -38
  78. package/shell/postbuild.sh +14 -13
  79. package/spec/readme.md +59 -0
  80. package/spec/zh/0.0.1/readme.md +47 -0
  81. package/spec/zh/0.0.1/serverless_pacakge_model/1.purpose_and_goals.md +3 -0
  82. package/spec/zh/0.0.1/serverless_pacakge_model/2.overview_and_terminology.md +14 -0
  83. package/spec/zh/0.0.1/serverless_pacakge_model/3.package_model.md +434 -0
  84. package/spec/zh/0.0.1/serverless_pacakge_model/4.application_scopes.md +3 -0
  85. package/spec/zh/0.0.1/serverless_pacakge_model/5.design_principles.md +3 -0
  86. package/spec/zh/0.0.1/serverless_pacakge_model/readme.md +12 -0
  87. package/spec/zh/0.0.1/serverless_registry_model/1.purpose_and_goals.md +18 -0
  88. package/spec/zh/0.0.1/serverless_registry_model/2.overview_and_terminology.md +18 -0
  89. package/spec/zh/0.0.1/serverless_registry_model/3.registry_model.md +61 -0
  90. package/spec/zh/0.0.1/serverless_registry_model/4.application_scopes.md +6 -0
  91. package/spec/zh/0.0.1/serverless_registry_model/5.design_principles.md +3 -0
  92. package/spec/zh/0.0.1/serverless_registry_model/readme.md +12 -0
  93. package/spec/zh/0.0.1/serverless_user_model/1.purpose_and_goals.md +3 -0
  94. package/spec/zh/0.0.1/serverless_user_model/2.overview_and_terminology.md +16 -0
  95. package/spec/zh/0.0.1/serverless_user_model/3.user_model.md +218 -0
  96. package/spec/zh/0.0.1/serverless_user_model/4.application_scopes.md +4 -0
  97. package/spec/zh/0.0.1/serverless_user_model/5.design_principles.md +3 -0
  98. package/spec/zh/0.0.1/serverless_user_model/readme.md +12 -0
  99. package/bin/s-set-locale +0 -2
  100. package/readme_zh.md +0 -72
@@ -1,76 +1,64 @@
1
- var x=(t,n)=>()=>(n||t((n={exports:{}}).exports,n),n.exports);var Lu=x((Er,Gf)=>{var SS=require("events").EventEmitter,Ru=require("child_process").spawn,yr=require("path"),Pu=require("fs"),hs=class{constructor(n,i){this.flags=n,this.required=n.includes("<"),this.optional=n.includes("["),this.variadic=/\w\.\.\.[>\]]$/.test(n),this.mandatory=!1;let o=jf(n);this.short=o.shortFlag,this.long=o.longFlag,this.negate=!1,this.long&&(this.negate=this.long.startsWith("--no-")),this.description=i||"",this.defaultValue=void 0}name(){return this.long?this.long.replace(/^--/,""):this.short.replace(/^-/,"")}attributeName(){return xS(this.name().replace(/^no-/,""))}is(n){return this.short===n||this.long===n}},Gn=class extends Error{constructor(n,i,o){super(o);Error.captureStackTrace(this,this.constructor),this.name=this.constructor.name,this.code=i,this.exitCode=n,this.nestedError=void 0}},Hn=class extends SS{constructor(n){super();this.commands=[],this.options=[],this.parent=null,this._allowUnknownOption=!1,this._args=[],this.rawArgs=null,this._scriptPath=null,this._name=n||"",this._optionValues={},this._storeOptionsAsProperties=!0,this._storeOptionsAsPropertiesCalled=!1,this._passCommandToAction=!0,this._actionResults=[],this._actionHandler=null,this._executableHandler=!1,this._executableFile=null,this._defaultCommandName=null,this._exitCallback=null,this._aliases=[],this._combineFlagAndOptionalValue=!0,this._hidden=!1,this._hasHelpOption=!0,this._helpFlags="-h, --help",this._helpDescription="display help for command",this._helpShortFlag="-h",this._helpLongFlag="--help",this._hasImplicitHelpCommand=void 0,this._helpCommandName="help",this._helpCommandnameAndArgs="help [command]",this._helpCommandDescription="display help for command"}command(n,i,o){let a=i,u=o;typeof a=="object"&&a!==null&&(u=a,a=null),u=u||{};let h=n.split(/ +/),m=this.createCommand(h.shift());return a&&(m.description(a),m._executableHandler=!0),u.isDefault&&(this._defaultCommandName=m._name),m._hidden=!!(u.noHelp||u.hidden),m._hasHelpOption=this._hasHelpOption,m._helpFlags=this._helpFlags,m._helpDescription=this._helpDescription,m._helpShortFlag=this._helpShortFlag,m._helpLongFlag=this._helpLongFlag,m._helpCommandName=this._helpCommandName,m._helpCommandnameAndArgs=this._helpCommandnameAndArgs,m._helpCommandDescription=this._helpCommandDescription,m._exitCallback=this._exitCallback,m._storeOptionsAsProperties=this._storeOptionsAsProperties,m._passCommandToAction=this._passCommandToAction,m._combineFlagAndOptionalValue=this._combineFlagAndOptionalValue,m._executableFile=u.executableFile||null,this.commands.push(m),m._parseExpectedArgs(h),m.parent=this,a?this:m}createCommand(n){return new Hn(n)}addCommand(n,i){if(!n._name)throw new Error("Command passed to .addCommand() must have a name");function o(a){a.forEach(u=>{if(u._executableHandler&&!u._executableFile)throw new Error(`Must specify executableFile for deeply nested executable: ${u.name()}`);o(u.commands)})}return o(n.commands),i=i||{},i.isDefault&&(this._defaultCommandName=n._name),(i.noHelp||i.hidden)&&(n._hidden=!0),this.commands.push(n),n.parent=this,this}arguments(n){return this._parseExpectedArgs(n.split(/ +/))}addHelpCommand(n,i){return n===!1?this._hasImplicitHelpCommand=!1:(this._hasImplicitHelpCommand=!0,typeof n=="string"&&(this._helpCommandName=n.split(" ")[0],this._helpCommandnameAndArgs=n),this._helpCommandDescription=i||this._helpCommandDescription),this}_lazyHasImplicitHelpCommand(){return this._hasImplicitHelpCommand===void 0&&(this._hasImplicitHelpCommand=this.commands.length&&!this._actionHandler&&!this._findCommand("help")),this._hasImplicitHelpCommand}_parseExpectedArgs(n){if(!!n.length)return n.forEach(i=>{let o={required:!1,name:"",variadic:!1};switch(i[0]){case"<":o.required=!0,o.name=i.slice(1,-1);break;case"[":o.name=i.slice(1,-1);break}o.name.length>3&&o.name.slice(-3)==="..."&&(o.variadic=!0,o.name=o.name.slice(0,-3)),o.name&&this._args.push(o)}),this._args.forEach((i,o)=>{if(i.variadic&&o<this._args.length-1)throw new Error(`only the last argument can be variadic '${i.name}'`)}),this}exitOverride(n){return n?this._exitCallback=n:this._exitCallback=i=>{if(i.code!=="commander.executeSubCommandAsync")throw i},this}_exit(n,i,o){this._exitCallback&&this._exitCallback(new Gn(n,i,o)),process.exit(n)}action(n){let i=o=>{let a=this._args.length,u=o.slice(0,a);this._passCommandToAction?u[a]=this:u[a]=this.opts(),o.length>a&&u.push(o.slice(a));let h=n.apply(this,u),m=this;for(;m.parent;)m=m.parent;m._actionResults.push(h)};return this._actionHandler=i,this}_checkForOptionNameClash(n){if(!this._storeOptionsAsProperties||this._storeOptionsAsPropertiesCalled||n.name()==="help"||this._getOptionValue(n.attributeName())===void 0)return;let o=!0;if(n.negate){let a=n.long.replace(/^--no-/,"--");o=!this._findOption(a)}else if(n.long){let a=n.long.replace(/^--/,"--no-");o=!this._findOption(a)}if(o)throw new Error(`option '${n.name()}' clashes with existing property '${n.attributeName()}' on Command
1
+ var I=(i,r)=>()=>(r||i((r={exports:{}}).exports,r),r.exports);var Bo=I((dr,bc)=>{var eE=require("events").EventEmitter,Uo=require("child_process").spawn,pr=require("path"),Go=require("fs"),Bi=class{constructor(r,n){this.flags=r,this.required=r.includes("<"),this.optional=r.includes("["),this.variadic=/\w\.\.\.[>\]]$/.test(r),this.mandatory=!1;let o=Ec(r);this.short=o.shortFlag,this.long=o.longFlag,this.negate=!1,this.long&&(this.negate=this.long.startsWith("--no-")),this.description=n||"",this.defaultValue=void 0}name(){return this.long?this.long.replace(/^--/,""):this.short.replace(/^-/,"")}attributeName(){return tE(this.name().replace(/^no-/,""))}is(r){return this.short===r||this.long===r}},On=class extends Error{constructor(r,n,o){super(o);Error.captureStackTrace(this,this.constructor),this.name=this.constructor.name,this.code=n,this.exitCode=r,this.nestedError=void 0}},An=class extends eE{constructor(r){super();this.commands=[],this.options=[],this.parent=null,this._allowUnknownOption=!1,this._args=[],this.rawArgs=null,this._scriptPath=null,this._name=r||"",this._optionValues={},this._storeOptionsAsProperties=!0,this._storeOptionsAsPropertiesCalled=!1,this._passCommandToAction=!0,this._actionResults=[],this._actionHandler=null,this._executableHandler=!1,this._executableFile=null,this._defaultCommandName=null,this._exitCallback=null,this._aliases=[],this._combineFlagAndOptionalValue=!0,this._hidden=!1,this._hasHelpOption=!0,this._helpFlags="-h, --help",this._helpDescription="display help for command",this._helpShortFlag="-h",this._helpLongFlag="--help",this._hasImplicitHelpCommand=void 0,this._helpCommandName="help",this._helpCommandnameAndArgs="help [command]",this._helpCommandDescription="display help for command"}command(r,n,o){let a=n,u=o;typeof a=="object"&&a!==null&&(u=a,a=null),u=u||{};let d=r.split(/ +/),m=this.createCommand(d.shift());return a&&(m.description(a),m._executableHandler=!0),u.isDefault&&(this._defaultCommandName=m._name),m._hidden=!!(u.noHelp||u.hidden),m._hasHelpOption=this._hasHelpOption,m._helpFlags=this._helpFlags,m._helpDescription=this._helpDescription,m._helpShortFlag=this._helpShortFlag,m._helpLongFlag=this._helpLongFlag,m._helpCommandName=this._helpCommandName,m._helpCommandnameAndArgs=this._helpCommandnameAndArgs,m._helpCommandDescription=this._helpCommandDescription,m._exitCallback=this._exitCallback,m._storeOptionsAsProperties=this._storeOptionsAsProperties,m._passCommandToAction=this._passCommandToAction,m._combineFlagAndOptionalValue=this._combineFlagAndOptionalValue,m._executableFile=u.executableFile||null,this.commands.push(m),m._parseExpectedArgs(d),m.parent=this,a?this:m}createCommand(r){return new An(r)}addCommand(r,n){if(!r._name)throw new Error("Command passed to .addCommand() must have a name");function o(a){a.forEach(u=>{if(u._executableHandler&&!u._executableFile)throw new Error(`Must specify executableFile for deeply nested executable: ${u.name()}`);o(u.commands)})}return o(r.commands),n=n||{},n.isDefault&&(this._defaultCommandName=r._name),(n.noHelp||n.hidden)&&(r._hidden=!0),this.commands.push(r),r.parent=this,this}arguments(r){return this._parseExpectedArgs(r.split(/ +/))}addHelpCommand(r,n){return r===!1?this._hasImplicitHelpCommand=!1:(this._hasImplicitHelpCommand=!0,typeof r=="string"&&(this._helpCommandName=r.split(" ")[0],this._helpCommandnameAndArgs=r),this._helpCommandDescription=n||this._helpCommandDescription),this}_lazyHasImplicitHelpCommand(){return this._hasImplicitHelpCommand===void 0&&(this._hasImplicitHelpCommand=this.commands.length&&!this._actionHandler&&!this._findCommand("help")),this._hasImplicitHelpCommand}_parseExpectedArgs(r){if(!!r.length)return r.forEach(n=>{let o={required:!1,name:"",variadic:!1};switch(n[0]){case"<":o.required=!0,o.name=n.slice(1,-1);break;case"[":o.name=n.slice(1,-1);break}o.name.length>3&&o.name.slice(-3)==="..."&&(o.variadic=!0,o.name=o.name.slice(0,-3)),o.name&&this._args.push(o)}),this._args.forEach((n,o)=>{if(n.variadic&&o<this._args.length-1)throw new Error(`only the last argument can be variadic '${n.name}'`)}),this}exitOverride(r){return r?this._exitCallback=r:this._exitCallback=n=>{if(n.code!=="commander.executeSubCommandAsync")throw n},this}_exit(r,n,o){this._exitCallback&&this._exitCallback(new On(r,n,o)),process.exit(r)}action(r){let n=o=>{let a=this._args.length,u=o.slice(0,a);this._passCommandToAction?u[a]=this:u[a]=this.opts(),o.length>a&&u.push(o.slice(a));let d=r.apply(this,u),m=this;for(;m.parent;)m=m.parent;m._actionResults.push(d)};return this._actionHandler=n,this}_checkForOptionNameClash(r){if(!this._storeOptionsAsProperties||this._storeOptionsAsPropertiesCalled||r.name()==="help"||this._getOptionValue(r.attributeName())===void 0)return;let o=!0;if(r.negate){let a=r.long.replace(/^--no-/,"--");o=!this._findOption(a)}else if(r.long){let a=r.long.replace(/^--/,"--no-");o=!this._findOption(a)}if(o)throw new Error(`option '${r.name()}' clashes with existing property '${r.attributeName()}' on Command
2
2
  - call storeOptionsAsProperties(false) to store option values safely,
3
3
  - or call storeOptionsAsProperties(true) to suppress this check,
4
4
  - or change option name
5
5
 
6
- Read more on https://git.io/JJc0W`)}_optionEx(n,i,o,a,u){let h=new hs(i,o),m=h.name(),g=h.attributeName();if(h.mandatory=!!n.mandatory,this._checkForOptionNameClash(h),typeof a!="function")if(a instanceof RegExp){let l=a;a=(_,S)=>{let I=l.exec(_);return I?I[0]:S}}else u=a,a=null;if(h.negate||h.optional||h.required||typeof u=="boolean"){if(h.negate){let l=h.long.replace(/^--no-/,"--");u=this._findOption(l)?this._getOptionValue(g):!0}u!==void 0&&(this._setOptionValue(g,u),h.defaultValue=u)}return this.options.push(h),this.on("option:"+m,l=>{let _=this._getOptionValue(g);l!==null&&a?l=a(l,_===void 0?u:_):l!==null&&h.variadic&&(_===u||!Array.isArray(_)?l=[l]:l=_.concat(l)),typeof _=="boolean"||typeof _=="undefined"?l==null?this._setOptionValue(g,h.negate?!1:u||!0):this._setOptionValue(g,l):l!==null&&this._setOptionValue(g,h.negate?!1:l)}),this}option(n,i,o,a){return this._optionEx({},n,i,o,a)}requiredOption(n,i,o,a){return this._optionEx({mandatory:!0},n,i,o,a)}combineFlagAndOptionalValue(n){return this._combineFlagAndOptionalValue=n===void 0||n,this}allowUnknownOption(n){return this._allowUnknownOption=n===void 0||n,this}storeOptionsAsProperties(n){if(this._storeOptionsAsPropertiesCalled=!0,this._storeOptionsAsProperties=n===void 0||n,this.options.length)throw new Error("call .storeOptionsAsProperties() before adding options");return this}passCommandToAction(n){return this._passCommandToAction=n===void 0||n,this}_setOptionValue(n,i){this._storeOptionsAsProperties?this[n]=i:this._optionValues[n]=i}_getOptionValue(n){return this._storeOptionsAsProperties?this[n]:this._optionValues[n]}parse(n,i){if(n!==void 0&&!Array.isArray(n))throw new Error("first parameter to parse must be array or undefined");i=i||{},n===void 0&&(n=process.argv,process.versions&&process.versions.electron&&(i.from="electron")),this.rawArgs=n.slice();let o;switch(i.from){case void 0:case"node":this._scriptPath=n[1],o=n.slice(2);break;case"electron":process.defaultApp?(this._scriptPath=n[1],o=n.slice(2)):o=n.slice(1);break;case"user":o=n.slice(0);break;default:throw new Error(`unexpected parse option { from: '${i.from}' }`)}return!this._scriptPath&&process.mainModule&&(this._scriptPath=process.mainModule.filename),this._name=this._name||this._scriptPath&&yr.basename(this._scriptPath,yr.extname(this._scriptPath)),this._parseCommand([],o),this}parseAsync(n,i){return this.parse(n,i),Promise.all(this._actionResults).then(()=>this)}_executeSubCommand(n,i){i=i.slice();let o=!1,a=[".js",".ts",".tsx",".mjs"];this._checkForMissingMandatoryOptions();let u=this._scriptPath;!u&&process.mainModule&&(u=process.mainModule.filename);let h;try{let I=Pu.realpathSync(u);h=yr.dirname(I)}catch{h="."}let m=yr.basename(u,yr.extname(u))+"-"+n._name;n._executableFile&&(m=n._executableFile);let g=yr.join(h,m);Pu.existsSync(g)?m=g:a.forEach(I=>{Pu.existsSync(`${g}${I}`)&&(m=`${g}${I}`)}),o=a.includes(yr.extname(m));let l;process.platform!=="win32"?o?(i.unshift(m),i=Mf(process.execArgv).concat(i),l=Ru(process.argv[0],i,{stdio:"inherit"})):l=Ru(m,i,{stdio:"inherit"}):(i.unshift(m),i=Mf(process.execArgv).concat(i),l=Ru(process.execPath,i,{stdio:"inherit"})),["SIGUSR1","SIGUSR2","SIGTERM","SIGINT","SIGHUP"].forEach(I=>{process.on(I,()=>{l.killed===!1&&l.exitCode===null&&l.kill(I)})});let S=this._exitCallback;S?l.on("close",()=>{S(new Gn(process.exitCode||0,"commander.executeSubCommandAsync","(close)"))}):l.on("close",process.exit.bind(process)),l.on("error",I=>{if(I.code==="ENOENT"){let P=`'${m}' does not exist
7
- - if '${n._name}' is not meant to be an executable command, remove description parameter from '.command()' and use '.description()' instead
8
- - if the default executable name is not suitable, use the executableFile option to supply a custom name`;throw new Error(P)}else if(I.code==="EACCES")throw new Error(`'${m}' not executable`);if(!S)process.exit(1);else{let P=new Gn(1,"commander.executeSubCommandAsync","(error)");P.nestedError=I,S(P)}}),this.runningCommand=l}_dispatchSubcommand(n,i,o){let a=this._findCommand(n);a||this._helpAndError(),a._executableHandler?this._executeSubCommand(a,i.concat(o)):a._parseCommand(i,o)}_parseCommand(n,i){let o=this.parseOptions(i);if(n=n.concat(o.operands),i=o.unknown,this.args=n.concat(i),n&&this._findCommand(n[0]))this._dispatchSubcommand(n[0],n.slice(1),i);else if(this._lazyHasImplicitHelpCommand()&&n[0]===this._helpCommandName)n.length===1?this.help():this._dispatchSubcommand(n[1],[],[this._helpLongFlag]);else if(this._defaultCommandName)$f(this,i),this._dispatchSubcommand(this._defaultCommandName,n,i);else if(this.commands.length&&this.args.length===0&&!this._actionHandler&&!this._defaultCommandName&&this._helpAndError(),$f(this,o.unknown),this._checkForMissingMandatoryOptions(),o.unknown.length>0&&this.unknownOption(o.unknown[0]),this._actionHandler){let a=this.args.slice();this._args.forEach((u,h)=>{u.required&&a[h]==null?this.missingArgument(u.name):u.variadic&&(a[h]=a.splice(h))}),this._actionHandler(a),this.emit("command:"+this.name(),n,i)}else n.length?this._findCommand("*")?this._dispatchSubcommand("*",n,i):this.listenerCount("command:*")?this.emit("command:*",n,i):this.commands.length&&this.unknownCommand():this.commands.length&&this._helpAndError()}_findCommand(n){if(!!n)return this.commands.find(i=>i._name===n||i._aliases.includes(n))}_findOption(n){return this.options.find(i=>i.is(n))}_checkForMissingMandatoryOptions(){for(let n=this;n;n=n.parent)n.options.forEach(i=>{i.mandatory&&n._getOptionValue(i.attributeName())===void 0&&n.missingMandatoryOptionValue(i)})}parseOptions(n){let i=[],o=[],a=i,u=n.slice();function h(g){return g.length>1&&g[0]==="-"}let m=null;for(;u.length;){let g=u.shift();if(g==="--"){a===o&&a.push(g),a.push(...u);break}if(m&&!h(g)){this.emit(`option:${m.name()}`,g);continue}if(m=null,h(g)){let l=this._findOption(g);if(l){if(l.required){let _=u.shift();_===void 0&&this.optionMissingArgument(l),this.emit(`option:${l.name()}`,_)}else if(l.optional){let _=null;u.length>0&&!h(u[0])&&(_=u.shift()),this.emit(`option:${l.name()}`,_)}else this.emit(`option:${l.name()}`);m=l.variadic?l:null;continue}}if(g.length>2&&g[0]==="-"&&g[1]!=="-"){let l=this._findOption(`-${g[1]}`);if(l){l.required||l.optional&&this._combineFlagAndOptionalValue?this.emit(`option:${l.name()}`,g.slice(2)):(this.emit(`option:${l.name()}`),u.unshift(`-${g.slice(2)}`));continue}}if(/^--[^=]+=/.test(g)){let l=g.indexOf("="),_=this._findOption(g.slice(0,l));if(_&&(_.required||_.optional)){this.emit(`option:${_.name()}`,g.slice(l+1));continue}}g.length>1&&g[0]==="-"&&(a=o),a.push(g)}return{operands:i,unknown:o}}opts(){if(this._storeOptionsAsProperties){let n={},i=this.options.length;for(let o=0;o<i;o++){let a=this.options[o].attributeName();n[a]=a===this._versionOptionName?this._version:this[a]}return n}return this._optionValues}missingArgument(n){let i=`error: missing required argument '${n}'`;console.error(i),this._exit(1,"commander.missingArgument",i)}optionMissingArgument(n,i){let o;i?o=`error: option '${n.flags}' argument missing, got '${i}'`:o=`error: option '${n.flags}' argument missing`,console.error(o),this._exit(1,"commander.optionMissingArgument",o)}missingMandatoryOptionValue(n){let i=`error: required option '${n.flags}' not specified`;console.error(i),this._exit(1,"commander.missingMandatoryOptionValue",i)}unknownOption(n){if(this._allowUnknownOption)return;let i=`error: unknown option '${n}'`;console.error(i),this._exit(1,"commander.unknownOption",i)}unknownCommand(){let n=[this.name()];for(let a=this.parent;a;a=a.parent)n.unshift(a.name());let i=n.join(" "),o=`error: unknown command '${this.args[0]}'.`+(this._hasHelpOption?` See '${i} ${this._helpLongFlag}'.`:"");console.error(o),this._exit(1,"commander.unknownCommand",o)}version(n,i,o){if(n===void 0)return this._version;this._version=n,i=i||"-V, --version",o=o||"output the version number";let a=new hs(i,o);return this._versionOptionName=a.attributeName(),this.options.push(a),this.on("option:"+a.name(),()=>{process.stdout.write(n+`
9
- `),this._exit(0,"commander.version",n)}),this}description(n,i){return n===void 0&&i===void 0?this._description:(this._description=n,this._argsDescription=i,this)}alias(n){if(n===void 0)return this._aliases[0];let i=this;if(this.commands.length!==0&&this.commands[this.commands.length-1]._executableHandler&&(i=this.commands[this.commands.length-1]),n===i._name)throw new Error("Command alias can't be the same as its name");return i._aliases.push(n),this}aliases(n){return n===void 0?this._aliases:(n.forEach(i=>this.alias(i)),this)}usage(n){if(n===void 0){if(this._usage)return this._usage;let i=this._args.map(o=>Ff(o));return[].concat(this.options.length||this._hasHelpOption?"[options]":[],this.commands.length?"[command]":[],this._args.length?i:[]).join(" ")}return this._usage=n,this}name(n){return n===void 0?this._name:(this._name=n,this)}prepareCommands(){let n=this.commands.filter(i=>!i._hidden).map(i=>{let o=i._args.map(a=>Ff(a)).join(" ");return[i._name+(i._aliases[0]?"|"+i._aliases[0]:"")+(i.options.length?" [options]":"")+(o?" "+o:""),i._description]});return this._lazyHasImplicitHelpCommand()&&n.push([this._helpCommandnameAndArgs,this._helpCommandDescription]),n}largestCommandLength(){return this.prepareCommands().reduce((i,o)=>Math.max(i,o[0].length),0)}largestOptionLength(){let n=[].slice.call(this.options);return n.push({flags:this._helpFlags}),n.reduce((i,o)=>Math.max(i,o.flags.length),0)}largestArgLength(){return this._args.reduce((n,i)=>Math.max(n,i.name.length),0)}padWidth(){let n=this.largestOptionLength();return this._argsDescription&&this._args.length&&this.largestArgLength()>n&&(n=this.largestArgLength()),this.commands&&this.commands.length&&this.largestCommandLength()>n&&(n=this.largestCommandLength()),n}optionHelp(){let n=this.padWidth(),o=(process.stdout.columns||80)-n-4;function a(g,l){return Tu(g,n)+" "+Df(l,o,n+2)}let u=this.options.map(g=>{let l=g.description+(!g.negate&&g.defaultValue!==void 0?" (default: "+JSON.stringify(g.defaultValue)+")":"");return a(g.flags,l)}),h=this._hasHelpOption&&this._helpShortFlag&&!this._findOption(this._helpShortFlag),m=this._hasHelpOption&&!this._findOption(this._helpLongFlag);if(h||m){let g=this._helpFlags;h?m||(g=this._helpShortFlag):g=this._helpLongFlag,u.push(a(g,this._helpDescription))}return u.join(`
10
- `)}commandHelp(){if(!this.commands.length&&!this._lazyHasImplicitHelpCommand())return"";let n=this.prepareCommands(),i=this.padWidth(),a=(process.stdout.columns||80)-i-4;return["Commands:",n.map(u=>{let h=u[1]?" "+u[1]:"";return(h?Tu(u[0],i):u[0])+Df(h,a,i+2)}).join(`
6
+ Read more on https://git.io/JJc0W`)}_optionEx(r,n,o,a,u){let d=new Bi(n,o),m=d.name(),_=d.attributeName();if(d.mandatory=!!r.mandatory,this._checkForOptionNameClash(d),typeof a!="function")if(a instanceof RegExp){let c=a;a=(v,S)=>{let R=c.exec(v);return R?R[0]:S}}else u=a,a=null;if(d.negate||d.optional||d.required||typeof u=="boolean"){if(d.negate){let c=d.long.replace(/^--no-/,"--");u=this._findOption(c)?this._getOptionValue(_):!0}u!==void 0&&(this._setOptionValue(_,u),d.defaultValue=u)}return this.options.push(d),this.on("option:"+m,c=>{let v=this._getOptionValue(_);c!==null&&a?c=a(c,v===void 0?u:v):c!==null&&d.variadic&&(v===u||!Array.isArray(v)?c=[c]:c=v.concat(c)),typeof v=="boolean"||typeof v=="undefined"?c==null?this._setOptionValue(_,d.negate?!1:u||!0):this._setOptionValue(_,c):c!==null&&this._setOptionValue(_,d.negate?!1:c)}),this}option(r,n,o,a){return this._optionEx({},r,n,o,a)}requiredOption(r,n,o,a){return this._optionEx({mandatory:!0},r,n,o,a)}combineFlagAndOptionalValue(r){return this._combineFlagAndOptionalValue=r===void 0||r,this}allowUnknownOption(r){return this._allowUnknownOption=r===void 0||r,this}storeOptionsAsProperties(r){if(this._storeOptionsAsPropertiesCalled=!0,this._storeOptionsAsProperties=r===void 0||r,this.options.length)throw new Error("call .storeOptionsAsProperties() before adding options");return this}passCommandToAction(r){return this._passCommandToAction=r===void 0||r,this}_setOptionValue(r,n){this._storeOptionsAsProperties?this[r]=n:this._optionValues[r]=n}_getOptionValue(r){return this._storeOptionsAsProperties?this[r]:this._optionValues[r]}parse(r,n){if(r!==void 0&&!Array.isArray(r))throw new Error("first parameter to parse must be array or undefined");n=n||{},r===void 0&&(r=process.argv,process.versions&&process.versions.electron&&(n.from="electron")),this.rawArgs=r.slice();let o;switch(n.from){case void 0:case"node":this._scriptPath=r[1],o=r.slice(2);break;case"electron":process.defaultApp?(this._scriptPath=r[1],o=r.slice(2)):o=r.slice(1);break;case"user":o=r.slice(0);break;default:throw new Error(`unexpected parse option { from: '${n.from}' }`)}return!this._scriptPath&&process.mainModule&&(this._scriptPath=process.mainModule.filename),this._name=this._name||this._scriptPath&&pr.basename(this._scriptPath,pr.extname(this._scriptPath)),this._parseCommand([],o),this}parseAsync(r,n){return this.parse(r,n),Promise.all(this._actionResults).then(()=>this)}_executeSubCommand(r,n){n=n.slice();let o=!1,a=[".js",".ts",".tsx",".mjs"];this._checkForMissingMandatoryOptions();let u=this._scriptPath;!u&&process.mainModule&&(u=process.mainModule.filename);let d;try{let R=Go.realpathSync(u);d=pr.dirname(R)}catch{d="."}let m=pr.basename(u,pr.extname(u))+"-"+r._name;r._executableFile&&(m=r._executableFile);let _=pr.join(d,m);Go.existsSync(_)?m=_:a.forEach(R=>{Go.existsSync(`${_}${R}`)&&(m=`${_}${R}`)}),o=a.includes(pr.extname(m));let c;process.platform!=="win32"?o?(n.unshift(m),n=wc(process.execArgv).concat(n),c=Uo(process.argv[0],n,{stdio:"inherit"})):c=Uo(m,n,{stdio:"inherit"}):(n.unshift(m),n=wc(process.execArgv).concat(n),c=Uo(process.execPath,n,{stdio:"inherit"})),["SIGUSR1","SIGUSR2","SIGTERM","SIGINT","SIGHUP"].forEach(R=>{process.on(R,()=>{c.killed===!1&&c.exitCode===null&&c.kill(R)})});let S=this._exitCallback;S?c.on("close",()=>{S(new On(process.exitCode||0,"commander.executeSubCommandAsync","(close)"))}):c.on("close",process.exit.bind(process)),c.on("error",R=>{if(R.code==="ENOENT"){let P=`'${m}' does not exist
7
+ - if '${r._name}' is not meant to be an executable command, remove description parameter from '.command()' and use '.description()' instead
8
+ - if the default executable name is not suitable, use the executableFile option to supply a custom name`;throw new Error(P)}else if(R.code==="EACCES")throw new Error(`'${m}' not executable`);if(!S)process.exit(1);else{let P=new On(1,"commander.executeSubCommandAsync","(error)");P.nestedError=R,S(P)}}),this.runningCommand=c}_dispatchSubcommand(r,n,o){let a=this._findCommand(r);a||this._helpAndError(),a._executableHandler?this._executeSubCommand(a,n.concat(o)):a._parseCommand(n,o)}_parseCommand(r,n){let o=this.parseOptions(n);if(r=r.concat(o.operands),n=o.unknown,this.args=r.concat(n),r&&this._findCommand(r[0]))this._dispatchSubcommand(r[0],r.slice(1),n);else if(this._lazyHasImplicitHelpCommand()&&r[0]===this._helpCommandName)r.length===1?this.help():this._dispatchSubcommand(r[1],[],[this._helpLongFlag]);else if(this._defaultCommandName)_c(this,n),this._dispatchSubcommand(this._defaultCommandName,r,n);else if(this.commands.length&&this.args.length===0&&!this._actionHandler&&!this._defaultCommandName&&this._helpAndError(),_c(this,o.unknown),this._checkForMissingMandatoryOptions(),o.unknown.length>0&&this.unknownOption(o.unknown[0]),this._actionHandler){let a=this.args.slice();this._args.forEach((u,d)=>{u.required&&a[d]==null?this.missingArgument(u.name):u.variadic&&(a[d]=a.splice(d))}),this._actionHandler(a),this.emit("command:"+this.name(),r,n)}else r.length?this._findCommand("*")?this._dispatchSubcommand("*",r,n):this.listenerCount("command:*")?this.emit("command:*",r,n):this.commands.length&&this.unknownCommand():this.commands.length&&this._helpAndError()}_findCommand(r){if(!!r)return this.commands.find(n=>n._name===r||n._aliases.includes(r))}_findOption(r){return this.options.find(n=>n.is(r))}_checkForMissingMandatoryOptions(){for(let r=this;r;r=r.parent)r.options.forEach(n=>{n.mandatory&&r._getOptionValue(n.attributeName())===void 0&&r.missingMandatoryOptionValue(n)})}parseOptions(r){let n=[],o=[],a=n,u=r.slice();function d(_){return _.length>1&&_[0]==="-"}let m=null;for(;u.length;){let _=u.shift();if(_==="--"){a===o&&a.push(_),a.push(...u);break}if(m&&!d(_)){this.emit(`option:${m.name()}`,_);continue}if(m=null,d(_)){let c=this._findOption(_);if(c){if(c.required){let v=u.shift();v===void 0&&this.optionMissingArgument(c),this.emit(`option:${c.name()}`,v)}else if(c.optional){let v=null;u.length>0&&!d(u[0])&&(v=u.shift()),this.emit(`option:${c.name()}`,v)}else this.emit(`option:${c.name()}`);m=c.variadic?c:null;continue}}if(_.length>2&&_[0]==="-"&&_[1]!=="-"){let c=this._findOption(`-${_[1]}`);if(c){c.required||c.optional&&this._combineFlagAndOptionalValue?this.emit(`option:${c.name()}`,_.slice(2)):(this.emit(`option:${c.name()}`),u.unshift(`-${_.slice(2)}`));continue}}if(/^--[^=]+=/.test(_)){let c=_.indexOf("="),v=this._findOption(_.slice(0,c));if(v&&(v.required||v.optional)){this.emit(`option:${v.name()}`,_.slice(c+1));continue}}_.length>1&&_[0]==="-"&&(a=o),a.push(_)}return{operands:n,unknown:o}}opts(){if(this._storeOptionsAsProperties){let r={},n=this.options.length;for(let o=0;o<n;o++){let a=this.options[o].attributeName();r[a]=a===this._versionOptionName?this._version:this[a]}return r}return this._optionValues}missingArgument(r){let n=`error: missing required argument '${r}'`;console.error(n),this._exit(1,"commander.missingArgument",n)}optionMissingArgument(r,n){let o;n?o=`error: option '${r.flags}' argument missing, got '${n}'`:o=`error: option '${r.flags}' argument missing`,console.error(o),this._exit(1,"commander.optionMissingArgument",o)}missingMandatoryOptionValue(r){let n=`error: required option '${r.flags}' not specified`;console.error(n),this._exit(1,"commander.missingMandatoryOptionValue",n)}unknownOption(r){if(this._allowUnknownOption)return;let n=`error: unknown option '${r}'`;console.error(n),this._exit(1,"commander.unknownOption",n)}unknownCommand(){let r=[this.name()];for(let a=this.parent;a;a=a.parent)r.unshift(a.name());let n=r.join(" "),o=`error: unknown command '${this.args[0]}'.`+(this._hasHelpOption?` See '${n} ${this._helpLongFlag}'.`:"");console.error(o),this._exit(1,"commander.unknownCommand",o)}version(r,n,o){if(r===void 0)return this._version;this._version=r,n=n||"-V, --version",o=o||"output the version number";let a=new Bi(n,o);return this._versionOptionName=a.attributeName(),this.options.push(a),this.on("option:"+a.name(),()=>{process.stdout.write(r+`
9
+ `),this._exit(0,"commander.version",r)}),this}description(r,n){return r===void 0&&n===void 0?this._description:(this._description=r,this._argsDescription=n,this)}alias(r){if(r===void 0)return this._aliases[0];let n=this;if(this.commands.length!==0&&this.commands[this.commands.length-1]._executableHandler&&(n=this.commands[this.commands.length-1]),r===n._name)throw new Error("Command alias can't be the same as its name");return n._aliases.push(r),this}aliases(r){return r===void 0?this._aliases:(r.forEach(n=>this.alias(n)),this)}usage(r){if(r===void 0){if(this._usage)return this._usage;let n=this._args.map(o=>yc(o));return[].concat(this.options.length||this._hasHelpOption?"[options]":[],this.commands.length?"[command]":[],this._args.length?n:[]).join(" ")}return this._usage=r,this}name(r){return r===void 0?this._name:(this._name=r,this)}prepareCommands(){let r=this.commands.filter(n=>!n._hidden).map(n=>{let o=n._args.map(a=>yc(a)).join(" ");return[n._name+(n._aliases[0]?"|"+n._aliases[0]:"")+(n.options.length?" [options]":"")+(o?" "+o:""),n._description]});return this._lazyHasImplicitHelpCommand()&&r.push([this._helpCommandnameAndArgs,this._helpCommandDescription]),r}largestCommandLength(){return this.prepareCommands().reduce((n,o)=>Math.max(n,o[0].length),0)}largestOptionLength(){let r=[].slice.call(this.options);return r.push({flags:this._helpFlags}),r.reduce((n,o)=>Math.max(n,o.flags.length),0)}largestArgLength(){return this._args.reduce((r,n)=>Math.max(r,n.name.length),0)}padWidth(){let r=this.largestOptionLength();return this._argsDescription&&this._args.length&&this.largestArgLength()>r&&(r=this.largestArgLength()),this.commands&&this.commands.length&&this.largestCommandLength()>r&&(r=this.largestCommandLength()),r}optionHelp(){let r=this.padWidth(),o=(process.stdout.columns||80)-r-4;function a(_,c){return Wo(_,r)+" "+vc(c,o,r+2)}let u=this.options.map(_=>{let c=_.description+(!_.negate&&_.defaultValue!==void 0?" (default: "+JSON.stringify(_.defaultValue)+")":"");return a(_.flags,c)}),d=this._hasHelpOption&&this._helpShortFlag&&!this._findOption(this._helpShortFlag),m=this._hasHelpOption&&!this._findOption(this._helpLongFlag);if(d||m){let _=this._helpFlags;d?m||(_=this._helpShortFlag):_=this._helpLongFlag,u.push(a(_,this._helpDescription))}return u.join(`
10
+ `)}commandHelp(){if(!this.commands.length&&!this._lazyHasImplicitHelpCommand())return"";let r=this.prepareCommands(),n=this.padWidth(),a=(process.stdout.columns||80)-n-4;return["Commands:",r.map(u=>{let d=u[1]?" "+u[1]:"";return(d?Wo(u[0],n):u[0])+vc(d,a,n+2)}).join(`
11
11
  `).replace(/^/gm," "),""].join(`
12
- `)}helpInformation(){let n=[];if(this._description){n=[this._description,""];let g=this._argsDescription;if(g&&this._args.length){let l=this.padWidth(),S=(process.stdout.columns||80)-l-5;n.push("Arguments:"),this._args.forEach(I=>{n.push(" "+Tu(I.name,l)+" "+qf(g[I.name]||"",S,l+4))}),n.push("")}}let i=this._name;this._aliases[0]&&(i=i+"|"+this._aliases[0]);let o="";for(let g=this.parent;g;g=g.parent)o=g.name()+" "+o;let a=["Usage: "+o+i+" "+this.usage(),""],u=[],h=this.commandHelp();h&&(u=[h]);let m=[];return(this._hasHelpOption||this.options.length>0)&&(m=["Options:",""+this.optionHelp().replace(/^/gm," "),""]),a.concat(n).concat(m).concat(u).join(`
13
- `)}outputHelp(n){n||(n=o=>o);let i=n(this.helpInformation());if(typeof i!="string"&&!Buffer.isBuffer(i))throw new Error("outputHelp callback must return a string or a Buffer");process.stdout.write(i),this.emit(this._helpLongFlag)}helpOption(n,i){if(typeof n=="boolean")return this._hasHelpOption=n,this;this._helpFlags=n||this._helpFlags,this._helpDescription=i||this._helpDescription;let o=jf(this._helpFlags);return this._helpShortFlag=o.shortFlag,this._helpLongFlag=o.longFlag,this}help(n){this.outputHelp(n),this._exit(process.exitCode||0,"commander.help","(outputHelp)")}_helpAndError(){this.outputHelp(),this._exit(1,"commander.help","(outputHelp)")}};Er=Gf.exports=new Hn;Er.program=Er;Er.Command=Hn;Er.Option=hs;Er.CommanderError=Gn;function xS(t){return t.split("-").reduce((n,i)=>n+i[0].toUpperCase()+i.slice(1))}function Tu(t,n){let i=Math.max(0,n-t.length);return t+Array(i+1).join(" ")}function qf(t,n,i){let o=new RegExp(".{1,"+(n-1)+"}([\\s\u200B]|$)|[^\\s\u200B]+?([\\s\u200B]|$)","g");return(t.match(o)||[]).map((u,h)=>(u.slice(-1)===`
14
- `&&(u=u.slice(0,u.length-1)),(h>0&&i?Array(i+1).join(" "):"")+u.trimRight())).join(`
15
- `)}function Df(t,n,i){return t.match(/[\n]\s+/)||n<40?t:qf(t,n,i)}function $f(t,n){t._hasHelpOption&&n.find(o=>o===t._helpLongFlag||o===t._helpShortFlag)&&(t.outputHelp(),t._exit(0,"commander.helpDisplayed","(outputHelp)"))}function Ff(t){let n=t.name+(t.variadic===!0?"...":"");return t.required?"<"+n+">":"["+n+"]"}function jf(t){let n,i,o=t.split(/[ |,]+/);return o.length>1&&!/^[[<]/.test(o[1])&&(n=o.shift()),i=o.shift(),!n&&/^-[^-]$/.test(i)&&(n=i,i=void 0),{shortFlag:n,longFlag:i}}function Mf(t){return t.map(n=>{if(!n.startsWith("--inspect"))return n;let i,o="127.0.0.1",a="9229",u;return(u=n.match(/^(--inspect(-brk)?)$/))!==null?i=u[1]:(u=n.match(/^(--inspect(-brk|-port)?)=([^:]+)$/))!==null?(i=u[1],/^\d+$/.test(u[3])?a=u[3]:o=u[3]):(u=n.match(/^(--inspect(-brk|-port)?)=([^:]+):(\d+)$/))!==null&&(i=u[1],o=u[3],a=u[4]),i&&a!=="0"?`${i}=${o}:${parseInt(a)+1}`:n})}});var Bn=x((yP,Hf)=>{var CS="2.0.0",AS=256,OS=Number.MAX_SAFE_INTEGER||9007199254740991,IS=16;Hf.exports={SEMVER_SPEC_VERSION:CS,MAX_LENGTH:AS,MAX_SAFE_INTEGER:OS,MAX_SAFE_COMPONENT_LENGTH:IS}});var Un=x((EP,Bf)=>{var RS=typeof process=="object"&&process.env&&process.env.NODE_DEBUG&&/\bsemver\b/i.test(process.env.NODE_DEBUG)?(...t)=>console.error("SEMVER",...t):()=>{};Bf.exports=RS});var wr=x((nr,Uf)=>{var{MAX_SAFE_COMPONENT_LENGTH:Nu}=Bn(),PS=Un();nr=Uf.exports={};var TS=nr.re=[],N=nr.src=[],q=nr.t={},LS=0,k=(t,n,i)=>{let o=LS++;PS(o,n),q[t]=o,N[o]=n,TS[o]=new RegExp(n,i?"g":void 0)};k("NUMERICIDENTIFIER","0|[1-9]\\d*");k("NUMERICIDENTIFIERLOOSE","[0-9]+");k("NONNUMERICIDENTIFIER","\\d*[a-zA-Z-][a-zA-Z0-9-]*");k("MAINVERSION",`(${N[q.NUMERICIDENTIFIER]})\\.(${N[q.NUMERICIDENTIFIER]})\\.(${N[q.NUMERICIDENTIFIER]})`);k("MAINVERSIONLOOSE",`(${N[q.NUMERICIDENTIFIERLOOSE]})\\.(${N[q.NUMERICIDENTIFIERLOOSE]})\\.(${N[q.NUMERICIDENTIFIERLOOSE]})`);k("PRERELEASEIDENTIFIER",`(?:${N[q.NUMERICIDENTIFIER]}|${N[q.NONNUMERICIDENTIFIER]})`);k("PRERELEASEIDENTIFIERLOOSE",`(?:${N[q.NUMERICIDENTIFIERLOOSE]}|${N[q.NONNUMERICIDENTIFIER]})`);k("PRERELEASE",`(?:-(${N[q.PRERELEASEIDENTIFIER]}(?:\\.${N[q.PRERELEASEIDENTIFIER]})*))`);k("PRERELEASELOOSE",`(?:-?(${N[q.PRERELEASEIDENTIFIERLOOSE]}(?:\\.${N[q.PRERELEASEIDENTIFIERLOOSE]})*))`);k("BUILDIDENTIFIER","[0-9A-Za-z-]+");k("BUILD",`(?:\\+(${N[q.BUILDIDENTIFIER]}(?:\\.${N[q.BUILDIDENTIFIER]})*))`);k("FULLPLAIN",`v?${N[q.MAINVERSION]}${N[q.PRERELEASE]}?${N[q.BUILD]}?`);k("FULL",`^${N[q.FULLPLAIN]}$`);k("LOOSEPLAIN",`[v=\\s]*${N[q.MAINVERSIONLOOSE]}${N[q.PRERELEASELOOSE]}?${N[q.BUILD]}?`);k("LOOSE",`^${N[q.LOOSEPLAIN]}$`);k("GTLT","((?:<|>)?=?)");k("XRANGEIDENTIFIERLOOSE",`${N[q.NUMERICIDENTIFIERLOOSE]}|x|X|\\*`);k("XRANGEIDENTIFIER",`${N[q.NUMERICIDENTIFIER]}|x|X|\\*`);k("XRANGEPLAIN",`[v=\\s]*(${N[q.XRANGEIDENTIFIER]})(?:\\.(${N[q.XRANGEIDENTIFIER]})(?:\\.(${N[q.XRANGEIDENTIFIER]})(?:${N[q.PRERELEASE]})?${N[q.BUILD]}?)?)?`);k("XRANGEPLAINLOOSE",`[v=\\s]*(${N[q.XRANGEIDENTIFIERLOOSE]})(?:\\.(${N[q.XRANGEIDENTIFIERLOOSE]})(?:\\.(${N[q.XRANGEIDENTIFIERLOOSE]})(?:${N[q.PRERELEASELOOSE]})?${N[q.BUILD]}?)?)?`);k("XRANGE",`^${N[q.GTLT]}\\s*${N[q.XRANGEPLAIN]}$`);k("XRANGELOOSE",`^${N[q.GTLT]}\\s*${N[q.XRANGEPLAINLOOSE]}$`);k("COERCE",`(^|[^\\d])(\\d{1,${Nu}})(?:\\.(\\d{1,${Nu}}))?(?:\\.(\\d{1,${Nu}}))?(?:$|[^\\d])`);k("COERCERTL",N[q.COERCE],!0);k("LONETILDE","(?:~>?)");k("TILDETRIM",`(\\s*)${N[q.LONETILDE]}\\s+`,!0);nr.tildeTrimReplace="$1~";k("TILDE",`^${N[q.LONETILDE]}${N[q.XRANGEPLAIN]}$`);k("TILDELOOSE",`^${N[q.LONETILDE]}${N[q.XRANGEPLAINLOOSE]}$`);k("LONECARET","(?:\\^)");k("CARETTRIM",`(\\s*)${N[q.LONECARET]}\\s+`,!0);nr.caretTrimReplace="$1^";k("CARET",`^${N[q.LONECARET]}${N[q.XRANGEPLAIN]}$`);k("CARETLOOSE",`^${N[q.LONECARET]}${N[q.XRANGEPLAINLOOSE]}$`);k("COMPARATORLOOSE",`^${N[q.GTLT]}\\s*(${N[q.LOOSEPLAIN]})$|^$`);k("COMPARATOR",`^${N[q.GTLT]}\\s*(${N[q.FULLPLAIN]})$|^$`);k("COMPARATORTRIM",`(\\s*)${N[q.GTLT]}\\s*(${N[q.LOOSEPLAIN]}|${N[q.XRANGEPLAIN]})`,!0);nr.comparatorTrimReplace="$1$2$3";k("HYPHENRANGE",`^\\s*(${N[q.XRANGEPLAIN]})\\s+-\\s+(${N[q.XRANGEPLAIN]})\\s*$`);k("HYPHENRANGELOOSE",`^\\s*(${N[q.XRANGEPLAINLOOSE]})\\s+-\\s+(${N[q.XRANGEPLAINLOOSE]})\\s*$`);k("STAR","(<|>)?=?\\s*\\*");k("GTE0","^\\s*>=\\s*0.0.0\\s*$");k("GTE0PRE","^\\s*>=\\s*0.0.0-0\\s*$")});var Wn=x((wP,Wf)=>{var NS=["includePrerelease","loose","rtl"],qS=t=>t?typeof t!="object"?{loose:!0}:NS.filter(n=>t[n]).reduce((n,i)=>(n[i]=!0,n),{}):{};Wf.exports=qS});var ps=x((bP,zf)=>{var kf=/^[0-9]+$/,Vf=(t,n)=>{let i=kf.test(t),o=kf.test(n);return i&&o&&(t=+t,n=+n),t===n?0:i&&!o?-1:o&&!i?1:t<n?-1:1},DS=(t,n)=>Vf(n,t);zf.exports={compareIdentifiers:Vf,rcompareIdentifiers:DS}});var Le=x((SP,Zf)=>{var ds=Un(),{MAX_LENGTH:Kf,MAX_SAFE_INTEGER:ms}=Bn(),{re:Xf,t:Yf}=wr(),$S=Wn(),{compareIdentifiers:kn}=ps(),at=class{constructor(n,i){if(i=$S(i),n instanceof at){if(n.loose===!!i.loose&&n.includePrerelease===!!i.includePrerelease)return n;n=n.version}else if(typeof n!="string")throw new TypeError(`Invalid Version: ${n}`);if(n.length>Kf)throw new TypeError(`version is longer than ${Kf} characters`);ds("SemVer",n,i),this.options=i,this.loose=!!i.loose,this.includePrerelease=!!i.includePrerelease;let o=n.trim().match(i.loose?Xf[Yf.LOOSE]:Xf[Yf.FULL]);if(!o)throw new TypeError(`Invalid Version: ${n}`);if(this.raw=n,this.major=+o[1],this.minor=+o[2],this.patch=+o[3],this.major>ms||this.major<0)throw new TypeError("Invalid major version");if(this.minor>ms||this.minor<0)throw new TypeError("Invalid minor version");if(this.patch>ms||this.patch<0)throw new TypeError("Invalid patch version");o[4]?this.prerelease=o[4].split(".").map(a=>{if(/^[0-9]+$/.test(a)){let u=+a;if(u>=0&&u<ms)return u}return a}):this.prerelease=[],this.build=o[5]?o[5].split("."):[],this.format()}format(){return this.version=`${this.major}.${this.minor}.${this.patch}`,this.prerelease.length&&(this.version+=`-${this.prerelease.join(".")}`),this.version}toString(){return this.version}compare(n){if(ds("SemVer.compare",this.version,this.options,n),!(n instanceof at)){if(typeof n=="string"&&n===this.version)return 0;n=new at(n,this.options)}return n.version===this.version?0:this.compareMain(n)||this.comparePre(n)}compareMain(n){return n instanceof at||(n=new at(n,this.options)),kn(this.major,n.major)||kn(this.minor,n.minor)||kn(this.patch,n.patch)}comparePre(n){if(n instanceof at||(n=new at(n,this.options)),this.prerelease.length&&!n.prerelease.length)return-1;if(!this.prerelease.length&&n.prerelease.length)return 1;if(!this.prerelease.length&&!n.prerelease.length)return 0;let i=0;do{let o=this.prerelease[i],a=n.prerelease[i];if(ds("prerelease compare",i,o,a),o===void 0&&a===void 0)return 0;if(a===void 0)return 1;if(o===void 0)return-1;if(o===a)continue;return kn(o,a)}while(++i)}compareBuild(n){n instanceof at||(n=new at(n,this.options));let i=0;do{let o=this.build[i],a=n.build[i];if(ds("prerelease compare",i,o,a),o===void 0&&a===void 0)return 0;if(a===void 0)return 1;if(o===void 0)return-1;if(o===a)continue;return kn(o,a)}while(++i)}inc(n,i){switch(n){case"premajor":this.prerelease.length=0,this.patch=0,this.minor=0,this.major++,this.inc("pre",i);break;case"preminor":this.prerelease.length=0,this.patch=0,this.minor++,this.inc("pre",i);break;case"prepatch":this.prerelease.length=0,this.inc("patch",i),this.inc("pre",i);break;case"prerelease":this.prerelease.length===0&&this.inc("patch",i),this.inc("pre",i);break;case"major":(this.minor!==0||this.patch!==0||this.prerelease.length===0)&&this.major++,this.minor=0,this.patch=0,this.prerelease=[];break;case"minor":(this.patch!==0||this.prerelease.length===0)&&this.minor++,this.patch=0,this.prerelease=[];break;case"patch":this.prerelease.length===0&&this.patch++,this.prerelease=[];break;case"pre":if(this.prerelease.length===0)this.prerelease=[0];else{let o=this.prerelease.length;for(;--o>=0;)typeof this.prerelease[o]=="number"&&(this.prerelease[o]++,o=-2);o===-1&&this.prerelease.push(0)}i&&(this.prerelease[0]===i?isNaN(this.prerelease[1])&&(this.prerelease=[i,0]):this.prerelease=[i,0]);break;default:throw new Error(`invalid increment argument: ${n}`)}return this.format(),this.raw=this.version,this}};Zf.exports=at});var br=x((xP,th)=>{var{MAX_LENGTH:FS}=Bn(),{re:Jf,t:Qf}=wr(),eh=Le(),jS=Wn(),MS=(t,n)=>{if(n=jS(n),t instanceof eh)return t;if(typeof t!="string"||t.length>FS||!(n.loose?Jf[Qf.LOOSE]:Jf[Qf.FULL]).test(t))return null;try{return new eh(t,n)}catch{return null}};th.exports=MS});var nh=x((CP,rh)=>{var GS=br(),HS=(t,n)=>{let i=GS(t,n);return i?i.version:null};rh.exports=HS});var sh=x((AP,ih)=>{var BS=br(),US=(t,n)=>{let i=BS(t.trim().replace(/^[=v]+/,""),n);return i?i.version:null};ih.exports=US});var uh=x((OP,oh)=>{var WS=Le(),kS=(t,n,i,o)=>{typeof i=="string"&&(o=i,i=void 0);try{return new WS(t,i).inc(n,o).version}catch{return null}};oh.exports=kS});var ct=x((IP,ch)=>{var ah=Le(),VS=(t,n,i)=>new ah(t,i).compare(new ah(n,i));ch.exports=VS});var gs=x((RP,lh)=>{var zS=ct(),KS=(t,n,i)=>zS(t,n,i)===0;lh.exports=KS});var ph=x((PP,hh)=>{var fh=br(),XS=gs(),YS=(t,n)=>{if(XS(t,n))return null;{let i=fh(t),o=fh(n),a=i.prerelease.length||o.prerelease.length,u=a?"pre":"",h=a?"prerelease":"";for(let m in i)if((m==="major"||m==="minor"||m==="patch")&&i[m]!==o[m])return u+m;return h}};hh.exports=YS});var mh=x((TP,dh)=>{var ZS=Le(),JS=(t,n)=>new ZS(t,n).major;dh.exports=JS});var vh=x((LP,gh)=>{var QS=Le(),ex=(t,n)=>new QS(t,n).minor;gh.exports=ex});var yh=x((NP,_h)=>{var tx=Le(),rx=(t,n)=>new tx(t,n).patch;_h.exports=rx});var wh=x((qP,Eh)=>{var nx=br(),ix=(t,n)=>{let i=nx(t,n);return i&&i.prerelease.length?i.prerelease:null};Eh.exports=ix});var Sh=x((DP,bh)=>{var sx=ct(),ox=(t,n,i)=>sx(n,t,i);bh.exports=ox});var Ch=x(($P,xh)=>{var ux=ct(),ax=(t,n)=>ux(t,n,!0);xh.exports=ax});var vs=x((FP,Oh)=>{var Ah=Le(),cx=(t,n,i)=>{let o=new Ah(t,i),a=new Ah(n,i);return o.compare(a)||o.compareBuild(a)};Oh.exports=cx});var Rh=x((jP,Ih)=>{var lx=vs(),fx=(t,n)=>t.sort((i,o)=>lx(i,o,n));Ih.exports=fx});var Th=x((MP,Ph)=>{var hx=vs(),px=(t,n)=>t.sort((i,o)=>hx(o,i,n));Ph.exports=px});var Vn=x((GP,Lh)=>{var dx=ct(),mx=(t,n,i)=>dx(t,n,i)>0;Lh.exports=mx});var _s=x((HP,Nh)=>{var gx=ct(),vx=(t,n,i)=>gx(t,n,i)<0;Nh.exports=vx});var qu=x((BP,qh)=>{var _x=ct(),yx=(t,n,i)=>_x(t,n,i)!==0;qh.exports=yx});var ys=x((UP,Dh)=>{var Ex=ct(),wx=(t,n,i)=>Ex(t,n,i)>=0;Dh.exports=wx});var Es=x((WP,$h)=>{var bx=ct(),Sx=(t,n,i)=>bx(t,n,i)<=0;$h.exports=Sx});var Du=x((kP,Fh)=>{var xx=gs(),Cx=qu(),Ax=Vn(),Ox=ys(),Ix=_s(),Rx=Es(),Px=(t,n,i,o)=>{switch(n){case"===":return typeof t=="object"&&(t=t.version),typeof i=="object"&&(i=i.version),t===i;case"!==":return typeof t=="object"&&(t=t.version),typeof i=="object"&&(i=i.version),t!==i;case"":case"=":case"==":return xx(t,i,o);case"!=":return Cx(t,i,o);case">":return Ax(t,i,o);case">=":return Ox(t,i,o);case"<":return Ix(t,i,o);case"<=":return Rx(t,i,o);default:throw new TypeError(`Invalid operator: ${n}`)}};Fh.exports=Px});var Mh=x((VP,jh)=>{var Tx=Le(),Lx=br(),{re:ws,t:bs}=wr(),Nx=(t,n)=>{if(t instanceof Tx)return t;if(typeof t=="number"&&(t=String(t)),typeof t!="string")return null;n=n||{};let i=null;if(!n.rtl)i=t.match(ws[bs.COERCE]);else{let o;for(;(o=ws[bs.COERCERTL].exec(t))&&(!i||i.index+i[0].length!==t.length);)(!i||o.index+o[0].length!==i.index+i[0].length)&&(i=o),ws[bs.COERCERTL].lastIndex=o.index+o[1].length+o[2].length;ws[bs.COERCERTL].lastIndex=-1}return i===null?null:Lx(`${i[2]}.${i[3]||"0"}.${i[4]||"0"}`,n)};jh.exports=Nx});var Hh=x((zP,Gh)=>{"use strict";Gh.exports=function(t){t.prototype[Symbol.iterator]=function*(){for(let n=this.head;n;n=n.next)yield n.value}}});var Uh=x((KP,Bh)=>{"use strict";Bh.exports=ee;ee.Node=Sr;ee.create=ee;function ee(t){var n=this;if(n instanceof ee||(n=new ee),n.tail=null,n.head=null,n.length=0,t&&typeof t.forEach=="function")t.forEach(function(a){n.push(a)});else if(arguments.length>0)for(var i=0,o=arguments.length;i<o;i++)n.push(arguments[i]);return n}ee.prototype.removeNode=function(t){if(t.list!==this)throw new Error("removing node which does not belong to this list");var n=t.next,i=t.prev;return n&&(n.prev=i),i&&(i.next=n),t===this.head&&(this.head=n),t===this.tail&&(this.tail=i),t.list.length--,t.next=null,t.prev=null,t.list=null,n};ee.prototype.unshiftNode=function(t){if(t!==this.head){t.list&&t.list.removeNode(t);var n=this.head;t.list=this,t.next=n,n&&(n.prev=t),this.head=t,this.tail||(this.tail=t),this.length++}};ee.prototype.pushNode=function(t){if(t!==this.tail){t.list&&t.list.removeNode(t);var n=this.tail;t.list=this,t.prev=n,n&&(n.next=t),this.tail=t,this.head||(this.head=t),this.length++}};ee.prototype.push=function(){for(var t=0,n=arguments.length;t<n;t++)Dx(this,arguments[t]);return this.length};ee.prototype.unshift=function(){for(var t=0,n=arguments.length;t<n;t++)$x(this,arguments[t]);return this.length};ee.prototype.pop=function(){if(!!this.tail){var t=this.tail.value;return this.tail=this.tail.prev,this.tail?this.tail.next=null:this.head=null,this.length--,t}};ee.prototype.shift=function(){if(!!this.head){var t=this.head.value;return this.head=this.head.next,this.head?this.head.prev=null:this.tail=null,this.length--,t}};ee.prototype.forEach=function(t,n){n=n||this;for(var i=this.head,o=0;i!==null;o++)t.call(n,i.value,o,this),i=i.next};ee.prototype.forEachReverse=function(t,n){n=n||this;for(var i=this.tail,o=this.length-1;i!==null;o--)t.call(n,i.value,o,this),i=i.prev};ee.prototype.get=function(t){for(var n=0,i=this.head;i!==null&&n<t;n++)i=i.next;if(n===t&&i!==null)return i.value};ee.prototype.getReverse=function(t){for(var n=0,i=this.tail;i!==null&&n<t;n++)i=i.prev;if(n===t&&i!==null)return i.value};ee.prototype.map=function(t,n){n=n||this;for(var i=new ee,o=this.head;o!==null;)i.push(t.call(n,o.value,this)),o=o.next;return i};ee.prototype.mapReverse=function(t,n){n=n||this;for(var i=new ee,o=this.tail;o!==null;)i.push(t.call(n,o.value,this)),o=o.prev;return i};ee.prototype.reduce=function(t,n){var i,o=this.head;if(arguments.length>1)i=n;else if(this.head)o=this.head.next,i=this.head.value;else throw new TypeError("Reduce of empty list with no initial value");for(var a=0;o!==null;a++)i=t(i,o.value,a),o=o.next;return i};ee.prototype.reduceReverse=function(t,n){var i,o=this.tail;if(arguments.length>1)i=n;else if(this.tail)o=this.tail.prev,i=this.tail.value;else throw new TypeError("Reduce of empty list with no initial value");for(var a=this.length-1;o!==null;a--)i=t(i,o.value,a),o=o.prev;return i};ee.prototype.toArray=function(){for(var t=new Array(this.length),n=0,i=this.head;i!==null;n++)t[n]=i.value,i=i.next;return t};ee.prototype.toArrayReverse=function(){for(var t=new Array(this.length),n=0,i=this.tail;i!==null;n++)t[n]=i.value,i=i.prev;return t};ee.prototype.slice=function(t,n){n=n||this.length,n<0&&(n+=this.length),t=t||0,t<0&&(t+=this.length);var i=new ee;if(n<t||n<0)return i;t<0&&(t=0),n>this.length&&(n=this.length);for(var o=0,a=this.head;a!==null&&o<t;o++)a=a.next;for(;a!==null&&o<n;o++,a=a.next)i.push(a.value);return i};ee.prototype.sliceReverse=function(t,n){n=n||this.length,n<0&&(n+=this.length),t=t||0,t<0&&(t+=this.length);var i=new ee;if(n<t||n<0)return i;t<0&&(t=0),n>this.length&&(n=this.length);for(var o=this.length,a=this.tail;a!==null&&o>n;o--)a=a.prev;for(;a!==null&&o>t;o--,a=a.prev)i.push(a.value);return i};ee.prototype.splice=function(t,n,...i){t>this.length&&(t=this.length-1),t<0&&(t=this.length+t);for(var o=0,a=this.head;a!==null&&o<t;o++)a=a.next;for(var u=[],o=0;a&&o<n;o++)u.push(a.value),a=this.removeNode(a);a===null&&(a=this.tail),a!==this.head&&a!==this.tail&&(a=a.prev);for(var o=0;o<i.length;o++)a=qx(this,a,i[o]);return u};ee.prototype.reverse=function(){for(var t=this.head,n=this.tail,i=t;i!==null;i=i.prev){var o=i.prev;i.prev=i.next,i.next=o}return this.head=n,this.tail=t,this};function qx(t,n,i){var o=n===t.head?new Sr(i,null,n,t):new Sr(i,n,n.next,t);return o.next===null&&(t.tail=o),o.prev===null&&(t.head=o),t.length++,o}function Dx(t,n){t.tail=new Sr(n,t.tail,null,t),t.head||(t.head=t.tail),t.length++}function $x(t,n){t.head=new Sr(n,null,t.head,t),t.tail||(t.tail=t.head),t.length++}function Sr(t,n,i,o){if(!(this instanceof Sr))return new Sr(t,n,i,o);this.list=o,this.value=t,n?(n.next=this,this.prev=n):this.prev=null,i?(i.prev=this,this.next=i):this.next=null}try{Hh()(ee)}catch{}});var Yh=x((XP,Xh)=>{"use strict";var Fx=Uh(),xr=Symbol("max"),Bt=Symbol("length"),Kr=Symbol("lengthCalculator"),zn=Symbol("allowStale"),Cr=Symbol("maxAge"),Ut=Symbol("dispose"),Wh=Symbol("noDisposeOnSet"),Se=Symbol("lruList"),vt=Symbol("cache"),kh=Symbol("updateAgeOnGet"),$u=()=>1,Vh=class{constructor(n){if(typeof n=="number"&&(n={max:n}),n||(n={}),n.max&&(typeof n.max!="number"||n.max<0))throw new TypeError("max must be a non-negative number");let i=this[xr]=n.max||1/0,o=n.length||$u;if(this[Kr]=typeof o!="function"?$u:o,this[zn]=n.stale||!1,n.maxAge&&typeof n.maxAge!="number")throw new TypeError("maxAge must be a number");this[Cr]=n.maxAge||0,this[Ut]=n.dispose,this[Wh]=n.noDisposeOnSet||!1,this[kh]=n.updateAgeOnGet||!1,this.reset()}set max(n){if(typeof n!="number"||n<0)throw new TypeError("max must be a non-negative number");this[xr]=n||1/0,Kn(this)}get max(){return this[xr]}set allowStale(n){this[zn]=!!n}get allowStale(){return this[zn]}set maxAge(n){if(typeof n!="number")throw new TypeError("maxAge must be a non-negative number");this[Cr]=n,Kn(this)}get maxAge(){return this[Cr]}set lengthCalculator(n){typeof n!="function"&&(n=$u),n!==this[Kr]&&(this[Kr]=n,this[Bt]=0,this[Se].forEach(i=>{i.length=this[Kr](i.value,i.key),this[Bt]+=i.length})),Kn(this)}get lengthCalculator(){return this[Kr]}get length(){return this[Bt]}get itemCount(){return this[Se].length}rforEach(n,i){i=i||this;for(let o=this[Se].tail;o!==null;){let a=o.prev;Kh(this,n,o,i),o=a}}forEach(n,i){i=i||this;for(let o=this[Se].head;o!==null;){let a=o.next;Kh(this,n,o,i),o=a}}keys(){return this[Se].toArray().map(n=>n.key)}values(){return this[Se].toArray().map(n=>n.value)}reset(){this[Ut]&&this[Se]&&this[Se].length&&this[Se].forEach(n=>this[Ut](n.key,n.value)),this[vt]=new Map,this[Se]=new Fx,this[Bt]=0}dump(){return this[Se].map(n=>Ss(this,n)?!1:{k:n.key,v:n.value,e:n.now+(n.maxAge||0)}).toArray().filter(n=>n)}dumpLru(){return this[Se]}set(n,i,o){if(o=o||this[Cr],o&&typeof o!="number")throw new TypeError("maxAge must be a number");let a=o?Date.now():0,u=this[Kr](i,n);if(this[vt].has(n)){if(u>this[xr])return Xr(this,this[vt].get(n)),!1;let g=this[vt].get(n).value;return this[Ut]&&(this[Wh]||this[Ut](n,g.value)),g.now=a,g.maxAge=o,g.value=i,this[Bt]+=u-g.length,g.length=u,this.get(n),Kn(this),!0}let h=new zh(n,i,u,a,o);return h.length>this[xr]?(this[Ut]&&this[Ut](n,i),!1):(this[Bt]+=h.length,this[Se].unshift(h),this[vt].set(n,this[Se].head),Kn(this),!0)}has(n){if(!this[vt].has(n))return!1;let i=this[vt].get(n).value;return!Ss(this,i)}get(n){return Fu(this,n,!0)}peek(n){return Fu(this,n,!1)}pop(){let n=this[Se].tail;return n?(Xr(this,n),n.value):null}del(n){Xr(this,this[vt].get(n))}load(n){this.reset();let i=Date.now();for(let o=n.length-1;o>=0;o--){let a=n[o],u=a.e||0;if(u===0)this.set(a.k,a.v);else{let h=u-i;h>0&&this.set(a.k,a.v,h)}}}prune(){this[vt].forEach((n,i)=>Fu(this,i,!1))}},Fu=(t,n,i)=>{let o=t[vt].get(n);if(o){let a=o.value;if(Ss(t,a)){if(Xr(t,o),!t[zn])return}else i&&(t[kh]&&(o.value.now=Date.now()),t[Se].unshiftNode(o));return a.value}},Ss=(t,n)=>{if(!n||!n.maxAge&&!t[Cr])return!1;let i=Date.now()-n.now;return n.maxAge?i>n.maxAge:t[Cr]&&i>t[Cr]},Kn=t=>{if(t[Bt]>t[xr])for(let n=t[Se].tail;t[Bt]>t[xr]&&n!==null;){let i=n.prev;Xr(t,n),n=i}},Xr=(t,n)=>{if(n){let i=n.value;t[Ut]&&t[Ut](i.key,i.value),t[Bt]-=i.length,t[vt].delete(i.key),t[Se].removeNode(n)}},zh=class{constructor(n,i,o,a,u){this.key=n,this.value=i,this.length=o,this.now=a,this.maxAge=u||0}},Kh=(t,n,i,o)=>{let a=i.value;Ss(t,a)&&(Xr(t,i),t[zn]||(a=void 0)),a&&n.call(o,a.value,a.key,t)};Xh.exports=Vh});var lt=x((YP,ep)=>{var Yr=class{constructor(n,i){if(i=Mx(i),n instanceof Yr)return n.loose===!!i.loose&&n.includePrerelease===!!i.includePrerelease?n:new Yr(n.raw,i);if(n instanceof ju)return this.raw=n.value,this.set=[[n]],this.format(),this;if(this.options=i,this.loose=!!i.loose,this.includePrerelease=!!i.includePrerelease,this.raw=n,this.set=n.split(/\s*\|\|\s*/).map(o=>this.parseRange(o.trim())).filter(o=>o.length),!this.set.length)throw new TypeError(`Invalid SemVer Range: ${n}`);if(this.set.length>1){let o=this.set[0];if(this.set=this.set.filter(a=>!Jh(a[0])),this.set.length===0)this.set=[o];else if(this.set.length>1){for(let a of this.set)if(a.length===1&&Wx(a[0])){this.set=[a];break}}}this.format()}format(){return this.range=this.set.map(n=>n.join(" ").trim()).join("||").trim(),this.range}toString(){return this.range}parseRange(n){n=n.trim();let o=`parseRange:${Object.keys(this.options).join(",")}:${n}`,a=Zh.get(o);if(a)return a;let u=this.options.loose,h=u?Ne[Ae.HYPHENRANGELOOSE]:Ne[Ae.HYPHENRANGE];n=n.replace(h,eC(this.options.includePrerelease)),me("hyphen replace",n),n=n.replace(Ne[Ae.COMPARATORTRIM],Hx),me("comparator trim",n,Ne[Ae.COMPARATORTRIM]),n=n.replace(Ne[Ae.TILDETRIM],Bx),n=n.replace(Ne[Ae.CARETTRIM],Ux),n=n.split(/\s+/).join(" ");let m=u?Ne[Ae.COMPARATORLOOSE]:Ne[Ae.COMPARATOR],g=n.split(" ").map(I=>kx(I,this.options)).join(" ").split(/\s+/).map(I=>Qx(I,this.options)).filter(this.options.loose?I=>!!I.match(m):()=>!0).map(I=>new ju(I,this.options)),l=g.length,_=new Map;for(let I of g){if(Jh(I))return[I];_.set(I.value,I)}_.size>1&&_.has("")&&_.delete("");let S=[..._.values()];return Zh.set(o,S),S}intersects(n,i){if(!(n instanceof Yr))throw new TypeError("a Range is required");return this.set.some(o=>Qh(o,i)&&n.set.some(a=>Qh(a,i)&&o.every(u=>a.every(h=>u.intersects(h,i)))))}test(n){if(!n)return!1;if(typeof n=="string")try{n=new Gx(n,this.options)}catch{return!1}for(let i=0;i<this.set.length;i++)if(tC(this.set[i],n,this.options))return!0;return!1}};ep.exports=Yr;var jx=Yh(),Zh=new jx({max:1e3}),Mx=Wn(),ju=Xn(),me=Un(),Gx=Le(),{re:Ne,t:Ae,comparatorTrimReplace:Hx,tildeTrimReplace:Bx,caretTrimReplace:Ux}=wr(),Jh=t=>t.value==="<0.0.0-0",Wx=t=>t.value==="",Qh=(t,n)=>{let i=!0,o=t.slice(),a=o.pop();for(;i&&o.length;)i=o.every(u=>a.intersects(u,n)),a=o.pop();return i},kx=(t,n)=>(me("comp",t,n),t=Kx(t,n),me("caret",t),t=Vx(t,n),me("tildes",t),t=Yx(t,n),me("xrange",t),t=Jx(t,n),me("stars",t),t),je=t=>!t||t.toLowerCase()==="x"||t==="*",Vx=(t,n)=>t.trim().split(/\s+/).map(i=>zx(i,n)).join(" "),zx=(t,n)=>{let i=n.loose?Ne[Ae.TILDELOOSE]:Ne[Ae.TILDE];return t.replace(i,(o,a,u,h,m)=>{me("tilde",t,o,a,u,h,m);let g;return je(a)?g="":je(u)?g=`>=${a}.0.0 <${+a+1}.0.0-0`:je(h)?g=`>=${a}.${u}.0 <${a}.${+u+1}.0-0`:m?(me("replaceTilde pr",m),g=`>=${a}.${u}.${h}-${m} <${a}.${+u+1}.0-0`):g=`>=${a}.${u}.${h} <${a}.${+u+1}.0-0`,me("tilde return",g),g})},Kx=(t,n)=>t.trim().split(/\s+/).map(i=>Xx(i,n)).join(" "),Xx=(t,n)=>{me("caret",t,n);let i=n.loose?Ne[Ae.CARETLOOSE]:Ne[Ae.CARET],o=n.includePrerelease?"-0":"";return t.replace(i,(a,u,h,m,g)=>{me("caret",t,a,u,h,m,g);let l;return je(u)?l="":je(h)?l=`>=${u}.0.0${o} <${+u+1}.0.0-0`:je(m)?u==="0"?l=`>=${u}.${h}.0${o} <${u}.${+h+1}.0-0`:l=`>=${u}.${h}.0${o} <${+u+1}.0.0-0`:g?(me("replaceCaret pr",g),u==="0"?h==="0"?l=`>=${u}.${h}.${m}-${g} <${u}.${h}.${+m+1}-0`:l=`>=${u}.${h}.${m}-${g} <${u}.${+h+1}.0-0`:l=`>=${u}.${h}.${m}-${g} <${+u+1}.0.0-0`):(me("no pr"),u==="0"?h==="0"?l=`>=${u}.${h}.${m}${o} <${u}.${h}.${+m+1}-0`:l=`>=${u}.${h}.${m}${o} <${u}.${+h+1}.0-0`:l=`>=${u}.${h}.${m} <${+u+1}.0.0-0`),me("caret return",l),l})},Yx=(t,n)=>(me("replaceXRanges",t,n),t.split(/\s+/).map(i=>Zx(i,n)).join(" ")),Zx=(t,n)=>{t=t.trim();let i=n.loose?Ne[Ae.XRANGELOOSE]:Ne[Ae.XRANGE];return t.replace(i,(o,a,u,h,m,g)=>{me("xRange",t,o,a,u,h,m,g);let l=je(u),_=l||je(h),S=_||je(m),I=S;return a==="="&&I&&(a=""),g=n.includePrerelease?"-0":"",l?a===">"||a==="<"?o="<0.0.0-0":o="*":a&&I?(_&&(h=0),m=0,a===">"?(a=">=",_?(u=+u+1,h=0,m=0):(h=+h+1,m=0)):a==="<="&&(a="<",_?u=+u+1:h=+h+1),a==="<"&&(g="-0"),o=`${a+u}.${h}.${m}${g}`):_?o=`>=${u}.0.0${g} <${+u+1}.0.0-0`:S&&(o=`>=${u}.${h}.0${g} <${u}.${+h+1}.0-0`),me("xRange return",o),o})},Jx=(t,n)=>(me("replaceStars",t,n),t.trim().replace(Ne[Ae.STAR],"")),Qx=(t,n)=>(me("replaceGTE0",t,n),t.trim().replace(Ne[n.includePrerelease?Ae.GTE0PRE:Ae.GTE0],"")),eC=t=>(n,i,o,a,u,h,m,g,l,_,S,I,P)=>(je(o)?i="":je(a)?i=`>=${o}.0.0${t?"-0":""}`:je(u)?i=`>=${o}.${a}.0${t?"-0":""}`:h?i=`>=${i}`:i=`>=${i}${t?"-0":""}`,je(l)?g="":je(_)?g=`<${+l+1}.0.0-0`:je(S)?g=`<${l}.${+_+1}.0-0`:I?g=`<=${l}.${_}.${S}-${I}`:t?g=`<${l}.${_}.${+S+1}-0`:g=`<=${g}`,`${i} ${g}`.trim()),tC=(t,n,i)=>{for(let o=0;o<t.length;o++)if(!t[o].test(n))return!1;if(n.prerelease.length&&!i.includePrerelease){for(let o=0;o<t.length;o++)if(me(t[o].semver),t[o].semver!==ju.ANY&&t[o].semver.prerelease.length>0){let a=t[o].semver;if(a.major===n.major&&a.minor===n.minor&&a.patch===n.patch)return!0}return!1}return!0}});var Xn=x((ZP,sp)=>{var Yn=Symbol("SemVer ANY"),Zn=class{static get ANY(){return Yn}constructor(n,i){if(i=rC(i),n instanceof Zn){if(n.loose===!!i.loose)return n;n=n.value}Gu("comparator",n,i),this.options=i,this.loose=!!i.loose,this.parse(n),this.semver===Yn?this.value="":this.value=this.operator+this.semver.version,Gu("comp",this)}parse(n){let i=this.options.loose?tp[rp.COMPARATORLOOSE]:tp[rp.COMPARATOR],o=n.match(i);if(!o)throw new TypeError(`Invalid comparator: ${n}`);this.operator=o[1]!==void 0?o[1]:"",this.operator==="="&&(this.operator=""),o[2]?this.semver=new np(o[2],this.options.loose):this.semver=Yn}toString(){return this.value}test(n){if(Gu("Comparator.test",n,this.options.loose),this.semver===Yn||n===Yn)return!0;if(typeof n=="string")try{n=new np(n,this.options)}catch{return!1}return Mu(n,this.operator,this.semver,this.options)}intersects(n,i){if(!(n instanceof Zn))throw new TypeError("a Comparator is required");if((!i||typeof i!="object")&&(i={loose:!!i,includePrerelease:!1}),this.operator==="")return this.value===""?!0:new ip(n.value,i).test(this.value);if(n.operator==="")return n.value===""?!0:new ip(this.value,i).test(n.semver);let o=(this.operator===">="||this.operator===">")&&(n.operator===">="||n.operator===">"),a=(this.operator==="<="||this.operator==="<")&&(n.operator==="<="||n.operator==="<"),u=this.semver.version===n.semver.version,h=(this.operator===">="||this.operator==="<=")&&(n.operator===">="||n.operator==="<="),m=Mu(this.semver,"<",n.semver,i)&&(this.operator===">="||this.operator===">")&&(n.operator==="<="||n.operator==="<"),g=Mu(this.semver,">",n.semver,i)&&(this.operator==="<="||this.operator==="<")&&(n.operator===">="||n.operator===">");return o||a||u&&h||m||g}};sp.exports=Zn;var rC=Wn(),{re:tp,t:rp}=wr(),Mu=Du(),Gu=Un(),np=Le(),ip=lt()});var Jn=x((JP,op)=>{var nC=lt(),iC=(t,n,i)=>{try{n=new nC(n,i)}catch{return!1}return n.test(t)};op.exports=iC});var ap=x((QP,up)=>{var sC=lt(),oC=(t,n)=>new sC(t,n).set.map(i=>i.map(o=>o.value).join(" ").trim().split(" "));up.exports=oC});var lp=x((eT,cp)=>{var uC=Le(),aC=lt(),cC=(t,n,i)=>{let o=null,a=null,u=null;try{u=new aC(n,i)}catch{return null}return t.forEach(h=>{u.test(h)&&(!o||a.compare(h)===-1)&&(o=h,a=new uC(o,i))}),o};cp.exports=cC});var hp=x((tT,fp)=>{var lC=Le(),fC=lt(),hC=(t,n,i)=>{let o=null,a=null,u=null;try{u=new fC(n,i)}catch{return null}return t.forEach(h=>{u.test(h)&&(!o||a.compare(h)===1)&&(o=h,a=new lC(o,i))}),o};fp.exports=hC});var mp=x((rT,dp)=>{var Hu=Le(),pC=lt(),pp=Vn(),dC=(t,n)=>{t=new pC(t,n);let i=new Hu("0.0.0");if(t.test(i)||(i=new Hu("0.0.0-0"),t.test(i)))return i;i=null;for(let o=0;o<t.set.length;++o){let a=t.set[o],u=null;a.forEach(h=>{let m=new Hu(h.semver.version);switch(h.operator){case">":m.prerelease.length===0?m.patch++:m.prerelease.push(0),m.raw=m.format();case"":case">=":(!u||pp(m,u))&&(u=m);break;case"<":case"<=":break;default:throw new Error(`Unexpected operation: ${h.operator}`)}}),u&&(!i||pp(i,u))&&(i=u)}return i&&t.test(i)?i:null};dp.exports=dC});var vp=x((nT,gp)=>{var mC=lt(),gC=(t,n)=>{try{return new mC(t,n).range||"*"}catch{return null}};gp.exports=gC});var xs=x((iT,wp)=>{var vC=Le(),_p=Xn(),{ANY:_C}=_p,yC=lt(),EC=Jn(),yp=Vn(),Ep=_s(),wC=Es(),bC=ys(),SC=(t,n,i,o)=>{t=new vC(t,o),n=new yC(n,o);let a,u,h,m,g;switch(i){case">":a=yp,u=wC,h=Ep,m=">",g=">=";break;case"<":a=Ep,u=bC,h=yp,m="<",g="<=";break;default:throw new TypeError('Must provide a hilo val of "<" or ">"')}if(EC(t,n,o))return!1;for(let l=0;l<n.set.length;++l){let _=n.set[l],S=null,I=null;if(_.forEach(P=>{P.semver===_C&&(P=new _p(">=0.0.0")),S=S||P,I=I||P,a(P.semver,S.semver,o)?S=P:h(P.semver,I.semver,o)&&(I=P)}),S.operator===m||S.operator===g||(!I.operator||I.operator===m)&&u(t,I.semver))return!1;if(I.operator===g&&h(t,I.semver))return!1}return!0};wp.exports=SC});var Sp=x((sT,bp)=>{var xC=xs(),CC=(t,n,i)=>xC(t,n,">",i);bp.exports=CC});var Cp=x((oT,xp)=>{var AC=xs(),OC=(t,n,i)=>AC(t,n,"<",i);xp.exports=OC});var Ip=x((uT,Op)=>{var Ap=lt(),IC=(t,n,i)=>(t=new Ap(t,i),n=new Ap(n,i),t.intersects(n));Op.exports=IC});var Pp=x((aT,Rp)=>{var RC=Jn(),PC=ct();Rp.exports=(t,n,i)=>{let o=[],a=null,u=null,h=t.sort((_,S)=>PC(_,S,i));for(let _ of h)RC(_,n,i)?(u=_,a||(a=_)):(u&&o.push([a,u]),u=null,a=null);a&&o.push([a,null]);let m=[];for(let[_,S]of o)_===S?m.push(_):!S&&_===h[0]?m.push("*"):S?_===h[0]?m.push(`<=${S}`):m.push(`${_} - ${S}`):m.push(`>=${_}`);let g=m.join(" || "),l=typeof n.raw=="string"?n.raw:String(n);return g.length<l.length?g:n}});var Dp=x((cT,qp)=>{var Tp=lt(),Cs=Xn(),{ANY:Bu}=Cs,Qn=Jn(),Uu=ct(),TC=(t,n,i={})=>{if(t===n)return!0;t=new Tp(t,i),n=new Tp(n,i);let o=!1;e:for(let a of t.set){for(let u of n.set){let h=LC(a,u,i);if(o=o||h!==null,h)continue e}if(o)return!1}return!0},LC=(t,n,i)=>{if(t===n)return!0;if(t.length===1&&t[0].semver===Bu){if(n.length===1&&n[0].semver===Bu)return!0;i.includePrerelease?t=[new Cs(">=0.0.0-0")]:t=[new Cs(">=0.0.0")]}if(n.length===1&&n[0].semver===Bu){if(i.includePrerelease)return!0;n=[new Cs(">=0.0.0")]}let o=new Set,a,u;for(let P of t)P.operator===">"||P.operator===">="?a=Lp(a,P,i):P.operator==="<"||P.operator==="<="?u=Np(u,P,i):o.add(P.semver);if(o.size>1)return null;let h;if(a&&u){if(h=Uu(a.semver,u.semver,i),h>0)return null;if(h===0&&(a.operator!==">="||u.operator!=="<="))return null}for(let P of o){if(a&&!Qn(P,String(a),i)||u&&!Qn(P,String(u),i))return null;for(let M of n)if(!Qn(P,String(M),i))return!1;return!0}let m,g,l,_,S=u&&!i.includePrerelease&&u.semver.prerelease.length?u.semver:!1,I=a&&!i.includePrerelease&&a.semver.prerelease.length?a.semver:!1;S&&S.prerelease.length===1&&u.operator==="<"&&S.prerelease[0]===0&&(S=!1);for(let P of n){if(_=_||P.operator===">"||P.operator===">=",l=l||P.operator==="<"||P.operator==="<=",a){if(I&&P.semver.prerelease&&P.semver.prerelease.length&&P.semver.major===I.major&&P.semver.minor===I.minor&&P.semver.patch===I.patch&&(I=!1),P.operator===">"||P.operator===">="){if(m=Lp(a,P,i),m===P&&m!==a)return!1}else if(a.operator===">="&&!Qn(a.semver,String(P),i))return!1}if(u){if(S&&P.semver.prerelease&&P.semver.prerelease.length&&P.semver.major===S.major&&P.semver.minor===S.minor&&P.semver.patch===S.patch&&(S=!1),P.operator==="<"||P.operator==="<="){if(g=Np(u,P,i),g===P&&g!==u)return!1}else if(u.operator==="<="&&!Qn(u.semver,String(P),i))return!1}if(!P.operator&&(u||a)&&h!==0)return!1}return!(a&&l&&!u&&h!==0||u&&_&&!a&&h!==0||I||S)},Lp=(t,n,i)=>{if(!t)return n;let o=Uu(t.semver,n.semver,i);return o>0?t:o<0||n.operator===">"&&t.operator===">="?n:t},Np=(t,n,i)=>{if(!t)return n;let o=Uu(t.semver,n.semver,i);return o<0?t:o>0||n.operator==="<"&&t.operator==="<="?n:t};qp.exports=TC});var Fp=x((lT,$p)=>{var Wu=wr();$p.exports={re:Wu.re,src:Wu.src,tokens:Wu.t,SEMVER_SPEC_VERSION:Bn().SEMVER_SPEC_VERSION,SemVer:Le(),compareIdentifiers:ps().compareIdentifiers,rcompareIdentifiers:ps().rcompareIdentifiers,parse:br(),valid:nh(),clean:sh(),inc:uh(),diff:ph(),major:mh(),minor:vh(),patch:yh(),prerelease:wh(),compare:ct(),rcompare:Sh(),compareLoose:Ch(),compareBuild:vs(),sort:Rh(),rsort:Th(),gt:Vn(),lt:_s(),eq:gs(),neq:qu(),gte:ys(),lte:Es(),cmp:Du(),coerce:Mh(),Comparator:Xn(),Range:lt(),satisfies:Jn(),toComparators:ap(),maxSatisfying:lp(),minSatisfying:hp(),minVersion:mp(),validRange:vp(),outside:xs(),gtr:Sp(),ltr:Cp(),intersects:Ip(),simplifyRange:Pp(),subset:Dp()}});var ke=x(Ar=>{"use strict";var ku=Ar&&Ar.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(Ar,"__esModule",{value:!0});Ar.getCoreVersion=void 0;var NC=ku(require("os")),jp=ku(require("path")),Mp=ku(require("fs")),qC=Fp(),Vu=jp.default.join(NC.default.homedir(),".s","cache","core"),Gp=jp.default.join(Vu,"package.json");function DC(){if(Mp.default.existsSync(Gp)){var t=require("@serverless-devs/core/package.json").version,n=Hp();return qC.gt(t,n)?require("@serverless-devs/core"):require(Vu)}return require("@serverless-devs/core")}function Hp(){return Mp.default.existsSync(Vu)?require(Gp).version:void 0}Ar.getCoreVersion=Hp;Ar.default=DC()});var zu=x((Zr,ei)=>{(function(){var t,n="4.17.21",i=200,o="Unsupported core-js use. Try https://npms.io/search?q=ponyfill.",a="Expected a function",u="Invalid `variable` option passed into `_.template`",h="__lodash_hash_undefined__",m=500,g="__lodash_placeholder__",l=1,_=2,S=4,I=1,P=2,M=1,B=2,Z=4,X=8,Ie=16,Q=32,ae=64,_e=128,Re=256,vn=512,Tt=30,Rv="...",Pv=800,Tv=16,tc=1,Lv=2,Nv=3,cr=1/0,Vt=9007199254740991,qv=17976931348623157e292,yi=0/0,wt=4294967295,Dv=wt-1,$v=wt>>>1,Fv=[["ary",_e],["bind",M],["bindKey",B],["curry",X],["curryRight",Ie],["flip",vn],["partial",Q],["partialRight",ae],["rearg",Re]],Nr="[object Arguments]",Ei="[object Array]",jv="[object AsyncFunction]",_n="[object Boolean]",yn="[object Date]",Mv="[object DOMException]",wi="[object Error]",bi="[object Function]",rc="[object GeneratorFunction]",ft="[object Map]",En="[object Number]",Gv="[object Null]",Lt="[object Object]",nc="[object Promise]",Hv="[object Proxy]",wn="[object RegExp]",ht="[object Set]",bn="[object String]",Si="[object Symbol]",Bv="[object Undefined]",Sn="[object WeakMap]",Uv="[object WeakSet]",xn="[object ArrayBuffer]",qr="[object DataView]",uo="[object Float32Array]",ao="[object Float64Array]",co="[object Int8Array]",lo="[object Int16Array]",fo="[object Int32Array]",ho="[object Uint8Array]",po="[object Uint8ClampedArray]",mo="[object Uint16Array]",go="[object Uint32Array]",Wv=/\b__p \+= '';/g,kv=/\b(__p \+=) '' \+/g,Vv=/(__e\(.*?\)|\b__t\)) \+\n'';/g,ic=/&(?:amp|lt|gt|quot|#39);/g,sc=/[&<>"']/g,zv=RegExp(ic.source),Kv=RegExp(sc.source),Xv=/<%-([\s\S]+?)%>/g,Yv=/<%([\s\S]+?)%>/g,oc=/<%=([\s\S]+?)%>/g,Zv=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,Jv=/^\w*$/,Qv=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,vo=/[\\^$.*+?()[\]{}|]/g,e_=RegExp(vo.source),_o=/^\s+/,t_=/\s/,r_=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,n_=/\{\n\/\* \[wrapped with (.+)\] \*/,i_=/,? & /,s_=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,o_=/[()=,{}\[\]\/\s]/,u_=/\\(\\)?/g,a_=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,uc=/\w*$/,c_=/^[-+]0x[0-9a-f]+$/i,l_=/^0b[01]+$/i,f_=/^\[object .+?Constructor\]$/,h_=/^0o[0-7]+$/i,p_=/^(?:0|[1-9]\d*)$/,d_=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,xi=/($^)/,m_=/['\n\r\u2028\u2029\\]/g,Ci="\\ud800-\\udfff",g_="\\u0300-\\u036f",v_="\\ufe20-\\ufe2f",__="\\u20d0-\\u20ff",ac=g_+v_+__,cc="\\u2700-\\u27bf",lc="a-z\\xdf-\\xf6\\xf8-\\xff",y_="\\xac\\xb1\\xd7\\xf7",E_="\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf",w_="\\u2000-\\u206f",b_=" \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",fc="A-Z\\xc0-\\xd6\\xd8-\\xde",hc="\\ufe0e\\ufe0f",pc=y_+E_+w_+b_,yo="['\u2019]",S_="["+Ci+"]",dc="["+pc+"]",Ai="["+ac+"]",mc="\\d+",x_="["+cc+"]",gc="["+lc+"]",vc="[^"+Ci+pc+mc+cc+lc+fc+"]",Eo="\\ud83c[\\udffb-\\udfff]",C_="(?:"+Ai+"|"+Eo+")",_c="[^"+Ci+"]",wo="(?:\\ud83c[\\udde6-\\uddff]){2}",bo="[\\ud800-\\udbff][\\udc00-\\udfff]",Dr="["+fc+"]",yc="\\u200d",Ec="(?:"+gc+"|"+vc+")",A_="(?:"+Dr+"|"+vc+")",wc="(?:"+yo+"(?:d|ll|m|re|s|t|ve))?",bc="(?:"+yo+"(?:D|LL|M|RE|S|T|VE))?",Sc=C_+"?",xc="["+hc+"]?",O_="(?:"+yc+"(?:"+[_c,wo,bo].join("|")+")"+xc+Sc+")*",I_="\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",R_="\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])",Cc=xc+Sc+O_,P_="(?:"+[x_,wo,bo].join("|")+")"+Cc,T_="(?:"+[_c+Ai+"?",Ai,wo,bo,S_].join("|")+")",L_=RegExp(yo,"g"),N_=RegExp(Ai,"g"),So=RegExp(Eo+"(?="+Eo+")|"+T_+Cc,"g"),q_=RegExp([Dr+"?"+gc+"+"+wc+"(?="+[dc,Dr,"$"].join("|")+")",A_+"+"+bc+"(?="+[dc,Dr+Ec,"$"].join("|")+")",Dr+"?"+Ec+"+"+wc,Dr+"+"+bc,R_,I_,mc,P_].join("|"),"g"),D_=RegExp("["+yc+Ci+ac+hc+"]"),$_=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,F_=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],j_=-1,ce={};ce[uo]=ce[ao]=ce[co]=ce[lo]=ce[fo]=ce[ho]=ce[po]=ce[mo]=ce[go]=!0,ce[Nr]=ce[Ei]=ce[xn]=ce[_n]=ce[qr]=ce[yn]=ce[wi]=ce[bi]=ce[ft]=ce[En]=ce[Lt]=ce[wn]=ce[ht]=ce[bn]=ce[Sn]=!1;var ue={};ue[Nr]=ue[Ei]=ue[xn]=ue[qr]=ue[_n]=ue[yn]=ue[uo]=ue[ao]=ue[co]=ue[lo]=ue[fo]=ue[ft]=ue[En]=ue[Lt]=ue[wn]=ue[ht]=ue[bn]=ue[Si]=ue[ho]=ue[po]=ue[mo]=ue[go]=!0,ue[wi]=ue[bi]=ue[Sn]=!1;var M_={\u00C0:"A",\u00C1:"A",\u00C2:"A",\u00C3:"A",\u00C4:"A",\u00C5:"A",\u00E0:"a",\u00E1:"a",\u00E2:"a",\u00E3:"a",\u00E4:"a",\u00E5:"a",\u00C7:"C",\u00E7:"c",\u00D0:"D",\u00F0:"d",\u00C8:"E",\u00C9:"E",\u00CA:"E",\u00CB:"E",\u00E8:"e",\u00E9:"e",\u00EA:"e",\u00EB:"e",\u00CC:"I",\u00CD:"I",\u00CE:"I",\u00CF:"I",\u00EC:"i",\u00ED:"i",\u00EE:"i",\u00EF:"i",\u00D1:"N",\u00F1:"n",\u00D2:"O",\u00D3:"O",\u00D4:"O",\u00D5:"O",\u00D6:"O",\u00D8:"O",\u00F2:"o",\u00F3:"o",\u00F4:"o",\u00F5:"o",\u00F6:"o",\u00F8:"o",\u00D9:"U",\u00DA:"U",\u00DB:"U",\u00DC:"U",\u00F9:"u",\u00FA:"u",\u00FB:"u",\u00FC:"u",\u00DD:"Y",\u00FD:"y",\u00FF:"y",\u00C6:"Ae",\u00E6:"ae",\u00DE:"Th",\u00FE:"th",\u00DF:"ss",\u0100:"A",\u0102:"A",\u0104:"A",\u0101:"a",\u0103:"a",\u0105:"a",\u0106:"C",\u0108:"C",\u010A:"C",\u010C:"C",\u0107:"c",\u0109:"c",\u010B:"c",\u010D:"c",\u010E:"D",\u0110:"D",\u010F:"d",\u0111:"d",\u0112:"E",\u0114:"E",\u0116:"E",\u0118:"E",\u011A:"E",\u0113:"e",\u0115:"e",\u0117:"e",\u0119:"e",\u011B:"e",\u011C:"G",\u011E:"G",\u0120:"G",\u0122:"G",\u011D:"g",\u011F:"g",\u0121:"g",\u0123:"g",\u0124:"H",\u0126:"H",\u0125:"h",\u0127:"h",\u0128:"I",\u012A:"I",\u012C:"I",\u012E:"I",\u0130:"I",\u0129:"i",\u012B:"i",\u012D:"i",\u012F:"i",\u0131:"i",\u0134:"J",\u0135:"j",\u0136:"K",\u0137:"k",\u0138:"k",\u0139:"L",\u013B:"L",\u013D:"L",\u013F:"L",\u0141:"L",\u013A:"l",\u013C:"l",\u013E:"l",\u0140:"l",\u0142:"l",\u0143:"N",\u0145:"N",\u0147:"N",\u014A:"N",\u0144:"n",\u0146:"n",\u0148:"n",\u014B:"n",\u014C:"O",\u014E:"O",\u0150:"O",\u014D:"o",\u014F:"o",\u0151:"o",\u0154:"R",\u0156:"R",\u0158:"R",\u0155:"r",\u0157:"r",\u0159:"r",\u015A:"S",\u015C:"S",\u015E:"S",\u0160:"S",\u015B:"s",\u015D:"s",\u015F:"s",\u0161:"s",\u0162:"T",\u0164:"T",\u0166:"T",\u0163:"t",\u0165:"t",\u0167:"t",\u0168:"U",\u016A:"U",\u016C:"U",\u016E:"U",\u0170:"U",\u0172:"U",\u0169:"u",\u016B:"u",\u016D:"u",\u016F:"u",\u0171:"u",\u0173:"u",\u0174:"W",\u0175:"w",\u0176:"Y",\u0177:"y",\u0178:"Y",\u0179:"Z",\u017B:"Z",\u017D:"Z",\u017A:"z",\u017C:"z",\u017E:"z",\u0132:"IJ",\u0133:"ij",\u0152:"Oe",\u0153:"oe",\u0149:"'n",\u017F:"s"},G_={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;"},H_={"&amp;":"&","&lt;":"<","&gt;":">","&quot;":'"',"&#39;":"'"},B_={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},U_=parseFloat,W_=parseInt,Ac=typeof global=="object"&&global&&global.Object===Object&&global,k_=typeof self=="object"&&self&&self.Object===Object&&self,we=Ac||k_||Function("return this")(),xo=typeof Zr=="object"&&Zr&&!Zr.nodeType&&Zr,lr=xo&&typeof ei=="object"&&ei&&!ei.nodeType&&ei,Oc=lr&&lr.exports===xo,Co=Oc&&Ac.process,et=function(){try{var E=lr&&lr.require&&lr.require("util").types;return E||Co&&Co.binding&&Co.binding("util")}catch{}}(),Ic=et&&et.isArrayBuffer,Rc=et&&et.isDate,Pc=et&&et.isMap,Tc=et&&et.isRegExp,Lc=et&&et.isSet,Nc=et&&et.isTypedArray;function ze(E,C,b){switch(b.length){case 0:return E.call(C);case 1:return E.call(C,b[0]);case 2:return E.call(C,b[0],b[1]);case 3:return E.call(C,b[0],b[1],b[2])}return E.apply(C,b)}function V_(E,C,b,L){for(var G=-1,te=E==null?0:E.length;++G<te;){var ye=E[G];C(L,ye,b(ye),E)}return L}function tt(E,C){for(var b=-1,L=E==null?0:E.length;++b<L&&C(E[b],b,E)!==!1;);return E}function z_(E,C){for(var b=E==null?0:E.length;b--&&C(E[b],b,E)!==!1;);return E}function qc(E,C){for(var b=-1,L=E==null?0:E.length;++b<L;)if(!C(E[b],b,E))return!1;return!0}function zt(E,C){for(var b=-1,L=E==null?0:E.length,G=0,te=[];++b<L;){var ye=E[b];C(ye,b,E)&&(te[G++]=ye)}return te}function Oi(E,C){var b=E==null?0:E.length;return!!b&&$r(E,C,0)>-1}function Ao(E,C,b){for(var L=-1,G=E==null?0:E.length;++L<G;)if(b(C,E[L]))return!0;return!1}function le(E,C){for(var b=-1,L=E==null?0:E.length,G=Array(L);++b<L;)G[b]=C(E[b],b,E);return G}function Kt(E,C){for(var b=-1,L=C.length,G=E.length;++b<L;)E[G+b]=C[b];return E}function Oo(E,C,b,L){var G=-1,te=E==null?0:E.length;for(L&&te&&(b=E[++G]);++G<te;)b=C(b,E[G],G,E);return b}function K_(E,C,b,L){var G=E==null?0:E.length;for(L&&G&&(b=E[--G]);G--;)b=C(b,E[G],G,E);return b}function Io(E,C){for(var b=-1,L=E==null?0:E.length;++b<L;)if(C(E[b],b,E))return!0;return!1}var X_=Ro("length");function Y_(E){return E.split("")}function Z_(E){return E.match(s_)||[]}function Dc(E,C,b){var L;return b(E,function(G,te,ye){if(C(G,te,ye))return L=te,!1}),L}function Ii(E,C,b,L){for(var G=E.length,te=b+(L?1:-1);L?te--:++te<G;)if(C(E[te],te,E))return te;return-1}function $r(E,C,b){return C===C?c0(E,C,b):Ii(E,$c,b)}function J_(E,C,b,L){for(var G=b-1,te=E.length;++G<te;)if(L(E[G],C))return G;return-1}function $c(E){return E!==E}function Fc(E,C){var b=E==null?0:E.length;return b?To(E,C)/b:yi}function Ro(E){return function(C){return C==null?t:C[E]}}function Po(E){return function(C){return E==null?t:E[C]}}function jc(E,C,b,L,G){return G(E,function(te,ye,oe){b=L?(L=!1,te):C(b,te,ye,oe)}),b}function Q_(E,C){var b=E.length;for(E.sort(C);b--;)E[b]=E[b].value;return E}function To(E,C){for(var b,L=-1,G=E.length;++L<G;){var te=C(E[L]);te!==t&&(b=b===t?te:b+te)}return b}function Lo(E,C){for(var b=-1,L=Array(E);++b<E;)L[b]=C(b);return L}function e0(E,C){return le(C,function(b){return[b,E[b]]})}function Mc(E){return E&&E.slice(0,Uc(E)+1).replace(_o,"")}function Ke(E){return function(C){return E(C)}}function No(E,C){return le(C,function(b){return E[b]})}function Cn(E,C){return E.has(C)}function Gc(E,C){for(var b=-1,L=E.length;++b<L&&$r(C,E[b],0)>-1;);return b}function Hc(E,C){for(var b=E.length;b--&&$r(C,E[b],0)>-1;);return b}function t0(E,C){for(var b=E.length,L=0;b--;)E[b]===C&&++L;return L}var r0=Po(M_),n0=Po(G_);function i0(E){return"\\"+B_[E]}function s0(E,C){return E==null?t:E[C]}function Fr(E){return D_.test(E)}function o0(E){return $_.test(E)}function u0(E){for(var C,b=[];!(C=E.next()).done;)b.push(C.value);return b}function qo(E){var C=-1,b=Array(E.size);return E.forEach(function(L,G){b[++C]=[G,L]}),b}function Bc(E,C){return function(b){return E(C(b))}}function Xt(E,C){for(var b=-1,L=E.length,G=0,te=[];++b<L;){var ye=E[b];(ye===C||ye===g)&&(E[b]=g,te[G++]=b)}return te}function Ri(E){var C=-1,b=Array(E.size);return E.forEach(function(L){b[++C]=L}),b}function a0(E){var C=-1,b=Array(E.size);return E.forEach(function(L){b[++C]=[L,L]}),b}function c0(E,C,b){for(var L=b-1,G=E.length;++L<G;)if(E[L]===C)return L;return-1}function l0(E,C,b){for(var L=b+1;L--;)if(E[L]===C)return L;return L}function jr(E){return Fr(E)?h0(E):X_(E)}function pt(E){return Fr(E)?p0(E):Y_(E)}function Uc(E){for(var C=E.length;C--&&t_.test(E.charAt(C)););return C}var f0=Po(H_);function h0(E){for(var C=So.lastIndex=0;So.test(E);)++C;return C}function p0(E){return E.match(So)||[]}function d0(E){return E.match(q_)||[]}var m0=function E(C){C=C==null?we:Yt.defaults(we.Object(),C,Yt.pick(we,F_));var b=C.Array,L=C.Date,G=C.Error,te=C.Function,ye=C.Math,oe=C.Object,Do=C.RegExp,g0=C.String,rt=C.TypeError,Pi=b.prototype,v0=te.prototype,Mr=oe.prototype,Ti=C["__core-js_shared__"],Li=v0.toString,se=Mr.hasOwnProperty,_0=0,Wc=function(){var e=/[^.]+$/.exec(Ti&&Ti.keys&&Ti.keys.IE_PROTO||"");return e?"Symbol(src)_1."+e:""}(),Ni=Mr.toString,y0=Li.call(oe),E0=we._,w0=Do("^"+Li.call(se).replace(vo,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),qi=Oc?C.Buffer:t,Zt=C.Symbol,Di=C.Uint8Array,kc=qi?qi.allocUnsafe:t,$i=Bc(oe.getPrototypeOf,oe),Vc=oe.create,zc=Mr.propertyIsEnumerable,Fi=Pi.splice,Kc=Zt?Zt.isConcatSpreadable:t,An=Zt?Zt.iterator:t,fr=Zt?Zt.toStringTag:t,ji=function(){try{var e=gr(oe,"defineProperty");return e({},"",{}),e}catch{}}(),b0=C.clearTimeout!==we.clearTimeout&&C.clearTimeout,S0=L&&L.now!==we.Date.now&&L.now,x0=C.setTimeout!==we.setTimeout&&C.setTimeout,Mi=ye.ceil,Gi=ye.floor,$o=oe.getOwnPropertySymbols,C0=qi?qi.isBuffer:t,Xc=C.isFinite,A0=Pi.join,O0=Bc(oe.keys,oe),Ee=ye.max,Pe=ye.min,I0=L.now,R0=C.parseInt,Yc=ye.random,P0=Pi.reverse,Fo=gr(C,"DataView"),On=gr(C,"Map"),jo=gr(C,"Promise"),Gr=gr(C,"Set"),In=gr(C,"WeakMap"),Rn=gr(oe,"create"),Hi=In&&new In,Hr={},T0=vr(Fo),L0=vr(On),N0=vr(jo),q0=vr(Gr),D0=vr(In),Bi=Zt?Zt.prototype:t,Pn=Bi?Bi.valueOf:t,Zc=Bi?Bi.toString:t;function p(e){if(he(e)&&!H(e)&&!(e instanceof Y)){if(e instanceof nt)return e;if(se.call(e,"__wrapped__"))return Jl(e)}return new nt(e)}var Br=function(){function e(){}return function(r){if(!fe(r))return{};if(Vc)return Vc(r);e.prototype=r;var s=new e;return e.prototype=t,s}}();function Ui(){}function nt(e,r){this.__wrapped__=e,this.__actions__=[],this.__chain__=!!r,this.__index__=0,this.__values__=t}p.templateSettings={escape:Xv,evaluate:Yv,interpolate:oc,variable:"",imports:{_:p}},p.prototype=Ui.prototype,p.prototype.constructor=p,nt.prototype=Br(Ui.prototype),nt.prototype.constructor=nt;function Y(e){this.__wrapped__=e,this.__actions__=[],this.__dir__=1,this.__filtered__=!1,this.__iteratees__=[],this.__takeCount__=wt,this.__views__=[]}function $0(){var e=new Y(this.__wrapped__);return e.__actions__=He(this.__actions__),e.__dir__=this.__dir__,e.__filtered__=this.__filtered__,e.__iteratees__=He(this.__iteratees__),e.__takeCount__=this.__takeCount__,e.__views__=He(this.__views__),e}function F0(){if(this.__filtered__){var e=new Y(this);e.__dir__=-1,e.__filtered__=!0}else e=this.clone(),e.__dir__*=-1;return e}function j0(){var e=this.__wrapped__.value(),r=this.__dir__,s=H(e),c=r<0,f=s?e.length:0,d=Y1(0,f,this.__views__),v=d.start,y=d.end,w=y-v,A=c?y:v-1,O=this.__iteratees__,R=O.length,T=0,D=Pe(w,this.__takeCount__);if(!s||!c&&f==w&&D==w)return wl(e,this.__actions__);var F=[];e:for(;w--&&T<D;){A+=r;for(var W=-1,j=e[A];++W<R;){var z=O[W],J=z.iteratee,Ze=z.type,Fe=J(j);if(Ze==Lv)j=Fe;else if(!Fe){if(Ze==tc)continue e;break e}}F[T++]=j}return F}Y.prototype=Br(Ui.prototype),Y.prototype.constructor=Y;function hr(e){var r=-1,s=e==null?0:e.length;for(this.clear();++r<s;){var c=e[r];this.set(c[0],c[1])}}function M0(){this.__data__=Rn?Rn(null):{},this.size=0}function G0(e){var r=this.has(e)&&delete this.__data__[e];return this.size-=r?1:0,r}function H0(e){var r=this.__data__;if(Rn){var s=r[e];return s===h?t:s}return se.call(r,e)?r[e]:t}function B0(e){var r=this.__data__;return Rn?r[e]!==t:se.call(r,e)}function U0(e,r){var s=this.__data__;return this.size+=this.has(e)?0:1,s[e]=Rn&&r===t?h:r,this}hr.prototype.clear=M0,hr.prototype.delete=G0,hr.prototype.get=H0,hr.prototype.has=B0,hr.prototype.set=U0;function Nt(e){var r=-1,s=e==null?0:e.length;for(this.clear();++r<s;){var c=e[r];this.set(c[0],c[1])}}function W0(){this.__data__=[],this.size=0}function k0(e){var r=this.__data__,s=Wi(r,e);if(s<0)return!1;var c=r.length-1;return s==c?r.pop():Fi.call(r,s,1),--this.size,!0}function V0(e){var r=this.__data__,s=Wi(r,e);return s<0?t:r[s][1]}function z0(e){return Wi(this.__data__,e)>-1}function K0(e,r){var s=this.__data__,c=Wi(s,e);return c<0?(++this.size,s.push([e,r])):s[c][1]=r,this}Nt.prototype.clear=W0,Nt.prototype.delete=k0,Nt.prototype.get=V0,Nt.prototype.has=z0,Nt.prototype.set=K0;function qt(e){var r=-1,s=e==null?0:e.length;for(this.clear();++r<s;){var c=e[r];this.set(c[0],c[1])}}function X0(){this.size=0,this.__data__={hash:new hr,map:new(On||Nt),string:new hr}}function Y0(e){var r=rs(this,e).delete(e);return this.size-=r?1:0,r}function Z0(e){return rs(this,e).get(e)}function J0(e){return rs(this,e).has(e)}function Q0(e,r){var s=rs(this,e),c=s.size;return s.set(e,r),this.size+=s.size==c?0:1,this}qt.prototype.clear=X0,qt.prototype.delete=Y0,qt.prototype.get=Z0,qt.prototype.has=J0,qt.prototype.set=Q0;function pr(e){var r=-1,s=e==null?0:e.length;for(this.__data__=new qt;++r<s;)this.add(e[r])}function e1(e){return this.__data__.set(e,h),this}function t1(e){return this.__data__.has(e)}pr.prototype.add=pr.prototype.push=e1,pr.prototype.has=t1;function dt(e){var r=this.__data__=new Nt(e);this.size=r.size}function r1(){this.__data__=new Nt,this.size=0}function n1(e){var r=this.__data__,s=r.delete(e);return this.size=r.size,s}function i1(e){return this.__data__.get(e)}function s1(e){return this.__data__.has(e)}function o1(e,r){var s=this.__data__;if(s instanceof Nt){var c=s.__data__;if(!On||c.length<i-1)return c.push([e,r]),this.size=++s.size,this;s=this.__data__=new qt(c)}return s.set(e,r),this.size=s.size,this}dt.prototype.clear=r1,dt.prototype.delete=n1,dt.prototype.get=i1,dt.prototype.has=s1,dt.prototype.set=o1;function Jc(e,r){var s=H(e),c=!s&&_r(e),f=!s&&!c&&rr(e),d=!s&&!c&&!f&&Vr(e),v=s||c||f||d,y=v?Lo(e.length,g0):[],w=y.length;for(var A in e)(r||se.call(e,A))&&!(v&&(A=="length"||f&&(A=="offset"||A=="parent")||d&&(A=="buffer"||A=="byteLength"||A=="byteOffset")||jt(A,w)))&&y.push(A);return y}function Qc(e){var r=e.length;return r?e[Xo(0,r-1)]:t}function u1(e,r){return ns(He(e),dr(r,0,e.length))}function a1(e){return ns(He(e))}function Mo(e,r,s){(s!==t&&!mt(e[r],s)||s===t&&!(r in e))&&Dt(e,r,s)}function Tn(e,r,s){var c=e[r];(!(se.call(e,r)&&mt(c,s))||s===t&&!(r in e))&&Dt(e,r,s)}function Wi(e,r){for(var s=e.length;s--;)if(mt(e[s][0],r))return s;return-1}function c1(e,r,s,c){return Jt(e,function(f,d,v){r(c,f,s(f),v)}),c}function el(e,r){return e&&St(r,be(r),e)}function l1(e,r){return e&&St(r,Ue(r),e)}function Dt(e,r,s){r=="__proto__"&&ji?ji(e,r,{configurable:!0,enumerable:!0,value:s,writable:!0}):e[r]=s}function Go(e,r){for(var s=-1,c=r.length,f=b(c),d=e==null;++s<c;)f[s]=d?t:Eu(e,r[s]);return f}function dr(e,r,s){return e===e&&(s!==t&&(e=e<=s?e:s),r!==t&&(e=e>=r?e:r)),e}function it(e,r,s,c,f,d){var v,y=r&l,w=r&_,A=r&S;if(s&&(v=f?s(e,c,f,d):s(e)),v!==t)return v;if(!fe(e))return e;var O=H(e);if(O){if(v=J1(e),!y)return He(e,v)}else{var R=Te(e),T=R==bi||R==rc;if(rr(e))return xl(e,y);if(R==Lt||R==Nr||T&&!f){if(v=w||T?{}:Ul(e),!y)return w?H1(e,l1(v,e)):G1(e,el(v,e))}else{if(!ue[R])return f?e:{};v=Q1(e,R,y)}}d||(d=new dt);var D=d.get(e);if(D)return D;d.set(e,v),yf(e)?e.forEach(function(j){v.add(it(j,r,s,j,e,d))}):vf(e)&&e.forEach(function(j,z){v.set(z,it(j,r,s,z,e,d))});var F=A?w?ou:su:w?Ue:be,W=O?t:F(e);return tt(W||e,function(j,z){W&&(z=j,j=e[z]),Tn(v,z,it(j,r,s,z,e,d))}),v}function f1(e){var r=be(e);return function(s){return tl(s,e,r)}}function tl(e,r,s){var c=s.length;if(e==null)return!c;for(e=oe(e);c--;){var f=s[c],d=r[f],v=e[f];if(v===t&&!(f in e)||!d(v))return!1}return!0}function rl(e,r,s){if(typeof e!="function")throw new rt(a);return jn(function(){e.apply(t,s)},r)}function Ln(e,r,s,c){var f=-1,d=Oi,v=!0,y=e.length,w=[],A=r.length;if(!y)return w;s&&(r=le(r,Ke(s))),c?(d=Ao,v=!1):r.length>=i&&(d=Cn,v=!1,r=new pr(r));e:for(;++f<y;){var O=e[f],R=s==null?O:s(O);if(O=c||O!==0?O:0,v&&R===R){for(var T=A;T--;)if(r[T]===R)continue e;w.push(O)}else d(r,R,c)||w.push(O)}return w}var Jt=Rl(bt),nl=Rl(Bo,!0);function h1(e,r){var s=!0;return Jt(e,function(c,f,d){return s=!!r(c,f,d),s}),s}function ki(e,r,s){for(var c=-1,f=e.length;++c<f;){var d=e[c],v=r(d);if(v!=null&&(y===t?v===v&&!Ye(v):s(v,y)))var y=v,w=d}return w}function p1(e,r,s,c){var f=e.length;for(s=U(s),s<0&&(s=-s>f?0:f+s),c=c===t||c>f?f:U(c),c<0&&(c+=f),c=s>c?0:wf(c);s<c;)e[s++]=r;return e}function il(e,r){var s=[];return Jt(e,function(c,f,d){r(c,f,d)&&s.push(c)}),s}function Ce(e,r,s,c,f){var d=-1,v=e.length;for(s||(s=ty),f||(f=[]);++d<v;){var y=e[d];r>0&&s(y)?r>1?Ce(y,r-1,s,c,f):Kt(f,y):c||(f[f.length]=y)}return f}var Ho=Pl(),sl=Pl(!0);function bt(e,r){return e&&Ho(e,r,be)}function Bo(e,r){return e&&sl(e,r,be)}function Vi(e,r){return zt(r,function(s){return Mt(e[s])})}function mr(e,r){r=er(r,e);for(var s=0,c=r.length;e!=null&&s<c;)e=e[xt(r[s++])];return s&&s==c?e:t}function ol(e,r,s){var c=r(e);return H(e)?c:Kt(c,s(e))}function De(e){return e==null?e===t?Bv:Gv:fr&&fr in oe(e)?X1(e):ay(e)}function Uo(e,r){return e>r}function d1(e,r){return e!=null&&se.call(e,r)}function m1(e,r){return e!=null&&r in oe(e)}function g1(e,r,s){return e>=Pe(r,s)&&e<Ee(r,s)}function Wo(e,r,s){for(var c=s?Ao:Oi,f=e[0].length,d=e.length,v=d,y=b(d),w=1/0,A=[];v--;){var O=e[v];v&&r&&(O=le(O,Ke(r))),w=Pe(O.length,w),y[v]=!s&&(r||f>=120&&O.length>=120)?new pr(v&&O):t}O=e[0];var R=-1,T=y[0];e:for(;++R<f&&A.length<w;){var D=O[R],F=r?r(D):D;if(D=s||D!==0?D:0,!(T?Cn(T,F):c(A,F,s))){for(v=d;--v;){var W=y[v];if(!(W?Cn(W,F):c(e[v],F,s)))continue e}T&&T.push(F),A.push(D)}}return A}function v1(e,r,s,c){return bt(e,function(f,d,v){r(c,s(f),d,v)}),c}function Nn(e,r,s){r=er(r,e),e=zl(e,r);var c=e==null?e:e[xt(ot(r))];return c==null?t:ze(c,e,s)}function ul(e){return he(e)&&De(e)==Nr}function _1(e){return he(e)&&De(e)==xn}function y1(e){return he(e)&&De(e)==yn}function qn(e,r,s,c,f){return e===r?!0:e==null||r==null||!he(e)&&!he(r)?e!==e&&r!==r:E1(e,r,s,c,qn,f)}function E1(e,r,s,c,f,d){var v=H(e),y=H(r),w=v?Ei:Te(e),A=y?Ei:Te(r);w=w==Nr?Lt:w,A=A==Nr?Lt:A;var O=w==Lt,R=A==Lt,T=w==A;if(T&&rr(e)){if(!rr(r))return!1;v=!0,O=!1}if(T&&!O)return d||(d=new dt),v||Vr(e)?Gl(e,r,s,c,f,d):z1(e,r,w,s,c,f,d);if(!(s&I)){var D=O&&se.call(e,"__wrapped__"),F=R&&se.call(r,"__wrapped__");if(D||F){var W=D?e.value():e,j=F?r.value():r;return d||(d=new dt),f(W,j,s,c,d)}}return T?(d||(d=new dt),K1(e,r,s,c,f,d)):!1}function w1(e){return he(e)&&Te(e)==ft}function ko(e,r,s,c){var f=s.length,d=f,v=!c;if(e==null)return!d;for(e=oe(e);f--;){var y=s[f];if(v&&y[2]?y[1]!==e[y[0]]:!(y[0]in e))return!1}for(;++f<d;){y=s[f];var w=y[0],A=e[w],O=y[1];if(v&&y[2]){if(A===t&&!(w in e))return!1}else{var R=new dt;if(c)var T=c(A,O,w,e,r,R);if(!(T===t?qn(O,A,I|P,c,R):T))return!1}}return!0}function al(e){if(!fe(e)||ny(e))return!1;var r=Mt(e)?w0:f_;return r.test(vr(e))}function b1(e){return he(e)&&De(e)==wn}function S1(e){return he(e)&&Te(e)==ht}function x1(e){return he(e)&&cs(e.length)&&!!ce[De(e)]}function cl(e){return typeof e=="function"?e:e==null?We:typeof e=="object"?H(e)?hl(e[0],e[1]):fl(e):Lf(e)}function Vo(e){if(!Fn(e))return O0(e);var r=[];for(var s in oe(e))se.call(e,s)&&s!="constructor"&&r.push(s);return r}function C1(e){if(!fe(e))return uy(e);var r=Fn(e),s=[];for(var c in e)c=="constructor"&&(r||!se.call(e,c))||s.push(c);return s}function zo(e,r){return e<r}function ll(e,r){var s=-1,c=Be(e)?b(e.length):[];return Jt(e,function(f,d,v){c[++s]=r(f,d,v)}),c}function fl(e){var r=au(e);return r.length==1&&r[0][2]?kl(r[0][0],r[0][1]):function(s){return s===e||ko(s,e,r)}}function hl(e,r){return lu(e)&&Wl(r)?kl(xt(e),r):function(s){var c=Eu(s,e);return c===t&&c===r?wu(s,e):qn(r,c,I|P)}}function zi(e,r,s,c,f){e!==r&&Ho(r,function(d,v){if(f||(f=new dt),fe(d))A1(e,r,v,s,zi,c,f);else{var y=c?c(hu(e,v),d,v+"",e,r,f):t;y===t&&(y=d),Mo(e,v,y)}},Ue)}function A1(e,r,s,c,f,d,v){var y=hu(e,s),w=hu(r,s),A=v.get(w);if(A){Mo(e,s,A);return}var O=d?d(y,w,s+"",e,r,v):t,R=O===t;if(R){var T=H(w),D=!T&&rr(w),F=!T&&!D&&Vr(w);O=w,T||D||F?H(y)?O=y:pe(y)?O=He(y):D?(R=!1,O=xl(w,!0)):F?(R=!1,O=Cl(w,!0)):O=[]:Mn(w)||_r(w)?(O=y,_r(y)?O=bf(y):(!fe(y)||Mt(y))&&(O=Ul(w))):R=!1}R&&(v.set(w,O),f(O,w,c,d,v),v.delete(w)),Mo(e,s,O)}function pl(e,r){var s=e.length;if(!!s)return r+=r<0?s:0,jt(r,s)?e[r]:t}function dl(e,r,s){r.length?r=le(r,function(d){return H(d)?function(v){return mr(v,d.length===1?d[0]:d)}:d}):r=[We];var c=-1;r=le(r,Ke($()));var f=ll(e,function(d,v,y){var w=le(r,function(A){return A(d)});return{criteria:w,index:++c,value:d}});return Q_(f,function(d,v){return M1(d,v,s)})}function O1(e,r){return ml(e,r,function(s,c){return wu(e,c)})}function ml(e,r,s){for(var c=-1,f=r.length,d={};++c<f;){var v=r[c],y=mr(e,v);s(y,v)&&Dn(d,er(v,e),y)}return d}function I1(e){return function(r){return mr(r,e)}}function Ko(e,r,s,c){var f=c?J_:$r,d=-1,v=r.length,y=e;for(e===r&&(r=He(r)),s&&(y=le(e,Ke(s)));++d<v;)for(var w=0,A=r[d],O=s?s(A):A;(w=f(y,O,w,c))>-1;)y!==e&&Fi.call(y,w,1),Fi.call(e,w,1);return e}function gl(e,r){for(var s=e?r.length:0,c=s-1;s--;){var f=r[s];if(s==c||f!==d){var d=f;jt(f)?Fi.call(e,f,1):Jo(e,f)}}return e}function Xo(e,r){return e+Gi(Yc()*(r-e+1))}function R1(e,r,s,c){for(var f=-1,d=Ee(Mi((r-e)/(s||1)),0),v=b(d);d--;)v[c?d:++f]=e,e+=s;return v}function Yo(e,r){var s="";if(!e||r<1||r>Vt)return s;do r%2&&(s+=e),r=Gi(r/2),r&&(e+=e);while(r);return s}function V(e,r){return pu(Vl(e,r,We),e+"")}function P1(e){return Qc(zr(e))}function T1(e,r){var s=zr(e);return ns(s,dr(r,0,s.length))}function Dn(e,r,s,c){if(!fe(e))return e;r=er(r,e);for(var f=-1,d=r.length,v=d-1,y=e;y!=null&&++f<d;){var w=xt(r[f]),A=s;if(w==="__proto__"||w==="constructor"||w==="prototype")return e;if(f!=v){var O=y[w];A=c?c(O,w,y):t,A===t&&(A=fe(O)?O:jt(r[f+1])?[]:{})}Tn(y,w,A),y=y[w]}return e}var vl=Hi?function(e,r){return Hi.set(e,r),e}:We,L1=ji?function(e,r){return ji(e,"toString",{configurable:!0,enumerable:!1,value:Su(r),writable:!0})}:We;function N1(e){return ns(zr(e))}function st(e,r,s){var c=-1,f=e.length;r<0&&(r=-r>f?0:f+r),s=s>f?f:s,s<0&&(s+=f),f=r>s?0:s-r>>>0,r>>>=0;for(var d=b(f);++c<f;)d[c]=e[c+r];return d}function q1(e,r){var s;return Jt(e,function(c,f,d){return s=r(c,f,d),!s}),!!s}function Ki(e,r,s){var c=0,f=e==null?c:e.length;if(typeof r=="number"&&r===r&&f<=$v){for(;c<f;){var d=c+f>>>1,v=e[d];v!==null&&!Ye(v)&&(s?v<=r:v<r)?c=d+1:f=d}return f}return Zo(e,r,We,s)}function Zo(e,r,s,c){var f=0,d=e==null?0:e.length;if(d===0)return 0;r=s(r);for(var v=r!==r,y=r===null,w=Ye(r),A=r===t;f<d;){var O=Gi((f+d)/2),R=s(e[O]),T=R!==t,D=R===null,F=R===R,W=Ye(R);if(v)var j=c||F;else A?j=F&&(c||T):y?j=F&&T&&(c||!D):w?j=F&&T&&!D&&(c||!W):D||W?j=!1:j=c?R<=r:R<r;j?f=O+1:d=O}return Pe(d,Dv)}function _l(e,r){for(var s=-1,c=e.length,f=0,d=[];++s<c;){var v=e[s],y=r?r(v):v;if(!s||!mt(y,w)){var w=y;d[f++]=v===0?0:v}}return d}function yl(e){return typeof e=="number"?e:Ye(e)?yi:+e}function Xe(e){if(typeof e=="string")return e;if(H(e))return le(e,Xe)+"";if(Ye(e))return Zc?Zc.call(e):"";var r=e+"";return r=="0"&&1/e==-cr?"-0":r}function Qt(e,r,s){var c=-1,f=Oi,d=e.length,v=!0,y=[],w=y;if(s)v=!1,f=Ao;else if(d>=i){var A=r?null:k1(e);if(A)return Ri(A);v=!1,f=Cn,w=new pr}else w=r?[]:y;e:for(;++c<d;){var O=e[c],R=r?r(O):O;if(O=s||O!==0?O:0,v&&R===R){for(var T=w.length;T--;)if(w[T]===R)continue e;r&&w.push(R),y.push(O)}else f(w,R,s)||(w!==y&&w.push(R),y.push(O))}return y}function Jo(e,r){return r=er(r,e),e=zl(e,r),e==null||delete e[xt(ot(r))]}function El(e,r,s,c){return Dn(e,r,s(mr(e,r)),c)}function Xi(e,r,s,c){for(var f=e.length,d=c?f:-1;(c?d--:++d<f)&&r(e[d],d,e););return s?st(e,c?0:d,c?d+1:f):st(e,c?d+1:0,c?f:d)}function wl(e,r){var s=e;return s instanceof Y&&(s=s.value()),Oo(r,function(c,f){return f.func.apply(f.thisArg,Kt([c],f.args))},s)}function Qo(e,r,s){var c=e.length;if(c<2)return c?Qt(e[0]):[];for(var f=-1,d=b(c);++f<c;)for(var v=e[f],y=-1;++y<c;)y!=f&&(d[f]=Ln(d[f]||v,e[y],r,s));return Qt(Ce(d,1),r,s)}function bl(e,r,s){for(var c=-1,f=e.length,d=r.length,v={};++c<f;){var y=c<d?r[c]:t;s(v,e[c],y)}return v}function eu(e){return pe(e)?e:[]}function tu(e){return typeof e=="function"?e:We}function er(e,r){return H(e)?e:lu(e,r)?[e]:Zl(ie(e))}var D1=V;function tr(e,r,s){var c=e.length;return s=s===t?c:s,!r&&s>=c?e:st(e,r,s)}var Sl=b0||function(e){return we.clearTimeout(e)};function xl(e,r){if(r)return e.slice();var s=e.length,c=kc?kc(s):new e.constructor(s);return e.copy(c),c}function ru(e){var r=new e.constructor(e.byteLength);return new Di(r).set(new Di(e)),r}function $1(e,r){var s=r?ru(e.buffer):e.buffer;return new e.constructor(s,e.byteOffset,e.byteLength)}function F1(e){var r=new e.constructor(e.source,uc.exec(e));return r.lastIndex=e.lastIndex,r}function j1(e){return Pn?oe(Pn.call(e)):{}}function Cl(e,r){var s=r?ru(e.buffer):e.buffer;return new e.constructor(s,e.byteOffset,e.length)}function Al(e,r){if(e!==r){var s=e!==t,c=e===null,f=e===e,d=Ye(e),v=r!==t,y=r===null,w=r===r,A=Ye(r);if(!y&&!A&&!d&&e>r||d&&v&&w&&!y&&!A||c&&v&&w||!s&&w||!f)return 1;if(!c&&!d&&!A&&e<r||A&&s&&f&&!c&&!d||y&&s&&f||!v&&f||!w)return-1}return 0}function M1(e,r,s){for(var c=-1,f=e.criteria,d=r.criteria,v=f.length,y=s.length;++c<v;){var w=Al(f[c],d[c]);if(w){if(c>=y)return w;var A=s[c];return w*(A=="desc"?-1:1)}}return e.index-r.index}function Ol(e,r,s,c){for(var f=-1,d=e.length,v=s.length,y=-1,w=r.length,A=Ee(d-v,0),O=b(w+A),R=!c;++y<w;)O[y]=r[y];for(;++f<v;)(R||f<d)&&(O[s[f]]=e[f]);for(;A--;)O[y++]=e[f++];return O}function Il(e,r,s,c){for(var f=-1,d=e.length,v=-1,y=s.length,w=-1,A=r.length,O=Ee(d-y,0),R=b(O+A),T=!c;++f<O;)R[f]=e[f];for(var D=f;++w<A;)R[D+w]=r[w];for(;++v<y;)(T||f<d)&&(R[D+s[v]]=e[f++]);return R}function He(e,r){var s=-1,c=e.length;for(r||(r=b(c));++s<c;)r[s]=e[s];return r}function St(e,r,s,c){var f=!s;s||(s={});for(var d=-1,v=r.length;++d<v;){var y=r[d],w=c?c(s[y],e[y],y,s,e):t;w===t&&(w=e[y]),f?Dt(s,y,w):Tn(s,y,w)}return s}function G1(e,r){return St(e,cu(e),r)}function H1(e,r){return St(e,Hl(e),r)}function Yi(e,r){return function(s,c){var f=H(s)?V_:c1,d=r?r():{};return f(s,e,$(c,2),d)}}function Ur(e){return V(function(r,s){var c=-1,f=s.length,d=f>1?s[f-1]:t,v=f>2?s[2]:t;for(d=e.length>3&&typeof d=="function"?(f--,d):t,v&&$e(s[0],s[1],v)&&(d=f<3?t:d,f=1),r=oe(r);++c<f;){var y=s[c];y&&e(r,y,c,d)}return r})}function Rl(e,r){return function(s,c){if(s==null)return s;if(!Be(s))return e(s,c);for(var f=s.length,d=r?f:-1,v=oe(s);(r?d--:++d<f)&&c(v[d],d,v)!==!1;);return s}}function Pl(e){return function(r,s,c){for(var f=-1,d=oe(r),v=c(r),y=v.length;y--;){var w=v[e?y:++f];if(s(d[w],w,d)===!1)break}return r}}function B1(e,r,s){var c=r&M,f=$n(e);function d(){var v=this&&this!==we&&this instanceof d?f:e;return v.apply(c?s:this,arguments)}return d}function Tl(e){return function(r){r=ie(r);var s=Fr(r)?pt(r):t,c=s?s[0]:r.charAt(0),f=s?tr(s,1).join(""):r.slice(1);return c[e]()+f}}function Wr(e){return function(r){return Oo(Pf(Rf(r).replace(L_,"")),e,"")}}function $n(e){return function(){var r=arguments;switch(r.length){case 0:return new e;case 1:return new e(r[0]);case 2:return new e(r[0],r[1]);case 3:return new e(r[0],r[1],r[2]);case 4:return new e(r[0],r[1],r[2],r[3]);case 5:return new e(r[0],r[1],r[2],r[3],r[4]);case 6:return new e(r[0],r[1],r[2],r[3],r[4],r[5]);case 7:return new e(r[0],r[1],r[2],r[3],r[4],r[5],r[6])}var s=Br(e.prototype),c=e.apply(s,r);return fe(c)?c:s}}function U1(e,r,s){var c=$n(e);function f(){for(var d=arguments.length,v=b(d),y=d,w=kr(f);y--;)v[y]=arguments[y];var A=d<3&&v[0]!==w&&v[d-1]!==w?[]:Xt(v,w);if(d-=A.length,d<s)return $l(e,r,Zi,f.placeholder,t,v,A,t,t,s-d);var O=this&&this!==we&&this instanceof f?c:e;return ze(O,this,v)}return f}function Ll(e){return function(r,s,c){var f=oe(r);if(!Be(r)){var d=$(s,3);r=be(r),s=function(y){return d(f[y],y,f)}}var v=e(r,s,c);return v>-1?f[d?r[v]:v]:t}}function Nl(e){return Ft(function(r){var s=r.length,c=s,f=nt.prototype.thru;for(e&&r.reverse();c--;){var d=r[c];if(typeof d!="function")throw new rt(a);if(f&&!v&&ts(d)=="wrapper")var v=new nt([],!0)}for(c=v?c:s;++c<s;){d=r[c];var y=ts(d),w=y=="wrapper"?uu(d):t;w&&fu(w[0])&&w[1]==(_e|X|Q|Re)&&!w[4].length&&w[9]==1?v=v[ts(w[0])].apply(v,w[3]):v=d.length==1&&fu(d)?v[y]():v.thru(d)}return function(){var A=arguments,O=A[0];if(v&&A.length==1&&H(O))return v.plant(O).value();for(var R=0,T=s?r[R].apply(this,A):O;++R<s;)T=r[R].call(this,T);return T}})}function Zi(e,r,s,c,f,d,v,y,w,A){var O=r&_e,R=r&M,T=r&B,D=r&(X|Ie),F=r&vn,W=T?t:$n(e);function j(){for(var z=arguments.length,J=b(z),Ze=z;Ze--;)J[Ze]=arguments[Ze];if(D)var Fe=kr(j),Je=t0(J,Fe);if(c&&(J=Ol(J,c,f,D)),d&&(J=Il(J,d,v,D)),z-=Je,D&&z<A){var de=Xt(J,Fe);return $l(e,r,Zi,j.placeholder,s,J,de,y,w,A-z)}var gt=R?s:this,Ht=T?gt[e]:e;return z=J.length,y?J=cy(J,y):F&&z>1&&J.reverse(),O&&w<z&&(J.length=w),this&&this!==we&&this instanceof j&&(Ht=W||$n(Ht)),Ht.apply(gt,J)}return j}function ql(e,r){return function(s,c){return v1(s,e,r(c),{})}}function Ji(e,r){return function(s,c){var f;if(s===t&&c===t)return r;if(s!==t&&(f=s),c!==t){if(f===t)return c;typeof s=="string"||typeof c=="string"?(s=Xe(s),c=Xe(c)):(s=yl(s),c=yl(c)),f=e(s,c)}return f}}function nu(e){return Ft(function(r){return r=le(r,Ke($())),V(function(s){var c=this;return e(r,function(f){return ze(f,c,s)})})})}function Qi(e,r){r=r===t?" ":Xe(r);var s=r.length;if(s<2)return s?Yo(r,e):r;var c=Yo(r,Mi(e/jr(r)));return Fr(r)?tr(pt(c),0,e).join(""):c.slice(0,e)}function W1(e,r,s,c){var f=r&M,d=$n(e);function v(){for(var y=-1,w=arguments.length,A=-1,O=c.length,R=b(O+w),T=this&&this!==we&&this instanceof v?d:e;++A<O;)R[A]=c[A];for(;w--;)R[A++]=arguments[++y];return ze(T,f?s:this,R)}return v}function Dl(e){return function(r,s,c){return c&&typeof c!="number"&&$e(r,s,c)&&(s=c=t),r=Gt(r),s===t?(s=r,r=0):s=Gt(s),c=c===t?r<s?1:-1:Gt(c),R1(r,s,c,e)}}function es(e){return function(r,s){return typeof r=="string"&&typeof s=="string"||(r=ut(r),s=ut(s)),e(r,s)}}function $l(e,r,s,c,f,d,v,y,w,A){var O=r&X,R=O?v:t,T=O?t:v,D=O?d:t,F=O?t:d;r|=O?Q:ae,r&=~(O?ae:Q),r&Z||(r&=~(M|B));var W=[e,r,f,D,R,F,T,y,w,A],j=s.apply(t,W);return fu(e)&&Kl(j,W),j.placeholder=c,Xl(j,e,r)}function iu(e){var r=ye[e];return function(s,c){if(s=ut(s),c=c==null?0:Pe(U(c),292),c&&Xc(s)){var f=(ie(s)+"e").split("e"),d=r(f[0]+"e"+(+f[1]+c));return f=(ie(d)+"e").split("e"),+(f[0]+"e"+(+f[1]-c))}return r(s)}}var k1=Gr&&1/Ri(new Gr([,-0]))[1]==cr?function(e){return new Gr(e)}:Au;function Fl(e){return function(r){var s=Te(r);return s==ft?qo(r):s==ht?a0(r):e0(r,e(r))}}function $t(e,r,s,c,f,d,v,y){var w=r&B;if(!w&&typeof e!="function")throw new rt(a);var A=c?c.length:0;if(A||(r&=~(Q|ae),c=f=t),v=v===t?v:Ee(U(v),0),y=y===t?y:U(y),A-=f?f.length:0,r&ae){var O=c,R=f;c=f=t}var T=w?t:uu(e),D=[e,r,s,c,f,O,R,d,v,y];if(T&&oy(D,T),e=D[0],r=D[1],s=D[2],c=D[3],f=D[4],y=D[9]=D[9]===t?w?0:e.length:Ee(D[9]-A,0),!y&&r&(X|Ie)&&(r&=~(X|Ie)),!r||r==M)var F=B1(e,r,s);else r==X||r==Ie?F=U1(e,r,y):(r==Q||r==(M|Q))&&!f.length?F=W1(e,r,s,c):F=Zi.apply(t,D);var W=T?vl:Kl;return Xl(W(F,D),e,r)}function jl(e,r,s,c){return e===t||mt(e,Mr[s])&&!se.call(c,s)?r:e}function Ml(e,r,s,c,f,d){return fe(e)&&fe(r)&&(d.set(r,e),zi(e,r,t,Ml,d),d.delete(r)),e}function V1(e){return Mn(e)?t:e}function Gl(e,r,s,c,f,d){var v=s&I,y=e.length,w=r.length;if(y!=w&&!(v&&w>y))return!1;var A=d.get(e),O=d.get(r);if(A&&O)return A==r&&O==e;var R=-1,T=!0,D=s&P?new pr:t;for(d.set(e,r),d.set(r,e);++R<y;){var F=e[R],W=r[R];if(c)var j=v?c(W,F,R,r,e,d):c(F,W,R,e,r,d);if(j!==t){if(j)continue;T=!1;break}if(D){if(!Io(r,function(z,J){if(!Cn(D,J)&&(F===z||f(F,z,s,c,d)))return D.push(J)})){T=!1;break}}else if(!(F===W||f(F,W,s,c,d))){T=!1;break}}return d.delete(e),d.delete(r),T}function z1(e,r,s,c,f,d,v){switch(s){case qr:if(e.byteLength!=r.byteLength||e.byteOffset!=r.byteOffset)return!1;e=e.buffer,r=r.buffer;case xn:return!(e.byteLength!=r.byteLength||!d(new Di(e),new Di(r)));case _n:case yn:case En:return mt(+e,+r);case wi:return e.name==r.name&&e.message==r.message;case wn:case bn:return e==r+"";case ft:var y=qo;case ht:var w=c&I;if(y||(y=Ri),e.size!=r.size&&!w)return!1;var A=v.get(e);if(A)return A==r;c|=P,v.set(e,r);var O=Gl(y(e),y(r),c,f,d,v);return v.delete(e),O;case Si:if(Pn)return Pn.call(e)==Pn.call(r)}return!1}function K1(e,r,s,c,f,d){var v=s&I,y=su(e),w=y.length,A=su(r),O=A.length;if(w!=O&&!v)return!1;for(var R=w;R--;){var T=y[R];if(!(v?T in r:se.call(r,T)))return!1}var D=d.get(e),F=d.get(r);if(D&&F)return D==r&&F==e;var W=!0;d.set(e,r),d.set(r,e);for(var j=v;++R<w;){T=y[R];var z=e[T],J=r[T];if(c)var Ze=v?c(J,z,T,r,e,d):c(z,J,T,e,r,d);if(!(Ze===t?z===J||f(z,J,s,c,d):Ze)){W=!1;break}j||(j=T=="constructor")}if(W&&!j){var Fe=e.constructor,Je=r.constructor;Fe!=Je&&"constructor"in e&&"constructor"in r&&!(typeof Fe=="function"&&Fe instanceof Fe&&typeof Je=="function"&&Je instanceof Je)&&(W=!1)}return d.delete(e),d.delete(r),W}function Ft(e){return pu(Vl(e,t,tf),e+"")}function su(e){return ol(e,be,cu)}function ou(e){return ol(e,Ue,Hl)}var uu=Hi?function(e){return Hi.get(e)}:Au;function ts(e){for(var r=e.name+"",s=Hr[r],c=se.call(Hr,r)?s.length:0;c--;){var f=s[c],d=f.func;if(d==null||d==e)return f.name}return r}function kr(e){var r=se.call(p,"placeholder")?p:e;return r.placeholder}function $(){var e=p.iteratee||xu;return e=e===xu?cl:e,arguments.length?e(arguments[0],arguments[1]):e}function rs(e,r){var s=e.__data__;return ry(r)?s[typeof r=="string"?"string":"hash"]:s.map}function au(e){for(var r=be(e),s=r.length;s--;){var c=r[s],f=e[c];r[s]=[c,f,Wl(f)]}return r}function gr(e,r){var s=s0(e,r);return al(s)?s:t}function X1(e){var r=se.call(e,fr),s=e[fr];try{e[fr]=t;var c=!0}catch{}var f=Ni.call(e);return c&&(r?e[fr]=s:delete e[fr]),f}var cu=$o?function(e){return e==null?[]:(e=oe(e),zt($o(e),function(r){return zc.call(e,r)}))}:Ou,Hl=$o?function(e){for(var r=[];e;)Kt(r,cu(e)),e=$i(e);return r}:Ou,Te=De;(Fo&&Te(new Fo(new ArrayBuffer(1)))!=qr||On&&Te(new On)!=ft||jo&&Te(jo.resolve())!=nc||Gr&&Te(new Gr)!=ht||In&&Te(new In)!=Sn)&&(Te=function(e){var r=De(e),s=r==Lt?e.constructor:t,c=s?vr(s):"";if(c)switch(c){case T0:return qr;case L0:return ft;case N0:return nc;case q0:return ht;case D0:return Sn}return r});function Y1(e,r,s){for(var c=-1,f=s.length;++c<f;){var d=s[c],v=d.size;switch(d.type){case"drop":e+=v;break;case"dropRight":r-=v;break;case"take":r=Pe(r,e+v);break;case"takeRight":e=Ee(e,r-v);break}}return{start:e,end:r}}function Z1(e){var r=e.match(n_);return r?r[1].split(i_):[]}function Bl(e,r,s){r=er(r,e);for(var c=-1,f=r.length,d=!1;++c<f;){var v=xt(r[c]);if(!(d=e!=null&&s(e,v)))break;e=e[v]}return d||++c!=f?d:(f=e==null?0:e.length,!!f&&cs(f)&&jt(v,f)&&(H(e)||_r(e)))}function J1(e){var r=e.length,s=new e.constructor(r);return r&&typeof e[0]=="string"&&se.call(e,"index")&&(s.index=e.index,s.input=e.input),s}function Ul(e){return typeof e.constructor=="function"&&!Fn(e)?Br($i(e)):{}}function Q1(e,r,s){var c=e.constructor;switch(r){case xn:return ru(e);case _n:case yn:return new c(+e);case qr:return $1(e,s);case uo:case ao:case co:case lo:case fo:case ho:case po:case mo:case go:return Cl(e,s);case ft:return new c;case En:case bn:return new c(e);case wn:return F1(e);case ht:return new c;case Si:return j1(e)}}function ey(e,r){var s=r.length;if(!s)return e;var c=s-1;return r[c]=(s>1?"& ":"")+r[c],r=r.join(s>2?", ":" "),e.replace(r_,`{
16
- /* [wrapped with `+r+`] */
17
- `)}function ty(e){return H(e)||_r(e)||!!(Kc&&e&&e[Kc])}function jt(e,r){var s=typeof e;return r=r??Vt,!!r&&(s=="number"||s!="symbol"&&p_.test(e))&&e>-1&&e%1==0&&e<r}function $e(e,r,s){if(!fe(s))return!1;var c=typeof r;return(c=="number"?Be(s)&&jt(r,s.length):c=="string"&&r in s)?mt(s[r],e):!1}function lu(e,r){if(H(e))return!1;var s=typeof e;return s=="number"||s=="symbol"||s=="boolean"||e==null||Ye(e)?!0:Jv.test(e)||!Zv.test(e)||r!=null&&e in oe(r)}function ry(e){var r=typeof e;return r=="string"||r=="number"||r=="symbol"||r=="boolean"?e!=="__proto__":e===null}function fu(e){var r=ts(e),s=p[r];if(typeof s!="function"||!(r in Y.prototype))return!1;if(e===s)return!0;var c=uu(s);return!!c&&e===c[0]}function ny(e){return!!Wc&&Wc in e}var iy=Ti?Mt:Iu;function Fn(e){var r=e&&e.constructor,s=typeof r=="function"&&r.prototype||Mr;return e===s}function Wl(e){return e===e&&!fe(e)}function kl(e,r){return function(s){return s==null?!1:s[e]===r&&(r!==t||e in oe(s))}}function sy(e){var r=us(e,function(c){return s.size===m&&s.clear(),c}),s=r.cache;return r}function oy(e,r){var s=e[1],c=r[1],f=s|c,d=f<(M|B|_e),v=c==_e&&s==X||c==_e&&s==Re&&e[7].length<=r[8]||c==(_e|Re)&&r[7].length<=r[8]&&s==X;if(!(d||v))return e;c&M&&(e[2]=r[2],f|=s&M?0:Z);var y=r[3];if(y){var w=e[3];e[3]=w?Ol(w,y,r[4]):y,e[4]=w?Xt(e[3],g):r[4]}return y=r[5],y&&(w=e[5],e[5]=w?Il(w,y,r[6]):y,e[6]=w?Xt(e[5],g):r[6]),y=r[7],y&&(e[7]=y),c&_e&&(e[8]=e[8]==null?r[8]:Pe(e[8],r[8])),e[9]==null&&(e[9]=r[9]),e[0]=r[0],e[1]=f,e}function uy(e){var r=[];if(e!=null)for(var s in oe(e))r.push(s);return r}function ay(e){return Ni.call(e)}function Vl(e,r,s){return r=Ee(r===t?e.length-1:r,0),function(){for(var c=arguments,f=-1,d=Ee(c.length-r,0),v=b(d);++f<d;)v[f]=c[r+f];f=-1;for(var y=b(r+1);++f<r;)y[f]=c[f];return y[r]=s(v),ze(e,this,y)}}function zl(e,r){return r.length<2?e:mr(e,st(r,0,-1))}function cy(e,r){for(var s=e.length,c=Pe(r.length,s),f=He(e);c--;){var d=r[c];e[c]=jt(d,s)?f[d]:t}return e}function hu(e,r){if(!(r==="constructor"&&typeof e[r]=="function")&&r!="__proto__")return e[r]}var Kl=Yl(vl),jn=x0||function(e,r){return we.setTimeout(e,r)},pu=Yl(L1);function Xl(e,r,s){var c=r+"";return pu(e,ey(c,ly(Z1(c),s)))}function Yl(e){var r=0,s=0;return function(){var c=I0(),f=Tv-(c-s);if(s=c,f>0){if(++r>=Pv)return arguments[0]}else r=0;return e.apply(t,arguments)}}function ns(e,r){var s=-1,c=e.length,f=c-1;for(r=r===t?c:r;++s<r;){var d=Xo(s,f),v=e[d];e[d]=e[s],e[s]=v}return e.length=r,e}var Zl=sy(function(e){var r=[];return e.charCodeAt(0)===46&&r.push(""),e.replace(Qv,function(s,c,f,d){r.push(f?d.replace(u_,"$1"):c||s)}),r});function xt(e){if(typeof e=="string"||Ye(e))return e;var r=e+"";return r=="0"&&1/e==-cr?"-0":r}function vr(e){if(e!=null){try{return Li.call(e)}catch{}try{return e+""}catch{}}return""}function ly(e,r){return tt(Fv,function(s){var c="_."+s[0];r&s[1]&&!Oi(e,c)&&e.push(c)}),e.sort()}function Jl(e){if(e instanceof Y)return e.clone();var r=new nt(e.__wrapped__,e.__chain__);return r.__actions__=He(e.__actions__),r.__index__=e.__index__,r.__values__=e.__values__,r}function fy(e,r,s){(s?$e(e,r,s):r===t)?r=1:r=Ee(U(r),0);var c=e==null?0:e.length;if(!c||r<1)return[];for(var f=0,d=0,v=b(Mi(c/r));f<c;)v[d++]=st(e,f,f+=r);return v}function hy(e){for(var r=-1,s=e==null?0:e.length,c=0,f=[];++r<s;){var d=e[r];d&&(f[c++]=d)}return f}function py(){var e=arguments.length;if(!e)return[];for(var r=b(e-1),s=arguments[0],c=e;c--;)r[c-1]=arguments[c];return Kt(H(s)?He(s):[s],Ce(r,1))}var dy=V(function(e,r){return pe(e)?Ln(e,Ce(r,1,pe,!0)):[]}),my=V(function(e,r){var s=ot(r);return pe(s)&&(s=t),pe(e)?Ln(e,Ce(r,1,pe,!0),$(s,2)):[]}),gy=V(function(e,r){var s=ot(r);return pe(s)&&(s=t),pe(e)?Ln(e,Ce(r,1,pe,!0),t,s):[]});function vy(e,r,s){var c=e==null?0:e.length;return c?(r=s||r===t?1:U(r),st(e,r<0?0:r,c)):[]}function _y(e,r,s){var c=e==null?0:e.length;return c?(r=s||r===t?1:U(r),r=c-r,st(e,0,r<0?0:r)):[]}function yy(e,r){return e&&e.length?Xi(e,$(r,3),!0,!0):[]}function Ey(e,r){return e&&e.length?Xi(e,$(r,3),!0):[]}function wy(e,r,s,c){var f=e==null?0:e.length;return f?(s&&typeof s!="number"&&$e(e,r,s)&&(s=0,c=f),p1(e,r,s,c)):[]}function Ql(e,r,s){var c=e==null?0:e.length;if(!c)return-1;var f=s==null?0:U(s);return f<0&&(f=Ee(c+f,0)),Ii(e,$(r,3),f)}function ef(e,r,s){var c=e==null?0:e.length;if(!c)return-1;var f=c-1;return s!==t&&(f=U(s),f=s<0?Ee(c+f,0):Pe(f,c-1)),Ii(e,$(r,3),f,!0)}function tf(e){var r=e==null?0:e.length;return r?Ce(e,1):[]}function by(e){var r=e==null?0:e.length;return r?Ce(e,cr):[]}function Sy(e,r){var s=e==null?0:e.length;return s?(r=r===t?1:U(r),Ce(e,r)):[]}function xy(e){for(var r=-1,s=e==null?0:e.length,c={};++r<s;){var f=e[r];c[f[0]]=f[1]}return c}function rf(e){return e&&e.length?e[0]:t}function Cy(e,r,s){var c=e==null?0:e.length;if(!c)return-1;var f=s==null?0:U(s);return f<0&&(f=Ee(c+f,0)),$r(e,r,f)}function Ay(e){var r=e==null?0:e.length;return r?st(e,0,-1):[]}var Oy=V(function(e){var r=le(e,eu);return r.length&&r[0]===e[0]?Wo(r):[]}),Iy=V(function(e){var r=ot(e),s=le(e,eu);return r===ot(s)?r=t:s.pop(),s.length&&s[0]===e[0]?Wo(s,$(r,2)):[]}),Ry=V(function(e){var r=ot(e),s=le(e,eu);return r=typeof r=="function"?r:t,r&&s.pop(),s.length&&s[0]===e[0]?Wo(s,t,r):[]});function Py(e,r){return e==null?"":A0.call(e,r)}function ot(e){var r=e==null?0:e.length;return r?e[r-1]:t}function Ty(e,r,s){var c=e==null?0:e.length;if(!c)return-1;var f=c;return s!==t&&(f=U(s),f=f<0?Ee(c+f,0):Pe(f,c-1)),r===r?l0(e,r,f):Ii(e,$c,f,!0)}function Ly(e,r){return e&&e.length?pl(e,U(r)):t}var Ny=V(nf);function nf(e,r){return e&&e.length&&r&&r.length?Ko(e,r):e}function qy(e,r,s){return e&&e.length&&r&&r.length?Ko(e,r,$(s,2)):e}function Dy(e,r,s){return e&&e.length&&r&&r.length?Ko(e,r,t,s):e}var $y=Ft(function(e,r){var s=e==null?0:e.length,c=Go(e,r);return gl(e,le(r,function(f){return jt(f,s)?+f:f}).sort(Al)),c});function Fy(e,r){var s=[];if(!(e&&e.length))return s;var c=-1,f=[],d=e.length;for(r=$(r,3);++c<d;){var v=e[c];r(v,c,e)&&(s.push(v),f.push(c))}return gl(e,f),s}function du(e){return e==null?e:P0.call(e)}function jy(e,r,s){var c=e==null?0:e.length;return c?(s&&typeof s!="number"&&$e(e,r,s)?(r=0,s=c):(r=r==null?0:U(r),s=s===t?c:U(s)),st(e,r,s)):[]}function My(e,r){return Ki(e,r)}function Gy(e,r,s){return Zo(e,r,$(s,2))}function Hy(e,r){var s=e==null?0:e.length;if(s){var c=Ki(e,r);if(c<s&&mt(e[c],r))return c}return-1}function By(e,r){return Ki(e,r,!0)}function Uy(e,r,s){return Zo(e,r,$(s,2),!0)}function Wy(e,r){var s=e==null?0:e.length;if(s){var c=Ki(e,r,!0)-1;if(mt(e[c],r))return c}return-1}function ky(e){return e&&e.length?_l(e):[]}function Vy(e,r){return e&&e.length?_l(e,$(r,2)):[]}function zy(e){var r=e==null?0:e.length;return r?st(e,1,r):[]}function Ky(e,r,s){return e&&e.length?(r=s||r===t?1:U(r),st(e,0,r<0?0:r)):[]}function Xy(e,r,s){var c=e==null?0:e.length;return c?(r=s||r===t?1:U(r),r=c-r,st(e,r<0?0:r,c)):[]}function Yy(e,r){return e&&e.length?Xi(e,$(r,3),!1,!0):[]}function Zy(e,r){return e&&e.length?Xi(e,$(r,3)):[]}var Jy=V(function(e){return Qt(Ce(e,1,pe,!0))}),Qy=V(function(e){var r=ot(e);return pe(r)&&(r=t),Qt(Ce(e,1,pe,!0),$(r,2))}),eE=V(function(e){var r=ot(e);return r=typeof r=="function"?r:t,Qt(Ce(e,1,pe,!0),t,r)});function tE(e){return e&&e.length?Qt(e):[]}function rE(e,r){return e&&e.length?Qt(e,$(r,2)):[]}function nE(e,r){return r=typeof r=="function"?r:t,e&&e.length?Qt(e,t,r):[]}function mu(e){if(!(e&&e.length))return[];var r=0;return e=zt(e,function(s){if(pe(s))return r=Ee(s.length,r),!0}),Lo(r,function(s){return le(e,Ro(s))})}function sf(e,r){if(!(e&&e.length))return[];var s=mu(e);return r==null?s:le(s,function(c){return ze(r,t,c)})}var iE=V(function(e,r){return pe(e)?Ln(e,r):[]}),sE=V(function(e){return Qo(zt(e,pe))}),oE=V(function(e){var r=ot(e);return pe(r)&&(r=t),Qo(zt(e,pe),$(r,2))}),uE=V(function(e){var r=ot(e);return r=typeof r=="function"?r:t,Qo(zt(e,pe),t,r)}),aE=V(mu);function cE(e,r){return bl(e||[],r||[],Tn)}function lE(e,r){return bl(e||[],r||[],Dn)}var fE=V(function(e){var r=e.length,s=r>1?e[r-1]:t;return s=typeof s=="function"?(e.pop(),s):t,sf(e,s)});function of(e){var r=p(e);return r.__chain__=!0,r}function hE(e,r){return r(e),e}function is(e,r){return r(e)}var pE=Ft(function(e){var r=e.length,s=r?e[0]:0,c=this.__wrapped__,f=function(d){return Go(d,e)};return r>1||this.__actions__.length||!(c instanceof Y)||!jt(s)?this.thru(f):(c=c.slice(s,+s+(r?1:0)),c.__actions__.push({func:is,args:[f],thisArg:t}),new nt(c,this.__chain__).thru(function(d){return r&&!d.length&&d.push(t),d}))});function dE(){return of(this)}function mE(){return new nt(this.value(),this.__chain__)}function gE(){this.__values__===t&&(this.__values__=Ef(this.value()));var e=this.__index__>=this.__values__.length,r=e?t:this.__values__[this.__index__++];return{done:e,value:r}}function vE(){return this}function _E(e){for(var r,s=this;s instanceof Ui;){var c=Jl(s);c.__index__=0,c.__values__=t,r?f.__wrapped__=c:r=c;var f=c;s=s.__wrapped__}return f.__wrapped__=e,r}function yE(){var e=this.__wrapped__;if(e instanceof Y){var r=e;return this.__actions__.length&&(r=new Y(this)),r=r.reverse(),r.__actions__.push({func:is,args:[du],thisArg:t}),new nt(r,this.__chain__)}return this.thru(du)}function EE(){return wl(this.__wrapped__,this.__actions__)}var wE=Yi(function(e,r,s){se.call(e,s)?++e[s]:Dt(e,s,1)});function bE(e,r,s){var c=H(e)?qc:h1;return s&&$e(e,r,s)&&(r=t),c(e,$(r,3))}function SE(e,r){var s=H(e)?zt:il;return s(e,$(r,3))}var xE=Ll(Ql),CE=Ll(ef);function AE(e,r){return Ce(ss(e,r),1)}function OE(e,r){return Ce(ss(e,r),cr)}function IE(e,r,s){return s=s===t?1:U(s),Ce(ss(e,r),s)}function uf(e,r){var s=H(e)?tt:Jt;return s(e,$(r,3))}function af(e,r){var s=H(e)?z_:nl;return s(e,$(r,3))}var RE=Yi(function(e,r,s){se.call(e,s)?e[s].push(r):Dt(e,s,[r])});function PE(e,r,s,c){e=Be(e)?e:zr(e),s=s&&!c?U(s):0;var f=e.length;return s<0&&(s=Ee(f+s,0)),ls(e)?s<=f&&e.indexOf(r,s)>-1:!!f&&$r(e,r,s)>-1}var TE=V(function(e,r,s){var c=-1,f=typeof r=="function",d=Be(e)?b(e.length):[];return Jt(e,function(v){d[++c]=f?ze(r,v,s):Nn(v,r,s)}),d}),LE=Yi(function(e,r,s){Dt(e,s,r)});function ss(e,r){var s=H(e)?le:ll;return s(e,$(r,3))}function NE(e,r,s,c){return e==null?[]:(H(r)||(r=r==null?[]:[r]),s=c?t:s,H(s)||(s=s==null?[]:[s]),dl(e,r,s))}var qE=Yi(function(e,r,s){e[s?0:1].push(r)},function(){return[[],[]]});function DE(e,r,s){var c=H(e)?Oo:jc,f=arguments.length<3;return c(e,$(r,4),s,f,Jt)}function $E(e,r,s){var c=H(e)?K_:jc,f=arguments.length<3;return c(e,$(r,4),s,f,nl)}function FE(e,r){var s=H(e)?zt:il;return s(e,as($(r,3)))}function jE(e){var r=H(e)?Qc:P1;return r(e)}function ME(e,r,s){(s?$e(e,r,s):r===t)?r=1:r=U(r);var c=H(e)?u1:T1;return c(e,r)}function GE(e){var r=H(e)?a1:N1;return r(e)}function HE(e){if(e==null)return 0;if(Be(e))return ls(e)?jr(e):e.length;var r=Te(e);return r==ft||r==ht?e.size:Vo(e).length}function BE(e,r,s){var c=H(e)?Io:q1;return s&&$e(e,r,s)&&(r=t),c(e,$(r,3))}var UE=V(function(e,r){if(e==null)return[];var s=r.length;return s>1&&$e(e,r[0],r[1])?r=[]:s>2&&$e(r[0],r[1],r[2])&&(r=[r[0]]),dl(e,Ce(r,1),[])}),os=S0||function(){return we.Date.now()};function WE(e,r){if(typeof r!="function")throw new rt(a);return e=U(e),function(){if(--e<1)return r.apply(this,arguments)}}function cf(e,r,s){return r=s?t:r,r=e&&r==null?e.length:r,$t(e,_e,t,t,t,t,r)}function lf(e,r){var s;if(typeof r!="function")throw new rt(a);return e=U(e),function(){return--e>0&&(s=r.apply(this,arguments)),e<=1&&(r=t),s}}var gu=V(function(e,r,s){var c=M;if(s.length){var f=Xt(s,kr(gu));c|=Q}return $t(e,c,r,s,f)}),ff=V(function(e,r,s){var c=M|B;if(s.length){var f=Xt(s,kr(ff));c|=Q}return $t(r,c,e,s,f)});function hf(e,r,s){r=s?t:r;var c=$t(e,X,t,t,t,t,t,r);return c.placeholder=hf.placeholder,c}function pf(e,r,s){r=s?t:r;var c=$t(e,Ie,t,t,t,t,t,r);return c.placeholder=pf.placeholder,c}function df(e,r,s){var c,f,d,v,y,w,A=0,O=!1,R=!1,T=!0;if(typeof e!="function")throw new rt(a);r=ut(r)||0,fe(s)&&(O=!!s.leading,R="maxWait"in s,d=R?Ee(ut(s.maxWait)||0,r):d,T="trailing"in s?!!s.trailing:T);function D(de){var gt=c,Ht=f;return c=f=t,A=de,v=e.apply(Ht,gt),v}function F(de){return A=de,y=jn(z,r),O?D(de):v}function W(de){var gt=de-w,Ht=de-A,Nf=r-gt;return R?Pe(Nf,d-Ht):Nf}function j(de){var gt=de-w,Ht=de-A;return w===t||gt>=r||gt<0||R&&Ht>=d}function z(){var de=os();if(j(de))return J(de);y=jn(z,W(de))}function J(de){return y=t,T&&c?D(de):(c=f=t,v)}function Ze(){y!==t&&Sl(y),A=0,c=w=f=y=t}function Fe(){return y===t?v:J(os())}function Je(){var de=os(),gt=j(de);if(c=arguments,f=this,w=de,gt){if(y===t)return F(w);if(R)return Sl(y),y=jn(z,r),D(w)}return y===t&&(y=jn(z,r)),v}return Je.cancel=Ze,Je.flush=Fe,Je}var kE=V(function(e,r){return rl(e,1,r)}),VE=V(function(e,r,s){return rl(e,ut(r)||0,s)});function zE(e){return $t(e,vn)}function us(e,r){if(typeof e!="function"||r!=null&&typeof r!="function")throw new rt(a);var s=function(){var c=arguments,f=r?r.apply(this,c):c[0],d=s.cache;if(d.has(f))return d.get(f);var v=e.apply(this,c);return s.cache=d.set(f,v)||d,v};return s.cache=new(us.Cache||qt),s}us.Cache=qt;function as(e){if(typeof e!="function")throw new rt(a);return function(){var r=arguments;switch(r.length){case 0:return!e.call(this);case 1:return!e.call(this,r[0]);case 2:return!e.call(this,r[0],r[1]);case 3:return!e.call(this,r[0],r[1],r[2])}return!e.apply(this,r)}}function KE(e){return lf(2,e)}var XE=D1(function(e,r){r=r.length==1&&H(r[0])?le(r[0],Ke($())):le(Ce(r,1),Ke($()));var s=r.length;return V(function(c){for(var f=-1,d=Pe(c.length,s);++f<d;)c[f]=r[f].call(this,c[f]);return ze(e,this,c)})}),vu=V(function(e,r){var s=Xt(r,kr(vu));return $t(e,Q,t,r,s)}),mf=V(function(e,r){var s=Xt(r,kr(mf));return $t(e,ae,t,r,s)}),YE=Ft(function(e,r){return $t(e,Re,t,t,t,r)});function ZE(e,r){if(typeof e!="function")throw new rt(a);return r=r===t?r:U(r),V(e,r)}function JE(e,r){if(typeof e!="function")throw new rt(a);return r=r==null?0:Ee(U(r),0),V(function(s){var c=s[r],f=tr(s,0,r);return c&&Kt(f,c),ze(e,this,f)})}function QE(e,r,s){var c=!0,f=!0;if(typeof e!="function")throw new rt(a);return fe(s)&&(c="leading"in s?!!s.leading:c,f="trailing"in s?!!s.trailing:f),df(e,r,{leading:c,maxWait:r,trailing:f})}function ew(e){return cf(e,1)}function tw(e,r){return vu(tu(r),e)}function rw(){if(!arguments.length)return[];var e=arguments[0];return H(e)?e:[e]}function nw(e){return it(e,S)}function iw(e,r){return r=typeof r=="function"?r:t,it(e,S,r)}function sw(e){return it(e,l|S)}function ow(e,r){return r=typeof r=="function"?r:t,it(e,l|S,r)}function uw(e,r){return r==null||tl(e,r,be(r))}function mt(e,r){return e===r||e!==e&&r!==r}var aw=es(Uo),cw=es(function(e,r){return e>=r}),_r=ul(function(){return arguments}())?ul:function(e){return he(e)&&se.call(e,"callee")&&!zc.call(e,"callee")},H=b.isArray,lw=Ic?Ke(Ic):_1;function Be(e){return e!=null&&cs(e.length)&&!Mt(e)}function pe(e){return he(e)&&Be(e)}function fw(e){return e===!0||e===!1||he(e)&&De(e)==_n}var rr=C0||Iu,hw=Rc?Ke(Rc):y1;function pw(e){return he(e)&&e.nodeType===1&&!Mn(e)}function dw(e){if(e==null)return!0;if(Be(e)&&(H(e)||typeof e=="string"||typeof e.splice=="function"||rr(e)||Vr(e)||_r(e)))return!e.length;var r=Te(e);if(r==ft||r==ht)return!e.size;if(Fn(e))return!Vo(e).length;for(var s in e)if(se.call(e,s))return!1;return!0}function mw(e,r){return qn(e,r)}function gw(e,r,s){s=typeof s=="function"?s:t;var c=s?s(e,r):t;return c===t?qn(e,r,t,s):!!c}function _u(e){if(!he(e))return!1;var r=De(e);return r==wi||r==Mv||typeof e.message=="string"&&typeof e.name=="string"&&!Mn(e)}function vw(e){return typeof e=="number"&&Xc(e)}function Mt(e){if(!fe(e))return!1;var r=De(e);return r==bi||r==rc||r==jv||r==Hv}function gf(e){return typeof e=="number"&&e==U(e)}function cs(e){return typeof e=="number"&&e>-1&&e%1==0&&e<=Vt}function fe(e){var r=typeof e;return e!=null&&(r=="object"||r=="function")}function he(e){return e!=null&&typeof e=="object"}var vf=Pc?Ke(Pc):w1;function _w(e,r){return e===r||ko(e,r,au(r))}function yw(e,r,s){return s=typeof s=="function"?s:t,ko(e,r,au(r),s)}function Ew(e){return _f(e)&&e!=+e}function ww(e){if(iy(e))throw new G(o);return al(e)}function bw(e){return e===null}function Sw(e){return e==null}function _f(e){return typeof e=="number"||he(e)&&De(e)==En}function Mn(e){if(!he(e)||De(e)!=Lt)return!1;var r=$i(e);if(r===null)return!0;var s=se.call(r,"constructor")&&r.constructor;return typeof s=="function"&&s instanceof s&&Li.call(s)==y0}var yu=Tc?Ke(Tc):b1;function xw(e){return gf(e)&&e>=-Vt&&e<=Vt}var yf=Lc?Ke(Lc):S1;function ls(e){return typeof e=="string"||!H(e)&&he(e)&&De(e)==bn}function Ye(e){return typeof e=="symbol"||he(e)&&De(e)==Si}var Vr=Nc?Ke(Nc):x1;function Cw(e){return e===t}function Aw(e){return he(e)&&Te(e)==Sn}function Ow(e){return he(e)&&De(e)==Uv}var Iw=es(zo),Rw=es(function(e,r){return e<=r});function Ef(e){if(!e)return[];if(Be(e))return ls(e)?pt(e):He(e);if(An&&e[An])return u0(e[An]());var r=Te(e),s=r==ft?qo:r==ht?Ri:zr;return s(e)}function Gt(e){if(!e)return e===0?e:0;if(e=ut(e),e===cr||e===-cr){var r=e<0?-1:1;return r*qv}return e===e?e:0}function U(e){var r=Gt(e),s=r%1;return r===r?s?r-s:r:0}function wf(e){return e?dr(U(e),0,wt):0}function ut(e){if(typeof e=="number")return e;if(Ye(e))return yi;if(fe(e)){var r=typeof e.valueOf=="function"?e.valueOf():e;e=fe(r)?r+"":r}if(typeof e!="string")return e===0?e:+e;e=Mc(e);var s=l_.test(e);return s||h_.test(e)?W_(e.slice(2),s?2:8):c_.test(e)?yi:+e}function bf(e){return St(e,Ue(e))}function Pw(e){return e?dr(U(e),-Vt,Vt):e===0?e:0}function ie(e){return e==null?"":Xe(e)}var Tw=Ur(function(e,r){if(Fn(r)||Be(r)){St(r,be(r),e);return}for(var s in r)se.call(r,s)&&Tn(e,s,r[s])}),Sf=Ur(function(e,r){St(r,Ue(r),e)}),fs=Ur(function(e,r,s,c){St(r,Ue(r),e,c)}),Lw=Ur(function(e,r,s,c){St(r,be(r),e,c)}),Nw=Ft(Go);function qw(e,r){var s=Br(e);return r==null?s:el(s,r)}var Dw=V(function(e,r){e=oe(e);var s=-1,c=r.length,f=c>2?r[2]:t;for(f&&$e(r[0],r[1],f)&&(c=1);++s<c;)for(var d=r[s],v=Ue(d),y=-1,w=v.length;++y<w;){var A=v[y],O=e[A];(O===t||mt(O,Mr[A])&&!se.call(e,A))&&(e[A]=d[A])}return e}),$w=V(function(e){return e.push(t,Ml),ze(xf,t,e)});function Fw(e,r){return Dc(e,$(r,3),bt)}function jw(e,r){return Dc(e,$(r,3),Bo)}function Mw(e,r){return e==null?e:Ho(e,$(r,3),Ue)}function Gw(e,r){return e==null?e:sl(e,$(r,3),Ue)}function Hw(e,r){return e&&bt(e,$(r,3))}function Bw(e,r){return e&&Bo(e,$(r,3))}function Uw(e){return e==null?[]:Vi(e,be(e))}function Ww(e){return e==null?[]:Vi(e,Ue(e))}function Eu(e,r,s){var c=e==null?t:mr(e,r);return c===t?s:c}function kw(e,r){return e!=null&&Bl(e,r,d1)}function wu(e,r){return e!=null&&Bl(e,r,m1)}var Vw=ql(function(e,r,s){r!=null&&typeof r.toString!="function"&&(r=Ni.call(r)),e[r]=s},Su(We)),zw=ql(function(e,r,s){r!=null&&typeof r.toString!="function"&&(r=Ni.call(r)),se.call(e,r)?e[r].push(s):e[r]=[s]},$),Kw=V(Nn);function be(e){return Be(e)?Jc(e):Vo(e)}function Ue(e){return Be(e)?Jc(e,!0):C1(e)}function Xw(e,r){var s={};return r=$(r,3),bt(e,function(c,f,d){Dt(s,r(c,f,d),c)}),s}function Yw(e,r){var s={};return r=$(r,3),bt(e,function(c,f,d){Dt(s,f,r(c,f,d))}),s}var Zw=Ur(function(e,r,s){zi(e,r,s)}),xf=Ur(function(e,r,s,c){zi(e,r,s,c)}),Jw=Ft(function(e,r){var s={};if(e==null)return s;var c=!1;r=le(r,function(d){return d=er(d,e),c||(c=d.length>1),d}),St(e,ou(e),s),c&&(s=it(s,l|_|S,V1));for(var f=r.length;f--;)Jo(s,r[f]);return s});function Qw(e,r){return Cf(e,as($(r)))}var eb=Ft(function(e,r){return e==null?{}:O1(e,r)});function Cf(e,r){if(e==null)return{};var s=le(ou(e),function(c){return[c]});return r=$(r),ml(e,s,function(c,f){return r(c,f[0])})}function tb(e,r,s){r=er(r,e);var c=-1,f=r.length;for(f||(f=1,e=t);++c<f;){var d=e==null?t:e[xt(r[c])];d===t&&(c=f,d=s),e=Mt(d)?d.call(e):d}return e}function rb(e,r,s){return e==null?e:Dn(e,r,s)}function nb(e,r,s,c){return c=typeof c=="function"?c:t,e==null?e:Dn(e,r,s,c)}var Af=Fl(be),Of=Fl(Ue);function ib(e,r,s){var c=H(e),f=c||rr(e)||Vr(e);if(r=$(r,4),s==null){var d=e&&e.constructor;f?s=c?new d:[]:fe(e)?s=Mt(d)?Br($i(e)):{}:s={}}return(f?tt:bt)(e,function(v,y,w){return r(s,v,y,w)}),s}function sb(e,r){return e==null?!0:Jo(e,r)}function ob(e,r,s){return e==null?e:El(e,r,tu(s))}function ub(e,r,s,c){return c=typeof c=="function"?c:t,e==null?e:El(e,r,tu(s),c)}function zr(e){return e==null?[]:No(e,be(e))}function ab(e){return e==null?[]:No(e,Ue(e))}function cb(e,r,s){return s===t&&(s=r,r=t),s!==t&&(s=ut(s),s=s===s?s:0),r!==t&&(r=ut(r),r=r===r?r:0),dr(ut(e),r,s)}function lb(e,r,s){return r=Gt(r),s===t?(s=r,r=0):s=Gt(s),e=ut(e),g1(e,r,s)}function fb(e,r,s){if(s&&typeof s!="boolean"&&$e(e,r,s)&&(r=s=t),s===t&&(typeof r=="boolean"?(s=r,r=t):typeof e=="boolean"&&(s=e,e=t)),e===t&&r===t?(e=0,r=1):(e=Gt(e),r===t?(r=e,e=0):r=Gt(r)),e>r){var c=e;e=r,r=c}if(s||e%1||r%1){var f=Yc();return Pe(e+f*(r-e+U_("1e-"+((f+"").length-1))),r)}return Xo(e,r)}var hb=Wr(function(e,r,s){return r=r.toLowerCase(),e+(s?If(r):r)});function If(e){return bu(ie(e).toLowerCase())}function Rf(e){return e=ie(e),e&&e.replace(d_,r0).replace(N_,"")}function pb(e,r,s){e=ie(e),r=Xe(r);var c=e.length;s=s===t?c:dr(U(s),0,c);var f=s;return s-=r.length,s>=0&&e.slice(s,f)==r}function db(e){return e=ie(e),e&&Kv.test(e)?e.replace(sc,n0):e}function mb(e){return e=ie(e),e&&e_.test(e)?e.replace(vo,"\\$&"):e}var gb=Wr(function(e,r,s){return e+(s?"-":"")+r.toLowerCase()}),vb=Wr(function(e,r,s){return e+(s?" ":"")+r.toLowerCase()}),_b=Tl("toLowerCase");function yb(e,r,s){e=ie(e),r=U(r);var c=r?jr(e):0;if(!r||c>=r)return e;var f=(r-c)/2;return Qi(Gi(f),s)+e+Qi(Mi(f),s)}function Eb(e,r,s){e=ie(e),r=U(r);var c=r?jr(e):0;return r&&c<r?e+Qi(r-c,s):e}function wb(e,r,s){e=ie(e),r=U(r);var c=r?jr(e):0;return r&&c<r?Qi(r-c,s)+e:e}function bb(e,r,s){return s||r==null?r=0:r&&(r=+r),R0(ie(e).replace(_o,""),r||0)}function Sb(e,r,s){return(s?$e(e,r,s):r===t)?r=1:r=U(r),Yo(ie(e),r)}function xb(){var e=arguments,r=ie(e[0]);return e.length<3?r:r.replace(e[1],e[2])}var Cb=Wr(function(e,r,s){return e+(s?"_":"")+r.toLowerCase()});function Ab(e,r,s){return s&&typeof s!="number"&&$e(e,r,s)&&(r=s=t),s=s===t?wt:s>>>0,s?(e=ie(e),e&&(typeof r=="string"||r!=null&&!yu(r))&&(r=Xe(r),!r&&Fr(e))?tr(pt(e),0,s):e.split(r,s)):[]}var Ob=Wr(function(e,r,s){return e+(s?" ":"")+bu(r)});function Ib(e,r,s){return e=ie(e),s=s==null?0:dr(U(s),0,e.length),r=Xe(r),e.slice(s,s+r.length)==r}function Rb(e,r,s){var c=p.templateSettings;s&&$e(e,r,s)&&(r=t),e=ie(e),r=fs({},r,c,jl);var f=fs({},r.imports,c.imports,jl),d=be(f),v=No(f,d),y,w,A=0,O=r.interpolate||xi,R="__p += '",T=Do((r.escape||xi).source+"|"+O.source+"|"+(O===oc?a_:xi).source+"|"+(r.evaluate||xi).source+"|$","g"),D="//# sourceURL="+(se.call(r,"sourceURL")?(r.sourceURL+"").replace(/\s/g," "):"lodash.templateSources["+ ++j_+"]")+`
18
- `;e.replace(T,function(j,z,J,Ze,Fe,Je){return J||(J=Ze),R+=e.slice(A,Je).replace(m_,i0),z&&(y=!0,R+=`' +
19
- __e(`+z+`) +
20
- '`),Fe&&(w=!0,R+=`';
21
- `+Fe+`;
22
- __p += '`),J&&(R+=`' +
23
- ((__t = (`+J+`)) == null ? '' : __t) +
24
- '`),A=Je+j.length,j}),R+=`';
25
- `;var F=se.call(r,"variable")&&r.variable;if(!F)R=`with (obj) {
26
- `+R+`
12
+ `)}helpInformation(){let r=[];if(this._description){r=[this._description,""];let _=this._argsDescription;if(_&&this._args.length){let c=this.padWidth(),S=(process.stdout.columns||80)-c-5;r.push("Arguments:"),this._args.forEach(R=>{r.push(" "+Wo(R.name,c)+" "+mc(_[R.name]||"",S,c+4))}),r.push("")}}let n=this._name;this._aliases[0]&&(n=n+"|"+this._aliases[0]);let o="";for(let _=this.parent;_;_=_.parent)o=_.name()+" "+o;let a=["Usage: "+o+n+" "+this.usage(),""],u=[],d=this.commandHelp();d&&(u=[d]);let m=[];return(this._hasHelpOption||this.options.length>0)&&(m=["Options:",""+this.optionHelp().replace(/^/gm," "),""]),a.concat(r).concat(m).concat(u).join(`
13
+ `)}outputHelp(r){r||(r=o=>o);let n=r(this.helpInformation());if(typeof n!="string"&&!Buffer.isBuffer(n))throw new Error("outputHelp callback must return a string or a Buffer");process.stdout.write(n),this.emit(this._helpLongFlag)}helpOption(r,n){if(typeof r=="boolean")return this._hasHelpOption=r,this;this._helpFlags=r||this._helpFlags,this._helpDescription=n||this._helpDescription;let o=Ec(this._helpFlags);return this._helpShortFlag=o.shortFlag,this._helpLongFlag=o.longFlag,this}help(r){this.outputHelp(r),this._exit(process.exitCode||0,"commander.help","(outputHelp)")}_helpAndError(){this.outputHelp(),this._exit(1,"commander.help","(outputHelp)")}};dr=bc.exports=new An;dr.program=dr;dr.Command=An;dr.Option=Bi;dr.CommanderError=On;function tE(i){return i.split("-").reduce((r,n)=>r+n[0].toUpperCase()+n.slice(1))}function Wo(i,r){let n=Math.max(0,r-i.length);return i+Array(n+1).join(" ")}function mc(i,r,n){let o=new RegExp(".{1,"+(r-1)+"}([\\s\u200B]|$)|[^\\s\u200B]+?([\\s\u200B]|$)","g");return(i.match(o)||[]).map((u,d)=>(u.slice(-1)===`
14
+ `&&(u=u.slice(0,u.length-1)),(d>0&&n?Array(n+1).join(" "):"")+u.trimRight())).join(`
15
+ `)}function vc(i,r,n){return i.match(/[\n]\s+/)||r<40?i:mc(i,r,n)}function _c(i,r){i._hasHelpOption&&r.find(o=>o===i._helpLongFlag||o===i._helpShortFlag)&&(i.outputHelp(),i._exit(0,"commander.helpDisplayed","(outputHelp)"))}function yc(i){let r=i.name+(i.variadic===!0?"...":"");return i.required?"<"+r+">":"["+r+"]"}function Ec(i){let r,n,o=i.split(/[ |,]+/);return o.length>1&&!/^[[<]/.test(o[1])&&(r=o.shift()),n=o.shift(),!r&&/^-[^-]$/.test(n)&&(r=n,n=void 0),{shortFlag:r,longFlag:n}}function wc(i){return i.map(r=>{if(!r.startsWith("--inspect"))return r;let n,o="127.0.0.1",a="9229",u;return(u=r.match(/^(--inspect(-brk)?)$/))!==null?n=u[1]:(u=r.match(/^(--inspect(-brk|-port)?)=([^:]+)$/))!==null?(n=u[1],/^\d+$/.test(u[3])?a=u[3]:o=u[3]):(u=r.match(/^(--inspect(-brk|-port)?)=([^:]+):(\d+)$/))!==null&&(n=u[1],o=u[3],a=u[4]),n&&a!=="0"?`${n}=${o}:${parseInt(a)+1}`:r})}});var Rn=I((jC,Sc)=>{var rE="2.0.0",nE=256,iE=Number.MAX_SAFE_INTEGER||9007199254740991,sE=16;Sc.exports={SEMVER_SPEC_VERSION:rE,MAX_LENGTH:nE,MAX_SAFE_INTEGER:iE,MAX_SAFE_COMPONENT_LENGTH:sE}});var In=I((HC,Cc)=>{var oE=typeof process=="object"&&process.env&&process.env.NODE_DEBUG&&/\bsemver\b/i.test(process.env.NODE_DEBUG)?(...i)=>console.error("SEMVER",...i):()=>{};Cc.exports=oE});var gr=I((tr,xc)=>{var{MAX_SAFE_COMPONENT_LENGTH:ko}=Rn(),uE=In();tr=xc.exports={};var aE=tr.re=[],D=tr.src=[],N=tr.t={},lE=0,B=(i,r,n)=>{let o=lE++;uE(o,r),N[i]=o,D[o]=r,aE[o]=new RegExp(r,n?"g":void 0)};B("NUMERICIDENTIFIER","0|[1-9]\\d*");B("NUMERICIDENTIFIERLOOSE","[0-9]+");B("NONNUMERICIDENTIFIER","\\d*[a-zA-Z-][a-zA-Z0-9-]*");B("MAINVERSION",`(${D[N.NUMERICIDENTIFIER]})\\.(${D[N.NUMERICIDENTIFIER]})\\.(${D[N.NUMERICIDENTIFIER]})`);B("MAINVERSIONLOOSE",`(${D[N.NUMERICIDENTIFIERLOOSE]})\\.(${D[N.NUMERICIDENTIFIERLOOSE]})\\.(${D[N.NUMERICIDENTIFIERLOOSE]})`);B("PRERELEASEIDENTIFIER",`(?:${D[N.NUMERICIDENTIFIER]}|${D[N.NONNUMERICIDENTIFIER]})`);B("PRERELEASEIDENTIFIERLOOSE",`(?:${D[N.NUMERICIDENTIFIERLOOSE]}|${D[N.NONNUMERICIDENTIFIER]})`);B("PRERELEASE",`(?:-(${D[N.PRERELEASEIDENTIFIER]}(?:\\.${D[N.PRERELEASEIDENTIFIER]})*))`);B("PRERELEASELOOSE",`(?:-?(${D[N.PRERELEASEIDENTIFIERLOOSE]}(?:\\.${D[N.PRERELEASEIDENTIFIERLOOSE]})*))`);B("BUILDIDENTIFIER","[0-9A-Za-z-]+");B("BUILD",`(?:\\+(${D[N.BUILDIDENTIFIER]}(?:\\.${D[N.BUILDIDENTIFIER]})*))`);B("FULLPLAIN",`v?${D[N.MAINVERSION]}${D[N.PRERELEASE]}?${D[N.BUILD]}?`);B("FULL",`^${D[N.FULLPLAIN]}$`);B("LOOSEPLAIN",`[v=\\s]*${D[N.MAINVERSIONLOOSE]}${D[N.PRERELEASELOOSE]}?${D[N.BUILD]}?`);B("LOOSE",`^${D[N.LOOSEPLAIN]}$`);B("GTLT","((?:<|>)?=?)");B("XRANGEIDENTIFIERLOOSE",`${D[N.NUMERICIDENTIFIERLOOSE]}|x|X|\\*`);B("XRANGEIDENTIFIER",`${D[N.NUMERICIDENTIFIER]}|x|X|\\*`);B("XRANGEPLAIN",`[v=\\s]*(${D[N.XRANGEIDENTIFIER]})(?:\\.(${D[N.XRANGEIDENTIFIER]})(?:\\.(${D[N.XRANGEIDENTIFIER]})(?:${D[N.PRERELEASE]})?${D[N.BUILD]}?)?)?`);B("XRANGEPLAINLOOSE",`[v=\\s]*(${D[N.XRANGEIDENTIFIERLOOSE]})(?:\\.(${D[N.XRANGEIDENTIFIERLOOSE]})(?:\\.(${D[N.XRANGEIDENTIFIERLOOSE]})(?:${D[N.PRERELEASELOOSE]})?${D[N.BUILD]}?)?)?`);B("XRANGE",`^${D[N.GTLT]}\\s*${D[N.XRANGEPLAIN]}$`);B("XRANGELOOSE",`^${D[N.GTLT]}\\s*${D[N.XRANGEPLAINLOOSE]}$`);B("COERCE",`(^|[^\\d])(\\d{1,${ko}})(?:\\.(\\d{1,${ko}}))?(?:\\.(\\d{1,${ko}}))?(?:$|[^\\d])`);B("COERCERTL",D[N.COERCE],!0);B("LONETILDE","(?:~>?)");B("TILDETRIM",`(\\s*)${D[N.LONETILDE]}\\s+`,!0);tr.tildeTrimReplace="$1~";B("TILDE",`^${D[N.LONETILDE]}${D[N.XRANGEPLAIN]}$`);B("TILDELOOSE",`^${D[N.LONETILDE]}${D[N.XRANGEPLAINLOOSE]}$`);B("LONECARET","(?:\\^)");B("CARETTRIM",`(\\s*)${D[N.LONECARET]}\\s+`,!0);tr.caretTrimReplace="$1^";B("CARET",`^${D[N.LONECARET]}${D[N.XRANGEPLAIN]}$`);B("CARETLOOSE",`^${D[N.LONECARET]}${D[N.XRANGEPLAINLOOSE]}$`);B("COMPARATORLOOSE",`^${D[N.GTLT]}\\s*(${D[N.LOOSEPLAIN]})$|^$`);B("COMPARATOR",`^${D[N.GTLT]}\\s*(${D[N.FULLPLAIN]})$|^$`);B("COMPARATORTRIM",`(\\s*)${D[N.GTLT]}\\s*(${D[N.LOOSEPLAIN]}|${D[N.XRANGEPLAIN]})`,!0);tr.comparatorTrimReplace="$1$2$3";B("HYPHENRANGE",`^\\s*(${D[N.XRANGEPLAIN]})\\s+-\\s+(${D[N.XRANGEPLAIN]})\\s*$`);B("HYPHENRANGELOOSE",`^\\s*(${D[N.XRANGEPLAINLOOSE]})\\s+-\\s+(${D[N.XRANGEPLAINLOOSE]})\\s*$`);B("STAR","(<|>)?=?\\s*\\*");B("GTE0","^\\s*>=\\s*0.0.0\\s*$");B("GTE0PRE","^\\s*>=\\s*0.0.0-0\\s*$")});var Tn=I((UC,Oc)=>{var cE=["includePrerelease","loose","rtl"],fE=i=>i?typeof i!="object"?{loose:!0}:cE.filter(r=>i[r]).reduce((r,n)=>(r[n]=!0,r),{}):{};Oc.exports=fE});var ki=I((GC,Ic)=>{var Ac=/^[0-9]+$/,Rc=(i,r)=>{let n=Ac.test(i),o=Ac.test(r);return n&&o&&(i=+i,r=+r),i===r?0:n&&!o?-1:o&&!n?1:i<r?-1:1},hE=(i,r)=>Rc(r,i);Ic.exports={compareIdentifiers:Rc,rcompareIdentifiers:hE}});var Re=I((WC,Dc)=>{var Vi=In(),{MAX_LENGTH:Tc,MAX_SAFE_INTEGER:zi}=Rn(),{re:Pc,t:Lc}=gr(),pE=Tn(),{compareIdentifiers:Pn}=ki(),ot=class{constructor(r,n){if(n=pE(n),r instanceof ot){if(r.loose===!!n.loose&&r.includePrerelease===!!n.includePrerelease)return r;r=r.version}else if(typeof r!="string")throw new TypeError(`Invalid Version: ${r}`);if(r.length>Tc)throw new TypeError(`version is longer than ${Tc} characters`);Vi("SemVer",r,n),this.options=n,this.loose=!!n.loose,this.includePrerelease=!!n.includePrerelease;let o=r.trim().match(n.loose?Pc[Lc.LOOSE]:Pc[Lc.FULL]);if(!o)throw new TypeError(`Invalid Version: ${r}`);if(this.raw=r,this.major=+o[1],this.minor=+o[2],this.patch=+o[3],this.major>zi||this.major<0)throw new TypeError("Invalid major version");if(this.minor>zi||this.minor<0)throw new TypeError("Invalid minor version");if(this.patch>zi||this.patch<0)throw new TypeError("Invalid patch version");o[4]?this.prerelease=o[4].split(".").map(a=>{if(/^[0-9]+$/.test(a)){let u=+a;if(u>=0&&u<zi)return u}return a}):this.prerelease=[],this.build=o[5]?o[5].split("."):[],this.format()}format(){return this.version=`${this.major}.${this.minor}.${this.patch}`,this.prerelease.length&&(this.version+=`-${this.prerelease.join(".")}`),this.version}toString(){return this.version}compare(r){if(Vi("SemVer.compare",this.version,this.options,r),!(r instanceof ot)){if(typeof r=="string"&&r===this.version)return 0;r=new ot(r,this.options)}return r.version===this.version?0:this.compareMain(r)||this.comparePre(r)}compareMain(r){return r instanceof ot||(r=new ot(r,this.options)),Pn(this.major,r.major)||Pn(this.minor,r.minor)||Pn(this.patch,r.patch)}comparePre(r){if(r instanceof ot||(r=new ot(r,this.options)),this.prerelease.length&&!r.prerelease.length)return-1;if(!this.prerelease.length&&r.prerelease.length)return 1;if(!this.prerelease.length&&!r.prerelease.length)return 0;let n=0;do{let o=this.prerelease[n],a=r.prerelease[n];if(Vi("prerelease compare",n,o,a),o===void 0&&a===void 0)return 0;if(a===void 0)return 1;if(o===void 0)return-1;if(o===a)continue;return Pn(o,a)}while(++n)}compareBuild(r){r instanceof ot||(r=new ot(r,this.options));let n=0;do{let o=this.build[n],a=r.build[n];if(Vi("prerelease compare",n,o,a),o===void 0&&a===void 0)return 0;if(a===void 0)return 1;if(o===void 0)return-1;if(o===a)continue;return Pn(o,a)}while(++n)}inc(r,n){switch(r){case"premajor":this.prerelease.length=0,this.patch=0,this.minor=0,this.major++,this.inc("pre",n);break;case"preminor":this.prerelease.length=0,this.patch=0,this.minor++,this.inc("pre",n);break;case"prepatch":this.prerelease.length=0,this.inc("patch",n),this.inc("pre",n);break;case"prerelease":this.prerelease.length===0&&this.inc("patch",n),this.inc("pre",n);break;case"major":(this.minor!==0||this.patch!==0||this.prerelease.length===0)&&this.major++,this.minor=0,this.patch=0,this.prerelease=[];break;case"minor":(this.patch!==0||this.prerelease.length===0)&&this.minor++,this.patch=0,this.prerelease=[];break;case"patch":this.prerelease.length===0&&this.patch++,this.prerelease=[];break;case"pre":if(this.prerelease.length===0)this.prerelease=[0];else{let o=this.prerelease.length;for(;--o>=0;)typeof this.prerelease[o]=="number"&&(this.prerelease[o]++,o=-2);o===-1&&this.prerelease.push(0)}n&&(this.prerelease[0]===n?isNaN(this.prerelease[1])&&(this.prerelease=[n,0]):this.prerelease=[n,0]);break;default:throw new Error(`invalid increment argument: ${r}`)}return this.format(),this.raw=this.version,this}};Dc.exports=ot});var mr=I((BC,Fc)=>{var{MAX_LENGTH:dE}=Rn(),{re:Nc,t:qc}=gr(),$c=Re(),gE=Tn(),mE=(i,r)=>{if(r=gE(r),i instanceof $c)return i;if(typeof i!="string"||i.length>dE||!(r.loose?Nc[qc.LOOSE]:Nc[qc.FULL]).test(i))return null;try{return new $c(i,r)}catch{return null}};Fc.exports=mE});var jc=I((kC,Mc)=>{var vE=mr(),_E=(i,r)=>{let n=vE(i,r);return n?n.version:null};Mc.exports=_E});var Uc=I((VC,Hc)=>{var yE=mr(),EE=(i,r)=>{let n=yE(i.trim().replace(/^[=v]+/,""),r);return n?n.version:null};Hc.exports=EE});var Wc=I((zC,Gc)=>{var wE=Re(),bE=(i,r,n,o)=>{typeof n=="string"&&(o=n,n=void 0);try{return new wE(i,n).inc(r,o).version}catch{return null}};Gc.exports=bE});var ut=I((XC,kc)=>{var Bc=Re(),SE=(i,r,n)=>new Bc(i,n).compare(new Bc(r,n));kc.exports=SE});var Xi=I((YC,Vc)=>{var CE=ut(),xE=(i,r,n)=>CE(i,r,n)===0;Vc.exports=xE});var Yc=I((KC,Xc)=>{var zc=mr(),OE=Xi(),AE=(i,r)=>{if(OE(i,r))return null;{let n=zc(i),o=zc(r),a=n.prerelease.length||o.prerelease.length,u=a?"pre":"",d=a?"prerelease":"";for(let m in n)if((m==="major"||m==="minor"||m==="patch")&&n[m]!==o[m])return u+m;return d}};Xc.exports=AE});var Zc=I((ZC,Kc)=>{var RE=Re(),IE=(i,r)=>new RE(i,r).major;Kc.exports=IE});var Qc=I((JC,Jc)=>{var TE=Re(),PE=(i,r)=>new TE(i,r).minor;Jc.exports=PE});var tf=I((QC,ef)=>{var LE=Re(),DE=(i,r)=>new LE(i,r).patch;ef.exports=DE});var nf=I((ex,rf)=>{var NE=mr(),qE=(i,r)=>{let n=NE(i,r);return n&&n.prerelease.length?n.prerelease:null};rf.exports=qE});var of=I((tx,sf)=>{var $E=ut(),FE=(i,r,n)=>$E(r,i,n);sf.exports=FE});var af=I((rx,uf)=>{var ME=ut(),jE=(i,r)=>ME(i,r,!0);uf.exports=jE});var Yi=I((nx,cf)=>{var lf=Re(),HE=(i,r,n)=>{let o=new lf(i,n),a=new lf(r,n);return o.compare(a)||o.compareBuild(a)};cf.exports=HE});var hf=I((ix,ff)=>{var UE=Yi(),GE=(i,r)=>i.sort((n,o)=>UE(n,o,r));ff.exports=GE});var df=I((sx,pf)=>{var WE=Yi(),BE=(i,r)=>i.sort((n,o)=>WE(o,n,r));pf.exports=BE});var Ln=I((ox,gf)=>{var kE=ut(),VE=(i,r,n)=>kE(i,r,n)>0;gf.exports=VE});var Ki=I((ux,mf)=>{var zE=ut(),XE=(i,r,n)=>zE(i,r,n)<0;mf.exports=XE});var Vo=I((ax,vf)=>{var YE=ut(),KE=(i,r,n)=>YE(i,r,n)!==0;vf.exports=KE});var Zi=I((lx,_f)=>{var ZE=ut(),JE=(i,r,n)=>ZE(i,r,n)>=0;_f.exports=JE});var Ji=I((cx,yf)=>{var QE=ut(),ew=(i,r,n)=>QE(i,r,n)<=0;yf.exports=ew});var zo=I((fx,Ef)=>{var tw=Xi(),rw=Vo(),nw=Ln(),iw=Zi(),sw=Ki(),ow=Ji(),uw=(i,r,n,o)=>{switch(r){case"===":return typeof i=="object"&&(i=i.version),typeof n=="object"&&(n=n.version),i===n;case"!==":return typeof i=="object"&&(i=i.version),typeof n=="object"&&(n=n.version),i!==n;case"":case"=":case"==":return tw(i,n,o);case"!=":return rw(i,n,o);case">":return nw(i,n,o);case">=":return iw(i,n,o);case"<":return sw(i,n,o);case"<=":return ow(i,n,o);default:throw new TypeError(`Invalid operator: ${r}`)}};Ef.exports=uw});var bf=I((hx,wf)=>{var aw=Re(),lw=mr(),{re:Qi,t:es}=gr(),cw=(i,r)=>{if(i instanceof aw)return i;if(typeof i=="number"&&(i=String(i)),typeof i!="string")return null;r=r||{};let n=null;if(!r.rtl)n=i.match(Qi[es.COERCE]);else{let o;for(;(o=Qi[es.COERCERTL].exec(i))&&(!n||n.index+n[0].length!==i.length);)(!n||o.index+o[0].length!==n.index+n[0].length)&&(n=o),Qi[es.COERCERTL].lastIndex=o.index+o[1].length+o[2].length;Qi[es.COERCERTL].lastIndex=-1}return n===null?null:lw(`${n[2]}.${n[3]||"0"}.${n[4]||"0"}`,r)};wf.exports=cw});var Cf=I((px,Sf)=>{"use strict";Sf.exports=function(i){i.prototype[Symbol.iterator]=function*(){for(let r=this.head;r;r=r.next)yield r.value}}});var Of=I((dx,xf)=>{"use strict";xf.exports=K;K.Node=vr;K.create=K;function K(i){var r=this;if(r instanceof K||(r=new K),r.tail=null,r.head=null,r.length=0,i&&typeof i.forEach=="function")i.forEach(function(a){r.push(a)});else if(arguments.length>0)for(var n=0,o=arguments.length;n<o;n++)r.push(arguments[n]);return r}K.prototype.removeNode=function(i){if(i.list!==this)throw new Error("removing node which does not belong to this list");var r=i.next,n=i.prev;return r&&(r.prev=n),n&&(n.next=r),i===this.head&&(this.head=r),i===this.tail&&(this.tail=n),i.list.length--,i.next=null,i.prev=null,i.list=null,r};K.prototype.unshiftNode=function(i){if(i!==this.head){i.list&&i.list.removeNode(i);var r=this.head;i.list=this,i.next=r,r&&(r.prev=i),this.head=i,this.tail||(this.tail=i),this.length++}};K.prototype.pushNode=function(i){if(i!==this.tail){i.list&&i.list.removeNode(i);var r=this.tail;i.list=this,i.prev=r,r&&(r.next=i),this.tail=i,this.head||(this.head=i),this.length++}};K.prototype.push=function(){for(var i=0,r=arguments.length;i<r;i++)hw(this,arguments[i]);return this.length};K.prototype.unshift=function(){for(var i=0,r=arguments.length;i<r;i++)pw(this,arguments[i]);return this.length};K.prototype.pop=function(){if(!!this.tail){var i=this.tail.value;return this.tail=this.tail.prev,this.tail?this.tail.next=null:this.head=null,this.length--,i}};K.prototype.shift=function(){if(!!this.head){var i=this.head.value;return this.head=this.head.next,this.head?this.head.prev=null:this.tail=null,this.length--,i}};K.prototype.forEach=function(i,r){r=r||this;for(var n=this.head,o=0;n!==null;o++)i.call(r,n.value,o,this),n=n.next};K.prototype.forEachReverse=function(i,r){r=r||this;for(var n=this.tail,o=this.length-1;n!==null;o--)i.call(r,n.value,o,this),n=n.prev};K.prototype.get=function(i){for(var r=0,n=this.head;n!==null&&r<i;r++)n=n.next;if(r===i&&n!==null)return n.value};K.prototype.getReverse=function(i){for(var r=0,n=this.tail;n!==null&&r<i;r++)n=n.prev;if(r===i&&n!==null)return n.value};K.prototype.map=function(i,r){r=r||this;for(var n=new K,o=this.head;o!==null;)n.push(i.call(r,o.value,this)),o=o.next;return n};K.prototype.mapReverse=function(i,r){r=r||this;for(var n=new K,o=this.tail;o!==null;)n.push(i.call(r,o.value,this)),o=o.prev;return n};K.prototype.reduce=function(i,r){var n,o=this.head;if(arguments.length>1)n=r;else if(this.head)o=this.head.next,n=this.head.value;else throw new TypeError("Reduce of empty list with no initial value");for(var a=0;o!==null;a++)n=i(n,o.value,a),o=o.next;return n};K.prototype.reduceReverse=function(i,r){var n,o=this.tail;if(arguments.length>1)n=r;else if(this.tail)o=this.tail.prev,n=this.tail.value;else throw new TypeError("Reduce of empty list with no initial value");for(var a=this.length-1;o!==null;a--)n=i(n,o.value,a),o=o.prev;return n};K.prototype.toArray=function(){for(var i=new Array(this.length),r=0,n=this.head;n!==null;r++)i[r]=n.value,n=n.next;return i};K.prototype.toArrayReverse=function(){for(var i=new Array(this.length),r=0,n=this.tail;n!==null;r++)i[r]=n.value,n=n.prev;return i};K.prototype.slice=function(i,r){r=r||this.length,r<0&&(r+=this.length),i=i||0,i<0&&(i+=this.length);var n=new K;if(r<i||r<0)return n;i<0&&(i=0),r>this.length&&(r=this.length);for(var o=0,a=this.head;a!==null&&o<i;o++)a=a.next;for(;a!==null&&o<r;o++,a=a.next)n.push(a.value);return n};K.prototype.sliceReverse=function(i,r){r=r||this.length,r<0&&(r+=this.length),i=i||0,i<0&&(i+=this.length);var n=new K;if(r<i||r<0)return n;i<0&&(i=0),r>this.length&&(r=this.length);for(var o=this.length,a=this.tail;a!==null&&o>r;o--)a=a.prev;for(;a!==null&&o>i;o--,a=a.prev)n.push(a.value);return n};K.prototype.splice=function(i,r,...n){i>this.length&&(i=this.length-1),i<0&&(i=this.length+i);for(var o=0,a=this.head;a!==null&&o<i;o++)a=a.next;for(var u=[],o=0;a&&o<r;o++)u.push(a.value),a=this.removeNode(a);a===null&&(a=this.tail),a!==this.head&&a!==this.tail&&(a=a.prev);for(var o=0;o<n.length;o++)a=fw(this,a,n[o]);return u};K.prototype.reverse=function(){for(var i=this.head,r=this.tail,n=i;n!==null;n=n.prev){var o=n.prev;n.prev=n.next,n.next=o}return this.head=r,this.tail=i,this};function fw(i,r,n){var o=r===i.head?new vr(n,null,r,i):new vr(n,r,r.next,i);return o.next===null&&(i.tail=o),o.prev===null&&(i.head=o),i.length++,o}function hw(i,r){i.tail=new vr(r,i.tail,null,i),i.head||(i.head=i.tail),i.length++}function pw(i,r){i.head=new vr(r,null,i.head,i),i.tail||(i.tail=i.head),i.length++}function vr(i,r,n,o){if(!(this instanceof vr))return new vr(i,r,n,o);this.list=o,this.value=i,r?(r.next=this,this.prev=r):this.prev=null,n?(n.prev=this,this.next=n):this.next=null}try{Cf()(K)}catch{}});var Df=I((gx,Lf)=>{"use strict";var dw=Of(),_r=Symbol("max"),Ht=Symbol("length"),Gr=Symbol("lengthCalculator"),Dn=Symbol("allowStale"),yr=Symbol("maxAge"),Ut=Symbol("dispose"),Af=Symbol("noDisposeOnSet"),Ee=Symbol("lruList"),mt=Symbol("cache"),Rf=Symbol("updateAgeOnGet"),Xo=()=>1,If=class{constructor(r){if(typeof r=="number"&&(r={max:r}),r||(r={}),r.max&&(typeof r.max!="number"||r.max<0))throw new TypeError("max must be a non-negative number");let n=this[_r]=r.max||1/0,o=r.length||Xo;if(this[Gr]=typeof o!="function"?Xo:o,this[Dn]=r.stale||!1,r.maxAge&&typeof r.maxAge!="number")throw new TypeError("maxAge must be a number");this[yr]=r.maxAge||0,this[Ut]=r.dispose,this[Af]=r.noDisposeOnSet||!1,this[Rf]=r.updateAgeOnGet||!1,this.reset()}set max(r){if(typeof r!="number"||r<0)throw new TypeError("max must be a non-negative number");this[_r]=r||1/0,Nn(this)}get max(){return this[_r]}set allowStale(r){this[Dn]=!!r}get allowStale(){return this[Dn]}set maxAge(r){if(typeof r!="number")throw new TypeError("maxAge must be a non-negative number");this[yr]=r,Nn(this)}get maxAge(){return this[yr]}set lengthCalculator(r){typeof r!="function"&&(r=Xo),r!==this[Gr]&&(this[Gr]=r,this[Ht]=0,this[Ee].forEach(n=>{n.length=this[Gr](n.value,n.key),this[Ht]+=n.length})),Nn(this)}get lengthCalculator(){return this[Gr]}get length(){return this[Ht]}get itemCount(){return this[Ee].length}rforEach(r,n){n=n||this;for(let o=this[Ee].tail;o!==null;){let a=o.prev;Pf(this,r,o,n),o=a}}forEach(r,n){n=n||this;for(let o=this[Ee].head;o!==null;){let a=o.next;Pf(this,r,o,n),o=a}}keys(){return this[Ee].toArray().map(r=>r.key)}values(){return this[Ee].toArray().map(r=>r.value)}reset(){this[Ut]&&this[Ee]&&this[Ee].length&&this[Ee].forEach(r=>this[Ut](r.key,r.value)),this[mt]=new Map,this[Ee]=new dw,this[Ht]=0}dump(){return this[Ee].map(r=>ts(this,r)?!1:{k:r.key,v:r.value,e:r.now+(r.maxAge||0)}).toArray().filter(r=>r)}dumpLru(){return this[Ee]}set(r,n,o){if(o=o||this[yr],o&&typeof o!="number")throw new TypeError("maxAge must be a number");let a=o?Date.now():0,u=this[Gr](n,r);if(this[mt].has(r)){if(u>this[_r])return Wr(this,this[mt].get(r)),!1;let _=this[mt].get(r).value;return this[Ut]&&(this[Af]||this[Ut](r,_.value)),_.now=a,_.maxAge=o,_.value=n,this[Ht]+=u-_.length,_.length=u,this.get(r),Nn(this),!0}let d=new Tf(r,n,u,a,o);return d.length>this[_r]?(this[Ut]&&this[Ut](r,n),!1):(this[Ht]+=d.length,this[Ee].unshift(d),this[mt].set(r,this[Ee].head),Nn(this),!0)}has(r){if(!this[mt].has(r))return!1;let n=this[mt].get(r).value;return!ts(this,n)}get(r){return Yo(this,r,!0)}peek(r){return Yo(this,r,!1)}pop(){let r=this[Ee].tail;return r?(Wr(this,r),r.value):null}del(r){Wr(this,this[mt].get(r))}load(r){this.reset();let n=Date.now();for(let o=r.length-1;o>=0;o--){let a=r[o],u=a.e||0;if(u===0)this.set(a.k,a.v);else{let d=u-n;d>0&&this.set(a.k,a.v,d)}}}prune(){this[mt].forEach((r,n)=>Yo(this,n,!1))}},Yo=(i,r,n)=>{let o=i[mt].get(r);if(o){let a=o.value;if(ts(i,a)){if(Wr(i,o),!i[Dn])return}else n&&(i[Rf]&&(o.value.now=Date.now()),i[Ee].unshiftNode(o));return a.value}},ts=(i,r)=>{if(!r||!r.maxAge&&!i[yr])return!1;let n=Date.now()-r.now;return r.maxAge?n>r.maxAge:i[yr]&&n>i[yr]},Nn=i=>{if(i[Ht]>i[_r])for(let r=i[Ee].tail;i[Ht]>i[_r]&&r!==null;){let n=r.prev;Wr(i,r),r=n}},Wr=(i,r)=>{if(r){let n=r.value;i[Ut]&&i[Ut](n.key,n.value),i[Ht]-=n.length,i[mt].delete(n.key),i[Ee].removeNode(r)}},Tf=class{constructor(r,n,o,a,u){this.key=r,this.value=n,this.length=o,this.now=a,this.maxAge=u||0}},Pf=(i,r,n,o)=>{let a=n.value;ts(i,a)&&(Wr(i,n),i[Dn]||(a=void 0)),a&&r.call(o,a.value,a.key,i)};Lf.exports=If});var at=I((mx,Ff)=>{var Br=class{constructor(r,n){if(n=mw(n),r instanceof Br)return r.loose===!!n.loose&&r.includePrerelease===!!n.includePrerelease?r:new Br(r.raw,n);if(r instanceof Ko)return this.raw=r.value,this.set=[[r]],this.format(),this;if(this.options=n,this.loose=!!n.loose,this.includePrerelease=!!n.includePrerelease,this.raw=r,this.set=r.split(/\s*\|\|\s*/).map(o=>this.parseRange(o.trim())).filter(o=>o.length),!this.set.length)throw new TypeError(`Invalid SemVer Range: ${r}`);if(this.set.length>1){let o=this.set[0];if(this.set=this.set.filter(a=>!qf(a[0])),this.set.length===0)this.set=[o];else if(this.set.length>1){for(let a of this.set)if(a.length===1&&ww(a[0])){this.set=[a];break}}}this.format()}format(){return this.range=this.set.map(r=>r.join(" ").trim()).join("||").trim(),this.range}toString(){return this.range}parseRange(r){r=r.trim();let o=`parseRange:${Object.keys(this.options).join(",")}:${r}`,a=Nf.get(o);if(a)return a;let u=this.options.loose,d=u?Ie[Ce.HYPHENRANGELOOSE]:Ie[Ce.HYPHENRANGE];r=r.replace(d,Pw(this.options.includePrerelease)),he("hyphen replace",r),r=r.replace(Ie[Ce.COMPARATORTRIM],_w),he("comparator trim",r,Ie[Ce.COMPARATORTRIM]),r=r.replace(Ie[Ce.TILDETRIM],yw),r=r.replace(Ie[Ce.CARETTRIM],Ew),r=r.split(/\s+/).join(" ");let m=u?Ie[Ce.COMPARATORLOOSE]:Ie[Ce.COMPARATOR],_=r.split(" ").map(R=>bw(R,this.options)).join(" ").split(/\s+/).map(R=>Tw(R,this.options)).filter(this.options.loose?R=>!!R.match(m):()=>!0).map(R=>new Ko(R,this.options)),c=_.length,v=new Map;for(let R of _){if(qf(R))return[R];v.set(R.value,R)}v.size>1&&v.has("")&&v.delete("");let S=[...v.values()];return Nf.set(o,S),S}intersects(r,n){if(!(r instanceof Br))throw new TypeError("a Range is required");return this.set.some(o=>$f(o,n)&&r.set.some(a=>$f(a,n)&&o.every(u=>a.every(d=>u.intersects(d,n)))))}test(r){if(!r)return!1;if(typeof r=="string")try{r=new vw(r,this.options)}catch{return!1}for(let n=0;n<this.set.length;n++)if(Lw(this.set[n],r,this.options))return!0;return!1}};Ff.exports=Br;var gw=Df(),Nf=new gw({max:1e3}),mw=Tn(),Ko=qn(),he=In(),vw=Re(),{re:Ie,t:Ce,comparatorTrimReplace:_w,tildeTrimReplace:yw,caretTrimReplace:Ew}=gr(),qf=i=>i.value==="<0.0.0-0",ww=i=>i.value==="",$f=(i,r)=>{let n=!0,o=i.slice(),a=o.pop();for(;n&&o.length;)n=o.every(u=>a.intersects(u,r)),a=o.pop();return n},bw=(i,r)=>(he("comp",i,r),i=xw(i,r),he("caret",i),i=Sw(i,r),he("tildes",i),i=Aw(i,r),he("xrange",i),i=Iw(i,r),he("stars",i),i),qe=i=>!i||i.toLowerCase()==="x"||i==="*",Sw=(i,r)=>i.trim().split(/\s+/).map(n=>Cw(n,r)).join(" "),Cw=(i,r)=>{let n=r.loose?Ie[Ce.TILDELOOSE]:Ie[Ce.TILDE];return i.replace(n,(o,a,u,d,m)=>{he("tilde",i,o,a,u,d,m);let _;return qe(a)?_="":qe(u)?_=`>=${a}.0.0 <${+a+1}.0.0-0`:qe(d)?_=`>=${a}.${u}.0 <${a}.${+u+1}.0-0`:m?(he("replaceTilde pr",m),_=`>=${a}.${u}.${d}-${m} <${a}.${+u+1}.0-0`):_=`>=${a}.${u}.${d} <${a}.${+u+1}.0-0`,he("tilde return",_),_})},xw=(i,r)=>i.trim().split(/\s+/).map(n=>Ow(n,r)).join(" "),Ow=(i,r)=>{he("caret",i,r);let n=r.loose?Ie[Ce.CARETLOOSE]:Ie[Ce.CARET],o=r.includePrerelease?"-0":"";return i.replace(n,(a,u,d,m,_)=>{he("caret",i,a,u,d,m,_);let c;return qe(u)?c="":qe(d)?c=`>=${u}.0.0${o} <${+u+1}.0.0-0`:qe(m)?u==="0"?c=`>=${u}.${d}.0${o} <${u}.${+d+1}.0-0`:c=`>=${u}.${d}.0${o} <${+u+1}.0.0-0`:_?(he("replaceCaret pr",_),u==="0"?d==="0"?c=`>=${u}.${d}.${m}-${_} <${u}.${d}.${+m+1}-0`:c=`>=${u}.${d}.${m}-${_} <${u}.${+d+1}.0-0`:c=`>=${u}.${d}.${m}-${_} <${+u+1}.0.0-0`):(he("no pr"),u==="0"?d==="0"?c=`>=${u}.${d}.${m}${o} <${u}.${d}.${+m+1}-0`:c=`>=${u}.${d}.${m}${o} <${u}.${+d+1}.0-0`:c=`>=${u}.${d}.${m} <${+u+1}.0.0-0`),he("caret return",c),c})},Aw=(i,r)=>(he("replaceXRanges",i,r),i.split(/\s+/).map(n=>Rw(n,r)).join(" ")),Rw=(i,r)=>{i=i.trim();let n=r.loose?Ie[Ce.XRANGELOOSE]:Ie[Ce.XRANGE];return i.replace(n,(o,a,u,d,m,_)=>{he("xRange",i,o,a,u,d,m,_);let c=qe(u),v=c||qe(d),S=v||qe(m),R=S;return a==="="&&R&&(a=""),_=r.includePrerelease?"-0":"",c?a===">"||a==="<"?o="<0.0.0-0":o="*":a&&R?(v&&(d=0),m=0,a===">"?(a=">=",v?(u=+u+1,d=0,m=0):(d=+d+1,m=0)):a==="<="&&(a="<",v?u=+u+1:d=+d+1),a==="<"&&(_="-0"),o=`${a+u}.${d}.${m}${_}`):v?o=`>=${u}.0.0${_} <${+u+1}.0.0-0`:S&&(o=`>=${u}.${d}.0${_} <${u}.${+d+1}.0-0`),he("xRange return",o),o})},Iw=(i,r)=>(he("replaceStars",i,r),i.trim().replace(Ie[Ce.STAR],"")),Tw=(i,r)=>(he("replaceGTE0",i,r),i.trim().replace(Ie[r.includePrerelease?Ce.GTE0PRE:Ce.GTE0],"")),Pw=i=>(r,n,o,a,u,d,m,_,c,v,S,R,P)=>(qe(o)?n="":qe(a)?n=`>=${o}.0.0${i?"-0":""}`:qe(u)?n=`>=${o}.${a}.0${i?"-0":""}`:d?n=`>=${n}`:n=`>=${n}${i?"-0":""}`,qe(c)?_="":qe(v)?_=`<${+c+1}.0.0-0`:qe(S)?_=`<${c}.${+v+1}.0-0`:R?_=`<=${c}.${v}.${S}-${R}`:i?_=`<${c}.${v}.${+S+1}-0`:_=`<=${_}`,`${n} ${_}`.trim()),Lw=(i,r,n)=>{for(let o=0;o<i.length;o++)if(!i[o].test(r))return!1;if(r.prerelease.length&&!n.includePrerelease){for(let o=0;o<i.length;o++)if(he(i[o].semver),i[o].semver!==Ko.ANY&&i[o].semver.prerelease.length>0){let a=i[o].semver;if(a.major===r.major&&a.minor===r.minor&&a.patch===r.patch)return!0}return!1}return!0}});var qn=I((vx,Gf)=>{var $n=Symbol("SemVer ANY"),Fn=class{static get ANY(){return $n}constructor(r,n){if(n=Dw(n),r instanceof Fn){if(r.loose===!!n.loose)return r;r=r.value}Jo("comparator",r,n),this.options=n,this.loose=!!n.loose,this.parse(r),this.semver===$n?this.value="":this.value=this.operator+this.semver.version,Jo("comp",this)}parse(r){let n=this.options.loose?Mf[jf.COMPARATORLOOSE]:Mf[jf.COMPARATOR],o=r.match(n);if(!o)throw new TypeError(`Invalid comparator: ${r}`);this.operator=o[1]!==void 0?o[1]:"",this.operator==="="&&(this.operator=""),o[2]?this.semver=new Hf(o[2],this.options.loose):this.semver=$n}toString(){return this.value}test(r){if(Jo("Comparator.test",r,this.options.loose),this.semver===$n||r===$n)return!0;if(typeof r=="string")try{r=new Hf(r,this.options)}catch{return!1}return Zo(r,this.operator,this.semver,this.options)}intersects(r,n){if(!(r instanceof Fn))throw new TypeError("a Comparator is required");if((!n||typeof n!="object")&&(n={loose:!!n,includePrerelease:!1}),this.operator==="")return this.value===""?!0:new Uf(r.value,n).test(this.value);if(r.operator==="")return r.value===""?!0:new Uf(this.value,n).test(r.semver);let o=(this.operator===">="||this.operator===">")&&(r.operator===">="||r.operator===">"),a=(this.operator==="<="||this.operator==="<")&&(r.operator==="<="||r.operator==="<"),u=this.semver.version===r.semver.version,d=(this.operator===">="||this.operator==="<=")&&(r.operator===">="||r.operator==="<="),m=Zo(this.semver,"<",r.semver,n)&&(this.operator===">="||this.operator===">")&&(r.operator==="<="||r.operator==="<"),_=Zo(this.semver,">",r.semver,n)&&(this.operator==="<="||this.operator==="<")&&(r.operator===">="||r.operator===">");return o||a||u&&d||m||_}};Gf.exports=Fn;var Dw=Tn(),{re:Mf,t:jf}=gr(),Zo=zo(),Jo=In(),Hf=Re(),Uf=at()});var Mn=I((_x,Wf)=>{var Nw=at(),qw=(i,r,n)=>{try{r=new Nw(r,n)}catch{return!1}return r.test(i)};Wf.exports=qw});var kf=I((yx,Bf)=>{var $w=at(),Fw=(i,r)=>new $w(i,r).set.map(n=>n.map(o=>o.value).join(" ").trim().split(" "));Bf.exports=Fw});var zf=I((Ex,Vf)=>{var Mw=Re(),jw=at(),Hw=(i,r,n)=>{let o=null,a=null,u=null;try{u=new jw(r,n)}catch{return null}return i.forEach(d=>{u.test(d)&&(!o||a.compare(d)===-1)&&(o=d,a=new Mw(o,n))}),o};Vf.exports=Hw});var Yf=I((wx,Xf)=>{var Uw=Re(),Gw=at(),Ww=(i,r,n)=>{let o=null,a=null,u=null;try{u=new Gw(r,n)}catch{return null}return i.forEach(d=>{u.test(d)&&(!o||a.compare(d)===1)&&(o=d,a=new Uw(o,n))}),o};Xf.exports=Ww});var Jf=I((bx,Zf)=>{var Qo=Re(),Bw=at(),Kf=Ln(),kw=(i,r)=>{i=new Bw(i,r);let n=new Qo("0.0.0");if(i.test(n)||(n=new Qo("0.0.0-0"),i.test(n)))return n;n=null;for(let o=0;o<i.set.length;++o){let a=i.set[o],u=null;a.forEach(d=>{let m=new Qo(d.semver.version);switch(d.operator){case">":m.prerelease.length===0?m.patch++:m.prerelease.push(0),m.raw=m.format();case"":case">=":(!u||Kf(m,u))&&(u=m);break;case"<":case"<=":break;default:throw new Error(`Unexpected operation: ${d.operator}`)}}),u&&(!n||Kf(n,u))&&(n=u)}return n&&i.test(n)?n:null};Zf.exports=kw});var eh=I((Sx,Qf)=>{var Vw=at(),zw=(i,r)=>{try{return new Vw(i,r).range||"*"}catch{return null}};Qf.exports=zw});var rs=I((Cx,ih)=>{var Xw=Re(),th=qn(),{ANY:Yw}=th,Kw=at(),Zw=Mn(),rh=Ln(),nh=Ki(),Jw=Ji(),Qw=Zi(),eb=(i,r,n,o)=>{i=new Xw(i,o),r=new Kw(r,o);let a,u,d,m,_;switch(n){case">":a=rh,u=Jw,d=nh,m=">",_=">=";break;case"<":a=nh,u=Qw,d=rh,m="<",_="<=";break;default:throw new TypeError('Must provide a hilo val of "<" or ">"')}if(Zw(i,r,o))return!1;for(let c=0;c<r.set.length;++c){let v=r.set[c],S=null,R=null;if(v.forEach(P=>{P.semver===Yw&&(P=new th(">=0.0.0")),S=S||P,R=R||P,a(P.semver,S.semver,o)?S=P:d(P.semver,R.semver,o)&&(R=P)}),S.operator===m||S.operator===_||(!R.operator||R.operator===m)&&u(i,R.semver))return!1;if(R.operator===_&&d(i,R.semver))return!1}return!0};ih.exports=eb});var oh=I((xx,sh)=>{var tb=rs(),rb=(i,r,n)=>tb(i,r,">",n);sh.exports=rb});var ah=I((Ox,uh)=>{var nb=rs(),ib=(i,r,n)=>nb(i,r,"<",n);uh.exports=ib});var fh=I((Ax,ch)=>{var lh=at(),sb=(i,r,n)=>(i=new lh(i,n),r=new lh(r,n),i.intersects(r));ch.exports=sb});var ph=I((Rx,hh)=>{var ob=Mn(),ub=ut();hh.exports=(i,r,n)=>{let o=[],a=null,u=null,d=i.sort((v,S)=>ub(v,S,n));for(let v of d)ob(v,r,n)?(u=v,a||(a=v)):(u&&o.push([a,u]),u=null,a=null);a&&o.push([a,null]);let m=[];for(let[v,S]of o)v===S?m.push(v):!S&&v===d[0]?m.push("*"):S?v===d[0]?m.push(`<=${S}`):m.push(`${v} - ${S}`):m.push(`>=${v}`);let _=m.join(" || "),c=typeof r.raw=="string"?r.raw:String(r);return _.length<c.length?_:r}});var _h=I((Ix,vh)=>{var dh=at(),ns=qn(),{ANY:eu}=ns,jn=Mn(),tu=ut(),ab=(i,r,n={})=>{if(i===r)return!0;i=new dh(i,n),r=new dh(r,n);let o=!1;e:for(let a of i.set){for(let u of r.set){let d=lb(a,u,n);if(o=o||d!==null,d)continue e}if(o)return!1}return!0},lb=(i,r,n)=>{if(i===r)return!0;if(i.length===1&&i[0].semver===eu){if(r.length===1&&r[0].semver===eu)return!0;n.includePrerelease?i=[new ns(">=0.0.0-0")]:i=[new ns(">=0.0.0")]}if(r.length===1&&r[0].semver===eu){if(n.includePrerelease)return!0;r=[new ns(">=0.0.0")]}let o=new Set,a,u;for(let P of i)P.operator===">"||P.operator===">="?a=gh(a,P,n):P.operator==="<"||P.operator==="<="?u=mh(u,P,n):o.add(P.semver);if(o.size>1)return null;let d;if(a&&u){if(d=tu(a.semver,u.semver,n),d>0)return null;if(d===0&&(a.operator!==">="||u.operator!=="<="))return null}for(let P of o){if(a&&!jn(P,String(a),n)||u&&!jn(P,String(u),n))return null;for(let Z of r)if(!jn(P,String(Z),n))return!1;return!0}let m,_,c,v,S=u&&!n.includePrerelease&&u.semver.prerelease.length?u.semver:!1,R=a&&!n.includePrerelease&&a.semver.prerelease.length?a.semver:!1;S&&S.prerelease.length===1&&u.operator==="<"&&S.prerelease[0]===0&&(S=!1);for(let P of r){if(v=v||P.operator===">"||P.operator===">=",c=c||P.operator==="<"||P.operator==="<=",a){if(R&&P.semver.prerelease&&P.semver.prerelease.length&&P.semver.major===R.major&&P.semver.minor===R.minor&&P.semver.patch===R.patch&&(R=!1),P.operator===">"||P.operator===">="){if(m=gh(a,P,n),m===P&&m!==a)return!1}else if(a.operator===">="&&!jn(a.semver,String(P),n))return!1}if(u){if(S&&P.semver.prerelease&&P.semver.prerelease.length&&P.semver.major===S.major&&P.semver.minor===S.minor&&P.semver.patch===S.patch&&(S=!1),P.operator==="<"||P.operator==="<="){if(_=mh(u,P,n),_===P&&_!==u)return!1}else if(u.operator==="<="&&!jn(u.semver,String(P),n))return!1}if(!P.operator&&(u||a)&&d!==0)return!1}return!(a&&c&&!u&&d!==0||u&&v&&!a&&d!==0||R||S)},gh=(i,r,n)=>{if(!i)return r;let o=tu(i.semver,r.semver,n);return o>0?i:o<0||r.operator===">"&&i.operator===">="?r:i},mh=(i,r,n)=>{if(!i)return r;let o=tu(i.semver,r.semver,n);return o<0?i:o>0||r.operator==="<"&&i.operator==="<="?r:i};vh.exports=ab});var Eh=I((Tx,yh)=>{var ru=gr();yh.exports={re:ru.re,src:ru.src,tokens:ru.t,SEMVER_SPEC_VERSION:Rn().SEMVER_SPEC_VERSION,SemVer:Re(),compareIdentifiers:ki().compareIdentifiers,rcompareIdentifiers:ki().rcompareIdentifiers,parse:mr(),valid:jc(),clean:Uc(),inc:Wc(),diff:Yc(),major:Zc(),minor:Qc(),patch:tf(),prerelease:nf(),compare:ut(),rcompare:of(),compareLoose:af(),compareBuild:Yi(),sort:hf(),rsort:df(),gt:Ln(),lt:Ki(),eq:Xi(),neq:Vo(),gte:Zi(),lte:Ji(),cmp:zo(),coerce:bf(),Comparator:qn(),Range:at(),satisfies:Mn(),toComparators:kf(),maxSatisfying:zf(),minSatisfying:Yf(),minVersion:Jf(),validRange:eh(),outside:rs(),gtr:oh(),ltr:ah(),intersects:fh(),simplifyRange:ph(),subset:_h()}});var Te=I(Er=>{"use strict";var wh=Er&&Er.__importDefault||function(i){return i&&i.__esModule?i:{default:i}};Object.defineProperty(Er,"__esModule",{value:!0});Er.getCoreVersion=void 0;var bh=wh(require("path")),Sh=wh(require("fs")),cb=Eh(),fb=require("@serverless-devs/core"),nu=bh.default.join(fb.getRootHome(),"cache","core"),Ch=bh.default.join(nu,"package.json");function hb(){if(Sh.default.existsSync(Ch)){var i=require("@serverless-devs/core/package.json").version,r=xh();return cb.gt(i,r)?require("@serverless-devs/core"):require(nu)}return require("@serverless-devs/core")}function xh(){return Sh.default.existsSync(nu)?require(Ch).version:void 0}Er.getCoreVersion=xh;Er.default=hb()});var is=I((kr,Hn)=>{(function(){var i,r="4.17.21",n=200,o="Unsupported core-js use. Try https://npms.io/search?q=ponyfill.",a="Expected a function",u="Invalid `variable` option passed into `_.template`",d="__lodash_hash_undefined__",m=500,_="__lodash_placeholder__",c=1,v=2,S=4,R=1,P=2,Z=1,oe=2,be=4,Y=8,lt=16,ve=32,pe=64,xe=128,We=256,rn=512,It=30,od="...",ud=800,ad=16,Mu=1,ld=2,cd=3,nr=1/0,Bt=9007199254740991,fd=17976931348623157e292,Zn=0/0,vt=4294967295,hd=vt-1,pd=vt>>>1,dd=[["ary",xe],["bind",Z],["bindKey",oe],["curry",Y],["curryRight",lt],["flip",rn],["partial",ve],["partialRight",pe],["rearg",We]],Ar="[object Arguments]",Jn="[object Array]",gd="[object AsyncFunction]",nn="[object Boolean]",sn="[object Date]",md="[object DOMException]",Qn="[object Error]",ei="[object Function]",ju="[object GeneratorFunction]",ct="[object Map]",on="[object Number]",vd="[object Null]",Tt="[object Object]",Hu="[object Promise]",_d="[object Proxy]",un="[object RegExp]",ft="[object Set]",an="[object String]",ti="[object Symbol]",yd="[object Undefined]",ln="[object WeakMap]",Ed="[object WeakSet]",cn="[object ArrayBuffer]",Rr="[object DataView]",ys="[object Float32Array]",Es="[object Float64Array]",ws="[object Int8Array]",bs="[object Int16Array]",Ss="[object Int32Array]",Cs="[object Uint8Array]",xs="[object Uint8ClampedArray]",Os="[object Uint16Array]",As="[object Uint32Array]",wd=/\b__p \+= '';/g,bd=/\b(__p \+=) '' \+/g,Sd=/(__e\(.*?\)|\b__t\)) \+\n'';/g,Uu=/&(?:amp|lt|gt|quot|#39);/g,Gu=/[&<>"']/g,Cd=RegExp(Uu.source),xd=RegExp(Gu.source),Od=/<%-([\s\S]+?)%>/g,Ad=/<%([\s\S]+?)%>/g,Wu=/<%=([\s\S]+?)%>/g,Rd=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,Id=/^\w*$/,Td=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,Rs=/[\\^$.*+?()[\]{}|]/g,Pd=RegExp(Rs.source),Is=/^\s+/,Ld=/\s/,Dd=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,Nd=/\{\n\/\* \[wrapped with (.+)\] \*/,qd=/,? & /,$d=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,Fd=/[()=,{}\[\]\/\s]/,Md=/\\(\\)?/g,jd=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,Bu=/\w*$/,Hd=/^[-+]0x[0-9a-f]+$/i,Ud=/^0b[01]+$/i,Gd=/^\[object .+?Constructor\]$/,Wd=/^0o[0-7]+$/i,Bd=/^(?:0|[1-9]\d*)$/,kd=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,ri=/($^)/,Vd=/['\n\r\u2028\u2029\\]/g,ni="\\ud800-\\udfff",zd="\\u0300-\\u036f",Xd="\\ufe20-\\ufe2f",Yd="\\u20d0-\\u20ff",ku=zd+Xd+Yd,Vu="\\u2700-\\u27bf",zu="a-z\\xdf-\\xf6\\xf8-\\xff",Kd="\\xac\\xb1\\xd7\\xf7",Zd="\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf",Jd="\\u2000-\\u206f",Qd=" \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",Xu="A-Z\\xc0-\\xd6\\xd8-\\xde",Yu="\\ufe0e\\ufe0f",Ku=Kd+Zd+Jd+Qd,Ts="['\u2019]",eg="["+ni+"]",Zu="["+Ku+"]",ii="["+ku+"]",Ju="\\d+",tg="["+Vu+"]",Qu="["+zu+"]",ea="[^"+ni+Ku+Ju+Vu+zu+Xu+"]",Ps="\\ud83c[\\udffb-\\udfff]",rg="(?:"+ii+"|"+Ps+")",ta="[^"+ni+"]",Ls="(?:\\ud83c[\\udde6-\\uddff]){2}",Ds="[\\ud800-\\udbff][\\udc00-\\udfff]",Ir="["+Xu+"]",ra="\\u200d",na="(?:"+Qu+"|"+ea+")",ng="(?:"+Ir+"|"+ea+")",ia="(?:"+Ts+"(?:d|ll|m|re|s|t|ve))?",sa="(?:"+Ts+"(?:D|LL|M|RE|S|T|VE))?",oa=rg+"?",ua="["+Yu+"]?",ig="(?:"+ra+"(?:"+[ta,Ls,Ds].join("|")+")"+ua+oa+")*",sg="\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",og="\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])",aa=ua+oa+ig,ug="(?:"+[tg,Ls,Ds].join("|")+")"+aa,ag="(?:"+[ta+ii+"?",ii,Ls,Ds,eg].join("|")+")",lg=RegExp(Ts,"g"),cg=RegExp(ii,"g"),Ns=RegExp(Ps+"(?="+Ps+")|"+ag+aa,"g"),fg=RegExp([Ir+"?"+Qu+"+"+ia+"(?="+[Zu,Ir,"$"].join("|")+")",ng+"+"+sa+"(?="+[Zu,Ir+na,"$"].join("|")+")",Ir+"?"+na+"+"+ia,Ir+"+"+sa,og,sg,Ju,ug].join("|"),"g"),hg=RegExp("["+ra+ni+ku+Yu+"]"),pg=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,dg=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],gg=-1,se={};se[ys]=se[Es]=se[ws]=se[bs]=se[Ss]=se[Cs]=se[xs]=se[Os]=se[As]=!0,se[Ar]=se[Jn]=se[cn]=se[nn]=se[Rr]=se[sn]=se[Qn]=se[ei]=se[ct]=se[on]=se[Tt]=se[un]=se[ft]=se[an]=se[ln]=!1;var ne={};ne[Ar]=ne[Jn]=ne[cn]=ne[Rr]=ne[nn]=ne[sn]=ne[ys]=ne[Es]=ne[ws]=ne[bs]=ne[Ss]=ne[ct]=ne[on]=ne[Tt]=ne[un]=ne[ft]=ne[an]=ne[ti]=ne[Cs]=ne[xs]=ne[Os]=ne[As]=!0,ne[Qn]=ne[ei]=ne[ln]=!1;var mg={\u00C0:"A",\u00C1:"A",\u00C2:"A",\u00C3:"A",\u00C4:"A",\u00C5:"A",\u00E0:"a",\u00E1:"a",\u00E2:"a",\u00E3:"a",\u00E4:"a",\u00E5:"a",\u00C7:"C",\u00E7:"c",\u00D0:"D",\u00F0:"d",\u00C8:"E",\u00C9:"E",\u00CA:"E",\u00CB:"E",\u00E8:"e",\u00E9:"e",\u00EA:"e",\u00EB:"e",\u00CC:"I",\u00CD:"I",\u00CE:"I",\u00CF:"I",\u00EC:"i",\u00ED:"i",\u00EE:"i",\u00EF:"i",\u00D1:"N",\u00F1:"n",\u00D2:"O",\u00D3:"O",\u00D4:"O",\u00D5:"O",\u00D6:"O",\u00D8:"O",\u00F2:"o",\u00F3:"o",\u00F4:"o",\u00F5:"o",\u00F6:"o",\u00F8:"o",\u00D9:"U",\u00DA:"U",\u00DB:"U",\u00DC:"U",\u00F9:"u",\u00FA:"u",\u00FB:"u",\u00FC:"u",\u00DD:"Y",\u00FD:"y",\u00FF:"y",\u00C6:"Ae",\u00E6:"ae",\u00DE:"Th",\u00FE:"th",\u00DF:"ss",\u0100:"A",\u0102:"A",\u0104:"A",\u0101:"a",\u0103:"a",\u0105:"a",\u0106:"C",\u0108:"C",\u010A:"C",\u010C:"C",\u0107:"c",\u0109:"c",\u010B:"c",\u010D:"c",\u010E:"D",\u0110:"D",\u010F:"d",\u0111:"d",\u0112:"E",\u0114:"E",\u0116:"E",\u0118:"E",\u011A:"E",\u0113:"e",\u0115:"e",\u0117:"e",\u0119:"e",\u011B:"e",\u011C:"G",\u011E:"G",\u0120:"G",\u0122:"G",\u011D:"g",\u011F:"g",\u0121:"g",\u0123:"g",\u0124:"H",\u0126:"H",\u0125:"h",\u0127:"h",\u0128:"I",\u012A:"I",\u012C:"I",\u012E:"I",\u0130:"I",\u0129:"i",\u012B:"i",\u012D:"i",\u012F:"i",\u0131:"i",\u0134:"J",\u0135:"j",\u0136:"K",\u0137:"k",\u0138:"k",\u0139:"L",\u013B:"L",\u013D:"L",\u013F:"L",\u0141:"L",\u013A:"l",\u013C:"l",\u013E:"l",\u0140:"l",\u0142:"l",\u0143:"N",\u0145:"N",\u0147:"N",\u014A:"N",\u0144:"n",\u0146:"n",\u0148:"n",\u014B:"n",\u014C:"O",\u014E:"O",\u0150:"O",\u014D:"o",\u014F:"o",\u0151:"o",\u0154:"R",\u0156:"R",\u0158:"R",\u0155:"r",\u0157:"r",\u0159:"r",\u015A:"S",\u015C:"S",\u015E:"S",\u0160:"S",\u015B:"s",\u015D:"s",\u015F:"s",\u0161:"s",\u0162:"T",\u0164:"T",\u0166:"T",\u0163:"t",\u0165:"t",\u0167:"t",\u0168:"U",\u016A:"U",\u016C:"U",\u016E:"U",\u0170:"U",\u0172:"U",\u0169:"u",\u016B:"u",\u016D:"u",\u016F:"u",\u0171:"u",\u0173:"u",\u0174:"W",\u0175:"w",\u0176:"Y",\u0177:"y",\u0178:"Y",\u0179:"Z",\u017B:"Z",\u017D:"Z",\u017A:"z",\u017C:"z",\u017E:"z",\u0132:"IJ",\u0133:"ij",\u0152:"Oe",\u0153:"oe",\u0149:"'n",\u017F:"s"},vg={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;"},_g={"&amp;":"&","&lt;":"<","&gt;":">","&quot;":'"',"&#39;":"'"},yg={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},Eg=parseFloat,wg=parseInt,la=typeof global=="object"&&global&&global.Object===Object&&global,bg=typeof self=="object"&&self&&self.Object===Object&&self,_e=la||bg||Function("return this")(),qs=typeof kr=="object"&&kr&&!kr.nodeType&&kr,ir=qs&&typeof Hn=="object"&&Hn&&!Hn.nodeType&&Hn,ca=ir&&ir.exports===qs,$s=ca&&la.process,Je=function(){try{var E=ir&&ir.require&&ir.require("util").types;return E||$s&&$s.binding&&$s.binding("util")}catch{}}(),fa=Je&&Je.isArrayBuffer,ha=Je&&Je.isDate,pa=Je&&Je.isMap,da=Je&&Je.isRegExp,ga=Je&&Je.isSet,ma=Je&&Je.isTypedArray;function Be(E,C,b){switch(b.length){case 0:return E.call(C);case 1:return E.call(C,b[0]);case 2:return E.call(C,b[0],b[1]);case 3:return E.call(C,b[0],b[1],b[2])}return E.apply(C,b)}function Sg(E,C,b,L){for(var j=-1,J=E==null?0:E.length;++j<J;){var ge=E[j];C(L,ge,b(ge),E)}return L}function Qe(E,C){for(var b=-1,L=E==null?0:E.length;++b<L&&C(E[b],b,E)!==!1;);return E}function Cg(E,C){for(var b=E==null?0:E.length;b--&&C(E[b],b,E)!==!1;);return E}function va(E,C){for(var b=-1,L=E==null?0:E.length;++b<L;)if(!C(E[b],b,E))return!1;return!0}function kt(E,C){for(var b=-1,L=E==null?0:E.length,j=0,J=[];++b<L;){var ge=E[b];C(ge,b,E)&&(J[j++]=ge)}return J}function si(E,C){var b=E==null?0:E.length;return!!b&&Tr(E,C,0)>-1}function Fs(E,C,b){for(var L=-1,j=E==null?0:E.length;++L<j;)if(b(C,E[L]))return!0;return!1}function ue(E,C){for(var b=-1,L=E==null?0:E.length,j=Array(L);++b<L;)j[b]=C(E[b],b,E);return j}function Vt(E,C){for(var b=-1,L=C.length,j=E.length;++b<L;)E[j+b]=C[b];return E}function Ms(E,C,b,L){var j=-1,J=E==null?0:E.length;for(L&&J&&(b=E[++j]);++j<J;)b=C(b,E[j],j,E);return b}function xg(E,C,b,L){var j=E==null?0:E.length;for(L&&j&&(b=E[--j]);j--;)b=C(b,E[j],j,E);return b}function js(E,C){for(var b=-1,L=E==null?0:E.length;++b<L;)if(C(E[b],b,E))return!0;return!1}var Og=Hs("length");function Ag(E){return E.split("")}function Rg(E){return E.match($d)||[]}function _a(E,C,b){var L;return b(E,function(j,J,ge){if(C(j,J,ge))return L=J,!1}),L}function oi(E,C,b,L){for(var j=E.length,J=b+(L?1:-1);L?J--:++J<j;)if(C(E[J],J,E))return J;return-1}function Tr(E,C,b){return C===C?Hg(E,C,b):oi(E,ya,b)}function Ig(E,C,b,L){for(var j=b-1,J=E.length;++j<J;)if(L(E[j],C))return j;return-1}function ya(E){return E!==E}function Ea(E,C){var b=E==null?0:E.length;return b?Gs(E,C)/b:Zn}function Hs(E){return function(C){return C==null?i:C[E]}}function Us(E){return function(C){return E==null?i:E[C]}}function wa(E,C,b,L,j){return j(E,function(J,ge,re){b=L?(L=!1,J):C(b,J,ge,re)}),b}function Tg(E,C){var b=E.length;for(E.sort(C);b--;)E[b]=E[b].value;return E}function Gs(E,C){for(var b,L=-1,j=E.length;++L<j;){var J=C(E[L]);J!==i&&(b=b===i?J:b+J)}return b}function Ws(E,C){for(var b=-1,L=Array(E);++b<E;)L[b]=C(b);return L}function Pg(E,C){return ue(C,function(b){return[b,E[b]]})}function ba(E){return E&&E.slice(0,Oa(E)+1).replace(Is,"")}function ke(E){return function(C){return E(C)}}function Bs(E,C){return ue(C,function(b){return E[b]})}function fn(E,C){return E.has(C)}function Sa(E,C){for(var b=-1,L=E.length;++b<L&&Tr(C,E[b],0)>-1;);return b}function Ca(E,C){for(var b=E.length;b--&&Tr(C,E[b],0)>-1;);return b}function Lg(E,C){for(var b=E.length,L=0;b--;)E[b]===C&&++L;return L}var Dg=Us(mg),Ng=Us(vg);function qg(E){return"\\"+yg[E]}function $g(E,C){return E==null?i:E[C]}function Pr(E){return hg.test(E)}function Fg(E){return pg.test(E)}function Mg(E){for(var C,b=[];!(C=E.next()).done;)b.push(C.value);return b}function ks(E){var C=-1,b=Array(E.size);return E.forEach(function(L,j){b[++C]=[j,L]}),b}function xa(E,C){return function(b){return E(C(b))}}function zt(E,C){for(var b=-1,L=E.length,j=0,J=[];++b<L;){var ge=E[b];(ge===C||ge===_)&&(E[b]=_,J[j++]=b)}return J}function ui(E){var C=-1,b=Array(E.size);return E.forEach(function(L){b[++C]=L}),b}function jg(E){var C=-1,b=Array(E.size);return E.forEach(function(L){b[++C]=[L,L]}),b}function Hg(E,C,b){for(var L=b-1,j=E.length;++L<j;)if(E[L]===C)return L;return-1}function Ug(E,C,b){for(var L=b+1;L--;)if(E[L]===C)return L;return L}function Lr(E){return Pr(E)?Wg(E):Og(E)}function ht(E){return Pr(E)?Bg(E):Ag(E)}function Oa(E){for(var C=E.length;C--&&Ld.test(E.charAt(C)););return C}var Gg=Us(_g);function Wg(E){for(var C=Ns.lastIndex=0;Ns.test(E);)++C;return C}function Bg(E){return E.match(Ns)||[]}function kg(E){return E.match(fg)||[]}var Vg=function E(C){C=C==null?_e:Xt.defaults(_e.Object(),C,Xt.pick(_e,dg));var b=C.Array,L=C.Date,j=C.Error,J=C.Function,ge=C.Math,re=C.Object,Vs=C.RegExp,zg=C.String,et=C.TypeError,ai=b.prototype,Xg=J.prototype,Dr=re.prototype,li=C["__core-js_shared__"],ci=Xg.toString,ee=Dr.hasOwnProperty,Yg=0,Aa=function(){var e=/[^.]+$/.exec(li&&li.keys&&li.keys.IE_PROTO||"");return e?"Symbol(src)_1."+e:""}(),fi=Dr.toString,Kg=ci.call(re),Zg=_e._,Jg=Vs("^"+ci.call(ee).replace(Rs,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),hi=ca?C.Buffer:i,Yt=C.Symbol,pi=C.Uint8Array,Ra=hi?hi.allocUnsafe:i,di=xa(re.getPrototypeOf,re),Ia=re.create,Ta=Dr.propertyIsEnumerable,gi=ai.splice,Pa=Yt?Yt.isConcatSpreadable:i,hn=Yt?Yt.iterator:i,sr=Yt?Yt.toStringTag:i,mi=function(){try{var e=cr(re,"defineProperty");return e({},"",{}),e}catch{}}(),Qg=C.clearTimeout!==_e.clearTimeout&&C.clearTimeout,em=L&&L.now!==_e.Date.now&&L.now,tm=C.setTimeout!==_e.setTimeout&&C.setTimeout,vi=ge.ceil,_i=ge.floor,zs=re.getOwnPropertySymbols,rm=hi?hi.isBuffer:i,La=C.isFinite,nm=ai.join,im=xa(re.keys,re),me=ge.max,Oe=ge.min,sm=L.now,om=C.parseInt,Da=ge.random,um=ai.reverse,Xs=cr(C,"DataView"),pn=cr(C,"Map"),Ys=cr(C,"Promise"),Nr=cr(C,"Set"),dn=cr(C,"WeakMap"),gn=cr(re,"create"),yi=dn&&new dn,qr={},am=fr(Xs),lm=fr(pn),cm=fr(Ys),fm=fr(Nr),hm=fr(dn),Ei=Yt?Yt.prototype:i,mn=Ei?Ei.valueOf:i,Na=Ei?Ei.toString:i;function h(e){if(le(e)&&!H(e)&&!(e instanceof z)){if(e instanceof tt)return e;if(ee.call(e,"__wrapped__"))return ql(e)}return new tt(e)}var $r=function(){function e(){}return function(t){if(!ae(t))return{};if(Ia)return Ia(t);e.prototype=t;var s=new e;return e.prototype=i,s}}();function wi(){}function tt(e,t){this.__wrapped__=e,this.__actions__=[],this.__chain__=!!t,this.__index__=0,this.__values__=i}h.templateSettings={escape:Od,evaluate:Ad,interpolate:Wu,variable:"",imports:{_:h}},h.prototype=wi.prototype,h.prototype.constructor=h,tt.prototype=$r(wi.prototype),tt.prototype.constructor=tt;function z(e){this.__wrapped__=e,this.__actions__=[],this.__dir__=1,this.__filtered__=!1,this.__iteratees__=[],this.__takeCount__=vt,this.__views__=[]}function pm(){var e=new z(this.__wrapped__);return e.__actions__=Me(this.__actions__),e.__dir__=this.__dir__,e.__filtered__=this.__filtered__,e.__iteratees__=Me(this.__iteratees__),e.__takeCount__=this.__takeCount__,e.__views__=Me(this.__views__),e}function dm(){if(this.__filtered__){var e=new z(this);e.__dir__=-1,e.__filtered__=!0}else e=this.clone(),e.__dir__*=-1;return e}function gm(){var e=this.__wrapped__.value(),t=this.__dir__,s=H(e),l=t<0,f=s?e.length:0,p=Av(0,f,this.__views__),g=p.start,y=p.end,w=y-g,x=l?y:g-1,O=this.__iteratees__,A=O.length,T=0,q=Oe(w,this.__takeCount__);if(!s||!l&&f==w&&q==w)return il(e,this.__actions__);var F=[];e:for(;w--&&T<q;){x+=t;for(var W=-1,M=e[x];++W<A;){var V=O[W],X=V.iteratee,Xe=V.type,Ne=X(M);if(Xe==ld)M=Ne;else if(!Ne){if(Xe==Mu)continue e;break e}}F[T++]=M}return F}z.prototype=$r(wi.prototype),z.prototype.constructor=z;function or(e){var t=-1,s=e==null?0:e.length;for(this.clear();++t<s;){var l=e[t];this.set(l[0],l[1])}}function mm(){this.__data__=gn?gn(null):{},this.size=0}function vm(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t}function _m(e){var t=this.__data__;if(gn){var s=t[e];return s===d?i:s}return ee.call(t,e)?t[e]:i}function ym(e){var t=this.__data__;return gn?t[e]!==i:ee.call(t,e)}function Em(e,t){var s=this.__data__;return this.size+=this.has(e)?0:1,s[e]=gn&&t===i?d:t,this}or.prototype.clear=mm,or.prototype.delete=vm,or.prototype.get=_m,or.prototype.has=ym,or.prototype.set=Em;function Pt(e){var t=-1,s=e==null?0:e.length;for(this.clear();++t<s;){var l=e[t];this.set(l[0],l[1])}}function wm(){this.__data__=[],this.size=0}function bm(e){var t=this.__data__,s=bi(t,e);if(s<0)return!1;var l=t.length-1;return s==l?t.pop():gi.call(t,s,1),--this.size,!0}function Sm(e){var t=this.__data__,s=bi(t,e);return s<0?i:t[s][1]}function Cm(e){return bi(this.__data__,e)>-1}function xm(e,t){var s=this.__data__,l=bi(s,e);return l<0?(++this.size,s.push([e,t])):s[l][1]=t,this}Pt.prototype.clear=wm,Pt.prototype.delete=bm,Pt.prototype.get=Sm,Pt.prototype.has=Cm,Pt.prototype.set=xm;function Lt(e){var t=-1,s=e==null?0:e.length;for(this.clear();++t<s;){var l=e[t];this.set(l[0],l[1])}}function Om(){this.size=0,this.__data__={hash:new or,map:new(pn||Pt),string:new or}}function Am(e){var t=Ni(this,e).delete(e);return this.size-=t?1:0,t}function Rm(e){return Ni(this,e).get(e)}function Im(e){return Ni(this,e).has(e)}function Tm(e,t){var s=Ni(this,e),l=s.size;return s.set(e,t),this.size+=s.size==l?0:1,this}Lt.prototype.clear=Om,Lt.prototype.delete=Am,Lt.prototype.get=Rm,Lt.prototype.has=Im,Lt.prototype.set=Tm;function ur(e){var t=-1,s=e==null?0:e.length;for(this.__data__=new Lt;++t<s;)this.add(e[t])}function Pm(e){return this.__data__.set(e,d),this}function Lm(e){return this.__data__.has(e)}ur.prototype.add=ur.prototype.push=Pm,ur.prototype.has=Lm;function pt(e){var t=this.__data__=new Pt(e);this.size=t.size}function Dm(){this.__data__=new Pt,this.size=0}function Nm(e){var t=this.__data__,s=t.delete(e);return this.size=t.size,s}function qm(e){return this.__data__.get(e)}function $m(e){return this.__data__.has(e)}function Fm(e,t){var s=this.__data__;if(s instanceof Pt){var l=s.__data__;if(!pn||l.length<n-1)return l.push([e,t]),this.size=++s.size,this;s=this.__data__=new Lt(l)}return s.set(e,t),this.size=s.size,this}pt.prototype.clear=Dm,pt.prototype.delete=Nm,pt.prototype.get=qm,pt.prototype.has=$m,pt.prototype.set=Fm;function qa(e,t){var s=H(e),l=!s&&hr(e),f=!s&&!l&&er(e),p=!s&&!l&&!f&&Hr(e),g=s||l||f||p,y=g?Ws(e.length,zg):[],w=y.length;for(var x in e)(t||ee.call(e,x))&&!(g&&(x=="length"||f&&(x=="offset"||x=="parent")||p&&(x=="buffer"||x=="byteLength"||x=="byteOffset")||$t(x,w)))&&y.push(x);return y}function $a(e){var t=e.length;return t?e[oo(0,t-1)]:i}function Mm(e,t){return qi(Me(e),ar(t,0,e.length))}function jm(e){return qi(Me(e))}function Ks(e,t,s){(s!==i&&!dt(e[t],s)||s===i&&!(t in e))&&Dt(e,t,s)}function vn(e,t,s){var l=e[t];(!(ee.call(e,t)&&dt(l,s))||s===i&&!(t in e))&&Dt(e,t,s)}function bi(e,t){for(var s=e.length;s--;)if(dt(e[s][0],t))return s;return-1}function Hm(e,t,s,l){return Kt(e,function(f,p,g){t(l,f,s(f),g)}),l}function Fa(e,t){return e&&yt(t,ye(t),e)}function Um(e,t){return e&&yt(t,He(t),e)}function Dt(e,t,s){t=="__proto__"&&mi?mi(e,t,{configurable:!0,enumerable:!0,value:s,writable:!0}):e[t]=s}function Zs(e,t){for(var s=-1,l=t.length,f=b(l),p=e==null;++s<l;)f[s]=p?i:Lo(e,t[s]);return f}function ar(e,t,s){return e===e&&(s!==i&&(e=e<=s?e:s),t!==i&&(e=e>=t?e:t)),e}function rt(e,t,s,l,f,p){var g,y=t&c,w=t&v,x=t&S;if(s&&(g=f?s(e,l,f,p):s(e)),g!==i)return g;if(!ae(e))return e;var O=H(e);if(O){if(g=Iv(e),!y)return Me(e,g)}else{var A=Ae(e),T=A==ei||A==ju;if(er(e))return ul(e,y);if(A==Tt||A==Ar||T&&!f){if(g=w||T?{}:Ol(e),!y)return w?_v(e,Um(g,e)):vv(e,Fa(g,e))}else{if(!ne[A])return f?e:{};g=Tv(e,A,y)}}p||(p=new pt);var q=p.get(e);if(q)return q;p.set(e,g),tc(e)?e.forEach(function(M){g.add(rt(M,t,s,M,e,p))}):Ql(e)&&e.forEach(function(M,V){g.set(V,rt(M,t,s,V,e,p))});var F=x?w?_o:vo:w?He:ye,W=O?i:F(e);return Qe(W||e,function(M,V){W&&(V=M,M=e[V]),vn(g,V,rt(M,t,s,V,e,p))}),g}function Gm(e){var t=ye(e);return function(s){return Ma(s,e,t)}}function Ma(e,t,s){var l=s.length;if(e==null)return!l;for(e=re(e);l--;){var f=s[l],p=t[f],g=e[f];if(g===i&&!(f in e)||!p(g))return!1}return!0}function ja(e,t,s){if(typeof e!="function")throw new et(a);return Cn(function(){e.apply(i,s)},t)}function _n(e,t,s,l){var f=-1,p=si,g=!0,y=e.length,w=[],x=t.length;if(!y)return w;s&&(t=ue(t,ke(s))),l?(p=Fs,g=!1):t.length>=n&&(p=fn,g=!1,t=new ur(t));e:for(;++f<y;){var O=e[f],A=s==null?O:s(O);if(O=l||O!==0?O:0,g&&A===A){for(var T=x;T--;)if(t[T]===A)continue e;w.push(O)}else p(t,A,l)||w.push(O)}return w}var Kt=hl(_t),Ha=hl(Qs,!0);function Wm(e,t){var s=!0;return Kt(e,function(l,f,p){return s=!!t(l,f,p),s}),s}function Si(e,t,s){for(var l=-1,f=e.length;++l<f;){var p=e[l],g=t(p);if(g!=null&&(y===i?g===g&&!ze(g):s(g,y)))var y=g,w=p}return w}function Bm(e,t,s,l){var f=e.length;for(s=G(s),s<0&&(s=-s>f?0:f+s),l=l===i||l>f?f:G(l),l<0&&(l+=f),l=s>l?0:nc(l);s<l;)e[s++]=t;return e}function Ua(e,t){var s=[];return Kt(e,function(l,f,p){t(l,f,p)&&s.push(l)}),s}function Se(e,t,s,l,f){var p=-1,g=e.length;for(s||(s=Lv),f||(f=[]);++p<g;){var y=e[p];t>0&&s(y)?t>1?Se(y,t-1,s,l,f):Vt(f,y):l||(f[f.length]=y)}return f}var Js=pl(),Ga=pl(!0);function _t(e,t){return e&&Js(e,t,ye)}function Qs(e,t){return e&&Ga(e,t,ye)}function Ci(e,t){return kt(t,function(s){return Ft(e[s])})}function lr(e,t){t=Jt(t,e);for(var s=0,l=t.length;e!=null&&s<l;)e=e[Et(t[s++])];return s&&s==l?e:i}function Wa(e,t,s){var l=t(e);return H(e)?l:Vt(l,s(e))}function Le(e){return e==null?e===i?yd:vd:sr&&sr in re(e)?Ov(e):jv(e)}function eo(e,t){return e>t}function km(e,t){return e!=null&&ee.call(e,t)}function Vm(e,t){return e!=null&&t in re(e)}function zm(e,t,s){return e>=Oe(t,s)&&e<me(t,s)}function to(e,t,s){for(var l=s?Fs:si,f=e[0].length,p=e.length,g=p,y=b(p),w=1/0,x=[];g--;){var O=e[g];g&&t&&(O=ue(O,ke(t))),w=Oe(O.length,w),y[g]=!s&&(t||f>=120&&O.length>=120)?new ur(g&&O):i}O=e[0];var A=-1,T=y[0];e:for(;++A<f&&x.length<w;){var q=O[A],F=t?t(q):q;if(q=s||q!==0?q:0,!(T?fn(T,F):l(x,F,s))){for(g=p;--g;){var W=y[g];if(!(W?fn(W,F):l(e[g],F,s)))continue e}T&&T.push(F),x.push(q)}}return x}function Xm(e,t,s,l){return _t(e,function(f,p,g){t(l,s(f),p,g)}),l}function yn(e,t,s){t=Jt(t,e),e=Tl(e,t);var l=e==null?e:e[Et(it(t))];return l==null?i:Be(l,e,s)}function Ba(e){return le(e)&&Le(e)==Ar}function Ym(e){return le(e)&&Le(e)==cn}function Km(e){return le(e)&&Le(e)==sn}function En(e,t,s,l,f){return e===t?!0:e==null||t==null||!le(e)&&!le(t)?e!==e&&t!==t:Zm(e,t,s,l,En,f)}function Zm(e,t,s,l,f,p){var g=H(e),y=H(t),w=g?Jn:Ae(e),x=y?Jn:Ae(t);w=w==Ar?Tt:w,x=x==Ar?Tt:x;var O=w==Tt,A=x==Tt,T=w==x;if(T&&er(e)){if(!er(t))return!1;g=!0,O=!1}if(T&&!O)return p||(p=new pt),g||Hr(e)?Sl(e,t,s,l,f,p):Cv(e,t,w,s,l,f,p);if(!(s&R)){var q=O&&ee.call(e,"__wrapped__"),F=A&&ee.call(t,"__wrapped__");if(q||F){var W=q?e.value():e,M=F?t.value():t;return p||(p=new pt),f(W,M,s,l,p)}}return T?(p||(p=new pt),xv(e,t,s,l,f,p)):!1}function Jm(e){return le(e)&&Ae(e)==ct}function ro(e,t,s,l){var f=s.length,p=f,g=!l;if(e==null)return!p;for(e=re(e);f--;){var y=s[f];if(g&&y[2]?y[1]!==e[y[0]]:!(y[0]in e))return!1}for(;++f<p;){y=s[f];var w=y[0],x=e[w],O=y[1];if(g&&y[2]){if(x===i&&!(w in e))return!1}else{var A=new pt;if(l)var T=l(x,O,w,e,t,A);if(!(T===i?En(O,x,R|P,l,A):T))return!1}}return!0}function ka(e){if(!ae(e)||Nv(e))return!1;var t=Ft(e)?Jg:Gd;return t.test(fr(e))}function Qm(e){return le(e)&&Le(e)==un}function ev(e){return le(e)&&Ae(e)==ft}function tv(e){return le(e)&&Ui(e.length)&&!!se[Le(e)]}function Va(e){return typeof e=="function"?e:e==null?Ue:typeof e=="object"?H(e)?Ya(e[0],e[1]):Xa(e):dc(e)}function no(e){if(!Sn(e))return im(e);var t=[];for(var s in re(e))ee.call(e,s)&&s!="constructor"&&t.push(s);return t}function rv(e){if(!ae(e))return Mv(e);var t=Sn(e),s=[];for(var l in e)l=="constructor"&&(t||!ee.call(e,l))||s.push(l);return s}function io(e,t){return e<t}function za(e,t){var s=-1,l=je(e)?b(e.length):[];return Kt(e,function(f,p,g){l[++s]=t(f,p,g)}),l}function Xa(e){var t=Eo(e);return t.length==1&&t[0][2]?Rl(t[0][0],t[0][1]):function(s){return s===e||ro(s,e,t)}}function Ya(e,t){return bo(e)&&Al(t)?Rl(Et(e),t):function(s){var l=Lo(s,e);return l===i&&l===t?Do(s,e):En(t,l,R|P)}}function xi(e,t,s,l,f){e!==t&&Js(t,function(p,g){if(f||(f=new pt),ae(p))nv(e,t,g,s,xi,l,f);else{var y=l?l(Co(e,g),p,g+"",e,t,f):i;y===i&&(y=p),Ks(e,g,y)}},He)}function nv(e,t,s,l,f,p,g){var y=Co(e,s),w=Co(t,s),x=g.get(w);if(x){Ks(e,s,x);return}var O=p?p(y,w,s+"",e,t,g):i,A=O===i;if(A){var T=H(w),q=!T&&er(w),F=!T&&!q&&Hr(w);O=w,T||q||F?H(y)?O=y:ce(y)?O=Me(y):q?(A=!1,O=ul(w,!0)):F?(A=!1,O=al(w,!0)):O=[]:xn(w)||hr(w)?(O=y,hr(y)?O=ic(y):(!ae(y)||Ft(y))&&(O=Ol(w))):A=!1}A&&(g.set(w,O),f(O,w,l,p,g),g.delete(w)),Ks(e,s,O)}function Ka(e,t){var s=e.length;if(!!s)return t+=t<0?s:0,$t(t,s)?e[t]:i}function Za(e,t,s){t.length?t=ue(t,function(p){return H(p)?function(g){return lr(g,p.length===1?p[0]:p)}:p}):t=[Ue];var l=-1;t=ue(t,ke($()));var f=za(e,function(p,g,y){var w=ue(t,function(x){return x(p)});return{criteria:w,index:++l,value:p}});return Tg(f,function(p,g){return mv(p,g,s)})}function iv(e,t){return Ja(e,t,function(s,l){return Do(e,l)})}function Ja(e,t,s){for(var l=-1,f=t.length,p={};++l<f;){var g=t[l],y=lr(e,g);s(y,g)&&wn(p,Jt(g,e),y)}return p}function sv(e){return function(t){return lr(t,e)}}function so(e,t,s,l){var f=l?Ig:Tr,p=-1,g=t.length,y=e;for(e===t&&(t=Me(t)),s&&(y=ue(e,ke(s)));++p<g;)for(var w=0,x=t[p],O=s?s(x):x;(w=f(y,O,w,l))>-1;)y!==e&&gi.call(y,w,1),gi.call(e,w,1);return e}function Qa(e,t){for(var s=e?t.length:0,l=s-1;s--;){var f=t[s];if(s==l||f!==p){var p=f;$t(f)?gi.call(e,f,1):lo(e,f)}}return e}function oo(e,t){return e+_i(Da()*(t-e+1))}function ov(e,t,s,l){for(var f=-1,p=me(vi((t-e)/(s||1)),0),g=b(p);p--;)g[l?p:++f]=e,e+=s;return g}function uo(e,t){var s="";if(!e||t<1||t>Bt)return s;do t%2&&(s+=e),t=_i(t/2),t&&(e+=e);while(t);return s}function k(e,t){return xo(Il(e,t,Ue),e+"")}function uv(e){return $a(Ur(e))}function av(e,t){var s=Ur(e);return qi(s,ar(t,0,s.length))}function wn(e,t,s,l){if(!ae(e))return e;t=Jt(t,e);for(var f=-1,p=t.length,g=p-1,y=e;y!=null&&++f<p;){var w=Et(t[f]),x=s;if(w==="__proto__"||w==="constructor"||w==="prototype")return e;if(f!=g){var O=y[w];x=l?l(O,w,y):i,x===i&&(x=ae(O)?O:$t(t[f+1])?[]:{})}vn(y,w,x),y=y[w]}return e}var el=yi?function(e,t){return yi.set(e,t),e}:Ue,lv=mi?function(e,t){return mi(e,"toString",{configurable:!0,enumerable:!1,value:qo(t),writable:!0})}:Ue;function cv(e){return qi(Ur(e))}function nt(e,t,s){var l=-1,f=e.length;t<0&&(t=-t>f?0:f+t),s=s>f?f:s,s<0&&(s+=f),f=t>s?0:s-t>>>0,t>>>=0;for(var p=b(f);++l<f;)p[l]=e[l+t];return p}function fv(e,t){var s;return Kt(e,function(l,f,p){return s=t(l,f,p),!s}),!!s}function Oi(e,t,s){var l=0,f=e==null?l:e.length;if(typeof t=="number"&&t===t&&f<=pd){for(;l<f;){var p=l+f>>>1,g=e[p];g!==null&&!ze(g)&&(s?g<=t:g<t)?l=p+1:f=p}return f}return ao(e,t,Ue,s)}function ao(e,t,s,l){var f=0,p=e==null?0:e.length;if(p===0)return 0;t=s(t);for(var g=t!==t,y=t===null,w=ze(t),x=t===i;f<p;){var O=_i((f+p)/2),A=s(e[O]),T=A!==i,q=A===null,F=A===A,W=ze(A);if(g)var M=l||F;else x?M=F&&(l||T):y?M=F&&T&&(l||!q):w?M=F&&T&&!q&&(l||!W):q||W?M=!1:M=l?A<=t:A<t;M?f=O+1:p=O}return Oe(p,hd)}function tl(e,t){for(var s=-1,l=e.length,f=0,p=[];++s<l;){var g=e[s],y=t?t(g):g;if(!s||!dt(y,w)){var w=y;p[f++]=g===0?0:g}}return p}function rl(e){return typeof e=="number"?e:ze(e)?Zn:+e}function Ve(e){if(typeof e=="string")return e;if(H(e))return ue(e,Ve)+"";if(ze(e))return Na?Na.call(e):"";var t=e+"";return t=="0"&&1/e==-nr?"-0":t}function Zt(e,t,s){var l=-1,f=si,p=e.length,g=!0,y=[],w=y;if(s)g=!1,f=Fs;else if(p>=n){var x=t?null:bv(e);if(x)return ui(x);g=!1,f=fn,w=new ur}else w=t?[]:y;e:for(;++l<p;){var O=e[l],A=t?t(O):O;if(O=s||O!==0?O:0,g&&A===A){for(var T=w.length;T--;)if(w[T]===A)continue e;t&&w.push(A),y.push(O)}else f(w,A,s)||(w!==y&&w.push(A),y.push(O))}return y}function lo(e,t){return t=Jt(t,e),e=Tl(e,t),e==null||delete e[Et(it(t))]}function nl(e,t,s,l){return wn(e,t,s(lr(e,t)),l)}function Ai(e,t,s,l){for(var f=e.length,p=l?f:-1;(l?p--:++p<f)&&t(e[p],p,e););return s?nt(e,l?0:p,l?p+1:f):nt(e,l?p+1:0,l?f:p)}function il(e,t){var s=e;return s instanceof z&&(s=s.value()),Ms(t,function(l,f){return f.func.apply(f.thisArg,Vt([l],f.args))},s)}function co(e,t,s){var l=e.length;if(l<2)return l?Zt(e[0]):[];for(var f=-1,p=b(l);++f<l;)for(var g=e[f],y=-1;++y<l;)y!=f&&(p[f]=_n(p[f]||g,e[y],t,s));return Zt(Se(p,1),t,s)}function sl(e,t,s){for(var l=-1,f=e.length,p=t.length,g={};++l<f;){var y=l<p?t[l]:i;s(g,e[l],y)}return g}function fo(e){return ce(e)?e:[]}function ho(e){return typeof e=="function"?e:Ue}function Jt(e,t){return H(e)?e:bo(e,t)?[e]:Nl(Q(e))}var hv=k;function Qt(e,t,s){var l=e.length;return s=s===i?l:s,!t&&s>=l?e:nt(e,t,s)}var ol=Qg||function(e){return _e.clearTimeout(e)};function ul(e,t){if(t)return e.slice();var s=e.length,l=Ra?Ra(s):new e.constructor(s);return e.copy(l),l}function po(e){var t=new e.constructor(e.byteLength);return new pi(t).set(new pi(e)),t}function pv(e,t){var s=t?po(e.buffer):e.buffer;return new e.constructor(s,e.byteOffset,e.byteLength)}function dv(e){var t=new e.constructor(e.source,Bu.exec(e));return t.lastIndex=e.lastIndex,t}function gv(e){return mn?re(mn.call(e)):{}}function al(e,t){var s=t?po(e.buffer):e.buffer;return new e.constructor(s,e.byteOffset,e.length)}function ll(e,t){if(e!==t){var s=e!==i,l=e===null,f=e===e,p=ze(e),g=t!==i,y=t===null,w=t===t,x=ze(t);if(!y&&!x&&!p&&e>t||p&&g&&w&&!y&&!x||l&&g&&w||!s&&w||!f)return 1;if(!l&&!p&&!x&&e<t||x&&s&&f&&!l&&!p||y&&s&&f||!g&&f||!w)return-1}return 0}function mv(e,t,s){for(var l=-1,f=e.criteria,p=t.criteria,g=f.length,y=s.length;++l<g;){var w=ll(f[l],p[l]);if(w){if(l>=y)return w;var x=s[l];return w*(x=="desc"?-1:1)}}return e.index-t.index}function cl(e,t,s,l){for(var f=-1,p=e.length,g=s.length,y=-1,w=t.length,x=me(p-g,0),O=b(w+x),A=!l;++y<w;)O[y]=t[y];for(;++f<g;)(A||f<p)&&(O[s[f]]=e[f]);for(;x--;)O[y++]=e[f++];return O}function fl(e,t,s,l){for(var f=-1,p=e.length,g=-1,y=s.length,w=-1,x=t.length,O=me(p-y,0),A=b(O+x),T=!l;++f<O;)A[f]=e[f];for(var q=f;++w<x;)A[q+w]=t[w];for(;++g<y;)(T||f<p)&&(A[q+s[g]]=e[f++]);return A}function Me(e,t){var s=-1,l=e.length;for(t||(t=b(l));++s<l;)t[s]=e[s];return t}function yt(e,t,s,l){var f=!s;s||(s={});for(var p=-1,g=t.length;++p<g;){var y=t[p],w=l?l(s[y],e[y],y,s,e):i;w===i&&(w=e[y]),f?Dt(s,y,w):vn(s,y,w)}return s}function vv(e,t){return yt(e,wo(e),t)}function _v(e,t){return yt(e,Cl(e),t)}function Ri(e,t){return function(s,l){var f=H(s)?Sg:Hm,p=t?t():{};return f(s,e,$(l,2),p)}}function Fr(e){return k(function(t,s){var l=-1,f=s.length,p=f>1?s[f-1]:i,g=f>2?s[2]:i;for(p=e.length>3&&typeof p=="function"?(f--,p):i,g&&De(s[0],s[1],g)&&(p=f<3?i:p,f=1),t=re(t);++l<f;){var y=s[l];y&&e(t,y,l,p)}return t})}function hl(e,t){return function(s,l){if(s==null)return s;if(!je(s))return e(s,l);for(var f=s.length,p=t?f:-1,g=re(s);(t?p--:++p<f)&&l(g[p],p,g)!==!1;);return s}}function pl(e){return function(t,s,l){for(var f=-1,p=re(t),g=l(t),y=g.length;y--;){var w=g[e?y:++f];if(s(p[w],w,p)===!1)break}return t}}function yv(e,t,s){var l=t&Z,f=bn(e);function p(){var g=this&&this!==_e&&this instanceof p?f:e;return g.apply(l?s:this,arguments)}return p}function dl(e){return function(t){t=Q(t);var s=Pr(t)?ht(t):i,l=s?s[0]:t.charAt(0),f=s?Qt(s,1).join(""):t.slice(1);return l[e]()+f}}function Mr(e){return function(t){return Ms(hc(fc(t).replace(lg,"")),e,"")}}function bn(e){return function(){var t=arguments;switch(t.length){case 0:return new e;case 1:return new e(t[0]);case 2:return new e(t[0],t[1]);case 3:return new e(t[0],t[1],t[2]);case 4:return new e(t[0],t[1],t[2],t[3]);case 5:return new e(t[0],t[1],t[2],t[3],t[4]);case 6:return new e(t[0],t[1],t[2],t[3],t[4],t[5]);case 7:return new e(t[0],t[1],t[2],t[3],t[4],t[5],t[6])}var s=$r(e.prototype),l=e.apply(s,t);return ae(l)?l:s}}function Ev(e,t,s){var l=bn(e);function f(){for(var p=arguments.length,g=b(p),y=p,w=jr(f);y--;)g[y]=arguments[y];var x=p<3&&g[0]!==w&&g[p-1]!==w?[]:zt(g,w);if(p-=x.length,p<s)return yl(e,t,Ii,f.placeholder,i,g,x,i,i,s-p);var O=this&&this!==_e&&this instanceof f?l:e;return Be(O,this,g)}return f}function gl(e){return function(t,s,l){var f=re(t);if(!je(t)){var p=$(s,3);t=ye(t),s=function(y){return p(f[y],y,f)}}var g=e(t,s,l);return g>-1?f[p?t[g]:g]:i}}function ml(e){return qt(function(t){var s=t.length,l=s,f=tt.prototype.thru;for(e&&t.reverse();l--;){var p=t[l];if(typeof p!="function")throw new et(a);if(f&&!g&&Di(p)=="wrapper")var g=new tt([],!0)}for(l=g?l:s;++l<s;){p=t[l];var y=Di(p),w=y=="wrapper"?yo(p):i;w&&So(w[0])&&w[1]==(xe|Y|ve|We)&&!w[4].length&&w[9]==1?g=g[Di(w[0])].apply(g,w[3]):g=p.length==1&&So(p)?g[y]():g.thru(p)}return function(){var x=arguments,O=x[0];if(g&&x.length==1&&H(O))return g.plant(O).value();for(var A=0,T=s?t[A].apply(this,x):O;++A<s;)T=t[A].call(this,T);return T}})}function Ii(e,t,s,l,f,p,g,y,w,x){var O=t&xe,A=t&Z,T=t&oe,q=t&(Y|lt),F=t&rn,W=T?i:bn(e);function M(){for(var V=arguments.length,X=b(V),Xe=V;Xe--;)X[Xe]=arguments[Xe];if(q)var Ne=jr(M),Ye=Lg(X,Ne);if(l&&(X=cl(X,l,f,q)),p&&(X=fl(X,p,g,q)),V-=Ye,q&&V<x){var fe=zt(X,Ne);return yl(e,t,Ii,M.placeholder,s,X,fe,y,w,x-V)}var gt=A?s:this,jt=T?gt[e]:e;return V=X.length,y?X=Hv(X,y):F&&V>1&&X.reverse(),O&&w<V&&(X.length=w),this&&this!==_e&&this instanceof M&&(jt=W||bn(jt)),jt.apply(gt,X)}return M}function vl(e,t){return function(s,l){return Xm(s,e,t(l),{})}}function Ti(e,t){return function(s,l){var f;if(s===i&&l===i)return t;if(s!==i&&(f=s),l!==i){if(f===i)return l;typeof s=="string"||typeof l=="string"?(s=Ve(s),l=Ve(l)):(s=rl(s),l=rl(l)),f=e(s,l)}return f}}function go(e){return qt(function(t){return t=ue(t,ke($())),k(function(s){var l=this;return e(t,function(f){return Be(f,l,s)})})})}function Pi(e,t){t=t===i?" ":Ve(t);var s=t.length;if(s<2)return s?uo(t,e):t;var l=uo(t,vi(e/Lr(t)));return Pr(t)?Qt(ht(l),0,e).join(""):l.slice(0,e)}function wv(e,t,s,l){var f=t&Z,p=bn(e);function g(){for(var y=-1,w=arguments.length,x=-1,O=l.length,A=b(O+w),T=this&&this!==_e&&this instanceof g?p:e;++x<O;)A[x]=l[x];for(;w--;)A[x++]=arguments[++y];return Be(T,f?s:this,A)}return g}function _l(e){return function(t,s,l){return l&&typeof l!="number"&&De(t,s,l)&&(s=l=i),t=Mt(t),s===i?(s=t,t=0):s=Mt(s),l=l===i?t<s?1:-1:Mt(l),ov(t,s,l,e)}}function Li(e){return function(t,s){return typeof t=="string"&&typeof s=="string"||(t=st(t),s=st(s)),e(t,s)}}function yl(e,t,s,l,f,p,g,y,w,x){var O=t&Y,A=O?g:i,T=O?i:g,q=O?p:i,F=O?i:p;t|=O?ve:pe,t&=~(O?pe:ve),t&be||(t&=~(Z|oe));var W=[e,t,f,q,A,F,T,y,w,x],M=s.apply(i,W);return So(e)&&Pl(M,W),M.placeholder=l,Ll(M,e,t)}function mo(e){var t=ge[e];return function(s,l){if(s=st(s),l=l==null?0:Oe(G(l),292),l&&La(s)){var f=(Q(s)+"e").split("e"),p=t(f[0]+"e"+(+f[1]+l));return f=(Q(p)+"e").split("e"),+(f[0]+"e"+(+f[1]-l))}return t(s)}}var bv=Nr&&1/ui(new Nr([,-0]))[1]==nr?function(e){return new Nr(e)}:Mo;function El(e){return function(t){var s=Ae(t);return s==ct?ks(t):s==ft?jg(t):Pg(t,e(t))}}function Nt(e,t,s,l,f,p,g,y){var w=t&oe;if(!w&&typeof e!="function")throw new et(a);var x=l?l.length:0;if(x||(t&=~(ve|pe),l=f=i),g=g===i?g:me(G(g),0),y=y===i?y:G(y),x-=f?f.length:0,t&pe){var O=l,A=f;l=f=i}var T=w?i:yo(e),q=[e,t,s,l,f,O,A,p,g,y];if(T&&Fv(q,T),e=q[0],t=q[1],s=q[2],l=q[3],f=q[4],y=q[9]=q[9]===i?w?0:e.length:me(q[9]-x,0),!y&&t&(Y|lt)&&(t&=~(Y|lt)),!t||t==Z)var F=yv(e,t,s);else t==Y||t==lt?F=Ev(e,t,y):(t==ve||t==(Z|ve))&&!f.length?F=wv(e,t,s,l):F=Ii.apply(i,q);var W=T?el:Pl;return Ll(W(F,q),e,t)}function wl(e,t,s,l){return e===i||dt(e,Dr[s])&&!ee.call(l,s)?t:e}function bl(e,t,s,l,f,p){return ae(e)&&ae(t)&&(p.set(t,e),xi(e,t,i,bl,p),p.delete(t)),e}function Sv(e){return xn(e)?i:e}function Sl(e,t,s,l,f,p){var g=s&R,y=e.length,w=t.length;if(y!=w&&!(g&&w>y))return!1;var x=p.get(e),O=p.get(t);if(x&&O)return x==t&&O==e;var A=-1,T=!0,q=s&P?new ur:i;for(p.set(e,t),p.set(t,e);++A<y;){var F=e[A],W=t[A];if(l)var M=g?l(W,F,A,t,e,p):l(F,W,A,e,t,p);if(M!==i){if(M)continue;T=!1;break}if(q){if(!js(t,function(V,X){if(!fn(q,X)&&(F===V||f(F,V,s,l,p)))return q.push(X)})){T=!1;break}}else if(!(F===W||f(F,W,s,l,p))){T=!1;break}}return p.delete(e),p.delete(t),T}function Cv(e,t,s,l,f,p,g){switch(s){case Rr:if(e.byteLength!=t.byteLength||e.byteOffset!=t.byteOffset)return!1;e=e.buffer,t=t.buffer;case cn:return!(e.byteLength!=t.byteLength||!p(new pi(e),new pi(t)));case nn:case sn:case on:return dt(+e,+t);case Qn:return e.name==t.name&&e.message==t.message;case un:case an:return e==t+"";case ct:var y=ks;case ft:var w=l&R;if(y||(y=ui),e.size!=t.size&&!w)return!1;var x=g.get(e);if(x)return x==t;l|=P,g.set(e,t);var O=Sl(y(e),y(t),l,f,p,g);return g.delete(e),O;case ti:if(mn)return mn.call(e)==mn.call(t)}return!1}function xv(e,t,s,l,f,p){var g=s&R,y=vo(e),w=y.length,x=vo(t),O=x.length;if(w!=O&&!g)return!1;for(var A=w;A--;){var T=y[A];if(!(g?T in t:ee.call(t,T)))return!1}var q=p.get(e),F=p.get(t);if(q&&F)return q==t&&F==e;var W=!0;p.set(e,t),p.set(t,e);for(var M=g;++A<w;){T=y[A];var V=e[T],X=t[T];if(l)var Xe=g?l(X,V,T,t,e,p):l(V,X,T,e,t,p);if(!(Xe===i?V===X||f(V,X,s,l,p):Xe)){W=!1;break}M||(M=T=="constructor")}if(W&&!M){var Ne=e.constructor,Ye=t.constructor;Ne!=Ye&&"constructor"in e&&"constructor"in t&&!(typeof Ne=="function"&&Ne instanceof Ne&&typeof Ye=="function"&&Ye instanceof Ye)&&(W=!1)}return p.delete(e),p.delete(t),W}function qt(e){return xo(Il(e,i,Ml),e+"")}function vo(e){return Wa(e,ye,wo)}function _o(e){return Wa(e,He,Cl)}var yo=yi?function(e){return yi.get(e)}:Mo;function Di(e){for(var t=e.name+"",s=qr[t],l=ee.call(qr,t)?s.length:0;l--;){var f=s[l],p=f.func;if(p==null||p==e)return f.name}return t}function jr(e){var t=ee.call(h,"placeholder")?h:e;return t.placeholder}function $(){var e=h.iteratee||$o;return e=e===$o?Va:e,arguments.length?e(arguments[0],arguments[1]):e}function Ni(e,t){var s=e.__data__;return Dv(t)?s[typeof t=="string"?"string":"hash"]:s.map}function Eo(e){for(var t=ye(e),s=t.length;s--;){var l=t[s],f=e[l];t[s]=[l,f,Al(f)]}return t}function cr(e,t){var s=$g(e,t);return ka(s)?s:i}function Ov(e){var t=ee.call(e,sr),s=e[sr];try{e[sr]=i;var l=!0}catch{}var f=fi.call(e);return l&&(t?e[sr]=s:delete e[sr]),f}var wo=zs?function(e){return e==null?[]:(e=re(e),kt(zs(e),function(t){return Ta.call(e,t)}))}:jo,Cl=zs?function(e){for(var t=[];e;)Vt(t,wo(e)),e=di(e);return t}:jo,Ae=Le;(Xs&&Ae(new Xs(new ArrayBuffer(1)))!=Rr||pn&&Ae(new pn)!=ct||Ys&&Ae(Ys.resolve())!=Hu||Nr&&Ae(new Nr)!=ft||dn&&Ae(new dn)!=ln)&&(Ae=function(e){var t=Le(e),s=t==Tt?e.constructor:i,l=s?fr(s):"";if(l)switch(l){case am:return Rr;case lm:return ct;case cm:return Hu;case fm:return ft;case hm:return ln}return t});function Av(e,t,s){for(var l=-1,f=s.length;++l<f;){var p=s[l],g=p.size;switch(p.type){case"drop":e+=g;break;case"dropRight":t-=g;break;case"take":t=Oe(t,e+g);break;case"takeRight":e=me(e,t-g);break}}return{start:e,end:t}}function Rv(e){var t=e.match(Nd);return t?t[1].split(qd):[]}function xl(e,t,s){t=Jt(t,e);for(var l=-1,f=t.length,p=!1;++l<f;){var g=Et(t[l]);if(!(p=e!=null&&s(e,g)))break;e=e[g]}return p||++l!=f?p:(f=e==null?0:e.length,!!f&&Ui(f)&&$t(g,f)&&(H(e)||hr(e)))}function Iv(e){var t=e.length,s=new e.constructor(t);return t&&typeof e[0]=="string"&&ee.call(e,"index")&&(s.index=e.index,s.input=e.input),s}function Ol(e){return typeof e.constructor=="function"&&!Sn(e)?$r(di(e)):{}}function Tv(e,t,s){var l=e.constructor;switch(t){case cn:return po(e);case nn:case sn:return new l(+e);case Rr:return pv(e,s);case ys:case Es:case ws:case bs:case Ss:case Cs:case xs:case Os:case As:return al(e,s);case ct:return new l;case on:case an:return new l(e);case un:return dv(e);case ft:return new l;case ti:return gv(e)}}function Pv(e,t){var s=t.length;if(!s)return e;var l=s-1;return t[l]=(s>1?"& ":"")+t[l],t=t.join(s>2?", ":" "),e.replace(Dd,`{
16
+ /* [wrapped with `+t+`] */
17
+ `)}function Lv(e){return H(e)||hr(e)||!!(Pa&&e&&e[Pa])}function $t(e,t){var s=typeof e;return t=t==null?Bt:t,!!t&&(s=="number"||s!="symbol"&&Bd.test(e))&&e>-1&&e%1==0&&e<t}function De(e,t,s){if(!ae(s))return!1;var l=typeof t;return(l=="number"?je(s)&&$t(t,s.length):l=="string"&&t in s)?dt(s[t],e):!1}function bo(e,t){if(H(e))return!1;var s=typeof e;return s=="number"||s=="symbol"||s=="boolean"||e==null||ze(e)?!0:Id.test(e)||!Rd.test(e)||t!=null&&e in re(t)}function Dv(e){var t=typeof e;return t=="string"||t=="number"||t=="symbol"||t=="boolean"?e!=="__proto__":e===null}function So(e){var t=Di(e),s=h[t];if(typeof s!="function"||!(t in z.prototype))return!1;if(e===s)return!0;var l=yo(s);return!!l&&e===l[0]}function Nv(e){return!!Aa&&Aa in e}var qv=li?Ft:Ho;function Sn(e){var t=e&&e.constructor,s=typeof t=="function"&&t.prototype||Dr;return e===s}function Al(e){return e===e&&!ae(e)}function Rl(e,t){return function(s){return s==null?!1:s[e]===t&&(t!==i||e in re(s))}}function $v(e){var t=ji(e,function(l){return s.size===m&&s.clear(),l}),s=t.cache;return t}function Fv(e,t){var s=e[1],l=t[1],f=s|l,p=f<(Z|oe|xe),g=l==xe&&s==Y||l==xe&&s==We&&e[7].length<=t[8]||l==(xe|We)&&t[7].length<=t[8]&&s==Y;if(!(p||g))return e;l&Z&&(e[2]=t[2],f|=s&Z?0:be);var y=t[3];if(y){var w=e[3];e[3]=w?cl(w,y,t[4]):y,e[4]=w?zt(e[3],_):t[4]}return y=t[5],y&&(w=e[5],e[5]=w?fl(w,y,t[6]):y,e[6]=w?zt(e[5],_):t[6]),y=t[7],y&&(e[7]=y),l&xe&&(e[8]=e[8]==null?t[8]:Oe(e[8],t[8])),e[9]==null&&(e[9]=t[9]),e[0]=t[0],e[1]=f,e}function Mv(e){var t=[];if(e!=null)for(var s in re(e))t.push(s);return t}function jv(e){return fi.call(e)}function Il(e,t,s){return t=me(t===i?e.length-1:t,0),function(){for(var l=arguments,f=-1,p=me(l.length-t,0),g=b(p);++f<p;)g[f]=l[t+f];f=-1;for(var y=b(t+1);++f<t;)y[f]=l[f];return y[t]=s(g),Be(e,this,y)}}function Tl(e,t){return t.length<2?e:lr(e,nt(t,0,-1))}function Hv(e,t){for(var s=e.length,l=Oe(t.length,s),f=Me(e);l--;){var p=t[l];e[l]=$t(p,s)?f[p]:i}return e}function Co(e,t){if(!(t==="constructor"&&typeof e[t]=="function")&&t!="__proto__")return e[t]}var Pl=Dl(el),Cn=tm||function(e,t){return _e.setTimeout(e,t)},xo=Dl(lv);function Ll(e,t,s){var l=t+"";return xo(e,Pv(l,Uv(Rv(l),s)))}function Dl(e){var t=0,s=0;return function(){var l=sm(),f=ad-(l-s);if(s=l,f>0){if(++t>=ud)return arguments[0]}else t=0;return e.apply(i,arguments)}}function qi(e,t){var s=-1,l=e.length,f=l-1;for(t=t===i?l:t;++s<t;){var p=oo(s,f),g=e[p];e[p]=e[s],e[s]=g}return e.length=t,e}var Nl=$v(function(e){var t=[];return e.charCodeAt(0)===46&&t.push(""),e.replace(Td,function(s,l,f,p){t.push(f?p.replace(Md,"$1"):l||s)}),t});function Et(e){if(typeof e=="string"||ze(e))return e;var t=e+"";return t=="0"&&1/e==-nr?"-0":t}function fr(e){if(e!=null){try{return ci.call(e)}catch{}try{return e+""}catch{}}return""}function Uv(e,t){return Qe(dd,function(s){var l="_."+s[0];t&s[1]&&!si(e,l)&&e.push(l)}),e.sort()}function ql(e){if(e instanceof z)return e.clone();var t=new tt(e.__wrapped__,e.__chain__);return t.__actions__=Me(e.__actions__),t.__index__=e.__index__,t.__values__=e.__values__,t}function Gv(e,t,s){(s?De(e,t,s):t===i)?t=1:t=me(G(t),0);var l=e==null?0:e.length;if(!l||t<1)return[];for(var f=0,p=0,g=b(vi(l/t));f<l;)g[p++]=nt(e,f,f+=t);return g}function Wv(e){for(var t=-1,s=e==null?0:e.length,l=0,f=[];++t<s;){var p=e[t];p&&(f[l++]=p)}return f}function Bv(){var e=arguments.length;if(!e)return[];for(var t=b(e-1),s=arguments[0],l=e;l--;)t[l-1]=arguments[l];return Vt(H(s)?Me(s):[s],Se(t,1))}var kv=k(function(e,t){return ce(e)?_n(e,Se(t,1,ce,!0)):[]}),Vv=k(function(e,t){var s=it(t);return ce(s)&&(s=i),ce(e)?_n(e,Se(t,1,ce,!0),$(s,2)):[]}),zv=k(function(e,t){var s=it(t);return ce(s)&&(s=i),ce(e)?_n(e,Se(t,1,ce,!0),i,s):[]});function Xv(e,t,s){var l=e==null?0:e.length;return l?(t=s||t===i?1:G(t),nt(e,t<0?0:t,l)):[]}function Yv(e,t,s){var l=e==null?0:e.length;return l?(t=s||t===i?1:G(t),t=l-t,nt(e,0,t<0?0:t)):[]}function Kv(e,t){return e&&e.length?Ai(e,$(t,3),!0,!0):[]}function Zv(e,t){return e&&e.length?Ai(e,$(t,3),!0):[]}function Jv(e,t,s,l){var f=e==null?0:e.length;return f?(s&&typeof s!="number"&&De(e,t,s)&&(s=0,l=f),Bm(e,t,s,l)):[]}function $l(e,t,s){var l=e==null?0:e.length;if(!l)return-1;var f=s==null?0:G(s);return f<0&&(f=me(l+f,0)),oi(e,$(t,3),f)}function Fl(e,t,s){var l=e==null?0:e.length;if(!l)return-1;var f=l-1;return s!==i&&(f=G(s),f=s<0?me(l+f,0):Oe(f,l-1)),oi(e,$(t,3),f,!0)}function Ml(e){var t=e==null?0:e.length;return t?Se(e,1):[]}function Qv(e){var t=e==null?0:e.length;return t?Se(e,nr):[]}function e_(e,t){var s=e==null?0:e.length;return s?(t=t===i?1:G(t),Se(e,t)):[]}function t_(e){for(var t=-1,s=e==null?0:e.length,l={};++t<s;){var f=e[t];l[f[0]]=f[1]}return l}function jl(e){return e&&e.length?e[0]:i}function r_(e,t,s){var l=e==null?0:e.length;if(!l)return-1;var f=s==null?0:G(s);return f<0&&(f=me(l+f,0)),Tr(e,t,f)}function n_(e){var t=e==null?0:e.length;return t?nt(e,0,-1):[]}var i_=k(function(e){var t=ue(e,fo);return t.length&&t[0]===e[0]?to(t):[]}),s_=k(function(e){var t=it(e),s=ue(e,fo);return t===it(s)?t=i:s.pop(),s.length&&s[0]===e[0]?to(s,$(t,2)):[]}),o_=k(function(e){var t=it(e),s=ue(e,fo);return t=typeof t=="function"?t:i,t&&s.pop(),s.length&&s[0]===e[0]?to(s,i,t):[]});function u_(e,t){return e==null?"":nm.call(e,t)}function it(e){var t=e==null?0:e.length;return t?e[t-1]:i}function a_(e,t,s){var l=e==null?0:e.length;if(!l)return-1;var f=l;return s!==i&&(f=G(s),f=f<0?me(l+f,0):Oe(f,l-1)),t===t?Ug(e,t,f):oi(e,ya,f,!0)}function l_(e,t){return e&&e.length?Ka(e,G(t)):i}var c_=k(Hl);function Hl(e,t){return e&&e.length&&t&&t.length?so(e,t):e}function f_(e,t,s){return e&&e.length&&t&&t.length?so(e,t,$(s,2)):e}function h_(e,t,s){return e&&e.length&&t&&t.length?so(e,t,i,s):e}var p_=qt(function(e,t){var s=e==null?0:e.length,l=Zs(e,t);return Qa(e,ue(t,function(f){return $t(f,s)?+f:f}).sort(ll)),l});function d_(e,t){var s=[];if(!(e&&e.length))return s;var l=-1,f=[],p=e.length;for(t=$(t,3);++l<p;){var g=e[l];t(g,l,e)&&(s.push(g),f.push(l))}return Qa(e,f),s}function Oo(e){return e==null?e:um.call(e)}function g_(e,t,s){var l=e==null?0:e.length;return l?(s&&typeof s!="number"&&De(e,t,s)?(t=0,s=l):(t=t==null?0:G(t),s=s===i?l:G(s)),nt(e,t,s)):[]}function m_(e,t){return Oi(e,t)}function v_(e,t,s){return ao(e,t,$(s,2))}function __(e,t){var s=e==null?0:e.length;if(s){var l=Oi(e,t);if(l<s&&dt(e[l],t))return l}return-1}function y_(e,t){return Oi(e,t,!0)}function E_(e,t,s){return ao(e,t,$(s,2),!0)}function w_(e,t){var s=e==null?0:e.length;if(s){var l=Oi(e,t,!0)-1;if(dt(e[l],t))return l}return-1}function b_(e){return e&&e.length?tl(e):[]}function S_(e,t){return e&&e.length?tl(e,$(t,2)):[]}function C_(e){var t=e==null?0:e.length;return t?nt(e,1,t):[]}function x_(e,t,s){return e&&e.length?(t=s||t===i?1:G(t),nt(e,0,t<0?0:t)):[]}function O_(e,t,s){var l=e==null?0:e.length;return l?(t=s||t===i?1:G(t),t=l-t,nt(e,t<0?0:t,l)):[]}function A_(e,t){return e&&e.length?Ai(e,$(t,3),!1,!0):[]}function R_(e,t){return e&&e.length?Ai(e,$(t,3)):[]}var I_=k(function(e){return Zt(Se(e,1,ce,!0))}),T_=k(function(e){var t=it(e);return ce(t)&&(t=i),Zt(Se(e,1,ce,!0),$(t,2))}),P_=k(function(e){var t=it(e);return t=typeof t=="function"?t:i,Zt(Se(e,1,ce,!0),i,t)});function L_(e){return e&&e.length?Zt(e):[]}function D_(e,t){return e&&e.length?Zt(e,$(t,2)):[]}function N_(e,t){return t=typeof t=="function"?t:i,e&&e.length?Zt(e,i,t):[]}function Ao(e){if(!(e&&e.length))return[];var t=0;return e=kt(e,function(s){if(ce(s))return t=me(s.length,t),!0}),Ws(t,function(s){return ue(e,Hs(s))})}function Ul(e,t){if(!(e&&e.length))return[];var s=Ao(e);return t==null?s:ue(s,function(l){return Be(t,i,l)})}var q_=k(function(e,t){return ce(e)?_n(e,t):[]}),$_=k(function(e){return co(kt(e,ce))}),F_=k(function(e){var t=it(e);return ce(t)&&(t=i),co(kt(e,ce),$(t,2))}),M_=k(function(e){var t=it(e);return t=typeof t=="function"?t:i,co(kt(e,ce),i,t)}),j_=k(Ao);function H_(e,t){return sl(e||[],t||[],vn)}function U_(e,t){return sl(e||[],t||[],wn)}var G_=k(function(e){var t=e.length,s=t>1?e[t-1]:i;return s=typeof s=="function"?(e.pop(),s):i,Ul(e,s)});function Gl(e){var t=h(e);return t.__chain__=!0,t}function W_(e,t){return t(e),e}function $i(e,t){return t(e)}var B_=qt(function(e){var t=e.length,s=t?e[0]:0,l=this.__wrapped__,f=function(p){return Zs(p,e)};return t>1||this.__actions__.length||!(l instanceof z)||!$t(s)?this.thru(f):(l=l.slice(s,+s+(t?1:0)),l.__actions__.push({func:$i,args:[f],thisArg:i}),new tt(l,this.__chain__).thru(function(p){return t&&!p.length&&p.push(i),p}))});function k_(){return Gl(this)}function V_(){return new tt(this.value(),this.__chain__)}function z_(){this.__values__===i&&(this.__values__=rc(this.value()));var e=this.__index__>=this.__values__.length,t=e?i:this.__values__[this.__index__++];return{done:e,value:t}}function X_(){return this}function Y_(e){for(var t,s=this;s instanceof wi;){var l=ql(s);l.__index__=0,l.__values__=i,t?f.__wrapped__=l:t=l;var f=l;s=s.__wrapped__}return f.__wrapped__=e,t}function K_(){var e=this.__wrapped__;if(e instanceof z){var t=e;return this.__actions__.length&&(t=new z(this)),t=t.reverse(),t.__actions__.push({func:$i,args:[Oo],thisArg:i}),new tt(t,this.__chain__)}return this.thru(Oo)}function Z_(){return il(this.__wrapped__,this.__actions__)}var J_=Ri(function(e,t,s){ee.call(e,s)?++e[s]:Dt(e,s,1)});function Q_(e,t,s){var l=H(e)?va:Wm;return s&&De(e,t,s)&&(t=i),l(e,$(t,3))}function e0(e,t){var s=H(e)?kt:Ua;return s(e,$(t,3))}var t0=gl($l),r0=gl(Fl);function n0(e,t){return Se(Fi(e,t),1)}function i0(e,t){return Se(Fi(e,t),nr)}function s0(e,t,s){return s=s===i?1:G(s),Se(Fi(e,t),s)}function Wl(e,t){var s=H(e)?Qe:Kt;return s(e,$(t,3))}function Bl(e,t){var s=H(e)?Cg:Ha;return s(e,$(t,3))}var o0=Ri(function(e,t,s){ee.call(e,s)?e[s].push(t):Dt(e,s,[t])});function u0(e,t,s,l){e=je(e)?e:Ur(e),s=s&&!l?G(s):0;var f=e.length;return s<0&&(s=me(f+s,0)),Gi(e)?s<=f&&e.indexOf(t,s)>-1:!!f&&Tr(e,t,s)>-1}var a0=k(function(e,t,s){var l=-1,f=typeof t=="function",p=je(e)?b(e.length):[];return Kt(e,function(g){p[++l]=f?Be(t,g,s):yn(g,t,s)}),p}),l0=Ri(function(e,t,s){Dt(e,s,t)});function Fi(e,t){var s=H(e)?ue:za;return s(e,$(t,3))}function c0(e,t,s,l){return e==null?[]:(H(t)||(t=t==null?[]:[t]),s=l?i:s,H(s)||(s=s==null?[]:[s]),Za(e,t,s))}var f0=Ri(function(e,t,s){e[s?0:1].push(t)},function(){return[[],[]]});function h0(e,t,s){var l=H(e)?Ms:wa,f=arguments.length<3;return l(e,$(t,4),s,f,Kt)}function p0(e,t,s){var l=H(e)?xg:wa,f=arguments.length<3;return l(e,$(t,4),s,f,Ha)}function d0(e,t){var s=H(e)?kt:Ua;return s(e,Hi($(t,3)))}function g0(e){var t=H(e)?$a:uv;return t(e)}function m0(e,t,s){(s?De(e,t,s):t===i)?t=1:t=G(t);var l=H(e)?Mm:av;return l(e,t)}function v0(e){var t=H(e)?jm:cv;return t(e)}function _0(e){if(e==null)return 0;if(je(e))return Gi(e)?Lr(e):e.length;var t=Ae(e);return t==ct||t==ft?e.size:no(e).length}function y0(e,t,s){var l=H(e)?js:fv;return s&&De(e,t,s)&&(t=i),l(e,$(t,3))}var E0=k(function(e,t){if(e==null)return[];var s=t.length;return s>1&&De(e,t[0],t[1])?t=[]:s>2&&De(t[0],t[1],t[2])&&(t=[t[0]]),Za(e,Se(t,1),[])}),Mi=em||function(){return _e.Date.now()};function w0(e,t){if(typeof t!="function")throw new et(a);return e=G(e),function(){if(--e<1)return t.apply(this,arguments)}}function kl(e,t,s){return t=s?i:t,t=e&&t==null?e.length:t,Nt(e,xe,i,i,i,i,t)}function Vl(e,t){var s;if(typeof t!="function")throw new et(a);return e=G(e),function(){return--e>0&&(s=t.apply(this,arguments)),e<=1&&(t=i),s}}var Ro=k(function(e,t,s){var l=Z;if(s.length){var f=zt(s,jr(Ro));l|=ve}return Nt(e,l,t,s,f)}),zl=k(function(e,t,s){var l=Z|oe;if(s.length){var f=zt(s,jr(zl));l|=ve}return Nt(t,l,e,s,f)});function Xl(e,t,s){t=s?i:t;var l=Nt(e,Y,i,i,i,i,i,t);return l.placeholder=Xl.placeholder,l}function Yl(e,t,s){t=s?i:t;var l=Nt(e,lt,i,i,i,i,i,t);return l.placeholder=Yl.placeholder,l}function Kl(e,t,s){var l,f,p,g,y,w,x=0,O=!1,A=!1,T=!0;if(typeof e!="function")throw new et(a);t=st(t)||0,ae(s)&&(O=!!s.leading,A="maxWait"in s,p=A?me(st(s.maxWait)||0,t):p,T="trailing"in s?!!s.trailing:T);function q(fe){var gt=l,jt=f;return l=f=i,x=fe,g=e.apply(jt,gt),g}function F(fe){return x=fe,y=Cn(V,t),O?q(fe):g}function W(fe){var gt=fe-w,jt=fe-x,gc=t-gt;return A?Oe(gc,p-jt):gc}function M(fe){var gt=fe-w,jt=fe-x;return w===i||gt>=t||gt<0||A&&jt>=p}function V(){var fe=Mi();if(M(fe))return X(fe);y=Cn(V,W(fe))}function X(fe){return y=i,T&&l?q(fe):(l=f=i,g)}function Xe(){y!==i&&ol(y),x=0,l=w=f=y=i}function Ne(){return y===i?g:X(Mi())}function Ye(){var fe=Mi(),gt=M(fe);if(l=arguments,f=this,w=fe,gt){if(y===i)return F(w);if(A)return ol(y),y=Cn(V,t),q(w)}return y===i&&(y=Cn(V,t)),g}return Ye.cancel=Xe,Ye.flush=Ne,Ye}var b0=k(function(e,t){return ja(e,1,t)}),S0=k(function(e,t,s){return ja(e,st(t)||0,s)});function C0(e){return Nt(e,rn)}function ji(e,t){if(typeof e!="function"||t!=null&&typeof t!="function")throw new et(a);var s=function(){var l=arguments,f=t?t.apply(this,l):l[0],p=s.cache;if(p.has(f))return p.get(f);var g=e.apply(this,l);return s.cache=p.set(f,g)||p,g};return s.cache=new(ji.Cache||Lt),s}ji.Cache=Lt;function Hi(e){if(typeof e!="function")throw new et(a);return function(){var t=arguments;switch(t.length){case 0:return!e.call(this);case 1:return!e.call(this,t[0]);case 2:return!e.call(this,t[0],t[1]);case 3:return!e.call(this,t[0],t[1],t[2])}return!e.apply(this,t)}}function x0(e){return Vl(2,e)}var O0=hv(function(e,t){t=t.length==1&&H(t[0])?ue(t[0],ke($())):ue(Se(t,1),ke($()));var s=t.length;return k(function(l){for(var f=-1,p=Oe(l.length,s);++f<p;)l[f]=t[f].call(this,l[f]);return Be(e,this,l)})}),Io=k(function(e,t){var s=zt(t,jr(Io));return Nt(e,ve,i,t,s)}),Zl=k(function(e,t){var s=zt(t,jr(Zl));return Nt(e,pe,i,t,s)}),A0=qt(function(e,t){return Nt(e,We,i,i,i,t)});function R0(e,t){if(typeof e!="function")throw new et(a);return t=t===i?t:G(t),k(e,t)}function I0(e,t){if(typeof e!="function")throw new et(a);return t=t==null?0:me(G(t),0),k(function(s){var l=s[t],f=Qt(s,0,t);return l&&Vt(f,l),Be(e,this,f)})}function T0(e,t,s){var l=!0,f=!0;if(typeof e!="function")throw new et(a);return ae(s)&&(l="leading"in s?!!s.leading:l,f="trailing"in s?!!s.trailing:f),Kl(e,t,{leading:l,maxWait:t,trailing:f})}function P0(e){return kl(e,1)}function L0(e,t){return Io(ho(t),e)}function D0(){if(!arguments.length)return[];var e=arguments[0];return H(e)?e:[e]}function N0(e){return rt(e,S)}function q0(e,t){return t=typeof t=="function"?t:i,rt(e,S,t)}function $0(e){return rt(e,c|S)}function F0(e,t){return t=typeof t=="function"?t:i,rt(e,c|S,t)}function M0(e,t){return t==null||Ma(e,t,ye(t))}function dt(e,t){return e===t||e!==e&&t!==t}var j0=Li(eo),H0=Li(function(e,t){return e>=t}),hr=Ba(function(){return arguments}())?Ba:function(e){return le(e)&&ee.call(e,"callee")&&!Ta.call(e,"callee")},H=b.isArray,U0=fa?ke(fa):Ym;function je(e){return e!=null&&Ui(e.length)&&!Ft(e)}function ce(e){return le(e)&&je(e)}function G0(e){return e===!0||e===!1||le(e)&&Le(e)==nn}var er=rm||Ho,W0=ha?ke(ha):Km;function B0(e){return le(e)&&e.nodeType===1&&!xn(e)}function k0(e){if(e==null)return!0;if(je(e)&&(H(e)||typeof e=="string"||typeof e.splice=="function"||er(e)||Hr(e)||hr(e)))return!e.length;var t=Ae(e);if(t==ct||t==ft)return!e.size;if(Sn(e))return!no(e).length;for(var s in e)if(ee.call(e,s))return!1;return!0}function V0(e,t){return En(e,t)}function z0(e,t,s){s=typeof s=="function"?s:i;var l=s?s(e,t):i;return l===i?En(e,t,i,s):!!l}function To(e){if(!le(e))return!1;var t=Le(e);return t==Qn||t==md||typeof e.message=="string"&&typeof e.name=="string"&&!xn(e)}function X0(e){return typeof e=="number"&&La(e)}function Ft(e){if(!ae(e))return!1;var t=Le(e);return t==ei||t==ju||t==gd||t==_d}function Jl(e){return typeof e=="number"&&e==G(e)}function Ui(e){return typeof e=="number"&&e>-1&&e%1==0&&e<=Bt}function ae(e){var t=typeof e;return e!=null&&(t=="object"||t=="function")}function le(e){return e!=null&&typeof e=="object"}var Ql=pa?ke(pa):Jm;function Y0(e,t){return e===t||ro(e,t,Eo(t))}function K0(e,t,s){return s=typeof s=="function"?s:i,ro(e,t,Eo(t),s)}function Z0(e){return ec(e)&&e!=+e}function J0(e){if(qv(e))throw new j(o);return ka(e)}function Q0(e){return e===null}function e1(e){return e==null}function ec(e){return typeof e=="number"||le(e)&&Le(e)==on}function xn(e){if(!le(e)||Le(e)!=Tt)return!1;var t=di(e);if(t===null)return!0;var s=ee.call(t,"constructor")&&t.constructor;return typeof s=="function"&&s instanceof s&&ci.call(s)==Kg}var Po=da?ke(da):Qm;function t1(e){return Jl(e)&&e>=-Bt&&e<=Bt}var tc=ga?ke(ga):ev;function Gi(e){return typeof e=="string"||!H(e)&&le(e)&&Le(e)==an}function ze(e){return typeof e=="symbol"||le(e)&&Le(e)==ti}var Hr=ma?ke(ma):tv;function r1(e){return e===i}function n1(e){return le(e)&&Ae(e)==ln}function i1(e){return le(e)&&Le(e)==Ed}var s1=Li(io),o1=Li(function(e,t){return e<=t});function rc(e){if(!e)return[];if(je(e))return Gi(e)?ht(e):Me(e);if(hn&&e[hn])return Mg(e[hn]());var t=Ae(e),s=t==ct?ks:t==ft?ui:Ur;return s(e)}function Mt(e){if(!e)return e===0?e:0;if(e=st(e),e===nr||e===-nr){var t=e<0?-1:1;return t*fd}return e===e?e:0}function G(e){var t=Mt(e),s=t%1;return t===t?s?t-s:t:0}function nc(e){return e?ar(G(e),0,vt):0}function st(e){if(typeof e=="number")return e;if(ze(e))return Zn;if(ae(e)){var t=typeof e.valueOf=="function"?e.valueOf():e;e=ae(t)?t+"":t}if(typeof e!="string")return e===0?e:+e;e=ba(e);var s=Ud.test(e);return s||Wd.test(e)?wg(e.slice(2),s?2:8):Hd.test(e)?Zn:+e}function ic(e){return yt(e,He(e))}function u1(e){return e?ar(G(e),-Bt,Bt):e===0?e:0}function Q(e){return e==null?"":Ve(e)}var a1=Fr(function(e,t){if(Sn(t)||je(t)){yt(t,ye(t),e);return}for(var s in t)ee.call(t,s)&&vn(e,s,t[s])}),sc=Fr(function(e,t){yt(t,He(t),e)}),Wi=Fr(function(e,t,s,l){yt(t,He(t),e,l)}),l1=Fr(function(e,t,s,l){yt(t,ye(t),e,l)}),c1=qt(Zs);function f1(e,t){var s=$r(e);return t==null?s:Fa(s,t)}var h1=k(function(e,t){e=re(e);var s=-1,l=t.length,f=l>2?t[2]:i;for(f&&De(t[0],t[1],f)&&(l=1);++s<l;)for(var p=t[s],g=He(p),y=-1,w=g.length;++y<w;){var x=g[y],O=e[x];(O===i||dt(O,Dr[x])&&!ee.call(e,x))&&(e[x]=p[x])}return e}),p1=k(function(e){return e.push(i,bl),Be(oc,i,e)});function d1(e,t){return _a(e,$(t,3),_t)}function g1(e,t){return _a(e,$(t,3),Qs)}function m1(e,t){return e==null?e:Js(e,$(t,3),He)}function v1(e,t){return e==null?e:Ga(e,$(t,3),He)}function _1(e,t){return e&&_t(e,$(t,3))}function y1(e,t){return e&&Qs(e,$(t,3))}function E1(e){return e==null?[]:Ci(e,ye(e))}function w1(e){return e==null?[]:Ci(e,He(e))}function Lo(e,t,s){var l=e==null?i:lr(e,t);return l===i?s:l}function b1(e,t){return e!=null&&xl(e,t,km)}function Do(e,t){return e!=null&&xl(e,t,Vm)}var S1=vl(function(e,t,s){t!=null&&typeof t.toString!="function"&&(t=fi.call(t)),e[t]=s},qo(Ue)),C1=vl(function(e,t,s){t!=null&&typeof t.toString!="function"&&(t=fi.call(t)),ee.call(e,t)?e[t].push(s):e[t]=[s]},$),x1=k(yn);function ye(e){return je(e)?qa(e):no(e)}function He(e){return je(e)?qa(e,!0):rv(e)}function O1(e,t){var s={};return t=$(t,3),_t(e,function(l,f,p){Dt(s,t(l,f,p),l)}),s}function A1(e,t){var s={};return t=$(t,3),_t(e,function(l,f,p){Dt(s,f,t(l,f,p))}),s}var R1=Fr(function(e,t,s){xi(e,t,s)}),oc=Fr(function(e,t,s,l){xi(e,t,s,l)}),I1=qt(function(e,t){var s={};if(e==null)return s;var l=!1;t=ue(t,function(p){return p=Jt(p,e),l||(l=p.length>1),p}),yt(e,_o(e),s),l&&(s=rt(s,c|v|S,Sv));for(var f=t.length;f--;)lo(s,t[f]);return s});function T1(e,t){return uc(e,Hi($(t)))}var P1=qt(function(e,t){return e==null?{}:iv(e,t)});function uc(e,t){if(e==null)return{};var s=ue(_o(e),function(l){return[l]});return t=$(t),Ja(e,s,function(l,f){return t(l,f[0])})}function L1(e,t,s){t=Jt(t,e);var l=-1,f=t.length;for(f||(f=1,e=i);++l<f;){var p=e==null?i:e[Et(t[l])];p===i&&(l=f,p=s),e=Ft(p)?p.call(e):p}return e}function D1(e,t,s){return e==null?e:wn(e,t,s)}function N1(e,t,s,l){return l=typeof l=="function"?l:i,e==null?e:wn(e,t,s,l)}var ac=El(ye),lc=El(He);function q1(e,t,s){var l=H(e),f=l||er(e)||Hr(e);if(t=$(t,4),s==null){var p=e&&e.constructor;f?s=l?new p:[]:ae(e)?s=Ft(p)?$r(di(e)):{}:s={}}return(f?Qe:_t)(e,function(g,y,w){return t(s,g,y,w)}),s}function $1(e,t){return e==null?!0:lo(e,t)}function F1(e,t,s){return e==null?e:nl(e,t,ho(s))}function M1(e,t,s,l){return l=typeof l=="function"?l:i,e==null?e:nl(e,t,ho(s),l)}function Ur(e){return e==null?[]:Bs(e,ye(e))}function j1(e){return e==null?[]:Bs(e,He(e))}function H1(e,t,s){return s===i&&(s=t,t=i),s!==i&&(s=st(s),s=s===s?s:0),t!==i&&(t=st(t),t=t===t?t:0),ar(st(e),t,s)}function U1(e,t,s){return t=Mt(t),s===i?(s=t,t=0):s=Mt(s),e=st(e),zm(e,t,s)}function G1(e,t,s){if(s&&typeof s!="boolean"&&De(e,t,s)&&(t=s=i),s===i&&(typeof t=="boolean"?(s=t,t=i):typeof e=="boolean"&&(s=e,e=i)),e===i&&t===i?(e=0,t=1):(e=Mt(e),t===i?(t=e,e=0):t=Mt(t)),e>t){var l=e;e=t,t=l}if(s||e%1||t%1){var f=Da();return Oe(e+f*(t-e+Eg("1e-"+((f+"").length-1))),t)}return oo(e,t)}var W1=Mr(function(e,t,s){return t=t.toLowerCase(),e+(s?cc(t):t)});function cc(e){return No(Q(e).toLowerCase())}function fc(e){return e=Q(e),e&&e.replace(kd,Dg).replace(cg,"")}function B1(e,t,s){e=Q(e),t=Ve(t);var l=e.length;s=s===i?l:ar(G(s),0,l);var f=s;return s-=t.length,s>=0&&e.slice(s,f)==t}function k1(e){return e=Q(e),e&&xd.test(e)?e.replace(Gu,Ng):e}function V1(e){return e=Q(e),e&&Pd.test(e)?e.replace(Rs,"\\$&"):e}var z1=Mr(function(e,t,s){return e+(s?"-":"")+t.toLowerCase()}),X1=Mr(function(e,t,s){return e+(s?" ":"")+t.toLowerCase()}),Y1=dl("toLowerCase");function K1(e,t,s){e=Q(e),t=G(t);var l=t?Lr(e):0;if(!t||l>=t)return e;var f=(t-l)/2;return Pi(_i(f),s)+e+Pi(vi(f),s)}function Z1(e,t,s){e=Q(e),t=G(t);var l=t?Lr(e):0;return t&&l<t?e+Pi(t-l,s):e}function J1(e,t,s){e=Q(e),t=G(t);var l=t?Lr(e):0;return t&&l<t?Pi(t-l,s)+e:e}function Q1(e,t,s){return s||t==null?t=0:t&&(t=+t),om(Q(e).replace(Is,""),t||0)}function ey(e,t,s){return(s?De(e,t,s):t===i)?t=1:t=G(t),uo(Q(e),t)}function ty(){var e=arguments,t=Q(e[0]);return e.length<3?t:t.replace(e[1],e[2])}var ry=Mr(function(e,t,s){return e+(s?"_":"")+t.toLowerCase()});function ny(e,t,s){return s&&typeof s!="number"&&De(e,t,s)&&(t=s=i),s=s===i?vt:s>>>0,s?(e=Q(e),e&&(typeof t=="string"||t!=null&&!Po(t))&&(t=Ve(t),!t&&Pr(e))?Qt(ht(e),0,s):e.split(t,s)):[]}var iy=Mr(function(e,t,s){return e+(s?" ":"")+No(t)});function sy(e,t,s){return e=Q(e),s=s==null?0:ar(G(s),0,e.length),t=Ve(t),e.slice(s,s+t.length)==t}function oy(e,t,s){var l=h.templateSettings;s&&De(e,t,s)&&(t=i),e=Q(e),t=Wi({},t,l,wl);var f=Wi({},t.imports,l.imports,wl),p=ye(f),g=Bs(f,p),y,w,x=0,O=t.interpolate||ri,A="__p += '",T=Vs((t.escape||ri).source+"|"+O.source+"|"+(O===Wu?jd:ri).source+"|"+(t.evaluate||ri).source+"|$","g"),q="//# sourceURL="+(ee.call(t,"sourceURL")?(t.sourceURL+"").replace(/\s/g," "):"lodash.templateSources["+ ++gg+"]")+`
18
+ `;e.replace(T,function(M,V,X,Xe,Ne,Ye){return X||(X=Xe),A+=e.slice(x,Ye).replace(Vd,qg),V&&(y=!0,A+=`' +
19
+ __e(`+V+`) +
20
+ '`),Ne&&(w=!0,A+=`';
21
+ `+Ne+`;
22
+ __p += '`),X&&(A+=`' +
23
+ ((__t = (`+X+`)) == null ? '' : __t) +
24
+ '`),x=Ye+M.length,M}),A+=`';
25
+ `;var F=ee.call(t,"variable")&&t.variable;if(!F)A=`with (obj) {
26
+ `+A+`
27
27
  }
28
- `;else if(o_.test(F))throw new G(u);R=(w?R.replace(Wv,""):R).replace(kv,"$1").replace(Vv,"$1;"),R="function("+(F||"obj")+`) {
28
+ `;else if(Fd.test(F))throw new j(u);A=(w?A.replace(wd,""):A).replace(bd,"$1").replace(Sd,"$1;"),A="function("+(F||"obj")+`) {
29
29
  `+(F?"":`obj || (obj = {});
30
30
  `)+"var __t, __p = ''"+(y?", __e = _.escape":"")+(w?`, __j = Array.prototype.join;
31
31
  function print() { __p += __j.call(arguments, '') }
32
32
  `:`;
33
- `)+R+`return __p
34
- }`;var W=Tf(function(){return te(d,D+"return "+R).apply(t,v)});if(W.source=R,_u(W))throw W;return W}function Pb(e){return ie(e).toLowerCase()}function Tb(e){return ie(e).toUpperCase()}function Lb(e,r,s){if(e=ie(e),e&&(s||r===t))return Mc(e);if(!e||!(r=Xe(r)))return e;var c=pt(e),f=pt(r),d=Gc(c,f),v=Hc(c,f)+1;return tr(c,d,v).join("")}function Nb(e,r,s){if(e=ie(e),e&&(s||r===t))return e.slice(0,Uc(e)+1);if(!e||!(r=Xe(r)))return e;var c=pt(e),f=Hc(c,pt(r))+1;return tr(c,0,f).join("")}function qb(e,r,s){if(e=ie(e),e&&(s||r===t))return e.replace(_o,"");if(!e||!(r=Xe(r)))return e;var c=pt(e),f=Gc(c,pt(r));return tr(c,f).join("")}function Db(e,r){var s=Tt,c=Rv;if(fe(r)){var f="separator"in r?r.separator:f;s="length"in r?U(r.length):s,c="omission"in r?Xe(r.omission):c}e=ie(e);var d=e.length;if(Fr(e)){var v=pt(e);d=v.length}if(s>=d)return e;var y=s-jr(c);if(y<1)return c;var w=v?tr(v,0,y).join(""):e.slice(0,y);if(f===t)return w+c;if(v&&(y+=w.length-y),yu(f)){if(e.slice(y).search(f)){var A,O=w;for(f.global||(f=Do(f.source,ie(uc.exec(f))+"g")),f.lastIndex=0;A=f.exec(O);)var R=A.index;w=w.slice(0,R===t?y:R)}}else if(e.indexOf(Xe(f),y)!=y){var T=w.lastIndexOf(f);T>-1&&(w=w.slice(0,T))}return w+c}function $b(e){return e=ie(e),e&&zv.test(e)?e.replace(ic,f0):e}var Fb=Wr(function(e,r,s){return e+(s?" ":"")+r.toUpperCase()}),bu=Tl("toUpperCase");function Pf(e,r,s){return e=ie(e),r=s?t:r,r===t?o0(e)?d0(e):Z_(e):e.match(r)||[]}var Tf=V(function(e,r){try{return ze(e,t,r)}catch(s){return _u(s)?s:new G(s)}}),jb=Ft(function(e,r){return tt(r,function(s){s=xt(s),Dt(e,s,gu(e[s],e))}),e});function Mb(e){var r=e==null?0:e.length,s=$();return e=r?le(e,function(c){if(typeof c[1]!="function")throw new rt(a);return[s(c[0]),c[1]]}):[],V(function(c){for(var f=-1;++f<r;){var d=e[f];if(ze(d[0],this,c))return ze(d[1],this,c)}})}function Gb(e){return f1(it(e,l))}function Su(e){return function(){return e}}function Hb(e,r){return e==null||e!==e?r:e}var Bb=Nl(),Ub=Nl(!0);function We(e){return e}function xu(e){return cl(typeof e=="function"?e:it(e,l))}function Wb(e){return fl(it(e,l))}function kb(e,r){return hl(e,it(r,l))}var Vb=V(function(e,r){return function(s){return Nn(s,e,r)}}),zb=V(function(e,r){return function(s){return Nn(e,s,r)}});function Cu(e,r,s){var c=be(r),f=Vi(r,c);s==null&&!(fe(r)&&(f.length||!c.length))&&(s=r,r=e,e=this,f=Vi(r,be(r)));var d=!(fe(s)&&"chain"in s)||!!s.chain,v=Mt(e);return tt(f,function(y){var w=r[y];e[y]=w,v&&(e.prototype[y]=function(){var A=this.__chain__;if(d||A){var O=e(this.__wrapped__),R=O.__actions__=He(this.__actions__);return R.push({func:w,args:arguments,thisArg:e}),O.__chain__=A,O}return w.apply(e,Kt([this.value()],arguments))})}),e}function Kb(){return we._===this&&(we._=E0),this}function Au(){}function Xb(e){return e=U(e),V(function(r){return pl(r,e)})}var Yb=nu(le),Zb=nu(qc),Jb=nu(Io);function Lf(e){return lu(e)?Ro(xt(e)):I1(e)}function Qb(e){return function(r){return e==null?t:mr(e,r)}}var eS=Dl(),tS=Dl(!0);function Ou(){return[]}function Iu(){return!1}function rS(){return{}}function nS(){return""}function iS(){return!0}function sS(e,r){if(e=U(e),e<1||e>Vt)return[];var s=wt,c=Pe(e,wt);r=$(r),e-=wt;for(var f=Lo(c,r);++s<e;)r(s);return f}function oS(e){return H(e)?le(e,xt):Ye(e)?[e]:He(Zl(ie(e)))}function uS(e){var r=++_0;return ie(e)+r}var aS=Ji(function(e,r){return e+r},0),cS=iu("ceil"),lS=Ji(function(e,r){return e/r},1),fS=iu("floor");function hS(e){return e&&e.length?ki(e,We,Uo):t}function pS(e,r){return e&&e.length?ki(e,$(r,2),Uo):t}function dS(e){return Fc(e,We)}function mS(e,r){return Fc(e,$(r,2))}function gS(e){return e&&e.length?ki(e,We,zo):t}function vS(e,r){return e&&e.length?ki(e,$(r,2),zo):t}var _S=Ji(function(e,r){return e*r},1),yS=iu("round"),ES=Ji(function(e,r){return e-r},0);function wS(e){return e&&e.length?To(e,We):0}function bS(e,r){return e&&e.length?To(e,$(r,2)):0}return p.after=WE,p.ary=cf,p.assign=Tw,p.assignIn=Sf,p.assignInWith=fs,p.assignWith=Lw,p.at=Nw,p.before=lf,p.bind=gu,p.bindAll=jb,p.bindKey=ff,p.castArray=rw,p.chain=of,p.chunk=fy,p.compact=hy,p.concat=py,p.cond=Mb,p.conforms=Gb,p.constant=Su,p.countBy=wE,p.create=qw,p.curry=hf,p.curryRight=pf,p.debounce=df,p.defaults=Dw,p.defaultsDeep=$w,p.defer=kE,p.delay=VE,p.difference=dy,p.differenceBy=my,p.differenceWith=gy,p.drop=vy,p.dropRight=_y,p.dropRightWhile=yy,p.dropWhile=Ey,p.fill=wy,p.filter=SE,p.flatMap=AE,p.flatMapDeep=OE,p.flatMapDepth=IE,p.flatten=tf,p.flattenDeep=by,p.flattenDepth=Sy,p.flip=zE,p.flow=Bb,p.flowRight=Ub,p.fromPairs=xy,p.functions=Uw,p.functionsIn=Ww,p.groupBy=RE,p.initial=Ay,p.intersection=Oy,p.intersectionBy=Iy,p.intersectionWith=Ry,p.invert=Vw,p.invertBy=zw,p.invokeMap=TE,p.iteratee=xu,p.keyBy=LE,p.keys=be,p.keysIn=Ue,p.map=ss,p.mapKeys=Xw,p.mapValues=Yw,p.matches=Wb,p.matchesProperty=kb,p.memoize=us,p.merge=Zw,p.mergeWith=xf,p.method=Vb,p.methodOf=zb,p.mixin=Cu,p.negate=as,p.nthArg=Xb,p.omit=Jw,p.omitBy=Qw,p.once=KE,p.orderBy=NE,p.over=Yb,p.overArgs=XE,p.overEvery=Zb,p.overSome=Jb,p.partial=vu,p.partialRight=mf,p.partition=qE,p.pick=eb,p.pickBy=Cf,p.property=Lf,p.propertyOf=Qb,p.pull=Ny,p.pullAll=nf,p.pullAllBy=qy,p.pullAllWith=Dy,p.pullAt=$y,p.range=eS,p.rangeRight=tS,p.rearg=YE,p.reject=FE,p.remove=Fy,p.rest=ZE,p.reverse=du,p.sampleSize=ME,p.set=rb,p.setWith=nb,p.shuffle=GE,p.slice=jy,p.sortBy=UE,p.sortedUniq=ky,p.sortedUniqBy=Vy,p.split=Ab,p.spread=JE,p.tail=zy,p.take=Ky,p.takeRight=Xy,p.takeRightWhile=Yy,p.takeWhile=Zy,p.tap=hE,p.throttle=QE,p.thru=is,p.toArray=Ef,p.toPairs=Af,p.toPairsIn=Of,p.toPath=oS,p.toPlainObject=bf,p.transform=ib,p.unary=ew,p.union=Jy,p.unionBy=Qy,p.unionWith=eE,p.uniq=tE,p.uniqBy=rE,p.uniqWith=nE,p.unset=sb,p.unzip=mu,p.unzipWith=sf,p.update=ob,p.updateWith=ub,p.values=zr,p.valuesIn=ab,p.without=iE,p.words=Pf,p.wrap=tw,p.xor=sE,p.xorBy=oE,p.xorWith=uE,p.zip=aE,p.zipObject=cE,p.zipObjectDeep=lE,p.zipWith=fE,p.entries=Af,p.entriesIn=Of,p.extend=Sf,p.extendWith=fs,Cu(p,p),p.add=aS,p.attempt=Tf,p.camelCase=hb,p.capitalize=If,p.ceil=cS,p.clamp=cb,p.clone=nw,p.cloneDeep=sw,p.cloneDeepWith=ow,p.cloneWith=iw,p.conformsTo=uw,p.deburr=Rf,p.defaultTo=Hb,p.divide=lS,p.endsWith=pb,p.eq=mt,p.escape=db,p.escapeRegExp=mb,p.every=bE,p.find=xE,p.findIndex=Ql,p.findKey=Fw,p.findLast=CE,p.findLastIndex=ef,p.findLastKey=jw,p.floor=fS,p.forEach=uf,p.forEachRight=af,p.forIn=Mw,p.forInRight=Gw,p.forOwn=Hw,p.forOwnRight=Bw,p.get=Eu,p.gt=aw,p.gte=cw,p.has=kw,p.hasIn=wu,p.head=rf,p.identity=We,p.includes=PE,p.indexOf=Cy,p.inRange=lb,p.invoke=Kw,p.isArguments=_r,p.isArray=H,p.isArrayBuffer=lw,p.isArrayLike=Be,p.isArrayLikeObject=pe,p.isBoolean=fw,p.isBuffer=rr,p.isDate=hw,p.isElement=pw,p.isEmpty=dw,p.isEqual=mw,p.isEqualWith=gw,p.isError=_u,p.isFinite=vw,p.isFunction=Mt,p.isInteger=gf,p.isLength=cs,p.isMap=vf,p.isMatch=_w,p.isMatchWith=yw,p.isNaN=Ew,p.isNative=ww,p.isNil=Sw,p.isNull=bw,p.isNumber=_f,p.isObject=fe,p.isObjectLike=he,p.isPlainObject=Mn,p.isRegExp=yu,p.isSafeInteger=xw,p.isSet=yf,p.isString=ls,p.isSymbol=Ye,p.isTypedArray=Vr,p.isUndefined=Cw,p.isWeakMap=Aw,p.isWeakSet=Ow,p.join=Py,p.kebabCase=gb,p.last=ot,p.lastIndexOf=Ty,p.lowerCase=vb,p.lowerFirst=_b,p.lt=Iw,p.lte=Rw,p.max=hS,p.maxBy=pS,p.mean=dS,p.meanBy=mS,p.min=gS,p.minBy=vS,p.stubArray=Ou,p.stubFalse=Iu,p.stubObject=rS,p.stubString=nS,p.stubTrue=iS,p.multiply=_S,p.nth=Ly,p.noConflict=Kb,p.noop=Au,p.now=os,p.pad=yb,p.padEnd=Eb,p.padStart=wb,p.parseInt=bb,p.random=fb,p.reduce=DE,p.reduceRight=$E,p.repeat=Sb,p.replace=xb,p.result=tb,p.round=yS,p.runInContext=E,p.sample=jE,p.size=HE,p.snakeCase=Cb,p.some=BE,p.sortedIndex=My,p.sortedIndexBy=Gy,p.sortedIndexOf=Hy,p.sortedLastIndex=By,p.sortedLastIndexBy=Uy,p.sortedLastIndexOf=Wy,p.startCase=Ob,p.startsWith=Ib,p.subtract=ES,p.sum=wS,p.sumBy=bS,p.template=Rb,p.times=sS,p.toFinite=Gt,p.toInteger=U,p.toLength=wf,p.toLower=Pb,p.toNumber=ut,p.toSafeInteger=Pw,p.toString=ie,p.toUpper=Tb,p.trim=Lb,p.trimEnd=Nb,p.trimStart=qb,p.truncate=Db,p.unescape=$b,p.uniqueId=uS,p.upperCase=Fb,p.upperFirst=bu,p.each=uf,p.eachRight=af,p.first=rf,Cu(p,function(){var e={};return bt(p,function(r,s){se.call(p.prototype,s)||(e[s]=r)}),e}(),{chain:!1}),p.VERSION=n,tt(["bind","bindKey","curry","curryRight","partial","partialRight"],function(e){p[e].placeholder=p}),tt(["drop","take"],function(e,r){Y.prototype[e]=function(s){s=s===t?1:Ee(U(s),0);var c=this.__filtered__&&!r?new Y(this):this.clone();return c.__filtered__?c.__takeCount__=Pe(s,c.__takeCount__):c.__views__.push({size:Pe(s,wt),type:e+(c.__dir__<0?"Right":"")}),c},Y.prototype[e+"Right"]=function(s){return this.reverse()[e](s).reverse()}}),tt(["filter","map","takeWhile"],function(e,r){var s=r+1,c=s==tc||s==Nv;Y.prototype[e]=function(f){var d=this.clone();return d.__iteratees__.push({iteratee:$(f,3),type:s}),d.__filtered__=d.__filtered__||c,d}}),tt(["head","last"],function(e,r){var s="take"+(r?"Right":"");Y.prototype[e]=function(){return this[s](1).value()[0]}}),tt(["initial","tail"],function(e,r){var s="drop"+(r?"":"Right");Y.prototype[e]=function(){return this.__filtered__?new Y(this):this[s](1)}}),Y.prototype.compact=function(){return this.filter(We)},Y.prototype.find=function(e){return this.filter(e).head()},Y.prototype.findLast=function(e){return this.reverse().find(e)},Y.prototype.invokeMap=V(function(e,r){return typeof e=="function"?new Y(this):this.map(function(s){return Nn(s,e,r)})}),Y.prototype.reject=function(e){return this.filter(as($(e)))},Y.prototype.slice=function(e,r){e=U(e);var s=this;return s.__filtered__&&(e>0||r<0)?new Y(s):(e<0?s=s.takeRight(-e):e&&(s=s.drop(e)),r!==t&&(r=U(r),s=r<0?s.dropRight(-r):s.take(r-e)),s)},Y.prototype.takeRightWhile=function(e){return this.reverse().takeWhile(e).reverse()},Y.prototype.toArray=function(){return this.take(wt)},bt(Y.prototype,function(e,r){var s=/^(?:filter|find|map|reject)|While$/.test(r),c=/^(?:head|last)$/.test(r),f=p[c?"take"+(r=="last"?"Right":""):r],d=c||/^find/.test(r);!f||(p.prototype[r]=function(){var v=this.__wrapped__,y=c?[1]:arguments,w=v instanceof Y,A=y[0],O=w||H(v),R=function(z){var J=f.apply(p,Kt([z],y));return c&&T?J[0]:J};O&&s&&typeof A=="function"&&A.length!=1&&(w=O=!1);var T=this.__chain__,D=!!this.__actions__.length,F=d&&!T,W=w&&!D;if(!d&&O){v=W?v:new Y(this);var j=e.apply(v,y);return j.__actions__.push({func:is,args:[R],thisArg:t}),new nt(j,T)}return F&&W?e.apply(this,y):(j=this.thru(R),F?c?j.value()[0]:j.value():j)})}),tt(["pop","push","shift","sort","splice","unshift"],function(e){var r=Pi[e],s=/^(?:push|sort|unshift)$/.test(e)?"tap":"thru",c=/^(?:pop|shift)$/.test(e);p.prototype[e]=function(){var f=arguments;if(c&&!this.__chain__){var d=this.value();return r.apply(H(d)?d:[],f)}return this[s](function(v){return r.apply(H(v)?v:[],f)})}}),bt(Y.prototype,function(e,r){var s=p[r];if(s){var c=s.name+"";se.call(Hr,c)||(Hr[c]=[]),Hr[c].push({name:r,func:s})}}),Hr[Zi(t,B).name]=[{name:"wrapper",func:t}],Y.prototype.clone=$0,Y.prototype.reverse=F0,Y.prototype.value=j0,p.prototype.at=pE,p.prototype.chain=dE,p.prototype.commit=mE,p.prototype.next=gE,p.prototype.plant=_E,p.prototype.reverse=yE,p.prototype.toJSON=p.prototype.valueOf=p.prototype.value=EE,p.prototype.first=p.prototype.head,An&&(p.prototype[An]=vE),p},Yt=m0();typeof define=="function"&&typeof define.amd=="object"&&define.amd?(we._=Yt,define(function(){return Yt})):lr?((lr.exports=Yt)._=Yt,xo._=Yt):we._=Yt}).call(Zr)});var Os=x(Wt=>{"use strict";var Ku=Wt&&Wt.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(Wt,"__esModule",{value:!0});Wt.getHistoryFile=Wt.getHomeDir=void 0;var $C=Ku(require("os")),Bp=Ku(require("path")),FC=Ku(ke()),As=FC.default.fse;function Xu(){var t=Bp.default.join($C.default.homedir(),".s");return As.existsSync(t)||As.mkdirSync(t),t}Wt.getHomeDir=Xu;function Up(){var t=Bp.default.join(Xu(),"history");return As.existsSync(t)||As.createFileSync(t),t}Wt.getHistoryFile=Up;Wt.default={getHomeDir:Xu,getHistoryFile:Up}});var Ps=x(Me=>{"use strict";var jC=Me&&Me.__awaiter||function(t,n,i,o){function a(u){return u instanceof i?u:new i(function(h){h(u)})}return new(i||(i=Promise))(function(u,h){function m(_){try{l(o.next(_))}catch(S){h(S)}}function g(_){try{l(o.throw(_))}catch(S){h(S)}}function l(_){_.done?u(_.value):a(_.value).then(m,g)}l((o=o.apply(t,n||[])).next())})},MC=Me&&Me.__generator||function(t,n){var i={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]},o,a,u,h;return h={next:m(0),throw:m(1),return:m(2)},typeof Symbol=="function"&&(h[Symbol.iterator]=function(){return this}),h;function m(l){return function(_){return g([l,_])}}function g(l){if(o)throw new TypeError("Generator is already executing.");for(;i;)try{if(o=1,a&&(u=l[0]&2?a.return:l[0]?a.throw||((u=a.return)&&u.call(a),0):a.next)&&!(u=u.call(a,l[1])).done)return u;switch(a=0,u&&(l=[l[0]&2,u.value]),l[0]){case 0:case 1:u=l;break;case 4:return i.label++,{value:l[1],done:!1};case 5:i.label++,a=l[1],l=[0];continue;case 7:l=i.ops.pop(),i.trys.pop();continue;default:if(u=i.trys,!(u=u.length>0&&u[u.length-1])&&(l[0]===6||l[0]===2)){i=0;continue}if(l[0]===3&&(!u||l[1]>u[0]&&l[1]<u[3])){i.label=l[1];break}if(l[0]===6&&i.label<u[1]){i.label=u[1],u=l;break}if(u&&i.label<u[2]){i.label=u[2],i.ops.push(l);break}u[2]&&i.ops.pop(),i.trys.pop();continue}l=n.call(t,i)}catch(_){l=[6,_],a=0}finally{o=u=0}if(l[0]&5)throw l[1];return{value:l[0]?l[1]:void 0,done:!0}}},Is=Me&&Me.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(Me,"__esModule",{value:!0});Me.handlerProfileFile=Me.getConfig=Me.setConfig=void 0;var Wp=Is(require("os")),Yu=Is(require("path")),GC=Is(Os()),kp=Is(ke()),Ct=kp.default.fse,Rs=kp.default.jsyaml;function HC(t){var n=zp();Ct.writeFileSync(n,Rs.dump(t))}function Vp(){var t=zp();if(!Ct.existsSync(t))return{};try{var n=Rs.load(Ct.readFileSync(t,"utf8"))||{};return n}catch(i){throw i}}function zp(){var t=Yu.default.join(GC.default.getHomeDir(),"set-config.yml");return Ct.existsSync(t)||Ct.createFileSync(t),t}function Kp(t,n){var i=Vp();i[t]=n,HC(i)}Me.setConfig=Kp;function Xp(t){var n=Vp();return n[t]}Me.getConfig=Xp;function Yp(t){return jC(this,void 0,void 0,function(){var n,i,o,a,u,h,m;return MC(this,function(g){switch(g.label){case 0:if(n=t.filePath||"set-config.yml",i=Yu.default.join(Wp.default.homedir(),".s",n),o=Ct.existsSync(i),a={},o)return[3,5];u=Yu.default.join(Wp.default.homedir(),".s"),g.label=1;case 1:return g.trys.push([1,2,,4]),Ct.statSync(u),[3,4];case 2:return h=g.sent(),[4,Ct.mkdirSync(u)];case 3:return g.sent(),[3,4];case 4:return[3,6];case 5:try{a=Rs.load(Ct.readFileSync(i,"utf8"))||{}}catch(l){throw l}g.label=6;case 6:return t.read?[2,a]:(m=t.configKey||"",a[m]=t.data,[4,Ct.writeFileSync(i,Rs.dump(a))]);case 7:return g.sent(),[2,a]}})})}Me.handlerProfileFile=Yp;Me.default={setConfig:Kp,getConfig:Xp,handlerProfileFile:Yp}});var td=x((dT,ed)=>{ed.exports=Qp;Qp.sync=UC;var Zp=require("fs");function BC(t,n){var i=n.pathExt!==void 0?n.pathExt:process.env.PATHEXT;if(!i||(i=i.split(";"),i.indexOf("")!==-1))return!0;for(var o=0;o<i.length;o++){var a=i[o].toLowerCase();if(a&&t.substr(-a.length).toLowerCase()===a)return!0}return!1}function Jp(t,n,i){return!t.isSymbolicLink()&&!t.isFile()?!1:BC(n,i)}function Qp(t,n,i){Zp.stat(t,function(o,a){i(o,o?!1:Jp(a,t,n))})}function UC(t,n){return Jp(Zp.statSync(t),t,n)}});var od=x((mT,sd)=>{sd.exports=nd;nd.sync=WC;var rd=require("fs");function nd(t,n,i){rd.stat(t,function(o,a){i(o,o?!1:id(a,n))})}function WC(t,n){return id(rd.statSync(t),n)}function id(t,n){return t.isFile()&&kC(t,n)}function kC(t,n){var i=t.mode,o=t.uid,a=t.gid,u=n.uid!==void 0?n.uid:process.getuid&&process.getuid(),h=n.gid!==void 0?n.gid:process.getgid&&process.getgid(),m=parseInt("100",8),g=parseInt("010",8),l=parseInt("001",8),_=m|g,S=i&l||i&g&&a===h||i&m&&o===u||i&_&&u===0;return S}});var ad=x((vT,ud)=>{var gT=require("fs"),Ts;process.platform==="win32"||global.TESTING_WINDOWS?Ts=td():Ts=od();ud.exports=Zu;Zu.sync=VC;function Zu(t,n,i){if(typeof n=="function"&&(i=n,n={}),!i){if(typeof Promise!="function")throw new TypeError("callback not provided");return new Promise(function(o,a){Zu(t,n||{},function(u,h){u?a(u):o(h)})})}Ts(t,n||{},function(o,a){o&&(o.code==="EACCES"||n&&n.ignoreErrors)&&(o=null,a=!1),i(o,a)})}function VC(t,n){try{return Ts.sync(t,n||{})}catch(i){if(n&&n.ignoreErrors||i.code==="EACCES")return!1;throw i}}});var md=x((_T,dd)=>{var Jr=process.platform==="win32"||process.env.OSTYPE==="cygwin"||process.env.OSTYPE==="msys",cd=require("path"),zC=Jr?";":":",ld=ad(),fd=t=>Object.assign(new Error(`not found: ${t}`),{code:"ENOENT"}),hd=(t,n)=>{let i=n.colon||zC,o=t.match(/\//)||Jr&&t.match(/\\/)?[""]:[...Jr?[process.cwd()]:[],...(n.path||process.env.PATH||"").split(i)],a=Jr?n.pathExt||process.env.PATHEXT||".EXE;.CMD;.BAT;.COM":"",u=Jr?a.split(i):[""];return Jr&&t.indexOf(".")!==-1&&u[0]!==""&&u.unshift(""),{pathEnv:o,pathExt:u,pathExtExe:a}},pd=(t,n,i)=>{typeof n=="function"&&(i=n,n={}),n||(n={});let{pathEnv:o,pathExt:a,pathExtExe:u}=hd(t,n),h=[],m=l=>new Promise((_,S)=>{if(l===o.length)return n.all&&h.length?_(h):S(fd(t));let I=o[l],P=/^".*"$/.test(I)?I.slice(1,-1):I,M=cd.join(P,t),B=!P&&/^\.[\\\/]/.test(t)?t.slice(0,2)+M:M;_(g(B,l,0))}),g=(l,_,S)=>new Promise((I,P)=>{if(S===a.length)return I(m(_+1));let M=a[S];ld(l+M,{pathExt:u},(B,Z)=>{if(!B&&Z)if(n.all)h.push(l+M);else return I(l+M);return I(g(l,_,S+1))})});return i?m(0).then(l=>i(null,l),i):m(0)},KC=(t,n)=>{n=n||{};let{pathEnv:i,pathExt:o,pathExtExe:a}=hd(t,n),u=[];for(let h=0;h<i.length;h++){let m=i[h],g=/^".*"$/.test(m)?m.slice(1,-1):m,l=cd.join(g,t),_=!g&&/^\.[\\\/]/.test(t)?t.slice(0,2)+l:l;for(let S=0;S<o.length;S++){let I=_+o[S];try{if(ld.sync(I,{pathExt:a}))if(n.all)u.push(I);else return I}catch{}}}if(n.all&&u.length)return u;if(n.nothrow)return null;throw fd(t)};dd.exports=pd;pd.sync=KC});var Qu=x((yT,Ju)=>{"use strict";var gd=(t={})=>{let n=t.env||process.env;return(t.platform||process.platform)!=="win32"?"PATH":Object.keys(n).reverse().find(o=>o.toUpperCase()==="PATH")||"Path"};Ju.exports=gd;Ju.exports.default=gd});var Ed=x((ET,yd)=>{"use strict";var vd=require("path"),XC=md(),YC=Qu();function _d(t,n){let i=t.options.env||process.env,o=process.cwd(),a=t.options.cwd!=null,u=a&&process.chdir!==void 0&&!process.chdir.disabled;if(u)try{process.chdir(t.options.cwd)}catch{}let h;try{h=XC.sync(t.command,{path:i[YC({env:i})],pathExt:n?vd.delimiter:void 0})}catch{}finally{u&&process.chdir(o)}return h&&(h=vd.resolve(a?t.options.cwd:"",h)),h}function ZC(t){return _d(t)||_d(t,!0)}yd.exports=ZC});var wd=x((wT,ta)=>{"use strict";var ea=/([()\][%!^"`<>&|;, *?])/g;function JC(t){return t=t.replace(ea,"^$1"),t}function QC(t,n){return t=`${t}`,t=t.replace(/(\\*)"/g,'$1$1\\"'),t=t.replace(/(\\*)$/,"$1$1"),t=`"${t}"`,t=t.replace(ea,"^$1"),n&&(t=t.replace(ea,"^$1")),t}ta.exports.command=JC;ta.exports.argument=QC});var Sd=x((bT,bd)=>{"use strict";bd.exports=/^#!(.*)/});var Cd=x((ST,xd)=>{"use strict";var eA=Sd();xd.exports=(t="")=>{let n=t.match(eA);if(!n)return null;let[i,o]=n[0].replace(/#! ?/,"").split(" "),a=i.split("/").pop();return a==="env"?o:o?`${a} ${o}`:a}});var Od=x((xT,Ad)=>{"use strict";var ra=require("fs"),tA=Cd();function rA(t){let n=150,i=Buffer.alloc(n),o;try{o=ra.openSync(t,"r"),ra.readSync(o,i,0,n,0),ra.closeSync(o)}catch{}return tA(i.toString())}Ad.exports=rA});var Td=x((CT,Pd)=>{"use strict";var nA=require("path"),Id=Ed(),Rd=wd(),iA=Od(),sA=process.platform==="win32",oA=/\.(?:com|exe)$/i,uA=/node_modules[\\/].bin[\\/][^\\/]+\.cmd$/i;function aA(t){t.file=Id(t);let n=t.file&&iA(t.file);return n?(t.args.unshift(t.file),t.command=n,Id(t)):t.file}function cA(t){if(!sA)return t;let n=aA(t),i=!oA.test(n);if(t.options.forceShell||i){let o=uA.test(n);t.command=nA.normalize(t.command),t.command=Rd.command(t.command),t.args=t.args.map(u=>Rd.argument(u,o));let a=[t.command].concat(t.args).join(" ");t.args=["/d","/s","/c",`"${a}"`],t.command=process.env.comspec||"cmd.exe",t.options.windowsVerbatimArguments=!0}return t}function lA(t,n,i){n&&!Array.isArray(n)&&(i=n,n=null),n=n?n.slice(0):[],i=Object.assign({},i);let o={command:t,args:n,options:i,file:void 0,original:{command:t,args:n}};return i.shell?o:cA(o)}Pd.exports=lA});var qd=x((AT,Nd)=>{"use strict";var na=process.platform==="win32";function ia(t,n){return Object.assign(new Error(`${n} ${t.command} ENOENT`),{code:"ENOENT",errno:"ENOENT",syscall:`${n} ${t.command}`,path:t.command,spawnargs:t.args})}function fA(t,n){if(!na)return;let i=t.emit;t.emit=function(o,a){if(o==="exit"){let u=Ld(a,n,"spawn");if(u)return i.call(t,"error",u)}return i.apply(t,arguments)}}function Ld(t,n){return na&&t===1&&!n.file?ia(n.original,"spawn"):null}function hA(t,n){return na&&t===1&&!n.file?ia(n.original,"spawnSync"):null}Nd.exports={hookChildProcess:fA,verifyENOENT:Ld,verifyENOENTSync:hA,notFoundError:ia}});var Fd=x((OT,Qr)=>{"use strict";var Dd=require("child_process"),sa=Td(),oa=qd();function $d(t,n,i){let o=sa(t,n,i),a=Dd.spawn(o.command,o.args,o.options);return oa.hookChildProcess(a,o),a}function pA(t,n,i){let o=sa(t,n,i),a=Dd.spawnSync(o.command,o.args,o.options);return a.error=a.error||oa.verifyENOENTSync(a.status,o),a}Qr.exports=$d;Qr.exports.spawn=$d;Qr.exports.sync=pA;Qr.exports._parse=sa;Qr.exports._enoent=oa});var Md=x((IT,jd)=>{"use strict";jd.exports=t=>{let n=typeof t=="string"?`
35
- `:`
36
- `.charCodeAt(),i=typeof t=="string"?"\r":"\r".charCodeAt();return t[t.length-1]===n&&(t=t.slice(0,t.length-1)),t[t.length-1]===i&&(t=t.slice(0,t.length-1)),t}});var Bd=x((RT,ri)=>{"use strict";var ti=require("path"),Gd=Qu(),Hd=t=>{t={cwd:process.cwd(),path:process.env[Gd()],execPath:process.execPath,...t};let n,i=ti.resolve(t.cwd),o=[];for(;n!==i;)o.push(ti.join(i,"node_modules/.bin")),n=i,i=ti.resolve(i,"..");let a=ti.resolve(t.cwd,t.execPath,"..");return o.push(a),o.concat(t.path).join(ti.delimiter)};ri.exports=Hd;ri.exports.default=Hd;ri.exports.env=t=>{t={env:process.env,...t};let n={...t.env},i=Gd({env:n});return t.path=n[i],n[i]=ri.exports(t),n}});var aa=x((PT,ua)=>{"use strict";var Ud=(t,n)=>{for(let i of Reflect.ownKeys(n))Object.defineProperty(t,i,Object.getOwnPropertyDescriptor(n,i));return t};ua.exports=Ud;ua.exports.default=Ud});var kd=x((TT,Ns)=>{"use strict";var dA=aa(),Ls=new WeakMap,Wd=(t,n={})=>{if(typeof t!="function")throw new TypeError("Expected a function");let i,o=0,a=t.displayName||t.name||"<anonymous>",u=function(...h){if(Ls.set(u,++o),o===1)i=t.apply(this,h),t=null;else if(n.throw===!0)throw new Error(`Function \`${a}\` can only be called once`);return i};return dA(u,t),Ls.set(u,o),u};Ns.exports=Wd;Ns.exports.default=Wd;Ns.exports.callCount=t=>{if(!Ls.has(t))throw new Error(`The given function \`${t.name}\` is not wrapped by the \`onetime\` package`);return Ls.get(t)}});var Vd=x(qs=>{"use strict";Object.defineProperty(qs,"__esModule",{value:!0});qs.SIGNALS=void 0;var mA=[{name:"SIGHUP",number:1,action:"terminate",description:"Terminal closed",standard:"posix"},{name:"SIGINT",number:2,action:"terminate",description:"User interruption with CTRL-C",standard:"ansi"},{name:"SIGQUIT",number:3,action:"core",description:"User interruption with CTRL-\\",standard:"posix"},{name:"SIGILL",number:4,action:"core",description:"Invalid machine instruction",standard:"ansi"},{name:"SIGTRAP",number:5,action:"core",description:"Debugger breakpoint",standard:"posix"},{name:"SIGABRT",number:6,action:"core",description:"Aborted",standard:"ansi"},{name:"SIGIOT",number:6,action:"core",description:"Aborted",standard:"bsd"},{name:"SIGBUS",number:7,action:"core",description:"Bus error due to misaligned, non-existing address or paging error",standard:"bsd"},{name:"SIGEMT",number:7,action:"terminate",description:"Command should be emulated but is not implemented",standard:"other"},{name:"SIGFPE",number:8,action:"core",description:"Floating point arithmetic error",standard:"ansi"},{name:"SIGKILL",number:9,action:"terminate",description:"Forced termination",standard:"posix",forced:!0},{name:"SIGUSR1",number:10,action:"terminate",description:"Application-specific signal",standard:"posix"},{name:"SIGSEGV",number:11,action:"core",description:"Segmentation fault",standard:"ansi"},{name:"SIGUSR2",number:12,action:"terminate",description:"Application-specific signal",standard:"posix"},{name:"SIGPIPE",number:13,action:"terminate",description:"Broken pipe or socket",standard:"posix"},{name:"SIGALRM",number:14,action:"terminate",description:"Timeout or timer",standard:"posix"},{name:"SIGTERM",number:15,action:"terminate",description:"Termination",standard:"ansi"},{name:"SIGSTKFLT",number:16,action:"terminate",description:"Stack is empty or overflowed",standard:"other"},{name:"SIGCHLD",number:17,action:"ignore",description:"Child process terminated, paused or unpaused",standard:"posix"},{name:"SIGCLD",number:17,action:"ignore",description:"Child process terminated, paused or unpaused",standard:"other"},{name:"SIGCONT",number:18,action:"unpause",description:"Unpaused",standard:"posix",forced:!0},{name:"SIGSTOP",number:19,action:"pause",description:"Paused",standard:"posix",forced:!0},{name:"SIGTSTP",number:20,action:"pause",description:'Paused using CTRL-Z or "suspend"',standard:"posix"},{name:"SIGTTIN",number:21,action:"pause",description:"Background process cannot read terminal input",standard:"posix"},{name:"SIGBREAK",number:21,action:"terminate",description:"User interruption with CTRL-BREAK",standard:"other"},{name:"SIGTTOU",number:22,action:"pause",description:"Background process cannot write to terminal output",standard:"posix"},{name:"SIGURG",number:23,action:"ignore",description:"Socket received out-of-band data",standard:"bsd"},{name:"SIGXCPU",number:24,action:"core",description:"Process timed out",standard:"bsd"},{name:"SIGXFSZ",number:25,action:"core",description:"File too big",standard:"bsd"},{name:"SIGVTALRM",number:26,action:"terminate",description:"Timeout or timer",standard:"bsd"},{name:"SIGPROF",number:27,action:"terminate",description:"Timeout or timer",standard:"bsd"},{name:"SIGWINCH",number:28,action:"ignore",description:"Terminal window size changed",standard:"bsd"},{name:"SIGIO",number:29,action:"terminate",description:"I/O is available",standard:"other"},{name:"SIGPOLL",number:29,action:"terminate",description:"Watched event",standard:"other"},{name:"SIGINFO",number:29,action:"ignore",description:"Request for process information",standard:"other"},{name:"SIGPWR",number:30,action:"terminate",description:"Device running out of power",standard:"systemv"},{name:"SIGSYS",number:31,action:"core",description:"Invalid system call",standard:"other"},{name:"SIGUNUSED",number:31,action:"terminate",description:"Invalid system call",standard:"other"}];qs.SIGNALS=mA});var ca=x(en=>{"use strict";Object.defineProperty(en,"__esModule",{value:!0});en.SIGRTMAX=en.getRealtimeSignals=void 0;var gA=function(){let t=Kd-zd+1;return Array.from({length:t},vA)};en.getRealtimeSignals=gA;var vA=function(t,n){return{name:`SIGRT${n+1}`,number:zd+n,action:"terminate",description:"Application-specific signal (realtime)",standard:"posix"}},zd=34,Kd=64;en.SIGRTMAX=Kd});var Xd=x(Ds=>{"use strict";Object.defineProperty(Ds,"__esModule",{value:!0});Ds.getSignals=void 0;var _A=require("os"),yA=Vd(),EA=ca(),wA=function(){let t=(0,EA.getRealtimeSignals)();return[...yA.SIGNALS,...t].map(bA)};Ds.getSignals=wA;var bA=function({name:t,number:n,description:i,action:o,forced:a=!1,standard:u}){let{signals:{[t]:h}}=_A.constants,m=h!==void 0;return{name:t,number:m?h:n,description:i,supported:m,action:o,forced:a,standard:u}}});var Zd=x(tn=>{"use strict";Object.defineProperty(tn,"__esModule",{value:!0});tn.signalsByNumber=tn.signalsByName=void 0;var SA=require("os"),Yd=Xd(),xA=ca(),CA=function(){return(0,Yd.getSignals)().reduce(AA,{})},AA=function(t,{name:n,number:i,description:o,supported:a,action:u,forced:h,standard:m}){return{...t,[n]:{name:n,number:i,description:o,supported:a,action:u,forced:h,standard:m}}},OA=CA();tn.signalsByName=OA;var IA=function(){let t=(0,Yd.getSignals)(),n=xA.SIGRTMAX+1,i=Array.from({length:n},(o,a)=>RA(a,t));return Object.assign({},...i)},RA=function(t,n){let i=PA(t,n);if(i===void 0)return{};let{name:o,description:a,supported:u,action:h,forced:m,standard:g}=i;return{[t]:{name:o,number:t,description:a,supported:u,action:h,forced:m,standard:g}}},PA=function(t,n){let i=n.find(({name:o})=>SA.constants.signals[o]===t);return i!==void 0?i:n.find(o=>o.number===t)},TA=IA();tn.signalsByNumber=TA});var Qd=x(($T,Jd)=>{"use strict";var{signalsByName:LA}=Zd(),NA=({timedOut:t,timeout:n,errorCode:i,signal:o,signalDescription:a,exitCode:u,isCanceled:h})=>t?`timed out after ${n} milliseconds`:h?"was canceled":i!==void 0?`failed with ${i}`:o!==void 0?`was killed with ${o} (${a})`:u!==void 0?`failed with exit code ${u}`:"failed",qA=({stdout:t,stderr:n,all:i,error:o,signal:a,exitCode:u,command:h,timedOut:m,isCanceled:g,killed:l,parsed:{options:{timeout:_}}})=>{u=u===null?void 0:u,a=a===null?void 0:a;let S=a===void 0?void 0:LA[a].description,I=o&&o.code,M=`Command ${NA({timedOut:m,timeout:_,errorCode:I,signal:a,signalDescription:S,exitCode:u,isCanceled:g})}: ${h}`,B=Object.prototype.toString.call(o)==="[object Error]",Z=B?`${M}
37
- ${o.message}`:M,X=[Z,n,t].filter(Boolean).join(`
38
- `);return B?(o.originalMessage=o.message,o.message=X):o=new Error(X),o.shortMessage=Z,o.command=h,o.exitCode=u,o.signal=a,o.signalDescription=S,o.stdout=t,o.stderr=n,i!==void 0&&(o.all=i),"bufferedData"in o&&delete o.bufferedData,o.failed=!0,o.timedOut=Boolean(m),o.isCanceled=g,o.killed=l&&!m,o};Jd.exports=qA});var tm=x((FT,la)=>{"use strict";var $s=["stdin","stdout","stderr"],DA=t=>$s.some(n=>t[n]!==void 0),em=t=>{if(!t)return;let{stdio:n}=t;if(n===void 0)return $s.map(o=>t[o]);if(DA(t))throw new Error(`It's not possible to provide \`stdio\` in combination with one of ${$s.map(o=>`\`${o}\``).join(", ")}`);if(typeof n=="string")return n;if(!Array.isArray(n))throw new TypeError(`Expected \`stdio\` to be of type \`string\` or \`Array\`, got \`${typeof n}\``);let i=Math.max(n.length,$s.length);return Array.from({length:i},(o,a)=>n[a])};la.exports=em;la.exports.node=t=>{let n=em(t);return n==="ipc"?"ipc":n===void 0||typeof n=="string"?[n,n,n,"ipc"]:n.includes("ipc")?n:[...n,"ipc"]}});var rm=x((jT,Fs)=>{Fs.exports=["SIGABRT","SIGALRM","SIGHUP","SIGINT","SIGTERM"];process.platform!=="win32"&&Fs.exports.push("SIGVTALRM","SIGXCPU","SIGXFSZ","SIGUSR2","SIGTRAP","SIGSYS","SIGQUIT","SIGIOT");process.platform==="linux"&&Fs.exports.push("SIGIO","SIGPOLL","SIGPWR","SIGSTKFLT","SIGUNUSED")});var um=x((MT,sn)=>{var re=global.process;typeof re!="object"||!re?sn.exports=function(){}:(nm=require("assert"),rn=rm(),im=/^win/i.test(re.platform),ni=require("events"),typeof ni!="function"&&(ni=ni.EventEmitter),re.__signal_exit_emitter__?xe=re.__signal_exit_emitter__:(xe=re.__signal_exit_emitter__=new ni,xe.count=0,xe.emitted={}),xe.infinite||(xe.setMaxListeners(1/0),xe.infinite=!0),sn.exports=function(t,n){if(global.process===re){nm.equal(typeof t,"function","a callback must be provided for exit handler"),nn===!1&&fa();var i="exit";n&&n.alwaysLast&&(i="afterexit");var o=function(){xe.removeListener(i,t),xe.listeners("exit").length===0&&xe.listeners("afterexit").length===0&&js()};return xe.on(i,t),o}},js=function(){!nn||global.process!==re||(nn=!1,rn.forEach(function(n){try{re.removeListener(n,Ms[n])}catch{}}),re.emit=Gs,re.reallyExit=ha,xe.count-=1)},sn.exports.unload=js,Or=function(n,i,o){xe.emitted[n]||(xe.emitted[n]=!0,xe.emit(n,i,o))},Ms={},rn.forEach(function(t){Ms[t]=function(){if(re===global.process){var i=re.listeners(t);i.length===xe.count&&(js(),Or("exit",null,t),Or("afterexit",null,t),im&&t==="SIGHUP"&&(t="SIGINT"),re.kill(re.pid,t))}}}),sn.exports.signals=function(){return rn},nn=!1,fa=function(){nn||re!==global.process||(nn=!0,xe.count+=1,rn=rn.filter(function(n){try{return re.on(n,Ms[n]),!0}catch{return!1}}),re.emit=om,re.reallyExit=sm)},sn.exports.load=fa,ha=re.reallyExit,sm=function(n){re===global.process&&(re.exitCode=n||0,Or("exit",re.exitCode,null),Or("afterexit",re.exitCode,null),ha.call(re,re.exitCode))},Gs=re.emit,om=function(n,i){if(n==="exit"&&re===global.process){i!==void 0&&(re.exitCode=i);var o=Gs.apply(this,arguments);return Or("exit",re.exitCode,null),Or("afterexit",re.exitCode,null),o}else return Gs.apply(this,arguments)});var nm,rn,im,ni,xe,js,Or,Ms,nn,fa,ha,sm,Gs,om});var cm=x((GT,am)=>{"use strict";var $A=require("os"),FA=um(),jA=1e3*5,MA=(t,n="SIGTERM",i={})=>{let o=t(n);return GA(t,n,i,o),o},GA=(t,n,i,o)=>{if(!HA(n,i,o))return;let a=UA(i),u=setTimeout(()=>{t("SIGKILL")},a);u.unref&&u.unref()},HA=(t,{forceKillAfterTimeout:n},i)=>BA(t)&&n!==!1&&i,BA=t=>t===$A.constants.signals.SIGTERM||typeof t=="string"&&t.toUpperCase()==="SIGTERM",UA=({forceKillAfterTimeout:t=!0})=>{if(t===!0)return jA;if(!Number.isFinite(t)||t<0)throw new TypeError(`Expected the \`forceKillAfterTimeout\` option to be a non-negative integer, got \`${t}\` (${typeof t})`);return t},WA=(t,n)=>{t.kill()&&(n.isCanceled=!0)},kA=(t,n,i)=>{t.kill(n),i(Object.assign(new Error("Timed out"),{timedOut:!0,signal:n}))},VA=(t,{timeout:n,killSignal:i="SIGTERM"},o)=>{if(n===0||n===void 0)return o;if(!Number.isFinite(n)||n<0)throw new TypeError(`Expected the \`timeout\` option to be a non-negative integer, got \`${n}\` (${typeof n})`);let a,u=new Promise((m,g)=>{a=setTimeout(()=>{kA(t,i,g)},n)}),h=o.finally(()=>{clearTimeout(a)});return Promise.race([u,h])},zA=async(t,{cleanup:n,detached:i},o)=>{if(!n||i)return o;let a=FA(()=>{t.kill()});return o.finally(()=>{a()})};am.exports={spawnedKill:MA,spawnedCancel:WA,setupTimeout:VA,setExitHandler:zA}});var fm=x((HT,lm)=>{"use strict";var At=t=>t!==null&&typeof t=="object"&&typeof t.pipe=="function";At.writable=t=>At(t)&&t.writable!==!1&&typeof t._write=="function"&&typeof t._writableState=="object";At.readable=t=>At(t)&&t.readable!==!1&&typeof t._read=="function"&&typeof t._readableState=="object";At.duplex=t=>At.writable(t)&&At.readable(t);At.transform=t=>At.duplex(t)&&typeof t._transform=="function";lm.exports=At});var dm=x((BT,pm)=>{pm.exports=hm;function hm(t,n){if(t&&n)return hm(t)(n);if(typeof t!="function")throw new TypeError("need wrapper function");return Object.keys(t).forEach(function(o){i[o]=t[o]}),i;function i(){for(var o=new Array(arguments.length),a=0;a<o.length;a++)o[a]=arguments[a];var u=t.apply(this,o),h=o[o.length-1];return typeof u=="function"&&u!==h&&Object.keys(h).forEach(function(m){u[m]=h[m]}),u}}});var da=x((UT,pa)=>{var mm=dm();pa.exports=mm(Hs);pa.exports.strict=mm(gm);Hs.proto=Hs(function(){Object.defineProperty(Function.prototype,"once",{value:function(){return Hs(this)},configurable:!0}),Object.defineProperty(Function.prototype,"onceStrict",{value:function(){return gm(this)},configurable:!0})});function Hs(t){var n=function(){return n.called?n.value:(n.called=!0,n.value=t.apply(this,arguments))};return n.called=!1,n}function gm(t){var n=function(){if(n.called)throw new Error(n.onceError);return n.called=!0,n.value=t.apply(this,arguments)},i=t.name||"Function wrapped with `once`";return n.onceError=i+" shouldn't be called more than once",n.called=!1,n}});var ym=x((WT,_m)=>{var KA=da(),XA=function(){},YA=function(t){return t.setHeader&&typeof t.abort=="function"},ZA=function(t){return t.stdio&&Array.isArray(t.stdio)&&t.stdio.length===3},vm=function(t,n,i){if(typeof n=="function")return vm(t,null,n);n||(n={}),i=KA(i||XA);var o=t._writableState,a=t._readableState,u=n.readable||n.readable!==!1&&t.readable,h=n.writable||n.writable!==!1&&t.writable,m=!1,g=function(){t.writable||l()},l=function(){h=!1,u||i.call(t)},_=function(){u=!1,h||i.call(t)},S=function(Z){i.call(t,Z?new Error("exited with error code: "+Z):null)},I=function(Z){i.call(t,Z)},P=function(){process.nextTick(M)},M=function(){if(!m){if(u&&!(a&&a.ended&&!a.destroyed))return i.call(t,new Error("premature close"));if(h&&!(o&&o.ended&&!o.destroyed))return i.call(t,new Error("premature close"))}},B=function(){t.req.on("finish",l)};return YA(t)?(t.on("complete",l),t.on("abort",P),t.req?B():t.on("request",B)):h&&!o&&(t.on("end",g),t.on("close",g)),ZA(t)&&t.on("exit",S),t.on("end",_),t.on("finish",l),n.error!==!1&&t.on("error",I),t.on("close",P),function(){m=!0,t.removeListener("complete",l),t.removeListener("abort",P),t.removeListener("request",B),t.req&&t.req.removeListener("finish",l),t.removeListener("end",g),t.removeListener("close",g),t.removeListener("finish",l),t.removeListener("exit",S),t.removeListener("end",_),t.removeListener("error",I),t.removeListener("close",P)}};_m.exports=vm});var bm=x((kT,wm)=>{var JA=da(),QA=ym(),ma=require("fs"),ii=function(){},eO=/^v?\.0/.test(process.version),Bs=function(t){return typeof t=="function"},tO=function(t){return!eO||!ma?!1:(t instanceof(ma.ReadStream||ii)||t instanceof(ma.WriteStream||ii))&&Bs(t.close)},rO=function(t){return t.setHeader&&Bs(t.abort)},nO=function(t,n,i,o){o=JA(o);var a=!1;t.on("close",function(){a=!0}),QA(t,{readable:n,writable:i},function(h){if(h)return o(h);a=!0,o()});var u=!1;return function(h){if(!a&&!u){if(u=!0,tO(t))return t.close(ii);if(rO(t))return t.abort();if(Bs(t.destroy))return t.destroy();o(h||new Error("stream was destroyed"))}}},Em=function(t){t()},iO=function(t,n){return t.pipe(n)},sO=function(){var t=Array.prototype.slice.call(arguments),n=Bs(t[t.length-1]||ii)&&t.pop()||ii;if(Array.isArray(t[0])&&(t=t[0]),t.length<2)throw new Error("pump requires two streams per minimum");var i,o=t.map(function(a,u){var h=u<t.length-1,m=u>0;return nO(a,h,m,function(g){i||(i=g),g&&o.forEach(Em),!h&&(o.forEach(Em),n(i))})});return t.reduce(iO)};wm.exports=sO});var xm=x((VT,Sm)=>{"use strict";var{PassThrough:oO}=require("stream");Sm.exports=t=>{t={...t};let{array:n}=t,{encoding:i}=t,o=i==="buffer",a=!1;n?a=!(i||o):i=i||"utf8",o&&(i=null);let u=new oO({objectMode:a});i&&u.setEncoding(i);let h=0,m=[];return u.on("data",g=>{m.push(g),a?h=m.length:h+=g.length}),u.getBufferedValue=()=>n?m:o?Buffer.concat(m,h):m.join(""),u.getBufferedLength=()=>h,u}});var Cm=x((zT,on)=>{"use strict";var{constants:uO}=require("buffer"),aO=bm(),cO=xm(),ga=class extends Error{constructor(){super("maxBuffer exceeded");this.name="MaxBufferError"}};async function Us(t,n){if(!t)return Promise.reject(new Error("Expected a stream"));n={maxBuffer:1/0,...n};let{maxBuffer:i}=n,o;return await new Promise((a,u)=>{let h=m=>{m&&o.getBufferedLength()<=uO.MAX_LENGTH&&(m.bufferedData=o.getBufferedValue()),u(m)};o=aO(t,cO(n),m=>{if(m){h(m);return}a()}),o.on("data",()=>{o.getBufferedLength()>i&&h(new ga)})}),o.getBufferedValue()}on.exports=Us;on.exports.default=Us;on.exports.buffer=(t,n)=>Us(t,{...n,encoding:"buffer"});on.exports.array=(t,n)=>Us(t,{...n,array:!0});on.exports.MaxBufferError=ga});var Om=x((KT,Am)=>{"use strict";var{PassThrough:lO}=require("stream");Am.exports=function(){var t=[],n=new lO({objectMode:!0});return n.setMaxListeners(0),n.add=i,n.isEmpty=o,n.on("unpipe",a),Array.prototype.slice.call(arguments).forEach(i),n;function i(u){return Array.isArray(u)?(u.forEach(i),this):(t.push(u),u.once("end",a.bind(null,u)),u.once("error",n.emit.bind(n,"error")),u.pipe(n,{end:!1}),this)}function o(){return t.length==0}function a(u){t=t.filter(function(h){return h!==u}),!t.length&&n.readable&&n.end()}}});var Tm=x((XT,Pm)=>{"use strict";var Im=fm(),Rm=Cm(),fO=Om(),hO=(t,n)=>{n===void 0||t.stdin===void 0||(Im(n)?n.pipe(t.stdin):t.stdin.end(n))},pO=(t,{all:n})=>{if(!n||!t.stdout&&!t.stderr)return;let i=fO();return t.stdout&&i.add(t.stdout),t.stderr&&i.add(t.stderr),i},va=async(t,n)=>{if(!!t){t.destroy();try{return await n}catch(i){return i.bufferedData}}},_a=(t,{encoding:n,buffer:i,maxBuffer:o})=>{if(!(!t||!i))return n?Rm(t,{encoding:n,maxBuffer:o}):Rm.buffer(t,{maxBuffer:o})},dO=async({stdout:t,stderr:n,all:i},{encoding:o,buffer:a,maxBuffer:u},h)=>{let m=_a(t,{encoding:o,buffer:a,maxBuffer:u}),g=_a(n,{encoding:o,buffer:a,maxBuffer:u}),l=_a(i,{encoding:o,buffer:a,maxBuffer:u*2});try{return await Promise.all([h,m,g,l])}catch(_){return Promise.all([{error:_,signal:_.signal,timedOut:_.timedOut},va(t,m),va(n,g),va(i,l)])}},mO=({input:t})=>{if(Im(t))throw new TypeError("The `input` option cannot be a stream in sync mode")};Pm.exports={handleInput:hO,makeAllStream:pO,getSpawnedResult:dO,validateInputSync:mO}});var Nm=x((YT,Lm)=>{"use strict";var gO=(async()=>{})().constructor.prototype,vO=["then","catch","finally"].map(t=>[t,Reflect.getOwnPropertyDescriptor(gO,t)]),_O=(t,n)=>{for(let[i,o]of vO){let a=typeof n=="function"?(...u)=>Reflect.apply(o.value,n(),u):o.value.bind(n);Reflect.defineProperty(t,i,{...o,value:a})}return t},yO=t=>new Promise((n,i)=>{t.on("exit",(o,a)=>{n({exitCode:o,signal:a})}),t.on("error",o=>{i(o)}),t.stdin&&t.stdin.on("error",o=>{i(o)})});Lm.exports={mergePromise:_O,getSpawnedPromise:yO}});var Dm=x((ZT,qm)=>{"use strict";var EO=/ +/g,wO=(t,n=[])=>Array.isArray(n)?[t,...n].join(" "):t,bO=t=>{let n=[];for(let i of t.trim().split(EO)){let o=n[n.length-1];o&&o.endsWith("\\")?n[n.length-1]=`${o.slice(0,-1)} ${i}`:n.push(i)}return n};qm.exports={joinCommand:wO,parseCommand:bO}});var Bm=x((JT,un)=>{"use strict";var SO=require("path"),ya=require("child_process"),$m=Fd(),xO=Md(),CO=Bd(),AO=kd(),Ws=Qd(),Fm=tm(),{spawnedKill:OO,spawnedCancel:IO,setupTimeout:RO,setExitHandler:PO}=cm(),{handleInput:TO,getSpawnedResult:LO,makeAllStream:NO,validateInputSync:qO}=Tm(),{mergePromise:jm,getSpawnedPromise:DO}=Nm(),{joinCommand:Mm,parseCommand:Gm}=Dm(),$O=1e3*1e3*100,FO=({env:t,extendEnv:n,preferLocal:i,localDir:o,execPath:a})=>{let u=n?{...process.env,...t}:t;return i?CO.env({env:u,cwd:o,execPath:a}):u},Hm=(t,n,i={})=>{let o=$m._parse(t,n,i);return t=o.command,n=o.args,i=o.options,i={maxBuffer:$O,buffer:!0,stripFinalNewline:!0,extendEnv:!0,preferLocal:!1,localDir:i.cwd||process.cwd(),execPath:process.execPath,encoding:"utf8",reject:!0,cleanup:!0,all:!1,windowsHide:!0,...i},i.env=FO(i),i.stdio=Fm(i),process.platform==="win32"&&SO.basename(t,".exe")==="cmd"&&n.unshift("/q"),{file:t,args:n,options:i,parsed:o}},si=(t,n,i)=>typeof n!="string"&&!Buffer.isBuffer(n)?i===void 0?void 0:"":t.stripFinalNewline?xO(n):n,ks=(t,n,i)=>{let o=Hm(t,n,i),a=Mm(t,n),u;try{u=ya.spawn(o.file,o.args,o.options)}catch(I){let P=new ya.ChildProcess,M=Promise.reject(Ws({error:I,stdout:"",stderr:"",all:"",command:a,parsed:o,timedOut:!1,isCanceled:!1,killed:!1}));return jm(P,M)}let h=DO(u),m=RO(u,o.options,h),g=PO(u,o.options,m),l={isCanceled:!1};u.kill=OO.bind(null,u.kill.bind(u)),u.cancel=IO.bind(null,u,l);let S=AO(async()=>{let[{error:I,exitCode:P,signal:M,timedOut:B},Z,X,Ie]=await LO(u,o.options,g),Q=si(o.options,Z),ae=si(o.options,X),_e=si(o.options,Ie);if(I||P!==0||M!==null){let Re=Ws({error:I,exitCode:P,signal:M,stdout:Q,stderr:ae,all:_e,command:a,parsed:o,timedOut:B,isCanceled:l.isCanceled,killed:u.killed});if(!o.options.reject)return Re;throw Re}return{command:a,exitCode:0,stdout:Q,stderr:ae,all:_e,failed:!1,timedOut:!1,isCanceled:!1,killed:!1}});return $m._enoent.hookChildProcess(u,o.parsed),TO(u,o.options.input),u.all=NO(u,o.options),jm(u,S)};un.exports=ks;un.exports.sync=(t,n,i)=>{let o=Hm(t,n,i),a=Mm(t,n);qO(o.options);let u;try{u=ya.spawnSync(o.file,o.args,o.options)}catch(g){throw Ws({error:g,stdout:"",stderr:"",all:"",command:a,parsed:o,timedOut:!1,isCanceled:!1,killed:!1})}let h=si(o.options,u.stdout,u.error),m=si(o.options,u.stderr,u.error);if(u.error||u.status!==0||u.signal!==null){let g=Ws({stdout:h,stderr:m,error:u.error,signal:u.signal,exitCode:u.status,command:a,parsed:o,timedOut:u.error&&u.error.code==="ETIMEDOUT",isCanceled:!1,killed:u.signal!==null});if(!o.options.reject)return g;throw g}return{command:a,exitCode:0,stdout:h,stderr:m,failed:!1,timedOut:!1,isCanceled:!1,killed:!1}};un.exports.command=(t,n)=>{let[i,...o]=Gm(t);return ks(i,o,n)};un.exports.commandSync=(t,n)=>{let[i,...o]=Gm(t);return ks.sync(i,o,n)};un.exports.node=(t,n,i={})=>{n&&!Array.isArray(n)&&typeof n=="object"&&(i=n,n=[]);let o=Fm.node(i),a=process.execArgv.filter(m=>!m.startsWith("--inspect")),{nodePath:u=process.execPath,nodeOptions:h=a}=i;return ks(u,[...h,t,...Array.isArray(n)?n:[]],{...i,stdin:void 0,stdout:void 0,stderr:void 0,stdio:o,shell:!1})}});var Wm=x((QT,Um)=>{"use strict";Um.exports=t=>{if(typeof t!="object"||t===null)throw new TypeError("Expected an object");let n={};for(let[i,o]of Object.entries(t))n[o]=i;for(let i of Object.getOwnPropertySymbols(t)){let o=t[i];n[o]=i}return n}});var km=x((eL,jO)=>{jO.exports={"4":"zh_CHS","1025":"ar_SA","1026":"bg_BG","1027":"ca_ES","1028":"zh_TW","1029":"cs_CZ","1030":"da_DK","1031":"de_DE","1032":"el_GR","1033":"en_US","1034":"es_ES","1035":"fi_FI","1036":"fr_FR","1037":"he_IL","1038":"hu_HU","1039":"is_IS","1040":"it_IT","1041":"ja_JP","1042":"ko_KR","1043":"nl_NL","1044":"nb_NO","1045":"pl_PL","1046":"pt_BR","1047":"rm_CH","1048":"ro_RO","1049":"ru_RU","1050":"hr_HR","1051":"sk_SK","1052":"sq_AL","1053":"sv_SE","1054":"th_TH","1055":"tr_TR","1056":"ur_PK","1057":"id_ID","1058":"uk_UA","1059":"be_BY","1060":"sl_SI","1061":"et_EE","1062":"lv_LV","1063":"lt_LT","1064":"tg_TJ","1065":"fa_IR","1066":"vi_VN","1067":"hy_AM","1069":"eu_ES","1070":"wen_DE","1071":"mk_MK","1074":"tn_ZA","1076":"xh_ZA","1077":"zu_ZA","1078":"af_ZA","1079":"ka_GE","1080":"fo_FO","1081":"hi_IN","1082":"mt_MT","1083":"se_NO","1086":"ms_MY","1087":"kk_KZ","1088":"ky_KG","1089":"sw_KE","1090":"tk_TM","1092":"tt_RU","1093":"bn_IN","1094":"pa_IN","1095":"gu_IN","1096":"or_IN","1097":"ta_IN","1098":"te_IN","1099":"kn_IN","1100":"ml_IN","1101":"as_IN","1102":"mr_IN","1103":"sa_IN","1104":"mn_MN","1105":"bo_CN","1106":"cy_GB","1107":"kh_KH","1108":"lo_LA","1109":"my_MM","1110":"gl_ES","1111":"kok_IN","1114":"syr_SY","1115":"si_LK","1118":"am_ET","1121":"ne_NP","1122":"fy_NL","1123":"ps_AF","1124":"fil_PH","1125":"div_MV","1128":"ha_NG","1130":"yo_NG","1131":"quz_BO","1132":"ns_ZA","1133":"ba_RU","1134":"lb_LU","1135":"kl_GL","1144":"ii_CN","1146":"arn_CL","1148":"moh_CA","1150":"br_FR","1152":"ug_CN","1153":"mi_NZ","1154":"oc_FR","1155":"co_FR","1156":"gsw_FR","1157":"sah_RU","1158":"qut_GT","1159":"rw_RW","1160":"wo_SN","1164":"gbz_AF","2049":"ar_IQ","2052":"zh_CN","2055":"de_CH","2057":"en_GB","2058":"es_MX","2060":"fr_BE","2064":"it_CH","2067":"nl_BE","2068":"nn_NO","2070":"pt_PT","2077":"sv_FI","2080":"ur_IN","2092":"az_AZ","2094":"dsb_DE","2107":"se_SE","2108":"ga_IE","2110":"ms_BN","2115":"uz_UZ","2128":"mn_CN","2129":"bo_BT","2141":"iu_CA","2143":"tmz_DZ","2155":"quz_EC","3073":"ar_EG","3076":"zh_HK","3079":"de_AT","3081":"en_AU","3082":"es_ES","3084":"fr_CA","3098":"sr_SP","3131":"se_FI","3179":"quz_PE","4097":"ar_LY","4100":"zh_SG","4103":"de_LU","4105":"en_CA","4106":"es_GT","4108":"fr_CH","4122":"hr_BA","4155":"smj_NO","5121":"ar_DZ","5124":"zh_MO","5127":"de_LI","5129":"en_NZ","5130":"es_CR","5132":"fr_LU","5179":"smj_SE","6145":"ar_MA","6153":"en_IE","6154":"es_PA","6156":"fr_MC","6203":"sma_NO","7169":"ar_TN","7177":"en_ZA","7178":"es_DO","7194":"sr_BA","7227":"sma_SE","8193":"ar_OM","8201":"en_JA","8202":"es_VE","8218":"bs_BA","8251":"sms_FI","9217":"ar_YE","9225":"en_CB","9226":"es_CO","9275":"smn_FI","10241":"ar_SY","10249":"en_BZ","10250":"es_PE","11265":"ar_JO","11273":"en_TT","11274":"es_AR","12289":"ar_LB","12297":"en_ZW","12298":"es_EC","13313":"ar_KW","13321":"en_PH","13322":"es_CL","14337":"ar_AE","14346":"es_UR","15361":"ar_BH","15370":"es_PY","16385":"ar_QA","16394":"es_BO","17417":"en_MY","17418":"es_SV","18441":"en_IN","18442":"es_HN","19466":"es_NI","20490":"es_PR","21514":"es_US","31748":"zh_CHT"}});var zm=x(Vs=>{"use strict";var MO=Wm(),Vm=km(),Ea=MO(Vm);Vs.from=t=>{if(typeof t!="number")throw new TypeError("Expected a number");return Vm[t]};Vs.to=t=>{if(typeof t!="string")throw new TypeError("Expected a string");if(Ea[t])return Number(Ea[t])};Vs.all=new Proxy(Ea,{get(t,n){let i=t[n];if(i)return Number(i)}})});var Xm=x((rL,wa)=>{"use strict";var Km=t=>t instanceof Promise||t!==null&&typeof t=="object"&&typeof t.then=="function"&&typeof t.catch=="function";wa.exports=Km;wa.exports.default=Km});var Zm=x((nL,Ym)=>{"use strict";Ym.exports=()=>{let t={};return t.promise=new Promise((n,i)=>{t.resolve=n,t.reject=i}),t}});var Qm=x((Ir,Sa)=>{"use strict";var Jm=Ir&&Ir.__awaiter||function(t,n,i,o){return new(i||(i=Promise))(function(a,u){function h(l){try{g(o.next(l))}catch(_){u(_)}}function m(l){try{g(o.throw(l))}catch(_){u(_)}}function g(l){l.done?a(l.value):new i(function(_){_(l.value)}).then(h,m)}g((o=o.apply(t,n||[])).next())})},GO=Ir&&Ir.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(Ir,"__esModule",{value:!0});var HO=GO(Zm());function ba(t,n="maxAge"){let i,o,a,u=()=>Jm(this,void 0,void 0,function*(){if(i!==void 0)return;let g=l=>Jm(this,void 0,void 0,function*(){a=HO.default();let _=l[1][n]-Date.now();if(_<=0){t.delete(l[0]),a.resolve();return}return i=l[0],o=setTimeout(()=>{t.delete(l[0]),a&&a.resolve()},_),typeof o.unref=="function"&&o.unref(),a.promise});try{for(let l of t)yield g(l)}catch{}i=void 0}),h=()=>{i=void 0,o!==void 0&&(clearTimeout(o),o=void 0),a!==void 0&&(a.reject(void 0),a=void 0)},m=t.set.bind(t);return t.set=(g,l)=>{t.has(g)&&t.delete(g);let _=m(g,l);return i&&i===g&&h(),u(),_},u(),t}Ir.default=ba;Sa.exports=ba;Sa.exports.default=ba});var tg=x((iL,xa)=>{"use strict";var BO=aa(),UO=Xm(),WO=Qm(),eg=new WeakMap,kO=(...t)=>{if(t.length===0)return"__defaultKey";if(t.length===1){let[n]=t;if(!(typeof n=="object"&&n!==null))return n}return JSON.stringify(t)},VO=(t,{cacheKey:n=kO,cache:i=new Map,cachePromiseRejection:o=!0,maxAge:a}={})=>{typeof a=="number"&&WO(i);let u=function(...h){let m=n(...h);if(i.has(m))return i.get(m).data;let g=t.apply(this,h);return i.set(m,{data:g,maxAge:a?Date.now()+a:1/0}),UO(g)&&o===!1&&g.catch(()=>i.delete(m)),g};try{BO(u,t)}catch{}return eg.set(u,i),u};xa.exports=VO;xa.exports.clear=t=>{let n=eg.get(t);n&&typeof n.clear=="function"&&n.clear()}});var cg=x((sL,Oa)=>{"use strict";var rg=Bm(),ng=zm(),ig=tg(),sg={spawn:!0},Ca="en-US";async function zs(t,n){return(await rg(t,n)).stdout}function Ks(t,n){return rg.sync(t,n).stdout}function Aa(t=process.env){return t.LC_ALL||t.LC_MESSAGES||t.LANG||t.LANGUAGE}function og(t){let n=t.split(`
39
- `).reduce((i,o)=>{let[a,u]=o.split("=");return i[a]=u.replace(/^"|"$/g,""),i},{});return Aa(n)}function Xs(t){return t&&t.replace(/[.:].*/,"")}async function zO(){return zs("locale",["-a"])}function KO(){return Ks("locale",["-a"])}function ug(t,n=""){return n.includes(t)?t:Ca}async function XO(){let t=await Promise.all([zs("defaults",["read","-globalDomain","AppleLocale"]),zO()]);return ug(t[0],t[1])}function YO(){return ug(Ks("defaults",["read","-globalDomain","AppleLocale"]),KO())}async function ZO(){return Xs(og(await zs("locale")))}function JO(){return Xs(og(Ks("locale")))}async function QO(){let t=await zs("wmic",["os","get","locale"]),n=parseInt(t.replace("Locale",""),16);return ng.from(n)}function eI(){let t=Ks("wmic",["os","get","locale"]),n=parseInt(t.replace("Locale",""),16);return ng.from(n)}function ag(t){return t.replace(/_/,"-")}var tI=ig(async(t=sg)=>{let n;try{let i=Aa();i||t.spawn===!1?n=Xs(i):process.platform==="win32"?n=await QO():process.platform==="darwin"?n=await XO():n=await ZO()}catch{}return ag(n||Ca)},{cachePromiseRejection:!1});Oa.exports=tI;Oa.exports.sync=ig((t=sg)=>{let n;try{let i=Aa();i||t.spawn===!1?n=Xs(i):process.platform==="win32"?n=eI():process.platform==="darwin"?n=YO():n=JO()}catch{}return ag(n||Ca)})});var Rr=x(an=>{"use strict";var rI=an&&an.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(an,"__esModule",{value:!0});an.ServerlessError=void 0;var nI=rI(ke()),iI=nI.default.Logger,sI=new iI("S-CLI-ERROR"),oI=function(){function t(n,i,o){sI.error(n+": "+i,o),process.exit(1)}return t}();an.ServerlessError=oI});var lg=x(cn=>{"use strict";var uI=cn&&cn.__extends||function(){var t=function(n,i){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(o,a){o.__proto__=a}||function(o,a){for(var u in a)Object.prototype.hasOwnProperty.call(a,u)&&(o[u]=a[u])},t(n,i)};return function(n,i){if(typeof i!="function"&&i!==null)throw new TypeError("Class extends value "+String(i)+" is not a constructor or null");t(n,i);function o(){this.constructor=n}n.prototype=i===null?Object.create(i):(o.prototype=i.prototype,new o)}}();Object.defineProperty(cn,"__esModule",{value:!0});cn.CommandError=void 0;var aI=Rr(),cI=function(t){uI(n,t);function n(i,o){return t.call(this,"Error",i,o)||this}return n}(aI.ServerlessError);cn.CommandError=cI});var fg=x(ln=>{"use strict";var lI=ln&&ln.__extends||function(){var t=function(n,i){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(o,a){o.__proto__=a}||function(o,a){for(var u in a)Object.prototype.hasOwnProperty.call(a,u)&&(o[u]=a[u])},t(n,i)};return function(n,i){if(typeof i!="function"&&i!==null)throw new TypeError("Class extends value "+String(i)+" is not a constructor or null");t(n,i);function o(){this.constructor=n}n.prototype=i===null?Object.create(i):(o.prototype=i.prototype,new o)}}();Object.defineProperty(ln,"__esModule",{value:!0});ln.ConfigDeleteError=void 0;var fI=Rr(),hI=function(t){lI(n,t);function n(i,o){return t.call(this,"Deletion failed",i,o)||this}return n}(fI.ServerlessError);ln.ConfigDeleteError=hI});var hg=x(fn=>{"use strict";var pI=fn&&fn.__extends||function(){var t=function(n,i){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(o,a){o.__proto__=a}||function(o,a){for(var u in a)Object.prototype.hasOwnProperty.call(a,u)&&(o[u]=a[u])},t(n,i)};return function(n,i){if(typeof i!="function"&&i!==null)throw new TypeError("Class extends value "+String(i)+" is not a constructor or null");t(n,i);function o(){this.constructor=n}n.prototype=i===null?Object.create(i):(o.prototype=i.prototype,new o)}}();Object.defineProperty(fn,"__esModule",{value:!0});fn.ConfigError=void 0;var dI=Rr(),mI=function(t){pI(n,t);function n(i,o){return t.call(this,"Config failed",i,o)||this}return n}(dI.ServerlessError);fn.ConfigError=mI});var pg=x(hn=>{"use strict";var gI=hn&&hn.__extends||function(){var t=function(n,i){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(o,a){o.__proto__=a}||function(o,a){for(var u in a)Object.prototype.hasOwnProperty.call(a,u)&&(o[u]=a[u])},t(n,i)};return function(n,i){if(typeof i!="function"&&i!==null)throw new TypeError("Class extends value "+String(i)+" is not a constructor or null");t(n,i);function o(){this.constructor=n}n.prototype=i===null?Object.create(i):(o.prototype=i.prototype,new o)}}();Object.defineProperty(hn,"__esModule",{value:!0});hn.ConfigGetError=void 0;var vI=Rr(),_I=function(t){gI(n,t);function n(i,o){return t.call(this,"Get failed",i,o)||this}return n}(vI.ServerlessError);hn.ConfigGetError=_I});var dg=x(pn=>{"use strict";var yI=pn&&pn.__extends||function(){var t=function(n,i){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(o,a){o.__proto__=a}||function(o,a){for(var u in a)Object.prototype.hasOwnProperty.call(a,u)&&(o[u]=a[u])},t(n,i)};return function(n,i){if(typeof i!="function"&&i!==null)throw new TypeError("Class extends value "+String(i)+" is not a constructor or null");t(n,i);function o(){this.constructor=n}n.prototype=i===null?Object.create(i):(o.prototype=i.prototype,new o)}}();Object.defineProperty(pn,"__esModule",{value:!0});pn.InitError=void 0;var EI=Rr(),wI=function(t){yI(n,t);function n(i,o){return t.call(this,"Initialization failed",i,o)||this}return n}(EI.ServerlessError);pn.InitError=wI});var gg=x(ir=>{"use strict";var bI=ir&&ir.__extends||function(){var t=function(n,i){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(o,a){o.__proto__=a}||function(o,a){for(var u in a)Object.prototype.hasOwnProperty.call(a,u)&&(o[u]=a[u])},t(n,i)};return function(n,i){if(typeof i!="function"&&i!==null)throw new TypeError("Class extends value "+String(i)+" is not a constructor or null");t(n,i);function o(){this.constructor=n}n.prototype=i===null?Object.create(i):(o.prototype=i.prototype,new o)}}(),SI=ir&&ir.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(ir,"__esModule",{value:!0});ir.HumanError=void 0;var mg=SI(ke()),xI=sr(),CI=mg.default.colors,AI=mg.default.report,OI=function(t){bI(n,t);function n(i,o,a){var u=t.call(this)||this;return console.log(`
40
- `+(0,xI.bgRed)("ERROR:")),console.log(i+" "+CI.gray(o)+`
41
- `),AI({type:"jsError",content:i+", "+a.stack}).then(function(){return process.exit(1)}),u}return n}(Error);ir.HumanError=OI});var dn=x(ge=>{"use strict";var II=ge&&ge.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(ge,"__esModule",{value:!0});ge.handleError=ge.HumanError=ge.ServerlessError=ge.InitError=ge.ConfigGetError=ge.ConfigError=ge.ConfigDeleteError=ge.CommandError=void 0;var Ia=sr(),RI=Ps(),Ra=II(ke()),Pr=Ra.default.colors,PI=Ra.default.report,TI=Ra.default.getMAC,LI=lg();Object.defineProperty(ge,"CommandError",{enumerable:!0,get:function(){return LI.CommandError}});var NI=fg();Object.defineProperty(ge,"ConfigDeleteError",{enumerable:!0,get:function(){return NI.ConfigDeleteError}});var qI=hg();Object.defineProperty(ge,"ConfigError",{enumerable:!0,get:function(){return qI.ConfigError}});var DI=pg();Object.defineProperty(ge,"ConfigGetError",{enumerable:!0,get:function(){return DI.ConfigGetError}});var $I=dg();Object.defineProperty(ge,"InitError",{enumerable:!0,get:function(){return $I.InitError}});var FI=Rr();Object.defineProperty(ge,"ServerlessError",{enumerable:!0,get:function(){return FI.ServerlessError}});var jI=gg();Object.defineProperty(ge,"HumanError",{enumerable:!0,get:function(){return jI.HumanError}});var MI=TI().replace(/:/g,"");function Pa(t,n){return""+Pr.gray(t)+Pr.gray.underline(n)}function GI(t,n,i){n===void 0&&(n="Message:"),i===void 0&&(i=!0);var o=""+MI+Date.now();console.log((0,Ia.red)("\u2716 "+n+`
42
- `));var a=(0,RI.getConfig)("analysis");a!=="disable"&&console.log(Pr.gray("TraceId: "+o)),console.log(Pr.gray("Environment: "+(0,Ia.getVersion)())),console.log(Pa("Documents: ","https://www.serverless-devs.com")),console.log(Pa("Discussions: ","https://github.com/Serverless-Devs/Serverless-Devs/discussions")),console.log(Pa("Issues: ",`https://github.com/Serverless-Devs/Serverless-Devs/issues
43
- `)),console.log((0,Ia.bgRed)("ERROR:")+`
44
- `+t+`
45
- `),a!=="disable"&&console.log(Pr.gray("Please copy traceId: "+o+" and join Dingding group: 33947367 for consultation.")),console.log(Pr.gray("You can run 's clean --cache' to prune Serverless devs.")),console.log(Pr.gray(`And run again with the '--debug' option or 's -h' to get more logs.
46
- `)),PI({type:"jsError",content:t.stack,traceId:o}).then(function(){return i&&process.exit(1)})}ge.handleError=GI});var vg=x((dL,HI)=>{HI.exports={name:"@serverless-devs/s",version:"2.0.91-alpha.2",description:"Serverless devs tool, serverless developer tool, supports Alibaba cloud, AWS, azure, baidu cloud, Huawei cloud, Google cloud and Tencent cloud.",homepage:"https://www.serverless-devs.com",keywords:["serverless","alibaba","tencent","azure","baidu","huawei","google","function","faas","serverless-devs"],publishConfig:{access:"public",registry:"https://registry.npmjs.org"},license:"MIT",repository:{type:"git",url:"https://github.com/Serverless-Devs/Serverless-Devs"},bugs:{url:"https://github.com/Serverless-Devs/Serverless-Devs/issues"},scripts:{prewatch:"rm -rf lib/* && cp -r ./src/daemon ./lib",watch:"tsc -w",test:"npx jest",prebuild:"rm -rf lib",build:"tsc && cp -r ./src/daemon ./lib",postbuild:"./shell/postbuild.sh","test:cov":"jest --coverage",lint:"npm run typecheck && f2elint scan -i src",fix:"f2elint fix",typecheck:"npx tsc -p tsconfig.json --noEmit",update:"rm -rf yarn.lock && rm -rf package-lock.json && rm -rf node_modules && yarn",beta:"npm publish --tag=beta"},main:"./lib/index.js",bin:{s:"bin/s"},devDependencies:{"@types/jest":"^27.0.1","@types/lodash":"^4.14.168","@types/node":"^14.0.23","@types/update-notifier":"^5.1.0","@typescript-eslint/eslint-plugin":"^4.14.1","@typescript-eslint/parser":"^4.14.1","babel-eslint":"^10.1.0",boxen:"^5.0.0",commander:"^6.0.0",dotenv:"^10.0.0",esbuild:"^0.13.6",eslint:"^7.7.0","eslint-config-prettier":"^7.2.0","eslint-plugin-import":"^2.20.1","eslint-plugin-prettier":"^3.1.2",husky:"^4.2.3",inquirer:"^8.2.0","inquirer-autocomplete-prompt":"^1.3.0",jest:"^27.1.0","latest-version":"^5.1.0","lint-staged":"^10.0.8",lodash:"^4.17.20","os-locale":"5.0.0",prettier:"^2.2.1",semver:"^7.3.5","semver-diff":"^3.1.1","ts-jest":"^27.0.1","ts-node":"^9.1.1",typescript:"^4.1.3"},"lint-staged":{"**/*.{js,jsx,ts}":"f2elint exec eslint"},jest:{coverageDirectory:"coverage",testEnvironment:"node",coverageProvider:"v8",preset:"ts-jest",testMatch:["**/test/**/*test.[jt]s"],setupFilesAfterEnv:["./jest.setup.ts"]},dependencies:{"@serverless-devs/core":"latest"}}});var sr=x(K=>{"use strict";var BI=K&&K.__createBinding||(Object.create?function(t,n,i,o){o===void 0&&(o=i),Object.defineProperty(t,o,{enumerable:!0,get:function(){return n[i]}})}:function(t,n,i,o){o===void 0&&(o=i),t[o]=n[i]}),UI=K&&K.__setModuleDefault||(Object.create?function(t,n){Object.defineProperty(t,"default",{enumerable:!0,value:n})}:function(t,n){t.default=n}),WI=K&&K.__importStar||function(t){if(t&&t.__esModule)return t;var n={};if(t!=null)for(var i in t)i!=="default"&&Object.prototype.hasOwnProperty.call(t,i)&&BI(n,t,i);return UI(n,t),n},oi=K&&K.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(K,"__esModule",{value:!0});K.emoji=K.mark=K.replaceTemplate=K.getTemplatekey=K.replaceFun=K.getLang=K.printn=K.checkTemplateFile=K.checkAndReturnTemplateFile=K.yamlLoad=K.getVersion=K.bgRed=K.red=void 0;var Oe=oi(require("path")),_t=oi(require("fs")),ui=oi(zu()),kI=Ps(),VI=oi(require("os")),zI=oi(cg()),KI=dn(),Ys=WI(ke()),_g=Ys.default.colors,XI=Ys.default.jsyaml,Zs=vg();K.red=_g.hex("#fd5750");K.bgRed=_g.hex("#000").bgHex("#fd5750");function YI(){return(0,Ys.getCoreVersion)()?Zs.name+": "+Zs.version+", @serverless-devs/core: "+(0,Ys.getCoreVersion)()+", "+process.platform+"-"+process.arch+", node-"+process.version:Zs.name+": "+Zs.version+", "+process.platform+"-"+process.arch+", node-"+process.version}K.getVersion=YI;function yg(t){var n=_t.default.readFileSync(t,"utf8");try{return XI.load(n)}catch(o){var i=Oe.default.basename(t);new KI.HumanError(i+"\u683C\u5F0F\u4E0D\u6B63\u786E","\u8BF7\u68C0\u67E5"+i+"\u7684\u914D\u7F6E",o)}}K.yamlLoad=yg;function ai(t,n){n===void 0&&(n=!1);var i=_t.default.readFileSync(t,"utf8"),o=n?JSON.parse(i):yg(t);if(!o)return!1;for(var a in o)if(o[a].Component&&o[a].Provider&&o[a].Properties)return!0;return o.hasOwnProperty("edition")}function Eg(){if(process.env.serverless_devs_temp_template)return process.env.serverless_devs_temp_template;var t=process.cwd(),n=process.argv.includes("-t")?"-t":process.argv.includes("--template")?"--template":null,i=n?process.argv.indexOf(n):-1;if(i!==-1){var o=i+1,a=process.argv[o];if(a&&(a.endsWith(".yaml")||a.endsWith(".yml")||a.endsWith(".json"))){var u=!!a.endsWith(".json");if(_t.default.existsSync(Oe.default.join(t,a))&&ai(Oe.default.join(t,a),u)){process.argv.splice(i,2);var h=JSON.parse(process.env.serverless_devs_temp_argv);return h.splice(h.indexOf(n),2),process.env.serverless_devs_temp_argv=JSON.stringify(h),process.env.serverless_devs_temp_template=Oe.default.join(t,a),Oe.default.join(t,a)}else if(_t.default.existsSync(a)&&ai(a,u)){process.argv.splice(i,2);var h=JSON.parse(process.env.serverless_devs_temp_argv);return h.splice(h.indexOf(n),2),process.env.serverless_devs_temp_argv=JSON.stringify(h),process.env.serverless_devs_temp_template=a,a}}}return _t.default.existsSync(Oe.default.join(t,"s.yaml"))&&ai(Oe.default.join(t,"s.yaml"))?(process.env.serverless_devs_temp_template=Oe.default.join(t,"s.yaml"),Oe.default.join(t,"s.yaml")):_t.default.existsSync(Oe.default.join(t,"s.yml"))&&ai(Oe.default.join(t,"s.yml"))?(process.env.serverless_devs_temp_template=Oe.default.join(t,"s.yml"),Oe.default.join(t,"s.yml")):_t.default.existsSync(Oe.default.join(t,"s.json"))&&ai(Oe.default.join(t,"s.json"),!0)?(process.env.serverless_devs_temp_template=Oe.default.join(t,"s.json"),Oe.default.join(t,"s.json")):null}K.checkAndReturnTemplateFile=Eg;function wg(t){return _t.default.existsSync(t)?t:null}K.checkTemplateFile=wg;function bg(t,n){n===void 0&&(n=" ");for(var i="",o=0;o<t;o++)i=i+n;return i}K.printn=bg;function Sg(){try{var t=(0,kI.getConfig)("locale");if(ui.default.isEmpty(t)){var n=zI.default.sync(),i={"en-US":"en","zh-CN":"zh"};t=ui.default.get(i,n,"en")}return t}catch{return"en"}}K.getLang=Sg;function Ta(t,n){var i=/\{\{(.*?)\}\}/g,o=t.match(i);if(o)for(var a=0;a<o.length;a++){var u=o[a].replace(/{{|}}/g,""),h=ui.default.trim(u.split("|")[0]);n[h]&&(t=t.replace(o[a],n[h]))}return t}K.replaceFun=Ta;function xg(t){var n=/\{\{(.*?)\}\}/g,i=t.match(n);return i?i.filter(function(o){return o}).map(function(o){var a=o.replace(/{{|}}/g,""),u=a.split("|");return{name:ui.default.trim(u[0]),desc:ui.default.trim(u[1])}}):[]}K.getTemplatekey=xg;function Cg(t,n){t.forEach(function(i){if(_t.default.existsSync(i)){var o=_t.default.readFileSync(i,"utf-8"),a=Ta(o,n);_t.default.writeFileSync(i,a,"utf-8")}})}K.replaceTemplate=Cg;function Ag(t){if(!t)return t;var n=t.slice(-4);return"***********"+n}K.mark=Ag;function ZI(t){return VI.default.platform()==="win32"?"":t}K.emoji=ZI;K.default={checkAndReturnTemplateFile:Eg,checkTemplateFile:wg,printn:bg,mark:Ag,getLang:Sg,replaceTemplate:Cg,replaceFun:Ta,getTemplatekey:xg}});var Tg=x(Qe=>{"use strict";var JI=Qe&&Qe.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(Qe,"__esModule",{value:!0});Qe.extractTemplateInfo=Qe.isUrlFormat=Qe.getProjectNameFromUrl=Qe.parse=void 0;var QI=JI(require("url"));function Og(t){return QI.default.parse(t)}Qe.parse=Og;function Ig(t){var n=t.lastIndexOf("/");return n&&n>=0&&(t=t.substr(n+1)),t.endsWith(".git")?t.substr(0,t.length-4):t}Qe.getProjectNameFromUrl=Ig;function Rg(t){return t.includes(":")||t.includes("/")}Qe.isUrlFormat=Rg;function Pg(t){var n=t.pathname||"",i=n.split("/"),o=i[1],a=i[3];return{host:t.host,ownerName:o,repoName:a,branch:"",hasSubPath:!1,subPath:"",zipFile:""}}Qe.extractTemplateInfo=Pg;Qe.default={extractTemplateInfo:Pg,getProjectNameFromUrl:Ig,isUrlFormat:Rg,parse:Og}});var Js=x(Ge=>{"use strict";Object.defineProperty(Ge,"__esModule",{value:!0});Ge.getServiceList=Ge.getServiceActions=Ge.getServiceInputs=Ge.getServiceConfigDetail=Ge.getServiceConfig=Ge.getSubcommand=void 0;function Lg(t){var n=t.edition||"0.0.1";if(n==="0.0.1")return Object.keys(t).filter(function(o){return o!=="Global"});var i=t.services||{};return Object.keys(i)}Ge.getSubcommand=Lg;function Ng(t,n){var i=t.edition||"0.0.1";if(i==="0.0.1")return t[n];var o=t.services||{},a=o[n],u=a.provider?a.provider:t.provider,h=a.access?a.access:t.access,m=Object.assign({},a,{access:h,provider:u});return m}Ge.getServiceConfig=Ng;function qg(t){var n=t.Component||t.component,i=t.Provider||t.provider,o=t.Access||t.access||"default",a=t.autoCredential;return{name:n,provider:i,access:o,autoCredential:a}}Ge.getServiceConfigDetail=qg;function Dg(t,n,i){if(n==="0.0.1"){var o=t.Properties,a=t.Params,u=t.Provider,h=t.Access,m=t.Component,g=t.ProjectName,l=i.credentials,_=i.method,S={Properties:o,Credentials:l,Project:{ProjectName:g,Component:m,Provider:u,AccessAlias:h||""},Command:_,Args:a||"",Path:{ConfigPath:process.env.templateFile||""}};return S}var I=t.props,P=t.params,M=t.provider,B=t.access,Z=t.component,X=t.ProjectName,Ie=t.appName,Q=i.credentials,ae=i.method,_e={props:I,Properties:I,Credentials:Q,credentials:Q,appName:Ie,Project:{ProjectName:X,projectName:X,component:Z,Component:Z,provider:M,Provider:M,accessAlias:B||"",AccessAlias:B||""},project:{component:Z,access:B||"",projectName:X},command:ae,Command:ae,args:P||"",Args:P||"",argsObj:process.temp_params||[],ArgsObj:process.temp_params||[],path:{configPath:process.env.templateFile||""},Path:{ConfigPath:process.env.templateFile||""}};return _e}Ge.getServiceInputs=Dg;function $g(t,n,i){var o=i.method;if(n==="0.0.1"){var a=t.Extends,u=a===void 0?{}:a,h=u[o];return h}var m=t.actions,g=m===void 0?{}:m,l=[];return Object.keys(g).forEach(function(_){var S=_.split("-"),I=g[_];if(S.length>1){var P=S[1];if(P===o){var M=S[0];I.forEach(function(B){var Z={Hook:B.run,Path:B.path,Pre:M==="pre"};l.push(Z)})}}else _===o&&I.forEach(function(B){var Z={Hook:B.run,Path:B.path,Pre:!1};l.push(Z)})}),l}Ge.getServiceActions=$g;function Fg(t){var n=t.edition||"0.0.1";return n==="0.0.1"?t:t.services}Ge.getServiceList=Fg;Ge.default={getSubcommand:Lg,getServiceConfig:Ng,getServiceConfigDetail:qg,getServiceInputs:Dg,getServiceActions:$g,getServiceList:Fg}});var Wg=x(qe=>{"use strict";var eR=qe&&qe.__createBinding||(Object.create?function(t,n,i,o){o===void 0&&(o=i),Object.defineProperty(t,o,{enumerable:!0,get:function(){return n[i]}})}:function(t,n,i,o){o===void 0&&(o=i),t[o]=n[i]}),tR=qe&&qe.__setModuleDefault||(Object.create?function(t,n){Object.defineProperty(t,"default",{enumerable:!0,value:n})}:function(t,n){t.default=n}),jg=qe&&qe.__importStar||function(t){if(t&&t.__esModule)return t;var n={};if(t!=null)for(var i in t)i!=="default"&&Object.prototype.hasOwnProperty.call(t,i)&&eR(n,t,i);return tR(n,t),n},Mg=qe&&qe.__awaiter||function(t,n,i,o){function a(u){return u instanceof i?u:new i(function(h){h(u)})}return new(i||(i=Promise))(function(u,h){function m(_){try{l(o.next(_))}catch(S){h(S)}}function g(_){try{l(o.throw(_))}catch(S){h(S)}}function l(_){_.done?u(_.value):a(_.value).then(m,g)}l((o=o.apply(t,n||[])).next())})},Gg=qe&&qe.__generator||function(t,n){var i={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]},o,a,u,h;return h={next:m(0),throw:m(1),return:m(2)},typeof Symbol=="function"&&(h[Symbol.iterator]=function(){return this}),h;function m(l){return function(_){return g([l,_])}}function g(l){if(o)throw new TypeError("Generator is already executing.");for(;i;)try{if(o=1,a&&(u=l[0]&2?a.return:l[0]?a.throw||((u=a.return)&&u.call(a),0):a.next)&&!(u=u.call(a,l[1])).done)return u;switch(a=0,u&&(l=[l[0]&2,u.value]),l[0]){case 0:case 1:u=l;break;case 4:return i.label++,{value:l[1],done:!1};case 5:i.label++,a=l[1],l=[0];continue;case 7:l=i.ops.pop(),i.trys.pop();continue;default:if(u=i.trys,!(u=u.length>0&&u[u.length-1])&&(l[0]===6||l[0]===2)){i=0;continue}if(l[0]===3&&(!u||l[1]>u[0]&&l[1]<u[3])){i.label=l[1];break}if(l[0]===6&&i.label<u[1]){i.label=u[1],u=l;break}if(u&&i.label<u[2]){i.label=u[2],i.ops.push(l);break}u[2]&&i.ops.pop(),i.trys.pop();continue}l=n.call(t,i)}catch(_){l=[6,_],a=0}finally{o=u=0}if(l[0]&5)throw l[1];return{value:l[0]?l[1]:void 0,done:!0}}},rR=qe&&qe.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(qe,"__esModule",{value:!0});qe.Parse=void 0;var La=jg(require("fs")),Hg=jg(require("path")),nR=Js(),iR=dn(),Bg=zu(),sR=rR(ke()),oR=sR.default.jsyaml,Ug=new RegExp(/\$\{(.*)\}/,"i"),uR=new RegExp(/(.*)\((.*)\)/,"i"),aR=["[object Number]","[object Boolean]"],cR=function(){function t(n){if(this.path=n,this.parsedObj={},this.dependenciesMap={},this.globalJsonKeyMap={},this.globalKeyArr=[],this.magicVariablesArray=[],La.existsSync(n))try{this.init(n)}catch(i){throw new Error(i.message)}}return t.prototype.getFileObj=function(n){var i={};try{var o=Hg.extname(n);(o.indexOf(".yaml")!==-1||o.indexOf(".yml")!==-1)&&(i=oR.load(La.readFileSync(n,"utf8"))),o.indexOf(".json")!==-1&&(i=JSON.parse(La.readFileSync(n).toString()))}catch(a){process.env.serverless_devs_out_put_help!=="true"&&(0,iR.handleError)(a,"Failed to execute:")}return i},t.prototype.init=function(n){return Mg(this,void 0,void 0,function(){return Gg(this,function(i){return this.parsedObj=this.getFileObj(n),[2]})})},t.prototype.getOriginalParsedObj=function(){return this.parsedObj},t.prototype.findVariableValue=function(n){var i=n.variableName,o=n.type,a=n.funName,u=n.funVariable,h="";return o==="Literal"?this.globalJsonKeyMap[i]||this.globalJsonKeyMap["services."+i]||"${"+i+"}":o==="Fun"&&(a==="Env"||a==="env")?process.env[u]:o==="Fun"&&(a==="Path"||a==="path")?Hg.join(process.cwd(),u):o==="Fun"&&(a==="File"||a==="file")?this.getFileObj(u):h},t.prototype.generateMagicVariables=function(n,i,o){var a=this;return i===void 0&&(i=[]),o===void 0&&(o=""),Object.prototype.toString.call(n)==="[object Object]"?(o!==""&&(o=o+"."),Object.keys(n).map(function(u){var h=""+o+u,m=n[u];i.push(h),i.concat(a.generateMagicVariables(m,i,""+h)),a.globalJsonKeyMap[h]=m})):Object.prototype.toString.call(n)==="[object Array]"?n.forEach(function(u,h){var m=o+"["+h+"]",g=o+"["+(h-n.length)+"]";i.push(m),i.push(g),i.concat(a.generateMagicVariables(u,i,""+m)),i.concat(a.generateMagicVariables(u,i,""+g)),a.globalJsonKeyMap[m]=u,a.globalJsonKeyMap[g]=u}):i=[],i},t.prototype.isProjectProperties=function(n,i){var o=!1;return i==="Properties"&&this.globalJsonKeyMap[n+"."+i]&&(o=!0),o},t.prototype.iteratorToSetValue=function(n,i,o){var a=this;if(aR.includes(Object.prototype.toString.call(n)))return n;if(Object.prototype.toString.call(n)==="[object String]"){var u=n.match(Ug);if(u){var h=u[1],m={variableName:h,type:"Literal",funName:null,funVariable:""},g=h.match(uR);if(g)m.funName=g[1],m.funVariable=g[2],m.type="Fun";else{var l=this.dependenciesMap[i];l||(l={});var _=h.split(".")[0];l[_]=1,this.dependenciesMap[i]=l}var S=(0,Bg.startsWith)(h,"env.")?(0,Bg.get)(process,h):this.findVariableValue(m);return Object.prototype.toString.call(S)==="[object String]"?n.replace(Ug,S):S}return(!this.dependenciesMap[i]||Object.keys(this.dependenciesMap[i]).length==0)&&(this.dependenciesMap[i]={}),n}if(Object.prototype.toString.call(n)==="[object Array]")return n.map(function(I){return a.iteratorToSetValue(I,i)});if(Object.prototype.toString.call(n)==="[object Object]")return Object.keys(n).forEach(function(I){n[I]=a.iteratorToSetValue(n[I],i,o||I)}),n},t.prototype.replaceVariable=function(n){var i=this,o=(0,nR.getServiceList)(n);return Object.keys(o).forEach(function(a){var u=o[a];o[a]=i.iteratorToSetValue(u,a)}),n.services?n.services=o:n=o,n},t.prototype.getRealVariables=function(n){return Mg(this,void 0,void 0,function(){return Gg(this,function(i){return this.globalKeyArr=this.generateMagicVariables(n),[2,this.replaceVariable(n)]})})},t}();qe.Parse=cR});var kg=x(Qs=>{"use strict";Object.defineProperty(Qs,"__esModule",{value:!0});Qs.Analysis=void 0;var lR=function(){function t(n,i){this.parsedObj=n,this.dependenciesMap=i,this.componentOrderKeyMap={}}return t.prototype.getComponentOrderKeyMap=function(n){var i=this;n.forEach(function(o){i.componentOrderKeyMap[o]=1})},t.prototype.calculateOrderNumber=function(n){var i=this;n.forEach(function(o){var a=i.dependenciesMap[o];Object.keys(a).forEach(function(u){i.componentOrderKeyMap[u]&&(i.componentOrderKeyMap[u]+=a[u])})})},t.prototype.getProjectOrder=function(){var n=this,i=Object.keys(this.dependenciesMap).filter(function(a){return a!=="Global"});this.getComponentOrderKeyMap(i),this.calculateOrderNumber(i);var o=Object.keys(this.componentOrderKeyMap).map(function(a){return{name:a,order:n.componentOrderKeyMap[a]}});return o.sort(function(a,u){return u.order-a.order}).map(function(a){return a.name})},t}();Qs.Analysis=lR});var eo=x(Ot=>{"use strict";var fR=Ot&&Ot.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(Ot,"__esModule",{value:!0});Ot.version=Ot.Analysis=Ot.Parse=void 0;var hR=Wg();Object.defineProperty(Ot,"Parse",{enumerable:!0,get:function(){return hR.Parse}});var pR=kg();Object.defineProperty(Ot,"Analysis",{enumerable:!0,get:function(){return pR.Analysis}});var dR=Js();Object.defineProperty(Ot,"version",{enumerable:!0,get:function(){return fR(dR).default}})});var Na=x(or=>{"use strict";Object.defineProperty(or,"__esModule",{value:!0});or.UPDATE_CHECK_INTERVAL=or.DEFAULT_REGIRSTRY=or.PROCESS_ENV_TEMPLATE_NAME=void 0;or.PROCESS_ENV_TEMPLATE_NAME="templateFile";or.DEFAULT_REGIRSTRY="http://registry.devsapp.cn/simple";or.UPDATE_CHECK_INTERVAL=1e3*60*60*12});var Vg=x(It=>{"use strict";var qa=It&&It.__awaiter||function(t,n,i,o){function a(u){return u instanceof i?u:new i(function(h){h(u)})}return new(i||(i=Promise))(function(u,h){function m(_){try{l(o.next(_))}catch(S){h(S)}}function g(_){try{l(o.throw(_))}catch(S){h(S)}}function l(_){_.done?u(_.value):a(_.value).then(m,g)}l((o=o.apply(t,n||[])).next())})},Da=It&&It.__generator||function(t,n){var i={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]},o,a,u,h;return h={next:m(0),throw:m(1),return:m(2)},typeof Symbol=="function"&&(h[Symbol.iterator]=function(){return this}),h;function m(l){return function(_){return g([l,_])}}function g(l){if(o)throw new TypeError("Generator is already executing.");for(;i;)try{if(o=1,a&&(u=l[0]&2?a.return:l[0]?a.throw||((u=a.return)&&u.call(a),0):a.next)&&!(u=u.call(a,l[1])).done)return u;switch(a=0,u&&(l=[l[0]&2,u.value]),l[0]){case 0:case 1:u=l;break;case 4:return i.label++,{value:l[1],done:!1};case 5:i.label++,a=l[1],l=[0];continue;case 7:l=i.ops.pop(),i.trys.pop();continue;default:if(u=i.trys,!(u=u.length>0&&u[u.length-1])&&(l[0]===6||l[0]===2)){i=0;continue}if(l[0]===3&&(!u||l[1]>u[0]&&l[1]<u[3])){i.label=l[1];break}if(l[0]===6&&i.label<u[1]){i.label=u[1],u=l;break}if(u&&i.label<u[2]){i.label=u[2],i.ops.push(l);break}u[2]&&i.ops.pop(),i.trys.pop();continue}l=n.call(t,i)}catch(_){l=[6,_],a=0}finally{o=u=0}if(l[0]&5)throw l[1];return{value:l[0]?l[1]:void 0,done:!0}}},$a=It&&It.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(It,"__esModule",{value:!0});It.PluginExeCute=void 0;var ci=$a(require("fs")),Fa=$a(require("path")),mR=$a(require("os")),to=Fa.default.join(mR.default.homedir(),".s","plugins"),gR=function(){function t(n){this.pluginConfig=n,ci.default.existsSync(to)||ci.default.mkdirSync(to);var i=this.pluginConfig.name;this.pluginPath=Fa.default.join(to,i)}return t.prototype.init=function(){return qa(this,void 0,void 0,function(){var n;return Da(this,function(i){switch(i.label){case 0:return n=this.pluginConfig.name,this.pluginExist()?[3,2]:[4,this.downLoadPlugin(n)];case 1:i.sent(),i.label=2;case 2:return[2]}})})},t.prototype.pluginExist=function(){return ci.default.existsSync(this.pluginPath)},t.prototype.downLoadPlugin=function(n){return qa(this,void 0,void 0,function(){var i;return Da(this,function(o){return i=Fa.default.join(to,n),ci.default.existsSync(i)||ci.default.mkdirSync(i),[2]})})},t.prototype.loadPlugin=function(){return qa(this,void 0,void 0,function(){var n;return Da(this,function(i){return n=require(this.pluginPath),[2,n]})})},t}();It.PluginExeCute=gR});var Xg=x(Rt=>{"use strict";var li=Rt&&Rt.__awaiter||function(t,n,i,o){function a(u){return u instanceof i?u:new i(function(h){h(u)})}return new(i||(i=Promise))(function(u,h){function m(_){try{l(o.next(_))}catch(S){h(S)}}function g(_){try{l(o.throw(_))}catch(S){h(S)}}function l(_){_.done?u(_.value):a(_.value).then(m,g)}l((o=o.apply(t,n||[])).next())})},fi=Rt&&Rt.__generator||function(t,n){var i={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]},o,a,u,h;return h={next:m(0),throw:m(1),return:m(2)},typeof Symbol=="function"&&(h[Symbol.iterator]=function(){return this}),h;function m(l){return function(_){return g([l,_])}}function g(l){if(o)throw new TypeError("Generator is already executing.");for(;i;)try{if(o=1,a&&(u=l[0]&2?a.return:l[0]?a.throw||((u=a.return)&&u.call(a),0):a.next)&&!(u=u.call(a,l[1])).done)return u;switch(a=0,u&&(l=[l[0]&2,u.value]),l[0]){case 0:case 1:u=l;break;case 4:return i.label++,{value:l[1],done:!1};case 5:i.label++,a=l[1],l=[0];continue;case 7:l=i.ops.pop(),i.trys.pop();continue;default:if(u=i.trys,!(u=u.length>0&&u[u.length-1])&&(l[0]===6||l[0]===2)){i=0;continue}if(l[0]===3&&(!u||l[1]>u[0]&&l[1]<u[3])){i.label=l[1];break}if(l[0]===6&&i.label<u[1]){i.label=u[1],u=l;break}if(u&&i.label<u[2]){i.label=u[2],i.ops.push(l);break}u[2]&&i.ops.pop(),i.trys.pop();continue}l=n.call(t,i)}catch(_){l=[6,_],a=0}finally{o=u=0}if(l[0]&5)throw l[1];return{value:l[0]?l[1]:void 0,done:!0}}},zg=Rt&&Rt.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(Rt,"__esModule",{value:!0});Rt.Hook=void 0;var Kg=zg(require("fs")),vR=zg(require("path")),mn=hi(),_R=Vg(),yR=require("child_process").spawnSync,ER=function(){function t(n){var i=this;n===void 0&&(n=[]),this.preHooks=[],this.afterHooks=[],n.forEach(function(o){o.Pre?i.preHooks.push(o):i.afterHooks.push(o)})}return t.prototype.executePreHook=function(){return li(this,void 0,void 0,function(){var n,i;return fi(this,function(o){switch(o.label){case 0:if(!(this.preHooks.length>0))return[3,5];mn.logger.info("Start the pre-action"),n=0,o.label=1;case 1:return n<this.preHooks.length?(i=n,mn.logger.info("Action: "+(this.preHooks[i].Hook||this.preHooks[i].Plugin)),[4,this.executeByConfig(this.preHooks[i])]):[3,4];case 2:o.sent(),o.label=3;case 3:return n++,[3,1];case 4:mn.logger.info("End the pre-action"),o.label=5;case 5:return[2]}})})},t.prototype.executeAfterHook=function(){return li(this,void 0,void 0,function(){var n,i;return fi(this,function(o){switch(o.label){case 0:if(!(this.afterHooks.length>0))return[3,5];mn.logger.info("Start the after-action"),n=0,o.label=1;case 1:return n<this.afterHooks.length?(i=n,mn.logger.info("Action: "+(this.afterHooks[i].Hook||this.afterHooks[i].Plugin)),[4,this.executeByConfig(this.afterHooks[i])]):[3,4];case 2:o.sent(),o.label=3;case 3:return n++,[3,1];case 4:mn.logger.info("End the after-action"),o.label=5;case 5:return[2]}})})},t.prototype.commandExecute=function(n,i){return li(this,void 0,void 0,function(){var o,a,u;return fi(this,function(h){if(o=process.cwd(),a=i?vR.default.resolve(o,i):o,Kg.default.existsSync(a)&&Kg.default.lstatSync(a).isDirectory()&&(process.env["next-command-execute-flag"]="true",u=yR(n,[],{cwd:a,stdio:"inherit",shell:!0}),u&&u.status!==0))throw new Error("Action ["+n+"] run error.");return[2]})})},t.prototype.pluginExecute=function(n){return li(this,void 0,void 0,function(){var i,o;return fi(this,function(a){switch(a.label){case 0:return i=new _R.PluginExeCute({name:n}),[4,i.init()];case 1:return a.sent(),[4,i.loadPlugin()];case 2:return o=a.sent(),o.apply(null,[]),[2]}})})},t.prototype.executeByConfig=function(n){return li(this,void 0,void 0,function(){return fi(this,function(i){switch(i.label){case 0:return n.Hook?[4,this.commandExecute(n.Hook,n.Path)]:[3,2];case 1:return i.sent(),[3,4];case 2:return n.Plugin?[4,this.pluginExecute(n.Plugin)]:[3,4];case 3:i.sent(),i.label=4;case 4:return[2]}})})},t}();Rt.Hook=ER});var rv=x(Ve=>{"use strict";var yt=Ve&&Ve.__awaiter||function(t,n,i,o){function a(u){return u instanceof i?u:new i(function(h){h(u)})}return new(i||(i=Promise))(function(u,h){function m(_){try{l(o.next(_))}catch(S){h(S)}}function g(_){try{l(o.throw(_))}catch(S){h(S)}}function l(_){_.done?u(_.value):a(_.value).then(m,g)}l((o=o.apply(t,n||[])).next())})},Et=Ve&&Ve.__generator||function(t,n){var i={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]},o,a,u,h;return h={next:m(0),throw:m(1),return:m(2)},typeof Symbol=="function"&&(h[Symbol.iterator]=function(){return this}),h;function m(l){return function(_){return g([l,_])}}function g(l){if(o)throw new TypeError("Generator is already executing.");for(;i;)try{if(o=1,a&&(u=l[0]&2?a.return:l[0]?a.throw||((u=a.return)&&u.call(a),0):a.next)&&!(u=u.call(a,l[1])).done)return u;switch(a=0,u&&(l=[l[0]&2,u.value]),l[0]){case 0:case 1:u=l;break;case 4:return i.label++,{value:l[1],done:!1};case 5:i.label++,a=l[1],l=[0];continue;case 7:l=i.ops.pop(),i.trys.pop();continue;default:if(u=i.trys,!(u=u.length>0&&u[u.length-1])&&(l[0]===6||l[0]===2)){i=0;continue}if(l[0]===3&&(!u||l[1]>u[0]&&l[1]<u[3])){i.label=l[1];break}if(l[0]===6&&i.label<u[1]){i.label=u[1],u=l;break}if(u&&i.label<u[2]){i.label=u[2],i.ops.push(l);break}u[2]&&i.ops.pop(),i.trys.pop();continue}l=n.call(t,i)}catch(_){l=[6,_],a=0}finally{o=u=0}if(l[0]&5)throw l[1];return{value:l[0]?l[1]:void 0,done:!0}}},ro=Ve&&Ve.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(Ve,"__esModule",{value:!0});Ve.ComponentExeCute=Ve.generateSynchronizeComponentExeList=Ve.synchronizeExecuteComponentList=void 0;var ja=ro(require("fs")),Yg=ro(require("path")),Zg=ro(require("os")),wR=Na(),Ma=eo(),Ga=hi(),bR=Xg(),SR=dn(),Ha=ro(ke()),xR=Ha.default.getCredential,CR=Ha.default.loadComponent,AR=Ha.default.jsyaml,Jg=Ma.version.getServiceConfigDetail,OR=Ma.version.getServiceInputs,IR=Ma.version.getServiceActions,Qg=Yg.default.join(Zg.default.homedir(),".s","components");function ev(t,n,i){return t===void 0&&(t=[]),n===void 0&&(n=0),i===void 0&&(i={}),yt(this,void 0,void 0,function(){var o=this;return Et(this,function(a){switch(a.label){case 0:return n>=0&&n<t.length?[4,t[n]().then(function(u){var h=u.name,m=u.data;return yt(o,void 0,void 0,function(){return Et(this,function(g){switch(g.label){case 0:return h&&(i[h]=m),[4,ev(t,n+1,i)];case 1:return[2,g.sent()]}})})})]:[3,2];case 1:return[2,a.sent()];case 2:return[2,i]}})})}Ve.synchronizeExecuteComponentList=ev;function RR(t,n){var i=this,o=t.list,a=t.parse,u=t.parsedObj,h=t.method,m=t.params;return o.map(function(g){return function(){return new Promise(function(l,_){return yt(i,void 0,void 0,function(){var S,I,P,M,B,Z;return Et(this,function(X){switch(X.label){case 0:return X.trys.push([0,3,,4]),u.Params=m||"",Ga.logger.info("Start executing project "+g),[4,n(a,g,u)];case 1:return S=X.sent(),process.env.serverless_devs_temp_access&&(S.Access=process.env.serverless_devs_temp_access,S.access=process.env.serverless_devs_temp_access),I=new tv(S,h,u.edition),[4,I.init()];case 2:return P=X.sent(),u.edition?u.services[g].output=P:u[g].Output=P,Ga.logger.info("Project "+g+` successfully to execute
47
- `),l({name:g,data:P}),[3,4];case 3:return M=X.sent(),B=JSON.parse(process.env["s-execute-file"]||'{"Error": []}'),Z={},Z[g]=M.message.includes("e[t] is not a function")?"Project "+g+" does not include ["+h+"] method":M.message,B.Error.push(Z),process.env["s-execute-file"]=JSON.stringify(B),(0,SR.handleError)(M,"Project "+g+" failed to execute:",!1),l({}),[3,4];case 4:return[2]}})})})}})}Ve.generateSynchronizeComponentExeList=RR;var tv=function(){function t(n,i,o,a){o===void 0&&(o="0.0.1"),this.componentConfig=n,this.method=i,this.version=o,this.templateFile=a,ja.default.existsSync(Qg)||ja.default.mkdirSync(Qg)}return t.prototype.init=function(){return yt(this,void 0,void 0,function(){var n;return Et(this,function(i){switch(i.label){case 0:return n=this,[4,this.getCredentials()];case 1:return n.credentials=i.sent()||{},[4,this.startExecute()];case 2:return[2,i.sent()]}})})},t.prototype.getCredentials=function(){return yt(this,void 0,void 0,function(){var n,i,o,a,u,h,m,g;return Et(this,function(l){switch(l.label){case 0:if(n=Jg(this.componentConfig),i=n.access,o=n.autoCredential,o===!1)return[2,null];l.label=1;case 1:return l.trys.push([1,5,,6]),a=Yg.default.join(Zg.default.homedir(),".s","access.yaml"),u=AR.load(ja.default.readFileSync(a,"utf8")||"{}"),u[i]?[4,xR(i)]:[3,3];case 2:return m=l.sent(),[3,4];case 3:m={},l.label=4;case 4:return h=m,this.componentConfig.access=i,[2,h];case 5:return g=l.sent(),[3,6];case 6:return[2,{}]}})})},t.prototype.loadExtends=function(){var n=IR(this.componentConfig,this.version,{method:this.method}),i=null;return n&&(i=new bR.Hook(n)),i},t.prototype.loadPreExtends=function(n){return yt(this,void 0,void 0,function(){return Et(this,function(i){switch(i.label){case 0:return n?[4,n.executePreHook()]:[3,2];case 1:i.sent(),i.label=2;case 2:return[2]}})})},t.prototype.loadAfterExtend=function(n){return yt(this,void 0,void 0,function(){return Et(this,function(i){switch(i.label){case 0:return n?[4,n.executeAfterHook()]:[3,2];case 1:i.sent(),i.label=2;case 2:return[2]}})})},t.prototype.invokeMethod=function(n,i,o){return yt(this,void 0,void 0,function(){var a,u=this;return Et(this,function(h){return a=new Promise(function(m,g){return yt(u,void 0,void 0,function(){var l,_;return Et(this,function(S){switch(S.label){case 0:return S.trys.push([0,2,,3]),[4,n[i](o)];case 1:return l=S.sent(),m(l),[3,3];case 2:return _=S.sent(),g(_),[3,3];case 3:return[2]}})})}),[2,a]})})},t.prototype.executeCommand=function(){return yt(this,void 0,void 0,function(){var n,i,o,a,u;return Et(this,function(h){switch(h.label){case 0:return n=OR(this.componentConfig,this.version,{method:this.method,credentials:this.credentials}),i=Jg(this.componentConfig).name,o=Ga.configSet.getConfig("registry")||wR.DEFAULT_REGIRSTRY,[4,CR(i,o)];case 1:return a=h.sent(),[4,this.invokeMethod(a,this.method,n)];case 2:return u=h.sent(),[2,u]}})})},t.prototype.startExecute=function(){return yt(this,void 0,void 0,function(){var n,i,o,a,u;return Et(this,function(h){switch(h.label){case 0:return n={},i=process.env.temp_params||"",o=i.includes("--help")||i.includes("-h"),process.env["skip-actions"]==="true"||o?(u=null,[3,3]):[3,1];case 1:return[4,this.loadExtends()];case 2:u=h.sent(),h.label=3;case 3:return a=u,[4,this.loadPreExtends(a)];case 4:return h.sent(),[4,this.executeCommand()];case 5:return n=h.sent(),[4,this.loadAfterExtend(a)];case 6:return h.sent(),[2,n]}})})},t}();Ve.ComponentExeCute=tv});var nv=x(no=>{"use strict";Object.defineProperty(no,"__esModule",{value:!0});no.Human_Error_List=void 0;no.Human_Error_List=["e[t] is not a function"]});var av=x(Pt=>{"use strict";var iv=Pt&&Pt.__awaiter||function(t,n,i,o){function a(u){return u instanceof i?u:new i(function(h){h(u)})}return new(i||(i=Promise))(function(u,h){function m(_){try{l(o.next(_))}catch(S){h(S)}}function g(_){try{l(o.throw(_))}catch(S){h(S)}}function l(_){_.done?u(_.value):a(_.value).then(m,g)}l((o=o.apply(t,n||[])).next())})},sv=Pt&&Pt.__generator||function(t,n){var i={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]},o,a,u,h;return h={next:m(0),throw:m(1),return:m(2)},typeof Symbol=="function"&&(h[Symbol.iterator]=function(){return this}),h;function m(l){return function(_){return g([l,_])}}function g(l){if(o)throw new TypeError("Generator is already executing.");for(;i;)try{if(o=1,a&&(u=l[0]&2?a.return:l[0]?a.throw||((u=a.return)&&u.call(a),0):a.next)&&!(u=u.call(a,l[1])).done)return u;switch(a=0,u&&(l=[l[0]&2,u.value]),l[0]){case 0:case 1:u=l;break;case 4:return i.label++,{value:l[1],done:!1};case 5:i.label++,a=l[1],l=[0];continue;case 7:l=i.ops.pop(),i.trys.pop();continue;default:if(u=i.trys,!(u=u.length>0&&u[u.length-1])&&(l[0]===6||l[0]===2)){i=0;continue}if(l[0]===3&&(!u||l[1]>u[0]&&l[1]<u[3])){i.label=l[1];break}if(l[0]===6&&i.label<u[1]){i.label=u[1],u=l;break}if(u&&i.label<u[2]){i.label=u[2],i.ops.push(l);break}u[2]&&i.ops.pop(),i.trys.pop();continue}l=n.call(t,i)}catch(_){l=[6,_],a=0}finally{o=u=0}if(l[0]&5)throw l[1];return{value:l[0]?l[1]:void 0,done:!0}}},PR=Pt&&Pt.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(Pt,"__esModule",{value:!0});Pt.CommandManager=void 0;var ov=eo(),TR=Js(),gn=hi(),Ba=rv(),Tr=sr(),Ua=dn(),LR=nv(),uv=PR(ke()),Wa=uv.default.colors,NR=uv.default.jsyaml,qR=function(){function t(n,i,o,a){this.templateFile=n,this.method=i,this.customerCommandName=o,this.deployParams=a}return t.prototype.assemblyProjectConfig=function(n,i,o){return iv(this,void 0,void 0,function(){var a,u;return sv(this,function(h){switch(h.label){case 0:return[4,n.getRealVariables(o)];case 1:return a=h.sent(),u=(0,TR.getServiceConfig)(a,i),u.appName=a.name,u.ProjectName=i,this.deployParams&&(u.params=this.deployParams),[2,u]}})})},t.prototype.init=function(){return iv(this,void 0,void 0,function(){var n,i,o,a,u,h,m,g,l,_,S,I,P,M,B,S,Z,X,Ie;return sv(this,function(Q){switch(Q.label){case 0:return Q.trys.push([0,12,,13]),gn.logger.info("Start ..."),n=(0,Tr.checkTemplateFile)(this.templateFile),n?(i={},o=new ov.Parse(n),a=o.getOriginalParsedObj(),[4,o.getRealVariables(a)]):[3,10];case 1:return u=Q.sent(),h=new ov.Analysis(u,o.dependenciesMap),m=h.getProjectOrder(),this.customerCommandName||m.length===1?(g=m[0],[4,this.assemblyProjectConfig(o,this.customerCommandName||g,a)]):[3,7];case 2:l=Q.sent(),process.env.serverless_devs_temp_access&&(l.Access=process.env.serverless_devs_temp_access,l.access=process.env.serverless_devs_temp_access),_=new Ba.ComponentExeCute(l,this.method,a.edition,n),Q.label=3;case 3:return Q.trys.push([3,5,,6]),[4,_.init()];case 4:return S=Q.sent(),S&&(i[l.ProjectName]=S),[3,6];case 5:return I=Q.sent(),P=LR.Human_Error_List.find(function(ae){return ae===I.message}),P?new Ua.HumanError("componentInstance["+this.method+"] is not a function","\u8BF7\u68C0\u67E5\u7EC4\u4EF6"+l.component+"\u662F\u5426\u5B58\u5728"+this.method+"\u65B9\u6CD5",I):(0,Ua.handleError)(I,"Project "+l.ProjectName+" failed to execute:"),[3,6];case 6:return[3,9];case 7:return M=this.deployParams||"",gn.logger.info("It is detected that your project has the following projects < "+m.join(",")+" > to be execute"),B=(0,Ba.generateSynchronizeComponentExeList)({list:m,parse:o,parsedObj:a,method:this.method,params:M},this.assemblyProjectConfig.bind(this)),[4,(0,Ba.synchronizeExecuteComponentList)(B)];case 8:S=Q.sent();for(Z in S)m.includes(Z)&&S[Z]&&(i[Z]=S[Z]);Q.label=9;case 9:return X=JSON.parse(JSON.stringify(i)),process.env["s-execute-file"]?(gn.logger.error(`All projects were not deployed successfully.
48
-
49
- `+NR.dump(JSON.parse(process.env["s-execute-file"]).Error)+" "+(0,Tr.emoji)("\u{1F608}")+" If you have questions, please tell us: "+Wa.underline("https://github.com/Serverless-Devs/Serverless-Devs/issues")+`
50
- `),process.exit(1)):Object.keys(i).length===0?gn.logger.success("End of method: "+this.method):gn.logger.output(X),[3,11];case 10:gn.logger.error(`Failed to execute:
33
+ `)+A+`return __p
34
+ }`;var W=pc(function(){return J(p,q+"return "+A).apply(i,g)});if(W.source=A,To(W))throw W;return W}function uy(e){return Q(e).toLowerCase()}function ay(e){return Q(e).toUpperCase()}function ly(e,t,s){if(e=Q(e),e&&(s||t===i))return ba(e);if(!e||!(t=Ve(t)))return e;var l=ht(e),f=ht(t),p=Sa(l,f),g=Ca(l,f)+1;return Qt(l,p,g).join("")}function cy(e,t,s){if(e=Q(e),e&&(s||t===i))return e.slice(0,Oa(e)+1);if(!e||!(t=Ve(t)))return e;var l=ht(e),f=Ca(l,ht(t))+1;return Qt(l,0,f).join("")}function fy(e,t,s){if(e=Q(e),e&&(s||t===i))return e.replace(Is,"");if(!e||!(t=Ve(t)))return e;var l=ht(e),f=Sa(l,ht(t));return Qt(l,f).join("")}function hy(e,t){var s=It,l=od;if(ae(t)){var f="separator"in t?t.separator:f;s="length"in t?G(t.length):s,l="omission"in t?Ve(t.omission):l}e=Q(e);var p=e.length;if(Pr(e)){var g=ht(e);p=g.length}if(s>=p)return e;var y=s-Lr(l);if(y<1)return l;var w=g?Qt(g,0,y).join(""):e.slice(0,y);if(f===i)return w+l;if(g&&(y+=w.length-y),Po(f)){if(e.slice(y).search(f)){var x,O=w;for(f.global||(f=Vs(f.source,Q(Bu.exec(f))+"g")),f.lastIndex=0;x=f.exec(O);)var A=x.index;w=w.slice(0,A===i?y:A)}}else if(e.indexOf(Ve(f),y)!=y){var T=w.lastIndexOf(f);T>-1&&(w=w.slice(0,T))}return w+l}function py(e){return e=Q(e),e&&Cd.test(e)?e.replace(Uu,Gg):e}var dy=Mr(function(e,t,s){return e+(s?" ":"")+t.toUpperCase()}),No=dl("toUpperCase");function hc(e,t,s){return e=Q(e),t=s?i:t,t===i?Fg(e)?kg(e):Rg(e):e.match(t)||[]}var pc=k(function(e,t){try{return Be(e,i,t)}catch(s){return To(s)?s:new j(s)}}),gy=qt(function(e,t){return Qe(t,function(s){s=Et(s),Dt(e,s,Ro(e[s],e))}),e});function my(e){var t=e==null?0:e.length,s=$();return e=t?ue(e,function(l){if(typeof l[1]!="function")throw new et(a);return[s(l[0]),l[1]]}):[],k(function(l){for(var f=-1;++f<t;){var p=e[f];if(Be(p[0],this,l))return Be(p[1],this,l)}})}function vy(e){return Gm(rt(e,c))}function qo(e){return function(){return e}}function _y(e,t){return e==null||e!==e?t:e}var yy=ml(),Ey=ml(!0);function Ue(e){return e}function $o(e){return Va(typeof e=="function"?e:rt(e,c))}function wy(e){return Xa(rt(e,c))}function by(e,t){return Ya(e,rt(t,c))}var Sy=k(function(e,t){return function(s){return yn(s,e,t)}}),Cy=k(function(e,t){return function(s){return yn(e,s,t)}});function Fo(e,t,s){var l=ye(t),f=Ci(t,l);s==null&&!(ae(t)&&(f.length||!l.length))&&(s=t,t=e,e=this,f=Ci(t,ye(t)));var p=!(ae(s)&&"chain"in s)||!!s.chain,g=Ft(e);return Qe(f,function(y){var w=t[y];e[y]=w,g&&(e.prototype[y]=function(){var x=this.__chain__;if(p||x){var O=e(this.__wrapped__),A=O.__actions__=Me(this.__actions__);return A.push({func:w,args:arguments,thisArg:e}),O.__chain__=x,O}return w.apply(e,Vt([this.value()],arguments))})}),e}function xy(){return _e._===this&&(_e._=Zg),this}function Mo(){}function Oy(e){return e=G(e),k(function(t){return Ka(t,e)})}var Ay=go(ue),Ry=go(va),Iy=go(js);function dc(e){return bo(e)?Hs(Et(e)):sv(e)}function Ty(e){return function(t){return e==null?i:lr(e,t)}}var Py=_l(),Ly=_l(!0);function jo(){return[]}function Ho(){return!1}function Dy(){return{}}function Ny(){return""}function qy(){return!0}function $y(e,t){if(e=G(e),e<1||e>Bt)return[];var s=vt,l=Oe(e,vt);t=$(t),e-=vt;for(var f=Ws(l,t);++s<e;)t(s);return f}function Fy(e){return H(e)?ue(e,Et):ze(e)?[e]:Me(Nl(Q(e)))}function My(e){var t=++Yg;return Q(e)+t}var jy=Ti(function(e,t){return e+t},0),Hy=mo("ceil"),Uy=Ti(function(e,t){return e/t},1),Gy=mo("floor");function Wy(e){return e&&e.length?Si(e,Ue,eo):i}function By(e,t){return e&&e.length?Si(e,$(t,2),eo):i}function ky(e){return Ea(e,Ue)}function Vy(e,t){return Ea(e,$(t,2))}function zy(e){return e&&e.length?Si(e,Ue,io):i}function Xy(e,t){return e&&e.length?Si(e,$(t,2),io):i}var Yy=Ti(function(e,t){return e*t},1),Ky=mo("round"),Zy=Ti(function(e,t){return e-t},0);function Jy(e){return e&&e.length?Gs(e,Ue):0}function Qy(e,t){return e&&e.length?Gs(e,$(t,2)):0}return h.after=w0,h.ary=kl,h.assign=a1,h.assignIn=sc,h.assignInWith=Wi,h.assignWith=l1,h.at=c1,h.before=Vl,h.bind=Ro,h.bindAll=gy,h.bindKey=zl,h.castArray=D0,h.chain=Gl,h.chunk=Gv,h.compact=Wv,h.concat=Bv,h.cond=my,h.conforms=vy,h.constant=qo,h.countBy=J_,h.create=f1,h.curry=Xl,h.curryRight=Yl,h.debounce=Kl,h.defaults=h1,h.defaultsDeep=p1,h.defer=b0,h.delay=S0,h.difference=kv,h.differenceBy=Vv,h.differenceWith=zv,h.drop=Xv,h.dropRight=Yv,h.dropRightWhile=Kv,h.dropWhile=Zv,h.fill=Jv,h.filter=e0,h.flatMap=n0,h.flatMapDeep=i0,h.flatMapDepth=s0,h.flatten=Ml,h.flattenDeep=Qv,h.flattenDepth=e_,h.flip=C0,h.flow=yy,h.flowRight=Ey,h.fromPairs=t_,h.functions=E1,h.functionsIn=w1,h.groupBy=o0,h.initial=n_,h.intersection=i_,h.intersectionBy=s_,h.intersectionWith=o_,h.invert=S1,h.invertBy=C1,h.invokeMap=a0,h.iteratee=$o,h.keyBy=l0,h.keys=ye,h.keysIn=He,h.map=Fi,h.mapKeys=O1,h.mapValues=A1,h.matches=wy,h.matchesProperty=by,h.memoize=ji,h.merge=R1,h.mergeWith=oc,h.method=Sy,h.methodOf=Cy,h.mixin=Fo,h.negate=Hi,h.nthArg=Oy,h.omit=I1,h.omitBy=T1,h.once=x0,h.orderBy=c0,h.over=Ay,h.overArgs=O0,h.overEvery=Ry,h.overSome=Iy,h.partial=Io,h.partialRight=Zl,h.partition=f0,h.pick=P1,h.pickBy=uc,h.property=dc,h.propertyOf=Ty,h.pull=c_,h.pullAll=Hl,h.pullAllBy=f_,h.pullAllWith=h_,h.pullAt=p_,h.range=Py,h.rangeRight=Ly,h.rearg=A0,h.reject=d0,h.remove=d_,h.rest=R0,h.reverse=Oo,h.sampleSize=m0,h.set=D1,h.setWith=N1,h.shuffle=v0,h.slice=g_,h.sortBy=E0,h.sortedUniq=b_,h.sortedUniqBy=S_,h.split=ny,h.spread=I0,h.tail=C_,h.take=x_,h.takeRight=O_,h.takeRightWhile=A_,h.takeWhile=R_,h.tap=W_,h.throttle=T0,h.thru=$i,h.toArray=rc,h.toPairs=ac,h.toPairsIn=lc,h.toPath=Fy,h.toPlainObject=ic,h.transform=q1,h.unary=P0,h.union=I_,h.unionBy=T_,h.unionWith=P_,h.uniq=L_,h.uniqBy=D_,h.uniqWith=N_,h.unset=$1,h.unzip=Ao,h.unzipWith=Ul,h.update=F1,h.updateWith=M1,h.values=Ur,h.valuesIn=j1,h.without=q_,h.words=hc,h.wrap=L0,h.xor=$_,h.xorBy=F_,h.xorWith=M_,h.zip=j_,h.zipObject=H_,h.zipObjectDeep=U_,h.zipWith=G_,h.entries=ac,h.entriesIn=lc,h.extend=sc,h.extendWith=Wi,Fo(h,h),h.add=jy,h.attempt=pc,h.camelCase=W1,h.capitalize=cc,h.ceil=Hy,h.clamp=H1,h.clone=N0,h.cloneDeep=$0,h.cloneDeepWith=F0,h.cloneWith=q0,h.conformsTo=M0,h.deburr=fc,h.defaultTo=_y,h.divide=Uy,h.endsWith=B1,h.eq=dt,h.escape=k1,h.escapeRegExp=V1,h.every=Q_,h.find=t0,h.findIndex=$l,h.findKey=d1,h.findLast=r0,h.findLastIndex=Fl,h.findLastKey=g1,h.floor=Gy,h.forEach=Wl,h.forEachRight=Bl,h.forIn=m1,h.forInRight=v1,h.forOwn=_1,h.forOwnRight=y1,h.get=Lo,h.gt=j0,h.gte=H0,h.has=b1,h.hasIn=Do,h.head=jl,h.identity=Ue,h.includes=u0,h.indexOf=r_,h.inRange=U1,h.invoke=x1,h.isArguments=hr,h.isArray=H,h.isArrayBuffer=U0,h.isArrayLike=je,h.isArrayLikeObject=ce,h.isBoolean=G0,h.isBuffer=er,h.isDate=W0,h.isElement=B0,h.isEmpty=k0,h.isEqual=V0,h.isEqualWith=z0,h.isError=To,h.isFinite=X0,h.isFunction=Ft,h.isInteger=Jl,h.isLength=Ui,h.isMap=Ql,h.isMatch=Y0,h.isMatchWith=K0,h.isNaN=Z0,h.isNative=J0,h.isNil=e1,h.isNull=Q0,h.isNumber=ec,h.isObject=ae,h.isObjectLike=le,h.isPlainObject=xn,h.isRegExp=Po,h.isSafeInteger=t1,h.isSet=tc,h.isString=Gi,h.isSymbol=ze,h.isTypedArray=Hr,h.isUndefined=r1,h.isWeakMap=n1,h.isWeakSet=i1,h.join=u_,h.kebabCase=z1,h.last=it,h.lastIndexOf=a_,h.lowerCase=X1,h.lowerFirst=Y1,h.lt=s1,h.lte=o1,h.max=Wy,h.maxBy=By,h.mean=ky,h.meanBy=Vy,h.min=zy,h.minBy=Xy,h.stubArray=jo,h.stubFalse=Ho,h.stubObject=Dy,h.stubString=Ny,h.stubTrue=qy,h.multiply=Yy,h.nth=l_,h.noConflict=xy,h.noop=Mo,h.now=Mi,h.pad=K1,h.padEnd=Z1,h.padStart=J1,h.parseInt=Q1,h.random=G1,h.reduce=h0,h.reduceRight=p0,h.repeat=ey,h.replace=ty,h.result=L1,h.round=Ky,h.runInContext=E,h.sample=g0,h.size=_0,h.snakeCase=ry,h.some=y0,h.sortedIndex=m_,h.sortedIndexBy=v_,h.sortedIndexOf=__,h.sortedLastIndex=y_,h.sortedLastIndexBy=E_,h.sortedLastIndexOf=w_,h.startCase=iy,h.startsWith=sy,h.subtract=Zy,h.sum=Jy,h.sumBy=Qy,h.template=oy,h.times=$y,h.toFinite=Mt,h.toInteger=G,h.toLength=nc,h.toLower=uy,h.toNumber=st,h.toSafeInteger=u1,h.toString=Q,h.toUpper=ay,h.trim=ly,h.trimEnd=cy,h.trimStart=fy,h.truncate=hy,h.unescape=py,h.uniqueId=My,h.upperCase=dy,h.upperFirst=No,h.each=Wl,h.eachRight=Bl,h.first=jl,Fo(h,function(){var e={};return _t(h,function(t,s){ee.call(h.prototype,s)||(e[s]=t)}),e}(),{chain:!1}),h.VERSION=r,Qe(["bind","bindKey","curry","curryRight","partial","partialRight"],function(e){h[e].placeholder=h}),Qe(["drop","take"],function(e,t){z.prototype[e]=function(s){s=s===i?1:me(G(s),0);var l=this.__filtered__&&!t?new z(this):this.clone();return l.__filtered__?l.__takeCount__=Oe(s,l.__takeCount__):l.__views__.push({size:Oe(s,vt),type:e+(l.__dir__<0?"Right":"")}),l},z.prototype[e+"Right"]=function(s){return this.reverse()[e](s).reverse()}}),Qe(["filter","map","takeWhile"],function(e,t){var s=t+1,l=s==Mu||s==cd;z.prototype[e]=function(f){var p=this.clone();return p.__iteratees__.push({iteratee:$(f,3),type:s}),p.__filtered__=p.__filtered__||l,p}}),Qe(["head","last"],function(e,t){var s="take"+(t?"Right":"");z.prototype[e]=function(){return this[s](1).value()[0]}}),Qe(["initial","tail"],function(e,t){var s="drop"+(t?"":"Right");z.prototype[e]=function(){return this.__filtered__?new z(this):this[s](1)}}),z.prototype.compact=function(){return this.filter(Ue)},z.prototype.find=function(e){return this.filter(e).head()},z.prototype.findLast=function(e){return this.reverse().find(e)},z.prototype.invokeMap=k(function(e,t){return typeof e=="function"?new z(this):this.map(function(s){return yn(s,e,t)})}),z.prototype.reject=function(e){return this.filter(Hi($(e)))},z.prototype.slice=function(e,t){e=G(e);var s=this;return s.__filtered__&&(e>0||t<0)?new z(s):(e<0?s=s.takeRight(-e):e&&(s=s.drop(e)),t!==i&&(t=G(t),s=t<0?s.dropRight(-t):s.take(t-e)),s)},z.prototype.takeRightWhile=function(e){return this.reverse().takeWhile(e).reverse()},z.prototype.toArray=function(){return this.take(vt)},_t(z.prototype,function(e,t){var s=/^(?:filter|find|map|reject)|While$/.test(t),l=/^(?:head|last)$/.test(t),f=h[l?"take"+(t=="last"?"Right":""):t],p=l||/^find/.test(t);!f||(h.prototype[t]=function(){var g=this.__wrapped__,y=l?[1]:arguments,w=g instanceof z,x=y[0],O=w||H(g),A=function(V){var X=f.apply(h,Vt([V],y));return l&&T?X[0]:X};O&&s&&typeof x=="function"&&x.length!=1&&(w=O=!1);var T=this.__chain__,q=!!this.__actions__.length,F=p&&!T,W=w&&!q;if(!p&&O){g=W?g:new z(this);var M=e.apply(g,y);return M.__actions__.push({func:$i,args:[A],thisArg:i}),new tt(M,T)}return F&&W?e.apply(this,y):(M=this.thru(A),F?l?M.value()[0]:M.value():M)})}),Qe(["pop","push","shift","sort","splice","unshift"],function(e){var t=ai[e],s=/^(?:push|sort|unshift)$/.test(e)?"tap":"thru",l=/^(?:pop|shift)$/.test(e);h.prototype[e]=function(){var f=arguments;if(l&&!this.__chain__){var p=this.value();return t.apply(H(p)?p:[],f)}return this[s](function(g){return t.apply(H(g)?g:[],f)})}}),_t(z.prototype,function(e,t){var s=h[t];if(s){var l=s.name+"";ee.call(qr,l)||(qr[l]=[]),qr[l].push({name:t,func:s})}}),qr[Ii(i,oe).name]=[{name:"wrapper",func:i}],z.prototype.clone=pm,z.prototype.reverse=dm,z.prototype.value=gm,h.prototype.at=B_,h.prototype.chain=k_,h.prototype.commit=V_,h.prototype.next=z_,h.prototype.plant=Y_,h.prototype.reverse=K_,h.prototype.toJSON=h.prototype.valueOf=h.prototype.value=Z_,h.prototype.first=h.prototype.head,hn&&(h.prototype[hn]=X_),h},Xt=Vg();typeof define=="function"&&typeof define.amd=="object"&&define.amd?(_e._=Xt,define(function(){return Xt})):ir?((ir.exports=Xt)._=Xt,qs._=Xt):_e._=Xt}).call(kr)});var os=I(Gt=>{"use strict";var Oh=Gt&&Gt.__importDefault||function(i){return i&&i.__esModule?i:{default:i}};Object.defineProperty(Gt,"__esModule",{value:!0});Gt.getHistoryFile=Gt.getHomeDir=void 0;var pb=Oh(require("path")),Ah=Oh(Te()),ss=Ah.default.fse,db=Ah.default.getRootHome;function iu(){var i=db();return ss.existsSync(i)||ss.mkdirSync(i),i}Gt.getHomeDir=iu;function Rh(){var i=pb.default.join(iu(),"history");return ss.existsSync(i)||ss.createFileSync(i),i}Gt.getHistoryFile=Rh;Gt.default={getHomeDir:iu,getHistoryFile:Rh}});var uu=I($e=>{"use strict";var gb=$e&&$e.__awaiter||function(i,r,n,o){function a(u){return u instanceof n?u:new n(function(d){d(u)})}return new(n||(n=Promise))(function(u,d){function m(v){try{c(o.next(v))}catch(S){d(S)}}function _(v){try{c(o.throw(v))}catch(S){d(S)}}function c(v){v.done?u(v.value):a(v.value).then(m,_)}c((o=o.apply(i,r||[])).next())})},mb=$e&&$e.__generator||function(i,r){var n={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]},o,a,u,d;return d={next:m(0),throw:m(1),return:m(2)},typeof Symbol=="function"&&(d[Symbol.iterator]=function(){return this}),d;function m(c){return function(v){return _([c,v])}}function _(c){if(o)throw new TypeError("Generator is already executing.");for(;n;)try{if(o=1,a&&(u=c[0]&2?a.return:c[0]?a.throw||((u=a.return)&&u.call(a),0):a.next)&&!(u=u.call(a,c[1])).done)return u;switch(a=0,u&&(c=[c[0]&2,u.value]),c[0]){case 0:case 1:u=c;break;case 4:return n.label++,{value:c[1],done:!1};case 5:n.label++,a=c[1],c=[0];continue;case 7:c=n.ops.pop(),n.trys.pop();continue;default:if(u=n.trys,!(u=u.length>0&&u[u.length-1])&&(c[0]===6||c[0]===2)){n=0;continue}if(c[0]===3&&(!u||c[1]>u[0]&&c[1]<u[3])){n.label=c[1];break}if(c[0]===6&&n.label<u[1]){n.label=u[1],u=c;break}if(u&&n.label<u[2]){n.label=u[2],n.ops.push(c);break}u[2]&&n.ops.pop(),n.trys.pop();continue}c=r.call(i,n)}catch(v){c=[6,v],a=0}finally{o=u=0}if(c[0]&5)throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}},su=$e&&$e.__importDefault||function(i){return i&&i.__esModule?i:{default:i}};Object.defineProperty($e,"__esModule",{value:!0});$e.handlerProfileFile=$e.getConfig=$e.setConfig=void 0;var Ih=su(require("path")),vb=su(os()),ou=su(Te()),wt=ou.default.fse,us=ou.default.jsyaml,Th=ou.default.getRootHome;function _b(i){var r=Lh();wt.writeFileSync(r,us.dump(i))}function Ph(){var i=Lh();if(!wt.existsSync(i))return{};try{var r=us.load(wt.readFileSync(i,"utf8"))||{};return r}catch(n){throw n}}function Lh(){var i=Ih.default.join(vb.default.getHomeDir(),"set-config.yml");return wt.existsSync(i)||wt.createFileSync(i),i}function Dh(i,r){var n=Ph();n[i]=r,_b(n)}$e.setConfig=Dh;function Nh(i,r){var n=Ph();return n[i]||r}$e.getConfig=Nh;function qh(i){return gb(this,void 0,void 0,function(){var r,n,o,a,u,d,m;return mb(this,function(_){switch(_.label){case 0:if(r=i.filePath||"set-config.yml",n=Ih.default.join(Th(),r),o=wt.existsSync(n),a={},o)return[3,5];u=Th(),_.label=1;case 1:return _.trys.push([1,2,,4]),wt.statSync(u),[3,4];case 2:return d=_.sent(),[4,wt.mkdirSync(u)];case 3:return _.sent(),[3,4];case 4:return[3,6];case 5:try{a=us.load(wt.readFileSync(n,"utf8"))||{}}catch(c){throw c}_.label=6;case 6:return i.read?[2,a]:(m=i.configKey||"",a[m]=i.data,[4,wt.writeFileSync(n,us.dump(a))]);case 7:return _.sent(),[2,a]}})})}$e.handlerProfileFile=qh;$e.default={setConfig:Dh,getConfig:Nh,handlerProfileFile:qh}});var wr=I(Vr=>{"use strict";var yb=Vr&&Vr.__importDefault||function(i){return i&&i.__esModule?i:{default:i}};Object.defineProperty(Vr,"__esModule",{value:!0});Vr.ServerlessError=void 0;var Eb=yb(Te()),wb=Eb.default.Logger,bb=new wb("S-CLI-ERROR"),Sb=function(){function i(r,n,o){bb.error(r+": "+n,o),process.exit(1)}return i}();Vr.ServerlessError=Sb});var $h=I(zr=>{"use strict";var Cb=zr&&zr.__extends||function(){var i=function(r,n){return i=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(o,a){o.__proto__=a}||function(o,a){for(var u in a)Object.prototype.hasOwnProperty.call(a,u)&&(o[u]=a[u])},i(r,n)};return function(r,n){if(typeof n!="function"&&n!==null)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");i(r,n);function o(){this.constructor=r}r.prototype=n===null?Object.create(n):(o.prototype=n.prototype,new o)}}();Object.defineProperty(zr,"__esModule",{value:!0});zr.CommandError=void 0;var xb=wr(),Ob=function(i){Cb(r,i);function r(n,o){return i.call(this,"Error",n,o)||this}return r}(xb.ServerlessError);zr.CommandError=Ob});var Fh=I(Xr=>{"use strict";var Ab=Xr&&Xr.__extends||function(){var i=function(r,n){return i=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(o,a){o.__proto__=a}||function(o,a){for(var u in a)Object.prototype.hasOwnProperty.call(a,u)&&(o[u]=a[u])},i(r,n)};return function(r,n){if(typeof n!="function"&&n!==null)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");i(r,n);function o(){this.constructor=r}r.prototype=n===null?Object.create(n):(o.prototype=n.prototype,new o)}}();Object.defineProperty(Xr,"__esModule",{value:!0});Xr.ConfigDeleteError=void 0;var Rb=wr(),Ib=function(i){Ab(r,i);function r(n,o){return i.call(this,"Deletion failed",n,o)||this}return r}(Rb.ServerlessError);Xr.ConfigDeleteError=Ib});var Mh=I(Yr=>{"use strict";var Tb=Yr&&Yr.__extends||function(){var i=function(r,n){return i=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(o,a){o.__proto__=a}||function(o,a){for(var u in a)Object.prototype.hasOwnProperty.call(a,u)&&(o[u]=a[u])},i(r,n)};return function(r,n){if(typeof n!="function"&&n!==null)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");i(r,n);function o(){this.constructor=r}r.prototype=n===null?Object.create(n):(o.prototype=n.prototype,new o)}}();Object.defineProperty(Yr,"__esModule",{value:!0});Yr.ConfigError=void 0;var Pb=wr(),Lb=function(i){Tb(r,i);function r(n,o){return i.call(this,"Config failed",n,o)||this}return r}(Pb.ServerlessError);Yr.ConfigError=Lb});var jh=I(Kr=>{"use strict";var Db=Kr&&Kr.__extends||function(){var i=function(r,n){return i=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(o,a){o.__proto__=a}||function(o,a){for(var u in a)Object.prototype.hasOwnProperty.call(a,u)&&(o[u]=a[u])},i(r,n)};return function(r,n){if(typeof n!="function"&&n!==null)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");i(r,n);function o(){this.constructor=r}r.prototype=n===null?Object.create(n):(o.prototype=n.prototype,new o)}}();Object.defineProperty(Kr,"__esModule",{value:!0});Kr.ConfigGetError=void 0;var Nb=wr(),qb=function(i){Db(r,i);function r(n,o){return i.call(this,"Get failed",n,o)||this}return r}(Nb.ServerlessError);Kr.ConfigGetError=qb});var Hh=I(Zr=>{"use strict";var $b=Zr&&Zr.__extends||function(){var i=function(r,n){return i=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(o,a){o.__proto__=a}||function(o,a){for(var u in a)Object.prototype.hasOwnProperty.call(a,u)&&(o[u]=a[u])},i(r,n)};return function(r,n){if(typeof n!="function"&&n!==null)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");i(r,n);function o(){this.constructor=r}r.prototype=n===null?Object.create(n):(o.prototype=n.prototype,new o)}}();Object.defineProperty(Zr,"__esModule",{value:!0});Zr.InitError=void 0;var Fb=wr(),Mb=function(i){$b(r,i);function r(n,o){return i.call(this,"Initialization failed",n,o)||this}return r}(Fb.ServerlessError);Zr.InitError=Mb});var Gh=I(bt=>{"use strict";var jb=bt&&bt.__awaiter||function(i,r,n,o){function a(u){return u instanceof n?u:new n(function(d){d(u)})}return new(n||(n=Promise))(function(u,d){function m(v){try{c(o.next(v))}catch(S){d(S)}}function _(v){try{c(o.throw(v))}catch(S){d(S)}}function c(v){v.done?u(v.value):a(v.value).then(m,_)}c((o=o.apply(i,r||[])).next())})},Hb=bt&&bt.__generator||function(i,r){var n={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]},o,a,u,d;return d={next:m(0),throw:m(1),return:m(2)},typeof Symbol=="function"&&(d[Symbol.iterator]=function(){return this}),d;function m(c){return function(v){return _([c,v])}}function _(c){if(o)throw new TypeError("Generator is already executing.");for(;n;)try{if(o=1,a&&(u=c[0]&2?a.return:c[0]?a.throw||((u=a.return)&&u.call(a),0):a.next)&&!(u=u.call(a,c[1])).done)return u;switch(a=0,u&&(c=[c[0]&2,u.value]),c[0]){case 0:case 1:u=c;break;case 4:return n.label++,{value:c[1],done:!1};case 5:n.label++,a=c[1],c=[0];continue;case 7:c=n.ops.pop(),n.trys.pop();continue;default:if(u=n.trys,!(u=u.length>0&&u[u.length-1])&&(c[0]===6||c[0]===2)){n=0;continue}if(c[0]===3&&(!u||c[1]>u[0]&&c[1]<u[3])){n.label=c[1];break}if(c[0]===6&&n.label<u[1]){n.label=u[1],u=c;break}if(u&&n.label<u[2]){n.label=u[2],n.ops.push(c);break}u[2]&&n.ops.pop(),n.trys.pop();continue}c=r.call(i,n)}catch(v){c=[6,v],a=0}finally{o=u=0}if(c[0]&5)throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}},Ub=bt&&bt.__importDefault||function(i){return i&&i.__esModule?i:{default:i}};Object.defineProperty(bt,"__esModule",{value:!0});bt.HumanError=void 0;var Uh=Ub(Te()),Gb=br(),Wb=Uh.default.colors,Bb=function(){function i(r){var n=r.errorMessage,o=r.tips;this.errorMessage=n,console.log(`
35
+ `+(0,Gb.bgRed)("ERROR:")),console.log("TypeError: "+n+`
36
+ `),console.log(Wb.gray(o)+`
37
+ `)}return i.prototype.report=function(r){return jb(this,void 0,void 0,function(){var n;return Hb(this,function(o){switch(o.label){case 0:return n=r.error,[4,Uh.default.report({type:"jsError",content:this.errorMessage+"||"+n.stack})];case 1:return o.sent(),[2]}})})},i}();bt.HumanError=Bb});var Bh=I(Jr=>{"use strict";var kb=Jr&&Jr.__importDefault||function(i){return i&&i.__esModule?i:{default:i}};Object.defineProperty(Jr,"__esModule",{value:!0});Jr.HumanWarning=void 0;var Vb=kb(Te()),Wh=Vb.default.colors,zb=function(){function i(r){var n=r.warningMessage,o=r.tips;console.log(`
38
+ `+Wh.hex("#000").bgYellow("WARNING:")),console.log(n+`
39
+ `),o&&console.log(Wh.gray(o)+`
40
+ `)}return i}();Jr.HumanWarning=zb});var Qr=I(ie=>{"use strict";var Xb=ie&&ie.__awaiter||function(i,r,n,o){function a(u){return u instanceof n?u:new n(function(d){d(u)})}return new(n||(n=Promise))(function(u,d){function m(v){try{c(o.next(v))}catch(S){d(S)}}function _(v){try{c(o.throw(v))}catch(S){d(S)}}function c(v){v.done?u(v.value):a(v.value).then(m,_)}c((o=o.apply(i,r||[])).next())})},Yb=ie&&ie.__generator||function(i,r){var n={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]},o,a,u,d;return d={next:m(0),throw:m(1),return:m(2)},typeof Symbol=="function"&&(d[Symbol.iterator]=function(){return this}),d;function m(c){return function(v){return _([c,v])}}function _(c){if(o)throw new TypeError("Generator is already executing.");for(;n;)try{if(o=1,a&&(u=c[0]&2?a.return:c[0]?a.throw||((u=a.return)&&u.call(a),0):a.next)&&!(u=u.call(a,c[1])).done)return u;switch(a=0,u&&(c=[c[0]&2,u.value]),c[0]){case 0:case 1:u=c;break;case 4:return n.label++,{value:c[1],done:!1};case 5:n.label++,a=c[1],c=[0];continue;case 7:c=n.ops.pop(),n.trys.pop();continue;default:if(u=n.trys,!(u=u.length>0&&u[u.length-1])&&(c[0]===6||c[0]===2)){n=0;continue}if(c[0]===3&&(!u||c[1]>u[0]&&c[1]<u[3])){n.label=c[1];break}if(c[0]===6&&n.label<u[1]){n.label=u[1],u=c;break}if(u&&n.label<u[2]){n.label=u[2],n.ops.push(c);break}u[2]&&n.ops.pop(),n.trys.pop();continue}c=r.call(i,n)}catch(v){c=[6,v],a=0}finally{o=u=0}if(c[0]&5)throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}},Kb=ie&&ie.__importDefault||function(i){return i&&i.__esModule?i:{default:i}};Object.defineProperty(ie,"__esModule",{value:!0});ie.HandleError=ie.HumanWarning=ie.HumanError=ie.ServerlessError=ie.InitError=ie.ConfigGetError=ie.ConfigError=ie.ConfigDeleteError=ie.CommandError=void 0;var au=br(),Zb=uu(),lu=Kb(Te()),Sr=lu.default.colors,Jb=lu.default.report,Qb=lu.default.getMAC,eS=$h();Object.defineProperty(ie,"CommandError",{enumerable:!0,get:function(){return eS.CommandError}});var tS=Fh();Object.defineProperty(ie,"ConfigDeleteError",{enumerable:!0,get:function(){return tS.ConfigDeleteError}});var rS=Mh();Object.defineProperty(ie,"ConfigError",{enumerable:!0,get:function(){return rS.ConfigError}});var nS=jh();Object.defineProperty(ie,"ConfigGetError",{enumerable:!0,get:function(){return nS.ConfigGetError}});var iS=Hh();Object.defineProperty(ie,"InitError",{enumerable:!0,get:function(){return iS.InitError}});var sS=wr();Object.defineProperty(ie,"ServerlessError",{enumerable:!0,get:function(){return sS.ServerlessError}});var oS=Gh();Object.defineProperty(ie,"HumanError",{enumerable:!0,get:function(){return oS.HumanError}});var uS=Bh();Object.defineProperty(ie,"HumanWarning",{enumerable:!0,get:function(){return uS.HumanWarning}});var aS=Qb().replace(/:/g,"");function cu(i,r){return""+Sr.gray(i)+Sr.gray.underline(r)}var lS=function(){function i(r){var n=r.error,o=r.prefix,a=o===void 0?"Message:":o;this.traceId=""+aS+Date.now(),console.log((0,au.red)("\u2716 "+a+`
41
+ `));var u=(0,Zb.getConfig)("analysis");u!=="disable"&&console.log(Sr.gray("TraceId: "+this.traceId)),console.log(Sr.gray("Environment: "+(0,au.getVersion)())),console.log(cu("Documents: ","https://www.serverless-devs.com")),console.log(cu("Discussions: ","https://github.com/Serverless-Devs/Serverless-Devs/discussions")),console.log(cu("Issues: ",`https://github.com/Serverless-Devs/Serverless-Devs/issues
42
+ `)),console.log((0,au.bgRed)("ERROR:")+`
43
+ `+n+`
44
+ `),u!=="disable"&&console.log(Sr.gray("Please copy traceId: "+this.traceId+" and join Dingding group: 33947367 for consultation.")),console.log(Sr.gray("You can run 's clean --cache' to prune Serverless devs.")),console.log(Sr.gray(`And run again with the '--debug' option or 's -h' to get more logs.
45
+ `))}return i.prototype.report=function(r){return Xb(this,void 0,void 0,function(){return Yb(this,function(n){return Jb({type:"jsError",content:r.message+"||"+r.stack,traceId:this.traceId}),[2]})})},i}();ie.HandleError=lS});var kh=I((Wx,cS)=>{cS.exports={name:"@serverless-devs/s",version:"2.0.93-alpha.3",description:"Serverless devs tool, serverless developer tool, supports Alibaba cloud, AWS, azure, baidu cloud, Huawei cloud, Google cloud and Tencent cloud.",homepage:"https://www.serverless-devs.com",keywords:["serverless","alibaba","tencent","azure","baidu","huawei","google","function","faas","serverless-devs"],publishConfig:{access:"public",registry:"https://registry.npmjs.org"},license:"MIT",repository:{type:"git",url:"https://github.com/Serverless-Devs/Serverless-Devs"},bugs:{url:"https://github.com/Serverless-Devs/Serverless-Devs/issues"},scripts:{prewatch:"rm -rf lib/* && cp -r ./src/daemon ./lib",watch:"tsc -w",test:"npx jest",prebuild:"rm -rf lib",build:"tsc && cp -r ./src/daemon ./lib",postbuild:"./shell/postbuild.sh","test:cov":"jest --coverage",lint:"npm run typecheck && f2elint scan -i src",fix:"f2elint fix",typecheck:"npx tsc -p tsconfig.json --noEmit",update:"rm -rf yarn.lock && rm -rf package-lock.json && rm -rf node_modules && yarn",beta:"npm publish --tag=beta"},main:"./lib/index.js",bin:{s:"bin/s"},devDependencies:{"@types/jest":"^27.0.1","@types/lodash":"^4.14.168","@types/node":"^14.0.23","@typescript-eslint/eslint-plugin":"^4.14.1","@typescript-eslint/parser":"^4.14.1","babel-eslint":"^10.1.0",boxen:"^5.0.0",commander:"^6.0.0",dotenv:"^10.0.0",esbuild:"^0.13.6",eslint:"^7.7.0","eslint-config-prettier":"^7.2.0","eslint-plugin-import":"^2.20.1","eslint-plugin-prettier":"^3.1.2",husky:"^4.2.3",inquirer:"^8.2.0","inquirer-autocomplete-prompt":"^1.3.0",jest:"^27.1.0","latest-version":"^5.1.0","lint-staged":"^10.0.8",lodash:"^4.17.20","os-locale":"5.0.0",prettier:"^2.2.1",semver:"^7.3.5","semver-diff":"^3.1.1","ts-jest":"^27.0.1","ts-node":"^9.1.1","tty-table":"^4.1.5",typescript:"^4.1.3"},"lint-staged":{"**/*.{js,jsx,ts}":"f2elint exec eslint"},jest:{coverageDirectory:"coverage",testEnvironment:"node",coverageProvider:"v8",preset:"ts-jest",testMatch:["**/test/**/*test.[jt]s"],setupFilesAfterEnv:["./jest.setup.ts"]},dependencies:{"@serverless-devs/core":"latest"}}});var br=I(U=>{"use strict";var fS=U&&U.__createBinding||(Object.create?function(i,r,n,o){o===void 0&&(o=n),Object.defineProperty(i,o,{enumerable:!0,get:function(){return r[n]}})}:function(i,r,n,o){o===void 0&&(o=n),i[o]=r[n]}),hS=U&&U.__setModuleDefault||(Object.create?function(i,r){Object.defineProperty(i,"default",{enumerable:!0,value:r})}:function(i,r){i.default=r}),pS=U&&U.__importStar||function(i){if(i&&i.__esModule)return i;var r={};if(i!=null)for(var n in i)n!=="default"&&Object.prototype.hasOwnProperty.call(i,n)&&fS(r,i,n);return hS(r,i),r},Vh=U&&U.__awaiter||function(i,r,n,o){function a(u){return u instanceof n?u:new n(function(d){d(u)})}return new(n||(n=Promise))(function(u,d){function m(v){try{c(o.next(v))}catch(S){d(S)}}function _(v){try{c(o.throw(v))}catch(S){d(S)}}function c(v){v.done?u(v.value):a(v.value).then(m,_)}c((o=o.apply(i,r||[])).next())})},zh=U&&U.__generator||function(i,r){var n={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]},o,a,u,d;return d={next:m(0),throw:m(1),return:m(2)},typeof Symbol=="function"&&(d[Symbol.iterator]=function(){return this}),d;function m(c){return function(v){return _([c,v])}}function _(c){if(o)throw new TypeError("Generator is already executing.");for(;n;)try{if(o=1,a&&(u=c[0]&2?a.return:c[0]?a.throw||((u=a.return)&&u.call(a),0):a.next)&&!(u=u.call(a,c[1])).done)return u;switch(a=0,u&&(c=[c[0]&2,u.value]),c[0]){case 0:case 1:u=c;break;case 4:return n.label++,{value:c[1],done:!1};case 5:n.label++,a=c[1],c=[0];continue;case 7:c=n.ops.pop(),n.trys.pop();continue;default:if(u=n.trys,!(u=u.length>0&&u[u.length-1])&&(c[0]===6||c[0]===2)){n=0;continue}if(c[0]===3&&(!u||c[1]>u[0]&&c[1]<u[3])){n.label=c[1];break}if(c[0]===6&&n.label<u[1]){n.label=u[1],u=c;break}if(u&&n.label<u[2]){n.label=u[2],n.ops.push(c);break}u[2]&&n.ops.pop(),n.trys.pop();continue}c=r.call(i,n)}catch(v){c=[6,v],a=0}finally{o=u=0}if(c[0]&5)throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}},as=U&&U.__importDefault||function(i){return i&&i.__esModule?i:{default:i}};Object.defineProperty(U,"__esModule",{value:!0});U.emoji=U.mark=U.replaceTemplate=U.getTemplatekey=U.replaceFun=U.getLang=U.printn=U.checkTemplateFile=U.checkAndReturnTemplateFile=U.yamlLoad=U.getFolderSize=U.getVersion=U.bgRed=U.red=void 0;var we=as(require("path")),Ke=as(require("fs")),fu=as(is()),dS=as(require("os")),gS=Qr(),ls=pS(Te()),hu=ls.default.colors,mS=ls.default.jsyaml,cs=kh();U.red=hu.hex("#fd5750");U.bgRed=hu.hex("#000").bgHex("#fd5750");function vS(){return(0,ls.getCoreVersion)()?cs.name+": "+cs.version+", @serverless-devs/core: "+(0,ls.getCoreVersion)()+", "+process.platform+"-"+process.arch+", node-"+process.version:cs.name+": "+cs.version+", "+process.platform+"-"+process.arch+", node-"+process.version}U.getVersion=vS;function _S(i){return Vh(this,void 0,void 0,function(){function r(a){return Vh(this,void 0,void 0,function(){var u,d;return zh(this,function(m){switch(m.label){case 0:return u=Ke.default.lstatSync(a),typeof u!="object"?[2]:(n.set(u.ino,u.size),u.isDirectory()?(d=Ke.default.readdirSync(a),typeof d!="object"?[2]:[4,Promise.all(d.map(function(_){return r(we.default.join(a,_))}))]):[3,2]);case 1:m.sent(),m.label=2;case 2:return[2]}})})}var n,o;return zh(this,function(a){switch(a.label){case 0:return n=new Map,[4,r(i)];case 1:return a.sent(),o=Array.from(n.values()).reduce(function(u,d){return u+d},0),[2,o]}})})}U.getFolderSize=_S;function Xh(i){var r=Ke.default.readFileSync(i,"utf8");try{return mS.load(r)}catch{var n=we.default.basename(i);new gS.HumanError({errorMessage:n+" format is incorrect",tips:"Please check the configuration of "+n+", Serverless Devs' Yaml specification document can refer to\uFF1A"+hu.underline("https://github.com/Serverless-Devs/Serverless-Devs/blob/master/docs/zh/yaml.md")}),process.exit(1)}}U.yamlLoad=Xh;function Un(i,r){r===void 0&&(r=!1);var n=Ke.default.readFileSync(i,"utf8"),o=r?JSON.parse(n):Xh(i);if(!o)return!1;for(var a in o)if(o[a].Component&&o[a].Provider&&o[a].Properties)return!0;return o.hasOwnProperty("edition")}function Yh(){if(process.env.serverless_devs_temp_template)return process.env.serverless_devs_temp_template;var i=process.cwd(),r=process.argv.includes("-t")?"-t":process.argv.includes("--template")?"--template":null,n=r?process.argv.indexOf(r):-1;if(n!==-1){var o=n+1,a=process.argv[o];if(a&&(a.endsWith(".yaml")||a.endsWith(".yml")||a.endsWith(".json"))){var u=!!a.endsWith(".json");if(Ke.default.existsSync(we.default.join(i,a))&&Un(we.default.join(i,a),u)){process.argv.splice(n,2);var d=JSON.parse(process.env.serverless_devs_temp_argv);return d.splice(d.indexOf(r),2),process.env.serverless_devs_temp_argv=JSON.stringify(d),process.env.serverless_devs_temp_template=we.default.join(i,a),we.default.join(i,a)}else if(Ke.default.existsSync(a)&&Un(a,u)){process.argv.splice(n,2);var d=JSON.parse(process.env.serverless_devs_temp_argv);return d.splice(d.indexOf(r),2),process.env.serverless_devs_temp_argv=JSON.stringify(d),process.env.serverless_devs_temp_template=a,a}}}return Ke.default.existsSync(we.default.join(i,"s.yaml"))&&Un(we.default.join(i,"s.yaml"))?(process.env.serverless_devs_temp_template=we.default.join(i,"s.yaml"),we.default.join(i,"s.yaml")):Ke.default.existsSync(we.default.join(i,"s.yml"))&&Un(we.default.join(i,"s.yml"))?(process.env.serverless_devs_temp_template=we.default.join(i,"s.yml"),we.default.join(i,"s.yml")):Ke.default.existsSync(we.default.join(i,"s.json"))&&Un(we.default.join(i,"s.json"),!0)?(process.env.serverless_devs_temp_template=we.default.join(i,"s.json"),we.default.join(i,"s.json")):null}U.checkAndReturnTemplateFile=Yh;function Kh(i){return Ke.default.existsSync(i)?i:null}U.checkTemplateFile=Kh;function Zh(i,r){r===void 0&&(r=" ");for(var n="",o=0;o<i;o++)n=n+r;return n}U.printn=Zh;function Jh(){return"en"}U.getLang=Jh;function pu(i,r){var n=/\{\{(.*?)\}\}/g,o=i.match(n);if(o)for(var a=0;a<o.length;a++){var u=o[a].replace(/{{|}}/g,""),d=fu.default.trim(u.split("|")[0]);r[d]&&(i=i.replace(o[a],r[d]))}return i}U.replaceFun=pu;function Qh(i){var r=/\{\{(.*?)\}\}/g,n=i.match(r);return n?n.filter(function(o){return o}).map(function(o){var a=o.replace(/{{|}}/g,""),u=a.split("|");return{name:fu.default.trim(u[0]),desc:fu.default.trim(u[1])}}):[]}U.getTemplatekey=Qh;function ep(i,r){i.forEach(function(n){if(Ke.default.existsSync(n)){var o=Ke.default.readFileSync(n,"utf-8"),a=pu(o,r);Ke.default.writeFileSync(n,a,"utf-8")}})}U.replaceTemplate=ep;function tp(i){if(!i)return i;var r=i.slice(-4);return"***********"+r}U.mark=tp;function yS(i){return dS.default.platform()==="win32"?"":i}U.emoji=yS;U.default={checkAndReturnTemplateFile:Yh,checkTemplateFile:Kh,printn:Zh,mark:tp,getLang:Jh,replaceTemplate:ep,replaceFun:pu,getTemplatekey:Qh}});var op=I(Ze=>{"use strict";var ES=Ze&&Ze.__importDefault||function(i){return i&&i.__esModule?i:{default:i}};Object.defineProperty(Ze,"__esModule",{value:!0});Ze.extractTemplateInfo=Ze.isUrlFormat=Ze.getProjectNameFromUrl=Ze.parse=void 0;var wS=ES(require("url"));function rp(i){return wS.default.parse(i)}Ze.parse=rp;function np(i){var r=i.lastIndexOf("/");return r&&r>=0&&(i=i.substr(r+1)),i.endsWith(".git")?i.substr(0,i.length-4):i}Ze.getProjectNameFromUrl=np;function ip(i){return i.includes(":")||i.includes("/")}Ze.isUrlFormat=ip;function sp(i){var r=i.pathname||"",n=r.split("/"),o=n[1],a=n[3];return{host:i.host,ownerName:o,repoName:a,branch:"",hasSubPath:!1,subPath:"",zipFile:""}}Ze.extractTemplateInfo=sp;Ze.default={extractTemplateInfo:sp,getProjectNameFromUrl:np,isUrlFormat:ip,parse:rp}});var fs=I(Fe=>{"use strict";Object.defineProperty(Fe,"__esModule",{value:!0});Fe.getServiceList=Fe.getServiceActions=Fe.getServiceInputs=Fe.getServiceConfigDetail=Fe.getServiceConfig=Fe.getSubcommand=void 0;function up(i){var r=i.edition||"0.0.1";if(r==="0.0.1")return Object.keys(i).filter(function(o){return o!=="Global"});var n=i.services||{};return Object.keys(n)}Fe.getSubcommand=up;function ap(i,r){var n=i.edition||"0.0.1";if(n==="0.0.1")return i[r];var o=i.services||{},a=o[r],u=a.provider?a.provider:i.provider,d=a.access?a.access:i.access,m=Object.assign({},a,{access:d,provider:u});return m}Fe.getServiceConfig=ap;function lp(i){var r=i.Component||i.component,n=i.Provider||i.provider,o=i.Access||i.access||"default",a=i.autoCredential;return{name:r,provider:n,access:o,autoCredential:a}}Fe.getServiceConfigDetail=lp;function cp(i,r,n){if(r==="0.0.1"){var o=i.Properties,a=i.Params,u=i.Provider,d=i.Access,m=i.Component,_=i.ProjectName,c=n.credentials,v=n.method,S={Properties:o,Credentials:c,Project:{ProjectName:_,Component:m,Provider:u,AccessAlias:d||""},Command:v,Args:a||"",Path:{ConfigPath:process.env.templateFile||""}};return S}var R=i.props,P=i.params,Z=i.provider,oe=i.access,be=i.component,Y=i.ProjectName,lt=i.appName,ve=n.credentials,pe=n.method,xe={props:R,Properties:R,Credentials:ve,credentials:ve,appName:lt,Project:{ProjectName:Y,projectName:Y,component:be,Component:be,provider:Z,Provider:Z,accessAlias:oe||"",AccessAlias:oe||""},project:{component:be,access:oe||"",projectName:Y},command:pe,Command:pe,args:P||"",Args:P||"",argsObj:process.temp_params||[],ArgsObj:process.temp_params||[],path:{configPath:process.env.templateFile||""},Path:{ConfigPath:process.env.templateFile||""}};return xe}Fe.getServiceInputs=cp;function fp(i,r,n){var o=n.method;if(r==="0.0.1"){var a=i.Extends,u=a===void 0?{}:a,d=u[o];return d}var m=i.actions,_=m===void 0?{}:m,c=[];return Object.keys(_).forEach(function(v){var S=v.split("-"),R=_[v];if(S.length>1){var P=S[1];if(P===o){var Z=S[0];R.forEach(function(oe){var be={Hook:oe.run,Path:oe.path,Pre:Z==="pre"};c.push(be)})}}else v===o&&R.forEach(function(oe){var be={Hook:oe.run,Path:oe.path,Pre:!1};c.push(be)})}),c}Fe.getServiceActions=fp;function hp(i){var r=i.edition||"0.0.1";return r==="0.0.1"?i:i.services}Fe.getServiceList=hp;Fe.default={getSubcommand:up,getServiceConfig:ap,getServiceConfigDetail:lp,getServiceInputs:cp,getServiceActions:fp,getServiceList:hp}});var yp=I(Pe=>{"use strict";var bS=Pe&&Pe.__createBinding||(Object.create?function(i,r,n,o){o===void 0&&(o=n),Object.defineProperty(i,o,{enumerable:!0,get:function(){return r[n]}})}:function(i,r,n,o){o===void 0&&(o=n),i[o]=r[n]}),SS=Pe&&Pe.__setModuleDefault||(Object.create?function(i,r){Object.defineProperty(i,"default",{enumerable:!0,value:r})}:function(i,r){i.default=r}),pp=Pe&&Pe.__importStar||function(i){if(i&&i.__esModule)return i;var r={};if(i!=null)for(var n in i)n!=="default"&&Object.prototype.hasOwnProperty.call(i,n)&&bS(r,i,n);return SS(r,i),r},dp=Pe&&Pe.__awaiter||function(i,r,n,o){function a(u){return u instanceof n?u:new n(function(d){d(u)})}return new(n||(n=Promise))(function(u,d){function m(v){try{c(o.next(v))}catch(S){d(S)}}function _(v){try{c(o.throw(v))}catch(S){d(S)}}function c(v){v.done?u(v.value):a(v.value).then(m,_)}c((o=o.apply(i,r||[])).next())})},gp=Pe&&Pe.__generator||function(i,r){var n={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]},o,a,u,d;return d={next:m(0),throw:m(1),return:m(2)},typeof Symbol=="function"&&(d[Symbol.iterator]=function(){return this}),d;function m(c){return function(v){return _([c,v])}}function _(c){if(o)throw new TypeError("Generator is already executing.");for(;n;)try{if(o=1,a&&(u=c[0]&2?a.return:c[0]?a.throw||((u=a.return)&&u.call(a),0):a.next)&&!(u=u.call(a,c[1])).done)return u;switch(a=0,u&&(c=[c[0]&2,u.value]),c[0]){case 0:case 1:u=c;break;case 4:return n.label++,{value:c[1],done:!1};case 5:n.label++,a=c[1],c=[0];continue;case 7:c=n.ops.pop(),n.trys.pop();continue;default:if(u=n.trys,!(u=u.length>0&&u[u.length-1])&&(c[0]===6||c[0]===2)){n=0;continue}if(c[0]===3&&(!u||c[1]>u[0]&&c[1]<u[3])){n.label=c[1];break}if(c[0]===6&&n.label<u[1]){n.label=u[1],u=c;break}if(u&&n.label<u[2]){n.label=u[2],n.ops.push(c);break}u[2]&&n.ops.pop(),n.trys.pop();continue}c=r.call(i,n)}catch(v){c=[6,v],a=0}finally{o=u=0}if(c[0]&5)throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}},CS=Pe&&Pe.__importDefault||function(i){return i&&i.__esModule?i:{default:i}};Object.defineProperty(Pe,"__esModule",{value:!0});Pe.Parse=void 0;var du=pp(require("fs")),mp=pp(require("path")),xS=fs(),OS=Qr(),vp=is(),AS=CS(Te()),RS=AS.default.jsyaml,IS=is(),_p=new RegExp(/\$\{(.*)\}/,"i"),TS=new RegExp(/(.*)\((.*)\)/,"i"),PS=["[object Number]","[object Boolean]"],LS=function(){function i(r){if(this.path=r,this.parsedObj={},this.dependenciesMap={},this.globalJsonKeyMap={},this.globalKeyArr=[],this.magicVariablesArray=[],du.existsSync(r))try{this.init(r)}catch(n){throw new Error(n.message)}}return i.prototype.getFileObj=function(r){var n={};try{var o=mp.extname(r);(o.indexOf(".yaml")!==-1||o.indexOf(".yml")!==-1)&&(n=RS.load(du.readFileSync(r,"utf8"))),o.indexOf(".json")!==-1&&(n=JSON.parse(du.readFileSync(r).toString()))}catch(a){new OS.HandleError({error:a}).report(a).then(function(){return process.exit(1)})}return n},i.prototype.init=function(r){return dp(this,void 0,void 0,function(){return gp(this,function(n){return this.parsedObj=this.getFileObj(r),[2]})})},i.prototype.getOriginalParsedObj=function(){return this.parsedObj},i.prototype.findVariableValue=function(r){var n=r.variableName,o=r.type,a=r.funName,u=r.funVariable,d="";return o==="Literal"?this.globalJsonKeyMap[n]||this.globalJsonKeyMap["services."+n]||"${"+n+"}":o==="Fun"&&(a==="Env"||a==="env")?process.env[u]:o==="Fun"&&(a==="Path"||a==="path")?mp.join(process.cwd(),u):o==="Fun"&&(a==="File"||a==="file")?this.getFileObj(u):d},i.prototype.generateMagicVariables=function(r,n,o){var a=this;return n===void 0&&(n=[]),o===void 0&&(o=""),Object.prototype.toString.call(r)==="[object Object]"?(o!==""&&(o=o+"."),Object.keys(r).map(function(u){var d=""+o+u,m=r[u];n.push(d),n.concat(a.generateMagicVariables(m,n,""+d)),a.globalJsonKeyMap[d]=m})):Object.prototype.toString.call(r)==="[object Array]"?r.forEach(function(u,d){var m=o+"["+d+"]",_=o+"["+(d-r.length)+"]";n.push(m),n.push(_),n.concat(a.generateMagicVariables(u,n,""+m)),n.concat(a.generateMagicVariables(u,n,""+_)),a.globalJsonKeyMap[m]=u,a.globalJsonKeyMap[_]=u}):n=[],n},i.prototype.isProjectProperties=function(r,n){var o=!1;return n==="Properties"&&this.globalJsonKeyMap[r+"."+n]&&(o=!0),o},i.prototype.iteratorToSetValue=function(r,n,o){var a=this;if(PS.includes(Object.prototype.toString.call(r)))return r;if(Object.prototype.toString.call(r)==="[object String]"){var u=r.match(_p);if(u){var d=u[1],m={variableName:d,type:"Literal",funName:null,funVariable:""},_=d.match(TS);if(_)m.funName=_[1],m.funVariable=_[2],m.type="Fun";else{var c=this.dependenciesMap[n];c||(c={});var v=d.split(".")[0];c[v]=1,this.dependenciesMap[n]=c}var S=(0,vp.startsWith)(d,"env.")?(0,vp.get)(process,d):this.findVariableValue(m);return Object.prototype.toString.call(S)==="[object String]"?r.replace(_p,S):S}return(!this.dependenciesMap[n]||Object.keys(this.dependenciesMap[n]).length==0)&&(this.dependenciesMap[n]={}),r}if(Object.prototype.toString.call(r)==="[object Array]")return r.map(function(R){return a.iteratorToSetValue(R,n)});if(Object.prototype.toString.call(r)==="[object Object]")return Object.keys(r).forEach(function(R){r[R]=a.iteratorToSetValue(r[R],n,o||R)}),r},i.prototype.replaceVariable=function(r){var n=this,o=(0,xS.getServiceList)(r);return Object.keys(o).forEach(function(a){var u=o[a];o[a]=n.iteratorToSetValue(u,a)}),r.services?r.services=o:r=o,(0,IS.cloneDeep)(r)},i.prototype.getRealVariables=function(r){return dp(this,void 0,void 0,function(){return gp(this,function(n){return this.globalKeyArr=this.generateMagicVariables(r),[2,this.replaceVariable(r)]})})},i}();Pe.Parse=LS});var Ep=I(hs=>{"use strict";Object.defineProperty(hs,"__esModule",{value:!0});hs.Analysis=void 0;var DS=function(){function i(r,n){this.parsedObj=r,this.dependenciesMap=n,this.componentOrderKeyMap={}}return i.prototype.getComponentOrderKeyMap=function(r){var n=this;r.forEach(function(o){n.componentOrderKeyMap[o]=1})},i.prototype.calculateOrderNumber=function(r){var n=this;r.forEach(function(o){var a=n.dependenciesMap[o];Object.keys(a).forEach(function(u){n.componentOrderKeyMap[u]&&(n.componentOrderKeyMap[u]+=a[u])})})},i.prototype.getProjectOrder=function(){var r=this,n=Object.keys(this.dependenciesMap).filter(function(a){return a!=="Global"});this.getComponentOrderKeyMap(n),this.calculateOrderNumber(n);var o=Object.keys(this.componentOrderKeyMap).map(function(a){return{name:a,order:r.componentOrderKeyMap[a]}});return o.sort(function(a,u){return u.order-a.order}).map(function(a){return a.name})},i}();hs.Analysis=DS});var ps=I(St=>{"use strict";var NS=St&&St.__importDefault||function(i){return i&&i.__esModule?i:{default:i}};Object.defineProperty(St,"__esModule",{value:!0});St.version=St.Analysis=St.Parse=void 0;var qS=yp();Object.defineProperty(St,"Parse",{enumerable:!0,get:function(){return qS.Parse}});var $S=Ep();Object.defineProperty(St,"Analysis",{enumerable:!0,get:function(){return $S.Analysis}});var FS=fs();Object.defineProperty(St,"version",{enumerable:!0,get:function(){return NS(FS).default}})});var gu=I(rr=>{"use strict";Object.defineProperty(rr,"__esModule",{value:!0});rr.UPDATE_CHECK_INTERVAL=rr.DEFAULT_REGIRSTRY=rr.PROCESS_ENV_TEMPLATE_NAME=void 0;rr.PROCESS_ENV_TEMPLATE_NAME="templateFile";rr.DEFAULT_REGIRSTRY="http://registry.devsapp.cn/simple";rr.UPDATE_CHECK_INTERVAL=1e3*60*60*12});var wp=I(Ct=>{"use strict";var mu=Ct&&Ct.__awaiter||function(i,r,n,o){function a(u){return u instanceof n?u:new n(function(d){d(u)})}return new(n||(n=Promise))(function(u,d){function m(v){try{c(o.next(v))}catch(S){d(S)}}function _(v){try{c(o.throw(v))}catch(S){d(S)}}function c(v){v.done?u(v.value):a(v.value).then(m,_)}c((o=o.apply(i,r||[])).next())})},vu=Ct&&Ct.__generator||function(i,r){var n={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]},o,a,u,d;return d={next:m(0),throw:m(1),return:m(2)},typeof Symbol=="function"&&(d[Symbol.iterator]=function(){return this}),d;function m(c){return function(v){return _([c,v])}}function _(c){if(o)throw new TypeError("Generator is already executing.");for(;n;)try{if(o=1,a&&(u=c[0]&2?a.return:c[0]?a.throw||((u=a.return)&&u.call(a),0):a.next)&&!(u=u.call(a,c[1])).done)return u;switch(a=0,u&&(c=[c[0]&2,u.value]),c[0]){case 0:case 1:u=c;break;case 4:return n.label++,{value:c[1],done:!1};case 5:n.label++,a=c[1],c=[0];continue;case 7:c=n.ops.pop(),n.trys.pop();continue;default:if(u=n.trys,!(u=u.length>0&&u[u.length-1])&&(c[0]===6||c[0]===2)){n=0;continue}if(c[0]===3&&(!u||c[1]>u[0]&&c[1]<u[3])){n.label=c[1];break}if(c[0]===6&&n.label<u[1]){n.label=u[1],u=c;break}if(u&&n.label<u[2]){n.label=u[2],n.ops.push(c);break}u[2]&&n.ops.pop(),n.trys.pop();continue}c=r.call(i,n)}catch(v){c=[6,v],a=0}finally{o=u=0}if(c[0]&5)throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}},_u=Ct&&Ct.__importDefault||function(i){return i&&i.__esModule?i:{default:i}};Object.defineProperty(Ct,"__esModule",{value:!0});Ct.PluginExeCute=void 0;var Gn=_u(require("fs")),yu=_u(require("path")),MS=_u(Te()),jS=MS.default.getRootHome,ds=yu.default.join(jS(),"plugins"),HS=function(){function i(r){this.pluginConfig=r,Gn.default.existsSync(ds)||Gn.default.mkdirSync(ds);var n=this.pluginConfig.name;this.pluginPath=yu.default.join(ds,n)}return i.prototype.init=function(){return mu(this,void 0,void 0,function(){var r;return vu(this,function(n){switch(n.label){case 0:return r=this.pluginConfig.name,this.pluginExist()?[3,2]:[4,this.downLoadPlugin(r)];case 1:n.sent(),n.label=2;case 2:return[2]}})})},i.prototype.pluginExist=function(){return Gn.default.existsSync(this.pluginPath)},i.prototype.downLoadPlugin=function(r){return mu(this,void 0,void 0,function(){var n;return vu(this,function(o){return n=yu.default.join(ds,r),Gn.default.existsSync(n)||Gn.default.mkdirSync(n),[2]})})},i.prototype.loadPlugin=function(){return mu(this,void 0,void 0,function(){var r;return vu(this,function(n){return r=require(this.pluginPath),[2,r]})})},i}();Ct.PluginExeCute=HS});var Cp=I(xt=>{"use strict";var Wn=xt&&xt.__awaiter||function(i,r,n,o){function a(u){return u instanceof n?u:new n(function(d){d(u)})}return new(n||(n=Promise))(function(u,d){function m(v){try{c(o.next(v))}catch(S){d(S)}}function _(v){try{c(o.throw(v))}catch(S){d(S)}}function c(v){v.done?u(v.value):a(v.value).then(m,_)}c((o=o.apply(i,r||[])).next())})},Bn=xt&&xt.__generator||function(i,r){var n={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]},o,a,u,d;return d={next:m(0),throw:m(1),return:m(2)},typeof Symbol=="function"&&(d[Symbol.iterator]=function(){return this}),d;function m(c){return function(v){return _([c,v])}}function _(c){if(o)throw new TypeError("Generator is already executing.");for(;n;)try{if(o=1,a&&(u=c[0]&2?a.return:c[0]?a.throw||((u=a.return)&&u.call(a),0):a.next)&&!(u=u.call(a,c[1])).done)return u;switch(a=0,u&&(c=[c[0]&2,u.value]),c[0]){case 0:case 1:u=c;break;case 4:return n.label++,{value:c[1],done:!1};case 5:n.label++,a=c[1],c=[0];continue;case 7:c=n.ops.pop(),n.trys.pop();continue;default:if(u=n.trys,!(u=u.length>0&&u[u.length-1])&&(c[0]===6||c[0]===2)){n=0;continue}if(c[0]===3&&(!u||c[1]>u[0]&&c[1]<u[3])){n.label=c[1];break}if(c[0]===6&&n.label<u[1]){n.label=u[1],u=c;break}if(u&&n.label<u[2]){n.label=u[2],n.ops.push(c);break}u[2]&&n.ops.pop(),n.trys.pop();continue}c=r.call(i,n)}catch(v){c=[6,v],a=0}finally{o=u=0}if(c[0]&5)throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}},bp=xt&&xt.__importDefault||function(i){return i&&i.__esModule?i:{default:i}};Object.defineProperty(xt,"__esModule",{value:!0});xt.Hook=void 0;var Sp=bp(require("fs")),US=bp(require("path")),en=kn(),GS=wp(),WS=require("child_process").spawnSync,BS=function(){function i(r){var n=this;r===void 0&&(r=[]),this.preHooks=[],this.afterHooks=[],r.forEach(function(o){o.Pre?n.preHooks.push(o):n.afterHooks.push(o)})}return i.prototype.executePreHook=function(){return Wn(this,void 0,void 0,function(){var r,n;return Bn(this,function(o){switch(o.label){case 0:if(!(this.preHooks.length>0))return[3,5];en.logger.info("Start the pre-action"),r=0,o.label=1;case 1:return r<this.preHooks.length?(n=r,en.logger.info("Action: "+(this.preHooks[n].Hook||this.preHooks[n].Plugin)),[4,this.executeByConfig(this.preHooks[n])]):[3,4];case 2:o.sent(),o.label=3;case 3:return r++,[3,1];case 4:en.logger.info("End the pre-action"),o.label=5;case 5:return[2]}})})},i.prototype.executeAfterHook=function(){return Wn(this,void 0,void 0,function(){var r,n;return Bn(this,function(o){switch(o.label){case 0:if(!(this.afterHooks.length>0))return[3,5];en.logger.info("Start the after-action"),r=0,o.label=1;case 1:return r<this.afterHooks.length?(n=r,en.logger.info("Action: "+(this.afterHooks[n].Hook||this.afterHooks[n].Plugin)),[4,this.executeByConfig(this.afterHooks[n])]):[3,4];case 2:o.sent(),o.label=3;case 3:return r++,[3,1];case 4:en.logger.info("End the after-action"),o.label=5;case 5:return[2]}})})},i.prototype.commandExecute=function(r,n){return Wn(this,void 0,void 0,function(){var o,a,u;return Bn(this,function(d){if(o=process.cwd(),a=n?US.default.resolve(o,n):o,Sp.default.existsSync(a)&&Sp.default.lstatSync(a).isDirectory()&&(process.env["next-command-execute-flag"]="true",u=WS(r,[],{cwd:a,stdio:"inherit",shell:!0}),u&&u.status!==0))throw new Error("Action ["+r+"] run error.");return[2]})})},i.prototype.pluginExecute=function(r){return Wn(this,void 0,void 0,function(){var n,o;return Bn(this,function(a){switch(a.label){case 0:return n=new GS.PluginExeCute({name:r}),[4,n.init()];case 1:return a.sent(),[4,n.loadPlugin()];case 2:return o=a.sent(),o.apply(null,[]),[2]}})})},i.prototype.executeByConfig=function(r){return Wn(this,void 0,void 0,function(){return Bn(this,function(n){switch(n.label){case 0:return r.Hook?[4,this.commandExecute(r.Hook,r.Path)]:[3,2];case 1:return n.sent(),[3,4];case 2:return r.Plugin?[4,this.pluginExecute(r.Plugin)]:[3,4];case 3:n.sent(),n.label=4;case 4:return[2]}})})},i}();xt.Hook=BS});var Lp=I(Ge=>{"use strict";var Ot=Ge&&Ge.__awaiter||function(i,r,n,o){function a(u){return u instanceof n?u:new n(function(d){d(u)})}return new(n||(n=Promise))(function(u,d){function m(v){try{c(o.next(v))}catch(S){d(S)}}function _(v){try{c(o.throw(v))}catch(S){d(S)}}function c(v){v.done?u(v.value):a(v.value).then(m,_)}c((o=o.apply(i,r||[])).next())})},At=Ge&&Ge.__generator||function(i,r){var n={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]},o,a,u,d;return d={next:m(0),throw:m(1),return:m(2)},typeof Symbol=="function"&&(d[Symbol.iterator]=function(){return this}),d;function m(c){return function(v){return _([c,v])}}function _(c){if(o)throw new TypeError("Generator is already executing.");for(;n;)try{if(o=1,a&&(u=c[0]&2?a.return:c[0]?a.throw||((u=a.return)&&u.call(a),0):a.next)&&!(u=u.call(a,c[1])).done)return u;switch(a=0,u&&(c=[c[0]&2,u.value]),c[0]){case 0:case 1:u=c;break;case 4:return n.label++,{value:c[1],done:!1};case 5:n.label++,a=c[1],c=[0];continue;case 7:c=n.ops.pop(),n.trys.pop();continue;default:if(u=n.trys,!(u=u.length>0&&u[u.length-1])&&(c[0]===6||c[0]===2)){n=0;continue}if(c[0]===3&&(!u||c[1]>u[0]&&c[1]<u[3])){n.label=c[1];break}if(c[0]===6&&n.label<u[1]){n.label=u[1],u=c;break}if(u&&n.label<u[2]){n.label=u[2],n.ops.push(c);break}u[2]&&n.ops.pop(),n.trys.pop();continue}c=r.call(i,n)}catch(v){c=[6,v],a=0}finally{o=u=0}if(c[0]&5)throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}},Eu=Ge&&Ge.__importDefault||function(i){return i&&i.__esModule?i:{default:i}};Object.defineProperty(Ge,"__esModule",{value:!0});Ge.ComponentExeCute=Ge.generateSynchronizeComponentExeList=Ge.synchronizeExecuteComponentList=void 0;var wu=Eu(require("fs")),xp=Eu(require("path")),kS=gu(),bu=ps(),Su=kn(),VS=Cp(),gs=Qr(),Vn=Eu(Te()),zS=Vn.default.getCredential,XS=Vn.default.loadComponent,YS=Vn.default.jsyaml,Op=Vn.default.colors,Ap=Vn.default.getRootHome,Rp=bu.version.getServiceConfigDetail,KS=bu.version.getServiceInputs,ZS=bu.version.getServiceActions,Ip=xp.default.join(Ap(),"components");function Tp(i,r,n){return i===void 0&&(i=[]),r===void 0&&(r=0),n===void 0&&(n={}),Ot(this,void 0,void 0,function(){var o=this;return At(this,function(a){switch(a.label){case 0:return r>=0&&r<i.length?[4,i[r]().then(function(u){var d=u.name,m=u.data;return Ot(o,void 0,void 0,function(){return At(this,function(_){switch(_.label){case 0:return d&&(n[d]=m),[4,Tp(i,r+1,n)];case 1:return[2,_.sent()]}})})})]:[3,2];case 1:return[2,a.sent()];case 2:return[2,n]}})})}Ge.synchronizeExecuteComponentList=Tp;function JS(i,r){var n=this,o=i.list,a=i.parse,u=i.parsedObj,d=i.method,m=i.params;return o.map(function(_){return function(){return new Promise(function(c,v){return Ot(n,void 0,void 0,function(){var S,R,P;return At(this,function(Z){switch(Z.label){case 0:return u.Params=m||"",Su.logger.info("Start executing project "+_),[4,r(a,_,u)];case 1:return S=Z.sent(),process.env.serverless_devs_temp_access&&(S.Access=process.env.serverless_devs_temp_access,S.access=process.env.serverless_devs_temp_access),R=new Pp({componentConfig:S,method:d,version:u.edition}),[4,R.init()];case 2:return P=Z.sent(),u.edition?u.services[_].output=P:u[_].Output=P,Su.logger.info("Project "+_+` successfully to execute
46
+ `),c({name:_,data:P}),[2]}})})})}})}Ge.generateSynchronizeComponentExeList=JS;var Pp=function(){function i(r){this.version="0.0.1",this.componentConfig=r.componentConfig,this.method=r.method,this.version=r.version,this.customerCommandName=r.customerCommandName,wu.default.existsSync(Ip)||wu.default.mkdirSync(Ip)}return i.prototype.init=function(){return Ot(this,void 0,void 0,function(){var r;return At(this,function(n){switch(n.label){case 0:return r=this,[4,this.getCredentials()];case 1:return r.credentials=n.sent()||{},[4,this.startExecute()];case 2:return[2,n.sent()]}})})},i.prototype.getCredentials=function(){return Ot(this,void 0,void 0,function(){var r,n,o,a,u,d,m,_;return At(this,function(c){switch(c.label){case 0:if(r=Rp(this.componentConfig),n=r.access,o=r.autoCredential,o===!1)return[2,null];c.label=1;case 1:return c.trys.push([1,5,,6]),a=xp.default.join(Ap(),"access.yaml"),u=YS.load(wu.default.readFileSync(a,"utf8")||"{}"),u[n]?[4,zS(n)]:[3,3];case 2:return m=c.sent(),[3,4];case 3:m={},c.label=4;case 4:return d=m,this.componentConfig.access=n,[2,d];case 5:return _=c.sent(),[3,6];case 6:return[2,{}]}})})},i.prototype.loadExtends=function(){var r=ZS(this.componentConfig,this.version,{method:this.method}),n=null;return r&&(n=new VS.Hook(r)),n},i.prototype.loadPreExtends=function(r){return Ot(this,void 0,void 0,function(){return At(this,function(n){switch(n.label){case 0:return r?[4,r.executePreHook()]:[3,2];case 1:n.sent(),n.label=2;case 2:return[2]}})})},i.prototype.loadAfterExtend=function(r){return Ot(this,void 0,void 0,function(){return At(this,function(n){switch(n.label){case 0:return r?[4,r.executeAfterHook()]:[3,2];case 1:n.sent(),n.label=2;case 2:return[2]}})})},i.prototype.invokeMethod=function(r,n,o){return Ot(this,void 0,void 0,function(){var a,u,a,d;return At(this,function(m){switch(m.label){case 0:if(!this.customerCommandName)return[3,6];if(!r[n])return[3,5];m.label=1;case 1:return m.trys.push([1,3,,5]),[4,r[n](o)];case 2:return a=m.sent(),[2,a];case 3:return u=m.sent(),[4,new gs.HandleError({error:u,prefix:"Project "+this.componentConfig.ProjectName+" failed to execute:"}).report(u)];case 4:return m.sent(),process.exit(101),[3,5];case 5:new gs.HumanError({errorMessage:"The ["+this.method+"] command was not found.",tips:"Please check the component "+this.componentConfig.component+" has the "+this.method+" method. Serverless Devs documents\uFF1A"+Op.underline("https://github.com/Serverless-Devs/Serverless-Devs/tree/docs/docs/zh/command")}),process.exit(100),m.label=6;case 6:if(!r[n])return[3,12];m.label=7;case 7:return m.trys.push([7,9,,11]),[4,r[n](o)];case 8:return a=m.sent(),[2,a];case 9:return d=m.sent(),[4,new gs.HandleError({error:d,prefix:"Project "+this.componentConfig.ProjectName+" failed to execute:"}).report(d)];case 10:return m.sent(),process.exit(101),[3,11];case 11:return[3,13];case 12:new gs.HumanWarning({warningMessage:"The ["+this.method+"] command was not found.",tips:"Please check the component "+this.componentConfig.component+" has the "+this.method+" method, Serverless Devs documents\uFF1A"+Op.underline("https://github.com/Serverless-Devs/Serverless-Devs/tree/docs/docs/zh/command")}),m.label=13;case 13:return[2]}})})},i.prototype.executeCommand=function(){return Ot(this,void 0,void 0,function(){var r,n,o,a,u;return At(this,function(d){switch(d.label){case 0:return r=KS(this.componentConfig,this.version,{method:this.method,credentials:this.credentials}),n=Rp(this.componentConfig).name,o=Su.configSet.getConfig("registry")||kS.DEFAULT_REGIRSTRY,[4,XS(n,o)];case 1:return a=d.sent(),[4,this.invokeMethod(a,this.method,r)];case 2:return u=d.sent(),[2,u]}})})},i.prototype.startExecute=function(){return Ot(this,void 0,void 0,function(){var r,n,o,a,u;return At(this,function(d){switch(d.label){case 0:return r={},n=process.env.temp_params||"",o=n.includes("--help")||n.includes("-h"),process.env["skip-actions"]==="true"||o?(u=null,[3,3]):[3,1];case 1:return[4,this.loadExtends()];case 2:u=d.sent(),d.label=3;case 3:return a=u,[4,this.loadPreExtends(a)];case 4:return d.sent(),[4,this.executeCommand()];case 5:return r=d.sent(),[4,this.loadAfterExtend(a)];case 6:return d.sent(),[2,r]}})})},i}();Ge.ComponentExeCute=Pp});var Fp=I(Rt=>{"use strict";var Dp=Rt&&Rt.__awaiter||function(i,r,n,o){function a(u){return u instanceof n?u:new n(function(d){d(u)})}return new(n||(n=Promise))(function(u,d){function m(v){try{c(o.next(v))}catch(S){d(S)}}function _(v){try{c(o.throw(v))}catch(S){d(S)}}function c(v){v.done?u(v.value):a(v.value).then(m,_)}c((o=o.apply(i,r||[])).next())})},Np=Rt&&Rt.__generator||function(i,r){var n={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]},o,a,u,d;return d={next:m(0),throw:m(1),return:m(2)},typeof Symbol=="function"&&(d[Symbol.iterator]=function(){return this}),d;function m(c){return function(v){return _([c,v])}}function _(c){if(o)throw new TypeError("Generator is already executing.");for(;n;)try{if(o=1,a&&(u=c[0]&2?a.return:c[0]?a.throw||((u=a.return)&&u.call(a),0):a.next)&&!(u=u.call(a,c[1])).done)return u;switch(a=0,u&&(c=[c[0]&2,u.value]),c[0]){case 0:case 1:u=c;break;case 4:return n.label++,{value:c[1],done:!1};case 5:n.label++,a=c[1],c=[0];continue;case 7:c=n.ops.pop(),n.trys.pop();continue;default:if(u=n.trys,!(u=u.length>0&&u[u.length-1])&&(c[0]===6||c[0]===2)){n=0;continue}if(c[0]===3&&(!u||c[1]>u[0]&&c[1]<u[3])){n.label=c[1];break}if(c[0]===6&&n.label<u[1]){n.label=u[1],u=c;break}if(u&&n.label<u[2]){n.label=u[2],n.ops.push(c);break}u[2]&&n.ops.pop(),n.trys.pop();continue}c=r.call(i,n)}catch(v){c=[6,v],a=0}finally{o=u=0}if(c[0]&5)throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}},QS=Rt&&Rt.__importDefault||function(i){return i&&i.__esModule?i:{default:i}};Object.defineProperty(Rt,"__esModule",{value:!0});Rt.CommandManager=void 0;var qp=ps(),eC=fs(),zn=kn(),Cu=Lp(),tn=br(),tC=QS(Te()),$p=tC.default.colors,rC=Qr(),nC=function(){function i(r,n,o,a){this.templateFile=r,this.method=n,this.customerCommandName=o,this.deployParams=a}return i.prototype.assemblyProjectConfig=function(r,n,o){return Dp(this,void 0,void 0,function(){var a,u;return Np(this,function(d){switch(d.label){case 0:return[4,r.getRealVariables(o)];case 1:return a=d.sent(),u=(0,eC.getServiceConfig)(a,n),u.appName=a.name,u.ProjectName=n,this.deployParams&&(u.params=this.deployParams),[2,u]}})})},i.prototype.init=function(){return Dp(this,void 0,void 0,function(){var r,n,o,a,u,d,m,_,c,v,S,R,P,S,Z,oe,be;return Np(this,function(Y){switch(Y.label){case 0:return Y.trys.push([0,9,,11]),zn.logger.info("Start ..."),r=(0,tn.checkTemplateFile)(this.templateFile),r?(n={},o=new qp.Parse(r),a=o.getOriginalParsedObj(),[4,o.getRealVariables(a)]):[3,7];case 1:return u=Y.sent(),d=new qp.Analysis(u,o.dependenciesMap),m=d.getProjectOrder(),this.customerCommandName||m.length===1?(_=m[0],[4,this.assemblyProjectConfig(o,this.customerCommandName||_,a)]):[3,4];case 2:return c=Y.sent(),process.env.serverless_devs_temp_access&&(c.Access=process.env.serverless_devs_temp_access,c.access=process.env.serverless_devs_temp_access),v=new Cu.ComponentExeCute({componentConfig:c,method:this.method,version:a.edition,customerCommandName:this.customerCommandName}),[4,v.init()];case 3:return S=Y.sent(),S&&(n[c.ProjectName]=S),[3,6];case 4:return R=this.deployParams||"",zn.logger.info("It is detected that your project has the following projects < "+m.join(",")+" > to be execute"),P=(0,Cu.generateSynchronizeComponentExeList)({list:m,parse:o,parsedObj:a,method:this.method,params:R},this.assemblyProjectConfig.bind(this)),[4,(0,Cu.synchronizeExecuteComponentList)(P)];case 5:S=Y.sent();for(Z in S)m.includes(Z)&&S[Z]&&(n[Z]=S[Z]);Y.label=6;case 6:return oe=JSON.parse(JSON.stringify(n)),Object.keys(n).length===0?zn.logger.success("End of method: "+this.method):zn.logger.output(oe),process.exit(0),[3,8];case 7:zn.logger.error(`Failed to execute:
51
47
 
52
- `+(0,Tr.emoji)("\u274C")+" Message: Cannot find s.yaml / s.yml / template.yaml / template.yml file, please check the directory "+this.templateFile+`
53
- `+(0,Tr.emoji)("\u{1F9ED}")+` If you want to use Serverless Devs, you should have a s.yaml or use [s cli] command.
54
- `+(0,Tr.emoji)("1\uFE0F\u20E3")+" Yaml document: "+Wa.underline("https://github.com/Serverless-Devs/docs/blob/master/zh/yaml.md")+`
55
- `+(0,Tr.emoji)("2\uFE0F\u20E3")+` Cli document: [s cli -h]
56
- `+(0,Tr.emoji)("\u{1F608}")+" If you have questions, please tell us: "+Wa.underline("https://github.com/Serverless-Devs/Serverless-Devs/issues")+`
57
- `),process.exit(1),Q.label=11;case 11:return[3,13];case 12:return Ie=Q.sent(),(0,Ua.handleError)(Ie,"Failed to execute:"),[3,13];case 13:return[2]}})})},t}();Pt.CommandManager=qR});var cv=x(io=>{"use strict";Object.defineProperty(io,"__esModule",{value:!0});io.CommandManager=void 0;var DR=av();Object.defineProperty(io,"CommandManager",{enumerable:!0,get:function(){return DR.CommandManager}})});var ka=x(pi=>{"use strict";var $R=pi&&pi.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(pi,"__esModule",{value:!0});var lv=$R(ke()),FR=lv.default.Logger,jR=lv.default.spinner,Lr=new FR("S-CLI"),MR=function(){function t(){}return t.log=function(n){Lr.log(n)},t.info=function(n){Lr.info(n)},t.debug=function(n){Lr.debug(n)},t.error=function(n){Lr.error(n)},t.warning=function(n){Lr.warn(n)},t.success=function(n){Lr.log(n,"green")},t.spinner=function(n){return jR(n)},t.output=function(n){return Lr.output(n)},t}();pi.default=MR});var _v=x(ne=>{"use strict";var ur=ne&&ne.__awaiter||function(t,n,i,o){function a(u){return u instanceof i?u:new i(function(h){h(u)})}return new(i||(i=Promise))(function(u,h){function m(_){try{l(o.next(_))}catch(S){h(S)}}function g(_){try{l(o.throw(_))}catch(S){h(S)}}function l(_){_.done?u(_.value):a(_.value).then(m,g)}l((o=o.apply(t,n||[])).next())})},ar=ne&&ne.__generator||function(t,n){var i={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]},o,a,u,h;return h={next:m(0),throw:m(1),return:m(2)},typeof Symbol=="function"&&(h[Symbol.iterator]=function(){return this}),h;function m(l){return function(_){return g([l,_])}}function g(l){if(o)throw new TypeError("Generator is already executing.");for(;i;)try{if(o=1,a&&(u=l[0]&2?a.return:l[0]?a.throw||((u=a.return)&&u.call(a),0):a.next)&&!(u=u.call(a,l[1])).done)return u;switch(a=0,u&&(l=[l[0]&2,u.value]),l[0]){case 0:case 1:u=l;break;case 4:return i.label++,{value:l[1],done:!1};case 5:i.label++,a=l[1],l=[0];continue;case 7:l=i.ops.pop(),i.trys.pop();continue;default:if(u=i.trys,!(u=u.length>0&&u[u.length-1])&&(l[0]===6||l[0]===2)){i=0;continue}if(l[0]===3&&(!u||l[1]>u[0]&&l[1]<u[3])){i.label=l[1];break}if(l[0]===6&&i.label<u[1]){i.label=u[1],u=l;break}if(u&&i.label<u[2]){i.label=u[2],i.ops.push(l);break}u[2]&&i.ops.pop(),i.trys.pop();continue}l=n.call(t,i)}catch(_){l=[6,_],a=0}finally{o=u=0}if(l[0]&5)throw l[1];return{value:l[0]?l[1]:void 0,done:!0}}},di=ne&&ne.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(ne,"__esModule",{value:!0});ne.recordCommandHistory=ne.registerVerbose=ne.registerUniversalCommand=ne.registerCustomerCommand=ne.registerExecCommand=ne.registerCommandChecker=ne.createCustomerCommand=ne.getCustomerCommandInfo=ne.getParsedTemplateObj=ne.getCommandDetail=ne.createUniversalCommand=void 0;var GR=di(require("os")),fv=di(require("path")),so=Lu(),HR=cv(),Va=eo(),BR=Na(),UR=di(Os()),oo=di(ka()),za=sr(),Ka=di(ke()),WR=Ka.default.loadComponent,Xa=Ka.default.fse,kR=Ka.default.jsyaml,VR=Va.version.getSubcommand,zR=Va.version.getServiceConfig;function mi(t,n,i){for(var o=new so.Command(t),a=[],u=[],h=n,m=!1,g=0;g<process.argv.length;g++)m?u.push(process.argv[g]):a.push(process.argv[g]),process.argv[g]===t&&(m=!0);return u.length!==0&&(process.env.temp_params=u.join(" "),process.temp_params=u),process.argv=a,o.description(i||"").action(function(){var l=process.env[BR.PROCESS_ENV_TEMPLATE_NAME];if(l){var _=new HR.CommandManager(l,t,h,process.env.temp_params);_.init()}}),o}ne.createUniversalCommand=mi;function KR(t,n,i){return ur(this,void 0,void 0,function(){var o;return ar(this,function(a){return o=[],[2,o]})})}ne.getCommandDetail=KR;function Ya(t){return ur(this,void 0,void 0,function(){var n,i,o;return ar(this,function(a){switch(a.label){case 0:return n=new Va.Parse(t),i=n.getOriginalParsedObj(),[4,n.getRealVariables(i)];case 1:return o=a.sent(),[2,o]}})})}ne.getParsedTemplateObj=Ya;function Za(t){return VR(t)}ne.getCustomerCommandInfo=Za;function XR(t,n){var i=t.length,o=new Array(n-i).fill(" ");return""+t+o.join("")+" : "}function hv(t){return ur(this,void 0,void 0,function(){var n,i,o,a,u,h=this;return ar(this,function(m){switch(m.label){case 0:return n=[],[4,Ya(t)];case 1:return i=m.sent(),o=Za(i),a=o.map(function(g){return ur(h,void 0,void 0,function(){var l;return ar(this,function(_){return l=zR(i,g),[2,{projectName:g,projectDocDetail:l}]})})}),[4,Promise.all(a)];case 2:return u=m.sent(),u.forEach(function(g){var l=g.projectName,_=g.projectDocDetail,S=new so.Command(l),I=(0,za.emoji)("\u{1F449}")+" This is a customer command please use [s "+l+" -h] obtain the documentation";S.description(I);var P=process.argv.slice(2),M=P[0],B=P[1];M===l&&B&&B.indexOf("-")!==0&&S.addCommand(mi(B,l)),S.option("-h, --help","Print usage document"),S.action(function(){return ur(h,void 0,void 0,function(){var Z,X,Ie,Q,ae,_e,Re,Re,vn;return ar(this,function(Tt){switch(Tt.label){case 0:return Z=_.component,[4,WR(Z)];case 1:return X=Tt.sent(),X?X.__doc&&X.__doc().length>1685?(Ie=X.__doc(l),oo.default.info(`
58
- `+Ie),[3,6]):[3,2]:[3,7];case 2:return Tt.trys.push([2,5,,6]),Q=fv.default.join(X.__path,"publish.yml"),[4,Xa.existsSync(Q)];case 3:return Tt.sent()||(Q=fv.default.join(X.__path,"publish.yaml")),[4,kR.load(Xa.readFileSync(Q,"utf8"))];case 4:if(ae=Tt.sent(),console.log(`
59
- `+ae.Name+"@"+ae.Version+": "+ae.Description+`
60
- `),_e=0,ae.Commands){for(Re in ae.Commands)Re.length>_e&&(_e=Re.length);for(Re in ae.Commands)console.log(" "+XR(Re,_e)+" "+ae.Commands[Re]);console.log(`
61
- `+(ae.HomePage?(0,za.emoji)("\u{1F9ED}")+" More information: "+ae.HomePage+`
62
- `:""))}return[3,6];case 5:return vn=Tt.sent(),oo.default.error("Help information could not be found"),[3,6];case 6:return[3,8];case 7:oo.default.error("Help information could not be found"),Tt.label=8;case 8:return[2]}})})}),n.push(S)}),[2,n]}})})}ne.createCustomerCommand=hv;function pv(t){t.on("command:*",function(n){var i=t.commands.map(function(o){return o.name()});i.includes(n[0])||(oo.default.error(" error: unknown command "+n[0]),t.help())})}ne.registerCommandChecker=pv;function dv(t,n){return ur(this,void 0,void 0,function(){var i,o,a,u,h,m,h;return ar(this,function(g){switch(g.label){case 0:return i=new so.Command("exec"),o=(0,za.emoji)("\u{1F680}")+" Subcommand execution analysis.",i.description(o),i.usage("[subcommand] -- [method] [params]"),n?(a="",u="",process.argv[3]!=="--"?[3,2]:(a=process.argv[4],[4,mi(a,u,"")])):[3,4];case 1:h=g.sent(),i.addCommand(h),g.label=2;case 2:return process.argv[4]==="--"&&process.argv[5]?(u=process.argv[3],a=process.argv[5],m=new so.Command(u),[4,mi(a,u,"")]):[3,4];case 3:h=g.sent(),m.addCommand(h),i.addCommand(m),g.label=4;case 4:return t.addCommand(i),[2]}})})}ne.registerExecCommand=dv;function mv(t,n){return ur(this,void 0,void 0,function(){var i;return ar(this,function(o){switch(o.label){case 0:return n?[4,hv(n)]:[3,2];case 1:i=o.sent(),i.forEach(function(a){t.addCommand(a)}),o.label=2;case 2:return[2]}})})}ne.registerCustomerCommand=mv;function gv(t,n){return ur(this,void 0,void 0,function(){var i,o;return ar(this,function(a){switch(a.label){case 0:return n?[4,Ya(n)]:[3,2];case 1:i=a.sent(),o=Za(i),process.argv[2]&&!o.includes(process.argv[2])&&!["-h","--help"].includes(process.argv[2])&&t.addCommand(mi(process.argv[2])),a.label=2;case 2:return[2]}})})}ne.registerUniversalCommand=gv;function YR(t){process.argv.includes("--verbose")&&(process.env.VERBOSE=t.verbose)}ne.registerVerbose=YR;function vv(t){var n=UR.default.getHistoryFile();Xa.appendFileSync(n,t.join(",")+GR.default.EOL)}ne.recordCommandHistory=vv;ne.default={registerCommandChecker:pv,recordCommandHistory:vv,registerExecCommand:dv,registerCustomerCommand:mv,registerUniversalCommand:gv}});var yv=x(Ja=>{"use strict";Object.defineProperty(Ja,"__esModule",{value:!0});Ja.default={clean_up_the_environment:"\u6E05\u7406\u73AF\u5883",display_help_for_command:"\u663E\u793A\u547D\u4EE4\u5E2E\u52A9",remove_components:"\u5220\u9664\u7EC4\u4EF6",delete_the_file_under_the_cache:"\u5220\u9664\u7F13\u5B58\u91CC\u7684\u7684<dirname>\u6587\u4EF6",record_your_log_information:"\u662F\u5426\u8BB0\u5F55\u60A8\u7684\u65E5\u5FD7\u4FE1\u606F\uFF1F",init_pproject_deploy_tip:"\u662F\u5426\u7ACB\u5373\u90E8\u7F72\u8BE5\u9879\u76EE\uFF1F",tip_for_a_serverless_project:"\u68C0\u6D4B\u5230\u5F53\u524D\u76EE\u5F55\u4E0B\u5DF2\u5B58\u5728\u4E00\u4E2AServerless-Devs\u9879\u76EE\uFF0C\u8BF7\u901A\u8FC7 's deploy' \u8FDB\u884C\u90E8\u7F72\u6216\u901A\u8FC7 's -h' \u83B7\u53D6\u66F4\u591A\u4FE1\u606F",create_a_new_project:"\u672A\u68C0\u6D4B\u5230 Serverless-Devs \u9879\u76EE\uFF0C\u662F\u5426\u65B0\u5EFA\u4E00\u4E2A\u9879\u76EE\uFF1F",en:"\u82F1\u6587",zh:"\u4E2D\u6587",select_current_language:"\u8BF7\u9009\u62E9\u5F53\u524D\u8BED\u8A00","app-tip":"\u8BF7\u9009\u62E9\u60A8\u5E0C\u671B\u521B\u5EFA\u7684 Serverless-Devs \u5E94\u7528","template-tip":"\u8BF7\u9009\u62E9\u60A8\u559C\u6B22\u7684\u6A21\u7248","fc-runtime-starter":"fc-runtime-starter - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A FC \u51FD\u6570","fc-custom-container-stater":"fc-custom-container-stater - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A custom-container \u5E94\u7528",web:"web-framework-stater - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A Web \u6846\u67B6","static-site":"static-website-stater - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A\u9759\u6001\u7F51\u7AD9","best-practice":"serverless-best-practice - \u5FEB\u901F\u4F53\u9A8C Serverless \u6700\u4F73\u5B9E\u8DF5","devs-template":"Serverless Devs \u5F00\u53D1\u6A21\u677F","fc-http-nodejs":"fc-http-nodejs - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A nodejs12 \u51FD\u6570","fc-http-python":"fc-http-python - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A python3 \u51FD\u6570","fc-http-java":"fc-http-java - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A java8 \u51FD\u6570","fc-custom-container-event-python3":"fc-custom-container-event-python3 - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A\u901A\u8FC7\u4E8B\u4EF6\u89E6\u53D1\u7684 python3 \u5E94\u7528","fc-custom-container-event-cpp":"fc-custom-container-event-cpp - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A\u901A\u8FC7\u4E8B\u4EF6\u89E6\u53D1\u7684 cpp \u5E94\u7528","fc-custom-container-http-springboot":"fc-custom-container-http-springboot - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A\u901A\u8FC7 HTTP \u8BF7\u6C42\u89E6\u53D1\u7684 springboot \u5E94\u7528","fc-custom-container-http-aspdotnetcore":"fc-custom-container-http-aspdotnetcore - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A\u901A\u8FC7 HTTP \u8BF7\u6C42\u89E6\u53D1\u7684 aspdotnetcore \u5E94\u7528","express-starter":"express-starter - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A express \u57FA\u7840\u5E94\u7528","koa-starter":"koa-starter - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A koa \u57FA\u7840\u5E94\u7528","nuxtjs-starter":"nuxtjs-starter - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A nuxtjs \u57FA\u7840\u5E94\u7528","eggjs-starter":"eggjs-starter - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A eggjs \u57FA\u7840\u5E94\u7528","flask-starter":"flask-starter - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A flask \u57FA\u7840\u5E94\u7528","SpringBoot-starter":"SpringBoot-starter - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A SpringBoot \u57FA\u7840\u5E94\u7528","Zblog-starter":"Zblog-starter - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A Zblog \u57FA\u7840\u5E94\u7528","website-starter":"website-starter - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A\u9759\u6001\u7F51\u7AD9","react-starter":"react-starter - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A React.js \u5E94\u7528","vue-starter":"vue-starter - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A Vue.js \u5E94\u7528",puppeteer:"puppeteer - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A\u57FA\u4E8E puppeteer \u622A\u56FE\u7684 Web \u5E94\u7528",ffmpeg:"ffmpeg - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A\u57FA\u4E8E ffmpeg \u5B9E\u73B0\u97F3\u89C6\u9891\u5904\u7406\u5E94\u7528",pdf2Img:"pdf2Img - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A pdf \u8F6C\u56FE\u7247\u5E94\u7528",tensorflow:"tensorflow - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A tensorflow \u5E94\u7528",todoList:"todoList - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A\u57FA\u4E8E nodejs \u7684\u7F51\u9875 TodoList \u5E94\u7528"}});var Ev=x(Qa=>{"use strict";Object.defineProperty(Qa,"__esModule",{value:!0});Qa.default={clean_up_the_environment:"Clean up the environment",display_help_for_command:"Display help for command",remove_components:"Remove components",delete_the_file_under_the_cache:"Delete the <dirname> file in the cache",record_your_log_information:"Do you record your log information?",init_pproject_deploy_tip:"Do you want to deploy the project immediately?",tip_for_a_serverless_project:"A Serverless-Devs project is detected in the current directory, please deploy via 's deploy' or get more information via 's -h'",create_a_new_project:"No Serverless-Devs project is currently detected. Do you want to create a new project?",en:"en",zh:"zh",select_current_language:"Please select current language","app-tip":"Hello, serverlesser. Which template do you like?","template-tip":"Which template do you like?","fc-runtime-starter":"fc-runtime-starter - Deploy FC function in 5 minutes","fc-custom-container-stater":"fc-custom-container-stater - Deploy FC function with custom-container",web:"web-framework-stater-Quickly deploy a web framework","static-site":"static-website-stater-Quickly deploy a static website","best-practice":"serverless-best-practice-Quickly experience serverless best practices","devs-template":"Serverless Develop scaffold","fc-http-nodejs":"fc-http-nodejs - Deploy FC nodejs12 runtime function","fc-http-python":"fc-http-python - Deploy FC python3 runtime function","fc-http-java":"fc-http-java - Deploy FC java8 runtime function","fc-custom-container-event-python3":"fc-custom-container-event-python3 - Deploy python3 event-triggered application","fc-custom-container-event-cpp":"fc-custom-container-event-cpp - Deploy cpp event-triggered application","fc-custom-container-http-springboot":"fc-custom-container-http-springboot - Deploy springboot HTTP Request-triggered application","fc-custom-container-http-aspdotnetcore":"fc-custom-container-http-aspdotnetcore - Deploy dotnetcore HTTP Request-triggered application","express-starter":"express-starter - Deploy express application","koa-starter":"koa-starter - Deploy koa application","nuxtjs-starter":"nuxtjs-starter - Deploy nuxtjs application","eggjs-starter":"eggjs-starter - Deploy eggjs application","flask-starter":"flask-starter - Deploy flask application","SpringBoot-starter":"SpringBoot-starter - Deploy SpringBoot application","Zblog-starter":"Zblog-starter - Deploy Zblog application","website-starter":"website-starter - Deploy static website","react-starter":"react-starter - Deploy React.js application","vue-starter":"vue-starter - Deploy Vue.js application",puppeteer:"puppeteer - Deploy screenshot application base on puppeteer + fc",ffmpeg:"ffmpeg - Deploy audio and video processing application base on ffmpeg + fc",pdf2Img:"pdf2Img - Deploy pdf to images application",tensorflow:"tensorflow - Deploy tensorflow application",todoList:"todoList - Deploy todoList application"}});var bv=x(gi=>{"use strict";var wv=gi&&gi.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(gi,"__esModule",{value:!0});var ZR=sr(),JR=wv(yv()),QR=wv(Ev()),eP={en:QR.default,zh:JR.default},tP=function(t){var n=(0,ZR.getLang)();return eP[n][t]};gi.default=tP});var hi=x(ve=>{"use strict";var kt=ve&&ve.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(ve,"__esModule",{value:!0});ve.getYamlPath=ve.i18n=ve.logger=ve.registerAction=ve.urlParser=ve.storage=ve.configSet=ve.common=void 0;var Sv=kt(require("path")),rP=kt(ke()),xv=rP.default.fse,nP=sr();Object.defineProperty(ve,"common",{enumerable:!0,get:function(){return kt(nP).default}});var iP=Ps();Object.defineProperty(ve,"configSet",{enumerable:!0,get:function(){return kt(iP).default}});var sP=Os();Object.defineProperty(ve,"storage",{enumerable:!0,get:function(){return kt(sP).default}});var oP=Tg();Object.defineProperty(ve,"urlParser",{enumerable:!0,get:function(){return kt(oP).default}});var uP=_v();Object.defineProperty(ve,"registerAction",{enumerable:!0,get:function(){return kt(uP).default}});var aP=ka();Object.defineProperty(ve,"logger",{enumerable:!0,get:function(){return kt(aP).default}});var cP=bv();Object.defineProperty(ve,"i18n",{enumerable:!0,get:function(){return kt(cP).default}});var lP=function(t,n){var i=Sv.default.join(t,n+".yaml"),o=Sv.default.join(t,n+".yml"),a=xv.existsSync(i)?i:xv.existsSync(o)?o:void 0;return a};ve.getYamlPath=lP});"use strict";var fP=exports&&exports.__awaiter||function(t,n,i,o){function a(u){return u instanceof i?u:new i(function(h){h(u)})}return new(i||(i=Promise))(function(u,h){function m(_){try{l(o.next(_))}catch(S){h(S)}}function g(_){try{l(o.throw(_))}catch(S){h(S)}}function l(_){_.done?u(_.value):a(_.value).then(m,g)}l((o=o.apply(t,n||[])).next())})},hP=exports&&exports.__generator||function(t,n){var i={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]},o,a,u,h;return h={next:m(0),throw:m(1),return:m(2)},typeof Symbol=="function"&&(h[Symbol.iterator]=function(){return this}),h;function m(l){return function(_){return g([l,_])}}function g(l){if(o)throw new TypeError("Generator is already executing.");for(;i;)try{if(o=1,a&&(u=l[0]&2?a.return:l[0]?a.throw||((u=a.return)&&u.call(a),0):a.next)&&!(u=u.call(a,l[1])).done)return u;switch(a=0,u&&(l=[l[0]&2,u.value]),l[0]){case 0:case 1:u=l;break;case 4:return i.label++,{value:l[1],done:!1};case 5:i.label++,a=l[1],l=[0];continue;case 7:l=i.ops.pop(),i.trys.pop();continue;default:if(u=i.trys,!(u=u.length>0&&u[u.length-1])&&(l[0]===6||l[0]===2)){i=0;continue}if(l[0]===3&&(!u||l[1]>u[0]&&l[1]<u[3])){i.label=l[1];break}if(l[0]===6&&i.label<u[1]){i.label=u[1],u=l;break}if(u&&i.label<u[2]){i.label=u[2],i.ops.push(l);break}u[2]&&i.ops.pop(),i.trys.pop();continue}l=n.call(t,i)}catch(_){l=[6,_],a=0}finally{o=u=0}if(l[0]&5)throw l[1];return{value:l[0]?l[1]:void 0,done:!0}}},vi=exports&&exports.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(exports,"__esModule",{value:!0});var pP=vi(require("path")),dP=vi(require("os")),Cv=vi(require("fs")),ec=vi(Lu()),Av=hi(),_i=sr(),mP=dn(),Ov=vi(ke()),gP=Ov.default.colors,Iv=Ov.default.jsyaml,vP=`You can delete an account.
48
+ `+(0,tn.emoji)("\u274C")+" Message: Cannot find s.yaml / s.yml / template.yaml / template.yml file, please check the directory "+this.templateFile+`
49
+ `+(0,tn.emoji)("\u{1F9ED}")+` If you want to use Serverless Devs, you should have a s.yaml or use [s cli] command.
50
+ `+(0,tn.emoji)("1\uFE0F\u20E3")+" Yaml document: "+$p.underline("https://github.com/Serverless-Devs/docs/blob/master/zh/yaml.md")+`
51
+ `+(0,tn.emoji)("2\uFE0F\u20E3")+` Cli document: [s cli -h]
52
+ `+(0,tn.emoji)("\u{1F608}")+" If you have questions, please tell us: "+$p.underline("https://github.com/Serverless-Devs/Serverless-Devs/issues")+`
53
+ `),process.exit(1),Y.label=8;case 8:return[3,11];case 9:return be=Y.sent(),[4,new rC.HandleError({error:be,prefix:"Failed to execute:"}).report(be)];case 10:return Y.sent(),process.exit(1),[3,11];case 11:return[2]}})})},i}();Rt.CommandManager=nC});var Mp=I(ms=>{"use strict";Object.defineProperty(ms,"__esModule",{value:!0});ms.CommandManager=void 0;var iC=Fp();Object.defineProperty(ms,"CommandManager",{enumerable:!0,get:function(){return iC.CommandManager}})});var xu=I(Xn=>{"use strict";var sC=Xn&&Xn.__importDefault||function(i){return i&&i.__esModule?i:{default:i}};Object.defineProperty(Xn,"__esModule",{value:!0});var jp=sC(Te()),oC=jp.default.Logger,uC=jp.default.spinner,Cr=new oC("S-CLI"),aC=function(){function i(){}return i.log=function(r){Cr.log(r)},i.info=function(r){Cr.info(r)},i.debug=function(r){Cr.debug(r)},i.error=function(r){Cr.error(r)},i.warning=function(r){Cr.warn(r)},i.success=function(r){Cr.log(r,"green")},i.spinner=function(r){return uC(r)},i.output=function(r){return Cr.output(r)},i}();Xn.default=aC});var Xp=I(te=>{"use strict";var xr=te&&te.__awaiter||function(i,r,n,o){function a(u){return u instanceof n?u:new n(function(d){d(u)})}return new(n||(n=Promise))(function(u,d){function m(v){try{c(o.next(v))}catch(S){d(S)}}function _(v){try{c(o.throw(v))}catch(S){d(S)}}function c(v){v.done?u(v.value):a(v.value).then(m,_)}c((o=o.apply(i,r||[])).next())})},Or=te&&te.__generator||function(i,r){var n={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]},o,a,u,d;return d={next:m(0),throw:m(1),return:m(2)},typeof Symbol=="function"&&(d[Symbol.iterator]=function(){return this}),d;function m(c){return function(v){return _([c,v])}}function _(c){if(o)throw new TypeError("Generator is already executing.");for(;n;)try{if(o=1,a&&(u=c[0]&2?a.return:c[0]?a.throw||((u=a.return)&&u.call(a),0):a.next)&&!(u=u.call(a,c[1])).done)return u;switch(a=0,u&&(c=[c[0]&2,u.value]),c[0]){case 0:case 1:u=c;break;case 4:return n.label++,{value:c[1],done:!1};case 5:n.label++,a=c[1],c=[0];continue;case 7:c=n.ops.pop(),n.trys.pop();continue;default:if(u=n.trys,!(u=u.length>0&&u[u.length-1])&&(c[0]===6||c[0]===2)){n=0;continue}if(c[0]===3&&(!u||c[1]>u[0]&&c[1]<u[3])){n.label=c[1];break}if(c[0]===6&&n.label<u[1]){n.label=u[1],u=c;break}if(u&&n.label<u[2]){n.label=u[2],n.ops.push(c);break}u[2]&&n.ops.pop(),n.trys.pop();continue}c=r.call(i,n)}catch(v){c=[6,v],a=0}finally{o=u=0}if(c[0]&5)throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}},Yn=te&&te.__importDefault||function(i){return i&&i.__esModule?i:{default:i}};Object.defineProperty(te,"__esModule",{value:!0});te.recordCommandHistory=te.registerVerbose=te.registerUniversalCommand=te.registerCustomerCommand=te.registerCommandChecker=te.createCustomerCommand=te.getCustomerCommandInfo=te.getParsedTemplateObj=te.getCommandDetail=te.createUniversalCommand=void 0;var lC=Yn(require("os")),Hp=Yn(require("path")),Up=Bo(),cC=Mp(),Ou=ps(),fC=gu(),hC=Yn(os()),vs=Yn(xu()),Gp=br(),Au=Yn(Te()),pC=Au.default.loadComponent,Ru=Au.default.fse,dC=Au.default.jsyaml,gC=Ou.version.getSubcommand,mC=Ou.version.getServiceConfig;function Iu(i,r,n){for(var o=new Up.Command(i),a=[],u=[],d=r,m=!1,_=0;_<process.argv.length;_++)m?u.push(process.argv[_]):a.push(process.argv[_]),process.argv[_]===i&&(m=!0);return u.length!==0&&(process.env.temp_params=u.join(" "),process.temp_params=u),process.argv=a,o.description(n||"").action(function(){var c=process.env[fC.PROCESS_ENV_TEMPLATE_NAME];if(c){var v=new cC.CommandManager(c,i,d,process.env.temp_params);v.init()}}),o}te.createUniversalCommand=Iu;function vC(i,r,n){return xr(this,void 0,void 0,function(){var o;return Or(this,function(a){return o=[],[2,o]})})}te.getCommandDetail=vC;function Tu(i){return xr(this,void 0,void 0,function(){var r,n,o;return Or(this,function(a){switch(a.label){case 0:return r=new Ou.Parse(i),n=r.getOriginalParsedObj(),[4,r.getRealVariables(n)];case 1:return o=a.sent(),[2,o]}})})}te.getParsedTemplateObj=Tu;function Pu(i){return gC(i)}te.getCustomerCommandInfo=Pu;function _C(i,r){var n=i.length,o=new Array(r-n).fill(" ");return""+i+o.join("")+" : "}function Wp(i){return xr(this,void 0,void 0,function(){var r,n,o,a,u,d=this;return Or(this,function(m){switch(m.label){case 0:return r=[],[4,Tu(i)];case 1:return n=m.sent(),o=Pu(n),a=o.map(function(_){return xr(d,void 0,void 0,function(){var c;return Or(this,function(v){return c=mC(n,_),[2,{projectName:_,projectDocDetail:c}]})})}),[4,Promise.all(a)];case 2:return u=m.sent(),u.forEach(function(_){var c=_.projectName,v=_.projectDocDetail,S=new Up.Command(c),R=(0,Gp.emoji)("\u{1F449}")+" This is a customer command please use [s "+c+" -h] obtain the documentation";S.description(R);var P=process.argv.slice(2),Z=P[0],oe=P[1];Z===c&&oe&&oe.indexOf("-")!==0&&S.addCommand(Iu(oe,c)),S.option("-h, --help","Print usage document"),S.action(function(){return xr(d,void 0,void 0,function(){var be,Y,lt,ve,pe,xe,We,We,rn;return Or(this,function(It){switch(It.label){case 0:return be=v.component,[4,pC(be)];case 1:return Y=It.sent(),Y?Y.__doc&&Y.__doc().length>1685?(lt=Y.__doc(c),vs.default.info(`
54
+ `+lt),[3,6]):[3,2]:[3,7];case 2:return It.trys.push([2,5,,6]),ve=Hp.default.join(Y.__path,"publish.yml"),[4,Ru.existsSync(ve)];case 3:return It.sent()||(ve=Hp.default.join(Y.__path,"publish.yaml")),[4,dC.load(Ru.readFileSync(ve,"utf8"))];case 4:if(pe=It.sent(),console.log(`
55
+ `+pe.Name+"@"+pe.Version+": "+pe.Description+`
56
+ `),xe=0,pe.Commands){for(We in pe.Commands)We.length>xe&&(xe=We.length);for(We in pe.Commands)console.log(" "+_C(We,xe)+" "+pe.Commands[We]);console.log(`
57
+ `+(pe.HomePage?(0,Gp.emoji)("\u{1F9ED}")+" More information: "+pe.HomePage+`
58
+ `:""))}return[3,6];case 5:return rn=It.sent(),vs.default.error("Help information could not be found"),[3,6];case 6:return[3,8];case 7:vs.default.error("Help information could not be found"),It.label=8;case 8:return[2]}})})}),r.push(S)}),[2,r]}})})}te.createCustomerCommand=Wp;function Bp(i){i.on("command:*",function(r){var n=i.commands.map(function(o){return o.name()});n.includes(r[0])||(vs.default.error(" error: unknown command "+r[0]),i.help())})}te.registerCommandChecker=Bp;function kp(i,r){return xr(this,void 0,void 0,function(){var n;return Or(this,function(o){switch(o.label){case 0:return r?[4,Wp(r)]:[3,2];case 1:n=o.sent(),n.forEach(function(a){i.addCommand(a)}),o.label=2;case 2:return[2]}})})}te.registerCustomerCommand=kp;function Vp(i,r){return xr(this,void 0,void 0,function(){var n,o;return Or(this,function(a){switch(a.label){case 0:return r?[4,Tu(r)]:[3,2];case 1:n=a.sent(),o=Pu(n),process.argv[2]&&!o.includes(process.argv[2])&&!["-h","--help"].includes(process.argv[2])&&i.addCommand(Iu(process.argv[2])),a.label=2;case 2:return[2]}})})}te.registerUniversalCommand=Vp;function yC(i){process.argv.includes("--verbose")&&(process.env.VERBOSE=i.verbose)}te.registerVerbose=yC;function zp(i){var r=hC.default.getHistoryFile();Ru.appendFileSync(r,i.join(",")+lC.default.EOL)}te.recordCommandHistory=zp;te.default={registerCommandChecker:Bp,recordCommandHistory:zp,registerCustomerCommand:kp,registerUniversalCommand:Vp}});var Yp=I(Lu=>{"use strict";Object.defineProperty(Lu,"__esModule",{value:!0});Lu.default={clean_up_the_environment:"\u6E05\u7406\u73AF\u5883",display_help_for_command:"\u663E\u793A\u547D\u4EE4\u5E2E\u52A9",remove_components:"\u5220\u9664\u7EC4\u4EF6",delete_the_file_under_the_cache:"\u5220\u9664\u7F13\u5B58\u91CC\u7684\u7684<dirname>\u6587\u4EF6",record_your_log_information:"\u662F\u5426\u8BB0\u5F55\u60A8\u7684\u65E5\u5FD7\u4FE1\u606F\uFF1F",init_pproject_deploy_tip:"\u662F\u5426\u7ACB\u5373\u90E8\u7F72\u8BE5\u9879\u76EE\uFF1F",tip_for_a_serverless_project:"\u68C0\u6D4B\u5230\u5F53\u524D\u76EE\u5F55\u4E0B\u5DF2\u5B58\u5728\u4E00\u4E2AServerless-Devs\u9879\u76EE\uFF0C\u8BF7\u901A\u8FC7 's deploy' \u8FDB\u884C\u90E8\u7F72\u6216\u901A\u8FC7 's -h' \u83B7\u53D6\u66F4\u591A\u4FE1\u606F",create_a_new_project:"\u672A\u68C0\u6D4B\u5230 Serverless-Devs \u9879\u76EE\uFF0C\u662F\u5426\u65B0\u5EFA\u4E00\u4E2A\u9879\u76EE\uFF1F",en:"English (en)",zh:"\u4E2D\u6587 (zh)",select_current_language:"\u8BF7\u9009\u62E9\u5F53\u524D\u8BED\u8A00","app-tip":"\u8BF7\u9009\u62E9\u60A8\u5E0C\u671B\u521B\u5EFA\u7684 Serverless-Devs \u5E94\u7528","template-tip":"\u8BF7\u9009\u62E9\u60A8\u559C\u6B22\u7684\u6A21\u7248","fc-runtime-starter":"fc-runtime-starter - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A FC \u51FD\u6570","fc-custom-container-stater":"fc-custom-container-stater - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A custom-container \u5E94\u7528",web:"web-framework-stater - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A Web \u6846\u67B6","static-site":"static-website-stater - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A\u9759\u6001\u7F51\u7AD9","best-practice":"serverless-best-practice - \u5FEB\u901F\u4F53\u9A8C Serverless \u6700\u4F73\u5B9E\u8DF5","devs-template":"Serverless Devs \u5F00\u53D1\u6A21\u677F","fc-http-nodejs":"fc-http-nodejs - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A nodejs12 \u51FD\u6570","fc-http-python":"fc-http-python - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A python3 \u51FD\u6570","fc-http-java":"fc-http-java - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A java8 \u51FD\u6570","fc-custom-container-event-python3":"fc-custom-container-event-python3 - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A\u901A\u8FC7\u4E8B\u4EF6\u89E6\u53D1\u7684 python3 \u5E94\u7528","fc-custom-container-event-cpp":"fc-custom-container-event-cpp - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A\u901A\u8FC7\u4E8B\u4EF6\u89E6\u53D1\u7684 cpp \u5E94\u7528","fc-custom-container-http-springboot":"fc-custom-container-http-springboot - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A\u901A\u8FC7 HTTP \u8BF7\u6C42\u89E6\u53D1\u7684 springboot \u5E94\u7528","fc-custom-container-http-aspdotnetcore":"fc-custom-container-http-aspdotnetcore - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A\u901A\u8FC7 HTTP \u8BF7\u6C42\u89E6\u53D1\u7684 aspdotnetcore \u5E94\u7528","express-starter":"express-starter - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A express \u57FA\u7840\u5E94\u7528","koa-starter":"koa-starter - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A koa \u57FA\u7840\u5E94\u7528","nuxtjs-starter":"nuxtjs-starter - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A nuxtjs \u57FA\u7840\u5E94\u7528","eggjs-starter":"eggjs-starter - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A eggjs \u57FA\u7840\u5E94\u7528","flask-starter":"flask-starter - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A flask \u57FA\u7840\u5E94\u7528","SpringBoot-starter":"SpringBoot-starter - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A SpringBoot \u57FA\u7840\u5E94\u7528","Zblog-starter":"Zblog-starter - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A Zblog \u57FA\u7840\u5E94\u7528","website-starter":"website-starter - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A\u9759\u6001\u7F51\u7AD9","react-starter":"react-starter - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A React.js \u5E94\u7528","vue-starter":"vue-starter - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A Vue.js \u5E94\u7528",puppeteer:"puppeteer - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A\u57FA\u4E8E puppeteer \u622A\u56FE\u7684 Web \u5E94\u7528",ffmpeg:"ffmpeg - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A\u57FA\u4E8E ffmpeg \u5B9E\u73B0\u97F3\u89C6\u9891\u5904\u7406\u5E94\u7528",pdf2Img:"pdf2Img - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A pdf \u8F6C\u56FE\u7247\u5E94\u7528",tensorflow:"tensorflow - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A tensorflow \u5E94\u7528",todoList:"todoList - \u5FEB\u901F\u90E8\u7F72\u4E00\u4E2A\u57FA\u4E8E nodejs \u7684\u7F51\u9875 TodoList \u5E94\u7528"}});var Kp=I(Du=>{"use strict";Object.defineProperty(Du,"__esModule",{value:!0});Du.default={clean_up_the_environment:"Clean up the environment",display_help_for_command:"Display help for command",remove_components:"Remove component (like: fc, fc@0.0.1)",delete_the_file_under_the_cache:"Delete the <dirname> file in the cache",record_your_log_information:"Do you record your log information?",init_pproject_deploy_tip:"Do you want to deploy the project immediately?",tip_for_a_serverless_project:"A Serverless-Devs project is detected in the current directory, please deploy via 's deploy' or get more information via 's -h'",create_a_new_project:"No Serverless-Devs project is currently detected. Do you want to create a new project?",en:"English (en)",zh:"Chinese (zh)",select_current_language:"Please select current language","app-tip":"Hello, serverlesser. Which template do you like?","template-tip":"Which template do you like?","fc-runtime-starter":"fc-runtime-starter - Deploy FC function in 5 minutes","fc-custom-container-stater":"fc-custom-container-stater - Deploy FC function with custom-container",web:"web-framework-stater-Quickly deploy a web framework","static-site":"static-website-stater-Quickly deploy a static website","best-practice":"serverless-best-practice-Quickly experience serverless best practices","devs-template":"Serverless Develop scaffold","fc-http-nodejs":"fc-http-nodejs - Deploy FC nodejs12 runtime function","fc-http-python":"fc-http-python - Deploy FC python3 runtime function","fc-http-java":"fc-http-java - Deploy FC java8 runtime function","fc-custom-container-event-python3":"fc-custom-container-event-python3 - Deploy python3 event-triggered application","fc-custom-container-event-cpp":"fc-custom-container-event-cpp - Deploy cpp event-triggered application","fc-custom-container-http-springboot":"fc-custom-container-http-springboot - Deploy springboot HTTP Request-triggered application","fc-custom-container-http-aspdotnetcore":"fc-custom-container-http-aspdotnetcore - Deploy dotnetcore HTTP Request-triggered application","express-starter":"express-starter - Deploy express application","koa-starter":"koa-starter - Deploy koa application","nuxtjs-starter":"nuxtjs-starter - Deploy nuxtjs application","eggjs-starter":"eggjs-starter - Deploy eggjs application","flask-starter":"flask-starter - Deploy flask application","SpringBoot-starter":"SpringBoot-starter - Deploy SpringBoot application","Zblog-starter":"Zblog-starter - Deploy Zblog application","website-starter":"website-starter - Deploy static website","react-starter":"react-starter - Deploy React.js application","vue-starter":"vue-starter - Deploy Vue.js application",puppeteer:"puppeteer - Deploy screenshot application base on puppeteer + fc",ffmpeg:"ffmpeg - Deploy audio and video processing application base on ffmpeg + fc",pdf2Img:"pdf2Img - Deploy pdf to images application",tensorflow:"tensorflow - Deploy tensorflow application",todoList:"todoList - Deploy todoList application"}});var Jp=I(Kn=>{"use strict";var Zp=Kn&&Kn.__importDefault||function(i){return i&&i.__esModule?i:{default:i}};Object.defineProperty(Kn,"__esModule",{value:!0});var EC=br(),wC=Zp(Yp()),bC=Zp(Kp()),Nu={en:bC.default,zh:wC.default},SC=function(i){var r=(0,EC.getLang)(),n=Nu[r]?Nu[r][i]:Nu.en[i];return n||i};Kn.default=SC});var kn=I(de=>{"use strict";var Wt=de&&de.__importDefault||function(i){return i&&i.__esModule?i:{default:i}};Object.defineProperty(de,"__esModule",{value:!0});de.getYamlPath=de.i18n=de.logger=de.registerAction=de.urlParser=de.storage=de.configSet=de.common=void 0;var Qp=Wt(require("path")),CC=Wt(Te()),ed=CC.default.fse,xC=br();Object.defineProperty(de,"common",{enumerable:!0,get:function(){return Wt(xC).default}});var OC=uu();Object.defineProperty(de,"configSet",{enumerable:!0,get:function(){return Wt(OC).default}});var AC=os();Object.defineProperty(de,"storage",{enumerable:!0,get:function(){return Wt(AC).default}});var RC=op();Object.defineProperty(de,"urlParser",{enumerable:!0,get:function(){return Wt(RC).default}});var IC=Xp();Object.defineProperty(de,"registerAction",{enumerable:!0,get:function(){return Wt(IC).default}});var TC=xu();Object.defineProperty(de,"logger",{enumerable:!0,get:function(){return Wt(TC).default}});var PC=Jp();Object.defineProperty(de,"i18n",{enumerable:!0,get:function(){return Wt(PC).default}});var LC=function(i,r){var n=Qp.default.join(i,r+".yaml"),o=Qp.default.join(i,r+".yml"),a=ed.existsSync(n)?n:ed.existsSync(o)?o:void 0;return a};de.getYamlPath=LC});"use strict";var td=exports&&exports.__awaiter||function(i,r,n,o){function a(u){return u instanceof n?u:new n(function(d){d(u)})}return new(n||(n=Promise))(function(u,d){function m(v){try{c(o.next(v))}catch(S){d(S)}}function _(v){try{c(o.throw(v))}catch(S){d(S)}}function c(v){v.done?u(v.value):a(v.value).then(m,_)}c((o=o.apply(i,r||[])).next())})},rd=exports&&exports.__generator||function(i,r){var n={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]},o,a,u,d;return d={next:m(0),throw:m(1),return:m(2)},typeof Symbol=="function"&&(d[Symbol.iterator]=function(){return this}),d;function m(c){return function(v){return _([c,v])}}function _(c){if(o)throw new TypeError("Generator is already executing.");for(;n;)try{if(o=1,a&&(u=c[0]&2?a.return:c[0]?a.throw||((u=a.return)&&u.call(a),0):a.next)&&!(u=u.call(a,c[1])).done)return u;switch(a=0,u&&(c=[c[0]&2,u.value]),c[0]){case 0:case 1:u=c;break;case 4:return n.label++,{value:c[1],done:!1};case 5:n.label++,a=c[1],c=[0];continue;case 7:c=n.ops.pop(),n.trys.pop();continue;default:if(u=n.trys,!(u=u.length>0&&u[u.length-1])&&(c[0]===6||c[0]===2)){n=0;continue}if(c[0]===3&&(!u||c[1]>u[0]&&c[1]<u[3])){n.label=c[1];break}if(c[0]===6&&n.label<u[1]){n.label=u[1],u=c;break}if(u&&n.label<u[2]){n.label=u[2],n.ops.push(c);break}u[2]&&n.ops.pop(),n.trys.pop();continue}c=r.call(i,n)}catch(v){c=[6,v],a=0}finally{o=u=0}if(c[0]&5)throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}},_s=exports&&exports.__importDefault||function(i){return i&&i.__esModule?i:{default:i}};Object.defineProperty(exports,"__esModule",{value:!0});var DC=_s(require("path")),qu=_s(require("fs")),$u=_s(Bo()),NC=kn(),nd=Qr(),Fu=_s(Te()),qC=Fu.default.colors,id=Fu.default.jsyaml,$C=Fu.default.getRootHome,FC=`You can delete an account.
63
59
 
64
60
  Example:
65
- $ s config delete -a demo
66
-
67
- `+(0,_i.emoji)("\u{1F9ED}\uFE0F")+" If you don't know the alias of the key, you can get it through [s config get -l]";ec.default.name("s config delete").usage("[options] [name]").helpOption("-h,--help","Display help for command").option("-a , --aliasName [name]","Key pair alia, if the alias is not set, use default instead").description(vP).addHelpCommand(!1).parse(process.argv);(function(){return fP(void 0,void 0,void 0,function(){var t,n,i;return hP(this,function(o){return t=ec.default.aliasName,t=t||process.env.serverless_devs_temp_access,t||ec.default.help(),n=pP.default.join(dP.default.homedir(),".s","access.yaml"),i=Iv.load(Cv.default.readFileSync(n,"utf8")||"{}"),i[t]?(delete i[t],Cv.default.writeFileSync(n,Object.keys(i).length>0?Iv.dump(i):""),Av.logger.success("Delete key "+t+" success.")):(Av.logger.error(`
68
-
69
- `+(0,_i.emoji)("\u274C\uFE0F")+" Message: Unable to get key information with alias "+t+`.
70
- `+(0,_i.emoji)("\u{1F914}")+" You have configured these keys: ["+String(Object.keys(i))+`].
71
- `+(0,_i.emoji)("\u{1F9ED}\uFE0F")+` You can use [s config add] for key configuration, or use [s config add -h] to view configuration help.
72
- `+(0,_i.emoji)("\u{1F608}\uFE0F")+" If you have questions, please tell us: "+gP.underline("https://github.com/Serverless-Devs/Serverless-Devs/issues")+`
73
- `),process.exit(1)),[2]})})})().catch(function(t){(0,mP.handleError)(t)});
61
+ $ s config delete -a demo`;function sd(i){var r=i.access,n=i.accessFileInfo,o=n?"Unable to get key information with alias "+r+", You have configured these keys: ["+String(Object.keys(n))+"].":"Unable to get key information with alias "+r;new nd.HumanError({errorMessage:o,tips:"You can use [s config add -h] to view configuration help, Serverless Devs' config document can refer to\uFF1A"+qC.underline("https://github.com/Serverless-Devs/Serverless-Devs/blob/docs/docs/zh/command/config.md")})}$u.default.name("s config delete").usage("[options] [name]").helpOption("-h, --help","Display help for command").option("-a, --access [aliasName]","Key pair alia, if the alias is not set, use default instead").description(FC).addHelpCommand(!1).parse(process.argv);(function(){return td(void 0,void 0,void 0,function(){var i,r,n,o;return rd(this,function(a){return i=$u.default.access,r=i===void 0?process.env.serverless_devs_temp_access:i,r||$u.default.help(),n=DC.default.join($C(),"access.yaml"),qu.default.existsSync(n)?(o=id.load(qu.default.readFileSync(n,"utf8")||"{}"),o[r]?(delete o[r],qu.default.writeFileSync(n,Object.keys(o).length>0?id.dump(o):""),NC.logger.success("Key ["+r+"] has been successfully removed.")):(sd({access:r,accessFileInfo:o}),process.exit(1)),[2]):[2,sd({access:r})]})})})().catch(function(i){return td(void 0,void 0,void 0,function(){return rd(this,function(r){switch(r.label){case 0:return[4,new nd.HandleError({error:i}).report(i)];case 1:return r.sent(),process.exit(1),[2]}})})});
74
62
  /**
75
63
  * @license
76
64
  * Lodash <https://lodash.com/>